blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
62d67e58b4e03680beadf19250c3059390a52b5b
10b6fb35eafcaaebe560587e1ee017e2514f0b63
/Plugin/BrowserSourcePlugin.cpp
fb14101c226223fd7ee867b59076c9632875a2fb
[]
no_license
Fug1t1v3/BrowserSourcePlugin
93479374a541bcfc744e9064ff40bd2a1efdf110
fb5082d59dc506054d9bdda3679a153a892f370d
refs/heads/master
2021-01-16T07:09:06.015343
2013-04-26T04:23:22
2013-04-26T04:23:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
25,936
cpp
/** * John Bradley (jrb@turrettech.com) */ #include "BrowserSourcePlugin.h" #include "Localization.h" #include "BrowserSource.h" #include "resource.h" #include "Scintilla.h" #include "SciLexer.h" #include <Awesomium\WebCore.h> HINSTANCE BrowserSourcePlugin::hinstDLL = NULL; BrowserSourcePlugin *BrowserSourcePlugin::instance = NULL; String ToAPIString(WebString &webString) { int length = webString.ToUTF8(NULL, 0); char *dest = (char *)Allocate(sizeof(char) * length + 1); dest[length] = 0; webString.ToUTF8(dest, length + 1); String apiString(dest); Free(dest); return apiString; } #define BROWSER_SOURCE_CLASS TEXT("BrowserSource") LRESULT SendEditor(HWND editor, UINT Msg, WPARAM wParam=0, LPARAM lParam=0) { return SendMessage(editor, Msg, wParam, lParam); } const COLORREF black = RGB(0, 0, 0); const COLORREF white = RGB(0xFF, 0xFF, 0xFF); void SetAStyle(HWND editor, int style, COLORREF fore, COLORREF back=white, int size=-1, const char *face = 0) { SendEditor(editor, SCI_STYLESETFORE, style, fore); SendEditor(editor, SCI_STYLESETBACK, style, back); if (size >= 1) { SendEditor(editor, SCI_STYLESETSIZE, style, size); } if (face) { SendEditor(editor, SCI_STYLESETFONT, style, reinterpret_cast<LPARAM>(face)); } } const char htmlKeyWords[] = "a abbr acronym address applet area b base basefont " "bdo big blockquote body br button caption center " "cite code col colgroup dd del dfn dir div dl dt em " "fieldset font form frame frameset h1 h2 h3 h4 h5 h6 " "head hr html i iframe img input ins isindex kbd label " "legend li link map menu meta noframes noscript " "object ol optgroup option p param pre q s samp " "script select small span strike strong style sub sup " "table tbody td textarea tfoot th thead title tr tt u ul " "var xmlns " "abbr accept-charset accept accesskey action align alink " "alt archive axis background bgcolor border " "cellpadding cellspacing char charoff charset checked cite " "class classid clear codebase codetype color cols colspan " "compact content coords " "data datafld dataformatas datapagesize datasrc datetime " "declare defer dir disabled enctype " "face for frame frameborder " "headers height href hreflang hspace http-equiv " "id ismap label lang language link longdesc " "marginwidth marginheight maxlength media method multiple " "name nohref noresize noshade nowrap " "object onblur onchange onclick ondblclick onfocus " "onkeydown onkeypress onkeyup onload onmousedown " "onmousemove onmouseover onmouseout onmouseup " "onreset onselect onsubmit onunload " "profile prompt readonly rel rev rows rowspan rules " "scheme scope shape size span src standby start style " "summary tabindex target text title type usemap " "valign value valuetype version vlink vspace width " "text password checkbox radio submit reset " "file hidden image " "public !doctype xml " "embed allowscriptaccess wmode"; const char jsKeyWords[] = "break case catch continue default " "do else for function if return throw try var while"; void InitializeAssetWrapTemplateEditor(HWND editor) { SendEditor(editor, SCI_SETLEXER, SCLEX_HTML); SendEditor(editor, SCI_SETSTYLEBITS, 7); SendEditor(editor, SCI_SETTABWIDTH, 2); SendEditor(editor, SCI_SETTABINDENTS, 2); SendEditor(editor, SCI_SETKEYWORDS, 0, reinterpret_cast<LPARAM>(htmlKeyWords)); SendEditor(editor, SCI_SETKEYWORDS, 1, reinterpret_cast<LPARAM>(jsKeyWords)); const COLORREF red = RGB(0xFF, 0, 0); const COLORREF offWhite = RGB(0xFF, 0xFB, 0xF0); const COLORREF darkGreen = RGB(0, 0x80, 0); const COLORREF darkBlue = RGB(0, 0, 0x80); // Unknown tags and attributes are highlighed in red. // If a tag is actually OK, it should be added in lower case to the htmlKeyWords string. SetAStyle(editor, SCE_H_TAG, darkBlue); SetAStyle(editor, SCE_H_TAGUNKNOWN, red); SetAStyle(editor, SCE_H_ATTRIBUTE, darkBlue); SetAStyle(editor, SCE_H_ATTRIBUTEUNKNOWN, red); SetAStyle(editor, SCE_H_NUMBER, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_H_DOUBLESTRING, RGB(0,0x80,0)); SetAStyle(editor, SCE_H_SINGLESTRING, RGB(0,0x80,0)); SetAStyle(editor, SCE_H_OTHER, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_H_COMMENT, RGB(0x80,0x80,0)); SetAStyle(editor, SCE_H_ENTITY, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_H_TAGEND, darkBlue); SetAStyle(editor, SCE_H_XMLSTART, darkBlue); // <? SetAStyle(editor, SCE_H_XMLEND, darkBlue); // ?> SetAStyle(editor, SCE_H_SCRIPT, darkBlue); // <script SetAStyle(editor, SCE_H_ASP, RGB(0x4F, 0x4F, 0), RGB(0xFF, 0xFF, 0)); // <% ... %> SetAStyle(editor, SCE_H_ASPAT, RGB(0x4F, 0x4F, 0), RGB(0xFF, 0xFF, 0)); // <%@ ... %> SetAStyle(editor, SCE_HB_DEFAULT, black); SetAStyle(editor, SCE_HB_COMMENTLINE, darkGreen); SetAStyle(editor, SCE_HB_NUMBER, RGB(0,0x80,0x80)); SetAStyle(editor, SCE_HB_WORD, darkBlue); SendEditor(editor, SCI_STYLESETBOLD, SCE_HB_WORD, 1); SetAStyle(editor, SCE_HB_STRING, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_HB_IDENTIFIER, black); // If there is no need to support embedded Javascript, the following code can be dropped. // Javascript will still be correctly processed but will be displayed in just the default style. SetAStyle(editor, SCE_HJ_START, RGB(0x80,0x80,0)); SetAStyle(editor, SCE_HJ_DEFAULT, black); SetAStyle(editor, SCE_HJ_COMMENT, darkGreen); SetAStyle(editor, SCE_HJ_COMMENTLINE, darkGreen); SetAStyle(editor, SCE_HJ_COMMENTDOC, darkGreen); SetAStyle(editor, SCE_HJ_NUMBER, RGB(0,0x80,0x80)); SetAStyle(editor, SCE_HJ_WORD, black); SetAStyle(editor, SCE_HJ_KEYWORD, darkBlue); SetAStyle(editor, SCE_HJ_DOUBLESTRING, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_HJ_SINGLESTRING, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_HJ_SYMBOLS, black); SetAStyle(editor, SCE_HJA_START, RGB(0x80,0x80,0)); SetAStyle(editor, SCE_HJA_DEFAULT, black); SetAStyle(editor, SCE_HJA_COMMENT, darkGreen); SetAStyle(editor, SCE_HJA_COMMENTLINE, darkGreen); SetAStyle(editor, SCE_HJA_COMMENTDOC, darkGreen); SetAStyle(editor, SCE_HJA_NUMBER, RGB(0,0x80,0x80)); SetAStyle(editor, SCE_HJA_WORD, black); SetAStyle(editor, SCE_HJA_KEYWORD, darkBlue); SetAStyle(editor, SCE_HJA_DOUBLESTRING, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_HJA_SINGLESTRING, RGB(0x80,0,0x80)); SetAStyle(editor, SCE_HJA_SYMBOLS, black); // Show the whole section of Javascript with off white background for (int jstyle=SCE_HJ_DEFAULT; jstyle<=SCE_HJ_SYMBOLS; jstyle++) { SendEditor(editor, SCI_STYLESETBACK, jstyle, offWhite); SendEditor(editor, SCI_STYLESETEOLFILLED, jstyle, 1); } SendEditor(editor, SCI_STYLESETBACK, SCE_HJ_STRINGEOL, RGB(0xDF, 0xDF, 0x7F)); SendEditor(editor, SCI_STYLESETEOLFILLED, SCE_HJ_STRINGEOL, 1); // Show the whole section of Javascript with brown background for (int jastyle=SCE_HJA_DEFAULT; jastyle<=SCE_HJA_SYMBOLS; jastyle++) { SendEditor(editor, SCI_STYLESETBACK, jastyle, RGB(0xDF, 0xDF, 0x7F)); SendEditor(editor, SCI_STYLESETEOLFILLED, jastyle, 1); } SendEditor(editor, SCI_STYLESETBACK, SCE_HJA_STRINGEOL, RGB(0x0,0xAF,0x5F)); SendEditor(editor, SCI_STYLESETEOLFILLED, SCE_HJA_STRINGEOL, 1); ShowWindow(editor, SW_SHOW); } // CSS 1 properties char *css1prots = "background background-attachment background-color background-image background-position background-repeat border border-bottom " "border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top " "border-top-width border-width clear color display float font font-family " "font-size font-style font-variant font-weight height letter-spacing line-height list-style " "list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top " "padding padding-bottom padding-left padding-right padding-top text-align text-decoration text-indent " "text-transform vertical-align white-space width word-spacing"; char *pseudoClasses = "active after before checked current disabled empty enabled " "first-child first-letter first-line first-of-type focus hover lang last-of-type " "link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type " "root target visited"; // CSS 2 properties char *css2prots = "azimuth border-bottom-color border-bottom-style border-collapse border-left-color border-left-style border-right-color border-right-style " "border-spacing border-top-color border-top-style bottom caption-side clip content counter-increment " "counter-reset cue cue-after cue-before cursor direction elevation empty-cells " "font-size-adjust font-stretch left max-height max-width min-height min-width orphans " "outline outline-color outline-style outline-width overflow page-break-after page-break-before page-break-inside " "pause pause-after pause-before pitch pitch-range play-during position quotes " "richness right speak speak-header speak-numeral speak-punctuation speech-rate stress " "table-layout top unicode-bidi visibility voice-family volume widows z-index"; // CSS 3 properties char *css3prots = "alignment-adjust alignment-baseline animation animation-delay animation-direction animation-duration animation-iteration-count animation-name " "animation-play-state animation-timing-function appearance ascent backface-visibility background-break background-clip background-origin " "background-size baseline baseline-shift bbox binding bleed bookmark-label bookmark-level " "bookmark-state bookmark-target border-bottom-left-radius border-bottom-right-radius border-break border-image border-image-outset border-image-repeat " "border-image-slice border-image-source border-image-width border-length border-radius border-top-left-radius border-top-right-radius box-align " "box-decoration-break box-direction box-flex box-flex-group box-lines box-orient box-pack box-shadow " "box-sizing box-sizing break-after break-before break-inside cap-height centerline color-profile " "column-break-after column-break-before column-count column-fill column-gap column-rule column-rule-color column-rule-style " "column-rule-width column-span column-width columns crop definition-src descent dominant-baseline " "drop-initial-after-adjust drop-initial-after-align drop-initial-before-adjust drop-initial-before-align drop-initial-size drop-initial-value fit fit-position " "flex-align flex-flow flex-line-pack flex-order flex-pack float-offset font-effect font-emphasize " "font-emphasize-position font-emphasize-style font-size-adjust font-smooth grid-columns grid-rows hanging-punctuation hyphenate-after " "hyphenate-before hyphenate-character hyphenate-lines hyphenate-resource hyphens icon image-orientation image-rendering " "image-resolution inline-box-align line-break line-stacking line-stacking-ruby line-stacking-shift line-stacking-strategy mark " "mark-after mark-before marker-offset marks marquee-direction marquee-loop marquee-play-count marquee-speed " "marquee-style mathline move-to nav-down nav-index nav-left nav-right nav-up " "opacity outline-offset overflow-style overflow-wrap overflow-x overflow-y page page-policy " "panose-1 perspective perspective-origin phonemes presentation-level punctuation-trim rendering-intent resize " "rest rest-after rest-before rotation rotation-point ruby-align ruby-overhang ruby-position " "ruby-span size slope src stemh stemv string-set tab-side " "tab-size target target-name target-new target-position text-align-last text-decoration-color text-decoration-line " "text-decoration-skip text-decoration-style text-emphasis text-emphasis-color text-emphasis-position text-emphasis-style text-height text-indent " "text-justify text-outline text-replace text-shadow text-space-collapse text-underline-position text-wrap topline " "transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function " "unicode-range units-per-em voice-balance voice-duration voice-pitch voice-pitch-range voice-rate voice-stress " "voice-volume white-space-collapse widths word-break word-wrap x-height"; // pseudo elements char *pseudoElements = "after before choices first-letter first-line line-marker marker outside " "repeat-index repeat-item selection slot value"; // use wild card with vendor prefixes for future proof, no need to list specific properties char *exProps = "^-ms- ^-apple- ^-epub- ^-moz- ^-o- ^-wap- ^-webkit- ^-xv-"; char *exPseudoClasses = "^-ms- ^-apple- ^-epub- ^-moz- ^-o- ^-wap- ^-webkit- ^-xv-"; char *exPseudoElements = "^-ms- ^-apple- ^-epub- ^-moz- ^-o- ^-wap- ^-webkit- ^-xv-"; void InitializeCustomCssEditor(HWND editor) { SendEditor(editor, SCI_SETLEXER, SCLEX_CSS); SendEditor(editor, SCI_SETSTYLEBITS, 7); SendEditor(editor, SCI_SETTABWIDTH, 2); SendEditor(editor, SCI_SETTABINDENTS, 2); SendEditor(editor, SCI_SETKEYWORDS, 0, reinterpret_cast<LPARAM>(css1prots)); SendEditor(editor, SCI_SETKEYWORDS, 1, reinterpret_cast<LPARAM>(pseudoClasses)); SendEditor(editor, SCI_SETKEYWORDS, 2, reinterpret_cast<LPARAM>(css2prots)); SendEditor(editor, SCI_SETKEYWORDS, 3, reinterpret_cast<LPARAM>(css3prots)); SendEditor(editor, SCI_SETKEYWORDS, 4, reinterpret_cast<LPARAM>(pseudoElements)); SendEditor(editor, SCI_SETKEYWORDS, 5, reinterpret_cast<LPARAM>(exProps)); SendEditor(editor, SCI_SETKEYWORDS, 6, reinterpret_cast<LPARAM>(exPseudoClasses)); SendEditor(editor, SCI_SETKEYWORDS, 7, reinterpret_cast<LPARAM>(exPseudoElements)); const COLORREF red = RGB(0xFF, 0, 0); const COLORREF offWhite = RGB(0xFF, 0xFB, 0xF0); const COLORREF darkGreen = RGB(0, 0x80, 0); const COLORREF darkBlue = RGB(0, 0, 0x80); const COLORREF turqoise = RGB(0x20, 0x99, 0x99); const COLORREF darkGrey = RGB(0x20, 0x20, 0x20); const COLORREF darkPurple = RGB(0x30, 0x30, 0xAA); SetAStyle(editor, SCE_CSS_DEFAULT, black); SetAStyle(editor, SCE_CSS_TAG, darkBlue); SendEditor(editor, SCI_STYLESETBOLD, SCE_CSS_TAG, 1); SetAStyle(editor, SCE_CSS_CLASS, darkBlue); SendEditor(editor, SCI_STYLESETBOLD, SCE_CSS_CLASS, 1); SetAStyle(editor, SCE_CSS_PSEUDOCLASS, darkBlue); SetAStyle(editor, SCE_CSS_UNKNOWN_PSEUDOCLASS, darkBlue); SendEditor(editor, SCI_STYLESETBOLD, SCE_CSS_UNKNOWN_PSEUDOCLASS, 1); SetAStyle(editor, SCE_CSS_OPERATOR, darkBlue); SendEditor(editor, SCI_STYLESETBOLD, SCE_CSS_OPERATOR, 1); SetAStyle(editor, SCE_CSS_IDENTIFIER, red); SetAStyle(editor, SCE_CSS_UNKNOWN_IDENTIFIER, darkBlue); SendEditor(editor, SCI_STYLESETBOLD, SCE_CSS_UNKNOWN_IDENTIFIER, 1); SetAStyle(editor, SCE_CSS_VALUE, turqoise); SetAStyle(editor, SCE_CSS_COMMENT, darkGreen); SetAStyle(editor, SCE_CSS_ID, darkPurple); SendEditor(editor, SCI_STYLESETBOLD, SCE_CSS_ID, 1); SetAStyle(editor, SCE_CSS_IMPORTANT, darkGrey); SetAStyle(editor, SCE_CSS_DIRECTIVE, darkGrey); SetAStyle(editor, SCE_CSS_DOUBLESTRING, darkGrey); SetAStyle(editor, SCE_CSS_SINGLESTRING, darkGrey); SetAStyle(editor, SCE_CSS_IDENTIFIER2, darkGrey); SetAStyle(editor, SCE_CSS_ATTRIBUTE, darkGrey); ShowWindow(editor, SW_SHOW); } INT_PTR CALLBACK ConfigureDialogProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { switch(message) { case WM_INITDIALOG: { SetWindowLongPtr(hwnd, DWLP_USER, (LONG_PTR)lParam); BrowserSourceConfig *config = (BrowserSourceConfig *)lParam; config->hwndAssetWrapTemplateEditor = ::CreateWindow( TEXT("Scintilla"), TEXT("AssetWrapTemplateEditor"), WS_CHILD | WS_VSCROLL | WS_HSCROLL | WS_CLIPCHILDREN | WS_BORDER, 420, 50, 375, 345, hwnd, 0, BrowserSourcePlugin::hinstDLL, 0); InitializeAssetWrapTemplateEditor(config->hwndAssetWrapTemplateEditor); config->hwndCustomCssEditor = ::CreateWindow( TEXT("Scintilla"), TEXT("CustomCssEditor"), WS_CHILD | WS_VSCROLL | WS_HSCROLL | WS_CLIPCHILDREN | WS_BORDER, 20, 195, 382, 146, hwnd, 0, BrowserSourcePlugin::hinstDLL, 0); InitializeCustomCssEditor(config->hwndCustomCssEditor); LocalizeWindow(hwnd); HWND hwndUrlOrAsset = GetDlgItem(hwnd, IDC_URL_OR_ASSET); HWND hwndWidth = GetDlgItem(hwnd, IDC_WIDTH); HWND hwndHeight = GetDlgItem(hwnd, IDC_HEIGHT); HWND hwndCustomCss = config->hwndCustomCssEditor; HWND hwndIsWrappingAsset = GetDlgItem(hwnd, IDC_IS_WRAPPING_ASSET); HWND hwndAssetWrapTemplate = config->hwndAssetWrapTemplateEditor; SendMessage(hwndUrlOrAsset, WM_SETTEXT, 0, (LPARAM)config->url.Array()); SendMessage(hwndWidth, WM_SETTEXT, 0, (LPARAM)IntString(config->width).Array()); SendMessage(hwndHeight, WM_SETTEXT, 0, (LPARAM)IntString(config->height).Array()); char *utf8String = config->customCss.CreateUTF8String(); SendEditor(hwndCustomCss, SCI_SETTEXT, 0, (LPARAM)utf8String); Free(utf8String); SendMessage(hwndIsWrappingAsset, BM_SETCHECK, config->isWrappingAsset, 0); utf8String = config->assetWrapTemplate.CreateUTF8String(); SendEditor(hwndAssetWrapTemplate, SCI_SETTEXT, 0, (LPARAM)utf8String); Free(utf8String); SendEditor(hwndAssetWrapTemplate, SCI_SETREADONLY, !config->isWrappingAsset, 0); return TRUE; } case WM_COMMAND: { switch(LOWORD(wParam)) { case IDC_IS_WRAPPING_ASSET: { BrowserSourceConfig *config = (BrowserSourceConfig *)GetWindowLongPtr(hwnd, DWLP_USER); HWND hwndIsWrappingAsset = GetDlgItem(hwnd, IDC_IS_WRAPPING_ASSET); HWND hwndAssetWrapTemplate = config->hwndAssetWrapTemplateEditor; bool isWrappingAsset = (SendMessage(hwndIsWrappingAsset, BM_GETCHECK, 0, 0) == 1); SendEditor(hwndAssetWrapTemplate, SCI_SETREADONLY, !isWrappingAsset, 0); return TRUE; } case IDOK: { BrowserSourceConfig *config = (BrowserSourceConfig *)GetWindowLongPtr(hwnd, DWLP_USER); HWND hwndUrlOrAsset = GetDlgItem(hwnd, IDC_URL_OR_ASSET); HWND hwndWidth = GetDlgItem(hwnd, IDC_WIDTH); HWND hwndHeight = GetDlgItem(hwnd, IDC_HEIGHT); HWND hwndCustomCss = config->hwndCustomCssEditor; HWND hwndIsWrappingAsset = GetDlgItem(hwnd, IDC_IS_WRAPPING_ASSET); HWND hwndAssetWrapTemplate = config->hwndAssetWrapTemplateEditor; String str; str.SetLength((UINT)SendMessage(hwndUrlOrAsset, WM_GETTEXTLENGTH, 0, 0)); if(!str.Length()) return TRUE; SendMessage(hwndUrlOrAsset, WM_GETTEXT, str.Length()+1, (LPARAM)str.Array()); config->url = str; str.SetLength((UINT)SendMessage(hwndWidth, WM_GETTEXTLENGTH, 0, 0)); if(!str.Length()) return TRUE; SendMessage(hwndWidth, WM_GETTEXT, str.Length()+1, (LPARAM)str.Array()); config->width = str.ToInt(); str.SetLength((UINT)SendMessage(hwndHeight, WM_GETTEXTLENGTH, 0, 0)); if(!str.Length()) return TRUE; SendMessage(hwndHeight, WM_GETTEXT, str.Length()+1, (LPARAM)str.Array()); config->height = str.ToInt(); UINT length = (UINT)SendEditor(hwndCustomCss, SCI_GETTEXTLENGTH); char *utf8String = (char *)Allocate(length + 1); utf8String[length] = 0; SendMessage(hwndCustomCss, SCI_GETTEXT, length + 1, (LPARAM)utf8String); TSTR tstr = utf8_createTstr(utf8String); str = tstr; Free(tstr); Free(utf8String); config->customCss = str; config->isWrappingAsset = (SendMessage(hwndIsWrappingAsset, BM_GETCHECK, 0, 0) == 1); length = (UINT)SendEditor(hwndAssetWrapTemplate, SCI_GETTEXTLENGTH); utf8String = (char *)Allocate(length + 1); utf8String[length] = 0; SendMessage(hwndAssetWrapTemplate, SCI_GETTEXT, length + 1, (LPARAM)utf8String); tstr = utf8_createTstr(utf8String); str = tstr; Free(tstr); Free(utf8String); config->assetWrapTemplate = str; EndDialog(hwnd, IDOK); return TRUE; } case IDCANCEL: { EndDialog(hwnd, IDCANCEL); return TRUE; } } break; } case WM_CLOSE: { EndDialog(hwnd, IDCANCEL); return TRUE; } } return FALSE; } ImageSource* STDCALL CreateBrowserSource(XElement *data) { return new BrowserSource(data); } bool STDCALL ConfigureBrowserSource(XElement *element, bool bCreating) { XElement *dataElement = element->GetElement(TEXT("data")); bool isMissingDataElement; if (isMissingDataElement = !dataElement) { dataElement = element->CreateElement(TEXT("data")); } BrowserSourceConfig *config = new BrowserSourceConfig(dataElement); if (isMissingDataElement) { config->Populate(); } if(DialogBoxParam(BrowserSourcePlugin::hinstDLL, MAKEINTRESOURCE(IDD_BROWSERCONFIG), API->GetMainWindow(), ConfigureDialogProc, (LPARAM)config) == IDOK) { config->Save(); element->SetInt(TEXT("cx"), config->width); element->SetInt(TEXT("cy"), config->height); delete config; return true; } delete config; return false; } BrowserSourcePlugin::BrowserSourcePlugin() { isDynamicLocale = false; settings = NULL; browserManager = new BrowserManager(); if (!locale->HasLookup(KEY("PluginName"))) { isDynamicLocale = true; int localizationStringCount = sizeof(localizationStrings) / sizeof(CTSTR); Log(TEXT("Browser Source plugin strings not found, dynamically loading %d strings"), sizeof(localizationStrings) / sizeof(CTSTR)); for(int i = 0; i < localizationStringCount; i += 2) { locale->AddLookupString(localizationStrings[i], localizationStrings[i+1]); } if (!locale->HasLookup(KEY("PluginName"))) { AppWarning(TEXT("Uh oh..., unable to dynamically add our localization keys")); } } API->RegisterImageSourceClass(BROWSER_SOURCE_CLASS, STR("ClassName"), (OBSCREATEPROC)CreateBrowserSource, (OBSCONFIGPROC)ConfigureBrowserSource); } BrowserSourcePlugin::~BrowserSourcePlugin() { delete browserManager; if (isDynamicLocale) { int localizationStringCount = sizeof(localizationStrings) / sizeof(CTSTR); Log(TEXT("Browser Source plugin instance deleted; removing dynamically loaded localization strings")); for(int i = 0; i < localizationStringCount; i += 2) { locale->RemoveLookupString(localizationStrings[i]); } } isDynamicLocale = false; } bool LoadPlugin() { if(BrowserSourcePlugin::instance != NULL) { return false; } BrowserSourcePlugin::instance = new BrowserSourcePlugin(); return true; } void UnloadPlugin() { if(BrowserSourcePlugin::instance == NULL) { return; } delete BrowserSourcePlugin::instance; BrowserSourcePlugin::instance = NULL; } void OnStartStream() { if (BrowserSourcePlugin::instance == NULL) { return; } BrowserSourcePlugin *plugin = BrowserSourcePlugin::instance; plugin->GetBrowserManager()->Startup(); } void OnStopStream() { } CTSTR GetPluginName() { return STR("PluginName"); } CTSTR GetPluginDescription() { return STR("PluginDescription"); } BOOL CALLBACK DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { if(fdwReason == DLL_PROCESS_ATTACH) { BrowserSourcePlugin::hinstDLL = hinstDLL; } return TRUE; }
[ "jrbradley@gmail.com" ]
jrbradley@gmail.com
91b78d95716d236d01c7a3ab139e77baca102e41
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/2.2/pointDisplacement
f58fe2fd706f81164a40fbb249033ff2118e08d9
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
707,046
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class pointVectorField; location "2.2"; object pointDisplacement; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 0 0 0 0 0]; internalField nonuniform List<vector> 26316 ( (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.597849018e-07 8.710797781e-06 2.775557562e-17) (0 0 0) (0 0 0) (-8.843478239e-08 9.757474763e-05 3.330669074e-16) (4.068532734e-07 8.294434757e-05 2.91433544e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.95474332e-06 0.0001378200234 4.857225733e-16) (-5.729943049e-05 0.000864473124 3.080868893e-15) (-7.491146257e-07 1.136375445e-05 2.775557562e-17) (-0.0001088529127 0.002259469075 7.993605777e-15) (-0.0002705726955 0.005588336826 1.990074772e-14) (-0.000321385105 0.007569276732 2.695066392e-14) (-0.0001496839243 0.003542260634 1.254552018e-14) (-0.0001828476199 0.007464108082 2.642330799e-14) (-0.0003215437863 0.01307700065 4.65599781e-14) (-0.0002692874804 0.01444988183 5.14449594e-14) (-0.0001578236285 0.008494351929 3.007316618e-14) (-8.373481143e-06 0.009935079873 3.518019209e-14) (-1.302413522e-05 0.01633564367 5.817568649e-14) (8.290836566e-05 0.01612544381 5.742628595e-14) (4.948356869e-05 0.009772535252 3.461120279e-14) (0.0001705651561 0.007491577989 2.653433029e-14) (0.0003008470055 0.01311562858 4.669875597e-14) (0.0003307793749 0.01145975015 4.080069615e-14) (0.0001797640921 0.006271294452 2.220446049e-14) (0.0001060704511 0.00228827109 8.10462808e-15) (0.0002628870656 0.005636875877 2.006728117e-14) (0.0001979500011 0.003766059417 1.340594302e-14) (6.199599615e-05 0.00118647334 4.204969706e-15) (0 0 0) (1.044222493e-05 0.0001484231051 5.273559367e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.780235333e-05 0.0002831635069 1.026956298e-15) (-0.0001519017408 0.001649362603 6.009082121e-15) (-3.597664256e-05 0.0003928234574 1.415534356e-15) (-0.0005138447212 0.007000210426 2.534084054e-14) (-0.0008222775157 0.01114315815 4.057865155e-14) (-0.001049929921 0.01551277483 5.649647417e-14) (-0.0007069211427 0.01049875964 3.801126081e-14) (-0.001102890732 0.02245634891 8.129608098e-14) (-0.001460965929 0.02960734999 1.078026557e-13) (-0.001472568877 0.03405949171 1.240119119e-13) (-0.001135302919 0.0263777549 9.549305791e-14) (-0.0008966535423 0.03609695874 1.306871278e-13) (-0.001117728195 0.04483888023 1.632582958e-13) (-0.000890494855 0.04728062955 1.721539578e-13) (-0.0007200907998 0.03833996273 1.388056337e-13) (-2.625383907e-05 0.04132985993 1.496580637e-13) (-2.951780356e-05 0.05050858263 1.839223218e-13) (0.0002752818909 0.05015849856 1.826455653e-13) (0.0002215536989 0.04100368901 1.48464574e-13) (0.000849561207 0.03616730256 1.309646835e-13) (0.001063465642 0.04491738943 1.635636071e-13) (0.001244712262 0.04186874529 1.524752546e-13) (0.0009852137294 0.03338645465 1.208894096e-13) (0.001073126278 0.02256857253 8.17262924e-14) (0.001423473737 0.02973896705 1.083022561e-13) (0.00135091059 0.02506049434 9.126033262e-14) (0.000991428561 0.01851090029 6.702971511e-14) (0.0005076012586 0.007090004916 2.567390744e-14) (0.0008111599355 0.01126161292 4.100886297e-14) (0.0005739279287 0.007350971767 2.677025268e-14) (0.0003188359036 0.004108084369 1.487698853e-14) (0 0 0) (2.759870555e-05 0.0002862763184 1.040834086e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.196125098e-05 0.0001000207218 3.747002708e-16) (0 0 0) (-0.0005093710344 0.005099093904 1.888766921e-14) (-0.0007572177961 0.00752471757 2.803313137e-14) (-0.001185602921 0.0125736629 4.685141164e-14) (-0.0008703097358 0.009292183582 3.441691376e-14) (-0.001993940046 0.02659378226 9.850453786e-14) (-0.002421006923 0.03211340026 1.196404087e-13) (-0.002710777035 0.03921667797 1.4610535e-13) (-0.002279222801 0.03315195404 1.227906665e-13) (-0.00260808617 0.05207914176 1.928873727e-13) (-0.002975584209 0.05910515006 2.201849814e-13) (-0.002851451937 0.06466968887 2.409183963e-13) (-0.002523903872 0.05754135174 2.131211874e-13) (-0.001763308829 0.06985847759 2.587374759e-13) (-0.001949262888 0.07683557527 2.862293735e-13) (-0.001518107165 0.07932165639 2.954997358e-13) (-0.001380075148 0.07246604503 2.68410294e-13) (-3.659381251e-05 0.07579943857 2.807754029e-13) (-3.893698435e-05 0.08243588532 3.07129322e-13) (0.0004714569796 0.08210876833 3.059219544e-13) (0.000429682297 0.07544535316 2.794708909e-13) (0.001692864942 0.06994574944 2.591260539e-13) (0.001873870891 0.07691817304 2.866179516e-13) (0.00225173742 0.07367243721 2.745303984e-13) (0.00202206124 0.06659771399 2.467331894e-13) (0.002550617025 0.05224719521 1.935812621e-13) (0.002912602364 0.05923885303 2.207678484e-13) (0.002936459471 0.05305226253 1.977168429e-13) (0.002543121996 0.04627197481 1.714461906e-13) (0.001956534713 0.02659225592 9.853229344e-14) (0.002436193963 0.03279033485 1.222216772e-13) (0.002103477411 0.02610513325 9.731104811e-14) (0.00166844846 0.02087413504 7.735478924e-14) (0.0005800268878 0.005889091553 2.182976022e-14) (0.0008665462211 0.008743216492 3.258504577e-14) (0.0004892836807 0.004647006387 1.731947918e-14) (0.0002796744852 0.002672639302 9.908740495e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.528515313e-05 0.0004315255423 1.637578961e-15) (-0.0001257308556 0.000975427214 3.719247132e-15) (-0.000446664619 0.003645503179 1.390554338e-14) (-0.0003002696727 0.002465592022 9.353628982e-15) (-0.001767234097 0.01720124068 6.525335827e-14) (-0.002090977302 0.02022965463 7.720213357e-14) (-0.002697737138 0.02782151325 1.061650767e-13) (-0.002338485326 0.02426335301 9.203748874e-14) (-0.003705922425 0.04799135763 1.820071871e-13) (-0.004093111742 0.0526345689 2.008254674e-13) (-0.004321373519 0.06056449085 2.310790448e-13) (-0.003949953309 0.05579335553 2.115807529e-13) (-0.003933043193 0.07649721844 2.900041318e-13) (-0.0041744466 0.08043804595 3.067823773e-13) (-0.003866468251 0.08514825015 3.247402347e-13) (-0.003656244105 0.0812179699 3.079064781e-13) (-0.002345591552 0.09073303686 3.439748486e-13) (-0.002419424284 0.09269288053 3.53495011e-13) (-0.001840868624 0.09357455189 3.568673135e-13) (-0.001798365081 0.09219832204 3.495398415e-13) (-4.876687274e-05 0.0936538425 3.551048344e-13) (-5.277554221e-05 0.09406354167 3.587685704e-13) (0.0005463657696 0.09404654163 3.58726937e-13) (0.0005429973426 0.09352206712 3.546191119e-13) (0.002268172059 0.0908963247 3.447103714e-13) (0.002334469858 0.0927901933 3.539946114e-13) (0.002880302154 0.09125452273 3.481520627e-13) (0.002780683347 0.08874953204 3.365918655e-13) (0.00386629051 0.07661889414 2.906425101e-13) (0.004112694063 0.08066105064 3.078509669e-13) (0.004325033816 0.07532057759 2.8750613e-13) (0.004025369813 0.0706777828 2.68146616e-13) (0.003744480064 0.04932727538 1.87183602e-13) (0.004125820251 0.05400621744 2.061684157e-13) (0.003785605408 0.04577310228 1.747352263e-13) (0.003396218425 0.04132609648 1.568190022e-13) (0.001856721491 0.01838463544 6.974976152e-14) (0.002188072423 0.02152968131 8.21842594e-14) (0.00157881564 0.01462563102 5.583034035e-14) (0.001293786906 0.01206082932 4.576894419e-14) (8.551646046e-05 0.0006777924969 2.567390744e-15) (0.000146905513 0.00115695638 4.413136523e-15) (3.729722448e-06 2.797260849e-05 9.714451465e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.261922077e-06 3.601938383e-05 1.387778781e-16) (-1.435831681e-07 9.891077686e-07 0) (0 0 0) (-0.0003947610282 0.003006496634 1.168509733e-14) (-0.0004982633644 0.003771285328 1.475208844e-14) (-0.001033972787 0.008232983698 3.219646771e-14) (-0.0008821343933 0.00706775226 2.747801986e-14) (-0.002869146993 0.02724688263 1.058736432e-13) (-0.003122749619 0.02946875812 1.152133944e-13) (-0.003795965936 0.03817976929 1.492417301e-13) (-0.00359720318 0.03641355953 1.414840467e-13) (-0.004989212864 0.06293805525 2.445127434e-13) (-0.005192399158 0.06507065754 2.543520949e-13) (-0.005336180967 0.07283546829 2.846889391e-13) (-0.005153399871 0.07081165006 2.750855099e-13) (-0.004674158 0.08769860658 3.406719351e-13) (-0.004764987712 0.08873157943 3.468197951e-13) (-0.00429540743 0.09103416566 3.558264794e-13) (-0.004243417496 0.09069479737 3.523015213e-13) (-0.002502789433 0.09238577577 0) (-0.002530444892 0.09180491761 0) (-0.002228600261 0.09180814466 0) (-0.001910449009 0.09182439139 0) (-0.001894086881 0.09211191093 0) (-0.001889498455 0.09239253286 0) (-6.431233853e-05 0.09239198962 0) (-6.615531548e-05 0.09211293012 0) (0.0002395665546 0.09211115566 0) (0.0002397536141 0.09239019985 0) (0.002393919397 0.09235288387 0) (0.002401150754 0.09206621593 0) (0.002410521124 0.09177509334 0) (0.002714586085 0.0917643177 0) (0.003014272739 0.0917590954 0) (0.00300484045 0.09233473631 0) (0.00459536206 0.08825248459 3.430450368e-13) (0.004672836645 0.08920929714 3.488875855e-13) (0.005041405331 0.08562833859 3.348987754e-13) (0.004927025009 0.08419463972 3.272798699e-13) (0.005013414944 0.064394339 2.503275365e-13) (0.005196845894 0.06631045659 2.593758541e-13) (0.004941356454 0.05823094781 2.277900091e-13) (0.004715371207 0.055935839 2.174510572e-13) (0.003055246811 0.02948269144 1.146166495e-13) (0.003341586174 0.03204278625 1.253441795e-13) (0.002635259786 0.02379298274 9.306444504e-14) (0.002373422479 0.02156425523 8.382183836e-14) (0.0005293988223 0.004091596635 1.590394483e-14) (0.0006617024502 0.005082234654 1.987299214e-14) (0.0002371213179 0.001734697672 6.786238238e-15) (0.0001613390961 0.001187691237 4.62130334e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.741294874e-05 0.0003164170051 1.276756478e-15) (-2.701923254e-05 0.0001814695966 7.21644966e-16) (-2.21040866e-05 0.0001493954279 5.967448757e-16) (-0.0007159159262 0.005315947459 2.117750419e-14) (-0.0007424519833 0.005477837089 2.195466031e-14) (-0.001374930345 0.01067094997 4.277134202e-14) (-0.001338717171 0.01045681363 4.164724121e-14) (-0.003605379602 0.03336492778 1.32893696e-13) (-0.003661843777 0.03366813512 1.349476086e-13) (-0.004361947924 0.04273748453 1.712796571e-13) (-0.004302329024 0.04242746847 1.689759443e-13) (-0.005597358102 0.068724029 2.736699756e-13) (-0.005650349868 0.06891841363 2.761818552e-13) (-0.00572918741 0.07608170384 3.048949981e-13) (-0.005683033956 0.07597571352 3.02549652e-13) (-0.00489304693 0.0891289205 3.54938301e-13) (-0.004909133599 0.08878544766 3.558264794e-13) (-0.004353950983 0.0895228885 0) (-0.004349433636 0.09008983119 3.587685704e-13) (-0.002561797571 0.09008590748 0) (-0.002565349711 0.08979797123 0) (-0.002267589506 0.08979775337 0) (-0.002264066449 0.09008523621 0) (0.002419146841 0.09006194297 0) (0.002418982501 0.08977677779 0) (0.002716645384 0.08977365714 0) (0.002717120415 0.09005839816 0) (0.004780392242 0.08959119348 3.570199691e-13) (0.004788638534 0.08924474517 3.57880392e-13) (0.005273486249 0.08742676012 3.50622309e-13) (0.005246672823 0.08747724621 3.486100297e-13) (0.005711463923 0.07155766151 2.851885395e-13) (0.005783696661 0.07203763887 2.889077866e-13) (0.005588959615 0.06428520072 2.578076641e-13) (0.005506975134 0.06372019945 2.539496391e-13) (0.003924720017 0.03694188384 1.472155731e-13) (0.004014293609 0.03755460599 1.506017533e-13) (0.003261460867 0.02872334292 1.151856388e-13) (0.003177025741 0.02815308535 1.121880366e-13) (0.0009600793989 0.007235920392 2.882416528e-14) (0.001084178848 0.008119684334 3.25572902e-14) (0.0005171701406 0.003689186534 1.47937218e-14) (0.0004257431652 0.003056285603 1.21846977e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.783049984e-05 0.0005062318925 2.095545959e-15) (-7.029672334e-05 0.0004602033063 1.887379142e-15) (-6.167034094e-05 0.0004063403782 1.665334537e-15) (-0.000882071746 0.006383933284 2.609024108e-14) (-0.0009120553756 0.006558748738 2.69784195e-14) (-0.001590563532 0.01203173991 4.947431353e-14) (-0.001553137965 0.01182438993 4.832245715e-14) (-0.003886903132 0.03505147649 1.432048924e-13) (-0.003932560626 0.03523296469 1.448702269e-13) (-0.004624165329 0.04414066067 1.814798312e-13) (-0.004580142219 0.04400805936 1.797728633e-13) (-0.005801458387 0.06935628531 2.833011603e-13) (-0.005831602145 0.06924950944 2.846889391e-13) (-0.005872979247 0.07590795018 3.120559366e-13) (-0.005849107658 0.07611432346 3.109040803e-13) (-0.004938053357 0.08744161134 3.571865026e-13) (-0.004943973526 0.08693390347 3.574085472e-13) (-0.004367192317 0.08726325443 0) (-0.004364243793 0.08782675931 0) (-0.00257947119 0.0878155611 0) (-0.002581116515 0.08753361386 0) (-0.002284111256 0.08753179184 0) (-0.002282426749 0.08781373882 0) (0.002411042387 0.08778691525 0) (0.002409255627 0.08750331021 0) (0.002706206769 0.0875012012 0) (0.002708044832 0.08778466224 0) (0.004788913694 0.0877566187 3.587408148e-13) (0.004785107273 0.08720117495 3.587685704e-13) (0.005318662638 0.08619563821 3.546607452e-13) (0.005314889522 0.08662216706 3.541056337e-13) (0.005971066877 0.07306059131 2.986777492e-13) (0.00600440235 0.07303515804 3.00523495e-13) (0.005866028369 0.06587136033 2.710331959e-13) (0.005822613222 0.06577680265 2.688960166e-13) (0.004335667472 0.03981623138 1.627586954e-13) (0.004399944222 0.04015658468 1.652150639e-13) (0.003652345266 0.03137568617 1.290773044e-13) (0.003586093892 0.03099942643 1.267042027e-13) (0.001243413389 0.009139048982 3.734512699e-14) (0.001294043313 0.009451022382 3.887168365e-14) (0.0006673526511 0.004642081493 1.909583602e-14) (0.0006291198201 0.004404077565 1.799949079e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001148085324 0.0007273743415 3.094746681e-15) (-0.0001035081451 0.0006601361565 2.789435349e-15) (-9.34466648e-05 0.0005999165344 2.511879593e-15) (-0.0009866520584 0.006958482592 2.918498776e-14) (-0.001016867629 0.007124616807 3.007316618e-14) (-0.00171999979 0.0126758175 5.351274979e-14) (-0.001682928206 0.0124845835 5.234701561e-14) (-0.004044048053 0.03552283027 1.489364188e-13) (-0.004088169805 0.03567148979 1.505462421e-13) (-0.004773857541 0.04437324927 1.872668687e-13) (-0.004731536955 0.04427623965 1.856292897e-13) (-0.005905107648 0.0687091394 2.88033486e-13) (-0.005933541343 0.06856723896 2.893241202e-13) (-0.005953534574 0.07486392312 3.159000839e-13) (-0.005931249042 0.07510220868 3.148314942e-13) (-0.004958567695 0.08536455436 3.57880392e-13) (-0.004963374104 0.08484139696 3.580469254e-13) (-0.004378093471 0.08501397018 0) (-0.004375455057 0.08557598815 0) (-0.002591844481 0.08556484977 0) (-0.002593312858 0.08528399849 0) (-0.002296712041 0.08528224441 0) (-0.002295951647 0.08542268294 0) (-0.00229519202 0.08556300392 0) (0.002393499435 0.0855205777 0) (0.002390857688 0.08523804924 0) (0.002687472332 0.08523641261 0) (0.002690152663 0.0855188494 0) (0.004769426733 0.08549881071 3.587408148e-13) (0.004762966836 0.08492023914 3.586853037e-13) (0.005285630977 0.08376542111 3.538280779e-13) (0.005298127411 0.08443334568 3.542860449e-13) (0.005968566979 0.07132199773 2.992883719e-13) (0.005942870313 0.07059507063 2.982059044e-13) (0.005797573075 0.06355858368 2.684796829e-13) (0.005825691999 0.06425296945 2.696176615e-13) (0.004351778114 0.03898390953 1.635636071e-13) (0.004322906565 0.03848374845 1.625366508e-13) (0.003577380453 0.02996933079 1.265654248e-13) (0.003604437242 0.03038732905 1.274813588e-13) (0.001259271575 0.009022577117 3.784472735e-14) (0.001242879494 0.008847978635 3.735900478e-14) (0.0006295678426 0.004268157989 1.801336857e-14) (0.0006411786256 0.004375070017 1.834643548e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001644098248 0.001013978999 4.427014311e-15) (-0.0001509737649 0.0009374606952 4.066191828e-15) (-0.0001379780041 0.0008625653492 3.719247132e-15) (-0.001111317758 0.007632147862 3.286260153e-14) (-0.001144585213 0.007807607082 3.386180225e-14) (-0.001874982579 0.01345200032 5.832834216e-14) (-0.001834877177 0.01325389218 5.707934125e-14) (-0.004222987963 0.03610630974 1.55458979e-13) (-0.004269420651 0.03625313575 1.571520691e-13) (-0.004946954323 0.04474053196 1.939420846e-13) (-0.00490272935 0.04464843222 1.922351167e-13) (-0.0060191481 0.06811776467 2.93265412e-13) (-0.006048153026 0.06796412035 2.945838018e-13) (-0.006042594004 0.07387228204 3.201883203e-13) (-0.006020179751 0.07412391038 3.191058529e-13) (-0.004976381146 0.08324823668 3.584216257e-13) (-0.00498023105 0.08270977059 3.585187702e-13) (-0.00438805488 0.08276458837 0) (-0.00438566248 0.08332693446 0) (-0.002603148457 0.08331588161 0) (-0.002604448756 0.08303476802 0) (-0.002308357377 0.0830330042 0) (-0.002307674577 0.08317356078 0) (-0.002306978887 0.08331409116 0) (0.00237017942 0.08326360334 0) (0.002366730493 0.08298147197 0) (0.002663059773 0.08298013761 0) (0.00266657349 0.08326219019 0) (0.004733080002 0.08303528184 3.578387586e-13) (0.004716898123 0.08230660217 3.571171137e-13) (0.00518256551 0.08032330494 3.48526763e-13) (0.005219013563 0.08134042799 3.5055292e-13) (0.005746768555 0.06705377612 2.889910533e-13) (0.005630472668 0.06530274591 2.833566715e-13) (0.005464790874 0.05846868033 2.536998389e-13) (0.005560361716 0.05985648302 2.579603198e-13) (0.004008551045 0.03501444936 1.50879309e-13) (0.003908431113 0.03392218105 1.471739397e-13) (0.003167361938 0.02586282663 1.122019144e-13) (0.00326103364 0.02680009034 1.154909501e-13) (0.001015986678 0.007092837039 3.055888875e-14) (0.0009614727745 0.006668194351 2.892130979e-14) (0.0004273846439 0.00282241339 1.224020885e-14) (0.0004639575166 0.003084302818 1.329492072e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002077851339 0.00124650895 5.592748487e-15) (-0.000214884867 0.00129814479 5.773159728e-15) (-0.0001961615832 0.001193297795 5.287437155e-15) (-0.001253305728 0.0083749268 3.706757123e-14) (-0.001295810036 0.008598761538 3.833044993e-14) (-0.002055154694 0.0143424286 6.392109064e-14) (-0.002004845299 0.01408957925 6.236677841e-14) (-0.004417442208 0.03673230888 1.625505286e-13) (-0.004473827561 0.03693790045 1.645905634e-13) (-0.005140653959 0.04519839806 2.013944567e-13) (-0.00508739575 0.04505089676 1.993405441e-13) (-0.006138915802 0.06751572954 2.987193826e-13) (-0.006172689904 0.06739376901 3.00259817e-13) (-0.006137735048 0.07289051616 3.247541125e-13) (-0.006112136503 0.07312139006 3.235189894e-13) (-0.004990326257 0.08107180927 3.587408148e-13) (-0.004993240999 0.08051737656 3.587685704e-13) (-0.004397189139 0.08051586726 0) (-0.004394915135 0.08107808352 0) (-0.002612700135 0.08106724159 0) (-0.002613752117 0.0807861525 0) (-0.002318221905 0.08078445765 0) (-0.002317669452 0.08092505427 0) (-0.002317104621 0.08106554632 0) (0.002340455728 0.08101203881 0) (0.002336190057 0.0807308401 0) (0.002632416389 0.0807297415 0) (0.002636773482 0.08101093962 0) (0.004646879566 0.07979591368 3.534394999e-13) (0.004611972522 0.07877824898 3.513578317e-13) (0.00499361252 0.07567983122 3.375633106e-13) (0.005053308845 0.07701590158 3.411299021e-13) (0.005301340713 0.06036746318 2.673972155e-13) (0.005214616796 0.05901570007 2.632338791e-13) (0.004934849506 0.05149159076 2.296635104e-13) (0.0050895985 0.05344342722 2.367134266e-13) (0.003455157293 0.02940931273 1.302430386e-13) (0.003238699337 0.02738516815 1.221245327e-13) (0.002508417813 0.01995128336 8.897049764e-14) (0.002725520251 0.02182240043 9.663103651e-14) (0.0006821340376 0.004637120102 2.053912596e-14) (0.0005957218546 0.004022412536 1.793010185e-14) (0.0001934313183 0.001243596029 5.551115123e-15) (0.0002434700366 0.001575930092 6.980527267e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0003693685713 0.002153329497 9.950373858e-15) (-0.0003367610261 0.001977563105 9.076073226e-15) (-0.0002882233253 0.001704726817 7.757683385e-15) (-0.001432348642 0.009304905541 4.235500839e-14) (-0.001538688555 0.009923822359 4.550526622e-14) (-0.002331565034 0.01581293378 7.249756351e-14) (-0.00220188035 0.01504213019 6.847300504e-14) (-0.004664383734 0.03768547533 1.715155795e-13) (-0.004748593887 0.03808436316 1.745825706e-13) (-0.005387681801 0.04600594843 2.108729857e-13) (-0.005319619682 0.04576256633 2.082639616e-13) (-0.006283844307 0.06709551649 3.053252096e-13) (-0.006300005393 0.06676192792 3.059913434e-13) (-0.00625044006 0.07203055724 3.301386942e-13) (-0.006221001741 0.07224047782 3.287509154e-13) (-0.005001323712 0.07883322368 0) (-0.005004367934 0.0782710647 0) (-0.004407431564 0.07826745379 0) (-0.004405962334 0.07854843567 0) (-0.004404571295 0.07882944418 0) (-0.002620488245 0.07881865536 0) (-0.002620973861 0.0786782934 0) (-0.002473169232 0.07867749796 0) (-0.002472696933 0.07881782082 0) (-5.638536501e-05 0.07876857932 0) (-5.847139852e-05 0.0786985867 0) (-6.008682378e-05 0.07862857794 0) (8.463541404e-05 0.07862927851 0) (8.855952177e-05 0.07876917395 0) (0.002299796088 0.07876586147 0) (0.002293370082 0.07848585234 0) (0.002286827044 0.07820592234 0) (0.002881028511 0.07820351783 0) (0.002893359391 0.0787637354 0) (0.002596688581 0.07876477159 0) (0.004474696355 0.07523242066 3.427258477e-13) (0.004402851087 0.07363445479 3.378547442e-13) (0.004671688789 0.06922571201 3.176348073e-13) (0.004791399364 0.07139463772 3.252537129e-13) (0.004777845881 0.0530629852 2.417371858e-13) (0.004607341815 0.05084568935 2.33285613e-13) (0.004261285269 0.04334027482 1.988548215e-13) (0.004439996038 0.04545032714 2.070427163e-13) (0.002684424452 0.02224915909 1.013356066e-13) (0.002522844631 0.02076945639 9.528489109e-14) (0.00184296611 0.01426843895 6.54476473e-14) (0.001985134973 0.01547399489 7.048528428e-14) (0.0002816506686 0.00186314822 8.479328351e-15) (0.0002289488791 0.001504095603 6.911138328e-15) (1.814894711e-05 0.0001135233084 5.273559367e-16) (3.467504749e-05 0.0002184025466 9.992007222e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0003502672082 0.001991921132 9.478529073e-15) (-0.0003958236163 0.002267762253 1.071365219e-14) (-0.000422960037 0.002441164029 1.143529715e-14) (-0.001703432983 0.0108016665 5.062616992e-14) (-0.001648632493 0.01037717407 4.900246875e-14) (-0.002456263215 0.01626065757 7.675804437e-14) (-0.002521931685 0.01681958498 7.882583475e-14) (-0.004954634312 0.03910120158 1.831867991e-13) (-0.00487356739 0.03817373936 1.801753191e-13) (-0.005499694697 0.04587625239 2.165212454e-13) (-0.005579321405 0.04689336297 2.19685381e-13) (-0.006402740314 0.06686872691 3.132494264e-13) (-0.006347056449 0.06577647249 3.104183577e-13) (-0.006245674844 0.07043065879 3.32373018e-13) (-0.006287673392 0.07146026145 3.347599975e-13) (-0.004947490606 0.07657864499 0) (-0.004951162319 0.07601639868 0) (-0.004352556106 0.07601248952 0) (-0.004350720676 0.07629354737 0) (-0.004348884393 0.07657473583 0) (-0.002553091874 0.07656300852 0) (-0.002554928157 0.07628182007 0) (-0.00225563811 0.07627986557 0) (-0.002254719542 0.0764205251 0) (-0.002253801827 0.07656105403 0) (-0.002403446851 0.07656203128 0) (-0.0001587066311 0.07654737215 0) (-0.0001596240959 0.07640684322 0) (-0.0001605425388 0.07626618369 0) (0.0001387567037 0.07626422913 0) (0.0001405929868 0.07654541759 0) (0.00223567947 0.07653173576 0) (0.002232007757 0.07596948945 0) (0.002820060112 0.07567514345 3.574085472e-13) (0.00283209771 0.07646732495 3.585048924e-13) (0.004190714373 0.06901209277 3.236022561e-13) (0.004091013951 0.06704612485 3.1667724e-13) (0.004266228234 0.06186203545 2.921968223e-13) (0.004387667718 0.06396336703 2.999267501e-13) (0.004012781533 0.04344621719 2.03725925e-13) (0.00385117687 0.04143269864 1.957045637e-13) (0.00342093937 0.03388636046 1.600525268e-13) (0.003655648554 0.03645690679 1.709465902e-13) (0.001903284556 0.01535095336 7.197020757e-14) (0.001658205646 0.01328185463 6.272760089e-14) (0.001125224898 0.008473674073 4.002354004e-14) (0.001282408185 0.009725119675 4.558853295e-14) (4.712916565e-05 0.0003032033484 1.415534356e-15) (2.128724603e-05 0.0001359890401 6.383782392e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-8.183304776e-05 0.0004515322911 2.220446049e-15) (-0.0001484755868 0.0008255221244 4.024558464e-15) (-0.0002205712095 0.001235696613 5.967448757e-15) (-0.001263582879 0.007777398698 3.755329381e-14) (-0.001079783401 0.0065961983 3.208544541e-14) (-0.001756650495 0.01128630113 5.490052857e-14) (-0.00198666749 0.01286052989 6.208922265e-14) (-0.004270382428 0.0327035031 1.578737141e-13) (-0.003960150718 0.03010082096 1.464106614e-13) (-0.004583824421 0.03710084571 1.804528749e-13) (-0.004898135664 0.039943963 1.92804106e-13) (-0.005888538577 0.05963244792 2.878114413e-13) (-0.005629745521 0.05657953755 2.751687767e-13) (-0.005653375987 0.06180648086 3.005928839e-13) (-0.005874520671 0.06471885178 3.12361248e-13) (-0.004907704828 0.07352614523 3.549105454e-13) (-0.00482885661 0.07176459384 3.490402412e-13) (-0.004329533641 0.07313803023 3.557432127e-13) (-0.0043609284 0.07428125513 3.585742814e-13) (-0.002567780432 0.07431376207 0) (-0.002571452998 0.07375138515 0) (-0.001972859845 0.07374747608 0) (-0.001969187279 0.07430985299 0) (-0.002268490386 0.07431180757 0) (-0.0001733947602 0.07429812569 0) (-0.0001770673263 0.07373574877 0) (0.0004215297447 0.07373183967 0) (0.0004252023108 0.07429421659 0) (0.002201914415 0.07362032579 3.55590557e-13) (0.002165402102 0.07192667017 3.500533197e-13) (0.002667606011 0.06971919195 3.393257897e-13) (0.00273301551 0.07193205074 3.474442956e-13) (0.003754850666 0.06022148894 2.90906188e-13) (0.00359259315 0.05718330327 2.783329123e-13) (0.003642543128 0.05127420028 2.495781359e-13) (0.003831788646 0.05435309901 2.625538675e-13) (0.00318403458 0.03352252188 1.619260281e-13) (0.002956924927 0.03089148296 1.503519531e-13) (0.002499616501 0.02404769555 1.170452624e-13) (0.002721315279 0.02638384668 1.274397254e-13) (0.00106029167 0.008311430444 4.013456234e-14) (0.0009107716053 0.007084713408 3.44863027e-14) (0.0004654352304 0.003404136989 1.657007864e-14) (0.0006324144987 0.004661165172 2.250977182e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.010240057e-06 1.092183447e-05 5.551115123e-17) (-0.0004807601986 0.002870441462 1.429412144e-14) (-0.0003018711411 0.001788462156 8.978928712e-15) (-0.000701590661 0.004372394523 2.194078252e-14) (-0.0009632941282 0.006049687983 3.011479954e-14) (-0.00279004067 0.0207349058 1.032229857e-13) (-0.002352680951 0.01735359584 8.708311849e-14) (-0.002903638125 0.02280913357 1.144501161e-13) (-0.003369782061 0.02666918489 1.32768796e-13) (-0.004531288252 0.04453010736 2.216560269e-13) (-0.004071580616 0.03972010704 1.992711551e-13) (-0.004232958257 0.04491846751 2.253475184e-13) (-0.004663579052 0.04985093687 2.481487238e-13) (-0.004274806936 0.06207511983 3.090028233e-13) (-0.003978675882 0.05735455544 2.877420524e-13) (-0.003678732367 0.06025041678 3.02285974e-13) (-0.003924647264 0.06475097602 3.223254996e-13) (-0.002472742763 0.06910785296 3.440581153e-13) (-0.002355319254 0.06533718939 3.278488592e-13) (-0.001827725351 0.06600371398 3.312072838e-13) (-0.001913633476 0.06962334151 3.466532617e-13) (-0.0001768729907 0.06917324509 3.444605712e-13) (-0.0001677133971 0.06542554143 3.283623373e-13) (0.0003751867423 0.06433398411 3.228944889e-13) (0.00039391424 0.06829451082 3.40089068e-13) (0.001922035387 0.06238738918 3.10723669e-13) (0.001793618261 0.05769425649 2.89601676e-13) (0.002143775789 0.05422747321 2.722128079e-13) (0.002315050152 0.05908606347 2.942923683e-13) (0.002906126089 0.04514363862 2.248756736e-13) (0.002618204243 0.04031991803 2.024075352e-13) (0.002556711748 0.03482344032 1.74818493e-13) (0.002870572769 0.03943527528 1.964262086e-13) (0.002098392405 0.0214004389 1.065814104e-13) (0.001776022116 0.01796295073 9.016398739e-14) (0.001382726878 0.01288142928 6.46566134e-14) (0.001681085104 0.01579011735 7.864542351e-14) (0.0004191012352 0.003184326663 1.586231146e-14) (0.0002698212611 0.002033819309 1.021405183e-14) (6.043004862e-05 0.0004283681405 2.15105711e-15) (0.0001397211685 0.0009982939587 4.968248035e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.764834435e-06 1.021098911e-05 4.163336342e-17) (0 0 0) (-1.817314068e-05 0.0001097435682 5.689893001e-16) (-0.0001073823699 0.0006536808042 3.358424649e-15) (-0.001081121684 0.007794947402 4.005129561e-14) (-0.0007213757763 0.005161147696 2.674249711e-14) (-0.001072957143 0.008178457318 4.238276397e-14) (-0.001495181194 0.01148381633 5.902223155e-14) (-0.002544801528 0.0242927271 1.248445791e-13) (-0.002033128366 0.01926878662 9.983680549e-14) (-0.00224553847 0.02315916439 1.199873534e-13) (-0.002755620659 0.02862139218 1.47090673e-13) (-0.002831233363 0.03998080777 2.054606485e-13) (-0.002398925702 0.03365532708 1.74360526e-13) (-0.002285987799 0.03645742226 1.888766921e-13) (-0.00267523059 0.04293488169 2.206429484e-13) (-0.001787792042 0.04868565635 2.502165142e-13) (-0.001550713833 0.04201717186 2.177008573e-13) (-0.001211708748 0.04284257149 2.219890938e-13) (-0.001394960789 0.0495252802 2.54546384e-13) (-0.0001183614901 0.04880369887 2.508548924e-13) (-9.823500792e-05 0.04213463154 2.183392356e-13) (0.0002591721585 0.04084325865 2.116640196e-13) (0.0002935009953 0.04748228269 2.44082532e-13) (0.001293784937 0.04033366559 2.073480276e-13) (0.001103061544 0.03399176799 1.761646384e-13) (0.001269553925 0.03083367015 1.597888488e-13) (0.001505797407 0.03696817646 1.90056304e-13) (0.001654765195 0.02479262396 1.274536032e-13) (0.00132860707 0.01971737181 1.021821516e-13) (0.001204539109 0.01582376256 8.200384816e-14) (0.001538354479 0.02039673841 1.048605647e-13) (0.0008313699976 0.008196760706 4.213296378e-14) (0.0005610513189 0.005484099368 2.842170943e-14) (0.0003302400734 0.002974886982 1.541822225e-14) (0.0005497027594 0.00499394145 2.567390744e-14) (4.607655738e-06 3.390207839e-05 1.665334537e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.662560602e-05 0.0003257060808 1.734723476e-15) (0 0 0) (-3.38938869e-05 0.0002502943747 1.33226763e-15) (-0.000167956075 0.001250468185 6.64746036e-15) (-0.0007139940443 0.006618913035 3.515243652e-14) (-0.0003988196018 0.003668918356 1.965094754e-14) (-0.0005366201469 0.005376182937 2.87964097e-14) (-0.0008824683792 0.008907332459 4.730937864e-14) (-0.001146820045 0.01577978503 8.380796057e-14) (-0.0007927893363 0.01083596408 5.803690861e-14) (-0.0008022507368 0.01248162448 6.684930387e-14) (-0.001135075239 0.01777149998 9.438283488e-14) (-0.0008199884303 0.02192276009 1.164346397e-13) (-0.0006003605082 0.01597995264 8.558431741e-14) (-0.0004735068739 0.01652724321 8.851253064e-14) (-0.0006444200779 0.02256327271 1.198346977e-13) (-4.3186982e-05 0.02201622533 1.169342401e-13) (-2.93750715e-05 0.01606019576 8.601452883e-14) (0.0001085330477 0.01521858209 8.151812558e-14) (0.0001456688667 0.02102703777 1.116884363e-13) (0.0005391500513 0.01602072589 8.509859484e-14) (0.0003758693457 0.01103468025 5.909162049e-14) (0.0003987228733 0.009261713499 4.959921363e-14) (0.0005894643266 0.01384495592 7.355227538e-14) (0.0004769804301 0.006877363149 3.652633751e-14) (0.000270119572 0.003857971644 2.066402605e-14) (0.0001846629521 0.00233763231 1.25177646e-14) (0.00037089389 0.004738302298 2.517430708e-14) (4.242904355e-05 0.0004041677355 2.15105711e-15) (1.190909773e-07 1.124871447e-06 0) (0 0 0) (4.959222357e-07 4.35587796e-06 2.775557562e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.242078183e-06 5.127194168e-05 2.775557562e-16) (-9.379792982e-05 0.001254348262 6.89726054e-15) (-1.057344414e-05 0.0001402470854 7.771561172e-16) (-2.308265353e-05 0.0003489350746 1.942890293e-15) (-0.0001186444218 0.001807802008 9.93649607e-15) (-0.0001211281193 0.00317313928 1.743050149e-14) (-3.938274028e-05 0.001024669787 5.676015213e-15) (-3.370168135e-05 0.00115446961 6.397660179e-15) (-9.883382527e-05 0.0034064501 1.872113575e-14) (-4.830085122e-06 0.003207373192 1.762479052e-14) (-1.511234197e-06 0.00104352879 5.787037516e-15) (6.668845435e-06 0.0008544183906 4.74620343e-15) (2.192338026e-05 0.002857284143 1.569577801e-14) (4.642772518e-05 0.001318025543 7.244205236e-15) (5.734316847e-06 0.0001612148901 8.881784197e-16) (1.056451055e-06 2.35704106e-05 1.387778781e-16) (3.518465925e-05 0.0007922713464 4.357625372e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.002280674042 0.08809612942 0) (-0.002577757749 0.0880979389 0) (0.002412774006 0.08807007659 0) (0.002115801093 0.08807285184 0) (0.00211492982 0.08793143447 0) (0.002114133752 0.08778953336 0) (0.002120544209 0.09006716067 0) (0.002121090502 0.0897808142 0) (-0.002294432393 0.08570332491 0) (-0.002293671743 0.08584380262 0) (-0.002590376019 0.0858457141 0) (0.002396091158 0.08580344608 0) (0.002099594653 0.08580517336 0) (0.002098343948 0.08566365398 0) (0.002097054318 0.08552217404 0) (0.002113310797 0.08764751488 0) (0.002112461465 0.08750545738 0) (-0.002306283453 0.08345458236 0) (-0.002305587592 0.08359513886 0) (-0.002601822209 0.08359696891 0) (0.002373300134 0.08354547564 0) (0.002077009183 0.08354667914 0) (0.002075501366 0.08340578836 0) (0.002073928929 0.08326500249 0) (0.002095738482 0.08538068121 0) (0.002094438095 0.08523955398 0) (-0.002316539961 0.08120601225 0) (-0.00231596207 0.08134650421 0) (-0.002611622544 0.08134825215 0) (0.002344720631 0.08129311998 0) (0.00204861133 0.08129413944 0) (0.002044175449 0.08101287654 0) (0.002070518415 0.08298275332 0) (-0.002472236584 0.07895831356 0) (-0.002620014836 0.078959148 0) (-5.469520549e-05 0.07883869207 0) (-0.0001275053285 0.07883843615 0) (-0.0001290489061 0.07876830937 0) (9.216876408e-05 0.07890925429 0) (-5.295071508e-05 0.07890880447 0) (0.002305557895 0.07904616227 0) (0.002009591319 0.07904703713 0) (0.00200371214 0.07876676322 0) (0.002040327622 0.08073166203 0) (-0.002402528283 0.07670269081 0) (-0.002552173306 0.07670366805 0) (-0.0001577887588 0.07668803168 0) (-0.0003074417992 0.07668900898 0) (-0.0003083577551 0.07654834943 0) (-0.000130821135 0.0786982494 0) (0.0001424292698 0.07682660605 0) (3.537839508e-06 0.07682307237 0) (-0.0001366072521 0.07681732654 0) (0.002255196015 0.07708828855 0) (0.001959113603 0.07708942538 0) (0.001661256267 0.07709076972 0) (0.001652681024 0.07681164971 0) (0.001646068079 0.07653101488 0) (0.001997247209 0.07848679353 0) (-0.002259744592 0.09037303852 0) (-0.002557553346 0.09037382223 0) (-0.0003643300394 0.09239375295 0) (-0.0003670138622 0.0921145814 0) (0.002418457953 0.09034845403 0) (0.002119852447 0.09035323173 0) (0.002088981038 0.09235991674 0) (0.00209512889 0.09207533256 0) (0.001227684371 0.08893444791 0) (0.001227766964 0.08900609537 0) (0.001152823273 0.08900662788 0) (0.001152536623 0.08893493343 0) (0.001224688725 0.09008332673 0) (0.001075095373 0.09008641637 0) (0.001076711733 0.08994132819 0) (0.001226101321 0.08993863642 0) (0.002709880252 0.0880677184 0) (0.004792087782 0.08830171902 3.586575481e-13) (0.004198464747 0.08833947203 0) (0.004194443754 0.08777374075 0) (0.004207599738 0.09004030521 0) (0.004204943946 0.08947362619 0) (-0.004372777122 0.0861380581 0) (-0.00495395534 0.08589120343 3.577416141e-13) (-0.002887276625 0.08584756157 0) (-0.002888705992 0.08556668391 0) (-0.002876633174 0.08781738415 0) (-0.002878252208 0.08753546286 0) (0.001200027648 0.08666099685 0) (0.001200825738 0.08673180766 0) (0.001116437259 0.08673226732 0) (0.001115664325 0.0866615086 0) (0.001220514861 0.08779578703 0) (0.001142869446 0.08779600675 0) (0.001144555257 0.0877251536 0) (0.001221170837 0.08772483612 0) (0.00269277008 0.08580165231 0) (0.004775260675 0.08607028541 3.587685704e-13) (0.004180481315 0.08607568422 0) (0.004175054159 0.08551062823 0) (0.004190198006 0.08720759298 0) (-0.004383204523 0.08388931931 0) (-0.004972340405 0.08378382391 3.583106034e-13) (-0.002898344237 0.08359878778 0) (-0.00289963139 0.08331768716 0) (-0.002890122213 0.08528581924 0) (-0.002597657804 0.08444066061 0) (-0.002301240002 0.0844388816 0) (-0.002300478414 0.08457950298 0) (-0.002299730227 0.08472007219 0) (-0.002596226305 0.08472186477 0) (-0.001412433174 0.08443356056 0) (-0.001412241712 0.08450387901 0) (-0.001412280196 0.08457418591 0) (-0.001560348131 0.08457506143 0) (-0.001560992177 0.08443443929 0) (-0.001406213478 0.08555757727 0) (-0.001554409233 0.08555847975 0) (-0.001555286062 0.08541821177 0) (-0.001407194448 0.08541736222 0) (-0.001406670971 0.08548752177 0) (0.001198240071 0.08439626739 0) (0.001198422082 0.08446693854 0) (0.001123736986 0.08446726954 0) (0.001123971599 0.08439659566 0) (0.001206402863 0.08552742876 0) (0.001130207174 0.0855280439 0) (0.001127458813 0.0854573895 0) (0.001204685754 0.08545668926 0) (0.002669798942 0.08354410099 0) (0.00474553515 0.08369995378 3.582967256e-13) (0.004157197838 0.08381830473 0) (0.004150607109 0.0832550718 0) (0.004169412311 0.08494669687 0) (-0.004392654703 0.0816402215 0) (-0.004986818688 0.08161681169 3.586575481e-13) (-0.002907792285 0.08135001648 0) (-0.002908830781 0.0810689926 0) (-0.002900879447 0.08303657323 0) (-0.002608193866 0.08219128255 0) (-0.002312311964 0.08218944174 0) (-0.00231168132 0.08233001172 0) (-0.002311037359 0.0824706208 0) (-0.002606984905 0.0824724098 0) (-0.001426508666 0.08218419255 0) (-0.001425714073 0.08225446789 0) (-0.001500203632 0.08225494127 0) (-0.001500780203 0.08218465146 0) (-0.00142117255 0.08330890726 0) (-0.001568310932 0.08330972447 0) (-0.001569150285 0.08316919503 0) (-0.001422129532 0.08316836553 0) (-0.001421761926 0.08323865671 0) (0.001173549705 0.08214105213 0) (0.001175459977 0.08228177048 0) (0.001028014816 0.08228221093 0) (0.0010262584 0.08214145238 0) (0.001186995984 0.08326846971 0) (0.001039191468 0.0832690823 0) (0.001038326659 0.08319845478 0) (0.001037639923 0.08312769549 0) (0.001185442483 0.08312738332 0) (-0.004403283887 0.07911058398 0) (-0.004401944236 0.07939172344 0) (-0.004998488115 0.07939543627 0) (-0.00261956678 0.07909975836 0) (-0.00291561932 0.07910146968 0) (-0.002916697764 0.07882032852 0) (-0.002909856727 0.08078789028 0) (-0.002616711562 0.07994297536 0) (-0.002468933396 0.07994212785 0) (-0.002468445988 0.08008276408 0) (-0.002616237301 0.08008359861 0) (-0.001430243335 0.07993590637 0) (-0.001431338937 0.08000633772 0) (-0.001509019241 0.0800070148 0) (-0.001508603655 0.0799366532 0) (-0.001428522004 0.08106029204 0) (-0.00150506257 0.08106089637 0) (-0.001505873374 0.08099073869 0) (-0.001429834153 0.08099016376 0) (-3.508019873e-05 0.07989196202 0) (3.849639659e-05 0.07989184724 0) (3.827137897e-05 0.07996239045 0) (-3.601907423e-05 0.07996269274 0) (0.001138862146 0.07989137466 0) (0.001141462114 0.08003190566 0) (0.0009941064139 0.08003204512 0) (0.0009916217176 0.07989156561 0) (0.00115794091 0.08101549024 0) (0.001010782394 0.08101582433 0) (0.001008631189 0.08087521203 0) (0.001155853701 0.08087487753 0) (-0.00434704811 0.07685592429 0) (-0.004389474365 0.0771292257 0) (-0.004987187615 0.07713387349 0) (-0.002551255591 0.07684419698 0) (-0.002850558697 0.07684615156 0) (-0.00285239498 0.0765649631 0) (-0.00291777527 0.07853933102 0) (-0.002621513509 0.07853765752 0) (-0.002625269803 0.07769445946 0) (-0.002477387069 0.07769362433 0) (-0.002476665515 0.07783411536 0) (-0.002624548164 0.07783496355 0) (-0.001440476388 0.07768772793 0) (-0.001435546054 0.07775750607 0) (-0.001512094115 0.07775816269 0) (-0.001515424364 0.07768820432 0) (-0.001429350307 0.07881125547 0) (-0.001508933781 0.07881210171 0) (-0.001510696366 0.0787421984 0) (-0.0014322643 0.07874143805 0) (-0.002266654103 0.07459299603 0) (-0.002565944149 0.07459495053 0) (-0.0001715584772 0.07457931414 0) (-0.0004708576657 0.0745812687 0) (-0.0004726939487 0.07430008024 0) (-0.0003092741641 0.0764078205 0) (-0.001383943987 0.08893968551 0) (-0.001384999461 0.08879806168 0) (-0.001236388841 0.0887972871 0) (-0.001235859615 0.08886812708 0) (-0.001235417695 0.08893879785 0) (-0.00139173799 0.08780819651 0) (-0.001242556693 0.08780720923 0) (-0.001242156718 0.08787765693 0) (-0.001242147274 0.08794830309 0) (-0.001390960356 0.08794927491 0) (-0.001369588355 0.09008835163 0) (-0.001372268055 0.08994341128 0) (-0.001222694104 0.08994555082 0) (-0.0012200137 0.09009019886 0) (-0.001234237417 0.08908093286 0) (-0.001382769649 0.08908171084 0) (0.00122033871 0.08786681317 0) (0.001142063277 0.08786695864 0) (0.001152388343 0.08886342747 0) (0.001227460716 0.0888629999 0) (0.002416903178 0.08892237302 0) (0.002119515482 0.08892563293 0) (0.002118992512 0.0887835511 0) (0.002118531493 0.08864095557 0) (0.002415725237 0.08863799602 0) (0.001227472232 0.08879176325 0) (0.001376330651 0.08879033401 0) (0.001376686139 0.08893276958 0) (0.001296731846 0.08779543297 0) (0.001296856338 0.08786649633 0) (-0.001405690854 0.08562760622 0) (-0.001405258714 0.08569777944 0) (-0.001553532405 0.08569874773 0) (-0.001399668095 0.08668186613 0) (-0.0015476548 0.08668278031 0) (-0.001548533249 0.08654226419 0) (-0.00140058564 0.08654136333 0) (-0.002585833803 0.08668925967 0) (-0.002587369784 0.08640805619 0) (-0.0022905606 0.08640620932 0) (-0.002288985523 0.08668739949 0) (-0.001253045171 0.08654051737 0) (-0.001252607722 0.08661070361 0) (-0.00125196497 0.08668092769 0) (-0.001331735673 0.08555710396 0) (-0.001331172563 0.08562713265 0) (-0.001392645032 0.08766730181 0) (-0.001243486818 0.08766637998 0) (-0.001242789154 0.08773681268 0) (-0.00125143411 0.08675121781 0) (-0.00125079164 0.08682159862 0) (-0.001398684311 0.08682251218 0) (0.001208170139 0.08559805038 0) (0.001133021291 0.08559856726 0) (0.001115760525 0.08659063971 0) (0.001200014766 0.08659002419 0) (0.002403193843 0.08665307435 0) (0.002254854936 0.08665405613 0) (0.002253758993 0.08651223534 0) (0.00240207195 0.08651127985 0) (0.001282143044 0.08658946173 0) (0.001282345556 0.08666047234 0) (0.001281760506 0.0855268844 0) (0.001282901229 0.08559756236 0) (0.001296816745 0.08772443355 0) (0.001283030277 0.08673132307 0) (0.002404275276 0.0867946732 0) (0.002255923308 0.08679565506 0) (-0.001420622612 0.08337911889 0) (-0.001420007542 0.08344930396 0) (-0.001567393729 0.08345017503 0) (-0.001561754533 0.08429370037 0) (-0.001413013027 0.08429276821 0) (-0.001412473563 0.08436317582 0) (-0.002599076925 0.08415935188 0) (-0.002302711791 0.08415750791 0) (-0.002301976067 0.08429816864 0) (-0.001336931685 0.08436264331 0) (-0.001337021813 0.08443304197 0) (-0.001348029083 0.08330850797 0) (-0.00134726504 0.08337870513 0) (-0.001332300176 0.08548706222 0) (-0.001337391774 0.08450339021 0) (0.001188488214 0.08340937365 0) (0.001040573735 0.08340994777 0) (0.001039887826 0.083339515 0) (0.001123475005 0.08432595268 0) (0.001197621846 0.08432559908 0) (0.0023824388 0.08439087195 0) (0.002086043195 0.08439205001 0) (0.002084612546 0.08425097588 0) (0.002083157226 0.08411012394 0) (0.002379487188 0.08410889406 0) (0.001196871685 0.08425512754 0) (0.001344855213 0.08425452685 0) (0.001346285606 0.0843955618 0) (0.001334663453 0.08326787108 0) (0.00133619739 0.08340876169 0) (0.001280645136 0.08545608873 0) (0.00134759931 0.08453672812 0) (0.001273364256 0.08453717373 0) (0.001198758914 0.08453751726 0) (0.002385221481 0.08467298155 0) (0.00208894504 0.08467440699 0) (0.002087539658 0.08453320208 0) (-0.001427360049 0.08113042131 0) (-0.001504317153 0.08113104142 0) (-0.001501330483 0.08211438759 0) (-0.001427301867 0.08211393027 0) (-0.002609362282 0.08191036401 0) (-0.002313545084 0.08190861505 0) (-0.002312942011 0.08204896318 0) (-0.001352786102 0.08211346977 0) (-0.001351549106 0.08218368997 0) (-0.00135002438 0.08105957045 0) (-0.001348139139 0.0811296558 0) (-0.001348728165 0.08323825813 0) (-0.00135031316 0.08225394936 0) (0.001160155487 0.08115620661 0) (0.001012884653 0.08115654144 0) (0.001024534379 0.08200065444 0) (0.001171876619 0.08200025385 0) (-0.00142798992 0.07888137038 0) (-0.001508266555 0.07888227339 0) (-0.001508984577 0.07986632292 0) (-0.001430809543 0.07986560343 0) (-0.002617185568 0.07980239129 0) (-0.002469407401 0.07980154379 0) (-0.0001073149698 0.07989168928 0) (-0.0001087130209 0.07982162686 0) (-3.568071531e-05 0.07982168542 0) (-0.001351218062 0.07986478326 0) (-0.001350068314 0.07993504321 0) (-0.001350785025 0.07881049425 0) (-0.001347970402 0.07888049517 0) (-0.001352149845 0.08098949972 0) (-0.001351849326 0.08000551822 0) (-0.0001094990632 0.07996278077 0) (0.001114579834 0.078769644 0) (0.001121262504 0.07904975594 0) (0.0008265012779 0.07905020499 0) (0.0008230120199 0.07891009774 0) (0.0008193906555 0.07877016114 0) (0.0009888661344 0.07975120541 0) (0.001136100997 0.07975096225 0) (3.786766975e-05 0.07982157082 0) (-0.001356155127 0.07655597566 0) (-0.001355504455 0.07669781242 0) (-0.001429645165 0.07669790476 0) (-0.001504273424 0.07669773907 0) (-0.001505495791 0.07655655909 0) (-0.001519328755 0.07761832806 0) (-0.001445678377 0.07761795158 0) (-0.002626043343 0.07755400796 0) (-0.002478147378 0.07755319887 0) (-9.595286424e-05 0.07765246017 0) (-0.0002389268782 0.07765100372 0) (-0.0002451354182 0.07751215501 0) (-0.0001023610616 0.07751367807 0) (-0.001381298233 0.07761783154 0) (-0.001375575479 0.07768755226 0) (-0.001206871874 0.07655500077 0) (-0.00120714979 0.07669684359 0) (-0.001281746412 0.07669772257 0) (-0.001355114073 0.07874079056 0) (-0.001369497911 0.07775720535 0) (-8.941612409e-05 0.07779134592 0) (-0.0002327817928 0.07779003569 0) (-0.004361120709 0.08839099446 0) (-0.004930635981 0.08792497554 3.568811913e-13) (-0.002874959084 0.08809973608 0) (-0.002859554158 0.09008667936 0) (-0.002862973036 0.08979914947 0) (-0.002572328085 0.08894537864 0) (-0.002275059385 0.08894389709 0) (-0.002272863695 0.08922812116 0) (-0.00257015838 0.08922962378 0) (-0.001531238962 0.08908252368 0) (-0.001532414478 0.08894051795 0) (-0.001518440178 0.09008839089 0) (-0.001521217938 0.0899430348 0) (0.0006223815352 0.08951370845 0) (0.0006175188614 0.08958429109 0) (0.0005425060166 0.08958063413 0) (0.0005656590263 0.08952303601 0) (0.0006194153078 0.09009989222 0) (0.0005412430255 0.09010203313 0) (0.0005408334731 0.09002651873 0) (0.0006194881189 0.09002544176 0) (-0.002287383046 0.08696878538 0) (-0.002584283738 0.08697061979 0) (-0.001546762438 0.08682342695 0) (-0.001540338614 0.08780910163 0) (-0.001541245657 0.08766820693 0) (0.0005745155682 0.08270983348 0) (0.0005720937532 0.08278078286 0) (0.0004936791918 0.08278662378 0) (0.000481714669 0.08272770598 0) (0.002640920331 0.0812919432 0) (0.00467517949 0.08070902589 3.550215677e-13) (0.004128969218 0.08156563358 3.587685704e-13) (0.004119226191 0.08096709783 3.586159147e-13) (0.004143755003 0.08269181445 0) (-5.827437171e-05 0.08047581666 0) (3.357920193e-05 0.08045808096 0) (3.374982639e-05 0.08052860852 0) (-4.244349081e-05 0.08053418678 0) (0.0005611963817 0.08045387786 0) (0.0005633916508 0.08059443763 0) (0.0004161813467 0.08059464144 0) (0.0004151774478 0.08052431523 0) (0.0004143539518 0.08045401397 0) (0.0005700231428 0.08101631254 0) (0.0004964821568 0.08101644015 0) (0.0004954327174 0.08094614036 0) (0.0005689788422 0.08094599966 0) (4.853351234e-05 0.0776534235 0) (5.504579508e-05 0.0777922441 0) (0.001083334079 0.0776514069 0) (0.001091746409 0.07793058022 0) (0.0007942711434 0.07793183064 0) (0.000784216711 0.07765320353 0) (0.0008156661146 0.07863022523 0) (0.0008118770398 0.07849040728 0) (0.001107467879 0.07848979609 0) (-0.001539456498 0.08795017935 0) (-0.001533456934 0.0887988875 0) (-0.002574159803 0.08866288929 0) (-0.002276970675 0.08866122279 0) (-0.0007964987442 0.08837010606 0) (-0.0008019076614 0.08829944292 0) (-0.000736121066 0.08829909167 0) (-0.000730063334 0.08836990731 0) (-0.000769632145 0.09009836633 0) (-0.000772478771 0.09002346479 0) (-0.0006973013465 0.0900249237 0) (-0.0006939373117 0.09010085564 0) (-0.0007805908302 0.08950887183 0) (-0.0007059186626 0.08950936114 0) (-0.0007047715464 0.08958161812 0) (-0.0007805272408 0.08958100919 0) (0.001375387204 0.08993586434 0) (0.001374626587 0.09007939164 0) (0.001376978407 0.08907552424 0) (0.001228010004 0.0890775119 0) (0.002417936525 0.08920660859 0) (0.002120623831 0.08920935342 0) (0.002120102806 0.08906756936 0) (0.0005709363018 0.08108674383 0) (0.0004973368856 0.08108692407 0) (0.000575157509 0.08157993375 0) (0.0004989355879 0.08158073192 0) (0.0004993061987 0.08151008327 0) (0.0005748017693 0.08150945964 0) (0.002356290658 0.08213682862 0) (0.002060077898 0.08213800549 0) (0.002056373052 0.08185668557 0) (0.002352534083 0.0818555874 0) (0.00131929035 0.08199980055 0) (0.001321084641 0.08214055885 0) (0.001305258421 0.08101510287 0) (0.001307535517 0.08115579271 0) (0.001333115772 0.08312687608 0) (0.001322917857 0.08228127771 0) (0.002359984661 0.0824184882 0) (0.002063719744 0.08241967847 0) (-4.499881771e-05 0.07932965202 0) (-0.0001195894528 0.0793300477 0) (-0.0001199317697 0.07925946901 0) (-4.600484621e-05 0.0792592997 0) (-0.0006604582441 0.0782088825 0) (-0.0005840311908 0.07820809606 0) (-0.0005810223424 0.07827763858 0) (-0.0006568459241 0.07827843414 0) (-7.339535928e-05 0.07820933269 0) (-6.854914567e-05 0.07834886945 0) (-0.0002125398675 0.07834778534 0) (-0.0002148835116 0.07827792501 0) (-0.0002171620062 0.07820822099 0) (-6.657677441e-05 0.09127585674 0) (-0.0002292754175 0.09127555959 0) (-0.0002300971827 0.0911359234 0) (-6.760570003e-05 0.09113620623 0) (-0.001319449243 0.09126211326 0) (-0.001343826644 0.09096202143 0) (-0.001191638922 0.09096520575 0) (-0.00103473452 0.09097245124 0) (-0.0010223022 0.09112120254 0) (-0.001010208785 0.09126765734 0) (-0.001216037559 0.0902368621 0) (-0.001367136311 0.090232031 0) (0.00122321148 0.09022771734 0) (0.001073349087 0.09023100882 0) (0.001196445216 0.09124442039 0) (0.0008844405575 0.09125579644 0) (0.0008862098301 0.09111452378 0) (0.0008957716367 0.09096811564 0) (0.001055807485 0.09095767716 0) (0.001209102464 0.09095201465 0) (0.0001023344559 0.09113391444 0) (0.000102256049 0.09127370801 0) (0.0006019022529 0.08942253237 0) (0.001228068236 0.08950682872 0) (0.001078989795 0.08950876616 0) (0.001078927921 0.08943669148 0) (0.001078874668 0.08936473691 0) (0.001228275193 0.08936311997 0) (0.0006947603012 0.08943881105 0) (0.0006964739928 0.08951162725 0) (0.0006968944139 0.09002460583 0) (0.0006962472247 0.09009850223 0) (0.0006951724791 0.08958412747 0) (0.001227869946 0.08965006462 0) (0.001078992541 0.08965158672 0) (0.00107897092 0.08958027583 0) (0.001224979759 0.08722809344 0) (0.001154566466 0.08722876225 0) (0.001153356039 0.08715781047 0) (0.00122382427 0.08715715436 0) (0.001225182101 0.08729907793 0) (0.001154310306 0.08729973667 0) (0.001204011594 0.08496125583 0) (0.001130423308 0.08496154048 0) (0.001129196414 0.08489066717 0) (0.001203183039 0.08489037992 0) (0.001204201302 0.0850323057 0) (0.001130289633 0.08503267083 0) (0.0005789254577 0.08214391653 0) (0.0005802933981 0.08221418812 0) (0.0005055785195 0.08221455849 0) (0.0005021378547 0.08214469227 0) (0.0005112485539 0.08263740619 0) (0.000580857683 0.08263799648 0) (0.001180582102 0.08270451727 0) (0.001033035498 0.08270502369 0) (0.001031330528 0.08256434317 0) (0.001178955495 0.08256383625 0) (0.000656108658 0.08263751812 0) (0.0006534352055 0.08270853445 0) (0.0006552064061 0.08214315717 0) (0.0006559442158 0.08221353736 0) (0.0005894162631 0.08327336479 0) (0.0005770939156 0.08320785359 0) (0.0006548263609 0.0832021608 0) (0.0006594381676 0.08327216305 0) (0.0006526020892 0.08277915999 0) (0.001182223843 0.08284531575 0) (0.001034683854 0.08284583518 0) (0.001033817712 0.08277540359 0) (-0.001439538889 0.08049848552 0) (-0.00151188088 0.08049881428 0) (-0.001512627149 0.08042853863 0) (-0.001440742098 0.08042823898 0) (-0.002024619568 0.08050154882 0) (-0.002025184314 0.08036106984 0) (-0.001878241666 0.08036028003 0) (-0.001877624764 0.08050074562 0) (-0.002026852089 0.07993968494 0) (-0.001879961682 0.07993889547 0) (-0.001879395998 0.08007951813 0) (-0.002026312611 0.0800802947 0) (0.0005512771283 0.07989175071 0) (0.0005539313528 0.08003218993 0) (0.0004075254197 0.08003216646 0) (0.0004050603992 0.07989169988 0) (0.0004133281915 0.08038374015 0) (0.0004123596408 0.08031342677 0) (0.0005589374581 0.08031337075 0) (-3.389576937e-05 0.08038577258 0) (3.693334722e-05 0.08038649857 0) (-0.001458653879 0.07825142302 0) (-0.001527797971 0.07825144355 0) (-0.001528647955 0.07818128613 0) (-0.001460743996 0.07818136512 0) (-0.002033240894 0.07825337292 0) (-0.002033792323 0.07811293303 0) (-0.001887528214 0.07811223908 0) (-0.001887042171 0.07825266634 0) (-0.002035801201 0.07769131526 0) (-0.001889510972 0.07769062114 0) (-0.001889026335 0.07776083319 0) (-0.001888698507 0.07783103321 0) (-0.002035053611 0.07783179306 0) (-0.002030967827 0.07881544552 0) (-0.002031492198 0.07867514911 0) (-0.001884901667 0.07867443997 0) (-0.001884260009 0.07881469642 0) (-0.00188638643 0.07839307943 0) (-0.002032676489 0.07839379967 0) (-0.001455376554 0.07832127725 0) (-0.00152586509 0.07832142411 0) (-0.0007843781695 0.08893651978 0) (-0.0007742922577 0.08886396741 0) (-0.0006816116328 0.08884607742 0) (-0.0007167473179 0.08893697801 0) (-0.0007236182544 0.08844023716 0) (-0.0007906659372 0.0884404791 0) (-0.001388255966 0.08837339582 0) (-0.00123994085 0.08837257092 0) (-0.001239312544 0.08844338284 0) (-0.001238718254 0.088513986 0) (-0.001387175386 0.08851486406 0) (-0.0008653332017 0.08844094059 0) (-0.0008697992766 0.08837045414 0) (-0.0008584021834 0.08893688172 0) (-0.0008531746246 0.08886497364 0) (-0.0007704101216 0.08780203617 0) (-0.0007664705257 0.08786850331 0) (-0.0008455335074 0.08787385215 0) (-0.0008430244975 0.08780325484 0) (-0.0008738660205 0.08829971692 0) (-0.001389285072 0.08823180969 0) (-0.001241074156 0.08823082874 0) (-0.001240550503 0.08830161522 0) (-0.00137848527 0.08951057428 0) (-0.001229861993 0.0895101379 0) (-0.001227785776 0.0896550673 0) (-0.001376400567 0.08965540306 0) (-0.0008559776952 0.08958114144 0) (-0.000856151537 0.08950892121 0) (-0.0008460334299 0.09009429866 0) (-0.0008477325925 0.09002170728 0) (-0.0007892182209 0.08900836656 0) (-0.0008614988785 0.08900848725 0) (-0.0008555156407 0.08943689552 0) (-0.0007789621286 0.08943687362 0) (-0.001380101174 0.08936693229 0) (-0.001231461549 0.08936639914 0) (-0.0007038305345 0.08943691456 0) (-0.0007206841929 0.08900872747 0) (0.001225960019 0.08836419955 0) (0.001150584348 0.08836478321 0) (0.001151153187 0.0882936892 0) (0.001226029982 0.08829291289 0) (0.001226084938 0.08843532821 0) (0.001150493771 0.08843591328 0) (-0.001402636002 0.08611939319 0) (-0.001327967602 0.08611890557 0) (-0.001327830113 0.08618915907 0) (-0.001402268737 0.08618963213 0) (-0.0008270749743 0.08667879296 0) (-0.0008926839495 0.08667914305 0) (-0.0008955502751 0.08660902491 0) (-0.00083019467 0.08660867648 0) (-0.001402925075 0.08604912762 0) (-0.001328184844 0.08604863953 0) (-0.001395692839 0.08724459372 0) (-0.001247190593 0.08724362393 0) (-0.001246493724 0.087314135 0) (-0.001245945912 0.08738462091 0) (-0.001394667998 0.08738552683 0) (-0.000801123541 0.08724051501 0) (-0.0007977630506 0.08731090419 0) (-0.0008654390462 0.08731133308 0) (-0.0008686113829 0.08724095573 0) (-0.000844879758 0.08773296031 0) (-0.0007746160619 0.08773238391 0) (-0.0008239877589 0.08674893577 0) (-0.0008898159766 0.08674931341 0) (-0.000871693177 0.08717064309 0) (-0.0008044390293 0.08717021695 0) (-0.001396703426 0.08710384336 0) (-0.001248399612 0.08710288793 0) (-0.001247753651 0.08717320342 0) (0.001217806769 0.08609369957 0) (0.001147927696 0.08609397306 0) (0.001146912038 0.08602304613 0) (0.001217147657 0.08602277031 0) (0.001217525368 0.08616460885 0) (0.001147489657 0.08616489642 0) (0.001289443332 0.0860933493 0) (0.001289501414 0.0861642433 0) (0.001805719233 0.08609026513 0) (0.001806839505 0.08623181148 0) (0.001658722282 0.08623273957 0) (0.001657667141 0.08609116667 0) (0.00181006007 0.08665697389 0) (0.001661773319 0.08665794227 0) (0.001660755226 0.08651604261 0) (0.001809015942 0.08651508746 0) (0.001800818764 0.08552386043 0) (0.001802095589 0.08566537964 0) (0.001654056302 0.08566624191 0) (0.001652766331 0.08552470973 0) (0.00165651998 0.08594950295 0) (0.001804546037 0.08594861464 0) (0.001288914909 0.08602243225 0) (0.001296993451 0.08722749255 0) (0.001297378552 0.08729846279 0) (0.001814036242 0.08722384176 0) (0.001814949511 0.08736568987 0) (0.001666728573 0.08736673618 0) (0.00166584134 0.08722487484 0) (0.001817392343 0.08779175855 0) (0.001669041143 0.08779285796 0) (0.001668309012 0.08765074745 0) (0.001816621116 0.08764966136 0) (0.001811089517 0.08679861226 0) (0.001662789791 0.08679959378 0) (0.00166486311 0.08708307941 0) (0.001813084219 0.08708205922 0) (0.001296112314 0.08715656474 0) (-0.001416402465 0.0838711464 0) (-0.001341637334 0.08387067121 0) (-0.001340814179 0.08394092024 0) (-0.001415687626 0.08394140919 0) (-0.001416932104 0.08380084322 0) (-0.001342442545 0.08380036983 0) (-0.001410182252 0.08499584227 0) (-0.00133641859 0.08499541281 0) (-0.001335830521 0.08506566337 0) (-0.001409684214 0.08506610648 0) (-0.001410693436 0.08492556509 0) (-0.001336997688 0.08492513607 0) (0.001192776383 0.08383221731 0) (0.001118492579 0.08383259793 0) (0.001117959673 0.08376199437 0) (0.001192103816 0.08376162773 0) (0.0006677113975 0.0833414361 0) (0.0006016859104 0.08334160606 0) (0.001193248956 0.08390278209 0) (0.001118774728 0.08390320313 0) (-0.001431819272 0.08162258387 0) (-0.00135962225 0.08162225606 0) (-0.001359665703 0.08169260217 0) (-0.001431712531 0.08169292899 0) (-0.001431223539 0.08155220803 0) (-0.001358137451 0.08155182217 0) (-0.001421065719 0.08274646648 0) (-0.001343544494 0.08274582963 0) (-0.001344192554 0.08281619274 0) (-0.001421114481 0.08281679956 0) (-0.00142135113 0.0826761617 0) (-0.001343707139 0.08267552405 0) (0.0005774642774 0.08207356719 0) (0.0006542798456 0.08207267372 0) (0.0006502057934 0.08157941753 0) (0.0006507838995 0.08164994244 0) (0.0005753132287 0.08165057896 0) (0.001166200998 0.08157815066 0) (0.00116814713 0.08171896021 0) (0.001020857216 0.08171937352 0) (0.001018934167 0.08157849852 0) (0.0004982696169 0.08165155228 0) (0.0004991757356 0.08207470537 0) (-0.001446561106 0.07937517934 0) (-0.001518420292 0.07937543964 0) (-0.001519427768 0.0793051657 0) (-0.00144837798 0.07930496293 0) (-0.002029006162 0.0793778336 0) (-0.002029532835 0.07923718457 0) (-0.001882955535 0.0792364494 0) (-0.001882402826 0.07937708519 0) (-0.001883786686 0.07895517601 0) (-0.002030494504 0.0789559251 0) (-0.002027404456 0.07979910138 0) (-0.001880566291 0.07979831226 0) (-0.001881798473 0.07951762923 0) (-0.002028467196 0.079518365 0) (-0.00144424567 0.07944534025 0) (-0.001517060444 0.0794456721 0) (-4.406000448e-05 0.07939999171 0) (-0.0001191954517 0.07940056074 0) (-0.001375295908 0.0793749621 0) (-0.001371695849 0.07944503626 0) (-0.001378394707 0.07930484549 0) (-0.001367779131 0.08049819975 0) (-0.001365618771 0.08056841392 0) (-0.001438210129 0.08056875737 0) (-0.00136975517 0.0804280105 0) (-8.534050698e-05 0.08037656104 0) (2.871455903e-05 0.07932956246 0) (2.99424982e-05 0.07939979578 0) (0.0005397121692 0.07933041796 0) (0.0005428634797 0.07947077557 0) (0.0003967131023 0.07947068513 0) (0.0003935222697 0.07933027553 0) (0.0004022392319 0.07975149685 0) (0.0005485823049 0.07975149461 0) (-0.002036626641 0.07755091634 0) (-0.001890479734 0.0775502754 0) (-0.001889943111 0.07762044793 0) (-0.00200785322 0.07711296739 0) (-0.001861031304 0.07711769005 0) (-0.001879235075 0.07719616107 0) (-0.001888257331 0.07726859025 0) (-0.002034548147 0.07726719463 0) (-0.001418882366 0.07711540343 0) (-0.001445899997 0.07719441525 0) (-0.001515597653 0.07719366881 0) (-0.001490316718 0.07711291817 0) (-0.001382690866 0.07713377882 0) (-0.001400900702 0.0771973213 0) (-0.0006854676956 0.07708800555 0) (-0.0006838733321 0.07715794914 0) (-0.0007544496384 0.07715685579 0) (-0.0007560894571 0.07708695168 0) (-0.0006661112967 0.07764603526 0) (-0.0007389297383 0.07764580551 0) (-0.0007403331388 0.07757570395 0) (-0.0006677750504 0.07757606601 0) (-0.001390316403 0.07825148612 0) (-0.001385513265 0.07832118672 0) (-0.0007309837511 0.07828356796 0) (-0.0007503082595 0.07822582146 0) (-0.0006646107968 0.07771600559 0) (-0.000737960905 0.07771596216 0) (-0.0007310113171 0.07813694686 0) (-0.0006600088769 0.07813789375 0) (-0.001394496452 0.0781815986 0) (-0.0002221093519 0.07806869794 0) (-7.833543654e-05 0.07806982265 0) (-0.0005848835634 0.07813757294 0) (-0.0005940497826 0.0776465573 0) (-0.0005920789996 0.07771634169 0) (0.0003085518379 0.09011581762 0) (0.0002167113231 0.09011635301 0) (0.000299154369 0.09002839074 0) (0.0002666569385 0.08073668832 0) (0.0002677863016 0.08080702677 0) (0.0001897124606 0.08080824191 0) (0.0001886891418 0.08073794195 0) (0.0002743036626 0.08101722497 0) (0.000201537009 0.08101712549 0) (0.0001997913432 0.0809470131 0) (0.000273251867 0.08094696438 0) (-0.004359901238 0.07488773569 0) (-0.004945666129 0.07470060817 3.578665142e-13) (-0.002564108719 0.07487600838 0) (-0.002863411826 0.07487796296 0) (-0.003162714932 0.07487991754 0) (-0.003166386645 0.07431767123 0) (-0.002854231263 0.07628377465 0) (-0.002560436153 0.0754383853 0) (-0.002261146107 0.0754364308 0) (-0.002259309824 0.07571761926 0) (-0.00255859987 0.07571957375 0) (-0.001363245929 0.07543056712 0) (-0.001361409646 0.07571175558 0) (-0.00166070361 0.0757137101 0) (-0.001662539893 0.07543252164 0) (-0.001506467453 0.0764157693 0) (-0.001356915611 0.07641492327 0) (0.000428874024 0.0748564629 0) (0.0001295761415 0.07485841745 0) (-0.0001697230471 0.074860372 0) (0.002221188542 0.07472361522 3.581995811e-13) (0.001626069472 0.07484864469 0) (0.001622026802 0.07426851012 3.586853037e-13) (0.001635250034 0.07625445638 0) (0.001633414604 0.07597339852 0) (-0.0004629563171 0.09011599067 0) (-0.0004702065816 0.09003436348 0) (-0.0003761504412 0.09002290508 0) (-0.0003829221341 0.09012636111 0) (0.0002738040959 0.0810879267 0) (0.0001987894272 0.08108839046 0) (0.0002749136783 0.0812996361 0) (0.0002054034078 0.08129878394 0) (0.0002036184757 0.08122865875 0) (0.0002756715832 0.0812288935 0) (0.0005259903665 0.07877020947 0) (0.0005296544888 0.07891009354 0) (0.0003835453074 0.0789099114 0) (0.0003799123592 0.07877000101 0) (0.0003903627552 0.07919006165 0) (0.0005365213952 0.07919021734 0) (2.740964933e-05 0.07925934271 0) (0.001038489246 0.07653955394 0) (0.001052106569 0.07681596355 0) (0.0007539977877 0.07681660424 0) (0.0007391900578 0.07654150849 0) (0.0007732088227 0.07737497448 0) (0.001074872716 0.07737232532 0) (4.17842143e-05 0.07751470893 0) (-7.428452384e-05 0.09071724942 0) (-0.0002476469214 0.09071394608 0) (-0.0002535252638 0.09057300025 0) (-0.0001603752334 0.09057708994 0) (-7.173994021e-05 0.09057786552 0) (-0.0007325722335 0.09069692075 0) (-0.000746011169 0.09054622735 0) (-0.0005891289427 0.09055307723 0) (-0.000570607274 0.0907048855 0) (-0.0006898273629 0.09017700878 0) (-0.0007657706056 0.09017448074 0) (0.0006182492991 0.09017474222 0) (0.0005406076329 0.09017753595 0) (0.0005965503936 0.09069100599 0) (0.00043772304 0.09069870033 0) (0.0004446046054 0.09055406898 0) (0.0006056528177 0.09054325297 0) (2.34108672e-05 0.09057600859 0) (0.0001105572032 0.09057285735 0) (0.000105460617 0.09071402113 0) (0.001211061502 0.08694420192 0) (0.001131964095 0.08694467928 0) (0.001123604993 0.08687365663 0) (0.001206085446 0.08687322249 0) (0.0009169214059 0.08779676394 0) (0.0009231286421 0.08772627309 0) (0.0009908904947 0.08772579139 0) (0.0009858538885 0.0877963399 0) (0.0009384938136 0.08751412959 0) (0.00100467764 0.08751360595 0) (0.001000559573 0.08758440968 0) (0.0009340612494 0.08758497455 0) (0.001223711004 0.08751180987 0) (0.001222907787 0.08758281398 0) (0.001148532024 0.08758331275 0) (0.001150350538 0.08751238037 0) (0.001199860246 0.08467876334 0) (0.001123913071 0.08467923319 0) (0.00112321038 0.08460863073 0) (0.00119913362 0.08460809574 0) (0.0008881877041 0.08468219621 0) (0.000886125579 0.08461182467 0) (0.0009665016967 0.08461055531 0) (0.0009675942937 0.08468106379 0) (0.0009042969903 0.08439699842 0) (0.0009758618395 0.08439706657 0) (0.0009735387444 0.08446813285 0) (0.0009004737507 0.08446834878 0) (0.0009102977461 0.08552968898 0) (0.0009044444958 0.08545918546 0) (0.0009723311889 0.0854588205 0) (0.0009777346528 0.08552924859 0) (0.0008843001567 0.085253099 0) (0.0009627538456 0.08524764966 0) (0.000962582887 0.08531827088 0) (0.0008908477258 0.08531952299 0) (0.001202106316 0.08524470213 0) (0.001202236966 0.08531530832 0) (0.001123627961 0.08531617431 0) (0.001123864136 0.0852455396 0) (-0.001496624576 0.0827469991 0) (-0.001496979207 0.08267669477 0) (-0.002014075989 0.08275007788 0) (-0.002014798311 0.08260946931 0) (-0.001867163894 0.08260860968 0) (-0.001866415536 0.08274920502 0) (-0.00201689972 0.08218768236 0) (-0.001869382845 0.0821868235 0) (-0.001868647634 0.08232740586 0) (-0.00201620369 0.08232826498 0) (-0.002011174834 0.08331232922 0) (-0.002011909705 0.0831717991 0) (-0.00186417089 0.08317092573 0) (-0.001863409899 0.08331145568 0) (-0.001865680239 0.08288980044 0) (-0.002013366813 0.08289067347 0) (-0.001496361367 0.08281730402 0) (-0.002022122771 0.08106388118 0) (-0.002022752903 0.08092338955 0) (-0.00187553616 0.08092257183 0) (-0.001874840811 0.08106304997 0) (-0.001876941538 0.0806413675 0) (-0.002024014703 0.08064217122 0) (-0.001511056077 0.08056911554 0) (-0.001441022417 0.0779691148 0) (-0.001516237618 0.07796967129 0) (-0.001511489165 0.07789879815 0) (-0.001433199285 0.07789806484 0) (-0.001741344852 0.07797118052 0) (-0.00174117852 0.07790065076 0) (-0.001666173164 0.07790016094 0) (-0.001667161954 0.07797074832 0) (-0.001742502766 0.07768987009 0) (-0.001667771592 0.07768939512 0) (-0.001666556004 0.0777595371 0) (-0.001741757094 0.07776005431 0) (-0.00120736201 0.07641394662 0) (-0.00106394674 0.07542861257 0) (-0.001062110457 0.07570980103 0) (-0.0001660504823 0.07542274891 0) (-0.0001642142028 0.07570393737 0) (-0.0004635133865 0.07570589193 0) (-0.0004653496695 0.07542470347 0) (0.001223896093 0.08808015225 0) (0.001148393651 0.08808072368 0) (0.001145282463 0.08800951003 0) (0.001222257373 0.08800921633 0) (0.0009327484509 0.0880833466 0) (0.0008969473713 0.08799335593 0) (0.0009893989784 0.08800979661 0) (0.0009999333418 0.08808191522 0) (0.000981956312 0.08786690709 0) (0.000910363551 0.08786656485 0) (0.001300690853 0.08836367234 0) (0.001300906938 0.08843476123 0) (0.001820302857 0.08835944315 0) (0.001820980785 0.08850125361 0) (0.001672552076 0.08850248413 0) (0.001671912903 0.08836060812 0) (0.001822373859 0.08892857385 0) (0.001673879917 0.08892981525 0) (0.001673498104 0.08878734851 0) (0.001821965738 0.08878607855 0) (0.001818149741 0.08793373828 0) (0.001669772591 0.08793486398 0) (0.001671297207 0.08821832706 0) (0.001819674186 0.08821717524 0) (0.001300564484 0.08829232166 0) (0.00121318703 0.08581028282 0) (0.001140845125 0.08581062464 0) (0.001138388178 0.08573999446 0) (0.001211602257 0.08573960776 0) (0.0009316147916 0.08581135102 0) (0.000926791973 0.08574103669 0) (0.0009929207485 0.0857406832 0) (0.0009973815992 0.08581116969 0) (0.0009830720476 0.08559955956 0) (0.0009161185696 0.085599827 0) (0.001207485428 0.08637720083 0) (0.001203473918 0.08644812141 0) (0.001121225826 0.08644873689 0) (0.00112861195 0.08637776815 0) (-0.001564534481 0.08387200928 0) (-0.001565492144 0.08373136307 0) (-0.00141761489 0.08373048879 0) (-0.002008155625 0.08387465816 0) (-0.002008930444 0.08373401075 0) (-0.001861074172 0.08373312355 0) (-0.001860273232 0.08387377079 0) (-0.001862636273 0.08345192024 0) (-0.002010427244 0.08345280702 0) (-0.001132682666 0.08330753267 0) (-0.001130012415 0.08337762596 0) (-0.001201959985 0.08337795214 0) (-0.001203782792 0.08330782719 0) (-0.001122005155 0.08358797116 0) (-0.001196371947 0.08358844375 0) (-0.001198235838 0.08351822765 0) (-0.00112466669 0.08351781251 0) (-0.001418815731 0.08358980498 0) (-0.001419405277 0.08351952831 0) (-0.001345675572 0.08351909907 0) (-0.001344877147 0.08358936131 0) (0.0009019027655 0.08432677272 0) (0.0009749679298 0.08432658291 0) (0.0008858059874 0.08411748603 0) (0.0009656703116 0.08411624613 0) (0.0009685542127 0.08418645558 0) (0.0008906964318 0.08418735585 0) (0.001195127562 0.08411425137 0) (0.00119590001 0.08418473582 0) (0.001121256254 0.08418519715 0) (0.001120158774 0.08411474095 0) (0.001340630955 0.08383166971 0) (0.001341995279 0.08397258754 0) (0.001193813405 0.08397321565 0) (0.001784191744 0.08382977875 0) (0.001785633577 0.08397056547 0) (0.001637736759 0.08397124396 0) (0.001636307474 0.08383037879 0) (0.001790001755 0.08439346085 0) (0.001642079072 0.0843941787 0) (0.001640661653 0.0842531306 0) (0.001788584336 0.08425241276 0) (0.001277908956 0.08496109977 0) (0.001278332726 0.08503199138 0) (0.001795679275 0.0849588548 0) (0.001797007574 0.08510025612 0) (0.001648968116 0.08510109227 0) (0.001647718349 0.08495971656 0) (0.001651449983 0.08538313853 0) (0.001799528707 0.08538231518 0) (0.001791472608 0.08453469146 0) (0.001643510659 0.08453539649 0) (0.001646323725 0.08481815894 0) (0.00179431171 0.08481744067 0) (0.001277237551 0.08489028814 0) (-0.001504774756 0.08162296887 0) (-0.001504724773 0.08155262272 0) (-0.00201957595 0.08162587362 0) (-0.002020167328 0.08148531644 0) (-0.001872859503 0.08148444588 0) (-0.001872215799 0.08162501578 0) (-0.001874158779 0.08120348901 0) (-0.00202149298 0.08120432056 0) (-0.002017582009 0.08204720414 0) (-0.001870104315 0.08204634553 0) (-0.001871519768 0.0817655984 0) (-0.002018919186 0.08176644343 0) (-0.001504524523 0.08169328694 0) (-0.001429688679 0.08190363979 0) (-0.001356542599 0.08190324048 0) (-0.00135527815 0.08197326459 0) (-0.001428889091 0.08197368 0) (-0.00113858202 0.08190216975 0) (-0.001134829214 0.08197203394 0) (-0.001208056267 0.08197243378 0) (-0.001210984003 0.08190251196 0) (-0.001124286212 0.08218207524 0) (-0.001199654474 0.08218259355 0) (-0.001202430854 0.08211244871 0) (-0.001127779433 0.0821119612 0) (-0.001124046567 0.08105757228 0) (-0.001119670017 0.08112754994 0) (-0.001188151492 0.08112803634 0) (-0.001192057957 0.08105804254 0) (-0.001106840447 0.08133333153 0) (-0.001185031427 0.08133860937 0) (-0.001182677691 0.08126823511 0) (-0.001110969189 0.08126710072 0) (-0.001426851107 0.08134115506 0) (-0.001426261222 0.08127088375 0) (-0.001346473666 0.08127008842 0) (-0.001347882177 0.08134040426 0) (-0.001422258745 0.08302777921 0) (-0.001348630825 0.08302736369 0) (-0.001349277835 0.08309768762 0) (-0.00142239257 0.08309808673 0) (-0.001135172332 0.08302649215 0) (-0.001137862597 0.08309693391 0) (-0.00120647167 0.08309708156 0) (-0.001203901473 0.08302665364 0) (-0.001205429796 0.08323762273 0) (-0.001135201758 0.08323738615 0) (-0.001120792906 0.08225220234 0) (-0.001196883148 0.08225276455 0) (-0.001110294534 0.08246260964 0) (-0.001188586061 0.08246329071 0) (-0.001191340409 0.0823931196 0) (-0.001113795676 0.08239248259 0) (-0.00142334449 0.0824653201 0) (-0.001424127414 0.08239503163 0) (-0.001347849105 0.08239446819 0) (-0.001346634055 0.08246472772 0) (0.001016849142 0.08143782048 0) (0.001164210093 0.08143748507 0) (0.0006495281464 0.08150905001 0) (0.0007168683553 0.08101620254 0) (0.0007188141459 0.08115695984 0) (0.0005718850648 0.08115722713 0) (-0.0003091566265 0.07960041786 0) (-0.0002576286921 0.07960992926 0) (-0.0002793189763 0.07969943335 0) (-3.994783552e-05 0.07961088478 0) (-3.891553184e-05 0.0796813806 0) (-0.0001139321489 0.079681766 0) (-0.0001144085045 0.07961116207 0) (-0.001436798559 0.07965531035 0) (-0.001360521726 0.0796547208 0) (-0.00135705494 0.07972458686 0) (-0.001434487099 0.07972526231 0) (-0.001441955453 0.07909343944 0) (-0.001434951399 0.07902256462 0) (-0.001358070215 0.07902191889 0) (-0.001370601445 0.07909322162 0) (-0.001434024455 0.08077950629 0) (-0.001358888666 0.0807789895 0) (-0.001356626521 0.08084918994 0) (-0.001432614892 0.08084975149 0) (-0.001142427895 0.08077765428 0) (-0.001137834117 0.08084769583 0) (-0.001204615908 0.08084805358 0) (-0.001208829716 0.08077799649 0) (-0.001196195248 0.0809881025 0) (-0.001128636539 0.08098771356 0) (-0.001178999152 0.08021892722 0) (-0.001236922913 0.08021790797 0) (-0.001228707657 0.08014710361 0) (-0.00118358865 0.080154541 0) (-0.0014404545 0.08021787879 0) (-0.001437688399 0.0801474496 0) (-0.001364307149 0.08014706181 0) (-0.00136961768 0.08021766435 0) (-4.412175992e-05 0.08017673489 0) (-0.0001363929868 0.08019455168 0) (-0.0001112121744 0.08010429338 0) (-3.979897943e-05 0.08010485883 0) (-0.001430334996 0.07703527144 0) (-0.001333308437 0.07702027086 0) (-0.00195161412 0.07698081598 0) (-0.00180170789 0.07697983703 0) (-0.001814230179 0.07704430887 0) (-0.00195448566 0.07655909936 0) (-0.001804800603 0.07655825246 0) (-0.001803804527 0.07669878088 0) (-0.001953527912 0.07669975864 0) (-0.001743404821 0.07761973913 0) (-0.00166927408 0.07761932033 0) (-0.001746047732 0.07740903237 0) (-0.001673718631 0.07740872982 0) (-0.001672528311 0.07747900257 0) (-0.001745353619 0.07747932142 0) (-0.001461481953 0.07740836257 0) (-0.001456720294 0.0774783116 0) (-0.001527569465 0.07747843469 0) (-0.001530913628 0.0774083458 0) (-0.0005961954884 0.0775767871 0) (-0.0005460197094 0.0770901642 0) (-0.0005386356484 0.07722927951 0) (-0.0006786203333 0.07722653663 0) (-0.0001245230162 0.07709839583 0) (-0.0001171097853 0.07723685791 0) (-0.0002587738902 0.07723472679 0) (-0.0002647532456 0.07709573292 0) (-0.001399436055 0.07740840146 0) (-0.001393828258 0.07747831883 0) (-0.0009652794215 0.07736465959 0) (-0.0009619316607 0.0774338995 0) (-0.001031547774 0.07743663978 0) (-0.001052379853 0.07738064022 0) (-0.0007573990661 0.07655141248 0) (-0.0007566137133 0.07669207288 0) (-0.0009066449219 0.07669331386 0) (-0.00090719343 0.07655252131 0) (-0.0007641030589 0.07701903527 0) (-0.00069330896 0.07701987904 0) (-0.001443930403 0.07853141714 0) (-0.001370631262 0.07853105602 0) (-0.001365461183 0.07860114604 0) (-0.001439932542 0.07860160625 0) (-0.001358448332 0.07789301845 0) (-0.001353306941 0.0779519155 0) (0.0006179911976 0.08980321946 0) (0.0005403568419 0.08980413264 0) (0.0005403449812 0.08973051646 0) (0.0006169866299 0.08972879084 0) (0.0003832178709 0.09003256758 0) (0.0003849175751 0.09010904189 0) (0.0006188275795 0.08987729393 0) (0.00054078677 0.08987756717 0) (0.0005948612365 0.08298794931 0) (0.0005336601853 0.08298648128 0) (0.0005204292777 0.082919043 0) (0.0005866853085 0.08291897602 0) (0.0005952086282 0.08305834511 0) (0.0005460358033 0.08304954975 0) (0.0002654023724 0.08045477771 0) (0.0002659026551 0.08052518558 0) (0.0001893186809 0.08052614283 0) (0.0001890243246 0.08045566832 0) (0.0001897418686 0.08066714518 0) (0.0002665881844 0.08066616009 0) (-8.894246417e-06 0.0806582157 0) (4.257588418e-05 0.08066733565 0) (1.74777601e-05 0.08075727995 0) (-0.0008109196638 0.08808824226 0) (-0.0007517414039 0.08808916188 0) (-0.0007465310139 0.08815862473 0) (-0.0008102255769 0.08815872722 0) (-0.0008024659476 0.08801695309 0) (-0.0007564751095 0.08802429335 0) (-0.0007781520105 0.08980172624 0) (-0.0007035465433 0.08980200179 0) (-0.0007015754871 0.08987642802 0) (-0.0007763664182 0.08987595254 0) (-0.0004828169643 0.08980234575 0) (-0.0004584510874 0.08986247298 0) (-0.0005509801698 0.08987876855 0) (-0.000555290529 0.08980532672 0) (-0.0005412511073 0.09010857205 0) (-0.0005460260646 0.09003058667 0) (-0.0005592970788 0.08973200698 0) (-0.0005052586746 0.08974086461 0) (-0.0007795067395 0.0897272777 0) (-0.0007045487655 0.08972793232 0) (0.0002748860098 0.08158199914 0) (0.0002738404885 0.08151169933 0) (0.0003473368989 0.08151154589 0) (0.0003458108505 0.0815824633 0) (0.0003489345161 0.0812993878 0) (0.0003471462967 0.08137035917 0) (0.0002705227151 0.08137125138 0) (0.0005734403522 0.08129798699 0) (0.000574066355 0.08136844627 0) (0.0004992999174 0.08136892147 0) (0.0004991250337 0.08129834169 0) (0.0001790727317 0.08138878853 0) (0.0002238239818 0.08157311163 0) (0.0002089821615 0.08151119556 0) (-0.0003409476848 0.0793302786 0) (-0.0003419097054 0.07925996518 0) (-0.000268796959 0.07926010159 0) (-0.0002699408681 0.07933105568 0) (-0.0003440124312 0.07904917653 0) (-0.0002702527703 0.07904903443 0) (-0.0002687797878 0.07911903106 0) (-0.0003414625381 0.0791188396 0) (-4.978795409e-05 0.07904883549 0) (-4.84574648e-05 0.07911887222 0) (-0.0001214737462 0.07911878743 0) (-0.0001228417639 0.079048764 0) (-0.0004100730439 0.07911736771 0) (-0.0004161932472 0.07904878589 0) (-0.0003943188875 0.07932158902 0) (-0.0004126059008 0.07926331331 0) (-0.000350191603 0.07876856499 0) (-0.0003503230395 0.0788392382 0) (-0.0004252649117 0.07883964924 0) (-0.000424609133 0.07876886812 0) (-0.0004246800587 0.07898080726 0) (-0.0003483771637 0.07898000857 0) (-0.0006571345751 0.07850163317 0) (-0.0005703264391 0.07848569363 0) (-0.0005685515289 0.0785558842 0) (-0.000638192142 0.07855887279 0) (-0.0003530012522 0.07848692576 0) (-0.0003517038375 0.07855719781 0) (-0.0004245012973 0.07855698098 0) (-0.0004255850347 0.07848662917 0) (-0.000424718374 0.07869834016 0) (-0.000350465148 0.07869807729 0) (-0.0003612976335 0.07820730761 0) (-0.0003590389 0.07827698564 0) (-0.000431994928 0.0782768874 0) (-0.0004342304088 0.07820717004 0) (-0.0004271501004 0.07841637194 0) (-0.0003546991919 0.07841672163 0) (-0.0006393237201 0.07841339519 0) (-0.0005714494427 0.07841532902 0) (0.0006704313674 0.08920394095 0) (0.000695626612 0.08929586858 0) (0.0006405266478 0.08930485511 0) (0.0009241097899 0.08922171497 0) (0.0009254895685 0.08929379933 0) (0.000847259053 0.08929382304 0) (0.0008447796657 0.08922155648 0) (0.0009279865717 0.08951056336 0) (0.000851247116 0.08951071186 0) (0.0008503040646 0.08943850318 0) (0.000927424522 0.08943849717 0) (0.0009186663134 0.08893515985 0) (0.000921313814 0.08900696949 0) (0.0008438896803 0.08900747379 0) (0.0008384754221 0.08893479278 0) (0.0008440667892 0.08914979428 0) (0.0009232812481 0.08915004104 0) (0.0009283130251 0.08958235289 0) (0.0008515835794 0.08958303421 0) (0.0009279334137 0.08979922322 0) (0.000852311738 0.08979993648 0) (0.0008518860102 0.08972794515 0) (0.0009276788857 0.08972744758 0) (0.000696107333 0.08972808085 0) (0.0006971788719 0.08980156473 0) (0.0009528301225 0.0872308372 0) (0.0009551830004 0.08715973154 0) (0.001018093742 0.08715920316 0) (0.001017097319 0.0872302216 0) (0.0009611119899 0.08692863304 0) (0.001004072662 0.08701716638 0) (0.0009589492977 0.08702446168 0) (0.00121656352 0.08701532159 0) (0.001141689194 0.08701587586 0) (0.001151963381 0.08744155382 0) (0.00122438447 0.08744093721 0) (0.0009426611416 0.08744346921 0) (0.00100845012 0.08744288285 0) (0.001014783734 0.08730114415 0) (0.0009498213879 0.08730171205 0) (0.0009167981757 0.08496169476 0) (0.0009098965824 0.08489145931 0) (0.0009822997595 0.08489129995 0) (0.0009864188566 0.08496185397 0) (0.0009716626795 0.08475125244 0) (0.0008945929738 0.08475203002 0) (0.001200845834 0.08474928558 0) (0.001125419765 0.08474975203 0) (0.0008262549911 0.08475248935 0) (0.0008170039438 0.08468348391 0) (0.0008530312107 0.08496151039 0) (0.0008440620584 0.08489147129 0) (0.0008333760338 0.08446772903 0) (0.0008362489093 0.08439645018 0) (0.0008078033461 0.08461740376 0) (0.0009202650836 0.08503257956 0) (0.0008608408634 0.08503159624 0) (0.001125854166 0.08517467141 0) (0.001202746764 0.08517397335 0) (0.0008782639908 0.08519398575 0) (0.0009701739796 0.08517628887 0) (0.0009870933584 0.08503293986 0) (0.0005770046414 0.08242638337 0) (0.000497851651 0.08242774923 0) (0.0004995541841 0.08235685679 0) (0.0005775486131 0.08235568135 0) (0.0005795623759 0.08249664719 0) (0.0005033592777 0.08249732768 0) (0.0006552221191 0.0824253632 0) (0.0006564098591 0.08249604085 0) (0.0008819599301 0.08242354292 0) (0.0008826492781 0.08249430219 0) (0.0008082206761 0.08249470988 0) (0.0008074944181 0.08242389861 0) (0.0008844313225 0.08270578516 0) (0.0008088953502 0.08270642212 0) (0.0008088675948 0.08263597198 0) (0.0008837630736 0.08263545676 0) (0.0006648248384 0.08298841974 0) (0.0006635965065 0.08305912623 0) (0.0008878019679 0.0829873293 0) (0.0008880806518 0.08305780392 0) (0.0008127710759 0.08305830878 0) (0.0008129624779 0.08298781804 0) (0.0008897025714 0.0832699671 0) (0.0008135804737 0.08327045115 0) (0.0008120340017 0.08319984114 0) (0.0008886652808 0.08319932765 0) (0.0008851274245 0.08277617869 0) (0.0008093409501 0.08277685646 0) (0.0008119849555 0.08291753084 0) (0.0008870579692 0.0829170014 0) (0.0006608702798 0.08291866136 0) (3.399933013e-05 0.08017541495 0) (3.418082928e-05 0.08024600775 0) (-4.378614378e-05 0.0802472875 0) (0.0002626200913 0.08017292933 0) (0.0002635197636 0.0802432954 0) (0.0001883227623 0.08024383872 0) (0.0001877595343 0.08017339208 0) (0.0001892004221 0.08038503401 0) (0.0002649877761 0.08038429093 0) (-0.001741691858 0.07825204366 0) (-0.001741967445 0.0781818433 0) (-0.001669847138 0.07818156824 0) (-0.001669584526 0.07825178174 0) (-0.00166837439 0.078041089 0) (-0.001741486939 0.07804142279 0) (-0.001452461267 0.07804029286 0) (-0.001522528125 0.07804041084 0) (-0.001518312952 0.07853187677 0) (-0.001520939992 0.07846160035 0) (-0.001447860264 0.07846124065 0) (-0.001739608367 0.07853308683 0) (-0.00174015967 0.07846266624 0) (-0.001667282292 0.07846232093 0) (-0.001666365385 0.07853272607 0) (-0.001668956993 0.07832187531 0) (-0.001741286094 0.07832217786 0) (-0.000772788149 0.08865089045 0) (-0.000703416472 0.08865031988 0) (-0.0006960487162 0.08871993842 0) (-0.0007680824467 0.08872127085 0) (-0.0007786566719 0.08858064826 0) (-0.0007103842465 0.08858015016 0) (-0.0008520955388 0.08865181325 0) (-0.0008562034201 0.08858137671 0) (-0.001087342845 0.08865438133 0) (-0.001088327527 0.08858359786 0) (-0.001012071846 0.08858296927 0) (-0.001010512937 0.08865368368 0) (-0.001091648107 0.08837172006 0) (-0.001017534429 0.0883712883 0) (-0.001015718233 0.08844200103 0) (-0.001090536741 0.08844250269 0) (-0.001086088732 0.0889380225 0) (-0.001086086217 0.08886720777 0) (-0.001009788009 0.08886669123 0) (-0.001010600778 0.08893783254 0) (-0.001009471414 0.08872457126 0) (-0.001086587172 0.0887252969 0) (-0.0008493015514 0.08872245429 0) (-0.0008771495473 0.08808811315 0) (-0.000868553559 0.08801680999 0) (-0.001093306727 0.08808893701 0) (-0.001092163799 0.08801815271 0) (-0.00101658396 0.08801763302 0) (-0.001019433188 0.08808853295 0) (-0.001088787368 0.08780598301 0) (-0.00100830648 0.08780515704 0) (-0.001009708231 0.08787570793 0) (-0.001089332704 0.08787647607 0) (-0.001092663936 0.088300767 0) (-0.001019160004 0.08830036536 0) (-0.001020612573 0.08815913463 0) (-0.001093719728 0.08815949451 0) (-0.000878843338 0.08815874431 0) (-0.0007777087049 0.08922140947 0) (-0.0008559601383 0.08922223003 0) (-0.0008587548133 0.0891508837 0) (-0.0007827253671 0.08915041201 0) (-0.00108402756 0.08922304808 0) (-0.001084785893 0.0891515252 0) (-0.001010071321 0.08915110781 0) (-0.001009047719 0.08922265116 0) (-0.001011094278 0.08900886337 0) (-0.001085868866 0.08900909046 0) (-0.0006990833265 0.0892202508 0) (-0.0006945430489 0.08929109986 0) (-0.0007750468602 0.0892926156 0) (-0.0007073467678 0.08914987666 0) (0.0009190819014 0.08836579871 0) (0.0009260014682 0.08829578646 0) (0.001000770091 0.08829524595 0) (0.0009969636811 0.08836577336 0) (0.001005461086 0.08815337431 0) (0.0009374786637 0.08815468028 0) (0.001225246463 0.08815093333 0) (0.001150691037 0.08815172061 0) (0.0008773010871 0.08815653608 0) (0.0008851516184 0.08809208168 0) (0.0008483602631 0.08836545078 0) (0.0008586276508 0.08829648766 0) (0.000929735646 0.088652598 0) (0.000926164348 0.08872292797 0) (0.0008519851446 0.08872372585 0) (0.0008600247793 0.08865422872 0) (0.0008368470008 0.08886303395 0) (0.0009180140078 0.08886367284 0) (0.0009162358503 0.08843638516 0) (0.0008380618191 0.08843165826 0) (0.0008598154219 0.08858297 0) (0.0009278242158 0.08858110224 0) (0.001227220859 0.08864927084 0) (0.001152545135 0.08864983687 0) (0.001151954102 0.08857833249 0) (0.001226805884 0.08857772613 0) (0.001001305087 0.08857996934 0) (0.001002846937 0.0886512716 0) (0.0009956158766 0.08843658512 0) (-0.000839955588 0.08639839497 0) (-0.0009028910059 0.08639854475 0) (-0.0009016385684 0.08632792953 0) (-0.0008431049226 0.0863285399 0) (-0.001108317638 0.08639912874 0) (-0.001106573877 0.0863285495 0) (-0.001035112237 0.08632821343 0) (-0.001038018109 0.08639883945 0) (-0.001095388965 0.08611708633 0) (-0.00101368407 0.08611629155 0) (-0.001020331097 0.08618683751 0) (-0.001098946691 0.08618749458 0) (-0.001106120864 0.08668011893 0) (-0.001107156646 0.08660991048 0) (-0.001036115377 0.08660960328 0) (-0.001034548296 0.08667976908 0) (-0.001038381028 0.08646926601 0) (-0.00110858922 0.08646954165 0) (-0.0008366245979 0.0864686668 0) (-0.0009010473291 0.08646886547 0) (-0.001095510173 0.08583592586 0) (-0.001097048948 0.08576569457 0) (-0.001016196721 0.08576493147 0) (-0.001013978895 0.08583514527 0) (-0.001102046771 0.08555538196 0) (-0.001023266788 0.0855546977 0) (-0.001020846843 0.08562466202 0) (-0.001100334609 0.08562536396 0) (-0.001093547107 0.08604672848 0) (-0.001010674877 0.08604588689 0) (-0.001011983095 0.08590536051 0) (-0.001094180278 0.08590617157 0) (-0.000786620064 0.08752162074 0) (-0.0008551994919 0.08752210778 0) (-0.0008586137268 0.08745188874 0) (-0.0007902653811 0.08745141627 0) (-0.001092192029 0.08752423012 0) (-0.001093424568 0.08745389234 0) (-0.001015338003 0.08745322567 0) (-0.001013439558 0.08752353298 0) (-0.001097070345 0.08724261746 0) (-0.001020903048 0.08724205475 0) (-0.001019095002 0.08731251938 0) (-0.001095875963 0.08731311222 0) (-0.001089045864 0.08773559969 0) (-0.001008562364 0.0877347737 0) (-0.001011562633 0.08759394491 0) (-0.001090977006 0.08759468556 0) (-0.0007828177673 0.08759186337 0) (-0.0008517026359 0.08759237852 0) (-0.000814271779 0.08695993592 0) (-0.0008808304945 0.08696025303 0) (-0.0008839486016 0.08688997981 0) (-0.000817712561 0.08688965174 0) (-0.001101659145 0.0869615384 0) (-0.001102801739 0.08689117392 0) (-0.001029565628 0.08689076096 0) (-0.001027838103 0.0869610955 0) (-0.001032921932 0.08675001286 0) (-0.001105037724 0.08675037932 0) (-0.001098235398 0.08717221394 0) (-0.001022662089 0.08717169429 0) (-0.001026110295 0.08703127331 0) (-0.001100518965 0.08703173311 0) (-0.0008108744105 0.08702997222 0) (-0.0008777239445 0.08703035653 0) (0.0009476797054 0.08609475833 0) (0.0009440905105 0.0860235478 0) (0.001008768259 0.08602339971 0) (0.001011650918 0.08609441894 0) (0.001001650863 0.08588191864 0) (0.0009364072355 0.0858822141 0) (0.001214694465 0.08588111511 0) (0.001143148983 0.08588141255 0) (0.001137448733 0.0863067377 0) (0.001212050781 0.0863062897 0) (0.0009553748138 0.08630070406 0) (0.001000348958 0.08630735874 0) (0.0009581736159 0.08639608235 0) (0.00101316653 0.08616530342 0) (0.0009504450188 0.08616560853 0) (-0.001100467797 0.0841493694 0) (-0.001103035212 0.08407922319 0) (-0.001024162587 0.08407852527 0) (-0.001020866577 0.08414864059 0) (-0.001111157403 0.08386887874 0) (-0.001034436519 0.08386828629 0) (-0.001030968113 0.08393840049 0) (-0.001108413674 0.08393902379 0) (-0.001098590628 0.08443081881 0) (-0.00109600405 0.08436029936 0) (-0.00101340921 0.08435938121 0) (-0.001016228176 0.08442991524 0) (-0.001017679933 0.08421880888 0) (-0.001098115451 0.08421958231 0) (-0.001051422743 0.0835173995 0) (-0.001048086161 0.08358752762 0) (-0.001061591596 0.08330725127 0) (-0.001058151043 0.08337730035 0) (-0.001113906698 0.08379868148 0) (-0.001037909099 0.08379813294 0) (-0.001044741402 0.08365770794 0) (-0.001119335443 0.08365818201 0) (-0.001109405401 0.08527496097 0) (-0.001111300466 0.08520477119 0) (-0.001036524886 0.08520429593 0) (-0.001033811281 0.08527442813 0) (-0.00111700386 0.08499421503 0) (-0.001044712975 0.08499386049 0) (-0.001041982306 0.08506400563 0) (-0.001115108795 0.08506440481 0) (-0.001103828153 0.08548540041 0) (-0.00102582117 0.08548474732 0) (-0.00103111596 0.08534456044 0) (-0.001107522175 0.08534513777 0) (-0.00112153295 0.08471327925 0) (-0.001118940637 0.08464283813 0) (-0.001049857646 0.08464266127 0) (-0.001052573947 0.08471311626 0) (-0.001026281982 0.08450078385 0) (-0.001104860751 0.08450147986 0) (-0.001118844157 0.08492401183 0) (-0.001047398018 0.08492370199 0) (-0.001051934857 0.08478337955 0) (-0.001121632818 0.08478358655 0) (0.0008898534879 0.08355227674 0) (0.0008893371134 0.0836230047 0) (0.0008108157569 0.08362409216 0) (0.0008125112482 0.0835531214 0) (0.0008925684791 0.08383402107 0) (0.0008186849452 0.08383429459 0) (0.0008163981561 0.08376412043 0) (0.0008919997711 0.08376353529 0) (0.0008909327547 0.08334034407 0) (0.0008158512226 0.08334076908 0) (0.0008156691796 0.08348189293 0) (0.0008910159213 0.08348147925 0) (0.0006252480764 0.08347266165 0) (0.0006740085634 0.08348131604 0) (0.0006430126915 0.08357174292 0) (0.0008132251509 0.08418824054 0) (0.0008055179708 0.08411884624 0) (0.0008304739994 0.08432674287 0) (0.000890332547 0.08390503454 0) (0.0008153363333 0.0839055243 0) (0.0008023387095 0.08404880852 0) (0.0008839992207 0.08404721731 0) (-0.001152417086 0.08162181718 0) (-0.001149717506 0.0816920017 0) (-0.001219039586 0.08169216707 0) (-0.00121996234 0.08162186645 0) (-0.001213930705 0.08183248577 0) (-0.001142403422 0.08183220152 0) (-0.001430481283 0.08183346893 0) (-0.001357786834 0.08183311176 0) (-0.001077014654 0.08183193123 0) (-0.001072801358 0.08190190996 0) (-0.001089656591 0.0816216816 0) (-0.001085452805 0.08169180406 0) (-0.001061107519 0.08211157805 0) (-0.001057321747 0.08218169018 0) (-0.001068661257 0.0819716802 0) (-0.001152160836 0.08155145662 0) (-0.001093783855 0.08155227699 0) (-0.001351085883 0.08141082325 0) (-0.001428233583 0.08141145767 0) (-0.001103320923 0.08139187347 0) (-0.00119468715 0.0814094362 0) (-0.001217545291 0.08155138729 0) (-0.001098966477 0.08274326592 0) (-0.001101755745 0.08281374751 0) (-0.001183706968 0.08281462227 0) (-0.001181156618 0.0827441553 0) (-0.00119781533 0.08295601991 0) (-0.001125677165 0.08295567943 0) (-0.001421750175 0.08295745618 0) (-0.001347267146 0.08295698284 0) (-0.001060270849 0.08295569637 0) (-0.001069852128 0.08302652271 0) (-0.001026900207 0.08274211613 0) (-0.001023274656 0.0828084939 0) (-0.001064982861 0.08323714962 0) (-0.001070463875 0.08309684641 0) (-0.001045945978 0.08239205256 0) (-0.00104213278 0.08246216451 0) (-0.001053535976 0.08225180231 0) (-0.001100483049 0.08267303449 0) (-0.001030693186 0.08267250036 0) (-0.001038319582 0.08253227646 0) (-0.001106820819 0.08253273687 0) (-0.00134546872 0.08253497451 0) (-0.00142258516 0.08253559566 0) (-0.001185899626 0.08253346226 0) (-0.001181547732 0.08267386427 0) (0.0002475663004 0.08167215386 0) (0.0005776799486 0.08186199281 0) (0.0005016627332 0.08186273739 0) (0.0005001165489 0.08179257145 0) (0.0005768446983 0.08179169162 0) (0.000291928683 0.08186172997 0) (0.0002767811562 0.08179540132 0) (0.0003459172892 0.08179436209 0) (0.0003543842328 0.08186309838 0) (0.0003405498734 0.08165425405 0) (0.0003563762268 0.0819331308 0) (0.0003061888131 0.08192417227 0) (0.0005776501533 0.08193243026 0) (0.0005012129929 0.08193326901 0) (-0.0003640429545 0.07942011839 0) (-0.000115800124 0.07954086452 0) (-4.126142897e-05 0.07954049529 0) (-0.0003273769945 0.07953994749 0) (-0.0002629698292 0.07954088522 0) (-0.0002726598346 0.0794025425 0) (-0.001439241501 0.07958542455 0) (-0.001364173541 0.07958492126 0) (-0.001378666875 0.07916416868 0) (-0.00144718799 0.07916418514 0) (-0.001160637398 0.08049744783 0) (-0.001156111277 0.080567529 0) (-0.001221389118 0.0805677855 0) (-0.001225522208 0.0804976887 0) (-0.001213025326 0.08070792622 0) (-0.001146989023 0.08070761252 0) (-0.001435428793 0.08070926106 0) (-0.001361145502 0.08070880208 0) (-0.001371583328 0.08028786629 0) (-0.001441696862 0.08028803682 0) (-0.001174083333 0.08028788261 0) (-0.001236444865 0.08028791109 0) (-0.001229564926 0.08042763049 0) (-0.00116512817 0.08042737949 0) (-0.0001200297032 0.0802528922 0) (-0.001532286707 0.07733808731 0) (-0.001464133664 0.07733830834 0) (-0.001745853916 0.0773387114 0) (-0.001673759985 0.07733839733 0) (-0.001713355402 0.0771171828 0) (-0.001638994266 0.07711604414 0) (-0.001659912364 0.07719487246 0) (-0.00173297054 0.07719553242 0) (-0.0009847799711 0.0770901561 0) (-0.0009752439156 0.07715700465 0) (-0.001059098511 0.07716081747 0) (-0.00109023117 0.07710169833 0) (-0.001036677406 0.07729334333 0) (-0.0009662231843 0.07729454196 0) (-0.001404605051 0.07733867712 0) (-0.0009539163043 0.07764808455 0) (-0.000974156815 0.07759127135 0) (-0.0008871933466 0.07757531774 0) (-0.0008844852798 0.07764520181 0) (-0.0008915394923 0.07736459598 0) (-0.0008893782847 0.07743433996 0) (-0.0006742627405 0.07736601128 0) (-0.0006717982192 0.07743600143 0) (-0.0007436542919 0.07743513847 0) (-0.0007455890763 0.0773650665 0) (-0.00137567988 0.07846096519 0) (-0.0006905943823 0.07840335968 0) (-0.0006616069949 0.07792677529 0) (-0.0007355103485 0.07792681384 0) (-0.0007360969998 0.07785638042 0) (-0.0006623190252 0.07785634269 0) (-0.0008806270315 0.07771441227 0) (-0.0009335747442 0.07770517136 0) (-0.0006614664092 0.07799730305 0) (-0.000736091257 0.07799765977 0) (-0.001388891113 0.07804073973 0) (0.002716420294 0.09034518906 0) (0.004756120852 0.08966298588 3.550770789e-13) (0.004208625485 0.09060986098 3.587824482e-13) (0.004145606566 0.09088775027 3.532729664e-13) (0.004185916253 0.09122951015 3.56770169e-13) (0.000118576089 0.08087838618 0) (0.0001289699615 0.08094639154 0) (6.697478493e-05 0.08094471972 0) (4.995759741e-05 0.08087929142 0) (0.0001331879387 0.08101588699 0) (8.288999216e-05 0.08100660266 0) (0.002602254825 0.07904512591 0) (0.004531114871 0.07658301602 3.464173393e-13) (0.004063453703 0.07871587531 3.56048524e-13) (0.004028947792 0.07768511928 3.538835891e-13) (0.004105014381 0.08029213476 3.581163144e-13) (0.000108362887 0.08110564665 0) (-0.0001243860957 0.07897874172 0) (-5.153125045e-05 0.07897890593 0) (-0.000272663254 0.07897927903 0) (-0.0002758420719 0.07876824925 0) (-0.0002751561623 0.07883868202 0) (0.001303230068 0.08087450283 0) (0.001433944597 0.07989071454 0) (0.001439056886 0.08017155508 0) (0.001144102057 0.08017235803 0) (0.002322066265 0.07988807545 0) (0.002326995624 0.08016890413 0) (0.002031107324 0.08016976542 0) (0.002026191282 0.07988897583 0) (-7.418855663e-05 0.09043822689 0) (-0.0001657956986 0.09043709848 0) (-0.0001767826887 0.09036542951 0) (-7.867366477e-05 0.09036847589 0) (-0.0004342565429 0.09041876404 0) (-0.0004403655199 0.09034530129 0) (-0.000351027644 0.09035553881 0) (-0.0003438777048 0.09042820326 0) (-0.0003742134989 0.09020310743 0) (-0.0004543724424 0.09019523251 0) (0.000303953848 0.09019193107 0) (0.0002204637118 0.09020055327 0) (0.0002851172217 0.09042049346 0) (0.0002011113246 0.09042553761 0) (0.0002026155268 0.09035347491 0) (0.0002883181693 0.09034725204 0) (2.290846693e-05 0.09036525651 0) (2.31347843e-05 0.09043569228 0) (0.002417264394 0.09120168511 0) (0.002115911972 0.09120982956 0) (0.002117948576 0.09092369317 0) (0.002417631391 0.09091788315 0) (0.001513518419 0.09094178658 0) (0.001505918332 0.09123199119 0) (0.001373168012 0.09022404112 0) (0.001228350332 0.08922002593 0) (0.001153571132 0.08922074676 0) (0.001153350164 0.08914971015 0) (0.001228150978 0.08914889906 0) (0.001001289003 0.08915030612 0) (0.001001915631 0.08922186121 0) (0.0009983124128 0.08893510338 0) (0.0009996054315 0.08900690228 0) (-0.001557960248 0.0849967159 0) (-0.001558838867 0.08485617366 0) (-0.001411139233 0.08485530054 0) (-0.002001920875 0.08499938006 0) (-0.002002708072 0.08485883722 0) (-0.001854668955 0.08485794883 0) (-0.001853855637 0.0849984915 0) (-0.002005070346 0.08443710422 0) (-0.00185707041 0.08443621608 0) (-0.001856269641 0.0845768372 0) (-0.002004282637 0.08457772542 0) (-0.001998735293 0.08556118548 0) (-0.00199953393 0.08542089087 0) (-0.001851403476 0.08541998882 0) (-0.001850591779 0.08556028334 0) (-0.001853042405 0.08513902111 0) (-0.002001120617 0.08513992282 0) (-0.001409186175 0.08513637069 0) (-0.001557068654 0.085137245 0) (0.0002589294417 0.07989158319 0) (0.0002599483306 0.07996180482 0) (0.0001864539353 0.07996186682 0) (0.0001856867691 0.07989159131 0) (0.0001873995353 0.08010286575 0) (0.000261604097 0.08010255096 0) (3.583746129e-05 0.08010428653 0) (0.0005679032822 0.08087570004 0) (0.000714602134 0.08087557793 0) (0.0007078820878 0.08045374277 0) (0.0007102103163 0.08059426249 0) (0.001148971424 0.08045320016 0) (0.00115130428 0.08059362842 0) (0.001004010731 0.08059388503 0) (0.001001750927 0.08045344323 0) (-0.001737526497 0.07881388186 0) (-0.001737787915 0.0787438512 0) (-0.00166373562 0.07874341985 0) (-0.001663160926 0.07881342234 0) (-0.001665435248 0.07860315725 0) (-0.00173892629 0.07860353269 0) (-0.001515646561 0.07860217906 0) (0.0009980270423 0.08886360484 0) (0.001001637487 0.08872206939 0) (0.001227334253 0.08872063468 0) (0.001152620312 0.08872114871 0) (-0.002005858738 0.08429637853 0) (-0.001857871862 0.08429549048 0) (-0.001859473059 0.08401430049 0) (-0.002007394634 0.08401518811 0) (-0.001415201683 0.08401162124 0) (-0.00156357767 0.08401252489 0) (-0.001414036333 0.08415207018 0) (-0.001338478782 0.08415153757 0) (-0.001337764993 0.08422183956 0) (-0.001413313402 0.0842223721 0) (-0.001179831759 0.08422042942 0) (-0.0011813916 0.08415017214 0) (-0.00118028726 0.08443167884 0) (-0.00117869301 0.08436120506 0) (-0.00118363142 0.08450219018 0) (-0.001192475132 0.08471355968 0) (-0.001190899875 0.08464317745 0) (-0.001411926431 0.0847147577 0) (-0.001412163434 0.08464446567 0) (-0.001338211789 0.08464402191 0) (-0.001338243743 0.08471432876 0) (-0.001515701001 0.07909384267 0) (-0.00151215239 0.07902323857 0) (-0.001737048486 0.07909507919 0) (-0.001736972383 0.07902473286 0) (-0.00166322039 0.07902431654 0) (-0.001663675072 0.07909469145 0) (-0.001662806977 0.07888362219 0) (-0.001737068151 0.07888406796 0) (-0.0001755585315 0.07989026723 0) (-0.0001801656633 0.07982110085 0) (-0.0001874405739 0.07975253963 0) (-0.0001122112337 0.07975204835 0) (-3.747702585e-05 0.07975167785 0) (-0.00128312774 0.07881000018 0) (-0.001277917691 0.07887941078 0) (-0.001272900252 0.07894572721 0) (-0.001349440835 0.07895092897 0) (-0.001429613073 0.07895181823 0) (-3.725988011e-05 0.08003356911 0) (-0.0001105406434 0.08003356441 0) (-0.000181519184 0.08003709723 0) (-0.0001981238244 0.07997954194 0) (3.409628957e-05 0.07961066246 0) (3.532951146e-05 0.07968110472 0) (0.0002537441594 0.07961096516 0) (0.000255147192 0.0796812104 0) (0.0001821453676 0.07968109939 0) (0.0001806925353 0.07961082836 0) (0.0001846070085 0.07982144845 0) (0.0002577843795 0.07982144076 0) (-0.001451215845 0.07754820353 0) (-0.001387524603 0.07754819248 0) (-0.001435951378 0.07867163874 0) (-0.001360178588 0.07867106554 0) (-0.00129417695 0.0786708435 0) (-0.001288346222 0.0787404982 0) (-0.001432161745 0.07782754245 0) (-0.001363636494 0.07782655946 0) (0.0006146666885 0.0896551401 0) (0.0005191893373 0.08963776965 0) (0.0005773863379 0.08285023211 0) (0.0005068582904 0.08285152858 0) (0.0001114386833 0.08045684109 0) (0.0001115922441 0.08052735571 0) (0.0001137081404 0.08059736119 0) (3.964795111e-05 0.08059758362 0) (-2.541540679e-05 0.08059696365 0) (0.0003475425414 0.08094663596 0) (0.0003484680785 0.08101696268 0) (0.000343079306 0.08073578436 0) (0.0003441880285 0.08080616213 0) (0.0005657332808 0.0807350095 0) (0.0005668366086 0.08080536118 0) (0.000493218055 0.08080541093 0) (0.0004920770229 0.08073508562 0) (-0.0008065318513 0.08822894444 0) (-0.0007412886501 0.08822858367 0) (0.001822742416 0.08907101064 0) (0.00167422278 0.08907231751 0) (0.001823496875 0.08949854011 0) (0.001674783722 0.08950021395 0) (0.001674558735 0.08935776185 0) (0.001823270659 0.08935589995 0) (0.001377121834 0.08936148705 0) (0.001376973326 0.08950474613 0) (0.0004987367285 0.08122788085 0) (0.0005726087641 0.08122764659 0) (0.0003497044312 0.08122868431 0) (0.0003487724298 0.08108756774 0) (-0.0004978901922 0.07876879812 0) (-0.0004962482145 0.07883883282 0) (-0.0005497102156 0.07883003935 0) (-0.0005684415887 0.07877211918 0) (-0.000518041318 0.07892827228 0) (-0.00061903117 0.07861677709 0) (-0.0005661398459 0.07862578327 0) (-0.0005869678511 0.07871500745 0) (-0.0004970460234 0.07862726506 0) (-0.0004986109382 0.07869843088 0) (0.001218047972 0.09065943332 0) (0.001065412707 0.09066571713 0) (0.001068952758 0.0905202025 0) (0.001219542408 0.09051627516 0) (0.000760789267 0.09053577342 0) (0.0007545010124 0.09068245798 0) (0.0006951067944 0.09017226903 0) (0.0006212570392 0.08936411533 0) (0.0006949353028 0.08936720893 0) (0.0007714185751 0.08936643127 0) (0.00077247923 0.08943844849 0) (0.0007736326781 0.08951107504 0) (0.0007442449359 0.08891775377 0) (0.0007716417767 0.08900901006 0) (0.0007195619582 0.0890186691 0) (0.0007697845189 0.08907960964 0) (0.0007035808251 0.08908089094 0) (0.000579622059 0.08228478649 0) (0.0005048997707 0.08228522221 0) (0.0004354440709 0.08228452643 0) (0.000433964153 0.08221430782 0) (0.0004258986993 0.08214545136 0) (0.000461612685 0.08262870528 0) (0.000448737337 0.08256531355 0) (0.000510819362 0.0825666844 0) (0.0005824350345 0.08256693507 0) (0.0008789318327 0.08214185287 0) (0.0008796866208 0.08221223295 0) (0.0008057314257 0.08221253306 0) (0.0008050000609 0.08214213977 0) (0.000806845104 0.08235326968 0) (0.0008811174088 0.08235292832 0) (0.0006551352779 0.0823546653 0) (0.0005654477765 0.08314848965 0) (0.0006574640656 0.08313087043 0) (0.0007349124617 0.08312988141 0) (0.0007340305424 0.08320083379 0) (0.0007366689683 0.08327125381 0) (-3.743811537e-05 0.08031611599 0) (3.657343356e-05 0.0803159853 0) (0.0001127354478 0.08031521365 0) (0.0001126095766 0.08038593907 0) (-0.0007675765669 0.08879213581 0) (-0.000688598877 0.08878652631 0) (-0.0006691466769 0.08894502611 0) (-0.0007846299598 0.08851056347 0) (-0.0007169237549 0.08851016051 0) (-0.0008607212511 0.08851116487 0) (-0.0009374964762 0.08851183604 0) (-0.0009405577149 0.08844147102 0) (-0.0009435330701 0.08837085729 0) (-0.000762872325 0.08792729289 0) (-0.0008552167104 0.08794507098 0) (-0.0009339152926 0.08794582001 0) (-0.0009279726741 0.08787480846 0) (-0.0009256622662 0.08780419939 0) (-0.0009461990398 0.0883000195 0) (-0.0009481730104 0.08822934698 0) (-0.0008771167776 0.08822913111 0) (-0.001081068763 0.08951012619 0) (-0.001081789807 0.08943811328 0) (-0.001007072624 0.08943769587 0) (-0.001006487962 0.08950982461 0) (-0.00100812184 0.08929443025 0) (-0.001083119821 0.08929484949 0) (-0.0008543194488 0.08929366747 0) (-0.0007761524744 0.08936451375 0) (-0.0006975305194 0.08936343086 0) (-0.0006046293874 0.08934530694 0) (-0.0006339773493 0.08943767696 0) (-0.0006336428305 0.08950970154 0) (-0.0006603651635 0.08900993221 0) (-0.0006504899892 0.08907930973 0) (-0.0007155208351 0.0890793883 0) (-0.000787479176 0.08907946509 0) (-0.0008458296382 0.08626390641 0) (-0.0008911787568 0.08625703214 0) (-0.0008498570742 0.08616858839 0) (-0.0009565177833 0.08625711925 0) (-0.0009419505044 0.08618619504 0) (-0.0009313275509 0.08611547945 0) (-0.000852416522 0.08611026221 0) (-0.0009636820347 0.08667946302 0) (-0.0009659333903 0.08660931475 0) (-0.0009680342113 0.08653921774 0) (-0.0008983705485 0.08653895872 0) (-0.0008333111565 0.0865386514 0) (-0.0009395558603 0.08569408515 0) (-0.0009424715592 0.08562400652 0) (-0.0008739783294 0.08562352005 0) (-0.0008708562775 0.08569359733 0) (-0.0009454648525 0.08555404595 0) (-0.0008771284316 0.08555354744 0) (-0.0009278927624 0.08604504589 0) (-0.0008553287247 0.08604391897 0) (-0.0009287551835 0.08597478406 0) (-0.0008583881404 0.0859742331 0) (-0.0007939964698 0.08738127766 0) (-0.0008620423281 0.08738166979 0) (-0.000939169302 0.08738227795 0) (-0.0009418400374 0.08731191038 0) (-0.0009443961834 0.08724148982 0) (-0.000926298035 0.08773384465 0) (-0.0009283899429 0.08766351249 0) (-0.0008481531121 0.08766271423 0) (-0.0007787886744 0.08766223513 0) (-0.0008209153629 0.08681920929 0) (-0.0008869315638 0.08681960122 0) (-0.0009590524944 0.08681998077 0) (-0.0009613833207 0.08674966323 0) (-0.0009468772885 0.0871711602 0) (-0.0009493120003 0.08710093476 0) (-0.0008747102079 0.08710044758 0) (-0.0008076637192 0.0871000228 0) (-0.001186888045 0.08393970606 0) (-0.00118879617 0.08386951636 0) (-0.00118315345 0.08407998149 0) (-0.001414463846 0.08408180551 0) (-0.001339219572 0.08408130107 0) (-0.001344069323 0.08365966268 0) (-0.001418178912 0.08366012053 0) (-0.001194501271 0.083658699 0) (-0.001190709776 0.08379928752 0) (-0.001188483345 0.08506481867 0) (-0.001189707366 0.08499458533 0) (-0.001184788029 0.08527547937 0) (-0.001186017189 0.08520525912 0) (-0.001408190184 0.08527688604 0) (-0.001408675162 0.08520662175 0) (-0.001334646461 0.08520617749 0) (-0.001334057 0.0852764411 0) (-0.0009656342507 0.08513372226 0) (-0.0009690764507 0.08506362095 0) (-0.0009027974817 0.08506326648 0) (-0.0008990719583 0.08513335288 0) (-0.0009725317963 0.08499350666 0) (-0.0009065517378 0.08499318027 0) (-0.0009487177047 0.08548413931 0) (-0.0008807371479 0.08548374761 0) (-0.0009520418502 0.0854141156 0) (-0.000884357933 0.08541369971 0) (-0.0009745656597 0.08457186294 0) (-0.0009341833278 0.08448317716 0) (-0.0009289302912 0.08457897043 0) (-0.0009759739964 0.08492340535 0) (-0.0009103073853 0.084923081 0) (-0.0009793509801 0.08485329055 0) (-0.0009140603353 0.08485299478 0) (-0.001337985844 0.08478462066 0) (-0.001411598091 0.08478503608 0) (-0.001192603732 0.08478386717 0) (-0.001190888288 0.0849243517 0) (0.0007346946436 0.08369532691 0) (0.0007421627614 0.08376451379 0) (0.0006758142583 0.08376462056 0) (0.0006642474848 0.0836966098 0) (0.0007484796155 0.08383400859 0) (0.0006873783345 0.08383261827 0) (0.0007411954565 0.08334119131 0) (0.0007442933175 0.08341116427 0) (0.0006748181711 0.08341069065 0) (0.0006138498493 0.08340926028 0) (0.0007465532127 0.08390502004 0) (0.0006980712247 0.08389661199 0) (0.0007139261081 0.08399545757 0) (0.001119366223 0.08404417826 0) (0.00119427763 0.08404370212 0) (0.0009645013411 0.08404584264 0) (0.0009681552747 0.08383356664 0) (0.0009670344637 0.08390433773 0) (-0.00173625626 0.07937639201 0) (-0.001736624037 0.07930607471 0) (-0.001663824935 0.07930574297 0) (-0.001663404917 0.07937605993 0) (-0.001664012211 0.0791650656 0) (-0.001737007132 0.07916541168 0) (-0.001518479309 0.07916440255 0) (-0.001512592331 0.07965587062 0) (-0.00151405487 0.07958591311 0) (-0.001734670938 0.0796571511 0) (-0.001735036923 0.07958710806 0) (-0.001661780966 0.07958673416 0) (-0.001661258342 0.07965676311 0) (-0.001662893562 0.07944636323 0) (-0.001735862363 0.07944670914 0) (-0.001304535889 0.07937478735 0) (-0.001299712675 0.07944476209 0) (-0.00129480883 0.07951468407 0) (-0.001367934269 0.07951504406 0) (-0.001441752954 0.07951544777 0) (-0.001448980757 0.07923466022 0) (-0.00138015281 0.07923462869 0) (-0.001312883496 0.07923472489 0) (-0.001309113738 0.07930478488 0) (-0.0001024827464 0.08031544364 0) (-0.001460443522 0.0772673768 0) (-0.001528649745 0.07726701244 0) (-0.001598903366 0.07726713165 0) (-0.001587220389 0.07719413654 0) (-0.001564361678 0.07711447271 0) (-0.001167154344 0.07710251413 0) (-0.001143987709 0.07717460249 0) (-0.001208915156 0.07709411443 0) (-0.001406871999 0.07726794122 0) (-0.0007475454077 0.07729529507 0) (-0.0006764843667 0.07729621546 0) (-0.000892863678 0.07729462451 0) (-0.0009087303342 0.07708917621 0) (-0.0008999916078 0.07715633036 0) (-0.001327770209 0.07825153479 0) (-0.001322145296 0.0783210733 0) (-0.001316773779 0.07839080936 0) (-0.001380640226 0.07839099134 0) (-0.001451697935 0.0783911811 0) (-0.000647137867 0.07834562114 0) (-0.00071063878 0.0783443771 0) (-0.0007845437318 0.07812797099 0) (-0.0008045192354 0.07807073811 0) (-0.0007342086871 0.07806753617 0) (-0.0006604780707 0.07806744651 0) (-0.001459753586 0.07811102589 0) (-0.001395905503 0.07811143177 0) (-0.001339284564 0.07811255095 0) (-0.001333615986 0.0781817757 0) (-0.0005875228707 0.07792661801 0) (-0.0005866762072 0.07799686688 0) (-0.0003701995015 0.07792777178 0) (-0.000367997551 0.07799755467 0) (-0.0004399276677 0.07799695342 0) (-0.0004420004064 0.07792715662 0) (-0.0004361849543 0.07813707207 0) (-0.0003637299571 0.07813744786 0) (0.0001100305134 0.08073940907 0) (0.0001105413296 0.08080982993 0) (3.302279081e-05 0.08081567805 0) (0.0001943052686 0.08087773491 0) (0.0002704064965 0.08087705508 0) (-0.0004748082258 0.08995811742 0) (-0.0004099312112 0.08996448278 0) (-0.0002941842771 0.09012571822 0) (0.000274035736 0.08115859754 0) (0.0001986221041 0.08115916839 0) (0.0001234767889 0.08116442633 0) (0.0001545768332 0.08128975122 0) (0.000139301128 0.08122799472 0) (0.000612769256 0.09039538753 0) (0.0005342493563 0.09040009806 0) (0.0005373179301 0.09032598634 0) (0.0006148516686 0.09032226573 0) (0.0003752591737 0.09033845854 0) (0.0003715063847 0.09041259694 0) (0.0003841213946 0.09018472338 0) (0.001034970332 0.08680330189 0) (0.001040684151 0.08687405447 0) (0.0009615902529 0.08686986908 0) (0.0009621300286 0.08680312453 0) (0.001053310568 0.08694512762 0) (0.001032831499 0.08666198423 0) (0.001033251719 0.0867327322 0) (0.0009623906554 0.08673323413 0) (0.0009624842438 0.08666236526 0) (0.0009287559154 0.08765577297 0) (0.0009958706003 0.08765519101 0) (0.001070888931 0.08765468805 0) (0.001067377828 0.08772543557 0) (0.001064151183 0.08779614205 0) (0.001077363767 0.08751297455 0) (0.00107428834 0.08758383677 0) (0.0008976948285 0.08538901433 0) (0.0009668058109 0.08538852382 0) (0.001045679854 0.08538764303 0) (0.001049480024 0.08545815995 0) (0.001053602783 0.08552867477 0) (0.001043778863 0.08524654585 0) (0.001043249002 0.08531720859 0) (0.0009036956224 0.08793331024 0) (0.0009821861662 0.08793790446 0) (0.001062980709 0.08793810825 0) (0.001067341459 0.08800966638 0) (0.001073145373 0.08808121508 0) (0.001062171175 0.08786694487 0) (0.0009219433431 0.08567036988 0) (0.0009882735884 0.08567006733 0) (0.001061782915 0.08566969177 0) (0.001065523946 0.08574035274 0) (0.001069060553 0.08581091057 0) (0.00105774976 0.085599098 0) (0.001033671067 0.08652034671 0) (0.001032770864 0.08659129922 0) (0.0009621299807 0.08659191726 0) (0.0009609209763 0.08652138342 0) (0.00105014107 0.08637838509 0) (0.001038570338 0.08644936809 0) (0.0009597679921 0.08645442789 0) (-0.001131283896 0.0820419256 0) (-0.001205223786 0.08204236928 0) (-0.001279661104 0.08204284232 0) (-0.001281625415 0.08197284891 0) (-0.001283631435 0.08190286883 0) (-0.00111530505 0.0811975538 0) (-0.001184675676 0.08119808518 0) (-0.001265266186 0.08119892494 0) (-0.001267522595 0.08112880282 0) (-0.001270414529 0.08105876322 0) (-0.001266785183 0.08133952202 0) (-0.001264526787 0.08126914839 0) (-0.0002441578626 0.07982018654 0) (-0.0002622161412 0.0797577168 0) (-0.0002266327161 0.07988081818 0) (-0.000188079158 0.0796111338 0) (-0.0001891839075 0.07968224437 0) (-0.00127639903 0.0797939619 0) (-0.001280732396 0.07972399701 0) (-0.001213965227 0.07972360018 0) (-0.001209095168 0.07979354849 0) (-0.001285208317 0.07965420285 0) (-0.001218819471 0.07965387379 0) (-0.001269923332 0.07993418025 0) (-0.001272446513 0.07986400763 0) (-0.001204196034 0.07986354886 0) (-0.001199288217 0.07993307899 0) (-0.001305967899 0.07909350483 0) (-0.001268446772 0.07900448509 0) (-0.001261114811 0.07910102231 0) (-0.001133233894 0.08091772428 0) (-0.001200396961 0.08091809758 0) (-0.001276859165 0.08091870139 0) (-0.001280166929 0.08084858614 0) (-0.001283477305 0.08077847091 0) (-0.001273585699 0.08098876462 0) (-0.001280614692 0.08007562088 0) (-0.001271695287 0.08000464213 0) (-0.001194606257 0.07999942373 0) (-0.001190461256 0.08005814444 0) (-0.001301604526 0.08021766427 0) (-0.001293287485 0.08014684618 0) (-0.0001645688268 0.08009585186 0) (-0.001663791889 0.07704280401 0) (-0.001587341103 0.07704165171 0) (-0.001652480879 0.07683885003 0) (-0.001577119483 0.07683888032 0) (-0.001575562707 0.07690926822 0) (-0.001651329825 0.07690910997 0) (-0.001354266044 0.07684264933 0) (-0.001350869896 0.07691589862 0) (-0.0014238029 0.07691232603 0) (-0.001427040831 0.07684090424 0) (-0.001523494267 0.07754846656 0) (-0.001597115827 0.07754885592 0) (-0.00159978128 0.07747869729 0) (-0.001601846299 0.0774084825 0) (-0.0009570698155 0.07750278994 0) (-0.001010029341 0.07749334014 0) (-0.001284947866 0.07684428639 0) (-0.001289675419 0.07692216003 0) (-0.001058940627 0.0768371943 0) (-0.001061233337 0.07690891342 0) (-0.001139670063 0.07691256026 0) (-0.001135692413 0.07683965465 0) (-0.001092536733 0.0770274493 0) (-0.001011945243 0.07702835969 0) (-0.001305811412 0.07853086781 0) (-0.001300133287 0.07860095452 0) (0.000449082592 0.08978917974 0) (0.0004761563794 0.08973536719 0) (0.0003643774892 0.08993535503 0) (0.0004608514702 0.08995113861 0) (0.0004615770308 0.09002844309 0) (0.0004623685755 0.09010525166 0) (0.000463935055 0.0898793255 0) (0.0003964904755 0.08988419096 0) (0.0001136933085 0.08066788997 0) (-0.0005493072609 0.08995413973 0) (-0.0006244639827 0.08995205101 0) (-0.000626647313 0.08987711941 0) (-0.0006291586418 0.08980316167 0) (-0.0006285140877 0.08965486178 0) (-0.0006290342599 0.08958140825 0) (-0.0005534675475 0.0895758785 0) (-0.000536951357 0.08963698953 0) (-0.0005690948942 0.08951007542 0) (-0.0006302328611 0.08972966736 0) (0.0002695005388 0.08144212632 0) (0.0001936132859 0.08144757196 0) (-0.0003422859152 0.07918955651 0) (-0.0004305514912 0.07920611942 0) (-0.0004614128938 0.07910773754 0) (-0.0004802111193 0.07904778032 0) (-0.0003504265377 0.07890998959 0) (-0.0004271908295 0.07891093496 0) (-0.0004995895794 0.07898597224 0) (-0.0004982446523 0.07848632002 0) (-0.0004970175927 0.07855661865 0) (-0.0005754733011 0.07834615883 0) (-0.0005024814985 0.0783463352 0) (-0.0004996754527 0.07841602272 0) (0.0007648697843 0.08922122022 0) (0.0007693625796 0.08929439834 0) (0.0009228540233 0.08907862048 0) (0.0008451691377 0.08907879605 0) (0.0007645358188 0.08914948037 0) (0.0006867194024 0.08914451474 0) (0.0009573521063 0.08708968501 0) (0.001015806095 0.0870882976 0) (0.001080860146 0.08708757237 0) (0.001085113625 0.08715850427 0) (0.001085695937 0.08722947322 0) (0.001069373723 0.08701646566 0) (0.000946527656 0.08737274549 0) (0.001011873463 0.08737209672 0) (0.001082586802 0.08737137371 0) (0.001080139405 0.08744220571 0) (0.001084547673 0.0873004404 0) (0.0009022002451 0.08482172536 0) (0.0009769653766 0.08482125017 0) (0.001052230291 0.08482070642 0) (0.001055453137 0.08489101814 0) (0.001057653733 0.08496179366 0) (0.000835164743 0.08482203252 0) (0.0008915603755 0.08454045073 0) (0.000799563309 0.08455821349 0) (0.0007858159917 0.08445949781 0) (0.0007761071345 0.08439498829 0) (0.0009146426451 0.08510402004 0) (0.0008677736106 0.08509620225 0) (0.0009810650002 0.08510442216 0) (0.001053705278 0.08510416983 0) (0.001047990479 0.08517546723 0) (0.001057435251 0.08503293763 0) (0.0004201832864 0.08243345466 0) (0.000407246197 0.08237460852 0) (0.000385485639 0.08227563171 0) (0.0003716991984 0.0822129251 0) (0.0003569490728 0.08214645019 0) (0.0004344301213 0.08249826107 0) (0.0007381567742 0.08298828043 0) (0.000737365195 0.08305886652 0) (-0.0009468925101 0.08808822902 0) (-0.0009413892297 0.08801714197 0) (-0.0009488017106 0.08815887465 0) (-0.0006281988946 0.08921892719 0) (-0.0006158048221 0.08928522157 0) (-0.0005836701635 0.08944637611 0) (-0.0006399010782 0.08914958118 0) (0.0009333630386 0.08822545787 0) (0.001004597084 0.08822447024 0) (0.001077442659 0.08822365495 0) (0.001075949688 0.08829463744 0) (0.001074246984 0.08836550376 0) (0.001076947707 0.0881524634 0) (0.000868754403 0.08822638916 0) (0.0009211026395 0.08879303257 0) (0.0008425895352 0.08879298368 0) (0.0007717404443 0.08879251903 0) (0.0007854463073 0.0887244869 0) (0.0007987564163 0.08865665327 0) (0.0007577784088 0.08885792368 0) (0.0009206487029 0.08850832171 0) (0.0008284580727 0.08849164423 0) (0.0008109551242 0.08859243169 0) (-0.0009698976633 0.08639866887 0) (-0.0009666955775 0.08632800173 0) (-0.0009696626755 0.08646905234 0) (-0.0009338226119 0.08583441284 0) (-0.0009366683822 0.08576424233 0) (-0.0008677311019 0.08576375295 0) (-0.0008646162892 0.08583392171 0) (-0.000931090381 0.08590459715 0) (-0.0008615014765 0.08590409046 0) (-0.000933736638 0.08752277739 0) (-0.0009364575411 0.0874525277 0) (-0.0009310059104 0.0875931315 0) (-0.0009541999054 0.0869606538 0) (-0.0009566585522 0.08689036321 0) (-0.0009517395848 0.0870308007 0) (0.0009402562134 0.08595300498 0) (0.00100534695 0.08595269746 0) (0.001075341295 0.08595247546 0) (0.001077898352 0.0860232356 0) (0.001079691269 0.08609418358 0) (0.001072385557 0.08588166569 0) (0.0009531728465 0.0862355186 0) (0.001011466353 0.08623615666 0) (0.001076187286 0.08623602134 0) (0.001065411559 0.08630714283 0) (0.001079757443 0.08616511671 0) (-0.001105693709 0.08400912982 0) (-0.001027522337 0.08400844954 0) (-0.0009592170045 0.08400799041 0) (-0.000955588298 0.08407805132 0) (-0.0009519907656 0.08414813856 0) (-0.0009667485989 0.08386788344 0) (-0.0009629799764 0.08393796956 0) (-0.001096338382 0.08428990347 0) (-0.001014860992 0.08428907099 0) (-0.0009447838026 0.08428853499 0) (-0.0009410374146 0.08435821637 0) (-0.0009373945436 0.08442464627 0) (-0.00094839028 0.08421827802 0) (-0.001127331887 0.08344769306 0) (-0.001054766821 0.08344732367 0) (-0.0009887400008 0.08344695779 0) (-0.0009851373296 0.08351703193 0) (-0.0009815317051 0.0835871583 0) (-0.0009961846295 0.0833069678 0) (-0.0009924008464 0.08337697545 0) (-0.001116640576 0.08372844493 0) (-0.001041365042 0.08372792723 0) (-0.0009742909559 0.08372752839 0) (-0.0009705175625 0.08379774508 0) (-0.000977923298 0.08365731077 0) (-0.0009587941705 0.08527393823 0) (-0.0009622103352 0.08520382369 0) (-0.0008953711642 0.0852034525 0) (-0.0008916691493 0.08527353906 0) (-0.001113203367 0.08513458146 0) (-0.001039249025 0.08513415075 0) (-0.0009553964608 0.08534402677 0) (-0.0008879801947 0.0853436257 0) (-0.0009848409655 0.08471301352 0) (-0.0009842097137 0.08464267663 0) (-0.0009254296812 0.084643416 0) (-0.0009216627965 0.08471283603 0) (-0.001112811309 0.08457221718 0) (-0.001040301096 0.08457184815 0) (-0.001120496301 0.08485382046 0) (-0.00104991711 0.08485355546 0) (-0.0009825084654 0.08478318738 0) (-0.0009178588259 0.08478293498 0) (0.0007349422708 0.0835540459 0) (0.0007311217285 0.08362540931 0) (0.0006531179699 0.08363115611 0) (0.0007420527849 0.08348207328 0) (0.0008966345956 0.0842570621 0) (0.0008220508318 0.08425750998 0) (0.0007552738386 0.08425780239 0) (0.0007447814649 0.08418871363 0) (0.0007339404715 0.084120241 0) (0.0007657294142 0.0843266563 0) (0.0008862647384 0.08397633425 0) (0.0008068861725 0.08397755792 0) (0.0007234090603 0.08405457443 0) (-0.001146179795 0.08176212851 0) (-0.001216737039 0.08176235419 0) (-0.001287441779 0.08176259389 0) (-0.001288753389 0.08169234805 0) (-0.001288831398 0.08162200274 0) (-0.001285619852 0.08183278414 0) (-0.001081232381 0.08176187417 0) (-0.001064890337 0.08204151814 0) (-0.001142963786 0.0814805936 0) (-0.001097617759 0.08148779441 0) (-0.001208352159 0.0814805243 0) (-0.001280512611 0.08148085187 0) (-0.001272791829 0.08141012911 0) (-0.001286427409 0.08155152366 0) (-0.001111750865 0.08288460268 0) (-0.001020076586 0.08286701182 0) (-0.001014843054 0.08296281828 0) (-0.001011321377 0.08302728983 0) (-0.00113721959 0.08316719717 0) (-0.001068136684 0.08316700724 0) (-0.001003761226 0.0831667697 0) (-0.0009999716216 0.08323686874 0) (-0.001007548218 0.08309667064 0) (-0.001117299515 0.0823223425 0) (-0.001049748813 0.08232192749 0) (-0.001103456725 0.08260287787 0) (-0.001034506469 0.08260237535 0) (0.0002616803796 0.0817310315 0) (0.0003395943899 0.08172514161 0) (0.0004195358233 0.08172350939 0) (0.0004227082133 0.08179349491 0) (0.0004264433588 0.08186325473 0) (0.0004218502684 0.08158171857 0) (0.0004196969574 0.08165278374 0) (0.0004211883876 0.08200536515 0) (0.0004199096322 0.08207615033 0) (0.0003422115701 0.0820819082 0) (0.0003287891489 0.08202314359 0) (0.0004261595698 0.08193379832 0) (-0.000346269158 0.07947800563 0) (-0.0002708411163 0.07947264135 0) (-0.0001940948024 0.07947168303 0) (-0.0001902340194 0.07954114163 0) (-0.0001949655616 0.07933064442 0) (-0.0001956302719 0.07940147784 0) (-0.001234832748 0.0794445735 0) (-0.001229419635 0.07951447908 0) (-0.001240208242 0.07937462848 0) (-0.001289929345 0.0795844756 0) (-0.001224019386 0.07958421497 0) (-0.001313785269 0.0791644372 0) (-0.001256208827 0.07916547177 0) (-0.001250934414 0.07923473828 0) (-0.001245571981 0.07930468339 0) (-0.00115155015 0.08063757076 0) (-0.001217213099 0.0806378559 0) (-0.001290068189 0.08063821413 0) (-0.001293336858 0.08056808556 0) (-0.001296542922 0.08049794352 0) (-0.001286777318 0.08070834255 0) (-0.001169611644 0.08035742864 0) (-0.001233378407 0.08035767528 0) (-0.001302130092 0.08035778467 0) (-0.001303411008 0.08028783904 0) (-0.001299575199 0.08042781341 0) (-0.001602370885 0.07733815316 0) (-0.0009724466175 0.07722635264 0) (-0.001045090819 0.0772260042 0) (-0.00111386838 0.07722815126 0) (-0.001089695618 0.07728390697 0) (-0.0008878553531 0.07750454523 0) (-0.0008147438755 0.07750504734 0) (-0.000813760644 0.07757560878 0) (-0.000812088457 0.07764566941 0) (-0.001311331507 0.07846078007 0) (-0.0008113638906 0.07778642163 0) (-0.0008089757748 0.07785611188 0) (-0.0008787774561 0.07785903622 0) (-0.0008988758334 0.0778025878 0) (-0.0008053479263 0.07792544139 0) (-0.000858428513 0.0779162536 0) (-0.0008112407434 0.07771587909 0) (-0.0008241017891 0.07801407735 0) (-0.001344470007 0.0780485082 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.836761166e-05 0.0003832507187 1.346145417e-15) (-2.309994246e-06 4.293279689e-05 1.526556659e-16) (-6.294211777e-05 0.00116355869 4.121702979e-15) (0 0 0) (0 0 0) (-4.099507881e-05 0.000975031267 3.441691376e-15) (-8.053245338e-05 0.003301035895 1.16157084e-14) (-7.635730253e-05 0.002521783061 8.881784197e-15) (-0.0001897981294 0.006240048908 2.209343819e-14) (0 0 0) (0 0 0) (-7.371668575e-05 0.003981587877 1.401656569e-14) (-4.360417811e-06 0.004964963208 1.748601264e-14) (-3.274045532e-05 0.004846712118 1.7069679e-14) (-6.593550982e-05 0.009764566907 3.458344722e-14) (0 0 0) (-5.534457358e-07 8.237322576e-05 2.91433544e-16) (2.424095269e-05 0.00485194766 1.708355679e-14) (7.50182588e-05 0.003318004353 1.168509733e-14) (6.688676631e-05 0.00399571819 1.407207684e-14) (0.0001436582942 0.008516382503 3.015643291e-14) (0 0 0) (1.532252076e-07 9.270425389e-06 4.163336342e-17) (7.233951445e-05 0.002540211717 8.937295348e-15) (1.816880522e-05 0.000394236166 1.387778781e-15) (3.98385737e-05 0.0009906345868 3.48332474e-15) (0.000144608479 0.003574384653 1.265654248e-14) (0 0 0) (0 0 0) (2.444848496e-06 4.70537186e-05 1.665334537e-16) (0 0 0) (0 0 0) (9.049629496e-07 1.412697913e-05 5.551115123e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002683595604 0.003675353004 1.323940957e-14) (-0.0001319274826 0.001669099637 6.009082121e-15) (-0.0003207264021 0.004035786582 1.461331056e-14) (0 0 0) (-0.0004194766101 0.006262121029 2.255140519e-14) (-0.0007774728497 0.01590489191 5.72597525e-14) (-0.0006884749188 0.01253633197 4.513056595e-14) (-0.00101527904 0.01839719498 6.661338148e-14) (-0.0002023892823 0.003722101401 1.325328736e-14) (-0.0008237396022 0.01922475738 6.922240559e-14) (-0.0006852685711 0.02768020441 9.965639425e-14) (-0.0007763133193 0.02521804028 9.078848784e-14) (-0.001029114598 0.03330127435 1.205702205e-13) (-0.0003486564959 0.01141494785 4.06341627e-14) (-0.0005558429737 0.02967139499 1.068312105e-13) (-2.231688698e-05 0.03234751317 1.164623953e-13) (-0.0002146451215 0.032037643 1.153521723e-13) (-0.0002737436315 0.04098527935 1.48395185e-13) (-0.0001086136909 0.0161146215 5.73707748e-14) (0.000170362022 0.03205375102 1.154076834e-13) (0.0006464336448 0.02774094236 9.989231664e-14) (0.0005144502317 0.02971837109 1.06997744e-13) (0.0006705716347 0.03839416225 1.390276783e-13) (0.00024629598 0.01448053138 5.155598171e-14) (0.0007407639176 0.02529069129 9.106604359e-14) (0.0007556154376 0.01599603833 5.75928194e-14) (0.0007967979503 0.01931311273 6.95415947e-14) (0.001100116939 0.02648426685 9.589551375e-14) (0.0003102115576 0.007619466842 2.713107516e-14) (0.0006719603166 0.01262665819 4.546363286e-14) (0.00026596277 0.003737093786 1.344757639e-14) (0.0004131123441 0.006337865713 2.281508316e-14) (0.0006952484676 0.01060155251 3.838596108e-14) (5.728798839e-05 0.0008893023665 3.16413562e-15) (0.0001321809429 0.001713083378 6.161737787e-15) (0 0 0) (0 0 0) (3.738358713e-05 0.0004169014106 1.512678871e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002939939267 0.002960675514 1.090794122e-14) (-8.753173429e-05 0.000829896676 3.053113318e-15) (-0.0002169508926 0.002043390152 7.577272143e-15) (0 0 0) (-0.0005817333652 0.006246691451 2.300937219e-14) (-0.001576017875 0.02113280326 7.782663403e-14) (-0.001255467757 0.01554489552 5.72597525e-14) (-0.001646161932 0.02027184055 7.509270983e-14) (-0.0005792391206 0.007249603728 2.639555241e-14) (-0.001849728826 0.02704757538 9.961476088e-14) (-0.002225702996 0.04466970426 1.645072967e-13) (-0.002184836411 0.03900715884 1.436489816e-13) (-0.00259483155 0.04608906519 1.707106678e-13) (-0.001382210571 0.02492419103 9.074685448e-14) (-0.002178089727 0.04990565046 1.837835439e-13) (-0.001558358442 0.06202197354 2.284006317e-13) (-0.001835576971 0.05865636611 2.160077672e-13) (-0.00209057606 0.06648726376 2.462613446e-13) (-0.001296047751 0.04177302745 1.521005544e-13) (-0.001226096402 0.06465615153 2.381150832e-13) (-3.443936201e-05 0.06807131839 2.507022367e-13) (-0.0004503295652 0.06768379603 2.492728246e-13) (-0.000502734218 0.07542431089 2.793737464e-13) (-0.0003340459957 0.05013808018 1.825622986e-13) (0.0003816216145 0.06770559276 2.493699691e-13) (0.001492774984 0.06210952421 2.287892098e-13) (0.001158960821 0.0647219156 2.38392639e-13) (0.001308309782 0.07253054493 2.686878497e-13) (0.0008340592423 0.0473406067 1.723898801e-13) (0.00177221654 0.0587655064 2.164657342e-13) (0.002174359842 0.04483247053 1.651595527e-13) (0.002121748723 0.05005350908 1.843802888e-13) (0.002461798966 0.05769160223 2.137456878e-13) (0.001429618337 0.03418253134 1.244837566e-13) (0.002139557092 0.03918150127 1.443289932e-13) (0.001551709195 0.02126939668 7.835398996e-14) (0.001819029218 0.02722339686 1.002808947e-13) (0.002240227457 0.0332952097 1.233596558e-13) (0.001032205592 0.01564274579 5.696831895e-14) (0.001234860245 0.01560308285 5.74817971e-14) (0.0003371972661 0.003445742147 1.268429806e-14) (0.0006214252528 0.006780634803 2.498001805e-14) (0.0009354265576 0.01013113954 3.755329381e-14) (0.0001524254393 0.001689444688 6.147859999e-15) (0.0001206435671 0.001159996444 4.274358645e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001715967041 0.001417552818 5.356826094e-15) (-1.054754888e-05 8.282872139e-05 3.053113318e-16) (-0.001436582342 0.01406788013 5.305478279e-14) (-0.0009310743748 0.008586040098 3.237687896e-14) (-0.001205148933 0.01104686354 4.191091918e-14) (-0.000434601227 0.004060420454 1.512678871e-14) (-0.001964239364 0.02050679983 7.732703367e-14) (-0.00324573258 0.04243671554 1.599553823e-13) (-0.002921663938 0.03519710552 1.32699407e-13) (-0.003341736971 0.03995564956 1.515454429e-13) (-0.002052871477 0.02513715812 9.364731213e-14) (-0.003530200807 0.05039512434 1.899591595e-13) (-0.003631027008 0.0712512688 2.685351941e-13) (-0.003724034914 0.06499830612 2.449707104e-13) (-0.004073690951 0.0704393148 2.670502708e-13) (-0.002994586211 0.05290796819 1.970923424e-13) (-0.003421081209 0.07664929318 2.88880031e-13) (-0.002243463537 0.08740458644 3.294170492e-13) (-0.002708549184 0.0847068 3.192446307e-13) (-0.002851777937 0.08850263081 3.355232758e-13) (-0.00232515333 0.07356876243 2.740585536e-13) (-0.001730115904 0.08932687493 3.366751322e-13) (-4.499471252e-05 0.09152308928 3.449879271e-13) (-0.0006191145157 0.0912936448 3.441136265e-13) (-0.0006403305964 0.09351860674 3.545774785e-13) (-0.0005492144263 0.08208968142 3.058248099e-13) (0.0005292363474 0.09130430464 3.441691376e-13) (0.002161783915 0.08743562003 3.296390938e-13) (0.001643018472 0.08936107623 3.36883299e-13) (0.001709184655 0.0922054925 3.496508638e-13) (0.001441472521 0.07938191365 2.957911693e-13) (0.002633013251 0.0847187062 3.194111642e-13) (0.00359120027 0.07182828587 2.708389069e-13) (0.003370429377 0.07714936637 2.908923102e-13) (0.003596351997 0.081711519 3.099326351e-13) (0.002784572807 0.06479157767 2.414457523e-13) (0.003698215815 0.06558173503 2.473160565e-13) (0.00333022497 0.04415485235 1.665612093e-13) (0.003571856176 0.05164449789 1.948163852e-13) (0.00397201401 0.05703888932 2.164518564e-13) (0.002660608484 0.03919472748 1.460775945e-13) (0.002979326034 0.0364858299 1.376260217e-13) (0.001517927398 0.01512462371 5.705158568e-14) (0.002041875809 0.02169350989 8.182343691e-14) (0.002421263697 0.02556228286 9.700573678e-14) (0.001286162813 0.01383896585 5.159761507e-14) (0.001009094756 0.009465719762 3.570754803e-14) (2.543695334e-05 0.0002028650388 7.771561172e-16) (0.0002169082634 0.001820976784 6.869504965e-15) (0.0003598014868 0.003001968775 1.139366379e-14) (2.571894853e-05 0.0002185581702 8.187894807e-16) (-0.0007168713569 0.005779236563 2.232936058e-14) (-0.00028725711 0.002201281872 8.507083926e-15) (-0.002677245882 0.02558544008 9.880984919e-14) (-0.001992536756 0.01793297353 6.926403895e-14) (-0.00217457857 0.01944902997 7.55784324e-14) (-0.001480507564 0.01348915212 5.148659277e-14) (-0.003334966089 0.03397224274 1.312006059e-13) (-0.00473703943 0.06014379721 2.322586568e-13) (-0.00439710542 0.05159239266 1.992295218e-13) (-0.004662678841 0.05435978173 2.111921749e-13) (-0.003731767853 0.04433663838 1.691702334e-13) (-0.004923498369 0.0680974288 2.629563234e-13) (-0.004558401438 0.0862145327 3.328587406e-13) (-0.00481966978 0.08118259406 3.134575932e-13) (-0.004985881116 0.08338033661 3.239075674e-13) (-0.004384168135 0.07505244564 2.862710069e-13) (-0.004159122481 0.08971034607 3.463340725e-13) (-0.002483501973 0.09295324893 0) (-0.003090196683 0.09284581355 3.583799923e-13) (-0.003115100609 0.09237505483 0) (-0.00296461651 0.09105688468 3.472638843e-13) (-0.00187499676 0.09295516558 0) (-6.280478337e-05 0.09267103824 0) (-0.0003622134604 0.0926728629 0) (-0.0006512664629 0.09405274934 3.587130593e-13) (0.0002382928305 0.09266911112 0) (0.002380861759 0.09292137803 0) (0.001770764999 0.092931749 0) (0.001782632762 0.09236705025 0) (0.00175171025 0.0936112028 3.571032359e-13) (0.002990023706 0.09284566749 3.585465258e-13) (0.00448148853 0.08658569695 3.345240751e-13) (0.004071570243 0.08983684563 3.470557175e-13) (0.003788170885 0.08523861303 3.252537129e-13) (0.004772435885 0.08204669217 3.169964291e-13) (0.004764144505 0.06158490694 2.379485498e-13) (0.004923578599 0.06938033864 2.680633493e-13) (0.005148042192 0.07209404125 2.802619248e-13) (0.004333319437 0.0618296454 2.36033415e-13) (0.004450557668 0.05313966797 2.053218706e-13) (0.002731921595 0.02653413752 1.025290963e-13) (0.003431572814 0.03554121364 1.373207104e-13) (0.003687011484 0.03793610545 1.47479251e-13) (0.002785860046 0.02922678539 1.115635362e-13) (0.002081628728 0.0190343477 7.353839759e-14) (0.0003931744071 0.003057773398 1.180999742e-14) (0.0008602621142 0.007041442448 2.72004641e-14) (0.001056845601 0.008596449273 3.341771304e-14) (0.0005191102464 0.004303675709 1.643130076e-14) (-0.001267476533 0.009963927105 3.944067295e-14) (-0.0006640286022 0.004962223352 1.965094754e-14) (-0.003495253892 0.03255734696 1.288691376e-13) (-0.002741863724 0.02405670453 9.522937994e-14) (-0.002842825492 0.02478166702 9.871270468e-14) (-0.002402898042 0.0213569146 8.348877145e-14) (-0.004187363906 0.04156617293 1.645211745e-13) (-0.005494738654 0.06791791946 2.687849943e-13) (-0.005217094686 0.05961584341 2.359501483e-13) (-0.00532834525 0.06048244015 2.40876763e-13) (-0.004833784489 0.05598541168 2.188527137e-13) (-0.0055931518 0.07528399922 2.979283487e-13) (-0.00485975369 0.08919004542 3.529537773e-13) (-0.005259700403 0.08611839101 3.407829574e-13) (-0.005314586147 0.08638328246 3.440026042e-13) (-0.005110277942 0.08486476439 3.317068842e-13) (-0.004340411396 0.09060038856 3.58532648e-13) (-0.002855360538 0.09037484495 0) (-0.003132840245 0.09179859874 0) (-0.00254375632 0.09123254939 0) (-0.002242560474 0.09123642849 0) (-0.002236848184 0.09152114681 0) (-0.002537064041 0.09151933276 0) (-0.001302908942 0.0915501162 0) (-0.001613930653 0.09154401039 0) (-0.00163361387 0.09124993508 0) (-0.001281650038 0.09239407503 0) (-0.001588616171 0.09239239649 0) (-0.001592614154 0.09211218866 0) (-0.00129113399 0.09211220511 0) (0.0002630758357 0.09127031336 0) (0.0002515679795 0.09155212446 0) (-6.646299201e-05 0.09155499805 0) (0.001186889874 0.09153121844 0) (0.0008770075751 0.09153958968 0) (0.001167803586 0.09237915003 0) (0.0008620519431 0.09238344543 0) (0.0008636666306 0.09210350134 0) (0.001171844074 0.09209806686 0) (0.002716884561 0.0911962817 0) (0.002716305384 0.09147959265 0) (0.002414965348 0.09148763383 0) (0.003612336254 0.09118608343 0) (0.003612754352 0.09175010637 0) (0.003015616445 0.09147485605 0) (0.003015381428 0.09119286826 0) (0.003604895579 0.09215438553 3.581579477e-13) (0.005194547747 0.08711355119 3.449879271e-13) (0.005590614777 0.07045356089 2.790406795e-13) (0.005630345733 0.07735696946 3.063799214e-13) (0.005731744876 0.0782958267 3.120281811e-13) (0.005325800916 0.07410253371 2.898514762e-13) (0.005371470867 0.06252010908 2.476213679e-13) (0.003779772714 0.03579390754 1.417477247e-13) (0.004440232132 0.04483313251 1.775524172e-13) (0.004588112311 0.04604866886 1.835059882e-13) (0.00398719495 0.04076336216 1.594557819e-13) (0.003041528166 0.02711869733 1.073863221e-13) (0.0008829969299 0.006697121175 2.65204525e-14) (0.001535878778 0.01225960911 4.854450175e-14) (0.001636719996 0.01298275233 5.172251516e-14) (0.001240251945 0.01002521782 3.921862834e-14) (-0.001503555215 0.01152032738 4.676814491e-14) (-0.0008426897322 0.006137989577 2.49245069e-14) (-0.003826060968 0.03472722773 1.409566908e-13) (-0.003055130158 0.0261226052 1.060401766e-13) (-0.003115349211 0.0264663733 1.081357226e-13) (-0.00289404177 0.02506495027 1.004751837e-13) (-0.00452143269 0.04372838248 1.774969061e-13) (-0.005761414248 0.06934047691 2.814137812e-13) (-0.005517640852 0.06140646612 2.492311912e-13) (-0.005565409357 0.06152852079 2.513267372e-13) (-0.005386112001 0.06074040857 2.434163981e-13) (-0.005817516293 0.07621729743 3.093358902e-13) (-0.005384280725 0.08570667837 3.478606292e-13) (-0.005399052505 0.08534866615 3.486377853e-13) (-0.00534208802 0.08622480902 3.455430386e-13) (-0.004922605435 0.08839853498 3.565203688e-13) (-0.004357838727 0.08895556162 0) (-0.003762310474 0.08895232691 0) (-0.003760259659 0.08923636646 0) (-0.003758183764 0.0895202465 0) (-0.003753334023 0.09008888325 0) (-0.003756031059 0.08980388834 0) (-0.002567884696 0.08951379117 0) (-0.002270443823 0.0895126742 0) (-0.001972959198 0.08951225701 0) (-0.001971490163 0.08965520904 0) (-0.001969529488 0.08979944567 0) (-0.001965933164 0.09008614777 0) (0.002714203852 0.08891978761 0) (0.002715289654 0.0892040555 0) (0.003606551009 0.08891219437 0) (0.003608126314 0.08919541941 0) (0.003310346638 0.08919865576 0) (0.003309029435 0.08891495362 0) (0.003611454773 0.09004710342 0) (0.003313467366 0.09005052999 0) (0.003312923703 0.08976527939 0) (0.003610807793 0.08976203191 0) (0.005311385436 0.08705015772 3.535782778e-13) (0.005949849773 0.07322793514 2.974565039e-13) (0.005912949408 0.07936243372 3.223810108e-13) (0.005928929168 0.07911956475 3.234496004e-13) (0.005791160147 0.07864912678 3.154143613e-13) (0.005797175152 0.06587968205 2.676053823e-13) (0.004304855424 0.03977621787 1.615513279e-13) (0.004952268166 0.04879852959 1.982025655e-13) (0.004982686505 0.04880142908 1.995070775e-13) (0.004678984221 0.04667688636 1.87183602e-13) (0.00355619303 0.03093129399 1.256217352e-13) (0.001224011691 0.009053072794 3.67622599e-14) (0.001957713638 0.01523998234 6.189493362e-14) (0.001981760705 0.0153311129 6.265821195e-14) (0.001781861902 0.01404494349 5.631606292e-14) (-0.001652672718 0.01234059014 5.141720383e-14) (-0.0009621180818 0.006829875301 2.844946501e-14) (-0.004007727515 0.03543789347 1.476041511e-13) (-0.003235145309 0.02695227101 1.122713034e-13) (-0.0032712326 0.02707381862 1.135203043e-13) (-0.003160567068 0.02667713486 1.096900348e-13) (-0.004696600062 0.0442434202 1.842831443e-13) (-0.005881267447 0.06890024765 2.869510185e-13) (-0.005660331316 0.06133371268 2.554345624e-13) (-0.005688727003 0.06122559461 2.566558077e-13) (-0.005601284315 0.06151392127 2.528810494e-13) (-0.005912387025 0.07538038401 3.13929438e-13) (-0.005429399018 0.08405559601 3.500810752e-13) (-0.00543835126 0.08360601461 3.504835311e-13) (-0.005410435615 0.08493739923 3.491928968e-13) (-0.004949106114 0.08641442734 3.575889584e-13) (-0.004370031752 0.08670045413 0) (-0.003774781186 0.08669669749 0) (-0.003773348749 0.08697804532 0) (-0.003771903081 0.08725941918 0) (-0.003768889256 0.08782292363 0) (-0.003770416697 0.08754102787 0) (-0.002582720613 0.08725197982 0) (-0.002285767765 0.08725013201 0) (-0.001988971811 0.08724825911 0) (-0.001988117009 0.08738915415 0) (-0.001987262549 0.08752999696 0) (-0.001985526569 0.08781182605 0) (-0.001986394516 0.08767091803 0) (0.002700002345 0.086651123 0) (0.00270219116 0.08693429441 0) (0.002405343648 0.08693627213 0) (0.003591028797 0.08664529115 0) (0.003593347447 0.08692834416 0) (0.003296225668 0.08693032368 0) (0.003293945943 0.08664723123 0) (0.003599629039 0.087778239 0) (0.003302377766 0.08778038916 0) (0.003300435817 0.08749702023 0) (0.003597648336 0.08749493563 0) (0.005309823026 0.08509255399 3.547162564e-13) (0.006001431587 0.07214108545 3.007316618e-13) (0.005946607834 0.0779820543 3.250871794e-13) (0.00592103463 0.07719715191 3.23935323e-13) (0.005951849272 0.07896382212 3.249067682e-13) (0.005865440718 0.06508040837 2.712968739e-13) (0.004405202753 0.0397088431 1.655203752e-13) (0.005045936329 0.04851889268 2.022548795e-13) (0.004995379443 0.0477377109 2.002981114e-13) (0.005042320083 0.04908355321 2.019495682e-13) (0.003658621608 0.03103857512 1.293687379e-13) (0.001299867447 0.009373281281 3.906597268e-14) (0.002047890481 0.01554447001 6.478151349e-14) (0.002000057551 0.01508500012 6.32827124e-14) (0.002041279286 0.01569212188 6.454559109e-14) (-0.001796882584 0.01306714789 5.589972929e-14) (-0.001079954788 0.007466747411 3.194666753e-14) (-0.004178703898 0.03597242385 1.538491556e-13) (-0.003405714269 0.0276267861 1.181693632e-13) (-0.003450085497 0.0277973265 1.196959198e-13) (-0.003315217541 0.02725629709 1.150468609e-13) (-0.004860463071 0.04456860634 1.906114155e-13) (-0.005991200829 0.06827874374 2.919886555e-13) (-0.005792217344 0.06106869693 2.61152211e-13) (-0.005825949645 0.06099817045 2.626093787e-13) (-0.005722822327 0.06117424772 2.58140731e-13) (-0.005998481099 0.07438062765 3.180788966e-13) (-0.005468325293 0.08229685517 3.519406988e-13) (-0.005477719714 0.08184885046 3.52384788e-13) (-0.005448469209 0.08317293364 3.509831314e-13) (-0.004968032851 0.0843155815 3.581857033e-13) (-0.004380681178 0.08445171679 0) (-0.003785626346 0.08444798755 0) (-0.003784312475 0.08472917942 0) (-0.003782985971 0.08501030591 0) (-0.003780308888 0.08557224525 0) (-0.003781660063 0.08529134097 0) (-0.002594769283 0.08500297734 0) (-0.002298221049 0.08500117136 0) (-0.002297473032 0.08514171446 0) (-0.002149264217 0.08514081189 0) (-0.002150038268 0.08500028203 0) (-0.002146930963 0.08556210102 0) (-0.002147703565 0.08542179318 0) (0.002679028433 0.08438940528 0) (0.002681810431 0.0846714104 0) (0.003569187008 0.08438467621 0) (0.003572034052 0.08466664172 0) (0.003275157604 0.08466818862 0) (0.003272323706 0.08438623609 0) (0.003580700062 0.08551366066 0) (0.003283746276 0.0855153648 0) (0.003280988095 0.08523300689 0) (0.003577915932 0.08523132904 0) (0.005245836672 0.08221419475 3.519406988e-13) (0.005821150864 0.068330719 2.925160114e-13) (0.005805377811 0.07437366256 3.183842079e-13) (0.005746740122 0.07318866545 3.154282391e-13) (0.005898816624 0.07646016552 3.229638779e-13) (0.005649049715 0.06118434005 2.619154893e-13) (0.004121912496 0.03623470716 1.550981565e-13) (0.004775529219 0.04479256545 1.917355164e-13) (0.004666486971 0.04349518583 1.874334021e-13) (0.004965526664 0.04715873693 1.991878884e-13) (0.003373989302 0.02790772211 1.194461197e-13) (0.001093907152 0.00768702801 3.28903571e-14) (0.001801756924 0.01332942491 5.703770789e-14) (0.001706680823 0.01254400405 5.405398351e-14) (0.001979407433 0.01483395074 6.263045638e-14) (-0.001981329569 0.01402119456 6.163125565e-14) (-0.001234579685 0.008307028579 3.651245972e-14) (-0.00438535317 0.03672275338 1.613847944e-13) (-0.00361562208 0.02853465009 1.254135684e-13) (-0.00364593633 0.02857336267 1.264544025e-13) (-0.003496690982 0.02798074288 1.213057432e-13) (-0.005054788012 0.04507999275 1.98105421e-13) (-0.00611223253 0.06770963579 2.97512015e-13) (-0.005941715149 0.06090480608 2.676192601e-13) (-0.005971615321 0.06077372697 2.688960166e-13) (-0.005861067796 0.06093689722 2.641220576e-13) (-0.006089835059 0.07338647568 3.224642775e-13) (-0.005504667162 0.08048014438 3.536476667e-13) (-0.005515214956 0.08004265078 3.541611449e-13) (-0.005487177526 0.08140077016 3.528288772e-13) (-0.004983800048 0.08216705454 3.586159147e-13) (-0.004390381637 0.08220229409 0) (-0.003795287709 0.08219855154 0) (-0.003794157109 0.0824796793 0) (-0.003792999962 0.08276087219 0) (-0.003790620793 0.08332319225 0) (-0.00379181678 0.08304205185 0) (-0.002605736335 0.0827536021 0) (-0.002309710343 0.08275182565 0) (-0.002309040347 0.0828924215 0) (-0.002161157869 0.08289154719 0) (-0.002161840925 0.08275095142 0) (-0.002159031107 0.08331321642 0) (-0.002159739942 0.08317267307 0) (0.0026524767 0.0821355605 0) (0.002656196738 0.08241720685 0) (0.003542407269 0.08213191697 0) (0.003545942416 0.08241325107 0) (0.003249181805 0.082414536 0) (0.00324546262 0.08213302026 0) (0.003556475038 0.08325810278 0) (0.00325970239 0.08325954452 0) (0.003256335066 0.08297790893 0) (0.003553147491 0.08297655836 0) (0.005107705331 0.0782809798 3.443356711e-13) (0.005461413239 0.06257509557 2.752659212e-13) (0.005518310943 0.06904144389 3.037015084e-13) (0.005395602902 0.06710389931 2.972344593e-13) (0.005658569174 0.07164301966 3.108624469e-13) (0.005223820915 0.0551987577 2.428057755e-13) (0.003590174148 0.03075913243 1.352806756e-13) (0.004260332346 0.0389579894 1.713490461e-13) (0.004120144932 0.03743338061 1.657840532e-13) (0.004563944046 0.04227148335 1.834088437e-13) (0.002849709094 0.02296750281 1.010025397e-13) (0.0007475901977 0.005116340216 2.249589404e-14) (0.001370069787 0.009872703554 4.340972026e-14) (0.00128124841 0.009171181509 4.060640713e-14) (0.001636236216 0.01194771488 5.181965967e-14) (-0.002203805243 0.01516329219 6.852851619e-14) (-0.00142382966 0.009315749011 4.210520821e-14) (-0.004631724362 0.03769462051 1.703359676e-13) (-0.003866092592 0.02965779489 1.340316746e-13) (-0.003832999974 0.02919300545 1.328798183e-13) (-0.003703071964 0.02881693733 1.284250484e-13) (-0.005286641407 0.04581286963 2.070149607e-13) (-0.006257495127 0.06731599461 3.041594754e-13) (-0.006120844168 0.06094043653 2.753630657e-13) (-0.006150650223 0.06078417823 2.766120666e-13) (-0.00601306974 0.06075393401 2.706862512e-13) (-0.006199276874 0.07253281468 3.277378369e-13) (-0.005545286803 0.07869117098 3.555766792e-13) (-0.005554714726 0.07822535946 3.559930128e-13) (-0.005524950563 0.07959104107 3.546329896e-13) (-0.00499588837 0.07995753286 0) (-0.004399514276 0.07995382113 0) (-0.004398331776 0.08023489631 0) (-0.003803884619 0.07995011426 0) (-0.003802806431 0.08023121624 0) (-0.004100451561 0.08023305551 0) (-0.004101581905 0.07995196692 0) (-0.003799637936 0.08107440507 0) (-0.004099361165 0.0805140268 0) (-0.003801755387 0.08051216167 0) (-0.003800703149 0.08079328994 0) (-0.00261477832 0.08050501099 0) (-0.002319314006 0.08050322515 0) (-0.002318774528 0.08064383491 0) (-0.002171296664 0.08064300243 0) (-0.002171849287 0.08050237969 0) (-0.002169535334 0.08106471323 0) (-0.002170126286 0.08092422136 0) (0.002618436005 0.07988693674 0) (0.002623313293 0.08016779188 0) (0.003508629315 0.07988352659 0) (0.003518004545 0.08044514792 0) (0.002924404194 0.08044760075 0) (0.002919695837 0.0801666139 0) (0.002914844925 0.07988579777 0) (0.003526690564 0.08100723087 0) (0.002933168745 0.08100970932 0) (0.002928746606 0.08072855081 0) (0.004868991859 0.07295983453 3.300276719e-13) (0.004901124587 0.05477779636 2.477879013e-13) (0.00506407084 0.06184948966 2.797762022e-13) (0.004952312295 0.06011612812 2.738642646e-13) (0.005318645763 0.06575064862 2.93265412e-13) (0.004625138944 0.04765059201 2.155359224e-13) (0.002904326813 0.02423398978 1.096067681e-13) (0.003575923159 0.03185573103 1.44079193e-13) (0.003357648376 0.02971215513 1.353361867e-13) (0.00391641405 0.03535145397 1.576655473e-13) (0.002195192457 0.01722769881 7.790990075e-14) (0.0003848341168 0.002563261123 1.158795282e-14) (0.0008775427234 0.006155165811 2.783884234e-14) (0.0007257717738 0.005055789069 2.302324997e-14) (0.001102277943 0.007837222015 3.49442697e-14) (-0.002481509808 0.01661428056 7.729927809e-14) (-0.001665190072 0.01060177042 4.932165787e-14) (-0.004926546208 0.03900904504 1.814381978e-13) (-0.004169814266 0.03112379307 1.447730824e-13) (-0.004204716537 0.0312736283 1.465216837e-13) (-0.00399376476 0.03019479185 1.384170556e-13) (-0.005560030021 0.04687576833 2.180200465e-13) (-0.006414777001 0.06713440512 3.122224701e-13) (-0.006322849917 0.0612414796 2.84827717e-13) (-0.006321368758 0.06107526134 2.861044734e-13) (-0.006182723527 0.06064430098 2.77958212e-13) (-0.006309476838 0.07182298567 3.340383525e-13) (-0.005564570905 0.07685823735 3.574918139e-13) (-0.00552790531 0.07633440686 3.57616714e-13) (-0.005564625411 0.07776172081 3.564371021e-13) (-0.005007815052 0.07770721044 0) (-0.004410672628 0.07770515242 0) (-0.004409005276 0.07798647259 0) (-0.00381423272 0.07770151862 0) (-0.003812631096 0.07798277392 0) (-0.004110720191 0.07798462914 0) (-0.004112360996 0.0777033741 0) (-0.003808497673 0.07882572135 0) (-0.004106416984 0.07882757547 0) (-0.004107768757 0.07854657976 0) (-0.003809784144 0.07854472522 0) (-0.002622617988 0.07825652958 0) (-0.002474774435 0.07825569471 0) (-0.002474235981 0.07839614775 0) (-0.002622053328 0.07839699551 0) (-0.002179475729 0.07839454936 0) (-0.002180014099 0.07825410938 0) (-0.002177910646 0.0788162092 0) (-0.002178395836 0.07867591255 0) (7.139931794e-05 0.07821004584 0) (7.615471175e-05 0.07834963545 0) (0.0005090962518 0.07821102739 0) (0.0005137238252 0.07835064395 0) (0.0003673965366 0.07835046323 0) (0.0003629278725 0.07821078033 0) (0.0003760272618 0.0786300792 0) (0.0005221195502 0.07863027451 0) (0.002851716417 0.07708498075 0) (0.004261869644 0.07052709812 3.282929484e-13) (0.003901067656 0.07418952415 3.453348718e-13) (0.00385075564 0.0728403774 3.415462357e-13) (0.003992070953 0.07662189307 3.515521207e-13) (0.004495054742 0.06588266987 3.066852328e-13) (0.004244659858 0.04625284867 2.153000001e-13) (0.004494077867 0.05354034823 2.49245069e-13) (0.004298006805 0.05088381446 2.386008058e-13) (0.004796667352 0.05786831902 2.655098363e-13) (0.003846731063 0.03861642839 1.797451077e-13) (0.002061309191 0.01673978918 7.790990075e-14) (0.002713655812 0.02353153302 1.095235014e-13) (0.002537164066 0.0218523849 1.024458296e-13) (0.003182670524 0.02797491614 1.283417816e-13) (0.001415490637 0.01080894565 5.03069808e-14) (0.0001092379435 0.000707721882 3.302913498e-15) (0.0004225406811 0.002882680522 1.341982081e-14) (0.0002994425244 0.002028613475 9.506284648e-15) (0.0006388827041 0.004419865329 2.027544799e-14) (-0.002184184657 0.0142454895 6.825096044e-14) (-0.001424051503 0.00883105799 4.232725281e-14) (-0.004528804734 0.03494405353 1.674077543e-13) (-0.003792123146 0.02757880986 1.321304177e-13) (-0.003544652298 0.02558644251 1.235261893e-13) (-0.004125600821 0.03045684416 1.437600039e-13) (-0.00515748765 0.04237693065 2.030181578e-13) (-0.006092755673 0.06217484507 2.978173264e-13) (-0.005958474762 0.05626243114 2.695066392e-13) (-0.005726865717 0.05366593207 2.590150316e-13) (-0.006254631471 0.05996894155 2.830097268e-13) (-0.006043862865 0.0671013034 3.214234434e-13) (-0.005446236166 0.07342095878 3.517186542e-13) (-0.005362211808 0.07171490419 3.461397835e-13) (-0.005519447396 0.07561014435 3.568395579e-13) (-0.004954624127 0.07545085853 3.587685704e-13) (-0.004356228672 0.0754501126 0) (-0.003757635519 0.07544620353 0) (-0.003755799236 0.07572739199 0) (-0.003753962953 0.07600858044 0) (-0.00405326606 0.07601053502 0) (-0.00375029124 0.07657082676 0) (-0.004049594346 0.07657278134 0) (-0.004051430629 0.07629159288 0) (-0.003752127523 0.0762896383 0) (-0.002556763587 0.07600076221 0) (-0.002257473541 0.07599880772 0) (-0.002256555825 0.07613933664 0) (-0.001958170434 0.07599685314 0) (-0.001957252719 0.07613738206 0) (-0.002106897742 0.07613835931 0) (-0.002107815457 0.07599783038 0) (-0.002104143744 0.0765600767 0) (-0.002105061459 0.07641954777 0) (-0.001955416436 0.07641857052 0) (0.0001332487075 0.07542079436 0) (0.0001350849906 0.07570198282 0) (0.001031144967 0.07541493071 0) (0.00103298125 0.07569611917 0) (0.0007336820616 0.07569807372 0) (0.0007318457785 0.07541688526 0) (0.0007373537747 0.07626032003 0) (0.001036652963 0.07625836548 0) (0.002777051062 0.07358154489 3.527456105e-13) (0.003883665071 0.06274738022 3.008288063e-13) (0.00363570519 0.06754542298 3.238381785e-13) (0.003534447398 0.06519201634 3.149147609e-13) (0.003775036677 0.07111242576 3.358840983e-13) (0.003984683566 0.05694467141 2.730177195e-13) (0.003373314175 0.03578585934 1.715572129e-13) (0.003722123762 0.04319820076 2.071121052e-13) (0.003537858407 0.04075036417 1.968425423e-13) (0.004144176115 0.0487623141 2.303296442e-13) (0.002969067908 0.02900782749 1.390554338e-13) (0.001316888601 0.01040262168 4.986289159e-14) (0.001887236508 0.01592291882 7.632783294e-14) (0.001613960133 0.0135126065 6.526723606e-14) (0.002281706825 0.019517624 9.217626662e-14) (0.0007871774078 0.005843164279 2.80053758e-14) (0 0 0) (8.329352977e-05 0.0005524481125 2.650657471e-15) (3.887805833e-05 0.0002560298735 1.235123115e-15) (0.0002257934765 0.001518948963 7.174816297e-15) (-0.001234393394 0.007811647616 3.859412789e-14) (-0.0006778706142 0.00407850758 2.01505479e-14) (-0.003211090028 0.02404378932 1.187661081e-13) (-0.002551447542 0.01800650662 8.895661985e-14) (-0.002166601349 0.01517557347 7.555067683e-14) (-0.003250237711 0.02328578192 1.132705041e-13) (-0.003811928004 0.03039453522 1.501299085e-13) (-0.004948281411 0.0489892815 2.419592304e-13) (-0.004702779279 0.04308683982 2.12815876e-13) (-0.004263587183 0.03877443367 1.930122728e-13) (-0.005439054771 0.05058479548 2.460254223e-13) (-0.005046919594 0.05434953407 2.684241718e-13) (-0.004515951729 0.06607222254 3.263500581e-13) (-0.004817767778 0.06295069846 3.10917958e-13) (-0.004525517644 0.05869244197 2.921551889e-13) (-0.00523374062 0.06944698892 3.377575997e-13) (-0.004115515027 0.06841930421 3.379518887e-13) (-0.002546298915 0.0717427385 3.54410945e-13) (-0.003109784553 0.07112756555 3.513578317e-13) (-0.003004744014 0.06818395248 3.394506898e-13) (-0.003170059211 0.07375529431 0) (-0.001963751683 0.0720461943 3.559375017e-13) (-0.0001812368336 0.07177686491 3.546607452e-13) (-0.0007763087579 0.0720591342 3.560346462e-13) (-0.0007573738904 0.06965328148 3.468336729e-13) (-0.0007719918312 0.07430203479 0) (-0.0007756643973 0.07373965787 0) (0.0004079132307 0.07119722137 3.518157987e-13) (0.002026996 0.06634525412 3.278766147e-13) (0.001527664975 0.06861039292 3.390621117e-13) (0.001458875536 0.06498640085 3.236577673e-13) (0.001607906824 0.07320402412 3.56242813e-13) (0.002459914532 0.06331345099 3.129163595e-13) (0.003166774341 0.04960721232 2.45192755e-13) (0.00304626183 0.05489117836 2.712968739e-13) (0.002820721097 0.05040081059 2.510491814e-13) (0.003403427477 0.06230756757 3.032574192e-13) (0.003159223866 0.04376465748 2.163130786e-13) (0.002407872409 0.02475818002 1.223604551e-13) (0.00276690937 0.0311238139 1.538214001e-13) (0.002452314218 0.02735877671 1.362659985e-13) (0.003314852132 0.03788769707 1.844080444e-13) (0.001972395581 0.01867712602 9.230116671e-14) (0.0005818910699 0.004456315891 2.202404925e-14) (0.001016173713 0.00831097751 4.106437412e-14) (0.0007993040449 0.006485346743 3.229361223e-14) (0.001431654348 0.01189426339 5.788425295e-14) (0.0002396539786 0.001725800589 8.520961714e-15) (0 0 0) (0 0 0) (0 0 0) (3.726315497e-06 2.435327389e-05 1.249000903e-16) (-0.0002599568872 0.001595043376 8.132383655e-15) (-4.964967416e-05 0.0002895689999 1.471045508e-15) (-0.001483379214 0.01077730305 5.494216193e-14) (-0.001018925274 0.006975614777 3.556877015e-14) (-0.0006865599618 0.004663981463 2.396693954e-14) (-0.001773681944 0.01232969555 6.186717805e-14) (-0.001951649591 0.01510319183 7.699396676e-14) (-0.003065313139 0.02947314538 1.502409308e-13) (-0.002767884961 0.0246238407 1.255245907e-13) (-0.002252585191 0.01989343076 1.02223785e-13) (-0.003787119008 0.03418839263 1.715294573e-13) (-0.003266746558 0.03417151713 1.741939926e-13) (-0.003247056551 0.04616004073 2.353117701e-13) (-0.003356326956 0.04260885727 2.17201257e-13) (-0.002899912092 0.0365641386 1.879052469e-13) (-0.004179733787 0.05381416632 2.69978484e-13) (-0.003044935414 0.04918715565 2.507438701e-13) (-0.002006362189 0.05494189628 2.800953913e-13) (-0.002410657396 0.0535787987 2.731426196e-13) (-0.002141141601 0.04730447256 2.431110868e-13) (-0.002849942893 0.0641932916 3.22103455e-13) (-0.001563106541 0.05576361357 2.84300361e-13) (-0.0001374628277 0.05505574151 2.807337696e-13) (-0.0006151584718 0.05581994744 2.846056724e-13) (-0.0005463538563 0.04958410307 2.548655731e-13) (-0.0007231124085 0.06604608991 3.31457084e-13) (0.0003246258934 0.05375214266 2.740863092e-13) (0.001475771802 0.04651950288 2.372407826e-13) (0.001145553305 0.04948456619 2.523536935e-13) (0.001013039698 0.04323143354 2.22238894e-13) (0.001371150468 0.06051801134 3.037708973e-13) (0.001734406293 0.04302702533 2.194355808e-13) (0.001984707046 0.03001590499 1.530858773e-13) (0.001994755364 0.03468489247 1.769001612e-13) (0.001689895159 0.02910195982 1.496164304e-13) (0.002566970856 0.04546668905 2.282479761e-13) (0.001881829164 0.02517978372 1.284250484e-13) (0.001131696144 0.01125397122 5.739853037e-14) (0.001437063078 0.01562729915 7.970013538e-14) (0.001107522811 0.01193881928 6.136757769e-14) (0.002119779069 0.0234511889 1.17725274e-13) (0.0008059656383 0.007384068747 3.765043832e-14) (5.238254372e-05 0.0003885446779 1.984523657e-15) (0.0002287569363 0.001811496348 9.24260668e-15) (0.0001007661974 0.0007914511921 4.066191828e-15) (0.0005887927162 0.0047390153 2.37865283e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001901632559 0.001339226462 7.049916206e-15) (-4.83859542e-05 0.0003209495583 1.693090113e-15) (0 0 0) (-0.0004044639955 0.002726197277 1.412758799e-14) (-0.0003944524013 0.002960321599 1.55986335e-14) (-0.001101489632 0.01028783729 5.41788836e-14) (-0.0008749638135 0.007556768695 3.980149543e-14) (-0.0005256916121 0.004505536547 2.392530618e-14) (-0.001754435718 0.01538059196 7.968625759e-14) (-0.001292750829 0.01314400298 6.922240559e-14) (-0.001541985596 0.02135576119 1.124794702e-13) (-0.001519575608 0.01877775027 9.889311592e-14) (-0.001106767997 0.01358379437 7.213674103e-14) (-0.002431612726 0.03045371138 1.577765696e-13) (-0.001502157393 0.02366414772 1.246364123e-13) (-0.00105751041 0.02839550604 1.495609192e-13) (-0.001252430509 0.02722766026 1.434130592e-13) (-0.0009658515675 0.02088975339 1.109390357e-13) (-0.001851103508 0.04066771079 2.107064523e-13) (-0.0008290660273 0.029116524 1.533634331e-13) (-5.967927902e-05 0.02850002828 1.501299085e-13) (-0.0003179454267 0.02916925748 1.536409888e-13) (-0.0002450905809 0.02261058318 1.200983757e-13) (-0.0004717112404 0.04290139748 2.223082829e-13) (0.0001841242252 0.02738202551 1.442457265e-13) (0.0007192302673 0.0216348022 1.139782713e-13) (0.0005832071901 0.02390722647 1.259409244e-13) (0.0004448603665 0.01798395275 9.552081348e-14) (0.0008722075953 0.03674386203 1.904171265e-13) (0.0008034905104 0.0190847313 1.005306949e-13) (0.0007291002889 0.01061397141 5.591360708e-14) (0.0008062539091 0.01347621162 7.099876242e-14) (0.000554657104 0.009178574343 4.875266857e-14) (0.001383829199 0.02359771447 1.222910662e-13) (0.0006097957932 0.007862904301 4.142519661e-14) (0.0001559959891 0.001498741361 7.896461263e-15) (0.0003031680295 0.00318277391 1.676436767e-14) (0.0001338171975 0.001392616962 7.396860902e-15) (0.0008010226633 0.008559121174 4.435340983e-14) (4.573894956e-05 0.0004051239349 2.137179322e-15) (0 0 0) (0 0 0) (0 0 0) (2.161132549e-05 0.0001683577883 8.743006319e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.391672338e-05 0.0003070381839 1.665334537e-15) (-2.435586756e-06 2.037392614e-05 1.110223025e-16) (0 0 0) (-0.000256227304 0.002178865001 1.167121955e-14) (-8.839931778e-05 0.0008718510265 4.74620343e-15) (-0.0002564956981 0.00345650503 1.883215806e-14) (-0.0002100179668 0.002522249714 1.373900993e-14) (-6.174305261e-05 0.0007356634869 4.038436252e-15) (-0.000742548934 0.009050272745 4.846123502e-14) (-0.0002847805521 0.004371381102 2.381428388e-14) (-0.0002448273808 0.006451900464 3.513855873e-14) (-0.0002780706505 0.005914105211 3.22103455e-14) (-0.0001329469553 0.00280905008 1.543210004e-14) (-0.0007019085416 0.01510141672 8.087974734e-14) (-0.0001960668901 0.006791648712 3.69981823e-14) (-1.036108856e-05 0.006501882093 3.541611449e-14) (-7.289278559e-05 0.00681729878 3.713696017e-14) (-3.65711528e-05 0.003424196564 1.881828027e-14) (-0.0001786002689 0.0165680044 8.873457524e-14) (4.496340595e-05 0.005985806455 3.261280135e-14) (0.0001242585899 0.003564996706 1.942890293e-14) (0.0001151372843 0.004473521353 2.436939539e-14) (4.874174935e-05 0.00187181813 1.028344077e-14) (0.0003174835868 0.01265940121 6.780687123e-14) (0.0001156377513 0.002629694725 1.432187702e-14) (2.566711628e-05 0.000359927485 1.970645869e-15) (5.921783481e-05 0.0009519884979 5.19029264e-15) (4.469336041e-06 7.120434741e-05 3.885780586e-16) (0.0003407784207 0.005583802337 2.990663273e-14) (2.96797072e-06 3.69101069e-05 1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (3.042097347e-05 0.0003138585117 1.679212325e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.268325227e-06 1.498599421e-05 8.326672685e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.952250902e-05 0.0008290032517 4.607425552e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-1.245895413e-05 0.001164480329 6.453171331e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (9.903243156e-06 0.000376330953 2.081668171e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.001984644538 0.08795289071 0) (-0.001983721962 0.08809416407 0) (-0.001981849579 0.08837688041 0) (-0.002278854839 0.08837870244 0) (-0.001982812957 0.08823535916 0) (-0.002575977897 0.08838048605 0) (0.00241422606 0.08835442828 0) (0.002117199541 0.08835699492 0) (0.002116544663 0.08821471412 0) (0.001968090005 0.08821597093 0) (0.001968731822 0.08835825181 0) (0.001965743542 0.08779065914 0) (0.001966526976 0.08793262564 0) (0.00182241938 0.09007154406 0) (0.001823201056 0.08992724147 0) (0.001823622303 0.08978374681 0) (0.001972529234 0.08949574618 0) (0.002121166481 0.08949444899 0) (0.001823412457 0.08964161331 0) (0.002418786576 0.08949077614 0) (-0.001997949716 0.08570148017 0) (-0.002146171507 0.08570239588 0) (-0.001995549199 0.08612306926 0) (-0.002143810171 0.08612398522 0) (-0.002144597453 0.08598342932 0) (-0.001996349542 0.08598251344 0) (-0.002588893046 0.08612680038 0) (-0.002292897606 0.08598434554 0) (-0.002292123298 0.08612491459 0) (0.002398567641 0.08608666785 0) (0.002250295059 0.08608780593 0) (0.002102045527 0.08608847366 0) (0.00210083315 0.08594682342 0) (0.001952663516 0.08594772573 0) (0.001953849601 0.08608935002 0) (0.001948910378 0.08552301087 0) (0.001950187118 0.08566451702 0) (0.001964946366 0.08764858825 0) (0.001962309506 0.08722280817 0) (0.00196322269 0.08736464321 0) (0.002407363958 0.08721964055 0) (0.00211154811 0.08736359622 0) (0.002110621696 0.08722173514 0) (0.002258984506 0.08722041362 0) (-0.002158309638 0.08345369439 0) (-0.00215611638 0.08387554605 0) (-0.002156865079 0.08373489847 0) (-0.002600455841 0.08387819962 0) (-0.002304878075 0.08373578669 0) (-0.002304155582 0.08387642138 0) (0.002376445348 0.08382709961 0) (0.002080168139 0.08382840751 0) (0.002078634543 0.08368756915 0) (0.001782605736 0.0836889146 0) (0.001930594317 0.08368828776 0) (0.001932153864 0.08382909983 0) (0.001777898758 0.08326613898 0) (0.001925941286 0.083265773 0) (0.00192751304 0.08340645439 0) (0.001779576359 0.08340702865 0) (0.001947607432 0.08538149184 0) (0.001943626117 0.0849578364 0) (0.00194505958 0.08509934152 0) (0.002388139114 0.08495575637 0) (0.002093164084 0.08509846576 0) (0.002091718072 0.08495703908 0) (-0.002168944639 0.08120516593 0) (-0.002167105886 0.08162673256 0) (-0.002167697264 0.08148617538 0) (-0.002610505431 0.0816293147 0) (-0.002315357802 0.08148703518 0) (-0.002314766509 0.0816275793 0) (0.00234864682 0.08157433397 0) (0.002052538286 0.08157547098 0) (0.001756638035 0.08157650214 0) (0.001752606682 0.08129518434 0) (0.001748183434 0.08101385605 0) (0.001776324274 0.08312503967 0) (0.001774632248 0.08298394112 0) (0.001771239144 0.08270235794 0) (0.002067099191 0.08270117031 0) (0.001772968305 0.08284314278 0) (0.002363429409 0.08269997962 0) (-0.002177450298 0.07895670193 0) (-0.002175975101 0.07937859746 0) (-0.002176475569 0.07923796132 0) (-0.002618565845 0.07938103064 0) (-0.002619053167 0.07924040748 0) (-0.002471274915 0.07923957303 0) (-0.002470800569 0.07938020934 0) (-0.0001259648055 0.07890861518 0) (-0.000199589588 0.0789086911 0) (-0.0002008651014 0.07883839278 0) (-0.0002021837697 0.07876818618 0) (0.0002338923557 0.07876967462 0) (0.0002375441 0.07890966326 0) (0.0002411016395 0.07904962639 0) (9.560745476e-05 0.0790492182 0) (0.002021014715 0.07960829244 0) (0.002316902503 0.07960735279 0) (0.001133360378 0.07961069339 0) (0.001428637854 0.0796100973 0) (0.00141083984 0.07876870192 0) (0.001417084196 0.07904889509 0) (0.00174411418 0.08073273442 0) (0.001739483246 0.08045160339 0) (0.002035671421 0.08045066178 0) (0.002331664715 0.08044987817 0) (-0.002103212116 0.07670073614 0) (-0.002155515209 0.07711360516 0) (-0.002101363625 0.07698179391 0) (-0.002600259113 0.07711632668 0) (-0.002550337876 0.07698472591 0) (-0.002400692852 0.07698374866 0) (-0.002451877443 0.07711589318 0) (-0.0002715741673 0.07695613068 0) (-0.0001319122401 0.07695978993 0) (-0.0006964286817 0.07694675856 0) (-0.0005523760296 0.07694542601 0) (-0.0006076856762 0.07655030417 0) (-0.0006068062892 0.07669096396 0) (-0.0002766474541 0.07869792175 0) (-0.0002805669809 0.07848732781 0) (-0.0002790952404 0.07855749424 0) (-6.422308159e-05 0.07848873614 0) (-0.0001324264316 0.07862825364 0) (-0.0002049278704 0.07862790427 0) (-0.0002066573975 0.0785578832 0) (-0.0002083704179 0.07848780978 0) (0.0004398908692 0.07654346304 0) (0.0004417271523 0.0768246515 0) (0.0004595907654 0.0770994922 0) (0.0001631057271 0.07710077533 0) (0.0001533133875 0.07696328224 0) (9.11693907e-06 0.07696239538 0) (1.74843456e-05 0.07710028961 0) (0.002272085978 0.07764663477 0) (0.001975649742 0.07764759106 0) (0.001967557475 0.07736842871 0) (0.002263980479 0.07736744638 0) (0.001372091205 0.07737115495 0) (0.001381395523 0.07764991756 0) (0.001337783211 0.07653759942 0) (0.001350327775 0.07681453847 0) (0.001404427406 0.07848877107 0) (0.001389984253 0.07792910279 0) (0.002279501156 0.077926115 0) (0.001983169318 0.07792705755 0) (-0.001516370532 0.09023131406 0) (-0.001646800528 0.09095667284 0) (-0.002549647271 0.09094447299 0) (-0.002248349768 0.09094991873 0) (-7.997974162e-05 0.09029966541 0) (-0.0001835050023 0.09029502701 0) (-0.0001723799711 0.09020801418 0) (-7.659965471e-05 0.09023162744 0) (-0.0002760938265 0.0902878944 0) (-0.0002911928368 0.09021219505 0) (-0.0009842679679 0.0921137537 0) (-0.0009721356142 0.09239537123 0) (-0.0009990484122 0.09155143626 0) (-0.0003799891484 0.09155508638 0) (-0.0003949471079 0.0912725861 0) (0.0001203419248 0.09028518404 0) (2.586734263e-05 0.0902944068 0) (2.477558936e-05 0.09022398752 0) (0.0001091639682 0.09019371251 0) (0.002417401921 0.09063474466 0) (0.002118664414 0.09063930903 0) (0.001818247285 0.09064667416 0) (0.00182046043 0.09035957142 0) (0.001821364133 0.09021595477 0) (0.001481383239 0.0920909517 0) (0.001479000701 0.09237211546 0) (0.001496157844 0.09152137532 0) (0.002111690243 0.09149735944 0) (0.001153118588 0.08907824913 0) (0.001077443102 0.08907872243 0) (0.001076864396 0.08900690581 0) (0.001076250642 0.08893512207 0) (0.0009244731174 0.09009095073 0) (0.0009263344861 0.08994558066 0) (0.001077897442 0.08979649504 0) (0.000927396798 0.08987185167 0) (0.001226988671 0.08979451572 0) (0.003601634157 0.088061281 0) (0.003304343362 0.08806337917 0) (0.003307632199 0.088630996 0) (0.003605025942 0.08862866206 0) (0.002712948428 0.08863554565 0) (0.004791536123 0.08879315365 3.58338359e-13) (0.004201779202 0.08890701163 0) (0.003603200939 0.08834520094 0) (0.003609582822 0.08947845324 0) (-0.003778970688 0.08585316268 0) (-0.003777592113 0.08613426271 0) (-0.003776199624 0.08641549324 0) (-0.002882865013 0.08669110799 0) (-0.002884348753 0.08640990417 0) (-0.00347877669 0.08641362931 0) (-0.003477345192 0.08669483347 0) (-0.003482951256 0.08557038174 0) (-0.00348158702 0.08585128594 0) (-0.003472902426 0.08753915027 0) (-0.00347136184 0.08782105901 0) (-0.003475886549 0.08697619419 0) (-0.002881341068 0.08697246827 0) (0.00120268086 0.08680248095 0) (0.00111865398 0.08680291213 0) (0.001146546508 0.08765427234 0) (0.001222026465 0.08765385779 0) (0.003583420853 0.0857962931 0) (0.003286441458 0.08579807577 0) (0.003291547992 0.08636403506 0) (0.003588592006 0.08636214748 0) (0.00240093785 0.08636961604 0) (0.002697695049 0.0863678087 0) (0.004780460646 0.08663696649 3.587824482e-13) (0.004185534755 0.08664151325 0) (0.003586065073 0.08607920032 0) (0.003595549664 0.08721156772 0) (-0.003789411916 0.08360430644 0) (-0.003788163262 0.0838855118 0) (-0.003786901718 0.08416669095 0) (-0.002894336556 0.0844424805 0) (-0.002895703435 0.08416117143 0) (-0.003489635508 0.08416482803 0) (-0.00348833393 0.08444613753 0) (-0.003493393678 0.08332134265 0) (-0.003492171827 0.0836024437 0) (-0.003484315321 0.08528950366 0) (-0.003487006914 0.08472734238 0) (-0.002892944323 0.08472367186 0) (-0.002152347875 0.08457861399 0) (-0.002153122523 0.0844379927 0) (-0.002150812491 0.08485972604 0) (-0.002298982125 0.08486062835 0) (-0.001559652185 0.08471563099 0) (-0.001707521603 0.08471650521 0) (-0.001708308886 0.08457594931 0) (-0.001709096595 0.08443532811 0) (-0.001702500506 0.08555938155 0) (-0.001703338239 0.08541910025 0) (-0.001704176995 0.08527866224 0) (-0.001556177144 0.08527776104 0) (-0.00140766611 0.08534713702 0) (0.001123336849 0.08453799674 0) (0.001046790435 0.0845387056 0) (0.001048558893 0.08446770824 0) (0.00104961162 0.08439691147 0) (0.001125059076 0.08538671976 0) (0.001203190414 0.08538590913 0) (0.003559815815 0.08353967324 0) (0.003263017729 0.08354121964 0) (0.003269267952 0.08410431113 0) (0.003566092074 0.0841027515 0) (0.002676024494 0.08410741467 0) (0.004755053488 0.084322173 3.585465258e-13) (0.004163452241 0.08438203618 0) (0.003562881644 0.08382114101 0) (0.00357517337 0.08494936285 0) (-0.003798560175 0.08135544175 0) (-0.003797482157 0.08163651761 0) (-0.003796378104 0.08191758024 0) (-0.00290448098 0.08219307377 0) (-0.00290559724 0.08191214182 0) (-0.00349916388 0.08191575685 0) (-0.003498073569 0.08219671509 0) (-0.00350237147 0.08107258134 0) (-0.003501319829 0.08135361819 0) (-0.00349460264 0.0830402154 0) (-0.003496942969 0.08247784285 0) (-0.002903311199 0.08247420127 0) (-0.002163890263 0.08232913801 0) (-0.002164547113 0.08218855514 0) (-0.002162537126 0.08261034268 0) (-0.002310380339 0.0826112298 0) (-0.001498526075 0.08246582413 0) (-0.001499076525 0.08239553414 0) (-0.001720369341 0.08246714225 0) (-0.001721169939 0.08232654725 0) (-0.001573705391 0.08232567567 0) (-0.001573194036 0.08239597898 0) (-0.001572774104 0.08246628288 0) (-0.001721970453 0.08218596532 0) (-0.001574636593 0.08218508153 0) (-0.001574138384 0.08225537186 0) (-0.001715775566 0.08331058299 0) (-0.001716562678 0.08317005321 0) (-0.00171731078 0.08302949705 0) (-0.001569767784 0.08302863802 0) (0.001177251347 0.08242288145 0) (0.001029717205 0.08242329635 0) (0.0008804892203 0.08228253435 0) (0.000963965885 0.08319884896 0) (0.0009648229433 0.08326948959 0) (0.0009622135915 0.08298692173 0) (0.000962767592 0.08305735536 0) (0.001183849203 0.08298620576 0) (0.001036891094 0.08305702803 0) (0.001036232697 0.08298660814 0) (-0.003807314662 0.07910687489 0) (-0.004105194877 0.07910871569 0) (-0.004102725139 0.07967090455 0) (-0.003804975612 0.07966905154 0) (-0.004400696691 0.07967275901 0) (-0.002912776821 0.07994473901 0) (-0.00291372415 0.07966367535 0) (-0.002617632515 0.07966195072 0) (-0.003507500096 0.07966723951 0) (-0.003506474405 0.07994830265 0) (-0.003510839398 0.07882389506 0) (-0.003509708628 0.07910504894 0) (-0.003503410563 0.08079146604 0) (-0.003505435483 0.08022939183 0) (-0.002615737345 0.08022415639 0) (-0.002911816261 0.0802258287 0) (-0.002173464138 0.08008109894 0) (-0.002173977496 0.079940489 0) (-0.002172401058 0.08036188756 0) (-0.002467932802 0.08022334789 0) (-0.002320324931 0.08022242313 0) (-0.002319826596 0.08036273276 0) (-0.001512812248 0.08021819459 0) (-0.001511625763 0.0801478802 0) (-0.00173214964 0.08021923513 0) (-0.001732662145 0.0800787558 0) (-0.001659014549 0.08007835322 0) (-0.001585053592 0.08007793552 0) (-0.001585312539 0.08014828304 0) (-0.001585754928 0.08021854033 0) (-0.001733201793 0.07993811992 0) (-0.001659449715 0.07993771665 0) (-0.001659199481 0.08000803472 0) (-0.001732860137 0.08000843739 0) (-0.001727545791 0.08106221868 0) (-0.001728397692 0.08092176768 0) (-0.001581115476 0.08092097566 0) (-0.001580382608 0.08099119915 0) (-0.001579950383 0.08106138542 0) (-0.001729250447 0.08078118609 0) (-0.001582307799 0.08078039628 0) (-0.001581626746 0.08085068542 0) (-0.001507587512 0.08085025415 0) (-0.00150847753 0.08077996638 0) (0.000112217359 0.07989167927 0) (0.0001125711956 0.07996206197 0) (0.0001125123851 0.08003265633 0) (3.748116443e-05 0.0800331855 0) (0.0009993670514 0.08031300224 0) (0.001146562648 0.08031274628 0) (0.0007055466202 0.08031331453 0) (0.0006977156268 0.07989176091 0) (0.000700441683 0.08003219966 0) (0.0008637681653 0.08101605299 0) (0.0008615244024 0.08087546742 0) (0.0008593223739 0.0807346726 0) (0.001006292198 0.08073444423 0) (0.001153441998 0.0807341755 0) (-0.003748454957 0.07685201521 0) (-0.004047758063 0.07685396979 0) (-0.004114104822 0.07742034346 0) (-0.003815963401 0.07741850095 0) (-0.00441245862 0.07742166492 0) (-0.002921714579 0.07769610804 0) (-0.002923367324 0.07741302456 0) (-0.002626753714 0.07741322952 0) (-0.003518070381 0.07741662089 0) (-0.00351636548 0.07769969097 0) (-0.003450988133 0.07656887218 0) (-0.00344915185 0.07685006063 0) (-0.003512060567 0.0785428985 0) (-0.003514803037 0.07798094652 0) (-0.002623877656 0.07797563776 0) (-0.002920256533 0.07797737733 0) (-0.002181865912 0.07783254283 0) (-0.002182574406 0.07769205172 0) (-0.002180578588 0.07811366957 0) (-0.002623208599 0.07811608995 0) (-0.002475351985 0.07811525499 0) (-0.001510290983 0.0778282747 0) (-0.001588820917 0.07782904876 0) (-0.001589801505 0.07775889219 0) (-0.001591839465 0.07768882089 0) (-0.001587098282 0.07881283419 0) (-0.001588103711 0.0787428737 0) (-0.001589474743 0.07867292865 0) (-0.00151303352 0.07867231191 0) (-0.001370590208 0.07430594389 0) (-0.001368753925 0.07458713235 0) (-0.00166804789 0.07458908687 0) (-0.001669884173 0.07430789841 0) (-0.001664376176 0.07515133318 0) (-0.001365082212 0.07514937866 0) (-0.002562272436 0.07515719684 0) (-0.00226298239 0.07515524234 0) (-0.0004671859525 0.07514351501 0) (-0.0001678867643 0.07514156046 0) (-0.001065783024 0.07514742411 0) (-0.00107129102 0.07430398934 0) (-0.001069454737 0.0745851778 0) (-0.0007582549446 0.07641075254 0) (-0.0006085824948 0.07640977511 0) (-0.0007609762919 0.07598903494 0) (-0.0006113260447 0.07598805766 0) (-0.0006104096356 0.07612858659 0) (-0.0007600598829 0.07612956387 0) (-0.0001623779291 0.07598512583 0) (-0.0003101927321 0.07626716097 0) (-0.0004598416733 0.07626813824 0) (-0.0004607593884 0.07612760931 0) (-0.0004616771034 0.07598708038 0) (-0.001386081576 0.08865635834 0) (-0.001237513772 0.08865542731 0) (-0.001236884784 0.08872634371 0) (-0.001162184954 0.08872586895 0) (-0.00116282317 0.08865493955 0) (-0.001160923688 0.08893820558 0) (-0.001161291574 0.08886767147 0) (-0.001166660636 0.08787711166 0) (-0.001166675416 0.08780664839 0) (-0.001167558759 0.08808938273 0) (-0.001167335021 0.08801864361 0) (-0.00139016787 0.08809062749 0) (-0.001241952656 0.08801910478 0) (-0.001241810962 0.08808980232 0) (-0.001374422793 0.08979945803 0) (-0.001225533569 0.08979994592 0) (-0.001076803941 0.08979979488 0) (-0.001073485631 0.08994672493 0) (-0.001069839411 0.09009326768 0) (-0.001085525695 0.0890802399 0) (-0.001232909609 0.08922325889 0) (-0.001381527868 0.08922386373 0) (0.001220923864 0.08793801719 0) (0.001142824744 0.08793816151 0) (0.00107607485 0.08886360322 0) (0.001076563962 0.08879250059 0) (0.001152477153 0.08879222688 0) (0.001970459833 0.08878486066 0) (0.001970906402 0.08892724339 0) (0.001969436041 0.08850008822 0) (0.002117904271 0.08849890969 0) (0.001375974711 0.08864782922 0) (0.001524532061 0.08864629746 0) (0.001524979338 0.08878878859 0) (0.001525360478 0.08893115216 0) (0.001520598436 0.0877939449 0) (0.001521304105 0.08793600333 0) (0.001372483331 0.08793719723 0) (0.001371992553 0.08786604484 0) (0.00137184194 0.08779498165 0) (0.001522164024 0.088077682 0) (0.001373617687 0.08807890022 0) (0.00137293399 0.08800820622 0) (0.001298085698 0.08800874726 0) (0.001299004823 0.08807949197 0) (-0.001550962275 0.08612030958 0) (-0.001551788568 0.08597978006 0) (-0.001403396993 0.08597886324 0) (-0.001848153872 0.0859815979 0) (-0.001847340469 0.08612215363 0) (-0.001849793142 0.08570057795 0) (-0.001992294051 0.08668552727 0) (-0.001993107284 0.08654499766 0) (-0.001844846313 0.08654408169 0) (-0.001844020105 0.08668459815 0) (-0.001846461509 0.08626274812 0) (-0.001994709334 0.08626367706 0) (-0.001401992553 0.08625992391 0) (-0.001550174822 0.0862608916 0) (-0.002291322614 0.08626552265 0) (-0.002142996427 0.0862645932 0) (-0.002142221266 0.08640529285 0) (-0.001993920943 0.08640440274 0) (-0.001401373349 0.08640074212 0) (-0.00125367485 0.08639989514 0) (-0.001253549484 0.08647029239 0) (-0.00118044267 0.08646988027 0) (-0.001180442572 0.08639949526 0) (-0.001178650583 0.08668050116 0) (-0.001179375529 0.08661029068 0) (-0.001178882288 0.08562602058 0) (-0.001180006822 0.08555602168 0) (-0.001175687353 0.08583665842 0) (-0.001176705192 0.08576639761 0) (-0.001404301818 0.08583830811 0) (-0.00140472158 0.08576803033 0) (-0.001330054486 0.08576754272 0) (-0.001329515876 0.08583781972 0) (-0.001393656899 0.08752635555 0) (-0.001244700239 0.08752536974 0) (-0.001243930403 0.0875958542 0) (-0.001168372851 0.0875953216 0) (-0.001169204072 0.08752483753 0) (-0.00116700052 0.0877362655 0) (-0.001177910758 0.08675078991 0) (-0.001175591199 0.08696198203 0) (-0.001176372108 0.08689160212 0) (-0.001397686699 0.08696327568 0) (-0.001250211434 0.08689204514 0) (-0.001249589946 0.08696241303 0) (0.001209925294 0.08566881576 0) (0.001135782968 0.08566926076 0) (0.0011171558 0.08651969703 0) (0.001200990634 0.08651905813 0) (0.001957224416 0.08651413265 0) (0.001958307555 0.08665599271 0) (0.001954995994 0.0862308962 0) (0.002399765678 0.08622812227 0) (0.002251465781 0.08622907767 0) (0.0012853247 0.08637666638 0) (0.001283593349 0.08644754595 0) (0.001511438175 0.08637524201 0) (0.001511782987 0.08644604271 0) (0.001437051898 0.08644653074 0) (0.00143678596 0.08637580788 0) (0.001513199668 0.08665897782 0) (0.00143812901 0.08665946807 0) (0.001437665121 0.08658843305 0) (0.001512644356 0.0865879434 0) (0.001504661571 0.08552554631 0) (0.00150604305 0.08566709095 0) (0.001358082039 0.08566793966 0) (0.001357188524 0.08559711641 0) (0.001356387198 0.08552641012 0) (0.001507385518 0.08580866198 0) (0.001359685713 0.08580950897 0) (0.001358910252 0.08573876332 0) (0.001285145285 0.0857391928 0) (0.001286181781 0.08580991062 0) (0.001297383782 0.08751126345 0) (0.001297220776 0.08758230256 0) (0.00151935603 0.08750969632 0) (0.001519983763 0.08765182057 0) (0.001371540971 0.08765289445 0) (0.001371416137 0.08758177885 0) (0.00137127867 0.08751072864 0) (0.001371600076 0.08772394518 0) (0.001513636328 0.08672984323 0) (0.001438644032 0.08673033296 0) (0.001515453784 0.0869421488 0) (0.001440747963 0.08694250606 0) (0.001440024828 0.08687177313 0) (0.001514782124 0.08687129799 0) (0.001286370205 0.0868727635 0) (0.001289080041 0.08694371855 0) (0.002257982458 0.08707897098 0) (0.002406360546 0.08707798895 0) (0.001961344508 0.08708103877 0) (0.001959336917 0.08679761802 0) (-0.001566449808 0.08359071685 0) (-0.001714123321 0.0835915898 0) (-0.0017149497 0.08345104721 0) (-0.001709898047 0.08429460251 0) (-0.001710738338 0.08415392941 0) (-0.001562634005 0.08415302753 0) (-0.002303433686 0.08401696465 0) (-0.002155381509 0.08401607617 0) (-0.002153884709 0.0842972799 0) (-0.001337240066 0.08429222114 0) (-0.001259320587 0.08429156862 0) (-0.001259166232 0.08436200486 0) (-0.001259832235 0.08443242034 0) (-0.001275513646 0.0833081389 0) (-0.001274348737 0.08337832038 0) (-0.00127314743 0.08344847551 0) (-0.00134647113 0.08344887598 0) (-0.001333466404 0.08534667859 0) (-0.00118356679 0.08534568662 0) (-0.001181166618 0.08548602301 0) (-0.001261262352 0.08450282775 0) (-0.001262977268 0.08457322396 0) (-0.001337880753 0.08457371311 0) (0.001190032403 0.08355043398 0) (0.001115939621 0.0835508656 0) (0.00104145679 0.08355116915 0) (0.001040926666 0.08348059169 0) (0.0009663203583 0.08348098748 0) (0.0009661846625 0.08355160847 0) (0.0009656719362 0.08333989518 0) (0.001049118065 0.08432633377 0) (0.001047519922 0.08425601145 0) (0.001122473122 0.08425553503 0) (0.001936572321 0.08425169449 0) (0.001937976679 0.08439274267 0) (0.001933582551 0.08396987358 0) (0.002081662128 0.08396918083 0) (0.001343373431 0.08411362284 0) (0.001491348611 0.08411294384 0) (0.001492778066 0.08425383513 0) (0.001494195314 0.0843948571 0) (0.001631731185 0.08340761538 0) (0.001630066473 0.0832666995 0) (0.001634746904 0.08368941 0) (0.001191446468 0.08369116864 0) (0.001339213451 0.08369060855 0) (0.001278516023 0.08524405947 0) (0.001278885591 0.08531465104 0) (0.001502070701 0.08524280853 0) (0.001503292982 0.08538397545 0) (0.001354756891 0.08538476261 0) (0.001353969138 0.08531413459 0) (0.001353586595 0.08524355616 0) (0.001355467648 0.0854556001 0) (0.001495548284 0.08453603623 0) (0.001496980127 0.08467729321 0) (0.001349005203 0.08467801139 0) (0.00134826935 0.08460733079 0) (0.001274020809 0.08460771118 0) (0.001274730627 0.08467840501 0) (0.002090416576 0.08481574207 0) (0.001942324791 0.0848165655 0) (0.001939473568 0.08453396004 0) (-0.001503502686 0.08134176011 0) (-0.0015034259 0.08127151827 0) (-0.001726129399 0.08134310948 0) (-0.001726772336 0.08120265712 0) (-0.001578955159 0.08120178324 0) (-0.001578444231 0.08127202124 0) (-0.00157842968 0.08134224942 0) (-0.001579244062 0.08113154378 0) (-0.001722757138 0.08204550084 0) (-0.001575540906 0.08204460476 0) (-0.00157506933 0.08211481689 0) (-0.00172354263 0.0819052192 0) (-0.001576443258 0.08190442837 0) (-0.001575998655 0.08197451008 0) (-0.001502455627 0.08197409511 0) (-0.001503004628 0.08190402715 0) (-0.002314161986 0.08176814946 0) (-0.002166475242 0.08176730255 0) (-0.002165190221 0.08204807666 0) (-0.001428097169 0.08204374637 0) (-0.001354027981 0.08204330185 0) (-0.001277718142 0.08211296649 0) (-0.001275786508 0.08218315603 0) (-0.001346775714 0.08119983599 0) (-0.001426520171 0.08120063104 0) (-0.00134920931 0.08316798075 0) (-0.001277218727 0.08316764123 0) (-0.001276548207 0.08323791738 0) (-0.001273859928 0.08225337173 0) (-0.001271934653 0.08232358743 0) (-0.001349079826 0.08232420877 0) (-0.001424920786 0.08232474323 0) (0.001162178531 0.08129679363 0) (0.001014978222 0.08129712799 0) (0.0008678948587 0.08129737016 0) (0.0008657293724 0.08115677101 0) (0.0008780236419 0.08207138237 0) (0.0008771563645 0.0820009769 0) (0.0008753124177 0.08186041484 0) (0.001022702981 0.08186001394 0) (0.001170034517 0.08185957423 0) (-0.001509308781 0.07895267826 0) (-0.001587120738 0.07895339538 0) (-0.001586679031 0.07888303361 0) (-0.001733478147 0.07986780202 0) (-0.001659791456 0.07986738612 0) (-0.001660735292 0.07972685736 0) (-0.001734239224 0.07972725901 0) (-0.001511194751 0.0797258808 0) (-0.002470326819 0.07952075423 0) (-0.002618105156 0.07952157561 0) (-0.002175475231 0.07951914218 0) (-0.002174490767 0.07979989213 0) (-0.001432399253 0.07979537247 0) (-0.001353837804 0.07979462433 0) (-0.001431214557 0.08091998368 0) (-0.001354371077 0.08091936431 0) (-0.001357275327 0.08007623906 0) (-0.001434170963 0.08007687183 0) (0.001127517282 0.07933014496 0) (0.0009801640822 0.07933046725 0) (0.0008330247568 0.07933054 0) (0.0008297958521 0.07919030044 0) (0.0006829983657 0.07919031871 0) (0.0006861277562 0.07933051974 0) (0.0006724839742 0.07877025849 0) (0.0006761508791 0.07891016867 0) (0.000695105269 0.07975143895 0) (0.0006892810817 0.07947078591 0) (0.001130295521 0.07947037439 0) (0.0009830176443 0.0794706309 0) (3.662718201e-05 0.07975141595 0) (0.0001101956799 0.07975130122 0) (0.0001113422187 0.07982146977 0) (-0.001428755877 0.07676908067 0) (-0.001355176867 0.07676977565 0) (-0.001653306278 0.07676845735 0) (-0.001578285303 0.07676835925 0) (-0.00165512946 0.07655727505 0) (-0.001579085434 0.0766978358 0) (-0.001654040255 0.07669806407 0) (-0.001594373206 0.07761883119 0) (-0.002476329834 0.07726951804 0) (-0.002624333949 0.07726976623 0) (-0.002181360959 0.07726786605 0) (-0.00218336075 0.07755163948 0) (-0.0003809443125 0.07764922755 0) (-0.0003867891015 0.07751021974 0) (-0.0003926437149 0.07737110751 0) (-0.0002516647753 0.07737339982 0) (-0.0001095026834 0.07737522729 0) (-0.001057067462 0.07655363066 0) (-0.001056899062 0.07669481752 0) (-0.001132316777 0.07669596308 0) (-0.001133290343 0.07676728176 0) (-0.001057727205 0.07676600465 0) (-0.001282574262 0.07676995457 0) (-8.366443651e-05 0.07793053719 0) (-0.0002273444776 0.07792930738 0) (-0.000372684093 0.07785810829 0) (-0.0003754257168 0.07778848565 0) (-0.00376729404 0.08810519771 0) (-0.00376565879 0.08838760214 0) (-0.00376395875 0.08866992779 0) (-0.002869686784 0.0889470789 0) (-0.002871452816 0.08866464789 0) (-0.003466352204 0.0886681802 0) (-0.003464677833 0.08895057523 0) (-0.003469740247 0.0881033721 0) (-0.003458320585 0.08980205517 0) (-0.003455650758 0.09008688361 0) (-0.003462587419 0.08923467852 0) (-0.002867543429 0.08923128894 0) (-0.001977878942 0.08894290067 0) (-0.001976742334 0.08908494845 0) (-0.001975605496 0.0892270315 0) (-0.001974281191 0.08936982122 0) (-0.001527069008 0.08951106526 0) (-0.001528632416 0.08936766194 0) (-0.001825718656 0.08936908353 0) (-0.001824343636 0.08951163912 0) (-0.001829355579 0.08894216454 0) (-0.001828219355 0.08908415355 0) (-0.001820834063 0.08979905714 0) (-0.001671924232 0.08979950049 0) (-0.001669899663 0.08994352119 0) (-0.001667334304 0.09008835245 0) (-0.001822875327 0.08965448015 0) (-0.001525107676 0.08965540246 0) (0.0005402795297 0.08995129385 0) (0.0006190628886 0.08995132661 0) (-0.001991466991 0.08682617433 0) (-0.001990639333 0.08696691282 0) (-0.001989812614 0.08710750765 0) (-0.001544032173 0.08724551019 0) (-0.001544951338 0.08710475924 0) (-0.001841486426 0.0871065782 0) (-0.001840632563 0.08724732957 0) (-0.001843179984 0.08682524514 0) (-0.001838015917 0.08767001436 0) (-0.001837134995 0.08781090923 0) (-0.00183976453 0.08738825065 0) (-0.001543098753 0.0873864439 0) (0.003534764284 0.08156955293 0) (0.003237807342 0.08157077384 0) (0.002941137044 0.08157188839 0) (0.002937250208 0.08129070026 0) (0.003241849708 0.0818517781 0) (0.003538637207 0.08185061054 0) (0.002648798743 0.08185435795 0) (0.004698424969 0.08154550934 3.56242813e-13) (0.004136659783 0.08212932927 0) (0.003549622335 0.08269475401 0) (0.0004180258053 0.08073528187 0) (0.0004169229039 0.08066499549 0) (0.0003424368366 0.08066540355 0) (0.000340386576 0.08045424885 0) (0.000341133272 0.0805245898 0) (0.0004226400747 0.08101666116 0) (0.0004216948619 0.0809463215 0) (0.0004204599661 0.08087602293 0) (0.0004943803248 0.08087578835 0) (0.0004879360907 0.07765398902 0) (0.0004937808796 0.07779299683 0) (0.0003471964735 0.07779284392 0) (0.0003413923421 0.07765386196 0) (0.0003580051095 0.07807136161 0) (0.0005043468497 0.07807155529 0) (6.612662391e-05 0.07807064247 0) (0.001099530229 0.07821011029 0) (0.0008032795623 0.07821088252 0) (0.0004991243819 0.07793224301 0) (0.0006686733205 0.0786303362 0) (0.0006647201976 0.07849059768 0) (0.0005178959082 0.07849051164 0) (-0.00153659564 0.08837426005 0) (-0.00153759854 0.08823268681 0) (-0.001834369056 0.08823445506 0) (-0.001833405507 0.08837600244 0) (-0.001836239903 0.0879519738 0) (-0.001978868449 0.08880137828 0) (-0.00183037171 0.08880056526 0) (-0.00183241652 0.08851744516 0) (-0.001980873738 0.08851831016 0) (-0.001535567387 0.08851571558 0) (-0.001979897726 0.08865976603 0) (-0.0007743873274 0.0899500091 0) (-0.0006995173704 0.08995078576 0) (-0.0006215626801 0.09002772514 0) (-0.0006181652062 0.09010357757 0) (-0.0007043214616 0.08965453922 0) (-0.0007800885339 0.08965378801 0) (0.001376836813 0.08964784188 0) (0.001674712015 0.08964323351 0) (0.00167290666 0.09007478076 0) (0.001673689695 0.08993068634 0) (0.001525677501 0.08907369769 0) (0.001525940748 0.08921600847 0) (0.001377178638 0.08921818547 0) (0.002121029334 0.08935144777 0) (0.001972277111 0.08935313884 0) (0.001971351573 0.08906941193 0) (0.0004981278747 0.08115744758 0) (0.0004239156474 0.08115778855 0) (0.0004233123003 0.08108719851 0) (0.0004230908078 0.08151088139 0) (0.0004233220144 0.0814402859 0) (0.0004994553812 0.0814395275 0) (0.0005746065862 0.08143897142 0) (0.001764164075 0.08213895837 0) (0.001762200512 0.08199827955 0) (0.001760472631 0.0818576906 0) (0.001313569273 0.08157773684 0) (0.001315520373 0.08171850717 0) (0.00161260091 0.0818582122 0) (0.001464950617 0.08185864093 0) (0.001463013601 0.08171802723 0) (0.001461062842 0.08157730914 0) (0.001616370886 0.08213950558 0) (0.001614446248 0.08199878732 0) (0.001457005368 0.08129599151 0) (0.001455055036 0.08115533872 0) (0.001452752161 0.08101470129 0) (0.001459164495 0.08143661682 0) (0.001311632001 0.08143708396 0) (0.00132810781 0.082704011 0) (0.001329758608 0.08284479635 0) (0.001625123387 0.08284376869 0) (0.001623459272 0.08270294424 0) (0.001628505562 0.08312567846 0) (0.001765892894 0.08227969098 0) (0.001618125741 0.08228022495 0) (0.001621769549 0.08256219832 0) (0.001769536276 0.08256159904 0) (0.001326496705 0.08256330375 0) (0.001767741217 0.0824207232 0) (-0.0001944214432 0.07925982486 0) (-0.0001945408206 0.07918924471 0) (-0.0001205501975 0.07918900968 0) (-4.709964484e-05 0.07918897408 0) (-0.0005083635653 0.07820741906 0) (-0.0005058947314 0.0782770696 0) (-0.0002104241418 0.07841776471 0) (-0.0002825176083 0.07841722982 0) (-0.0002890525661 0.07820773702 0) (-0.0002867756335 0.07827740187 0) (-0.0007027753312 0.09127069638 0) (-0.0007064605236 0.09112978586 0) (-0.0005543197268 0.09113038444 0) (-0.0005523678719 0.09127047038 0) (-0.0005598043961 0.09084952151 0) (-0.0007190911057 0.09084487502 0) (-7.030951871e-05 0.09085697473 0) (-0.0002367597768 0.09085588578 0) (-0.001353045713 0.09067271292 0) (-0.001202786681 0.09067415837 0) (-0.001197850854 0.09081917751 0) (-0.00134981148 0.09081576836 0) (-0.0008838689867 0.09083456986 0) (-0.0008934808673 0.09068691031 0) (-0.0008556211607 0.09126973671 0) (-0.0008640830227 0.0911261786 0) (-0.0007624847602 0.09024883961 0) (-0.0009128732973 0.09024656316 0) (-0.0009203912381 0.09009454694 0) (-0.0009024077755 0.09053814004 0) (-0.001356744136 0.09052857646 0) (-0.001205963107 0.09053115479 0) (0.001221013756 0.09037278149 0) (0.001070908663 0.09037630861 0) (0.0009194166403 0.09038165633 0) (0.0009221578386 0.09023641387 0) (0.0005807068124 0.09126109088 0) (0.0005822307195 0.09112024561 0) (0.0007337347367 0.09111773463 0) (0.0007330162253 0.09125830951 0) (0.0007460958756 0.09082958605 0) (0.0005883326677 0.09083663215 0) (0.001213437634 0.09080625581 0) (0.001060143726 0.09081268237 0) (0.000104907574 0.09085393405 0) (0.0004325906523 0.09084158184 0) (0.0004275663107 0.09126400829 0) (0.000428081916 0.09112376257 0) (0.001003662499 0.08943775768 0) (0.001003834174 0.08950984601 0) (0.001002608328 0.08929373325 0) (0.001078356303 0.08929316021 0) (0.001078214417 0.08922163331 0) (0.0006973593575 0.08987640232 0) (0.0008519634871 0.08987300908 0) (0.0007726460677 0.09009639598 0) (0.0007729932946 0.09002356658 0) (0.0007743546224 0.08994942565 0) (0.00085103935 0.08994669668 0) (0.0007734460595 0.08958409826 0) (0.0007736528762 0.08965636791 0) (0.0006946853787 0.08965573816 0) (0.0009280172991 0.08965506858 0) (0.001004090155 0.08965244418 0) (0.001004081892 0.08958117892 0) (0.001149409562 0.08708688961 0) (0.001221075764 0.08708627793 0) (0.001224914016 0.08737002631 0) (0.001153331656 0.08737067662 0) (0.001127339874 0.08482017674 0) (0.001202029767 0.08481978041 0) (0.001203645379 0.08510317759 0) (0.001128501754 0.08510369443 0) (0.0008834163908 0.08256496953 0) (0.0009589800793 0.08270537669 0) (0.0006573531155 0.08256668092 0) (0.0007332965694 0.08256604131 0) (0.0007327862986 0.08263670392 0) (0.0007318618455 0.08270734313 0) (0.0007305283599 0.08214254774 0) (0.0007311932025 0.08221295452 0) (0.000731488353 0.08228335066 0) (0.0006557815465 0.08228402792 0) (0.0007318821911 0.08277785861 0) (0.0007336522184 0.08284810145 0) (0.0006556449263 0.08284910718 0) (0.001035463713 0.08291625428 0) (0.000961493016 0.08291658061 0) (0.0009597868528 0.08277571725 0) (-0.001730930262 0.08049995743 0) (-0.001731651646 0.08035949252 0) (-0.001585610245 0.08035869554 0) (-0.001585230176 0.08042889521 0) (-0.00158466675 0.08049917205 0) (-0.001585858773 0.08028863868 0) (-0.001513320963 0.08028829558 0) (-0.00202573472 0.08022078667 0) (-0.001878805132 0.08021999694 0) (0.0005564820329 0.0801727735 0) (0.0004100524208 0.08017272406 0) (0.0002608424376 0.08003211868 0) (0.000336513791 0.08017281248 0) (0.0003396044465 0.08038388201 0) (0.0003376976662 0.08024309833 0) (0.0004112131286 0.08024306231 0) (-0.001598169049 0.07825157658 0) (-0.001598536058 0.07818137682 0) (-0.001597584744 0.07811105091 0) (-0.001527226725 0.07811091796 0) (-0.002034421944 0.07797251977 0) (-0.001888092192 0.07797187763 0) (-0.00174191678 0.07811160163 0) (-0.001814809773 0.0779715558 0) (-0.001815731112 0.07776047209 0) (-0.001816267905 0.07769027344 0) (-0.001815048056 0.07790106786 0) (-0.001888330304 0.07790141581 0) (-0.002032084258 0.07853448745 0) (-0.001885650536 0.07853376627 0) (-0.001738441142 0.0786738231 0) (-0.001740762532 0.07839235047 0) (-0.001523500962 0.07839144104 0) (-0.001595725751 0.07839171678 0) (-0.001597097722 0.07832162807 0) (-0.001165031609 0.08844296305 0) (-0.001165791824 0.088372152 0) (-0.001163532449 0.08858412817 0) (-0.001238083392 0.08858460196 0) (-0.0009344754205 0.08893744773 0) (-0.0009320729709 0.08886593295 0) (-0.0009303091715 0.08879462216 0) (-0.0008493982902 0.08879344073 0) (-0.001241509734 0.08816032903 0) (-0.001167482254 0.08815989784 0) (-0.001166515273 0.08830117092 0) (-0.001080152925 0.08958236769 0) (-0.001079196882 0.08965456584 0) (-0.0008530446648 0.08980087397 0) (-0.0008543785358 0.0897272194 0) (-0.001004890524 0.08965383896 0) (-0.0009302055086 0.0896540957 0) (-0.0009290935561 0.08972696807 0) (-0.0009279522813 0.08979973054 0) (-0.001005737409 0.08958195617 0) (-0.0009243509181 0.08994760435 0) (-0.0009222645492 0.09002148833 0) (-0.0009263387235 0.08987341333 0) (-0.00085156619 0.08987427161 0) (-0.000861170766 0.08907973082 0) (-0.0009359263352 0.08907987028 0) (-0.0009360002248 0.08900875565 0) (-0.0009315397902 0.08950937826 0) (-0.000931684217 0.08943726233 0) (-0.0009316004244 0.08936569346 0) (-0.0008544606131 0.08936525109 0) (-0.001082507712 0.08936638116 0) (0.001151459232 0.08822275364 0) (0.001225905149 0.08822179728 0) (0.001226431796 0.08850644236 0) (0.001151058369 0.08850716968 0) (0.001074841358 0.08850771965 0) (0.001073733451 0.0884364668 0) (-0.001176530775 0.08618810572 0) (-0.001174999497 0.08611778908 0) (-0.001179741989 0.08632897507 0) (-0.001327659888 0.08625942542 0) (-0.001253223706 0.08625897851 0) (-0.001253580009 0.08632941808 0) (-0.001328992937 0.08590809683 0) (-0.001403764514 0.08590858512 0) (-0.001174805341 0.08590692012 0) (-0.001174212743 0.08604746424 0) (-0.001171656846 0.08731364628 0) (-0.00117247387 0.087243136 0) (-0.001170011016 0.08745447085 0) (-0.001245208188 0.08745498804 0) (-0.00124898098 0.08703266345 0) (-0.001174815232 0.08703220524 0) (-0.001173260259 0.08717271694 0) (0.001145207648 0.0859522543 0) (0.001216032287 0.08595197464 0) (0.001215650012 0.08623543711 0) (0.001144338565 0.0862357722 0) (0.001509797893 0.08609206702 0) (0.001510644155 0.08623365434 0) (0.001362566113 0.08623458217 0) (0.001362704789 0.0861638175 0) (0.001362372611 0.0860929514 0) (0.001361662208 0.08637616787 0) (0.001362048688 0.08630534933 0) (0.001287239152 0.0863058248 0) (0.001807933742 0.08637337107 0) (0.001659738157 0.08637429967 0) (0.001512259084 0.08651694705 0) (0.001803333404 0.08580692522 0) (0.001655307177 0.08580778741 0) (0.001508663708 0.08595039015 0) (0.001287193009 0.08588075921 0) (0.001361185928 0.0859512357 0) (0.001360527158 0.08588035868 0) (0.001361935695 0.08602204682 0) (0.001517790101 0.08722590699 0) (0.001518651384 0.08736779461 0) (0.001370861693 0.08736887729 0) (0.001370646375 0.08729790595 0) (0.001370130671 0.08722693657 0) (0.001371142056 0.08743980902 0) (0.001297482338 0.08744035536 0) (0.001815810795 0.08750757749 0) (0.001667550761 0.08750863712 0) (0.001812105904 0.08694025072 0) (0.001663845444 0.08694124505 0) (0.001514267955 0.0868005637 0) (0.001516641917 0.08708408654 0) (0.001291960515 0.08701480309 0) (0.001368395114 0.0870851722 0) (0.001366887253 0.08701427461 0) (0.001365534921 0.08694319314 0) (0.001369497765 0.0871560202 0) (-0.001265818662 0.08387012384 0) (-0.001264584192 0.08394035712 0) (-0.001263365822 0.08401052519 0) (-0.001340025322 0.08401111724 0) (-0.001343264991 0.08373002937 0) (-0.001268289759 0.08372952669 0) (-0.001267054693 0.08379985139 0) (-0.001262880872 0.08499498482 0) (-0.001262078614 0.08506523398 0) (-0.001261268519 0.08513548309 0) (-0.001335239754 0.08513592697 0) (-0.001337534822 0.08485488518 0) (-0.001264357398 0.08485448566 0) (-0.001263659622 0.0849247355 0) (0.0009679254524 0.08376297416 0) (0.0009663477919 0.08362218832 0) (0.001190714053 0.08362081454 0) (0.001116613094 0.08362119397 0) (0.001118960684 0.08397367835 0) (0.001042957153 0.08397431836 0) (0.001043407858 0.08390373449 0) (0.001043642556 0.08383307368 0) (-0.001358906288 0.08176289079 0) (-0.001431201262 0.08176321924 0) (-0.001429906877 0.08148182748 0) (-0.001355024373 0.08148132541 0) (-0.00126343026 0.08274505829 0) (-0.001264998815 0.0828154666 0) (-0.00126831041 0.08288596466 0) (-0.001345595329 0.08288658691 0) (-0.001421431064 0.08288712134 0) (-0.001421896356 0.08260587168 0) (-0.001344436515 0.08260523523 0) (-0.001264656539 0.08260447913 0) (-0.001263527688 0.08267473922 0) (0.0006530971574 0.08186136969 0) (0.0006534546562 0.08193171318 0) (0.0008032662151 0.08200123741 0) (0.000728931221 0.08200157918 0) (0.0007281350663 0.08193126467 0) (0.0007276249324 0.0818609483 0) (0.0008041452468 0.08207164279 0) (0.0008716606345 0.08157882029 0) (0.0008735500684 0.08171974776 0) (0.0007260119238 0.08172014963 0) (0.0007250678732 0.08164958794 0) (0.00072436595 0.08157910303 0) (0.000726758252 0.08179063425 0) (0.0006523713578 0.08179102861 0) (0.0005758686792 0.08172123462 0) (0.0004985509714 0.08172223585 0) (0.0004994082482 0.08200410987 0) (0.0005771889999 0.08200301419 0) (-0.001590749479 0.07937572913 0) (-0.00159135217 0.07930543948 0) (-0.001591550333 0.07923509495 0) (-0.001519651966 0.0792348344 0) (-0.002029928906 0.07909653469 0) (-0.001883377726 0.07909579969 0) (-0.001736874356 0.07923574358 0) (-0.001737079038 0.0789544008 0) (-0.002027942655 0.07965868753 0) (-0.00188116962 0.07965792495 0) (-0.00173389808 0.07979749812 0) (-0.001735468892 0.07951696097 0) (-0.001515570248 0.07951586452 0) (-0.001589087411 0.07951624013 0) (-0.001589950882 0.07944601749 0) (-4.278735908e-05 0.07947025086 0) (-0.000117904306 0.07947083283 0) (-0.001363391889 0.0806386146 0) (-0.001436827908 0.0806390158 0) (-0.001441592083 0.08035808156 0) (-0.001371244854 0.08035789644 0) (0.0002476321603 0.07933003972 0) (0.0002506117571 0.07947050294 0) (0.0001046291167 0.07947009794 0) (0.0001032377531 0.07939983957 0) (0.0001018168625 0.07932965975 0) (0.0001075649054 0.07961065287 0) (0.000106034932 0.07954036928 0) (3.268212641e-05 0.07954031281 0) (0.0005457395589 0.07961118722 0) (0.0003996610984 0.07961110937 0) (0.0002563617297 0.07975139156 0) (-0.002037362706 0.07741020338 0) (-0.001891345805 0.07740965471 0) (-0.001890978113 0.07747995895 0) (-0.001818152806 0.0774796401 0) (-0.001818611919 0.07740933646 0) (-0.001816856768 0.07762010125 0) (-0.001806094956 0.07719604914 0) (-0.001787327288 0.07711792708 0) (-0.001818313535 0.07733902787 0) (-0.0018910213 0.07733934595 0) (-0.0007495302159 0.077225563 0) (-0.0008218174174 0.07722508163 0) (-0.0008263705275 0.07715626753 0) (-0.0008347032221 0.0770888887 0) (-0.0007417614124 0.07750539357 0) (-0.0006696064025 0.07750603254 0) (-0.0006634932465 0.07778613514 0) (-0.000737457216 0.07778629163 0) (-0.0003656722366 0.07806742818 0) (-0.000585716175 0.07806707583 0) (-0.0005114197647 0.07806682573 0) (-0.0005099313284 0.07813714878 0) (-0.0004468440132 0.07778765902 0) (-0.0005182689251 0.07778681937 0) (-0.0005204827151 0.0777170235 0) (-0.0005226320832 0.07764729251 0) (-0.0004441111052 0.07785734702 0) (-0.0005888289158 0.07785642438 0) (-0.003764979798 0.0743215803 0) (-0.003761308085 0.07488382661 0) (-0.002859739259 0.07544033988 0) (-0.002861575543 0.07515915142 0) (-0.003160878649 0.075161106 0) (-0.003159042366 0.07544229445 0) (-0.003458332412 0.07544424895 0) (-0.003452824416 0.07628768372 0) (-0.003456496129 0.07572543741 0) (-0.002857902976 0.07572152833 0) (-0.001961843 0.07543447622 0) (-0.001960006717 0.07571566468 0) (-0.001359574669 0.07599294405 0) (-0.001509222304 0.07599392131 0) (-0.001658867327 0.07599489856 0) (-0.001808525411 0.07599587589 0) (-0.001805758352 0.07641759319 0) (-0.001807607696 0.07613640482 0) (-0.001358663484 0.07613347302 0) (-0.001508304589 0.07613445024 0) (0.001023800688 0.07429030748 0) (0.001027472401 0.07485255379 0) (0.00043254659 0.07541883982 0) (0.000430710307 0.07513765136 0) (0.0001314124245 0.0751396059 0) (0.002228335191 0.07540711253 0) (0.001629742038 0.07541102161 0) (0.001335946928 0.07625641096 0) (0.001334111497 0.0759753531 0) (0.001034817533 0.07597730762 0) (0.0005329291313 0.07905013689 0) (0.0003869136429 0.07904990189 0) (0.000244289972 0.07918985315 0) (9.870751559e-05 0.07918932799 0) (2.590369615e-05 0.07918913732 0) (0.0001003932746 0.07925946689 0) (0.001064541123 0.07709385676 0) (0.0007622688479 0.07709674499 0) (0.0004749068981 0.07737643927 0) (2.622170004e-05 0.07723823366 0) (0.0001801291463 0.07737675781 0) (0.0001721726545 0.07723858662 0) (0.0001943542901 0.07765384262 0) (0.0001875358577 0.07751514156 0) (-0.0004096917425 0.09071015219 0) (-0.0004188930322 0.09056676609 0) (-0.0003361918563 0.09057033105 0) (-0.000338226043 0.09050003769 0) (-0.0004237652483 0.09049468756 0) (-7.224966026e-05 0.09050805852 0) (-0.0001610118568 0.09050738433 0) (-0.000755523824 0.09039676214 0) (-0.0006761136364 0.09040258069 0) (-0.0005955819968 0.09040872627 0) (-0.0005921244105 0.09048118367 0) (-0.0005132598064 0.09048465743 0) (-0.000517808873 0.09041166253 0) (-0.0005102267185 0.09055631174 0) (-0.0005349000168 0.09018670943 0) (-0.0005212422524 0.09033951191 0) (-0.0007594694881 0.09032236579 0) (-0.0006815396324 0.09032690228 0) (0.0006164550834 0.09024919539 0) (0.0005396214267 0.09025171896 0) (0.0004610684275 0.090255761 0) (0.0004626716037 0.09018045411 0) (0.000277240019 0.09070566362 0) (0.00028151405 0.09056354262 0) (0.0003618275256 0.09055988092 0) (0.000364760662 0.09048782978 0) (0.0002824086788 0.09049273644 0) (0.0004481789478 0.09048120519 0) (0.0004537556864 0.09040616675 0) (2.366585362e-05 0.09050591448 0) (0.0002010490128 0.09049639583 0) (0.0002007138366 0.09056687053 0) (0.001046503883 0.08468002604 0) (0.001045720474 0.0846094633 0) (0.0009692470662 0.08453955157 0) (-0.001718781203 0.08274833233 0) (-0.001719568742 0.08260773725 0) (-0.001571869108 0.08260686413 0) (-0.001571370899 0.08267715446 0) (-0.001571055449 0.08274745904 0) (-0.001572262834 0.08253657312 0) (-0.001497962565 0.08253611403 0) (-0.002015507488 0.08246887372 0) (-0.001867899276 0.0824680012 0) (-0.002012631686 0.08303124278 0) (-0.001864918992 0.08303036957 0) (-0.001718045906 0.08288892775 0) (-0.001570385368 0.08288806795 0) (-0.001496124279 0.08288760911 0) (-0.001570648577 0.08281776303 0) (-0.002023383633 0.08078280651 0) (-0.001876245251 0.0807819893 0) (-0.001730103458 0.08064056531 0) (-0.001509341428 0.08070967844 0) (-0.001583500292 0.08063979078 0) (-0.001582871395 0.08071009332 0) (-0.001584103069 0.08056948808 0) (-0.00159201302 0.07797024451 0) (-0.001589562243 0.07789953003 0) (-0.001741285688 0.07783024033 0) (-0.001665941019 0.07782970911 0) (-0.001209927034 0.07599196678 0) (-0.001209019767 0.07613249578 0) (-0.0009097140483 0.07613054118 0) (-0.0009106265392 0.07599001222 0) (-0.000907953515 0.07641173013 0) (-0.000764647552 0.07542665801 0) (-0.0007628112689 0.07570784647 0) (-0.001060276786 0.0759909895 0) (0.00152352329 0.08836182532 0) (0.00152408521 0.08850387164 0) (0.001375592053 0.08850523319 0) (0.001375298118 0.08843422318 0) (0.001375081862 0.08836310817 0) (0.001301199849 0.08850561451 0) (0.001821556533 0.08864341738 0) (0.00167307618 0.08864473967 0) (0.001818969882 0.08807532578 0) (0.001670592903 0.08807647759 0) (0.001522933373 0.08821949186 0) (0.001299793344 0.08815023753 0) (0.001374581832 0.08822053902 0) (0.001374132027 0.08814966064 0) (0.001374851097 0.08829177123 0) (-0.001712416874 0.08387289665 0) (-0.001713270055 0.08373224975 0) (-0.002009679228 0.08359335012 0) (-0.001861862136 0.08359246317 0) (-0.001200099303 0.08344807684 0) (-0.001270729683 0.08358890322 0) (-0.001271940729 0.08351865673 0) (0.0009720613731 0.08425650422 0) (0.001043839269 0.08411539608 0) (0.001045538403 0.08418578305 0) (0.001488462727 0.08383103082 0) (0.001489892182 0.08397192211 0) (0.001787141906 0.08411153461 0) (0.001639232198 0.08411223931 0) (0.00149976929 0.08496039539 0) (0.00150091483 0.08510181097 0) (0.001352808365 0.08510238634 0) (0.001352425566 0.08503176874 0) (0.001351898251 0.08496102147 0) (0.00135311246 0.08517295222 0) (0.001278433356 0.08517340072 0) (0.001798254526 0.08524120085 0) (0.001650201837 0.08524201096 0) (0.001792878416 0.08467596167 0) (0.001644916553 0.08467667976 0) (0.001498386788 0.08481869402 0) (0.001275531015 0.08474896765 0) (0.001350476142 0.08481925506 0) (0.001349701364 0.08474861389 0) (0.001351226164 0.08489010536 0) (-0.001725025261 0.08162418517 0) (-0.001725590689 0.0814836017 0) (-0.001578348166 0.08148273156 0) (-0.001578254741 0.0815530376 0) (-0.001578069809 0.08162335609 0) (-0.001578284611 0.08141246369 0) (-0.001503892919 0.081412004 0) (-0.002020862847 0.08134481218 0) (-0.001873502696 0.08134395434 0) (-0.002018250043 0.08190690868 0) (-0.00187081153 0.08190605033 0) (-0.001724303109 0.08176476762 0) (-0.001503567371 0.08183385479 0) (-0.001577347316 0.08176399078 0) (-0.001576914579 0.08183425542 0) (-0.001577767248 0.08169368688 0) (-0.001275518703 0.0830269646 0) (-0.001277088735 0.0830973468 0) (-0.001206566313 0.08316738882 0) (-0.001194111821 0.08232293554 0) (-0.001268111446 0.08246403208 0) (-0.001270013212 0.08239381622 0) (0.0008697490565 0.08143810194 0) (0.0006472642351 0.08129777916 0) (0.0006481287298 0.08136815853 0) (0.0007227052153 0.0814383961 0) (0.0007217750779 0.08136796492 0) (0.0007208635661 0.08129758587 0) (0.0007234965723 0.08150877594 0) (-0.001509629438 0.07703957692 0) (-0.001496609685 0.0769792813 0) (-0.001418993494 0.07698138661 0) (-0.001318116257 0.07701063722 0) (-0.001952557955 0.07684028722 0) (-0.001802690054 0.07683943913 0) (-0.001650585346 0.07697911135 0) (-0.001726362966 0.07697934499 0) (-0.001739330159 0.07704368914 0) (-0.001744385153 0.07754962174 0) (-0.001670920231 0.07754924647 0) (-0.0006036980446 0.07736732674 0) (-0.0006006958384 0.07743705216 0) (-0.0005275646122 0.07750797834 0) (-0.0005302545065 0.077438277 0) (-0.0005330996478 0.0773686028 0) (-0.0005254317961 0.07757777474 0) (-0.0004044526586 0.07709241349 0) (-0.0003989497887 0.07723206352 0) (-0.0007559014983 0.07683273375 0) (-0.0009064285988 0.0768342392 0) (-0.000982638222 0.07683552053 0) (-0.0009342898974 0.07702746075 0) (-0.0009834158293 0.07690644611 0) (-0.0008099813836 0.0769655241 0) (-0.0008855524372 0.07696418909 0) (-0.000906872262 0.07690490138 0) (-0.001223592079 0.07699264898 0) (-0.001204072603 0.07704385071 0) (-0.001263989545 0.0770518173 0) (-0.001306859447 0.07703198353 0) (0.0002664527375 0.08059561924 0) (0.0001900369001 0.08059652315 0) (0.0003464736249 0.08144115346 0) (0.0004241772285 0.08129884419 0) (0.0004236113101 0.08136958554 0) (-0.0002687481196 0.07918952035 0) (-0.000196310561 0.07904882584 0) (-0.0001950510798 0.07911888916 0) (-0.0003508301152 0.07862759017 0) (-0.0004242662509 0.07862757343 0) (-0.0003569477916 0.07834679538 0) (-0.0004294781121 0.07834648538 0) (0.0009266148479 0.08936631244 0) (0.0008491098886 0.08936623998 0) (0.0008515216574 0.08965595212 0) (0.0007752716935 0.08980105606 0) (0.0007745396499 0.08972835883 0) (0.00104896077 0.08475044725 0) (0.0007320380284 0.08242452198 0) (0.0007328059941 0.08249531992 0) (0.0008087713288 0.08256543087 0) (0.0008882001438 0.08312850161 0) (0.0008120273668 0.08312902517 0) (0.0008860562559 0.08284660987 0) (0.0008105019992 0.08284724694 0) (0.0007363496396 0.08291815538 0) (0.000111565381 0.08017424231 0) (0.0001118353491 0.08024478228 0) (0.0002643455039 0.08031374032 0) (0.0001889974294 0.08031434993 0) (-0.001669457075 0.07811129823 0) (-0.001595118348 0.07804072816 0) (-0.001592626368 0.07853232289 0) (-0.001594196034 0.07846196119 0) (-0.001668172396 0.0783920201 0) (-0.0009319497292 0.08865280493 0) (-0.0009345331898 0.08858220169 0) (-0.001089415241 0.08851303711 0) (-0.001013860472 0.0885124784 0) (-0.001086177256 0.08879626697 0) (-0.001009238948 0.08879556861 0) (-0.0009303066375 0.08872361021 0) (-0.001090627473 0.08794720912 0) (-0.001012824231 0.08794655736 0) (-0.001093422589 0.08822999512 0) (-0.001020323271 0.0882296353 0) (-0.000933149389 0.08922230179 0) (-0.0009347142349 0.08915087821 0) (-0.00101087436 0.08907993917 0) (0.001077587222 0.08865039169 0) (0.001076593223 0.08857898136 0) (0.0009978188929 0.08850813122 0) (-0.001103196101 0.0862579857 0) (-0.001028628266 0.08625749874 0) (-0.001108051036 0.08653975335 0) (-0.001037500749 0.08653946242 0) (-0.001098669832 0.08569548994 0) (-0.00101849657 0.0856947574 0) (-0.001093349287 0.08597642055 0) (-0.001010585372 0.08597559272 0) (-0.001094657022 0.08738356763 0) (-0.001017229832 0.08738293139 0) (-0.001089871519 0.08766516783 0) (-0.001009834426 0.08766438394 0) (-0.001103930393 0.08682074404 0) (-0.00103126232 0.08682034785 0) (-0.001099381398 0.08710192784 0) (-0.0010243918 0.08710142506 0) (-0.001105659931 0.08541530164 0) (-0.001028449457 0.08541467987 0) (0.0008903084468 0.08369334418 0) (0.0008126338515 0.0836942955 0) (0.0008915806189 0.08341075097 0) (0.0008171031821 0.08341108061 0) (-0.001189928767 0.082885283 0) (-0.001272329704 0.08295649346 0) (-0.001266282818 0.08253424841 0) (-0.00118342599 0.08260364826 0) (-0.001742815851 0.07726792779 0) (-0.001670513638 0.07726750787 0) (-0.0008180405819 0.07736462538 0) (-0.0008162693072 0.07743465924 0) (0.003611970339 0.09033205146 0) (0.003313839459 0.09033550822 0) (0.003014247374 0.09091121156 0) (0.003014142392 0.09062713579 0) (0.003313847456 0.09062073267 0) (0.0036119797 0.09061748487 0) (0.002716010187 0.09091438951 0) (0.004722371752 0.08959663782 3.52579077e-13) (0.004203552115 0.09106610223 3.583244812e-13) (0.003486852186 0.07873906347 3.586853037e-13) (0.003498786301 0.07932227402 0) (0.002904689232 0.0793246648 0) (0.002899095845 0.07904415392 0) (0.002909798877 0.07960510047 0) (0.002613337544 0.07960621366 0) (0.004576609332 0.07776050353 3.492622858e-13) (0.004084455122 0.0795016353 3.570754803e-13) (-0.0001980195887 0.07897884382 0) (-0.0002743460091 0.0789091401 0) (0.001296362755 0.0804529168 0) (0.001298677241 0.08059333212 0) (0.001448513463 0.08073363301 0) (0.001446223648 0.0805929955 0) (0.001443895419 0.08045247578 0) (0.001450763415 0.0808741663 0) (0.001729806691 0.07988984036 0) (0.00173474911 0.08017066896 0) (-0.0002580888213 0.09043278639 0) (-0.0002650118675 0.09036126589 0) (-0.000447008591 0.09027105316 0) (-0.0003636820989 0.09027917228 0) (0.0002965258474 0.09026988725 0) (0.0002105705607 0.09027762291 0) (0.0001101920012 0.0904319343 0) (0.0001125063348 0.09035992638 0) (0.001368827074 0.09065531667 0) (0.001518151622 0.0906532653 0) (0.00181619629 0.0909326069 0) (0.001812443128 0.09121988818 0) (0.001671616994 0.09021929513 0) (0.001519345415 0.09051006992 0) (0.001521312686 0.09036531656 0) (0.001671151262 0.09036197795 0) (0.001369634244 0.09051291792 0) (0.001077870992 0.08915024485 0) (0.001000669058 0.0890787745 0) (-0.001705868762 0.08499760344 0) (-0.0017067082 0.08485706094 0) (-0.002003495355 0.08471828132 0) (-0.001855482358 0.0847173931 0) (-0.00200032053 0.08528043945 0) (-0.001852216112 0.08527955063 0) (-0.001705029409 0.08513813288 0) (0.0001870000143 0.08003228744 0) (0.000112055379 0.08010347533 0) (0.0007124945662 0.0807348478 0) (0.0008546578249 0.08045359404 0) (0.0008570327293 0.0805940612 0) (-0.0016645454 0.0786734189 0) (-0.00159103041 0.07860271053 0) (0.0009994158892 0.08879267788 0) (0.001077338872 0.08872156197 0) (-0.002006633642 0.08415571806 0) (-0.001858672972 0.08415481712 0) (-0.001711577606 0.08401341303 0) (-0.001261035834 0.08415091429 0) (-0.001260028273 0.08422120129 0) (-0.001178757164 0.08429078129 0) (-0.001187691286 0.08457270618 0) (-0.001264937022 0.0847139284 0) (-0.001264317524 0.08464359159 0) (-0.001589857692 0.07909428776 0) (-0.001588358697 0.07902382766 0) (-0.001662857045 0.07895395528 0) (0.0001089113256 0.07968102909 0) (0.0001833849758 0.07975131957 0) (0.0003458616654 0.08087644478 0) (0.0004191657872 0.08080564637 0) (0.001823199214 0.08921295968 0) (0.001674589256 0.08921443563 0) (0.001525936595 0.0893593724 0) (0.001526045327 0.08950202247 0) (0.0004243419128 0.0812282622 0) (0.0003491892704 0.08115819818 0) (0.0009106304004 0.09067402634 0) (0.0009158258068 0.09052719481 0) (0.0007660105114 0.09038909845 0) (0.0007699072762 0.09024280697 0) (0.0007712654591 0.09016978447 0) (0.0006932609927 0.09024602286 0) (0.0008063330671 0.0822828619 0) (0.0007316195407 0.0823538393 0) (-0.001007518243 0.08936605862 0) (-0.0009320045147 0.08929401545 0) (-0.00118499846 0.08400985669 0) (-0.00126217096 0.08408069343 0) (-0.001269514463 0.08365918886 0) (-0.001192615971 0.08372899333 0) (-0.001187250267 0.0851350389 0) (-0.001259651027 0.08527596826 0) (-0.001260458425 0.0852057322 0) (-0.001264856742 0.08478422146 0) (-0.001191928159 0.08485411715 0) (0.001042918897 0.08404486035 0) (0.000965342123 0.08397519092 0) (-0.001664062194 0.07923541175 0) (-0.001591056471 0.07916471978 0) (-0.001587349626 0.07965634576 0) (-0.001588211647 0.07958634514 0) (-0.001662343368 0.07951661404 0) (-0.0008196553302 0.07729476029 0) (-0.0008986428634 0.0772262625 0) (-0.0005142715091 0.07792674045 0) (-0.0005128139376 0.07799673717 0) (-0.0004382191677 0.07806697462 0) (0.0004571889254 0.09033189592 0) (0.0003802258757 0.09026200567 0) (-0.001574024108 0.07697887259 0) (-0.001501740762 0.07683956354 0) (-0.001499385601 0.07691020745 0) (-0.00121164712 0.07684237101 0) (-0.001216846629 0.07691737434 0) (-0.001041193448 0.0769652055 0) (-0.001144685101 0.07698521142 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.345926735e-07 5.609421027e-06 2.775557562e-17) (-5.435104473e-06 0.0001510757646 5.273559367e-16) (0 0 0) (-1.875352573e-05 0.0007722907001 2.706168623e-15) (-2.041008883e-05 0.001107051747 3.871902798e-15) (-1.746284374e-05 0.001387050076 4.857225733e-15) (-5.777724239e-07 4.610854402e-05 1.665334537e-16) (-1.47235159e-06 0.001635344973 5.731526365e-15) (7.769404638e-06 0.001571989555 5.50948176e-15) (1.501406469e-05 0.001392165231 4.871103521e-15) (5.032477783e-07 4.695716838e-05 1.665334537e-16) (1.751990107e-05 0.0007798289733 2.733924198e-15) (1.239861715e-05 0.0004380115376 1.526556659e-15) (5.326281373e-06 0.0001559757189 5.412337245e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.723651436e-05 0.001338878065 4.801714582e-15) (-0.000199535034 0.002994371447 1.071365219e-14) (-0.00031069319 0.005123231768 1.834643548e-14) (-0.0001269480225 0.002104214949 7.494005416e-15) (-2.251864634e-05 0.0003752489848 1.33226763e-15) (-0.0004964768267 0.01020465509 3.65402153e-14) (-0.0005490283959 0.01287129231 4.608813331e-14) (-0.0005664622628 0.01545210556 5.533073999e-14) (-0.0003485750546 0.009549779754 3.400058013e-14) (-0.0001782267371 0.004904954131 1.737499034e-14) (-0.0004911729216 0.0199065907 7.127631818e-14) (-0.0004036855449 0.02160374248 7.735478924e-14) (-0.000290418444 0.02286502344 8.186507028e-14) (-0.0001963827529 0.01548011236 5.512257317e-14) (-0.0001175072274 0.009278340054 3.284872374e-14) (-1.781306424e-05 0.02390651665 8.55981952e-14) (0.0001236157265 0.02365197402 8.46822612e-14) (0.0002562517757 0.02289164426 8.196221479e-14) (0.0001717060057 0.01550109167 5.519196211e-14) (0.0001019299694 0.009293798067 3.290423489e-14) (0.0004613439249 0.01995648886 7.145672942e-14) (0.0005200173372 0.01788601529 6.403211295e-14) (0.0005435482945 0.01551738022 5.556666238e-14) (0.0003339307018 0.009598636148 3.418099137e-14) (0.0001706510969 0.004937649976 1.748601264e-14) (0.0004821963637 0.01027424988 3.679001548e-14) (0.0004040665196 0.007640578738 2.735311977e-14) (0.0003049595768 0.005183042412 1.85546023e-14) (0.0001251777122 0.002140196356 7.618905506e-15) (2.264405154e-05 0.0003893807704 1.373900993e-15) (9.721185072e-05 0.001373929619 4.912736884e-15) (2.426029007e-05 0.0003162179413 1.1379786e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001290139275 0.001306601032 4.787836794e-15) (-0.0003377644206 0.003647153202 1.335043187e-14) (-0.0006042866395 0.006988142061 2.559064072e-14) (-0.0003462162186 0.004025696463 1.465494393e-14) (-0.0001523113502 0.001780767841 6.439293543e-15) (-0.001180862227 0.01591837401 5.828670879e-14) (-0.001435415091 0.02109904794 7.727152251e-14) (-0.001638878848 0.02648432263 9.69779812e-14) (-0.001241846138 0.02016992985 7.344125308e-14) (-0.0008795474312 0.01435742449 5.198619313e-14) (-0.001839359984 0.03709759545 1.358357871e-13) (-0.001823990046 0.0419928304 1.537658889e-13) (-0.00173180441 0.04643744605 1.70044534e-13) (-0.00141656809 0.03815297655 1.38916656e-13) (-0.001110306788 0.03003267427 1.087324675e-13) (-0.00134080572 0.05358482059 1.962180418e-13) (-0.001061092035 0.05616045581 2.056549375e-13) (-0.0007410113126 0.05802370516 2.124828091e-13) (-0.000625289836 0.04905893491 1.786348847e-13) (-0.0005089078708 0.0399840203 1.447730824e-13) (-3.217693288e-05 0.05953535315 2.180200465e-13) (0.0003293969072 0.05917152788 2.166877788e-13) (0.0006775883324 0.05806662839 2.126632204e-13) (0.0005673863628 0.04909926006 1.788014181e-13) (0.0004577146888 0.0400206418 1.449118603e-13) (0.001280465937 0.05366927425 1.965649865e-13) (0.001510126072 0.05042875083 1.846856001e-13) (0.001677467114 0.04655913189 1.705302566e-13) (0.00136899357 0.03826370442 1.393468674e-13) (0.001070386254 0.03012992585 1.0909329e-13) (0.001794650173 0.03724655106 1.364186542e-13) (0.001737905638 0.03203173955 1.173228181e-13) (0.001607329302 0.0266434643 9.758860386e-14) (0.001217237089 0.02030557322 7.394085344e-14) (0.0008618557024 0.014468188 5.238864897e-14) (0.001164141635 0.0160630388 5.882794252e-14) (0.0008849286834 0.01126432194 4.124478536e-14) (0.0005985233304 0.007068918935 2.589595205e-14) (0.0003451931824 0.004103095536 1.494637747e-14) (0.0001531374818 0.001831000372 6.633582572e-15) (0.0001518216271 0.001562473527 5.717648577e-15) (2.428236773e-05 0.0002349444451 8.604228441e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.173314746e-05 0.0005961644993 2.248201625e-15) (-0.0003087232857 0.002706716354 1.015854068e-14) (-0.0001567760155 0.001383428626 5.162537065e-15) (-3.726925806e-05 0.0003314473478 1.221245327e-15) (-0.001110100612 0.01094202607 4.102274076e-14) (-0.001586643258 0.01668349561 6.253331186e-14) (-0.002004876556 0.02261964342 8.477940572e-14) (-0.001631344301 0.01854788849 6.911138328e-14) (-0.001261407181 0.01442769699 5.344336085e-14) (-0.002843013404 0.03748244553 1.404570904e-13) (-0.003131869832 0.04504834473 1.687955331e-13) (-0.003311310915 0.05238326385 1.962874308e-13) (-0.002905371717 0.04621979706 1.721817133e-13) (-0.002483537907 0.03972103103 1.471184286e-13) (-0.003318751123 0.06555464133 2.456229664e-13) (-0.003152327914 0.07109473981 2.66384137e-13) (-0.002885374351 0.07581959472 2.840783164e-13) (-0.002630661582 0.06950954755 2.589317649e-13) (-0.002348229875 0.06236950675 2.310096558e-13) (-0.002110735456 0.08273810939 3.100159018e-13) (-0.001635924897 0.08499865225 3.184952302e-13) (-0.001123871046 0.08654468762 3.242961455e-13) (-0.001046698131 0.08106175126 3.019945405e-13) (-0.0009551749597 0.07431819432 2.75279799e-13) (-4.170111097e-05 0.08774009037 3.287925487e-13) (0.000505114765 0.0874572666 3.277517147e-13) (0.001040967736 0.08657751149 3.244626789e-13) (0.0009693424317 0.08110059999 3.021749517e-13) (0.00088258737 0.07436067673 2.754602102e-13) (0.002030704753 0.08280542078 3.103489687e-13) (0.002456135052 0.079765871 2.989830605e-13) (0.002812186854 0.07588952098 2.844530167e-13) (0.002559987491 0.06963069862 2.594729986e-13) (0.002282445973 0.06250190692 2.315647674e-13) (0.003282118004 0.06617450032 2.480515793e-13) (0.00334815317 0.05994149734 2.247091402e-13) (0.003297394849 0.05301152692 1.987299214e-13) (0.002852427214 0.04633206042 1.726674359e-13) (0.002438561161 0.03990832098 1.478678291e-13) (0.002890743115 0.0385920588 1.447175713e-13) (0.002544901939 0.03136828626 1.176281295e-13) (0.002124622833 0.02432892283 9.123257705e-14) (0.001709977656 0.01970873121 7.346900865e-14) (0.001308985532 0.01519624147 5.631606292e-14) (0.001183598192 0.01186760272 4.449218771e-14) (0.0007367183155 0.006953813003 2.60624855e-14) (0.0003615195077 0.003223176315 1.208755318e-14) (0.0001952885289 0.001751823082 6.52256027e-15) (7.355753334e-05 0.0006638706175 2.456368442e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.061456963e-05 0.0002965881258 1.1379786e-15) (-8.575831341e-05 0.0006223977636 2.414735079e-15) (-3.528664693e-07 2.608776893e-06 1.387778781e-17) (-0.0001842801859 0.001420877365 5.453970608e-15) (-0.0006002272746 0.004868939796 1.870725796e-14) (-0.001129494987 0.009665835668 3.71092046e-14) (-0.0009153366806 0.007881108895 3.008704397e-14) (-0.0006997698443 0.006061620368 2.29954944e-14) (-0.002397447714 0.02305358093 8.851253064e-14) (-0.003032766543 0.03108578547 1.193350974e-13) (-0.003607753893 0.03959061284 1.519895321e-13) (-0.00325702454 0.03596250575 1.372235658e-13) (-0.002875679902 0.03194811512 1.211808431e-13) (-0.004437474356 0.05670013635 2.176453462e-13) (-0.004646090681 0.0646807649 2.482597461e-13) (-0.004701920706 0.07191340626 2.760014439e-13) (-0.004441180989 0.06845083022 2.611244554e-13) (-0.00408114316 0.06349602976 2.407518629e-13) (-0.004394951938 0.08387295372 3.218397771e-13) (-0.004023670503 0.08775647066 3.367028878e-13) (-0.003572428549 0.09073526458 3.481243072e-13) (-0.003457469434 0.08870775795 3.382988334e-13) (-0.00329516608 0.08536817528 3.236300117e-13) (-0.002465505251 0.09337933995 3.582550923e-13) (-0.00186092323 0.09351623379 0) (-0.001255384243 0.0935147348 0) (-0.001248483809 0.09394792231 3.582967256e-13) (-0.001226171735 0.09307266708 3.528705106e-13) (-5.676290036e-05 0.09350827867 0) (0.0005437181101 0.09350423972 0) (0.001151122537 0.09349959394 0) (0.001148195338 0.09393898763 3.583244812e-13) (0.001130598326 0.09308103653 3.529676551e-13) (0.002368202561 0.09336775973 3.58338359e-13) (0.002949825716 0.09256187372 3.552713679e-13) (0.003485584299 0.0907645571 3.484157407e-13) (0.003370847855 0.08879636048 3.387984338e-13) (0.00322856357 0.08572904421 3.251565683e-13) (0.004323350758 0.08408412479 3.228806111e-13) (0.004573066917 0.07910680751 3.037986529e-13) (0.004685798162 0.07302031275 2.804284582e-13) (0.004400015977 0.06900125488 2.634004126e-13) (0.004067448921 0.06421982893 2.436800761e-13) (0.004467370508 0.05811065155 2.231687057e-13) (0.004139158932 0.04973424909 1.909999936e-13) (0.003683251267 0.04111969452 1.579153475e-13) (0.003330122234 0.03741265073 1.428163143e-13) (0.002946140816 0.03330867043 1.263988914e-13) (0.002501221221 0.02445353351 9.39109901e-14) (0.001853061498 0.01705548249 6.550315845e-14) (0.001179046695 0.01025042018 3.935740622e-14) (0.001005716642 0.008800460781 3.358424649e-14) (0.0007787108792 0.006857373023 2.602085214e-14) (9.116744046e-05 0.0006753091412 2.609024108e-15) (0 0 0) (0 0 0) (2.890196275e-06 2.030931996e-05 8.326672685e-17) (0 0 0) (-1.392455911e-05 9.471072638e-05 3.747002708e-16) (-0.000228173614 0.001624913493 6.439293543e-15) (-0.0002587221745 0.00183076589 7.299716387e-15) (-0.0001366518241 0.000985621649 3.844147223e-15) (-0.0005901852471 0.004438950535 1.745825706e-14) (-0.001164639099 0.009214995848 3.624878175e-14) (-0.001852225553 0.01545978588 6.081246617e-14) (-0.001688036017 0.01417897898 5.544176229e-14) (-0.00149406168 0.01262806433 4.907185769e-14) (-0.003333287745 0.03125443236 1.229433222e-13) (-0.0040176083 0.04014800978 1.579153475e-13) (-0.004602286153 0.04922700444 1.936228955e-13) (-0.004378189868 0.04713776396 1.842692665e-13) (-0.004189700953 0.04540259067 1.764005608e-13) (-0.005341328635 0.06648231214 2.614575223e-13) (-0.005457717225 0.07398066377 2.909478214e-13) (-0.005420839538 0.08067040715 3.172462293e-13) (-0.005306279065 0.07951228376 3.107791802e-13) (-0.005150441267 0.07770090015 3.018557626e-13) (-0.004824717713 0.08919443379 3.507749646e-13) (-0.004325828089 0.09097218074 3.577832475e-13) (-0.003741548517 0.0912255879 0) (-0.003733263342 0.09179309258 3.587824482e-13) (-0.003712524238 0.09214926578 3.579359031e-13) (-6.717715002e-05 0.09183391751 0) (0.0002418371041 0.09183204319 0) (0.0005577779202 0.09182800776 0) (0.0005557794568 0.09210778457 0) (0.0005533557658 0.0923874466 0) (0.005121732241 0.08643742496 3.401723347e-13) (0.005375783157 0.08168818944 3.215067101e-13) (0.005265539447 0.08054336139 3.150257832e-13) (0.005116846242 0.07876344383 3.061717546e-13) (0.005419737841 0.06871174231 2.704503288e-13) (0.005182984351 0.06069283343 2.388922393e-13) (0.004782691078 0.05203480337 2.048083925e-13) (0.004531210777 0.04960849523 1.940669847e-13) (0.004228443068 0.04659465643 1.811467643e-13) (0.003584818286 0.03416050278 1.344480083e-13) (0.00285999422 0.02566053107 1.009886619e-13) (0.002114238157 0.01792158856 7.052691764e-14) (0.001916926661 0.01635142249 6.394884622e-14) (0.001689814811 0.01450497727 5.637157408e-14) (0.0003752304813 0.002710776506 1.072752998e-14) (4.286766279e-05 0.000297489071 1.165734176e-15) (6.839808222e-05 0.0004716932911 1.859623566e-15) (9.053345284e-05 0.0006203997116 2.47024623e-15) (1.896667196e-05 0.0001324517326 5.273559367e-16) (-5.090523058e-05 0.0003375663344 1.373900993e-15) (-0.0003404254761 0.002363283114 9.603429163e-15) (-0.0003664894979 0.002527950682 1.032507413e-14) (-0.0002747660835 0.001931967164 7.743805597e-15) (-0.0008279617685 0.006069378111 2.448041769e-14) (-0.001483018919 0.01143532633 4.612976667e-14) (-0.002236806259 0.01819334524 7.338574193e-14) (-0.002112430885 0.01729299899 6.930567231e-14) (-0.002067858624 0.01703764259 6.786238238e-14) (-0.003795801545 0.03467537915 1.398603455e-13) (-0.004490082306 0.04370796236 1.762895385e-13) (-0.005065488521 0.05276861946 2.128297538e-13) (-0.004948583169 0.05188986867 2.079586503e-13) (-0.004888429724 0.0515922148 2.054745263e-13) (-0.005733949179 0.06947131771 2.801647803e-13) (-0.005793616044 0.07641720085 3.081840338e-13) (-0.005668141466 0.08202829603 3.308187058e-13) (-0.005622614402 0.08193158754 3.283345817e-13) (-0.005584946203 0.08194283025 3.263084247e-13) (0.002716385088 0.08948779828 0) (0.003013997836 0.08948500055 0) (0.0030144888 0.08977018136 0) (0.003015043422 0.09005511007 0) (0.005290425356 0.08720194282 3.519545766e-13) (0.005655510624 0.08394438283 3.388123115e-13) (0.005615934855 0.08384862999 3.362726764e-13) (0.005571873172 0.08366967748 3.334554854e-13) (0.005881861823 0.07281920678 2.93917668e-13) (0.005718570539 0.06537540163 2.638722574e-13) (0.005373222528 0.05705776343 2.302880109e-13) (0.005214179539 0.05571152691 2.234323837e-13) (0.005125878653 0.05509805711 2.195743587e-13) (0.004215416614 0.03918977716 1.581651476e-13) (0.003470605253 0.03037391104 1.225686219e-13) (0.002677230655 0.02213282751 8.931744233e-14) (0.002471073159 0.02055660519 8.243405958e-14) (0.002395633632 0.02005415112 7.99083022e-14) (0.0006152452479 0.004334151925 1.759703494e-14) (0.0001699380518 0.001149963311 4.635181128e-15) (0.0001908004468 0.001283069274 5.218048216e-15) (0.000198525417 0.001326617548 5.412337245e-15) (0.0001384385617 0.0009427071091 3.774758284e-15) (-8.555718528e-05 0.0005528771067 2.303712776e-15) (-0.0004203352327 0.002843618035 1.185163079e-14) (-0.0004373952412 0.002939811492 1.232347557e-14) (-0.0003863910641 0.002648086041 1.089406343e-14) (-0.000937284406 0.006696870178 2.772782004e-14) (-0.001621927616 0.01218998475 5.045963647e-14) (-0.002396020516 0.01899333735 7.860379014e-14) (-0.002360495372 0.01883343306 7.743805597e-14) (-0.002317974507 0.0186138252 7.605027719e-14) (-0.003970629867 0.03534188591 1.462580057e-13) (-0.004660859296 0.04419868387 1.828953655e-13) (-0.005225445671 0.05301857605 2.193800697e-13) (-0.005191553201 0.05302553256 2.180061687e-13) (-0.005150914742 0.05295920896 2.163408341e-13) (-0.005856810748 0.06908093517 2.858407955e-13) (-0.005893000484 0.07564936308 3.130273818e-13) (-0.005742717185 0.08086129594 3.34593464e-13) (-0.005727982732 0.08121079481 3.338579413e-13) (-0.005710495732 0.08152021463 3.329836407e-13) (0.002704263712 0.08721766248 0) (0.003001345969 0.08721563098 0) (0.003003340926 0.08749911712 0) (0.00300523089 0.08778252557 0) (0.005316753394 0.08568146542 3.548272787e-13) (0.005718408691 0.08295769634 3.435723928e-13) (0.005716900735 0.08341195565 3.431976925e-13) (0.005704042155 0.08370336683 3.42184614e-13) (0.006013894493 0.0727193617 3.01175751e-13) (0.005879560897 0.06562899949 2.71810352e-13) (0.005557359205 0.05760444379 2.385730502e-13) (0.005540166676 0.05777580666 2.377265051e-13) (0.005487747472 0.05757732531 2.35381159e-13) (0.004422274792 0.04011098666 1.661032423e-13) (0.003675645432 0.03137900832 1.299377272e-13) (0.002870496558 0.02314471505 9.582612481e-14) (0.002847524324 0.02310461762 9.50489687e-14) (0.002782871804 0.02272241396 9.287015601e-14) (0.0006718566141 0.004613982592 1.922073611e-14) (0.0002296273121 0.001514962382 6.272760089e-15) (0.0002238970232 0.001467686929 6.120104423e-15) (0.000205565881 0.001338850271 5.620504062e-15) (0.0002211907725 0.001468675622 6.036837696e-15) (-0.0001261168709 0.0007937175866 3.400058013e-15) (-0.0005034447409 0.003317310983 1.419697693e-14) (-0.0005260213098 0.003442906758 1.482147738e-14) (-0.0004585887423 0.003062100647 1.293409824e-14) (-0.00104903909 0.007301529681 3.103073354e-14) (-0.001759283517 0.01287955221 5.473399511e-14) (-0.002550554305 0.01969242368 8.366918269e-14) (-0.002506546488 0.01948198729 8.222589276e-14) (-0.002464867706 0.01928507922 8.086586956e-14) (-0.004134579715 0.03583462244 1.522393323e-13) (-0.004818265686 0.04448391679 1.889738366e-13) (-0.005370163214 0.0530370667 2.253058851e-13) (-0.005329463406 0.0529949556 2.236405505e-13) (-0.005290612632 0.05296567355 2.220446049e-13) (-0.005963153331 0.06843429945 2.906980212e-13) (-0.005976632857 0.07463197115 3.170241847e-13) (-0.005803302185 0.07946758338 3.375633106e-13) (-0.005786788806 0.07980091854 3.367445212e-13) (-0.005770742323 0.08013756934 3.359396095e-13) (0.002684780818 0.08495426324 0) (0.00298151292 0.08495261279 0) (0.002984217154 0.08523470984 0) (0.00298694947 0.0855171071 0) (0.005266637428 0.08300190579 3.529398995e-13) (0.005640576014 0.07998312362 3.401029458e-13) (0.005673465547 0.08090949606 3.417682803e-13) (0.005691253997 0.08162808963 3.425315587e-13) (0.005846911153 0.06904373427 2.935984789e-13) (0.005676914377 0.06186168779 2.630395901e-13) (0.005380389522 0.05442531352 2.314259895e-13) (0.005466571904 0.05563755693 2.350064587e-13) (0.005496026466 0.05628051524 2.361583151e-13) (0.004235730197 0.03747142139 1.59317004e-13) (0.003494731321 0.02909165917 1.236788449e-13) (0.002702684085 0.0212448962 9.031664305e-14) (0.002777489308 0.02197294464 9.278688928e-14) (0.002801727845 0.02230617135 9.357792319e-14) (0.0005195421075 0.003476623419 1.487698853e-14) (0.0001792665841 0.001152492485 4.884981308e-15) (0.0001374057017 0.0008776042244 3.747002708e-15) (0.0001087523341 0.0006900327088 2.969846591e-15) (0.0001991607218 0.001288757364 5.440092821e-15) (-0.0001888410463 0.001156704799 5.079270338e-15) (-0.0006171518092 0.003957759118 1.740274591e-14) (-0.0006304055358 0.004014958067 1.776356839e-14) (-0.0005501762636 0.003576767594 1.551536677e-14) (-0.001177943578 0.007980586006 3.48332474e-14) (-0.001915007402 0.01364557145 5.956346527e-14) (-0.002723762134 0.02046666446 8.934519791e-14) (-0.00267943708 0.02027221345 8.788803019e-14) (-0.002634878791 0.02007130268 8.643086247e-14) (-0.004315434185 0.0363908049 1.588312815e-13) (-0.004990726238 0.04482284786 1.956351747e-13) (-0.005527595144 0.05309712176 2.317313008e-13) (-0.005487737972 0.05308546826 2.301075996e-13) (-0.005447416254 0.05306381055 2.284561429e-13) (-0.006076712813 0.06780078105 2.958883139e-13) (-0.0060646038 0.07361192368 3.212430322e-13) (-0.005865442853 0.07805549732 3.406441795e-13) (-0.005850031736 0.07841412571 3.398809012e-13) (-0.005834261409 0.07876529589 3.391037451e-13) (0.002659758944 0.08269868444 0) (0.002956284043 0.08269733574 0) (0.002959585639 0.08297890645 0) (0.002963111478 0.08326081529 0) (0.005146777575 0.07932378653 3.465561171e-13) (0.005449679966 0.07551830335 3.299305273e-13) (0.005504491626 0.07672092633 3.329003739e-13) (0.005565406866 0.07801727 3.36231043e-13) (0.005536743784 0.0638270967 2.788463904e-13) (0.005305923465 0.05641734525 2.464695115e-13) (0.004901488051 0.04835989605 2.112615638e-13) (0.005092819518 0.05056530744 2.193939475e-13) (0.005193959659 0.05189230743 2.236266727e-13) (0.003754024011 0.03237317227 1.414146578e-13) (0.003023267115 0.02452678065 1.071365219e-13) (0.002263243079 0.01733497593 7.571721028e-14) (0.002391494851 0.01843733489 7.997769114e-14) (0.002475168759 0.01920699033 8.27532487e-14) (0.0002828238218 0.001843017178 8.10462808e-15) (6.789345466e-05 0.0004250963234 1.859623566e-15) (3.100256155e-05 0.0001928195513 8.465450563e-16) (1.911794992e-05 0.000118103901 5.134781489e-16) (9.172869829e-05 0.0005781744211 2.511879593e-15) (-0.0002754265786 0.00164064339 7.410738689e-15) (-0.0007607189029 0.004744001078 2.145505995e-14) (-0.0007744378927 0.004795320738 2.182976022e-14) (-0.000662303573 0.004188863559 1.867950239e-14) (-0.001278161253 0.008422374898 3.780309399e-14) (-0.002033203855 0.01408979662 6.324107904e-14) (-0.002936838554 0.02145866454 9.62979696e-14) (-0.002877947303 0.0211778372 9.438283488e-14) (-0.002822774817 0.02091830094 9.257872247e-14) (-0.004533690191 0.03716505677 1.667693761e-13) (-0.005197039807 0.04536604495 2.035593916e-13) (-0.00571421994 0.05333947144 2.393363285e-13) (-0.005663408305 0.05325009161 2.372685382e-13) (-0.005615295386 0.05317893629 2.353117701e-13) (-0.006208097391 0.06728364114 3.018835182e-13) (-0.006164416781 0.07266734093 3.260447468e-13) (-0.005933679681 0.0766745751 3.440303598e-13) (-0.005915685653 0.07701346471 3.431283035e-13) (-0.005898256309 0.07735573918 3.422678807e-13) (0.002628008675 0.08044879187 0) (0.004942363802 0.07448055185 3.345518307e-13) (0.005156661107 0.06981171563 3.135824933e-13) (0.005245427383 0.07142825881 3.185923747e-13) (0.005309697203 0.0727254002 3.221312106e-13) (0.005071366755 0.05703830903 2.561839629e-13) (0.004768006296 0.04943640798 2.220446049e-13) (0.004308430651 0.04143581154 1.861011345e-13) (0.004493853389 0.04349913421 1.940114736e-13) (0.004676099513 0.04555427514 2.017691569e-13) (0.003039049696 0.02552741438 1.146444051e-13) (0.002315990917 0.01829811723 8.215650382e-14) (0.001602532517 0.01195136965 5.366540545e-14) (0.001777019527 0.01334216647 5.949407633e-14) (0.001982124041 0.01498195084 6.633582572e-14) (7.831257955e-05 0.0004966605792 2.248201625e-15) (3.289998998e-07 2.005008436e-06 1.387778781e-17) (0 0 0) (0 0 0) (7.321458381e-06 4.492398408e-05 1.942890293e-16) (-0.000399802358 0.002317426115 1.078304113e-14) (-0.0009505157915 0.00576815689 2.683964162e-14) (-0.0009830218528 0.005940626246 2.783884234e-14) (-0.0008533594094 0.005246135229 2.405020627e-14) (-0.001607671613 0.0102933237 4.754530103e-14) (-0.002415209623 0.01626055821 7.509270983e-14) (-0.003264991451 0.02317439215 1.070116218e-13) (-0.0031698805 0.02266582993 1.039168751e-13) (-0.003021806709 0.02176530269 9.907352716e-14) (-0.004855384154 0.03865082389 1.784544734e-13) (-0.005494131621 0.04656276803 2.149808109e-13) (-0.005976061108 0.05414752279 2.499805918e-13) (-0.005874192317 0.05363046921 2.458172554e-13) (-0.005824175917 0.05357181503 2.437910984e-13) (-0.006380523402 0.06709455224 3.097522239e-13) (-0.006289395685 0.07191888406 3.320121955e-13) (-0.006013645758 0.07536439636 3.479438959e-13) (-0.005990610169 0.07566491528 3.468059173e-13) (-0.005971300605 0.07600277637 3.458761055e-13) (-0.002473695991 0.07853683587 0) (-0.002326165715 0.07853602917 0) (-0.002325638956 0.07867669126 0) (-0.002325166741 0.07881700106 0) (8.059654616e-05 0.07848940995 0) (0.0002259215439 0.07848991067 0) (0.0002300491366 0.0786297656 0) (0.002867252457 0.07764400192 0) (0.003448378577 0.07730246804 3.572142582e-13) (0.003470099159 0.07806419049 3.581579477e-13) (0.004351090093 0.07237590186 3.344824417e-13) (0.004604769097 0.06786088083 3.136102489e-13) (0.004700159304 0.06215799805 2.872563298e-13) (0.004819910506 0.06411679289 2.94181346e-13) (0.004955182933 0.06630446641 3.020639294e-13) (0.004386098518 0.0480971457 2.222666495e-13) (0.003992164267 0.04033811283 1.864203236e-13) (0.00354983254 0.03325287376 1.536548666e-13) (0.003776377432 0.03561200798 1.633831959e-13) (0.003956719052 0.03755979054 1.710992459e-13) (0.002322563886 0.01899120209 8.774925231e-14) (0.001668192997 0.01282713841 5.925815394e-14) (0.001053930549 0.007647851498 3.533284776e-14) (0.001196008839 0.008739044448 4.007905119e-14) (0.001313002241 0.009659924427 4.399258735e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002900720338 0.001637322709 7.854827899e-15) (-0.0007728812927 0.004567843388 2.189914916e-14) (-0.0006556570233 0.003846050012 1.858235787e-14) (-0.0009412512992 0.005646375756 2.665923038e-14) (-0.00155423074 0.009710558593 4.618527782e-14) (-0.00234247249 0.0153923863 7.320533069e-14) (-0.003173120402 0.02198600767 1.045552533e-13) (-0.003301805708 0.02304893828 1.088018564e-13) (-0.003375703724 0.02374070411 1.112443471e-13) (-0.004730950447 0.03677919794 1.74887882e-13) (-0.005358708251 0.0443638014 2.109423747e-13) (-0.005834599961 0.05165758842 2.456090886e-13) (-0.005968153745 0.05324319197 2.51271226e-13) (-0.006042957729 0.05432217781 2.54476995e-13) (-0.006244650235 0.06421733047 3.053113318e-13) (-0.006165915871 0.06899083714 3.280153926e-13) (-0.005908986503 0.07251341319 3.447658825e-13) (-0.005962373081 0.07374880165 3.480549182e-13) (-0.005988478151 0.07465909308 3.497480083e-13) (0.0001369212736 0.07598317128 0) (0.0004362191561 0.07598121673 0) (0.0004380545862 0.07626227459 0) (0.002804379066 0.0747853284 3.558403572e-13) (0.003308938649 0.07277837996 3.46306317e-13) (0.003341655518 0.07398284789 3.494288192e-13) (0.003382477913 0.07537855149 3.534117443e-13) (0.003980569916 0.06477436733 3.08239545e-13) (0.004101513729 0.05904136037 2.809558142e-13) (0.0041055107 0.05298266002 2.521316489e-13) (0.004284795808 0.0556263518 2.627620344e-13) (0.004425746842 0.05783170257 2.711719738e-13) (0.003647171792 0.03898729748 1.855182674e-13) (0.003212507753 0.0315981817 1.503658309e-13) (0.002685732695 0.02448437199 1.164901509e-13) (0.002883733068 0.02646763612 1.250111126e-13) (0.003135103909 0.02897180448 1.358357871e-13) (0.001499582104 0.01192858768 5.676015213e-14) (0.0009346335421 0.006988559067 3.325117959e-14) (0.0004613139934 0.003254475851 1.548761119e-14) (0.0006098923666 0.004333286664 2.046973702e-14) (0.0007286723262 0.005214109359 2.443878433e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.97014499e-05 0.0001626283067 8.049116929e-16) (-0.000259466187 0.001487678629 7.355227538e-15) (-0.0001444849101 0.0008220492341 4.093947403e-15) (-0.0005251869761 0.003057532925 1.487698853e-14) (-0.0008812731926 0.005342897319 2.620126338e-14) (-0.001502634293 0.009581626916 4.696243394e-14) (-0.002198936472 0.0147855214 7.248368572e-14) (-0.002498655052 0.01692782992 8.235079285e-14) (-0.002766008991 0.01888041291 9.114931032e-14) (-0.003604452337 0.02719241494 1.332822741e-13) (-0.004219573041 0.03389756482 1.661448756e-13) (-0.004725758799 0.0405963242 1.989797216e-13) (-0.005085400736 0.04401470205 2.140787547e-13) (-0.005392063741 0.04702186406 2.269712196e-13) (-0.005315863982 0.05302341675 2.598615767e-13) (-0.005377703363 0.05834790861 2.859518178e-13) (-0.005286079985 0.0628806695 3.081701561e-13) (-0.005516213753 0.06612315193 3.215899769e-13) (-0.005693092479 0.06877516057 3.319566844e-13) (-0.004700115319 0.06930074288 3.396588566e-13) (-0.004249790341 0.07121099832 3.490263634e-13) (-0.003729111022 0.07237732777 3.547717675e-13) (-0.003765979112 0.07370802519 3.58532648e-13) (-0.002574261835 0.07316542999 3.586575481e-13) (-0.001976531558 0.07318522977 0) (-0.001377934487 0.07318132067 0) (-0.001374262774 0.07374356698 0) (-0.0001806828137 0.07315827002 3.587130593e-13) (0.000417003083 0.07297930989 3.578526364e-13) (0.00100727061 0.07244148861 3.552297345e-13) (0.001019781208 0.07370056051 3.586575481e-13) (0.002107872124 0.06952325877 3.409494909e-13) (0.002577288734 0.06686032045 3.279043703e-13) (0.002962119976 0.06330550512 3.104738688e-13) (0.003088418547 0.06651107245 3.237132784e-13) (0.00318628041 0.06912157737 3.338856969e-13) (0.003396372159 0.05363753682 2.630812235e-13) (0.003417737064 0.04773182373 2.341182803e-13) (0.003302262128 0.04133391659 2.027267243e-13) (0.003548380436 0.04476685283 2.179090242e-13) (0.003758395567 0.04778328933 2.308153668e-13) (0.00269639103 0.02794840522 1.370709102e-13) (0.002247858662 0.02145629411 1.052213872e-13) (0.001745165803 0.01543812009 7.570333249e-14) (0.001977176702 0.01762808091 8.579248423e-14) (0.002183819661 0.01962143177 9.477141294e-14) (0.0007487284954 0.005779162613 2.83384427e-14) (0.0003510981341 0.002548119797 1.249000903e-14) (8.633837334e-05 0.0005913692563 2.900457652e-15) (0.0001469080503 0.001014007344 4.94049246e-15) (0.000258588742 0.001798595896 8.687495168e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.629627971e-05 0.0003178123555 1.595945598e-15) (-0.0001539084551 0.000904748765 4.579669977e-15) (-0.0004626195564 0.002860844625 1.44606549e-14) (-0.0008885066885 0.005795034755 2.930988785e-14) (-0.001208101052 0.00794026179 3.98431288e-14) (-0.001541911126 0.01021186513 5.084821453e-14) (-0.001912376687 0.01399989542 7.08044734e-14) (-0.002426282351 0.01891748913 9.567346915e-14) (-0.002893074916 0.02412503963 1.220135104e-13) (-0.003391145149 0.02848842915 1.429412144e-13) (-0.003870162847 0.03275451861 1.63050129e-13) (-0.003578976329 0.03466162616 1.752903378e-13) (-0.003763700708 0.03965187779 2.00520156e-13) (-0.00383267856 0.04426960912 2.238764729e-13) (-0.004267752936 0.04964922738 2.490924134e-13) (-0.004659426592 0.05460246239 2.717964742e-13) (-0.003633272239 0.05200616147 2.629979567e-13) (-0.003382896829 0.05501683729 2.7822189e-13) (-0.003049905371 0.05743437552 2.904620988e-13) (-0.003296653705 0.0625162633 3.1366576e-13) (-0.00349470399 0.06676230611 3.323591402e-13) (-0.00219796977 0.06055977154 3.062966547e-13) (-0.001709333359 0.06132586725 3.101824353e-13) (-0.001197448221 0.06159501129 3.115563363e-13) (-0.001279946156 0.06623450683 3.323868958e-13) (-0.001338896955 0.06979645038 3.475275623e-13) (-0.0001542881777 0.06066396843 3.068795218e-13) (0.0003519904711 0.05943409994 3.006761506e-13) (0.000830272177 0.0576571364 2.916972219e-13) (0.0008929815857 0.06271685352 3.147898608e-13) (0.0009438846742 0.06692967834 3.333167076e-13) (0.001643816072 0.0523614649 2.649269693e-13) (0.001948878696 0.04883259773 2.470801341e-13) (0.002167660725 0.04475263462 2.264299859e-13) (0.002405913711 0.05013359337 2.516736819e-13) (0.002619861739 0.05507709709 2.743361094e-13) (0.002308724394 0.03523785409 1.783018178e-13) (0.002224458178 0.03003283901 1.519617765e-13) (0.002043097293 0.02472946608 1.251221349e-13) (0.002386616579 0.0291386225 1.462718835e-13) (0.002715933407 0.03344197031 1.665750871e-13) (0.001450348846 0.01454608395 7.359390874e-14) (0.001087454063 0.01004687415 5.083433674e-14) (0.0007230105319 0.006192535615 3.133604487e-14) (0.0009739103918 0.00841018433 4.221623051e-14) (0.001234660181 0.01074891843 5.354050536e-14) (0.0001441763805 0.001078071383 5.453970608e-15) (1.132481473e-05 7.964288783e-05 4.024558464e-16) (0 0 0) (0 0 0) (5.828038381e-06 3.930305428e-05 1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.747417632e-05 0.0002368203452 1.235123115e-15) (-0.0001577567542 0.001005012653 5.204170428e-15) (-0.0003488407038 0.002240036025 1.151856388e-14) (-0.000419456176 0.002977630411 1.555700013e-14) (-0.0007008305996 0.005300983241 2.770006446e-14) (-0.001000112655 0.008094259257 4.227174166e-14) (-0.001426709823 0.01163456544 6.028511024e-14) (-0.001895174888 0.01557089247 8.00193245e-14) (-0.001546445343 0.01455024261 7.600864382e-14) (-0.001752370302 0.01794521024 9.373057885e-14) (-0.001894786766 0.02128532361 1.111888359e-13) (-0.002380281237 0.0269244436 1.394856453e-13) (-0.002875243507 0.03274864466 1.68282055e-13) (-0.001964179577 0.02737879088 1.430106034e-13) (-0.001890302904 0.0299615088 1.564998131e-13) (-0.001749914296 0.03214883173 1.679351103e-13) (-0.002100084063 0.03880692478 2.010613898e-13) (-0.002441302848 0.04538406377 2.332301019e-13) (-0.001304123345 0.03517181473 1.837280328e-13) (-0.001020560763 0.03595603087 1.87835858e-13) (-0.0007129882251 0.03623757172 1.893069035e-13) (-0.0008474747024 0.04313790535 2.235156504e-13) (-0.0009765186728 0.04982445103 2.560868184e-13) (-7.830752906e-05 0.03528455277 1.843386555e-13) (0.0002223744471 0.03406345393 1.779687508e-13) (0.0004948568883 0.03236851631 1.691147222e-13) (0.0005869699049 0.03903919539 2.023103907e-13) (0.0006752374518 0.04562171896 2.345207362e-13) (0.0009093871118 0.02769016698 1.446759379e-13) (0.00103282035 0.02480820302 1.296185381e-13) (0.001092242333 0.02165885661 1.131594818e-13) (0.001364380396 0.02733925415 1.416922135e-13) (0.001639780058 0.03319621631 1.706690345e-13) (0.001016444776 0.01494035792 7.804867863e-14) (0.0008912481604 0.01159961732 6.060429936e-14) (0.0007228982633 0.008442127153 4.410360965e-14) (0.001022999876 0.01205541845 6.247780071e-14) (0.001350572197 0.01605972721 8.255895967e-14) (0.0003321999649 0.003219229881 1.681987882e-14) (0.0001587257944 0.001417791208 7.410738689e-15) (3.802452728e-05 0.0003150430617 1.637578961e-15) (0.0001394043514 0.00116464414 6.036837696e-15) (0.0002945116554 0.002481028967 1.273980921e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.622824317e-05 0.0001272329183 6.800116026e-16) (-0.0001273397737 0.001006633749 5.384581669e-15) (-0.0003361854286 0.002678976312 1.42247325e-14) (-0.0001686294826 0.001539087268 8.326672685e-15) (-0.0002682430162 0.002666803796 1.440514374e-14) (-0.0003624914818 0.003956801552 2.137179322e-14) (-0.0006548289181 0.007201455834 3.856637232e-14) (-0.001016732808 0.01126265577 5.981326545e-14) (-0.0004923532673 0.006683175079 3.609612609e-14) (-0.000515368627 0.007965816355 4.30211422e-14) (-0.0005074469066 0.009106984997 4.918287999e-14) (-0.0007709777459 0.01392139336 7.45514761e-14) (-0.001073210839 0.01949254003 1.03528297e-13) (-0.0004063654301 0.01076520489 5.814793091e-14) (-0.0003223147648 0.01121086026 6.054878821e-14) (-0.0002245390826 0.01137272406 6.143696663e-14) (-0.0003298283322 0.01672538445 8.95811203e-14) (-0.0004491890822 0.02279451872 1.210698208e-13) (-1.845330153e-05 0.01083073025 5.849487561e-14) (7.43795618e-05 0.01014891841 5.481726184e-14) (0.0001510417688 0.009227400434 4.984901381e-14) (0.0002265706339 0.01407152892 7.537026558e-14) (0.0003113254549 0.0196699528 1.044719866e-13) (0.0002356470478 0.006837187996 3.692879336e-14) (0.000238575651 0.005482131909 2.961519918e-14) (0.0002162348279 0.004113105714 2.221833828e-14) (0.0003859445315 0.007416229457 3.973210649e-14) (0.0005940472598 0.01153437732 6.127043317e-14) (0.0001172399756 0.001658977228 8.965050924e-15) (5.970342512e-05 0.0007490165095 4.05231404e-15) (1.501982091e-05 0.0001692599698 9.159339953e-16) (9.882255565e-05 0.001123411455 6.022959909e-15) (0.0002504839062 0.002872904559 1.526556659e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.911195367e-05 0.0003127567133 1.720845688e-15) (0 0 0) (0 0 0) (-3.466448906e-09 6.039997003e-08 0) (-3.371928949e-05 0.0005924674163 3.28903571e-15) (-0.0001322478608 0.002341513827 1.28647093e-14) (-2.237111968e-06 5.774993391e-05 3.191891196e-16) (-2.647303455e-06 9.000968646e-05 4.996003611e-16) (-2.075258878e-06 0.0001033290571 5.689893001e-16) (-2.399528577e-05 0.001202935968 6.661338148e-15) (-6.931773624e-05 0.00349215772 1.917910275e-14) (-8.861703038e-08 6.210690543e-05 3.60822483e-16) (1.922615755e-07 2.432973232e-05 1.387778781e-16) (1.107792857e-08 6.429061295e-07 0) (1.059524404e-05 0.000621057459 3.441691376e-15) (4.045311526e-05 0.002400047513 1.318389842e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (1.902106498e-05 0.0003549279257 1.942890293e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.002324706393 0.07895749379 0) (-0.002324219156 0.07909810389 0) (-0.002471775468 0.07909892383 0) (0.002311478643 0.07932680162 0) (0.002015420987 0.07932772932 0) (0.00171936205 0.07932846112 0) (0.001713793675 0.07904778028 0) (0.00170760156 0.07876758678 0) (-0.002252870199 0.07670171347 0) (-0.002251952484 0.0768422424 0) (-0.002401610567 0.07684321973 0) (-0.0002776310652 0.07681080279 0) (-0.000456203064 0.07683051538 0) (-0.0004571051067 0.07668998635 0) (-0.0004580132265 0.07654932675 0) (-0.0002034724446 0.07869799244 0) (0.001701189296 0.07848768204 0) (0.001694216121 0.07820788546 0) (0.001990560764 0.07820690365 0) (-0.001961788807 0.09037276976 0) (-0.001955996761 0.09066170099 0) (-0.002255247297 0.09065970562 0) (-0.002554247266 0.09065807954 0) (-0.0006653529381 0.09239515714 0) (-0.0006715418973 0.09211544687 0) (-0.0006786175128 0.09183536362 0) (-0.0003708021341 0.09183528646 0) (0.003007144329 0.08806552898 0) (0.0030085712 0.08835002452 0) (0.002711267856 0.08835220113 0) (-0.002885832749 0.08612866116 0) (-0.003182929175 0.08613052297 0) (-0.003184346931 0.0858494232 0) (-0.003185737202 0.08556853223 0) (-0.003173938735 0.0878192212 0) (-0.003175518588 0.08753729965 0) (-0.003177057299 0.08725567824 0) (-0.002879817124 0.08725382856 0) (0.002989605812 0.08579987057 0) (0.002992172352 0.08608288278 0) (0.002695284891 0.08608474322 0) (-0.002897030196 0.08388000577 0) (-0.003193865672 0.08388182669 0) (-0.003195140532 0.08360060844 0) (-0.003196388504 0.08331950757 0) (-0.003187127387 0.08528765432 0) (-0.003188518596 0.08500661969 0) (-0.002891539542 0.08500478477 0) (0.002966388915 0.08354268656 0) (0.002969467804 0.08382415424 0) (0.002672917438 0.08382563371 0) (-0.002906714353 0.08163107928 0) (-0.003203314914 0.08163287254 0) (-0.003204379871 0.08135179659 0) (-0.003205418366 0.08107077272 0) (-0.003197610526 0.0830383804 0) (-0.003198806769 0.08275720083 0) (-0.002902114871 0.08275539391 0) (-0.001499653182 0.08232523126 0) (-0.002914684113 0.07938267708 0) (-0.003211402558 0.07938441887 0) (-0.003212442076 0.07910323827 0) (-0.003213533581 0.07882209719 0) (-0.003206444313 0.08078967039 0) (-0.00320744431 0.08050854178 0) (-0.002910856724 0.08050676166 0) (-0.001510191899 0.08007744664 0) (-0.001584794729 0.08000757495 0) (-0.001584809963 0.07993724228 0) (-0.001506736845 0.08092051606 0) (0.000996883917 0.0801725619 0) (0.000849864208 0.08017275141 0) (0.0008471553275 0.08003214276 0) (0.0008446081976 0.07989170284 0) (-0.002897857897 0.07711926276 0) (-0.003195787113 0.07712160019 0) (-0.003149861804 0.07684810614 0) (-0.003151698087 0.07656691768 0) (-0.003214689448 0.07854110021 0) (-0.003215910617 0.07826010364 0) (-0.002918931137 0.07825833403 0) (-0.002329804551 0.07769281729 0) (-0.002329082997 0.07783330831 0) (-0.002328438354 0.07797402187 0) (-0.002476007897 0.07797481578 0) (0.001297321166 0.08793767501 0) (-0.001552654127 0.08583923773 0) (-0.001700823761 0.08584014004 0) (-0.001701662773 0.08569966284 0) (-0.001695798314 0.08668368245 0) (-0.001696650643 0.08654316615 0) (-0.001697490508 0.08640255835 0) (-0.001549373199 0.08640164332 0) (-0.001256495403 0.08555658649 0) (-0.001255744223 0.08562661395 0) (-0.001255000027 0.08569677206 0) (-0.001330617741 0.085697292 0) (0.001282502295 0.08651847358 0) (0.001361059884 0.08651793444 0) (0.001361157829 0.08658893267 0) (0.001361517236 0.08665996838 0) (0.001284042805 0.08566837092 0) (0.001297018931 0.08765339417 0) (0.00136211062 0.08673083276 0) (0.001362977247 0.08680153863 0) (0.001284327894 0.08680202612 0) (-0.00133288373 0.08541690306 0) (-0.00125805077 0.08541641437 0) (-0.001257264781 0.08548657221 0) (0.001482338757 0.0832672724 0) (0.00148388584 0.08340817599 0) (0.0014854593 0.08354911858 0) (0.001337744985 0.08354974364 0) (0.001279647138 0.08538526617 0) (-0.001503754069 0.08120126602 0) (-0.001501893481 0.08204417605 0) (-0.001585177824 0.07986691192 0) (-0.001585780516 0.07979662227 0) (-0.001509939727 0.0797960617 0) (-0.002469867323 0.07966111636 0) (-0.002322298036 0.07966028327 0) (-0.002321838114 0.0798007107 0) (-0.002321337988 0.0799412946 0) (0.0008418670661 0.07975135561 0) (0.0008387883549 0.07961111507 0) (0.0009860184201 0.07961093725 0) (-0.002478857237 0.07741249879 0) (-0.002331261574 0.07741170472 0) (-0.002330564775 0.07755240488 0) (-0.002873231644 0.08838225746 0) (-0.003170602848 0.08838404269 0) (-0.003172290937 0.08810154718 0) (-0.003157348568 0.09008765941 0) (-0.003160594041 0.08980068296 0) (-0.003162864663 0.08951698442 0) (-0.002865335797 0.08951534183 0) (-0.001530036601 0.08922464026 0) (-0.001678546511 0.08922543638 0) (-0.001679722624 0.08908333923 0) (-0.001680871925 0.08894134769 0) (-0.001523134307 0.08979958284 0) (-0.001545856334 0.08696417799 0) (-0.001694065149 0.08696508055 0) (-0.001694945133 0.08682432934 0) (-0.001688743335 0.08781000547 0) (-0.001689650377 0.08766911077 0) (-0.001690544616 0.08752817681 0) (-0.001542166016 0.08752727313 0) (0.002644820143 0.08157311818 0) (0.0002005796725 0.0777927304 0) (0.0002064185283 0.07793182968 0) (6.093819817e-05 0.07793134303 0) (-0.001538533666 0.08809149189 0) (-0.001686912351 0.08809238251 0) (-0.001687848243 0.08795107005 0) (-0.001681901262 0.0887997263 0) (-0.001682956915 0.08865807503 0) (-0.001534525733 0.08865722326 0) (0.001376106212 0.08979196547 0) (0.001525551904 0.08978846486 0) (0.00152456431 0.08993323534 0) (0.00152385692 0.09007691314 0) (0.001317431269 0.08185912104 0) (0.001466809527 0.08199929432 0) (0.001468682095 0.08214003904 0) (0.001309511714 0.08129640616 0) (0.00133146233 0.08298568585 0) (0.001479111855 0.08298513958 0) (0.001480778016 0.08312627749 0) (0.00147047613 0.08228075816 0) (0.001472311649 0.08242182965 0) (0.001324753461 0.08242236226 0) (-0.0003983772768 0.09113212713 0) (-0.0004000926901 0.09099224732 0) (-0.0002317136457 0.09099619575 0) (-6.862022893e-05 0.09099658827 0) (-0.00106348892 0.09024371325 0) (-0.001058693895 0.0903899716 0) (-0.001210593352 0.09038532911 0) (-0.001363064849 0.09037869074 0) (0.0001026700144 0.09099409828 0) (0.0002663207954 0.09098961154 0) (0.0002638184163 0.09113022419 0) (0.0006974240639 0.08995031073 0) (-0.001513163772 0.0803583661 0) (-0.0008553434078 0.08965386934 0) (-0.0009310303241 0.08958159238 0) (-0.0008496531172 0.08994821888 0) (-0.001252331603 0.08611838552 0) (-0.001252736032 0.08618865562 0) (-0.001328545834 0.08597836137 0) (-0.001252444974 0.08597782521 0) (-0.001252217199 0.08604810425 0) (0.00128876205 0.08623502496 0) (0.001288112986 0.08595163453 0) (0.001297489387 0.08736943481 0) (0.001294421864 0.08708570752 0) (0.001043291017 0.08376244281 0) (0.001042616776 0.0836919969 0) (0.001117297101 0.08369153532 0) (0.000653723942 0.08200214868 0) (0.0007297009725 0.08207205058 0) (0.0006515388315 0.08172054455 0) (3.129189824e-05 0.07947002831 0) (-0.0005903801536 0.0777862846 0) (-0.00315353437 0.07628572922 0) (-0.0031553698 0.07600467137 0) (-0.002856066693 0.07600271679 0) (-0.001656100269 0.07641661586 0) (-0.001657031044 0.07627608702 0) (-0.001507386021 0.07627510977 0) (-0.001357767119 0.07627413269 0) (3.428380981e-05 0.07737637804 0) (-0.0006136035768 0.09018009621 0) (-0.0006079341033 0.09025685813 0) (-0.000686290258 0.09025144281 0) (-0.001497451295 0.08260640427 0) (-0.00151020524 0.08063940356 0) (-0.001208141686 0.07627315557 0) (-0.001058482296 0.07627217823 0) (-0.001057673435 0.07641283848 0) (0.001300308366 0.08822110243 0) (0.001278442026 0.08510272832 0) (0.001276396789 0.08481954291 0) (-0.001504374318 0.08148228767 0) (-0.00150409153 0.08176359076 0) (0.0006489232959 0.08143862977 0) (-0.0005982542019 0.07750693797 0) (-0.0008364369149 0.07701780973 0) (0.003014717563 0.09034121139 0) (0.002715494823 0.09063147231 0) (0.0013007837 0.08073389246 0) (0.001522334487 0.09022178416 0) (0.001371602717 0.0903683487 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-6.220638827e-05 0.001720209126 6.050715484e-15) (-1.298640153e-05 0.0004310122059 1.512678871e-15) (-5.701387696e-05 0.004512853172 1.589006704e-14) (-1.058433596e-05 0.001569248397 5.495603972e-15) (4.915946555e-05 0.00452289431 1.59317004e-14) (1.851908904e-05 0.001113904712 3.899658374e-15) (5.970144609e-05 0.001738211276 6.133982211e-15) (2.695695633e-07 6.740872148e-06 2.775557562e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.397574107e-05 0.0003994334882 1.443289932e-15) (-2.347776089e-05 0.0002986659141 1.068589661e-15) (-0.0005651154853 0.009271306553 3.337607968e-14) (-0.0004139054732 0.007573939503 2.711719738e-14) (-0.0008235349465 0.02236983766 8.054668044e-14) (-0.000546672493 0.0178270723 6.382394613e-14) (-0.0003959190512 0.03114008581 1.121047699e-13) (-0.0001588801013 0.02363831786 8.462675005e-14) (0.0003527219501 0.03117223051 1.122435478e-13) (0.000371335983 0.02164286762 7.749356712e-14) (0.0007919724739 0.02245148635 8.083811398e-14) (0.0005303088431 0.01294049059 4.633793349e-14) (0.0005538811892 0.009356293112 3.36952688e-14) (0.0001972144974 0.003043718745 1.089406343e-14) (3.508928526e-05 0.0004219608415 1.526556659e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-6.720836793e-07 6.019811733e-06 2.775557562e-17) (-1.279332073e-05 0.0001220024337 4.440892099e-16) (-0.0009138630553 0.01051050327 3.87051502e-14) (-0.0008952436028 0.01114458866 4.081457394e-14) (-0.002057190814 0.0330743967 1.218053436e-13) (-0.001776407873 0.0318748894 1.167121955e-13) (-0.002045634532 0.05459905739 2.010752675e-13) (-0.001567883513 0.05032476897 1.842692665e-13) (-0.0008521840816 0.06654681773 2.450817327e-13) (-0.000393532462 0.05914999503 2.166045121e-13) (0.0007840454528 0.06659030428 2.452621439e-13) (0.0009988932033 0.05622437404 2.059047377e-13) (0.001985318234 0.05472845612 2.016026235e-13) (0.001773987188 0.04213003754 1.543071226e-13) (0.002018918998 0.03325453747 1.22499233e-13) (0.001411307542 0.02125512376 7.78543896e-14) (0.0008966639681 0.01050692607 3.87051502e-14) (0.0003321643512 0.003654828506 1.337818745e-14) (8.133265946e-06 7.384835119e-05 2.775557562e-16) (0 0 0) (0 0 0) (-0.0004937177231 0.004302546502 1.623701174e-14) (-0.0006697892864 0.006214521494 2.328692794e-14) (-0.002471022164 0.02763753586 1.042083086e-13) (-0.002458232986 0.02989095275 1.120215032e-13) (-0.00369148032 0.05800234965 2.186167913e-13) (-0.003373679156 0.05927402501 2.221001161e-13) (-0.003107148721 0.08114286366 3.058109321e-13) (-0.002532730776 0.0796942351 2.986083603e-13) (-0.001184305258 0.09058786821 3.414352134e-13) (-0.0005884059874 0.08744154937 3.276684479e-13) (0.001094978172 0.09061095457 3.415739913e-13) (0.001553863603 0.08505028837 3.187589082e-13) (0.003048522158 0.08154002936 3.074346333e-13) (0.003105501783 0.07163919461 2.685351941e-13) (0.003689796555 0.05872974792 2.21517249e-13) (0.003138750907 0.04575602365 1.715572129e-13) (0.002540656323 0.02890752285 1.090377788e-13) (0.001659309575 0.01774099194 6.653011475e-14) (0.000560043458 0.004962469525 1.872113575e-14) (2.034075592e-07 1.632091423e-06 1.387778781e-17) (0.0001017394052 0.0008593501695 3.219646771e-15) (-0.001277885102 0.01086802536 4.196643033e-14) (-0.001746245764 0.01581367116 6.071532166e-14) (-0.00392065662 0.04275701121 1.651179193e-13) (-0.00408526468 0.04823579712 1.851574449e-13) (-0.004949991697 0.07518303083 2.902955654e-13) (-0.004631842187 0.07861842858 3.017169847e-13) (-0.003662665547 0.09187999388 3.546885008e-13) (-0.003044106471 0.09254912443 3.550770789e-13) (-0.001266484734 0.0926763258 0) (-0.001261476512 0.09295603073 0) (-0.0006554937377 0.09351188825 0) (-0.0006594854504 0.09295364065 0) (-0.0003601844708 0.09295196036 0) (-6.085262837e-05 0.09295011008 0) (-0.0009593041033 0.09295505004 0) (-0.000962740088 0.09267570055 0) (0.001163323615 0.09265993566 0) (0.0008593379186 0.09266344894 0) (0.0005446700389 0.092946208 0) (0.0008586752957 0.09294298193 0) (0.001162169019 0.09293973308 0) (0.000239448965 0.09294814898 0) (0.00176300263 0.09349310347 0) (0.00356498128 0.09185172489 3.547856453e-13) (0.003950985273 0.08790214445 3.374939217e-13) (0.004924523687 0.07626852727 2.946809463e-13) (0.004651602857 0.06595556589 2.532973831e-13) (0.00399800473 0.04434740374 1.713490461e-13) (0.003125518668 0.03258318312 1.251360127e-13) (0.001440828982 0.01244600675 4.808653475e-14) (0.0002622942238 0.002052675725 7.882583475e-15) (0.0006598205558 0.005435092693 2.087219286e-14) (-0.001980046454 0.01641940489 6.500355809e-14) (-0.00259405581 0.02290947621 9.012235402e-14) (-0.00477317092 0.05071152695 2.007144451e-13) (-0.005051752801 0.05812257048 2.286087986e-13) (-0.00551096134 0.08142974697 3.222283551e-13) (-0.005198599893 0.0857294714 3.37146977e-13) (-0.003746977866 0.09066019625 0) (-0.002846231475 0.09122477083 0) (-0.002849771139 0.09094074492 0) (-0.003150454746 0.0906593047 0) (-0.003148065145 0.09094122226 0) (-0.003144922646 0.09122443054 0) (-0.00315323322 0.09037583935 0) (-0.001295762674 0.09183181854 0) (-0.001599167341 0.09183070448 0) (-0.0019290941 0.09153128364 0) (-0.001941289081 0.09123987609 0) (0.0005667525881 0.09154629157 0) (0.001178371858 0.09181566136 0) (0.0008678968079 0.09182266509 0) (0.005493850204 0.08297376799 3.286121375e-13) (0.00548320317 0.07579158061 2.983030489e-13) (0.004981211576 0.05386294361 2.133293542e-13) (0.004239428845 0.04307170104 1.695310559e-13) (0.002275043583 0.01916371738 7.588374373e-14) (0.0007818741042 0.005967639951 2.348121697e-14) (0.001402245787 0.01126367763 4.432565426e-14) (-0.002261468793 0.01827695513 7.420453141e-14) (-0.0030271331 0.026049653 1.050826093e-13) (-0.005096733109 0.05274787585 2.141065103e-13) (-0.005487702954 0.06147770333 2.47940557e-13) (-0.005687509166 0.08174959695 3.317901509e-13) (-0.005370268491 0.08607555935 3.471389842e-13) (0.003011636631 0.08891743122 0) (0.003012721588 0.08920156981 0) (0.003311854125 0.08948149596 0) (0.005694060956 0.08403213997 3.413380689e-13) (0.005858501341 0.07909047005 3.192307529e-13) (0.005459134095 0.0576216095 2.340627692e-13) (0.004862692003 0.04820846166 1.945665851e-13) (0.002755309864 0.02263761663 9.194034423e-14) (0.001170133486 0.008708791502 3.513855873e-14) (0.001890316268 0.01480713308 5.974387651e-14) (-0.002430753894 0.0191434007 7.974176874e-14) (-0.003198302176 0.02682042706 1.109945469e-13) (-0.005258405832 0.05299798362 2.207400929e-13) (-0.005631237094 0.06143043416 2.541855615e-13) (-0.005756944193 0.08050317398 3.352734756e-13) (-0.005420116179 0.08449961732 3.496508638e-13) (0.002996980717 0.0866491836 0) (0.002999221432 0.08693230242 0) (0.00329838896 0.08721358668 0) (0.005709643574 0.08235939223 3.433364704e-13) (0.005957245654 0.07857663975 3.254341241e-13) (0.00554183079 0.05709573004 2.380179387e-13) (0.005062515159 0.0489784979 2.028377466e-13) (0.002854044019 0.02286693745 9.529876888e-14) (0.001312347375 0.009523882593 3.942679516e-14) (0.002062630827 0.01575611295 6.52256027e-14) (-0.002592556458 0.01988284482 8.504308369e-14) (-0.003361565786 0.02745307374 1.166428065e-13) (-0.00540878418 0.05305306569 2.268740751e-13) (-0.005758445959 0.0611339468 2.596811655e-13) (-0.005818877862 0.07911894041 3.383404668e-13) (-0.005458712635 0.08274031846 3.514827318e-13) (-0.002148490165 0.08528134176 0) (0.002975643504 0.08438783396 0) (0.002978451367 0.08466979972 0) (0.003278257997 0.08495094919 0) (0.005607890358 0.07906524215 3.384792446e-13) (0.005850002948 0.07538649262 3.205630206e-13) (0.005294578256 0.05322762709 2.278455202e-13) (0.004877161009 0.04603255377 1.957323192e-13) (0.002581815689 0.02016469751 8.629208459e-14) (0.00119170875 0.008428970416 3.583244812e-14) (0.001915201108 0.01426069227 6.061817714e-14) (-0.002795345875 0.02085972143 9.167666626e-14) (-0.003542972781 0.02815635916 1.229016888e-13) (-0.005583406251 0.05325492432 2.34007258e-13) (-0.005895715194 0.06086547328 2.656208586e-13) (-0.005881381489 0.07770132337 3.414352134e-13) (-0.005496322101 0.08094674552 3.532729664e-13) (-0.002160448863 0.08303211666 0) (0.002948819296 0.08213426524 0) (0.002952552053 0.08241585926 0) (0.00539627904 0.074343657 3.270300697e-13) (0.005584001248 0.07028102271 3.070460552e-13) (0.004815952269 0.04721635544 2.076949723e-13) (0.004346034616 0.03999740245 1.747213485e-13) (0.002090786153 0.01590851877 6.995792834e-14) (0.0008789289579 0.006055462422 2.645106356e-14) (0.001528668344 0.01108895393 4.841960166e-14) (-0.003038147818 0.02204051146 9.961476088e-14) (-0.003763885735 0.02908240079 1.305067165e-13) (-0.00579214982 0.05367135604 2.425282197e-13) (-0.00605670854 0.06074948828 2.725736303e-13) (-0.005955260545 0.07637608571 3.451128272e-13) (-0.005534791677 0.07913834175 3.550909566e-13) (-0.002170717919 0.080783625 0) (0.005051524361 0.06799021818 3.075456556e-13) (0.005202197971 0.06392391522 2.871314297e-13) (0.004162462381 0.03977285005 1.798977634e-13) (0.003719360824 0.0333530808 1.497968416e-13) (0.001500468716 0.01111474615 5.026534744e-14) (0.000493649459 0.003310618844 1.486311074e-14) (0.0009567333576 0.006756490887 3.033684415e-14) (-0.003336525443 0.02355248855 1.095790125e-13) (-0.004096708364 0.03074408374 1.419558915e-13) (-0.00603376925 0.05439238892 2.529781939e-13) (-0.006275869383 0.06108793028 2.82010526e-13) (-0.006018666247 0.07511014308 3.493316747e-13) (-0.005574974697 0.0772956667 3.568673135e-13) (-0.002327218038 0.07825488783 0) (-0.002326692644 0.07839534096 0) (-0.00217893574 0.07853523748 0) (0.0002168142613 0.07821051985 0) (0.0002214420052 0.07835016254 0) (0.0003718305348 0.07849023779 0) (0.003418628092 0.0763958886 3.55590557e-13) (0.003955249762 0.07557067443 3.492206524e-13) (0.00455765122 0.05991693743 2.789157794e-13) (0.004626710714 0.05547049498 2.563504964e-13) (0.00332386479 0.03092672216 1.439542929e-13) (0.002964694731 0.02588343349 1.195987753e-13) (0.0008930569963 0.006435477986 2.994826609e-14) (0.0001694520084 0.001105522127 5.107025913e-15) (0.0005356075396 0.003679674497 1.700029006e-14) (-0.002992912018 0.02058288314 9.861556016e-14) (-0.003987159026 0.02921534494 1.38916656e-13) (-0.005642334076 0.04957782363 2.375044605e-13) (-0.006134084569 0.05836455007 2.774863672e-13) (-0.005821704147 0.07088172631 3.395478343e-13) (-0.005495260034 0.07467752355 3.550770789e-13) (-0.002105980027 0.07627888824 0) (-0.001956335004 0.07627791099 0) (0.000434382873 0.07570002827 0) (0.0007355183446 0.07597926218 0) (0.003258509972 0.07118571178 3.4126868e-13) (0.00370994597 0.06940829117 3.30277472e-13) (0.003930216494 0.05034482993 2.413763633e-13) (0.00394890729 0.0461774088 2.197408921e-13) (0.002452977101 0.02221035591 1.064703881e-13) (0.002099524646 0.01783676454 8.487655023e-14) (0.0003607784005 0.002527278784 1.211530876e-14) (9.968625008e-07 6.323346751e-06 2.775557562e-17) (0.0001344431374 0.0008980471497 4.274358645e-15) (-0.001876279459 0.01252099603 6.185330026e-14) (-0.002916246906 0.02073655283 1.016409179e-13) (-0.004318164558 0.03681888951 1.818684092e-13) (-0.005096597212 0.04704494132 2.305655666e-13) (-0.005000184102 0.05903225768 2.915584441e-13) (-0.005053667391 0.06653864651 3.261002579e-13) (-0.003639340861 0.07006590459 3.460981501e-13) (-0.003163474472 0.07296288918 3.576583474e-13) (-0.001371853985 0.07213835288 3.564093465e-13) (-0.0007793361104 0.07317741156 0) (0.0009820826218 0.07018810752 3.468475507e-13) (0.001577117187 0.07134544505 3.498729084e-13) (0.002805857851 0.05948665171 2.940009347e-13) (0.003240890838 0.05887266262 2.887412531e-13) (0.003023173818 0.03753525893 1.855182674e-13) (0.003056419309 0.03465903763 1.699890229e-13) (0.001494842034 0.01311909919 6.483702464e-14) (0.00122988623 0.01013857112 4.971023593e-14) (3.660219394e-05 0.0002487692552 1.221245327e-15) (0 0 0) (0 0 0) (-0.0005972156382 0.003865099374 1.970645869e-14) (-0.0013863534 0.009564110378 4.83779683e-14) (-0.002389346697 0.01977748709 1.008221284e-13) (-0.003284326022 0.029432787 1.48853152e-13) (-0.003364249929 0.03858603921 1.966898866e-13) (-0.003786933672 0.04841115687 2.448180547e-13) (-0.002761623959 0.05166253808 2.63372657e-13) (-0.002649751655 0.05927282483 2.997740944e-13) (-0.001094848046 0.05605475266 2.857991621e-13) (-0.0006749926218 0.06137685974 3.104738688e-13) (0.0007570856812 0.05189734691 2.646494135e-13) (0.001265957777 0.05530486973 2.798039578e-13) (0.001910102607 0.03905664449 1.991878884e-13) (0.002289649008 0.04018795347 2.03337347e-13) (0.001694311439 0.02032788762 1.036670749e-13) (0.001778121461 0.0195042369 9.86849491e-14) (0.0004927771138 0.004185868752 2.134403765e-14) (0.0003950578991 0.003154027504 1.595945598e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.000187172352 0.001251607578 6.536438057e-15) (-0.0006316364675 0.005072937166 2.671474153e-14) (-0.00128969107 0.01122273626 5.86197757e-14) (-0.001435070195 0.01600936493 8.432143872e-14) (-0.00196624597 0.0244610837 1.277589146e-13) (-0.001403521091 0.02563819853 1.350308754e-13) (-0.00155112433 0.0338960231 1.770528169e-13) (-0.0005785161563 0.02937612857 1.547373341e-13) (-0.0003944811175 0.03601271507 1.881411693e-13) (0.0004019072734 0.02583920767 1.361133428e-13) (0.0007273183784 0.03022970241 1.57943103e-13) (0.0008324665165 0.01633463399 8.604228441e-14) (0.001085922071 0.0183337769 9.578449145e-14) (0.0004618116617 0.005344552336 2.815803146e-14) (0.0005290704822 0.005603544261 2.928213227e-14) (7.867729401e-08 6.464846422e-07 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.859377827e-05 0.0006629538098 3.580469254e-15) (-0.0001510595711 0.001636130932 8.92341756e-15) (-0.0004398608775 0.005322529442 2.875477634e-14) (-0.0002920483347 0.005207302403 2.836619828e-14) (-0.0004699007791 0.01005393879 5.430378369e-14) (-0.0001368187879 0.006915577602 3.766431611e-14) (-0.0001206299858 0.01124428758 6.074307723e-14) (8.804582967e-05 0.005296799657 2.886579864e-14) (0.0002060219535 0.008106330581 4.378442053e-14) (9.207733258e-05 0.001734332608 9.450773497e-15) (0.0001731664772 0.002810077774 1.518229986e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.786844439e-07 2.036188332e-05 1.249000903e-16) (0 0 0) (-9.971460528e-07 9.270806225e-05 5.134781489e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0.001967359751 0.08807414775 0) (0.001951437908 0.08580604946 0) (0.001964110009 0.08750651761 0) (-0.002157587742 0.08359423766 0) (0.001781084432 0.08354795861 0) (0.001929007626 0.08354731913 0) (0.001946320105 0.08524036452 0) (-0.002168340627 0.08134565773 0) (-0.002176937026 0.07909729881 0) (-0.002323257317 0.07937938949 0) (-0.002323731664 0.07923875318 0) (0.001724852064 0.07960914246 0) (0.001423004262 0.07932942996 0) (-0.00210228134 0.07684126498 0) (-0.002303578399 0.07711480718 0) (-0.002251034769 0.07698277133 0) (-0.0004121978659 0.07694999615 0) (-0.0006059486516 0.07683149328 0) (-0.0002776457024 0.0786276608 0) (0.001361718075 0.07709272584 0) (0.00167029989 0.0773696124 0) (0.001678665827 0.07764868154 0) (0.001397479925 0.07820890902 0) (0.001686654977 0.07792805354 0) (-0.001503086579 0.09067147502 0) (-0.001507327416 0.09052607911 0) (-0.001663341312 0.09037379603 0) (-0.001658916968 0.09052129223 0) (-0.00165426118 0.09066822923 0) (-0.001665329888 0.09023128702 0) (-0.001948431305 0.09095219316 0) (-0.0009914338487 0.0918328482 0) (-0.0006912805148 0.09155348833 0) (0.001487186907 0.09180766279 0) (0.001795688779 0.09179830793 0) (0.001787498476 0.09208413317 0) (0.001805255982 0.09150932603 0) (0.002104449311 0.09178656125 0) (0.003305821536 0.0883477307 0) (0.003010316477 0.08863327718 0) (-0.00318002674 0.08669297022 0) (-0.00318149742 0.08641176631 0) (-0.003480195385 0.08613238588 0) (-0.003178555037 0.08697433085 0) (0.003289046924 0.08608104855 0) (0.002994634581 0.08636592179 0) (-0.003191237333 0.08444430185 0) (-0.003192565032 0.08416299252 0) (-0.003490910027 0.08388366203 0) (-0.003485667434 0.08500845571 0) (-0.003189884196 0.08472550652 0) (-0.002151586713 0.08471917006 0) (0.003266083216 0.08382263516 0) (0.002972613615 0.08410586964 0) (-0.003201120636 0.08219488034 0) (-0.003202223921 0.08191393525 0) (-0.003500254957 0.08163468108 0) (-0.003495785823 0.08275903574 0) (-0.003199976976 0.08247600802 0) (-0.002163207122 0.08246974683 0) (0.0009633010105 0.08312803729 0) (-0.003209416733 0.0799465064 0) (-0.003210390183 0.07966544292 0) (-0.003806105444 0.07938804132 0) (-0.003508577772 0.07938621589 0) (-0.00350443668 0.0805103376 0) (-0.003208416992 0.08022759584 0) (-0.002172912368 0.08022159107 0) (-0.002320850666 0.08008191776 0) (0.0008522937952 0.0803131921 0) (0.0007030111593 0.08017286147 0) (-0.003218811602 0.07769787842 0) (-0.003220490638 0.07741476899 0) (-0.003792366846 0.07712582264 0) (-0.003493978899 0.07712373037 0) (-0.003811148977 0.07826372959 0) (-0.003513360098 0.07826190245 0) (-0.003217301315 0.07797914737 0) (-0.002181221269 0.0779732564 0) (-0.002327782528 0.07811444803 0) (-0.001963679283 0.07515328776 0) (-0.001965515566 0.07487209931 0) (-0.001666212459 0.07487014473 0) (-0.001366918495 0.07486819021 0) (-0.002264818673 0.07487405389 0) (-0.000766483835 0.07514546956 0) (-0.000768320118 0.0748642811 0) (-0.0004690222356 0.07486232655 0) (-0.001067619307 0.07486623565 0) (-0.000759150004 0.07627009285 0) (-0.0006094945326 0.07626911554 0) (-0.0004589257174 0.07640879779 0) (-0.001161685008 0.08879682537 0) (-0.001166973611 0.08794778606 0) (0.001970024593 0.08864221272 0) (-0.001699157945 0.08612122512 0) (-0.001699984323 0.08598068254 0) (-0.00199716286 0.08584197077 0) (-0.00184898025 0.08584105532 0) (-0.001845686092 0.08640348695 0) (-0.001698331225 0.08626181995 0) (-0.00117999835 0.08654011871 0) (-0.001177780325 0.08569616329 0) (-0.001253563903 0.08583728454 0) (-0.001254267074 0.08576700861 0) (-0.001167634189 0.08766583239 0) (-0.001177142995 0.08682115684 0) (0.001956129241 0.08637242941 0) (0.002104350861 0.08637148758 0) (0.002105472072 0.08651317759 0) (0.002106555125 0.08665502459 0) (0.002103204639 0.08622996752 0) (0.001361249777 0.0864470127 0) (0.001437332005 0.08651742329 0) (0.00143930178 0.08680105326 0) (0.001364144517 0.08687228172 0) (0.001960366364 0.08693925639 0) (0.002108652859 0.08693824883 0) (0.002109643978 0.08708001806 0) (0.002107610522 0.08679663667 0) (-0.002154633578 0.0841566062 0) (-0.001258847548 0.08534620435 0) (-0.001182357392 0.08541588087 0) (0.0009662481393 0.08341032866 0) (0.001935116915 0.08411082949 0) (0.001633239173 0.08354853228 0) (0.001486953886 0.08368998332 0) (0.001940879035 0.08467517801 0) (-0.002165832305 0.08190775491 0) (-0.001660237509 0.07979708239 0) (-0.001586539419 0.07972641201 0) (-0.002322770422 0.07951994735 0) (-0.002174989785 0.07965947802 0) (0.00067956169 0.07905026337 0) (0.0006921086671 0.07961117175 0) (0.0008360053451 0.07947075505 0) (-0.001503301803 0.07676852262 0) (-0.002328655894 0.0772687104 0) (-0.002184057549 0.07741093932 0) (-0.001208540939 0.07676881805 0) (-0.003167136623 0.08894882285 0) (-0.003168850311 0.08866640717 0) (-0.003165019739 0.08923297951 0) (-0.001675753615 0.08951111022 0) (-0.001677169308 0.08936832633 0) (-0.001827056354 0.08922624296 0) (-0.001674112272 0.08965444774 0) (-0.00169233241 0.08724641335 0) (-0.001693199334 0.08710566206 0) (-0.001842326121 0.08696599652 0) (-0.001838897095 0.08752908031 0) (-0.001691438172 0.08738734732 0) (0.00294518052 0.08185306243 0) (0.0003418594128 0.08059498313 0) (0.0003528202607 0.0779320099 0) (0.0002114466534 0.0780711824 0) (-0.001684987556 0.08837512463 0) (-0.001685977311 0.08823356436 0) (-0.001835304096 0.0880932732 0) (-0.001831414217 0.08865892698 0) (-0.001683985424 0.08851658033 0) (0.001525947347 0.0896450187 0) (0.001674612943 0.08978606257 0) (0.001971936858 0.08921103622 0) (0.001475770651 0.08270350382 0) (0.001477356489 0.08284434185 0) (0.001626826426 0.08298455371 0) (0.001619974234 0.0824212833 0) (0.001474094074 0.08256277088 0) (-0.0002845641996 0.07834723694 0) (-0.000712326491 0.09098773501 0) (-0.0005563632342 0.09099026383 0) (-0.0004027191137 0.09085206521 0) (-0.00087629239 0.090979368 0) (-0.001042130648 0.09082648819 0) (-0.00105001249 0.09067874813 0) (-0.0009080585681 0.09039223874 0) (-0.001055258885 0.09053337185 0) (0.0005835824353 0.09097943281 0) (0.0007382085682 0.09097500892 0) (0.0009041854551 0.09082091697 0) (0.0002734206691 0.09084720957 0) (0.0004287681167 0.09098343998 0) (0.00100321229 0.08936581745 0) (0.0007748817357 0.08987554211 0) (0.0009606479412 0.082846175 0) (0.0003386522771 0.0803134771 0) (-0.001815325007 0.07783065854 0) (-0.001164276848 0.08851353905 0) (-0.001167105447 0.08823039794 0) (-0.001178331975 0.08625848943 0) (-0.001252930038 0.08590754786 0) (-0.001174227635 0.08597718381 0) (-0.001170846522 0.08738413048 0) (-0.001174044574 0.08710241542 0) (0.0009670412819 0.08369258186 0) (0.001041963944 0.08362162921 0) (-0.001817510763 0.07754995561 0) (-0.001815431768 0.07726831058 0) (-0.0005161479753 0.0778567987 0) (-0.003454659846 0.07600662586 0) (-0.003157206083 0.07572348291 0) (-0.00180667692 0.07627693366 0) (-0.001657949612 0.07613542748 0) (-0.000255159013 0.09050302558 0) (-0.0005272157613 0.09026459331 0) (-0.0006007266228 0.09033433383 0) (0.0001103988522 0.09050260921 0) (-0.001059368214 0.07613151849 0) (-0.0009088124587 0.07627120082 0) (-0.0009620018635 0.07696494956 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (3.543876244e-05 0.0002641383682 1.026956298e-15) (0.0003106467038 0.002258379396 8.881784197e-15) (0.0005771100121 0.004091045253 1.651456749e-14) (0.000681302659 0.004708937915 1.949829187e-14) (0.000593342679 0.003996507311 1.698641228e-14) (0.0003732127914 0.00244834566 1.068589661e-14) (0.0001378840051 0.00088047782 3.955169525e-15) (4.739406817e-06 2.943978687e-05 1.387778781e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.001967350996 0.07459104145 0) (-0.0007701555482 0.07458322324 0) (0.002252624808 0.08637055847 0) (0.00225697862 0.08693725408 0) (0.00260810976 0.07932568733 0) (-0.0006616781203 0.09267447895 0) (0.0005463435617 0.0926670733 0) (-0.002852504317 0.09065821574 0) (0.003252862321 0.08269613036 0) (-0.00410918583 0.07826558448 0) (-0.002145384651 0.08584288648 0) (-0.00151338845 0.09037595791 0) (-0.003474414931 0.08725754175 0) (-0.004103907297 0.07938988161 0) (-0.004090912284 0.07712779839 0) (-0.003468078535 0.08838582861 0) (-0.003460471891 0.08951862753 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.256175961e-06 6.801084106e-05 2.636779683e-16) (-0.0001861460294 0.001334169789 5.245803791e-15) (-0.0003311408383 0.002313532874 9.325873407e-15) (-0.0004031919856 0.00274536033 1.136590821e-14) (-0.0004813612012 0.003192983038 1.357247648e-14) (-0.0005745795938 0.003710095388 1.619537837e-14) (-0.0006496541829 0.004080192306 1.831867991e-14) (-0.0009051080929 0.005523940966 2.550737399e-14) (-0.0008699140124 0.005179845121 2.463307336e-14) (-0.0003899326473 0.002252914891 1.10467191e-14) (-6.678553343e-06 3.740722776e-05 1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.00132654873 0.07768337914 0) (-0.001320469856 0.07775303222 0) (-0.001288835551 0.07768016804 0) (-0.001282756592 0.07774983418 0) (-0.001259826466 0.077677706 0) (-0.001253746201 0.07774737214 0) (-0.001332277049 0.07761360622 0) (-0.00129456813 0.0776103429 0) (-0.001265560607 0.0776078417 0) (-0.0006870731061 0.08829516656 0) (-0.0006810478862 0.08836560365 0) (-0.0006493455878 0.08829215128 0) (-0.000643343226 0.08836228812 0) (-0.0006203238958 0.08828981978 0) (-0.0006143412683 0.08835973471 0) (0.0004968867841 0.08956219753 0) (0.000519691625 0.08950548461 0) (0.0004617949735 0.08954801665 0) (0.0004843325865 0.08949198332 0) (0.0004348013644 0.08953710686 0) (0.000457133424 0.08948159732 0) (0.0004454570635 0.08279640782 0) (0.000433495238 0.08273750306 0) (0.0004083637477 0.08280393801 0) (0.0003964032282 0.08274503325 0) (0.0003798309104 0.08280972746 0) (0.0003678703909 0.08275082269 0) (-0.0006746254089 0.08843567244 0) (-0.0006369389211 0.08843217417 0) (-0.0006079483499 0.08842947717 0) (-0.0001057490085 0.08048874349 0) (-0.0001327612614 0.08038968343 0) (-0.0001422678388 0.08049868619 0) (-0.0001692387994 0.0803997826 0) (-0.0001703593048 0.08050634046 0) (-0.0001972982967 0.0804075542 0) (-0.0007776182906 0.07829925821 0) (-0.0007968708234 0.07824173327 0) (-0.0008134907402 0.07831133867 0) (-0.0008326887876 0.07825395705 0) (-0.0008410851922 0.0783206223 0) (-0.0008602405937 0.07826337101 0) (-0.001350910869 0.07713102441 0) (-0.00135921035 0.07719373158 0) (-0.001326465707 0.07712889258 0) (-0.001327140413 0.07719097528 0) (-0.001307660919 0.07712725472 0) (-0.001302471834 0.07718885506 0) (0.000555408812 0.08940642893 0) (0.0005196430199 0.08939404178 0) (0.0004921320783 0.0893845133 0) (0.0001843720686 0.09007926883 0) (0.0002611948728 0.08999708345 0) (0.0001594968243 0.09005074257 0) (0.0002319967715 0.08997300155 0) (0.000140360414 0.09002879937 0) (0.0002095351827 0.08995447642 0) (-0.001074942555 0.08105443046 0) (-0.001070562965 0.08112447341 0) (-0.001037172017 0.08105200264 0) (-0.001032788169 0.0811220978 0) (-0.00100811591 0.0810501411 0) (-0.0010037305 0.08112027543 0) (-0.001061860746 0.08126403724 0) (-0.001057727746 0.08133032026 0) (-0.001024084388 0.0812617008 0) (-0.001019948605 0.08132800993 0) (-0.0009950253274 0.08125989149 0) (-0.0009908892885 0.0813262398 0) (-0.001079536956 0.0809844934 0) (-0.001041769287 0.08098202642 0) (-0.001012716048 0.08098012571 0) (-0.001093329533 0.0807744472 0) (-0.00108873584 0.08084447569 0) (-0.001055560558 0.0807719802 0) (-0.001050968256 0.08084199564 0) (-0.001026507319 0.0807700795 0) (-0.001021916323 0.08084009494 0) (-0.001134509143 0.0801510467 0) (-0.001129918253 0.08021544597 0) (-0.001096755984 0.08014835777 0) (-0.001092163617 0.08021278315 0) (-0.001067715608 0.08014628736 0) (-0.001063120544 0.08021072579 0) (-0.0003264909339 0.07971342919 0) (-0.0003562698394 0.07961460924 0) (-0.0003627781733 0.07972419322 0) (-0.0003925104296 0.07962551663 0) (-0.000390691334 0.07973247324 0) (-0.0004203888658 0.07963391397 0) (-0.001309417239 0.0778889106 0) (-0.001304291494 0.07794761184 0) (-0.001271699801 0.07788575172 0) (-0.001266586748 0.07794430937 0) (-0.001242686542 0.07788332884 0) (-0.001237582093 0.077941769 0) (-0.001323932068 0.07702386667 0) (-0.001316719686 0.07702669296 0) (-0.001350512994 0.07740415065 0) (-0.001344823088 0.07747404137 0) (-0.00131288113 0.07740088783 0) (-0.001307127399 0.07747075201 0) (-0.001283932464 0.07739837395 0) (-0.001278130581 0.0774682117 0) (-0.001077631552 0.07745386761 0) (-0.001098422265 0.07739780247 0) (-0.001113079787 0.07746710772 0) (-0.001133839325 0.07741101626 0) (-0.001140348377 0.07747729042 0) (-0.001161083271 0.07742117268 0) (0.0008613919181 0.08786177786 0) (0.0008679193397 0.08779231673 0) (0.000823722602 0.0878581056 0) (0.0008302255234 0.08778889278 0) (0.0007947442765 0.08785527778 0) (0.0008012301928 0.08778626099 0) (0.0008740973635 0.08772215259 0) (0.0008363804384 0.08771899001 0) (0.0008073680174 0.08771654118 0) (0.0008849734488 0.08758159889 0) (0.0008893835865 0.08751111978 0) (0.0008472131741 0.08757899821 0) (0.0008516055124 0.08750879349 0) (0.0008181670841 0.08757699367 0) (0.0008225451999 0.08750701108 0) (0.0008670776515 0.08560383042 0) (0.0008612667378 0.08553380988 0) (0.0008293531717 0.08560691099 0) (0.0008235506912 0.08553698182 0) (0.0008003342623 0.0856092686 0) (0.0007945389091 0.08553943081 0) (0.0008825208595 0.08581463644 0) (0.0008777081213 0.08574446571 0) (0.0008447562286 0.08581716871 0) (0.0008399506176 0.08574708936 0) (0.0008157058573 0.08581910858 0) (0.0008109060675 0.08574912062 0) (0.0008554388725 0.08546359354 0) (0.0008177411689 0.08546697433 0) (0.0007887434705 0.08546957996 0) (0.0008418814859 0.08532436182 0) (0.0008353450474 0.08525804224 0) (0.0008042147325 0.08532808199 0) (0.000797687948 0.08526184072 0) (0.0007752408571 0.08533093562 0) (0.0007687197232 0.08526475961 0) (-0.0007073898665 0.08802087738 0) (-0.0007026691092 0.08808556314 0) (-0.0006696323628 0.08801825373 0) (-0.0006649216859 0.08808279589 0) (-0.0006405877274 0.08801623553 0) (-0.0006358843483 0.08808066019 0) (-0.0006974630637 0.08815496071 0) (-0.0006597185083 0.08815215429 0) (-0.0006306853446 0.08814997944 0) (-0.0004413066042 0.07933619752 0) (-0.0004595616757 0.07927801303 0) (-0.0004774510279 0.07934743081 0) (-0.0004956807731 0.07928932452 0) (-0.0005052533999 0.07935607581 0) (-0.0005234658256 0.07929802165 0) (-0.0006848985718 0.07857435453 0) (-0.0007037864342 0.07851727128 0) (-0.0007208257627 0.0785862525 0) (-0.0007396722 0.07852931266 0) (-0.0007484627753 0.07859541886 0) (-0.0007672773561 0.07853855717 0) (0.0004977528566 0.08305902072 0) (0.000485381242 0.08299596529 0) (0.0004606122945 0.08306631613 0) (0.0004482420712 0.08300327375 0) (0.0004320416943 0.08307192297 0) (0.0004196754744 0.08300889362 0) (0.0004721693865 0.08292864443 0) (0.0004350476205 0.08293601809 0) (0.0004064905071 0.08294169014 0) (0.0001759773238 0.08158459113 0) (0.0001611489049 0.08152272722 0) (0.0001391732482 0.08159341247 0) (0.0001243543127 0.08153160073 0) (0.0001108611674 0.08160020615 0) (9.605023858e-05 0.08153842049 0) (-0.0006544697106 0.08864529832 0) (-0.0006471339551 0.08871461668 0) (-0.0006168182618 0.08864143458 0) (-0.0006095061587 0.08871053106 0) (-0.0005878556023 0.08863846348 0) (-0.0005805629777 0.08870737723 0) (-0.0006614108795 0.08857540271 0) (-0.0006237385608 0.08857173475 0) (-0.0005947605115 0.08856892028 0) (-0.0009777696157 0.08273944433 0) (-0.0009741428435 0.08280580903 0) (-0.0009399757938 0.08273738206 0) (-0.0009363503277 0.08280374677 0) (-0.0009109048352 0.0827357947 0) (-0.0009072793691 0.08280215941 0) (-0.001008188459 0.08217903142 0) (-0.001004402687 0.08224914355 0) (-0.0009703944662 0.08217699527 0) (-0.0009666086947 0.0822471074 0) (-0.0009413221163 0.08217542096 0) (-0.0009375363449 0.08224553309 0) (-0.0009968140806 0.08238938076 0) (-0.0009930008826 0.08245949271 0) (-0.0009590201735 0.08238733155 0) (-0.0009552069754 0.08245744349 0) (-0.0009299492149 0.08238574419 0) (-0.0009261360168 0.08245585614 0) (-0.0009815613736 0.08266981549 0) (-0.0009437687725 0.08266776629 0) (-0.0009146965079 0.08266617892 0) (-0.0009891876845 0.08252960465 0) (-0.0009513951686 0.08252754239 0) (-0.0009223228188 0.08252596809 0) (-0.001054205183 0.08138892749 0) (-0.00101642448 0.08138665633 0) (-0.000987362381 0.0813849123 0) (-0.001044666724 0.08154934406 0) (-0.00104053946 0.08161874867 0) (-0.001006884544 0.08154709901 0) (-0.001002757365 0.08161649057 0) (-0.0009778210539 0.08154536804 0) (-0.0009736951813 0.0816147596 0) (-0.001011974145 0.08210893235 0) (-0.0009741802376 0.08210688314 0) (-0.0009451078024 0.08210532189 0) (-0.001023682835 0.08189899009 0) (-0.001019535351 0.08196889088 0) (-0.0009859006552 0.08189674504 0) (-0.0009817472653 0.08196675028 0) (-0.0009568370797 0.08189502712 0) (-0.0009526793453 0.08196509764 0) (-0.00103633715 0.08168884502 0) (-0.0009985563615 0.08168658692 0) (-0.0009694943479 0.08168482983 0) (-0.001027898914 0.08182898525 0) (-0.0009901182111 0.08182671409 0) (-0.0009610561975 0.081824957 0) (-0.001111534862 0.0804942799 0) (-0.001107010218 0.08056433496 0) (-0.001073764324 0.08049185208 0) (-0.001069239766 0.08056189407 0) (-0.001044709609 0.08048997748 0) (-0.001040186441 0.08056000643 0) (-0.001097889355 0.08070440543 0) (-0.001060120294 0.08070195149 0) (-0.001031067055 0.08070005079 0) (-0.0001673994737 0.0802661971 0) (-0.0001837380249 0.08020794785 0) (-0.0002038375757 0.08027643969 0) (-0.0002201572853 0.08021825561 0) (-0.000231867005 0.08028431558 0) (-0.0002481720071 0.08022618366 0) (-0.001116024157 0.08042423767 0) (-0.00107825362 0.08042180984 0) (-0.001049197513 0.0804199483 0) (-0.001124992354 0.08028454497 0) (-0.0010872292 0.08028198658 0) (-0.001058181611 0.08028002061 0) (-0.0003744621837 0.07955423011 0) (-0.0004106813657 0.07956521573 0) (-0.0004385424824 0.0795736652 0) (-0.0004110760998 0.07943457046 0) (-0.0004472552479 0.07944568643 0) (-0.0004750856436 0.07945424019 0) (-0.001356128994 0.07733437699 0) (-0.001318840958 0.07733106418 0) (-0.001290157672 0.07732851285 0) (0.0008362995914 0.08808620986 0) (0.0008480631786 0.08798775859 0) (0.0007987226838 0.08808168803 0) (0.0008104589029 0.08798344592 0) (0.0007698158436 0.08807820671 0) (0.000781533581 0.0879801345 0) (0.0007997175852 0.08835803641 0) (0.0008099349492 0.08828941319 0) (0.0007622989528 0.08835235113 0) (0.000772479977 0.08828396325 0) (0.0007335155246 0.0883479678 0) (0.0007436677895 0.08827977602 0) (0.0008284688479 0.08815049434 0) (0.000790905539 0.08814585488 0) (0.000762011162 0.08814228204 0) (0.000789465588 0.08842395624 0) (0.0007520832952 0.08841803564 0) (0.0007233274057 0.08841346927 0) (0.0009006656841 0.08729953843 0) (0.0009036620141 0.08722896407 0) (0.0008628526936 0.08729786542 0) (0.0008658401958 0.08722753927 0) (0.0008337668894 0.08729657949 0) (0.0008367450521 0.08722642319 0) (0.0008935354713 0.0874406946 0) (0.0008557456162 0.0874385643 0) (0.0008266770997 0.08743692561 0) (0.0009060037081 0.08715814582 0) (0.0008681740269 0.08715691699 0) (0.0008390748532 0.08715598378 0) (0.0008985252323 0.08609697316 0) (0.0008949511446 0.08602607599 0) (0.0008607147412 0.08609868289 0) (0.000857151331 0.08602802075 0) (0.0008316289313 0.08609999607 0) (0.0008280758573 0.08602951672 0) (0.0008872944486 0.08588521231 0) (0.0008495153075 0.08588752264 0) (0.0008204547706 0.08588930584 0) (0.0009012796123 0.08616754915 0) (0.0008634598352 0.08616903691 0) (0.0008343677776 0.0861701934 0) (0.0008293242713 0.08519908563 0) (0.0007916783877 0.08520300158 0) (0.0007627212082 0.08520601183 0) (0.0008119358416 0.08503700935 0) (0.0008041733232 0.08496734114 0) (0.0007743163931 0.08504117328 0) (0.0007665912698 0.08497183134 0) (0.0007453787774 0.08504437931 0) (0.0007376813952 0.08497528536 0) (0.0007682492966 0.08469012375 0) (0.0007590664449 0.08462416104 0) (0.0007307456955 0.08469522731 0) (0.0007215765865 0.084629369 0) (0.0007018976627 0.08469915111 0) (0.0006927382076 0.0846333711 0) (0.0007952469607 0.0848976544 0) (0.0007576979578 0.08490240561 0) (0.0007288142624 0.08490606843 0) (0.0007774714673 0.08475890736 0) (0.0007399445549 0.08476384127 0) (0.0007110787761 0.08476764764 0) (0.0001997115503 0.08168359423 0) (0.0001629008593 0.08169240255 0) (0.0001345846898 0.08169917014 0) (-0.0002287981428 0.08005072807 0) (-0.000245397735 0.07999318581 0) (-0.0002651665347 0.08006120529 0) (-0.0002817623847 0.08000367606 0) (-0.0002931423982 0.08006926369 0) (-0.0003097355961 0.08001176057 0) (-0.001234065355 0.07880628395 0) (-0.001228852609 0.0788757076 0) (-0.001196325059 0.07880342532 0) (-0.001191110922 0.07887286202 0) (-0.001167293457 0.0788012113 0) (-0.001162077843 0.0788706741 0) (-0.001223836561 0.07894201098 0) (-0.001186094959 0.07893915234 0) (-0.001157063272 0.07893695138 0) (-0.001239296786 0.07873659921 0) (-0.00120156657 0.07873359698 0) (-0.001172543401 0.07873129158 0) (-0.00124514316 0.0786667487 0) (-0.00120742433 0.07866360286 0) (-0.00117840968 0.07866119304 0) (-0.001314598358 0.07782252993 0) (-0.001276876661 0.07781942326 0) (-0.00124786062 0.07781702649 0) (-0.00133851472 0.07754383662 0) (-0.001300814149 0.07754049499 0) (-0.001271814974 0.07753791548 0) (-0.0006922221765 0.08822489355 0) (-0.0006544804038 0.08822206102 0) (-0.0006254473254 0.08821987311 0) (-0.0006337555693 0.07873024157 0) (-0.0006657736303 0.07863214152 0) (-0.0006697466437 0.0787419571 0) (-0.0007017300656 0.07864396132 0) (-0.0006974330029 0.07875096705 0) (-0.0007293884864 0.07865304945 0) (0.0004739185636 0.08961849227 0) (0.0004390955002 0.08960366442 0) (0.0004123076235 0.08959225829 0) (0.0004586240666 0.08286126046 0) (0.0004215212674 0.08286873847 0) (0.0003929816441 0.08287448878 0) (-0.000620360396 0.0889386303 0) (-0.0006116269392 0.08900317753 0) (-0.0005828320839 0.08893371074 0) (-0.0005741357066 0.08899798002 0) (-0.0005539635565 0.08892992525 0) (-0.0005452972936 0.08899398314 0) (-0.0006018119766 0.08907213489 0) (-0.0005643672556 0.08906661508 0) (-0.0005355631225 0.08906236896 0) (-0.0006327661222 0.0888401514 0) (-0.000595192357 0.08883559203 0) (-0.0005662893622 0.08883208451 0) (-0.0006397161163 0.08878090438 0) (-0.0006021160611 0.08877657078 0) (-0.0005731909672 0.08877324728 0) (-0.0006679392572 0.08850551747 0) (-0.0006302598114 0.08850194088 0) (-0.0006012747202 0.08849920473 0) (-0.0001498669632 0.0803286964 0) (-0.0001863162917 0.08033889987 0) (-0.0002143542502 0.0803467497 0) (-0.001278730597 0.07824753138 0) (-0.001273095859 0.0783171743 0) (-0.001241007509 0.07824443776 0) (-0.001235365558 0.07831418513 0) (-0.001211988685 0.07824206709 0) (-0.001206340998 0.07831189278 0) (-0.001267718606 0.0783869887 0) (-0.001229984046 0.07838405174 0) (-0.001200956618 0.07838179856 0) (-0.0007572627007 0.0783600934 0) (-0.0007931258375 0.07837219993 0) (-0.000820713674 0.07838149657 0) (-0.001284577936 0.07817773311 0) (-0.001246857545 0.07817462645 0) (-0.001217840197 0.07817222967 0) (-0.001290246599 0.0781084953 0) (-0.001252526208 0.07810538864 0) (-0.001223510166 0.07810299186 0) (-0.0008310118618 0.0781441434 0) (-0.0008509912835 0.07808691055 0) (-0.0008667565443 0.07815658874 0) (-0.0008867386633 0.07809934284 0) (-0.0008942524736 0.07816615906 0) (-0.0009142372047 0.07810891318 0) (-0.001360130463 0.07726383526 0) (-0.001324174946 0.07726067482 0) (-0.001296516127 0.07725824773 0) (0.0006653463089 0.08400327176 0) (0.0006495186549 0.08390459579 0) (0.0006279778899 0.08400927563 0) (0.0006121693733 0.08391073015 0) (0.0005992324151 0.08401390405 0) (0.0005834401678 0.08391544988 0) (0.0004134027374 0.08263855454 0) (0.0003763188196 0.08264612386 0) (0.0003477913771 0.08265193939 0) (0.0004005704617 0.08257535845 0) (0.0003635203035 0.08258309734 0) (0.0003350198345 0.0825890433 0) (-0.0003666977465 0.08994098868 0) (-0.000335368725 0.08999537668 0) (-0.0003334426437 0.089922916 0) (-0.0003039963689 0.08997420049 0) (-0.0003078609817 0.08990901544 0) (-0.0002798656941 0.08995791143 0) (-0.001066196607 0.08119449032 0) (-0.001028420334 0.08119214082 0) (-0.0009993626651 0.08119031845 0) (-0.001084135617 0.08091450413 0) (-0.001046368033 0.08091202408 0) (-0.001017316185 0.08091011033 0) (-0.0002118659741 0.08010941751 0) (-0.0002482484204 0.08011984258 0) (-0.0002762350333 0.08012787493 0) (-0.001141380357 0.08005466319 0) (-0.001103625807 0.08005198732 0) (-0.001074584125 0.0800499169 0) (-0.001219383166 0.0790007558 0) (-0.00118164287 0.07899789716 0) (-0.001152611183 0.0789956962 0) (-0.001212052512 0.07909729303 0) (-0.001174312215 0.0790944344 0) (-0.00114528192 0.07909222038 0) (-0.001256764758 0.07852694271 0) (-0.001251096628 0.07859689888 0) (-0.001219036019 0.07852391436 0) (-0.001213376407 0.0785937661 0) (-0.001190014327 0.07852158286 0) (-0.001184360366 0.07859136933 0) (-0.001020427985 0.07760800409 0) (-0.001056150285 0.07751047679 0) (-0.001056020965 0.07762087945 0) (-0.001091627594 0.07752366485 0) (-0.001083401138 0.07763077553 0) (-0.001118917336 0.0775338085 0) (0.0008547669713 0.08792810502 0) (0.0008171307857 0.08792410602 0) (0.0007881794871 0.08792101681 0) (0.0008796968155 0.08765199224 0) (0.0008419593085 0.08764907795 0) (0.000812931359 0.08764685125 0) (0.0008728795668 0.08567407306 0) (0.0008351379647 0.0856769317 0) (0.0008061062776 0.08567913266 0) (0.0008487173727 0.08539373568 0) (0.0008110421008 0.08539735142 0) (0.0007820612689 0.08540013979 0) (-0.0004774992594 0.07922084521 0) (-0.0005136130474 0.07923216972 0) (-0.0005413927051 0.07924089294 0) (0.0003233380002 0.08990821089 0) (0.0002917693601 0.08988733028 0) (0.0002674861946 0.08987126857 0) (0.0003542552748 0.08985894846 0) (0.0004054711627 0.08976639644 0) (0.000321766259 0.08983953145 0) (0.0003719235088 0.08974887103 0) (0.0002967747064 0.08982459499 0) (0.0003461186238 0.08973538964 0) (0.0004317610924 0.08971415239 0) (0.0003976113773 0.08969783382 0) (0.0003713410537 0.08968528017 0) (0.0001458149243 0.08145924706 0) (0.0001090472204 0.08146823795 0) (8.076463979e-05 0.08147514899 0) (0.000131301173 0.08140056794 0) (0.0001068133666 0.08130156976 0) (9.455357126e-05 0.08140963706 0) (7.007377164e-05 0.08131066495 0) (6.628708948e-05 0.08141661331 0) (4.181129324e-05 0.08131765423 0) (-0.0005913198792 0.08914178136 0) (-0.0005797426863 0.08921038762 0) (-0.0005539488225 0.08913578138 0) (-0.0005424680765 0.08920381883 0) (-0.0005252019564 0.08913116602 0) (-0.0005137946017 0.0891987651 0) (-0.000556355907 0.08933578639 0) (-0.000535600299 0.08943587602 0) (-0.0005192220542 0.0893284636 0) (-0.0004986228669 0.08942780063 0) (-0.0004906568487 0.08932283067 0) (-0.0004701776936 0.08942158728 0) (-0.000567438087 0.08927618106 0) (-0.0005302339154 0.08926922612 0) (-0.0005016146179 0.08926387626 0) (-0.0009709460793 0.08286432696 0) (-0.0009331535635 0.08286226469 0) (-0.0009040812989 0.08286067733 0) (-0.00100061683 0.08231926874 0) (-0.0009628229233 0.08231721953 0) (-0.0009337505734 0.08231564522 0) (-0.0009853745717 0.08259970354 0) (-0.0009475819705 0.08259765434 0) (-0.000918509706 0.08259606698 0) (-0.001048500542 0.08148487454 0) (-0.001010718363 0.08148262949 0) (-0.0009816548723 0.08148089851 0) (-0.00101575844 0.08203884633 0) (-0.0009779659237 0.08203678407 0) (-0.0009488935739 0.08203520977 0) (-0.001032117947 0.0817589282 0) (-0.0009943373289 0.08175664398 0) (-0.00096527523 0.08175489995 0) (-0.001102449091 0.08063437672 0) (-0.00106468003 0.08063192278 0) (-0.001035626705 0.08063003514 0) (-0.0011205105 0.08035424766 0) (-0.001082740133 0.08035179372 0) (-0.001053686723 0.08034991914 0) (-0.0003933236262 0.07949239253 0) (-0.0004295187878 0.07950345636 0) (-0.0004573624997 0.07951197102 0) (-0.001262277811 0.07845693329 0) (-0.001224544727 0.07845397022 0) (-0.001195518776 0.07845169093 0) (-0.0007371929766 0.07841915418 0) (-0.0007730387939 0.07843131284 0) (-0.0008006119229 0.07844066163 0) (-0.001295444734 0.07804430897 0) (-0.001257734338 0.07804107176 0) (-0.001228725424 0.07803858361 0) (-0.0008705632183 0.07803027584 0) (-0.0009063012854 0.07804273419 0) (-0.0009337932113 0.07805231755 0) (0.0008199843097 0.08821986376 0) (0.0007824694626 0.08821484522 0) (0.0007536110842 0.08821098481 0) (0.0007799245845 0.08848354998 0) (0.0007425911799 0.08847731559 0) (0.0007138743275 0.08847252694 0) (0.0008973868836 0.08737025831 0) (0.0008595854182 0.08736835013 0) (0.0008305087829 0.08736686822 0) (0.0009081664277 0.08708832137 0) (0.0008703314104 0.08708727542 0) (0.0008412278654 0.08708647285 0) (0.0009097585388 0.0870233201 0) (0.0008719193209 0.08702243091 0) (0.0008428127108 0.08702175897 0) (0.0008911271838 0.08595571596 0) (0.0008533361445 0.08595780433 0) (0.0008242652713 0.08595940475 0) (0.0009039998012 0.08623728947 0) (0.0008661752531 0.08623864666 0) (0.0008370799011 0.08623969868 0) (0.000906196571 0.08630227906 0) (0.0008683671666 0.0863034926 0) (0.000839267129 0.08630442711 0) (0.0008188505869 0.08510145875 0) (0.0007812185313 0.08510549215 0) (0.0007522698702 0.08510860683 0) (0.0007508346704 0.08456503602 0) (0.000713350292 0.08457028312 0) (0.0006845160018 0.08457431131 0) (0.0007863633026 0.08482830697 0) (0.0007488239537 0.08483313649 0) (0.0007199471296 0.0848368515 0) (0.0003721215226 0.08244399518 0) (0.0003591898278 0.08238517513 0) (0.0003351508083 0.08245209926 0) (0.0003222231169 0.08239329224 0) (0.000306710987 0.08245833217 0) (0.0002937873843 0.08239955124 0) (0.0003863319858 0.08250863204 0) (0.0003493343833 0.08251661874 0) (0.0003208743745 0.08252276035 0) (6.069862537e-05 0.08111785637 0) (3.52405233e-05 0.08101887758 0) (2.403421508e-05 0.08112726453 0) (-1.413137561e-06 0.0810283118 0) (-4.168609724e-06 0.08113448851 0) (-2.960834741e-05 0.08103556185 0) (1.934402695e-05 0.08095705983 0) (-1.729510233e-05 0.08096655925 0) (-4.547900036e-05 0.08097386148 0) (-0.0002609553976 0.09008942998 0) (-0.0001535015223 0.09016257596 0) (-0.0002353934145 0.09006151602 0) (-0.0001389797494 0.09012762345 0) (-0.0002157320581 0.09004004382 0) (-0.000127809094 0.09010073699 0) (-7.211786702e-05 0.09018262802 0) (-6.867033575e-05 0.09014493614 0) (-6.601838776e-05 0.09011594243 0) (1.424550149e-05 0.0901759236 0) (6.145463633e-06 0.09013895129 0) (-8.522405405e-08 0.09011051108 0) (-0.0007212930755 0.08779909018 0) (-0.0007173577388 0.08786550511 0) (-0.0006835122872 0.08779683208 0) (-0.0006795785125 0.08786320783 0) (-0.0006544501883 0.08779508805 0) (-0.0006505178902 0.08786143769 0) (-0.0007254989305 0.08772945098 0) (-0.0006877167509 0.08772720594 0) (-0.000658654652 0.08772546191 0) (-0.0007519764509 0.08723816962 0) (-0.0007486221228 0.08730841518 0) (-0.0007141705602 0.08723635543 0) (-0.0007108207473 0.08730650959 0) (-0.0006850891801 0.08723496391 0) (-0.000681743797 0.08730503974 0) (-8.993192083e-05 0.08054706145 0) (-0.0001264615075 0.08055696504 0) (-0.0001545610587 0.08056459324 0) (-0.0005965339642 0.07884515615 0) (-0.0006152506298 0.07878728813 0) (-0.0006325517563 0.07885678044 0) (-0.0006512564118 0.07879895152 0) (-0.0006602581324 0.07886572521 0) (-0.0006789546958 0.07880793543 0) (0.0005532636664 0.08335034654 0) (0.0005410305612 0.08328230095 0) (0.0005160174811 0.08335706796 0) (0.0005038101287 0.08328916587 0) (0.0004873656192 0.08336223126 0) (0.0004751800162 0.08329445964 0) (0.000528767726 0.08321710282 0) (0.0004915946251 0.08322421559 0) (0.0004629983574 0.08322969199 0) (-0.0007779189393 0.0866766173 0) (-0.0007748316385 0.08674677318 0) (-0.0007401068863 0.08667494674 0) (-0.0007370182795 0.0867451026 0) (-0.0007110209058 0.08667365968 0) (-0.0007079322137 0.08674382861 0) (-0.0007552876799 0.08716792378 0) (-0.0007174801421 0.08716616182 0) (-0.0006883972001 0.08716480948 0) (-0.0008279815121 0.08555117593 0) (-0.0008248252476 0.08562129217 0) (-0.0007901770128 0.08554934869 0) (-0.0007870148418 0.08561956937 0) (-0.000761095718 0.08554794411 0) (-0.0007579303379 0.08561825621 0) (-0.0008061712983 0.08604175637 0) (-0.0008032603164 0.08610811268 0) (-0.0007683592454 0.0860400858 0) (-0.0007654468721 0.08610645517 0) (-0.0007392718735 0.0860388118 0) (-0.0007363595003 0.08610518116 0) (-0.0007810401115 0.08660647471 0) (-0.0007432294499 0.0866047911 0) (-0.0007141435547 0.08660349098 0) (-0.0008006980859 0.08616646496 0) (-0.0007628844711 0.08616483357 0) (-0.0007337969287 0.08616358568 0) (-0.0008315976968 0.08548123249 0) (-0.0007937977979 0.08547930078 0) (-0.0007647209329 0.08547781787 0) (-0.0008574182784 0.08499054763 0) (-0.000853663937 0.08506064691 0) (-0.0008196228946 0.08498852453 0) (-0.0008158684679 0.08505863687 0) (-0.0007905503741 0.08498697635 0) (-0.0007867946414 0.08505708867 0) (-0.0008611739258 0.08492044837 0) (-0.0008233786273 0.08491841221 0) (-0.0007943061069 0.08491686402 0) (-0.001184666779 0.07718984896 0) (-0.001236665698 0.07710449619 0) (-0.001215959805 0.077201573 0) (-0.001258011229 0.0771124721 0) (-0.0012400309 0.07721058546 0) (-0.001274431732 0.07711861346 0) (0.0006718377353 0.08900669701 0) (0.0006963349878 0.08890654174 0) (0.0006351261886 0.08899748722 0) (0.0006594822927 0.08889791799 0) (0.0006068854355 0.08899040327 0) (0.0006311334523 0.08889128274 0) (0.000638852994 0.08384077168 0) (0.0006273051872 0.08377286529 0) (0.0006015267678 0.0838470365 0) (0.0005899898357 0.08377919534 0) (0.000572813917 0.08385186061 0) (0.0005612864683 0.08378407163 0) (-0.000436903394 0.08978465406 0) (-0.0004133683294 0.08984275967 0) (-0.0004015855637 0.08977104518 0) (-0.0003786901896 0.08982759549 0) (-0.000374418109 0.0897605758 0) (-0.0003520137959 0.08981593033 0) (-1.453090873e-05 0.08082831805 0) (-3.006727966e-05 0.08076994601 0) (-5.111107742e-05 0.08083802607 0) (-6.664066232e-05 0.08077969317 0) (-7.924963755e-05 0.08084551085 0) (-9.477391304e-05 0.08078719097 0) (-0.0002739036682 0.07989447508 0) (-0.0003102657512 0.07990497839 0) (-0.0003382363505 0.07991306287 0) (-0.001150207148 0.07992962386 0) (-0.001145523967 0.07999595554 0) (-0.001112451206 0.07992696104 0) (-0.001107769417 0.07999327966 0) (-0.001083408132 0.07992490367 0) (-0.001078727564 0.07999123536 0) (-0.0002914222445 0.07983386952 0) (-0.000327779018 0.07984438585 0) (-0.000355745614 0.07985248337 0) (-0.001155113574 0.07986010679 0) (-0.001117357632 0.07985744396 0) (-0.001088314388 0.07985541272 0) (-0.001169744223 0.07965032727 0) (-0.001164882767 0.0797201581 0) (-0.001131994017 0.07964758612 0) (-0.001127125434 0.07971750833 0) (-0.001102955117 0.0796454896 0) (-0.00109808219 0.07971547708 0) (-0.0009799257259 0.07772168259 0) (-0.001000252664 0.07766463486 0) (-0.001015579893 0.07773438855 0) (-0.001035896212 0.07767736688 0) (-0.001043005323 0.07774415433 0) (-0.00106331355 0.07768717178 0) (-0.0012813681 0.07705885305 0) (-0.001294736671 0.07706433449 0) (0.0009131870439 0.08673312444 0) (0.0009132808614 0.08666249067 0) (0.0008753373563 0.08673303204 0) (0.0008754311471 0.08666259417 0) (0.0008462229152 0.08673296095 0) (0.0008463164235 0.08666267982 0) (0.0009119134268 0.0869278964 0) (0.0008740685049 0.08692733377 0) (0.0008449568998 0.08692689696 0) (0.0009123883419 0.0868694198 0) (0.0008745396459 0.08686907923 0) (0.0008454265375 0.08686881222 0) (0.0009129291571 0.08659243448 0) (0.0008750826251 0.0865928253 0) (0.0008459693514 0.08659313297 0) (0.000908987393 0.08639743536 0) (0.0008711529617 0.08639847915 0) (0.0008420494592 0.08639928307 0) (0.0009105762306 0.08645553278 0) (0.0008727366872 0.08645639375 0) (0.0008436296344 0.08645705403 0) (0.0002582185886 0.08193513014 0) (0.0002439664653 0.08187271391 0) (0.0002213204469 0.08194354721 0) (0.0002070711062 0.08188115708 0) (0.0001929357934 0.08195002791 0) (0.0001786904561 0.08188765081 0) (-0.0004586614375 0.08972506228 0) (-0.0004228169092 0.08971290624 0) (-0.0003952437887 0.08970355614 0) (-0.0005211850872 0.08949886587 0) (-0.0005058059662 0.08956365835 0) (-0.0004843300775 0.08949024403 0) (-0.0004691428107 0.08955425803 0) (-0.0004559816762 0.08948361206 0) (-0.0004409393756 0.08954702751 0) (-0.0007374852985 0.0875189881 0) (-0.0007336902143 0.08758912629 0) (-0.0006996898295 0.08751697806 0) (-0.0006958992604 0.08758702485 0) (-0.0006706173943 0.08751541681 0) (-0.0006668297784 0.08758541138 0) (-0.0007411303598 0.08744882281 0) (-0.0007033334141 0.08744683888 0) (-0.0006742581963 0.08744530374 0) (-5.641792326e-05 0.08067097306 0) (-9.297463938e-05 0.08068077235 0) (-0.00012109522 0.08068832231 0) (0.0005945401626 0.08358018332 0) (0.0005768136516 0.0834813369 0) (0.0005572534317 0.08358669604 0) (0.0005395566769 0.08348800615 0) (0.0005285717284 0.08359168974 0) (0.000510898029 0.08349313031 0) (-0.0007685639091 0.08688734553 0) (-0.0007651248595 0.08695756441 0) (-0.0007307564565 0.08688557051 0) (-0.0007273190542 0.08695573716 0) (-0.0007016736851 0.08688419205 0) (-0.0006982389801 0.08695434565 0) (-0.0007617245378 0.08702765293 0) (-0.0007239184766 0.08702586486 0) (-0.0006948357052 0.0870244864 0) (-0.0008185764582 0.08576156425 0) (-0.0008154602541 0.08583174605 0) (-0.0007807644905 0.08575988063 0) (-0.0007776482865 0.08583006243 0) (-0.00075167851 0.08575859357 0) (-0.000748562306 0.08582877537 0) (-0.0008123455267 0.08590190175 0) (-0.0007745334738 0.08590023118 0) (-0.0007454474933 0.08589894413 0) (-0.0007908039828 0.08639614098 0) (-0.0007874746399 0.08646636058 0) (-0.0007529949684 0.08639440513 0) (-0.0007496671874 0.08646458556 0) (-0.0007239106351 0.08639306584 0) (-0.0007205843306 0.08646322015 0) (-0.000793947411 0.08632639036 0) (-0.0007561352728 0.08632473286 0) (-0.0007270479009 0.08632345885 0) (-0.0008425327366 0.08527095865 0) (-0.0008388436968 0.08534105835 0) (-0.0008047358762 0.08526896166 0) (-0.0008010453598 0.08533908747 0) (-0.0007756618792 0.08526743959 0) (-0.0007719713627 0.0853375654 0) (-0.0008462349221 0.08520084597 0) (-0.0008084393677 0.08519884899 0) (-0.0007793654559 0.08519731386 0) (-0.0008762976984 0.08464075726 0) (-0.0008725308989 0.08471016422 0) (-0.0008385051825 0.08463869499 0) (-0.0008347369918 0.08470811501 0) (-0.0008094328327 0.08463712069 0) (-0.0008056646419 0.0847065407 0) (-0.0008687269284 0.08478026317 0) (-0.0008309329359 0.08477822702 0) (-0.000801860586 0.08477665271 0) (-0.001196512464 0.079300928 0) (-0.00119114881 0.07937086003 0) (-0.001158773645 0.07929804325 0) (-0.001153411382 0.07936796223 0) (-0.00112974474 0.07929581619 0) (-0.001124381257 0.0793657221 0) (-0.001207146612 0.07916172943 0) (-0.001169406402 0.07915885773 0) (-0.001140376106 0.07915664372 0) (-0.001185774708 0.079440792 0) (-0.001148037365 0.07943788114 0) (-0.001119008546 0.07943564101 0) (-0.001174955695 0.07958049873 0) (-0.001137214093 0.07957764009 0) (-0.00110818232 0.07957545219 0) (-0.0009048233613 0.07793264756 0) (-0.000925140448 0.07787550834 0) (-0.000940512167 0.07794524927 0) (-0.0009608039274 0.07788818825 0) (-0.0009679655358 0.07795493686 0) (-0.0009882372792 0.07789794101 0) (0.0005935452638 0.08929023335 0) (0.0006231125859 0.08919045377 0) (0.0005574055479 0.08927898755 0) (0.0005867121199 0.08918007952 0) (0.0005296051577 0.08927033603 0) (0.0005587136703 0.08917209932 0) (0.0006392283408 0.08913164646 0) (0.0006026964583 0.08912174849 0) (0.0005745946083 0.08911413467 0) (0.0006046169909 0.08363943997 0) (0.0005673098167 0.08364582221 0) (0.000538610538 0.0836507246 0) (0.000323657622 0.08222355691 0) (0.0003089451741 0.08215725155 0) (0.0002867043979 0.08223173924 0) (0.0002720189235 0.08216556431 0) (0.0002582780634 0.08223803736 0) (0.0002436140825 0.08217195372 0) (0.0002288498301 0.08180651567 0) (0.0001919786619 0.08181506317 0) (0.0001636168932 0.08182164821 0) (0.0002942359509 0.08209283999 0) (0.0002573324999 0.08210124403 0) (0.000228945149 0.08210771168 0) (7.577632618e-05 0.08117649262 0) (3.908233032e-05 0.08118577037 0) (1.085613824e-05 0.08119291614 0) (2.369741188e-06 0.08089180104 0) (-3.423518609e-05 0.08090141779 0) (-6.239306481e-05 0.08090882433 0) (-0.0007137682272 0.08792416414 0) (-0.0006759949073 0.08792176242 0) (-0.0006469388001 0.08791990088 0) (-0.0007296684191 0.08765938054 0) (-0.0006918832863 0.08765718772 0) (-0.0006628169282 0.08765549591 0) (-0.0007448614485 0.0873786842 0) (-0.0007070645881 0.08737668721 0) (-0.0006779906763 0.08737515208 0) (-7.291663058e-05 0.08060979922 0) (-0.0001094561178 0.08061967676 0) (-0.0001375634345 0.08062726582 0) (-0.0005648997057 0.07894328483 0) (-0.0006009441302 0.07895483092 0) (-0.000628671744 0.07896372359 0) (0.0005654222106 0.08341797467 0) (0.0005281693246 0.08342467001 0) (0.0004995134593 0.08342982028 0) (0.0005171567378 0.08315792149 0) (0.0004800093896 0.08316517777 0) (0.0004514347008 0.08317075851 0) (-0.0007717608044 0.08681700752 0) (-0.0007339489221 0.08681531084 0) (-0.0007048644182 0.08681399767 0) (-0.0007585122845 0.08709774269 0) (-0.0007207033554 0.08709599378 0) (-0.0006916190221 0.08709465449 0) (-0.0008217016338 0.08569140862 0) (-0.0007838896662 0.085689725 0) (-0.0007548037709 0.08568842488 0) (-0.0008092320201 0.08597207051 0) (-0.0007714199671 0.08597039995 0) (-0.0007423339866 0.08596911289 0) (-0.0007841596366 0.08653638435 0) (-0.0007463493162 0.0865346485 0) (-0.0007172662036 0.08653332228 0) (-0.0007966704794 0.0862618091 0) (-0.0007588553879 0.08626020382 0) (-0.0007297664542 0.08625896899 0) (-0.0008352199585 0.08541115847 0) (-0.0007974215362 0.08540920066 0) (-0.0007683461478 0.08540769164 0) (-0.0008499370222 0.08513074636 0) (-0.0008121415532 0.08512873632 0) (-0.0007830676414 0.08512720118 0) (-0.0008850541276 0.08448049231 0) (-0.0008797996996 0.08457629863 0) (-0.000847261697 0.08447841698 0) (-0.0008420058777 0.08457423636 0) (-0.0008181894325 0.08447682962 0) (-0.0008129349192 0.084572649 0) (-0.0008882640374 0.08442196141 0) (-0.0008504716068 0.08441988608 0) (-0.0008213993423 0.08441829872 0) (-0.0008649282672 0.08485034909 0) (-0.0008271329687 0.08484831294 0) (-0.0007980605336 0.08484675169 0) (-0.0009470512553 0.0833043221 0) (-0.0009432659103 0.08337436893 0) (-0.0009092573481 0.08330227289 0) (-0.000905470356 0.08337237195 0) (-0.000880184913 0.08330071165 0) (-0.0008763965295 0.08337082376 0) (-0.0009396034175 0.0834444035 0) (-0.0009018049953 0.08344244569 0) (-0.0008727296922 0.0834409236 0) (-0.000921384103 0.08379511245 0) (-0.0009176152247 0.08386523775 0) (-0.0008835887192 0.08379308935 0) (-0.0008798199262 0.08386320159 0) (-0.0008545162841 0.0837915281 0) (-0.0008507474911 0.08386164034 0) (-0.0009251558493 0.08372494798 0) (-0.0008873589889 0.083722951 0) (-0.0008582850771 0.08372141586 0) (-0.0008919054318 0.08435555762 0) (-0.0008541115246 0.08435350841 0) (-0.0008250391747 0.0843519341 0) (-0.00089564739 0.08428595458 0) (-0.0008578505296 0.08428395759 0) (-0.0008287765325 0.08428243552 0) (-0.000913846517 0.08393533693 0) (-0.0008760524392 0.08393331384 0) (-0.000846978698 0.08393175258 0) (-0.0009100819832 0.08400539695 0) (-0.0008722851228 0.08400339996 0) (-0.000843211211 0.08400186483 0) (-0.0009508396388 0.08323420999 0) (-0.0009130456463 0.08323217384 0) (-0.0008839732965 0.08323059954 0) (-0.000954627937 0.08316411094 0) (-0.0009168340298 0.08316206173 0) (-0.00088776168 0.08316048742 0) (-0.001158267128 0.07724480647 0) (-0.001192419897 0.07725762018 0) (-0.00121869142 0.07726748291 0) (0.0005745073303 0.08934876979 0) (0.0005385455108 0.08933696512 0) (0.0005108833745 0.08932788431 0) (0.0006559660807 0.08906848321 0) (0.0006193398632 0.08905893981 0) (0.000591166658 0.08905159943 0) (0.0007097300864 0.08884732249 0) (0.000672770738 0.08883916702 0) (0.0006443393682 0.08883289409 0) (0.000723569164 0.0887824894 0) (0.0006865147546 0.08877477732 0) (0.0006580098099 0.08876883792 0) (0.0007371242364 0.08446656825 0) (0.0007274482592 0.08440229362 0) (0.00069966987 0.08447201107 0) (0.0006900185954 0.08440791913 0) (0.0006708575851 0.08447620892 0) (0.0006612267538 0.08441224744 0) (0.0006157397197 0.08370485452 0) (0.0005784257595 0.08371119762 0) (0.0005497236981 0.08371607391 0) (0.0007170828049 0.08433403992 0) (0.0006796613185 0.08433971762 0) (0.0006508762629 0.08434408507 0) (0.000706632624 0.08426521209 0) (0.0006692152262 0.08427091589 0) (0.0006404329533 0.08427530944 0) (8.722014954e-05 0.09014967312 0) (7.033978724e-05 0.09011579675 0) (5.735442108e-05 0.09008973802 0) (9.155376021e-05 0.08123987846 0) (5.482486936e-05 0.08124901276 0) (2.657178905e-05 0.08125604116 0) (-0.0003094473206 0.07977150405 0) (-0.0003457786825 0.07978211164 0) (-0.0003737252616 0.07979027433 0) (-0.001160011316 0.07979011947 0) (-0.001122253898 0.07978748276 0) (-0.001093209347 0.0797854515 0) (-0.0009452282064 0.07781908597 0) (-0.0009808850704 0.0778317789 0) (-0.001008313113 0.07784154469 0) (0.0009129266144 0.08680284505 0) (0.0008750774652 0.08680263509 0) (0.0008459636478 0.08680245951 0) (0.000911723591 0.08652222713 0) (0.0008738800709 0.08652287916 0) (0.0008447692972 0.08652336966 0) (-0.0004896444369 0.08962346039 0) (-0.0004532542961 0.08961305355 0) (-0.000425260974 0.08960504859 0) (-0.0005271535781 0.07906251913 0) (-0.0005464933104 0.07900084141 0) (-0.0005632632774 0.07907386974 0) (-0.00058257368 0.07901228325 0) (-0.0005910403231 0.07908259294 0) (-0.0006103280967 0.07902107161 0) (-0.0005083620533 0.07912245028 0) (-0.0005444771473 0.0791337748 0) (-0.0005722568051 0.07914249802 0) (-0.0009359979637 0.08351450374 0) (-0.0009323923392 0.08358463011 0) (-0.0008981994561 0.08351255899 0) (-0.0008945925256 0.08358268535 0) (-0.0008691226764 0.08351106302 0) (-0.0008655170519 0.08358118939 0) (-0.0009287853234 0.08365476953 0) (-0.0008909869012 0.08365281172 0) (-0.0008619101215 0.08365131574 0) (-0.0009028513997 0.08414561037 0) (-0.0008992509141 0.08421574983 0) (-0.0008650528921 0.08414366562 0) (-0.0008614524065 0.08421380508 0) (-0.0008359761124 0.08414216965 0) (-0.0008323756268 0.08421230911 0) (-0.0009064503234 0.08407551009 0) (-0.0008686519011 0.08407355227 0) (-0.0008395752067 0.08407204324 0) (-0.0009621894795 0.08302461803 0) (-0.0009584162352 0.08309401189 0) (-0.0009243969637 0.08302255576 0) (-0.000920622328 0.08309196268 0) (-0.0008953246138 0.08302098146 0) (-0.0008915512842 0.08309038838 0) (-0.0009657124626 0.08296014648 0) (-0.0009279186407 0.0829580842 0) (-0.0008988476821 0.08295649685 0) (-0.001201873506 0.07923099595 0) (-0.001164133381 0.07922811119 0) (-0.00113510317 0.07922588412 0) (-0.001180360289 0.07951069758 0) (-0.001142624252 0.07950778673 0) (-0.001113595433 0.0795055466 0) (-0.001135297103 0.07730098798 0) (-0.001170375022 0.07731413425 0) (-0.001197359323 0.07732424979 0) (0.000737191473 0.08871486271 0) (0.0007504345798 0.08864736909 0) (0.0007000725029 0.0887074645 0) (0.0007132650743 0.08864023244 0) (0.0006715195495 0.08870177358 0) (0.0006846729986 0.08863475074 0) (0.0007625488542 0.08858361826 0) (0.0007253124319 0.08857683468 0) (0.0006966685146 0.08857161454 0) (0.0006961606937 0.0841962538 0) (0.0006853456237 0.08412795079 0) (0.0006587596506 0.08420206197 0) (0.0006479650239 0.08413388944 0) (0.0006299896437 0.08420653382 0) (0.0006192099804 0.08413845261 0) (0.0006748251724 0.08406236252 0) (0.00063745275 0.08406835336 0) (0.0006087044925 0.08407295567 0) (0.0003374319672 0.08228621136 0) (0.0003004666476 0.08229434153 0) (0.0002720322211 0.08230060052 0) (0.0002137988266 0.08174236756 0) (0.0001769666421 0.08175108459 0) (0.0001486343737 0.08175778699 0) (0.0002808201452 0.0820340884 0) (0.0002439207828 0.08204251853 0) (0.0002155361293 0.08204899923 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.597849018e-07 8.710797781e-06 -2.775557562e-17) (0 0 0) (0 0 0) (-8.843478239e-08 9.757474763e-05 -3.330669074e-16) (4.068532734e-07 8.294434757e-05 -3.053113318e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.95474332e-06 0.0001378200234 -4.996003611e-16) (-5.729943049e-05 0.000864473124 -3.080868893e-15) (-7.491146257e-07 1.136375445e-05 -2.775557562e-17) (-0.0001088529127 0.002259469075 -7.993605777e-15) (-0.0002705726955 0.005588336826 -1.990074772e-14) (-0.000321385105 0.007569276732 -2.695066392e-14) (-0.0001496839243 0.003542260634 -1.254552018e-14) (-0.0001828476199 0.007464108082 -2.642330799e-14) (-0.0003215437863 0.01307700065 -4.657385588e-14) (-0.0002692874804 0.01444988183 -5.145883719e-14) (-0.0001578236285 0.008494351929 -3.008704397e-14) (-8.373481143e-06 0.009935079873 -3.516631431e-14) (-1.302413522e-05 0.01633564367 -5.817568649e-14) (8.290836566e-05 0.01612544381 -5.742628595e-14) (4.948356869e-05 0.009772535252 -3.461120279e-14) (0.0001705651561 0.007491577989 -2.653433029e-14) (0.0003008470055 0.01311562858 -4.671263376e-14) (0.0003307793749 0.01145975015 -4.080069615e-14) (0.0001797640921 0.006271294452 -2.220446049e-14) (0.0001060704511 0.00228827109 -8.10462808e-15) (0.0002628870656 0.005636875877 -2.006728117e-14) (0.0001979500011 0.003766059417 -1.340594302e-14) (6.199599615e-05 0.00118647334 -4.191091918e-15) (0 0 0) (1.044222493e-05 0.0001484231051 -5.273559367e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.780235333e-05 0.0002831635069 -1.026956298e-15) (-0.0001519017408 0.001649362603 -5.995204333e-15) (-3.597664256e-05 0.0003928234574 -1.415534356e-15) (-0.0005138447212 0.007000210426 -2.534084054e-14) (-0.0008222775157 0.01114315815 -4.057865155e-14) (-0.001049929921 0.01551277483 -5.648259638e-14) (-0.0007069211427 0.01049875964 -3.802513859e-14) (-0.001102890732 0.02245634891 -8.129608098e-14) (-0.001460965929 0.02960734999 -1.078026557e-13) (-0.001472568877 0.03405949171 -1.240119119e-13) (-0.001135302919 0.0263777549 -9.550693569e-14) (-0.0008966535423 0.03609695874 -1.307010056e-13) (-0.001117728195 0.04483888023 -1.632582958e-13) (-0.000890494855 0.04728062955 -1.7214008e-13) (-0.0007200907998 0.03833996273 -1.388056337e-13) (-2.625383907e-05 0.04132985993 -1.496580637e-13) (-2.951780356e-05 0.05050858263 -1.83908444e-13) (0.0002752818909 0.05015849856 -1.826316876e-13) (0.0002215536989 0.04100368901 -1.48464574e-13) (0.000849561207 0.03616730256 -1.309508058e-13) (0.001063465642 0.04491738943 -1.635636071e-13) (0.001244712262 0.04186874529 -1.524613769e-13) (0.0009852137294 0.03338645465 -1.209032874e-13) (0.001073126278 0.02256857253 -8.174017019e-14) (0.001423473737 0.02973896705 -1.083022561e-13) (0.00135091059 0.02506049434 -9.126033262e-14) (0.000991428561 0.01851090029 -6.702971511e-14) (0.0005076012586 0.007090004916 -2.567390744e-14) (0.0008111599355 0.01126161292 -4.102274076e-14) (0.0005739279287 0.007350971767 -2.678413047e-14) (0.0003188359036 0.004108084369 -1.487698853e-14) (0 0 0) (2.759870555e-05 0.0002862763184 -1.054711873e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.196125098e-05 0.0001000207218 -3.60822483e-16) (0 0 0) (-0.0005093710344 0.005099093904 -1.890154699e-14) (-0.0007572177961 0.00752471757 -2.803313137e-14) (-0.001185602921 0.0125736629 -4.685141164e-14) (-0.0008703097358 0.009292183582 -3.441691376e-14) (-0.001993940046 0.02659378226 -9.850453786e-14) (-0.002421006923 0.03211340026 -1.196265309e-13) (-0.002710777035 0.03921667797 -1.4610535e-13) (-0.002279222801 0.03315195404 -1.227906665e-13) (-0.00260808617 0.05207914176 -1.929012505e-13) (-0.002975584209 0.05910515006 -2.201849814e-13) (-0.002851451937 0.06466968887 -2.409183963e-13) (-0.002523903872 0.05754135174 -2.131350652e-13) (-0.001763308829 0.06985847759 -2.587374759e-13) (-0.001949262888 0.07683557527 -2.862432513e-13) (-0.001518107165 0.07932165639 -2.955136136e-13) (-0.001380075148 0.07246604503 -2.683964162e-13) (-3.659381251e-05 0.07579943857 -2.807754029e-13) (-3.893698435e-05 0.08243588532 -3.071431998e-13) (0.0004714569796 0.08210876833 -3.059219544e-13) (0.000429682297 0.07544535316 -2.794708909e-13) (0.001692864942 0.06994574944 -2.591260539e-13) (0.001873870891 0.07691817304 -2.866040738e-13) (0.00225173742 0.07367243721 -2.745303984e-13) (0.00202206124 0.06659771399 -2.467193116e-13) (0.002550617025 0.05224719521 -1.935951399e-13) (0.002912602364 0.05923885303 -2.207678484e-13) (0.002936459471 0.05305226253 -1.977029651e-13) (0.002543121996 0.04627197481 -1.714461906e-13) (0.001956534713 0.02659225592 -9.853229344e-14) (0.002436193963 0.03279033485 -1.222077994e-13) (0.002103477411 0.02610513325 -9.731104811e-14) (0.00166844846 0.02087413504 -7.735478924e-14) (0.0005800268878 0.005889091553 -2.181588243e-14) (0.0008665462211 0.008743216492 -3.258504577e-14) (0.0004892836807 0.004647006387 -1.731947918e-14) (0.0002796744852 0.002672639302 -9.908740495e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.528515313e-05 0.0004315255423 -1.637578961e-15) (-0.0001257308556 0.000975427214 -3.719247132e-15) (-0.000446664619 0.003645503179 -1.390554338e-14) (-0.0003002696727 0.002465592022 -9.353628982e-15) (-0.001767234097 0.01720124068 -6.525335827e-14) (-0.002090977302 0.02022965463 -7.718825579e-14) (-0.002697737138 0.02782151325 -1.061650767e-13) (-0.002338485326 0.02426335301 -9.203748874e-14) (-0.003705922425 0.04799135763 -1.820210649e-13) (-0.004093111742 0.0526345689 -2.008393452e-13) (-0.004321373519 0.06056449085 -2.31065167e-13) (-0.003949953309 0.05579335553 -2.115807529e-13) (-0.003933043193 0.07649721844 -2.900180096e-13) (-0.0041744466 0.08043804595 -3.067823773e-13) (-0.003866468251 0.08514825015 -3.247402347e-13) (-0.003656244105 0.0812179699 -3.078926003e-13) (-0.002345591552 0.09073303686 -3.439748486e-13) (-0.002419424284 0.09269288053 -3.53495011e-13) (-0.001840868624 0.09357455189 -3.568811913e-13) (-0.001798365081 0.09219832204 -3.495537193e-13) (-4.876687274e-05 0.0936538425 -3.551048344e-13) (-5.277554221e-05 0.09406354167 -3.587685704e-13) (0.0005463657696 0.09404654163 -3.587130593e-13) (0.0005429973426 0.09352206712 -3.546329896e-13) (0.002268172059 0.0908963247 -3.446964936e-13) (0.002334469858 0.0927901933 -3.539946114e-13) (0.002880302154 0.09125452273 -3.481659405e-13) (0.002780683347 0.08874953204 -3.365918655e-13) (0.00386629051 0.07661889414 -2.906286323e-13) (0.004112694063 0.08066105064 -3.078648447e-13) (0.004325033816 0.07532057759 -2.875200078e-13) (0.004025369813 0.0706777828 -2.68146616e-13) (0.003744480064 0.04932727538 -1.87183602e-13) (0.004125820251 0.05400621744 -2.061684157e-13) (0.003785605408 0.04577310228 -1.747491041e-13) (0.003396218425 0.04132609648 -1.568190022e-13) (0.001856721491 0.01838463544 -6.974976152e-14) (0.002188072423 0.02152968131 -8.21842594e-14) (0.00157881564 0.01462563102 -5.581646256e-14) (0.001293786906 0.01206082932 -4.576894419e-14) (8.551646046e-05 0.0006777924969 -2.581268532e-15) (0.000146905513 0.00115695638 -4.413136523e-15) (3.729722448e-06 2.797260849e-05 -1.110223025e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.261922077e-06 3.601938383e-05 -1.387778781e-16) (-1.435831681e-07 9.891077686e-07 0) (0 0 0) (-0.0003947610282 0.003006496634 -1.168509733e-14) (-0.0004982633644 0.003771285328 -1.473821065e-14) (-0.001033972787 0.008232983698 -3.219646771e-14) (-0.0008821343933 0.00706775226 -2.747801986e-14) (-0.002869146993 0.02724688263 -1.05887521e-13) (-0.003122749619 0.02946875812 -1.152133944e-13) (-0.003795965936 0.03817976929 -1.492417301e-13) (-0.00359720318 0.03641355953 -1.414701689e-13) (-0.004989212864 0.06293805525 -2.444988656e-13) (-0.005192399158 0.06507065754 -2.543520949e-13) (-0.005336180967 0.07283546829 -2.846889391e-13) (-0.005153399871 0.07081165006 -2.750855099e-13) (-0.004674158 0.08769860658 -3.406719351e-13) (-0.004764987712 0.08873157943 -3.468059173e-13) (-0.00429540743 0.09103416566 -3.558264794e-13) (-0.004243417496 0.09069479737 -3.523015213e-13) (-0.002502789433 0.09238577577 0) (-0.002530444892 0.09180491761 0) (-0.002228600261 0.09180814466 0) (-0.001910449009 0.09182439139 0) (-0.001894086881 0.09211191093 0) (-0.001889498455 0.09239253286 0) (-6.431233853e-05 0.09239198962 0) (-6.615531548e-05 0.09211293012 0) (0.0002395665546 0.09211115566 0) (0.0002397536141 0.09239019985 0) (0.002393919397 0.09235288387 0) (0.002401150754 0.09206621593 0) (0.002410521124 0.09177509334 0) (0.002714586085 0.0917643177 0) (0.003014272739 0.0917590954 0) (0.00300484045 0.09233473631 0) (0.00459536206 0.08825248459 -3.43031159e-13) (0.004672836645 0.08920929714 -3.488875855e-13) (0.005041405331 0.08562833859 -3.348987754e-13) (0.004927025009 0.08419463972 -3.272659921e-13) (0.005013414944 0.064394339 -2.503275365e-13) (0.005196845894 0.06631045659 -2.593758541e-13) (0.004941356454 0.05823094781 -2.277900091e-13) (0.004715371207 0.055935839 -2.174649349e-13) (0.003055246811 0.02948269144 -1.146027717e-13) (0.003341586174 0.03204278625 -1.253441795e-13) (0.002635259786 0.02379298274 -9.306444504e-14) (0.002373422479 0.02156425523 -8.382183836e-14) (0.0005293988223 0.004091596635 -1.590394483e-14) (0.0006617024502 0.005082234654 -1.987299214e-14) (0.0002371213179 0.001734697672 -6.800116026e-15) (0.0001613390961 0.001187691237 -4.607425552e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.741294874e-05 0.0003164170051 -1.276756478e-15) (-2.701923254e-05 0.0001814695966 -7.21644966e-16) (-2.21040866e-05 0.0001493954279 -5.828670879e-16) (-0.0007159159262 0.005315947459 -2.117750419e-14) (-0.0007424519833 0.005477837089 -2.195466031e-14) (-0.001374930345 0.01067094997 -4.277134202e-14) (-0.001338717171 0.01045681363 -4.1661119e-14) (-0.003605379602 0.03336492778 -1.32893696e-13) (-0.003661843777 0.03366813512 -1.349476086e-13) (-0.004361947924 0.04273748453 -1.712796571e-13) (-0.004302329024 0.04242746847 -1.689759443e-13) (-0.005597358102 0.068724029 -2.736699756e-13) (-0.005650349868 0.06891841363 -2.76195733e-13) (-0.00572918741 0.07608170384 -3.048949981e-13) (-0.005683033956 0.07597571352 -3.025635298e-13) (-0.00489304693 0.0891289205 -3.54938301e-13) (-0.004909133599 0.08878544766 -3.558264794e-13) (-0.004353950983 0.0895228885 0) (-0.004349433636 0.09008983119 -3.587685704e-13) (-0.002561797571 0.09008590748 0) (-0.002565349711 0.08979797123 0) (-0.002267589506 0.08979775337 0) (-0.002264066449 0.09008523621 0) (0.002419146841 0.09006194297 0) (0.002418982501 0.08977677779 0) (0.002716645384 0.08977365714 0) (0.002717120415 0.09005839816 0) (0.004780392242 0.08959119348 -3.570199691e-13) (0.004788638534 0.08924474517 -3.57880392e-13) (0.005273486249 0.08742676012 -3.506084312e-13) (0.005246672823 0.08747724621 -3.486100297e-13) (0.005711463923 0.07155766151 -2.851885395e-13) (0.005783696661 0.07203763887 -2.889077866e-13) (0.005588959615 0.06428520072 -2.578215419e-13) (0.005506975134 0.06372019945 -2.539635169e-13) (0.003924720017 0.03694188384 -1.472155731e-13) (0.004014293609 0.03755460599 -1.506017533e-13) (0.003261460867 0.02872334292 -1.151856388e-13) (0.003177025741 0.02815308535 -1.121880366e-13) (0.0009600793989 0.007235920392 -2.883804306e-14) (0.001084178848 0.008119684334 -3.25572902e-14) (0.0005171701406 0.003689186534 -1.47937218e-14) (0.0004257431652 0.003056285603 -1.21846977e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.783049984e-05 0.0005062318925 -2.109423747e-15) (-7.029672334e-05 0.0004602033063 -1.887379142e-15) (-6.167034094e-05 0.0004063403782 -1.665334537e-15) (-0.000882071746 0.006383933284 -2.609024108e-14) (-0.0009120553756 0.006558748738 -2.69784195e-14) (-0.001590563532 0.01203173991 -4.948819132e-14) (-0.001553137965 0.01182438993 -4.832245715e-14) (-0.003886903132 0.03505147649 -1.431910146e-13) (-0.003932560626 0.03523296469 -1.448563491e-13) (-0.004624165329 0.04414066067 -1.81493709e-13) (-0.004580142219 0.04400805936 -1.797728633e-13) (-0.005801458387 0.06935628531 -2.833011603e-13) (-0.005831602145 0.06924950944 -2.846889391e-13) (-0.005872979247 0.07590795018 -3.120559366e-13) (-0.005849107658 0.07611432346 -3.108902025e-13) (-0.004938053357 0.08744161134 -3.571865026e-13) (-0.004943973526 0.08693390347 -3.574085472e-13) (-0.004367192317 0.08726325443 0) (-0.004364243793 0.08782675931 0) (-0.00257947119 0.0878155611 0) (-0.002581116515 0.08753361386 0) (-0.002284111256 0.08753179184 0) (-0.002282426749 0.08781373882 0) (0.002411042387 0.08778691525 0) (0.002409255627 0.08750331021 0) (0.002706206769 0.0875012012 0) (0.002708044832 0.08778466224 0) (0.004788913694 0.0877566187 -3.587408148e-13) (0.004785107273 0.08720117495 -3.587685704e-13) (0.005318662638 0.08619563821 -3.546607452e-13) (0.005314889522 0.08662216706 -3.541056337e-13) (0.005971066877 0.07306059131 -2.986777492e-13) (0.00600440235 0.07303515804 -3.005096172e-13) (0.005866028369 0.06587136033 -2.710331959e-13) (0.005822613222 0.06577680265 -2.688960166e-13) (0.004335667472 0.03981623138 -1.627586954e-13) (0.004399944222 0.04015658468 -1.652011861e-13) (0.003652345266 0.03137568617 -1.290911822e-13) (0.003586093892 0.03099942643 -1.267042027e-13) (0.001243413389 0.009139048982 -3.735900478e-14) (0.001294043313 0.009451022382 -3.888556144e-14) (0.0006673526511 0.004642081493 -1.909583602e-14) (0.0006291198201 0.004404077565 -1.801336857e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001148085324 0.0007273743415 -3.108624469e-15) (-0.0001035081451 0.0006601361565 -2.775557562e-15) (-9.34466648e-05 0.0005999165344 -2.525757381e-15) (-0.0009866520584 0.006958482592 -2.917110997e-14) (-0.001016867629 0.007124616807 -3.005928839e-14) (-0.00171999979 0.0126758175 -5.351274979e-14) (-0.001682928206 0.0124845835 -5.234701561e-14) (-0.004044048053 0.03552283027 -1.489364188e-13) (-0.004088169805 0.03567148979 -1.505462421e-13) (-0.004773857541 0.04437324927 -1.872668687e-13) (-0.004731536955 0.04427623965 -1.856292897e-13) (-0.005905107648 0.0687091394 -2.880196082e-13) (-0.005933541343 0.06856723896 -2.893241202e-13) (-0.005953534574 0.07486392312 -3.159139617e-13) (-0.005931249042 0.07510220868 -3.148314942e-13) (-0.004958567695 0.08536455436 -3.57880392e-13) (-0.004963374104 0.08484139696 -3.580469254e-13) (-0.004378093471 0.08501397018 0) (-0.004375455057 0.08557598815 0) (-0.002591844481 0.08556484977 0) (-0.002593312858 0.08528399849 0) (-0.002296712041 0.08528224441 0) (-0.002295951647 0.08542268294 0) (-0.00229519202 0.08556300392 0) (0.002393499435 0.0855205777 0) (0.002390857688 0.08523804924 0) (0.002687472332 0.08523641261 0) (0.002690152663 0.0855188494 0) (0.004769426733 0.08549881071 -3.587408148e-13) (0.004762966836 0.08492023914 -3.586853037e-13) (0.005285630977 0.08376542111 -3.538280779e-13) (0.005298127411 0.08443334568 -3.542999227e-13) (0.005968566979 0.07132199773 -2.992883719e-13) (0.005942870313 0.07059507063 -2.982059044e-13) (0.005797573075 0.06355858368 -2.684796829e-13) (0.005825691999 0.06425296945 -2.696176615e-13) (0.004351778114 0.03898390953 -1.635636071e-13) (0.004322906565 0.03848374845 -1.625366508e-13) (0.003577380453 0.02996933079 -1.265654248e-13) (0.003604437242 0.03038732905 -1.274813588e-13) (0.001259271575 0.009022577117 -3.783084956e-14) (0.001242879494 0.008847978635 -3.735900478e-14) (0.0006295678426 0.004268157989 -1.801336857e-14) (0.0006411786256 0.004375070017 -1.834643548e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001644098248 0.001013978999 -4.413136523e-15) (-0.0001509737649 0.0009374606952 -4.05231404e-15) (-0.0001379780041 0.0008625653492 -3.719247132e-15) (-0.001111317758 0.007632147862 -3.286260153e-14) (-0.001144585213 0.007807607082 -3.386180225e-14) (-0.001874982579 0.01345200032 -5.831446437e-14) (-0.001834877177 0.01325389218 -5.706546347e-14) (-0.004222987963 0.03610630974 -1.55458979e-13) (-0.004269420651 0.03625313575 -1.571520691e-13) (-0.004946954323 0.04474053196 -1.939282068e-13) (-0.00490272935 0.04464843222 -1.922351167e-13) (-0.0060191481 0.06811776467 -2.93265412e-13) (-0.006048153026 0.06796412035 -2.94569924e-13) (-0.006042594004 0.07387228204 -3.201883203e-13) (-0.006020179751 0.07412391038 -3.191058529e-13) (-0.004976381146 0.08324823668 -3.584355035e-13) (-0.00498023105 0.08270977059 -3.585187702e-13) (-0.00438805488 0.08276458837 0) (-0.00438566248 0.08332693446 0) (-0.002603148457 0.08331588161 0) (-0.002604448756 0.08303476802 0) (-0.002308357377 0.0830330042 0) (-0.002307674577 0.08317356078 0) (-0.002306978887 0.08331409116 0) (0.00237017942 0.08326360334 0) (0.002366730493 0.08298147197 0) (0.002663059773 0.08298013761 0) (0.00266657349 0.08326219019 0) (0.004733080002 0.08303528184 -3.578526364e-13) (0.004716898123 0.08230660217 -3.571309914e-13) (0.00518256551 0.08032330494 -3.48526763e-13) (0.005219013563 0.08134042799 -3.5055292e-13) (0.005746768555 0.06705377612 -2.889910533e-13) (0.005630472668 0.06530274591 -2.833566715e-13) (0.005464790874 0.05846868033 -2.537137167e-13) (0.005560361716 0.05985648302 -2.579603198e-13) (0.004008551045 0.03501444936 -1.50879309e-13) (0.003908431113 0.03392218105 -1.471878175e-13) (0.003167361938 0.02586282663 -1.121880366e-13) (0.00326103364 0.02680009034 -1.154909501e-13) (0.001015986678 0.007092837039 -3.055888875e-14) (0.0009614727745 0.006668194351 -2.892130979e-14) (0.0004273846439 0.00282241339 -1.224020885e-14) (0.0004639575166 0.003084302818 -1.329492072e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002077851339 0.00124650895 -5.606626274e-15) (-0.000214884867 0.00129814479 -5.773159728e-15) (-0.0001961615832 0.001193297795 -5.273559367e-15) (-0.001253305728 0.0083749268 -3.708144902e-14) (-0.001295810036 0.008598761538 -3.833044993e-14) (-0.002055154694 0.0143424286 -6.392109064e-14) (-0.002004845299 0.01408957925 -6.236677841e-14) (-0.004417442208 0.03673230888 -1.625644064e-13) (-0.004473827561 0.03693790045 -1.645905634e-13) (-0.005140653959 0.04519839806 -2.013944567e-13) (-0.00508739575 0.04505089676 -1.993405441e-13) (-0.006138915802 0.06751572954 -2.987332604e-13) (-0.006172689904 0.06739376901 -3.00259817e-13) (-0.006137735048 0.07289051616 -3.247679903e-13) (-0.006112136503 0.07312139006 -3.235189894e-13) (-0.004990326257 0.08107180927 -3.587408148e-13) (-0.004993240999 0.08051737656 -3.587685704e-13) (-0.004397189139 0.08051586726 0) (-0.004394915135 0.08107808352 0) (-0.002612700135 0.08106724159 0) (-0.002613752117 0.0807861525 0) (-0.002318221905 0.08078445765 0) (-0.002317669452 0.08092505427 0) (-0.002317104621 0.08106554632 0) (0.002340455728 0.08101203881 0) (0.002336190057 0.0807308401 0) (0.002632416389 0.0807297415 0) (0.002636773482 0.08101093962 0) (0.004646879566 0.07979591368 -3.534394999e-13) (0.004611972522 0.07877824898 -3.513578317e-13) (0.00499361252 0.07567983122 -3.375633106e-13) (0.005053308845 0.07701590158 -3.411437799e-13) (0.005301340713 0.06036746318 -2.673972155e-13) (0.005214616796 0.05901570007 -2.632338791e-13) (0.004934849506 0.05149159076 -2.296773882e-13) (0.0050895985 0.05344342722 -2.367273044e-13) (0.003455157293 0.02940931273 -1.302569164e-13) (0.003238699337 0.02738516815 -1.221245327e-13) (0.002508417813 0.01995128336 -8.895661985e-14) (0.002725520251 0.02182240043 -9.664491429e-14) (0.0006821340376 0.004637120102 -2.053912596e-14) (0.0005957218546 0.004022412536 -1.793010185e-14) (0.0001934313183 0.001243596029 -5.551115123e-15) (0.0002434700366 0.001575930092 -6.96664948e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0003693685713 0.002153329497 -9.93649607e-15) (-0.0003367610261 0.001977563105 -9.076073226e-15) (-0.0002882233253 0.001704726817 -7.771561172e-15) (-0.001432348642 0.009304905541 -4.235500839e-14) (-0.001538688555 0.009923822359 -4.549138843e-14) (-0.002331565034 0.01581293378 -7.249756351e-14) (-0.00220188035 0.01504213019 -6.847300504e-14) (-0.004664383734 0.03768547533 -1.715294573e-13) (-0.004748593887 0.03808436316 -1.745825706e-13) (-0.005387681801 0.04600594843 -2.10859108e-13) (-0.005319619682 0.04576256633 -2.082778394e-13) (-0.006283844307 0.06709551649 -3.053390873e-13) (-0.006300005393 0.06676192792 -3.060052212e-13) (-0.00625044006 0.07203055724 -3.301525719e-13) (-0.006221001741 0.07224047782 -3.287370376e-13) (-0.005001323712 0.07883322368 0) (-0.005004367934 0.0782710647 0) (-0.004407431564 0.07826745379 0) (-0.004405962334 0.07854843567 0) (-0.004404571295 0.07882944418 0) (-0.002620488245 0.07881865536 0) (-0.002620973861 0.0786782934 0) (-0.002473169232 0.07867749796 0) (-0.002472696933 0.07881782082 0) (-5.638536501e-05 0.07876857932 0) (-5.847139852e-05 0.0786985867 0) (-6.008682378e-05 0.07862857794 0) (8.463541404e-05 0.07862927851 0) (8.855952177e-05 0.07876917395 0) (0.002299796088 0.07876586147 0) (0.002293370082 0.07848585234 0) (0.002286827044 0.07820592234 0) (0.002881028511 0.07820351783 0) (0.002893359391 0.0787637354 0) (0.002596688581 0.07876477159 0) (0.004474696355 0.07523242066 -3.427258477e-13) (0.004402851087 0.07363445479 -3.378408664e-13) (0.004671688789 0.06922571201 -3.176348073e-13) (0.004791399364 0.07139463772 -3.252398351e-13) (0.004777845881 0.0530629852 -2.41723308e-13) (0.004607341815 0.05084568935 -2.33285613e-13) (0.004261285269 0.04334027482 -1.988686993e-13) (0.004439996038 0.04545032714 -2.070565941e-13) (0.002684424452 0.02224915909 -1.013356066e-13) (0.002522844631 0.02076945639 -9.528489109e-14) (0.00184296611 0.01426843895 -6.54476473e-14) (0.001985134973 0.01547399489 -7.047140649e-14) (0.0002816506686 0.00186314822 -8.465450563e-15) (0.0002289488791 0.001504095603 -6.911138328e-15) (1.814894711e-05 0.0001135233084 -5.273559367e-16) (3.467504749e-05 0.0002184025466 -9.992007222e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0003502672082 0.001991921132 -9.464651285e-15) (-0.0003958236163 0.002267762253 -1.071365219e-14) (-0.000422960037 0.002441164029 -1.143529715e-14) (-0.001703432983 0.0108016665 -5.062616992e-14) (-0.001648632493 0.01037717407 -4.898859096e-14) (-0.002456263215 0.01626065757 -7.677192215e-14) (-0.002521931685 0.01681958498 -7.882583475e-14) (-0.004954634312 0.03910120158 -1.831867991e-13) (-0.00487356739 0.03817373936 -1.801614413e-13) (-0.005499694697 0.04587625239 -2.165212454e-13) (-0.005579321405 0.04689336297 -2.19685381e-13) (-0.006402740314 0.06686872691 -3.132494264e-13) (-0.006347056449 0.06577647249 -3.104183577e-13) (-0.006245674844 0.07043065879 -3.32373018e-13) (-0.006287673392 0.07146026145 -3.347599975e-13) (-0.004947490606 0.07657864499 0) (-0.004951162319 0.07601639868 0) (-0.004352556106 0.07601248952 0) (-0.004350720676 0.07629354737 0) (-0.004348884393 0.07657473583 0) (-0.002553091874 0.07656300852 0) (-0.002554928157 0.07628182007 0) (-0.00225563811 0.07627986557 0) (-0.002254719542 0.0764205251 0) (-0.002253801827 0.07656105403 0) (-0.002403446851 0.07656203128 0) (-0.0001587066311 0.07654737215 0) (-0.0001596240959 0.07640684322 0) (-0.0001605425388 0.07626618369 0) (0.0001387567037 0.07626422913 0) (0.0001405929868 0.07654541759 0) (0.00223567947 0.07653173576 0) (0.002232007757 0.07596948945 0) (0.002820060112 0.07567514345 -3.574085472e-13) (0.00283209771 0.07646732495 -3.584910147e-13) (0.004190714373 0.06901209277 -3.236022561e-13) (0.004091013951 0.06704612485 -3.166911178e-13) (0.004266228234 0.06186203545 -2.922107001e-13) (0.004387667718 0.06396336703 -2.999267501e-13) (0.004012781533 0.04344621719 -2.03725925e-13) (0.00385117687 0.04143269864 -1.957045637e-13) (0.00342093937 0.03388636046 -1.600664046e-13) (0.003655648554 0.03645690679 -1.709465902e-13) (0.001903284556 0.01535095336 -7.197020757e-14) (0.001658205646 0.01328185463 -6.272760089e-14) (0.001125224898 0.008473674073 -4.002354004e-14) (0.001282408185 0.009725119675 -4.560241074e-14) (4.712916565e-05 0.0003032033484 -1.415534356e-15) (2.128724603e-05 0.0001359890401 -6.383782392e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-8.183304776e-05 0.0004515322911 -2.220446049e-15) (-0.0001484755868 0.0008255221244 -4.024558464e-15) (-0.0002205712095 0.001235696613 -5.967448757e-15) (-0.001263582879 0.007777398698 -3.755329381e-14) (-0.001079783401 0.0065961983 -3.208544541e-14) (-0.001756650495 0.01128630113 -5.490052857e-14) (-0.00198666749 0.01286052989 -6.208922265e-14) (-0.004270382428 0.0327035031 -1.578737141e-13) (-0.003960150718 0.03010082096 -1.464106614e-13) (-0.004583824421 0.03710084571 -1.804389971e-13) (-0.004898135664 0.039943963 -1.928179838e-13) (-0.005888538577 0.05963244792 -2.877975636e-13) (-0.005629745521 0.05657953755 -2.751687767e-13) (-0.005653375987 0.06180648086 -3.005928839e-13) (-0.005874520671 0.06471885178 -3.12361248e-13) (-0.004907704828 0.07352614523 -3.549105454e-13) (-0.00482885661 0.07176459384 -3.490541189e-13) (-0.004329533641 0.07313803023 -3.557432127e-13) (-0.0043609284 0.07428125513 -3.585742814e-13) (-0.002567780432 0.07431376207 0) (-0.002571452998 0.07375138515 0) (-0.001972859845 0.07374747608 0) (-0.001969187279 0.07430985299 0) (-0.002268490386 0.07431180757 0) (-0.0001733947602 0.07429812569 0) (-0.0001770673263 0.07373574877 0) (0.0004215297447 0.07373183967 0) (0.0004252023108 0.07429421659 0) (0.002201914415 0.07362032579 -3.555766792e-13) (0.002165402102 0.07192667017 -3.500533197e-13) (0.002667606011 0.06971919195 -3.393119119e-13) (0.00273301551 0.07193205074 -3.474442956e-13) (0.003754850666 0.06022148894 -2.90906188e-13) (0.00359259315 0.05718330327 -2.783329123e-13) (0.003642543128 0.05127420028 -2.495781359e-13) (0.003831788646 0.05435309901 -2.625399897e-13) (0.00318403458 0.03352252188 -1.619260281e-13) (0.002956924927 0.03089148296 -1.503519531e-13) (0.002499616501 0.02404769555 -1.170452624e-13) (0.002721315279 0.02638384668 -1.274258477e-13) (0.00106029167 0.008311430444 -4.013456234e-14) (0.0009107716053 0.007084713408 -3.447242491e-14) (0.0004654352304 0.003404136989 -1.657007864e-14) (0.0006324144987 0.004661165172 -2.250977182e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.010240057e-06 1.092183447e-05 -5.551115123e-17) (-0.0004807601986 0.002870441462 -1.429412144e-14) (-0.0003018711411 0.001788462156 -8.965050924e-15) (-0.000701590661 0.004372394523 -2.195466031e-14) (-0.0009632941282 0.006049687983 -3.011479954e-14) (-0.00279004067 0.0207349058 -1.032229857e-13) (-0.002352680951 0.01735359584 -8.706924071e-14) (-0.002903638125 0.02280913357 -1.144639938e-13) (-0.003369782061 0.02666918489 -1.327549182e-13) (-0.004531288252 0.04453010736 -2.216560269e-13) (-0.004071580616 0.03972010704 -1.992850329e-13) (-0.004232958257 0.04491846751 -2.253475184e-13) (-0.004663579052 0.04985093687 -2.48134846e-13) (-0.004274806936 0.06207511983 -3.090028233e-13) (-0.003978675882 0.05735455544 -2.877420524e-13) (-0.003678732367 0.06025041678 -3.02285974e-13) (-0.003924647264 0.06475097602 -3.223254996e-13) (-0.002472742763 0.06910785296 -3.440581153e-13) (-0.002355319254 0.06533718939 -3.278488592e-13) (-0.001827725351 0.06600371398 -3.312072838e-13) (-0.001913633476 0.06962334151 -3.466393839e-13) (-0.0001768729907 0.06917324509 -3.44474449e-13) (-0.0001677133971 0.06542554143 -3.283484595e-13) (0.0003751867423 0.06433398411 -3.229083667e-13) (0.00039391424 0.06829451082 -3.40089068e-13) (0.001922035387 0.06238738918 -3.10723669e-13) (0.001793618261 0.05769425649 -2.89601676e-13) (0.002143775789 0.05422747321 -2.722266856e-13) (0.002315050152 0.05908606347 -2.942923683e-13) (0.002906126089 0.04514363862 -2.248756736e-13) (0.002618204243 0.04031991803 -2.02421413e-13) (0.002556711748 0.03482344032 -1.748323708e-13) (0.002870572769 0.03943527528 -1.964262086e-13) (0.002098392405 0.0214004389 -1.065814104e-13) (0.001776022116 0.01796295073 -9.017786518e-14) (0.001382726878 0.01288142928 -6.467049118e-14) (0.001681085104 0.01579011735 -7.863154572e-14) (0.0004191012352 0.003184326663 -1.584843368e-14) (0.0002698212611 0.002033819309 -1.021405183e-14) (6.043004862e-05 0.0004283681405 -2.137179322e-15) (0.0001397211685 0.0009982939587 -4.968248035e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.764834435e-06 1.021098911e-05 -5.551115123e-17) (0 0 0) (-1.817314068e-05 0.0001097435682 -5.828670879e-16) (-0.0001073823699 0.0006536808042 -3.358424649e-15) (-0.001081121684 0.007794947402 -4.005129561e-14) (-0.0007213757763 0.005161147696 -2.675637489e-14) (-0.001072957143 0.008178457318 -4.238276397e-14) (-0.001495181194 0.01148381633 -5.900835376e-14) (-0.002544801528 0.0242927271 -1.248445791e-13) (-0.002033128366 0.01926878662 -9.983680549e-14) (-0.00224553847 0.02315916439 -1.199873534e-13) (-0.002755620659 0.02862139218 -1.470767952e-13) (-0.002831233363 0.03998080777 -2.054745263e-13) (-0.002398925702 0.03365532708 -1.74360526e-13) (-0.002285987799 0.03645742226 -1.888766921e-13) (-0.00267523059 0.04293488169 -2.206290706e-13) (-0.001787792042 0.04868565635 -2.502165142e-13) (-0.001550713833 0.04201717186 -2.176869796e-13) (-0.001211708748 0.04284257149 -2.219890938e-13) (-0.001394960789 0.0495252802 -2.54546384e-13) (-0.0001183614901 0.04880369887 -2.508548924e-13) (-9.823500792e-05 0.04213463154 -2.183253578e-13) (0.0002591721585 0.04084325865 -2.116640196e-13) (0.0002935009953 0.04748228269 -2.44082532e-13) (0.001293784937 0.04033366559 -2.073619054e-13) (0.001103061544 0.03399176799 -1.761646384e-13) (0.001269553925 0.03083367015 -1.597888488e-13) (0.001505797407 0.03696817646 -1.900424262e-13) (0.001654765195 0.02479262396 -1.274536032e-13) (0.00132860707 0.01971737181 -1.021960294e-13) (0.001204539109 0.01582376256 -8.201772594e-14) (0.001538354479 0.02039673841 -1.048605647e-13) (0.0008313699976 0.008196760706 -4.213296378e-14) (0.0005610513189 0.005484099368 -2.842170943e-14) (0.0003302400734 0.002974886982 -1.540434447e-14) (0.0005497027594 0.00499394145 -2.567390744e-14) (4.607655738e-06 3.390207839e-05 -1.665334537e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.662560602e-05 0.0003257060808 -1.748601264e-15) (0 0 0) (-3.38938869e-05 0.0002502943747 -1.33226763e-15) (-0.000167956075 0.001250468185 -6.633582572e-15) (-0.0007139940443 0.006618913035 -3.516631431e-14) (-0.0003988196018 0.003668918356 -1.965094754e-14) (-0.0005366201469 0.005376182937 -2.878253191e-14) (-0.0008824683792 0.008907332459 -4.729550085e-14) (-0.001146820045 0.01577978503 -8.379408278e-14) (-0.0007927893363 0.01083596408 -5.803690861e-14) (-0.0008022507368 0.01248162448 -6.683542608e-14) (-0.001135075239 0.01777149998 -9.436895709e-14) (-0.0008199884303 0.02192276009 -1.164346397e-13) (-0.0006003605082 0.01597995264 -8.557043962e-14) (-0.0004735068739 0.01652724321 -8.851253064e-14) (-0.0006444200779 0.02256327271 -1.198485755e-13) (-4.3186982e-05 0.02201622533 -1.169342401e-13) (-2.93750715e-05 0.01606019576 -8.601452883e-14) (0.0001085330477 0.01521858209 -8.151812558e-14) (0.0001456688667 0.02102703777 -1.116884363e-13) (0.0005391500513 0.01602072589 -8.509859484e-14) (0.0003758693457 0.01103468025 -5.909162049e-14) (0.0003987228733 0.009261713499 -4.959921363e-14) (0.0005894643266 0.01384495592 -7.355227538e-14) (0.0004769804301 0.006877363149 -3.652633751e-14) (0.000270119572 0.003857971644 -2.067790383e-14) (0.0001846629521 0.00233763231 -1.25177646e-14) (0.00037089389 0.004738302298 -2.517430708e-14) (4.242904355e-05 0.0004041677355 -2.137179322e-15) (1.190909773e-07 1.124871447e-06 0) (0 0 0) (4.959222357e-07 4.35587796e-06 -2.775557562e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.242078183e-06 5.127194168e-05 -2.775557562e-16) (-9.379792982e-05 0.001254348262 -6.883382753e-15) (-1.057344414e-05 0.0001402470854 -7.771561172e-16) (-2.308265353e-05 0.0003489350746 -1.942890293e-15) (-0.0001186444218 0.001807802008 -9.93649607e-15) (-0.0001211281193 0.00317313928 -1.743050149e-14) (-3.938274028e-05 0.001024669787 -5.689893001e-15) (-3.370168135e-05 0.00115446961 -6.411537967e-15) (-9.883382527e-05 0.0034064501 -1.870725796e-14) (-4.830085122e-06 0.003207373192 -1.762479052e-14) (-1.511234197e-06 0.00104352879 -5.800915304e-15) (6.668845435e-06 0.0008544183906 -4.74620343e-15) (2.192338026e-05 0.002857284143 -1.568190022e-14) (4.642772518e-05 0.001318025543 -7.244205236e-15) (5.734316847e-06 0.0001612148901 -8.881784197e-16) (1.056451055e-06 2.35704106e-05 -1.387778781e-16) (3.518465925e-05 0.0007922713464 -4.357625372e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.002280674042 0.08809612942 0) (-0.002577757749 0.0880979389 0) (0.002412774006 0.08807007659 0) (0.002115801093 0.08807285184 0) (0.00211492982 0.08793143447 0) (0.002114133752 0.08778953336 0) (0.002120544209 0.09006716067 0) (0.002121090502 0.0897808142 0) (-0.002294432393 0.08570332491 0) (-0.002293671743 0.08584380262 0) (-0.002590376019 0.0858457141 0) (0.002396091158 0.08580344608 0) (0.002099594653 0.08580517336 0) (0.002098343948 0.08566365398 0) (0.002097054318 0.08552217404 0) (0.002113310797 0.08764751488 0) (0.002112461465 0.08750545738 0) (-0.002306283453 0.08345458236 0) (-0.002305587592 0.08359513886 0) (-0.002601822209 0.08359696891 0) (0.002373300134 0.08354547564 0) (0.002077009183 0.08354667914 0) (0.002075501366 0.08340578836 0) (0.002073928929 0.08326500249 0) (0.002095738482 0.08538068121 0) (0.002094438095 0.08523955398 0) (-0.002316539961 0.08120601225 0) (-0.00231596207 0.08134650421 0) (-0.002611622544 0.08134825215 0) (0.002344720631 0.08129311998 0) (0.00204861133 0.08129413944 0) (0.002044175449 0.08101287654 0) (0.002070518415 0.08298275332 0) (-0.002472236584 0.07895831356 0) (-0.002620014836 0.078959148 0) (-5.469520549e-05 0.07883869207 0) (-0.0001275053285 0.07883843615 0) (-0.0001290489061 0.07876830937 0) (9.216876408e-05 0.07890925429 0) (-5.295071508e-05 0.07890880447 0) (0.002305557895 0.07904616227 0) (0.002009591319 0.07904703713 0) (0.00200371214 0.07876676322 0) (0.002040327622 0.08073166203 0) (-0.002402528283 0.07670269081 0) (-0.002552173306 0.07670366805 0) (-0.0001577887588 0.07668803168 0) (-0.0003074417992 0.07668900898 0) (-0.0003083577551 0.07654834943 0) (-0.000130821135 0.0786982494 0) (0.0001424292698 0.07682660605 0) (3.537839508e-06 0.07682307237 0) (-0.0001366072521 0.07681732654 0) (0.002255196015 0.07708828855 0) (0.001959113603 0.07708942538 0) (0.001661256267 0.07709076972 0) (0.001652681024 0.07681164971 0) (0.001646068079 0.07653101488 0) (0.001997247209 0.07848679353 0) (-0.002259744592 0.09037303852 0) (-0.002557553346 0.09037382223 0) (-0.0003643300394 0.09239375295 0) (-0.0003670138622 0.0921145814 0) (0.002418457953 0.09034845403 0) (0.002119852447 0.09035323173 0) (0.002088981038 0.09235991674 0) (0.00209512889 0.09207533256 0) (0.001227684371 0.08893444791 0) (0.001227766964 0.08900609537 0) (0.001152823273 0.08900662788 0) (0.001152536623 0.08893493343 0) (0.001224688725 0.09008332673 0) (0.001075095373 0.09008641637 0) (0.001076711733 0.08994132819 0) (0.001226101321 0.08993863642 0) (0.002709880252 0.0880677184 0) (0.004792087782 0.08830171902 -3.586575481e-13) (0.004198464747 0.08833947203 0) (0.004194443754 0.08777374075 0) (0.004207599738 0.09004030521 0) (0.004204943946 0.08947362619 0) (-0.004372777122 0.0861380581 0) (-0.00495395534 0.08589120343 -3.577416141e-13) (-0.002887276625 0.08584756157 0) (-0.002888705992 0.08556668391 0) (-0.002876633174 0.08781738415 0) (-0.002878252208 0.08753546286 0) (0.001200027648 0.08666099685 0) (0.001200825738 0.08673180766 0) (0.001116437259 0.08673226732 0) (0.001115664325 0.0866615086 0) (0.001220514861 0.08779578703 0) (0.001142869446 0.08779600675 0) (0.001144555257 0.0877251536 0) (0.001221170837 0.08772483612 0) (0.00269277008 0.08580165231 0) (0.004775260675 0.08607028541 -3.587685704e-13) (0.004180481315 0.08607568422 0) (0.004175054159 0.08551062823 0) (0.004190198006 0.08720759298 0) (-0.004383204523 0.08388931931 0) (-0.004972340405 0.08378382391 -3.583244812e-13) (-0.002898344237 0.08359878778 0) (-0.00289963139 0.08331768716 0) (-0.002890122213 0.08528581924 0) (-0.002597657804 0.08444066061 0) (-0.002301240002 0.0844388816 0) (-0.002300478414 0.08457950298 0) (-0.002299730227 0.08472007219 0) (-0.002596226305 0.08472186477 0) (-0.001412433174 0.08443356056 0) (-0.001412241712 0.08450387901 0) (-0.001412280196 0.08457418591 0) (-0.001560348131 0.08457506143 0) (-0.001560992177 0.08443443929 0) (-0.001406213478 0.08555757727 0) (-0.001554409233 0.08555847975 0) (-0.001555286062 0.08541821177 0) (-0.001407194448 0.08541736222 0) (-0.001406670971 0.08548752177 0) (0.001198240071 0.08439626739 0) (0.001198422082 0.08446693854 0) (0.001123736986 0.08446726954 0) (0.001123971599 0.08439659566 0) (0.001206402863 0.08552742876 0) (0.001130207174 0.0855280439 0) (0.001127458813 0.0854573895 0) (0.001204685754 0.08545668926 0) (0.002669798942 0.08354410099 0) (0.00474553515 0.08369995378 -3.582967256e-13) (0.004157197838 0.08381830473 0) (0.004150607109 0.0832550718 0) (0.004169412311 0.08494669687 0) (-0.004392654703 0.0816402215 0) (-0.004986818688 0.08161681169 -3.586575481e-13) (-0.002907792285 0.08135001648 0) (-0.002908830781 0.0810689926 0) (-0.002900879447 0.08303657323 0) (-0.002608193866 0.08219128255 0) (-0.002312311964 0.08218944174 0) (-0.00231168132 0.08233001172 0) (-0.002311037359 0.0824706208 0) (-0.002606984905 0.0824724098 0) (-0.001426508666 0.08218419255 0) (-0.001425714073 0.08225446789 0) (-0.001500203632 0.08225494127 0) (-0.001500780203 0.08218465146 0) (-0.00142117255 0.08330890726 0) (-0.001568310932 0.08330972447 0) (-0.001569150285 0.08316919503 0) (-0.001422129532 0.08316836553 0) (-0.001421761926 0.08323865671 0) (0.001173549705 0.08214105213 0) (0.001175459977 0.08228177048 0) (0.001028014816 0.08228221093 0) (0.0010262584 0.08214145238 0) (0.001186995984 0.08326846971 0) (0.001039191468 0.0832690823 0) (0.001038326659 0.08319845478 0) (0.001037639923 0.08312769549 0) (0.001185442483 0.08312738332 0) (-0.004403283887 0.07911058398 0) (-0.004401944236 0.07939172344 0) (-0.004998488115 0.07939543627 0) (-0.00261956678 0.07909975836 0) (-0.00291561932 0.07910146968 0) (-0.002916697764 0.07882032852 0) (-0.002909856727 0.08078789028 0) (-0.002616711562 0.07994297536 0) (-0.002468933396 0.07994212785 0) (-0.002468445988 0.08008276408 0) (-0.002616237301 0.08008359861 0) (-0.001430243335 0.07993590637 0) (-0.001431338937 0.08000633772 0) (-0.001509019241 0.0800070148 0) (-0.001508603655 0.0799366532 0) (-0.001428522004 0.08106029204 0) (-0.00150506257 0.08106089637 0) (-0.001505873374 0.08099073869 0) (-0.001429834153 0.08099016376 0) (-3.508019873e-05 0.07989196202 0) (3.849639659e-05 0.07989184724 0) (3.827137897e-05 0.07996239045 0) (-3.601907423e-05 0.07996269274 0) (0.001138862146 0.07989137466 0) (0.001141462114 0.08003190566 0) (0.0009941064139 0.08003204512 0) (0.0009916217176 0.07989156561 0) (0.00115794091 0.08101549024 0) (0.001010782394 0.08101582433 0) (0.001008631189 0.08087521203 0) (0.001155853701 0.08087487753 0) (-0.00434704811 0.07685592429 0) (-0.004389474365 0.0771292257 0) (-0.004987187615 0.07713387349 0) (-0.002551255591 0.07684419698 0) (-0.002850558697 0.07684615156 0) (-0.00285239498 0.0765649631 0) (-0.00291777527 0.07853933102 0) (-0.002621513509 0.07853765752 0) (-0.002625269803 0.07769445946 0) (-0.002477387069 0.07769362433 0) (-0.002476665515 0.07783411536 0) (-0.002624548164 0.07783496355 0) (-0.001440476388 0.07768772793 0) (-0.001435546054 0.07775750607 0) (-0.001512094115 0.07775816269 0) (-0.001515424364 0.07768820432 0) (-0.001429350307 0.07881125547 0) (-0.001508933781 0.07881210171 0) (-0.001510696366 0.0787421984 0) (-0.0014322643 0.07874143805 0) (-0.002266654103 0.07459299603 0) (-0.002565944149 0.07459495053 0) (-0.0001715584772 0.07457931414 0) (-0.0004708576657 0.0745812687 0) (-0.0004726939487 0.07430008024 0) (-0.0003092741641 0.0764078205 0) (-0.001383943987 0.08893968551 0) (-0.001384999461 0.08879806168 0) (-0.001236388841 0.0887972871 0) (-0.001235859615 0.08886812708 0) (-0.001235417695 0.08893879785 0) (-0.00139173799 0.08780819651 0) (-0.001242556693 0.08780720923 0) (-0.001242156718 0.08787765693 0) (-0.001242147274 0.08794830309 0) (-0.001390960356 0.08794927491 0) (-0.001369588355 0.09008835163 0) (-0.001372268055 0.08994341128 0) (-0.001222694104 0.08994555082 0) (-0.0012200137 0.09009019886 0) (-0.001234237417 0.08908093286 0) (-0.001382769649 0.08908171084 0) (0.00122033871 0.08786681317 0) (0.001142063277 0.08786695864 0) (0.001152388343 0.08886342747 0) (0.001227460716 0.0888629999 0) (0.002416903178 0.08892237302 0) (0.002119515482 0.08892563293 0) (0.002118992512 0.0887835511 0) (0.002118531493 0.08864095557 0) (0.002415725237 0.08863799602 0) (0.001227472232 0.08879176325 0) (0.001376330651 0.08879033401 0) (0.001376686139 0.08893276958 0) (0.001296731846 0.08779543297 0) (0.001296856338 0.08786649633 0) (-0.001405690854 0.08562760622 0) (-0.001405258714 0.08569777944 0) (-0.001553532405 0.08569874773 0) (-0.001399668095 0.08668186613 0) (-0.0015476548 0.08668278031 0) (-0.001548533249 0.08654226419 0) (-0.00140058564 0.08654136333 0) (-0.002585833803 0.08668925967 0) (-0.002587369784 0.08640805619 0) (-0.0022905606 0.08640620932 0) (-0.002288985523 0.08668739949 0) (-0.001253045171 0.08654051737 0) (-0.001252607722 0.08661070361 0) (-0.00125196497 0.08668092769 0) (-0.001331735673 0.08555710396 0) (-0.001331172563 0.08562713265 0) (-0.001392645032 0.08766730181 0) (-0.001243486818 0.08766637998 0) (-0.001242789154 0.08773681268 0) (-0.00125143411 0.08675121781 0) (-0.00125079164 0.08682159862 0) (-0.001398684311 0.08682251218 0) (0.001208170139 0.08559805038 0) (0.001133021291 0.08559856726 0) (0.001115760525 0.08659063971 0) (0.001200014766 0.08659002419 0) (0.002403193843 0.08665307435 0) (0.002254854936 0.08665405613 0) (0.002253758993 0.08651223534 0) (0.00240207195 0.08651127985 0) (0.001282143044 0.08658946173 0) (0.001282345556 0.08666047234 0) (0.001281760506 0.0855268844 0) (0.001282901229 0.08559756236 0) (0.001296816745 0.08772443355 0) (0.001283030277 0.08673132307 0) (0.002404275276 0.0867946732 0) (0.002255923308 0.08679565506 0) (-0.001420622612 0.08337911889 0) (-0.001420007542 0.08344930396 0) (-0.001567393729 0.08345017503 0) (-0.001561754533 0.08429370037 0) (-0.001413013027 0.08429276821 0) (-0.001412473563 0.08436317582 0) (-0.002599076925 0.08415935188 0) (-0.002302711791 0.08415750791 0) (-0.002301976067 0.08429816864 0) (-0.001336931685 0.08436264331 0) (-0.001337021813 0.08443304197 0) (-0.001348029083 0.08330850797 0) (-0.00134726504 0.08337870513 0) (-0.001332300176 0.08548706222 0) (-0.001337391774 0.08450339021 0) (0.001188488214 0.08340937365 0) (0.001040573735 0.08340994777 0) (0.001039887826 0.083339515 0) (0.001123475005 0.08432595268 0) (0.001197621846 0.08432559908 0) (0.0023824388 0.08439087195 0) (0.002086043195 0.08439205001 0) (0.002084612546 0.08425097588 0) (0.002083157226 0.08411012394 0) (0.002379487188 0.08410889406 0) (0.001196871685 0.08425512754 0) (0.001344855213 0.08425452685 0) (0.001346285606 0.0843955618 0) (0.001334663453 0.08326787108 0) (0.00133619739 0.08340876169 0) (0.001280645136 0.08545608873 0) (0.00134759931 0.08453672812 0) (0.001273364256 0.08453717373 0) (0.001198758914 0.08453751726 0) (0.002385221481 0.08467298155 0) (0.00208894504 0.08467440699 0) (0.002087539658 0.08453320208 0) (-0.001427360049 0.08113042131 0) (-0.001504317153 0.08113104142 0) (-0.001501330483 0.08211438759 0) (-0.001427301867 0.08211393027 0) (-0.002609362282 0.08191036401 0) (-0.002313545084 0.08190861505 0) (-0.002312942011 0.08204896318 0) (-0.001352786102 0.08211346977 0) (-0.001351549106 0.08218368997 0) (-0.00135002438 0.08105957045 0) (-0.001348139139 0.0811296558 0) (-0.001348728165 0.08323825813 0) (-0.00135031316 0.08225394936 0) (0.001160155487 0.08115620661 0) (0.001012884653 0.08115654144 0) (0.001024534379 0.08200065444 0) (0.001171876619 0.08200025385 0) (-0.00142798992 0.07888137038 0) (-0.001508266555 0.07888227339 0) (-0.001508984577 0.07986632292 0) (-0.001430809543 0.07986560343 0) (-0.002617185568 0.07980239129 0) (-0.002469407401 0.07980154379 0) (-0.0001073149698 0.07989168928 0) (-0.0001087130209 0.07982162686 0) (-3.568071531e-05 0.07982168542 0) (-0.001351218062 0.07986478326 0) (-0.001350068314 0.07993504321 0) (-0.001350785025 0.07881049425 0) (-0.001347970402 0.07888049517 0) (-0.001352149845 0.08098949972 0) (-0.001351849326 0.08000551822 0) (-0.0001094990632 0.07996278077 0) (0.001114579834 0.078769644 0) (0.001121262504 0.07904975594 0) (0.0008265012779 0.07905020499 0) (0.0008230120199 0.07891009774 0) (0.0008193906555 0.07877016114 0) (0.0009888661344 0.07975120541 0) (0.001136100997 0.07975096225 0) (3.786766975e-05 0.07982157082 0) (-0.001356155127 0.07655597566 0) (-0.001355504455 0.07669781242 0) (-0.001429645165 0.07669790476 0) (-0.001504273424 0.07669773907 0) (-0.001505495791 0.07655655909 0) (-0.001519328755 0.07761832806 0) (-0.001445678377 0.07761795158 0) (-0.002626043343 0.07755400796 0) (-0.002478147378 0.07755319887 0) (-9.595286424e-05 0.07765246017 0) (-0.0002389268782 0.07765100372 0) (-0.0002451354182 0.07751215501 0) (-0.0001023610616 0.07751367807 0) (-0.001381298233 0.07761783154 0) (-0.001375575479 0.07768755226 0) (-0.001206871874 0.07655500077 0) (-0.00120714979 0.07669684359 0) (-0.001281746412 0.07669772257 0) (-0.001355114073 0.07874079056 0) (-0.001369497911 0.07775720535 0) (-8.941612409e-05 0.07779134592 0) (-0.0002327817928 0.07779003569 0) (-0.004361120709 0.08839099446 0) (-0.004930635981 0.08792497554 -3.568811913e-13) (-0.002874959084 0.08809973608 0) (-0.002859554158 0.09008667936 0) (-0.002862973036 0.08979914947 0) (-0.002572328085 0.08894537864 0) (-0.002275059385 0.08894389709 0) (-0.002272863695 0.08922812116 0) (-0.00257015838 0.08922962378 0) (-0.001531238962 0.08908252368 0) (-0.001532414478 0.08894051795 0) (-0.001518440178 0.09008839089 0) (-0.001521217938 0.0899430348 0) (0.0006223815352 0.08951370845 0) (0.0006175188614 0.08958429109 0) (0.0005425060166 0.08958063413 0) (0.0005656590263 0.08952303601 0) (0.0006194153078 0.09009989222 0) (0.0005412430255 0.09010203313 0) (0.0005408334731 0.09002651873 0) (0.0006194881189 0.09002544176 0) (-0.002287383046 0.08696878538 0) (-0.002584283738 0.08697061979 0) (-0.001546762438 0.08682342695 0) (-0.001540338614 0.08780910163 0) (-0.001541245657 0.08766820693 0) (0.0005745155682 0.08270983348 0) (0.0005720937532 0.08278078286 0) (0.0004936791918 0.08278662378 0) (0.000481714669 0.08272770598 0) (0.002640920331 0.0812919432 0) (0.00467517949 0.08070902589 -3.550215677e-13) (0.004128969218 0.08156563358 -3.587685704e-13) (0.004119226191 0.08096709783 -3.586297925e-13) (0.004143755003 0.08269181445 0) (-5.827437171e-05 0.08047581666 0) (3.357920193e-05 0.08045808096 0) (3.374982639e-05 0.08052860852 0) (-4.244349081e-05 0.08053418678 0) (0.0005611963817 0.08045387786 0) (0.0005633916508 0.08059443763 0) (0.0004161813467 0.08059464144 0) (0.0004151774478 0.08052431523 0) (0.0004143539518 0.08045401397 0) (0.0005700231428 0.08101631254 0) (0.0004964821568 0.08101644015 0) (0.0004954327174 0.08094614036 0) (0.0005689788422 0.08094599966 0) (4.853351234e-05 0.0776534235 0) (5.504579508e-05 0.0777922441 0) (0.001083334079 0.0776514069 0) (0.001091746409 0.07793058022 0) (0.0007942711434 0.07793183064 0) (0.000784216711 0.07765320353 0) (0.0008156661146 0.07863022523 0) (0.0008118770398 0.07849040728 0) (0.001107467879 0.07848979609 0) (-0.001539456498 0.08795017935 0) (-0.001533456934 0.0887988875 0) (-0.002574159803 0.08866288929 0) (-0.002276970675 0.08866122279 0) (-0.0007964987442 0.08837010606 0) (-0.0008019076614 0.08829944292 0) (-0.000736121066 0.08829909167 0) (-0.000730063334 0.08836990731 0) (-0.000769632145 0.09009836633 0) (-0.000772478771 0.09002346479 0) (-0.0006973013465 0.0900249237 0) (-0.0006939373117 0.09010085564 0) (-0.0007805908302 0.08950887183 0) (-0.0007059186626 0.08950936114 0) (-0.0007047715464 0.08958161812 0) (-0.0007805272408 0.08958100919 0) (0.001375387204 0.08993586434 0) (0.001374626587 0.09007939164 0) (0.001376978407 0.08907552424 0) (0.001228010004 0.0890775119 0) (0.002417936525 0.08920660859 0) (0.002120623831 0.08920935342 0) (0.002120102806 0.08906756936 0) (0.0005709363018 0.08108674383 0) (0.0004973368856 0.08108692407 0) (0.000575157509 0.08157993375 0) (0.0004989355879 0.08158073192 0) (0.0004993061987 0.08151008327 0) (0.0005748017693 0.08150945964 0) (0.002356290658 0.08213682862 0) (0.002060077898 0.08213800549 0) (0.002056373052 0.08185668557 0) (0.002352534083 0.0818555874 0) (0.00131929035 0.08199980055 0) (0.001321084641 0.08214055885 0) (0.001305258421 0.08101510287 0) (0.001307535517 0.08115579271 0) (0.001333115772 0.08312687608 0) (0.001322917857 0.08228127771 0) (0.002359984661 0.0824184882 0) (0.002063719744 0.08241967847 0) (-4.499881771e-05 0.07932965202 0) (-0.0001195894528 0.0793300477 0) (-0.0001199317697 0.07925946901 0) (-4.600484621e-05 0.0792592997 0) (-0.0006604582441 0.0782088825 0) (-0.0005840311908 0.07820809606 0) (-0.0005810223424 0.07827763858 0) (-0.0006568459241 0.07827843414 0) (-7.339535928e-05 0.07820933269 0) (-6.854914567e-05 0.07834886945 0) (-0.0002125398675 0.07834778534 0) (-0.0002148835116 0.07827792501 0) (-0.0002171620062 0.07820822099 0) (-6.657677441e-05 0.09127585674 0) (-0.0002292754175 0.09127555959 0) (-0.0002300971827 0.0911359234 0) (-6.760570003e-05 0.09113620623 0) (-0.001319449243 0.09126211326 0) (-0.001343826644 0.09096202143 0) (-0.001191638922 0.09096520575 0) (-0.00103473452 0.09097245124 0) (-0.0010223022 0.09112120254 0) (-0.001010208785 0.09126765734 0) (-0.001216037559 0.0902368621 0) (-0.001367136311 0.090232031 0) (0.00122321148 0.09022771734 0) (0.001073349087 0.09023100882 0) (0.001196445216 0.09124442039 0) (0.0008844405575 0.09125579644 0) (0.0008862098301 0.09111452378 0) (0.0008957716367 0.09096811564 0) (0.001055807485 0.09095767716 0) (0.001209102464 0.09095201465 0) (0.0001023344559 0.09113391444 0) (0.000102256049 0.09127370801 0) (0.0006019022529 0.08942253237 0) (0.001228068236 0.08950682872 0) (0.001078989795 0.08950876616 0) (0.001078927921 0.08943669148 0) (0.001078874668 0.08936473691 0) (0.001228275193 0.08936311997 0) (0.0006947603012 0.08943881105 0) (0.0006964739928 0.08951162725 0) (0.0006968944139 0.09002460583 0) (0.0006962472247 0.09009850223 0) (0.0006951724791 0.08958412747 0) (0.001227869946 0.08965006462 0) (0.001078992541 0.08965158672 0) (0.00107897092 0.08958027583 0) (0.001224979759 0.08722809344 0) (0.001154566466 0.08722876225 0) (0.001153356039 0.08715781047 0) (0.00122382427 0.08715715436 0) (0.001225182101 0.08729907793 0) (0.001154310306 0.08729973667 0) (0.001204011594 0.08496125583 0) (0.001130423308 0.08496154048 0) (0.001129196414 0.08489066717 0) (0.001203183039 0.08489037992 0) (0.001204201302 0.0850323057 0) (0.001130289633 0.08503267083 0) (0.0005789254577 0.08214391653 0) (0.0005802933981 0.08221418812 0) (0.0005055785195 0.08221455849 0) (0.0005021378547 0.08214469227 0) (0.0005112485539 0.08263740619 0) (0.000580857683 0.08263799648 0) (0.001180582102 0.08270451727 0) (0.001033035498 0.08270502369 0) (0.001031330528 0.08256434317 0) (0.001178955495 0.08256383625 0) (0.000656108658 0.08263751812 0) (0.0006534352055 0.08270853445 0) (0.0006552064061 0.08214315717 0) (0.0006559442158 0.08221353736 0) (0.0005894162631 0.08327336479 0) (0.0005770939156 0.08320785359 0) (0.0006548263609 0.0832021608 0) (0.0006594381676 0.08327216305 0) (0.0006526020892 0.08277915999 0) (0.001182223843 0.08284531575 0) (0.001034683854 0.08284583518 0) (0.001033817712 0.08277540359 0) (-0.001439538889 0.08049848552 0) (-0.00151188088 0.08049881428 0) (-0.001512627149 0.08042853863 0) (-0.001440742098 0.08042823898 0) (-0.002024619568 0.08050154882 0) (-0.002025184314 0.08036106984 0) (-0.001878241666 0.08036028003 0) (-0.001877624764 0.08050074562 0) (-0.002026852089 0.07993968494 0) (-0.001879961682 0.07993889547 0) (-0.001879395998 0.08007951813 0) (-0.002026312611 0.0800802947 0) (0.0005512771283 0.07989175071 0) (0.0005539313528 0.08003218993 0) (0.0004075254197 0.08003216646 0) (0.0004050603992 0.07989169988 0) (0.0004133281915 0.08038374015 0) (0.0004123596408 0.08031342677 0) (0.0005589374581 0.08031337075 0) (-3.389576937e-05 0.08038577258 0) (3.693334722e-05 0.08038649857 0) (-0.001458653879 0.07825142302 0) (-0.001527797971 0.07825144355 0) (-0.001528647955 0.07818128613 0) (-0.001460743996 0.07818136512 0) (-0.002033240894 0.07825337292 0) (-0.002033792323 0.07811293303 0) (-0.001887528214 0.07811223908 0) (-0.001887042171 0.07825266634 0) (-0.002035801201 0.07769131526 0) (-0.001889510972 0.07769062114 0) (-0.001889026335 0.07776083319 0) (-0.001888698507 0.07783103321 0) (-0.002035053611 0.07783179306 0) (-0.002030967827 0.07881544552 0) (-0.002031492198 0.07867514911 0) (-0.001884901667 0.07867443997 0) (-0.001884260009 0.07881469642 0) (-0.00188638643 0.07839307943 0) (-0.002032676489 0.07839379967 0) (-0.001455376554 0.07832127725 0) (-0.00152586509 0.07832142411 0) (-0.0007843781695 0.08893651978 0) (-0.0007742922577 0.08886396741 0) (-0.0006816116328 0.08884607742 0) (-0.0007167473179 0.08893697801 0) (-0.0007236182544 0.08844023716 0) (-0.0007906659372 0.0884404791 0) (-0.001388255966 0.08837339582 0) (-0.00123994085 0.08837257092 0) (-0.001239312544 0.08844338284 0) (-0.001238718254 0.088513986 0) (-0.001387175386 0.08851486406 0) (-0.0008653332017 0.08844094059 0) (-0.0008697992766 0.08837045414 0) (-0.0008584021834 0.08893688172 0) (-0.0008531746246 0.08886497364 0) (-0.0007704101216 0.08780203617 0) (-0.0007664705257 0.08786850331 0) (-0.0008455335074 0.08787385215 0) (-0.0008430244975 0.08780325484 0) (-0.0008738660205 0.08829971692 0) (-0.001389285072 0.08823180969 0) (-0.001241074156 0.08823082874 0) (-0.001240550503 0.08830161522 0) (-0.00137848527 0.08951057428 0) (-0.001229861993 0.0895101379 0) (-0.001227785776 0.0896550673 0) (-0.001376400567 0.08965540306 0) (-0.0008559776952 0.08958114144 0) (-0.000856151537 0.08950892121 0) (-0.0008460334299 0.09009429866 0) (-0.0008477325925 0.09002170728 0) (-0.0007892182209 0.08900836656 0) (-0.0008614988785 0.08900848725 0) (-0.0008555156407 0.08943689552 0) (-0.0007789621286 0.08943687362 0) (-0.001380101174 0.08936693229 0) (-0.001231461549 0.08936639914 0) (-0.0007038305345 0.08943691456 0) (-0.0007206841929 0.08900872747 0) (0.001225960019 0.08836419955 0) (0.001150584348 0.08836478321 0) (0.001151153187 0.0882936892 0) (0.001226029982 0.08829291289 0) (0.001226084938 0.08843532821 0) (0.001150493771 0.08843591328 0) (-0.001402636002 0.08611939319 0) (-0.001327967602 0.08611890557 0) (-0.001327830113 0.08618915907 0) (-0.001402268737 0.08618963213 0) (-0.0008270749743 0.08667879296 0) (-0.0008926839495 0.08667914305 0) (-0.0008955502751 0.08660902491 0) (-0.00083019467 0.08660867648 0) (-0.001402925075 0.08604912762 0) (-0.001328184844 0.08604863953 0) (-0.001395692839 0.08724459372 0) (-0.001247190593 0.08724362393 0) (-0.001246493724 0.087314135 0) (-0.001245945912 0.08738462091 0) (-0.001394667998 0.08738552683 0) (-0.000801123541 0.08724051501 0) (-0.0007977630506 0.08731090419 0) (-0.0008654390462 0.08731133308 0) (-0.0008686113829 0.08724095573 0) (-0.000844879758 0.08773296031 0) (-0.0007746160619 0.08773238391 0) (-0.0008239877589 0.08674893577 0) (-0.0008898159766 0.08674931341 0) (-0.000871693177 0.08717064309 0) (-0.0008044390293 0.08717021695 0) (-0.001396703426 0.08710384336 0) (-0.001248399612 0.08710288793 0) (-0.001247753651 0.08717320342 0) (0.001217806769 0.08609369957 0) (0.001147927696 0.08609397306 0) (0.001146912038 0.08602304613 0) (0.001217147657 0.08602277031 0) (0.001217525368 0.08616460885 0) (0.001147489657 0.08616489642 0) (0.001289443332 0.0860933493 0) (0.001289501414 0.0861642433 0) (0.001805719233 0.08609026513 0) (0.001806839505 0.08623181148 0) (0.001658722282 0.08623273957 0) (0.001657667141 0.08609116667 0) (0.00181006007 0.08665697389 0) (0.001661773319 0.08665794227 0) (0.001660755226 0.08651604261 0) (0.001809015942 0.08651508746 0) (0.001800818764 0.08552386043 0) (0.001802095589 0.08566537964 0) (0.001654056302 0.08566624191 0) (0.001652766331 0.08552470973 0) (0.00165651998 0.08594950295 0) (0.001804546037 0.08594861464 0) (0.001288914909 0.08602243225 0) (0.001296993451 0.08722749255 0) (0.001297378552 0.08729846279 0) (0.001814036242 0.08722384176 0) (0.001814949511 0.08736568987 0) (0.001666728573 0.08736673618 0) (0.00166584134 0.08722487484 0) (0.001817392343 0.08779175855 0) (0.001669041143 0.08779285796 0) (0.001668309012 0.08765074745 0) (0.001816621116 0.08764966136 0) (0.001811089517 0.08679861226 0) (0.001662789791 0.08679959378 0) (0.00166486311 0.08708307941 0) (0.001813084219 0.08708205922 0) (0.001296112314 0.08715656474 0) (-0.001416402465 0.0838711464 0) (-0.001341637334 0.08387067121 0) (-0.001340814179 0.08394092024 0) (-0.001415687626 0.08394140919 0) (-0.001416932104 0.08380084322 0) (-0.001342442545 0.08380036983 0) (-0.001410182252 0.08499584227 0) (-0.00133641859 0.08499541281 0) (-0.001335830521 0.08506566337 0) (-0.001409684214 0.08506610648 0) (-0.001410693436 0.08492556509 0) (-0.001336997688 0.08492513607 0) (0.001192776383 0.08383221731 0) (0.001118492579 0.08383259793 0) (0.001117959673 0.08376199437 0) (0.001192103816 0.08376162773 0) (0.0006677113975 0.0833414361 0) (0.0006016859104 0.08334160606 0) (0.001193248956 0.08390278209 0) (0.001118774728 0.08390320313 0) (-0.001431819272 0.08162258387 0) (-0.00135962225 0.08162225606 0) (-0.001359665703 0.08169260217 0) (-0.001431712531 0.08169292899 0) (-0.001431223539 0.08155220803 0) (-0.001358137451 0.08155182217 0) (-0.001421065719 0.08274646648 0) (-0.001343544494 0.08274582963 0) (-0.001344192554 0.08281619274 0) (-0.001421114481 0.08281679956 0) (-0.00142135113 0.0826761617 0) (-0.001343707139 0.08267552405 0) (0.0005774642774 0.08207356719 0) (0.0006542798456 0.08207267372 0) (0.0006502057934 0.08157941753 0) (0.0006507838995 0.08164994244 0) (0.0005753132287 0.08165057896 0) (0.001166200998 0.08157815066 0) (0.00116814713 0.08171896021 0) (0.001020857216 0.08171937352 0) (0.001018934167 0.08157849852 0) (0.0004982696169 0.08165155228 0) (0.0004991757356 0.08207470537 0) (-0.001446561106 0.07937517934 0) (-0.001518420292 0.07937543964 0) (-0.001519427768 0.0793051657 0) (-0.00144837798 0.07930496293 0) (-0.002029006162 0.0793778336 0) (-0.002029532835 0.07923718457 0) (-0.001882955535 0.0792364494 0) (-0.001882402826 0.07937708519 0) (-0.001883786686 0.07895517601 0) (-0.002030494504 0.0789559251 0) (-0.002027404456 0.07979910138 0) (-0.001880566291 0.07979831226 0) (-0.001881798473 0.07951762923 0) (-0.002028467196 0.079518365 0) (-0.00144424567 0.07944534025 0) (-0.001517060444 0.0794456721 0) (-4.406000448e-05 0.07939999171 0) (-0.0001191954517 0.07940056074 0) (-0.001375295908 0.0793749621 0) (-0.001371695849 0.07944503626 0) (-0.001378394707 0.07930484549 0) (-0.001367779131 0.08049819975 0) (-0.001365618771 0.08056841392 0) (-0.001438210129 0.08056875737 0) (-0.00136975517 0.0804280105 0) (-8.534050698e-05 0.08037656104 0) (2.871455903e-05 0.07932956246 0) (2.99424982e-05 0.07939979578 0) (0.0005397121692 0.07933041796 0) (0.0005428634797 0.07947077557 0) (0.0003967131023 0.07947068513 0) (0.0003935222697 0.07933027553 0) (0.0004022392319 0.07975149685 0) (0.0005485823049 0.07975149461 0) (-0.002036626641 0.07755091634 0) (-0.001890479734 0.0775502754 0) (-0.001889943111 0.07762044793 0) (-0.00200785322 0.07711296739 0) (-0.001861031304 0.07711769005 0) (-0.001879235075 0.07719616107 0) (-0.001888257331 0.07726859025 0) (-0.002034548147 0.07726719463 0) (-0.001418882366 0.07711540343 0) (-0.001445899997 0.07719441525 0) (-0.001515597653 0.07719366881 0) (-0.001490316718 0.07711291817 0) (-0.001382690866 0.07713377882 0) (-0.001400900702 0.0771973213 0) (-0.0006854676956 0.07708800555 0) (-0.0006838733321 0.07715794914 0) (-0.0007544496384 0.07715685579 0) (-0.0007560894571 0.07708695168 0) (-0.0006661112967 0.07764603526 0) (-0.0007389297383 0.07764580551 0) (-0.0007403331388 0.07757570395 0) (-0.0006677750504 0.07757606601 0) (-0.001390316403 0.07825148612 0) (-0.001385513265 0.07832118672 0) (-0.0007309837511 0.07828356796 0) (-0.0007503082595 0.07822582146 0) (-0.0006646107968 0.07771600559 0) (-0.000737960905 0.07771596216 0) (-0.0007310113171 0.07813694686 0) (-0.0006600088769 0.07813789375 0) (-0.001394496452 0.0781815986 0) (-0.0002221093519 0.07806869794 0) (-7.833543654e-05 0.07806982265 0) (-0.0005848835634 0.07813757294 0) (-0.0005940497826 0.0776465573 0) (-0.0005920789996 0.07771634169 0) (0.0003085518379 0.09011581762 0) (0.0002167113231 0.09011635301 0) (0.000299154369 0.09002839074 0) (0.0002666569385 0.08073668832 0) (0.0002677863016 0.08080702677 0) (0.0001897124606 0.08080824191 0) (0.0001886891418 0.08073794195 0) (0.0002743036626 0.08101722497 0) (0.000201537009 0.08101712549 0) (0.0001997913432 0.0809470131 0) (0.000273251867 0.08094696438 0) (-0.004359901238 0.07488773569 0) (-0.004945666129 0.07470060817 -3.578526364e-13) (-0.002564108719 0.07487600838 0) (-0.002863411826 0.07487796296 0) (-0.003162714932 0.07487991754 0) (-0.003166386645 0.07431767123 0) (-0.002854231263 0.07628377465 0) (-0.002560436153 0.0754383853 0) (-0.002261146107 0.0754364308 0) (-0.002259309824 0.07571761926 0) (-0.00255859987 0.07571957375 0) (-0.001363245929 0.07543056712 0) (-0.001361409646 0.07571175558 0) (-0.00166070361 0.0757137101 0) (-0.001662539893 0.07543252164 0) (-0.001506467453 0.0764157693 0) (-0.001356915611 0.07641492327 0) (0.000428874024 0.0748564629 0) (0.0001295761415 0.07485841745 0) (-0.0001697230471 0.074860372 0) (0.002221188542 0.07472361522 -3.582134589e-13) (0.001626069472 0.07484864469 0) (0.001622026802 0.07426851012 -3.586853037e-13) (0.001635250034 0.07625445638 0) (0.001633414604 0.07597339852 0) (-0.0004629563171 0.09011599067 0) (-0.0004702065816 0.09003436348 0) (-0.0003761504412 0.09002290508 0) (-0.0003829221341 0.09012636111 0) (0.0002738040959 0.0810879267 0) (0.0001987894272 0.08108839046 0) (0.0002749136783 0.0812996361 0) (0.0002054034078 0.08129878394 0) (0.0002036184757 0.08122865875 0) (0.0002756715832 0.0812288935 0) (0.0005259903665 0.07877020947 0) (0.0005296544888 0.07891009354 0) (0.0003835453074 0.0789099114 0) (0.0003799123592 0.07877000101 0) (0.0003903627552 0.07919006165 0) (0.0005365213952 0.07919021734 0) (2.740964933e-05 0.07925934271 0) (0.001038489246 0.07653955394 0) (0.001052106569 0.07681596355 0) (0.0007539977877 0.07681660424 0) (0.0007391900578 0.07654150849 0) (0.0007732088227 0.07737497448 0) (0.001074872716 0.07737232532 0) (4.17842143e-05 0.07751470893 0) (-7.428452384e-05 0.09071724942 0) (-0.0002476469214 0.09071394608 0) (-0.0002535252638 0.09057300025 0) (-0.0001603752334 0.09057708994 0) (-7.173994021e-05 0.09057786552 0) (-0.0007325722335 0.09069692075 0) (-0.000746011169 0.09054622735 0) (-0.0005891289427 0.09055307723 0) (-0.000570607274 0.0907048855 0) (-0.0006898273629 0.09017700878 0) (-0.0007657706056 0.09017448074 0) (0.0006182492991 0.09017474222 0) (0.0005406076329 0.09017753595 0) (0.0005965503936 0.09069100599 0) (0.00043772304 0.09069870033 0) (0.0004446046054 0.09055406898 0) (0.0006056528177 0.09054325297 0) (2.34108672e-05 0.09057600859 0) (0.0001105572032 0.09057285735 0) (0.000105460617 0.09071402113 0) (0.001211061502 0.08694420192 0) (0.001131964095 0.08694467928 0) (0.001123604993 0.08687365663 0) (0.001206085446 0.08687322249 0) (0.0009169214059 0.08779676394 0) (0.0009231286421 0.08772627309 0) (0.0009908904947 0.08772579139 0) (0.0009858538885 0.0877963399 0) (0.0009384938136 0.08751412959 0) (0.00100467764 0.08751360595 0) (0.001000559573 0.08758440968 0) (0.0009340612494 0.08758497455 0) (0.001223711004 0.08751180987 0) (0.001222907787 0.08758281398 0) (0.001148532024 0.08758331275 0) (0.001150350538 0.08751238037 0) (0.001199860246 0.08467876334 0) (0.001123913071 0.08467923319 0) (0.00112321038 0.08460863073 0) (0.00119913362 0.08460809574 0) (0.0008881877041 0.08468219621 0) (0.000886125579 0.08461182467 0) (0.0009665016967 0.08461055531 0) (0.0009675942937 0.08468106379 0) (0.0009042969903 0.08439699842 0) (0.0009758618395 0.08439706657 0) (0.0009735387444 0.08446813285 0) (0.0009004737507 0.08446834878 0) (0.0009102977461 0.08552968898 0) (0.0009044444958 0.08545918546 0) (0.0009723311889 0.0854588205 0) (0.0009777346528 0.08552924859 0) (0.0008843001567 0.085253099 0) (0.0009627538456 0.08524764966 0) (0.000962582887 0.08531827088 0) (0.0008908477258 0.08531952299 0) (0.001202106316 0.08524470213 0) (0.001202236966 0.08531530832 0) (0.001123627961 0.08531617431 0) (0.001123864136 0.0852455396 0) (-0.001496624576 0.0827469991 0) (-0.001496979207 0.08267669477 0) (-0.002014075989 0.08275007788 0) (-0.002014798311 0.08260946931 0) (-0.001867163894 0.08260860968 0) (-0.001866415536 0.08274920502 0) (-0.00201689972 0.08218768236 0) (-0.001869382845 0.0821868235 0) (-0.001868647634 0.08232740586 0) (-0.00201620369 0.08232826498 0) (-0.002011174834 0.08331232922 0) (-0.002011909705 0.0831717991 0) (-0.00186417089 0.08317092573 0) (-0.001863409899 0.08331145568 0) (-0.001865680239 0.08288980044 0) (-0.002013366813 0.08289067347 0) (-0.001496361367 0.08281730402 0) (-0.002022122771 0.08106388118 0) (-0.002022752903 0.08092338955 0) (-0.00187553616 0.08092257183 0) (-0.001874840811 0.08106304997 0) (-0.001876941538 0.0806413675 0) (-0.002024014703 0.08064217122 0) (-0.001511056077 0.08056911554 0) (-0.001441022417 0.0779691148 0) (-0.001516237618 0.07796967129 0) (-0.001511489165 0.07789879815 0) (-0.001433199285 0.07789806484 0) (-0.001741344852 0.07797118052 0) (-0.00174117852 0.07790065076 0) (-0.001666173164 0.07790016094 0) (-0.001667161954 0.07797074832 0) (-0.001742502766 0.07768987009 0) (-0.001667771592 0.07768939512 0) (-0.001666556004 0.0777595371 0) (-0.001741757094 0.07776005431 0) (-0.00120736201 0.07641394662 0) (-0.00106394674 0.07542861257 0) (-0.001062110457 0.07570980103 0) (-0.0001660504823 0.07542274891 0) (-0.0001642142028 0.07570393737 0) (-0.0004635133865 0.07570589193 0) (-0.0004653496695 0.07542470347 0) (0.001223896093 0.08808015225 0) (0.001148393651 0.08808072368 0) (0.001145282463 0.08800951003 0) (0.001222257373 0.08800921633 0) (0.0009327484509 0.0880833466 0) (0.0008969473713 0.08799335593 0) (0.0009893989784 0.08800979661 0) (0.0009999333418 0.08808191522 0) (0.000981956312 0.08786690709 0) (0.000910363551 0.08786656485 0) (0.001300690853 0.08836367234 0) (0.001300906938 0.08843476123 0) (0.001820302857 0.08835944315 0) (0.001820980785 0.08850125361 0) (0.001672552076 0.08850248413 0) (0.001671912903 0.08836060812 0) (0.001822373859 0.08892857385 0) (0.001673879917 0.08892981525 0) (0.001673498104 0.08878734851 0) (0.001821965738 0.08878607855 0) (0.001818149741 0.08793373828 0) (0.001669772591 0.08793486398 0) (0.001671297207 0.08821832706 0) (0.001819674186 0.08821717524 0) (0.001300564484 0.08829232166 0) (0.00121318703 0.08581028282 0) (0.001140845125 0.08581062464 0) (0.001138388178 0.08573999446 0) (0.001211602257 0.08573960776 0) (0.0009316147916 0.08581135102 0) (0.000926791973 0.08574103669 0) (0.0009929207485 0.0857406832 0) (0.0009973815992 0.08581116969 0) (0.0009830720476 0.08559955956 0) (0.0009161185696 0.085599827 0) (0.001207485428 0.08637720083 0) (0.001203473918 0.08644812141 0) (0.001121225826 0.08644873689 0) (0.00112861195 0.08637776815 0) (-0.001564534481 0.08387200928 0) (-0.001565492144 0.08373136307 0) (-0.00141761489 0.08373048879 0) (-0.002008155625 0.08387465816 0) (-0.002008930444 0.08373401075 0) (-0.001861074172 0.08373312355 0) (-0.001860273232 0.08387377079 0) (-0.001862636273 0.08345192024 0) (-0.002010427244 0.08345280702 0) (-0.001132682666 0.08330753267 0) (-0.001130012415 0.08337762596 0) (-0.001201959985 0.08337795214 0) (-0.001203782792 0.08330782719 0) (-0.001122005155 0.08358797116 0) (-0.001196371947 0.08358844375 0) (-0.001198235838 0.08351822765 0) (-0.00112466669 0.08351781251 0) (-0.001418815731 0.08358980498 0) (-0.001419405277 0.08351952831 0) (-0.001345675572 0.08351909907 0) (-0.001344877147 0.08358936131 0) (0.0009019027655 0.08432677272 0) (0.0009749679298 0.08432658291 0) (0.0008858059874 0.08411748603 0) (0.0009656703116 0.08411624613 0) (0.0009685542127 0.08418645558 0) (0.0008906964318 0.08418735585 0) (0.001195127562 0.08411425137 0) (0.00119590001 0.08418473582 0) (0.001121256254 0.08418519715 0) (0.001120158774 0.08411474095 0) (0.001340630955 0.08383166971 0) (0.001341995279 0.08397258754 0) (0.001193813405 0.08397321565 0) (0.001784191744 0.08382977875 0) (0.001785633577 0.08397056547 0) (0.001637736759 0.08397124396 0) (0.001636307474 0.08383037879 0) (0.001790001755 0.08439346085 0) (0.001642079072 0.0843941787 0) (0.001640661653 0.0842531306 0) (0.001788584336 0.08425241276 0) (0.001277908956 0.08496109977 0) (0.001278332726 0.08503199138 0) (0.001795679275 0.0849588548 0) (0.001797007574 0.08510025612 0) (0.001648968116 0.08510109227 0) (0.001647718349 0.08495971656 0) (0.001651449983 0.08538313853 0) (0.001799528707 0.08538231518 0) (0.001791472608 0.08453469146 0) (0.001643510659 0.08453539649 0) (0.001646323725 0.08481815894 0) (0.00179431171 0.08481744067 0) (0.001277237551 0.08489028814 0) (-0.001504774756 0.08162296887 0) (-0.001504724773 0.08155262272 0) (-0.00201957595 0.08162587362 0) (-0.002020167328 0.08148531644 0) (-0.001872859503 0.08148444588 0) (-0.001872215799 0.08162501578 0) (-0.001874158779 0.08120348901 0) (-0.00202149298 0.08120432056 0) (-0.002017582009 0.08204720414 0) (-0.001870104315 0.08204634553 0) (-0.001871519768 0.0817655984 0) (-0.002018919186 0.08176644343 0) (-0.001504524523 0.08169328694 0) (-0.001429688679 0.08190363979 0) (-0.001356542599 0.08190324048 0) (-0.00135527815 0.08197326459 0) (-0.001428889091 0.08197368 0) (-0.00113858202 0.08190216975 0) (-0.001134829214 0.08197203394 0) (-0.001208056267 0.08197243378 0) (-0.001210984003 0.08190251196 0) (-0.001124286212 0.08218207524 0) (-0.001199654474 0.08218259355 0) (-0.001202430854 0.08211244871 0) (-0.001127779433 0.0821119612 0) (-0.001124046567 0.08105757228 0) (-0.001119670017 0.08112754994 0) (-0.001188151492 0.08112803634 0) (-0.001192057957 0.08105804254 0) (-0.001106840447 0.08133333153 0) (-0.001185031427 0.08133860937 0) (-0.001182677691 0.08126823511 0) (-0.001110969189 0.08126710072 0) (-0.001426851107 0.08134115506 0) (-0.001426261222 0.08127088375 0) (-0.001346473666 0.08127008842 0) (-0.001347882177 0.08134040426 0) (-0.001422258745 0.08302777921 0) (-0.001348630825 0.08302736369 0) (-0.001349277835 0.08309768762 0) (-0.00142239257 0.08309808673 0) (-0.001135172332 0.08302649215 0) (-0.001137862597 0.08309693391 0) (-0.00120647167 0.08309708156 0) (-0.001203901473 0.08302665364 0) (-0.001205429796 0.08323762273 0) (-0.001135201758 0.08323738615 0) (-0.001120792906 0.08225220234 0) (-0.001196883148 0.08225276455 0) (-0.001110294534 0.08246260964 0) (-0.001188586061 0.08246329071 0) (-0.001191340409 0.0823931196 0) (-0.001113795676 0.08239248259 0) (-0.00142334449 0.0824653201 0) (-0.001424127414 0.08239503163 0) (-0.001347849105 0.08239446819 0) (-0.001346634055 0.08246472772 0) (0.001016849142 0.08143782048 0) (0.001164210093 0.08143748507 0) (0.0006495281464 0.08150905001 0) (0.0007168683553 0.08101620254 0) (0.0007188141459 0.08115695984 0) (0.0005718850648 0.08115722713 0) (-0.0003091566265 0.07960041786 0) (-0.0002576286921 0.07960992926 0) (-0.0002793189763 0.07969943335 0) (-3.994783552e-05 0.07961088478 0) (-3.891553184e-05 0.0796813806 0) (-0.0001139321489 0.079681766 0) (-0.0001144085045 0.07961116207 0) (-0.001436798559 0.07965531035 0) (-0.001360521726 0.0796547208 0) (-0.00135705494 0.07972458686 0) (-0.001434487099 0.07972526231 0) (-0.001441955453 0.07909343944 0) (-0.001434951399 0.07902256462 0) (-0.001358070215 0.07902191889 0) (-0.001370601445 0.07909322162 0) (-0.001434024455 0.08077950629 0) (-0.001358888666 0.0807789895 0) (-0.001356626521 0.08084918994 0) (-0.001432614892 0.08084975149 0) (-0.001142427895 0.08077765428 0) (-0.001137834117 0.08084769583 0) (-0.001204615908 0.08084805358 0) (-0.001208829716 0.08077799649 0) (-0.001196195248 0.0809881025 0) (-0.001128636539 0.08098771356 0) (-0.001178999152 0.08021892722 0) (-0.001236922913 0.08021790797 0) (-0.001228707657 0.08014710361 0) (-0.00118358865 0.080154541 0) (-0.0014404545 0.08021787879 0) (-0.001437688399 0.0801474496 0) (-0.001364307149 0.08014706181 0) (-0.00136961768 0.08021766435 0) (-4.412175992e-05 0.08017673489 0) (-0.0001363929868 0.08019455168 0) (-0.0001112121744 0.08010429338 0) (-3.979897943e-05 0.08010485883 0) (-0.001430334996 0.07703527144 0) (-0.001333308437 0.07702027086 0) (-0.00195161412 0.07698081598 0) (-0.00180170789 0.07697983703 0) (-0.001814230179 0.07704430887 0) (-0.00195448566 0.07655909936 0) (-0.001804800603 0.07655825246 0) (-0.001803804527 0.07669878088 0) (-0.001953527912 0.07669975864 0) (-0.001743404821 0.07761973913 0) (-0.00166927408 0.07761932033 0) (-0.001746047732 0.07740903237 0) (-0.001673718631 0.07740872982 0) (-0.001672528311 0.07747900257 0) (-0.001745353619 0.07747932142 0) (-0.001461481953 0.07740836257 0) (-0.001456720294 0.0774783116 0) (-0.001527569465 0.07747843469 0) (-0.001530913628 0.0774083458 0) (-0.0005961954884 0.0775767871 0) (-0.0005460197094 0.0770901642 0) (-0.0005386356484 0.07722927951 0) (-0.0006786203333 0.07722653663 0) (-0.0001245230162 0.07709839583 0) (-0.0001171097853 0.07723685791 0) (-0.0002587738902 0.07723472679 0) (-0.0002647532456 0.07709573292 0) (-0.001399436055 0.07740840146 0) (-0.001393828258 0.07747831883 0) (-0.0009652794215 0.07736465959 0) (-0.0009619316607 0.0774338995 0) (-0.001031547774 0.07743663978 0) (-0.001052379853 0.07738064022 0) (-0.0007573990661 0.07655141248 0) (-0.0007566137133 0.07669207288 0) (-0.0009066449219 0.07669331386 0) (-0.00090719343 0.07655252131 0) (-0.0007641030589 0.07701903527 0) (-0.00069330896 0.07701987904 0) (-0.001443930403 0.07853141714 0) (-0.001370631262 0.07853105602 0) (-0.001365461183 0.07860114604 0) (-0.001439932542 0.07860160625 0) (-0.001358448332 0.07789301845 0) (-0.001353306941 0.0779519155 0) (0.0006179911976 0.08980321946 0) (0.0005403568419 0.08980413264 0) (0.0005403449812 0.08973051646 0) (0.0006169866299 0.08972879084 0) (0.0003832178709 0.09003256758 0) (0.0003849175751 0.09010904189 0) (0.0006188275795 0.08987729393 0) (0.00054078677 0.08987756717 0) (0.0005948612365 0.08298794931 0) (0.0005336601853 0.08298648128 0) (0.0005204292777 0.082919043 0) (0.0005866853085 0.08291897602 0) (0.0005952086282 0.08305834511 0) (0.0005460358033 0.08304954975 0) (0.0002654023724 0.08045477771 0) (0.0002659026551 0.08052518558 0) (0.0001893186809 0.08052614283 0) (0.0001890243246 0.08045566832 0) (0.0001897418686 0.08066714518 0) (0.0002665881844 0.08066616009 0) (-8.894246417e-06 0.0806582157 0) (4.257588418e-05 0.08066733565 0) (1.74777601e-05 0.08075727995 0) (-0.0008109196638 0.08808824226 0) (-0.0007517414039 0.08808916188 0) (-0.0007465310139 0.08815862473 0) (-0.0008102255769 0.08815872722 0) (-0.0008024659476 0.08801695309 0) (-0.0007564751095 0.08802429335 0) (-0.0007781520105 0.08980172624 0) (-0.0007035465433 0.08980200179 0) (-0.0007015754871 0.08987642802 0) (-0.0007763664182 0.08987595254 0) (-0.0004828169643 0.08980234575 0) (-0.0004584510874 0.08986247298 0) (-0.0005509801698 0.08987876855 0) (-0.000555290529 0.08980532672 0) (-0.0005412511073 0.09010857205 0) (-0.0005460260646 0.09003058667 0) (-0.0005592970788 0.08973200698 0) (-0.0005052586746 0.08974086461 0) (-0.0007795067395 0.0897272777 0) (-0.0007045487655 0.08972793232 0) (0.0002748860098 0.08158199914 0) (0.0002738404885 0.08151169933 0) (0.0003473368989 0.08151154589 0) (0.0003458108505 0.0815824633 0) (0.0003489345161 0.0812993878 0) (0.0003471462967 0.08137035917 0) (0.0002705227151 0.08137125138 0) (0.0005734403522 0.08129798699 0) (0.000574066355 0.08136844627 0) (0.0004992999174 0.08136892147 0) (0.0004991250337 0.08129834169 0) (0.0001790727317 0.08138878853 0) (0.0002238239818 0.08157311163 0) (0.0002089821615 0.08151119556 0) (-0.0003409476848 0.0793302786 0) (-0.0003419097054 0.07925996518 0) (-0.000268796959 0.07926010159 0) (-0.0002699408681 0.07933105568 0) (-0.0003440124312 0.07904917653 0) (-0.0002702527703 0.07904903443 0) (-0.0002687797878 0.07911903106 0) (-0.0003414625381 0.0791188396 0) (-4.978795409e-05 0.07904883549 0) (-4.84574648e-05 0.07911887222 0) (-0.0001214737462 0.07911878743 0) (-0.0001228417639 0.079048764 0) (-0.0004100730439 0.07911736771 0) (-0.0004161932472 0.07904878589 0) (-0.0003943188875 0.07932158902 0) (-0.0004126059008 0.07926331331 0) (-0.000350191603 0.07876856499 0) (-0.0003503230395 0.0788392382 0) (-0.0004252649117 0.07883964924 0) (-0.000424609133 0.07876886812 0) (-0.0004246800587 0.07898080726 0) (-0.0003483771637 0.07898000857 0) (-0.0006571345751 0.07850163317 0) (-0.0005703264391 0.07848569363 0) (-0.0005685515289 0.0785558842 0) (-0.000638192142 0.07855887279 0) (-0.0003530012522 0.07848692576 0) (-0.0003517038375 0.07855719781 0) (-0.0004245012973 0.07855698098 0) (-0.0004255850347 0.07848662917 0) (-0.000424718374 0.07869834016 0) (-0.000350465148 0.07869807729 0) (-0.0003612976335 0.07820730761 0) (-0.0003590389 0.07827698564 0) (-0.000431994928 0.0782768874 0) (-0.0004342304088 0.07820717004 0) (-0.0004271501004 0.07841637194 0) (-0.0003546991919 0.07841672163 0) (-0.0006393237201 0.07841339519 0) (-0.0005714494427 0.07841532902 0) (0.0006704313674 0.08920394095 0) (0.000695626612 0.08929586858 0) (0.0006405266478 0.08930485511 0) (0.0009241097899 0.08922171497 0) (0.0009254895685 0.08929379933 0) (0.000847259053 0.08929382304 0) (0.0008447796657 0.08922155648 0) (0.0009279865717 0.08951056336 0) (0.000851247116 0.08951071186 0) (0.0008503040646 0.08943850318 0) (0.000927424522 0.08943849717 0) (0.0009186663134 0.08893515985 0) (0.000921313814 0.08900696949 0) (0.0008438896803 0.08900747379 0) (0.0008384754221 0.08893479278 0) (0.0008440667892 0.08914979428 0) (0.0009232812481 0.08915004104 0) (0.0009283130251 0.08958235289 0) (0.0008515835794 0.08958303421 0) (0.0009279334137 0.08979922322 0) (0.000852311738 0.08979993648 0) (0.0008518860102 0.08972794515 0) (0.0009276788857 0.08972744758 0) (0.000696107333 0.08972808085 0) (0.0006971788719 0.08980156473 0) (0.0009528301225 0.0872308372 0) (0.0009551830004 0.08715973154 0) (0.001018093742 0.08715920316 0) (0.001017097319 0.0872302216 0) (0.0009611119899 0.08692863304 0) (0.001004072662 0.08701716638 0) (0.0009589492977 0.08702446168 0) (0.00121656352 0.08701532159 0) (0.001141689194 0.08701587586 0) (0.001151963381 0.08744155382 0) (0.00122438447 0.08744093721 0) (0.0009426611416 0.08744346921 0) (0.00100845012 0.08744288285 0) (0.001014783734 0.08730114415 0) (0.0009498213879 0.08730171205 0) (0.0009167981757 0.08496169476 0) (0.0009098965824 0.08489145931 0) (0.0009822997595 0.08489129995 0) (0.0009864188566 0.08496185397 0) (0.0009716626795 0.08475125244 0) (0.0008945929738 0.08475203002 0) (0.001200845834 0.08474928558 0) (0.001125419765 0.08474975203 0) (0.0008262549911 0.08475248935 0) (0.0008170039438 0.08468348391 0) (0.0008530312107 0.08496151039 0) (0.0008440620584 0.08489147129 0) (0.0008333760338 0.08446772903 0) (0.0008362489093 0.08439645018 0) (0.0008078033461 0.08461740376 0) (0.0009202650836 0.08503257956 0) (0.0008608408634 0.08503159624 0) (0.001125854166 0.08517467141 0) (0.001202746764 0.08517397335 0) (0.0008782639908 0.08519398575 0) (0.0009701739796 0.08517628887 0) (0.0009870933584 0.08503293986 0) (0.0005770046414 0.08242638337 0) (0.000497851651 0.08242774923 0) (0.0004995541841 0.08235685679 0) (0.0005775486131 0.08235568135 0) (0.0005795623759 0.08249664719 0) (0.0005033592777 0.08249732768 0) (0.0006552221191 0.0824253632 0) (0.0006564098591 0.08249604085 0) (0.0008819599301 0.08242354292 0) (0.0008826492781 0.08249430219 0) (0.0008082206761 0.08249470988 0) (0.0008074944181 0.08242389861 0) (0.0008844313225 0.08270578516 0) (0.0008088953502 0.08270642212 0) (0.0008088675948 0.08263597198 0) (0.0008837630736 0.08263545676 0) (0.0006648248384 0.08298841974 0) (0.0006635965065 0.08305912623 0) (0.0008878019679 0.0829873293 0) (0.0008880806518 0.08305780392 0) (0.0008127710759 0.08305830878 0) (0.0008129624779 0.08298781804 0) (0.0008897025714 0.0832699671 0) (0.0008135804737 0.08327045115 0) (0.0008120340017 0.08319984114 0) (0.0008886652808 0.08319932765 0) (0.0008851274245 0.08277617869 0) (0.0008093409501 0.08277685646 0) (0.0008119849555 0.08291753084 0) (0.0008870579692 0.0829170014 0) (0.0006608702798 0.08291866136 0) (3.399933013e-05 0.08017541495 0) (3.418082928e-05 0.08024600775 0) (-4.378614378e-05 0.0802472875 0) (0.0002626200913 0.08017292933 0) (0.0002635197636 0.0802432954 0) (0.0001883227623 0.08024383872 0) (0.0001877595343 0.08017339208 0) (0.0001892004221 0.08038503401 0) (0.0002649877761 0.08038429093 0) (-0.001741691858 0.07825204366 0) (-0.001741967445 0.0781818433 0) (-0.001669847138 0.07818156824 0) (-0.001669584526 0.07825178174 0) (-0.00166837439 0.078041089 0) (-0.001741486939 0.07804142279 0) (-0.001452461267 0.07804029286 0) (-0.001522528125 0.07804041084 0) (-0.001518312952 0.07853187677 0) (-0.001520939992 0.07846160035 0) (-0.001447860264 0.07846124065 0) (-0.001739608367 0.07853308683 0) (-0.00174015967 0.07846266624 0) (-0.001667282292 0.07846232093 0) (-0.001666365385 0.07853272607 0) (-0.001668956993 0.07832187531 0) (-0.001741286094 0.07832217786 0) (-0.000772788149 0.08865089045 0) (-0.000703416472 0.08865031988 0) (-0.0006960487162 0.08871993842 0) (-0.0007680824467 0.08872127085 0) (-0.0007786566719 0.08858064826 0) (-0.0007103842465 0.08858015016 0) (-0.0008520955388 0.08865181325 0) (-0.0008562034201 0.08858137671 0) (-0.001087342845 0.08865438133 0) (-0.001088327527 0.08858359786 0) (-0.001012071846 0.08858296927 0) (-0.001010512937 0.08865368368 0) (-0.001091648107 0.08837172006 0) (-0.001017534429 0.0883712883 0) (-0.001015718233 0.08844200103 0) (-0.001090536741 0.08844250269 0) (-0.001086088732 0.0889380225 0) (-0.001086086217 0.08886720777 0) (-0.001009788009 0.08886669123 0) (-0.001010600778 0.08893783254 0) (-0.001009471414 0.08872457126 0) (-0.001086587172 0.0887252969 0) (-0.0008493015514 0.08872245429 0) (-0.0008771495473 0.08808811315 0) (-0.000868553559 0.08801680999 0) (-0.001093306727 0.08808893701 0) (-0.001092163799 0.08801815271 0) (-0.00101658396 0.08801763302 0) (-0.001019433188 0.08808853295 0) (-0.001088787368 0.08780598301 0) (-0.00100830648 0.08780515704 0) (-0.001009708231 0.08787570793 0) (-0.001089332704 0.08787647607 0) (-0.001092663936 0.088300767 0) (-0.001019160004 0.08830036536 0) (-0.001020612573 0.08815913463 0) (-0.001093719728 0.08815949451 0) (-0.000878843338 0.08815874431 0) (-0.0007777087049 0.08922140947 0) (-0.0008559601383 0.08922223003 0) (-0.0008587548133 0.0891508837 0) (-0.0007827253671 0.08915041201 0) (-0.00108402756 0.08922304808 0) (-0.001084785893 0.0891515252 0) (-0.001010071321 0.08915110781 0) (-0.001009047719 0.08922265116 0) (-0.001011094278 0.08900886337 0) (-0.001085868866 0.08900909046 0) (-0.0006990833265 0.0892202508 0) (-0.0006945430489 0.08929109986 0) (-0.0007750468602 0.0892926156 0) (-0.0007073467678 0.08914987666 0) (0.0009190819014 0.08836579871 0) (0.0009260014682 0.08829578646 0) (0.001000770091 0.08829524595 0) (0.0009969636811 0.08836577336 0) (0.001005461086 0.08815337431 0) (0.0009374786637 0.08815468028 0) (0.001225246463 0.08815093333 0) (0.001150691037 0.08815172061 0) (0.0008773010871 0.08815653608 0) (0.0008851516184 0.08809208168 0) (0.0008483602631 0.08836545078 0) (0.0008586276508 0.08829648766 0) (0.000929735646 0.088652598 0) (0.000926164348 0.08872292797 0) (0.0008519851446 0.08872372585 0) (0.0008600247793 0.08865422872 0) (0.0008368470008 0.08886303395 0) (0.0009180140078 0.08886367284 0) (0.0009162358503 0.08843638516 0) (0.0008380618191 0.08843165826 0) (0.0008598154219 0.08858297 0) (0.0009278242158 0.08858110224 0) (0.001227220859 0.08864927084 0) (0.001152545135 0.08864983687 0) (0.001151954102 0.08857833249 0) (0.001226805884 0.08857772613 0) (0.001001305087 0.08857996934 0) (0.001002846937 0.0886512716 0) (0.0009956158766 0.08843658512 0) (-0.000839955588 0.08639839497 0) (-0.0009028910059 0.08639854475 0) (-0.0009016385684 0.08632792953 0) (-0.0008431049226 0.0863285399 0) (-0.001108317638 0.08639912874 0) (-0.001106573877 0.0863285495 0) (-0.001035112237 0.08632821343 0) (-0.001038018109 0.08639883945 0) (-0.001095388965 0.08611708633 0) (-0.00101368407 0.08611629155 0) (-0.001020331097 0.08618683751 0) (-0.001098946691 0.08618749458 0) (-0.001106120864 0.08668011893 0) (-0.001107156646 0.08660991048 0) (-0.001036115377 0.08660960328 0) (-0.001034548296 0.08667976908 0) (-0.001038381028 0.08646926601 0) (-0.00110858922 0.08646954165 0) (-0.0008366245979 0.0864686668 0) (-0.0009010473291 0.08646886547 0) (-0.001095510173 0.08583592586 0) (-0.001097048948 0.08576569457 0) (-0.001016196721 0.08576493147 0) (-0.001013978895 0.08583514527 0) (-0.001102046771 0.08555538196 0) (-0.001023266788 0.0855546977 0) (-0.001020846843 0.08562466202 0) (-0.001100334609 0.08562536396 0) (-0.001093547107 0.08604672848 0) (-0.001010674877 0.08604588689 0) (-0.001011983095 0.08590536051 0) (-0.001094180278 0.08590617157 0) (-0.000786620064 0.08752162074 0) (-0.0008551994919 0.08752210778 0) (-0.0008586137268 0.08745188874 0) (-0.0007902653811 0.08745141627 0) (-0.001092192029 0.08752423012 0) (-0.001093424568 0.08745389234 0) (-0.001015338003 0.08745322567 0) (-0.001013439558 0.08752353298 0) (-0.001097070345 0.08724261746 0) (-0.001020903048 0.08724205475 0) (-0.001019095002 0.08731251938 0) (-0.001095875963 0.08731311222 0) (-0.001089045864 0.08773559969 0) (-0.001008562364 0.0877347737 0) (-0.001011562633 0.08759394491 0) (-0.001090977006 0.08759468556 0) (-0.0007828177673 0.08759186337 0) (-0.0008517026359 0.08759237852 0) (-0.000814271779 0.08695993592 0) (-0.0008808304945 0.08696025303 0) (-0.0008839486016 0.08688997981 0) (-0.000817712561 0.08688965174 0) (-0.001101659145 0.0869615384 0) (-0.001102801739 0.08689117392 0) (-0.001029565628 0.08689076096 0) (-0.001027838103 0.0869610955 0) (-0.001032921932 0.08675001286 0) (-0.001105037724 0.08675037932 0) (-0.001098235398 0.08717221394 0) (-0.001022662089 0.08717169429 0) (-0.001026110295 0.08703127331 0) (-0.001100518965 0.08703173311 0) (-0.0008108744105 0.08702997222 0) (-0.0008777239445 0.08703035653 0) (0.0009476797054 0.08609475833 0) (0.0009440905105 0.0860235478 0) (0.001008768259 0.08602339971 0) (0.001011650918 0.08609441894 0) (0.001001650863 0.08588191864 0) (0.0009364072355 0.0858822141 0) (0.001214694465 0.08588111511 0) (0.001143148983 0.08588141255 0) (0.001137448733 0.0863067377 0) (0.001212050781 0.0863062897 0) (0.0009553748138 0.08630070406 0) (0.001000348958 0.08630735874 0) (0.0009581736159 0.08639608235 0) (0.00101316653 0.08616530342 0) (0.0009504450188 0.08616560853 0) (-0.001100467797 0.0841493694 0) (-0.001103035212 0.08407922319 0) (-0.001024162587 0.08407852527 0) (-0.001020866577 0.08414864059 0) (-0.001111157403 0.08386887874 0) (-0.001034436519 0.08386828629 0) (-0.001030968113 0.08393840049 0) (-0.001108413674 0.08393902379 0) (-0.001098590628 0.08443081881 0) (-0.00109600405 0.08436029936 0) (-0.00101340921 0.08435938121 0) (-0.001016228176 0.08442991524 0) (-0.001017679933 0.08421880888 0) (-0.001098115451 0.08421958231 0) (-0.001051422743 0.0835173995 0) (-0.001048086161 0.08358752762 0) (-0.001061591596 0.08330725127 0) (-0.001058151043 0.08337730035 0) (-0.001113906698 0.08379868148 0) (-0.001037909099 0.08379813294 0) (-0.001044741402 0.08365770794 0) (-0.001119335443 0.08365818201 0) (-0.001109405401 0.08527496097 0) (-0.001111300466 0.08520477119 0) (-0.001036524886 0.08520429593 0) (-0.001033811281 0.08527442813 0) (-0.00111700386 0.08499421503 0) (-0.001044712975 0.08499386049 0) (-0.001041982306 0.08506400563 0) (-0.001115108795 0.08506440481 0) (-0.001103828153 0.08548540041 0) (-0.00102582117 0.08548474732 0) (-0.00103111596 0.08534456044 0) (-0.001107522175 0.08534513777 0) (-0.00112153295 0.08471327925 0) (-0.001118940637 0.08464283813 0) (-0.001049857646 0.08464266127 0) (-0.001052573947 0.08471311626 0) (-0.001026281982 0.08450078385 0) (-0.001104860751 0.08450147986 0) (-0.001118844157 0.08492401183 0) (-0.001047398018 0.08492370199 0) (-0.001051934857 0.08478337955 0) (-0.001121632818 0.08478358655 0) (0.0008898534879 0.08355227674 0) (0.0008893371134 0.0836230047 0) (0.0008108157569 0.08362409216 0) (0.0008125112482 0.0835531214 0) (0.0008925684791 0.08383402107 0) (0.0008186849452 0.08383429459 0) (0.0008163981561 0.08376412043 0) (0.0008919997711 0.08376353529 0) (0.0008909327547 0.08334034407 0) (0.0008158512226 0.08334076908 0) (0.0008156691796 0.08348189293 0) (0.0008910159213 0.08348147925 0) (0.0006252480764 0.08347266165 0) (0.0006740085634 0.08348131604 0) (0.0006430126915 0.08357174292 0) (0.0008132251509 0.08418824054 0) (0.0008055179708 0.08411884624 0) (0.0008304739994 0.08432674287 0) (0.000890332547 0.08390503454 0) (0.0008153363333 0.0839055243 0) (0.0008023387095 0.08404880852 0) (0.0008839992207 0.08404721731 0) (-0.001152417086 0.08162181718 0) (-0.001149717506 0.0816920017 0) (-0.001219039586 0.08169216707 0) (-0.00121996234 0.08162186645 0) (-0.001213930705 0.08183248577 0) (-0.001142403422 0.08183220152 0) (-0.001430481283 0.08183346893 0) (-0.001357786834 0.08183311176 0) (-0.001077014654 0.08183193123 0) (-0.001072801358 0.08190190996 0) (-0.001089656591 0.0816216816 0) (-0.001085452805 0.08169180406 0) (-0.001061107519 0.08211157805 0) (-0.001057321747 0.08218169018 0) (-0.001068661257 0.0819716802 0) (-0.001152160836 0.08155145662 0) (-0.001093783855 0.08155227699 0) (-0.001351085883 0.08141082325 0) (-0.001428233583 0.08141145767 0) (-0.001103320923 0.08139187347 0) (-0.00119468715 0.0814094362 0) (-0.001217545291 0.08155138729 0) (-0.001098966477 0.08274326592 0) (-0.001101755745 0.08281374751 0) (-0.001183706968 0.08281462227 0) (-0.001181156618 0.0827441553 0) (-0.00119781533 0.08295601991 0) (-0.001125677165 0.08295567943 0) (-0.001421750175 0.08295745618 0) (-0.001347267146 0.08295698284 0) (-0.001060270849 0.08295569637 0) (-0.001069852128 0.08302652271 0) (-0.001026900207 0.08274211613 0) (-0.001023274656 0.0828084939 0) (-0.001064982861 0.08323714962 0) (-0.001070463875 0.08309684641 0) (-0.001045945978 0.08239205256 0) (-0.00104213278 0.08246216451 0) (-0.001053535976 0.08225180231 0) (-0.001100483049 0.08267303449 0) (-0.001030693186 0.08267250036 0) (-0.001038319582 0.08253227646 0) (-0.001106820819 0.08253273687 0) (-0.00134546872 0.08253497451 0) (-0.00142258516 0.08253559566 0) (-0.001185899626 0.08253346226 0) (-0.001181547732 0.08267386427 0) (0.0002475663004 0.08167215386 0) (0.0005776799486 0.08186199281 0) (0.0005016627332 0.08186273739 0) (0.0005001165489 0.08179257145 0) (0.0005768446983 0.08179169162 0) (0.000291928683 0.08186172997 0) (0.0002767811562 0.08179540132 0) (0.0003459172892 0.08179436209 0) (0.0003543842328 0.08186309838 0) (0.0003405498734 0.08165425405 0) (0.0003563762268 0.0819331308 0) (0.0003061888131 0.08192417227 0) (0.0005776501533 0.08193243026 0) (0.0005012129929 0.08193326901 0) (-0.0003640429545 0.07942011839 0) (-0.000115800124 0.07954086452 0) (-4.126142897e-05 0.07954049529 0) (-0.0003273769945 0.07953994749 0) (-0.0002629698292 0.07954088522 0) (-0.0002726598346 0.0794025425 0) (-0.001439241501 0.07958542455 0) (-0.001364173541 0.07958492126 0) (-0.001378666875 0.07916416868 0) (-0.00144718799 0.07916418514 0) (-0.001160637398 0.08049744783 0) (-0.001156111277 0.080567529 0) (-0.001221389118 0.0805677855 0) (-0.001225522208 0.0804976887 0) (-0.001213025326 0.08070792622 0) (-0.001146989023 0.08070761252 0) (-0.001435428793 0.08070926106 0) (-0.001361145502 0.08070880208 0) (-0.001371583328 0.08028786629 0) (-0.001441696862 0.08028803682 0) (-0.001174083333 0.08028788261 0) (-0.001236444865 0.08028791109 0) (-0.001229564926 0.08042763049 0) (-0.00116512817 0.08042737949 0) (-0.0001200297032 0.0802528922 0) (-0.001532286707 0.07733808731 0) (-0.001464133664 0.07733830834 0) (-0.001745853916 0.0773387114 0) (-0.001673759985 0.07733839733 0) (-0.001713355402 0.0771171828 0) (-0.001638994266 0.07711604414 0) (-0.001659912364 0.07719487246 0) (-0.00173297054 0.07719553242 0) (-0.0009847799711 0.0770901561 0) (-0.0009752439156 0.07715700465 0) (-0.001059098511 0.07716081747 0) (-0.00109023117 0.07710169833 0) (-0.001036677406 0.07729334333 0) (-0.0009662231843 0.07729454196 0) (-0.001404605051 0.07733867712 0) (-0.0009539163043 0.07764808455 0) (-0.000974156815 0.07759127135 0) (-0.0008871933466 0.07757531774 0) (-0.0008844852798 0.07764520181 0) (-0.0008915394923 0.07736459598 0) (-0.0008893782847 0.07743433996 0) (-0.0006742627405 0.07736601128 0) (-0.0006717982192 0.07743600143 0) (-0.0007436542919 0.07743513847 0) (-0.0007455890763 0.0773650665 0) (-0.00137567988 0.07846096519 0) (-0.0006905943823 0.07840335968 0) (-0.0006616069949 0.07792677529 0) (-0.0007355103485 0.07792681384 0) (-0.0007360969998 0.07785638042 0) (-0.0006623190252 0.07785634269 0) (-0.0008806270315 0.07771441227 0) (-0.0009335747442 0.07770517136 0) (-0.0006614664092 0.07799730305 0) (-0.000736091257 0.07799765977 0) (-0.001388891113 0.07804073973 0) (0.002716420294 0.09034518906 0) (0.004756120852 0.08966298588 -3.550770789e-13) (0.004208625485 0.09060986098 -3.587685704e-13) (0.004145606566 0.09088775027 -3.532729664e-13) (0.004185916253 0.09122951015 -3.56770169e-13) (0.000118576089 0.08087838618 0) (0.0001289699615 0.08094639154 0) (6.697478493e-05 0.08094471972 0) (4.995759741e-05 0.08087929142 0) (0.0001331879387 0.08101588699 0) (8.288999216e-05 0.08100660266 0) (0.002602254825 0.07904512591 0) (0.004531114871 0.07658301602 -3.464173393e-13) (0.004063453703 0.07871587531 -3.56048524e-13) (0.004028947792 0.07768511928 -3.538835891e-13) (0.004105014381 0.08029213476 -3.581024366e-13) (0.000108362887 0.08110564665 0) (-0.0001243860957 0.07897874172 0) (-5.153125045e-05 0.07897890593 0) (-0.000272663254 0.07897927903 0) (-0.0002758420719 0.07876824925 0) (-0.0002751561623 0.07883868202 0) (0.001303230068 0.08087450283 0) (0.001433944597 0.07989071454 0) (0.001439056886 0.08017155508 0) (0.001144102057 0.08017235803 0) (0.002322066265 0.07988807545 0) (0.002326995624 0.08016890413 0) (0.002031107324 0.08016976542 0) (0.002026191282 0.07988897583 0) (-7.418855663e-05 0.09043822689 0) (-0.0001657956986 0.09043709848 0) (-0.0001767826887 0.09036542951 0) (-7.867366477e-05 0.09036847589 0) (-0.0004342565429 0.09041876404 0) (-0.0004403655199 0.09034530129 0) (-0.000351027644 0.09035553881 0) (-0.0003438777048 0.09042820326 0) (-0.0003742134989 0.09020310743 0) (-0.0004543724424 0.09019523251 0) (0.000303953848 0.09019193107 0) (0.0002204637118 0.09020055327 0) (0.0002851172217 0.09042049346 0) (0.0002011113246 0.09042553761 0) (0.0002026155268 0.09035347491 0) (0.0002883181693 0.09034725204 0) (2.290846693e-05 0.09036525651 0) (2.31347843e-05 0.09043569228 0) (0.002417264394 0.09120168511 0) (0.002115911972 0.09120982956 0) (0.002117948576 0.09092369317 0) (0.002417631391 0.09091788315 0) (0.001513518419 0.09094178658 0) (0.001505918332 0.09123199119 0) (0.001373168012 0.09022404112 0) (0.001228350332 0.08922002593 0) (0.001153571132 0.08922074676 0) (0.001153350164 0.08914971015 0) (0.001228150978 0.08914889906 0) (0.001001289003 0.08915030612 0) (0.001001915631 0.08922186121 0) (0.0009983124128 0.08893510338 0) (0.0009996054315 0.08900690228 0) (-0.001557960248 0.0849967159 0) (-0.001558838867 0.08485617366 0) (-0.001411139233 0.08485530054 0) (-0.002001920875 0.08499938006 0) (-0.002002708072 0.08485883722 0) (-0.001854668955 0.08485794883 0) (-0.001853855637 0.0849984915 0) (-0.002005070346 0.08443710422 0) (-0.00185707041 0.08443621608 0) (-0.001856269641 0.0845768372 0) (-0.002004282637 0.08457772542 0) (-0.001998735293 0.08556118548 0) (-0.00199953393 0.08542089087 0) (-0.001851403476 0.08541998882 0) (-0.001850591779 0.08556028334 0) (-0.001853042405 0.08513902111 0) (-0.002001120617 0.08513992282 0) (-0.001409186175 0.08513637069 0) (-0.001557068654 0.085137245 0) (0.0002589294417 0.07989158319 0) (0.0002599483306 0.07996180482 0) (0.0001864539353 0.07996186682 0) (0.0001856867691 0.07989159131 0) (0.0001873995353 0.08010286575 0) (0.000261604097 0.08010255096 0) (3.583746129e-05 0.08010428653 0) (0.0005679032822 0.08087570004 0) (0.000714602134 0.08087557793 0) (0.0007078820878 0.08045374277 0) (0.0007102103163 0.08059426249 0) (0.001148971424 0.08045320016 0) (0.00115130428 0.08059362842 0) (0.001004010731 0.08059388503 0) (0.001001750927 0.08045344323 0) (-0.001737526497 0.07881388186 0) (-0.001737787915 0.0787438512 0) (-0.00166373562 0.07874341985 0) (-0.001663160926 0.07881342234 0) (-0.001665435248 0.07860315725 0) (-0.00173892629 0.07860353269 0) (-0.001515646561 0.07860217906 0) (0.0009980270423 0.08886360484 0) (0.001001637487 0.08872206939 0) (0.001227334253 0.08872063468 0) (0.001152620312 0.08872114871 0) (-0.002005858738 0.08429637853 0) (-0.001857871862 0.08429549048 0) (-0.001859473059 0.08401430049 0) (-0.002007394634 0.08401518811 0) (-0.001415201683 0.08401162124 0) (-0.00156357767 0.08401252489 0) (-0.001414036333 0.08415207018 0) (-0.001338478782 0.08415153757 0) (-0.001337764993 0.08422183956 0) (-0.001413313402 0.0842223721 0) (-0.001179831759 0.08422042942 0) (-0.0011813916 0.08415017214 0) (-0.00118028726 0.08443167884 0) (-0.00117869301 0.08436120506 0) (-0.00118363142 0.08450219018 0) (-0.001192475132 0.08471355968 0) (-0.001190899875 0.08464317745 0) (-0.001411926431 0.0847147577 0) (-0.001412163434 0.08464446567 0) (-0.001338211789 0.08464402191 0) (-0.001338243743 0.08471432876 0) (-0.001515701001 0.07909384267 0) (-0.00151215239 0.07902323857 0) (-0.001737048486 0.07909507919 0) (-0.001736972383 0.07902473286 0) (-0.00166322039 0.07902431654 0) (-0.001663675072 0.07909469145 0) (-0.001662806977 0.07888362219 0) (-0.001737068151 0.07888406796 0) (-0.0001755585315 0.07989026723 0) (-0.0001801656633 0.07982110085 0) (-0.0001874405739 0.07975253963 0) (-0.0001122112337 0.07975204835 0) (-3.747702585e-05 0.07975167785 0) (-0.00128312774 0.07881000018 0) (-0.001277917691 0.07887941078 0) (-0.001272900252 0.07894572721 0) (-0.001349440835 0.07895092897 0) (-0.001429613073 0.07895181823 0) (-3.725988011e-05 0.08003356911 0) (-0.0001105406434 0.08003356441 0) (-0.000181519184 0.08003709723 0) (-0.0001981238244 0.07997954194 0) (3.409628957e-05 0.07961066246 0) (3.532951146e-05 0.07968110472 0) (0.0002537441594 0.07961096516 0) (0.000255147192 0.0796812104 0) (0.0001821453676 0.07968109939 0) (0.0001806925353 0.07961082836 0) (0.0001846070085 0.07982144845 0) (0.0002577843795 0.07982144076 0) (-0.001451215845 0.07754820353 0) (-0.001387524603 0.07754819248 0) (-0.001435951378 0.07867163874 0) (-0.001360178588 0.07867106554 0) (-0.00129417695 0.0786708435 0) (-0.001288346222 0.0787404982 0) (-0.001432161745 0.07782754245 0) (-0.001363636494 0.07782655946 0) (0.0006146666885 0.0896551401 0) (0.0005191893373 0.08963776965 0) (0.0005773863379 0.08285023211 0) (0.0005068582904 0.08285152858 0) (0.0001114386833 0.08045684109 0) (0.0001115922441 0.08052735571 0) (0.0001137081404 0.08059736119 0) (3.964795111e-05 0.08059758362 0) (-2.541540679e-05 0.08059696365 0) (0.0003475425414 0.08094663596 0) (0.0003484680785 0.08101696268 0) (0.000343079306 0.08073578436 0) (0.0003441880285 0.08080616213 0) (0.0005657332808 0.0807350095 0) (0.0005668366086 0.08080536118 0) (0.000493218055 0.08080541093 0) (0.0004920770229 0.08073508562 0) (-0.0008065318513 0.08822894444 0) (-0.0007412886501 0.08822858367 0) (0.001822742416 0.08907101064 0) (0.00167422278 0.08907231751 0) (0.001823496875 0.08949854011 0) (0.001674783722 0.08950021395 0) (0.001674558735 0.08935776185 0) (0.001823270659 0.08935589995 0) (0.001377121834 0.08936148705 0) (0.001376973326 0.08950474613 0) (0.0004987367285 0.08122788085 0) (0.0005726087641 0.08122764659 0) (0.0003497044312 0.08122868431 0) (0.0003487724298 0.08108756774 0) (-0.0004978901922 0.07876879812 0) (-0.0004962482145 0.07883883282 0) (-0.0005497102156 0.07883003935 0) (-0.0005684415887 0.07877211918 0) (-0.000518041318 0.07892827228 0) (-0.00061903117 0.07861677709 0) (-0.0005661398459 0.07862578327 0) (-0.0005869678511 0.07871500745 0) (-0.0004970460234 0.07862726506 0) (-0.0004986109382 0.07869843088 0) (0.001218047972 0.09065943332 0) (0.001065412707 0.09066571713 0) (0.001068952758 0.0905202025 0) (0.001219542408 0.09051627516 0) (0.000760789267 0.09053577342 0) (0.0007545010124 0.09068245798 0) (0.0006951067944 0.09017226903 0) (0.0006212570392 0.08936411533 0) (0.0006949353028 0.08936720893 0) (0.0007714185751 0.08936643127 0) (0.00077247923 0.08943844849 0) (0.0007736326781 0.08951107504 0) (0.0007442449359 0.08891775377 0) (0.0007716417767 0.08900901006 0) (0.0007195619582 0.0890186691 0) (0.0007697845189 0.08907960964 0) (0.0007035808251 0.08908089094 0) (0.000579622059 0.08228478649 0) (0.0005048997707 0.08228522221 0) (0.0004354440709 0.08228452643 0) (0.000433964153 0.08221430782 0) (0.0004258986993 0.08214545136 0) (0.000461612685 0.08262870528 0) (0.000448737337 0.08256531355 0) (0.000510819362 0.0825666844 0) (0.0005824350345 0.08256693507 0) (0.0008789318327 0.08214185287 0) (0.0008796866208 0.08221223295 0) (0.0008057314257 0.08221253306 0) (0.0008050000609 0.08214213977 0) (0.000806845104 0.08235326968 0) (0.0008811174088 0.08235292832 0) (0.0006551352779 0.0823546653 0) (0.0005654477765 0.08314848965 0) (0.0006574640656 0.08313087043 0) (0.0007349124617 0.08312988141 0) (0.0007340305424 0.08320083379 0) (0.0007366689683 0.08327125381 0) (-3.743811537e-05 0.08031611599 0) (3.657343356e-05 0.0803159853 0) (0.0001127354478 0.08031521365 0) (0.0001126095766 0.08038593907 0) (-0.0007675765669 0.08879213581 0) (-0.000688598877 0.08878652631 0) (-0.0006691466769 0.08894502611 0) (-0.0007846299598 0.08851056347 0) (-0.0007169237549 0.08851016051 0) (-0.0008607212511 0.08851116487 0) (-0.0009374964762 0.08851183604 0) (-0.0009405577149 0.08844147102 0) (-0.0009435330701 0.08837085729 0) (-0.000762872325 0.08792729289 0) (-0.0008552167104 0.08794507098 0) (-0.0009339152926 0.08794582001 0) (-0.0009279726741 0.08787480846 0) (-0.0009256622662 0.08780419939 0) (-0.0009461990398 0.0883000195 0) (-0.0009481730104 0.08822934698 0) (-0.0008771167776 0.08822913111 0) (-0.001081068763 0.08951012619 0) (-0.001081789807 0.08943811328 0) (-0.001007072624 0.08943769587 0) (-0.001006487962 0.08950982461 0) (-0.00100812184 0.08929443025 0) (-0.001083119821 0.08929484949 0) (-0.0008543194488 0.08929366747 0) (-0.0007761524744 0.08936451375 0) (-0.0006975305194 0.08936343086 0) (-0.0006046293874 0.08934530694 0) (-0.0006339773493 0.08943767696 0) (-0.0006336428305 0.08950970154 0) (-0.0006603651635 0.08900993221 0) (-0.0006504899892 0.08907930973 0) (-0.0007155208351 0.0890793883 0) (-0.000787479176 0.08907946509 0) (-0.0008458296382 0.08626390641 0) (-0.0008911787568 0.08625703214 0) (-0.0008498570742 0.08616858839 0) (-0.0009565177833 0.08625711925 0) (-0.0009419505044 0.08618619504 0) (-0.0009313275509 0.08611547945 0) (-0.000852416522 0.08611026221 0) (-0.0009636820347 0.08667946302 0) (-0.0009659333903 0.08660931475 0) (-0.0009680342113 0.08653921774 0) (-0.0008983705485 0.08653895872 0) (-0.0008333111565 0.0865386514 0) (-0.0009395558603 0.08569408515 0) (-0.0009424715592 0.08562400652 0) (-0.0008739783294 0.08562352005 0) (-0.0008708562775 0.08569359733 0) (-0.0009454648525 0.08555404595 0) (-0.0008771284316 0.08555354744 0) (-0.0009278927624 0.08604504589 0) (-0.0008553287247 0.08604391897 0) (-0.0009287551835 0.08597478406 0) (-0.0008583881404 0.0859742331 0) (-0.0007939964698 0.08738127766 0) (-0.0008620423281 0.08738166979 0) (-0.000939169302 0.08738227795 0) (-0.0009418400374 0.08731191038 0) (-0.0009443961834 0.08724148982 0) (-0.000926298035 0.08773384465 0) (-0.0009283899429 0.08766351249 0) (-0.0008481531121 0.08766271423 0) (-0.0007787886744 0.08766223513 0) (-0.0008209153629 0.08681920929 0) (-0.0008869315638 0.08681960122 0) (-0.0009590524944 0.08681998077 0) (-0.0009613833207 0.08674966323 0) (-0.0009468772885 0.0871711602 0) (-0.0009493120003 0.08710093476 0) (-0.0008747102079 0.08710044758 0) (-0.0008076637192 0.0871000228 0) (-0.001186888045 0.08393970606 0) (-0.00118879617 0.08386951636 0) (-0.00118315345 0.08407998149 0) (-0.001414463846 0.08408180551 0) (-0.001339219572 0.08408130107 0) (-0.001344069323 0.08365966268 0) (-0.001418178912 0.08366012053 0) (-0.001194501271 0.083658699 0) (-0.001190709776 0.08379928752 0) (-0.001188483345 0.08506481867 0) (-0.001189707366 0.08499458533 0) (-0.001184788029 0.08527547937 0) (-0.001186017189 0.08520525912 0) (-0.001408190184 0.08527688604 0) (-0.001408675162 0.08520662175 0) (-0.001334646461 0.08520617749 0) (-0.001334057 0.0852764411 0) (-0.0009656342507 0.08513372226 0) (-0.0009690764507 0.08506362095 0) (-0.0009027974817 0.08506326648 0) (-0.0008990719583 0.08513335288 0) (-0.0009725317963 0.08499350666 0) (-0.0009065517378 0.08499318027 0) (-0.0009487177047 0.08548413931 0) (-0.0008807371479 0.08548374761 0) (-0.0009520418502 0.0854141156 0) (-0.000884357933 0.08541369971 0) (-0.0009745656597 0.08457186294 0) (-0.0009341833278 0.08448317716 0) (-0.0009289302912 0.08457897043 0) (-0.0009759739964 0.08492340535 0) (-0.0009103073853 0.084923081 0) (-0.0009793509801 0.08485329055 0) (-0.0009140603353 0.08485299478 0) (-0.001337985844 0.08478462066 0) (-0.001411598091 0.08478503608 0) (-0.001192603732 0.08478386717 0) (-0.001190888288 0.0849243517 0) (0.0007346946436 0.08369532691 0) (0.0007421627614 0.08376451379 0) (0.0006758142583 0.08376462056 0) (0.0006642474848 0.0836966098 0) (0.0007484796155 0.08383400859 0) (0.0006873783345 0.08383261827 0) (0.0007411954565 0.08334119131 0) (0.0007442933175 0.08341116427 0) (0.0006748181711 0.08341069065 0) (0.0006138498493 0.08340926028 0) (0.0007465532127 0.08390502004 0) (0.0006980712247 0.08389661199 0) (0.0007139261081 0.08399545757 0) (0.001119366223 0.08404417826 0) (0.00119427763 0.08404370212 0) (0.0009645013411 0.08404584264 0) (0.0009681552747 0.08383356664 0) (0.0009670344637 0.08390433773 0) (-0.00173625626 0.07937639201 0) (-0.001736624037 0.07930607471 0) (-0.001663824935 0.07930574297 0) (-0.001663404917 0.07937605993 0) (-0.001664012211 0.0791650656 0) (-0.001737007132 0.07916541168 0) (-0.001518479309 0.07916440255 0) (-0.001512592331 0.07965587062 0) (-0.00151405487 0.07958591311 0) (-0.001734670938 0.0796571511 0) (-0.001735036923 0.07958710806 0) (-0.001661780966 0.07958673416 0) (-0.001661258342 0.07965676311 0) (-0.001662893562 0.07944636323 0) (-0.001735862363 0.07944670914 0) (-0.001304535889 0.07937478735 0) (-0.001299712675 0.07944476209 0) (-0.00129480883 0.07951468407 0) (-0.001367934269 0.07951504406 0) (-0.001441752954 0.07951544777 0) (-0.001448980757 0.07923466022 0) (-0.00138015281 0.07923462869 0) (-0.001312883496 0.07923472489 0) (-0.001309113738 0.07930478488 0) (-0.0001024827464 0.08031544364 0) (-0.001460443522 0.0772673768 0) (-0.001528649745 0.07726701244 0) (-0.001598903366 0.07726713165 0) (-0.001587220389 0.07719413654 0) (-0.001564361678 0.07711447271 0) (-0.001167154344 0.07710251413 0) (-0.001143987709 0.07717460249 0) (-0.001208915156 0.07709411443 0) (-0.001406871999 0.07726794122 0) (-0.0007475454077 0.07729529507 0) (-0.0006764843667 0.07729621546 0) (-0.000892863678 0.07729462451 0) (-0.0009087303342 0.07708917621 0) (-0.0008999916078 0.07715633036 0) (-0.001327770209 0.07825153479 0) (-0.001322145296 0.0783210733 0) (-0.001316773779 0.07839080936 0) (-0.001380640226 0.07839099134 0) (-0.001451697935 0.0783911811 0) (-0.000647137867 0.07834562114 0) (-0.00071063878 0.0783443771 0) (-0.0007845437318 0.07812797099 0) (-0.0008045192354 0.07807073811 0) (-0.0007342086871 0.07806753617 0) (-0.0006604780707 0.07806744651 0) (-0.001459753586 0.07811102589 0) (-0.001395905503 0.07811143177 0) (-0.001339284564 0.07811255095 0) (-0.001333615986 0.0781817757 0) (-0.0005875228707 0.07792661801 0) (-0.0005866762072 0.07799686688 0) (-0.0003701995015 0.07792777178 0) (-0.000367997551 0.07799755467 0) (-0.0004399276677 0.07799695342 0) (-0.0004420004064 0.07792715662 0) (-0.0004361849543 0.07813707207 0) (-0.0003637299571 0.07813744786 0) (0.0001100305134 0.08073940907 0) (0.0001105413296 0.08080982993 0) (3.302279081e-05 0.08081567805 0) (0.0001943052686 0.08087773491 0) (0.0002704064965 0.08087705508 0) (-0.0004748082258 0.08995811742 0) (-0.0004099312112 0.08996448278 0) (-0.0002941842771 0.09012571822 0) (0.000274035736 0.08115859754 0) (0.0001986221041 0.08115916839 0) (0.0001234767889 0.08116442633 0) (0.0001545768332 0.08128975122 0) (0.000139301128 0.08122799472 0) (0.000612769256 0.09039538753 0) (0.0005342493563 0.09040009806 0) (0.0005373179301 0.09032598634 0) (0.0006148516686 0.09032226573 0) (0.0003752591737 0.09033845854 0) (0.0003715063847 0.09041259694 0) (0.0003841213946 0.09018472338 0) (0.001034970332 0.08680330189 0) (0.001040684151 0.08687405447 0) (0.0009615902529 0.08686986908 0) (0.0009621300286 0.08680312453 0) (0.001053310568 0.08694512762 0) (0.001032831499 0.08666198423 0) (0.001033251719 0.0867327322 0) (0.0009623906554 0.08673323413 0) (0.0009624842438 0.08666236526 0) (0.0009287559154 0.08765577297 0) (0.0009958706003 0.08765519101 0) (0.001070888931 0.08765468805 0) (0.001067377828 0.08772543557 0) (0.001064151183 0.08779614205 0) (0.001077363767 0.08751297455 0) (0.00107428834 0.08758383677 0) (0.0008976948285 0.08538901433 0) (0.0009668058109 0.08538852382 0) (0.001045679854 0.08538764303 0) (0.001049480024 0.08545815995 0) (0.001053602783 0.08552867477 0) (0.001043778863 0.08524654585 0) (0.001043249002 0.08531720859 0) (0.0009036956224 0.08793331024 0) (0.0009821861662 0.08793790446 0) (0.001062980709 0.08793810825 0) (0.001067341459 0.08800966638 0) (0.001073145373 0.08808121508 0) (0.001062171175 0.08786694487 0) (0.0009219433431 0.08567036988 0) (0.0009882735884 0.08567006733 0) (0.001061782915 0.08566969177 0) (0.001065523946 0.08574035274 0) (0.001069060553 0.08581091057 0) (0.00105774976 0.085599098 0) (0.001033671067 0.08652034671 0) (0.001032770864 0.08659129922 0) (0.0009621299807 0.08659191726 0) (0.0009609209763 0.08652138342 0) (0.00105014107 0.08637838509 0) (0.001038570338 0.08644936809 0) (0.0009597679921 0.08645442789 0) (-0.001131283896 0.0820419256 0) (-0.001205223786 0.08204236928 0) (-0.001279661104 0.08204284232 0) (-0.001281625415 0.08197284891 0) (-0.001283631435 0.08190286883 0) (-0.00111530505 0.0811975538 0) (-0.001184675676 0.08119808518 0) (-0.001265266186 0.08119892494 0) (-0.001267522595 0.08112880282 0) (-0.001270414529 0.08105876322 0) (-0.001266785183 0.08133952202 0) (-0.001264526787 0.08126914839 0) (-0.0002441578626 0.07982018654 0) (-0.0002622161412 0.0797577168 0) (-0.0002266327161 0.07988081818 0) (-0.000188079158 0.0796111338 0) (-0.0001891839075 0.07968224437 0) (-0.00127639903 0.0797939619 0) (-0.001280732396 0.07972399701 0) (-0.001213965227 0.07972360018 0) (-0.001209095168 0.07979354849 0) (-0.001285208317 0.07965420285 0) (-0.001218819471 0.07965387379 0) (-0.001269923332 0.07993418025 0) (-0.001272446513 0.07986400763 0) (-0.001204196034 0.07986354886 0) (-0.001199288217 0.07993307899 0) (-0.001305967899 0.07909350483 0) (-0.001268446772 0.07900448509 0) (-0.001261114811 0.07910102231 0) (-0.001133233894 0.08091772428 0) (-0.001200396961 0.08091809758 0) (-0.001276859165 0.08091870139 0) (-0.001280166929 0.08084858614 0) (-0.001283477305 0.08077847091 0) (-0.001273585699 0.08098876462 0) (-0.001280614692 0.08007562088 0) (-0.001271695287 0.08000464213 0) (-0.001194606257 0.07999942373 0) (-0.001190461256 0.08005814444 0) (-0.001301604526 0.08021766427 0) (-0.001293287485 0.08014684618 0) (-0.0001645688268 0.08009585186 0) (-0.001663791889 0.07704280401 0) (-0.001587341103 0.07704165171 0) (-0.001652480879 0.07683885003 0) (-0.001577119483 0.07683888032 0) (-0.001575562707 0.07690926822 0) (-0.001651329825 0.07690910997 0) (-0.001354266044 0.07684264933 0) (-0.001350869896 0.07691589862 0) (-0.0014238029 0.07691232603 0) (-0.001427040831 0.07684090424 0) (-0.001523494267 0.07754846656 0) (-0.001597115827 0.07754885592 0) (-0.00159978128 0.07747869729 0) (-0.001601846299 0.0774084825 0) (-0.0009570698155 0.07750278994 0) (-0.001010029341 0.07749334014 0) (-0.001284947866 0.07684428639 0) (-0.001289675419 0.07692216003 0) (-0.001058940627 0.0768371943 0) (-0.001061233337 0.07690891342 0) (-0.001139670063 0.07691256026 0) (-0.001135692413 0.07683965465 0) (-0.001092536733 0.0770274493 0) (-0.001011945243 0.07702835969 0) (-0.001305811412 0.07853086781 0) (-0.001300133287 0.07860095452 0) (0.000449082592 0.08978917974 0) (0.0004761563794 0.08973536719 0) (0.0003643774892 0.08993535503 0) (0.0004608514702 0.08995113861 0) (0.0004615770308 0.09002844309 0) (0.0004623685755 0.09010525166 0) (0.000463935055 0.0898793255 0) (0.0003964904755 0.08988419096 0) (0.0001136933085 0.08066788997 0) (-0.0005493072609 0.08995413973 0) (-0.0006244639827 0.08995205101 0) (-0.000626647313 0.08987711941 0) (-0.0006291586418 0.08980316167 0) (-0.0006285140877 0.08965486178 0) (-0.0006290342599 0.08958140825 0) (-0.0005534675475 0.0895758785 0) (-0.000536951357 0.08963698953 0) (-0.0005690948942 0.08951007542 0) (-0.0006302328611 0.08972966736 0) (0.0002695005388 0.08144212632 0) (0.0001936132859 0.08144757196 0) (-0.0003422859152 0.07918955651 0) (-0.0004305514912 0.07920611942 0) (-0.0004614128938 0.07910773754 0) (-0.0004802111193 0.07904778032 0) (-0.0003504265377 0.07890998959 0) (-0.0004271908295 0.07891093496 0) (-0.0004995895794 0.07898597224 0) (-0.0004982446523 0.07848632002 0) (-0.0004970175927 0.07855661865 0) (-0.0005754733011 0.07834615883 0) (-0.0005024814985 0.0783463352 0) (-0.0004996754527 0.07841602272 0) (0.0007648697843 0.08922122022 0) (0.0007693625796 0.08929439834 0) (0.0009228540233 0.08907862048 0) (0.0008451691377 0.08907879605 0) (0.0007645358188 0.08914948037 0) (0.0006867194024 0.08914451474 0) (0.0009573521063 0.08708968501 0) (0.001015806095 0.0870882976 0) (0.001080860146 0.08708757237 0) (0.001085113625 0.08715850427 0) (0.001085695937 0.08722947322 0) (0.001069373723 0.08701646566 0) (0.000946527656 0.08737274549 0) (0.001011873463 0.08737209672 0) (0.001082586802 0.08737137371 0) (0.001080139405 0.08744220571 0) (0.001084547673 0.0873004404 0) (0.0009022002451 0.08482172536 0) (0.0009769653766 0.08482125017 0) (0.001052230291 0.08482070642 0) (0.001055453137 0.08489101814 0) (0.001057653733 0.08496179366 0) (0.000835164743 0.08482203252 0) (0.0008915603755 0.08454045073 0) (0.000799563309 0.08455821349 0) (0.0007858159917 0.08445949781 0) (0.0007761071345 0.08439498829 0) (0.0009146426451 0.08510402004 0) (0.0008677736106 0.08509620225 0) (0.0009810650002 0.08510442216 0) (0.001053705278 0.08510416983 0) (0.001047990479 0.08517546723 0) (0.001057435251 0.08503293763 0) (0.0004201832864 0.08243345466 0) (0.000407246197 0.08237460852 0) (0.000385485639 0.08227563171 0) (0.0003716991984 0.0822129251 0) (0.0003569490728 0.08214645019 0) (0.0004344301213 0.08249826107 0) (0.0007381567742 0.08298828043 0) (0.000737365195 0.08305886652 0) (-0.0009468925101 0.08808822902 0) (-0.0009413892297 0.08801714197 0) (-0.0009488017106 0.08815887465 0) (-0.0006281988946 0.08921892719 0) (-0.0006158048221 0.08928522157 0) (-0.0005836701635 0.08944637611 0) (-0.0006399010782 0.08914958118 0) (0.0009333630386 0.08822545787 0) (0.001004597084 0.08822447024 0) (0.001077442659 0.08822365495 0) (0.001075949688 0.08829463744 0) (0.001074246984 0.08836550376 0) (0.001076947707 0.0881524634 0) (0.000868754403 0.08822638916 0) (0.0009211026395 0.08879303257 0) (0.0008425895352 0.08879298368 0) (0.0007717404443 0.08879251903 0) (0.0007854463073 0.0887244869 0) (0.0007987564163 0.08865665327 0) (0.0007577784088 0.08885792368 0) (0.0009206487029 0.08850832171 0) (0.0008284580727 0.08849164423 0) (0.0008109551242 0.08859243169 0) (-0.0009698976633 0.08639866887 0) (-0.0009666955775 0.08632800173 0) (-0.0009696626755 0.08646905234 0) (-0.0009338226119 0.08583441284 0) (-0.0009366683822 0.08576424233 0) (-0.0008677311019 0.08576375295 0) (-0.0008646162892 0.08583392171 0) (-0.000931090381 0.08590459715 0) (-0.0008615014765 0.08590409046 0) (-0.000933736638 0.08752277739 0) (-0.0009364575411 0.0874525277 0) (-0.0009310059104 0.0875931315 0) (-0.0009541999054 0.0869606538 0) (-0.0009566585522 0.08689036321 0) (-0.0009517395848 0.0870308007 0) (0.0009402562134 0.08595300498 0) (0.00100534695 0.08595269746 0) (0.001075341295 0.08595247546 0) (0.001077898352 0.0860232356 0) (0.001079691269 0.08609418358 0) (0.001072385557 0.08588166569 0) (0.0009531728465 0.0862355186 0) (0.001011466353 0.08623615666 0) (0.001076187286 0.08623602134 0) (0.001065411559 0.08630714283 0) (0.001079757443 0.08616511671 0) (-0.001105693709 0.08400912982 0) (-0.001027522337 0.08400844954 0) (-0.0009592170045 0.08400799041 0) (-0.000955588298 0.08407805132 0) (-0.0009519907656 0.08414813856 0) (-0.0009667485989 0.08386788344 0) (-0.0009629799764 0.08393796956 0) (-0.001096338382 0.08428990347 0) (-0.001014860992 0.08428907099 0) (-0.0009447838026 0.08428853499 0) (-0.0009410374146 0.08435821637 0) (-0.0009373945436 0.08442464627 0) (-0.00094839028 0.08421827802 0) (-0.001127331887 0.08344769306 0) (-0.001054766821 0.08344732367 0) (-0.0009887400008 0.08344695779 0) (-0.0009851373296 0.08351703193 0) (-0.0009815317051 0.0835871583 0) (-0.0009961846295 0.0833069678 0) (-0.0009924008464 0.08337697545 0) (-0.001116640576 0.08372844493 0) (-0.001041365042 0.08372792723 0) (-0.0009742909559 0.08372752839 0) (-0.0009705175625 0.08379774508 0) (-0.000977923298 0.08365731077 0) (-0.0009587941705 0.08527393823 0) (-0.0009622103352 0.08520382369 0) (-0.0008953711642 0.0852034525 0) (-0.0008916691493 0.08527353906 0) (-0.001113203367 0.08513458146 0) (-0.001039249025 0.08513415075 0) (-0.0009553964608 0.08534402677 0) (-0.0008879801947 0.0853436257 0) (-0.0009848409655 0.08471301352 0) (-0.0009842097137 0.08464267663 0) (-0.0009254296812 0.084643416 0) (-0.0009216627965 0.08471283603 0) (-0.001112811309 0.08457221718 0) (-0.001040301096 0.08457184815 0) (-0.001120496301 0.08485382046 0) (-0.00104991711 0.08485355546 0) (-0.0009825084654 0.08478318738 0) (-0.0009178588259 0.08478293498 0) (0.0007349422708 0.0835540459 0) (0.0007311217285 0.08362540931 0) (0.0006531179699 0.08363115611 0) (0.0007420527849 0.08348207328 0) (0.0008966345956 0.0842570621 0) (0.0008220508318 0.08425750998 0) (0.0007552738386 0.08425780239 0) (0.0007447814649 0.08418871363 0) (0.0007339404715 0.084120241 0) (0.0007657294142 0.0843266563 0) (0.0008862647384 0.08397633425 0) (0.0008068861725 0.08397755792 0) (0.0007234090603 0.08405457443 0) (-0.001146179795 0.08176212851 0) (-0.001216737039 0.08176235419 0) (-0.001287441779 0.08176259389 0) (-0.001288753389 0.08169234805 0) (-0.001288831398 0.08162200274 0) (-0.001285619852 0.08183278414 0) (-0.001081232381 0.08176187417 0) (-0.001064890337 0.08204151814 0) (-0.001142963786 0.0814805936 0) (-0.001097617759 0.08148779441 0) (-0.001208352159 0.0814805243 0) (-0.001280512611 0.08148085187 0) (-0.001272791829 0.08141012911 0) (-0.001286427409 0.08155152366 0) (-0.001111750865 0.08288460268 0) (-0.001020076586 0.08286701182 0) (-0.001014843054 0.08296281828 0) (-0.001011321377 0.08302728983 0) (-0.00113721959 0.08316719717 0) (-0.001068136684 0.08316700724 0) (-0.001003761226 0.0831667697 0) (-0.0009999716216 0.08323686874 0) (-0.001007548218 0.08309667064 0) (-0.001117299515 0.0823223425 0) (-0.001049748813 0.08232192749 0) (-0.001103456725 0.08260287787 0) (-0.001034506469 0.08260237535 0) (0.0002616803796 0.0817310315 0) (0.0003395943899 0.08172514161 0) (0.0004195358233 0.08172350939 0) (0.0004227082133 0.08179349491 0) (0.0004264433588 0.08186325473 0) (0.0004218502684 0.08158171857 0) (0.0004196969574 0.08165278374 0) (0.0004211883876 0.08200536515 0) (0.0004199096322 0.08207615033 0) (0.0003422115701 0.0820819082 0) (0.0003287891489 0.08202314359 0) (0.0004261595698 0.08193379832 0) (-0.000346269158 0.07947800563 0) (-0.0002708411163 0.07947264135 0) (-0.0001940948024 0.07947168303 0) (-0.0001902340194 0.07954114163 0) (-0.0001949655616 0.07933064442 0) (-0.0001956302719 0.07940147784 0) (-0.001234832748 0.0794445735 0) (-0.001229419635 0.07951447908 0) (-0.001240208242 0.07937462848 0) (-0.001289929345 0.0795844756 0) (-0.001224019386 0.07958421497 0) (-0.001313785269 0.0791644372 0) (-0.001256208827 0.07916547177 0) (-0.001250934414 0.07923473828 0) (-0.001245571981 0.07930468339 0) (-0.00115155015 0.08063757076 0) (-0.001217213099 0.0806378559 0) (-0.001290068189 0.08063821413 0) (-0.001293336858 0.08056808556 0) (-0.001296542922 0.08049794352 0) (-0.001286777318 0.08070834255 0) (-0.001169611644 0.08035742864 0) (-0.001233378407 0.08035767528 0) (-0.001302130092 0.08035778467 0) (-0.001303411008 0.08028783904 0) (-0.001299575199 0.08042781341 0) (-0.001602370885 0.07733815316 0) (-0.0009724466175 0.07722635264 0) (-0.001045090819 0.0772260042 0) (-0.00111386838 0.07722815126 0) (-0.001089695618 0.07728390697 0) (-0.0008878553531 0.07750454523 0) (-0.0008147438755 0.07750504734 0) (-0.000813760644 0.07757560878 0) (-0.000812088457 0.07764566941 0) (-0.001311331507 0.07846078007 0) (-0.0008113638906 0.07778642163 0) (-0.0008089757748 0.07785611188 0) (-0.0008787774561 0.07785903622 0) (-0.0008988758334 0.0778025878 0) (-0.0008053479263 0.07792544139 0) (-0.000858428513 0.0779162536 0) (-0.0008112407434 0.07771587909 0) (-0.0008241017891 0.07801407735 0) (-0.001344470007 0.0780485082 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.836761166e-05 0.0003832507187 -1.360023205e-15) (-2.309994246e-06 4.293279689e-05 -1.387778781e-16) (-6.294211777e-05 0.00116355869 -4.107825191e-15) (0 0 0) (0 0 0) (-4.099507881e-05 0.000975031267 -3.441691376e-15) (-8.053245338e-05 0.003301035895 -1.162958618e-14) (-7.635730253e-05 0.002521783061 -8.881784197e-15) (-0.0001897981294 0.006240048908 -2.209343819e-14) (0 0 0) (0 0 0) (-7.371668575e-05 0.003981587877 -1.401656569e-14) (-4.360417811e-06 0.004964963208 -1.748601264e-14) (-3.274045532e-05 0.004846712118 -1.7069679e-14) (-6.593550982e-05 0.009764566907 -3.458344722e-14) (0 0 0) (-5.534457358e-07 8.237322576e-05 -2.775557562e-16) (2.424095269e-05 0.00485194766 -1.709743458e-14) (7.50182588e-05 0.003318004353 -1.168509733e-14) (6.688676631e-05 0.00399571819 -1.407207684e-14) (0.0001436582942 0.008516382503 -3.017031069e-14) (0 0 0) (1.532252076e-07 9.270425389e-06 -2.775557562e-17) (7.233951445e-05 0.002540211717 -8.937295348e-15) (1.816880522e-05 0.000394236166 -1.387778781e-15) (3.98385737e-05 0.0009906345868 -3.497202528e-15) (0.000144608479 0.003574384653 -1.265654248e-14) (0 0 0) (0 0 0) (2.444848496e-06 4.70537186e-05 -1.665334537e-16) (0 0 0) (0 0 0) (9.049629496e-07 1.412697913e-05 -5.551115123e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002683595604 0.003675353004 -1.323940957e-14) (-0.0001319274826 0.001669099637 -6.022959909e-15) (-0.0003207264021 0.004035786582 -1.462718835e-14) (0 0 0) (-0.0004194766101 0.006262121029 -2.25375274e-14) (-0.0007774728497 0.01590489191 -5.72597525e-14) (-0.0006884749188 0.01253633197 -4.513056595e-14) (-0.00101527904 0.01839719498 -6.661338148e-14) (-0.0002023892823 0.003722101401 -1.323940957e-14) (-0.0008237396022 0.01922475738 -6.922240559e-14) (-0.0006852685711 0.02768020441 -9.967027204e-14) (-0.0007763133193 0.02521804028 -9.078848784e-14) (-0.001029114598 0.03330127435 -1.205702205e-13) (-0.0003486564959 0.01141494785 -4.06341627e-14) (-0.0005558429737 0.02967139499 -1.068312105e-13) (-2.231688698e-05 0.03234751317 -1.164623953e-13) (-0.0002146451215 0.032037643 -1.153521723e-13) (-0.0002737436315 0.04098527935 -1.483813072e-13) (-0.0001086136909 0.0161146215 -5.73707748e-14) (0.000170362022 0.03205375102 -1.154076834e-13) (0.0006464336448 0.02774094236 -9.989231664e-14) (0.0005144502317 0.02971837109 -1.06997744e-13) (0.0006705716347 0.03839416225 -1.390276783e-13) (0.00024629598 0.01448053138 -5.156985949e-14) (0.0007407639176 0.02529069129 -9.106604359e-14) (0.0007556154376 0.01599603833 -5.75928194e-14) (0.0007967979503 0.01931311273 -6.955547249e-14) (0.001100116939 0.02648426685 -9.589551375e-14) (0.0003102115576 0.007619466842 -2.711719738e-14) (0.0006719603166 0.01262665819 -4.546363286e-14) (0.00026596277 0.003737093786 -1.346145417e-14) (0.0004131123441 0.006337865713 -2.281508316e-14) (0.0006952484676 0.01060155251 -3.838596108e-14) (5.728798839e-05 0.0008893023665 -3.16413562e-15) (0.0001321809429 0.001713083378 -6.161737787e-15) (0 0 0) (0 0 0) (3.738358713e-05 0.0004169014106 -1.498801083e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002939939267 0.002960675514 -1.090794122e-14) (-8.753173429e-05 0.000829896676 -3.053113318e-15) (-0.0002169508926 0.002043390152 -7.577272143e-15) (0 0 0) (-0.0005817333652 0.006246691451 -2.300937219e-14) (-0.001576017875 0.02113280326 -7.782663403e-14) (-0.001255467757 0.01554489552 -5.72597525e-14) (-0.001646161932 0.02027184055 -7.507883204e-14) (-0.0005792391206 0.007249603728 -2.639555241e-14) (-0.001849728826 0.02704757538 -9.961476088e-14) (-0.002225702996 0.04466970426 -1.645072967e-13) (-0.002184836411 0.03900715884 -1.436628594e-13) (-0.00259483155 0.04608906519 -1.7069679e-13) (-0.001382210571 0.02492419103 -9.076073226e-14) (-0.002178089727 0.04990565046 -1.837696662e-13) (-0.001558358442 0.06202197354 -2.284006317e-13) (-0.001835576971 0.05865636611 -2.16021645e-13) (-0.00209057606 0.06648726376 -2.462474669e-13) (-0.001296047751 0.04177302745 -1.521005544e-13) (-0.001226096402 0.06465615153 -2.381150832e-13) (-3.443936201e-05 0.06807131839 -2.507161145e-13) (-0.0004503295652 0.06768379603 -2.492728246e-13) (-0.000502734218 0.07542431089 -2.793598686e-13) (-0.0003340459957 0.05013808018 -1.825484208e-13) (0.0003816216145 0.06770559276 -2.493560913e-13) (0.001492774984 0.06210952421 -2.287892098e-13) (0.001158960821 0.0647219156 -2.38392639e-13) (0.001308309782 0.07253054493 -2.687017275e-13) (0.0008340592423 0.0473406067 -1.723898801e-13) (0.00177221654 0.0587655064 -2.164657342e-13) (0.002174359842 0.04483247053 -1.651456749e-13) (0.002121748723 0.05005350908 -1.843802888e-13) (0.002461798966 0.05769160223 -2.137456878e-13) (0.001429618337 0.03418253134 -1.244837566e-13) (0.002139557092 0.03918150127 -1.443289932e-13) (0.001551709195 0.02126939668 -7.835398996e-14) (0.001819029218 0.02722339686 -1.002808947e-13) (0.002240227457 0.0332952097 -1.233735336e-13) (0.001032205592 0.01564274579 -5.695444116e-14) (0.001234860245 0.01560308285 -5.74817971e-14) (0.0003371972661 0.003445742147 -1.268429806e-14) (0.0006214252528 0.006780634803 -2.498001805e-14) (0.0009354265576 0.01013113954 -3.755329381e-14) (0.0001524254393 0.001689444688 -6.133982211e-15) (0.0001206435671 0.001159996444 -4.274358645e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001715967041 0.001417552818 -5.356826094e-15) (-1.054754888e-05 8.282872139e-05 -3.053113318e-16) (-0.001436582342 0.01406788013 -5.3040905e-14) (-0.0009310743748 0.008586040098 -3.239075674e-14) (-0.001205148933 0.01104686354 -4.191091918e-14) (-0.000434601227 0.004060420454 -1.512678871e-14) (-0.001964239364 0.02050679983 -7.732703367e-14) (-0.00324573258 0.04243671554 -1.599553823e-13) (-0.002921663938 0.03519710552 -1.32699407e-13) (-0.003341736971 0.03995564956 -1.515454429e-13) (-0.002052871477 0.02513715812 -9.364731213e-14) (-0.003530200807 0.05039512434 -1.899591595e-13) (-0.003631027008 0.0712512688 -2.685351941e-13) (-0.003724034914 0.06499830612 -2.449707104e-13) (-0.004073690951 0.0704393148 -2.670641486e-13) (-0.002994586211 0.05290796819 -1.970923424e-13) (-0.003421081209 0.07664929318 -2.88880031e-13) (-0.002243463537 0.08740458644 -3.29430927e-13) (-0.002708549184 0.0847068 -3.192446307e-13) (-0.002851777937 0.08850263081 -3.35509398e-13) (-0.00232515333 0.07356876243 -2.740585536e-13) (-0.001730115904 0.08932687493 -3.366751322e-13) (-4.499471252e-05 0.09152308928 -3.449740493e-13) (-0.0006191145157 0.0912936448 -3.441136265e-13) (-0.0006403305964 0.09351860674 -3.545774785e-13) (-0.0005492144263 0.08208968142 -3.058386877e-13) (0.0005292363474 0.09130430464 -3.441691376e-13) (0.002161783915 0.08743562003 -3.296529716e-13) (0.001643018472 0.08936107623 -3.368694212e-13) (0.001709184655 0.0922054925 -3.496647416e-13) (0.001441472521 0.07938191365 -2.957911693e-13) (0.002633013251 0.0847187062 -3.194111642e-13) (0.00359120027 0.07182828587 -2.708389069e-13) (0.003370429377 0.07714936637 -2.908784325e-13) (0.003596351997 0.081711519 -3.099465129e-13) (0.002784572807 0.06479157767 -2.414457523e-13) (0.003698215815 0.06558173503 -2.473021787e-13) (0.00333022497 0.04415485235 -1.665612093e-13) (0.003571856176 0.05164449789 -1.948163852e-13) (0.00397201401 0.05703888932 -2.164379787e-13) (0.002660608484 0.03919472748 -1.460775945e-13) (0.002979326034 0.0364858299 -1.376398995e-13) (0.001517927398 0.01512462371 -5.703770789e-14) (0.002041875809 0.02169350989 -8.182343691e-14) (0.002421263697 0.02556228286 -9.700573678e-14) (0.001286162813 0.01383896585 -5.159761507e-14) (0.001009094756 0.009465719762 -3.569367024e-14) (2.543695334e-05 0.0002028650388 -7.771561172e-16) (0.0002169082634 0.001820976784 -6.855627177e-15) (0.0003598014868 0.003001968775 -1.140754158e-14) (2.571894853e-05 0.0002185581702 -8.049116929e-16) (-0.0007168713569 0.005779236563 -2.234323837e-14) (-0.00028725711 0.002201281872 -8.520961714e-15) (-0.002677245882 0.02558544008 -9.880984919e-14) (-0.001992536756 0.01793297353 -6.927791674e-14) (-0.00217457857 0.01944902997 -7.55784324e-14) (-0.001480507564 0.01348915212 -5.148659277e-14) (-0.003334966089 0.03397224274 -1.312006059e-13) (-0.00473703943 0.06014379721 -2.322586568e-13) (-0.00439710542 0.05159239266 -1.992295218e-13) (-0.004662678841 0.05435978173 -2.111921749e-13) (-0.003731767853 0.04433663838 -1.691702334e-13) (-0.004923498369 0.0680974288 -2.629563234e-13) (-0.004558401438 0.0862145327 -3.328726184e-13) (-0.00481966978 0.08118259406 -3.134437154e-13) (-0.004985881116 0.08338033661 -3.239075674e-13) (-0.004384168135 0.07505244564 -2.862710069e-13) (-0.004159122481 0.08971034607 -3.463340725e-13) (-0.002483501973 0.09295324893 0) (-0.003090196683 0.09284581355 -3.583799923e-13) (-0.003115100609 0.09237505483 0) (-0.00296461651 0.09105688468 -3.472777621e-13) (-0.00187499676 0.09295516558 0) (-6.280478337e-05 0.09267103824 0) (-0.0003622134604 0.0926728629 0) (-0.0006512664629 0.09405274934 -3.587130593e-13) (0.0002382928305 0.09266911112 0) (0.002380861759 0.09292137803 0) (0.001770764999 0.092931749 0) (0.001782632762 0.09236705025 0) (0.00175171025 0.0936112028 -3.571032359e-13) (0.002990023706 0.09284566749 -3.585465258e-13) (0.00448148853 0.08658569695 -3.345379529e-13) (0.004071570243 0.08983684563 -3.470557175e-13) (0.003788170885 0.08523861303 -3.252675906e-13) (0.004772435885 0.08204669217 -3.169964291e-13) (0.004764144505 0.06158490694 -2.379485498e-13) (0.004923578599 0.06938033864 -2.680633493e-13) (0.005148042192 0.07209404125 -2.80248047e-13) (0.004333319437 0.0618296454 -2.36033415e-13) (0.004450557668 0.05313966797 -2.053079928e-13) (0.002731921595 0.02653413752 -1.025290963e-13) (0.003431572814 0.03554121364 -1.373068326e-13) (0.003687011484 0.03793610545 -1.474653732e-13) (0.002785860046 0.02922678539 -1.11577414e-13) (0.002081628728 0.0190343477 -7.352451981e-14) (0.0003931744071 0.003057773398 -1.179611964e-14) (0.0008602621142 0.007041442448 -2.72004641e-14) (0.001056845601 0.008596449273 -3.341771304e-14) (0.0005191102464 0.004303675709 -1.643130076e-14) (-0.001267476533 0.009963927105 -3.944067295e-14) (-0.0006640286022 0.004962223352 -1.965094754e-14) (-0.003495253892 0.03255734696 -1.288691376e-13) (-0.002741863724 0.02405670453 -9.522937994e-14) (-0.002842825492 0.02478166702 -9.872658246e-14) (-0.002402898042 0.0213569146 -8.348877145e-14) (-0.004187363906 0.04156617293 -1.645072967e-13) (-0.005494738654 0.06791791946 -2.687849943e-13) (-0.005217094686 0.05961584341 -2.359501483e-13) (-0.00532834525 0.06048244015 -2.408628852e-13) (-0.004833784489 0.05598541168 -2.188527137e-13) (-0.0055931518 0.07528399922 -2.979283487e-13) (-0.00485975369 0.08919004542 -3.529398995e-13) (-0.005259700403 0.08611839101 -3.407829574e-13) (-0.005314586147 0.08638328246 -3.440026042e-13) (-0.005110277942 0.08486476439 -3.317068842e-13) (-0.004340411396 0.09060038856 -3.585465258e-13) (-0.002855360538 0.09037484495 0) (-0.003132840245 0.09179859874 0) (-0.00254375632 0.09123254939 0) (-0.002242560474 0.09123642849 0) (-0.002236848184 0.09152114681 0) (-0.002537064041 0.09151933276 0) (-0.001302908942 0.0915501162 0) (-0.001613930653 0.09154401039 0) (-0.00163361387 0.09124993508 0) (-0.001281650038 0.09239407503 0) (-0.001588616171 0.09239239649 0) (-0.001592614154 0.09211218866 0) (-0.00129113399 0.09211220511 0) (0.0002630758357 0.09127031336 0) (0.0002515679795 0.09155212446 0) (-6.646299201e-05 0.09155499805 0) (0.001186889874 0.09153121844 0) (0.0008770075751 0.09153958968 0) (0.001167803586 0.09237915003 0) (0.0008620519431 0.09238344543 0) (0.0008636666306 0.09210350134 0) (0.001171844074 0.09209806686 0) (0.002716884561 0.0911962817 0) (0.002716305384 0.09147959265 0) (0.002414965348 0.09148763383 0) (0.003612336254 0.09118608343 0) (0.003612754352 0.09175010637 0) (0.003015616445 0.09147485605 0) (0.003015381428 0.09119286826 0) (0.003604895579 0.09215438553 -3.581579477e-13) (0.005194547747 0.08711355119 -3.449740493e-13) (0.005590614777 0.07045356089 -2.790268017e-13) (0.005630345733 0.07735696946 -3.063660436e-13) (0.005731744876 0.0782958267 -3.120281811e-13) (0.005325800916 0.07410253371 -2.898514762e-13) (0.005371470867 0.06252010908 -2.476074901e-13) (0.003779772714 0.03579390754 -1.417477247e-13) (0.004440232132 0.04483313251 -1.775524172e-13) (0.004588112311 0.04604866886 -1.83519866e-13) (0.00398719495 0.04076336216 -1.594557819e-13) (0.003041528166 0.02711869733 -1.073863221e-13) (0.0008829969299 0.006697121175 -2.650657471e-14) (0.001535878778 0.01225960911 -4.854450175e-14) (0.001636719996 0.01298275233 -5.173639295e-14) (0.001240251945 0.01002521782 -3.921862834e-14) (-0.001503555215 0.01152032738 -4.676814491e-14) (-0.0008426897322 0.006137989577 -2.49245069e-14) (-0.003826060968 0.03472722773 -1.409705686e-13) (-0.003055130158 0.0261226052 -1.060540544e-13) (-0.003115349211 0.0264663733 -1.081357226e-13) (-0.00289404177 0.02506495027 -1.004751837e-13) (-0.00452143269 0.04372838248 -1.774969061e-13) (-0.005761414248 0.06934047691 -2.814137812e-13) (-0.005517640852 0.06140646612 -2.492173135e-13) (-0.005565409357 0.06152852079 -2.513267372e-13) (-0.005386112001 0.06074040857 -2.434163981e-13) (-0.005817516293 0.07621729743 -3.093358902e-13) (-0.005384280725 0.08570667837 -3.478606292e-13) (-0.005399052505 0.08534866615 -3.486377853e-13) (-0.00534208802 0.08622480902 -3.455291608e-13) (-0.004922605435 0.08839853498 -3.565203688e-13) (-0.004357838727 0.08895556162 0) (-0.003762310474 0.08895232691 0) (-0.003760259659 0.08923636646 0) (-0.003758183764 0.0895202465 0) (-0.003753334023 0.09008888325 0) (-0.003756031059 0.08980388834 0) (-0.002567884696 0.08951379117 0) (-0.002270443823 0.0895126742 0) (-0.001972959198 0.08951225701 0) (-0.001971490163 0.08965520904 0) (-0.001969529488 0.08979944567 0) (-0.001965933164 0.09008614777 0) (0.002714203852 0.08891978761 0) (0.002715289654 0.0892040555 0) (0.003606551009 0.08891219437 0) (0.003608126314 0.08919541941 0) (0.003310346638 0.08919865576 0) (0.003309029435 0.08891495362 0) (0.003611454773 0.09004710342 0) (0.003313467366 0.09005052999 0) (0.003312923703 0.08976527939 0) (0.003610807793 0.08976203191 0) (0.005311385436 0.08705015772 -3.535782778e-13) (0.005949849773 0.07322793514 -2.974565039e-13) (0.005912949408 0.07936243372 -3.223810108e-13) (0.005928929168 0.07911956475 -3.234634782e-13) (0.005791160147 0.07864912678 -3.154143613e-13) (0.005797175152 0.06587968205 -2.676192601e-13) (0.004304855424 0.03977621787 -1.615652057e-13) (0.004952268166 0.04879852959 -1.982025655e-13) (0.004982686505 0.04880142908 -1.995070775e-13) (0.004678984221 0.04667688636 -1.87183602e-13) (0.00355619303 0.03093129399 -1.256217352e-13) (0.001224011691 0.009053072794 -3.674838212e-14) (0.001957713638 0.01523998234 -6.189493362e-14) (0.001981760705 0.0153311129 -6.264433416e-14) (0.001781861902 0.01404494349 -5.631606292e-14) (-0.001652672718 0.01234059014 -5.140332604e-14) (-0.0009621180818 0.006829875301 -2.844946501e-14) (-0.004007727515 0.03543789347 -1.476041511e-13) (-0.003235145309 0.02695227101 -1.122713034e-13) (-0.0032712326 0.02707381862 -1.135203043e-13) (-0.003160567068 0.02667713486 -1.096900348e-13) (-0.004696600062 0.0442434202 -1.842692665e-13) (-0.005881267447 0.06890024765 -2.869648963e-13) (-0.005660331316 0.06133371268 -2.554345624e-13) (-0.005688727003 0.06122559461 -2.566558077e-13) (-0.005601284315 0.06151392127 -2.528810494e-13) (-0.005912387025 0.07538038401 -3.139433158e-13) (-0.005429399018 0.08405559601 -3.500810752e-13) (-0.00543835126 0.08360601461 -3.504974089e-13) (-0.005410435615 0.08493739923 -3.491928968e-13) (-0.004949106114 0.08641442734 -3.575750807e-13) (-0.004370031752 0.08670045413 0) (-0.003774781186 0.08669669749 0) (-0.003773348749 0.08697804532 0) (-0.003771903081 0.08725941918 0) (-0.003768889256 0.08782292363 0) (-0.003770416697 0.08754102787 0) (-0.002582720613 0.08725197982 0) (-0.002285767765 0.08725013201 0) (-0.001988971811 0.08724825911 0) (-0.001988117009 0.08738915415 0) (-0.001987262549 0.08752999696 0) (-0.001985526569 0.08781182605 0) (-0.001986394516 0.08767091803 0) (0.002700002345 0.086651123 0) (0.00270219116 0.08693429441 0) (0.002405343648 0.08693627213 0) (0.003591028797 0.08664529115 0) (0.003593347447 0.08692834416 0) (0.003296225668 0.08693032368 0) (0.003293945943 0.08664723123 0) (0.003599629039 0.087778239 0) (0.003302377766 0.08778038916 0) (0.003300435817 0.08749702023 0) (0.003597648336 0.08749493563 0) (0.005309823026 0.08509255399 -3.547162564e-13) (0.006001431587 0.07214108545 -3.007316618e-13) (0.005946607834 0.0779820543 -3.251010572e-13) (0.00592103463 0.07719715191 -3.23935323e-13) (0.005951849272 0.07896382212 -3.249067682e-13) (0.005865440718 0.06508040837 -2.713107516e-13) (0.004405202753 0.0397088431 -1.655064974e-13) (0.005045936329 0.04851889268 -2.022548795e-13) (0.004995379443 0.0477377109 -2.003119892e-13) (0.005042320083 0.04908355321 -2.019495682e-13) (0.003658621608 0.03103857512 -1.293687379e-13) (0.001299867447 0.009373281281 -3.905209489e-14) (0.002047890481 0.01554447001 -6.478151349e-14) (0.002000057551 0.01508500012 -6.32827124e-14) (0.002041279286 0.01569212188 -6.453171331e-14) (-0.001796882584 0.01306714789 -5.589972929e-14) (-0.001079954788 0.007466747411 -3.194666753e-14) (-0.004178703898 0.03597242385 -1.538491556e-13) (-0.003405714269 0.0276267861 -1.18183241e-13) (-0.003450085497 0.0277973265 -1.197097976e-13) (-0.003315217541 0.02725629709 -1.150468609e-13) (-0.004860463071 0.04456860634 -1.906252933e-13) (-0.005991200829 0.06827874374 -2.919886555e-13) (-0.005792217344 0.06106869693 -2.61152211e-13) (-0.005825949645 0.06099817045 -2.625955009e-13) (-0.005722822327 0.06117424772 -2.581268532e-13) (-0.005998481099 0.07438062765 -3.180788966e-13) (-0.005468325293 0.08229685517 -3.519406988e-13) (-0.005477719714 0.08184885046 -3.52384788e-13) (-0.005448469209 0.08317293364 -3.509692537e-13) (-0.004968032851 0.0843155815 -3.581857033e-13) (-0.004380681178 0.08445171679 0) (-0.003785626346 0.08444798755 0) (-0.003784312475 0.08472917942 0) (-0.003782985971 0.08501030591 0) (-0.003780308888 0.08557224525 0) (-0.003781660063 0.08529134097 0) (-0.002594769283 0.08500297734 0) (-0.002298221049 0.08500117136 0) (-0.002297473032 0.08514171446 0) (-0.002149264217 0.08514081189 0) (-0.002150038268 0.08500028203 0) (-0.002146930963 0.08556210102 0) (-0.002147703565 0.08542179318 0) (0.002679028433 0.08438940528 0) (0.002681810431 0.0846714104 0) (0.003569187008 0.08438467621 0) (0.003572034052 0.08466664172 0) (0.003275157604 0.08466818862 0) (0.003272323706 0.08438623609 0) (0.003580700062 0.08551366066 0) (0.003283746276 0.0855153648 0) (0.003280988095 0.08523300689 0) (0.003577915932 0.08523132904 0) (0.005245836672 0.08221419475 -3.519406988e-13) (0.005821150864 0.068330719 -2.925160114e-13) (0.005805377811 0.07437366256 -3.183842079e-13) (0.005746740122 0.07318866545 -3.154421169e-13) (0.005898816624 0.07646016552 -3.229638779e-13) (0.005649049715 0.06118434005 -2.619016115e-13) (0.004121912496 0.03623470716 -1.550981565e-13) (0.004775529219 0.04479256545 -1.917355164e-13) (0.004666486971 0.04349518583 -1.874334021e-13) (0.004965526664 0.04715873693 -1.992017662e-13) (0.003373989302 0.02790772211 -1.194322419e-13) (0.001093907152 0.00768702801 -3.28903571e-14) (0.001801756924 0.01332942491 -5.703770789e-14) (0.001706680823 0.01254400405 -5.404010572e-14) (0.001979407433 0.01483395074 -6.264433416e-14) (-0.001981329569 0.01402119456 -6.161737787e-14) (-0.001234579685 0.008307028579 -3.652633751e-14) (-0.00438535317 0.03672275338 -1.613986722e-13) (-0.00361562208 0.02853465009 -1.253996906e-13) (-0.00364593633 0.02857336267 -1.264544025e-13) (-0.003496690982 0.02798074288 -1.21319621e-13) (-0.005054788012 0.04507999275 -1.980915432e-13) (-0.00611223253 0.06770963579 -2.97512015e-13) (-0.005941715149 0.06090480608 -2.676192601e-13) (-0.005971615321 0.06077372697 -2.688960166e-13) (-0.005861067796 0.06093689722 -2.641220576e-13) (-0.006089835059 0.07338647568 -3.224642775e-13) (-0.005504667162 0.08048014438 -3.536337889e-13) (-0.005515214956 0.08004265078 -3.541611449e-13) (-0.005487177526 0.08140077016 -3.528288772e-13) (-0.004983800048 0.08216705454 -3.58602037e-13) (-0.004390381637 0.08220229409 0) (-0.003795287709 0.08219855154 0) (-0.003794157109 0.0824796793 0) (-0.003792999962 0.08276087219 0) (-0.003790620793 0.08332319225 0) (-0.00379181678 0.08304205185 0) (-0.002605736335 0.0827536021 0) (-0.002309710343 0.08275182565 0) (-0.002309040347 0.0828924215 0) (-0.002161157869 0.08289154719 0) (-0.002161840925 0.08275095142 0) (-0.002159031107 0.08331321642 0) (-0.002159739942 0.08317267307 0) (0.0026524767 0.0821355605 0) (0.002656196738 0.08241720685 0) (0.003542407269 0.08213191697 0) (0.003545942416 0.08241325107 0) (0.003249181805 0.082414536 0) (0.00324546262 0.08213302026 0) (0.003556475038 0.08325810278 0) (0.00325970239 0.08325954452 0) (0.003256335066 0.08297790893 0) (0.003553147491 0.08297655836 0) (0.005107705331 0.0782809798 -3.443356711e-13) (0.005461413239 0.06257509557 -2.752520434e-13) (0.005518310943 0.06904144389 -3.037015084e-13) (0.005395602902 0.06710389931 -2.972344593e-13) (0.005658569174 0.07164301966 -3.108624469e-13) (0.005223820915 0.0551987577 -2.428057755e-13) (0.003590174148 0.03075913243 -1.352806756e-13) (0.004260332346 0.0389579894 -1.713629239e-13) (0.004120144932 0.03743338061 -1.657840532e-13) (0.004563944046 0.04227148335 -1.834088437e-13) (0.002849709094 0.02296750281 -1.010025397e-13) (0.0007475901977 0.005116340216 -2.250977182e-14) (0.001370069787 0.009872703554 -4.340972026e-14) (0.00128124841 0.009171181509 -4.060640713e-14) (0.001636236216 0.01194771488 -5.181965967e-14) (-0.002203805243 0.01516329219 -6.852851619e-14) (-0.00142382966 0.009315749011 -4.210520821e-14) (-0.004631724362 0.03769462051 -1.703359676e-13) (-0.003866092592 0.02965779489 -1.340316746e-13) (-0.003832999974 0.02919300545 -1.328659405e-13) (-0.003703071964 0.02881693733 -1.284250484e-13) (-0.005286641407 0.04581286963 -2.070288385e-13) (-0.006257495127 0.06731599461 -3.041733532e-13) (-0.006120844168 0.06094043653 -2.753630657e-13) (-0.006150650223 0.06078417823 -2.766120666e-13) (-0.00601306974 0.06075393401 -2.70700129e-13) (-0.006199276874 0.07253281468 -3.277378369e-13) (-0.005545286803 0.07869117098 -3.555766792e-13) (-0.005554714726 0.07822535946 -3.559930128e-13) (-0.005524950563 0.07959104107 -3.546329896e-13) (-0.00499588837 0.07995753286 0) (-0.004399514276 0.07995382113 0) (-0.004398331776 0.08023489631 0) (-0.003803884619 0.07995011426 0) (-0.003802806431 0.08023121624 0) (-0.004100451561 0.08023305551 0) (-0.004101581905 0.07995196692 0) (-0.003799637936 0.08107440507 0) (-0.004099361165 0.0805140268 0) (-0.003801755387 0.08051216167 0) (-0.003800703149 0.08079328994 0) (-0.00261477832 0.08050501099 0) (-0.002319314006 0.08050322515 0) (-0.002318774528 0.08064383491 0) (-0.002171296664 0.08064300243 0) (-0.002171849287 0.08050237969 0) (-0.002169535334 0.08106471323 0) (-0.002170126286 0.08092422136 0) (0.002618436005 0.07988693674 0) (0.002623313293 0.08016779188 0) (0.003508629315 0.07988352659 0) (0.003518004545 0.08044514792 0) (0.002924404194 0.08044760075 0) (0.002919695837 0.0801666139 0) (0.002914844925 0.07988579777 0) (0.003526690564 0.08100723087 0) (0.002933168745 0.08100970932 0) (0.002928746606 0.08072855081 0) (0.004868991859 0.07295983453 -3.300415496e-13) (0.004901124587 0.05477779636 -2.477740235e-13) (0.00506407084 0.06184948966 -2.797762022e-13) (0.004952312295 0.06011612812 -2.738642646e-13) (0.005318645763 0.06575064862 -2.93265412e-13) (0.004625138944 0.04765059201 -2.155498002e-13) (0.002904326813 0.02423398978 -1.096067681e-13) (0.003575923159 0.03185573103 -1.44079193e-13) (0.003357648376 0.02971215513 -1.353361867e-13) (0.00391641405 0.03535145397 -1.576516695e-13) (0.002195192457 0.01722769881 -7.790990075e-14) (0.0003848341168 0.002563261123 -1.157407503e-14) (0.0008775427234 0.006155165811 -2.783884234e-14) (0.0007257717738 0.005055789069 -2.300937219e-14) (0.001102277943 0.007837222015 -3.49442697e-14) (-0.002481509808 0.01661428056 -7.729927809e-14) (-0.001665190072 0.01060177042 -4.932165787e-14) (-0.004926546208 0.03900904504 -1.814381978e-13) (-0.004169814266 0.03112379307 -1.447730824e-13) (-0.004204716537 0.0312736283 -1.465216837e-13) (-0.00399376476 0.03019479185 -1.384170556e-13) (-0.005560030021 0.04687576833 -2.180200465e-13) (-0.006414777001 0.06713440512 -3.122224701e-13) (-0.006322849917 0.0612414796 -2.84827717e-13) (-0.006321368758 0.06107526134 -2.861044734e-13) (-0.006182723527 0.06064430098 -2.779443342e-13) (-0.006309476838 0.07182298567 -3.340383525e-13) (-0.005564570905 0.07685823735 -3.574918139e-13) (-0.00552790531 0.07633440686 -3.576305918e-13) (-0.005564625411 0.07776172081 -3.564371021e-13) (-0.005007815052 0.07770721044 0) (-0.004410672628 0.07770515242 0) (-0.004409005276 0.07798647259 0) (-0.00381423272 0.07770151862 0) (-0.003812631096 0.07798277392 0) (-0.004110720191 0.07798462914 0) (-0.004112360996 0.0777033741 0) (-0.003808497673 0.07882572135 0) (-0.004106416984 0.07882757547 0) (-0.004107768757 0.07854657976 0) (-0.003809784144 0.07854472522 0) (-0.002622617988 0.07825652958 0) (-0.002474774435 0.07825569471 0) (-0.002474235981 0.07839614775 0) (-0.002622053328 0.07839699551 0) (-0.002179475729 0.07839454936 0) (-0.002180014099 0.07825410938 0) (-0.002177910646 0.0788162092 0) (-0.002178395836 0.07867591255 0) (7.139931794e-05 0.07821004584 0) (7.615471175e-05 0.07834963545 0) (0.0005090962518 0.07821102739 0) (0.0005137238252 0.07835064395 0) (0.0003673965366 0.07835046323 0) (0.0003629278725 0.07821078033 0) (0.0003760272618 0.0786300792 0) (0.0005221195502 0.07863027451 0) (0.002851716417 0.07708498075 0) (0.004261869644 0.07052709812 -3.282929484e-13) (0.003901067656 0.07418952415 -3.453348718e-13) (0.00385075564 0.0728403774 -3.41532358e-13) (0.003992070953 0.07662189307 -3.515521207e-13) (0.004495054742 0.06588266987 -3.06671355e-13) (0.004244659858 0.04625284867 -2.153000001e-13) (0.004494077867 0.05354034823 -2.49245069e-13) (0.004298006805 0.05088381446 -2.386146836e-13) (0.004796667352 0.05786831902 -2.655098363e-13) (0.003846731063 0.03861642839 -1.797451077e-13) (0.002061309191 0.01673978918 -7.790990075e-14) (0.002713655812 0.02353153302 -1.095235014e-13) (0.002537164066 0.0218523849 -1.024458296e-13) (0.003182670524 0.02797491614 -1.283417816e-13) (0.001415490637 0.01080894565 -5.032085859e-14) (0.0001092379435 0.000707721882 -3.302913498e-15) (0.0004225406811 0.002882680522 -1.340594302e-14) (0.0002994425244 0.002028613475 -9.520162436e-15) (0.0006388827041 0.004419865329 -2.02615702e-14) (-0.002184184657 0.0142454895 -6.825096044e-14) (-0.001424051503 0.00883105799 -4.232725281e-14) (-0.004528804734 0.03494405353 -1.674216321e-13) (-0.003792123146 0.02757880986 -1.321442955e-13) (-0.003544652298 0.02558644251 -1.235123115e-13) (-0.004125600821 0.03045684416 -1.437461261e-13) (-0.00515748765 0.04237693065 -2.030320356e-13) (-0.006092755673 0.06217484507 -2.978173264e-13) (-0.005958474762 0.05626243114 -2.695066392e-13) (-0.005726865717 0.05366593207 -2.590150316e-13) (-0.006254631471 0.05996894155 -2.82995849e-13) (-0.006043862865 0.0671013034 -3.214373212e-13) (-0.005446236166 0.07342095878 -3.517186542e-13) (-0.005362211808 0.07171490419 -3.461397835e-13) (-0.005519447396 0.07561014435 -3.568534357e-13) (-0.004954624127 0.07545085853 -3.587685704e-13) (-0.004356228672 0.0754501126 0) (-0.003757635519 0.07544620353 0) (-0.003755799236 0.07572739199 0) (-0.003753962953 0.07600858044 0) (-0.00405326606 0.07601053502 0) (-0.00375029124 0.07657082676 0) (-0.004049594346 0.07657278134 0) (-0.004051430629 0.07629159288 0) (-0.003752127523 0.0762896383 0) (-0.002556763587 0.07600076221 0) (-0.002257473541 0.07599880772 0) (-0.002256555825 0.07613933664 0) (-0.001958170434 0.07599685314 0) (-0.001957252719 0.07613738206 0) (-0.002106897742 0.07613835931 0) (-0.002107815457 0.07599783038 0) (-0.002104143744 0.0765600767 0) (-0.002105061459 0.07641954777 0) (-0.001955416436 0.07641857052 0) (0.0001332487075 0.07542079436 0) (0.0001350849906 0.07570198282 0) (0.001031144967 0.07541493071 0) (0.00103298125 0.07569611917 0) (0.0007336820616 0.07569807372 0) (0.0007318457785 0.07541688526 0) (0.0007373537747 0.07626032003 0) (0.001036652963 0.07625836548 0) (0.002777051062 0.07358154489 -3.527456105e-13) (0.003883665071 0.06274738022 -3.008426841e-13) (0.00363570519 0.06754542298 -3.238243007e-13) (0.003534447398 0.06519201634 -3.149147609e-13) (0.003775036677 0.07111242576 -3.358702205e-13) (0.003984683566 0.05694467141 -2.730038418e-13) (0.003373314175 0.03578585934 -1.715572129e-13) (0.003722123762 0.04319820076 -2.071121052e-13) (0.003537858407 0.04075036417 -1.968425423e-13) (0.004144176115 0.0487623141 -2.30343522e-13) (0.002969067908 0.02900782749 -1.390554338e-13) (0.001316888601 0.01040262168 -4.984901381e-14) (0.001887236508 0.01592291882 -7.632783294e-14) (0.001613960133 0.0135126065 -6.525335827e-14) (0.002281706825 0.019517624 -9.217626662e-14) (0.0007871774078 0.005843164279 -2.80053758e-14) (0 0 0) (8.329352977e-05 0.0005524481125 -2.636779683e-15) (3.887805833e-05 0.0002560298735 -1.221245327e-15) (0.0002257934765 0.001518948963 -7.188694084e-15) (-0.001234393394 0.007811647616 -3.860800568e-14) (-0.0006778706142 0.00407850758 -2.01505479e-14) (-0.003211090028 0.02404378932 -1.187661081e-13) (-0.002551447542 0.01800650662 -8.895661985e-14) (-0.002166601349 0.01517557347 -7.555067683e-14) (-0.003250237711 0.02328578192 -1.132705041e-13) (-0.003811928004 0.03039453522 -1.501299085e-13) (-0.004948281411 0.0489892815 -2.419453526e-13) (-0.004702779279 0.04308683982 -2.128019982e-13) (-0.004263587183 0.03877443367 -1.930122728e-13) (-0.005439054771 0.05058479548 -2.460254223e-13) (-0.005046919594 0.05434953407 -2.684241718e-13) (-0.004515951729 0.06607222254 -3.263500581e-13) (-0.004817767778 0.06295069846 -3.10917958e-13) (-0.004525517644 0.05869244197 -2.921551889e-13) (-0.00523374062 0.06944698892 -3.377575997e-13) (-0.004115515027 0.06841930421 -3.379518887e-13) (-0.002546298915 0.0717427385 -3.54410945e-13) (-0.003109784553 0.07112756555 -3.513578317e-13) (-0.003004744014 0.06818395248 -3.394506898e-13) (-0.003170059211 0.07375529431 0) (-0.001963751683 0.0720461943 -3.559375017e-13) (-0.0001812368336 0.07177686491 -3.546607452e-13) (-0.0007763087579 0.0720591342 -3.560207684e-13) (-0.0007573738904 0.06965328148 -3.468336729e-13) (-0.0007719918312 0.07430203479 0) (-0.0007756643973 0.07373965787 0) (0.0004079132307 0.07119722137 -3.518019209e-13) (0.002026996 0.06634525412 -3.278766147e-13) (0.001527664975 0.06861039292 -3.390621117e-13) (0.001458875536 0.06498640085 -3.236577673e-13) (0.001607906824 0.07320402412 -3.56242813e-13) (0.002459914532 0.06331345099 -3.129163595e-13) (0.003166774341 0.04960721232 -2.45192755e-13) (0.00304626183 0.05489117836 -2.713107516e-13) (0.002820721097 0.05040081059 -2.510491814e-13) (0.003403427477 0.06230756757 -3.032574192e-13) (0.003159223866 0.04376465748 -2.162992008e-13) (0.002407872409 0.02475818002 -1.223743329e-13) (0.00276690937 0.0311238139 -1.538214001e-13) (0.002452314218 0.02735877671 -1.362798763e-13) (0.003314852132 0.03788769707 -1.844080444e-13) (0.001972395581 0.01867712602 -9.23150445e-14) (0.0005818910699 0.004456315891 -2.201017146e-14) (0.001016173713 0.00831097751 -4.107825191e-14) (0.0007993040449 0.006485346743 -3.227973444e-14) (0.001431654348 0.01189426339 -5.787037516e-14) (0.0002396539786 0.001725800589 -8.520961714e-15) (0 0 0) (0 0 0) (0 0 0) (3.726315497e-06 2.435327389e-05 -1.110223025e-16) (-0.0002599568872 0.001595043376 -8.132383655e-15) (-4.964967416e-05 0.0002895689999 -1.471045508e-15) (-0.001483379214 0.01077730305 -5.492828414e-14) (-0.001018925274 0.006975614777 -3.555489236e-14) (-0.0006865599618 0.004663981463 -2.398081733e-14) (-0.001773681944 0.01232969555 -6.186717805e-14) (-0.001951649591 0.01510319183 -7.699396676e-14) (-0.003065313139 0.02947314538 -1.502409308e-13) (-0.002767884961 0.0246238407 -1.255384685e-13) (-0.002252585191 0.01989343076 -1.02223785e-13) (-0.003787119008 0.03418839263 -1.715294573e-13) (-0.003266746558 0.03417151713 -1.741939926e-13) (-0.003247056551 0.04616004073 -2.353117701e-13) (-0.003356326956 0.04260885727 -2.171873792e-13) (-0.002899912092 0.0365641386 -1.879052469e-13) (-0.004179733787 0.05381416632 -2.69978484e-13) (-0.003044935414 0.04918715565 -2.507438701e-13) (-0.002006362189 0.05494189628 -2.801092691e-13) (-0.002410657396 0.0535787987 -2.731426196e-13) (-0.002141141601 0.04730447256 -2.431110868e-13) (-0.002849942893 0.0641932916 -3.22103455e-13) (-0.001563106541 0.05576361357 -2.84300361e-13) (-0.0001374628277 0.05505574151 -2.807476474e-13) (-0.0006151584718 0.05581994744 -2.846056724e-13) (-0.0005463538563 0.04958410307 -2.548794509e-13) (-0.0007231124085 0.06604608991 -3.31457084e-13) (0.0003246258934 0.05375214266 -2.740863092e-13) (0.001475771802 0.04651950288 -2.372546604e-13) (0.001145553305 0.04948456619 -2.523536935e-13) (0.001013039698 0.04323143354 -2.22238894e-13) (0.001371150468 0.06051801134 -3.037847751e-13) (0.001734406293 0.04302702533 -2.194355808e-13) (0.001984707046 0.03001590499 -1.530719995e-13) (0.001994755364 0.03468489247 -1.768862834e-13) (0.001689895159 0.02910195982 -1.496303081e-13) (0.002566970856 0.04546668905 -2.282618539e-13) (0.001881829164 0.02517978372 -1.284250484e-13) (0.001131696144 0.01125397122 -5.739853037e-14) (0.001437063078 0.01562729915 -7.968625759e-14) (0.001107522811 0.01193881928 -6.136757769e-14) (0.002119779069 0.0234511889 -1.177113962e-13) (0.0008059656383 0.007384068747 -3.766431611e-14) (5.238254372e-05 0.0003885446779 -1.970645869e-15) (0.0002287569363 0.001811496348 -9.24260668e-15) (0.0001007661974 0.0007914511921 -4.080069615e-15) (0.0005887927162 0.0047390153 -2.37865283e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001901632559 0.001339226462 -7.049916206e-15) (-4.83859542e-05 0.0003209495583 -1.693090113e-15) (0 0 0) (-0.0004044639955 0.002726197277 -1.412758799e-14) (-0.0003944524013 0.002960321599 -1.55986335e-14) (-0.001101489632 0.01028783729 -5.41788836e-14) (-0.0008749638135 0.007556768695 -3.980149543e-14) (-0.0005256916121 0.004505536547 -2.392530618e-14) (-0.001754435718 0.01538059196 -7.968625759e-14) (-0.001292750829 0.01314400298 -6.922240559e-14) (-0.001541985596 0.02135576119 -1.124655924e-13) (-0.001519575608 0.01877775027 -9.889311592e-14) (-0.001106767997 0.01358379437 -7.213674103e-14) (-0.002431612726 0.03045371138 -1.577626918e-13) (-0.001502157393 0.02366414772 -1.246225345e-13) (-0.00105751041 0.02839550604 -1.495470414e-13) (-0.001252430509 0.02722766026 -1.434130592e-13) (-0.0009658515675 0.02088975339 -1.109390357e-13) (-0.001851103508 0.04066771079 -2.106925745e-13) (-0.0008290660273 0.029116524 -1.533495553e-13) (-5.967927902e-05 0.02850002828 -1.501299085e-13) (-0.0003179454267 0.02916925748 -1.536548666e-13) (-0.0002450905809 0.02261058318 -1.200983757e-13) (-0.0004717112404 0.04290139748 -2.222944051e-13) (0.0001841242252 0.02738202551 -1.442457265e-13) (0.0007192302673 0.0216348022 -1.139643935e-13) (0.0005832071901 0.02390722647 -1.259270466e-13) (0.0004448603665 0.01798395275 -9.550693569e-14) (0.0008722075953 0.03674386203 -1.904310043e-13) (0.0008034905104 0.0190847313 -1.005306949e-13) (0.0007291002889 0.01061397141 -5.589972929e-14) (0.0008062539091 0.01347621162 -7.099876242e-14) (0.000554657104 0.009178574343 -4.876654636e-14) (0.001383829199 0.02359771447 -1.222910662e-13) (0.0006097957932 0.007862904301 -4.141131882e-14) (0.0001559959891 0.001498741361 -7.882583475e-15) (0.0003031680295 0.00318277391 -1.676436767e-14) (0.0001338171975 0.001392616962 -7.410738689e-15) (0.0008010226633 0.008559121174 -4.435340983e-14) (4.573894956e-05 0.0004051239349 -2.137179322e-15) (0 0 0) (0 0 0) (0 0 0) (2.161132549e-05 0.0001683577883 -8.604228441e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.391672338e-05 0.0003070381839 -1.665334537e-15) (-2.435586756e-06 2.037392614e-05 -1.110223025e-16) (0 0 0) (-0.000256227304 0.002178865001 -1.165734176e-14) (-8.839931778e-05 0.0008718510265 -4.74620343e-15) (-0.0002564956981 0.00345650503 -1.884603584e-14) (-0.0002100179668 0.002522249714 -1.373900993e-14) (-6.174305261e-05 0.0007356634869 -4.05231404e-15) (-0.000742548934 0.009050272745 -4.846123502e-14) (-0.0002847805521 0.004371381102 -2.381428388e-14) (-0.0002448273808 0.006451900464 -3.513855873e-14) (-0.0002780706505 0.005914105211 -3.222422329e-14) (-0.0001329469553 0.00280905008 -1.543210004e-14) (-0.0007019085416 0.01510141672 -8.087974734e-14) (-0.0001960668901 0.006791648712 -3.69981823e-14) (-1.036108856e-05 0.006501882093 -3.541611449e-14) (-7.289278559e-05 0.00681729878 -3.713696017e-14) (-3.65711528e-05 0.003424196564 -1.881828027e-14) (-0.0001786002689 0.0165680044 -8.873457524e-14) (4.496340595e-05 0.005985806455 -3.261280135e-14) (0.0001242585899 0.003564996706 -1.942890293e-14) (0.0001151372843 0.004473521353 -2.436939539e-14) (4.874174935e-05 0.00187181813 -1.029731855e-14) (0.0003174835868 0.01265940121 -6.780687123e-14) (0.0001156377513 0.002629694725 -1.432187702e-14) (2.566711628e-05 0.000359927485 -1.970645869e-15) (5.921783481e-05 0.0009519884979 -5.19029264e-15) (4.469336041e-06 7.120434741e-05 -3.885780586e-16) (0.0003407784207 0.005583802337 -2.989275494e-14) (2.96797072e-06 3.69101069e-05 -1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (3.042097347e-05 0.0003138585117 -1.693090113e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.268325227e-06 1.498599421e-05 -8.326672685e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.952250902e-05 0.0008290032517 -4.607425552e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-1.245895413e-05 0.001164480329 -6.467049118e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (9.903243156e-06 0.000376330953 -2.081668171e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.001984644538 0.08795289071 0) (-0.001983721962 0.08809416407 0) (-0.001981849579 0.08837688041 0) (-0.002278854839 0.08837870244 0) (-0.001982812957 0.08823535916 0) (-0.002575977897 0.08838048605 0) (0.00241422606 0.08835442828 0) (0.002117199541 0.08835699492 0) (0.002116544663 0.08821471412 0) (0.001968090005 0.08821597093 0) (0.001968731822 0.08835825181 0) (0.001965743542 0.08779065914 0) (0.001966526976 0.08793262564 0) (0.00182241938 0.09007154406 0) (0.001823201056 0.08992724147 0) (0.001823622303 0.08978374681 0) (0.001972529234 0.08949574618 0) (0.002121166481 0.08949444899 0) (0.001823412457 0.08964161331 0) (0.002418786576 0.08949077614 0) (-0.001997949716 0.08570148017 0) (-0.002146171507 0.08570239588 0) (-0.001995549199 0.08612306926 0) (-0.002143810171 0.08612398522 0) (-0.002144597453 0.08598342932 0) (-0.001996349542 0.08598251344 0) (-0.002588893046 0.08612680038 0) (-0.002292897606 0.08598434554 0) (-0.002292123298 0.08612491459 0) (0.002398567641 0.08608666785 0) (0.002250295059 0.08608780593 0) (0.002102045527 0.08608847366 0) (0.00210083315 0.08594682342 0) (0.001952663516 0.08594772573 0) (0.001953849601 0.08608935002 0) (0.001948910378 0.08552301087 0) (0.001950187118 0.08566451702 0) (0.001964946366 0.08764858825 0) (0.001962309506 0.08722280817 0) (0.00196322269 0.08736464321 0) (0.002407363958 0.08721964055 0) (0.00211154811 0.08736359622 0) (0.002110621696 0.08722173514 0) (0.002258984506 0.08722041362 0) (-0.002158309638 0.08345369439 0) (-0.00215611638 0.08387554605 0) (-0.002156865079 0.08373489847 0) (-0.002600455841 0.08387819962 0) (-0.002304878075 0.08373578669 0) (-0.002304155582 0.08387642138 0) (0.002376445348 0.08382709961 0) (0.002080168139 0.08382840751 0) (0.002078634543 0.08368756915 0) (0.001782605736 0.0836889146 0) (0.001930594317 0.08368828776 0) (0.001932153864 0.08382909983 0) (0.001777898758 0.08326613898 0) (0.001925941286 0.083265773 0) (0.00192751304 0.08340645439 0) (0.001779576359 0.08340702865 0) (0.001947607432 0.08538149184 0) (0.001943626117 0.0849578364 0) (0.00194505958 0.08509934152 0) (0.002388139114 0.08495575637 0) (0.002093164084 0.08509846576 0) (0.002091718072 0.08495703908 0) (-0.002168944639 0.08120516593 0) (-0.002167105886 0.08162673256 0) (-0.002167697264 0.08148617538 0) (-0.002610505431 0.0816293147 0) (-0.002315357802 0.08148703518 0) (-0.002314766509 0.0816275793 0) (0.00234864682 0.08157433397 0) (0.002052538286 0.08157547098 0) (0.001756638035 0.08157650214 0) (0.001752606682 0.08129518434 0) (0.001748183434 0.08101385605 0) (0.001776324274 0.08312503967 0) (0.001774632248 0.08298394112 0) (0.001771239144 0.08270235794 0) (0.002067099191 0.08270117031 0) (0.001772968305 0.08284314278 0) (0.002363429409 0.08269997962 0) (-0.002177450298 0.07895670193 0) (-0.002175975101 0.07937859746 0) (-0.002176475569 0.07923796132 0) (-0.002618565845 0.07938103064 0) (-0.002619053167 0.07924040748 0) (-0.002471274915 0.07923957303 0) (-0.002470800569 0.07938020934 0) (-0.0001259648055 0.07890861518 0) (-0.000199589588 0.0789086911 0) (-0.0002008651014 0.07883839278 0) (-0.0002021837697 0.07876818618 0) (0.0002338923557 0.07876967462 0) (0.0002375441 0.07890966326 0) (0.0002411016395 0.07904962639 0) (9.560745476e-05 0.0790492182 0) (0.002021014715 0.07960829244 0) (0.002316902503 0.07960735279 0) (0.001133360378 0.07961069339 0) (0.001428637854 0.0796100973 0) (0.00141083984 0.07876870192 0) (0.001417084196 0.07904889509 0) (0.00174411418 0.08073273442 0) (0.001739483246 0.08045160339 0) (0.002035671421 0.08045066178 0) (0.002331664715 0.08044987817 0) (-0.002103212116 0.07670073614 0) (-0.002155515209 0.07711360516 0) (-0.002101363625 0.07698179391 0) (-0.002600259113 0.07711632668 0) (-0.002550337876 0.07698472591 0) (-0.002400692852 0.07698374866 0) (-0.002451877443 0.07711589318 0) (-0.0002715741673 0.07695613068 0) (-0.0001319122401 0.07695978993 0) (-0.0006964286817 0.07694675856 0) (-0.0005523760296 0.07694542601 0) (-0.0006076856762 0.07655030417 0) (-0.0006068062892 0.07669096396 0) (-0.0002766474541 0.07869792175 0) (-0.0002805669809 0.07848732781 0) (-0.0002790952404 0.07855749424 0) (-6.422308159e-05 0.07848873614 0) (-0.0001324264316 0.07862825364 0) (-0.0002049278704 0.07862790427 0) (-0.0002066573975 0.0785578832 0) (-0.0002083704179 0.07848780978 0) (0.0004398908692 0.07654346304 0) (0.0004417271523 0.0768246515 0) (0.0004595907654 0.0770994922 0) (0.0001631057271 0.07710077533 0) (0.0001533133875 0.07696328224 0) (9.11693907e-06 0.07696239538 0) (1.74843456e-05 0.07710028961 0) (0.002272085978 0.07764663477 0) (0.001975649742 0.07764759106 0) (0.001967557475 0.07736842871 0) (0.002263980479 0.07736744638 0) (0.001372091205 0.07737115495 0) (0.001381395523 0.07764991756 0) (0.001337783211 0.07653759942 0) (0.001350327775 0.07681453847 0) (0.001404427406 0.07848877107 0) (0.001389984253 0.07792910279 0) (0.002279501156 0.077926115 0) (0.001983169318 0.07792705755 0) (-0.001516370532 0.09023131406 0) (-0.001646800528 0.09095667284 0) (-0.002549647271 0.09094447299 0) (-0.002248349768 0.09094991873 0) (-7.997974162e-05 0.09029966541 0) (-0.0001835050023 0.09029502701 0) (-0.0001723799711 0.09020801418 0) (-7.659965471e-05 0.09023162744 0) (-0.0002760938265 0.0902878944 0) (-0.0002911928368 0.09021219505 0) (-0.0009842679679 0.0921137537 0) (-0.0009721356142 0.09239537123 0) (-0.0009990484122 0.09155143626 0) (-0.0003799891484 0.09155508638 0) (-0.0003949471079 0.0912725861 0) (0.0001203419248 0.09028518404 0) (2.586734263e-05 0.0902944068 0) (2.477558936e-05 0.09022398752 0) (0.0001091639682 0.09019371251 0) (0.002417401921 0.09063474466 0) (0.002118664414 0.09063930903 0) (0.001818247285 0.09064667416 0) (0.00182046043 0.09035957142 0) (0.001821364133 0.09021595477 0) (0.001481383239 0.0920909517 0) (0.001479000701 0.09237211546 0) (0.001496157844 0.09152137532 0) (0.002111690243 0.09149735944 0) (0.001153118588 0.08907824913 0) (0.001077443102 0.08907872243 0) (0.001076864396 0.08900690581 0) (0.001076250642 0.08893512207 0) (0.0009244731174 0.09009095073 0) (0.0009263344861 0.08994558066 0) (0.001077897442 0.08979649504 0) (0.000927396798 0.08987185167 0) (0.001226988671 0.08979451572 0) (0.003601634157 0.088061281 0) (0.003304343362 0.08806337917 0) (0.003307632199 0.088630996 0) (0.003605025942 0.08862866206 0) (0.002712948428 0.08863554565 0) (0.004791536123 0.08879315365 -3.583522368e-13) (0.004201779202 0.08890701163 0) (0.003603200939 0.08834520094 0) (0.003609582822 0.08947845324 0) (-0.003778970688 0.08585316268 0) (-0.003777592113 0.08613426271 0) (-0.003776199624 0.08641549324 0) (-0.002882865013 0.08669110799 0) (-0.002884348753 0.08640990417 0) (-0.00347877669 0.08641362931 0) (-0.003477345192 0.08669483347 0) (-0.003482951256 0.08557038174 0) (-0.00348158702 0.08585128594 0) (-0.003472902426 0.08753915027 0) (-0.00347136184 0.08782105901 0) (-0.003475886549 0.08697619419 0) (-0.002881341068 0.08697246827 0) (0.00120268086 0.08680248095 0) (0.00111865398 0.08680291213 0) (0.001146546508 0.08765427234 0) (0.001222026465 0.08765385779 0) (0.003583420853 0.0857962931 0) (0.003286441458 0.08579807577 0) (0.003291547992 0.08636403506 0) (0.003588592006 0.08636214748 0) (0.00240093785 0.08636961604 0) (0.002697695049 0.0863678087 0) (0.004780460646 0.08663696649 -3.587685704e-13) (0.004185534755 0.08664151325 0) (0.003586065073 0.08607920032 0) (0.003595549664 0.08721156772 0) (-0.003789411916 0.08360430644 0) (-0.003788163262 0.0838855118 0) (-0.003786901718 0.08416669095 0) (-0.002894336556 0.0844424805 0) (-0.002895703435 0.08416117143 0) (-0.003489635508 0.08416482803 0) (-0.00348833393 0.08444613753 0) (-0.003493393678 0.08332134265 0) (-0.003492171827 0.0836024437 0) (-0.003484315321 0.08528950366 0) (-0.003487006914 0.08472734238 0) (-0.002892944323 0.08472367186 0) (-0.002152347875 0.08457861399 0) (-0.002153122523 0.0844379927 0) (-0.002150812491 0.08485972604 0) (-0.002298982125 0.08486062835 0) (-0.001559652185 0.08471563099 0) (-0.001707521603 0.08471650521 0) (-0.001708308886 0.08457594931 0) (-0.001709096595 0.08443532811 0) (-0.001702500506 0.08555938155 0) (-0.001703338239 0.08541910025 0) (-0.001704176995 0.08527866224 0) (-0.001556177144 0.08527776104 0) (-0.00140766611 0.08534713702 0) (0.001123336849 0.08453799674 0) (0.001046790435 0.0845387056 0) (0.001048558893 0.08446770824 0) (0.00104961162 0.08439691147 0) (0.001125059076 0.08538671976 0) (0.001203190414 0.08538590913 0) (0.003559815815 0.08353967324 0) (0.003263017729 0.08354121964 0) (0.003269267952 0.08410431113 0) (0.003566092074 0.0841027515 0) (0.002676024494 0.08410741467 0) (0.004755053488 0.084322173 -3.585465258e-13) (0.004163452241 0.08438203618 0) (0.003562881644 0.08382114101 0) (0.00357517337 0.08494936285 0) (-0.003798560175 0.08135544175 0) (-0.003797482157 0.08163651761 0) (-0.003796378104 0.08191758024 0) (-0.00290448098 0.08219307377 0) (-0.00290559724 0.08191214182 0) (-0.00349916388 0.08191575685 0) (-0.003498073569 0.08219671509 0) (-0.00350237147 0.08107258134 0) (-0.003501319829 0.08135361819 0) (-0.00349460264 0.0830402154 0) (-0.003496942969 0.08247784285 0) (-0.002903311199 0.08247420127 0) (-0.002163890263 0.08232913801 0) (-0.002164547113 0.08218855514 0) (-0.002162537126 0.08261034268 0) (-0.002310380339 0.0826112298 0) (-0.001498526075 0.08246582413 0) (-0.001499076525 0.08239553414 0) (-0.001720369341 0.08246714225 0) (-0.001721169939 0.08232654725 0) (-0.001573705391 0.08232567567 0) (-0.001573194036 0.08239597898 0) (-0.001572774104 0.08246628288 0) (-0.001721970453 0.08218596532 0) (-0.001574636593 0.08218508153 0) (-0.001574138384 0.08225537186 0) (-0.001715775566 0.08331058299 0) (-0.001716562678 0.08317005321 0) (-0.00171731078 0.08302949705 0) (-0.001569767784 0.08302863802 0) (0.001177251347 0.08242288145 0) (0.001029717205 0.08242329635 0) (0.0008804892203 0.08228253435 0) (0.000963965885 0.08319884896 0) (0.0009648229433 0.08326948959 0) (0.0009622135915 0.08298692173 0) (0.000962767592 0.08305735536 0) (0.001183849203 0.08298620576 0) (0.001036891094 0.08305702803 0) (0.001036232697 0.08298660814 0) (-0.003807314662 0.07910687489 0) (-0.004105194877 0.07910871569 0) (-0.004102725139 0.07967090455 0) (-0.003804975612 0.07966905154 0) (-0.004400696691 0.07967275901 0) (-0.002912776821 0.07994473901 0) (-0.00291372415 0.07966367535 0) (-0.002617632515 0.07966195072 0) (-0.003507500096 0.07966723951 0) (-0.003506474405 0.07994830265 0) (-0.003510839398 0.07882389506 0) (-0.003509708628 0.07910504894 0) (-0.003503410563 0.08079146604 0) (-0.003505435483 0.08022939183 0) (-0.002615737345 0.08022415639 0) (-0.002911816261 0.0802258287 0) (-0.002173464138 0.08008109894 0) (-0.002173977496 0.079940489 0) (-0.002172401058 0.08036188756 0) (-0.002467932802 0.08022334789 0) (-0.002320324931 0.08022242313 0) (-0.002319826596 0.08036273276 0) (-0.001512812248 0.08021819459 0) (-0.001511625763 0.0801478802 0) (-0.00173214964 0.08021923513 0) (-0.001732662145 0.0800787558 0) (-0.001659014549 0.08007835322 0) (-0.001585053592 0.08007793552 0) (-0.001585312539 0.08014828304 0) (-0.001585754928 0.08021854033 0) (-0.001733201793 0.07993811992 0) (-0.001659449715 0.07993771665 0) (-0.001659199481 0.08000803472 0) (-0.001732860137 0.08000843739 0) (-0.001727545791 0.08106221868 0) (-0.001728397692 0.08092176768 0) (-0.001581115476 0.08092097566 0) (-0.001580382608 0.08099119915 0) (-0.001579950383 0.08106138542 0) (-0.001729250447 0.08078118609 0) (-0.001582307799 0.08078039628 0) (-0.001581626746 0.08085068542 0) (-0.001507587512 0.08085025415 0) (-0.00150847753 0.08077996638 0) (0.000112217359 0.07989167927 0) (0.0001125711956 0.07996206197 0) (0.0001125123851 0.08003265633 0) (3.748116443e-05 0.0800331855 0) (0.0009993670514 0.08031300224 0) (0.001146562648 0.08031274628 0) (0.0007055466202 0.08031331453 0) (0.0006977156268 0.07989176091 0) (0.000700441683 0.08003219966 0) (0.0008637681653 0.08101605299 0) (0.0008615244024 0.08087546742 0) (0.0008593223739 0.0807346726 0) (0.001006292198 0.08073444423 0) (0.001153441998 0.0807341755 0) (-0.003748454957 0.07685201521 0) (-0.004047758063 0.07685396979 0) (-0.004114104822 0.07742034346 0) (-0.003815963401 0.07741850095 0) (-0.00441245862 0.07742166492 0) (-0.002921714579 0.07769610804 0) (-0.002923367324 0.07741302456 0) (-0.002626753714 0.07741322952 0) (-0.003518070381 0.07741662089 0) (-0.00351636548 0.07769969097 0) (-0.003450988133 0.07656887218 0) (-0.00344915185 0.07685006063 0) (-0.003512060567 0.0785428985 0) (-0.003514803037 0.07798094652 0) (-0.002623877656 0.07797563776 0) (-0.002920256533 0.07797737733 0) (-0.002181865912 0.07783254283 0) (-0.002182574406 0.07769205172 0) (-0.002180578588 0.07811366957 0) (-0.002623208599 0.07811608995 0) (-0.002475351985 0.07811525499 0) (-0.001510290983 0.0778282747 0) (-0.001588820917 0.07782904876 0) (-0.001589801505 0.07775889219 0) (-0.001591839465 0.07768882089 0) (-0.001587098282 0.07881283419 0) (-0.001588103711 0.0787428737 0) (-0.001589474743 0.07867292865 0) (-0.00151303352 0.07867231191 0) (-0.001370590208 0.07430594389 0) (-0.001368753925 0.07458713235 0) (-0.00166804789 0.07458908687 0) (-0.001669884173 0.07430789841 0) (-0.001664376176 0.07515133318 0) (-0.001365082212 0.07514937866 0) (-0.002562272436 0.07515719684 0) (-0.00226298239 0.07515524234 0) (-0.0004671859525 0.07514351501 0) (-0.0001678867643 0.07514156046 0) (-0.001065783024 0.07514742411 0) (-0.00107129102 0.07430398934 0) (-0.001069454737 0.0745851778 0) (-0.0007582549446 0.07641075254 0) (-0.0006085824948 0.07640977511 0) (-0.0007609762919 0.07598903494 0) (-0.0006113260447 0.07598805766 0) (-0.0006104096356 0.07612858659 0) (-0.0007600598829 0.07612956387 0) (-0.0001623779291 0.07598512583 0) (-0.0003101927321 0.07626716097 0) (-0.0004598416733 0.07626813824 0) (-0.0004607593884 0.07612760931 0) (-0.0004616771034 0.07598708038 0) (-0.001386081576 0.08865635834 0) (-0.001237513772 0.08865542731 0) (-0.001236884784 0.08872634371 0) (-0.001162184954 0.08872586895 0) (-0.00116282317 0.08865493955 0) (-0.001160923688 0.08893820558 0) (-0.001161291574 0.08886767147 0) (-0.001166660636 0.08787711166 0) (-0.001166675416 0.08780664839 0) (-0.001167558759 0.08808938273 0) (-0.001167335021 0.08801864361 0) (-0.00139016787 0.08809062749 0) (-0.001241952656 0.08801910478 0) (-0.001241810962 0.08808980232 0) (-0.001374422793 0.08979945803 0) (-0.001225533569 0.08979994592 0) (-0.001076803941 0.08979979488 0) (-0.001073485631 0.08994672493 0) (-0.001069839411 0.09009326768 0) (-0.001085525695 0.0890802399 0) (-0.001232909609 0.08922325889 0) (-0.001381527868 0.08922386373 0) (0.001220923864 0.08793801719 0) (0.001142824744 0.08793816151 0) (0.00107607485 0.08886360322 0) (0.001076563962 0.08879250059 0) (0.001152477153 0.08879222688 0) (0.001970459833 0.08878486066 0) (0.001970906402 0.08892724339 0) (0.001969436041 0.08850008822 0) (0.002117904271 0.08849890969 0) (0.001375974711 0.08864782922 0) (0.001524532061 0.08864629746 0) (0.001524979338 0.08878878859 0) (0.001525360478 0.08893115216 0) (0.001520598436 0.0877939449 0) (0.001521304105 0.08793600333 0) (0.001372483331 0.08793719723 0) (0.001371992553 0.08786604484 0) (0.00137184194 0.08779498165 0) (0.001522164024 0.088077682 0) (0.001373617687 0.08807890022 0) (0.00137293399 0.08800820622 0) (0.001298085698 0.08800874726 0) (0.001299004823 0.08807949197 0) (-0.001550962275 0.08612030958 0) (-0.001551788568 0.08597978006 0) (-0.001403396993 0.08597886324 0) (-0.001848153872 0.0859815979 0) (-0.001847340469 0.08612215363 0) (-0.001849793142 0.08570057795 0) (-0.001992294051 0.08668552727 0) (-0.001993107284 0.08654499766 0) (-0.001844846313 0.08654408169 0) (-0.001844020105 0.08668459815 0) (-0.001846461509 0.08626274812 0) (-0.001994709334 0.08626367706 0) (-0.001401992553 0.08625992391 0) (-0.001550174822 0.0862608916 0) (-0.002291322614 0.08626552265 0) (-0.002142996427 0.0862645932 0) (-0.002142221266 0.08640529285 0) (-0.001993920943 0.08640440274 0) (-0.001401373349 0.08640074212 0) (-0.00125367485 0.08639989514 0) (-0.001253549484 0.08647029239 0) (-0.00118044267 0.08646988027 0) (-0.001180442572 0.08639949526 0) (-0.001178650583 0.08668050116 0) (-0.001179375529 0.08661029068 0) (-0.001178882288 0.08562602058 0) (-0.001180006822 0.08555602168 0) (-0.001175687353 0.08583665842 0) (-0.001176705192 0.08576639761 0) (-0.001404301818 0.08583830811 0) (-0.00140472158 0.08576803033 0) (-0.001330054486 0.08576754272 0) (-0.001329515876 0.08583781972 0) (-0.001393656899 0.08752635555 0) (-0.001244700239 0.08752536974 0) (-0.001243930403 0.0875958542 0) (-0.001168372851 0.0875953216 0) (-0.001169204072 0.08752483753 0) (-0.00116700052 0.0877362655 0) (-0.001177910758 0.08675078991 0) (-0.001175591199 0.08696198203 0) (-0.001176372108 0.08689160212 0) (-0.001397686699 0.08696327568 0) (-0.001250211434 0.08689204514 0) (-0.001249589946 0.08696241303 0) (0.001209925294 0.08566881576 0) (0.001135782968 0.08566926076 0) (0.0011171558 0.08651969703 0) (0.001200990634 0.08651905813 0) (0.001957224416 0.08651413265 0) (0.001958307555 0.08665599271 0) (0.001954995994 0.0862308962 0) (0.002399765678 0.08622812227 0) (0.002251465781 0.08622907767 0) (0.0012853247 0.08637666638 0) (0.001283593349 0.08644754595 0) (0.001511438175 0.08637524201 0) (0.001511782987 0.08644604271 0) (0.001437051898 0.08644653074 0) (0.00143678596 0.08637580788 0) (0.001513199668 0.08665897782 0) (0.00143812901 0.08665946807 0) (0.001437665121 0.08658843305 0) (0.001512644356 0.0865879434 0) (0.001504661571 0.08552554631 0) (0.00150604305 0.08566709095 0) (0.001358082039 0.08566793966 0) (0.001357188524 0.08559711641 0) (0.001356387198 0.08552641012 0) (0.001507385518 0.08580866198 0) (0.001359685713 0.08580950897 0) (0.001358910252 0.08573876332 0) (0.001285145285 0.0857391928 0) (0.001286181781 0.08580991062 0) (0.001297383782 0.08751126345 0) (0.001297220776 0.08758230256 0) (0.00151935603 0.08750969632 0) (0.001519983763 0.08765182057 0) (0.001371540971 0.08765289445 0) (0.001371416137 0.08758177885 0) (0.00137127867 0.08751072864 0) (0.001371600076 0.08772394518 0) (0.001513636328 0.08672984323 0) (0.001438644032 0.08673033296 0) (0.001515453784 0.0869421488 0) (0.001440747963 0.08694250606 0) (0.001440024828 0.08687177313 0) (0.001514782124 0.08687129799 0) (0.001286370205 0.0868727635 0) (0.001289080041 0.08694371855 0) (0.002257982458 0.08707897098 0) (0.002406360546 0.08707798895 0) (0.001961344508 0.08708103877 0) (0.001959336917 0.08679761802 0) (-0.001566449808 0.08359071685 0) (-0.001714123321 0.0835915898 0) (-0.0017149497 0.08345104721 0) (-0.001709898047 0.08429460251 0) (-0.001710738338 0.08415392941 0) (-0.001562634005 0.08415302753 0) (-0.002303433686 0.08401696465 0) (-0.002155381509 0.08401607617 0) (-0.002153884709 0.0842972799 0) (-0.001337240066 0.08429222114 0) (-0.001259320587 0.08429156862 0) (-0.001259166232 0.08436200486 0) (-0.001259832235 0.08443242034 0) (-0.001275513646 0.0833081389 0) (-0.001274348737 0.08337832038 0) (-0.00127314743 0.08344847551 0) (-0.00134647113 0.08344887598 0) (-0.001333466404 0.08534667859 0) (-0.00118356679 0.08534568662 0) (-0.001181166618 0.08548602301 0) (-0.001261262352 0.08450282775 0) (-0.001262977268 0.08457322396 0) (-0.001337880753 0.08457371311 0) (0.001190032403 0.08355043398 0) (0.001115939621 0.0835508656 0) (0.00104145679 0.08355116915 0) (0.001040926666 0.08348059169 0) (0.0009663203583 0.08348098748 0) (0.0009661846625 0.08355160847 0) (0.0009656719362 0.08333989518 0) (0.001049118065 0.08432633377 0) (0.001047519922 0.08425601145 0) (0.001122473122 0.08425553503 0) (0.001936572321 0.08425169449 0) (0.001937976679 0.08439274267 0) (0.001933582551 0.08396987358 0) (0.002081662128 0.08396918083 0) (0.001343373431 0.08411362284 0) (0.001491348611 0.08411294384 0) (0.001492778066 0.08425383513 0) (0.001494195314 0.0843948571 0) (0.001631731185 0.08340761538 0) (0.001630066473 0.0832666995 0) (0.001634746904 0.08368941 0) (0.001191446468 0.08369116864 0) (0.001339213451 0.08369060855 0) (0.001278516023 0.08524405947 0) (0.001278885591 0.08531465104 0) (0.001502070701 0.08524280853 0) (0.001503292982 0.08538397545 0) (0.001354756891 0.08538476261 0) (0.001353969138 0.08531413459 0) (0.001353586595 0.08524355616 0) (0.001355467648 0.0854556001 0) (0.001495548284 0.08453603623 0) (0.001496980127 0.08467729321 0) (0.001349005203 0.08467801139 0) (0.00134826935 0.08460733079 0) (0.001274020809 0.08460771118 0) (0.001274730627 0.08467840501 0) (0.002090416576 0.08481574207 0) (0.001942324791 0.0848165655 0) (0.001939473568 0.08453396004 0) (-0.001503502686 0.08134176011 0) (-0.0015034259 0.08127151827 0) (-0.001726129399 0.08134310948 0) (-0.001726772336 0.08120265712 0) (-0.001578955159 0.08120178324 0) (-0.001578444231 0.08127202124 0) (-0.00157842968 0.08134224942 0) (-0.001579244062 0.08113154378 0) (-0.001722757138 0.08204550084 0) (-0.001575540906 0.08204460476 0) (-0.00157506933 0.08211481689 0) (-0.00172354263 0.0819052192 0) (-0.001576443258 0.08190442837 0) (-0.001575998655 0.08197451008 0) (-0.001502455627 0.08197409511 0) (-0.001503004628 0.08190402715 0) (-0.002314161986 0.08176814946 0) (-0.002166475242 0.08176730255 0) (-0.002165190221 0.08204807666 0) (-0.001428097169 0.08204374637 0) (-0.001354027981 0.08204330185 0) (-0.001277718142 0.08211296649 0) (-0.001275786508 0.08218315603 0) (-0.001346775714 0.08119983599 0) (-0.001426520171 0.08120063104 0) (-0.00134920931 0.08316798075 0) (-0.001277218727 0.08316764123 0) (-0.001276548207 0.08323791738 0) (-0.001273859928 0.08225337173 0) (-0.001271934653 0.08232358743 0) (-0.001349079826 0.08232420877 0) (-0.001424920786 0.08232474323 0) (0.001162178531 0.08129679363 0) (0.001014978222 0.08129712799 0) (0.0008678948587 0.08129737016 0) (0.0008657293724 0.08115677101 0) (0.0008780236419 0.08207138237 0) (0.0008771563645 0.0820009769 0) (0.0008753124177 0.08186041484 0) (0.001022702981 0.08186001394 0) (0.001170034517 0.08185957423 0) (-0.001509308781 0.07895267826 0) (-0.001587120738 0.07895339538 0) (-0.001586679031 0.07888303361 0) (-0.001733478147 0.07986780202 0) (-0.001659791456 0.07986738612 0) (-0.001660735292 0.07972685736 0) (-0.001734239224 0.07972725901 0) (-0.001511194751 0.0797258808 0) (-0.002470326819 0.07952075423 0) (-0.002618105156 0.07952157561 0) (-0.002175475231 0.07951914218 0) (-0.002174490767 0.07979989213 0) (-0.001432399253 0.07979537247 0) (-0.001353837804 0.07979462433 0) (-0.001431214557 0.08091998368 0) (-0.001354371077 0.08091936431 0) (-0.001357275327 0.08007623906 0) (-0.001434170963 0.08007687183 0) (0.001127517282 0.07933014496 0) (0.0009801640822 0.07933046725 0) (0.0008330247568 0.07933054 0) (0.0008297958521 0.07919030044 0) (0.0006829983657 0.07919031871 0) (0.0006861277562 0.07933051974 0) (0.0006724839742 0.07877025849 0) (0.0006761508791 0.07891016867 0) (0.000695105269 0.07975143895 0) (0.0006892810817 0.07947078591 0) (0.001130295521 0.07947037439 0) (0.0009830176443 0.0794706309 0) (3.662718201e-05 0.07975141595 0) (0.0001101956799 0.07975130122 0) (0.0001113422187 0.07982146977 0) (-0.001428755877 0.07676908067 0) (-0.001355176867 0.07676977565 0) (-0.001653306278 0.07676845735 0) (-0.001578285303 0.07676835925 0) (-0.00165512946 0.07655727505 0) (-0.001579085434 0.0766978358 0) (-0.001654040255 0.07669806407 0) (-0.001594373206 0.07761883119 0) (-0.002476329834 0.07726951804 0) (-0.002624333949 0.07726976623 0) (-0.002181360959 0.07726786605 0) (-0.00218336075 0.07755163948 0) (-0.0003809443125 0.07764922755 0) (-0.0003867891015 0.07751021974 0) (-0.0003926437149 0.07737110751 0) (-0.0002516647753 0.07737339982 0) (-0.0001095026834 0.07737522729 0) (-0.001057067462 0.07655363066 0) (-0.001056899062 0.07669481752 0) (-0.001132316777 0.07669596308 0) (-0.001133290343 0.07676728176 0) (-0.001057727205 0.07676600465 0) (-0.001282574262 0.07676995457 0) (-8.366443651e-05 0.07793053719 0) (-0.0002273444776 0.07792930738 0) (-0.000372684093 0.07785810829 0) (-0.0003754257168 0.07778848565 0) (-0.00376729404 0.08810519771 0) (-0.00376565879 0.08838760214 0) (-0.00376395875 0.08866992779 0) (-0.002869686784 0.0889470789 0) (-0.002871452816 0.08866464789 0) (-0.003466352204 0.0886681802 0) (-0.003464677833 0.08895057523 0) (-0.003469740247 0.0881033721 0) (-0.003458320585 0.08980205517 0) (-0.003455650758 0.09008688361 0) (-0.003462587419 0.08923467852 0) (-0.002867543429 0.08923128894 0) (-0.001977878942 0.08894290067 0) (-0.001976742334 0.08908494845 0) (-0.001975605496 0.0892270315 0) (-0.001974281191 0.08936982122 0) (-0.001527069008 0.08951106526 0) (-0.001528632416 0.08936766194 0) (-0.001825718656 0.08936908353 0) (-0.001824343636 0.08951163912 0) (-0.001829355579 0.08894216454 0) (-0.001828219355 0.08908415355 0) (-0.001820834063 0.08979905714 0) (-0.001671924232 0.08979950049 0) (-0.001669899663 0.08994352119 0) (-0.001667334304 0.09008835245 0) (-0.001822875327 0.08965448015 0) (-0.001525107676 0.08965540246 0) (0.0005402795297 0.08995129385 0) (0.0006190628886 0.08995132661 0) (-0.001991466991 0.08682617433 0) (-0.001990639333 0.08696691282 0) (-0.001989812614 0.08710750765 0) (-0.001544032173 0.08724551019 0) (-0.001544951338 0.08710475924 0) (-0.001841486426 0.0871065782 0) (-0.001840632563 0.08724732957 0) (-0.001843179984 0.08682524514 0) (-0.001838015917 0.08767001436 0) (-0.001837134995 0.08781090923 0) (-0.00183976453 0.08738825065 0) (-0.001543098753 0.0873864439 0) (0.003534764284 0.08156955293 0) (0.003237807342 0.08157077384 0) (0.002941137044 0.08157188839 0) (0.002937250208 0.08129070026 0) (0.003241849708 0.0818517781 0) (0.003538637207 0.08185061054 0) (0.002648798743 0.08185435795 0) (0.004698424969 0.08154550934 -3.56242813e-13) (0.004136659783 0.08212932927 0) (0.003549622335 0.08269475401 0) (0.0004180258053 0.08073528187 0) (0.0004169229039 0.08066499549 0) (0.0003424368366 0.08066540355 0) (0.000340386576 0.08045424885 0) (0.000341133272 0.0805245898 0) (0.0004226400747 0.08101666116 0) (0.0004216948619 0.0809463215 0) (0.0004204599661 0.08087602293 0) (0.0004943803248 0.08087578835 0) (0.0004879360907 0.07765398902 0) (0.0004937808796 0.07779299683 0) (0.0003471964735 0.07779284392 0) (0.0003413923421 0.07765386196 0) (0.0003580051095 0.07807136161 0) (0.0005043468497 0.07807155529 0) (6.612662391e-05 0.07807064247 0) (0.001099530229 0.07821011029 0) (0.0008032795623 0.07821088252 0) (0.0004991243819 0.07793224301 0) (0.0006686733205 0.0786303362 0) (0.0006647201976 0.07849059768 0) (0.0005178959082 0.07849051164 0) (-0.00153659564 0.08837426005 0) (-0.00153759854 0.08823268681 0) (-0.001834369056 0.08823445506 0) (-0.001833405507 0.08837600244 0) (-0.001836239903 0.0879519738 0) (-0.001978868449 0.08880137828 0) (-0.00183037171 0.08880056526 0) (-0.00183241652 0.08851744516 0) (-0.001980873738 0.08851831016 0) (-0.001535567387 0.08851571558 0) (-0.001979897726 0.08865976603 0) (-0.0007743873274 0.0899500091 0) (-0.0006995173704 0.08995078576 0) (-0.0006215626801 0.09002772514 0) (-0.0006181652062 0.09010357757 0) (-0.0007043214616 0.08965453922 0) (-0.0007800885339 0.08965378801 0) (0.001376836813 0.08964784188 0) (0.001674712015 0.08964323351 0) (0.00167290666 0.09007478076 0) (0.001673689695 0.08993068634 0) (0.001525677501 0.08907369769 0) (0.001525940748 0.08921600847 0) (0.001377178638 0.08921818547 0) (0.002121029334 0.08935144777 0) (0.001972277111 0.08935313884 0) (0.001971351573 0.08906941193 0) (0.0004981278747 0.08115744758 0) (0.0004239156474 0.08115778855 0) (0.0004233123003 0.08108719851 0) (0.0004230908078 0.08151088139 0) (0.0004233220144 0.0814402859 0) (0.0004994553812 0.0814395275 0) (0.0005746065862 0.08143897142 0) (0.001764164075 0.08213895837 0) (0.001762200512 0.08199827955 0) (0.001760472631 0.0818576906 0) (0.001313569273 0.08157773684 0) (0.001315520373 0.08171850717 0) (0.00161260091 0.0818582122 0) (0.001464950617 0.08185864093 0) (0.001463013601 0.08171802723 0) (0.001461062842 0.08157730914 0) (0.001616370886 0.08213950558 0) (0.001614446248 0.08199878732 0) (0.001457005368 0.08129599151 0) (0.001455055036 0.08115533872 0) (0.001452752161 0.08101470129 0) (0.001459164495 0.08143661682 0) (0.001311632001 0.08143708396 0) (0.00132810781 0.082704011 0) (0.001329758608 0.08284479635 0) (0.001625123387 0.08284376869 0) (0.001623459272 0.08270294424 0) (0.001628505562 0.08312567846 0) (0.001765892894 0.08227969098 0) (0.001618125741 0.08228022495 0) (0.001621769549 0.08256219832 0) (0.001769536276 0.08256159904 0) (0.001326496705 0.08256330375 0) (0.001767741217 0.0824207232 0) (-0.0001944214432 0.07925982486 0) (-0.0001945408206 0.07918924471 0) (-0.0001205501975 0.07918900968 0) (-4.709964484e-05 0.07918897408 0) (-0.0005083635653 0.07820741906 0) (-0.0005058947314 0.0782770696 0) (-0.0002104241418 0.07841776471 0) (-0.0002825176083 0.07841722982 0) (-0.0002890525661 0.07820773702 0) (-0.0002867756335 0.07827740187 0) (-0.0007027753312 0.09127069638 0) (-0.0007064605236 0.09112978586 0) (-0.0005543197268 0.09113038444 0) (-0.0005523678719 0.09127047038 0) (-0.0005598043961 0.09084952151 0) (-0.0007190911057 0.09084487502 0) (-7.030951871e-05 0.09085697473 0) (-0.0002367597768 0.09085588578 0) (-0.001353045713 0.09067271292 0) (-0.001202786681 0.09067415837 0) (-0.001197850854 0.09081917751 0) (-0.00134981148 0.09081576836 0) (-0.0008838689867 0.09083456986 0) (-0.0008934808673 0.09068691031 0) (-0.0008556211607 0.09126973671 0) (-0.0008640830227 0.0911261786 0) (-0.0007624847602 0.09024883961 0) (-0.0009128732973 0.09024656316 0) (-0.0009203912381 0.09009454694 0) (-0.0009024077755 0.09053814004 0) (-0.001356744136 0.09052857646 0) (-0.001205963107 0.09053115479 0) (0.001221013756 0.09037278149 0) (0.001070908663 0.09037630861 0) (0.0009194166403 0.09038165633 0) (0.0009221578386 0.09023641387 0) (0.0005807068124 0.09126109088 0) (0.0005822307195 0.09112024561 0) (0.0007337347367 0.09111773463 0) (0.0007330162253 0.09125830951 0) (0.0007460958756 0.09082958605 0) (0.0005883326677 0.09083663215 0) (0.001213437634 0.09080625581 0) (0.001060143726 0.09081268237 0) (0.000104907574 0.09085393405 0) (0.0004325906523 0.09084158184 0) (0.0004275663107 0.09126400829 0) (0.000428081916 0.09112376257 0) (0.001003662499 0.08943775768 0) (0.001003834174 0.08950984601 0) (0.001002608328 0.08929373325 0) (0.001078356303 0.08929316021 0) (0.001078214417 0.08922163331 0) (0.0006973593575 0.08987640232 0) (0.0008519634871 0.08987300908 0) (0.0007726460677 0.09009639598 0) (0.0007729932946 0.09002356658 0) (0.0007743546224 0.08994942565 0) (0.00085103935 0.08994669668 0) (0.0007734460595 0.08958409826 0) (0.0007736528762 0.08965636791 0) (0.0006946853787 0.08965573816 0) (0.0009280172991 0.08965506858 0) (0.001004090155 0.08965244418 0) (0.001004081892 0.08958117892 0) (0.001149409562 0.08708688961 0) (0.001221075764 0.08708627793 0) (0.001224914016 0.08737002631 0) (0.001153331656 0.08737067662 0) (0.001127339874 0.08482017674 0) (0.001202029767 0.08481978041 0) (0.001203645379 0.08510317759 0) (0.001128501754 0.08510369443 0) (0.0008834163908 0.08256496953 0) (0.0009589800793 0.08270537669 0) (0.0006573531155 0.08256668092 0) (0.0007332965694 0.08256604131 0) (0.0007327862986 0.08263670392 0) (0.0007318618455 0.08270734313 0) (0.0007305283599 0.08214254774 0) (0.0007311932025 0.08221295452 0) (0.000731488353 0.08228335066 0) (0.0006557815465 0.08228402792 0) (0.0007318821911 0.08277785861 0) (0.0007336522184 0.08284810145 0) (0.0006556449263 0.08284910718 0) (0.001035463713 0.08291625428 0) (0.000961493016 0.08291658061 0) (0.0009597868528 0.08277571725 0) (-0.001730930262 0.08049995743 0) (-0.001731651646 0.08035949252 0) (-0.001585610245 0.08035869554 0) (-0.001585230176 0.08042889521 0) (-0.00158466675 0.08049917205 0) (-0.001585858773 0.08028863868 0) (-0.001513320963 0.08028829558 0) (-0.00202573472 0.08022078667 0) (-0.001878805132 0.08021999694 0) (0.0005564820329 0.0801727735 0) (0.0004100524208 0.08017272406 0) (0.0002608424376 0.08003211868 0) (0.000336513791 0.08017281248 0) (0.0003396044465 0.08038388201 0) (0.0003376976662 0.08024309833 0) (0.0004112131286 0.08024306231 0) (-0.001598169049 0.07825157658 0) (-0.001598536058 0.07818137682 0) (-0.001597584744 0.07811105091 0) (-0.001527226725 0.07811091796 0) (-0.002034421944 0.07797251977 0) (-0.001888092192 0.07797187763 0) (-0.00174191678 0.07811160163 0) (-0.001814809773 0.0779715558 0) (-0.001815731112 0.07776047209 0) (-0.001816267905 0.07769027344 0) (-0.001815048056 0.07790106786 0) (-0.001888330304 0.07790141581 0) (-0.002032084258 0.07853448745 0) (-0.001885650536 0.07853376627 0) (-0.001738441142 0.0786738231 0) (-0.001740762532 0.07839235047 0) (-0.001523500962 0.07839144104 0) (-0.001595725751 0.07839171678 0) (-0.001597097722 0.07832162807 0) (-0.001165031609 0.08844296305 0) (-0.001165791824 0.088372152 0) (-0.001163532449 0.08858412817 0) (-0.001238083392 0.08858460196 0) (-0.0009344754205 0.08893744773 0) (-0.0009320729709 0.08886593295 0) (-0.0009303091715 0.08879462216 0) (-0.0008493982902 0.08879344073 0) (-0.001241509734 0.08816032903 0) (-0.001167482254 0.08815989784 0) (-0.001166515273 0.08830117092 0) (-0.001080152925 0.08958236769 0) (-0.001079196882 0.08965456584 0) (-0.0008530446648 0.08980087397 0) (-0.0008543785358 0.0897272194 0) (-0.001004890524 0.08965383896 0) (-0.0009302055086 0.0896540957 0) (-0.0009290935561 0.08972696807 0) (-0.0009279522813 0.08979973054 0) (-0.001005737409 0.08958195617 0) (-0.0009243509181 0.08994760435 0) (-0.0009222645492 0.09002148833 0) (-0.0009263387235 0.08987341333 0) (-0.00085156619 0.08987427161 0) (-0.000861170766 0.08907973082 0) (-0.0009359263352 0.08907987028 0) (-0.0009360002248 0.08900875565 0) (-0.0009315397902 0.08950937826 0) (-0.000931684217 0.08943726233 0) (-0.0009316004244 0.08936569346 0) (-0.0008544606131 0.08936525109 0) (-0.001082507712 0.08936638116 0) (0.001151459232 0.08822275364 0) (0.001225905149 0.08822179728 0) (0.001226431796 0.08850644236 0) (0.001151058369 0.08850716968 0) (0.001074841358 0.08850771965 0) (0.001073733451 0.0884364668 0) (-0.001176530775 0.08618810572 0) (-0.001174999497 0.08611778908 0) (-0.001179741989 0.08632897507 0) (-0.001327659888 0.08625942542 0) (-0.001253223706 0.08625897851 0) (-0.001253580009 0.08632941808 0) (-0.001328992937 0.08590809683 0) (-0.001403764514 0.08590858512 0) (-0.001174805341 0.08590692012 0) (-0.001174212743 0.08604746424 0) (-0.001171656846 0.08731364628 0) (-0.00117247387 0.087243136 0) (-0.001170011016 0.08745447085 0) (-0.001245208188 0.08745498804 0) (-0.00124898098 0.08703266345 0) (-0.001174815232 0.08703220524 0) (-0.001173260259 0.08717271694 0) (0.001145207648 0.0859522543 0) (0.001216032287 0.08595197464 0) (0.001215650012 0.08623543711 0) (0.001144338565 0.0862357722 0) (0.001509797893 0.08609206702 0) (0.001510644155 0.08623365434 0) (0.001362566113 0.08623458217 0) (0.001362704789 0.0861638175 0) (0.001362372611 0.0860929514 0) (0.001361662208 0.08637616787 0) (0.001362048688 0.08630534933 0) (0.001287239152 0.0863058248 0) (0.001807933742 0.08637337107 0) (0.001659738157 0.08637429967 0) (0.001512259084 0.08651694705 0) (0.001803333404 0.08580692522 0) (0.001655307177 0.08580778741 0) (0.001508663708 0.08595039015 0) (0.001287193009 0.08588075921 0) (0.001361185928 0.0859512357 0) (0.001360527158 0.08588035868 0) (0.001361935695 0.08602204682 0) (0.001517790101 0.08722590699 0) (0.001518651384 0.08736779461 0) (0.001370861693 0.08736887729 0) (0.001370646375 0.08729790595 0) (0.001370130671 0.08722693657 0) (0.001371142056 0.08743980902 0) (0.001297482338 0.08744035536 0) (0.001815810795 0.08750757749 0) (0.001667550761 0.08750863712 0) (0.001812105904 0.08694025072 0) (0.001663845444 0.08694124505 0) (0.001514267955 0.0868005637 0) (0.001516641917 0.08708408654 0) (0.001291960515 0.08701480309 0) (0.001368395114 0.0870851722 0) (0.001366887253 0.08701427461 0) (0.001365534921 0.08694319314 0) (0.001369497765 0.0871560202 0) (-0.001265818662 0.08387012384 0) (-0.001264584192 0.08394035712 0) (-0.001263365822 0.08401052519 0) (-0.001340025322 0.08401111724 0) (-0.001343264991 0.08373002937 0) (-0.001268289759 0.08372952669 0) (-0.001267054693 0.08379985139 0) (-0.001262880872 0.08499498482 0) (-0.001262078614 0.08506523398 0) (-0.001261268519 0.08513548309 0) (-0.001335239754 0.08513592697 0) (-0.001337534822 0.08485488518 0) (-0.001264357398 0.08485448566 0) (-0.001263659622 0.0849247355 0) (0.0009679254524 0.08376297416 0) (0.0009663477919 0.08362218832 0) (0.001190714053 0.08362081454 0) (0.001116613094 0.08362119397 0) (0.001118960684 0.08397367835 0) (0.001042957153 0.08397431836 0) (0.001043407858 0.08390373449 0) (0.001043642556 0.08383307368 0) (-0.001358906288 0.08176289079 0) (-0.001431201262 0.08176321924 0) (-0.001429906877 0.08148182748 0) (-0.001355024373 0.08148132541 0) (-0.00126343026 0.08274505829 0) (-0.001264998815 0.0828154666 0) (-0.00126831041 0.08288596466 0) (-0.001345595329 0.08288658691 0) (-0.001421431064 0.08288712134 0) (-0.001421896356 0.08260587168 0) (-0.001344436515 0.08260523523 0) (-0.001264656539 0.08260447913 0) (-0.001263527688 0.08267473922 0) (0.0006530971574 0.08186136969 0) (0.0006534546562 0.08193171318 0) (0.0008032662151 0.08200123741 0) (0.000728931221 0.08200157918 0) (0.0007281350663 0.08193126467 0) (0.0007276249324 0.0818609483 0) (0.0008041452468 0.08207164279 0) (0.0008716606345 0.08157882029 0) (0.0008735500684 0.08171974776 0) (0.0007260119238 0.08172014963 0) (0.0007250678732 0.08164958794 0) (0.00072436595 0.08157910303 0) (0.000726758252 0.08179063425 0) (0.0006523713578 0.08179102861 0) (0.0005758686792 0.08172123462 0) (0.0004985509714 0.08172223585 0) (0.0004994082482 0.08200410987 0) (0.0005771889999 0.08200301419 0) (-0.001590749479 0.07937572913 0) (-0.00159135217 0.07930543948 0) (-0.001591550333 0.07923509495 0) (-0.001519651966 0.0792348344 0) (-0.002029928906 0.07909653469 0) (-0.001883377726 0.07909579969 0) (-0.001736874356 0.07923574358 0) (-0.001737079038 0.0789544008 0) (-0.002027942655 0.07965868753 0) (-0.00188116962 0.07965792495 0) (-0.00173389808 0.07979749812 0) (-0.001735468892 0.07951696097 0) (-0.001515570248 0.07951586452 0) (-0.001589087411 0.07951624013 0) (-0.001589950882 0.07944601749 0) (-4.278735908e-05 0.07947025086 0) (-0.000117904306 0.07947083283 0) (-0.001363391889 0.0806386146 0) (-0.001436827908 0.0806390158 0) (-0.001441592083 0.08035808156 0) (-0.001371244854 0.08035789644 0) (0.0002476321603 0.07933003972 0) (0.0002506117571 0.07947050294 0) (0.0001046291167 0.07947009794 0) (0.0001032377531 0.07939983957 0) (0.0001018168625 0.07932965975 0) (0.0001075649054 0.07961065287 0) (0.000106034932 0.07954036928 0) (3.268212641e-05 0.07954031281 0) (0.0005457395589 0.07961118722 0) (0.0003996610984 0.07961110937 0) (0.0002563617297 0.07975139156 0) (-0.002037362706 0.07741020338 0) (-0.001891345805 0.07740965471 0) (-0.001890978113 0.07747995895 0) (-0.001818152806 0.0774796401 0) (-0.001818611919 0.07740933646 0) (-0.001816856768 0.07762010125 0) (-0.001806094956 0.07719604914 0) (-0.001787327288 0.07711792708 0) (-0.001818313535 0.07733902787 0) (-0.0018910213 0.07733934595 0) (-0.0007495302159 0.077225563 0) (-0.0008218174174 0.07722508163 0) (-0.0008263705275 0.07715626753 0) (-0.0008347032221 0.0770888887 0) (-0.0007417614124 0.07750539357 0) (-0.0006696064025 0.07750603254 0) (-0.0006634932465 0.07778613514 0) (-0.000737457216 0.07778629163 0) (-0.0003656722366 0.07806742818 0) (-0.000585716175 0.07806707583 0) (-0.0005114197647 0.07806682573 0) (-0.0005099313284 0.07813714878 0) (-0.0004468440132 0.07778765902 0) (-0.0005182689251 0.07778681937 0) (-0.0005204827151 0.0777170235 0) (-0.0005226320832 0.07764729251 0) (-0.0004441111052 0.07785734702 0) (-0.0005888289158 0.07785642438 0) (-0.003764979798 0.0743215803 0) (-0.003761308085 0.07488382661 0) (-0.002859739259 0.07544033988 0) (-0.002861575543 0.07515915142 0) (-0.003160878649 0.075161106 0) (-0.003159042366 0.07544229445 0) (-0.003458332412 0.07544424895 0) (-0.003452824416 0.07628768372 0) (-0.003456496129 0.07572543741 0) (-0.002857902976 0.07572152833 0) (-0.001961843 0.07543447622 0) (-0.001960006717 0.07571566468 0) (-0.001359574669 0.07599294405 0) (-0.001509222304 0.07599392131 0) (-0.001658867327 0.07599489856 0) (-0.001808525411 0.07599587589 0) (-0.001805758352 0.07641759319 0) (-0.001807607696 0.07613640482 0) (-0.001358663484 0.07613347302 0) (-0.001508304589 0.07613445024 0) (0.001023800688 0.07429030748 0) (0.001027472401 0.07485255379 0) (0.00043254659 0.07541883982 0) (0.000430710307 0.07513765136 0) (0.0001314124245 0.0751396059 0) (0.002228335191 0.07540711253 0) (0.001629742038 0.07541102161 0) (0.001335946928 0.07625641096 0) (0.001334111497 0.0759753531 0) (0.001034817533 0.07597730762 0) (0.0005329291313 0.07905013689 0) (0.0003869136429 0.07904990189 0) (0.000244289972 0.07918985315 0) (9.870751559e-05 0.07918932799 0) (2.590369615e-05 0.07918913732 0) (0.0001003932746 0.07925946689 0) (0.001064541123 0.07709385676 0) (0.0007622688479 0.07709674499 0) (0.0004749068981 0.07737643927 0) (2.622170004e-05 0.07723823366 0) (0.0001801291463 0.07737675781 0) (0.0001721726545 0.07723858662 0) (0.0001943542901 0.07765384262 0) (0.0001875358577 0.07751514156 0) (-0.0004096917425 0.09071015219 0) (-0.0004188930322 0.09056676609 0) (-0.0003361918563 0.09057033105 0) (-0.000338226043 0.09050003769 0) (-0.0004237652483 0.09049468756 0) (-7.224966026e-05 0.09050805852 0) (-0.0001610118568 0.09050738433 0) (-0.000755523824 0.09039676214 0) (-0.0006761136364 0.09040258069 0) (-0.0005955819968 0.09040872627 0) (-0.0005921244105 0.09048118367 0) (-0.0005132598064 0.09048465743 0) (-0.000517808873 0.09041166253 0) (-0.0005102267185 0.09055631174 0) (-0.0005349000168 0.09018670943 0) (-0.0005212422524 0.09033951191 0) (-0.0007594694881 0.09032236579 0) (-0.0006815396324 0.09032690228 0) (0.0006164550834 0.09024919539 0) (0.0005396214267 0.09025171896 0) (0.0004610684275 0.090255761 0) (0.0004626716037 0.09018045411 0) (0.000277240019 0.09070566362 0) (0.00028151405 0.09056354262 0) (0.0003618275256 0.09055988092 0) (0.000364760662 0.09048782978 0) (0.0002824086788 0.09049273644 0) (0.0004481789478 0.09048120519 0) (0.0004537556864 0.09040616675 0) (2.366585362e-05 0.09050591448 0) (0.0002010490128 0.09049639583 0) (0.0002007138366 0.09056687053 0) (0.001046503883 0.08468002604 0) (0.001045720474 0.0846094633 0) (0.0009692470662 0.08453955157 0) (-0.001718781203 0.08274833233 0) (-0.001719568742 0.08260773725 0) (-0.001571869108 0.08260686413 0) (-0.001571370899 0.08267715446 0) (-0.001571055449 0.08274745904 0) (-0.001572262834 0.08253657312 0) (-0.001497962565 0.08253611403 0) (-0.002015507488 0.08246887372 0) (-0.001867899276 0.0824680012 0) (-0.002012631686 0.08303124278 0) (-0.001864918992 0.08303036957 0) (-0.001718045906 0.08288892775 0) (-0.001570385368 0.08288806795 0) (-0.001496124279 0.08288760911 0) (-0.001570648577 0.08281776303 0) (-0.002023383633 0.08078280651 0) (-0.001876245251 0.0807819893 0) (-0.001730103458 0.08064056531 0) (-0.001509341428 0.08070967844 0) (-0.001583500292 0.08063979078 0) (-0.001582871395 0.08071009332 0) (-0.001584103069 0.08056948808 0) (-0.00159201302 0.07797024451 0) (-0.001589562243 0.07789953003 0) (-0.001741285688 0.07783024033 0) (-0.001665941019 0.07782970911 0) (-0.001209927034 0.07599196678 0) (-0.001209019767 0.07613249578 0) (-0.0009097140483 0.07613054118 0) (-0.0009106265392 0.07599001222 0) (-0.000907953515 0.07641173013 0) (-0.000764647552 0.07542665801 0) (-0.0007628112689 0.07570784647 0) (-0.001060276786 0.0759909895 0) (0.00152352329 0.08836182532 0) (0.00152408521 0.08850387164 0) (0.001375592053 0.08850523319 0) (0.001375298118 0.08843422318 0) (0.001375081862 0.08836310817 0) (0.001301199849 0.08850561451 0) (0.001821556533 0.08864341738 0) (0.00167307618 0.08864473967 0) (0.001818969882 0.08807532578 0) (0.001670592903 0.08807647759 0) (0.001522933373 0.08821949186 0) (0.001299793344 0.08815023753 0) (0.001374581832 0.08822053902 0) (0.001374132027 0.08814966064 0) (0.001374851097 0.08829177123 0) (-0.001712416874 0.08387289665 0) (-0.001713270055 0.08373224975 0) (-0.002009679228 0.08359335012 0) (-0.001861862136 0.08359246317 0) (-0.001200099303 0.08344807684 0) (-0.001270729683 0.08358890322 0) (-0.001271940729 0.08351865673 0) (0.0009720613731 0.08425650422 0) (0.001043839269 0.08411539608 0) (0.001045538403 0.08418578305 0) (0.001488462727 0.08383103082 0) (0.001489892182 0.08397192211 0) (0.001787141906 0.08411153461 0) (0.001639232198 0.08411223931 0) (0.00149976929 0.08496039539 0) (0.00150091483 0.08510181097 0) (0.001352808365 0.08510238634 0) (0.001352425566 0.08503176874 0) (0.001351898251 0.08496102147 0) (0.00135311246 0.08517295222 0) (0.001278433356 0.08517340072 0) (0.001798254526 0.08524120085 0) (0.001650201837 0.08524201096 0) (0.001792878416 0.08467596167 0) (0.001644916553 0.08467667976 0) (0.001498386788 0.08481869402 0) (0.001275531015 0.08474896765 0) (0.001350476142 0.08481925506 0) (0.001349701364 0.08474861389 0) (0.001351226164 0.08489010536 0) (-0.001725025261 0.08162418517 0) (-0.001725590689 0.0814836017 0) (-0.001578348166 0.08148273156 0) (-0.001578254741 0.0815530376 0) (-0.001578069809 0.08162335609 0) (-0.001578284611 0.08141246369 0) (-0.001503892919 0.081412004 0) (-0.002020862847 0.08134481218 0) (-0.001873502696 0.08134395434 0) (-0.002018250043 0.08190690868 0) (-0.00187081153 0.08190605033 0) (-0.001724303109 0.08176476762 0) (-0.001503567371 0.08183385479 0) (-0.001577347316 0.08176399078 0) (-0.001576914579 0.08183425542 0) (-0.001577767248 0.08169368688 0) (-0.001275518703 0.0830269646 0) (-0.001277088735 0.0830973468 0) (-0.001206566313 0.08316738882 0) (-0.001194111821 0.08232293554 0) (-0.001268111446 0.08246403208 0) (-0.001270013212 0.08239381622 0) (0.0008697490565 0.08143810194 0) (0.0006472642351 0.08129777916 0) (0.0006481287298 0.08136815853 0) (0.0007227052153 0.0814383961 0) (0.0007217750779 0.08136796492 0) (0.0007208635661 0.08129758587 0) (0.0007234965723 0.08150877594 0) (-0.001509629438 0.07703957692 0) (-0.001496609685 0.0769792813 0) (-0.001418993494 0.07698138661 0) (-0.001318116257 0.07701063722 0) (-0.001952557955 0.07684028722 0) (-0.001802690054 0.07683943913 0) (-0.001650585346 0.07697911135 0) (-0.001726362966 0.07697934499 0) (-0.001739330159 0.07704368914 0) (-0.001744385153 0.07754962174 0) (-0.001670920231 0.07754924647 0) (-0.0006036980446 0.07736732674 0) (-0.0006006958384 0.07743705216 0) (-0.0005275646122 0.07750797834 0) (-0.0005302545065 0.077438277 0) (-0.0005330996478 0.0773686028 0) (-0.0005254317961 0.07757777474 0) (-0.0004044526586 0.07709241349 0) (-0.0003989497887 0.07723206352 0) (-0.0007559014983 0.07683273375 0) (-0.0009064285988 0.0768342392 0) (-0.000982638222 0.07683552053 0) (-0.0009342898974 0.07702746075 0) (-0.0009834158293 0.07690644611 0) (-0.0008099813836 0.0769655241 0) (-0.0008855524372 0.07696418909 0) (-0.000906872262 0.07690490138 0) (-0.001223592079 0.07699264898 0) (-0.001204072603 0.07704385071 0) (-0.001263989545 0.0770518173 0) (-0.001306859447 0.07703198353 0) (0.0002664527375 0.08059561924 0) (0.0001900369001 0.08059652315 0) (0.0003464736249 0.08144115346 0) (0.0004241772285 0.08129884419 0) (0.0004236113101 0.08136958554 0) (-0.0002687481196 0.07918952035 0) (-0.000196310561 0.07904882584 0) (-0.0001950510798 0.07911888916 0) (-0.0003508301152 0.07862759017 0) (-0.0004242662509 0.07862757343 0) (-0.0003569477916 0.07834679538 0) (-0.0004294781121 0.07834648538 0) (0.0009266148479 0.08936631244 0) (0.0008491098886 0.08936623998 0) (0.0008515216574 0.08965595212 0) (0.0007752716935 0.08980105606 0) (0.0007745396499 0.08972835883 0) (0.00104896077 0.08475044725 0) (0.0007320380284 0.08242452198 0) (0.0007328059941 0.08249531992 0) (0.0008087713288 0.08256543087 0) (0.0008882001438 0.08312850161 0) (0.0008120273668 0.08312902517 0) (0.0008860562559 0.08284660987 0) (0.0008105019992 0.08284724694 0) (0.0007363496396 0.08291815538 0) (0.000111565381 0.08017424231 0) (0.0001118353491 0.08024478228 0) (0.0002643455039 0.08031374032 0) (0.0001889974294 0.08031434993 0) (-0.001669457075 0.07811129823 0) (-0.001595118348 0.07804072816 0) (-0.001592626368 0.07853232289 0) (-0.001594196034 0.07846196119 0) (-0.001668172396 0.0783920201 0) (-0.0009319497292 0.08865280493 0) (-0.0009345331898 0.08858220169 0) (-0.001089415241 0.08851303711 0) (-0.001013860472 0.0885124784 0) (-0.001086177256 0.08879626697 0) (-0.001009238948 0.08879556861 0) (-0.0009303066375 0.08872361021 0) (-0.001090627473 0.08794720912 0) (-0.001012824231 0.08794655736 0) (-0.001093422589 0.08822999512 0) (-0.001020323271 0.0882296353 0) (-0.000933149389 0.08922230179 0) (-0.0009347142349 0.08915087821 0) (-0.00101087436 0.08907993917 0) (0.001077587222 0.08865039169 0) (0.001076593223 0.08857898136 0) (0.0009978188929 0.08850813122 0) (-0.001103196101 0.0862579857 0) (-0.001028628266 0.08625749874 0) (-0.001108051036 0.08653975335 0) (-0.001037500749 0.08653946242 0) (-0.001098669832 0.08569548994 0) (-0.00101849657 0.0856947574 0) (-0.001093349287 0.08597642055 0) (-0.001010585372 0.08597559272 0) (-0.001094657022 0.08738356763 0) (-0.001017229832 0.08738293139 0) (-0.001089871519 0.08766516783 0) (-0.001009834426 0.08766438394 0) (-0.001103930393 0.08682074404 0) (-0.00103126232 0.08682034785 0) (-0.001099381398 0.08710192784 0) (-0.0010243918 0.08710142506 0) (-0.001105659931 0.08541530164 0) (-0.001028449457 0.08541467987 0) (0.0008903084468 0.08369334418 0) (0.0008126338515 0.0836942955 0) (0.0008915806189 0.08341075097 0) (0.0008171031821 0.08341108061 0) (-0.001189928767 0.082885283 0) (-0.001272329704 0.08295649346 0) (-0.001266282818 0.08253424841 0) (-0.00118342599 0.08260364826 0) (-0.001742815851 0.07726792779 0) (-0.001670513638 0.07726750787 0) (-0.0008180405819 0.07736462538 0) (-0.0008162693072 0.07743465924 0) (0.003611970339 0.09033205146 0) (0.003313839459 0.09033550822 0) (0.003014247374 0.09091121156 0) (0.003014142392 0.09062713579 0) (0.003313847456 0.09062073267 0) (0.0036119797 0.09061748487 0) (0.002716010187 0.09091438951 0) (0.004722371752 0.08959663782 -3.52579077e-13) (0.004203552115 0.09106610223 -3.583244812e-13) (0.003486852186 0.07873906347 -3.586853037e-13) (0.003498786301 0.07932227402 0) (0.002904689232 0.0793246648 0) (0.002899095845 0.07904415392 0) (0.002909798877 0.07960510047 0) (0.002613337544 0.07960621366 0) (0.004576609332 0.07776050353 -3.492761635e-13) (0.004084455122 0.0795016353 -3.570754803e-13) (-0.0001980195887 0.07897884382 0) (-0.0002743460091 0.0789091401 0) (0.001296362755 0.0804529168 0) (0.001298677241 0.08059333212 0) (0.001448513463 0.08073363301 0) (0.001446223648 0.0805929955 0) (0.001443895419 0.08045247578 0) (0.001450763415 0.0808741663 0) (0.001729806691 0.07988984036 0) (0.00173474911 0.08017066896 0) (-0.0002580888213 0.09043278639 0) (-0.0002650118675 0.09036126589 0) (-0.000447008591 0.09027105316 0) (-0.0003636820989 0.09027917228 0) (0.0002965258474 0.09026988725 0) (0.0002105705607 0.09027762291 0) (0.0001101920012 0.0904319343 0) (0.0001125063348 0.09035992638 0) (0.001368827074 0.09065531667 0) (0.001518151622 0.0906532653 0) (0.00181619629 0.0909326069 0) (0.001812443128 0.09121988818 0) (0.001671616994 0.09021929513 0) (0.001519345415 0.09051006992 0) (0.001521312686 0.09036531656 0) (0.001671151262 0.09036197795 0) (0.001369634244 0.09051291792 0) (0.001077870992 0.08915024485 0) (0.001000669058 0.0890787745 0) (-0.001705868762 0.08499760344 0) (-0.0017067082 0.08485706094 0) (-0.002003495355 0.08471828132 0) (-0.001855482358 0.0847173931 0) (-0.00200032053 0.08528043945 0) (-0.001852216112 0.08527955063 0) (-0.001705029409 0.08513813288 0) (0.0001870000143 0.08003228744 0) (0.000112055379 0.08010347533 0) (0.0007124945662 0.0807348478 0) (0.0008546578249 0.08045359404 0) (0.0008570327293 0.0805940612 0) (-0.0016645454 0.0786734189 0) (-0.00159103041 0.07860271053 0) (0.0009994158892 0.08879267788 0) (0.001077338872 0.08872156197 0) (-0.002006633642 0.08415571806 0) (-0.001858672972 0.08415481712 0) (-0.001711577606 0.08401341303 0) (-0.001261035834 0.08415091429 0) (-0.001260028273 0.08422120129 0) (-0.001178757164 0.08429078129 0) (-0.001187691286 0.08457270618 0) (-0.001264937022 0.0847139284 0) (-0.001264317524 0.08464359159 0) (-0.001589857692 0.07909428776 0) (-0.001588358697 0.07902382766 0) (-0.001662857045 0.07895395528 0) (0.0001089113256 0.07968102909 0) (0.0001833849758 0.07975131957 0) (0.0003458616654 0.08087644478 0) (0.0004191657872 0.08080564637 0) (0.001823199214 0.08921295968 0) (0.001674589256 0.08921443563 0) (0.001525936595 0.0893593724 0) (0.001526045327 0.08950202247 0) (0.0004243419128 0.0812282622 0) (0.0003491892704 0.08115819818 0) (0.0009106304004 0.09067402634 0) (0.0009158258068 0.09052719481 0) (0.0007660105114 0.09038909845 0) (0.0007699072762 0.09024280697 0) (0.0007712654591 0.09016978447 0) (0.0006932609927 0.09024602286 0) (0.0008063330671 0.0822828619 0) (0.0007316195407 0.0823538393 0) (-0.001007518243 0.08936605862 0) (-0.0009320045147 0.08929401545 0) (-0.00118499846 0.08400985669 0) (-0.00126217096 0.08408069343 0) (-0.001269514463 0.08365918886 0) (-0.001192615971 0.08372899333 0) (-0.001187250267 0.0851350389 0) (-0.001259651027 0.08527596826 0) (-0.001260458425 0.0852057322 0) (-0.001264856742 0.08478422146 0) (-0.001191928159 0.08485411715 0) (0.001042918897 0.08404486035 0) (0.000965342123 0.08397519092 0) (-0.001664062194 0.07923541175 0) (-0.001591056471 0.07916471978 0) (-0.001587349626 0.07965634576 0) (-0.001588211647 0.07958634514 0) (-0.001662343368 0.07951661404 0) (-0.0008196553302 0.07729476029 0) (-0.0008986428634 0.0772262625 0) (-0.0005142715091 0.07792674045 0) (-0.0005128139376 0.07799673717 0) (-0.0004382191677 0.07806697462 0) (0.0004571889254 0.09033189592 0) (0.0003802258757 0.09026200567 0) (-0.001574024108 0.07697887259 0) (-0.001501740762 0.07683956354 0) (-0.001499385601 0.07691020745 0) (-0.00121164712 0.07684237101 0) (-0.001216846629 0.07691737434 0) (-0.001041193448 0.0769652055 0) (-0.001144685101 0.07698521142 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.345926735e-07 5.609421027e-06 -2.775557562e-17) (-5.435104473e-06 0.0001510757646 -5.273559367e-16) (0 0 0) (-1.875352573e-05 0.0007722907001 -2.692290835e-15) (-2.041008883e-05 0.001107051747 -3.858025011e-15) (-1.746284374e-05 0.001387050076 -4.857225733e-15) (-5.777724239e-07 4.610854402e-05 -1.665334537e-16) (-1.47235159e-06 0.001635344973 -5.717648577e-15) (7.769404638e-06 0.001571989555 -5.495603972e-15) (1.501406469e-05 0.001392165231 -4.884981308e-15) (5.032477783e-07 4.695716838e-05 -1.665334537e-16) (1.751990107e-05 0.0007798289733 -2.747801986e-15) (1.239861715e-05 0.0004380115376 -1.526556659e-15) (5.326281373e-06 0.0001559757189 -5.273559367e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.723651436e-05 0.001338878065 -4.801714582e-15) (-0.000199535034 0.002994371447 -1.071365219e-14) (-0.00031069319 0.005123231768 -1.834643548e-14) (-0.0001269480225 0.002104214949 -7.494005416e-15) (-2.251864634e-05 0.0003752489848 -1.33226763e-15) (-0.0004964768267 0.01020465509 -3.652633751e-14) (-0.0005490283959 0.01287129231 -4.607425552e-14) (-0.0005664622628 0.01545210556 -5.53168622e-14) (-0.0003485750546 0.009549779754 -3.400058013e-14) (-0.0001782267371 0.004904954131 -1.737499034e-14) (-0.0004911729216 0.0199065907 -7.127631818e-14) (-0.0004036855449 0.02160374248 -7.735478924e-14) (-0.000290418444 0.02286502344 -8.185119249e-14) (-0.0001963827529 0.01548011236 -5.512257317e-14) (-0.0001175072274 0.009278340054 -3.283484595e-14) (-1.781306424e-05 0.02390651665 -8.55981952e-14) (0.0001236157265 0.02365197402 -8.46822612e-14) (0.0002562517757 0.02289164426 -8.196221479e-14) (0.0001717060057 0.01550109167 -5.52058399e-14) (0.0001019299694 0.009293798067 -3.291811268e-14) (0.0004613439249 0.01995648886 -7.147060721e-14) (0.0005200173372 0.01788601529 -6.403211295e-14) (0.0005435482945 0.01551738022 -5.556666238e-14) (0.0003339307018 0.009598636148 -3.416711358e-14) (0.0001706510969 0.004937649976 -1.748601264e-14) (0.0004821963637 0.01027424988 -3.677613769e-14) (0.0004040665196 0.007640578738 -2.733924198e-14) (0.0003049595768 0.005183042412 -1.856848009e-14) (0.0001251777122 0.002140196356 -7.632783294e-15) (2.264405154e-05 0.0003893807704 -1.360023205e-15) (9.721185072e-05 0.001373929619 -4.912736884e-15) (2.426029007e-05 0.0003162179413 -1.1379786e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0001290139275 0.001306601032 -4.773959006e-15) (-0.0003377644206 0.003647153202 -1.335043187e-14) (-0.0006042866395 0.006988142061 -2.559064072e-14) (-0.0003462162186 0.004025696463 -1.465494393e-14) (-0.0001523113502 0.001780767841 -6.439293543e-15) (-0.001180862227 0.01591837401 -5.828670879e-14) (-0.001435415091 0.02109904794 -7.727152251e-14) (-0.001638878848 0.02648432263 -9.69779812e-14) (-0.001241846138 0.02016992985 -7.344125308e-14) (-0.0008795474312 0.01435742449 -5.198619313e-14) (-0.001839359984 0.03709759545 -1.358357871e-13) (-0.001823990046 0.0419928304 -1.537658889e-13) (-0.00173180441 0.04643744605 -1.700306562e-13) (-0.00141656809 0.03815297655 -1.38916656e-13) (-0.001110306788 0.03003267427 -1.087185897e-13) (-0.00134080572 0.05358482059 -1.96204164e-13) (-0.001061092035 0.05616045581 -2.056410597e-13) (-0.0007410113126 0.05802370516 -2.124689313e-13) (-0.000625289836 0.04905893491 -1.786348847e-13) (-0.0005089078708 0.0399840203 -1.447730824e-13) (-3.217693288e-05 0.05953535315 -2.180200465e-13) (0.0003293969072 0.05917152788 -2.166877788e-13) (0.0006775883324 0.05806662839 -2.126632204e-13) (0.0005673863628 0.04909926006 -1.788014181e-13) (0.0004577146888 0.0400206418 -1.449118603e-13) (0.001280465937 0.05366927425 -1.965649865e-13) (0.001510126072 0.05042875083 -1.846856001e-13) (0.001677467114 0.04655913189 -1.705302566e-13) (0.00136899357 0.03826370442 -1.393329896e-13) (0.001070386254 0.03012992585 -1.091071677e-13) (0.001794650173 0.03724655106 -1.364186542e-13) (0.001737905638 0.03203173955 -1.173228181e-13) (0.001607329302 0.0266434643 -9.758860386e-14) (0.001217237089 0.02030557322 -7.394085344e-14) (0.0008618557024 0.014468188 -5.237477119e-14) (0.001164141635 0.0160630388 -5.884182031e-14) (0.0008849286834 0.01126432194 -4.124478536e-14) (0.0005985233304 0.007068918935 -2.589595205e-14) (0.0003451931824 0.004103095536 -1.496025526e-14) (0.0001531374818 0.001831000372 -6.633582572e-15) (0.0001518216271 0.001562473527 -5.717648577e-15) (2.428236773e-05 0.0002349444451 -8.604228441e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.173314746e-05 0.0005961644993 -2.248201625e-15) (-0.0003087232857 0.002706716354 -1.015854068e-14) (-0.0001567760155 0.001383428626 -5.162537065e-15) (-3.726925806e-05 0.0003314473478 -1.221245327e-15) (-0.001110100612 0.01094202607 -4.102274076e-14) (-0.001586643258 0.01668349561 -6.253331186e-14) (-0.002004876556 0.02261964342 -8.479328351e-14) (-0.001631344301 0.01854788849 -6.911138328e-14) (-0.001261407181 0.01442769699 -5.345723864e-14) (-0.002843013404 0.03748244553 -1.404432126e-13) (-0.003131869832 0.04504834473 -1.688094109e-13) (-0.003311310915 0.05238326385 -1.962874308e-13) (-0.002905371717 0.04621979706 -1.721955911e-13) (-0.002483537907 0.03972103103 -1.471323063e-13) (-0.003318751123 0.06555464133 -2.456090886e-13) (-0.003152327914 0.07109473981 -2.663702592e-13) (-0.002885374351 0.07581959472 -2.840783164e-13) (-0.002630661582 0.06950954755 -2.589317649e-13) (-0.002348229875 0.06236950675 -2.310096558e-13) (-0.002110735456 0.08273810939 -3.100297796e-13) (-0.001635924897 0.08499865225 -3.184952302e-13) (-0.001123871046 0.08654468762 -3.242961455e-13) (-0.001046698131 0.08106175126 -3.019806627e-13) (-0.0009551749597 0.07431819432 -2.75279799e-13) (-4.170111097e-05 0.08774009037 -3.287925487e-13) (0.000505114765 0.0874572666 -3.277378369e-13) (0.001040967736 0.08657751149 -3.244626789e-13) (0.0009693424317 0.08110059999 -3.021749517e-13) (0.00088258737 0.07436067673 -2.75474088e-13) (0.002030704753 0.08280542078 -3.103628465e-13) (0.002456135052 0.079765871 -2.989830605e-13) (0.002812186854 0.07588952098 -2.844668945e-13) (0.002559987491 0.06963069862 -2.594868764e-13) (0.002282445973 0.06250190692 -2.315647674e-13) (0.003282118004 0.06617450032 -2.480515793e-13) (0.00334815317 0.05994149734 -2.247091402e-13) (0.003297394849 0.05301152692 -1.987299214e-13) (0.002852427214 0.04633206042 -1.726674359e-13) (0.002438561161 0.03990832098 -1.478539513e-13) (0.002890743115 0.0385920588 -1.447175713e-13) (0.002544901939 0.03136828626 -1.176281295e-13) (0.002124622833 0.02432892283 -9.123257705e-14) (0.001709977656 0.01970873121 -7.346900865e-14) (0.001308985532 0.01519624147 -5.631606292e-14) (0.001183598192 0.01186760272 -4.449218771e-14) (0.0007367183155 0.006953813003 -2.60624855e-14) (0.0003615195077 0.003223176315 -1.207367539e-14) (0.0001952885289 0.001751823082 -6.52256027e-15) (7.355753334e-05 0.0006638706175 -2.47024623e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-4.061456963e-05 0.0002965881258 -1.1379786e-15) (-8.575831341e-05 0.0006223977636 -2.414735079e-15) (-3.528664693e-07 2.608776893e-06 0) (-0.0001842801859 0.001420877365 -5.467848396e-15) (-0.0006002272746 0.004868939796 -1.870725796e-14) (-0.001129494987 0.009665835668 -3.71092046e-14) (-0.0009153366806 0.007881108895 -3.008704397e-14) (-0.0006997698443 0.006061620368 -2.300937219e-14) (-0.002397447714 0.02305358093 -8.851253064e-14) (-0.003032766543 0.03108578547 -1.193212196e-13) (-0.003607753893 0.03959061284 -1.519895321e-13) (-0.00325702454 0.03596250575 -1.372235658e-13) (-0.002875679902 0.03194811512 -1.211808431e-13) (-0.004437474356 0.05670013635 -2.176314684e-13) (-0.004646090681 0.0646807649 -2.482736239e-13) (-0.004701920706 0.07191340626 -2.760014439e-13) (-0.004441180989 0.06845083022 -2.611244554e-13) (-0.00408114316 0.06349602976 -2.407518629e-13) (-0.004394951938 0.08387295372 -3.218258993e-13) (-0.004023670503 0.08775647066 -3.367028878e-13) (-0.003572428549 0.09073526458 -3.481381849e-13) (-0.003457469434 0.08870775795 -3.383127112e-13) (-0.00329516608 0.08536817528 -3.236300117e-13) (-0.002465505251 0.09337933995 -3.5826897e-13) (-0.00186092323 0.09351623379 0) (-0.001255384243 0.0935147348 0) (-0.001248483809 0.09394792231 -3.582967256e-13) (-0.001226171735 0.09307266708 -3.528566328e-13) (-5.676290036e-05 0.09350827867 0) (0.0005437181101 0.09350423972 0) (0.001151122537 0.09349959394 0) (0.001148195338 0.09393898763 -3.583244812e-13) (0.001130598326 0.09308103653 -3.529676551e-13) (0.002368202561 0.09336775973 -3.583244812e-13) (0.002949825716 0.09256187372 -3.552713679e-13) (0.003485584299 0.0907645571 -3.484157407e-13) (0.003370847855 0.08879636048 -3.38784556e-13) (0.00322856357 0.08572904421 -3.251565683e-13) (0.004323350758 0.08408412479 -3.228806111e-13) (0.004573066917 0.07910680751 -3.037847751e-13) (0.004685798162 0.07302031275 -2.80442336e-13) (0.004400015977 0.06900125488 -2.634004126e-13) (0.004067448921 0.06421982893 -2.436939539e-13) (0.004467370508 0.05811065155 -2.231825835e-13) (0.004139158932 0.04973424909 -1.909861158e-13) (0.003683251267 0.04111969452 -1.579014697e-13) (0.003330122234 0.03741265073 -1.428024365e-13) (0.002946140816 0.03330867043 -1.263988914e-13) (0.002501221221 0.02445353351 -9.389711231e-14) (0.001853061498 0.01705548249 -6.550315845e-14) (0.001179046695 0.01025042018 -3.935740622e-14) (0.001005716642 0.008800460781 -3.358424649e-14) (0.0007787108792 0.006857373023 -2.600697435e-14) (9.116744046e-05 0.0006753091412 -2.609024108e-15) (0 0 0) (0 0 0) (2.890196275e-06 2.030931996e-05 -8.326672685e-17) (0 0 0) (-1.392455911e-05 9.471072638e-05 -3.885780586e-16) (-0.000228173614 0.001624913493 -6.439293543e-15) (-0.0002587221745 0.00183076589 -7.299716387e-15) (-0.0001366518241 0.000985621649 -3.858025011e-15) (-0.0005901852471 0.004438950535 -1.745825706e-14) (-0.001164639099 0.009214995848 -3.624878175e-14) (-0.001852225553 0.01545978588 -6.081246617e-14) (-0.001688036017 0.01417897898 -5.54278845e-14) (-0.00149406168 0.01262806433 -4.907185769e-14) (-0.003333287745 0.03125443236 -1.229572e-13) (-0.0040176083 0.04014800978 -1.579292253e-13) (-0.004602286153 0.04922700444 -1.936228955e-13) (-0.004378189868 0.04713776396 -1.842692665e-13) (-0.004189700953 0.04540259067 -1.764144386e-13) (-0.005341328635 0.06648231214 -2.614575223e-13) (-0.005457717225 0.07398066377 -2.909616992e-13) (-0.005420839538 0.08067040715 -3.172462293e-13) (-0.005306279065 0.07951228376 -3.107791802e-13) (-0.005150441267 0.07770090015 -3.018418848e-13) (-0.004824717713 0.08919443379 -3.507749646e-13) (-0.004325828089 0.09097218074 -3.577693697e-13) (-0.003741548517 0.0912255879 0) (-0.003733263342 0.09179309258 -3.58796326e-13) (-0.003712524238 0.09214926578 -3.579359031e-13) (-6.717715002e-05 0.09183391751 0) (0.0002418371041 0.09183204319 0) (0.0005577779202 0.09182800776 0) (0.0005557794568 0.09210778457 0) (0.0005533557658 0.0923874466 0) (0.005121732241 0.08643742496 -3.401723347e-13) (0.005375783157 0.08168818944 -3.214928324e-13) (0.005265539447 0.08054336139 -3.150257832e-13) (0.005116846242 0.07876344383 -3.061717546e-13) (0.005419737841 0.06871174231 -2.704503288e-13) (0.005182984351 0.06069283343 -2.388922393e-13) (0.004782691078 0.05203480337 -2.048083925e-13) (0.004531210777 0.04960849523 -1.940669847e-13) (0.004228443068 0.04659465643 -1.811328865e-13) (0.003584818286 0.03416050278 -1.344480083e-13) (0.00285999422 0.02566053107 -1.010025397e-13) (0.002114238157 0.01792158856 -7.052691764e-14) (0.001916926661 0.01635142249 -6.394884622e-14) (0.001689814811 0.01450497727 -5.637157408e-14) (0.0003752304813 0.002710776506 -1.074140776e-14) (4.286766279e-05 0.000297489071 -1.165734176e-15) (6.839808222e-05 0.0004716932911 -1.859623566e-15) (9.053345284e-05 0.0006203997116 -2.47024623e-15) (1.896667196e-05 0.0001324517326 -5.273559367e-16) (-5.090523058e-05 0.0003375663344 -1.360023205e-15) (-0.0003404254761 0.002363283114 -9.603429163e-15) (-0.0003664894979 0.002527950682 -1.032507413e-14) (-0.0002747660835 0.001931967164 -7.743805597e-15) (-0.0008279617685 0.006069378111 -2.448041769e-14) (-0.001483018919 0.01143532633 -4.612976667e-14) (-0.002236806259 0.01819334524 -7.338574193e-14) (-0.002112430885 0.01729299899 -6.930567231e-14) (-0.002067858624 0.01703764259 -6.786238238e-14) (-0.003795801545 0.03467537915 -1.398603455e-13) (-0.004490082306 0.04370796236 -1.762756607e-13) (-0.005065488521 0.05276861946 -2.128297538e-13) (-0.004948583169 0.05188986867 -2.079725281e-13) (-0.004888429724 0.0515922148 -2.054745263e-13) (-0.005733949179 0.06947131771 -2.801647803e-13) (-0.005793616044 0.07641720085 -3.081701561e-13) (-0.005668141466 0.08202829603 -3.308187058e-13) (-0.005622614402 0.08193158754 -3.28320704e-13) (-0.005584946203 0.08194283025 -3.263223025e-13) (0.002716385088 0.08948779828 0) (0.003013997836 0.08948500055 0) (0.0030144888 0.08977018136 0) (0.003015043422 0.09005511007 0) (0.005290425356 0.08720194282 -3.519406988e-13) (0.005655510624 0.08394438283 -3.388123115e-13) (0.005615934855 0.08384862999 -3.362587986e-13) (0.005571873172 0.08366967748 -3.334554854e-13) (0.005881861823 0.07281920678 -2.939037902e-13) (0.005718570539 0.06537540163 -2.638722574e-13) (0.005373222528 0.05705776343 -2.302880109e-13) (0.005214179539 0.05571152691 -2.234323837e-13) (0.005125878653 0.05509805711 -2.195743587e-13) (0.004215416614 0.03918977716 -1.581512699e-13) (0.003470605253 0.03037391104 -1.225686219e-13) (0.002677230655 0.02213282751 -8.931744233e-14) (0.002471073159 0.02055660519 -8.243405958e-14) (0.002395633632 0.02005415112 -7.99083022e-14) (0.0006152452479 0.004334151925 -1.759703494e-14) (0.0001699380518 0.001149963311 -4.635181128e-15) (0.0001908004468 0.001283069274 -5.218048216e-15) (0.000198525417 0.001326617548 -5.412337245e-15) (0.0001384385617 0.0009427071091 -3.774758284e-15) (-8.555718528e-05 0.0005528771067 -2.303712776e-15) (-0.0004203352327 0.002843618035 -1.185163079e-14) (-0.0004373952412 0.002939811492 -1.232347557e-14) (-0.0003863910641 0.002648086041 -1.088018564e-14) (-0.000937284406 0.006696870178 -2.772782004e-14) (-0.001621927616 0.01218998475 -5.045963647e-14) (-0.002396020516 0.01899333735 -7.860379014e-14) (-0.002360495372 0.01883343306 -7.743805597e-14) (-0.002317974507 0.0186138252 -7.605027719e-14) (-0.003970629867 0.03534188591 -1.462441279e-13) (-0.004660859296 0.04419868387 -1.829092433e-13) (-0.005225445671 0.05301857605 -2.193800697e-13) (-0.005191553201 0.05302553256 -2.180200465e-13) (-0.005150914742 0.05295920896 -2.163269563e-13) (-0.005856810748 0.06908093517 -2.858269177e-13) (-0.005893000484 0.07564936308 -3.130273818e-13) (-0.005742717185 0.08086129594 -3.34593464e-13) (-0.005727982732 0.08121079481 -3.338718191e-13) (-0.005710495732 0.08152021463 -3.329836407e-13) (0.002704263712 0.08721766248 0) (0.003001345969 0.08721563098 0) (0.003003340926 0.08749911712 0) (0.00300523089 0.08778252557 0) (0.005316753394 0.08568146542 -3.548272787e-13) (0.005718408691 0.08295769634 -3.43558515e-13) (0.005716900735 0.08341195565 -3.431976925e-13) (0.005704042155 0.08370336683 -3.421984918e-13) (0.006013894493 0.0727193617 -3.01175751e-13) (0.005879560897 0.06562899949 -2.71810352e-13) (0.005557359205 0.05760444379 -2.385591724e-13) (0.005540166676 0.05777580666 -2.377265051e-13) (0.005487747472 0.05757732531 -2.353672812e-13) (0.004422274792 0.04011098666 -1.660893645e-13) (0.003675645432 0.03137900832 -1.299238495e-13) (0.002870496558 0.02314471505 -9.58400026e-14) (0.002847524324 0.02310461762 -9.503509091e-14) (0.002782871804 0.02272241396 -9.287015601e-14) (0.0006718566141 0.004613982592 -1.92346139e-14) (0.0002296273121 0.001514962382 -6.272760089e-15) (0.0002238970232 0.001467686929 -6.106226635e-15) (0.000205565881 0.001338850271 -5.606626274e-15) (0.0002211907725 0.001468675622 -6.050715484e-15) (-0.0001261168709 0.0007937175866 -3.413935801e-15) (-0.0005034447409 0.003317310983 -1.418309914e-14) (-0.0005260213098 0.003442906758 -1.482147738e-14) (-0.0004585887423 0.003062100647 -1.293409824e-14) (-0.00104903909 0.007301529681 -3.103073354e-14) (-0.001759283517 0.01287955221 -5.473399511e-14) (-0.002550554305 0.01969242368 -8.368306048e-14) (-0.002506546488 0.01948198729 -8.223977055e-14) (-0.002464867706 0.01928507922 -8.085199177e-14) (-0.004134579715 0.03583462244 -1.522393323e-13) (-0.004818265686 0.04448391679 -1.889877144e-13) (-0.005370163214 0.0530370667 -2.252920073e-13) (-0.005329463406 0.0529949556 -2.236266727e-13) (-0.005290612632 0.05296567355 -2.220446049e-13) (-0.005963153331 0.06843429945 -2.906841434e-13) (-0.005976632857 0.07463197115 -3.170241847e-13) (-0.005803302185 0.07946758338 -3.375633106e-13) (-0.005786788806 0.07980091854 -3.367583989e-13) (-0.005770742323 0.08013756934 -3.359534873e-13) (0.002684780818 0.08495426324 0) (0.00298151292 0.08495261279 0) (0.002984217154 0.08523470984 0) (0.00298694947 0.0855171071 0) (0.005266637428 0.08300190579 -3.529398995e-13) (0.005640576014 0.07998312362 -3.401168236e-13) (0.005673465547 0.08090949606 -3.417544026e-13) (0.005691253997 0.08162808963 -3.425315587e-13) (0.005846911153 0.06904373427 -2.935984789e-13) (0.005676914377 0.06186168779 -2.630395901e-13) (0.005380389522 0.05442531352 -2.314259895e-13) (0.005466571904 0.05563755693 -2.350064587e-13) (0.005496026466 0.05628051524 -2.361721929e-13) (0.004235730197 0.03747142139 -1.59317004e-13) (0.003494731321 0.02909165917 -1.236788449e-13) (0.002702684085 0.0212448962 -9.031664305e-14) (0.002777489308 0.02197294464 -9.278688928e-14) (0.002801727845 0.02230617135 -9.35640454e-14) (0.0005195421075 0.003476623419 -1.487698853e-14) (0.0001792665841 0.001152492485 -4.884981308e-15) (0.0001374057017 0.0008776042244 -3.747002708e-15) (0.0001087523341 0.0006900327088 -2.969846591e-15) (0.0001991607218 0.001288757364 -5.440092821e-15) (-0.0001888410463 0.001156704799 -5.079270338e-15) (-0.0006171518092 0.003957759118 -1.740274591e-14) (-0.0006304055358 0.004014958067 -1.776356839e-14) (-0.0005501762636 0.003576767594 -1.551536677e-14) (-0.001177943578 0.007980586006 -3.48332474e-14) (-0.001915007402 0.01364557145 -5.956346527e-14) (-0.002723762134 0.02046666446 -8.934519791e-14) (-0.00267943708 0.02027221345 -8.790190797e-14) (-0.002634878791 0.02007130268 -8.643086247e-14) (-0.004315434185 0.0363908049 -1.588451592e-13) (-0.004990726238 0.04482284786 -1.956212969e-13) (-0.005527595144 0.05309712176 -2.317313008e-13) (-0.005487737972 0.05308546826 -2.300937219e-13) (-0.005447416254 0.05306381055 -2.284561429e-13) (-0.006076712813 0.06780078105 -2.958744361e-13) (-0.0060646038 0.07361192368 -3.212430322e-13) (-0.005865442853 0.07805549732 -3.406441795e-13) (-0.005850031736 0.07841412571 -3.398670234e-13) (-0.005834261409 0.07876529589 -3.390898673e-13) (0.002659758944 0.08269868444 0) (0.002956284043 0.08269733574 0) (0.002959585639 0.08297890645 0) (0.002963111478 0.08326081529 0) (0.005146777575 0.07932378653 -3.465561171e-13) (0.005449679966 0.07551830335 -3.299305273e-13) (0.005504491626 0.07672092633 -3.329003739e-13) (0.005565406866 0.07801727 -3.36231043e-13) (0.005536743784 0.0638270967 -2.788602682e-13) (0.005305923465 0.05641734525 -2.464695115e-13) (0.004901488051 0.04835989605 -2.112754416e-13) (0.005092819518 0.05056530744 -2.194078252e-13) (0.005193959659 0.05189230743 -2.236266727e-13) (0.003754024011 0.03237317227 -1.414146578e-13) (0.003023267115 0.02452678065 -1.071365219e-13) (0.002263243079 0.01733497593 -7.571721028e-14) (0.002391494851 0.01843733489 -7.999156892e-14) (0.002475168759 0.01920699033 -8.276712649e-14) (0.0002828238218 0.001843017178 -8.10462808e-15) (6.789345466e-05 0.0004250963234 -1.859623566e-15) (3.100256155e-05 0.0001928195513 -8.604228441e-16) (1.911794992e-05 0.000118103901 -5.273559367e-16) (9.172869829e-05 0.0005781744211 -2.498001805e-15) (-0.0002754265786 0.00164064339 -7.410738689e-15) (-0.0007607189029 0.004744001078 -2.145505995e-14) (-0.0007744378927 0.004795320738 -2.184363801e-14) (-0.000662303573 0.004188863559 -1.867950239e-14) (-0.001278161253 0.008422374898 -3.780309399e-14) (-0.002033203855 0.01408979662 -6.322720125e-14) (-0.002936838554 0.02145866454 -9.631184739e-14) (-0.002877947303 0.0211778372 -9.439671267e-14) (-0.002822774817 0.02091830094 -9.256484468e-14) (-0.004533690191 0.03716505677 -1.667832539e-13) (-0.005197039807 0.04536604495 -2.035593916e-13) (-0.00571421994 0.05333947144 -2.393363285e-13) (-0.005663408305 0.05325009161 -2.372546604e-13) (-0.005615295386 0.05317893629 -2.353117701e-13) (-0.006208097391 0.06728364114 -3.018696404e-13) (-0.006164416781 0.07266734093 -3.260447468e-13) (-0.005933679681 0.0766745751 -3.440303598e-13) (-0.005915685653 0.07701346471 -3.431421813e-13) (-0.005898256309 0.07735573918 -3.422540029e-13) (0.002628008675 0.08044879187 0) (0.004942363802 0.07448055185 -3.345379529e-13) (0.005156661107 0.06981171563 -3.135824933e-13) (0.005245427383 0.07142825881 -3.186062525e-13) (0.005309697203 0.0727254002 -3.221312106e-13) (0.005071366755 0.05703830903 -2.561839629e-13) (0.004768006296 0.04943640798 -2.220446049e-13) (0.004308430651 0.04143581154 -1.861011345e-13) (0.004493853389 0.04349913421 -1.940114736e-13) (0.004676099513 0.04555427514 -2.017552792e-13) (0.003039049696 0.02552741438 -1.146582829e-13) (0.002315990917 0.01829811723 -8.215650382e-14) (0.001602532517 0.01195136965 -5.365152767e-14) (0.001777019527 0.01334216647 -5.948019854e-14) (0.001982124041 0.01498195084 -6.633582572e-14) (7.831257955e-05 0.0004966605792 -2.248201625e-15) (3.289998998e-07 2.005008436e-06 0) (0 0 0) (0 0 0) (7.321458381e-06 4.492398408e-05 -1.942890293e-16) (-0.000399802358 0.002317426115 -1.079691891e-14) (-0.0009505157915 0.00576815689 -2.683964162e-14) (-0.0009830218528 0.005940626246 -2.783884234e-14) (-0.0008533594094 0.005246135229 -2.406408406e-14) (-0.001607671613 0.0102933237 -4.754530103e-14) (-0.002415209623 0.01626055821 -7.510658762e-14) (-0.003264991451 0.02317439215 -1.070254996e-13) (-0.0031698805 0.02266582993 -1.039168751e-13) (-0.003021806709 0.02176530269 -9.905964937e-14) (-0.004855384154 0.03865082389 -1.784405956e-13) (-0.005494131621 0.04656276803 -2.149669331e-13) (-0.005976061108 0.05414752279 -2.499944696e-13) (-0.005874192317 0.05363046921 -2.458311332e-13) (-0.005824175917 0.05357181503 -2.438049762e-13) (-0.006380523402 0.06709455224 -3.097522239e-13) (-0.006289395685 0.07191888406 -3.320121955e-13) (-0.006013645758 0.07536439636 -3.479438959e-13) (-0.005990610169 0.07566491528 -3.468059173e-13) (-0.005971300605 0.07600277637 -3.458622277e-13) (-0.002473695991 0.07853683587 0) (-0.002326165715 0.07853602917 0) (-0.002325638956 0.07867669126 0) (-0.002325166741 0.07881700106 0) (8.059654616e-05 0.07848940995 0) (0.0002259215439 0.07848991067 0) (0.0002300491366 0.0786297656 0) (0.002867252457 0.07764400192 0) (0.003448378577 0.07730246804 -3.572142582e-13) (0.003470099159 0.07806419049 -3.581579477e-13) (0.004351090093 0.07237590186 -3.344824417e-13) (0.004604769097 0.06786088083 -3.136102489e-13) (0.004700159304 0.06215799805 -2.87242452e-13) (0.004819910506 0.06411679289 -2.94181346e-13) (0.004955182933 0.06630446641 -3.020639294e-13) (0.004386098518 0.0480971457 -2.222666495e-13) (0.003992164267 0.04033811283 -1.864064458e-13) (0.00354983254 0.03325287376 -1.536548666e-13) (0.003776377432 0.03561200798 -1.633970736e-13) (0.003956719052 0.03755979054 -1.710853681e-13) (0.002322563886 0.01899120209 -8.773537452e-14) (0.001668192997 0.01282713841 -5.925815394e-14) (0.001053930549 0.007647851498 -3.533284776e-14) (0.001196008839 0.008739044448 -4.007905119e-14) (0.001313002241 0.009659924427 -4.399258735e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.0002900720338 0.001637322709 -7.854827899e-15) (-0.0007728812927 0.004567843388 -2.189914916e-14) (-0.0006556570233 0.003846050012 -1.856848009e-14) (-0.0009412512992 0.005646375756 -2.664535259e-14) (-0.00155423074 0.009710558593 -4.618527782e-14) (-0.00234247249 0.0153923863 -7.321920847e-14) (-0.003173120402 0.02198600767 -1.045552533e-13) (-0.003301805708 0.02304893828 -1.088018564e-13) (-0.003375703724 0.02374070411 -1.112443471e-13) (-0.004730950447 0.03677919794 -1.74887882e-13) (-0.005358708251 0.0443638014 -2.109423747e-13) (-0.005834599961 0.05165758842 -2.456090886e-13) (-0.005968153745 0.05324319197 -2.51271226e-13) (-0.006042957729 0.05432217781 -2.544908728e-13) (-0.006244650235 0.06421733047 -3.053113318e-13) (-0.006165915871 0.06899083714 -3.280153926e-13) (-0.005908986503 0.07251341319 -3.447797603e-13) (-0.005962373081 0.07374880165 -3.480549182e-13) (-0.005988478151 0.07465909308 -3.497480083e-13) (0.0001369212736 0.07598317128 0) (0.0004362191561 0.07598121673 0) (0.0004380545862 0.07626227459 0) (0.002804379066 0.0747853284 -3.55854235e-13) (0.003308938649 0.07277837996 -3.46306317e-13) (0.003341655518 0.07398284789 -3.49442697e-13) (0.003382477913 0.07537855149 -3.534117443e-13) (0.003980569916 0.06477436733 -3.082256672e-13) (0.004101513729 0.05904136037 -2.80969692e-13) (0.0041055107 0.05298266002 -2.521316489e-13) (0.004284795808 0.0556263518 -2.627620344e-13) (0.004425746842 0.05783170257 -2.711719738e-13) (0.003647171792 0.03898729748 -1.855182674e-13) (0.003212507753 0.0315981817 -1.503519531e-13) (0.002685732695 0.02448437199 -1.164901509e-13) (0.002883733068 0.02646763612 -1.250111126e-13) (0.003135103909 0.02897180448 -1.358357871e-13) (0.001499582104 0.01192858768 -5.676015213e-14) (0.0009346335421 0.006988559067 -3.325117959e-14) (0.0004613139934 0.003254475851 -1.548761119e-14) (0.0006098923666 0.004333286664 -2.045585923e-14) (0.0007286723262 0.005214109359 -2.445266212e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.97014499e-05 0.0001626283067 -8.049116929e-16) (-0.000259466187 0.001487678629 -7.355227538e-15) (-0.0001444849101 0.0008220492341 -4.080069615e-15) (-0.0005251869761 0.003057532925 -1.487698853e-14) (-0.0008812731926 0.005342897319 -2.620126338e-14) (-0.001502634293 0.009581626916 -4.696243394e-14) (-0.002198936472 0.0147855214 -7.246980793e-14) (-0.002498655052 0.01692782992 -8.235079285e-14) (-0.002766008991 0.01888041291 -9.114931032e-14) (-0.003604452337 0.02719241494 -1.332822741e-13) (-0.004219573041 0.03389756482 -1.661448756e-13) (-0.004725758799 0.0405963242 -1.989797216e-13) (-0.005085400736 0.04401470205 -2.140787547e-13) (-0.005392063741 0.04702186406 -2.269573418e-13) (-0.005315863982 0.05302341675 -2.598754545e-13) (-0.005377703363 0.05834790861 -2.859656956e-13) (-0.005286079985 0.0628806695 -3.081701561e-13) (-0.005516213753 0.06612315193 -3.215760991e-13) (-0.005693092479 0.06877516057 -3.319566844e-13) (-0.004700115319 0.06930074288 -3.396449788e-13) (-0.004249790341 0.07121099832 -3.490263634e-13) (-0.003729111022 0.07237732777 -3.547717675e-13) (-0.003765979112 0.07370802519 -3.585187702e-13) (-0.002574261835 0.07316542999 -3.586575481e-13) (-0.001976531558 0.07318522977 0) (-0.001377934487 0.07318132067 0) (-0.001374262774 0.07374356698 0) (-0.0001806828137 0.07315827002 -3.587130593e-13) (0.000417003083 0.07297930989 -3.578526364e-13) (0.00100727061 0.07244148861 -3.552436123e-13) (0.001019781208 0.07370056051 -3.586575481e-13) (0.002107872124 0.06952325877 -3.409494909e-13) (0.002577288734 0.06686032045 -3.279043703e-13) (0.002962119976 0.06330550512 -3.104738688e-13) (0.003088418547 0.06651107245 -3.237132784e-13) (0.00318628041 0.06912157737 -3.338718191e-13) (0.003396372159 0.05363753682 -2.630673457e-13) (0.003417737064 0.04773182373 -2.341182803e-13) (0.003302262128 0.04133391659 -2.027267243e-13) (0.003548380436 0.04476685283 -2.179090242e-13) (0.003758395567 0.04778328933 -2.308153668e-13) (0.00269639103 0.02794840522 -1.37084788e-13) (0.002247858662 0.02145629411 -1.052213872e-13) (0.001745165803 0.01543812009 -7.571721028e-14) (0.001977176702 0.01762808091 -8.579248423e-14) (0.002183819661 0.01962143177 -9.478529073e-14) (0.0007487284954 0.005779162613 -2.83384427e-14) (0.0003510981341 0.002548119797 -1.249000903e-14) (8.633837334e-05 0.0005913692563 -2.91433544e-15) (0.0001469080503 0.001014007344 -4.94049246e-15) (0.000258588742 0.001798595896 -8.687495168e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-5.629627971e-05 0.0003178123555 -1.58206781e-15) (-0.0001539084551 0.000904748765 -4.579669977e-15) (-0.0004626195564 0.002860844625 -1.44606549e-14) (-0.0008885066885 0.005795034755 -2.930988785e-14) (-0.001208101052 0.00794026179 -3.982925101e-14) (-0.001541911126 0.01021186513 -5.084821453e-14) (-0.001912376687 0.01399989542 -7.08044734e-14) (-0.002426282351 0.01891748913 -9.567346915e-14) (-0.002893074916 0.02412503963 -1.220135104e-13) (-0.003391145149 0.02848842915 -1.429412144e-13) (-0.003870162847 0.03275451861 -1.630640067e-13) (-0.003578976329 0.03466162616 -1.7527646e-13) (-0.003763700708 0.03965187779 -2.005340338e-13) (-0.00383267856 0.04426960912 -2.238764729e-13) (-0.004267752936 0.04964922738 -2.491062912e-13) (-0.004659426592 0.05460246239 -2.717825964e-13) (-0.003633272239 0.05200616147 -2.62984079e-13) (-0.003382896829 0.05501683729 -2.7822189e-13) (-0.003049905371 0.05743437552 -2.904620988e-13) (-0.003296653705 0.0625162633 -3.1366576e-13) (-0.00349470399 0.06676230611 -3.32373018e-13) (-0.00219796977 0.06055977154 -3.062827769e-13) (-0.001709333359 0.06132586725 -3.101685575e-13) (-0.001197448221 0.06159501129 -3.115563363e-13) (-0.001279946156 0.06623450683 -3.32373018e-13) (-0.001338896955 0.06979645038 -3.475275623e-13) (-0.0001542881777 0.06066396843 -3.06865644e-13) (0.0003519904711 0.05943409994 -3.006761506e-13) (0.000830272177 0.0576571364 -2.916833441e-13) (0.0008929815857 0.06271685352 -3.148037386e-13) (0.0009438846742 0.06692967834 -3.333167076e-13) (0.001643816072 0.0523614649 -2.649269693e-13) (0.001948878696 0.04883259773 -2.470801341e-13) (0.002167660725 0.04475263462 -2.264299859e-13) (0.002405913711 0.05013359337 -2.516598041e-13) (0.002619861739 0.05507709709 -2.743361094e-13) (0.002308724394 0.03523785409 -1.783018178e-13) (0.002224458178 0.03003283901 -1.519617765e-13) (0.002043097293 0.02472946608 -1.251221349e-13) (0.002386616579 0.0291386225 -1.462718835e-13) (0.002715933407 0.03344197031 -1.665612093e-13) (0.001450348846 0.01454608395 -7.358003096e-14) (0.001087454063 0.01004687415 -5.082045895e-14) (0.0007230105319 0.006192535615 -3.133604487e-14) (0.0009739103918 0.00841018433 -4.221623051e-14) (0.001234660181 0.01074891843 -5.354050536e-14) (0.0001441763805 0.001078071383 -5.467848396e-15) (1.132481473e-05 7.964288783e-05 -4.163336342e-16) (0 0 0) (0 0 0) (5.828038381e-06 3.930305428e-05 -1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.747417632e-05 0.0002368203452 -1.249000903e-15) (-0.0001577567542 0.001005012653 -5.218048216e-15) (-0.0003488407038 0.002240036025 -1.151856388e-14) (-0.000419456176 0.002977630411 -1.554312234e-14) (-0.0007008305996 0.005300983241 -2.770006446e-14) (-0.001000112655 0.008094259257 -4.227174166e-14) (-0.001426709823 0.01163456544 -6.028511024e-14) (-0.001895174888 0.01557089247 -8.00193245e-14) (-0.001546445343 0.01455024261 -7.599476604e-14) (-0.001752370302 0.01794521024 -9.373057885e-14) (-0.001894786766 0.02128532361 -1.111888359e-13) (-0.002380281237 0.0269244436 -1.39499523e-13) (-0.002875243507 0.03274864466 -1.68282055e-13) (-0.001964179577 0.02737879088 -1.430244811e-13) (-0.001890302904 0.0299615088 -1.565136909e-13) (-0.001749914296 0.03214883173 -1.679212325e-13) (-0.002100084063 0.03880692478 -2.010613898e-13) (-0.002441302848 0.04538406377 -2.332301019e-13) (-0.001304123345 0.03517181473 -1.837419106e-13) (-0.001020560763 0.03595603087 -1.878219802e-13) (-0.0007129882251 0.03623757172 -1.893207813e-13) (-0.0008474747024 0.04313790535 -2.235156504e-13) (-0.0009765186728 0.04982445103 -2.560729406e-13) (-7.830752906e-05 0.03528455277 -1.843525332e-13) (0.0002223744471 0.03406345393 -1.779687508e-13) (0.0004948568883 0.03236851631 -1.691147222e-13) (0.0005869699049 0.03903919539 -2.023103907e-13) (0.0006752374518 0.04562171896 -2.345068584e-13) (0.0009093871118 0.02769016698 -1.446898157e-13) (0.00103282035 0.02480820302 -1.296185381e-13) (0.001092242333 0.02165885661 -1.131594818e-13) (0.001364380396 0.02733925415 -1.416922135e-13) (0.001639780058 0.03319621631 -1.706690345e-13) (0.001016444776 0.01494035792 -7.804867863e-14) (0.0008912481604 0.01159961732 -6.061817714e-14) (0.0007228982633 0.008442127153 -4.410360965e-14) (0.001022999876 0.01205541845 -6.247780071e-14) (0.001350572197 0.01605972721 -8.257283746e-14) (0.0003321999649 0.003219229881 -1.681987882e-14) (0.0001587257944 0.001417791208 -7.410738689e-15) (3.802452728e-05 0.0003150430617 -1.637578961e-15) (0.0001394043514 0.00116464414 -6.022959909e-15) (0.0002945116554 0.002481028967 -1.273980921e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (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.622824317e-05 0.0001272329183 -6.938893904e-16) (-0.0001273397737 0.001006633749 -5.384581669e-15) (-0.0003361854286 0.002678976312 -1.423861029e-14) (-0.0001686294826 0.001539087268 -8.326672685e-15) (-0.0002682430162 0.002666803796 -1.440514374e-14) (-0.0003624914818 0.003956801552 -2.137179322e-14) (-0.0006548289181 0.007201455834 -3.855249453e-14) (-0.001016732808 0.01126265577 -5.981326545e-14) (-0.0004923532673 0.006683175079 -3.611000388e-14) (-0.000515368627 0.007965816355 -4.30211422e-14) (-0.0005074469066 0.009106984997 -4.918287999e-14) (-0.0007709777459 0.01392139336 -7.45514761e-14) (-0.001073210839 0.01949254003 -1.03528297e-13) (-0.0004063654301 0.01076520489 -5.814793091e-14) (-0.0003223147648 0.01121086026 -6.053491042e-14) (-0.0002245390826 0.01137272406 -6.142308884e-14) (-0.0003298283322 0.01672538445 -8.956724251e-14) (-0.0004491890822 0.02279451872 -1.210698208e-13) (-1.845330153e-05 0.01083073025 -5.85087534e-14) (7.43795618e-05 0.01014891841 -5.481726184e-14) (0.0001510417688 0.009227400434 -4.984901381e-14) (0.0002265706339 0.01407152892 -7.53563878e-14) (0.0003113254549 0.0196699528 -1.044719866e-13) (0.0002356470478 0.006837187996 -3.694267114e-14) (0.000238575651 0.005482131909 -2.961519918e-14) (0.0002162348279 0.004113105714 -2.223221607e-14) (0.0003859445315 0.007416229457 -3.971822871e-14) (0.0005940472598 0.01153437732 -6.125655538e-14) (0.0001172399756 0.001658977228 -8.965050924e-15) (5.970342512e-05 0.0007490165095 -4.05231404e-15) (1.501982091e-05 0.0001692599698 -9.159339953e-16) (9.882255565e-05 0.001123411455 -6.022959909e-15) (0.0002504839062 0.002872904559 -1.526556659e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-2.911195367e-05 0.0003127567133 -1.720845688e-15) (0 0 0) (0 0 0) (-3.466448906e-09 6.039997003e-08 0) (-3.371928949e-05 0.0005924674163 -3.302913498e-15) (-0.0001322478608 0.002341513827 -1.285083151e-14) (-2.237111968e-06 5.774993391e-05 -3.053113318e-16) (-2.647303455e-06 9.000968646e-05 -4.996003611e-16) (-2.075258878e-06 0.0001033290571 -5.828670879e-16) (-2.399528577e-05 0.001202935968 -6.661338148e-15) (-6.931773624e-05 0.00349215772 -1.917910275e-14) (-8.861703038e-08 6.210690543e-05 -3.60822483e-16) (1.922615755e-07 2.432973232e-05 -1.387778781e-16) (1.107792857e-08 6.429061295e-07 0) (1.059524404e-05 0.000621057459 -3.441691376e-15) (4.045311526e-05 0.002400047513 -1.318389842e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (1.902106498e-05 0.0003549279257 -1.942890293e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.002324706393 0.07895749379 0) (-0.002324219156 0.07909810389 0) (-0.002471775468 0.07909892383 0) (0.002311478643 0.07932680162 0) (0.002015420987 0.07932772932 0) (0.00171936205 0.07932846112 0) (0.001713793675 0.07904778028 0) (0.00170760156 0.07876758678 0) (-0.002252870199 0.07670171347 0) (-0.002251952484 0.0768422424 0) (-0.002401610567 0.07684321973 0) (-0.0002776310652 0.07681080279 0) (-0.000456203064 0.07683051538 0) (-0.0004571051067 0.07668998635 0) (-0.0004580132265 0.07654932675 0) (-0.0002034724446 0.07869799244 0) (0.001701189296 0.07848768204 0) (0.001694216121 0.07820788546 0) (0.001990560764 0.07820690365 0) (-0.001961788807 0.09037276976 0) (-0.001955996761 0.09066170099 0) (-0.002255247297 0.09065970562 0) (-0.002554247266 0.09065807954 0) (-0.0006653529381 0.09239515714 0) (-0.0006715418973 0.09211544687 0) (-0.0006786175128 0.09183536362 0) (-0.0003708021341 0.09183528646 0) (0.003007144329 0.08806552898 0) (0.0030085712 0.08835002452 0) (0.002711267856 0.08835220113 0) (-0.002885832749 0.08612866116 0) (-0.003182929175 0.08613052297 0) (-0.003184346931 0.0858494232 0) (-0.003185737202 0.08556853223 0) (-0.003173938735 0.0878192212 0) (-0.003175518588 0.08753729965 0) (-0.003177057299 0.08725567824 0) (-0.002879817124 0.08725382856 0) (0.002989605812 0.08579987057 0) (0.002992172352 0.08608288278 0) (0.002695284891 0.08608474322 0) (-0.002897030196 0.08388000577 0) (-0.003193865672 0.08388182669 0) (-0.003195140532 0.08360060844 0) (-0.003196388504 0.08331950757 0) (-0.003187127387 0.08528765432 0) (-0.003188518596 0.08500661969 0) (-0.002891539542 0.08500478477 0) (0.002966388915 0.08354268656 0) (0.002969467804 0.08382415424 0) (0.002672917438 0.08382563371 0) (-0.002906714353 0.08163107928 0) (-0.003203314914 0.08163287254 0) (-0.003204379871 0.08135179659 0) (-0.003205418366 0.08107077272 0) (-0.003197610526 0.0830383804 0) (-0.003198806769 0.08275720083 0) (-0.002902114871 0.08275539391 0) (-0.001499653182 0.08232523126 0) (-0.002914684113 0.07938267708 0) (-0.003211402558 0.07938441887 0) (-0.003212442076 0.07910323827 0) (-0.003213533581 0.07882209719 0) (-0.003206444313 0.08078967039 0) (-0.00320744431 0.08050854178 0) (-0.002910856724 0.08050676166 0) (-0.001510191899 0.08007744664 0) (-0.001584794729 0.08000757495 0) (-0.001584809963 0.07993724228 0) (-0.001506736845 0.08092051606 0) (0.000996883917 0.0801725619 0) (0.000849864208 0.08017275141 0) (0.0008471553275 0.08003214276 0) (0.0008446081976 0.07989170284 0) (-0.002897857897 0.07711926276 0) (-0.003195787113 0.07712160019 0) (-0.003149861804 0.07684810614 0) (-0.003151698087 0.07656691768 0) (-0.003214689448 0.07854110021 0) (-0.003215910617 0.07826010364 0) (-0.002918931137 0.07825833403 0) (-0.002329804551 0.07769281729 0) (-0.002329082997 0.07783330831 0) (-0.002328438354 0.07797402187 0) (-0.002476007897 0.07797481578 0) (0.001297321166 0.08793767501 0) (-0.001552654127 0.08583923773 0) (-0.001700823761 0.08584014004 0) (-0.001701662773 0.08569966284 0) (-0.001695798314 0.08668368245 0) (-0.001696650643 0.08654316615 0) (-0.001697490508 0.08640255835 0) (-0.001549373199 0.08640164332 0) (-0.001256495403 0.08555658649 0) (-0.001255744223 0.08562661395 0) (-0.001255000027 0.08569677206 0) (-0.001330617741 0.085697292 0) (0.001282502295 0.08651847358 0) (0.001361059884 0.08651793444 0) (0.001361157829 0.08658893267 0) (0.001361517236 0.08665996838 0) (0.001284042805 0.08566837092 0) (0.001297018931 0.08765339417 0) (0.00136211062 0.08673083276 0) (0.001362977247 0.08680153863 0) (0.001284327894 0.08680202612 0) (-0.00133288373 0.08541690306 0) (-0.00125805077 0.08541641437 0) (-0.001257264781 0.08548657221 0) (0.001482338757 0.0832672724 0) (0.00148388584 0.08340817599 0) (0.0014854593 0.08354911858 0) (0.001337744985 0.08354974364 0) (0.001279647138 0.08538526617 0) (-0.001503754069 0.08120126602 0) (-0.001501893481 0.08204417605 0) (-0.001585177824 0.07986691192 0) (-0.001585780516 0.07979662227 0) (-0.001509939727 0.0797960617 0) (-0.002469867323 0.07966111636 0) (-0.002322298036 0.07966028327 0) (-0.002321838114 0.0798007107 0) (-0.002321337988 0.0799412946 0) (0.0008418670661 0.07975135561 0) (0.0008387883549 0.07961111507 0) (0.0009860184201 0.07961093725 0) (-0.002478857237 0.07741249879 0) (-0.002331261574 0.07741170472 0) (-0.002330564775 0.07755240488 0) (-0.002873231644 0.08838225746 0) (-0.003170602848 0.08838404269 0) (-0.003172290937 0.08810154718 0) (-0.003157348568 0.09008765941 0) (-0.003160594041 0.08980068296 0) (-0.003162864663 0.08951698442 0) (-0.002865335797 0.08951534183 0) (-0.001530036601 0.08922464026 0) (-0.001678546511 0.08922543638 0) (-0.001679722624 0.08908333923 0) (-0.001680871925 0.08894134769 0) (-0.001523134307 0.08979958284 0) (-0.001545856334 0.08696417799 0) (-0.001694065149 0.08696508055 0) (-0.001694945133 0.08682432934 0) (-0.001688743335 0.08781000547 0) (-0.001689650377 0.08766911077 0) (-0.001690544616 0.08752817681 0) (-0.001542166016 0.08752727313 0) (0.002644820143 0.08157311818 0) (0.0002005796725 0.0777927304 0) (0.0002064185283 0.07793182968 0) (6.093819817e-05 0.07793134303 0) (-0.001538533666 0.08809149189 0) (-0.001686912351 0.08809238251 0) (-0.001687848243 0.08795107005 0) (-0.001681901262 0.0887997263 0) (-0.001682956915 0.08865807503 0) (-0.001534525733 0.08865722326 0) (0.001376106212 0.08979196547 0) (0.001525551904 0.08978846486 0) (0.00152456431 0.08993323534 0) (0.00152385692 0.09007691314 0) (0.001317431269 0.08185912104 0) (0.001466809527 0.08199929432 0) (0.001468682095 0.08214003904 0) (0.001309511714 0.08129640616 0) (0.00133146233 0.08298568585 0) (0.001479111855 0.08298513958 0) (0.001480778016 0.08312627749 0) (0.00147047613 0.08228075816 0) (0.001472311649 0.08242182965 0) (0.001324753461 0.08242236226 0) (-0.0003983772768 0.09113212713 0) (-0.0004000926901 0.09099224732 0) (-0.0002317136457 0.09099619575 0) (-6.862022893e-05 0.09099658827 0) (-0.00106348892 0.09024371325 0) (-0.001058693895 0.0903899716 0) (-0.001210593352 0.09038532911 0) (-0.001363064849 0.09037869074 0) (0.0001026700144 0.09099409828 0) (0.0002663207954 0.09098961154 0) (0.0002638184163 0.09113022419 0) (0.0006974240639 0.08995031073 0) (-0.001513163772 0.0803583661 0) (-0.0008553434078 0.08965386934 0) (-0.0009310303241 0.08958159238 0) (-0.0008496531172 0.08994821888 0) (-0.001252331603 0.08611838552 0) (-0.001252736032 0.08618865562 0) (-0.001328545834 0.08597836137 0) (-0.001252444974 0.08597782521 0) (-0.001252217199 0.08604810425 0) (0.00128876205 0.08623502496 0) (0.001288112986 0.08595163453 0) (0.001297489387 0.08736943481 0) (0.001294421864 0.08708570752 0) (0.001043291017 0.08376244281 0) (0.001042616776 0.0836919969 0) (0.001117297101 0.08369153532 0) (0.000653723942 0.08200214868 0) (0.0007297009725 0.08207205058 0) (0.0006515388315 0.08172054455 0) (3.129189824e-05 0.07947002831 0) (-0.0005903801536 0.0777862846 0) (-0.00315353437 0.07628572922 0) (-0.0031553698 0.07600467137 0) (-0.002856066693 0.07600271679 0) (-0.001656100269 0.07641661586 0) (-0.001657031044 0.07627608702 0) (-0.001507386021 0.07627510977 0) (-0.001357767119 0.07627413269 0) (3.428380981e-05 0.07737637804 0) (-0.0006136035768 0.09018009621 0) (-0.0006079341033 0.09025685813 0) (-0.000686290258 0.09025144281 0) (-0.001497451295 0.08260640427 0) (-0.00151020524 0.08063940356 0) (-0.001208141686 0.07627315557 0) (-0.001058482296 0.07627217823 0) (-0.001057673435 0.07641283848 0) (0.001300308366 0.08822110243 0) (0.001278442026 0.08510272832 0) (0.001276396789 0.08481954291 0) (-0.001504374318 0.08148228767 0) (-0.00150409153 0.08176359076 0) (0.0006489232959 0.08143862977 0) (-0.0005982542019 0.07750693797 0) (-0.0008364369149 0.07701780973 0) (0.003014717563 0.09034121139 0) (0.002715494823 0.09063147231 0) (0.0013007837 0.08073389246 0) (0.001522334487 0.09022178416 0) (0.001371602717 0.0903683487 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-6.220638827e-05 0.001720209126 -6.050715484e-15) (-1.298640153e-05 0.0004310122059 -1.526556659e-15) (-5.701387696e-05 0.004512853172 -1.590394483e-14) (-1.058433596e-05 0.001569248397 -5.495603972e-15) (4.915946555e-05 0.00452289431 -1.59317004e-14) (1.851908904e-05 0.001113904712 -3.913536162e-15) (5.970144609e-05 0.001738211276 -6.133982211e-15) (2.695695633e-07 6.740872148e-06 -2.775557562e-17) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-3.397574107e-05 0.0003994334882 -1.443289932e-15) (-2.347776089e-05 0.0002986659141 -1.082467449e-15) (-0.0005651154853 0.009271306553 -3.338995747e-14) (-0.0004139054732 0.007573939503 -2.711719738e-14) (-0.0008235349465 0.02236983766 -8.054668044e-14) (-0.000546672493 0.0178270723 -6.383782392e-14) (-0.0003959190512 0.03114008581 -1.121047699e-13) (-0.0001588801013 0.02363831786 -8.462675005e-14) (0.0003527219501 0.03117223051 -1.122435478e-13) (0.000371335983 0.02164286762 -7.749356712e-14) (0.0007919724739 0.02245148635 -8.085199177e-14) (0.0005303088431 0.01294049059 -4.63240557e-14) (0.0005538811892 0.009356293112 -3.36952688e-14) (0.0001972144974 0.003043718745 -1.090794122e-14) (3.508928526e-05 0.0004219608415 -1.526556659e-15) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-6.720836793e-07 6.019811733e-06 -2.775557562e-17) (-1.279332073e-05 0.0001220024337 -4.440892099e-16) (-0.0009138630553 0.01051050327 -3.871902798e-14) (-0.0008952436028 0.01114458866 -4.080069615e-14) (-0.002057190814 0.0330743967 -1.218192214e-13) (-0.001776407873 0.0318748894 -1.167121955e-13) (-0.002045634532 0.05459905739 -2.010613898e-13) (-0.001567883513 0.05032476897 -1.842692665e-13) (-0.0008521840816 0.06654681773 -2.450817327e-13) (-0.000393532462 0.05914999503 -2.166045121e-13) (0.0007840454528 0.06659030428 -2.452760217e-13) (0.0009988932033 0.05622437404 -2.059186155e-13) (0.001985318234 0.05472845612 -2.015887457e-13) (0.001773987188 0.04213003754 -1.542932448e-13) (0.002018918998 0.03325453747 -1.224853552e-13) (0.001411307542 0.02125512376 -7.78543896e-14) (0.0008966639681 0.01050692607 -3.871902798e-14) (0.0003321643512 0.003654828506 -1.337818745e-14) (8.133265946e-06 7.384835119e-05 -2.775557562e-16) (0 0 0) (0 0 0) (-0.0004937177231 0.004302546502 -1.623701174e-14) (-0.0006697892864 0.006214521494 -2.328692794e-14) (-0.002471022164 0.02763753586 -1.042221864e-13) (-0.002458232986 0.02989095275 -1.120215032e-13) (-0.00369148032 0.05800234965 -2.186029135e-13) (-0.003373679156 0.05927402501 -2.221001161e-13) (-0.003107148721 0.08114286366 -3.058109321e-13) (-0.002532730776 0.0796942351 -2.985944825e-13) (-0.001184305258 0.09058786821 -3.414490912e-13) (-0.0005884059874 0.08744154937 -3.276545701e-13) (0.001094978172 0.09061095457 -3.415878691e-13) (0.001553863603 0.08505028837 -3.187727859e-13) (0.003048522158 0.08154002936 -3.074485111e-13) (0.003105501783 0.07163919461 -2.685351941e-13) (0.003689796555 0.05872974792 -2.21517249e-13) (0.003138750907 0.04575602365 -1.715572129e-13) (0.002540656323 0.02890752285 -1.090516566e-13) (0.001659309575 0.01774099194 -6.653011475e-14) (0.000560043458 0.004962469525 -1.870725796e-14) (2.034075592e-07 1.632091423e-06 0) (0.0001017394052 0.0008593501695 -3.219646771e-15) (-0.001277885102 0.01086802536 -4.196643033e-14) (-0.001746245764 0.01581367116 -6.070144387e-14) (-0.00392065662 0.04275701121 -1.651179193e-13) (-0.00408526468 0.04823579712 -1.851574449e-13) (-0.004949991697 0.07518303083 -2.902955654e-13) (-0.004631842187 0.07861842858 -3.017308625e-13) (-0.003662665547 0.09187999388 -3.546885008e-13) (-0.003044106471 0.09254912443 -3.550770789e-13) (-0.001266484734 0.0926763258 0) (-0.001261476512 0.09295603073 0) (-0.0006554937377 0.09351188825 0) (-0.0006594854504 0.09295364065 0) (-0.0003601844708 0.09295196036 0) (-6.085262837e-05 0.09295011008 0) (-0.0009593041033 0.09295505004 0) (-0.000962740088 0.09267570055 0) (0.001163323615 0.09265993566 0) (0.0008593379186 0.09266344894 0) (0.0005446700389 0.092946208 0) (0.0008586752957 0.09294298193 0) (0.001162169019 0.09293973308 0) (0.000239448965 0.09294814898 0) (0.00176300263 0.09349310347 0) (0.00356498128 0.09185172489 -3.547717675e-13) (0.003950985273 0.08790214445 -3.375077995e-13) (0.004924523687 0.07626852727 -2.946809463e-13) (0.004651602857 0.06595556589 -2.532973831e-13) (0.00399800473 0.04434740374 -1.713351683e-13) (0.003125518668 0.03258318312 -1.251221349e-13) (0.001440828982 0.01244600675 -4.810041254e-14) (0.0002622942238 0.002052675725 -7.882583475e-15) (0.0006598205558 0.005435092693 -2.087219286e-14) (-0.001980046454 0.01641940489 -6.500355809e-14) (-0.00259405581 0.02290947621 -9.012235402e-14) (-0.00477317092 0.05071152695 -2.007005673e-13) (-0.005051752801 0.05812257048 -2.285949208e-13) (-0.00551096134 0.08142974697 -3.222144773e-13) (-0.005198599893 0.0857294714 -3.37146977e-13) (-0.003746977866 0.09066019625 0) (-0.002846231475 0.09122477083 0) (-0.002849771139 0.09094074492 0) (-0.003150454746 0.0906593047 0) (-0.003148065145 0.09094122226 0) (-0.003144922646 0.09122443054 0) (-0.00315323322 0.09037583935 0) (-0.001295762674 0.09183181854 0) (-0.001599167341 0.09183070448 0) (-0.0019290941 0.09153128364 0) (-0.001941289081 0.09123987609 0) (0.0005667525881 0.09154629157 0) (0.001178371858 0.09181566136 0) (0.0008678968079 0.09182266509 0) (0.005493850204 0.08297376799 -3.286260153e-13) (0.00548320317 0.07579158061 -2.983169267e-13) (0.004981211576 0.05386294361 -2.133293542e-13) (0.004239428845 0.04307170104 -1.695310559e-13) (0.002275043583 0.01916371738 -7.588374373e-14) (0.0007818741042 0.005967639951 -2.348121697e-14) (0.001402245787 0.01126367763 -4.432565426e-14) (-0.002261468793 0.01827695513 -7.419065362e-14) (-0.0030271331 0.026049653 -1.050826093e-13) (-0.005096733109 0.05274787585 -2.141065103e-13) (-0.005487702954 0.06147770333 -2.47940557e-13) (-0.005687509166 0.08174959695 -3.317901509e-13) (-0.005370268491 0.08607555935 -3.471389842e-13) (0.003011636631 0.08891743122 0) (0.003012721588 0.08920156981 0) (0.003311854125 0.08948149596 0) (0.005694060956 0.08403213997 -3.413380689e-13) (0.005858501341 0.07909047005 -3.192168752e-13) (0.005459134095 0.0576216095 -2.340627692e-13) (0.004862692003 0.04820846166 -1.945665851e-13) (0.002755309864 0.02263761663 -9.195422201e-14) (0.001170133486 0.008708791502 -3.513855873e-14) (0.001890316268 0.01480713308 -5.97577543e-14) (-0.002430753894 0.0191434007 -7.974176874e-14) (-0.003198302176 0.02682042706 -1.109945469e-13) (-0.005258405832 0.05299798362 -2.207400929e-13) (-0.005631237094 0.06143043416 -2.541855615e-13) (-0.005756944193 0.08050317398 -3.352873534e-13) (-0.005420116179 0.08449961732 -3.49636986e-13) (0.002996980717 0.0866491836 0) (0.002999221432 0.08693230242 0) (0.00329838896 0.08721358668 0) (0.005709643574 0.08235939223 -3.433364704e-13) (0.005957245654 0.07857663975 -3.254341241e-13) (0.00554183079 0.05709573004 -2.380040609e-13) (0.005062515159 0.0489784979 -2.028377466e-13) (0.002854044019 0.02286693745 -9.531264666e-14) (0.001312347375 0.009523882593 -3.944067295e-14) (0.002062630827 0.01575611295 -6.52256027e-14) (-0.002592556458 0.01988284482 -8.504308369e-14) (-0.003361565786 0.02745307374 -1.166289287e-13) (-0.00540878418 0.05305306569 -2.268740751e-13) (-0.005758445959 0.0611339468 -2.596811655e-13) (-0.005818877862 0.07911894041 -3.383404668e-13) (-0.005458712635 0.08274031846 -3.51468854e-13) (-0.002148490165 0.08528134176 0) (0.002975643504 0.08438783396 0) (0.002978451367 0.08466979972 0) (0.003278257997 0.08495094919 0) (0.005607890358 0.07906524215 -3.384792446e-13) (0.005850002948 0.07538649262 -3.205491428e-13) (0.005294578256 0.05322762709 -2.278455202e-13) (0.004877161009 0.04603255377 -1.957323192e-13) (0.002581815689 0.02016469751 -8.629208459e-14) (0.00119170875 0.008428970416 -3.583244812e-14) (0.001915201108 0.01426069227 -6.061817714e-14) (-0.002795345875 0.02085972143 -9.167666626e-14) (-0.003542972781 0.02815635916 -1.229016888e-13) (-0.005583406251 0.05325492432 -2.34007258e-13) (-0.005895715194 0.06086547328 -2.656208586e-13) (-0.005881381489 0.07770132337 -3.414490912e-13) (-0.005496322101 0.08094674552 -3.532729664e-13) (-0.002160448863 0.08303211666 0) (0.002948819296 0.08213426524 0) (0.002952552053 0.08241585926 0) (0.00539627904 0.074343657 -3.270439475e-13) (0.005584001248 0.07028102271 -3.07059933e-13) (0.004815952269 0.04721635544 -2.076949723e-13) (0.004346034616 0.03999740245 -1.747213485e-13) (0.002090786153 0.01590851877 -6.997180613e-14) (0.0008789289579 0.006055462422 -2.645106356e-14) (0.001528668344 0.01108895393 -4.843347945e-14) (-0.003038147818 0.02204051146 -9.961476088e-14) (-0.003763885735 0.02908240079 -1.305067165e-13) (-0.00579214982 0.05367135604 -2.425282197e-13) (-0.00605670854 0.06074948828 -2.725597525e-13) (-0.005955260545 0.07637608571 -3.451128272e-13) (-0.005534791677 0.07913834175 -3.550770789e-13) (-0.002170717919 0.080783625 0) (0.005051524361 0.06799021818 -3.075595334e-13) (0.005202197971 0.06392391522 -2.871314297e-13) (0.004162462381 0.03977285005 -1.798838856e-13) (0.003719360824 0.0333530808 -1.497968416e-13) (0.001500468716 0.01111474615 -5.026534744e-14) (0.000493649459 0.003310618844 -1.484923295e-14) (0.0009567333576 0.006756490887 -3.033684415e-14) (-0.003336525443 0.02355248855 -1.095790125e-13) (-0.004096708364 0.03074408374 -1.419697693e-13) (-0.00603376925 0.05439238892 -2.529920717e-13) (-0.006275869383 0.06108793028 -2.820244038e-13) (-0.006018666247 0.07511014308 -3.493316747e-13) (-0.005574974697 0.0772956667 -3.568534357e-13) (-0.002327218038 0.07825488783 0) (-0.002326692644 0.07839534096 0) (-0.00217893574 0.07853523748 0) (0.0002168142613 0.07821051985 0) (0.0002214420052 0.07835016254 0) (0.0003718305348 0.07849023779 0) (0.003418628092 0.0763958886 -3.555766792e-13) (0.003955249762 0.07557067443 -3.492206524e-13) (0.00455765122 0.05991693743 -2.789157794e-13) (0.004626710714 0.05547049498 -2.563504964e-13) (0.00332386479 0.03092672216 -1.439404151e-13) (0.002964694731 0.02588343349 -1.195987753e-13) (0.0008930569963 0.006435477986 -2.994826609e-14) (0.0001694520084 0.001105522127 -5.107025913e-15) (0.0005356075396 0.003679674497 -1.698641228e-14) (-0.002992912018 0.02058288314 -9.861556016e-14) (-0.003987159026 0.02921534494 -1.38916656e-13) (-0.005642334076 0.04957782363 -2.375044605e-13) (-0.006134084569 0.05836455007 -2.774724894e-13) (-0.005821704147 0.07088172631 -3.395339565e-13) (-0.005495260034 0.07467752355 -3.550770789e-13) (-0.002105980027 0.07627888824 0) (-0.001956335004 0.07627791099 0) (0.000434382873 0.07570002827 0) (0.0007355183446 0.07597926218 0) (0.003258509972 0.07118571178 -3.412825578e-13) (0.00370994597 0.06940829117 -3.302635943e-13) (0.003930216494 0.05034482993 -2.413902411e-13) (0.00394890729 0.0461774088 -2.197408921e-13) (0.002452977101 0.02221035591 -1.064703881e-13) (0.002099524646 0.01783676454 -8.487655023e-14) (0.0003607784005 0.002527278784 -1.212918654e-14) (9.968625008e-07 6.323346751e-06 -2.775557562e-17) (0.0001344431374 0.0008980471497 -4.274358645e-15) (-0.001876279459 0.01252099603 -6.186717805e-14) (-0.002916246906 0.02073655283 -1.016409179e-13) (-0.004318164558 0.03681888951 -1.818545314e-13) (-0.005096597212 0.04704494132 -2.305655666e-13) (-0.005000184102 0.05903225768 -2.915445663e-13) (-0.005053667391 0.06653864651 -3.261002579e-13) (-0.003639340861 0.07006590459 -3.460842724e-13) (-0.003163474472 0.07296288918 -3.576583474e-13) (-0.001371853985 0.07213835288 -3.564093465e-13) (-0.0007793361104 0.07317741156 0) (0.0009820826218 0.07018810752 -3.468614285e-13) (0.001577117187 0.07134544505 -3.498590306e-13) (0.002805857851 0.05948665171 -2.940148125e-13) (0.003240890838 0.05887266262 -2.887412531e-13) (0.003023173818 0.03753525893 -1.855182674e-13) (0.003056419309 0.03465903763 -1.699751451e-13) (0.001494842034 0.01311909919 -6.483702464e-14) (0.00122988623 0.01013857112 -4.971023593e-14) (3.660219394e-05 0.0002487692552 -1.221245327e-15) (0 0 0) (0 0 0) (-0.0005972156382 0.003865099374 -1.970645869e-14) (-0.0013863534 0.009564110378 -4.83779683e-14) (-0.002389346697 0.01977748709 -1.008360062e-13) (-0.003284326022 0.029432787 -1.48853152e-13) (-0.003364249929 0.03858603921 -1.967037644e-13) (-0.003786933672 0.04841115687 -2.448319325e-13) (-0.002761623959 0.05166253808 -2.63372657e-13) (-0.002649751655 0.05927282483 -2.997602166e-13) (-0.001094848046 0.05605475266 -2.857991621e-13) (-0.0006749926218 0.06137685974 -3.104738688e-13) (0.0007570856812 0.05189734691 -2.646494135e-13) (0.001265957777 0.05530486973 -2.798039578e-13) (0.001910102607 0.03905664449 -1.992017662e-13) (0.002289649008 0.04018795347 -2.03337347e-13) (0.001694311439 0.02032788762 -1.036670749e-13) (0.001778121461 0.0195042369 -9.867107131e-14) (0.0004927771138 0.004185868752 -2.134403765e-14) (0.0003950578991 0.003154027504 -1.595945598e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.000187172352 0.001251607578 -6.550315845e-15) (-0.0006316364675 0.005072937166 -2.672861932e-14) (-0.00128969107 0.01122273626 -5.86197757e-14) (-0.001435070195 0.01600936493 -8.432143872e-14) (-0.00196624597 0.0244610837 -1.277589146e-13) (-0.001403521091 0.02563819853 -1.350308754e-13) (-0.00155112433 0.0338960231 -1.770528169e-13) (-0.0005785161563 0.02937612857 -1.547373341e-13) (-0.0003944811175 0.03601271507 -1.881550471e-13) (0.0004019072734 0.02583920767 -1.361133428e-13) (0.0007273183784 0.03022970241 -1.579569808e-13) (0.0008324665165 0.01633463399 -8.604228441e-14) (0.001085922071 0.0183337769 -9.578449145e-14) (0.0004618116617 0.005344552336 -2.814415367e-14) (0.0005290704822 0.005603544261 -2.928213227e-14) (7.867729401e-08 6.464846422e-07 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-7.859377827e-05 0.0006629538098 -3.580469254e-15) (-0.0001510595711 0.001636130932 -8.909539773e-15) (-0.0004398608775 0.005322529442 -2.875477634e-14) (-0.0002920483347 0.005207302403 -2.836619828e-14) (-0.0004699007791 0.01005393879 -5.431766148e-14) (-0.0001368187879 0.006915577602 -3.766431611e-14) (-0.0001206299858 0.01124428758 -6.072919945e-14) (8.804582967e-05 0.005296799657 -2.886579864e-14) (0.0002060219535 0.008106330581 -4.379829832e-14) (9.207733258e-05 0.001734332608 -9.464651285e-15) (0.0001731664772 0.002810077774 -1.518229986e-14) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.786844439e-07 2.036188332e-05 -1.110223025e-16) (0 0 0) (-9.971460528e-07 9.270806225e-05 -5.273559367e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0.001967359751 0.08807414775 0) (0.001951437908 0.08580604946 0) (0.001964110009 0.08750651761 0) (-0.002157587742 0.08359423766 0) (0.001781084432 0.08354795861 0) (0.001929007626 0.08354731913 0) (0.001946320105 0.08524036452 0) (-0.002168340627 0.08134565773 0) (-0.002176937026 0.07909729881 0) (-0.002323257317 0.07937938949 0) (-0.002323731664 0.07923875318 0) (0.001724852064 0.07960914246 0) (0.001423004262 0.07932942996 0) (-0.00210228134 0.07684126498 0) (-0.002303578399 0.07711480718 0) (-0.002251034769 0.07698277133 0) (-0.0004121978659 0.07694999615 0) (-0.0006059486516 0.07683149328 0) (-0.0002776457024 0.0786276608 0) (0.001361718075 0.07709272584 0) (0.00167029989 0.0773696124 0) (0.001678665827 0.07764868154 0) (0.001397479925 0.07820890902 0) (0.001686654977 0.07792805354 0) (-0.001503086579 0.09067147502 0) (-0.001507327416 0.09052607911 0) (-0.001663341312 0.09037379603 0) (-0.001658916968 0.09052129223 0) (-0.00165426118 0.09066822923 0) (-0.001665329888 0.09023128702 0) (-0.001948431305 0.09095219316 0) (-0.0009914338487 0.0918328482 0) (-0.0006912805148 0.09155348833 0) (0.001487186907 0.09180766279 0) (0.001795688779 0.09179830793 0) (0.001787498476 0.09208413317 0) (0.001805255982 0.09150932603 0) (0.002104449311 0.09178656125 0) (0.003305821536 0.0883477307 0) (0.003010316477 0.08863327718 0) (-0.00318002674 0.08669297022 0) (-0.00318149742 0.08641176631 0) (-0.003480195385 0.08613238588 0) (-0.003178555037 0.08697433085 0) (0.003289046924 0.08608104855 0) (0.002994634581 0.08636592179 0) (-0.003191237333 0.08444430185 0) (-0.003192565032 0.08416299252 0) (-0.003490910027 0.08388366203 0) (-0.003485667434 0.08500845571 0) (-0.003189884196 0.08472550652 0) (-0.002151586713 0.08471917006 0) (0.003266083216 0.08382263516 0) (0.002972613615 0.08410586964 0) (-0.003201120636 0.08219488034 0) (-0.003202223921 0.08191393525 0) (-0.003500254957 0.08163468108 0) (-0.003495785823 0.08275903574 0) (-0.003199976976 0.08247600802 0) (-0.002163207122 0.08246974683 0) (0.0009633010105 0.08312803729 0) (-0.003209416733 0.0799465064 0) (-0.003210390183 0.07966544292 0) (-0.003806105444 0.07938804132 0) (-0.003508577772 0.07938621589 0) (-0.00350443668 0.0805103376 0) (-0.003208416992 0.08022759584 0) (-0.002172912368 0.08022159107 0) (-0.002320850666 0.08008191776 0) (0.0008522937952 0.0803131921 0) (0.0007030111593 0.08017286147 0) (-0.003218811602 0.07769787842 0) (-0.003220490638 0.07741476899 0) (-0.003792366846 0.07712582264 0) (-0.003493978899 0.07712373037 0) (-0.003811148977 0.07826372959 0) (-0.003513360098 0.07826190245 0) (-0.003217301315 0.07797914737 0) (-0.002181221269 0.0779732564 0) (-0.002327782528 0.07811444803 0) (-0.001963679283 0.07515328776 0) (-0.001965515566 0.07487209931 0) (-0.001666212459 0.07487014473 0) (-0.001366918495 0.07486819021 0) (-0.002264818673 0.07487405389 0) (-0.000766483835 0.07514546956 0) (-0.000768320118 0.0748642811 0) (-0.0004690222356 0.07486232655 0) (-0.001067619307 0.07486623565 0) (-0.000759150004 0.07627009285 0) (-0.0006094945326 0.07626911554 0) (-0.0004589257174 0.07640879779 0) (-0.001161685008 0.08879682537 0) (-0.001166973611 0.08794778606 0) (0.001970024593 0.08864221272 0) (-0.001699157945 0.08612122512 0) (-0.001699984323 0.08598068254 0) (-0.00199716286 0.08584197077 0) (-0.00184898025 0.08584105532 0) (-0.001845686092 0.08640348695 0) (-0.001698331225 0.08626181995 0) (-0.00117999835 0.08654011871 0) (-0.001177780325 0.08569616329 0) (-0.001253563903 0.08583728454 0) (-0.001254267074 0.08576700861 0) (-0.001167634189 0.08766583239 0) (-0.001177142995 0.08682115684 0) (0.001956129241 0.08637242941 0) (0.002104350861 0.08637148758 0) (0.002105472072 0.08651317759 0) (0.002106555125 0.08665502459 0) (0.002103204639 0.08622996752 0) (0.001361249777 0.0864470127 0) (0.001437332005 0.08651742329 0) (0.00143930178 0.08680105326 0) (0.001364144517 0.08687228172 0) (0.001960366364 0.08693925639 0) (0.002108652859 0.08693824883 0) (0.002109643978 0.08708001806 0) (0.002107610522 0.08679663667 0) (-0.002154633578 0.0841566062 0) (-0.001258847548 0.08534620435 0) (-0.001182357392 0.08541588087 0) (0.0009662481393 0.08341032866 0) (0.001935116915 0.08411082949 0) (0.001633239173 0.08354853228 0) (0.001486953886 0.08368998332 0) (0.001940879035 0.08467517801 0) (-0.002165832305 0.08190775491 0) (-0.001660237509 0.07979708239 0) (-0.001586539419 0.07972641201 0) (-0.002322770422 0.07951994735 0) (-0.002174989785 0.07965947802 0) (0.00067956169 0.07905026337 0) (0.0006921086671 0.07961117175 0) (0.0008360053451 0.07947075505 0) (-0.001503301803 0.07676852262 0) (-0.002328655894 0.0772687104 0) (-0.002184057549 0.07741093932 0) (-0.001208540939 0.07676881805 0) (-0.003167136623 0.08894882285 0) (-0.003168850311 0.08866640717 0) (-0.003165019739 0.08923297951 0) (-0.001675753615 0.08951111022 0) (-0.001677169308 0.08936832633 0) (-0.001827056354 0.08922624296 0) (-0.001674112272 0.08965444774 0) (-0.00169233241 0.08724641335 0) (-0.001693199334 0.08710566206 0) (-0.001842326121 0.08696599652 0) (-0.001838897095 0.08752908031 0) (-0.001691438172 0.08738734732 0) (0.00294518052 0.08185306243 0) (0.0003418594128 0.08059498313 0) (0.0003528202607 0.0779320099 0) (0.0002114466534 0.0780711824 0) (-0.001684987556 0.08837512463 0) (-0.001685977311 0.08823356436 0) (-0.001835304096 0.0880932732 0) (-0.001831414217 0.08865892698 0) (-0.001683985424 0.08851658033 0) (0.001525947347 0.0896450187 0) (0.001674612943 0.08978606257 0) (0.001971936858 0.08921103622 0) (0.001475770651 0.08270350382 0) (0.001477356489 0.08284434185 0) (0.001626826426 0.08298455371 0) (0.001619974234 0.0824212833 0) (0.001474094074 0.08256277088 0) (-0.0002845641996 0.07834723694 0) (-0.000712326491 0.09098773501 0) (-0.0005563632342 0.09099026383 0) (-0.0004027191137 0.09085206521 0) (-0.00087629239 0.090979368 0) (-0.001042130648 0.09082648819 0) (-0.00105001249 0.09067874813 0) (-0.0009080585681 0.09039223874 0) (-0.001055258885 0.09053337185 0) (0.0005835824353 0.09097943281 0) (0.0007382085682 0.09097500892 0) (0.0009041854551 0.09082091697 0) (0.0002734206691 0.09084720957 0) (0.0004287681167 0.09098343998 0) (0.00100321229 0.08936581745 0) (0.0007748817357 0.08987554211 0) (0.0009606479412 0.082846175 0) (0.0003386522771 0.0803134771 0) (-0.001815325007 0.07783065854 0) (-0.001164276848 0.08851353905 0) (-0.001167105447 0.08823039794 0) (-0.001178331975 0.08625848943 0) (-0.001252930038 0.08590754786 0) (-0.001174227635 0.08597718381 0) (-0.001170846522 0.08738413048 0) (-0.001174044574 0.08710241542 0) (0.0009670412819 0.08369258186 0) (0.001041963944 0.08362162921 0) (-0.001817510763 0.07754995561 0) (-0.001815431768 0.07726831058 0) (-0.0005161479753 0.0778567987 0) (-0.003454659846 0.07600662586 0) (-0.003157206083 0.07572348291 0) (-0.00180667692 0.07627693366 0) (-0.001657949612 0.07613542748 0) (-0.000255159013 0.09050302558 0) (-0.0005272157613 0.09026459331 0) (-0.0006007266228 0.09033433383 0) (0.0001103988522 0.09050260921 0) (-0.001059368214 0.07613151849 0) (-0.0009088124587 0.07627120082 0) (-0.0009620018635 0.07696494956 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (3.543876244e-05 0.0002641383682 -1.026956298e-15) (0.0003106467038 0.002258379396 -8.881784197e-15) (0.0005771100121 0.004091045253 -1.651456749e-14) (0.000681302659 0.004708937915 -1.948441408e-14) (0.000593342679 0.003996507311 -1.698641228e-14) (0.0003732127914 0.00244834566 -1.068589661e-14) (0.0001378840051 0.00088047782 -3.969047313e-15) (4.739406817e-06 2.943978687e-05 -1.387778781e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.001967350996 0.07459104145 0) (-0.0007701555482 0.07458322324 0) (0.002252624808 0.08637055847 0) (0.00225697862 0.08693725408 0) (0.00260810976 0.07932568733 0) (-0.0006616781203 0.09267447895 0) (0.0005463435617 0.0926670733 0) (-0.002852504317 0.09065821574 0) (0.003252862321 0.08269613036 0) (-0.00410918583 0.07826558448 0) (-0.002145384651 0.08584288648 0) (-0.00151338845 0.09037595791 0) (-0.003474414931 0.08725754175 0) (-0.004103907297 0.07938988161 0) (-0.004090912284 0.07712779839 0) (-0.003468078535 0.08838582861 0) (-0.003460471891 0.08951862753 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-9.256175961e-06 6.801084106e-05 -2.498001805e-16) (-0.0001861460294 0.001334169789 -5.245803791e-15) (-0.0003311408383 0.002313532874 -9.325873407e-15) (-0.0004031919856 0.00274536033 -1.135203043e-14) (-0.0004813612012 0.003192983038 -1.357247648e-14) (-0.0005745795938 0.003710095388 -1.620925616e-14) (-0.0006496541829 0.004080192306 -1.831867991e-14) (-0.0009051080929 0.005523940966 -2.550737399e-14) (-0.0008699140124 0.005179845121 -2.461919557e-14) (-0.0003899326473 0.002252914891 -1.10467191e-14) (-6.678553343e-06 3.740722776e-05 -1.942890293e-16) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (0 0 0) (-0.00132654873 0.07768337914 0) (-0.001320469856 0.07775303222 0) (-0.001288835551 0.07768016804 0) (-0.001282756592 0.07774983418 0) (-0.001259826466 0.077677706 0) (-0.001253746201 0.07774737214 0) (-0.001332277049 0.07761360622 0) (-0.00129456813 0.0776103429 0) (-0.001265560607 0.0776078417 0) (-0.0006870731061 0.08829516656 0) (-0.0006810478862 0.08836560365 0) (-0.0006493455878 0.08829215128 0) (-0.000643343226 0.08836228812 0) (-0.0006203238958 0.08828981978 0) (-0.0006143412683 0.08835973471 0) (0.0004968867841 0.08956219753 0) (0.000519691625 0.08950548461 0) (0.0004617949735 0.08954801665 0) (0.0004843325865 0.08949198332 0) (0.0004348013644 0.08953710686 0) (0.000457133424 0.08948159732 0) (0.0004454570635 0.08279640782 0) (0.000433495238 0.08273750306 0) (0.0004083637477 0.08280393801 0) (0.0003964032282 0.08274503325 0) (0.0003798309104 0.08280972746 0) (0.0003678703909 0.08275082269 0) (-0.0006746254089 0.08843567244 0) (-0.0006369389211 0.08843217417 0) (-0.0006079483499 0.08842947717 0) (-0.0001057490085 0.08048874349 0) (-0.0001327612614 0.08038968343 0) (-0.0001422678388 0.08049868619 0) (-0.0001692387994 0.0803997826 0) (-0.0001703593048 0.08050634046 0) (-0.0001972982967 0.0804075542 0) (-0.0007776182906 0.07829925821 0) (-0.0007968708234 0.07824173327 0) (-0.0008134907402 0.07831133867 0) (-0.0008326887876 0.07825395705 0) (-0.0008410851922 0.0783206223 0) (-0.0008602405937 0.07826337101 0) (-0.001350910869 0.07713102441 0) (-0.00135921035 0.07719373158 0) (-0.001326465707 0.07712889258 0) (-0.001327140413 0.07719097528 0) (-0.001307660919 0.07712725472 0) (-0.001302471834 0.07718885506 0) (0.000555408812 0.08940642893 0) (0.0005196430199 0.08939404178 0) (0.0004921320783 0.0893845133 0) (0.0001843720686 0.09007926883 0) (0.0002611948728 0.08999708345 0) (0.0001594968243 0.09005074257 0) (0.0002319967715 0.08997300155 0) (0.000140360414 0.09002879937 0) (0.0002095351827 0.08995447642 0) (-0.001074942555 0.08105443046 0) (-0.001070562965 0.08112447341 0) (-0.001037172017 0.08105200264 0) (-0.001032788169 0.0811220978 0) (-0.00100811591 0.0810501411 0) (-0.0010037305 0.08112027543 0) (-0.001061860746 0.08126403724 0) (-0.001057727746 0.08133032026 0) (-0.001024084388 0.0812617008 0) (-0.001019948605 0.08132800993 0) (-0.0009950253274 0.08125989149 0) (-0.0009908892885 0.0813262398 0) (-0.001079536956 0.0809844934 0) (-0.001041769287 0.08098202642 0) (-0.001012716048 0.08098012571 0) (-0.001093329533 0.0807744472 0) (-0.00108873584 0.08084447569 0) (-0.001055560558 0.0807719802 0) (-0.001050968256 0.08084199564 0) (-0.001026507319 0.0807700795 0) (-0.001021916323 0.08084009494 0) (-0.001134509143 0.0801510467 0) (-0.001129918253 0.08021544597 0) (-0.001096755984 0.08014835777 0) (-0.001092163617 0.08021278315 0) (-0.001067715608 0.08014628736 0) (-0.001063120544 0.08021072579 0) (-0.0003264909339 0.07971342919 0) (-0.0003562698394 0.07961460924 0) (-0.0003627781733 0.07972419322 0) (-0.0003925104296 0.07962551663 0) (-0.000390691334 0.07973247324 0) (-0.0004203888658 0.07963391397 0) (-0.001309417239 0.0778889106 0) (-0.001304291494 0.07794761184 0) (-0.001271699801 0.07788575172 0) (-0.001266586748 0.07794430937 0) (-0.001242686542 0.07788332884 0) (-0.001237582093 0.077941769 0) (-0.001323932068 0.07702386667 0) (-0.001316719686 0.07702669296 0) (-0.001350512994 0.07740415065 0) (-0.001344823088 0.07747404137 0) (-0.00131288113 0.07740088783 0) (-0.001307127399 0.07747075201 0) (-0.001283932464 0.07739837395 0) (-0.001278130581 0.0774682117 0) (-0.001077631552 0.07745386761 0) (-0.001098422265 0.07739780247 0) (-0.001113079787 0.07746710772 0) (-0.001133839325 0.07741101626 0) (-0.001140348377 0.07747729042 0) (-0.001161083271 0.07742117268 0) (0.0008613919181 0.08786177786 0) (0.0008679193397 0.08779231673 0) (0.000823722602 0.0878581056 0) (0.0008302255234 0.08778889278 0) (0.0007947442765 0.08785527778 0) (0.0008012301928 0.08778626099 0) (0.0008740973635 0.08772215259 0) (0.0008363804384 0.08771899001 0) (0.0008073680174 0.08771654118 0) (0.0008849734488 0.08758159889 0) (0.0008893835865 0.08751111978 0) (0.0008472131741 0.08757899821 0) (0.0008516055124 0.08750879349 0) (0.0008181670841 0.08757699367 0) (0.0008225451999 0.08750701108 0) (0.0008670776515 0.08560383042 0) (0.0008612667378 0.08553380988 0) (0.0008293531717 0.08560691099 0) (0.0008235506912 0.08553698182 0) (0.0008003342623 0.0856092686 0) (0.0007945389091 0.08553943081 0) (0.0008825208595 0.08581463644 0) (0.0008777081213 0.08574446571 0) (0.0008447562286 0.08581716871 0) (0.0008399506176 0.08574708936 0) (0.0008157058573 0.08581910858 0) (0.0008109060675 0.08574912062 0) (0.0008554388725 0.08546359354 0) (0.0008177411689 0.08546697433 0) (0.0007887434705 0.08546957996 0) (0.0008418814859 0.08532436182 0) (0.0008353450474 0.08525804224 0) (0.0008042147325 0.08532808199 0) (0.000797687948 0.08526184072 0) (0.0007752408571 0.08533093562 0) (0.0007687197232 0.08526475961 0) (-0.0007073898665 0.08802087738 0) (-0.0007026691092 0.08808556314 0) (-0.0006696323628 0.08801825373 0) (-0.0006649216859 0.08808279589 0) (-0.0006405877274 0.08801623553 0) (-0.0006358843483 0.08808066019 0) (-0.0006974630637 0.08815496071 0) (-0.0006597185083 0.08815215429 0) (-0.0006306853446 0.08814997944 0) (-0.0004413066042 0.07933619752 0) (-0.0004595616757 0.07927801303 0) (-0.0004774510279 0.07934743081 0) (-0.0004956807731 0.07928932452 0) (-0.0005052533999 0.07935607581 0) (-0.0005234658256 0.07929802165 0) (-0.0006848985718 0.07857435453 0) (-0.0007037864342 0.07851727128 0) (-0.0007208257627 0.0785862525 0) (-0.0007396722 0.07852931266 0) (-0.0007484627753 0.07859541886 0) (-0.0007672773561 0.07853855717 0) (0.0004977528566 0.08305902072 0) (0.000485381242 0.08299596529 0) (0.0004606122945 0.08306631613 0) (0.0004482420712 0.08300327375 0) (0.0004320416943 0.08307192297 0) (0.0004196754744 0.08300889362 0) (0.0004721693865 0.08292864443 0) (0.0004350476205 0.08293601809 0) (0.0004064905071 0.08294169014 0) (0.0001759773238 0.08158459113 0) (0.0001611489049 0.08152272722 0) (0.0001391732482 0.08159341247 0) (0.0001243543127 0.08153160073 0) (0.0001108611674 0.08160020615 0) (9.605023858e-05 0.08153842049 0) (-0.0006544697106 0.08864529832 0) (-0.0006471339551 0.08871461668 0) (-0.0006168182618 0.08864143458 0) (-0.0006095061587 0.08871053106 0) (-0.0005878556023 0.08863846348 0) (-0.0005805629777 0.08870737723 0) (-0.0006614108795 0.08857540271 0) (-0.0006237385608 0.08857173475 0) (-0.0005947605115 0.08856892028 0) (-0.0009777696157 0.08273944433 0) (-0.0009741428435 0.08280580903 0) (-0.0009399757938 0.08273738206 0) (-0.0009363503277 0.08280374677 0) (-0.0009109048352 0.0827357947 0) (-0.0009072793691 0.08280215941 0) (-0.001008188459 0.08217903142 0) (-0.001004402687 0.08224914355 0) (-0.0009703944662 0.08217699527 0) (-0.0009666086947 0.0822471074 0) (-0.0009413221163 0.08217542096 0) (-0.0009375363449 0.08224553309 0) (-0.0009968140806 0.08238938076 0) (-0.0009930008826 0.08245949271 0) (-0.0009590201735 0.08238733155 0) (-0.0009552069754 0.08245744349 0) (-0.0009299492149 0.08238574419 0) (-0.0009261360168 0.08245585614 0) (-0.0009815613736 0.08266981549 0) (-0.0009437687725 0.08266776629 0) (-0.0009146965079 0.08266617892 0) (-0.0009891876845 0.08252960465 0) (-0.0009513951686 0.08252754239 0) (-0.0009223228188 0.08252596809 0) (-0.001054205183 0.08138892749 0) (-0.00101642448 0.08138665633 0) (-0.000987362381 0.0813849123 0) (-0.001044666724 0.08154934406 0) (-0.00104053946 0.08161874867 0) (-0.001006884544 0.08154709901 0) (-0.001002757365 0.08161649057 0) (-0.0009778210539 0.08154536804 0) (-0.0009736951813 0.0816147596 0) (-0.001011974145 0.08210893235 0) (-0.0009741802376 0.08210688314 0) (-0.0009451078024 0.08210532189 0) (-0.001023682835 0.08189899009 0) (-0.001019535351 0.08196889088 0) (-0.0009859006552 0.08189674504 0) (-0.0009817472653 0.08196675028 0) (-0.0009568370797 0.08189502712 0) (-0.0009526793453 0.08196509764 0) (-0.00103633715 0.08168884502 0) (-0.0009985563615 0.08168658692 0) (-0.0009694943479 0.08168482983 0) (-0.001027898914 0.08182898525 0) (-0.0009901182111 0.08182671409 0) (-0.0009610561975 0.081824957 0) (-0.001111534862 0.0804942799 0) (-0.001107010218 0.08056433496 0) (-0.001073764324 0.08049185208 0) (-0.001069239766 0.08056189407 0) (-0.001044709609 0.08048997748 0) (-0.001040186441 0.08056000643 0) (-0.001097889355 0.08070440543 0) (-0.001060120294 0.08070195149 0) (-0.001031067055 0.08070005079 0) (-0.0001673994737 0.0802661971 0) (-0.0001837380249 0.08020794785 0) (-0.0002038375757 0.08027643969 0) (-0.0002201572853 0.08021825561 0) (-0.000231867005 0.08028431558 0) (-0.0002481720071 0.08022618366 0) (-0.001116024157 0.08042423767 0) (-0.00107825362 0.08042180984 0) (-0.001049197513 0.0804199483 0) (-0.001124992354 0.08028454497 0) (-0.0010872292 0.08028198658 0) (-0.001058181611 0.08028002061 0) (-0.0003744621837 0.07955423011 0) (-0.0004106813657 0.07956521573 0) (-0.0004385424824 0.0795736652 0) (-0.0004110760998 0.07943457046 0) (-0.0004472552479 0.07944568643 0) (-0.0004750856436 0.07945424019 0) (-0.001356128994 0.07733437699 0) (-0.001318840958 0.07733106418 0) (-0.001290157672 0.07732851285 0) (0.0008362995914 0.08808620986 0) (0.0008480631786 0.08798775859 0) (0.0007987226838 0.08808168803 0) (0.0008104589029 0.08798344592 0) (0.0007698158436 0.08807820671 0) (0.000781533581 0.0879801345 0) (0.0007997175852 0.08835803641 0) (0.0008099349492 0.08828941319 0) (0.0007622989528 0.08835235113 0) (0.000772479977 0.08828396325 0) (0.0007335155246 0.0883479678 0) (0.0007436677895 0.08827977602 0) (0.0008284688479 0.08815049434 0) (0.000790905539 0.08814585488 0) (0.000762011162 0.08814228204 0) (0.000789465588 0.08842395624 0) (0.0007520832952 0.08841803564 0) (0.0007233274057 0.08841346927 0) (0.0009006656841 0.08729953843 0) (0.0009036620141 0.08722896407 0) (0.0008628526936 0.08729786542 0) (0.0008658401958 0.08722753927 0) (0.0008337668894 0.08729657949 0) (0.0008367450521 0.08722642319 0) (0.0008935354713 0.0874406946 0) (0.0008557456162 0.0874385643 0) (0.0008266770997 0.08743692561 0) (0.0009060037081 0.08715814582 0) (0.0008681740269 0.08715691699 0) (0.0008390748532 0.08715598378 0) (0.0008985252323 0.08609697316 0) (0.0008949511446 0.08602607599 0) (0.0008607147412 0.08609868289 0) (0.000857151331 0.08602802075 0) (0.0008316289313 0.08609999607 0) (0.0008280758573 0.08602951672 0) (0.0008872944486 0.08588521231 0) (0.0008495153075 0.08588752264 0) (0.0008204547706 0.08588930584 0) (0.0009012796123 0.08616754915 0) (0.0008634598352 0.08616903691 0) (0.0008343677776 0.0861701934 0) (0.0008293242713 0.08519908563 0) (0.0007916783877 0.08520300158 0) (0.0007627212082 0.08520601183 0) (0.0008119358416 0.08503700935 0) (0.0008041733232 0.08496734114 0) (0.0007743163931 0.08504117328 0) (0.0007665912698 0.08497183134 0) (0.0007453787774 0.08504437931 0) (0.0007376813952 0.08497528536 0) (0.0007682492966 0.08469012375 0) (0.0007590664449 0.08462416104 0) (0.0007307456955 0.08469522731 0) (0.0007215765865 0.084629369 0) (0.0007018976627 0.08469915111 0) (0.0006927382076 0.0846333711 0) (0.0007952469607 0.0848976544 0) (0.0007576979578 0.08490240561 0) (0.0007288142624 0.08490606843 0) (0.0007774714673 0.08475890736 0) (0.0007399445549 0.08476384127 0) (0.0007110787761 0.08476764764 0) (0.0001997115503 0.08168359423 0) (0.0001629008593 0.08169240255 0) (0.0001345846898 0.08169917014 0) (-0.0002287981428 0.08005072807 0) (-0.000245397735 0.07999318581 0) (-0.0002651665347 0.08006120529 0) (-0.0002817623847 0.08000367606 0) (-0.0002931423982 0.08006926369 0) (-0.0003097355961 0.08001176057 0) (-0.001234065355 0.07880628395 0) (-0.001228852609 0.0788757076 0) (-0.001196325059 0.07880342532 0) (-0.001191110922 0.07887286202 0) (-0.001167293457 0.0788012113 0) (-0.001162077843 0.0788706741 0) (-0.001223836561 0.07894201098 0) (-0.001186094959 0.07893915234 0) (-0.001157063272 0.07893695138 0) (-0.001239296786 0.07873659921 0) (-0.00120156657 0.07873359698 0) (-0.001172543401 0.07873129158 0) (-0.00124514316 0.0786667487 0) (-0.00120742433 0.07866360286 0) (-0.00117840968 0.07866119304 0) (-0.001314598358 0.07782252993 0) (-0.001276876661 0.07781942326 0) (-0.00124786062 0.07781702649 0) (-0.00133851472 0.07754383662 0) (-0.001300814149 0.07754049499 0) (-0.001271814974 0.07753791548 0) (-0.0006922221765 0.08822489355 0) (-0.0006544804038 0.08822206102 0) (-0.0006254473254 0.08821987311 0) (-0.0006337555693 0.07873024157 0) (-0.0006657736303 0.07863214152 0) (-0.0006697466437 0.0787419571 0) (-0.0007017300656 0.07864396132 0) (-0.0006974330029 0.07875096705 0) (-0.0007293884864 0.07865304945 0) (0.0004739185636 0.08961849227 0) (0.0004390955002 0.08960366442 0) (0.0004123076235 0.08959225829 0) (0.0004586240666 0.08286126046 0) (0.0004215212674 0.08286873847 0) (0.0003929816441 0.08287448878 0) (-0.000620360396 0.0889386303 0) (-0.0006116269392 0.08900317753 0) (-0.0005828320839 0.08893371074 0) (-0.0005741357066 0.08899798002 0) (-0.0005539635565 0.08892992525 0) (-0.0005452972936 0.08899398314 0) (-0.0006018119766 0.08907213489 0) (-0.0005643672556 0.08906661508 0) (-0.0005355631225 0.08906236896 0) (-0.0006327661222 0.0888401514 0) (-0.000595192357 0.08883559203 0) (-0.0005662893622 0.08883208451 0) (-0.0006397161163 0.08878090438 0) (-0.0006021160611 0.08877657078 0) (-0.0005731909672 0.08877324728 0) (-0.0006679392572 0.08850551747 0) (-0.0006302598114 0.08850194088 0) (-0.0006012747202 0.08849920473 0) (-0.0001498669632 0.0803286964 0) (-0.0001863162917 0.08033889987 0) (-0.0002143542502 0.0803467497 0) (-0.001278730597 0.07824753138 0) (-0.001273095859 0.0783171743 0) (-0.001241007509 0.07824443776 0) (-0.001235365558 0.07831418513 0) (-0.001211988685 0.07824206709 0) (-0.001206340998 0.07831189278 0) (-0.001267718606 0.0783869887 0) (-0.001229984046 0.07838405174 0) (-0.001200956618 0.07838179856 0) (-0.0007572627007 0.0783600934 0) (-0.0007931258375 0.07837219993 0) (-0.000820713674 0.07838149657 0) (-0.001284577936 0.07817773311 0) (-0.001246857545 0.07817462645 0) (-0.001217840197 0.07817222967 0) (-0.001290246599 0.0781084953 0) (-0.001252526208 0.07810538864 0) (-0.001223510166 0.07810299186 0) (-0.0008310118618 0.0781441434 0) (-0.0008509912835 0.07808691055 0) (-0.0008667565443 0.07815658874 0) (-0.0008867386633 0.07809934284 0) (-0.0008942524736 0.07816615906 0) (-0.0009142372047 0.07810891318 0) (-0.001360130463 0.07726383526 0) (-0.001324174946 0.07726067482 0) (-0.001296516127 0.07725824773 0) (0.0006653463089 0.08400327176 0) (0.0006495186549 0.08390459579 0) (0.0006279778899 0.08400927563 0) (0.0006121693733 0.08391073015 0) (0.0005992324151 0.08401390405 0) (0.0005834401678 0.08391544988 0) (0.0004134027374 0.08263855454 0) (0.0003763188196 0.08264612386 0) (0.0003477913771 0.08265193939 0) (0.0004005704617 0.08257535845 0) (0.0003635203035 0.08258309734 0) (0.0003350198345 0.0825890433 0) (-0.0003666977465 0.08994098868 0) (-0.000335368725 0.08999537668 0) (-0.0003334426437 0.089922916 0) (-0.0003039963689 0.08997420049 0) (-0.0003078609817 0.08990901544 0) (-0.0002798656941 0.08995791143 0) (-0.001066196607 0.08119449032 0) (-0.001028420334 0.08119214082 0) (-0.0009993626651 0.08119031845 0) (-0.001084135617 0.08091450413 0) (-0.001046368033 0.08091202408 0) (-0.001017316185 0.08091011033 0) (-0.0002118659741 0.08010941751 0) (-0.0002482484204 0.08011984258 0) (-0.0002762350333 0.08012787493 0) (-0.001141380357 0.08005466319 0) (-0.001103625807 0.08005198732 0) (-0.001074584125 0.0800499169 0) (-0.001219383166 0.0790007558 0) (-0.00118164287 0.07899789716 0) (-0.001152611183 0.0789956962 0) (-0.001212052512 0.07909729303 0) (-0.001174312215 0.0790944344 0) (-0.00114528192 0.07909222038 0) (-0.001256764758 0.07852694271 0) (-0.001251096628 0.07859689888 0) (-0.001219036019 0.07852391436 0) (-0.001213376407 0.0785937661 0) (-0.001190014327 0.07852158286 0) (-0.001184360366 0.07859136933 0) (-0.001020427985 0.07760800409 0) (-0.001056150285 0.07751047679 0) (-0.001056020965 0.07762087945 0) (-0.001091627594 0.07752366485 0) (-0.001083401138 0.07763077553 0) (-0.001118917336 0.0775338085 0) (0.0008547669713 0.08792810502 0) (0.0008171307857 0.08792410602 0) (0.0007881794871 0.08792101681 0) (0.0008796968155 0.08765199224 0) (0.0008419593085 0.08764907795 0) (0.000812931359 0.08764685125 0) (0.0008728795668 0.08567407306 0) (0.0008351379647 0.0856769317 0) (0.0008061062776 0.08567913266 0) (0.0008487173727 0.08539373568 0) (0.0008110421008 0.08539735142 0) (0.0007820612689 0.08540013979 0) (-0.0004774992594 0.07922084521 0) (-0.0005136130474 0.07923216972 0) (-0.0005413927051 0.07924089294 0) (0.0003233380002 0.08990821089 0) (0.0002917693601 0.08988733028 0) (0.0002674861946 0.08987126857 0) (0.0003542552748 0.08985894846 0) (0.0004054711627 0.08976639644 0) (0.000321766259 0.08983953145 0) (0.0003719235088 0.08974887103 0) (0.0002967747064 0.08982459499 0) (0.0003461186238 0.08973538964 0) (0.0004317610924 0.08971415239 0) (0.0003976113773 0.08969783382 0) (0.0003713410537 0.08968528017 0) (0.0001458149243 0.08145924706 0) (0.0001090472204 0.08146823795 0) (8.076463979e-05 0.08147514899 0) (0.000131301173 0.08140056794 0) (0.0001068133666 0.08130156976 0) (9.455357126e-05 0.08140963706 0) (7.007377164e-05 0.08131066495 0) (6.628708948e-05 0.08141661331 0) (4.181129324e-05 0.08131765423 0) (-0.0005913198792 0.08914178136 0) (-0.0005797426863 0.08921038762 0) (-0.0005539488225 0.08913578138 0) (-0.0005424680765 0.08920381883 0) (-0.0005252019564 0.08913116602 0) (-0.0005137946017 0.0891987651 0) (-0.000556355907 0.08933578639 0) (-0.000535600299 0.08943587602 0) (-0.0005192220542 0.0893284636 0) (-0.0004986228669 0.08942780063 0) (-0.0004906568487 0.08932283067 0) (-0.0004701776936 0.08942158728 0) (-0.000567438087 0.08927618106 0) (-0.0005302339154 0.08926922612 0) (-0.0005016146179 0.08926387626 0) (-0.0009709460793 0.08286432696 0) (-0.0009331535635 0.08286226469 0) (-0.0009040812989 0.08286067733 0) (-0.00100061683 0.08231926874 0) (-0.0009628229233 0.08231721953 0) (-0.0009337505734 0.08231564522 0) (-0.0009853745717 0.08259970354 0) (-0.0009475819705 0.08259765434 0) (-0.000918509706 0.08259606698 0) (-0.001048500542 0.08148487454 0) (-0.001010718363 0.08148262949 0) (-0.0009816548723 0.08148089851 0) (-0.00101575844 0.08203884633 0) (-0.0009779659237 0.08203678407 0) (-0.0009488935739 0.08203520977 0) (-0.001032117947 0.0817589282 0) (-0.0009943373289 0.08175664398 0) (-0.00096527523 0.08175489995 0) (-0.001102449091 0.08063437672 0) (-0.00106468003 0.08063192278 0) (-0.001035626705 0.08063003514 0) (-0.0011205105 0.08035424766 0) (-0.001082740133 0.08035179372 0) (-0.001053686723 0.08034991914 0) (-0.0003933236262 0.07949239253 0) (-0.0004295187878 0.07950345636 0) (-0.0004573624997 0.07951197102 0) (-0.001262277811 0.07845693329 0) (-0.001224544727 0.07845397022 0) (-0.001195518776 0.07845169093 0) (-0.0007371929766 0.07841915418 0) (-0.0007730387939 0.07843131284 0) (-0.0008006119229 0.07844066163 0) (-0.001295444734 0.07804430897 0) (-0.001257734338 0.07804107176 0) (-0.001228725424 0.07803858361 0) (-0.0008705632183 0.07803027584 0) (-0.0009063012854 0.07804273419 0) (-0.0009337932113 0.07805231755 0) (0.0008199843097 0.08821986376 0) (0.0007824694626 0.08821484522 0) (0.0007536110842 0.08821098481 0) (0.0007799245845 0.08848354998 0) (0.0007425911799 0.08847731559 0) (0.0007138743275 0.08847252694 0) (0.0008973868836 0.08737025831 0) (0.0008595854182 0.08736835013 0) (0.0008305087829 0.08736686822 0) (0.0009081664277 0.08708832137 0) (0.0008703314104 0.08708727542 0) (0.0008412278654 0.08708647285 0) (0.0009097585388 0.0870233201 0) (0.0008719193209 0.08702243091 0) (0.0008428127108 0.08702175897 0) (0.0008911271838 0.08595571596 0) (0.0008533361445 0.08595780433 0) (0.0008242652713 0.08595940475 0) (0.0009039998012 0.08623728947 0) (0.0008661752531 0.08623864666 0) (0.0008370799011 0.08623969868 0) (0.000906196571 0.08630227906 0) (0.0008683671666 0.0863034926 0) (0.000839267129 0.08630442711 0) (0.0008188505869 0.08510145875 0) (0.0007812185313 0.08510549215 0) (0.0007522698702 0.08510860683 0) (0.0007508346704 0.08456503602 0) (0.000713350292 0.08457028312 0) (0.0006845160018 0.08457431131 0) (0.0007863633026 0.08482830697 0) (0.0007488239537 0.08483313649 0) (0.0007199471296 0.0848368515 0) (0.0003721215226 0.08244399518 0) (0.0003591898278 0.08238517513 0) (0.0003351508083 0.08245209926 0) (0.0003222231169 0.08239329224 0) (0.000306710987 0.08245833217 0) (0.0002937873843 0.08239955124 0) (0.0003863319858 0.08250863204 0) (0.0003493343833 0.08251661874 0) (0.0003208743745 0.08252276035 0) (6.069862537e-05 0.08111785637 0) (3.52405233e-05 0.08101887758 0) (2.403421508e-05 0.08112726453 0) (-1.413137561e-06 0.0810283118 0) (-4.168609724e-06 0.08113448851 0) (-2.960834741e-05 0.08103556185 0) (1.934402695e-05 0.08095705983 0) (-1.729510233e-05 0.08096655925 0) (-4.547900036e-05 0.08097386148 0) (-0.0002609553976 0.09008942998 0) (-0.0001535015223 0.09016257596 0) (-0.0002353934145 0.09006151602 0) (-0.0001389797494 0.09012762345 0) (-0.0002157320581 0.09004004382 0) (-0.000127809094 0.09010073699 0) (-7.211786702e-05 0.09018262802 0) (-6.867033575e-05 0.09014493614 0) (-6.601838776e-05 0.09011594243 0) (1.424550149e-05 0.0901759236 0) (6.145463633e-06 0.09013895129 0) (-8.522405405e-08 0.09011051108 0) (-0.0007212930755 0.08779909018 0) (-0.0007173577388 0.08786550511 0) (-0.0006835122872 0.08779683208 0) (-0.0006795785125 0.08786320783 0) (-0.0006544501883 0.08779508805 0) (-0.0006505178902 0.08786143769 0) (-0.0007254989305 0.08772945098 0) (-0.0006877167509 0.08772720594 0) (-0.000658654652 0.08772546191 0) (-0.0007519764509 0.08723816962 0) (-0.0007486221228 0.08730841518 0) (-0.0007141705602 0.08723635543 0) (-0.0007108207473 0.08730650959 0) (-0.0006850891801 0.08723496391 0) (-0.000681743797 0.08730503974 0) (-8.993192083e-05 0.08054706145 0) (-0.0001264615075 0.08055696504 0) (-0.0001545610587 0.08056459324 0) (-0.0005965339642 0.07884515615 0) (-0.0006152506298 0.07878728813 0) (-0.0006325517563 0.07885678044 0) (-0.0006512564118 0.07879895152 0) (-0.0006602581324 0.07886572521 0) (-0.0006789546958 0.07880793543 0) (0.0005532636664 0.08335034654 0) (0.0005410305612 0.08328230095 0) (0.0005160174811 0.08335706796 0) (0.0005038101287 0.08328916587 0) (0.0004873656192 0.08336223126 0) (0.0004751800162 0.08329445964 0) (0.000528767726 0.08321710282 0) (0.0004915946251 0.08322421559 0) (0.0004629983574 0.08322969199 0) (-0.0007779189393 0.0866766173 0) (-0.0007748316385 0.08674677318 0) (-0.0007401068863 0.08667494674 0) (-0.0007370182795 0.0867451026 0) (-0.0007110209058 0.08667365968 0) (-0.0007079322137 0.08674382861 0) (-0.0007552876799 0.08716792378 0) (-0.0007174801421 0.08716616182 0) (-0.0006883972001 0.08716480948 0) (-0.0008279815121 0.08555117593 0) (-0.0008248252476 0.08562129217 0) (-0.0007901770128 0.08554934869 0) (-0.0007870148418 0.08561956937 0) (-0.000761095718 0.08554794411 0) (-0.0007579303379 0.08561825621 0) (-0.0008061712983 0.08604175637 0) (-0.0008032603164 0.08610811268 0) (-0.0007683592454 0.0860400858 0) (-0.0007654468721 0.08610645517 0) (-0.0007392718735 0.0860388118 0) (-0.0007363595003 0.08610518116 0) (-0.0007810401115 0.08660647471 0) (-0.0007432294499 0.0866047911 0) (-0.0007141435547 0.08660349098 0) (-0.0008006980859 0.08616646496 0) (-0.0007628844711 0.08616483357 0) (-0.0007337969287 0.08616358568 0) (-0.0008315976968 0.08548123249 0) (-0.0007937977979 0.08547930078 0) (-0.0007647209329 0.08547781787 0) (-0.0008574182784 0.08499054763 0) (-0.000853663937 0.08506064691 0) (-0.0008196228946 0.08498852453 0) (-0.0008158684679 0.08505863687 0) (-0.0007905503741 0.08498697635 0) (-0.0007867946414 0.08505708867 0) (-0.0008611739258 0.08492044837 0) (-0.0008233786273 0.08491841221 0) (-0.0007943061069 0.08491686402 0) (-0.001184666779 0.07718984896 0) (-0.001236665698 0.07710449619 0) (-0.001215959805 0.077201573 0) (-0.001258011229 0.0771124721 0) (-0.0012400309 0.07721058546 0) (-0.001274431732 0.07711861346 0) (0.0006718377353 0.08900669701 0) (0.0006963349878 0.08890654174 0) (0.0006351261886 0.08899748722 0) (0.0006594822927 0.08889791799 0) (0.0006068854355 0.08899040327 0) (0.0006311334523 0.08889128274 0) (0.000638852994 0.08384077168 0) (0.0006273051872 0.08377286529 0) (0.0006015267678 0.0838470365 0) (0.0005899898357 0.08377919534 0) (0.000572813917 0.08385186061 0) (0.0005612864683 0.08378407163 0) (-0.000436903394 0.08978465406 0) (-0.0004133683294 0.08984275967 0) (-0.0004015855637 0.08977104518 0) (-0.0003786901896 0.08982759549 0) (-0.000374418109 0.0897605758 0) (-0.0003520137959 0.08981593033 0) (-1.453090873e-05 0.08082831805 0) (-3.006727966e-05 0.08076994601 0) (-5.111107742e-05 0.08083802607 0) (-6.664066232e-05 0.08077969317 0) (-7.924963755e-05 0.08084551085 0) (-9.477391304e-05 0.08078719097 0) (-0.0002739036682 0.07989447508 0) (-0.0003102657512 0.07990497839 0) (-0.0003382363505 0.07991306287 0) (-0.001150207148 0.07992962386 0) (-0.001145523967 0.07999595554 0) (-0.001112451206 0.07992696104 0) (-0.001107769417 0.07999327966 0) (-0.001083408132 0.07992490367 0) (-0.001078727564 0.07999123536 0) (-0.0002914222445 0.07983386952 0) (-0.000327779018 0.07984438585 0) (-0.000355745614 0.07985248337 0) (-0.001155113574 0.07986010679 0) (-0.001117357632 0.07985744396 0) (-0.001088314388 0.07985541272 0) (-0.001169744223 0.07965032727 0) (-0.001164882767 0.0797201581 0) (-0.001131994017 0.07964758612 0) (-0.001127125434 0.07971750833 0) (-0.001102955117 0.0796454896 0) (-0.00109808219 0.07971547708 0) (-0.0009799257259 0.07772168259 0) (-0.001000252664 0.07766463486 0) (-0.001015579893 0.07773438855 0) (-0.001035896212 0.07767736688 0) (-0.001043005323 0.07774415433 0) (-0.00106331355 0.07768717178 0) (-0.0012813681 0.07705885305 0) (-0.001294736671 0.07706433449 0) (0.0009131870439 0.08673312444 0) (0.0009132808614 0.08666249067 0) (0.0008753373563 0.08673303204 0) (0.0008754311471 0.08666259417 0) (0.0008462229152 0.08673296095 0) (0.0008463164235 0.08666267982 0) (0.0009119134268 0.0869278964 0) (0.0008740685049 0.08692733377 0) (0.0008449568998 0.08692689696 0) (0.0009123883419 0.0868694198 0) (0.0008745396459 0.08686907923 0) (0.0008454265375 0.08686881222 0) (0.0009129291571 0.08659243448 0) (0.0008750826251 0.0865928253 0) (0.0008459693514 0.08659313297 0) (0.000908987393 0.08639743536 0) (0.0008711529617 0.08639847915 0) (0.0008420494592 0.08639928307 0) (0.0009105762306 0.08645553278 0) (0.0008727366872 0.08645639375 0) (0.0008436296344 0.08645705403 0) (0.0002582185886 0.08193513014 0) (0.0002439664653 0.08187271391 0) (0.0002213204469 0.08194354721 0) (0.0002070711062 0.08188115708 0) (0.0001929357934 0.08195002791 0) (0.0001786904561 0.08188765081 0) (-0.0004586614375 0.08972506228 0) (-0.0004228169092 0.08971290624 0) (-0.0003952437887 0.08970355614 0) (-0.0005211850872 0.08949886587 0) (-0.0005058059662 0.08956365835 0) (-0.0004843300775 0.08949024403 0) (-0.0004691428107 0.08955425803 0) (-0.0004559816762 0.08948361206 0) (-0.0004409393756 0.08954702751 0) (-0.0007374852985 0.0875189881 0) (-0.0007336902143 0.08758912629 0) (-0.0006996898295 0.08751697806 0) (-0.0006958992604 0.08758702485 0) (-0.0006706173943 0.08751541681 0) (-0.0006668297784 0.08758541138 0) (-0.0007411303598 0.08744882281 0) (-0.0007033334141 0.08744683888 0) (-0.0006742581963 0.08744530374 0) (-5.641792326e-05 0.08067097306 0) (-9.297463938e-05 0.08068077235 0) (-0.00012109522 0.08068832231 0) (0.0005945401626 0.08358018332 0) (0.0005768136516 0.0834813369 0) (0.0005572534317 0.08358669604 0) (0.0005395566769 0.08348800615 0) (0.0005285717284 0.08359168974 0) (0.000510898029 0.08349313031 0) (-0.0007685639091 0.08688734553 0) (-0.0007651248595 0.08695756441 0) (-0.0007307564565 0.08688557051 0) (-0.0007273190542 0.08695573716 0) (-0.0007016736851 0.08688419205 0) (-0.0006982389801 0.08695434565 0) (-0.0007617245378 0.08702765293 0) (-0.0007239184766 0.08702586486 0) (-0.0006948357052 0.0870244864 0) (-0.0008185764582 0.08576156425 0) (-0.0008154602541 0.08583174605 0) (-0.0007807644905 0.08575988063 0) (-0.0007776482865 0.08583006243 0) (-0.00075167851 0.08575859357 0) (-0.000748562306 0.08582877537 0) (-0.0008123455267 0.08590190175 0) (-0.0007745334738 0.08590023118 0) (-0.0007454474933 0.08589894413 0) (-0.0007908039828 0.08639614098 0) (-0.0007874746399 0.08646636058 0) (-0.0007529949684 0.08639440513 0) (-0.0007496671874 0.08646458556 0) (-0.0007239106351 0.08639306584 0) (-0.0007205843306 0.08646322015 0) (-0.000793947411 0.08632639036 0) (-0.0007561352728 0.08632473286 0) (-0.0007270479009 0.08632345885 0) (-0.0008425327366 0.08527095865 0) (-0.0008388436968 0.08534105835 0) (-0.0008047358762 0.08526896166 0) (-0.0008010453598 0.08533908747 0) (-0.0007756618792 0.08526743959 0) (-0.0007719713627 0.0853375654 0) (-0.0008462349221 0.08520084597 0) (-0.0008084393677 0.08519884899 0) (-0.0007793654559 0.08519731386 0) (-0.0008762976984 0.08464075726 0) (-0.0008725308989 0.08471016422 0) (-0.0008385051825 0.08463869499 0) (-0.0008347369918 0.08470811501 0) (-0.0008094328327 0.08463712069 0) (-0.0008056646419 0.0847065407 0) (-0.0008687269284 0.08478026317 0) (-0.0008309329359 0.08477822702 0) (-0.000801860586 0.08477665271 0) (-0.001196512464 0.079300928 0) (-0.00119114881 0.07937086003 0) (-0.001158773645 0.07929804325 0) (-0.001153411382 0.07936796223 0) (-0.00112974474 0.07929581619 0) (-0.001124381257 0.0793657221 0) (-0.001207146612 0.07916172943 0) (-0.001169406402 0.07915885773 0) (-0.001140376106 0.07915664372 0) (-0.001185774708 0.079440792 0) (-0.001148037365 0.07943788114 0) (-0.001119008546 0.07943564101 0) (-0.001174955695 0.07958049873 0) (-0.001137214093 0.07957764009 0) (-0.00110818232 0.07957545219 0) (-0.0009048233613 0.07793264756 0) (-0.000925140448 0.07787550834 0) (-0.000940512167 0.07794524927 0) (-0.0009608039274 0.07788818825 0) (-0.0009679655358 0.07795493686 0) (-0.0009882372792 0.07789794101 0) (0.0005935452638 0.08929023335 0) (0.0006231125859 0.08919045377 0) (0.0005574055479 0.08927898755 0) (0.0005867121199 0.08918007952 0) (0.0005296051577 0.08927033603 0) (0.0005587136703 0.08917209932 0) (0.0006392283408 0.08913164646 0) (0.0006026964583 0.08912174849 0) (0.0005745946083 0.08911413467 0) (0.0006046169909 0.08363943997 0) (0.0005673098167 0.08364582221 0) (0.000538610538 0.0836507246 0) (0.000323657622 0.08222355691 0) (0.0003089451741 0.08215725155 0) (0.0002867043979 0.08223173924 0) (0.0002720189235 0.08216556431 0) (0.0002582780634 0.08223803736 0) (0.0002436140825 0.08217195372 0) (0.0002288498301 0.08180651567 0) (0.0001919786619 0.08181506317 0) (0.0001636168932 0.08182164821 0) (0.0002942359509 0.08209283999 0) (0.0002573324999 0.08210124403 0) (0.000228945149 0.08210771168 0) (7.577632618e-05 0.08117649262 0) (3.908233032e-05 0.08118577037 0) (1.085613824e-05 0.08119291614 0) (2.369741188e-06 0.08089180104 0) (-3.423518609e-05 0.08090141779 0) (-6.239306481e-05 0.08090882433 0) (-0.0007137682272 0.08792416414 0) (-0.0006759949073 0.08792176242 0) (-0.0006469388001 0.08791990088 0) (-0.0007296684191 0.08765938054 0) (-0.0006918832863 0.08765718772 0) (-0.0006628169282 0.08765549591 0) (-0.0007448614485 0.0873786842 0) (-0.0007070645881 0.08737668721 0) (-0.0006779906763 0.08737515208 0) (-7.291663058e-05 0.08060979922 0) (-0.0001094561178 0.08061967676 0) (-0.0001375634345 0.08062726582 0) (-0.0005648997057 0.07894328483 0) (-0.0006009441302 0.07895483092 0) (-0.000628671744 0.07896372359 0) (0.0005654222106 0.08341797467 0) (0.0005281693246 0.08342467001 0) (0.0004995134593 0.08342982028 0) (0.0005171567378 0.08315792149 0) (0.0004800093896 0.08316517777 0) (0.0004514347008 0.08317075851 0) (-0.0007717608044 0.08681700752 0) (-0.0007339489221 0.08681531084 0) (-0.0007048644182 0.08681399767 0) (-0.0007585122845 0.08709774269 0) (-0.0007207033554 0.08709599378 0) (-0.0006916190221 0.08709465449 0) (-0.0008217016338 0.08569140862 0) (-0.0007838896662 0.085689725 0) (-0.0007548037709 0.08568842488 0) (-0.0008092320201 0.08597207051 0) (-0.0007714199671 0.08597039995 0) (-0.0007423339866 0.08596911289 0) (-0.0007841596366 0.08653638435 0) (-0.0007463493162 0.0865346485 0) (-0.0007172662036 0.08653332228 0) (-0.0007966704794 0.0862618091 0) (-0.0007588553879 0.08626020382 0) (-0.0007297664542 0.08625896899 0) (-0.0008352199585 0.08541115847 0) (-0.0007974215362 0.08540920066 0) (-0.0007683461478 0.08540769164 0) (-0.0008499370222 0.08513074636 0) (-0.0008121415532 0.08512873632 0) (-0.0007830676414 0.08512720118 0) (-0.0008850541276 0.08448049231 0) (-0.0008797996996 0.08457629863 0) (-0.000847261697 0.08447841698 0) (-0.0008420058777 0.08457423636 0) (-0.0008181894325 0.08447682962 0) (-0.0008129349192 0.084572649 0) (-0.0008882640374 0.08442196141 0) (-0.0008504716068 0.08441988608 0) (-0.0008213993423 0.08441829872 0) (-0.0008649282672 0.08485034909 0) (-0.0008271329687 0.08484831294 0) (-0.0007980605336 0.08484675169 0) (-0.0009470512553 0.0833043221 0) (-0.0009432659103 0.08337436893 0) (-0.0009092573481 0.08330227289 0) (-0.000905470356 0.08337237195 0) (-0.000880184913 0.08330071165 0) (-0.0008763965295 0.08337082376 0) (-0.0009396034175 0.0834444035 0) (-0.0009018049953 0.08344244569 0) (-0.0008727296922 0.0834409236 0) (-0.000921384103 0.08379511245 0) (-0.0009176152247 0.08386523775 0) (-0.0008835887192 0.08379308935 0) (-0.0008798199262 0.08386320159 0) (-0.0008545162841 0.0837915281 0) (-0.0008507474911 0.08386164034 0) (-0.0009251558493 0.08372494798 0) (-0.0008873589889 0.083722951 0) (-0.0008582850771 0.08372141586 0) (-0.0008919054318 0.08435555762 0) (-0.0008541115246 0.08435350841 0) (-0.0008250391747 0.0843519341 0) (-0.00089564739 0.08428595458 0) (-0.0008578505296 0.08428395759 0) (-0.0008287765325 0.08428243552 0) (-0.000913846517 0.08393533693 0) (-0.0008760524392 0.08393331384 0) (-0.000846978698 0.08393175258 0) (-0.0009100819832 0.08400539695 0) (-0.0008722851228 0.08400339996 0) (-0.000843211211 0.08400186483 0) (-0.0009508396388 0.08323420999 0) (-0.0009130456463 0.08323217384 0) (-0.0008839732965 0.08323059954 0) (-0.000954627937 0.08316411094 0) (-0.0009168340298 0.08316206173 0) (-0.00088776168 0.08316048742 0) (-0.001158267128 0.07724480647 0) (-0.001192419897 0.07725762018 0) (-0.00121869142 0.07726748291 0) (0.0005745073303 0.08934876979 0) (0.0005385455108 0.08933696512 0) (0.0005108833745 0.08932788431 0) (0.0006559660807 0.08906848321 0) (0.0006193398632 0.08905893981 0) (0.000591166658 0.08905159943 0) (0.0007097300864 0.08884732249 0) (0.000672770738 0.08883916702 0) (0.0006443393682 0.08883289409 0) (0.000723569164 0.0887824894 0) (0.0006865147546 0.08877477732 0) (0.0006580098099 0.08876883792 0) (0.0007371242364 0.08446656825 0) (0.0007274482592 0.08440229362 0) (0.00069966987 0.08447201107 0) (0.0006900185954 0.08440791913 0) (0.0006708575851 0.08447620892 0) (0.0006612267538 0.08441224744 0) (0.0006157397197 0.08370485452 0) (0.0005784257595 0.08371119762 0) (0.0005497236981 0.08371607391 0) (0.0007170828049 0.08433403992 0) (0.0006796613185 0.08433971762 0) (0.0006508762629 0.08434408507 0) (0.000706632624 0.08426521209 0) (0.0006692152262 0.08427091589 0) (0.0006404329533 0.08427530944 0) (8.722014954e-05 0.09014967312 0) (7.033978724e-05 0.09011579675 0) (5.735442108e-05 0.09008973802 0) (9.155376021e-05 0.08123987846 0) (5.482486936e-05 0.08124901276 0) (2.657178905e-05 0.08125604116 0) (-0.0003094473206 0.07977150405 0) (-0.0003457786825 0.07978211164 0) (-0.0003737252616 0.07979027433 0) (-0.001160011316 0.07979011947 0) (-0.001122253898 0.07978748276 0) (-0.001093209347 0.0797854515 0) (-0.0009452282064 0.07781908597 0) (-0.0009808850704 0.0778317789 0) (-0.001008313113 0.07784154469 0) (0.0009129266144 0.08680284505 0) (0.0008750774652 0.08680263509 0) (0.0008459636478 0.08680245951 0) (0.000911723591 0.08652222713 0) (0.0008738800709 0.08652287916 0) (0.0008447692972 0.08652336966 0) (-0.0004896444369 0.08962346039 0) (-0.0004532542961 0.08961305355 0) (-0.000425260974 0.08960504859 0) (-0.0005271535781 0.07906251913 0) (-0.0005464933104 0.07900084141 0) (-0.0005632632774 0.07907386974 0) (-0.00058257368 0.07901228325 0) (-0.0005910403231 0.07908259294 0) (-0.0006103280967 0.07902107161 0) (-0.0005083620533 0.07912245028 0) (-0.0005444771473 0.0791337748 0) (-0.0005722568051 0.07914249802 0) (-0.0009359979637 0.08351450374 0) (-0.0009323923392 0.08358463011 0) (-0.0008981994561 0.08351255899 0) (-0.0008945925256 0.08358268535 0) (-0.0008691226764 0.08351106302 0) (-0.0008655170519 0.08358118939 0) (-0.0009287853234 0.08365476953 0) (-0.0008909869012 0.08365281172 0) (-0.0008619101215 0.08365131574 0) (-0.0009028513997 0.08414561037 0) (-0.0008992509141 0.08421574983 0) (-0.0008650528921 0.08414366562 0) (-0.0008614524065 0.08421380508 0) (-0.0008359761124 0.08414216965 0) (-0.0008323756268 0.08421230911 0) (-0.0009064503234 0.08407551009 0) (-0.0008686519011 0.08407355227 0) (-0.0008395752067 0.08407204324 0) (-0.0009621894795 0.08302461803 0) (-0.0009584162352 0.08309401189 0) (-0.0009243969637 0.08302255576 0) (-0.000920622328 0.08309196268 0) (-0.0008953246138 0.08302098146 0) (-0.0008915512842 0.08309038838 0) (-0.0009657124626 0.08296014648 0) (-0.0009279186407 0.0829580842 0) (-0.0008988476821 0.08295649685 0) (-0.001201873506 0.07923099595 0) (-0.001164133381 0.07922811119 0) (-0.00113510317 0.07922588412 0) (-0.001180360289 0.07951069758 0) (-0.001142624252 0.07950778673 0) (-0.001113595433 0.0795055466 0) (-0.001135297103 0.07730098798 0) (-0.001170375022 0.07731413425 0) (-0.001197359323 0.07732424979 0) (0.000737191473 0.08871486271 0) (0.0007504345798 0.08864736909 0) (0.0007000725029 0.0887074645 0) (0.0007132650743 0.08864023244 0) (0.0006715195495 0.08870177358 0) (0.0006846729986 0.08863475074 0) (0.0007625488542 0.08858361826 0) (0.0007253124319 0.08857683468 0) (0.0006966685146 0.08857161454 0) (0.0006961606937 0.0841962538 0) (0.0006853456237 0.08412795079 0) (0.0006587596506 0.08420206197 0) (0.0006479650239 0.08413388944 0) (0.0006299896437 0.08420653382 0) (0.0006192099804 0.08413845261 0) (0.0006748251724 0.08406236252 0) (0.00063745275 0.08406835336 0) (0.0006087044925 0.08407295567 0) (0.0003374319672 0.08228621136 0) (0.0003004666476 0.08229434153 0) (0.0002720322211 0.08230060052 0) (0.0002137988266 0.08174236756 0) (0.0001769666421 0.08175108459 0) (0.0001486343737 0.08175778699 0) (0.0002808201452 0.0820340884 0) (0.0002439207828 0.08204251853 0) (0.0002155361293 0.08204899923 0) ) ; boundaryField { topAndBottom { type fixedValue; value uniform (0 0 0); } inlet { type fixedValue; value uniform (0 0 0); } outlet { type fixedValue; value uniform (0 0 0); } wing { type calculated; } front { type empty; } back { type empty; } } // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
8a88736ef6dbc0420a859cb07323e853c04ba761
5ddb03b2cd057509a84782d2d07e0814ced05509
/server_src/game/server/effects.cpp
df8e11e11e225392530d1caca7e0cdefa2ac2917
[]
no_license
Ch1ckenscoop/svn
d0fd06b21f0ad0bcd7637bba33d942f01f58f582
eefaa8115343774ff106e2a7645c67fb1c7a964b
refs/heads/master
2022-05-13T07:05:23.902942
2022-03-05T01:26:46
2022-03-05T01:26:46
56,256,629
5
1
null
2016-04-16T17:21:45
2016-04-14T17:23:10
C++
UTF-8
C++
false
false
63,811
cpp
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: Implements a grab bag of visual effects entities. // // $NoKeywords: $ //=============================================================================// #include "cbase.h" #include "effects.h" #include "gib.h" #include "beam_shared.h" #include "decals.h" #include "func_break.h" #include "EntityFlame.h" #include "entitylist.h" #include "basecombatweapon.h" #include "model_types.h" #include "player.h" #include "physics.h" #include "baseparticleentity.h" #include "ndebugoverlay.h" #include "IEffects.h" #include "vstdlib/random.h" #include "env_wind_shared.h" #include "filesystem.h" #include "engine/IEngineSound.h" #ifdef INFESTED_DLL #include "asw_fire.h" #else #include "fire.h" #endif #include "te_effect_dispatch.h" #include "Sprite.h" #include "precipitation_shared.h" #include "shot_manipulator.h" #include "modelentities.h" // memdbgon must be the last include file in a .cpp file!!! #include "tier0/memdbgon.h" #define SF_FUNNEL_REVERSE 1 // funnel effect repels particles instead of attracting them. #define SF_GIBSHOOTER_REPEATABLE (1<<0) // allows a gibshooter to be refired #define SF_SHOOTER_FLAMING (1<<1) // gib is on fire #define SF_SHOOTER_STRICT_REMOVE (1<<2) // remove this gib even if it is in the player's view // UNDONE: This should be client-side and not use TempEnts class CBubbling : public CBaseEntity { public: DECLARE_CLASS( CBubbling, CBaseEntity ); virtual void Spawn( void ); virtual void Precache( void ); void FizzThink( void ); // Input handlers. void InputActivate( inputdata_t &inputdata ); void InputDeactivate( inputdata_t &inputdata ); void InputToggle( inputdata_t &inputdata ); void InputSetCurrent( inputdata_t &inputdata ); void InputSetDensity( inputdata_t &inputdata ); void InputSetFrequency( inputdata_t &inputdata ); DECLARE_DATADESC(); private: void TurnOn(); void TurnOff(); void Toggle(); int m_density; int m_frequency; int m_bubbleModel; int m_state; }; LINK_ENTITY_TO_CLASS( env_bubbles, CBubbling ); BEGIN_DATADESC( CBubbling ) DEFINE_KEYFIELD( m_flSpeed, FIELD_FLOAT, "current" ), DEFINE_KEYFIELD( m_density, FIELD_INTEGER, "density" ), DEFINE_KEYFIELD( m_frequency, FIELD_INTEGER, "frequency" ), DEFINE_FIELD( m_state, FIELD_INTEGER ), // Let spawn restore this! // DEFINE_FIELD( m_bubbleModel, FIELD_INTEGER ), // Function Pointers DEFINE_FUNCTION( FizzThink ), DEFINE_INPUTFUNC( FIELD_VOID, "Activate", InputActivate ), DEFINE_INPUTFUNC( FIELD_VOID, "Deactivate", InputDeactivate ), DEFINE_INPUTFUNC( FIELD_VOID, "Toggle", InputToggle ), DEFINE_INPUTFUNC( FIELD_INTEGER, "SetCurrent", InputSetCurrent ), DEFINE_INPUTFUNC( FIELD_INTEGER, "SetDensity", InputSetDensity ), DEFINE_INPUTFUNC( FIELD_INTEGER, "SetFrequency", InputSetFrequency ), END_DATADESC() #define SF_BUBBLES_STARTOFF 0x0001 void CBubbling::Spawn( void ) { Precache( ); SetModel( STRING( GetModelName() ) ); // Set size // Make it invisible to client SetRenderAlpha( 0 ); SetSolid( SOLID_NONE ); // Remove model & collisions if ( !HasSpawnFlags(SF_BUBBLES_STARTOFF) ) { SetThink( &CBubbling::FizzThink ); SetNextThink( gpGlobals->curtime + 2.0 ); m_state = 1; } else { m_state = 0; } } void CBubbling::Precache( void ) { m_bubbleModel = PrecacheModel("sprites/bubble.vmt"); // Precache bubble sprite } void CBubbling::Toggle() { if (!m_state) { TurnOn(); } else { TurnOff(); } } void CBubbling::TurnOn() { m_state = 1; SetThink( &CBubbling::FizzThink ); SetNextThink( gpGlobals->curtime + 0.1f ); } void CBubbling::TurnOff() { m_state = 0; SetThink( NULL ); SetNextThink( TICK_NEVER_THINK ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CBubbling::InputActivate( inputdata_t &inputdata ) { TurnOn(); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CBubbling::InputDeactivate( inputdata_t &inputdata ) { TurnOff(); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CBubbling::InputToggle( inputdata_t &inputdata ) { Toggle(); } //----------------------------------------------------------------------------- // Purpose: // Input : &inputdata - //----------------------------------------------------------------------------- void CBubbling::InputSetCurrent( inputdata_t &inputdata ) { m_flSpeed = (float)inputdata.value.Int(); } //----------------------------------------------------------------------------- // Purpose: // Input : &inputdata - //----------------------------------------------------------------------------- void CBubbling::InputSetDensity( inputdata_t &inputdata ) { m_density = inputdata.value.Int(); } //----------------------------------------------------------------------------- // Purpose: // Input : &inputdata - //----------------------------------------------------------------------------- void CBubbling::InputSetFrequency( inputdata_t &inputdata ) { m_frequency = inputdata.value.Int(); // Reset think time if ( m_state ) { if ( m_frequency > 19 ) { SetNextThink( gpGlobals->curtime + 0.5f ); } else { SetNextThink( gpGlobals->curtime + 2.5 - (0.1 * m_frequency) ); } } } void CBubbling::FizzThink( void ) { Vector center = WorldSpaceCenter(); CPASFilter filter( center ); te->Fizz( filter, 0.0, this, m_bubbleModel, m_density, (int)m_flSpeed ); if ( m_frequency > 19 ) { SetNextThink( gpGlobals->curtime + 0.5f ); } else { SetNextThink( gpGlobals->curtime + 2.5 - (0.1 * m_frequency) ); } } // ENV_TRACER // Fakes a tracer class CEnvTracer : public CPointEntity { public: DECLARE_CLASS( CEnvTracer, CPointEntity ); void Spawn( void ); void TracerThink( void ); void Activate( void ); DECLARE_DATADESC(); Vector m_vecEnd; float m_flDelay; }; LINK_ENTITY_TO_CLASS( env_tracer, CEnvTracer ); BEGIN_DATADESC( CEnvTracer ) DEFINE_KEYFIELD( m_flDelay, FIELD_FLOAT, "delay" ), DEFINE_FIELD( m_vecEnd, FIELD_POSITION_VECTOR ), // Function Pointers DEFINE_FUNCTION( TracerThink ), END_DATADESC() //----------------------------------------------------------------------------- // Purpose: Called after keyvalues are parsed. //----------------------------------------------------------------------------- void CEnvTracer::Spawn( void ) { SetSolid( SOLID_NONE ); SetMoveType( MOVETYPE_NONE ); if (!m_flDelay) m_flDelay = 1; } //----------------------------------------------------------------------------- // Purpose: Called after all the entities have been loaded. //----------------------------------------------------------------------------- void CEnvTracer::Activate( void ) { BaseClass::Activate(); CBaseEntity *pEnd = gEntList.FindEntityByName( NULL, m_target ); if (pEnd != NULL) { m_vecEnd = pEnd->GetLocalOrigin(); SetThink( &CEnvTracer::TracerThink ); SetNextThink( gpGlobals->curtime + m_flDelay ); } else { Msg( "env_tracer: unknown entity \"%s\"\n", STRING(m_target) ); } } // Think void CEnvTracer::TracerThink( void ) { UTIL_Tracer( GetAbsOrigin(), m_vecEnd ); SetNextThink( gpGlobals->curtime + m_flDelay ); } //################################################################################# // >> CGibShooter //################################################################################# enum GibSimulation_t { GIB_SIMULATE_POINT, GIB_SIMULATE_PHYSICS, GIB_SIMULATE_RAGDOLL, }; class CGibShooter : public CBaseEntity { public: DECLARE_CLASS( CGibShooter, CBaseEntity ); void Spawn( void ); void Precache( void ); void Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ); virtual CGib *CreateGib( void ); protected: // Purpose: CBaseEntity *SpawnGib( const Vector &vecShootDir, float flSpeed ); DECLARE_DATADESC(); private: void InitPointGib( CGib *pGib, const Vector &vecShootDir, float flSpeed ); void ShootThink( void ); protected: int m_iGibs; int m_iGibCapacity; int m_iGibMaterial; int m_iGibModelIndex; float m_flGibVelocity; QAngle m_angGibRotation; float m_flGibAngVelocity; float m_flVariance; float m_flGibLife; int m_nSimulationType; int m_nMaxGibModelFrame; float m_flDelay; bool m_bNoGibShadows; bool m_bIsSprite; string_t m_iszLightingOrigin; // ---------------- // Inputs // ---------------- void InputShoot( inputdata_t &inputdata ); }; BEGIN_DATADESC( CGibShooter ) DEFINE_KEYFIELD( m_iGibs, FIELD_INTEGER, "m_iGibs" ), DEFINE_KEYFIELD( m_flGibVelocity, FIELD_FLOAT, "m_flVelocity" ), DEFINE_KEYFIELD( m_flVariance, FIELD_FLOAT, "m_flVariance" ), DEFINE_KEYFIELD( m_flGibLife, FIELD_FLOAT, "m_flGibLife" ), DEFINE_KEYFIELD( m_nSimulationType, FIELD_INTEGER, "Simulation" ), DEFINE_KEYFIELD( m_flDelay, FIELD_FLOAT, "delay" ), DEFINE_KEYFIELD( m_angGibRotation, FIELD_VECTOR, "gibangles" ), DEFINE_KEYFIELD( m_flGibAngVelocity, FIELD_FLOAT, "gibanglevelocity"), DEFINE_FIELD( m_bIsSprite, FIELD_BOOLEAN ), DEFINE_FIELD( m_iGibCapacity, FIELD_INTEGER ), DEFINE_FIELD( m_iGibMaterial, FIELD_INTEGER ), DEFINE_FIELD( m_iGibModelIndex, FIELD_INTEGER ), DEFINE_FIELD( m_nMaxGibModelFrame, FIELD_INTEGER ), DEFINE_KEYFIELD( m_iszLightingOrigin, FIELD_STRING, "LightingOrigin" ), DEFINE_KEYFIELD( m_bNoGibShadows, FIELD_BOOLEAN, "nogibshadows" ), // Inputs DEFINE_INPUTFUNC( FIELD_VOID, "Shoot", InputShoot ), // Function Pointers DEFINE_FUNCTION( ShootThink ), END_DATADESC() LINK_ENTITY_TO_CLASS( gibshooter, CGibShooter ); void CGibShooter::Precache ( void ) { if ( g_Language.GetInt() == LANGUAGE_GERMAN ) { m_iGibModelIndex = PrecacheModel ("models/germanygibs.mdl"); } else { m_iGibModelIndex = PrecacheModel ("models/gibs/hgibs.mdl"); } } void CGibShooter::Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ) { SetThink( &CGibShooter::ShootThink ); SetNextThink( gpGlobals->curtime ); } //----------------------------------------------------------------------------- // Purpose: Input handler for shooting gibs. //----------------------------------------------------------------------------- void CGibShooter::InputShoot( inputdata_t &inputdata ) { SetThink( &CGibShooter::ShootThink ); SetNextThink( gpGlobals->curtime ); } void CGibShooter::Spawn( void ) { Precache(); SetSolid( SOLID_NONE ); AddEffects( EF_NODRAW ); if ( m_flDelay < 0 ) { m_flDelay = 0.0; } if ( m_flGibLife == 0 ) { m_flGibLife = 25; } m_iGibCapacity = m_iGibs; m_nMaxGibModelFrame = modelinfo->GetModelFrameCount( modelinfo->GetModel( m_iGibModelIndex ) ); } CGib *CGibShooter::CreateGib ( void ) { ConVarRef violence_hgibs( "violence_hgibs" ); if ( violence_hgibs.IsValid() && !violence_hgibs.GetInt() ) return NULL; CGib *pGib = CREATE_ENTITY( CGib, "gib" ); pGib->Spawn( "models/gibs/hgibs.mdl" ); pGib->SetBloodColor( BLOOD_COLOR_RED ); if ( m_nMaxGibModelFrame <= 1 ) { DevWarning( 2, "GibShooter Body is <= 1!\n" ); } pGib->m_nBody = random->RandomInt ( 1, m_nMaxGibModelFrame - 1 );// avoid throwing random amounts of the 0th gib. (skull). if ( m_iszLightingOrigin != NULL_STRING ) { // Make the gibs use the lighting origin pGib->SetLightingOrigin( m_iszLightingOrigin ); } return pGib; } void CGibShooter::InitPointGib( CGib *pGib, const Vector &vecShootDir, float flSpeed ) { if ( pGib ) { pGib->SetLocalOrigin( GetAbsOrigin() ); pGib->SetAbsVelocity( vecShootDir * flSpeed ); QAngle angVel( random->RandomFloat ( 100, 200 ), random->RandomFloat ( 100, 300 ), 0 ); pGib->SetLocalAngularVelocity( angVel ); float thinkTime = ( pGib->GetNextThink() - gpGlobals->curtime ); pGib->m_lifeTime = (m_flGibLife * random->RandomFloat( 0.95, 1.05 )); // +/- 5% // HL1 gibs always die after a certain time, other games have to opt-in if( HasSpawnFlags( SF_SHOOTER_STRICT_REMOVE ) ) { pGib->SetNextThink( gpGlobals->curtime + pGib->m_lifeTime ); pGib->SetThink ( &CGib::DieThink ); } if ( pGib->m_lifeTime < thinkTime ) { pGib->SetNextThink( gpGlobals->curtime + pGib->m_lifeTime ); pGib->m_lifeTime = 0; } if ( m_bIsSprite == true ) { pGib->SetSprite( CSprite::SpriteCreate( STRING( GetModelName() ), pGib->GetAbsOrigin(), false ) ); CSprite *pSprite = (CSprite*)pGib->GetSprite(); if ( pSprite ) { pSprite->SetAttachment( pGib, 0 ); pSprite->SetOwnerEntity( pGib ); pSprite->SetScale( 1 ); pSprite->SetTransparency( m_nRenderMode, m_clrRender->r, m_clrRender->g, m_clrRender->b, m_clrRender->a, m_nRenderFX ); pSprite->AnimateForTime( 5, m_flGibLife + 1 ); //This framerate is totally wrong } } } } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- CBaseEntity *CGibShooter::SpawnGib( const Vector &vecShootDir, float flSpeed ) { switch (m_nSimulationType) { case GIB_SIMULATE_RAGDOLL: { // UNDONE: Assume a mass of 200 for now Vector force = vecShootDir * flSpeed * 200; return CreateRagGib( STRING( GetModelName() ), GetAbsOrigin(), GetAbsAngles(), force, m_flGibLife ); } case GIB_SIMULATE_PHYSICS: { CGib *pGib = CreateGib(); if ( pGib ) { pGib->SetAbsOrigin( GetAbsOrigin() ); pGib->SetAbsAngles( m_angGibRotation ); pGib->m_lifeTime = (m_flGibLife * random->RandomFloat( 0.95, 1.05 )); // +/- 5% pGib->SetCollisionGroup( COLLISION_GROUP_DEBRIS ); IPhysicsObject *pPhysicsObject = pGib->VPhysicsInitNormal( SOLID_VPHYSICS, pGib->GetSolidFlags(), false ); pGib->SetMoveType( MOVETYPE_VPHYSICS ); if ( pPhysicsObject ) { // Set gib velocity Vector vVel = vecShootDir * flSpeed; pPhysicsObject->AddVelocity(&vVel, NULL); AngularImpulse torque; torque.x = m_flGibAngVelocity * random->RandomFloat( 0.1f, 1.0f ); torque.y = m_flGibAngVelocity * random->RandomFloat( 0.1f, 1.0f ); torque.z = 0.0f; torque *= pPhysicsObject->GetMass(); pPhysicsObject->ApplyTorqueCenter( torque ); if( HasSpawnFlags( SF_SHOOTER_STRICT_REMOVE ) ) { pGib->m_bForceRemove = true; pGib->SetNextThink( gpGlobals->curtime + pGib->m_lifeTime ); pGib->SetThink ( &CGib::DieThink ); } } else { InitPointGib( pGib, vecShootDir, flSpeed ); } } return pGib; } case GIB_SIMULATE_POINT: { CGib *pGib = CreateGib(); if ( pGib ) { pGib->SetAbsAngles( m_angGibRotation ); InitPointGib( pGib, vecShootDir, flSpeed ); return pGib; } } } return NULL; } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CGibShooter::ShootThink ( void ) { SetNextThink( gpGlobals->curtime + m_flDelay ); Vector vecShootDir, vForward,vRight,vUp; AngleVectors( GetAbsAngles(), &vForward, &vRight, &vUp ); vecShootDir = vForward; vecShootDir = vecShootDir + vRight * random->RandomFloat( -1, 1) * m_flVariance; vecShootDir = vecShootDir + vForward * random->RandomFloat( -1, 1) * m_flVariance; vecShootDir = vecShootDir + vUp * random->RandomFloat( -1, 1) * m_flVariance; VectorNormalize( vecShootDir ); SpawnGib( vecShootDir, m_flGibVelocity ); if ( --m_iGibs <= 0 ) { if ( HasSpawnFlags(SF_GIBSHOOTER_REPEATABLE) ) { m_iGibs = m_iGibCapacity; SetThink ( NULL ); SetNextThink( gpGlobals->curtime ); } else { SetThink ( &CGibShooter::SUB_Remove ); SetNextThink( gpGlobals->curtime ); } } } class CEnvShooter : public CGibShooter { public: DECLARE_CLASS( CEnvShooter, CGibShooter ); CEnvShooter() { m_flGibGravityScale = 1.0f; } void Precache( void ); bool KeyValue( const char *szKeyName, const char *szValue ); CGib *CreateGib( void ); DECLARE_DATADESC(); public: int m_nSkin; float m_flGibScale; float m_flGibGravityScale; #if HL2_EPISODIC float m_flMassOverride; // allow designer to force a mass for gibs in some cases #endif }; BEGIN_DATADESC( CEnvShooter ) DEFINE_KEYFIELD( m_nSkin, FIELD_INTEGER, "skin" ), DEFINE_KEYFIELD( m_flGibScale, FIELD_FLOAT ,"scale" ), DEFINE_KEYFIELD( m_flGibGravityScale, FIELD_FLOAT, "gibgravityscale" ), #if HL2_EPISODIC DEFINE_KEYFIELD( m_flMassOverride, FIELD_FLOAT, "massoverride" ), #endif END_DATADESC() LINK_ENTITY_TO_CLASS( env_shooter, CEnvShooter ); bool CEnvShooter::KeyValue( const char *szKeyName, const char *szValue ) { if (FStrEq(szKeyName, "shootmodel")) { m_bIsSprite = false; SetModelName( AllocPooledString(szValue) ); //Adrian - not pretty... if ( Q_stristr( szValue, ".vmt" ) ) m_bIsSprite = true; } else if (FStrEq(szKeyName, "shootsounds")) { int iNoise = atoi(szValue); switch( iNoise ) { case 0: m_iGibMaterial = matGlass; break; case 1: m_iGibMaterial = matWood; break; case 2: m_iGibMaterial = matMetal; break; case 3: m_iGibMaterial = matFlesh; break; case 4: m_iGibMaterial = matRocks; break; default: case -1: m_iGibMaterial = matNone; break; } } else { return BaseClass::KeyValue( szKeyName, szValue ); } return true; } void CEnvShooter::Precache ( void ) { m_iGibModelIndex = PrecacheModel( STRING( GetModelName() ) ); } CGib *CEnvShooter::CreateGib ( void ) { CGib *pGib = CREATE_ENTITY( CGib, "gib" ); if ( m_bIsSprite == true ) { //HACK HACK pGib->Spawn( "" ); } else { pGib->Spawn( STRING( GetModelName() ) ); } int bodyPart = 0; if ( m_nMaxGibModelFrame > 1 ) { bodyPart = random->RandomInt( 0, m_nMaxGibModelFrame-1 ); } pGib->m_nBody = bodyPart; pGib->SetBloodColor( DONT_BLEED ); pGib->m_material = m_iGibMaterial; pGib->m_nRenderMode = m_nRenderMode; pGib->m_clrRender = m_clrRender; pGib->m_nRenderFX = m_nRenderFX; pGib->m_nSkin = m_nSkin; pGib->m_lifeTime = gpGlobals->curtime + m_flGibLife; pGib->SetGravity( m_flGibGravityScale ); // Spawn a flaming gib if ( HasSpawnFlags( SF_SHOOTER_FLAMING ) ) { // Tag an entity flame along with us CEntityFlame *pFlame = CEntityFlame::Create( pGib, pGib->m_lifeTime ); if ( pFlame != NULL ) { pGib->SetFlame( pFlame ); } } if ( m_iszLightingOrigin != NULL_STRING ) { // Make the gibs use the lighting origin pGib->SetLightingOrigin( m_iszLightingOrigin ); } if( m_bNoGibShadows ) { pGib->AddEffects( EF_NOSHADOW ); } #if HL2_EPISODIC // if a mass override is set, apply it to the gib if (m_flMassOverride != 0) { IPhysicsObject *pPhys = pGib->VPhysicsGetObject(); if (pPhys) { pPhys->SetMass( m_flMassOverride ); } } #endif return pGib; } //----------------------------------------------------------------------------- // An entity that shoots out junk when hit by a rotor wash //----------------------------------------------------------------------------- class CRotorWashShooter : public CEnvShooter, public IRotorWashShooter { public: DECLARE_CLASS( CRotorWashShooter, CEnvShooter ); DECLARE_DATADESC(); virtual void Spawn(); public: // Inherited from IRotorWashShooter virtual CBaseEntity *DoWashPush( float flTimeSincePushStarted, const Vector &vecForce ); private: // Amount of time we need to spend under the rotor before we shoot float m_flTimeUnderRotor; float m_flTimeUnderRotorVariance; // Last time we were hit with a wash... float m_flLastWashStartTime; float m_flNextGibTime; }; LINK_ENTITY_TO_CLASS( env_rotorshooter, CRotorWashShooter ); //----------------------------------------------------------------------------- // Save/load //----------------------------------------------------------------------------- BEGIN_DATADESC( CRotorWashShooter ) DEFINE_KEYFIELD( m_flTimeUnderRotor, FIELD_FLOAT ,"rotortime" ), DEFINE_KEYFIELD( m_flTimeUnderRotorVariance, FIELD_FLOAT ,"rotortimevariance" ), DEFINE_FIELD( m_flLastWashStartTime, FIELD_TIME ), DEFINE_FIELD( m_flNextGibTime, FIELD_TIME ), END_DATADESC() //----------------------------------------------------------------------------- // Gets at the interface if the entity supports it //----------------------------------------------------------------------------- IRotorWashShooter *GetRotorWashShooter( CBaseEntity *pEntity ) { CRotorWashShooter *pShooter = dynamic_cast<CRotorWashShooter*>(pEntity); return pShooter; } //----------------------------------------------------------------------------- // Inherited from IRotorWashShooter //----------------------------------------------------------------------------- void CRotorWashShooter::Spawn() { BaseClass::Spawn(); m_flLastWashStartTime = -1; } //----------------------------------------------------------------------------- // Inherited from IRotorWashShooter //----------------------------------------------------------------------------- CBaseEntity *CRotorWashShooter::DoWashPush( float flWashStartTime, const Vector &vecForce ) { if ( flWashStartTime == m_flLastWashStartTime ) { if ( m_flNextGibTime > gpGlobals->curtime ) return NULL; } m_flLastWashStartTime = flWashStartTime; m_flNextGibTime = gpGlobals->curtime + m_flTimeUnderRotor + random->RandomFloat( -1, 1) * m_flTimeUnderRotorVariance; if ( m_flNextGibTime <= gpGlobals->curtime ) { m_flNextGibTime = gpGlobals->curtime + 0.01f; } // Set the velocity to be what the force would cause it to accelerate to // after one tick Vector vecShootDir = vecForce; VectorNormalize( vecShootDir ); vecShootDir.x += random->RandomFloat( -1, 1 ) * m_flVariance; vecShootDir.y += random->RandomFloat( -1, 1 ) * m_flVariance; vecShootDir.z += random->RandomFloat( -1, 1 ) * m_flVariance; VectorNormalize( vecShootDir ); CBaseEntity *pGib = SpawnGib( vecShootDir, m_flGibVelocity /*flLength*/ ); if ( --m_iGibs <= 0 ) { if ( HasSpawnFlags(SF_GIBSHOOTER_REPEATABLE) ) { m_iGibs = m_iGibCapacity; } else { SetThink ( &CGibShooter::SUB_Remove ); SetNextThink( gpGlobals->curtime ); } } return pGib; } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- class CTestEffect : public CBaseEntity { public: DECLARE_CLASS( CTestEffect, CBaseEntity ); void Spawn( void ); void Precache( void ); // bool KeyValue( const char *szKeyName, const char *szValue ); void Think( void ); void Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ); int m_iLoop; int m_iBeam; CBeam *m_pBeam[24]; float m_flBeamTime[24]; float m_flStartTime; }; LINK_ENTITY_TO_CLASS( test_effect, CTestEffect ); void CTestEffect::Spawn( void ) { Precache( ); } void CTestEffect::Precache( void ) { PrecacheModel( "sprites/lgtning.vmt" ); } void CTestEffect::Think( void ) { int i; float t = (gpGlobals->curtime - m_flStartTime); if (m_iBeam < 24) { CBeam *pbeam = CBeam::BeamCreate( "sprites/lgtning.vmt", 10 ); trace_t tr; Vector vecSrc = GetAbsOrigin(); Vector vecDir = Vector( random->RandomFloat( -1.0, 1.0 ), random->RandomFloat( -1.0, 1.0 ),random->RandomFloat( -1.0, 1.0 ) ); VectorNormalize( vecDir ); UTIL_TraceLine( vecSrc, vecSrc + vecDir * 128, MASK_SOLID_BRUSHONLY, this, COLLISION_GROUP_NONE, &tr); pbeam->PointsInit( vecSrc, tr.endpos ); // pbeam->SetColor( 80, 100, 255 ); pbeam->SetColor( 255, 180, 100 ); pbeam->SetWidth( 10.0 ); pbeam->SetScrollRate( 12 ); m_flBeamTime[m_iBeam] = gpGlobals->curtime; m_pBeam[m_iBeam] = pbeam; m_iBeam++; #if 0 Vector vecMid = (vecSrc + tr.endpos) * 0.5; CBroadcastRecipientFilter filter; TE_DynamicLight( filter, 0.0, vecMid, 255, 180, 100, 3, 2.0, 0.0 ); #endif } if (t < 3.0) { for (i = 0; i < m_iBeam; i++) { t = (gpGlobals->curtime - m_flBeamTime[i]) / ( 3 + m_flStartTime - m_flBeamTime[i]); m_pBeam[i]->SetBrightness( 255 * t ); // m_pBeam[i]->SetScrollRate( 20 * t ); } SetNextThink( gpGlobals->curtime + 0.1f ); } else { for (i = 0; i < m_iBeam; i++) { UTIL_Remove( m_pBeam[i] ); } m_flStartTime = gpGlobals->curtime; m_iBeam = 0; SetNextThink( TICK_NEVER_THINK ); } } void CTestEffect::Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ) { SetNextThink( gpGlobals->curtime + 0.1f ); m_flStartTime = gpGlobals->curtime; } // Blood effects class CBlood : public CPointEntity { public: DECLARE_CLASS( CBlood, CPointEntity ); void Precache(); void Spawn( void ); bool KeyValue( const char *szKeyName, const char *szValue ); inline int Color( void ) { return m_Color; } inline float BloodAmount( void ) { return m_flAmount; } inline void SetColor( int color ) { m_Color = color; } // Input handlers void InputEmitBlood( inputdata_t &inputdata ); Vector Direction( void ); Vector BloodPosition( CBaseEntity *pActivator ); DECLARE_DATADESC(); Vector m_vecSprayDir; float m_flAmount; int m_Color; private: }; LINK_ENTITY_TO_CLASS( env_blood, CBlood ); BEGIN_DATADESC( CBlood ) DEFINE_KEYFIELD( m_vecSprayDir, FIELD_VECTOR, "spraydir" ), DEFINE_KEYFIELD( m_flAmount, FIELD_FLOAT, "amount" ), DEFINE_FIELD( m_Color, FIELD_INTEGER ), DEFINE_INPUTFUNC( FIELD_VOID, "EmitBlood", InputEmitBlood ), END_DATADESC() #define SF_BLOOD_RANDOM 0x0001 #define SF_BLOOD_STREAM 0x0002 #define SF_BLOOD_PLAYER 0x0004 #define SF_BLOOD_DECAL 0x0008 #define SF_BLOOD_CLOUD 0x0010 #define SF_BLOOD_DROPS 0x0020 #define SF_BLOOD_GORE 0x0040 //----------------------------------------------------------------------------- // Precache //----------------------------------------------------------------------------- void CBlood::Precache() { BaseClass::Precache(); UTIL_BloodSprayPrecache(); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CBlood::Spawn( void ) { Precache(); // Convert spraydir from angles to a vector QAngle angSprayDir = QAngle( m_vecSprayDir.x, m_vecSprayDir.y, m_vecSprayDir.z ); AngleVectors( angSprayDir, &m_vecSprayDir ); SetSolid( SOLID_NONE ); SetMoveType( MOVETYPE_NONE ); SetColor( BLOOD_COLOR_RED ); } //----------------------------------------------------------------------------- // Purpose: // Input : szKeyName - // szValue - // Output : Returns true on success, false on failure. //----------------------------------------------------------------------------- bool CBlood::KeyValue( const char *szKeyName, const char *szValue ) { if (FStrEq(szKeyName, "color")) { int color = atoi(szValue); switch ( color ) { case 1: { SetColor( BLOOD_COLOR_YELLOW ); break; } } } else { return BaseClass::KeyValue( szKeyName, szValue ); } return true; } Vector CBlood::Direction( void ) { if ( HasSpawnFlags( SF_BLOOD_RANDOM ) ) return UTIL_RandomBloodVector(); return m_vecSprayDir; } Vector CBlood::BloodPosition( CBaseEntity *pActivator ) { if ( HasSpawnFlags( SF_BLOOD_PLAYER ) ) { CBasePlayer *player; if ( pActivator && pActivator->IsPlayer() ) { player = ToBasePlayer( pActivator ); } else { player = UTIL_GetLocalPlayer(); } if ( player ) { return (player->EyePosition()) + Vector( random->RandomFloat(-10,10), random->RandomFloat(-10,10), random->RandomFloat(-10,10) ); } } return GetLocalOrigin(); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void UTIL_BloodSprayPrecache() { PrecacheEffect( "bloodspray" ); } void UTIL_BloodSpray( const Vector &pos, const Vector &dir, int color, int amount, int flags ) { if( color == DONT_BLEED ) return; CEffectData data; data.m_vOrigin = pos; data.m_vNormal = dir; data.m_flScale = (float)amount; data.m_fFlags = flags; data.m_nColor = color; DispatchEffect( "bloodspray", data ); } //----------------------------------------------------------------------------- // Purpose: Input handler for triggering the blood effect. //----------------------------------------------------------------------------- void CBlood::InputEmitBlood( inputdata_t &inputdata ) { if ( HasSpawnFlags( SF_BLOOD_STREAM ) ) { UTIL_BloodStream( BloodPosition(inputdata.pActivator), Direction(), Color(), BloodAmount() ); } else { UTIL_BloodDrips( BloodPosition(inputdata.pActivator), Direction(), Color(), BloodAmount() ); } if ( HasSpawnFlags( SF_BLOOD_DECAL ) ) { Vector forward = Direction(); Vector start = BloodPosition( inputdata.pActivator ); trace_t tr; UTIL_TraceLine( start, start + forward * BloodAmount() * 2, MASK_SOLID_BRUSHONLY, NULL, COLLISION_GROUP_NONE, &tr ); if ( tr.fraction != 1.0 ) { UTIL_BloodDecalTrace( &tr, Color() ); } } // // New-fangled blood effects. // if ( HasSpawnFlags( SF_BLOOD_CLOUD | SF_BLOOD_DROPS | SF_BLOOD_GORE ) ) { int nFlags = 0; if (HasSpawnFlags(SF_BLOOD_CLOUD)) { nFlags |= FX_BLOODSPRAY_CLOUD; } if (HasSpawnFlags(SF_BLOOD_DROPS)) { nFlags |= FX_BLOODSPRAY_DROPS; } if (HasSpawnFlags(SF_BLOOD_GORE)) { nFlags |= FX_BLOODSPRAY_GORE; } UTIL_BloodSpray(GetAbsOrigin(), Direction(), Color(), BloodAmount(), nFlags); } } //----------------------------------------------------------------------------- // //----------------------------------------------------------------------------- class CEnvFunnel : public CBaseEntity { DECLARE_DATADESC(); public: DECLARE_CLASS( CEnvFunnel, CBaseEntity ); void Spawn( void ); void Precache( void ); void Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ); int m_iSprite; // Don't save, precache }; LINK_ENTITY_TO_CLASS( env_funnel, CEnvFunnel ); //--------------------------------------------------------- // Save/Restore //--------------------------------------------------------- BEGIN_DATADESC( CEnvFunnel ) // DEFINE_FIELD( m_iSprite, FIELD_INTEGER ), END_DATADESC() void CEnvFunnel::Precache ( void ) { m_iSprite = PrecacheModel ( "sprites/flare6.vmt" ); } void CEnvFunnel::Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ) { CBroadcastRecipientFilter filter; te->LargeFunnel( filter, 0.0, &GetAbsOrigin(), m_iSprite, HasSpawnFlags( SF_FUNNEL_REVERSE ) ? 1 : 0 ); SetThink( &CEnvFunnel::SUB_Remove ); SetNextThink( gpGlobals->curtime ); } void CEnvFunnel::Spawn( void ) { Precache(); SetSolid( SOLID_NONE ); AddEffects( EF_NODRAW ); } //========================================================= // Beverage Dispenser // overloaded m_iHealth, is now how many cans remain in the machine. //========================================================= class CEnvBeverage : public CBaseEntity { public: DECLARE_CLASS( CEnvBeverage, CBaseEntity ); void Spawn( void ); void Precache( void ); void Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ); bool KeyValue( const char *szKeyName, const char *szValue ); // Input handlers. void InputActivate( inputdata_t &inputdata ); DECLARE_DATADESC(); public: bool m_CanInDispenser; int m_nBeverageType; }; void CEnvBeverage::Precache ( void ) { PrecacheModel( "models/can.mdl" ); } BEGIN_DATADESC( CEnvBeverage ) DEFINE_FIELD( m_CanInDispenser, FIELD_BOOLEAN ), DEFINE_FIELD( m_nBeverageType, FIELD_INTEGER ), DEFINE_INPUTFUNC( FIELD_VOID, "Activate", InputActivate ), END_DATADESC() LINK_ENTITY_TO_CLASS( env_beverage, CEnvBeverage ); bool CEnvBeverage::KeyValue( const char *szKeyName, const char *szValue ) { if (FStrEq(szKeyName, "beveragetype")) { m_nBeverageType = atoi(szValue); } else { return BaseClass::KeyValue( szKeyName, szValue ); } return true; } void CEnvBeverage::Use( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ) { if ( m_CanInDispenser || m_iHealth <= 0 ) { // no more cans while one is waiting in the dispenser, or if I'm out of cans. return; } CBaseAnimating *pCan = (CBaseAnimating *)CBaseEntity::Create( "item_sodacan", GetLocalOrigin(), GetLocalAngles(), this ); if ( m_nBeverageType == 6 ) { // random pCan->m_nSkin = random->RandomInt( 0, 5 ); } else { pCan->m_nSkin = m_nBeverageType; } m_CanInDispenser = true; m_iHealth -= 1; //SetThink (SUB_Remove); //SetNextThink( gpGlobals->curtime ); } void CEnvBeverage::InputActivate( inputdata_t &inputdata ) { Use( inputdata.pActivator, inputdata.pCaller, USE_ON, 0 ); } void CEnvBeverage::Spawn( void ) { Precache(); SetSolid( SOLID_NONE ); AddEffects( EF_NODRAW ); m_CanInDispenser = false; if ( m_iHealth == 0 ) { m_iHealth = 10; } } //========================================================= // Soda can //========================================================= class CItemSoda : public CBaseAnimating { public: DECLARE_CLASS( CItemSoda, CBaseAnimating ); void Spawn( void ); void Precache( void ); void CanThink ( void ); void CanTouch ( CBaseEntity *pOther ); DECLARE_DATADESC(); }; BEGIN_DATADESC( CItemSoda ) // Function Pointers DEFINE_FUNCTION( CanThink ), DEFINE_FUNCTION( CanTouch ), END_DATADESC() LINK_ENTITY_TO_CLASS( item_sodacan, CItemSoda ); void CItemSoda::Precache ( void ) { PrecacheModel( "models/can.mdl" ); PrecacheScriptSound( "ItemSoda.Bounce" ); } void CItemSoda::Spawn( void ) { Precache(); SetSolid( SOLID_NONE ); SetMoveType( MOVETYPE_FLYGRAVITY ); SetModel ( "models/can.mdl" ); UTIL_SetSize ( this, Vector ( 0, 0, 0 ), Vector ( 0, 0, 0 ) ); SetThink (&CItemSoda::CanThink); SetNextThink( gpGlobals->curtime + 0.5f ); } void CItemSoda::CanThink ( void ) { EmitSound( "ItemSoda.Bounce" ); SetSolid( SOLID_BBOX ); AddSolidFlags( FSOLID_TRIGGER ); UTIL_SetSize ( this, Vector ( -8, -8, 0 ), Vector ( 8, 8, 8 ) ); SetThink ( NULL ); SetTouch ( &CItemSoda::CanTouch ); } void CItemSoda::CanTouch ( CBaseEntity *pOther ) { if ( !pOther->IsPlayer() ) { return; } // spoit sound here pOther->TakeHealth( 1, DMG_GENERIC );// a bit of health. if ( GetOwnerEntity() ) { // tell the machine the can was taken CEnvBeverage *bev = (CEnvBeverage *)GetOwnerEntity(); bev->m_CanInDispenser = false; } AddSolidFlags( FSOLID_NOT_SOLID ); SetMoveType( MOVETYPE_NONE ); AddEffects( EF_NODRAW ); SetTouch ( NULL ); SetThink ( &CItemSoda::SUB_Remove ); SetNextThink( gpGlobals->curtime ); } #ifndef _XBOX //========================================================= // func_precipitation - temporary snow solution for first HL2 // technology demo //========================================================= class CPrecipitation : public CBaseEntity { public: DECLARE_CLASS( CPrecipitation, CBaseEntity ); DECLARE_DATADESC(); DECLARE_SERVERCLASS(); CPrecipitation(); int UpdateTransmitState(); void Spawn( void ); CNetworkVar( PrecipitationType_t, m_nPrecipType ); #ifdef INFESTED_DLL CNetworkVar( int, m_nSnowDustAmount ); #endif }; LINK_ENTITY_TO_CLASS( func_precipitation, CPrecipitation ); BEGIN_DATADESC( CPrecipitation ) DEFINE_KEYFIELD( m_nPrecipType, FIELD_INTEGER, "preciptype" ), #ifdef INFESTED_DLL DEFINE_KEYFIELD( m_nSnowDustAmount, FIELD_INTEGER, "snowDustAmt" ), #endif END_DATADESC() // Just send the normal entity crap IMPLEMENT_SERVERCLASS_ST( CPrecipitation, DT_Precipitation) SendPropInt( SENDINFO( m_nPrecipType ), Q_log2( NUM_PRECIPITATION_TYPES ) + 1, SPROP_UNSIGNED ), #ifdef INFESTED_DLL SendPropInt( SENDINFO( m_nSnowDustAmount ) ), #endif END_SEND_TABLE() CPrecipitation::CPrecipitation() { m_nPrecipType = PRECIPITATION_TYPE_RAIN; // default to rain. #ifdef INFESTED_DLL m_nSnowDustAmount = 0; #endif } int CPrecipitation::UpdateTransmitState() { return SetTransmitState( FL_EDICT_ALWAYS ); } void CPrecipitation::Spawn( void ) { //SetTransmitState( FL_EDICT_ALWAYS ); SetTransmitState( FL_EDICT_PVSCHECK ); PrecacheMaterial( "effects/fleck_ash1" ); PrecacheMaterial( "effects/fleck_ash2" ); PrecacheMaterial( "effects/fleck_ash3" ); PrecacheMaterial( "effects/ember_swirling001" ); Precache(); SetMoveType( MOVETYPE_NONE ); SetModel( STRING( GetModelName() ) ); // Set size if ( m_nPrecipType == PRECIPITATION_TYPE_PARTICLERAIN ) { SetSolid( SOLID_VPHYSICS ); AddSolidFlags( FSOLID_NOT_SOLID ); AddSolidFlags( FSOLID_FORCE_WORLD_ALIGNED ); VPhysicsInitStatic(); } else { SetSolid( SOLID_NONE ); // Remove model & collisions } // Default to rain. if ( m_nPrecipType < 0 || m_nPrecipType > NUM_PRECIPITATION_TYPES ) m_nPrecipType = PRECIPITATION_TYPE_RAIN; m_nRenderMode = kRenderEnvironmental; } //========================================================= // func_precipitation_blocker - prevents precipitation from happening in this volume //========================================================= class CPrecipitationBlocker : public CBaseEntity { public: DECLARE_CLASS( CPrecipitationBlocker, CBaseEntity ); DECLARE_DATADESC(); DECLARE_SERVERCLASS(); CPrecipitationBlocker(); void Spawn( void ); int UpdateTransmitState( void ); }; LINK_ENTITY_TO_CLASS( func_precipitation_blocker, CPrecipitationBlocker ); BEGIN_DATADESC( CPrecipitationBlocker ) END_DATADESC() // Just send the normal entity crap IMPLEMENT_SERVERCLASS_ST( CPrecipitationBlocker, DT_PrecipitationBlocker ) END_SEND_TABLE() CPrecipitationBlocker::CPrecipitationBlocker() { } int CPrecipitationBlocker::UpdateTransmitState() { return SetTransmitState( FL_EDICT_ALWAYS ); } void CPrecipitationBlocker::Spawn( void ) { SetTransmitState( FL_EDICT_ALWAYS ); Precache(); SetSolid( SOLID_NONE ); // Remove model & collisions SetMoveType( MOVETYPE_NONE ); SetModel( STRING( GetModelName() ) ); // Set size m_nRenderMode = kRenderEnvironmental; } #endif //-------------------------------------------------------------------------------------------------------- class CDetailBlocker : public CServerOnlyEntity { DECLARE_CLASS( CDetailBlocker, CServerOnlyEntity ); public: CDetailBlocker() : CServerOnlyEntity() {} virtual ~CDetailBlocker() {} }; LINK_ENTITY_TO_CLASS( func_detail_blocker, CDetailBlocker ); //----------------------------------------------------------------------------- // EnvWind - global wind info //----------------------------------------------------------------------------- class CEnvWind : public CBaseEntity { public: DECLARE_CLASS( CEnvWind, CBaseEntity ); void Spawn( void ); void Precache( void ); void WindThink( void ); int UpdateTransmitState( void ); DECLARE_DATADESC(); DECLARE_SERVERCLASS(); private: #ifdef GNUC CEnvWindShared m_EnvWindShared; // FIXME - fails to compile as networked var due to operator= problem #else CNetworkVarEmbedded( CEnvWindShared, m_EnvWindShared ); #endif }; LINK_ENTITY_TO_CLASS( env_wind, CEnvWind ); BEGIN_DATADESC( CEnvWind ) DEFINE_KEYFIELD( m_EnvWindShared.m_iMinWind, FIELD_INTEGER, "minwind" ), DEFINE_KEYFIELD( m_EnvWindShared.m_iMaxWind, FIELD_INTEGER, "maxwind" ), DEFINE_KEYFIELD( m_EnvWindShared.m_iMinGust, FIELD_INTEGER, "mingust" ), DEFINE_KEYFIELD( m_EnvWindShared.m_iMaxGust, FIELD_INTEGER, "maxgust" ), DEFINE_KEYFIELD( m_EnvWindShared.m_flMinGustDelay, FIELD_FLOAT, "mingustdelay" ), DEFINE_KEYFIELD( m_EnvWindShared.m_flMaxGustDelay, FIELD_FLOAT, "maxgustdelay" ), DEFINE_KEYFIELD( m_EnvWindShared.m_iGustDirChange, FIELD_INTEGER, "gustdirchange" ), DEFINE_KEYFIELD( m_EnvWindShared.m_flGustDuration, FIELD_FLOAT, "gustduration" ), // DEFINE_KEYFIELD( m_EnvWindShared.m_iszGustSound, FIELD_STRING, "gustsound" ), // Just here to quiet down classcheck // DEFINE_FIELD( m_EnvWindShared, CEnvWindShared ), DEFINE_FIELD( m_EnvWindShared.m_iWindDir, FIELD_INTEGER ), DEFINE_FIELD( m_EnvWindShared.m_flWindSpeed, FIELD_FLOAT ), DEFINE_OUTPUT( m_EnvWindShared.m_OnGustStart, "OnGustStart" ), DEFINE_OUTPUT( m_EnvWindShared.m_OnGustEnd, "OnGustEnd" ), // Function Pointers DEFINE_FUNCTION( WindThink ), END_DATADESC() BEGIN_SEND_TABLE_NOBASE(CEnvWindShared, DT_EnvWindShared) // These are parameters that are used to generate the entire motion SendPropInt (SENDINFO(m_iMinWind), 10, SPROP_UNSIGNED ), SendPropInt (SENDINFO(m_iMaxWind), 10, SPROP_UNSIGNED ), SendPropInt (SENDINFO(m_iMinGust), 10, SPROP_UNSIGNED ), SendPropInt (SENDINFO(m_iMaxGust), 10, SPROP_UNSIGNED ), SendPropFloat (SENDINFO(m_flMinGustDelay), 0, SPROP_NOSCALE), // NOTE: Have to do this, so it's *exactly* the same on client SendPropFloat (SENDINFO(m_flMaxGustDelay), 0, SPROP_NOSCALE), SendPropInt (SENDINFO(m_iGustDirChange), 9, SPROP_UNSIGNED ), SendPropInt (SENDINFO(m_iWindSeed), 32, SPROP_UNSIGNED ), // These are related to initial state SendPropInt (SENDINFO(m_iInitialWindDir),9, SPROP_UNSIGNED ), SendPropFloat (SENDINFO(m_flInitialWindSpeed),0, SPROP_NOSCALE ), SendPropFloat (SENDINFO(m_flStartTime), 0, SPROP_NOSCALE ), SendPropFloat (SENDINFO(m_flGustDuration), 0, SPROP_NOSCALE), // Sound related // SendPropInt (SENDINFO(m_iszGustSound), 10, SPROP_UNSIGNED ), END_SEND_TABLE() // This table encodes the CBaseEntity data. IMPLEMENT_SERVERCLASS_ST_NOBASE(CEnvWind, DT_EnvWind) SendPropDataTable(SENDINFO_DT(m_EnvWindShared), &REFERENCE_SEND_TABLE(DT_EnvWindShared)), END_SEND_TABLE() void CEnvWind::Precache ( void ) { // if (m_iszGustSound) // { // PrecacheScriptSound( STRING( m_iszGustSound ) ); // } } void CEnvWind::Spawn( void ) { Precache(); SetSolid( SOLID_NONE ); AddEffects( EF_NODRAW ); m_EnvWindShared.m_iInitialWindDir = (int)( anglemod( m_EnvWindShared.m_iInitialWindDir ) ); m_EnvWindShared.Init( entindex(), 0, gpGlobals->curtime, GetLocalAngles().y, 0 ); SetThink( &CEnvWind::WindThink ); SetNextThink( gpGlobals->curtime ); } int CEnvWind::UpdateTransmitState() { return SetTransmitState( FL_EDICT_ALWAYS ); } void CEnvWind::WindThink( void ) { SetNextThink( m_EnvWindShared.WindThink( gpGlobals->curtime ) ); } //================================================== // CEmbers //================================================== #define bitsSF_EMBERS_START_ON 0x00000001 #define bitsSF_EMBERS_TOGGLE 0x00000002 // UNDONE: This is a brush effect-in-volume entity, move client side. class CEmbers : public CBaseEntity { public: DECLARE_CLASS( CEmbers, CBaseEntity ); void Spawn( void ); void Precache( void ); void EmberUse( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ); CNetworkVar( int, m_nDensity ); CNetworkVar( int, m_nLifetime ); CNetworkVar( int, m_nSpeed ); CNetworkVar( bool, m_bEmit ); DECLARE_DATADESC(); DECLARE_SERVERCLASS(); }; LINK_ENTITY_TO_CLASS( env_embers, CEmbers ); //Data description BEGIN_DATADESC( CEmbers ) DEFINE_KEYFIELD( m_nDensity, FIELD_INTEGER, "density" ), DEFINE_KEYFIELD( m_nLifetime, FIELD_INTEGER, "lifetime" ), DEFINE_KEYFIELD( m_nSpeed, FIELD_INTEGER, "speed" ), DEFINE_FIELD( m_bEmit, FIELD_BOOLEAN ), //Function pointers DEFINE_FUNCTION( EmberUse ), END_DATADESC() //Data table IMPLEMENT_SERVERCLASS_ST( CEmbers, DT_Embers ) SendPropInt( SENDINFO( m_nDensity ), 32, SPROP_UNSIGNED ), SendPropInt( SENDINFO( m_nLifetime ), 32, SPROP_UNSIGNED ), SendPropInt( SENDINFO( m_nSpeed ), 32, SPROP_UNSIGNED ), SendPropInt( SENDINFO( m_bEmit ), 2, SPROP_UNSIGNED ), END_SEND_TABLE() //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CEmbers::Spawn( void ) { Precache(); SetModel( STRING( GetModelName() ) ); SetSolid( SOLID_NONE ); SetRenderAlpha( 0 ); m_nRenderMode = kRenderTransTexture; SetUse( &CEmbers::EmberUse ); //Start off if we're targetted (unless flagged) m_bEmit = ( HasSpawnFlags( bitsSF_EMBERS_START_ON ) || ( !GetEntityName() ) ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CEmbers::Precache( void ) { } //----------------------------------------------------------------------------- // Purpose: // Input : *pActivator - // *pCaller - // useType - // value - //----------------------------------------------------------------------------- void CEmbers::EmberUse( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ) { //If we're not toggable, only allow one use if ( !HasSpawnFlags( bitsSF_EMBERS_TOGGLE ) ) { SetUse( NULL ); } //Handle it switch ( useType ) { case USE_OFF: m_bEmit = false; break; case USE_ON: m_bEmit = true; break; case USE_SET: m_bEmit = !!(int)value; break; default: case USE_TOGGLE: m_bEmit = !m_bEmit; break; } } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- class CPhysicsWire : public CBaseEntity { public: DECLARE_CLASS( CPhysicsWire, CBaseEntity ); void Spawn( void ); void Precache( void ); DECLARE_DATADESC(); protected: bool SetupPhysics( void ); int m_nDensity; }; LINK_ENTITY_TO_CLASS( env_physwire, CPhysicsWire ); BEGIN_DATADESC( CPhysicsWire ) DEFINE_KEYFIELD( m_nDensity, FIELD_INTEGER, "Density" ), // DEFINE_KEYFIELD( m_frequency, FIELD_INTEGER, "frequency" ), // DEFINE_FIELD( m_flFoo, FIELD_FLOAT ), // Function Pointers // DEFINE_FUNCTION( WireThink ), END_DATADESC() //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CPhysicsWire::Spawn( void ) { BaseClass::Spawn(); Precache(); // if ( SetupPhysics() == false ) // return; } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CPhysicsWire::Precache( void ) { BaseClass::Precache(); } class CPhysBallSocket; //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- bool CPhysicsWire::SetupPhysics( void ) { /* CPointEntity *anchorEnt, *freeEnt; CPhysBallSocket *socket; char anchorName[256]; char freeName[256]; int iAnchorName, iFreeName; anchorEnt = (CPointEntity *) CreateEntityByName( "info_target" ); if ( anchorEnt == NULL ) return false; //Create and connect all segments for ( int i = 0; i < m_nDensity; i++ ) { // Create other end of our link freeEnt = (CPointEntity *) CreateEntityByName( "info_target" ); // Create a ballsocket and attach the two //socket = (CPhysBallSocket *) CreateEntityByName( "phys_ballsocket" ); Q_snprintf( anchorName,sizeof(anchorName), "__PWIREANCHOR%d", i ); Q_snprintf( freeName,sizeof(freeName), "__PWIREFREE%d", i+1 ); iAnchorName = MAKE_STRING( anchorName ); iFreeName = MAKE_STRING( freeName ); //Fake the names //socket->m_nameAttach1 = anchorEnt->m_iGlobalname = iAnchorName; //socket->m_nameAttach2 = freeEnt->m_iGlobalname = iFreeName //socket->Activate(); //The free ent is now the anchor for the next link anchorEnt = freeEnt; } */ return true; } // // Muzzle flash // class CEnvMuzzleFlash : public CPointEntity { DECLARE_CLASS( CEnvMuzzleFlash, CPointEntity ); public: virtual void Spawn(); // Input handlers void InputFire( inputdata_t &inputdata ); DECLARE_DATADESC(); float m_flScale; string_t m_iszParentAttachment; }; BEGIN_DATADESC( CEnvMuzzleFlash ) DEFINE_KEYFIELD( m_flScale, FIELD_FLOAT, "scale" ), DEFINE_KEYFIELD( m_iszParentAttachment, FIELD_STRING, "parentattachment" ), DEFINE_INPUTFUNC( FIELD_VOID, "Fire", InputFire ), END_DATADESC() LINK_ENTITY_TO_CLASS( env_muzzleflash, CEnvMuzzleFlash ); //----------------------------------------------------------------------------- // Spawn! //----------------------------------------------------------------------------- void CEnvMuzzleFlash::Spawn() { if ( (m_iszParentAttachment != NULL_STRING) && GetParent() && GetParent()->GetBaseAnimating() ) { CBaseAnimating *pAnim = GetParent()->GetBaseAnimating(); int nParentAttachment = pAnim->LookupAttachment( STRING(m_iszParentAttachment) ); if ( nParentAttachment != 0 ) { SetParent( GetParent(), nParentAttachment ); SetLocalOrigin( vec3_origin ); SetLocalAngles( vec3_angle ); } } } //----------------------------------------------------------------------------- // Purpose: // Input : &inputdata - //----------------------------------------------------------------------------- void CEnvMuzzleFlash::InputFire( inputdata_t &inputdata ) { g_pEffects->MuzzleFlash( GetAbsOrigin(), GetAbsAngles(), m_flScale, MUZZLEFLASH_TYPE_DEFAULT ); } //========================================================= // Splash! //========================================================= #define SF_ENVSPLASH_FINDWATERSURFACE 0x00000001 #define SF_ENVSPLASH_DIMINISH 0x00000002 class CEnvSplash : public CPointEntity { DECLARE_CLASS( CEnvSplash, CPointEntity ); public: virtual void Precache(); virtual void Spawn(); // Input handlers void InputSplash( inputdata_t &inputdata ); protected: float m_flScale; DECLARE_DATADESC(); }; BEGIN_DATADESC( CEnvSplash ) DEFINE_KEYFIELD( m_flScale, FIELD_FLOAT, "scale" ), DEFINE_INPUTFUNC( FIELD_VOID, "Splash", InputSplash ), END_DATADESC() LINK_ENTITY_TO_CLASS( env_splash, CEnvSplash ); //----------------------------------------------------------------------------- // Purpose: // Input : &inputdata - //----------------------------------------------------------------------------- void CEnvSplash::Precache() { BaseClass::Precache(); PrecacheEffect( "watersplash" ); } void CEnvSplash::Spawn() { Precache(); BaseClass::Spawn(); } #define SPLASH_MAX_DEPTH 120.0f void CEnvSplash::InputSplash( inputdata_t &inputdata ) { CEffectData data; data.m_fFlags = 0; float scale = m_flScale; if( HasSpawnFlags( SF_ENVSPLASH_FINDWATERSURFACE ) ) { if( UTIL_PointContents(GetAbsOrigin(), MASK_WATER) & MASK_WATER ) { // No splash if I'm supposed to find the surface of the water, but I'm underwater. return; } // Trace down and find the water's surface. This is designed for making // splashes on the surface of water that can change water level. trace_t tr; UTIL_TraceLine( GetAbsOrigin(), GetAbsOrigin() - Vector( 0, 0, 4096 ), (MASK_WATER|MASK_SOLID_BRUSHONLY), this, COLLISION_GROUP_NONE, &tr ); data.m_vOrigin = tr.endpos; if ( tr.contents & CONTENTS_SLIME ) { data.m_fFlags |= FX_WATER_IN_SLIME; } } else { data.m_vOrigin = GetAbsOrigin(); } if( HasSpawnFlags( SF_ENVSPLASH_DIMINISH ) ) { // Get smaller if I'm in deeper water. float depth = 0.0f; trace_t tr; UTIL_TraceLine( data.m_vOrigin, data.m_vOrigin - Vector( 0, 0, 4096 ), MASK_SOLID_BRUSHONLY, this, COLLISION_GROUP_NONE, &tr ); depth = fabs( tr.startpos.z - tr.endpos.z ); float factor = 1.0f - (depth / SPLASH_MAX_DEPTH); if( factor < 0.1 ) { // Don't bother making one this small. return; } scale *= factor; } data.m_vNormal = Vector( 0, 0, 1 ); data.m_flScale = scale; DispatchEffect( "watersplash", data ); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- class CEnvGunfire : public CPointEntity { public: DECLARE_CLASS( CEnvGunfire, CPointEntity ); CEnvGunfire() { // !!!HACKHACK // These fields came along kind of late, so they get // initialized in the constructor for now. (sjb) m_flBias = 1.0f; m_bCollide = false; } void Precache(); void Spawn(); void Activate(); void StartShooting(); void StopShooting(); void ShootThink(); void UpdateTarget(); void InputEnable( inputdata_t &inputdata ); void InputDisable( inputdata_t &inputdata ); int m_iMinBurstSize; int m_iMaxBurstSize; float m_flMinBurstDelay; float m_flMaxBurstDelay; float m_flRateOfFire; string_t m_iszShootSound; string_t m_iszTracerType; bool m_bDisabled; int m_iShotsRemaining; int m_iSpread; Vector m_vecSpread; Vector m_vecTargetPosition; float m_flTargetDist; float m_flBias; bool m_bCollide; EHANDLE m_hTarget; DECLARE_DATADESC(); }; BEGIN_DATADESC( CEnvGunfire ) DEFINE_KEYFIELD( m_iMinBurstSize, FIELD_INTEGER, "minburstsize" ), DEFINE_KEYFIELD( m_iMaxBurstSize, FIELD_INTEGER, "maxburstsize" ), DEFINE_KEYFIELD( m_flMinBurstDelay, FIELD_TIME, "minburstdelay" ), DEFINE_KEYFIELD( m_flMaxBurstDelay, FIELD_TIME, "maxburstdelay" ), DEFINE_KEYFIELD( m_flRateOfFire, FIELD_FLOAT, "rateoffire" ), DEFINE_KEYFIELD( m_iszShootSound, FIELD_STRING, "shootsound" ), DEFINE_KEYFIELD( m_iszTracerType, FIELD_STRING, "tracertype" ), DEFINE_KEYFIELD( m_bDisabled, FIELD_BOOLEAN, "startdisabled" ), DEFINE_KEYFIELD( m_iSpread, FIELD_INTEGER, "spread" ), DEFINE_KEYFIELD( m_flBias, FIELD_FLOAT, "bias" ), DEFINE_KEYFIELD( m_bCollide, FIELD_BOOLEAN, "collisions" ), DEFINE_FIELD( m_iShotsRemaining, FIELD_INTEGER ), DEFINE_FIELD( m_vecSpread, FIELD_VECTOR ), DEFINE_FIELD( m_vecTargetPosition, FIELD_VECTOR ), DEFINE_FIELD( m_flTargetDist, FIELD_FLOAT ), DEFINE_FIELD( m_hTarget, FIELD_EHANDLE ), DEFINE_THINKFUNC( ShootThink ), DEFINE_INPUTFUNC( FIELD_VOID, "Enable", InputEnable ), DEFINE_INPUTFUNC( FIELD_VOID, "Disable", InputDisable ), END_DATADESC() LINK_ENTITY_TO_CLASS( env_gunfire, CEnvGunfire ); //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::Precache() { PrecacheScriptSound( STRING( m_iszShootSound ) ); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::Spawn() { Precache(); m_iShotsRemaining = 0; m_flRateOfFire = 1.0f / m_flRateOfFire; switch( m_iSpread ) { case 1: m_vecSpread = VECTOR_CONE_1DEGREES; break; case 5: m_vecSpread = VECTOR_CONE_5DEGREES; break; case 10: m_vecSpread = VECTOR_CONE_10DEGREES; break; case 15: m_vecSpread = VECTOR_CONE_15DEGREES; break; default: m_vecSpread = vec3_origin; break; } if( !m_bDisabled ) { StartShooting(); } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::Activate( void ) { // Find my target if (m_target != NULL_STRING) { m_hTarget = gEntList.FindEntityByName( NULL, m_target ); } BaseClass::Activate(); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::StartShooting() { m_iShotsRemaining = random->RandomInt( m_iMinBurstSize, m_iMaxBurstSize ); SetThink( &CEnvGunfire::ShootThink ); SetNextThink( gpGlobals->curtime ); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::UpdateTarget() { if( m_hTarget ) { if( m_hTarget->WorldSpaceCenter() != m_vecTargetPosition ) { // Target has moved. // Locate my target and cache the position and distance. m_vecTargetPosition = m_hTarget->WorldSpaceCenter(); m_flTargetDist = (GetAbsOrigin() - m_vecTargetPosition).Length(); } } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::StopShooting() { SetThink( NULL ); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::ShootThink() { if( !m_hTarget ) { StopShooting(); } SetNextThink( gpGlobals->curtime + m_flRateOfFire ); UpdateTarget(); Vector vecDir = m_vecTargetPosition - GetAbsOrigin(); VectorNormalize( vecDir ); CShotManipulator manipulator( vecDir ); vecDir = manipulator.ApplySpread( m_vecSpread, m_flBias ); Vector vecEnd; if( m_bCollide ) { trace_t tr; UTIL_TraceLine( GetAbsOrigin(), GetAbsOrigin() + vecDir * 8192, MASK_SHOT, this, COLLISION_GROUP_NONE, &tr ); if( tr.fraction != 1.0 ) { DoImpactEffect( tr, DMG_BULLET ); } vecEnd = tr.endpos; } else { vecEnd = GetAbsOrigin() + vecDir * m_flTargetDist; } if( m_iszTracerType != NULL_STRING ) { UTIL_Tracer( GetAbsOrigin(), vecEnd, 0, TRACER_DONT_USE_ATTACHMENT, 5000, true, STRING(m_iszTracerType) ); } else { UTIL_Tracer( GetAbsOrigin(), vecEnd, 0, TRACER_DONT_USE_ATTACHMENT, 5000, true ); } EmitSound( STRING(m_iszShootSound) ); m_iShotsRemaining--; if( m_iShotsRemaining == 0 ) { StartShooting(); SetNextThink( gpGlobals->curtime + random->RandomFloat( m_flMinBurstDelay, m_flMaxBurstDelay ) ); } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::InputEnable( inputdata_t &inputdata ) { m_bDisabled = false; StartShooting(); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvGunfire::InputDisable( inputdata_t &inputdata ) { m_bDisabled = true; SetThink( NULL ); } //----------------------------------------------------------------------------- // Quadratic spline beam effect //----------------------------------------------------------------------------- BEGIN_DATADESC( CEnvQuadraticBeam ) DEFINE_FIELD( m_targetPosition, FIELD_POSITION_VECTOR ), DEFINE_FIELD( m_controlPosition, FIELD_POSITION_VECTOR ), DEFINE_FIELD( m_scrollRate, FIELD_FLOAT ), DEFINE_FIELD( m_flWidth, FIELD_FLOAT ), END_DATADESC() LINK_ENTITY_TO_CLASS( env_quadraticbeam, CEnvQuadraticBeam ); IMPLEMENT_SERVERCLASS_ST( CEnvQuadraticBeam, DT_QuadraticBeam ) SendPropVector(SENDINFO(m_targetPosition), -1, SPROP_COORD), SendPropVector(SENDINFO(m_controlPosition), -1, SPROP_COORD), SendPropFloat(SENDINFO(m_scrollRate), 8, 0, -4, 4), SendPropFloat(SENDINFO(m_flWidth), -1, SPROP_NOSCALE), END_SEND_TABLE() void CEnvQuadraticBeam::Spawn() { BaseClass::Spawn(); m_nRenderMode = kRenderTransAdd; SetRenderColor( 255, 255, 255 ); } CEnvQuadraticBeam *CreateQuadraticBeam( const char *pSpriteName, const Vector &start, const Vector &control, const Vector &end, float width, CBaseEntity *pOwner ) { CEnvQuadraticBeam *pBeam = (CEnvQuadraticBeam *)CBaseEntity::Create( "env_quadraticbeam", start, vec3_angle, pOwner ); UTIL_SetModel( pBeam, pSpriteName ); pBeam->SetSpline( control, end ); pBeam->SetScrollRate( 0.0 ); pBeam->SetWidth(width); return pBeam; } PRECACHE_REGISTER_BEGIN( GLOBAL, EffectsPrecache ) PRECACHE( GAMESOUND, "Underwater.BulletImpact" ) PRECACHE( GAMESOUND, "FX_RicochetSound.Ricochet" ) PRECACHE( GAMESOUND, "Physics.WaterSplash" ) PRECACHE( GAMESOUND, "BaseExplosionEffect.Sound" ) PRECACHE( GAMESOUND, "Splash.SplashSound" ) PRECACHE_CONDITIONAL( GAMESOUND, "HudChat.Message", gpGlobals->maxClients > 1 ) PRECACHE_REGISTER_END() class CEnvViewPunch : public CPointEntity { public: DECLARE_CLASS( CEnvViewPunch, CPointEntity ); virtual void Spawn(); // Input handlers void InputViewPunch( inputdata_t &inputdata ); private: float m_flRadius; QAngle m_angViewPunch; void DoViewPunch(); DECLARE_DATADESC(); }; LINK_ENTITY_TO_CLASS( env_viewpunch, CEnvViewPunch ); BEGIN_DATADESC( CEnvViewPunch ) DEFINE_KEYFIELD( m_angViewPunch, FIELD_VECTOR, "punchangle" ), DEFINE_KEYFIELD( m_flRadius, FIELD_FLOAT, "radius" ), DEFINE_INPUTFUNC( FIELD_VOID, "ViewPunch", InputViewPunch ), END_DATADESC() #define SF_PUNCH_EVERYONE 0x0001 // Don't check radius #define SF_PUNCH_IN_AIR 0x0002 // Punch players in air //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvViewPunch::Spawn( void ) { SetSolid( SOLID_NONE ); SetMoveType( MOVETYPE_NONE ); if ( GetSpawnFlags() & SF_PUNCH_EVERYONE ) { m_flRadius = 0; } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvViewPunch::DoViewPunch() { bool bAir = (GetSpawnFlags() & SF_PUNCH_IN_AIR) ? true : false; UTIL_ViewPunch( GetAbsOrigin(), m_angViewPunch, m_flRadius, bAir ); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void CEnvViewPunch::InputViewPunch( inputdata_t &inputdata ) { DoViewPunch(); }
[ "ibemad@gmail.com@0b7b69cc-2dba-df56-e3eb-7f138e0a0778" ]
ibemad@gmail.com@0b7b69cc-2dba-df56-e3eb-7f138e0a0778
c446f6b760139c579b8c19d6819401dc985f60e6
bd9fddb6558970475483c2e7e0a1b5a1a2ce1a03
/projectile.cpp
e3496ba83819989f104681269d1278bcac56611e
[]
no_license
erikhallin/project_f
d5ccd8bc748f998f779da814fed8a9158a447dcb
a2eebac619b979cdc6ffd27b8ff9fa177749ee93
refs/heads/master
2020-07-10T01:15:36.871033
2019-08-24T08:20:36
2019-08-24T08:20:36
204,129,421
0
0
null
null
null
null
UTF-8
C++
false
false
1,996
cpp
#include "projectile.h" projectile::projectile() { m_damage_range=0; } projectile::projectile(st_pos start,st_pos end,float speed,float damage,float damage_range,int team_fire) { m_pos_start=m_pos_curr=start; m_pos_end=end; m_damage=damage; m_damage_range=damage_range; m_team_fire=team_fire; //calc move vector st_pos rel_pos(end.x-start.x,end.y-start.y); float length=rel_pos.length(); rel_pos/=length;//normalize m_speed.x=rel_pos.x*speed; m_speed.y=rel_pos.y*speed; //calc angle m_angle=atan2f(rel_pos.y,rel_pos.x)*_Rad2Deg; //cout<<"bullet angle: "<<m_angle<<endl; //calc lifetime m_life_time=length/speed; //std::cout<<"bullet dir: "<<rel_pos.x<<", "<<rel_pos.y<<std::endl; } bool projectile::update(void) { m_pos_curr.x+=m_speed.x*_time_step*0.001; m_pos_curr.y+=m_speed.y*_time_step*0.001; //test lifetime m_life_time-=_time_step*0.001; if(m_life_time<0) return true;//time out //test if done (not required if life time is tested) bool end_reached=false; if(m_speed.x>=0)//going right { if(m_pos_curr.x>=m_pos_end.x) { //test y if(m_speed.y>=0)//going down { if(m_pos_curr.y>=m_pos_end.y) end_reached=true; } else//going up { if(m_pos_curr.y<m_pos_end.y) end_reached=true; } } } else//going left { if(m_pos_curr.x<m_pos_end.x) { //test y if(m_speed.y>=0)//going down { if(m_pos_curr.y>=m_pos_end.y) end_reached=true; } else//going up { if(m_pos_curr.y<m_pos_end.y) end_reached=true; } } } return end_reached; } bool projectile::draw(void) { //glColor3f(1,1,1); //glBegin(GL_POINTS); glVertex2f(m_pos_curr.x,m_pos_curr.y); //glEnd(); return true; }
[ "erik-hallin@hotmail.com" ]
erik-hallin@hotmail.com
82d8fbe82540eee396229667633f8747c6ce8a07
7ec52f1eeb83bbc27f1674af805948858b2bd9a7
/Headers/Keyframe.h
5f5bd73786e2bc15b7c4e1bbf316722b2ebc0f97
[]
no_license
amirbaghi/skeletal-animation-opengl
c1b4000e14baa804b86a3cf1d7565d4f48a4fa6c
bc53e9014d67159b6a9149c7844ce97041782dfe
refs/heads/main
2023-05-28T02:22:19.070958
2021-06-13T09:31:35
2021-06-13T09:31:35
375,739,287
1
1
null
null
null
null
UTF-8
C++
false
false
439
h
#pragma once #include "glm.hpp" #include "gtc/type_ptr.hpp" #include <map> #include <string> class Keyframe { public: Keyframe(int number) : keyFrameNumber(number) {} void addOrientation(std::string boneName, glm::quat orientation); std::map<std::string, glm::quat> getOrientations(); glm::quat getOrientation(std::string boneName); private: int keyFrameNumber; std::map<std::string, glm::quat> orientations; };
[ "bamirmasoud@gmail.com" ]
bamirmasoud@gmail.com
6b45bd58e8c27094a28e4250d6414bb2dc30640e
0f09b036d90e5a85da1856516893422c476bce46
/Samples/DirectXA4/SceneRenderer.h
520464b8c9583d3078914e59b743c66b2f0ad6d7
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
longde123/simdrast
034aac5aca5b13c7ad332ba865f9f6bc036a992e
9f2cbdd039fb3c7779adcc8a320d492e5db69e92
refs/heads/master
2016-09-05T09:09:57.641242
2015-05-17T11:03:08
2015-05-17T11:03:08
35,762,669
5
3
null
null
null
null
UTF-8
C++
false
false
2,117
h
// // SceneRenderer.h // DirectXA4 // // Created by Rasmus Barringer on 2013-06-07. // Copyright (c) 2013 Rasmus Barringer. All rights reserved. // #ifndef DirectXA4_SceneRenderer_h #define DirectXA4_SceneRenderer_h #include "../../SimdRast/Renderer.h" #include "../Framework/SilhouetteRast.h" #include "Quad.h" #include "Font.h" #include "Scene.h" #include "Window.h" #include "Shader.h" #include "RenderMesh.h" #include "DraTexture.h" #include "SceneShader.h" #include "DraShadowMap.h" #include "ConstantBuffer.h" #include "CpuRendererThread.h" enum RENDERERTYPE { RENDERERTYPE_HW = 0, RENDERERTYPE_SW, RENDERERTYPE_WARP, RENDERERTYPE_COUNT, }; enum RENDERMODE { RENDERMODE_NOAA = 0, RENDERMODE_16XA4, RENDERMODE_8XMSAA, RENDERMODE_4XMSAA, RENDERMODE_2XMSAA, RENDERMODE_COUNT, }; class SceneRenderer { private: struct ShadowMap { DraShadowMap* shadowMap; DraTexture* shadowMapTexture; }; RENDERERTYPE rendererType; RENDERMODE renderMode; unsigned width; unsigned height; std::string status; std::string timing; Scene* scene; RenderTarget* frameBufferTarget; RenderMesh renderMesh; Shader meshShader; ConstantBuffer<SceneUniforms, 0> meshUniforms; ReleasePointer<ID3D11SamplerState> meshSampler; ReleasePointer<ID3D11DepthStencilState> transparencyDepthState; ReleasePointer<ID3D11BlendState> transparencyBlendState; Font font; Quad quad; Shader quadShader; ReleasePointer<ID3D11SamplerState> quadSampler; std::vector<ShadowMap> shadowMaps; static const unsigned printFreq = 20; double sec; double lastTime; unsigned frameCount; GenericVertexShader vs; SceneAttributeShader as; SceneFragmentShader fs; CpuRendererThread cpuRendererThread; public: SceneRenderer(RENDERERTYPE rendererType, unsigned width, unsigned height, Scene* scene); void nextMode(); void render(Window* window); ~SceneRenderer(); private: void renderRTs(); void renderCPU(srast::Renderer* renderer); void renderGPU(); void recreateFrameBuffer(); }; #endif
[ "rasmus.barringer@gmail.com@a23d2476-9113-d6f3-5730-3d5d7b0f29ff" ]
rasmus.barringer@gmail.com@a23d2476-9113-d6f3-5730-3d5d7b0f29ff
295769c565fbae93e3e16758858bba48bc30c6ab
d39a1b052483521d4d55cbf6e6dde7e267f5f342
/p1338.cpp
3827cb5357b7a079d24b811b3df0b22d2071c20c
[]
no_license
anan606/My-OI-Code
acde328f5854ce9ab97466c226f466c77a036a9b
de5cf105180ca18c1a89c763133e2c43bebddac6
refs/heads/master
2020-04-14T23:30:51.434286
2019-01-13T10:25:20
2019-01-13T10:25:20
164,204,886
0
0
null
null
null
null
UTF-8
C++
false
false
261
cpp
#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; int p=n,c=0; for (int s=1; m>0 ; s++,p--) m-=c=min(s,m); for(int i=1; i<p; i++) cout<<i<<' '; cout<<p+c<<' '; for(int i=n; i>=p; i--) if(i!=p+c) cout<<i<<' '; return 0; }
[ "anan606@163.com" ]
anan606@163.com
565e2b3f7143a3bde9a9e4ea1c7887a86cf02ba5
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/third_party/WebKit/Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp
f6ec538e69f8a1a51d7a18a1a382d82bab78994c
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
9,978
cpp
/* * Copyright (C) 2012 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "platform/graphics/filters/SkiaImageFilterBuilder.h" #include "SkBlurImageFilter.h" #include "SkColorFilterImageFilter.h" #include "SkColorMatrixFilter.h" #include "SkTableColorFilter.h" #include "platform/geometry/IntPoint.h" #include "platform/graphics/BoxReflection.h" #include "platform/graphics/CompositorFilterOperations.h" #include "platform/graphics/filters/FilterEffect.h" #include "platform/graphics/filters/FilterOperations.h" #include "platform/graphics/filters/SourceGraphic.h" #include "platform/graphics/skia/SkiaUtils.h" #include "third_party/skia/include/core/SkPicture.h" #include "third_party/skia/include/core/SkXfermode.h" #include "third_party/skia/include/effects/SkPictureImageFilter.h" #include "third_party/skia/include/effects/SkXfermodeImageFilter.h" namespace blink { namespace SkiaImageFilterBuilder { namespace { void populateSourceGraphicImageFilters(FilterEffect* sourceGraphic, sk_sp<SkImageFilter> input, ColorSpace inputColorSpace) { // Prepopulate SourceGraphic with two image filters: one with a null image // filter, and the other with a colorspace conversion filter. // We don't know what color space the interior nodes will request, so we // have to initialize SourceGraphic with both options. // Since we know SourceGraphic is always PM-valid, we also use these for // the PM-validated options. sk_sp<SkImageFilter> deviceFilter = transformColorSpace(input, inputColorSpace, ColorSpaceDeviceRGB); sk_sp<SkImageFilter> linearFilter = transformColorSpace(input, inputColorSpace, ColorSpaceLinearRGB); sourceGraphic->setImageFilter(ColorSpaceDeviceRGB, false, deviceFilter); sourceGraphic->setImageFilter(ColorSpaceLinearRGB, false, linearFilter); sourceGraphic->setImageFilter(ColorSpaceDeviceRGB, true, deviceFilter); sourceGraphic->setImageFilter(ColorSpaceLinearRGB, true, linearFilter); } } // namespace sk_sp<SkImageFilter> build(FilterEffect* effect, ColorSpace colorSpace, bool destinationRequiresValidPreMultipliedPixels) { if (!effect) return nullptr; bool requiresPMColorValidation = effect->mayProduceInvalidPreMultipliedPixels() && destinationRequiresValidPreMultipliedPixels; if (SkImageFilter* filter = effect->getImageFilter(colorSpace, requiresPMColorValidation)) return sk_ref_sp(filter); // Note that we may still need the color transform even if the filter is null sk_sp<SkImageFilter> origFilter = requiresPMColorValidation ? effect->createImageFilter() : effect->createImageFilterWithoutValidation(); sk_sp<SkImageFilter> filter = transformColorSpace(origFilter, effect->operatingColorSpace(), colorSpace); effect->setImageFilter(colorSpace, requiresPMColorValidation, filter); if (filter.get() != origFilter.get()) effect->setImageFilter(effect->operatingColorSpace(), requiresPMColorValidation, std::move(origFilter)); return filter; } sk_sp<SkImageFilter> transformColorSpace(sk_sp<SkImageFilter> input, ColorSpace srcColorSpace, ColorSpace dstColorSpace) { sk_sp<SkColorFilter> colorFilter = toSkSp(ColorSpaceUtilities::createColorSpaceFilter(srcColorSpace, dstColorSpace)); if (!colorFilter) return input; return SkColorFilterImageFilter::Make(std::move(colorFilter), std::move(input)); } void buildSourceGraphic(FilterEffect* sourceGraphic, sk_sp<SkPicture> picture) { ASSERT(picture); SkRect cullRect = picture->cullRect(); sk_sp<SkImageFilter> filter = SkPictureImageFilter::Make(std::move(picture), cullRect); populateSourceGraphicImageFilters(sourceGraphic, std::move(filter), sourceGraphic->operatingColorSpace()); } void buildFilterOperations(const FilterOperations& operations, CompositorFilterOperations* filters) { ColorSpace currentColorSpace = ColorSpaceDeviceRGB; for (size_t i = 0; i < operations.size(); ++i) { const FilterOperation& op = *operations.at(i); switch (op.type()) { case FilterOperation::REFERENCE: { Filter* referenceFilter = toReferenceFilterOperation(op).getFilter(); if (referenceFilter && referenceFilter->lastEffect()) { populateSourceGraphicImageFilters(referenceFilter->getSourceGraphic(), nullptr, currentColorSpace); FilterEffect* filterEffect = referenceFilter->lastEffect(); currentColorSpace = filterEffect->operatingColorSpace(); filterEffect->determineFilterPrimitiveSubregion(MapRectForward); filters->appendReferenceFilter(SkiaImageFilterBuilder::build(filterEffect, currentColorSpace)); } break; } case FilterOperation::GRAYSCALE: case FilterOperation::SEPIA: case FilterOperation::SATURATE: case FilterOperation::HUE_ROTATE: { float amount = toBasicColorMatrixFilterOperation(op).amount(); switch (op.type()) { case FilterOperation::GRAYSCALE: filters->appendGrayscaleFilter(amount); break; case FilterOperation::SEPIA: filters->appendSepiaFilter(amount); break; case FilterOperation::SATURATE: filters->appendSaturateFilter(amount); break; case FilterOperation::HUE_ROTATE: filters->appendHueRotateFilter(amount); break; default: ASSERT_NOT_REACHED(); } break; } case FilterOperation::INVERT: case FilterOperation::OPACITY: case FilterOperation::BRIGHTNESS: case FilterOperation::CONTRAST: { float amount = toBasicComponentTransferFilterOperation(op).amount(); switch (op.type()) { case FilterOperation::INVERT: filters->appendInvertFilter(amount); break; case FilterOperation::OPACITY: filters->appendOpacityFilter(amount); break; case FilterOperation::BRIGHTNESS: filters->appendBrightnessFilter(amount); break; case FilterOperation::CONTRAST: filters->appendContrastFilter(amount); break; default: ASSERT_NOT_REACHED(); } break; } case FilterOperation::BLUR: { float pixelRadius = toBlurFilterOperation(op).stdDeviation().getFloatValue(); filters->appendBlurFilter(pixelRadius); break; } case FilterOperation::DROP_SHADOW: { const DropShadowFilterOperation& drop = toDropShadowFilterOperation(op); filters->appendDropShadowFilter(drop.location(), drop.stdDeviation(), drop.getColor()); break; } case FilterOperation::BOX_REFLECT: { // TODO(jbroman): Consider explaining box reflect to the compositor, // instead of calling this a "reference filter". const auto& reflection = toBoxReflectFilterOperation(op).reflection(); filters->appendReferenceFilter(buildBoxReflectFilter(reflection, nullptr)); break; } case FilterOperation::NONE: break; } } if (currentColorSpace != ColorSpaceDeviceRGB) { // Transform to device color space at the end of processing, if required sk_sp<SkImageFilter> filter = transformColorSpace(nullptr, currentColorSpace, ColorSpaceDeviceRGB); filters->appendReferenceFilter(std::move(filter)); } } sk_sp<SkImageFilter> buildBoxReflectFilter(const BoxReflection& reflection, sk_sp<SkImageFilter> input) { sk_sp<SkImageFilter> maskedInput; if (SkPicture* maskPicture = reflection.mask()) { // SkXfermodeImageFilter can choose an excessively large size if the // mask is smaller than the filtered contents (due to overflow). // http://skbug.com/5210 SkImageFilter::CropRect cropRect(maskPicture->cullRect()); maskedInput = SkXfermodeImageFilter::Make( SkXfermode::Make(SkXfermode::kSrcIn_Mode), SkPictureImageFilter::Make(sk_ref_sp(maskPicture)), input, &cropRect); } else { maskedInput = input; } sk_sp<SkImageFilter> flipImageFilter = SkImageFilter::MakeMatrixFilter( reflection.reflectionMatrix(), kLow_SkFilterQuality, std::move(maskedInput)); return SkXfermodeImageFilter::Make(nullptr, std::move(flipImageFilter), std::move(input), nullptr); } } // namespace SkiaImageFilterBuilder } // namespace blink
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
ee1fcca4eface4ed99c9fa6b00a9c6072c4168e9
f8ff0ba9251f076184eab35e34f6740250527fb9
/rb_tree/rb_tree/rb_tree_node.h
abe0e9b250c7db08436baf0fa6a1d6c3381b5584
[]
no_license
ljli1990/rb_tree
d758878f96f13428fcb968f40e9e6afe2fc76ba1
0edffe1c4b796d1432af8087dc4c886361a485e9
refs/heads/master
2020-07-10T23:14:14.215489
2016-08-23T07:12:14
2016-08-23T07:12:14
66,323,664
0
0
null
null
null
null
GB18030
C++
false
false
781
h
#ifndef _RB_TREE_NODE_H_ #define _RB_TREE_NODE_H_ //#ifndef bool //typedef enum bool{false ,true}bool; //#endif #ifndef RB_TREE_COLOR typedef enum RB_TREE_COLOR{ RB_RED = 0, RB_BLACK = 1 }; #endif /************************************************************************/ /* 名称:红黑树的结点 时间:2016-08-19 */ /************************************************************************/ template <class T> //结点元素类型 struct rb_tree_node { T key; //关键字(键值) RB_TREE_COLOR color; rb_tree_node<T> *left; rb_tree_node<T> *right; rb_tree_node<T> *parent; rb_tree_node(const T &val = 0 , const RB_TREE_COLOR &col = RB_RED /*, const rb_tree_node *p = NULL*/); ~rb_tree_node(void); }; #include "rb_tree_node.cpp" #endif
[ "ljli1990@gmail.com" ]
ljli1990@gmail.com
12fc68f603bca151b267c0d15de33e749806abe2
3c078c619096943a2eff75c88ba84fb556107987
/src/Atema/Core/TaskManager.cpp
3a5e57511d92aa8d520f43b653e98b25b5ee272f
[ "MIT" ]
permissive
JordiSubirana/ATEMA
d6a778c3b3090456052660ea94fad2c9c20c3c1d
c8e4044f60e1afe4e38ddcf80921ee2e644f46ea
refs/heads/master
2023-08-31T15:32:50.295905
2023-08-24T22:58:05
2023-08-24T22:58:05
56,619,922
3
1
null
null
null
null
UTF-8
C++
false
false
3,146
cpp
/* Copyright 2022 Jordi SUBIRANA Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <Atema/Core/TaskManager.hpp> #include <Atema/Core/Error.hpp> #include <chrono> using namespace at; using namespace std::chrono_literals; // Task Task::Task(const std::function<void(size_t)>& function) : m_function(function), m_finished(false) { } Task::~Task() { } void Task::start(size_t threadIndex) { m_function(threadIndex); { std::unique_lock<std::mutex> lock(m_mutex); m_finished = true; } m_condition.notify_all(); } void Task::wait() noexcept { std::unique_lock<std::mutex> lock(m_mutex); m_condition.wait(lock, [this]() { return m_finished; }); } // TaskManager TaskManager::TaskManager() : m_exit(false) { // Number of cores or 4 by default static const size_t coreCount = std::thread::hardware_concurrency() ? std::thread::hardware_concurrency() : 4; initialize(coreCount); } TaskManager::~TaskManager() { m_exit = true; for (auto& thread : m_threads) thread->join(); } TaskManager& TaskManager::instance() { static TaskManager s_instance; return s_instance; } size_t TaskManager::getSize() const noexcept { return m_threads.size(); } Ptr<Task> TaskManager::createTask(const std::function<void()>& function) { auto task = createTask([function](size_t) { function(); }); return task; } Ptr<Task> TaskManager::createTask(const std::function<void(size_t)>& function) { auto task = std::make_shared<Task>(function); { std::unique_lock<std::mutex> lock(m_taskMutex); m_tasks.push(task); } m_condition.notify_one(); return task; } void TaskManager::initialize(size_t size) { m_threads.reserve(size); for (size_t i = 0; i < size; i++) { auto thread = std::make_shared<std::thread>([this, i]() { while (!m_exit) { Ptr<Task> task; { std::unique_lock<std::mutex> lock(m_taskMutex); m_condition.wait(lock, [this]() { return !m_tasks.empty() || m_exit; }); if (m_exit) break; task = m_tasks.front(); m_tasks.pop(); } task->start(i); } }); m_threads.push_back(thread); } }
[ "jordi.subirana@yahoo.fr" ]
jordi.subirana@yahoo.fr
e2256bec14857dd3cd75c3639c79ddc5dd14719e
b29c9d34b4483a863b239a13bc86868cbc3cd7bd
/include/mainwindow.hpp
90657049ed62fdae5e8da231ef96d8df507e6eb4
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
Car4Tegra/ServoDriverCalibration
8c75e80de779f23de33e320f56e7eba8411edbd1
17e48fbfc7e5412c271cf3e41f60f5d5345e260a
refs/heads/master
2021-01-18T23:34:47.111026
2017-04-14T21:34:07
2017-04-14T21:34:07
87,117,061
0
0
null
2017-04-14T21:34:08
2017-04-03T20:20:38
C++
UTF-8
C++
false
false
7,281
hpp
/** * @copyright * MIT License * * Copyright (c) 2017 Car4Tegra * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * @file mainwindow.hpp * @date 02.04.2017 * * @brief This file contains the declaration of class MainWindow * * @details * The MainWindow class handles the actions from the GUI * * @version 0.1 - 12.04.2017 - File created */ #ifndef MAINWINDOW_H #define MAINWINDOW_H // setting defines #define I2C_BUS_FIRST 0 ///< ID of the first I2C bus #define I2C_BUS_LAST 6 ///< ID of the last I2C bus #define PWM_MIN 0 ///< Minimum PWM value #define PWM_MAX 4095 ///< Maximum PWM value #define PWM_FREQ_MIN 24.0f ///< Minimum PWM frequency #define PWM_FREQ_MAX 1526.0f ///< MAXIMUM PWM frequency #define I2C_BUS_DEFAULT 0 ///< Index of the I2C bus which is selected by default #define I2C_DEVICE_DEFAULT "80" ///< Address of the PCA9685 device which is selected by default (hex) #define PWM_FREQ_DEFAULT 60.0f ///< Default PWM frequency #define I2C_SPEED_CHANNEL_DEFAULT 0 ///< Default PWM channel for ESC #define I2C_STEER_CHANNEL_DEFAULT 1 ///< Default PWM channel for steering servo #define PWM_SPEED_MIN_DEFAULT 160 ///< Default minimum PWM value for speed control #define PWM_SPEED_MAX_DEFAULT 715 ///< Default maximum PWM value for speed control #define PWM_STEER_MIN_DEFAULT 300 ///< Default minimum PWM value for steering control #define PWM_STEER_MAX_DEFAULT 500 ///< Default maximum PWM value for steering control #define PWM_SPEED_INV_DEFAULT false ///< Speed PWM values inverted by default or not #define PWM_STEER_INV_DEFAULT true ///< Steer PWM values inverted by default or not // QT includes #include <QMainWindow> // std includes #include <string> #include <memory> // CAR4TEGRA includes #include "include/pca9685.hpp" namespace Ui { class MainWindow; } // namespace UI /** * @class MainWindow mainwindow.hpp "include/mainwindow.hpp" * @brief The MainWindow class handles the actions from the GUI */ class MainWindow : public QMainWindow { Q_OBJECT public: /** * @brief Constructor * * @param[in] apParent QT parent for window creation */ explicit MainWindow(QWidget* apParent = 0); /** * @brief Destructor */ ~MainWindow(); private: /** * @brief Init GUI elements with values */ void init(); /** * @brief Convert hexadecimal number to binary number (both in string) * * @param[in] aHexValue Hexadecimal value for conversion * * @return 8-Bit binary representation of the input hex value */ QString hexToBin(QString aHexValue); /** * @brief Convert binary number to hexadecimal number (both in string) * * @param[in] aBinValue Binary value for conversion * * @return 8-Bit hexadecimal representation of the input binary value */ QString binToHex(QString aBinValue); /** * @brief Enables or disables the GUI elements used for the I2C settings * * @param[in] aEnable Enable I2C setting GUI elements */ void enableI2CSettings(bool aEnable); /** * @brief Updated visualization of speed elements (arrow images) * * @param[in] aValue New PWM value */ void updateSpeedVisualization(int aValue); /** * @brief Updated visualization of steering elements (car image) * * @param[in] aValue New PWM value */ void updateSteerVisualization(int aValue); /** * @brief Writes PWM value to the selected channel * * @param[in] aChannel Device Channel (0 - 15) * @param[in] aValue PWM value (0 - 4095) */ void setPWMValue(int aChannel, int aValue); private slots: /** * @brief Connect button clicked */ void on_btConnect_clicked(); /** * @brief Disconnect button clicked */ void on_btDisconnect_clicked(); /** * @brief Value of hexadecimal address changed by user * * @param[in] acrArg1 New text value */ void on_leAddressHex_textEdited(const QString& acrArg1); /** * @brief Value of binary address changed by user * * @param[in] acrArg1 New text value */ void on_leAddressBin_textEdited(const QString& acrArg1); /** * @brief Editing of lower speed border finished */ void on_sBSpeedBot_editingFinished(); /** * @brief Editing of upper speed border finished */ void on_sBSpeedTop_editingFinished(); /** * @brief Editing of lower steering border finished */ void on_sBSteerBot_editingFinished(); /** * @brief Editing of upper steering border finished */ void on_sBSteerTop_editingFinished(); /** * @brief Position of speed slider changed * * @param[in] aPosition New slider position */ void on_slidSpeed_sliderMoved(int aPosition); /** * @brief Position of steering slider changed * * @param[in] aPosition New slider position */ void on_slidSteer_sliderMoved(int aPosition); /** * @brief Invert the PWM values fo steering * * @param[in] aChecked Inverting used */ void on_cbInvSteer_clicked(bool aChecked); /** * @brief Invert the PWM values fo speed control * * @param[in] aChecked Inverting used */ void on_cbInvSpeed_clicked(bool aChecked); /** * @brief Editing of PWM frequency finished */ void on_sBFreq_editingFinished(); private: Ui::MainWindow* mpUi; ///< QT UI instance std::unique_ptr<CAR4TEGRA::PCA9685> mpDriver; ///< PCA9685 device QPoint mPosSteerTop; ///< Position of steering top border GUI element (for inverting) QPoint mPosSteerBot; ///< Position of steering bottom border GUI element (for inverting) QPoint mPosSpeedTop; ///< Position of speed top border GUI element (for inverting) QPoint mPosSpeedBot; ///< Position of speed bottom border GUI element (for inverting) }; // class MainWindow #endif // MAINWINDOW_H
[ "michael.hahnle@gmx.de" ]
michael.hahnle@gmx.de
e7e960b02771e2d76cea8e3c4ae3a2d920ec26a0
0683fbe05cc28df919769943a618e1497e15128e
/software/test/HelloWorldLCD/HelloWorldLCD.ino
7951bbee39b97d836cb70ec46a00fac05c203f56
[]
no_license
adoble/Internet-Radio-Module
bafe0d3c96ac191f87fbffd9c1ffe86a8cd3998c
bc92ebb6232fd8234e1fda70c36b37ab30c116f2
refs/heads/master
2021-08-10T22:23:07.199404
2020-05-01T13:00:19
2020-05-01T13:00:19
170,567,945
0
0
null
null
null
null
UTF-8
C++
false
false
1,843
ino
/* LiquidCrystal Library - Hello World Demonstrates the use a 16x2 LCD display. The LiquidCrystal library works with all LCD displays that are compatible with the Hitachi HD44780 driver. There are many of them out there, and you can usually tell them by the 16-pin interface. This sketch prints "Hello World!" to the LCD and shows the time. The circuit: * LCD RS pin to digital pin 12 * LCD Enable pin to digital pin 11 * LCD D4 pin to digital pin 5 * LCD D5 pin to digital pin 4 * LCD D6 pin to digital pin 3 * LCD D7 pin to digital pin 2 * LCD R/W pin to ground * LCD VSS pin to ground * LCD VCC pin to 5V * 10K resistor: * ends to +5V and ground * wiper to LCD VO pin (pin 3) Library originally added 18 Apr 2008 by David A. Mellis library modified 5 Jul 2009 by Limor Fried (http://www.ladyada.net) example added 9 Jul 2009 by Tom Igoe modified 22 Nov 2010 by Tom Igoe modified 7 Nov 2016 by Arturo Guadalupi This example code is in the public domain. http://www.arduino.cc/en/Tutorial/LiquidCrystalHelloWorld */ // include the library code: #include <LiquidCrystal.h> // initialize the library by associating any needed LCD interface pin // with the arduino pin number it is connected to //const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; //const int rs = 2, en = 15, d4 = 5, d5 = 18, d6 = 23, d7 = 19; const int rs = 12, en = 2, d4 = 16, d5 = 4, d6 = 5, d7 = 21; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.print("hello, world!"); } void loop() { // set the cursor to column 0, line 1 // (note: line 1 is the second row, since counting begins with 0): lcd.setCursor(0, 1); // print the number of seconds since reset: lcd.print(millis() / 1000); }
[ "andrew.l.doble@gmail.com" ]
andrew.l.doble@gmail.com
15fbf06f15171417f17f9e1e9fd69ea2b84a738a
e5844424dae33b933fbcb2775a45cfa5b036d2e3
/Distinct Subsequences.cpp
3c2e44d9a6ae92d45194f45dc5c35454587735a0
[]
no_license
hdsmtiger/Solution4LeetCode
26e2adfdfa3bece0162a7e169b05c663a0abded7
cfbc970f75898aeda1a63fc38e25080165f72a24
refs/heads/master
2021-01-10T20:01:27.123498
2013-06-04T04:03:27
2013-06-04T04:03:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
943
cpp
class Solution { public: int numDistinct(string S, string T) { // Start typing your C/C++ solution below // DO NOT write int main() function int lengthS = S.size(); int lengthT = T.size(); if(lengthS < lengthT) return 0; int indexS =0, indexT = 0; long long* lastcount = new long long[lengthS+1]; long long* curcount = new long long[lengthS+1]; lastcount[lengthS] = 0; curcount[lengthS] = 0; for(int i=lengthS - 1; i>=0; i--) { lastcount[i] = lastcount[i+1]; if(S.at(i) == T.at(lengthT-1)) lastcount[i]++; curcount[i] = 0; } for(int i=2; i<=lengthT; i++) { curcount[lengthS - i + 1] = 0; for(int j=lengthS-i; j>=0; j--) { curcount[j] = curcount[j+1]; if(T.at(lengthT - i) == S.at(j)) { curcount[j] += lastcount[j+1]; } } long long* temp = curcount; curcount = lastcount; lastcount = temp; } return lastcount[0]; } };
[ "hdsmtiger@gmail.com" ]
hdsmtiger@gmail.com
83d7a74d63ccafbe06130e2ff0842c4521a24228
381e4961c75c7512359c4843aefc16fe6814d52a
/lcore/include/fastmemmanager.h
d611f055a4294e409813f95398f55482bebdaacf
[]
no_license
lxmzhv/silicon
026d45dd05a2509592923b0d067442a5c5b14b72
883368264a857ee19dc0fdf2dfe0a7764198f2fb
refs/heads/master
2016-09-06T16:05:57.074264
2014-10-29T23:49:12
2014-10-29T23:50:20
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
2,486
h
// Менеджер быстрого распределения памяти для простых объектов #pragma once #include <stdlib.h> const int MAX_INT = 0x7FFFFFFF; template <class T> struct FMBlock { union { FMBlock<T> *next; T data; }; }; template <class T> struct FMPage { FMPage<T>* next; FMBlock<T>* blocks; int size; FMPage( int page_size ): size(page_size), next(0) { blocks = new FMBlock<T>[size]; }; ~FMPage() { delete[] blocks; if( next ) delete next; } }; template <class T> class FastMemManager { public: FastMemManager( int page_size, double page_size_factor ): firstPage(0), freeBlocks(0), pageSize( page_size > 64 ? page_size : 64 ), pageSizeFactor(page_size_factor) {} ~FastMemManager() { if( firstPage ) delete firstPage; } T* Allocate() { if( freeBlocks == NULL ) AddPage(); FMBlock<T> *b = freeBlocks; freeBlocks = freeBlocks->next; return &(b->data); } void Free( T* t ) { FMBlock<T> *b = (FMBlock<T>*)t; b->next = freeBlocks; freeBlocks = b; } void FreeAll() { freeBlocks = NULL; FMPage<T> *page = firstPage; while( page ) { for( int i = 0; i<page->size; i++ ) { page->blocks[i].next = freeBlocks; freeBlocks = &(firstPage->blocks[i]); } page = page->next; } } void SetPageSize( int size ) { pageSize = size > 8 ? size : 8; } private: FMPage<T>* firstPage; FMBlock<T> *freeBlocks; int pageSize; double pageSizeFactor; void AddPage() { FMPage<T> *page = new FMPage<T>( pageSize ); page->next = firstPage; firstPage = page; for( int i = 0; i < pageSize; ++i ) { firstPage->blocks[i].next = freeBlocks; freeBlocks = &(firstPage->blocks[i]); } if( pageSize < MAX_INT / pageSizeFactor ) pageSize = (int)(pageSizeFactor*pageSize); } };
[ "lxmzhv@gmail.com" ]
lxmzhv@gmail.com
9b00657f07673c61863ff60cd8bb68d567bdf4f0
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/inetsrv/iis/svcs/cmp/asp51/request.cpp
f56dc0f55dc0b53e81909f5d5d21fbffc9844141
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
171,129
cpp
/*=================================================================== Microsoft Denali Microsoft Confidential. Copyright 1996 Microsoft Corporation. All Rights Reserved. Component: request object File: request.cpp Owner: CGrant, DGottner This file contains the code for the implementation of the Request object. ===================================================================*/ #include "denpre.h" #pragma hdrstop #include "objbase.h" #include "request.h" #include "cookies.h" #include "clcert.h" #include "memchk.h" #pragma warning (disable: 4355) // ignore: "'this' used in base member init static char HexToChar(LPSTR); static char DecodeFromURL(char **pszSource, char *szStop, char *szDest, UINT uCodePage, BOOL fIgnoreCase = FALSE); #define toupper(x) BYTE(CharUpper(LPSTR(BYTE(x)))) #if _IIS_6_0 struct { int varLen; char *szVarName; } g_sUNICODEVars [] = { {3, "URL"}, {9, "PATH_INFO"}, {9, "AUTH_USER"}, {10,"LOGON_USER"}, {11,"REMOTE_USER"}, {11,"SCRIPT_NAME"}, {11,"APP_POOL_ID"}, {12,"APPL_MD_PATH"}, {15,"PATH_TRANSLATED"}, {17,"SCRIPT_TRANSLATED"}, {18,"APPL_PHYSICAL_PATH"}, {20,"UNMAPPED_REMOTE_USER"}, {-1,""} }; #endif /*------------------------------------------------------------------ * C R e q u e s t H i t */ /*=================================================================== CRequestHit::CRequestHit Constructor Parameters: None ===================================================================*/ CRequestHit::CRequestHit() { m_fInited = FALSE; m_fDuplicate = FALSE; m_pQueryData = m_pFormData = NULL; m_pCookieData = NULL; m_pClCertData = NULL; } /*=================================================================== CRequestHit::~CRequestHit Destructor ===================================================================*/ CRequestHit::~CRequestHit() { if (m_pQueryData != NULL) m_pQueryData->Release(); if (m_pFormData != NULL) m_pFormData->Release(); if (m_pCookieData != NULL) m_pCookieData->Release(); if (m_pClCertData != NULL) m_pClCertData->Release(); if (m_fDuplicate) delete m_pKey; } /*=================================================================== CRequestHit::Init Constructor Parameters: szName - pointer to string containing name fDuplicate - TRUE if we should dup the string Returns: E_OUTOFMEMORY, E_FAIL, or S_OK ===================================================================*/ HRESULT CRequestHit::Init(char *szName, BOOL fDuplicate) { if (m_fInited) return E_FAIL; m_fDuplicate = fDuplicate; if (fDuplicate) { char *szNewKey = new char [strlen(szName) + 1]; if (szNewKey == NULL) return E_OUTOFMEMORY; if (FAILED(CLinkElem::Init(strcpy(szNewKey, szName), strlen(szName)))) return E_FAIL; } else if (FAILED(CLinkElem::Init(szName, strlen(szName)))) return E_FAIL; m_fInited = TRUE; return S_OK; } /*=================================================================== CRequestHit::AddValue Parameters: source - type of the value (QueryString or Body) szValue - the value as a null-terminated string. lCodePage - the CodePage used when retrieve the data Returns: Nothing. ===================================================================*/ HRESULT CRequestHit::AddValue ( CollectionType Source, char *szValue, CIsapiReqInfo *pIReq, UINT lCodePage ) { HRESULT hResult; CStringList **ppValues = NULL; switch (Source) { case QUERYSTRING: ppValues = &m_pQueryData; break; case FORM: ppValues = &m_pFormData; break; case COOKIE: if (m_pCookieData == NULL) { m_pCookieData = new CCookie(pIReq, lCodePage); if (m_pCookieData == NULL) return E_OUTOFMEMORY; if (FAILED(hResult = m_pCookieData->Init())) return hResult; } return m_pCookieData->AddValue(szValue); case CLCERT: if (m_pClCertData == NULL) { m_pClCertData = new CClCert; if (m_pClCertData == NULL) return E_OUTOFMEMORY; if (FAILED(hResult = m_pClCertData->Init())) return hResult; } return m_pClCertData->AddValue(szValue); default: return E_FAIL; } if (*ppValues == NULL) { *ppValues = new CStringList; if (*ppValues == NULL) return E_OUTOFMEMORY; } if (FAILED(hResult = (*ppValues)->AddValue(szValue, FALSE, lCodePage))) return hResult; return S_OK; } HRESULT CRequestHit::AddCertValue(VARENUM ve, LPBYTE pValue, UINT cLen ) { HRESULT hResult; if (m_pClCertData == NULL) { m_pClCertData = new CClCert; if (m_pClCertData == NULL) return E_OUTOFMEMORY; if (FAILED(hResult = m_pClCertData->Init())) return hResult; } return m_pClCertData->AddValue( (LPSTR)pValue, ve, cLen ); } /*=================================================================== CRequestHit::AddKeyAndValue Add a value based on keys for collections that support them. Currently, only cookies support them. Parameters: source - type of the value (must be Cookie) szKey - the key szValue - the value as a null-terminated string. Returns: Returns E_OUTOFMEMORY if memory cannot be allocated, E_FAIL if source collection does not support keys, ===================================================================*/ HRESULT CRequestHit::AddKeyAndValue ( CollectionType Source, char *szKey, char *szValue, CIsapiReqInfo *pIReq, UINT lCodePage ) { HRESULT hResult; switch ( Source ) { case COOKIE: if (m_pCookieData == NULL) { m_pCookieData = new CCookie( pIReq , lCodePage); if (m_pCookieData == NULL) return E_OUTOFMEMORY; if (FAILED(hResult = m_pCookieData->Init())) return hResult; } return m_pCookieData->AddKeyAndValue(szKey, szValue); default: return E_FAIL; } } /*------------------------------------------------------------------ * C R e q u e s t H i t s A r r a y */ /*=================================================================== CRequestHitsArray::CRequestHitsArray Constructor Parameters: Returns: ===================================================================*/ CRequestHitsArray::CRequestHitsArray() : m_dwCount(0), m_dwHitMax(0), m_rgRequestHit(NULL) { } /*=================================================================== CRequestHitsArray::~CRequestHitsArray Destructor Parameters: Returns: ===================================================================*/ CRequestHitsArray::~CRequestHitsArray() { if (m_rgRequestHit) delete [] m_rgRequestHit; } /*=================================================================== CRequestHitsArray::AddRequestHit Add an element to the array Parameters: pHit element to add Returns: ===================================================================*/ BOOL CRequestHitsArray::AddRequestHit ( CRequestHit *pHit ) { Assert(pHit); if (m_dwCount == m_dwHitMax) { DWORD dwNewSize = m_dwHitMax + NUM_REQUEST_HITS; CRequestHit **ppNewArray = new CRequestHit *[dwNewSize]; if (ppNewArray == NULL) return FALSE; if (m_dwCount) { Assert(m_rgRequestHit); // Copy pointers from old array memcpy ( ppNewArray, m_rgRequestHit, m_dwCount * sizeof(CRequestHit *) ); // free old array delete [] m_rgRequestHit; } else { Assert(m_rgRequestHit == NULL); } m_rgRequestHit = ppNewArray; m_dwHitMax = dwNewSize; } m_rgRequestHit[m_dwCount++] = pHit; return TRUE; } /*------------------------------------------------------------------ * C Q u e r y S t r i n g */ /*=================================================================== CQueryString::CQueryString Constructor Parameters: pRequest Pointer to main Request object pUnkOuter LPUNKNOWN of a controlling unknown. Returns: Nothing. Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CQueryString::CQueryString(CRequest *pRequest, IUnknown *pUnkOuter) : m_ISupportErrImp(this, pUnkOuter, IID_IRequestDictionary) { m_punkOuter = pUnkOuter; if (pRequest) pRequest->AddRef(); m_pRequest = pRequest; CDispatch::Init(IID_IRequestDictionary); } /*=================================================================== CQueryString::~CQueryString Destructor Parameters: None Returns: Nothing. ===================================================================*/ CQueryString::~CQueryString() { if (m_pRequest) m_pRequest->Release(); } /*=================================================================== HRESULT CQueryString::Init Parameters: None Returns: E_OUTOFMEMORY if allocation fails. ===================================================================*/ HRESULT CQueryString::Init() { return CRequestHitsArray::Init(); } /*=================================================================== HRESULT CQueryString::ReInit Parameters: None Returns: S_OK ===================================================================*/ HRESULT CQueryString::ReInit() { return CRequestHitsArray::ReInit(); } /*=================================================================== CQueryString::QueryInterface CQueryString::AddRef CQueryString::Release IUnknown members for CQueryString object. ===================================================================*/ STDMETHODIMP CQueryString::QueryInterface(REFIID iid, void **ppvObj) { *ppvObj = NULL; if (iid == IID_IUnknown || iid == IID_IRequestDictionary || iid == IID_IDispatch) *ppvObj = this; else if (iid == IID_ISupportErrorInfo) *ppvObj = &m_ISupportErrImp; if (*ppvObj != NULL) { static_cast<IUnknown *>(*ppvObj)->AddRef(); return S_OK; } return ResultFromScode(E_NOINTERFACE); } STDMETHODIMP_(ULONG) CQueryString::AddRef(void) { return m_punkOuter->AddRef(); } STDMETHODIMP_(ULONG) CQueryString::Release(void) { return m_punkOuter->Release(); } /*=================================================================== CQueryString::get_Item Function called from DispInvoke to get values from the QueryString collection. Parameters: vKey VARIANT [in], which parameter to get the value of - Empty means whole collection pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CQueryString::get_Item(VARIANT varKey, VARIANT *pvarReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; CWCharToMBCS convKey; CRequestHit *pRequestHit; // pointer to request bucket IDispatch *pSListReturn; // value of the key // Initialize things // VariantInit(pvarReturn); VARIANT *pvarKey = &varKey; HRESULT hrReturn = S_OK; // BUG 937: VBScript passes VT_VARIANT|VT_BYREF when passing obect // produced by IEnumVariant // // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; case VT_ERROR: if (V_ERROR(pvarKey) == DISP_E_PARAMNOTFOUND) { // Look up QueryString using the "ServerVariables" collection - // The LoadVariables() function trashes QueryPszQueryString() in the CIsapiReqInfo // DWORD dwQStrSize; STACK_BUFFER( queryStrBuff, 256 ); if (!SERVER_GET(m_pRequest->GetIReq(), "QUERY_STRING", &queryStrBuff, &dwQStrSize)) { if (GetLastError() == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; } else { hrReturn = E_FAIL; } goto LExit; } char *szQueryString = (char *)queryStrBuff.QueryPtr(); BSTR bstrT; if (FAILED(SysAllocStringFromSz(szQueryString, 0, &bstrT,m_pRequest->GetCodePage()))) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } V_VT(pvarReturn) = VT_BSTR; V_BSTR(pvarReturn) = bstrT; goto LExit; } // Other error, FALL THROUGH to wrong type case default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } if (m_pRequest->m_pData->m_fLoadQuery) { if (FAILED(m_pRequest->LoadVariables(QUERYSTRING, m_pRequest->GetIReq()->QueryPszQueryString(), m_pRequest->GetCodePage()))) { hrReturn = E_FAIL; goto LExit; } m_pRequest->m_pData->m_fLoadQuery = FALSE; } if (vt == VT_BSTR) { // convert BSTR version to ANSI version of the key using current Session.CodePage if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { // Look up item by index int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && (int) m_dwCount == 0)) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { CStringList *pValues = pRequestHit->m_pQueryData; if (pValues == NULL) goto LNotFound; if (FAILED(pValues->QueryInterface(IID_IDispatch, reinterpret_cast<void **>(&pSListReturn)))) Assert (FALSE); V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = pSListReturn; goto LExit; } LNotFound: // Return "Empty" if (FAILED(m_pRequest->m_pData->GetEmptyStringList(&pSListReturn))) hrReturn = E_FAIL; V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = pSListReturn; LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CQueryString::get_Key Function called from DispInvoke to get keys from the QueryString collection. Parameters: vKey VARIANT [in], which parameter to get the key of pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CQueryString::get_Key(VARIANT varKey, VARIANT *pVar) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CWCharToMBCS convKey; CRequestHit *pRequestHit; // pointer to request bucket IDispatch *pSListReturn; // value of the key // Initialize things // VariantInit(pVar); VARIANT *pvarKey = &varKey; V_VT(pVar) = VT_BSTR; V_BSTR(pVar) = NULL; HRESULT hrReturn = S_OK; // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } if (m_pRequest->m_pData->m_fLoadQuery) { if (FAILED(m_pRequest->LoadVariables(QUERYSTRING, m_pRequest->GetIReq()->QueryPszQueryString(), m_pRequest->GetCodePage()))) { hrReturn = E_FAIL; goto LExit; } m_pRequest->m_pData->m_fLoadQuery = FALSE; } if (vt == VT_BSTR) { // convert BSTR version to ANSI version of the key using current Session.CodePage if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey),m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { // Create a BSTR containing the key for this variant BSTR bstrT = NULL; SysAllocStringFromSz((char *)pRequestHit->m_pKey,0,&bstrT,m_pRequest->GetCodePage()); if (!bstrT) return E_OUTOFMEMORY; V_BSTR(pVar) = bstrT; } LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CQueryString::get_Count Parameters: pcValues - count is stored in *pcValues ===================================================================*/ STDMETHODIMP CQueryString::get_Count(int *pcValues) { HRESULT hrReturn = S_OK; if (m_pRequest->m_pData->m_fLoadQuery) { if (FAILED(hrReturn = m_pRequest->LoadVariables(QUERYSTRING, m_pRequest->GetIReq()->QueryPszQueryString(), m_pRequest->GetCodePage()))) { goto LExit; } m_pRequest->m_pData->m_fLoadQuery = FALSE; } *pcValues = m_dwCount; LExit: return hrReturn; } /*=================================================================== CQueryString::get__NewEnum Return a new enumerator ===================================================================*/ HRESULT CQueryString::get__NewEnum(IUnknown **ppEnumReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; return m_pRequest->GetRequestEnumerator(QUERYSTRING, ppEnumReturn); } /*------------------------------------------------------------------ * C F o r m I n p u t s */ /*=================================================================== CFormInputs::CFormInputs Constructor Parameters: pRequest Pointer to main Request object pUnkOuter LPUNKNOWN of a controlling unknown. Returns: Nothing. Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CFormInputs::CFormInputs(CRequest *pRequest, IUnknown *pUnkOuter) : m_ISupportErrImp(this, pUnkOuter, IID_IRequestDictionary) { m_punkOuter = pUnkOuter; if (pRequest) pRequest->AddRef(); m_pRequest = pRequest; CDispatch::Init(IID_IRequestDictionary); } /*=================================================================== CFormInputs::CFormInputs Destructor Parameters: None Returns: Nothing. ===================================================================*/ CFormInputs::~CFormInputs() { if (m_pRequest) m_pRequest->Release(); } /*=================================================================== HRESULT CFormInputs::Init Parameters: None Returns: E_OUTOFMEMORY if allocation fails. ===================================================================*/ HRESULT CFormInputs::Init() { return CRequestHitsArray::Init(); } /*=================================================================== HRESULT CFormInputs::ReInit Parameters: None Returns: S_OK ===================================================================*/ HRESULT CFormInputs::ReInit() { return CRequestHitsArray::ReInit(); } /*=================================================================== CFormInputs::QueryInterface CFormInputs::AddRef CFormInputs::Release IUnknown members for CFormInputs object. ===================================================================*/ STDMETHODIMP CFormInputs::QueryInterface(REFIID iid, void **ppvObj) { *ppvObj = NULL; if (iid == IID_IUnknown || iid == IID_IRequestDictionary || iid == IID_IDispatch) *ppvObj = this; else if (iid == IID_ISupportErrorInfo) *ppvObj = &m_ISupportErrImp; if (*ppvObj != NULL) { static_cast<IUnknown *>(*ppvObj)->AddRef(); return S_OK; } return E_NOINTERFACE; } STDMETHODIMP_(ULONG) CFormInputs::AddRef(void) { return m_punkOuter->AddRef(); } STDMETHODIMP_(ULONG) CFormInputs::Release(void) { return m_punkOuter->Release(); } /*=================================================================== CFormInputs::get_Item Function called from DispInvoke to get values from the QueryString collection. Parameters: vKey VARIANT [in], which parameter to get the value of - Empty means whole collection pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, S_OK if key not found, E_FAIL on failure. ===================================================================*/ HRESULT CFormInputs::get_Item(VARIANT varKey, VARIANT *pvarReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CWCharToMBCS convKey; IDispatch *pSListReturn; // value of the key CRequestHit *pRequestHit; // pointer to request bucket BOOL fDataAvail = FALSE; // true if data seen from client // Initialize things // VariantInit(pvarReturn); VARIANT *pvarKey = &varKey; HRESULT hrReturn = S_OK; // If BinaryRead has been called, the Form collection is no longer available if (m_pRequest->m_pData->m_FormDataStatus != AVAILABLE && m_pRequest->m_pData->m_FormDataStatus != FORMCOLLECTIONONLY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_REQUEST_FORMCOLLECTION_NA); hrReturn = E_FAIL; } if (m_pRequest->m_pData->m_FormDataStatus == AVAILABLE) m_pRequest->m_pData->m_FormDataStatus = FORMCOLLECTIONONLY; // BUG 937: VBScript passes VT_VARIANT|VT_BYREF when passing obect // produced by IEnumVariant // // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); if (m_pRequest->m_pData->m_fLoadForm) { if (FAILED(hrReturn = m_pRequest->CopyClientData())) goto LExit; if (FAILED(hrReturn = m_pRequest->LoadVariables(FORM, m_pRequest->m_pData->m_szFormData, m_pRequest->GetCodePage()))) goto LExit; // BUG:895 (JHITTLE) added to check for null result set // this fixes the out of memory error when the form // data is NULL // fDataAvail = (m_pRequest->m_pData->m_szFormData != NULL); m_pRequest->m_pData->m_fLoadForm = FALSE; } else fDataAvail = (m_pRequest->m_pData->m_szFormData != NULL); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; case VT_ERROR: if (V_ERROR(pvarKey) == DISP_E_PARAMNOTFOUND) { if (fDataAvail) { BSTR bstrT; if (FAILED(SysAllocStringFromSz(m_pRequest->m_pData->m_szFormClone, 0, &bstrT,m_pRequest->GetCodePage()))) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; } V_VT(pvarReturn) = VT_BSTR; V_BSTR(pvarReturn) = bstrT; } // If there was no data available, status & return value are already set goto LExit; } // Other error, FALL THROUGH to wrong type case default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } pRequestHit = NULL; if (! fDataAvail) // Quick check before we do an expensive lookup goto LNotFound; if (vt == VT_BSTR) { // convert BSTR version to ANSI version of the key using current Session.CodePage if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { // Look up item by index int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { CStringList *pValues = pRequestHit->m_pFormData; if (pValues == NULL) goto LNotFound; if (FAILED(pValues->QueryInterface(IID_IDispatch, reinterpret_cast<void **>(&pSListReturn)))) Assert (FALSE); V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = pSListReturn; goto LExit; } LNotFound: // Return "Empty" if(vt != VT_BSTR) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } if (FAILED(m_pRequest->m_pData->GetEmptyStringList(&pSListReturn))) hrReturn = E_FAIL; V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = pSListReturn; LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CFormInputs::get_Count Parameters: pcValues - count is stored in *pcValues ===================================================================*/ STDMETHODIMP CFormInputs::get_Count(int *pcValues) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; HRESULT hrReturn = S_OK; // If BinaryRead has been called, the Form collection is no longer available if (m_pRequest->m_pData->m_FormDataStatus != AVAILABLE && m_pRequest->m_pData->m_FormDataStatus != FORMCOLLECTIONONLY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_REQUEST_FORMCOLLECTION_NA); hrReturn = E_FAIL; } if (m_pRequest->m_pData->m_FormDataStatus == AVAILABLE) m_pRequest->m_pData->m_FormDataStatus = FORMCOLLECTIONONLY; if (m_pRequest->m_pData->m_fLoadForm) { if (FAILED(hrReturn = m_pRequest->CopyClientData())) goto LExit; if (FAILED(hrReturn = m_pRequest->LoadVariables(FORM, m_pRequest->m_pData->m_szFormData, m_pRequest->GetCodePage()))) goto LExit; m_pRequest->m_pData->m_fLoadForm = FALSE; } *pcValues = m_dwCount; LExit: return hrReturn; } /*=================================================================== CFormInputs::get_Key Function called from DispInvoke to get keys from the form inputs collection. Parameters: vKey VARIANT [in], which parameter to get the key of pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CFormInputs::get_Key(VARIANT varKey, VARIANT *pVar) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CWCharToMBCS convKey; CRequestHit *pRequestHit; // pointer to request bucket IDispatch *pSListReturn; // value of the key // Initialize things // VariantInit(pVar); VARIANT *pvarKey = &varKey; V_VT(pVar) = VT_BSTR; V_BSTR(pVar) = NULL; HRESULT hrReturn = S_OK; // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } if (m_pRequest->m_pData->m_fLoadForm) { if (FAILED(hrReturn = m_pRequest->CopyClientData())) goto LExit; if (FAILED(hrReturn = m_pRequest->LoadVariables(FORM, m_pRequest->m_pData->m_szFormData, m_pRequest->GetCodePage()))) { goto LExit; } m_pRequest->m_pData->m_fLoadForm = FALSE; } if (vt == VT_BSTR) { // convert BSTR version to ANSI version of the key using current Session.CodePage if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { // Create a BSTR containing the key for this variant BSTR bstrT = NULL; SysAllocStringFromSz((char *)pRequestHit->m_pKey,0,&bstrT,m_pRequest->GetCodePage()); if (!bstrT) return E_OUTOFMEMORY; V_BSTR(pVar) = bstrT; } LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CFormInputs::get__NewEnum Return a new enumerator ===================================================================*/ HRESULT CFormInputs::get__NewEnum(IUnknown **ppEnumReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; return m_pRequest->GetRequestEnumerator(FORM, ppEnumReturn); } /*------------------------------------------------------------------ * C C o o k i e s */ /*=================================================================== CCookies::CCookies Constructor Parameters: pRequest Pointer to main Request object pUnkOuter LPUNKNOWN of a controlling unknown. Returns: Nothing. Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CCookies::CCookies(CRequest *pRequest, IUnknown *pUnkOuter) : m_ISupportErrImp(this, pUnkOuter, IID_IRequestDictionary) { m_punkOuter = pUnkOuter; if (pRequest) pRequest->AddRef(); m_pRequest = pRequest; m_pEmptyCookie = NULL; CDispatch::Init(IID_IRequestDictionary); } /*=================================================================== CCookies::CCookies Destructor Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CCookies::~CCookies() { if (m_pRequest) m_pRequest->Release(); if (m_pEmptyCookie) m_pEmptyCookie->Release(); } /*=================================================================== CCookies::Init Initializer Parameters: None Returns: Nothing. ===================================================================*/ HRESULT CCookies::Init() { return CRequestHitsArray::Init(); } /*=================================================================== HRESULT CCookies::ReInit Parameters: None Returns: S_OK ===================================================================*/ HRESULT CCookies::ReInit() { return CRequestHitsArray::ReInit(); } /*=================================================================== CCookies::QueryInterface CCookies::AddRef CCookies::Release IUnknown members for CQueryString object. ===================================================================*/ STDMETHODIMP CCookies::QueryInterface(REFIID iid, void **ppvObj) { *ppvObj = NULL; if (iid == IID_IUnknown || iid == IID_IRequestDictionary || iid == IID_IDispatch) *ppvObj = this; else if (iid == IID_ISupportErrorInfo) *ppvObj = &m_ISupportErrImp; if (*ppvObj != NULL) { static_cast<IUnknown *>(*ppvObj)->AddRef(); return S_OK; } return E_NOINTERFACE; } STDMETHODIMP_(ULONG) CCookies::AddRef(void) { return m_punkOuter->AddRef(); } STDMETHODIMP_(ULONG) CCookies::Release(void) { return m_punkOuter->Release(); } /*=================================================================== CCookies::get_Item Function called from DispInvoke to get values from the Cookies collection. Parameters: vKey VARIANT [in], which parameter to get the value of - Empty means whole collection pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CCookies::get_Item(VARIANT varKey, VARIANT *pvarReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CRequestHit *pRequestHit; // pointer to request bucket CWCharToMBCS convKey; STACK_BUFFER( tempCookie, 128 ); // Initialize things // VariantInit(pvarReturn); VARIANT *pvarKey = &varKey; HRESULT hrReturn = S_OK; // BUG 937: VBScript passes VT_VARIANT|VT_BYREF when passing obect // produced by IEnumVariant // // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); if (m_pRequest->m_pData->m_fLoadCookies) { char *szCookie = m_pRequest->GetIReq()->QueryPszCookie(); if (FAILED(hrReturn = m_pRequest->LoadVariables(COOKIE, szCookie, m_pRequest->GetCodePage()))) goto LExit; m_pRequest->m_pData->m_fLoadCookies = FALSE; } switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; case VT_ERROR: if (V_ERROR(pvarKey) == DISP_E_PARAMNOTFOUND) { // Dynamically construct value of HTTP_COOKIE. // // Step 1: figure out how much space we need // int cbHTTPCookie = 1; // At the least we will need space for '\0' for (pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->Head()); pRequestHit != NULL; pRequestHit = static_cast<CRequestHit *>(pRequestHit->m_pNext)) { CCookie *pCookie = pRequestHit->m_pCookieData; if (pCookie) cbHTTPCookie += pCookie->GetHTTPCookieSize() + pRequestHit->m_cbKey + 1; } // Allocate space for the HTTP_COOKIE value // if (cbHTTPCookie > REQUEST_ALLOC_MAX) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_STACK_OVERFLOW); hrReturn = E_FAIL; goto LExit; } if (tempCookie.Resize(cbHTTPCookie) == FALSE) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } char *szHTTPCookie = static_cast<char *>(tempCookie.QueryPtr()); // Step 2: create the value of HTTP_COOKIE // char *szDest = szHTTPCookie; for (pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->Head()); pRequestHit != NULL; pRequestHit = static_cast<CRequestHit *>(pRequestHit->m_pNext)) { CCookie *pCookie = pRequestHit->m_pCookieData; if (pCookie) { strcpy(szDest, reinterpret_cast<char *>(pRequestHit->m_pKey)); szDest = strchr(szDest, '\0'); *szDest++ = '='; szDest = pCookie->GetHTTPCookie(szDest); if (pRequestHit->m_pNext) *szDest++ = ';'; } } *szDest = '\0'; // Now we have the value, so return it. // BSTR bstrT; if (FAILED(SysAllocStringFromSz(szHTTPCookie, 0, &bstrT, m_pRequest->GetCodePage()))) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } V_VT(pvarReturn) = VT_BSTR; V_BSTR(pvarReturn) = bstrT; goto LExit; } // Other error, FALL THROUGH to wrong type case default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = NULL; if (vt == VT_BSTR) { if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey),m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { // Look up item by index int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { CCookie *pDictionary = pRequestHit->m_pCookieData; if (pDictionary == NULL) goto LNotFound; if (FAILED(pDictionary->QueryInterface(IID_IReadCookie, reinterpret_cast<void **>(&V_DISPATCH(pvarReturn))))) Assert (FALSE); goto LExit; } LNotFound: // Return Empty Cookie if (!m_pEmptyCookie) { // create on demand if ((m_pEmptyCookie = new CCookie(m_pRequest->GetIReq(), m_pRequest->GetCodePage())) != NULL) hrReturn = m_pEmptyCookie->Init(); else hrReturn = E_OUTOFMEMORY; } if (m_pEmptyCookie) hrReturn = m_pEmptyCookie->QueryInterface(IID_IReadCookie, reinterpret_cast<void **>(&V_DISPATCH(pvarReturn))); LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CCookies::get_Key Function called from DispInvoke to get keys from the cookie collection. Parameters: vKey VARIANT [in], which parameter to get the key of pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CCookies::get_Key(VARIANT varKey, VARIANT *pVar) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CWCharToMBCS convKey; CRequestHit *pRequestHit; // pointer to request bucket IDispatch *pSListReturn; // value of the key // Initialize things // VariantInit(pVar); VARIANT *pvarKey = &varKey; V_VT(pVar) = VT_BSTR; V_BSTR(pVar) = NULL; HRESULT hrReturn = S_OK; // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } if (m_pRequest->m_pData->m_fLoadCookies) { char *szCookie = m_pRequest->GetIReq()->QueryPszCookie(); if (FAILED(hrReturn = m_pRequest->LoadVariables(COOKIE, szCookie, m_pRequest->GetCodePage()))) goto LExit; m_pRequest->m_pData->m_fLoadCookies = FALSE; } if (vt == VT_BSTR) { // convert BSTR version to ANSI version of the key using current Session.CodePage if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { // Create a BSTR containing the key for this variant BSTR bstrT = NULL; SysAllocStringFromSz((char *)pRequestHit->m_pKey,0,&bstrT,m_pRequest->GetCodePage()); if (!bstrT) return E_OUTOFMEMORY; V_BSTR(pVar) = bstrT; } LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CCookies::get_Count Parameters: pcValues - count is stored in *pcValues ===================================================================*/ STDMETHODIMP CCookies::get_Count(int *pcValues) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; HRESULT hrReturn = S_OK; if (m_pRequest->m_pData->m_fLoadCookies) { char *szCookie = m_pRequest->GetIReq()->QueryPszCookie(); if (FAILED(hrReturn = m_pRequest->LoadVariables(COOKIE, szCookie, m_pRequest->GetCodePage()))) goto LExit; m_pRequest->m_pData->m_fLoadCookies = FALSE; } *pcValues = m_dwCount; LExit: return hrReturn; } /*=================================================================== CCookies::get__NewEnum Return a new enumerator ===================================================================*/ HRESULT CCookies::get__NewEnum(IUnknown **ppEnumReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; return m_pRequest->GetRequestEnumerator(COOKIE, ppEnumReturn); } /*------------------------------------------------------------------ * C C l C e r t s */ /*=================================================================== CClCerts::CClCerts Constructor Parameters: pRequest Pointer to main Request object pUnkOuter LPUNKNOWN of a controlling unknown. Returns: Nothing. Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CClCerts::CClCerts(CRequest *pRequest, IUnknown *pUnkOuter) : m_ISupportErrImp(this, pUnkOuter, IID_IRequestDictionary) { m_punkOuter = pUnkOuter; if (pRequest) pRequest->AddRef(); m_pRequest = pRequest; m_pEmptyClCert = NULL; CDispatch::Init(IID_IRequestDictionary); } /*=================================================================== CClCerts::ClCerts Destructor Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CClCerts::~CClCerts() { if (m_pRequest) m_pRequest->Release(); if (m_pEmptyClCert) m_pEmptyClCert->Release(); } /*=================================================================== CClCerts::Init Initializer Parameters: None Returns: Nothing. ===================================================================*/ HRESULT CClCerts::Init() { return CRequestHitsArray::Init(); } /*=================================================================== CClCerts::ReInit Parameters: None Returns: S_OK ===================================================================*/ HRESULT CClCerts::ReInit() { return CRequestHitsArray::ReInit(); } /*=================================================================== CClCerts::QueryInterface CClCerts::AddRef CClCerts::Release IUnknown members for CQueryString object. ===================================================================*/ STDMETHODIMP CClCerts::QueryInterface(REFIID riid, void **ppv) { *ppv = NULL; if (riid == IID_IUnknown || riid == IID_IRequestDictionary || riid == IID_IDispatch) *ppv = this; else if (riid == IID_ISupportErrorInfo) *ppv = &m_ISupportErrImp; if (*ppv != NULL) { static_cast<IUnknown *>(*ppv)->AddRef(); return S_OK; } return ResultFromScode(E_NOINTERFACE); } STDMETHODIMP_(ULONG) CClCerts::AddRef(void) { return m_punkOuter->AddRef(); } STDMETHODIMP_(ULONG) CClCerts::Release(void) { return m_punkOuter->Release(); } /*=================================================================== CClCerts::get_Item Function called from DispInvoke to get values from the ClCerts collection. Parameters: vKey VARIANT [in], which parameter to get the value of - Empty means whole collection pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, S_FALSE if key not found, E_FAIL on failure. ===================================================================*/ HRESULT CClCerts::get_Item(VARIANT varKey, VARIANT *pvarReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CRequestHit *pRequestHit; // pointer to request bucket CWCharToMBCS convKey; // Initialize things // VariantInit(pvarReturn); VARIANT *pvarKey = &varKey; HRESULT hrReturn = S_OK; // BUG 937: VBScript passes VT_VARIANT|VT_BYREF when passing obect // produced by IEnumVariant // // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); if (m_pRequest->m_pData->m_fLoadClCerts) { if (FAILED(hrReturn = m_pRequest->LoadVariables(CLCERT, reinterpret_cast<char *>(m_pRequest->GetIReq()), m_pRequest->GetCodePage()))) goto LExit; m_pRequest->m_pData->m_fLoadClCerts = FALSE; } switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; case VT_ERROR: if (V_ERROR(pvarKey) == DISP_E_PARAMNOTFOUND) { // Dynamically construct value of CLCERT // // Step 1: figure out how much space we need // int cbHTTPClCert = 0; for (pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->Head()); pRequestHit != NULL; pRequestHit = static_cast<CRequestHit *>(pRequestHit->m_pNext)) { CClCert *pClCert = pRequestHit->m_pClCertData; if (pClCert) cbHTTPClCert += pClCert->GetHTTPClCertSize() + pRequestHit->m_cbKey + 1; } STACK_BUFFER( tempClCert, 256); if (!tempClCert.Resize(cbHTTPClCert)) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } char *szHTTPClCert = static_cast<char *>(tempClCert.QueryPtr()); // Step 2: create the value of CLCERT // char *szDest = szHTTPClCert; for (pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->Head()); pRequestHit != NULL; pRequestHit = static_cast<CRequestHit *>(pRequestHit->m_pNext)) { CClCert *pClCert = pRequestHit->m_pClCertData; if (pClCert) { strcpy(szDest, reinterpret_cast<char *>(pRequestHit->m_pKey)); szDest = strchr(szDest, '\0'); *szDest++ = '='; szDest = pClCert->GetHTTPClCert(szDest); if (pRequestHit->m_pNext) *szDest++ = ';'; } } *szDest = '\0'; // Now we have the value, so return it. // BSTR bstrT; if (FAILED(SysAllocStringFromSz(szHTTPClCert, 0, &bstrT))) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } V_VT(pvarReturn) = VT_BSTR; V_BSTR(pvarReturn) = bstrT; goto LExit; } // Other error, FALL THROUGH to wrong type case default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = NULL; if (vt == VT_BSTR) { if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey)))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { // Look up item by index int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { CClCert *pDictionary = pRequestHit->m_pClCertData; if (pDictionary == NULL) goto LNotFound; if (FAILED(pDictionary->QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(&V_DISPATCH(pvarReturn))))) Assert (FALSE); goto LExit; } LNotFound: // Return "Empty" if (!m_pEmptyClCert) { // create on demand if ((m_pEmptyClCert = new CClCert) != NULL) hrReturn = m_pEmptyClCert->Init(); else hrReturn = E_OUTOFMEMORY; } if (m_pEmptyClCert) hrReturn = m_pEmptyClCert->QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(&V_DISPATCH(pvarReturn))); LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CClCerts::get_Key Function called from DispInvoke to get keys from the certificate collection. Parameters: vKey VARIANT [in], which parameter to get the key of pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CClCerts::get_Key(VARIANT varKey, VARIANT *pVar) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CWCharToMBCS convKey; CRequestHit *pRequestHit; // pointer to request bucket // Initialize things // VariantInit(pVar); VARIANT *pvarKey = &varKey; V_VT(pVar) = VT_BSTR; V_BSTR(pVar) = NULL; HRESULT hrReturn = S_OK; // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } if (m_pRequest->m_pData->m_fLoadClCerts) { if (FAILED(hrReturn = m_pRequest->LoadVariables(CLCERT, reinterpret_cast<char *>(m_pRequest->GetIReq()), m_pRequest->GetCodePage()))) { goto LExit; } m_pRequest->m_pData->m_fLoadClCerts = FALSE; } if (vt == VT_BSTR) { // convert BSTR version to ANSI version of the key using current Session.CodePage if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), m_pRequest->GetCodePage()))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = convKey.GetString(); } pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->FindElem(szKey, strlen(szKey))); } else { int iCount; iCount = V_I4(pvarKey); // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_dwCount)) || ((iCount > 0) && ((int) m_dwCount == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } pRequestHit = m_rgRequestHit[iCount - 1]; } if (pRequestHit) { // Create a BSTR containing the key for this variant BSTR bstrT = NULL; SysAllocStringFromSz((char *)pRequestHit->m_pKey,0,&bstrT,m_pRequest->GetCodePage()); if (!bstrT) return E_OUTOFMEMORY; V_BSTR(pVar) = bstrT; } LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CClCerts::get_Count Parameters: pcValues - count is stored in *pcValues ===================================================================*/ STDMETHODIMP CClCerts::get_Count(int *pcValues) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; HRESULT hrReturn = S_OK; if (m_pRequest->m_pData->m_fLoadClCerts) { if (FAILED(hrReturn = m_pRequest->LoadVariables(CLCERT, reinterpret_cast<char *>(m_pRequest->GetIReq()), m_pRequest->GetCodePage()))) { goto LExit; } m_pRequest->m_pData->m_fLoadClCerts = FALSE; } *pcValues = m_dwCount; LExit: return hrReturn; } /*=================================================================== CClCerts::get__NewEnum Return a new enumerator ===================================================================*/ HRESULT CClCerts::get__NewEnum(IUnknown **ppEnumReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; return m_pRequest->GetRequestEnumerator(CLCERT, ppEnumReturn); } /*------------------------------------------------------------------ * C S e r v e r V a r i a b l e s */ /*=================================================================== CServerVariables::CServerVariables Constructor Parameters: pRequest Pointer to main Request object pUnkOuter LPUNKNOWN of a controlling unknown. Returns: Nothing. Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CServerVariables::CServerVariables(CRequest *pRequest, IUnknown *pUnkOuter) : m_ISupportErrImp(this, pUnkOuter, IID_IRequestDictionary), m_pIterator(NULL) { m_punkOuter = pUnkOuter; if (pRequest) pRequest->AddRef(); m_pRequest = pRequest; CDispatch::Init(IID_IRequestDictionary); } /*=================================================================== CServerVariables::~CServerVariables Destructor Parameters: None Returns: Nothing. Note: This object is NOT ref counted since it is created & destroyed automatically by C++. ===================================================================*/ CServerVariables::~CServerVariables( ) { if (m_pRequest) m_pRequest->Release(); if (m_pIterator) m_pIterator->Release(); } /*=================================================================== CServerVariables::QueryInterface CServerVariables::AddRef CServerVariables::Release IUnknown members for CFormInputs object. ===================================================================*/ STDMETHODIMP CServerVariables::QueryInterface(REFIID iid, void **ppvObj) { *ppvObj = NULL; if (iid == IID_IUnknown || iid == IID_IRequestDictionary || iid == IID_IDispatch) *ppvObj = this; else if (iid == IID_ISupportErrorInfo) *ppvObj = &m_ISupportErrImp; if (*ppvObj != NULL) { static_cast<IUnknown *>(*ppvObj)->AddRef(); return S_OK; } return E_NOINTERFACE; } STDMETHODIMP_(ULONG) CServerVariables::AddRef(void) { return m_punkOuter->AddRef(); } STDMETHODIMP_(ULONG) CServerVariables::Release(void) { return m_punkOuter->Release(); } /*=================================================================== CServerVariables::get_Item Function called from DispInvoke to get values from the ServerVariables collection. Parameters: vKey VARIANT [in], which parameter to get the value of pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. NOTE: This code is basically an enacpsulation from the SERVER_GET macro, only more efficient, since it only looks up the key once on average unfortunately, the only way to get good memory utilization with ISAPI is to use _alloca() with lookups, which means we can't encapsulate the lookup logic very well. ===================================================================*/ HRESULT CServerVariables::get_Item(VARIANT varKey, VARIANT *pvarReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; DWORD dwValSize; // buffer size char *szKey; // pointer to ASCII value of varKey char *szValue; WCHAR *wszValue; BOOL fSuccess; // TRUE when call to GetServerVariable succeeds UINT uCodePage = CP_ACP; CWCharToMBCS convKey; BOOL fUnicodeVar = FALSE; STACK_BUFFER( tempVal, 128 ); dwValSize = tempVal.QuerySize(); szValue = (char *)tempVal.QueryPtr(); wszValue = (WCHAR *)tempVal.QueryPtr(); // Initialize things // VariantInit(pvarReturn); VARIANT *pvarKey = &varKey; HRESULT hrReturn = S_OK; // BUG 937: VBScript passes VT_VARIANT|VT_BYREF when passing obect // produced by IEnumVariant // // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); V_VT(pvarReturn) = VT_DISPATCH; V_DISPATCH(pvarReturn) = NULL; // initial value of Nothing switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; case VT_ERROR: if (V_ERROR(pvarKey) == DISP_E_PARAMNOTFOUND) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_NOT_ALLOWED); hrReturn = E_FAIL; goto LExit; } // Other error, FALL THROUGH to wrong type case default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } uCodePage = m_pRequest->GetCodePage(); if (vt == VT_BSTR) { if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), uCodePage))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = CharUpperA(convKey.GetString()); } } else { // Look up item by index int iCount; iCount = V_I4(pvarKey); // We use the CServVarsIterator to manange // the count of sv and integer index if (!m_pIterator) { m_pIterator = new CServVarsIterator; if (!m_pIterator) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } if (FAILED(hrReturn=m_pIterator->Init(m_pRequest->m_pData->m_pIReq))) goto LExit; } // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_pIterator->m_cKeys)) || ((iCount > 0) && ((int) m_pIterator->m_cKeys == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } if (FAILED(hrReturn = convKey.Init(m_pIterator->m_rgwszKeys[iCount - 1], uCodePage))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = CharUpperA(convKey.GetString()); } } if (strncmp(convKey.GetString(), "UNICODE_", 7) == 0) { fSuccess = false; goto SkipLookup; } #if _IIS_6_0 // in IIS6, there are a number of variables that are UNICODE. To // access them, you simply place UNICODE_ infront of the name. // Two approaches could be taken here. One would be to always // try for a UNICODE_ var and fallback to the non-UNICODE var // if the lookup fails. This can be costly. The second, and // chosen method here, would be to maintain a list of vars // that have UNICODE_ versions. // this char array is declared on the stack and is currently only // 32 chars. It only needs to be as big as the largest UNICODE // var name. Which is UNICODE_UNMAPPED_REMOTE_USER. char szUNICODEName[32]; // search the list to see if this is one of the UNICODE_ vars. // the list is sorted by length of string. The current list is // not all that long, so a sequential search is not that expensive // in the scheme of things. for (int i=0; (g_sUNICODEVars[i].varLen != -1) && (convKey.GetStringLen() >= g_sUNICODEVars[i].varLen); i++) { // the 'for' loop allows in anything which is at least as long // as the current entry. The following 'if' will check for // for an exact length match and then a string compare. if ((convKey.GetStringLen() == g_sUNICODEVars[i].varLen) && (strcmp(convKey.GetString(), g_sUNICODEVars[i].szVarName) == 0)) { // if a hit is made, set the fUnicodeVar = TRUE so that the // right ISAPI lookup routine is called and the right StringList // AddValue is called. fUnicodeVar = TRUE; // build up the UNICODE_ version into the stack temp array strcpyExA(strcpyExA(szUNICODEName,"UNICODE_"),convKey.GetString()); // reassign the key name to this value szKey = szUNICODEName; break; } } #endif fSuccess = fUnicodeVar ? m_pRequest->GetIReq()->GetServerVariableW(szKey, wszValue, &dwValSize) : m_pRequest->GetIReq()->GetServerVariableA(szKey, szValue, &dwValSize); if (!fSuccess && (dwValSize > tempVal.QuerySize())) { if (dwValSize > REQUEST_ALLOC_MAX) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_STACK_OVERFLOW); hrReturn = E_FAIL; goto LExit; } if (tempVal.Resize(dwValSize) == FALSE) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } szValue = static_cast<char *>(tempVal.QueryPtr()); wszValue = static_cast<WCHAR *>(tempVal.QueryPtr()); fSuccess = fUnicodeVar ? m_pRequest->GetIReq()->GetServerVariableW(szKey, wszValue, &dwValSize) : m_pRequest->GetIReq()->GetServerVariableA(szKey, szValue, &dwValSize); } SkipLookup: if (fSuccess) { // Create return value CStringList *pValue = new CStringList; if (pValue == NULL) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hrReturn = E_OUTOFMEMORY; goto LExit; } // add the value and QueryInterface for IDispatch interface - strdup the input string if (FAILED(hrReturn = (fUnicodeVar ? pValue->AddValue(wszValue, TRUE) : pValue->AddValue(szValue, TRUE, uCodePage)))) goto LExit; if (FAILED(pValue->QueryInterface(IID_IDispatch, reinterpret_cast<void **>(&V_DISPATCH(pvarReturn))))) Assert (FALSE); // Release temporary (QueryInterface AddRef'd) pValue->Release(); goto LExit; } else { if (FAILED(m_pRequest->m_pData->GetEmptyStringList(&V_DISPATCH(pvarReturn)))) hrReturn = E_FAIL; } LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CServerVariables::get_Key Function called from DispInvoke to get keys from the server variables collection. Parameters: vKey VARIANT [in], which parameter to get the key of pvarReturn VARIANT *, [out] value of the requested parameter Returns: S_OK on success, E_FAIL on failure. ===================================================================*/ HRESULT CServerVariables::get_Key(VARIANT varKey, VARIANT *pVar) { HRESULT hrReturn = S_OK; int iCount = 0; BSTR bstrT = NULL; if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; char *szKey; // ascii version of the key CRequestHit *pRequestHit; // pointer to request bucket IDispatch *pSListReturn; // value of the key CWCharToMBCS convKey; // Initialize things // VariantInit(pVar); VARIANT *pvarKey = &varKey; V_VT(pVar) = VT_BSTR; V_BSTR(pVar) = NULL; // Use VariantResolveDispatch which will: // // * Copy BYREF variants for us using VariantCopyInd // * handle E_OUTOFMEMORY for us // * get the default value from an IDispatch, which seems // like an appropriate conversion. // VARIANT varKeyCopy; VariantInit(&varKeyCopy); DWORD vt = V_VT(pvarKey); if ((vt != VT_BSTR) && (vt != VT_I2) && (vt != VT_I4)) { if (FAILED(VariantResolveDispatch(&varKeyCopy, &varKey, IID_IRequestDictionary, IDE_REQUEST))) goto LExit; pvarKey = &varKeyCopy; } vt = V_VT(pvarKey); switch (vt) { // Bug 95201 support all numberic sub-types case VT_I1: case VT_I2: case VT_I8: case VT_UI1: case VT_UI2: case VT_UI4: case VT_UI8: case VT_R4: case VT_R8: // Coerce all integral types to VT_I4 if (FAILED(hrReturn = VariantChangeType(pvarKey, pvarKey, 0, VT_I4))) goto LExit; vt = V_VT(pvarKey); // fallthru to VT_I4 case VT_I4: case VT_BSTR: break; default: ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); hrReturn = E_FAIL; goto LExit; } // At this point the VT of pvarKey should be VT_I4 or VT_BSTR Assert((vt == VT_I4) || (vt == VT_BSTR)); if (vt == VT_I4) { // We were passed in a number. // Look up the key by integer index iCount = V_I4(pvarKey); // We use the CServVarsIterator to manange // the count of sv and integer index if (!m_pIterator) { m_pIterator = new CServVarsIterator; if (!m_pIterator) { hrReturn = E_OUTOFMEMORY; goto LExit; } if (FAILED(hrReturn=m_pIterator->Init(m_pRequest->m_pData->m_pIReq))) goto LExit; } // BUG 86117 test passes when m_dwCount == 0 if ( ((iCount < 1) || (iCount > (int) m_pIterator->m_cKeys)) || ((iCount > 0) && ((int) m_pIterator->m_cKeys == 0))) { hrReturn = E_FAIL; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_BAD_ARRAY_INDEX); goto LExit; } // Create a BSTR containing the key for this variant bstrT = SysAllocString(m_pIterator->m_rgwszKeys[iCount - 1]); if (!bstrT) { hrReturn = E_OUTOFMEMORY; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } } else { // We were passed in a BSTR. Check to see if there // is a server variable for this key char szBuffer; DWORD dwValSize = sizeof(szBuffer); UINT uCodePage = m_pRequest->GetCodePage(); if (FAILED(hrReturn = convKey.Init(V_BSTR(pvarKey), uCodePage))) { if (hrReturn == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } hrReturn = NO_ERROR; szKey = ""; } else { szKey = CharUpperA(convKey.GetString()); } BOOL fSuccess = m_pRequest->GetIReq()->GetServerVariableA(szKey, &szBuffer, &dwValSize); DWORD dwError = 0; if (!fSuccess) { dwError = GetLastError(); } // If the error was that we had insufficient buffer then // there is a server variable for that key if (fSuccess || dwError == ERROR_INSUFFICIENT_BUFFER) { bstrT = SysAllocString(V_BSTR(pvarKey)); if (!bstrT) { hrReturn = E_OUTOFMEMORY; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); goto LExit; } } else if (dwError != ERROR_INVALID_INDEX) { // Any other error indicates an unexpected failure hrReturn = HRESULT_FROM_WIN32(dwError); ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_UNEXPECTED); goto LExit; } } // If we found a key, copy it into the out parmater if (bstrT) { V_BSTR(pVar) = bstrT; } LExit: VariantClear(&varKeyCopy); return hrReturn; } /*=================================================================== CServerVariables::get_Count Parameters: pcValues - count is stored in *pcValues ===================================================================*/ STDMETHODIMP CServerVariables::get_Count(int *pcValues) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; HRESULT hrReturn = S_OK; // We use the CServVarsIterator to manange // the count of sv and integer index if (!m_pIterator) { m_pIterator = new CServVarsIterator; if (!m_pIterator) { *pcValues = 0; return E_OUTOFMEMORY; } if (FAILED(hrReturn=m_pIterator->Init(m_pRequest->m_pData->m_pIReq))) return hrReturn; } *pcValues = m_pIterator->m_cKeys; return hrReturn; } /*=================================================================== CServerVariables::get__NewEnum Return a new enumerator ===================================================================*/ HRESULT CServerVariables::get__NewEnum(IUnknown **ppEnumReturn) { HRESULT hrReturn; if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; *ppEnumReturn = NULL; CServVarsIterator *pIterator = new CServVarsIterator; if (pIterator == NULL) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); return E_OUTOFMEMORY; } if (FAILED(hrReturn=pIterator->Init(m_pRequest->GetIReq()))) { delete pIterator; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, ((hrReturn==E_OUTOFMEMORY)? IDE_OOM: IDE_UNEXPECTED) ); return hrReturn; } *ppEnumReturn = pIterator; return S_OK; } /*------------------------------------------------------------------ * C R e q u e s t D a t a */ /*=================================================================== CRequestData::CRequestData Constructor Parameters: CRequest *pRequest Returns: Nothing. ===================================================================*/ CRequestData::CRequestData ( CRequest *pRequest ) : m_ISupportErrImp(static_cast<IRequest *>(pRequest), this, IID_IRequest), m_QueryString(pRequest, this), m_ServerVariables(pRequest, this), m_FormInputs(pRequest, this), m_Cookies(pRequest, this), m_ClCerts(pRequest, this), m_cRefs(1) { m_pIReq = NULL; m_pHitObj = NULL; m_FormDataStatus = AVAILABLE; m_pbAvailableData = NULL; m_cbAvailable = 0; m_cbTotal = 0; m_szFormData = NULL; m_cbFormData = 0; m_szFormClone = NULL; m_szCookie = NULL; m_cbCookie = 0; m_szClCert = NULL; m_cbClCert = 0; m_fLoadForm = TRUE; m_fLoadQuery = TRUE; m_fLoadCookies = TRUE; m_fLoadClCerts = TRUE; m_pEmptyString = NULL; } /*=================================================================== CRequestData::~CRequestData Destructor Parameters: Returns: Nothing. ===================================================================*/ CRequestData::~CRequestData() { CRequestHit *pNukeElem = static_cast<CRequestHit *> ( m_mpszStrings.Head() ); while (pNukeElem != NULL) { CRequestHit *pNext = static_cast<CRequestHit *>(pNukeElem->m_pNext); delete pNukeElem; pNukeElem = pNext; } m_mpszStrings.UnInit(); if (m_pEmptyString) m_pEmptyString->Release(); if (m_szFormData) free(m_szFormData); if (m_szFormClone) free(m_szFormClone); if (m_szCookie) free(m_szCookie); if (m_szClCert) free(m_szClCert); } /*=================================================================== CRequestData::Init Init Parameters: Returns: Nothing. ===================================================================*/ HRESULT CRequestData::Init() { HRESULT hr = S_OK; if (SUCCEEDED(hr)) hr = m_mpszStrings.Init(); if (SUCCEEDED(hr)) hr = m_QueryString.Init(); if (SUCCEEDED(hr)) hr = m_FormInputs.Init(); if (SUCCEEDED(hr)) hr = m_Cookies.Init(); if (SUCCEEDED(hr)) hr = m_ClCerts.Init(); if (SUCCEEDED(hr)) hr = m_ServerVariables.Init(); return hr; } /*=================================================================== CRequestData::ReInit ReInit -- associate with new CIsapiReqInfo and HitObj Parameters: Returns: Nothing. ===================================================================*/ HRESULT CRequestData::ReInit ( CIsapiReqInfo *pIReq, CHitObj *pHitObj ) { CRequestHit *pNukeElem = static_cast<CRequestHit *> ( m_mpszStrings.Head() ); while (pNukeElem != NULL) { CRequestHit *pNext = static_cast<CRequestHit *> ( pNukeElem->m_pNext ); delete pNukeElem; pNukeElem = pNext; } m_mpszStrings.ReInit(); m_QueryString.ReInit(); m_FormInputs.ReInit(); m_Cookies.ReInit(); m_ClCerts.ReInit(); m_pIReq = pIReq; m_pHitObj = pHitObj; m_fLoadForm = TRUE; m_fLoadQuery = TRUE; m_fLoadCookies = TRUE; m_fLoadClCerts = TRUE; m_FormDataStatus = AVAILABLE; if (pIReq) { m_pbAvailableData = pIReq->QueryPbData(); m_cbAvailable = pIReq->QueryCbAvailable(); m_cbTotal = pIReq->QueryCbTotalBytes(); } else { m_pbAvailableData = NULL; m_cbAvailable = 0; m_cbTotal = 0; } if (m_szFormData) { m_szFormData[0] = '\0'; m_szFormClone[0] = '\0'; } if (m_szCookie) m_szCookie[0] = '\0'; if (m_szClCert) m_szClCert[0] = '\0'; return S_OK; } /*=================================================================== CRequestData::GetEmptyStringList Get empty string list's IDispatch * Create empty string list on demand ===================================================================*/ HRESULT CRequestData::GetEmptyStringList ( IDispatch **ppdisp ) { if (!m_pEmptyString) { m_pEmptyString = new CStringList; if (!m_pEmptyString) { *ppdisp = NULL; return E_FAIL; } } return m_pEmptyString->QueryInterface(IID_IDispatch, reinterpret_cast<void **>(ppdisp)); } /*=================================================================== CRequestData::QueryInterface CRequestData::AddRef CRequestData::Release IUnknown members for CRequestData object. ===================================================================*/ STDMETHODIMP CRequestData::QueryInterface ( REFIID iid, void **ppvObj ) { if (iid == IID_IUnknown) { *ppvObj = this; AddRef(); return S_OK; } else { *ppvObj = NULL; return E_NOINTERFACE; } } STDMETHODIMP_(ULONG) CRequestData::AddRef() { return ++m_cRefs; } STDMETHODIMP_(ULONG) CRequestData::Release(void) { if (--m_cRefs) return m_cRefs; delete this; return 0; } /*------------------------------------------------------------------ * C R e q u e s t */ /*=================================================================== CRequest::CRequest Constructor Parameters: punkOuter object to ref count (can be NULL) ===================================================================*/ CRequest::CRequest(IUnknown *punkOuter) : m_fInited(FALSE), m_fDiagnostics(FALSE), m_pData(NULL) { CDispatch::Init(IID_IRequest); if (punkOuter) { m_punkOuter = punkOuter; m_fOuterUnknown = TRUE; } else { m_cRefs = 1; m_fOuterUnknown = FALSE; } #ifdef DBG m_fDiagnostics = TRUE; #endif // DBG } /*=================================================================== CRequest::~CRequest Destructor Parameters: None Returns: Nothing. ===================================================================*/ CRequest::~CRequest() { Assert(!m_fInited); Assert(m_fOuterUnknown || m_cRefs == 0); // must have 0 ref count } /*=================================================================== CRequest::CleanUp Deallocates members and removes m_pData Parameters: None Returns: HRESULT (S_OK) ===================================================================*/ HRESULT CRequest::CleanUp() { if (m_pData) { m_pData->Release(); m_pData = NULL; } return S_OK; } /*=================================================================== CRequest::Init Allocates m_pData. Performs any intiailization of a CRequest that's prone to failure that we also use internally before exposing the object outside. Parameters: None Returns: S_OK on success. ===================================================================*/ HRESULT CRequest::Init() { if (m_fInited) return S_OK; // already inited Assert(!m_pData); m_pData = new CRequestData(this); if (!m_pData) return E_OUTOFMEMORY; HRESULT hr = m_pData->Init(); if (SUCCEEDED(hr)) m_fInited = TRUE; else CleanUp(); return hr; } /*=================================================================== CRequest::UnInit Remove m_pData. Back to UnInited state Parameters: None Returns: HRESULT ===================================================================*/ HRESULT CRequest::UnInit() { if (!m_fInited) return S_OK; // already uninited Assert(m_pData); CleanUp(); Assert(!m_pData); m_fInited = FALSE; return S_OK; } /*=================================================================== Request::ReInit Each Request we service will have a new CIsapiReqInfo. This function is used to set the value of the CIsapiReqInfo. Parameters: CIsapiReqInfo *pIReq CIsapiReqInfo CHitObj *pHitObj HitObj Returns: HRESULT ===================================================================*/ HRESULT CRequest::ReInit ( CIsapiReqInfo *pIReq, CHitObj *pHitObj ) { Assert(m_fInited); Assert(m_pData); return m_pData->ReInit(pIReq, pHitObj); } /*=================================================================== CRequest::GetCodePage GetCodePage from current HitObj Parameters: Returns: CodePage ===================================================================*/ UINT CRequest::GetCodePage() { Assert(m_fInited); Assert(m_pData); Assert(m_pData->m_pHitObj); return m_pData->m_pHitObj->GetCodePage(); } /*=================================================================== CRequest::LoadCookies Load the Request map with values from the HTTP_COOKIE variable. Parameters: bstrVar BSTR, which parameter to get the value of pbstrRet BSTR FAR *, return value of the requested parameter Returns: S_OK on success. E_FAIL on failure. Bugs: This code assumes that dictionary cookies are well-formed. If they are not, then the results will be unpredictable. The dictionary cookies are gauranteed to be well-formed if Response.Cookies is used. If other means, such as a direct use of the <META> tag, or if Response.SetCookie is used, we are at the mercy of the script writer. ===================================================================*/ HRESULT CRequest::LoadCookies(char *szData) { if (FAILED(CheckForTombstone())) return E_FAIL; HRESULT hResult; if (szData == NULL) return S_OK; // Each cookie definition is moved to a buffer so that we don't // overwrite the value of HTTP_COOKIE. We can save a strcpy() // call since 'DecodeFromURL' can copy for us. // size_t cbCookie = strlen(szData) + 1; if (m_pData->m_cbCookie == 0) m_pData->m_szCookie = static_cast<char *>(malloc(m_pData->m_cbCookie = cbCookie)); else if (cbCookie > m_pData->m_cbCookie) m_pData->m_szCookie = static_cast<char *>(realloc(m_pData->m_szCookie, m_pData->m_cbCookie = cbCookie)); if (m_pData->m_szCookie == NULL) return E_OUTOFMEMORY; char *szDest = m_pData->m_szCookie; char chDelimiter; // delimiter that we found to stop the scan while (*szData != '\0') { char *szName, *szPartialValue; // Get the cookie name chDelimiter = DecodeFromURL(&szData, ";=", szName = szDest, GetCodePage(), FALSE); szDest = strchr(szDest, '\0') + 1; if (chDelimiter == '=') { // if DecodeFromURL stop scanning because of an equal sign, then the browser sent // a value for this cookie // Get the cookie's value chDelimiter = DecodeFromURL(&szData, ";=", szPartialValue = szDest, GetCodePage(), FALSE); szDest = strchr(szDest, '\0') + 1; // discard the denali session ID if (strncmp(szName, SZ_SESSION_ID_COOKIE_PREFIX, CCH_SESSION_ID_COOKIE_PREFIX) == 0) { // DENALISESSIONID better not have non-alphabetics in it! expecting // termination with ';' or NUL. // continue; } } else if (*szName == '\0') { continue; } else { // either we hit a ';' char or end of string. In either case, this indicates that // the cookie has no value. Set the szPartialValue to an empty string and set the // delimiter to ';' to trick the remainder of this function into thinking that the // cookie does have a value and that is a simple value (i.e. no sub-cookies). chDelimiter = ';'; szPartialValue = ""; } // Add this cookie to the Request CRequestHit *pRequestHit = static_cast<CRequestHit *>(GetStrings()->FindElem(szName, strlen(szName))); if (pRequestHit == NULL) { pRequestHit = new CRequestHit; if (pRequestHit == NULL) return E_OUTOFMEMORY; if (FAILED(pRequestHit->Init(szName))) { delete pRequestHit; return E_FAIL; } GetStrings()->AddElem(pRequestHit); // This is a new request hit, add it to the array of request hits if (!m_pData->m_Cookies.AddRequestHit(pRequestHit)) { return E_OUTOFMEMORY; } } else if (pRequestHit->m_pCookieData) // a cookie by this name already exists { if (chDelimiter == '=') // eat the rest of this cookie DecodeFromURL(&szData, ";", szDest, GetCodePage()); // no need to advance szDest continue; // discard later cookies } // The cookie value may be in the form <key1=value1&key2=value2...> // or not. If there is an '=' sign present, that lets us know if it // is a cookie dictionary or a simple value. // // We assume that '=' signs that are part of the cookie are escaped in hex. // if (chDelimiter != '=') { if (FAILED(hResult = pRequestHit->AddValue(COOKIE, szPartialValue, m_pData->m_pIReq, GetCodePage()))) return hResult; } else { char *szKey = szPartialValue; // already got the key for (;;) { char *szValue; chDelimiter = DecodeFromURL(&szData, ";&", szValue = szDest, GetCodePage(), FALSE); szDest = strchr(szDest, '\0') + 1; if (FAILED(hResult = pRequestHit->AddKeyAndValue(COOKIE, szKey, szValue, m_pData->m_pIReq, GetCodePage()))) return hResult; if (chDelimiter == ';' || chDelimiter == '\0') break; // get the key, exit when NUL terminator found chDelimiter = DecodeFromURL(&szData, "=;", szKey = szDest, GetCodePage(), FALSE); if (chDelimiter == ';' || chDelimiter == '\0') break; szDest = strchr(szDest, '\0') + 1; } } } return S_OK; } #define CB_CERT_DEFAULT 4096 /*=================================================================== CRequest::LoadClCerts Load the Request map with values from the CIsapiReqInfo Parameters: szData - ptr to CIsapiReqInfo Returns: S_OK on success. E_FAIL on failure. ===================================================================*/ HRESULT CRequest::LoadClCerts(char *szData, UINT lCodePage) { HRESULT hres = S_OK; CERT_CONTEXT_EX CertContextEx; CCertRequest CertReq( this ); STACK_BUFFER( tempCert, CB_CERT_DEFAULT ); ZeroMemory( &CertContextEx, sizeof(CERT_CONTEXT_EX) ); if (FAILED(CheckForTombstone())) return E_FAIL; CIsapiReqInfo *pIReq = reinterpret_cast<CIsapiReqInfo *>(szData); // allocate certificate buffer CertContextEx.cbAllocated = tempCert.QuerySize(); CertContextEx.CertContext.pbCertEncoded = static_cast<BYTE *>(tempCert.QueryPtr()); // get certificate info from web server if ( !pIReq->ServerSupportFunction( HSE_REQ_GET_CERT_INFO_EX, &CertContextEx, NULL, NULL ) ) { DWORD dwErr = GetLastError(); if ( dwErr == ERROR_INSUFFICIENT_BUFFER ) { // buffer was too small - realloc and call again Assert( CertContextEx.cbAllocated < CertContextEx.CertContext.cbCertEncoded ); CertContextEx.cbAllocated = CertContextEx.CertContext.cbCertEncoded; // If CB_CERT_DEFAULT wasn't enough, we want to allocate from the heap, rather then the stack if (tempCert.Resize(CertContextEx.cbAllocated) == FALSE) { hres = E_OUTOFMEMORY; goto LExit; } CertContextEx.CertContext.pbCertEncoded = static_cast<BYTE *>(tempCert.QueryPtr()); if ( !pIReq->ServerSupportFunction( HSE_REQ_GET_CERT_INFO_EX, &CertContextEx, NULL, NULL ) ) { // if we fail a second time, just bail // NOTE this should never happen? dwErr = GetLastError(); Assert(dwErr != ERROR_INSUFFICIENT_BUFFER); hres = HRESULT_FROM_WIN32(dwErr); goto LExit; } } else if ( dwErr == ERROR_INVALID_PARAMETER ) { // not supported (old IIS) hres = S_OK; goto LExit; } else { hres = HRESULT_FROM_WIN32(dwErr); goto LExit; } } if(CertContextEx.CertContext.cbCertEncoded == 0) { hres = CertReq.NoCertificate(); } else { hres = CertReq.ParseCertificate( CertContextEx.CertContext.pbCertEncoded, CertContextEx.CertContext.cbCertEncoded, CertContextEx.CertContext.dwCertEncodingType, CertContextEx.dwCertificateFlags, lCodePage ); } LExit: return hres; } /*=================================================================== CRequest::LoadVariables Load the Request map with values from a URL encoded string WARNING: This function modifies the passed szData!! Note: this is part of bug 682, but we are not going to fix it for performance reasons. Just be aware that this function screws up the passed in string. Parameters: bstrVar BSTR, which parameter to get the value of pbstrRet BSTR FAR *, return value of the requested parameter lCodePage UINT, the codepage used in retrieving the data Returns: S_OK on success. E_FAIL on failure. ===================================================================*/ HRESULT CRequest::LoadVariables(CollectionType Source, char *szData, UINT lCodePage) { if (FAILED(CheckForTombstone())) return E_FAIL; HRESULT hResult; if (Source == COOKIE) // cookies are a special case return LoadCookies(szData); // handle them specially if (Source == CLCERT) // clcerts are a special case return LoadClCerts(szData, lCodePage); // handle them specially if (szData == NULL) // treat NULL as "no data available" return S_OK; while (*szData != '\0') { char *szName, *szValue; DecodeFromURL(&szData, "=", szName = szData, lCodePage, FALSE); DecodeFromURL(&szData, "&", szValue = szData, lCodePage, FALSE); // this is to handle the case where an un-named pair was passed. // skip it and process the next named pair // if(*szName == '\0') continue; CRequestHit *pRequestHit = static_cast<CRequestHit *> ( GetStrings()->FindElem(szName, strlen(szName)) ); if (pRequestHit == NULL) { pRequestHit = new CRequestHit; if (pRequestHit == NULL) return E_OUTOFMEMORY; if (FAILED(pRequestHit->Init(szName))) { delete pRequestHit; return E_FAIL; } GetStrings()->AddElem(pRequestHit); // This is a new request hit, so we should add it // to the array of request if (Source == QUERYSTRING) { if (!m_pData->m_QueryString.AddRequestHit(pRequestHit)) { return E_FAIL; } } else if (Source == FORM) { if (!m_pData->m_FormInputs.AddRequestHit(pRequestHit)) { return E_FAIL; } } } if (FAILED(hResult = pRequestHit->AddValue(Source, szValue, m_pData->m_pIReq, lCodePage))) return hResult; } return S_OK; } /*=================================================================== CRequest::QueryInterface CRequest::AddRef CRequest::Release IUnknown members for CRequest object. ===================================================================*/ STDMETHODIMP CRequest::QueryInterface(REFIID iid, void **ppvObj) { *ppvObj = NULL; // BUG FIX 683 added IID_IDenaliIntrinsic to prevent the user from // storing intrinsic objects in the application and session object if (iid == IID_IUnknown || iid == IID_IDispatch || iid == IID_IRequest || iid == IID_IDenaliIntrinsic) *ppvObj = static_cast<IRequest *>(this); else if (iid == IID_ISupportErrorInfo) { if (m_pData) *ppvObj = &(m_pData->m_ISupportErrImp); } // Support IStream for ADO/XML else if (iid == IID_IStream ) { *ppvObj = static_cast<IStream *>(this); } else if (IID_IMarshal == iid) { *ppvObj = static_cast<IMarshal *>(this); } if (*ppvObj != NULL) { static_cast<IUnknown *>(*ppvObj)->AddRef(); return S_OK; } return E_NOINTERFACE; } STDMETHODIMP_(ULONG) CRequest::AddRef(void) { if (m_fOuterUnknown) return m_punkOuter->AddRef(); return InterlockedIncrement((LPLONG)&m_cRefs); } STDMETHODIMP_(ULONG) CRequest::Release(void) { if (m_fOuterUnknown) return m_punkOuter->Release(); DWORD cRefs = InterlockedDecrement((LPLONG)&m_cRefs); if (cRefs) return cRefs; delete this; return 0; } /*=================================================================== CRequest::CheckForTombstone Tombstone stub for IRequest methods. If the object is tombstone, does ExceptionId and fails. Parameters: Returns: HRESULT E_FAIL if Tombstone S_OK if not ===================================================================*/ HRESULT CRequest::CheckForTombstone() { if (m_fInited) { // inited - good object Assert(m_pData); // must be present for inited objects return S_OK; } ExceptionId ( IID_IRequest, IDE_REQUEST, IDE_INTRINSIC_OUT_OF_SCOPE ); return E_FAIL; } /*=================================================================== CRequest::get_QueryString Return the QueryString dictionary ===================================================================*/ HRESULT CRequest::get_QueryString(IRequestDictionary **ppDictReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; return m_pData->m_QueryString.QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(ppDictReturn)); } /*=================================================================== CRequest::get_Form Return the Form dictionary ===================================================================*/ HRESULT CRequest::get_Form(IRequestDictionary **ppDictReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; return m_pData->m_FormInputs.QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(ppDictReturn)); } /*=================================================================== CRequest::get_Body Return the Body dictionary (alias for Form dictionary) ===================================================================*/ HRESULT CRequest::get_Body(IRequestDictionary **ppDictReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; return m_pData->m_FormInputs.QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(ppDictReturn)); } /*=================================================================== CRequest::get_Cookies Return the Cookies dictionary ===================================================================*/ HRESULT CRequest::get_Cookies(IRequestDictionary **ppDictReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; return m_pData->m_Cookies.QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(ppDictReturn)); } /*=================================================================== CRequest::get_ClientCertificate Return the ClCerts dictionary ===================================================================*/ HRESULT CRequest::get_ClientCertificate(IRequestDictionary **ppDictReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; return m_pData->m_ClCerts.QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(ppDictReturn)); } /*=================================================================== CRequest::get_ServerVariables Return the Form dictionary ===================================================================*/ HRESULT CRequest::get_ServerVariables(IRequestDictionary **ppDictReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; return m_pData->m_ServerVariables.QueryInterface(IID_IRequestDictionary, reinterpret_cast<void **>(ppDictReturn)); } /*=================================================================== CRequest::get_Item Function called from DispInvoke to get values from any one of four collections. Search order is "ServerVariables", "QueryString", "Form", "Cookies", "ClientCertificate" Parameters: bstrVar BSTR, which parameter to get the value of pVarReturn VARIANT *, return value of the requested parameter Returns: S_OK on success. E_FAIL on failure. ===================================================================*/ HRESULT CRequest::get_Item(BSTR bstrName, IDispatch **ppDispReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; if (bstrName == NULL) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_EXPECTING_STR); return E_FAIL; } UINT lCodePage = CP_ACP; CWCharToMBCS convName; char *szName; // If BinaryRead has been called, the Form collection is no longer available // so we insist that the script writer specify which collection to use if (m_pData->m_FormDataStatus != AVAILABLE && m_pData->m_FormDataStatus != FORMCOLLECTIONONLY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_REQUEST_GENERICCOLLECTION_NA); return E_FAIL; } // At this point, we are forced to load the QueryString, Form, Cookies // and ClientCertificate // collections even though it will only come from one of these. // if (m_pData->m_fLoadQuery) { // QueryString can contains DBCS string lCodePage = GetCodePage(); if (FAILED(LoadVariables(QUERYSTRING, GetIReq()->QueryPszQueryString(), lCodePage))) return E_FAIL; m_pData->m_fLoadQuery = FALSE; } if (m_pData->m_fLoadCookies) { char *szCookie = GetIReq()->QueryPszCookie(); if (FAILED(LoadVariables(COOKIE, szCookie, lCodePage))) return E_FAIL; m_pData->m_fLoadCookies = FALSE; } if (m_pData->m_fLoadClCerts) { lCodePage = GetCodePage(); if (FAILED(LoadVariables(CLCERT, (char*)GetIReq(), lCodePage))) return E_FAIL; m_pData->m_fLoadClCerts = FALSE; } if (m_pData->m_fLoadForm) { HRESULT hrGetData = CopyClientData(); if (FAILED(hrGetData)) return hrGetData; // Form can contain DBCS string lCodePage = GetCodePage(); if (FAILED(LoadVariables(FORM, m_pData->m_szFormData, lCodePage))) return E_FAIL; m_pData->m_fLoadForm = FALSE; } // Convert name to ANSI // HRESULT hr; if (FAILED(hr = convName.Init(bstrName, lCodePage))) { if (hr == E_OUTOFMEMORY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); return hr; } hr = NO_ERROR; szName = ""; } else { szName = convName.GetString(); } // Look up the name in the collections // CRequestHit *pRequestHit = static_cast<CRequestHit *>(GetStrings()->FindElem(szName, strlen(szName))); if (pRequestHit) { IUnknown *pValues = NULL; if (pRequestHit->m_pQueryData) pValues = pRequestHit->m_pQueryData; else if (pRequestHit->m_pFormData) pValues = pRequestHit->m_pFormData; else if (pRequestHit->m_pCookieData) pValues = pRequestHit->m_pCookieData; else if (pRequestHit->m_pClCertData) pValues = pRequestHit->m_pClCertData; if (pValues == NULL) goto NotFound; if (FAILED(pValues->QueryInterface(IID_IDispatch, reinterpret_cast<void **>(ppDispReturn)))) return E_FAIL; return S_OK; } NotFound: // Look in server variables VARIANT varKey, varValue; V_VT(&varKey) = VT_BSTR; V_BSTR(&varKey) = bstrName; if (m_pData->m_ServerVariables.get_Item(varKey, &varValue) == S_OK) { Assert (V_VT(&varValue) == VT_DISPATCH); *ppDispReturn = V_DISPATCH(&varValue); return S_OK; } if (FAILED(m_pData->GetEmptyStringList(ppDispReturn))) return E_FAIL; return S_OK; } /*=================================================================== CRequest::CopyClientData Load the form data (stdin) by using either ReadClient or the ISAPI buffer ===================================================================*/ HRESULT CRequest::CopyClientData() { HRESULT hr = S_OK; if (FAILED(CheckForTombstone())) return E_FAIL; STACK_BUFFER(tempContent, 1024 ); CIsapiReqInfo *pIReq = m_pData->m_pIReq; // assert that the data is in the format we want // // we need to scan the content type for the supported header, // the client my send multiple headers so use strstr to search // the header string this is a HOT_FIX for NT BUG:208530 // if (pIReq->QueryPszContentType()) { size_t cbQueryPszContentType = (strlen(pIReq->QueryPszContentType()) + 1); if (cbQueryPszContentType > REQUEST_ALLOC_MAX) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_STACK_OVERFLOW); return E_FAIL; } if (tempContent.Resize(cbQueryPszContentType) == FALSE) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); return E_FAIL; } CHAR *szQueryPszContentType = _strlwr( strcpy( static_cast<char *>(tempContent.QueryPtr()), pIReq->QueryPszContentType() )); if (strstr(szQueryPszContentType, "application/x-www-form-urlencoded") == NULL) return S_OK; } else return S_OK; // // Determine if it is chunked or not. // DWORD dwVarSize = 0; STACK_BUFFER( varBuff, 128 ); if (SERVER_GET(pIReq, "HTTP_TRANSFER_ENCODING", &varBuff, &dwVarSize) && (!stricmp(static_cast<char *>(varBuff.QueryPtr()),"chunked"))) hr = CopyChunkedClientData(); else hr = CopyNonChunkedClientData(); // Clone the data (LoadVariables will destroy the data) // Allocate memory for clone. It should theoritically be equal to the size of FormData. if (SUCCEEDED (hr)) { m_pData->m_szFormClone = static_cast<char *>(malloc(m_pData->m_cbFormData)); if (m_pData->m_szFormClone == NULL) return E_OUTOFMEMORY; // Actually perform the copy of data. strcpy(m_pData->m_szFormClone, m_pData->m_szFormData); } return hr; } /*=================================================================== CRequest::CopyChunkedClientData Load the form data (stdin) by using either ReadClient or the ISAPI buffer. This case is called when Data is being sent in a chunks. ===================================================================*/ HRESULT CRequest::CopyChunkedClientData () { CIsapiReqInfo *pIReq = m_pData->m_pIReq; // Try to initially allocate units 4K,16K,32K.... // For the current implementation we shall stop at 32K // Which will bring us to an allocation of (48) +4+8+16+32 +32 +32 + ..... // DWORD allocUnit = 4096; // 0001 0000 0000 0000 B DWORD cbFormData = (pIReq->QueryCbAvailable() + 1); // WinSE 26645: check for interger overflow after every add // if (cbFormData < 1) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_NOT_ALLOWED); return E_FAIL; } // Alloc the 4K extra memory. cbFormData += allocUnit; if (cbFormData < allocUnit) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_NOT_ALLOWED); return E_FAIL; } if (m_pData->m_cbFormData == 0) m_pData->m_szFormData = static_cast<char *>(malloc(m_pData->m_cbFormData = cbFormData)); // space for data & its clone else if (cbFormData > m_pData->m_cbFormData) m_pData->m_szFormData = static_cast<char *>(realloc(m_pData->m_szFormData, m_pData->m_cbFormData = cbFormData)); if (m_pData->m_szFormData == NULL) return E_OUTOFMEMORY; char * pszOffset; // Once we start to read the form data only the form collection can use it m_pData->m_FormDataStatus = FORMCOLLECTIONONLY; memcpy( m_pData->m_szFormData, pIReq->QueryPbData(), pIReq->QueryCbAvailable() ); pszOffset = m_pData->m_szFormData + pIReq->QueryCbAvailable(); DWORD cBytesToRead = allocUnit; DWORD cBytesRead = cBytesToRead; // // Call ReadClient until we have read all the data // while (cBytesRead > 0) { if ((!pIReq->SyncReadClient(pszOffset, &cBytesRead)) || (cBytesRead == 0)) break; cBytesToRead -= cBytesRead; if (cBytesToRead == 0) { // Dont allocatate anything larger than 32K unit else double the size of the allocation Unit. if (allocUnit < 0x8000) allocUnit = allocUnit << 1; // Adjust buffer size cbFormData += allocUnit; if (cbFormData < allocUnit) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_NOT_ALLOWED); return E_FAIL; } // Allocate new memory. m_pData->m_szFormData = static_cast<char *>(realloc(m_pData->m_szFormData, m_pData->m_cbFormData = cbFormData)); // Check for out of memory. if (m_pData->m_szFormData == NULL) return E_OUTOFMEMORY; // Adjust offset. pszOffset = m_pData->m_szFormData + cbFormData - allocUnit -1; cBytesToRead = allocUnit; } else { pszOffset += cBytesRead; } cBytesRead = cBytesToRead; } // Adjust cbFormData to read the currect count of data. m_pData->m_cbFormData -= cBytesToRead; // Add the NULL terminator. m_pData->m_szFormData[m_pData->m_cbFormData-1] = '\0'; return S_OK; } /*=================================================================== CRequest::CopyNonChunkedClientData Load the form data (stdin) by using either ReadClient or the ISAPI buffer. This case is called when the Content Length is known and ===================================================================*/ HRESULT CRequest::CopyNonChunkedClientData () { CIsapiReqInfo *pIReq = m_pData->m_pIReq; // // Allocate enough space for the form data and a copy // size_t cbFormData = (pIReq->QueryCbTotalBytes() + 1); if (cbFormData < 1) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_NOT_ALLOWED); return E_FAIL; } if (m_pData->m_cbFormData == 0) m_pData->m_szFormData = static_cast<char *>(malloc(m_pData->m_cbFormData = cbFormData)); // space for data & its clone else if (cbFormData > m_pData->m_cbFormData) m_pData->m_szFormData = static_cast<char *>(realloc(m_pData->m_szFormData, m_pData->m_cbFormData = cbFormData)); if (m_pData->m_szFormData == NULL) return E_OUTOFMEMORY; char * pszOffset; // Once we start to read the form data only the form collection can use it m_pData->m_FormDataStatus = FORMCOLLECTIONONLY; // Load the data // if (pIReq->QueryCbTotalBytes() <= pIReq->QueryCbAvailable()) { memcpy( m_pData->m_szFormData, pIReq->QueryPbData(), pIReq->QueryCbTotalBytes() ); // bytes are available now } else { // Some bytes are in the CIsapiReqInfo buffer, we must call ReadClient for others // First copy the data in the CIsapiReqInfo buffer // memcpy( m_pData->m_szFormData, pIReq->QueryPbData(), pIReq->QueryCbAvailable() ); DWORD cBytesToRead = pIReq->QueryCbTotalBytes() - pIReq->QueryCbAvailable(); DWORD cBytesRead = cBytesToRead; pszOffset = m_pData->m_szFormData + pIReq->QueryCbAvailable(); // Call ReadClient until we have read all the data // while (cBytesToRead > 0) { if ((!pIReq->SyncReadClient(pszOffset, &cBytesRead)) || (cBytesRead == 0)) return E_FAIL; cBytesToRead -= cBytesRead; pszOffset += cBytesRead; cBytesRead = cBytesToRead; } } m_pData->m_szFormData[pIReq->QueryCbTotalBytes()] = '\0'; return S_OK; } /*=================================================================== CResponse::GetRequestIterator Provide a default implementation of get__NewEnum for the Request collections because most of the collections can use this implementation. Parameters: Collection - the type of iterator to create ppEnumReturn - on return, this points to the new enumeration Returns: Can return E_FAIL or E_OUTOFMEMORY Side effects: None. ===================================================================*/ HRESULT CRequest::GetRequestEnumerator(CollectionType WhichCollection, IUnknown **ppEnumReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; *ppEnumReturn = NULL; CRequestIterator *pIterator = new CRequestIterator(this, WhichCollection); if (pIterator == NULL) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); return E_OUTOFMEMORY; } HRESULT hrInit = pIterator->Init(); if (FAILED(hrInit)) { delete pIterator; ExceptionId(IID_IRequestDictionary, IDE_REQUEST, (hrInit == E_OUTOFMEMORY)? IDE_OOM : IDE_UNEXPECTED); return hrInit; } *ppEnumReturn = pIterator; return S_OK; } /*=================================================================== CResponse::get_TotalBytes Presents the number of bytes to expect in the request body Parameters: pcBytes - pointer to long where we will place the number of bytes to expect in the request body Returns: Can return E_FAIL Side effects: None. ===================================================================*/ HRESULT CRequest::get_TotalBytes(long *pcbTotal) { if (FAILED(CheckForTombstone())) return E_FAIL; if (pcbTotal == NULL) return E_FAIL; Assert(m_pData->m_pIReq); *pcbTotal = (long) m_pData->m_pIReq->QueryCbTotalBytes(); return S_OK; } /*=================================================================== CResponse::BinaryRead Read bytes from the Request Body to a SafeArray of VT_U1. Parameters: pcBytes - pointer to long where we will find the number of bytes to read in the request body, and where we will store the number of bytes we read. pvarOutput - pointer to variant that will contain the SafeArray we create Returns: Can return E_FAIL or E_OUTOFMEMORY Side effects: Allocates memory. ===================================================================*/ HRESULT CRequest::BinaryRead(VARIANT *pvarCount, VARIANT *pvarReturn) { if (FAILED(CheckForTombstone())) return E_FAIL; HRESULT hr = S_OK; SAFEARRAYBOUND rgsabound[1]; size_t cbToRead = 0; size_t cbRead = 0; BYTE *pbData = NULL; Assert(m_pData->m_pIReq); Assert(pvarCount); Assert(pvarReturn); // Set the variant type of the output parameter V_VT(pvarReturn) = VT_ARRAY|VT_UI1; V_ARRAY(pvarReturn) = NULL; if (m_pData->m_FormDataStatus == FORMCOLLECTIONONLY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_REQUEST_BINARYREAD_NA); hr = E_FAIL; goto error; } // Convert the byte count variant to a long if (FAILED(hr = VariantChangeTypeEx(pvarCount, pvarCount, m_pData->m_pHitObj->GetLCID(), 0, VT_I4))) { switch (hr) { case E_OUTOFMEMORY: ExceptionId(IID_IResponse, IDE_REQUEST, IDE_OOM); break; case DISP_E_OVERFLOW: hr = E_FAIL; ExceptionId(IID_IResponse, IDE_REQUEST, IDE_RESPONSE_UNABLE_TO_CONVERT); break; case DISP_E_TYPEMISMATCH: ExceptionId(IID_IResponse, IDE_REQUEST, IDE_TYPE_MISMATCH); break; default: ExceptionId(IID_IResponse, IDE_REQUEST, IDE_UNEXPECTED); } goto error; } cbToRead = V_I4(pvarCount); V_I4(pvarCount) = 0; if ((signed long) cbToRead < 0) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_REQUEST_BINREAD_BAD_ARG); hr = E_FAIL; goto error; } // If 0 bytes are requested, or available we're done if (cbToRead == 0 || m_pData->m_cbTotal == 0) return S_OK; // Allocate a SafeArray for the data // If they've asked for more bytes then the request // contains, give them all the bytes in the request. rgsabound[0].lLbound = 0; if (cbToRead > m_pData->m_cbTotal) cbToRead = m_pData->m_cbTotal; rgsabound[0].cElements = cbToRead; V_ARRAY(pvarReturn) = SafeArrayCreate(VT_UI1, 1, rgsabound); if (V_ARRAY(pvarReturn) == NULL) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_OOM); hr = E_OUTOFMEMORY; goto error; } if (FAILED(SafeArrayAccessData(V_ARRAY(pvarReturn), (void **) &pbData))) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_UNEXPECTED); hr = E_UNEXPECTED; goto error; } // There is no turning back now. The Request.Form collection will // no longer be available. if (m_pData->m_FormDataStatus == AVAILABLE) { m_pData->m_FormDataStatus = BINARYREADONLY; m_pData->m_fLoadForm = FALSE; } // If the number of bytes requested is less then the number of // bytes available (as maintained by the request object), // then copy the requested bytes from the request object copy // of the pointer to the CIsapiReqInfo buffer, decrement the number of bytes // available, and increment the pointer to the CIsapiReqInfo buffer. // Otherwise, copy all available bytes from the CIsapiReqInfo buffer, and // then issue a call to ReadClient to get the remaining needed bytes. if (cbToRead <= m_pData->m_cbAvailable) { memcpy(pbData, m_pData->m_pbAvailableData, cbToRead); m_pData->m_pbAvailableData += cbToRead; m_pData->m_cbAvailable -= cbToRead; m_pData->m_cbTotal -= cbToRead; V_I4(pvarCount) = cbToRead; } else { if (m_pData->m_cbAvailable > 0) { memcpy(pbData, m_pData->m_pbAvailableData, m_pData->m_cbAvailable); V_I4(pvarCount) = m_pData->m_cbAvailable; cbToRead -= m_pData->m_cbAvailable; m_pData->m_cbTotal -= m_pData->m_cbAvailable; pbData += m_pData->m_cbAvailable; } m_pData->m_pbAvailableData = NULL; m_pData->m_cbAvailable = 0; while (cbToRead) { cbRead = cbToRead; if (!GetIReq()->SyncReadClient(pbData, (DWORD *)&cbRead) || (cbRead == 0)) { SafeArrayUnaccessData(V_ARRAY(pvarReturn)); ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_UNEXPECTED); hr = E_FAIL; goto error; } pbData += cbRead; V_I4(pvarCount) += cbRead; m_pData->m_cbTotal -= cbRead; cbToRead -= cbRead; } } SafeArrayUnaccessData(V_ARRAY(pvarReturn)); return S_OK; error: VariantClear(pvarReturn); return(hr); } /*=================================================================== IStream implementation for ADO/XML ===================================================================*/ STDMETHODIMP CRequest::Read( void *pv, ULONG cb, ULONG *pcbRead) { if (pv == NULL) return E_POINTER; ULONG cbReadDummy; if (pcbRead == NULL) pcbRead = &cbReadDummy; if (m_pData->m_FormDataStatus != AVAILABLE && m_pData->m_FormDataStatus != ISTREAMONLY) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_REQUEST_STREAMONLY); return E_FAIL; } // If they've asked for more bytes then the request // contains, give them all the bytes in the request. if (cb > m_pData->m_cbTotal) cb = m_pData->m_cbTotal; // There is no turning back now. The Request.Form collection and // Request.BinaryRead will no longer be available. if (m_pData->m_FormDataStatus == AVAILABLE) { m_pData->m_FormDataStatus = ISTREAMONLY; m_pData->m_fLoadForm = FALSE; } // If the number of bytes requested is less then the number of // bytes available (as maintained by the request object), // then copy the requested bytes from the request object copy of // the pointer to the CIsapiReqInfo buffer, decrement the number of bytes // available, and increment the pointer to the CIsapiReqInfo buffer. // Otherwise, copy all available bytes from the CIsapiReqInfo buffer, and // then issue a call to ReadClient to get the remaining needed bytes. BYTE* pbData = static_cast<BYTE*>(pv); if (cb <= m_pData->m_cbAvailable) { memcpy(pbData, m_pData->m_pbAvailableData, cb); m_pData->m_pbAvailableData += cb; m_pData->m_cbAvailable -= cb; m_pData->m_cbTotal -= cb; *pcbRead = cb; } else { *pcbRead = 0; if (m_pData->m_cbAvailable > 0) { memcpy(pbData, m_pData->m_pbAvailableData, m_pData->m_cbAvailable); *pcbRead = m_pData->m_cbAvailable; cb -= m_pData->m_cbAvailable; m_pData->m_cbTotal -= m_pData->m_cbAvailable; pbData += m_pData->m_cbAvailable; } m_pData->m_pbAvailableData = NULL; m_pData->m_cbAvailable = 0; while (cb > 0) { DWORD cbRead = cb; if ((!GetIReq()->SyncReadClient(pbData, &cbRead)) || (cbRead == 0)) { ExceptionId(IID_IRequestDictionary, IDE_REQUEST, IDE_UNEXPECTED); return E_FAIL; } pbData += cbRead; *pcbRead += cbRead; m_pData->m_cbTotal -= cbRead; cb -= cbRead; } } return S_OK; } STDMETHODIMP CRequest::Write( const void *pv, ULONG cb, ULONG *pcbWritten) { return E_NOTIMPL; } STDMETHODIMP CRequest::Seek( LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition) { // We can only do a seek if we're in the first, pre-read portion of the // form data if (m_pData->m_pbAvailableData == NULL) return E_FAIL; BYTE* pbAvailableData; switch (dwOrigin) { case STREAM_SEEK_SET: // relative to beginning of stream pbAvailableData = m_pData->m_pIReq->QueryPbData() + dlibMove.LowPart; break; case STREAM_SEEK_CUR: // relative to current position in stream pbAvailableData = m_pData->m_pbAvailableData + dlibMove.LowPart; break; case STREAM_SEEK_END: // relative to end of stream; not supported return E_FAIL; }; // Does the new offset fall within the initial header? if (m_pData->m_pIReq->QueryPbData() <= pbAvailableData && pbAvailableData < m_pData->m_pIReq->QueryPbData() + m_pData->m_pIReq->QueryCbAvailable()) { DWORD dwDiff = DIFF(pbAvailableData - m_pData->m_pIReq->QueryPbData()); m_pData->m_pbAvailableData = pbAvailableData; m_pData->m_cbAvailable = m_pData->m_pIReq->QueryCbAvailable() - dwDiff; m_pData->m_cbTotal = m_pData->m_pIReq->QueryCbTotalBytes() - dwDiff; // Return the new position, if wanted if (plibNewPosition != NULL) plibNewPosition->LowPart = dwDiff; return S_OK; } return E_FAIL; } STDMETHODIMP CRequest::SetSize( ULARGE_INTEGER libNewSize) { return E_NOTIMPL; } STDMETHODIMP CRequest::CopyTo( IStream *pstm, ULARGE_INTEGER cb, ULARGE_INTEGER *pcbRead, ULARGE_INTEGER *pcbWritten) { return E_NOTIMPL; } STDMETHODIMP CRequest::Commit( DWORD grfCommitFlags) { return E_NOTIMPL; } STDMETHODIMP CRequest::Revert() { return E_NOTIMPL; } STDMETHODIMP CRequest::LockRegion( ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType) { return E_NOTIMPL; } STDMETHODIMP CRequest::UnlockRegion( ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType) { return E_NOTIMPL; } STDMETHODIMP CRequest::Stat( STATSTG *pstatstg, DWORD grfStatFlag) { return E_NOTIMPL; } STDMETHODIMP CRequest::Clone( IStream **ppstm) { return E_NOTIMPL; } #ifdef DBG /*=================================================================== CRequest::AssertValid Test to make sure that the CRequest object is currently correctly formed and assert if it is not. Returns: Side effects: None. ===================================================================*/ VOID CRequest::AssertValid() const { } #endif // DBG /*=================================================================== HexToChar Convert two digit hex string to a hex byte Parameters: szHex - pointer to two digit hex string Return Value: the character value of the hex string ===================================================================*/ char HexToChar(LPSTR szHex) { char chResult, chDigit; chDigit = (char)CharUpperA((LPSTR)szHex[0]); chResult = (chDigit >= 'A'? (chDigit - 'A' + 0xA) : (chDigit - '0')) << 4; chDigit = (char)CharUpperA((LPSTR)szHex[1]); chResult |= chDigit >= 'A'? (chDigit - 'A' + 0xA) : (chDigit - '0'); return chResult; } /*=================================================================== DecodeFromURL Convert two digit hex string to a hex byte WARNING: This function modifies the passed pszSource!! Note: this is part of bug 682, but we are not going to fix it for performance reasons. Just be aware that this function screws up the passed in string. Parameters: pszSource - in/out parameter points to a substring in the URL which contains a Name=Value pair szDelimiters - a set of delimiters for this field szDest - pointer to buffer to hold the substring Return Value: Returns the actual delimiter that caused parsing to halt. ===================================================================*/ char DecodeFromURL(char **pszSource, char *szDelimiters, char *szDest, UINT uCodePage, BOOL fIgnoreCase) { char ch; char *szSource = *pszSource; char *pszDestStart = szDest; CPINFO CpInfo; BOOL fIschLeadingByte = TRUE; BOOL InvalidPercent = FALSE; GetCPInfo(uCodePage, (LPCPINFO)&CpInfo); while ((ch = *szSource++) != '\0' && ((!strchr(szDelimiters, ch) && fIschLeadingByte) || (!fIschLeadingByte))) { InvalidPercent = FALSE; switch (ch) { case ' ': // skip whitespace - assume that all whitespace case '\t': // that we need is escaped case '\r': // all these chars are out of trailing byte range case '\n': case '\f': case '\v': Assert(fIschLeadingByte); continue; case '+': // '+' is out of trailing byte range, can never be a trailing byte *szDest++ = ' '; Assert(fIschLeadingByte); break; case '%': // '%' is out of trailing byte range, can never be a trailing byte if (*szSource == 'u') { if (isxdigit((UCHAR)*(szSource+1)) && isxdigit((UCHAR)*(szSource+2)) && isxdigit((UCHAR)*(szSource+3)) && isxdigit((UCHAR)*(szSource+4))) { WCHAR wch[2]; int cch = 1; wch[0] = (UCHAR)HexToChar(&szSource[1]) << 8; wch[0] |= (UCHAR)HexToChar(&szSource[3]); szSource += 5; // if the current UNICODE value falls into the // range of valid high-Surrogate, check to see if // the next character is in the low-Surrogate // range. if ((wch[0] >= 0xd800) && (wch[0] <= 0xdbff) && (szSource[0] == '%') && (szSource[1] == 'u') && isxdigit((UCHAR)szSource[2]) && isxdigit((UCHAR)szSource[3]) && isxdigit((UCHAR)szSource[4]) && isxdigit((UCHAR)szSource[5])) { // Well, the current UNICODE value is in the high // range and the next portion of the string is // a UNICODE encoding. Decode it. wch[1] = (UCHAR)HexToChar(&szSource[2]) << 8; wch[1] |= (UCHAR)HexToChar(&szSource[4]); // Now see if it falls in the range of low-Surrogates if ((wch[1] >= 0xdc00) && (wch[1] <= 0xdfff)) { // it does!!! Up the number of characters in the // string that WideCharToMultiByte is going to // convert. And advance the source string past this // location. cch = 2; szSource += 6; } } szDest += WideCharToMultiByte( uCodePage, 0, wch, cch, szDest, 6, NULL, NULL ); } else { // What to do here ? // since we have at least the u char after the %, // keep the u and let the show go on } break; } else { if (isxdigit((UCHAR)*szSource) && isxdigit((UCHAR)*(szSource+1))) { ch = HexToChar(szSource); szSource += 2; } else { // the spurious encoding MUST be removed InvalidPercent = TRUE; } } // FALL THROUGH to "Normal" case default: if (fIschLeadingByte == TRUE) { if (CpInfo.MaxCharSize > 1) { // if this is a Leading byte, then, the next one is a trailing byte, we need // not process the next char even the next char is in szDelimiter, next char // is just the second byte of a DBCS char. if (IsDBCSLeadByteEx(uCodePage, ch)) fIschLeadingByte = FALSE; } } else { // A trailing byte // If we skip a DBCS trailing byte, then, the next char we check is a leading byte Assert(CpInfo.MaxCharSize == 2); fIschLeadingByte = TRUE; } if (!InvalidPercent) { *szDest++ = ch; } } } if (ch == '\0') // End of String - undo increment of szSource --szSource; *szDest = '\0'; if (fIgnoreCase) CharUpperA(pszDestStart); *pszSource = szSource; return ch; } /*------------------------------------------------------------------ * C S e r v V a r s I t e r a t o r */ /*=================================================================== CServVarsIterator::CServVarsIterator Constructor ===================================================================*/ CServVarsIterator::CServVarsIterator() { m_rgwszKeys = NULL; m_pwszKey = NULL; m_pwchAllHttp = NULL; m_cRefs = 1; m_cKeys = 0; } /*=================================================================== CServVarsIterator::~CServVarsIterator Destructor ===================================================================*/ CServVarsIterator::~CServVarsIterator() { delete m_rgwszKeys; delete m_pwchAllHttp; } /*=================================================================== CServVarsIterator::Init Initialize the iterator by: * Getting the value of ALL_HTTP, and parsing it to get the extra keys * creating a dynamic memory area to hold the ALL_HTTP keys * setting m_rgwszKeys by copying pointers from rgwszStandardKeys and from ALL_HTTP keys Parameters: pIReq - pointer to CIsapiReqInfo used to query for extra headers Return Value: Returns E_OUTOFMEMORY or S_OK ===================================================================*/ HRESULT CServVarsIterator::Init ( CIsapiReqInfo *pIReq ) { static wchar_t *rgwszStandardKeys[] = { L"ALL_HTTP", L"ALL_RAW", L"APPL_MD_PATH", L"APPL_PHYSICAL_PATH", L"AUTH_PASSWORD", L"AUTH_TYPE", L"AUTH_USER", L"CERT_COOKIE", L"CERT_FLAGS", L"CERT_ISSUER", L"CERT_KEYSIZE", L"CERT_SECRETKEYSIZE", L"CERT_SERIALNUMBER", L"CERT_SERVER_ISSUER", L"CERT_SERVER_SUBJECT", L"CERT_SUBJECT", L"CONTENT_LENGTH", L"CONTENT_TYPE", L"GATEWAY_INTERFACE", // Purposely left out of IIS 4.0 L"HTTP_CFG_ENC_CAPS", // Purposely left out of IIS 4.0 L"HTTP_REQ_PWD_EXPIRE", // Purposely left out of IIS 4.0 L"HTTP_REQ_REALM", L"HTTPS", L"HTTPS_KEYSIZE", L"HTTPS_SECRETKEYSIZE", L"HTTPS_SERVER_ISSUER", L"HTTPS_SERVER_SUBJECT", L"INSTANCE_ID", L"INSTANCE_META_PATH", L"LOCAL_ADDR", L"LOGON_USER", L"PATH_INFO", L"PATH_TRANSLATED", L"QUERY_STRING", L"REMOTE_ADDR", L"REMOTE_HOST", L"REMOTE_USER", L"REQUEST_METHOD", // Deleted bogus variable in IIS 4.0 L"SCRIPT_MAP", L"SCRIPT_NAME", L"SERVER_NAME", L"SERVER_PORT", L"SERVER_PORT_SECURE", L"SERVER_PROTOCOL", L"SERVER_SOFTWARE", // Purposely left out of IIS 4.0 L"UNMAPPED_REMOTE_USER", L"URL" }; const int cStandardKeys = sizeof(rgwszStandardKeys) / sizeof(rgwszStandardKeys[0]); // Style note: // // pwchExtraKeys points not to just one NUL terminated wide string // but a whole sequence of NUL terminated wide string followed by // a double NUL terminator. I therefore chose not to use the // standard "wsz" hungarian prefix, instead using "pwch" as // "pointer to wide characters" // int cwchAlloc = 0, cRequestHeaders = 0; DWORD dwHeaderSize = 0; STACK_BUFFER( extraKeysBuff, 2048 ); if (!SERVER_GET(pIReq, "ALL_HTTP", &extraKeysBuff, &dwHeaderSize)) { if (GetLastError() == E_OUTOFMEMORY) { return E_OUTOFMEMORY; } else { return E_FAIL; } } char *szExtraKeys = (char *)extraKeysBuff.QueryPtr(); CMBCSToWChar convStr; HRESULT hrConvResult; if (FAILED(hrConvResult = convStr.Init(szExtraKeys))) { return hrConvResult; } wchar_t *pwchExtraKeys = convStr.GetString(); if (! CreateKeys(pwchExtraKeys, &cwchAlloc, &cRequestHeaders)) { return E_FAIL; } // At this point, pwchExtraKeys has the strings. Copy them // into more permanent storage. // if (cwchAlloc) { Assert(pwchExtraKeys != NULL); if ((m_pwchAllHttp = new wchar_t [cwchAlloc]) == NULL) return E_OUTOFMEMORY; memcpy(m_pwchAllHttp, pwchExtraKeys, cwchAlloc * sizeof(wchar_t)); } else m_pwchAllHttp = NULL; // Allocate the array of keys, m_rgwszKeys, and copy the standard // ISAPI keys, the extra keys from the request headers, and a // terminating NULL to easily mark the end of an iteration. // if ((m_rgwszKeys = new wchar_t *[cStandardKeys + cRequestHeaders + 1]) == NULL) return E_OUTOFMEMORY; m_cKeys = cStandardKeys + cRequestHeaders; wchar_t **pwszKey = m_rgwszKeys; int i; for (i = 0; i < cStandardKeys; ++i) *pwszKey++ = rgwszStandardKeys[i]; wchar_t *pwch = m_pwchAllHttp; for (i = 0; i < cRequestHeaders; ++i) { *pwszKey++ = pwch; pwch = wcschr(pwch, L'\0') + 1; } // make sure that cRequestHeaders was equal to the actual number of strings // in the pwchAllHttp string table. (Do this by making sure that we stored // the exact amount of bytes and are now at the NULL terminator) // Assert (*pwch == L'\0' && (pwch - m_pwchAllHttp + 1) == cwchAlloc); *pwszKey = NULL; // terminate the array return Reset(); // reset the iterator } /*=================================================================== CServVarsIterator::CreateKeys Parse the string from Request.ServerVariables["ALL_HTTP"], then transform the string into a list of NUL terminated wide strings in place, terminated with a double NUL. Parameters: pwchKeys - Input: Contains the value of Request.ServerVariables["ALL_HTTP"] as a wide string Output: Contains the keys from Request.ServerVariables["ALL_HTTP"], each key is separated by a NUL terminator, and the entire list of keys is terminated by a double NUL. pwchAlloc - Output: Contains the number of wide characters that should be allocated to contain the entire list of strings pointed to by pwchKeys pcRequestHeaders - Output: Contains the number of keys that were found in Request.ServerVariables["ALL_HTTP"]. Return Value: true if successful ===================================================================*/ BOOL CServVarsIterator::CreateKeys(wchar_t *pwchKeys, int *pcwchAlloc, int *pcRequestHeaders) { wchar_t *pwchSrc = pwchKeys; // source wchar_t *pwchDest = pwchKeys; // destination if (pwchKeys == NULL) { *pcwchAlloc = 0; *pcRequestHeaders = 0; return TRUE; } // Loop over pwchKeys until we hit the NUL terminator // *pcRequestHeaders = 0; while (*pwchSrc) { // Copy characters up to the ':' and store in pwchDest // while (*pwchSrc != L':') { if (*pwchSrc == L'\0') // WinSE 27000 { return FALSE; } *pwchDest++ = *pwchSrc++; } // now NUL terminate pwchDest, advance pwchSrc, increment cRequestHeaders // *pwchDest++ = L'\0'; ++pwchSrc; ++*pcRequestHeaders; // Skip characters until we find a \r OR \n // // If wcspbrk returns NULL here, it means there was no terminating // \r or \n. In this case we can exit the loop because there // are no more keys (the value must have ran to the end of the // string without termination) // pwchSrc = wcspbrk(pwchSrc, L"\r\n"); if (! pwchSrc) break; // we found either \r OR \n. Skip the remaining whitspace char. // while (*pwchSrc == L'\r' || *pwchSrc == L'\n') ++pwchSrc; // pwchSrc now points to the next key. } // terminate with the final NUL. *pwchDest++ = L'\0'; *pcwchAlloc = DIFF(pwchDest - pwchKeys); return TRUE; } /*=================================================================== CServVarsIterator::QueryInterface CServVarsIterator::AddRef CServVarsIterator::Release IUnknown members for CServVarsIterator object. ===================================================================*/ STDMETHODIMP CServVarsIterator::QueryInterface(REFIID iid, void **ppvObj) { if (iid == IID_IUnknown || iid == IID_IEnumVARIANT) { AddRef(); *ppvObj = this; return S_OK; } *ppvObj = NULL; return E_NOINTERFACE; } STDMETHODIMP_(ULONG) CServVarsIterator::AddRef() { return ++m_cRefs; } STDMETHODIMP_(ULONG) CServVarsIterator::Release() { if (--m_cRefs > 0) return m_cRefs; delete this; return 0; } /*=================================================================== CServVarsIterator::Clone Clone this iterator (standard method) NOTE: Cloning this iterator is quite involved. (It essentially involves copying the allocated memory, then adjusting ONLY the dynamic pointers in the rgwszKeys array.) Right now, this is NYI, as our client (VBScript) does not clone this iterator. ===================================================================*/ STDMETHODIMP CServVarsIterator::Clone(IEnumVARIANT **ppEnumReturn) { return E_NOTIMPL; } /*=================================================================== CServVarsIterator::Next Get next value (standard method) To rehash standard OLE semantics: We get the next "cElements" from the collection and store them in "rgVariant" which holds at least "cElements" items. On return "*pcElementsFetched" contains the actual number of elements stored. Returns S_FALSE if less than "cElements" were stored, S_OK otherwise. ===================================================================*/ STDMETHODIMP CServVarsIterator::Next(unsigned long cElementsRequested, VARIANT *rgVariant, unsigned long *pcElementsFetched) { // give a valid pointer value to 'pcElementsFetched' // unsigned long cElementsFetched; if (pcElementsFetched == NULL) pcElementsFetched = &cElementsFetched; // Loop through the collection until either we reach the end or // cElements becomes zero // unsigned long cElements = cElementsRequested; *pcElementsFetched = 0; while (cElements > 0 && *m_pwszKey != NULL) { BSTR bstrT = SysAllocString(*m_pwszKey); if (bstrT == NULL) return E_OUTOFMEMORY; V_VT(rgVariant) = VT_BSTR; V_BSTR(rgVariant) = bstrT; ++m_pwszKey; ++rgVariant; --cElements; ++*pcElementsFetched; } // initialize the remaining variants // while (cElements-- > 0) VariantInit(rgVariant++); return (*pcElementsFetched == cElementsRequested)? S_OK : S_FALSE; } /*=================================================================== CServVarsIterator::Skip Skip items (standard method) To rehash standard OLE semantics: We skip over the next "cElements" from the collection. Returns S_FALSE if less than "cElements" were skipped, S_OK otherwise. ===================================================================*/ STDMETHODIMP CServVarsIterator::Skip(unsigned long cElements) { /* Loop through the collection until either we reach the end or * cElements becomes zero */ while (cElements > 0 && *m_pwszKey != NULL) { --cElements; ++m_pwszKey; } return (cElements == 0)? S_OK : S_FALSE; } /*=================================================================== CServVarsIterator::Reset Reset the iterator (standard method) ===================================================================*/ STDMETHODIMP CServVarsIterator::Reset() { m_pwszKey = &m_rgwszKeys[0]; return S_OK; } /*------------------------------------------------------------------ * C R e q u e s t I t e r a t o r */ /*=================================================================== CRequestIterator::CRequestIterator Constructor NOTE: CRequest is (currently) not refcounted. AddRef/Release added to protect against future changes. ===================================================================*/ CRequestIterator::CRequestIterator(CRequest *pRequest, CollectionType Collection) { m_Collection = Collection; m_pRequest = pRequest; m_cRefs = 1; m_pRequestHit = NULL; // Init() will change this pointer anyway... m_pRequest->AddRef(); } /*=================================================================== CRequestIterator::CRequestIterator Destructor ===================================================================*/ CRequestIterator::~CRequestIterator() { m_pRequest->Release(); } /*=================================================================== CRequestIterator::Init Initialize the iterator by loading the collection that we are about to iterate over. Return Value: Returns E_FAIL if there were problems loading the collection, and possibly E_OUTOFMEMORY. ===================================================================*/ HRESULT CRequestIterator::Init() { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; switch (m_Collection) { case QUERYSTRING: if (m_pRequest->m_pData->m_fLoadQuery) { if (FAILED(m_pRequest->LoadVariables(QUERYSTRING, m_pRequest->GetIReq()->QueryPszQueryString(), m_pRequest->GetCodePage()))) return E_FAIL; m_pRequest->m_pData->m_fLoadQuery = FALSE; } break; case FORM: if (m_pRequest->m_pData->m_fLoadForm) { HRESULT hrGetData = m_pRequest->CopyClientData(); if (FAILED(hrGetData)) return hrGetData; if (FAILED(m_pRequest->LoadVariables(FORM, m_pRequest->m_pData->m_szFormData, m_pRequest->GetCodePage()))) return E_FAIL; m_pRequest->m_pData->m_fLoadForm = FALSE; } break; case COOKIE: if (m_pRequest->m_pData->m_fLoadCookies) { char *szCookie = m_pRequest->GetIReq()->QueryPszCookie(); if (FAILED(m_pRequest->LoadVariables(COOKIE, szCookie, m_pRequest->GetCodePage()))) return E_FAIL; m_pRequest->m_pData->m_fLoadCookies = FALSE; } break; case CLCERT: if (m_pRequest->m_pData->m_fLoadClCerts) { if (FAILED(m_pRequest->LoadVariables(CLCERT, (char*)m_pRequest->GetIReq(), m_pRequest->GetCodePage()))) return E_FAIL; m_pRequest->m_pData->m_fLoadClCerts = FALSE; } break; } return Reset(); } /*=================================================================== CRequestIterator::QueryInterface CRequestIterator::AddRef CRequestIterator::Release IUnknown members for CRequestIterator object. ===================================================================*/ STDMETHODIMP CRequestIterator::QueryInterface(REFIID iid, void **ppvObj) { if (iid == IID_IUnknown || iid == IID_IEnumVARIANT) { AddRef(); *ppvObj = this; return S_OK; } *ppvObj = NULL; return E_NOINTERFACE; } STDMETHODIMP_(ULONG) CRequestIterator::AddRef() { return ++m_cRefs; } STDMETHODIMP_(ULONG) CRequestIterator::Release() { if (--m_cRefs > 0) return m_cRefs; delete this; return 0; } /*=================================================================== CRequestIterator::Clone Clone this iterator (standard method) ===================================================================*/ STDMETHODIMP CRequestIterator::Clone(IEnumVARIANT **ppEnumReturn) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; CRequestIterator *pNewIterator = new CRequestIterator(m_pRequest, m_Collection); if (pNewIterator == NULL) return E_OUTOFMEMORY; // new iterator should point to same location as this. pNewIterator->m_pRequestHit = m_pRequestHit; *ppEnumReturn = pNewIterator; return S_OK; } /*=================================================================== CRequestIterator::Next Get next value (standard method) To rehash standard OLE semantics: We get the next "cElements" from the collection and store them in "rgVariant" which holds at least "cElements" items. On return "*pcElementsFetched" contains the actual number of elements stored. Returns S_FALSE if less than "cElements" were stored, S_OK otherwise. ===================================================================*/ STDMETHODIMP CRequestIterator::Next(unsigned long cElementsRequested, VARIANT *rgVariant, unsigned long *pcElementsFetched) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; // give a valid pointer value to 'pcElementsFetched' // unsigned long cElementsFetched; if (pcElementsFetched == NULL) pcElementsFetched = &cElementsFetched; // Loop through the collection until either we reach the end or // cElements becomes zero // unsigned long cElements = cElementsRequested; *pcElementsFetched = 0; while (cElements > 0 && m_pRequestHit != NULL) { BOOL fHaveData = FALSE; switch (m_Collection) { case QUERYSTRING: fHaveData = m_pRequestHit->m_pQueryData != NULL; break; case FORM: fHaveData = m_pRequestHit->m_pFormData != NULL; break; case COOKIE: fHaveData = m_pRequestHit->m_pCookieData != NULL; break; case CLCERT: fHaveData = m_pRequestHit->m_pClCertData != NULL; } if (fHaveData) { BSTR bstrT; if (FAILED(SysAllocStringFromSz(reinterpret_cast<char *>(m_pRequestHit->m_pKey), 0, &bstrT,m_pRequest->GetCodePage()))) return E_OUTOFMEMORY; V_VT(rgVariant) = VT_BSTR; V_BSTR(rgVariant) = bstrT; ++rgVariant; --cElements; ++*pcElementsFetched; } m_pRequestHit = static_cast<CRequestHit *>(m_pRequestHit->m_pPrev); } // initialize the remaining variants // while (cElements-- > 0) VariantInit(rgVariant++); return (*pcElementsFetched == cElementsRequested)? S_OK : S_FALSE; } /*=================================================================== CRequestIterator::Skip Skip items (standard method) To rehash standard OLE semantics: We skip over the next "cElements" from the collection. Returns S_FALSE if less than "cElements" were skipped, S_OK otherwise. ===================================================================*/ STDMETHODIMP CRequestIterator::Skip(unsigned long cElements) { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; /* Loop through the collection until either we reach the end or * cElements becomes zero */ while (cElements > 0 && m_pRequestHit != NULL) { BOOL fHaveData = FALSE; switch (m_Collection) { case QUERYSTRING: fHaveData = m_pRequestHit->m_pQueryData != NULL; break; case FORM: fHaveData = m_pRequestHit->m_pFormData != NULL; break; case COOKIE: fHaveData = m_pRequestHit->m_pCookieData != NULL; break; case CLCERT: fHaveData = m_pRequestHit->m_pClCertData != NULL; } if (fHaveData) --cElements; m_pRequestHit = static_cast<CRequestHit *>(m_pRequestHit->m_pPrev); } return (cElements == 0)? S_OK : S_FALSE; } /*=================================================================== CRequestIterator::Reset Reset the iterator (standard method) ===================================================================*/ STDMETHODIMP CRequestIterator::Reset() { if (FAILED(m_pRequest->CheckForTombstone())) return E_FAIL; m_pRequestHit = static_cast<CRequestHit *>(m_pRequest->GetStrings()->Tail()); return S_OK; }
[ "112426112@qq.com" ]
112426112@qq.com
cdbb76c613f64143285d3ca9b916651753e0acde
0d0e78c6262417fb1dff53901c6087b29fe260a0
/monitor/src/v20180724/model/MetricObjectMeaning.cpp
d5f22516e5067aa2e07e43adb9574ed1f62f5469
[ "Apache-2.0" ]
permissive
li5ch/tencentcloud-sdk-cpp
ae35ffb0c36773fd28e1b1a58d11755682ade2ee
12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4
refs/heads/master
2022-12-04T15:33:08.729850
2020-07-20T00:52:24
2020-07-20T00:52:24
281,135,686
1
0
Apache-2.0
2020-07-20T14:14:47
2020-07-20T14:14:46
null
UTF-8
C++
false
false
2,834
cpp
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <tencentcloud/monitor/v20180724/model/MetricObjectMeaning.h> using TencentCloud::CoreInternalOutcome; using namespace TencentCloud::Monitor::V20180724::Model; using namespace rapidjson; using namespace std; MetricObjectMeaning::MetricObjectMeaning() : m_enHasBeenSet(false), m_zhHasBeenSet(false) { } CoreInternalOutcome MetricObjectMeaning::Deserialize(const Value &value) { string requestId = ""; if (value.HasMember("En") && !value["En"].IsNull()) { if (!value["En"].IsString()) { return CoreInternalOutcome(Error("response `MetricObjectMeaning.En` IsString=false incorrectly").SetRequestId(requestId)); } m_en = string(value["En"].GetString()); m_enHasBeenSet = true; } if (value.HasMember("Zh") && !value["Zh"].IsNull()) { if (!value["Zh"].IsString()) { return CoreInternalOutcome(Error("response `MetricObjectMeaning.Zh` IsString=false incorrectly").SetRequestId(requestId)); } m_zh = string(value["Zh"].GetString()); m_zhHasBeenSet = true; } return CoreInternalOutcome(true); } void MetricObjectMeaning::ToJsonObject(Value &value, Document::AllocatorType& allocator) const { if (m_enHasBeenSet) { Value iKey(kStringType); string key = "En"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, Value(m_en.c_str(), allocator).Move(), allocator); } if (m_zhHasBeenSet) { Value iKey(kStringType); string key = "Zh"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, Value(m_zh.c_str(), allocator).Move(), allocator); } } string MetricObjectMeaning::GetEn() const { return m_en; } void MetricObjectMeaning::SetEn(const string& _en) { m_en = _en; m_enHasBeenSet = true; } bool MetricObjectMeaning::EnHasBeenSet() const { return m_enHasBeenSet; } string MetricObjectMeaning::GetZh() const { return m_zh; } void MetricObjectMeaning::SetZh(const string& _zh) { m_zh = _zh; m_zhHasBeenSet = true; } bool MetricObjectMeaning::ZhHasBeenSet() const { return m_zhHasBeenSet; }
[ "jimmyzhuang@tencent.com" ]
jimmyzhuang@tencent.com
e4a3e7ab1b33d80f6972db155a0a6ed402dcd51e
3851d34ce7b22b24526ce827a5f1ecac2f191de9
/cpp/tests/asiodnp3tests/src/mocks/LinkLayerRouterTest.cpp
e392370448dd23fecfa1c6a66abfcb3a70037c2d
[ "Apache-2.0" ]
permissive
wdtj/dnp3
e5773820b9eb9916e5a8d3636ae50fe62f881ff6
049de82fe0def2de3729b1918ac5a0fe490c0762
refs/heads/2.0.x
2020-04-06T03:47:33.745971
2016-11-02T20:27:43
2016-11-02T20:27:43
56,339,849
0
1
null
2016-04-15T17:59:44
2016-04-15T17:59:43
null
UTF-8
C++
false
false
1,345
cpp
/* * Licensed to Green Energy Corp (www.greenenergycorp.com) under one or * more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. * Green Energy Corp licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This project was forked on 01/01/2013 by Automatak, LLC and modifications * may have been made to this file. Automatak, LLC licenses these modifications * to you under the terms of the License. */ #include "LinkLayerRouterTest.h" using namespace openpal; namespace opendnp3 { LinkLayerRouterTest::LinkLayerRouterTest(uint32_t filters) : log(), exe(), phys(log.root.logger, exe), router(log.root.logger, exe, &phys, ChannelRetry(TimeDuration::Milliseconds(100), TimeDuration::Milliseconds(100)) ) { } }
[ "jadamcrain@gmail.com" ]
jadamcrain@gmail.com
cc7c72caac582ff2dc11b38cd9fa4743a86ae94d
1c51a13e885fa80b4f2d5d7a2c5a0deba82993ba
/base/vulkanandroid.cpp
ff599691b73cbd6206a17ec111d86b107425ce8f
[ "MIT" ]
permissive
GoldSciences/Vulkan
87a5cc2d01e16f2b15e640c851cae457a6ec0202
15fae8c7a9015984078a4390e39e3d36ae457510
refs/heads/master
2020-05-26T20:12:39.502987
2017-03-16T22:55:19
2017-03-16T22:55:19
82,500,407
1
0
null
2017-03-01T00:22:13
2017-02-20T00:32:00
C++
UTF-8
C++
false
false
19,345
cpp
/* * Android Vulkan function pointer loader * * Copyright (C) 2016 by Sascha Willems - www.saschawillems.de * * This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT) */ #include "vulkanandroid.h" #if defined(__ANDROID__) #include <android/log.h> #include <dlfcn.h> android_app* androidApp; PFN_vkCreateInstance vkCreateInstance; PFN_vkGetDeviceProcAddr vkGetDeviceProcAddr; PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr; PFN_vkCreateDevice vkCreateDevice; PFN_vkEnumeratePhysicalDevices vkEnumeratePhysicalDevices; PFN_vkGetPhysicalDeviceProperties vkGetPhysicalDeviceProperties; PFN_vkEnumerateDeviceExtensionProperties vkEnumerateDeviceExtensionProperties; PFN_vkEnumerateDeviceLayerProperties vkEnumerateDeviceLayerProperties; PFN_vkGetPhysicalDeviceFormatProperties vkGetPhysicalDeviceFormatProperties; PFN_vkGetPhysicalDeviceFeatures vkGetPhysicalDeviceFeatures; PFN_vkGetPhysicalDeviceQueueFamilyProperties vkGetPhysicalDeviceQueueFamilyProperties; PFN_vkGetPhysicalDeviceMemoryProperties vkGetPhysicalDeviceMemoryProperties; PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties; PFN_vkEnumerateInstanceLayerProperties vkEnumerateInstanceLayerProperties; PFN_vkCmdPipelineBarrier vkCmdPipelineBarrier; PFN_vkCreateShaderModule vkCreateShaderModule; PFN_vkCreateBuffer vkCreateBuffer; PFN_vkGetBufferMemoryRequirements vkGetBufferMemoryRequirements; PFN_vkMapMemory vkMapMemory; PFN_vkUnmapMemory vkUnmapMemory; PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges; PFN_vkInvalidateMappedMemoryRanges vkInvalidateMappedMemoryRanges; PFN_vkBindBufferMemory vkBindBufferMemory; PFN_vkDestroyBuffer vkDestroyBuffer; PFN_vkAllocateMemory vkAllocateMemory; PFN_vkBindImageMemory vkBindImageMemory; PFN_vkGetImageSubresourceLayout vkGetImageSubresourceLayout; PFN_vkCmdCopyBuffer vkCmdCopyBuffer; PFN_vkCmdCopyBufferToImage vkCmdCopyBufferToImage; PFN_vkCmdCopyImage vkCmdCopyImage; PFN_vkCmdBlitImage vkCmdBlitImage; PFN_vkCmdClearAttachments vkCmdClearAttachments; PFN_vkCreateSampler vkCreateSampler; PFN_vkDestroySampler vkDestroySampler; PFN_vkDestroyImage vkDestroyImage; PFN_vkFreeMemory vkFreeMemory; PFN_vkCreateRenderPass vkCreateRenderPass; PFN_vkCmdBeginRenderPass vkCmdBeginRenderPass; PFN_vkCmdEndRenderPass vkCmdEndRenderPass; PFN_vkCmdNextSubpass vkCmdNextSubpass; PFN_vkCmdExecuteCommands vkCmdExecuteCommands; PFN_vkCreateImage vkCreateImage; PFN_vkGetImageMemoryRequirements vkGetImageMemoryRequirements; PFN_vkCreateImageView vkCreateImageView; PFN_vkDestroyImageView vkDestroyImageView; PFN_vkCreateSemaphore vkCreateSemaphore; PFN_vkDestroySemaphore vkDestroySemaphore; PFN_vkCreateFence vkCreateFence; PFN_vkDestroyFence vkDestroyFence; PFN_vkWaitForFences vkWaitForFences; PFN_vkResetFences vkResetFences; PFN_vkCreateCommandPool vkCreateCommandPool; PFN_vkDestroyCommandPool vkDestroyCommandPool; PFN_vkAllocateCommandBuffers vkAllocateCommandBuffers; PFN_vkBeginCommandBuffer vkBeginCommandBuffer; PFN_vkEndCommandBuffer vkEndCommandBuffer; PFN_vkGetDeviceQueue vkGetDeviceQueue; PFN_vkQueueSubmit vkQueueSubmit; PFN_vkQueueWaitIdle vkQueueWaitIdle; PFN_vkDeviceWaitIdle vkDeviceWaitIdle; PFN_vkCreateFramebuffer vkCreateFramebuffer; PFN_vkCreatePipelineCache vkCreatePipelineCache; PFN_vkCreatePipelineLayout vkCreatePipelineLayout; PFN_vkCreateGraphicsPipelines vkCreateGraphicsPipelines; PFN_vkCreateComputePipelines vkCreateComputePipelines; PFN_vkCreateDescriptorPool vkCreateDescriptorPool; PFN_vkCreateDescriptorSetLayout vkCreateDescriptorSetLayout; PFN_vkAllocateDescriptorSets vkAllocateDescriptorSets; PFN_vkUpdateDescriptorSets vkUpdateDescriptorSets; PFN_vkCmdBindDescriptorSets vkCmdBindDescriptorSets; PFN_vkCmdBindPipeline vkCmdBindPipeline; PFN_vkCmdBindVertexBuffers vkCmdBindVertexBuffers; PFN_vkCmdBindIndexBuffer vkCmdBindIndexBuffer; PFN_vkCmdSetViewport vkCmdSetViewport; PFN_vkCmdSetScissor vkCmdSetScissor; PFN_vkCmdSetLineWidth vkCmdSetLineWidth; PFN_vkCmdSetDepthBias vkCmdSetDepthBias; PFN_vkCmdPushConstants vkCmdPushConstants; PFN_vkCmdDrawIndexed vkCmdDrawIndexed; PFN_vkCmdDraw vkCmdDraw; PFN_vkCmdDrawIndexedIndirect vkCmdDrawIndexedIndirect; PFN_vkCmdDrawIndirect vkCmdDrawIndirect; PFN_vkCmdDispatch vkCmdDispatch; PFN_vkDestroyPipeline vkDestroyPipeline; PFN_vkDestroyPipelineLayout vkDestroyPipelineLayout; PFN_vkDestroyDescriptorSetLayout vkDestroyDescriptorSetLayout; PFN_vkDestroyDevice vkDestroyDevice; PFN_vkDestroyInstance vkDestroyInstance; PFN_vkDestroyDescriptorPool vkDestroyDescriptorPool; PFN_vkFreeCommandBuffers vkFreeCommandBuffers; PFN_vkDestroyRenderPass vkDestroyRenderPass; PFN_vkDestroyFramebuffer vkDestroyFramebuffer; PFN_vkDestroyShaderModule vkDestroyShaderModule; PFN_vkDestroyPipelineCache vkDestroyPipelineCache; PFN_vkCreateQueryPool vkCreateQueryPool; PFN_vkDestroyQueryPool vkDestroyQueryPool; PFN_vkGetQueryPoolResults vkGetQueryPoolResults; PFN_vkCmdBeginQuery vkCmdBeginQuery; PFN_vkCmdEndQuery vkCmdEndQuery; PFN_vkCmdResetQueryPool vkCmdResetQueryPool; PFN_vkCmdCopyQueryPoolResults vkCmdCopyQueryPoolResults; PFN_vkCreateAndroidSurfaceKHR vkCreateAndroidSurfaceKHR; PFN_vkDestroySurfaceKHR vkDestroySurfaceKHR; void *libVulkan; namespace vks { namespace android { // Dynamically load Vulkan library and base function pointers bool loadVulkanLibrary() { __android_log_print(ANDROID_LOG_INFO, "vulkanandroid", "Loading libvulkan.so...\n"); // Load vulkan library libVulkan = dlopen("libvulkan.so", RTLD_NOW | RTLD_LOCAL); if (!libVulkan) { __android_log_print(ANDROID_LOG_INFO, "vulkanandroid", "Could not load vulkan library : %s!\n", dlerror()); return false; } // Load base function pointers vkEnumerateInstanceExtensionProperties = reinterpret_cast<PFN_vkEnumerateInstanceExtensionProperties>(dlsym(libVulkan, "vkEnumerateInstanceExtensionProperties")); vkEnumerateInstanceLayerProperties = reinterpret_cast<PFN_vkEnumerateInstanceLayerProperties>(dlsym(libVulkan, "vkEnumerateInstanceLayerProperties")); vkCreateInstance = reinterpret_cast<PFN_vkCreateInstance>(dlsym(libVulkan, "vkCreateInstance")); vkGetInstanceProcAddr = reinterpret_cast<PFN_vkGetInstanceProcAddr>(dlsym(libVulkan, "vkGetInstanceProcAddr")); vkGetDeviceProcAddr = reinterpret_cast<PFN_vkGetDeviceProcAddr>(dlsym(libVulkan, "vkGetDeviceProcAddr")); return true; } // Load instance based Vulkan function pointers void loadVulkanFunctions(VkInstance instance) { __android_log_print(ANDROID_LOG_INFO, "vulkanandroid", "Loading instance based function pointers...\n"); vkEnumeratePhysicalDevices = reinterpret_cast<PFN_vkEnumeratePhysicalDevices>(vkGetInstanceProcAddr(instance, "vkEnumeratePhysicalDevices")); vkGetPhysicalDeviceProperties = reinterpret_cast<PFN_vkGetPhysicalDeviceProperties>(vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceProperties")); vkEnumerateDeviceLayerProperties = reinterpret_cast<PFN_vkEnumerateDeviceLayerProperties>(vkGetInstanceProcAddr(instance, "vkEnumerateDeviceLayerProperties")); vkEnumerateDeviceExtensionProperties = reinterpret_cast<PFN_vkEnumerateDeviceExtensionProperties>(vkGetInstanceProcAddr(instance, "vkEnumerateDeviceExtensionProperties")); vkGetPhysicalDeviceQueueFamilyProperties = reinterpret_cast<PFN_vkGetPhysicalDeviceQueueFamilyProperties>(vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceQueueFamilyProperties")); vkGetPhysicalDeviceFeatures = reinterpret_cast<PFN_vkGetPhysicalDeviceFeatures>(vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceFeatures")); vkCreateDevice = reinterpret_cast<PFN_vkCreateDevice>(vkGetInstanceProcAddr(instance, "vkCreateDevice")); vkGetPhysicalDeviceFormatProperties = reinterpret_cast<PFN_vkGetPhysicalDeviceFormatProperties>(vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceFormatProperties")); vkGetPhysicalDeviceMemoryProperties = reinterpret_cast<PFN_vkGetPhysicalDeviceMemoryProperties>(vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceMemoryProperties")); vkCmdPipelineBarrier = reinterpret_cast<PFN_vkCmdPipelineBarrier>(vkGetInstanceProcAddr(instance, "vkCmdPipelineBarrier")); vkCreateShaderModule = reinterpret_cast<PFN_vkCreateShaderModule>(vkGetInstanceProcAddr(instance, "vkCreateShaderModule")); vkCreateBuffer = reinterpret_cast<PFN_vkCreateBuffer>(vkGetInstanceProcAddr(instance, "vkCreateBuffer")); vkGetBufferMemoryRequirements = reinterpret_cast<PFN_vkGetBufferMemoryRequirements>(vkGetInstanceProcAddr(instance, "vkGetBufferMemoryRequirements")); vkMapMemory = reinterpret_cast<PFN_vkMapMemory>(vkGetInstanceProcAddr(instance, "vkMapMemory")); vkUnmapMemory = reinterpret_cast<PFN_vkUnmapMemory>(vkGetInstanceProcAddr(instance, "vkUnmapMemory")); vkFlushMappedMemoryRanges = reinterpret_cast<PFN_vkFlushMappedMemoryRanges>(vkGetInstanceProcAddr(instance, "vkFlushMappedMemoryRanges")); vkInvalidateMappedMemoryRanges = reinterpret_cast<PFN_vkInvalidateMappedMemoryRanges>(vkGetInstanceProcAddr(instance, "vkInvalidateMappedMemoryRanges")); vkBindBufferMemory = reinterpret_cast<PFN_vkBindBufferMemory>(vkGetInstanceProcAddr(instance, "vkBindBufferMemory")); vkDestroyBuffer = reinterpret_cast<PFN_vkDestroyBuffer>(vkGetInstanceProcAddr(instance, "vkDestroyBuffer")); vkAllocateMemory = reinterpret_cast<PFN_vkAllocateMemory>(vkGetInstanceProcAddr(instance, "vkAllocateMemory")); vkFreeMemory = reinterpret_cast<PFN_vkFreeMemory>(vkGetInstanceProcAddr(instance, "vkFreeMemory")); vkCreateRenderPass = reinterpret_cast<PFN_vkCreateRenderPass>(vkGetInstanceProcAddr(instance, "vkCreateRenderPass")); vkCmdBeginRenderPass = reinterpret_cast<PFN_vkCmdBeginRenderPass>(vkGetInstanceProcAddr(instance, "vkCmdBeginRenderPass")); vkCmdEndRenderPass = reinterpret_cast<PFN_vkCmdEndRenderPass>(vkGetInstanceProcAddr(instance, "vkCmdEndRenderPass")); vkCmdNextSubpass = reinterpret_cast<PFN_vkCmdNextSubpass>(vkGetInstanceProcAddr(instance, "vkCmdNextSubpass")); vkCmdExecuteCommands = reinterpret_cast<PFN_vkCmdExecuteCommands>(vkGetInstanceProcAddr(instance, "vkCmdExecuteCommands")); vkCreateImage = reinterpret_cast<PFN_vkCreateImage>(vkGetInstanceProcAddr(instance, "vkCreateImage")); vkGetImageMemoryRequirements = reinterpret_cast<PFN_vkGetImageMemoryRequirements>(vkGetInstanceProcAddr(instance, "vkGetImageMemoryRequirements")); vkCreateImageView = reinterpret_cast<PFN_vkCreateImageView>(vkGetInstanceProcAddr(instance, "vkCreateImageView")); vkDestroyImageView = reinterpret_cast<PFN_vkDestroyImageView>(vkGetInstanceProcAddr(instance, "vkDestroyImageView")); vkBindImageMemory = reinterpret_cast<PFN_vkBindImageMemory>(vkGetInstanceProcAddr(instance, "vkBindImageMemory")); vkGetImageSubresourceLayout = reinterpret_cast<PFN_vkGetImageSubresourceLayout>(vkGetInstanceProcAddr(instance, "vkGetImageSubresourceLayout")); vkCmdCopyImage = reinterpret_cast<PFN_vkCmdCopyImage>(vkGetInstanceProcAddr(instance, "vkCmdCopyImage")); vkCmdBlitImage = reinterpret_cast<PFN_vkCmdBlitImage>(vkGetInstanceProcAddr(instance, "vkCmdBlitImage")); vkDestroyImage = reinterpret_cast<PFN_vkDestroyImage>(vkGetInstanceProcAddr(instance, "vkDestroyImage")); vkCmdClearAttachments = reinterpret_cast<PFN_vkCmdClearAttachments>(vkGetInstanceProcAddr(instance, "vkCmdClearAttachments")); vkCmdCopyBuffer = reinterpret_cast<PFN_vkCmdCopyBuffer>(vkGetInstanceProcAddr(instance, "vkCmdCopyBuffer")); vkCmdCopyBufferToImage = reinterpret_cast<PFN_vkCmdCopyBufferToImage>(vkGetInstanceProcAddr(instance, "vkCmdCopyBufferToImage")); vkCreateSampler = reinterpret_cast<PFN_vkCreateSampler>(vkGetInstanceProcAddr(instance, "vkCreateSampler")); vkDestroySampler = reinterpret_cast<PFN_vkDestroySampler>(vkGetInstanceProcAddr(instance, "vkDestroySampler"));; vkCreateSemaphore = reinterpret_cast<PFN_vkCreateSemaphore>(vkGetInstanceProcAddr(instance, "vkCreateSemaphore")); vkDestroySemaphore = reinterpret_cast<PFN_vkDestroySemaphore>(vkGetInstanceProcAddr(instance, "vkDestroySemaphore")); vkCreateFence = reinterpret_cast<PFN_vkCreateFence>(vkGetInstanceProcAddr(instance, "vkCreateFence")); vkDestroyFence = reinterpret_cast<PFN_vkDestroyFence>(vkGetInstanceProcAddr(instance, "vkDestroyFence")); vkWaitForFences = reinterpret_cast<PFN_vkWaitForFences>(vkGetInstanceProcAddr(instance, "vkWaitForFences")); vkResetFences = reinterpret_cast<PFN_vkResetFences>(vkGetInstanceProcAddr(instance, "vkResetFences"));; vkCreateCommandPool = reinterpret_cast<PFN_vkCreateCommandPool>(vkGetInstanceProcAddr(instance, "vkCreateCommandPool")); vkDestroyCommandPool = reinterpret_cast<PFN_vkDestroyCommandPool>(vkGetInstanceProcAddr(instance, "vkDestroyCommandPool"));; vkAllocateCommandBuffers = reinterpret_cast<PFN_vkAllocateCommandBuffers>(vkGetInstanceProcAddr(instance, "vkAllocateCommandBuffers")); vkBeginCommandBuffer = reinterpret_cast<PFN_vkBeginCommandBuffer>(vkGetInstanceProcAddr(instance, "vkBeginCommandBuffer")); vkEndCommandBuffer = reinterpret_cast<PFN_vkEndCommandBuffer>(vkGetInstanceProcAddr(instance, "vkEndCommandBuffer")); vkGetDeviceQueue = reinterpret_cast<PFN_vkGetDeviceQueue>(vkGetInstanceProcAddr(instance, "vkGetDeviceQueue")); vkQueueSubmit = reinterpret_cast<PFN_vkQueueSubmit>(vkGetInstanceProcAddr(instance, "vkQueueSubmit")); vkQueueWaitIdle = reinterpret_cast<PFN_vkQueueWaitIdle>(vkGetInstanceProcAddr(instance, "vkQueueWaitIdle")); vkDeviceWaitIdle = reinterpret_cast<PFN_vkDeviceWaitIdle>(vkGetInstanceProcAddr(instance, "vkDeviceWaitIdle")); vkCreateFramebuffer = reinterpret_cast<PFN_vkCreateFramebuffer>(vkGetInstanceProcAddr(instance, "vkCreateFramebuffer")); vkCreatePipelineCache = reinterpret_cast<PFN_vkCreatePipelineCache>(vkGetInstanceProcAddr(instance, "vkCreatePipelineCache")); vkCreatePipelineLayout = reinterpret_cast<PFN_vkCreatePipelineLayout>(vkGetInstanceProcAddr(instance, "vkCreatePipelineLayout")); vkCreateGraphicsPipelines = reinterpret_cast<PFN_vkCreateGraphicsPipelines>(vkGetInstanceProcAddr(instance, "vkCreateGraphicsPipelines")); vkCreateComputePipelines = reinterpret_cast<PFN_vkCreateComputePipelines>(vkGetInstanceProcAddr(instance, "vkCreateComputePipelines")); vkCreateDescriptorPool = reinterpret_cast<PFN_vkCreateDescriptorPool>(vkGetInstanceProcAddr(instance, "vkCreateDescriptorPool")); vkCreateDescriptorSetLayout = reinterpret_cast<PFN_vkCreateDescriptorSetLayout>(vkGetInstanceProcAddr(instance, "vkCreateDescriptorSetLayout")); vkAllocateDescriptorSets = reinterpret_cast<PFN_vkAllocateDescriptorSets>(vkGetInstanceProcAddr(instance, "vkAllocateDescriptorSets")); vkUpdateDescriptorSets = reinterpret_cast<PFN_vkUpdateDescriptorSets>(vkGetInstanceProcAddr(instance, "vkUpdateDescriptorSets")); vkCmdBindDescriptorSets = reinterpret_cast<PFN_vkCmdBindDescriptorSets>(vkGetInstanceProcAddr(instance, "vkCmdBindDescriptorSets")); vkCmdBindPipeline = reinterpret_cast<PFN_vkCmdBindPipeline>(vkGetInstanceProcAddr(instance, "vkCmdBindPipeline")); vkCmdBindVertexBuffers = reinterpret_cast<PFN_vkCmdBindVertexBuffers>(vkGetInstanceProcAddr(instance, "vkCmdBindVertexBuffers")); vkCmdBindIndexBuffer = reinterpret_cast<PFN_vkCmdBindIndexBuffer>(vkGetInstanceProcAddr(instance, "vkCmdBindIndexBuffer")); vkCmdSetViewport = reinterpret_cast<PFN_vkCmdSetViewport>(vkGetInstanceProcAddr(instance, "vkCmdSetViewport")); vkCmdSetScissor = reinterpret_cast<PFN_vkCmdSetScissor>(vkGetInstanceProcAddr(instance, "vkCmdSetScissor")); vkCmdSetLineWidth = reinterpret_cast<PFN_vkCmdSetLineWidth>(vkGetInstanceProcAddr(instance, "vkCmdSetLineWidth")); vkCmdSetDepthBias = reinterpret_cast<PFN_vkCmdSetDepthBias>(vkGetInstanceProcAddr(instance, "vkCmdSetDepthBias")); vkCmdPushConstants = reinterpret_cast<PFN_vkCmdPushConstants>(vkGetInstanceProcAddr(instance, "vkCmdPushConstants"));; vkCmdDrawIndexed = reinterpret_cast<PFN_vkCmdDrawIndexed>(vkGetInstanceProcAddr(instance, "vkCmdDrawIndexed")); vkCmdDraw = reinterpret_cast<PFN_vkCmdDraw>(vkGetInstanceProcAddr(instance, "vkCmdDraw")); vkCmdDrawIndexedIndirect = reinterpret_cast<PFN_vkCmdDrawIndexedIndirect>(vkGetInstanceProcAddr(instance, "vkCmdDrawIndexedIndirect")); vkCmdDrawIndirect = reinterpret_cast<PFN_vkCmdDrawIndirect>(vkGetInstanceProcAddr(instance, "vkCmdDrawIndirect")); vkCmdDispatch = reinterpret_cast<PFN_vkCmdDispatch>(vkGetInstanceProcAddr(instance, "vkCmdDispatch")); vkDestroyPipeline = reinterpret_cast<PFN_vkDestroyPipeline>(vkGetInstanceProcAddr(instance, "vkDestroyPipeline")); vkDestroyPipelineLayout = reinterpret_cast<PFN_vkDestroyPipelineLayout>(vkGetInstanceProcAddr(instance, "vkDestroyPipelineLayout"));; vkDestroyDescriptorSetLayout = reinterpret_cast<PFN_vkDestroyDescriptorSetLayout>(vkGetInstanceProcAddr(instance, "vkDestroyDescriptorSetLayout")); vkDestroyDevice = reinterpret_cast<PFN_vkDestroyDevice>(vkGetInstanceProcAddr(instance, "vkDestroyDevice")); vkDestroyInstance = reinterpret_cast<PFN_vkDestroyInstance>(vkGetInstanceProcAddr(instance, "vkDestroyInstance")); vkDestroyDescriptorPool = reinterpret_cast<PFN_vkDestroyDescriptorPool>(vkGetInstanceProcAddr(instance, "vkDestroyDescriptorPool")); vkFreeCommandBuffers = reinterpret_cast<PFN_vkFreeCommandBuffers>(vkGetInstanceProcAddr(instance, "vkFreeCommandBuffers")); vkDestroyRenderPass = reinterpret_cast<PFN_vkDestroyRenderPass>(vkGetInstanceProcAddr(instance, "vkDestroyRenderPass")); vkDestroyFramebuffer = reinterpret_cast<PFN_vkDestroyFramebuffer>(vkGetInstanceProcAddr(instance, "vkDestroyFramebuffer")); vkDestroyShaderModule = reinterpret_cast<PFN_vkDestroyShaderModule>(vkGetInstanceProcAddr(instance, "vkDestroyShaderModule")); vkDestroyPipelineCache = reinterpret_cast<PFN_vkDestroyPipelineCache>(vkGetInstanceProcAddr(instance, "vkDestroyPipelineCache")); vkCreateQueryPool = reinterpret_cast<PFN_vkCreateQueryPool>(vkGetInstanceProcAddr(instance, "vkCreateQueryPool")); vkDestroyQueryPool = reinterpret_cast<PFN_vkDestroyQueryPool>(vkGetInstanceProcAddr(instance, "vkDestroyQueryPool")); vkGetQueryPoolResults = reinterpret_cast<PFN_vkGetQueryPoolResults>(vkGetInstanceProcAddr(instance, "vkGetQueryPoolResults")); vkCmdBeginQuery = reinterpret_cast<PFN_vkCmdBeginQuery>(vkGetInstanceProcAddr(instance, "vkCmdBeginQuery")); vkCmdEndQuery = reinterpret_cast<PFN_vkCmdEndQuery>(vkGetInstanceProcAddr(instance, "vkCmdEndQuery")); vkCmdResetQueryPool = reinterpret_cast<PFN_vkCmdResetQueryPool>(vkGetInstanceProcAddr(instance, "vkCmdResetQueryPool")); vkCmdCopyQueryPoolResults = reinterpret_cast<PFN_vkCmdCopyQueryPoolResults>(vkGetInstanceProcAddr(instance, "vkCmdCopyQueryPoolResults")); vkCreateAndroidSurfaceKHR = reinterpret_cast<PFN_vkCreateAndroidSurfaceKHR>(vkGetInstanceProcAddr(instance, "vkCreateAndroidSurfaceKHR")); vkDestroySurfaceKHR = reinterpret_cast<PFN_vkDestroySurfaceKHR>(vkGetInstanceProcAddr(instance, "vkDestroySurfaceKHR")); } void freeVulkanLibrary() { dlclose(libVulkan); } int32_t getScreenDensity() { AConfiguration* config = AConfiguration_new(); AConfiguration_fromAssetManager(config, androidApp->activity->assetManager); int32_t density = AConfiguration_getDensity(config); AConfiguration_delete(config); return density; } } } #endif
[ "webmaster@saschawillems.de" ]
webmaster@saschawillems.de
115ab04d3a2389ec993ef71e545bfc2770bf7a4b
aa39c5dd8507a96ef249f2d6db78c9a1de0017d7
/main.cpp
e012146ca238736ed7d701e5c883eedbed8059e5
[]
no_license
Q1143316492/online-judge
41359b3e5d2dd2d7a908186db8f074a9252c907c
3d5a2ca9b491c7adde8aa4530088ae0054d8273b
refs/heads/master
2020-04-22T03:23:48.371574
2019-03-17T09:59:54
2019-03-17T09:59:54
170,085,223
2
0
null
null
null
null
UTF-8
C++
false
false
1,493
cpp
#include <bits/stdc++.h> #include "include/online_judge.h" #include "include/complication_cpp.h" #include "include/mydocker.h" #include "include/config.h" int main(int argc, char *argv[]) { std::cout << "========================Judging begin=========================" << std::endl; if(argc != 6) { std::cout << "========================Judging end=========================" << std::endl; exit(0); } //return 0; //test 2 ./judging/user_ac ./judging/1.in ./judging/user.out ./judging/1.out std::string time = argv[1]; //代码时间限制 std::string path = PROJECT_PATH + argv[2]; //代码可执行程序 std::string input_file = PROJECT_PATH + argv[3]; //标准输入测试案例 std::string output_file = PROJECT_PATH + argv[4]; //用户输出测试案例 std::string answer_file = PROJECT_PATH + argv[5]; //标准答案 int pid = fork(); RealResult result; problem problem(time, path, input_file, output_file, answer_file); if(pid < 0) { // log exit(0); } if(pid == 0) { online_judge::child_program(getpid(), problem); } else { result.begin_time = std::chrono::system_clock::now(); online_judge::father_program(getpid(), pid, problem, result); std::cout << result << std::endl; } std::cout << "========================Judging end=========================" << std::endl; return 0; }
[ "weilin1013@qq.com" ]
weilin1013@qq.com
b907943697ea8894b11713d3a76701a1aab285fd
c464b71b7936f4e0ddf9246992134a864dd02d64
/solidMechanicsTutorials/icoFsiElasticNonLinULSolidFoam/HronTurekFsi/fluid/0.2/V0
7586c42704ee49bf9933b57b60ec9a3f73355a60
[]
no_license
simuBT/foamyLatte
c11e69cb2e890e32e43e506934ccc31b40c4dc20
8f5263edb1b2ae92656ffb38437cc032eb8e4a53
refs/heads/master
2021-01-18T05:28:49.236551
2013-10-11T04:38:23
2013-10-11T04:38:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
249,926
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM Extend Project: Open source CFD | | \\ / O peration | Version: 1.6-ext | | \\ / A nd | Web: www.extend-project.de | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField::DimensionedInternalField; location "0.2"; object V0; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 0 0 0 0 0]; value nonuniform List<scalar> 20940 ( 1.17103e-06 1.038e-06 9.20958e-07 8.17922e-07 7.2715e-07 6.47125e-07 5.76522e-07 5.14182e-07 4.59093e-07 4.10371e-07 3.67243e-07 3.29032e-07 2.95147e-07 2.65069e-07 2.38343e-07 2.14571e-07 1.93405e-07 1.74537e-07 1.57699e-07 1.42656e-07 1.29201e-07 1.17154e-07 1.17118e-06 1.03813e-06 9.21076e-07 8.18026e-07 7.27243e-07 6.4721e-07 5.766e-07 5.14256e-07 4.59164e-07 4.1044e-07 3.67309e-07 3.29094e-07 2.95204e-07 2.6512e-07 2.3839e-07 2.14614e-07 1.93444e-07 1.74575e-07 1.57736e-07 1.42692e-07 1.29237e-07 1.17188e-07 1.17375e-06 1.04041e-06 9.23097e-07 8.19822e-07 7.28841e-07 6.48634e-07 5.77872e-07 5.15394e-07 4.60184e-07 4.11356e-07 3.68135e-07 3.2984e-07 2.95877e-07 2.65729e-07 2.38938e-07 2.15109e-07 1.93891e-07 1.74979e-07 1.58103e-07 1.43027e-07 1.29544e-07 1.1747e-07 1.17802e-06 1.04419e-06 9.2645e-07 8.22803e-07 7.31495e-07 6.50999e-07 5.79982e-07 5.17278e-07 4.61869e-07 4.12865e-07 3.69488e-07 3.31056e-07 2.96974e-07 2.66718e-07 2.39833e-07 2.15917e-07 1.94622e-07 1.75639e-07 1.58701e-07 1.43569e-07 1.30037e-07 1.1792e-07 1.18326e-06 1.04887e-06 9.30638e-07 8.26556e-07 7.34864e-07 6.54029e-07 5.82709e-07 5.19736e-07 4.64087e-07 4.14869e-07 3.71299e-07 3.32696e-07 2.9846e-07 2.68069e-07 2.41062e-07 2.17039e-07 1.95646e-07 1.76575e-07 1.59555e-07 1.44349e-07 1.30749e-07 1.18571e-07 1.19008e-06 1.05498e-06 9.36113e-07 8.3147e-07 7.39284e-07 6.58012e-07 5.86307e-07 5.22991e-07 4.67036e-07 4.17543e-07 3.73727e-07 3.34902e-07 3.00466e-07 2.69895e-07 2.42727e-07 2.18559e-07 1.97036e-07 1.77848e-07 1.60721e-07 1.45417e-07 1.31727e-07 1.19466e-07 1.19844e-06 1.0625e-06 9.42888e-07 8.37574e-07 7.44788e-07 6.62982e-07 5.90804e-07 5.27069e-07 4.70742e-07 4.20918e-07 3.76805e-07 3.37711e-07 3.03033e-07 2.72241e-07 2.44873e-07 2.20523e-07 1.98836e-07 1.79498e-07 1.62237e-07 1.4681e-07 1.33008e-07 1.20644e-07 1.20837e-06 1.07148e-06 9.51024e-07 8.44948e-07 7.51472e-07 6.69042e-07 5.96301e-07 5.32061e-07 4.75283e-07 4.25057e-07 3.80586e-07 3.41173e-07 3.06207e-07 2.75154e-07 2.47547e-07 2.2298e-07 2.01093e-07 1.81573e-07 1.64146e-07 1.4857e-07 1.34631e-07 1.22143e-07 1.21976e-06 1.08185e-06 9.60466e-07 8.53562e-07 7.59337e-07 6.76226e-07 6.02862e-07 5.3805e-07 4.80751e-07 4.3005e-07 3.85151e-07 3.45354e-07 3.10044e-07 2.78683e-07 2.50798e-07 2.25976e-07 2.03857e-07 1.84124e-07 1.66501e-07 1.50745e-07 1.36642e-07 1.24003e-07 1.23251e-06 1.09349e-06 9.71127e-07 8.63335e-07 7.68311e-07 6.84476e-07 6.10452e-07 5.45035e-07 4.87175e-07 4.35957e-07 3.90578e-07 3.50338e-07 3.14625e-07 2.82898e-07 2.54684e-07 2.29565e-07 2.07176e-07 1.87197e-07 1.69347e-07 1.5338e-07 1.39083e-07 1.26265e-07 1.24641e-06 1.10627e-06 9.82874e-07 8.74151e-07 7.78283e-07 6.93683e-07 6.18965e-07 5.52916e-07 4.94476e-07 4.42722e-07 3.96845e-07 3.56138e-07 3.19986e-07 2.87851e-07 2.59259e-07 2.33794e-07 2.11091e-07 1.90826e-07 1.72714e-07 1.56506e-07 1.41986e-07 1.2896e-07 1.26196e-06 1.12062e-06 9.96115e-07 8.86372e-07 7.89569e-07 7.04113e-07 6.28614e-07 5.61855e-07 5.02769e-07 4.50425e-07 4.04006e-07 3.62798e-07 3.26178e-07 2.93602e-07 2.64594e-07 2.38738e-07 2.15671e-07 1.9507e-07 1.7665e-07 1.60162e-07 1.45383e-07 1.3212e-07 1.2784e-06 1.1359e-06 1.01034e-06 8.99598e-07 8.01865e-07 7.1554e-07 6.3923e-07 5.71718e-07 5.11939e-07 4.58957e-07 4.11955e-07 3.70212e-07 3.33099e-07 3.00065e-07 2.70627e-07 2.44366e-07 2.20912e-07 1.99945e-07 1.81183e-07 1.64376e-07 1.49304e-07 1.3577e-07 1.29572e-06 1.15213e-06 1.02553e-06 9.13824e-07 8.15183e-07 7.28003e-07 6.50885e-07 5.82607e-07 5.22102e-07 4.68437e-07 4.20795e-07 3.78461e-07 3.40803e-07 3.07267e-07 2.77366e-07 2.50673e-07 2.26815e-07 2.05464e-07 1.86335e-07 1.69181e-07 1.5378e-07 1.39939e-07 1.31368e-06 1.16907e-06 1.0415e-06 9.28876e-07 8.29356e-07 7.41343e-07 6.63437e-07 5.94412e-07 5.33194e-07 4.78846e-07 4.3055e-07 3.87592e-07 3.49343e-07 3.15255e-07 2.8484e-07 2.57672e-07 2.33373e-07 2.11611e-07 1.92096e-07 1.74574e-07 1.58822e-07 1.44648e-07 1.24204e-06 1.10795e-06 9.89471e-07 8.84689e-07 7.91937e-07 7.09757e-07 6.36875e-07 5.72175e-07 5.14677e-07 4.63523e-07 4.17962e-07 3.77334e-07 3.41066e-07 3.08655e-07 2.7966e-07 2.53693e-07 2.3041e-07 2.09508e-07 1.90718e-07 1.73802e-07 1.58554e-07 1.44791e-07 1.21894e-06 1.08683e-06 9.70137e-07 8.66971e-07 7.75682e-07 6.94828e-07 6.23149e-07 5.59543e-07 5.03043e-07 4.52804e-07 4.08082e-07 3.68225e-07 3.32661e-07 3.00892e-07 2.7248e-07 2.47043e-07 2.24244e-07 2.03788e-07 1.85412e-07 1.68884e-07 1.53998e-07 1.40573e-07 1.19697e-06 1.06679e-06 9.51841e-07 8.50247e-07 7.6038e-07 6.80812e-07 6.10296e-07 5.47741e-07 4.92194e-07 4.4282e-07 3.98888e-07 3.59755e-07 3.24857e-07 2.93698e-07 2.65845e-07 2.40917e-07 2.18581e-07 1.98546e-07 1.80554e-07 1.6438e-07 1.49822e-07 1.36702e-07 1.17627e-06 1.04796e-06 9.34681e-07 8.34597e-07 7.46091e-07 6.67753e-07 5.98348e-07 5.36799e-07 4.82162e-07 4.3361e-07 3.90422e-07 3.51965e-07 3.17685e-07 2.87093e-07 2.5976e-07 2.35309e-07 2.13411e-07 1.93774e-07 1.76144e-07 1.60296e-07 1.46036e-07 1.33188e-07 1.15697e-06 1.03044e-06 9.18759e-07 8.20106e-07 7.32886e-07 6.55705e-07 5.87346e-07 5.26741e-07 4.72959e-07 4.25181e-07 3.82693e-07 3.4487e-07 3.11163e-07 2.81092e-07 2.54234e-07 2.30218e-07 2.08719e-07 1.89449e-07 1.72154e-07 1.56612e-07 1.42629e-07 1.30033e-07 1.13887e-06 1.01406e-06 9.03918e-07 8.06641e-07 7.20654e-07 6.4458e-07 5.77214e-07 5.17504e-07 4.64527e-07 4.17477e-07 3.75648e-07 3.3842e-07 3.05252e-07 2.75667e-07 2.49249e-07 2.25633e-07 2.04496e-07 1.85557e-07 1.68567e-07 1.53306e-07 1.39581e-07 1.27222e-07 1.12281e-06 9.99526e-07 8.90754e-07 7.94704e-07 7.09816e-07 6.34727e-07 5.68246e-07 5.09331e-07 4.57071e-07 4.10667e-07 3.69421e-07 3.32721e-07 3.0003e-07 2.70878e-07 2.44853e-07 2.21592e-07 2.00778e-07 1.82132e-07 1.65409e-07 1.50393e-07 1.36895e-07 1.24744e-07 1.10816e-06 9.86311e-07 8.78817e-07 7.83908e-07 7.00039e-07 6.25861e-07 5.60197e-07 5.02014e-07 4.50411e-07 4.04598e-07 3.63885e-07 3.27665e-07 2.95408e-07 2.66649e-07 2.40979e-07 2.18041e-07 1.97519e-07 1.79139e-07 1.62656e-07 1.47858e-07 1.34556e-07 1.22586e-07 1.09513e-06 9.74586e-07 8.68246e-07 7.74365e-07 6.91413e-07 6.18056e-07 5.53124e-07 4.95597e-07 4.44582e-07 3.99296e-07 3.59056e-07 3.23262e-07 2.91388e-07 2.62975e-07 2.37619e-07 2.14964e-07 1.947e-07 1.76552e-07 1.60281e-07 1.45675e-07 1.32547e-07 1.20734e-07 1.08374e-06 9.64342e-07 8.59027e-07 7.66057e-07 6.83918e-07 6.11284e-07 5.46999e-07 4.9005e-07 4.39551e-07 3.94729e-07 3.54904e-07 3.19483e-07 2.87944e-07 2.59833e-07 2.34748e-07 2.12338e-07 1.92296e-07 1.74349e-07 1.58261e-07 1.4382e-07 1.30843e-07 1.19168e-07 1.07395e-06 9.55556e-07 8.51133e-07 7.58956e-07 6.77521e-07 6.05514e-07 5.41788e-07 4.85338e-07 4.35285e-07 3.90862e-07 3.51395e-07 3.16294e-07 2.85043e-07 2.5719e-07 2.32338e-07 2.10138e-07 1.90284e-07 1.72508e-07 1.56574e-07 1.42273e-07 1.29424e-07 1.17864e-07 1.06571e-06 9.48176e-07 8.44512e-07 7.53008e-07 6.72171e-07 6.00697e-07 5.37445e-07 4.81416e-07 4.31741e-07 3.87653e-07 3.48487e-07 3.13656e-07 2.82647e-07 2.55011e-07 2.30354e-07 2.08329e-07 1.88634e-07 1.71e-07 1.55194e-07 1.41009e-07 1.28265e-07 1.168e-07 1.05897e-06 9.42139e-07 8.39101e-07 7.48153e-07 6.6781e-07 5.96774e-07 5.33912e-07 4.78232e-07 4.28865e-07 3.85055e-07 3.46135e-07 3.11525e-07 2.80713e-07 2.53255e-07 2.28756e-07 2.06876e-07 1.87308e-07 1.69791e-07 1.54089e-07 1.4e-07 1.2734e-07 1.15952e-07 1.05371e-06 9.37433e-07 8.34884e-07 7.4437e-07 6.64412e-07 5.93718e-07 5.3116e-07 4.7575e-07 4.26626e-07 3.83031e-07 3.44304e-07 3.09866e-07 2.79209e-07 2.51888e-07 2.27514e-07 2.05745e-07 1.86278e-07 1.68851e-07 1.53231e-07 1.39215e-07 1.26622e-07 1.15295e-07 1.04937e-06 9.33556e-07 8.31417e-07 7.41266e-07 6.61631e-07 5.91224e-07 5.2892e-07 4.73737e-07 4.24814e-07 3.81398e-07 3.42831e-07 3.08535e-07 2.78005e-07 2.50799e-07 2.26527e-07 2.04849e-07 1.85465e-07 1.68113e-07 1.52561e-07 1.38607e-07 1.26072e-07 1.14796e-07 1.17425e-06 1.04679e-06 9.3418e-07 8.34606e-07 7.46485e-07 6.68434e-07 5.99237e-07 5.37834e-07 4.83294e-07 4.34802e-07 3.91643e-07 3.5319e-07 3.18894e-07 2.88271e-07 2.60898e-07 2.36402e-07 2.14455e-07 1.94769e-07 1.77091e-07 1.61196e-07 1.46888e-07 1.33993e-07 1.17454e-06 1.04706e-06 9.34436e-07 8.34845e-07 7.4671e-07 6.68644e-07 5.99434e-07 5.38018e-07 4.83467e-07 4.34963e-07 3.91794e-07 3.53331e-07 3.19026e-07 2.88395e-07 2.61013e-07 2.3651e-07 2.14555e-07 1.94863e-07 1.77179e-07 1.61278e-07 1.46965e-07 1.34064e-07 1.17729e-06 1.04954e-06 9.36663e-07 8.36856e-07 7.48528e-07 6.70289e-07 6.00924e-07 5.3937e-07 4.84694e-07 4.36079e-07 3.92809e-07 3.54256e-07 3.1987e-07 2.89165e-07 2.61718e-07 2.37154e-07 2.15146e-07 1.95404e-07 1.77675e-07 1.61733e-07 1.47383e-07 1.3445e-07 1.18188e-06 1.05366e-06 9.40371e-07 8.40193e-07 7.51534e-07 6.73001e-07 6.03373e-07 5.41585e-07 4.86699e-07 4.37896e-07 3.94458e-07 3.55754e-07 3.21232e-07 2.90405e-07 2.62848e-07 2.38185e-07 2.16088e-07 1.96265e-07 1.78463e-07 1.62456e-07 1.48045e-07 1.35058e-07 1.18772e-06 1.05894e-06 9.45142e-07 8.44513e-07 7.55451e-07 6.76555e-07 6.06603e-07 5.44523e-07 4.89374e-07 4.40336e-07 3.96684e-07 3.57788e-07 3.23092e-07 2.92108e-07 2.64408e-07 2.39616e-07 2.17401e-07 1.97472e-07 1.79572e-07 1.63476e-07 1.48985e-07 1.35923e-07 1.19546e-06 1.06593e-06 9.51479e-07 8.50258e-07 7.60664e-07 6.81293e-07 6.10913e-07 5.48447e-07 4.92952e-07 4.43601e-07 3.99667e-07 3.60516e-07 3.25589e-07 2.94395e-07 2.66506e-07 2.41541e-07 2.1917e-07 1.99098e-07 1.81069e-07 1.64854e-07 1.50256e-07 1.37095e-07 1.20509e-06 1.07467e-06 9.59408e-07 8.57464e-07 7.6722e-07 6.87264e-07 6.16357e-07 5.53417e-07 4.97493e-07 4.47754e-07 4.03469e-07 3.64e-07 3.28784e-07 2.97329e-07 2.69201e-07 2.4402e-07 2.21451e-07 2.01199e-07 1.83004e-07 1.6664e-07 1.51903e-07 1.38616e-07 1.21671e-06 1.08523e-06 9.69023e-07 8.66225e-07 7.75211e-07 6.9456e-07 6.23026e-07 5.59518e-07 5.03081e-07 4.52875e-07 4.08168e-07 3.68315e-07 3.3275e-07 3.00977e-07 2.72559e-07 2.47113e-07 2.24302e-07 2.03829e-07 1.85432e-07 1.68882e-07 1.53975e-07 1.40532e-07 1.23038e-06 1.09769e-06 9.80394e-07 8.76612e-07 7.8471e-07 7.03255e-07 6.30993e-07 5.66824e-07 5.09786e-07 4.59036e-07 4.13832e-07 3.73526e-07 3.37549e-07 3.05399e-07 2.76637e-07 2.50876e-07 2.27776e-07 2.07039e-07 1.884e-07 1.71627e-07 1.56515e-07 1.42884e-07 1.24612e-06 1.11208e-06 9.93561e-07 8.88673e-07 7.95768e-07 7.13402e-07 6.40312e-07 5.75391e-07 5.17667e-07 4.66291e-07 4.20517e-07 3.7969e-07 3.43235e-07 3.10648e-07 2.81486e-07 2.55358e-07 2.31921e-07 2.10874e-07 1.9195e-07 1.74915e-07 1.59562e-07 1.45709e-07 1.26376e-06 1.12827e-06 1.00842e-06 9.02332e-07 8.08331e-07 7.24966e-07 6.50964e-07 5.8521e-07 5.26725e-07 4.74651e-07 4.28239e-07 3.86826e-07 3.49834e-07 3.16753e-07 2.87137e-07 2.60591e-07 2.3677e-07 2.15368e-07 1.96118e-07 1.78781e-07 1.6315e-07 1.49039e-07 1.28378e-06 1.14666e-06 1.02534e-06 9.17904e-07 8.22674e-07 7.38187e-07 6.63159e-07 5.96465e-07 5.37119e-07 4.84257e-07 4.3712e-07 3.95042e-07 3.57439e-07 3.23796e-07 2.93661e-07 2.66639e-07 2.42377e-07 2.2057e-07 2.00944e-07 1.83262e-07 1.6731e-07 1.52904e-07 1.30544e-06 1.16665e-06 1.0438e-06 9.34952e-07 8.38434e-07 7.52764e-07 6.76649e-07 6.08955e-07 5.48689e-07 4.94979e-07 4.4706e-07 4.04262e-07 3.65993e-07 3.31735e-07 3.01033e-07 2.73485e-07 2.48738e-07 2.26481e-07 2.06439e-07 1.8837e-07 1.72061e-07 1.57323e-07 1.32884e-06 1.18832e-06 1.06387e-06 9.53558e-07 8.55684e-07 7.68763e-07 6.91493e-07 6.22733e-07 5.61482e-07 5.06861e-07 4.58099e-07 4.1452e-07 3.75528e-07 3.40601e-07 3.09278e-07 2.81154e-07 2.55874e-07 2.33121e-07 2.12619e-07 1.94123e-07 1.77417e-07 1.6231e-07 1.3538e-06 1.21151e-06 1.08543e-06 9.73604e-07 8.74327e-07 7.86105e-07 7.07628e-07 6.37748e-07 5.75457e-07 5.1987e-07 4.70211e-07 4.25798e-07 3.86032e-07 3.50384e-07 3.18392e-07 2.89645e-07 2.63785e-07 2.40493e-07 2.19489e-07 2.00527e-07 1.83386e-07 1.67874e-07 1.3538e-06 1.21151e-06 1.08543e-06 9.73603e-07 8.74326e-07 7.86104e-07 7.07627e-07 6.37747e-07 5.75456e-07 5.19869e-07 4.7021e-07 4.25798e-07 3.86031e-07 3.50384e-07 3.18391e-07 2.89645e-07 2.63785e-07 2.40493e-07 2.19489e-07 2.00526e-07 1.83386e-07 1.67874e-07 1.32884e-06 1.18832e-06 1.06387e-06 9.53553e-07 8.55679e-07 7.68759e-07 6.91489e-07 6.2273e-07 5.61479e-07 5.06858e-07 4.58097e-07 4.14518e-07 3.75526e-07 3.40599e-07 3.09277e-07 2.81153e-07 2.55873e-07 2.3312e-07 2.12618e-07 1.94123e-07 1.77417e-07 1.6231e-07 1.30543e-06 1.16664e-06 1.04379e-06 9.34944e-07 8.38426e-07 7.52757e-07 6.76642e-07 6.08949e-07 5.48684e-07 4.94975e-07 4.47057e-07 4.04258e-07 3.6599e-07 3.31733e-07 3.01031e-07 2.73483e-07 2.48736e-07 2.26479e-07 2.06438e-07 1.88369e-07 1.7206e-07 1.57322e-07 1.28377e-06 1.14665e-06 1.02533e-06 9.17892e-07 8.22663e-07 7.38177e-07 6.6315e-07 5.96457e-07 5.37112e-07 4.84251e-07 4.37115e-07 3.95038e-07 3.57435e-07 3.23793e-07 2.93659e-07 2.66636e-07 2.42375e-07 2.20568e-07 2.00943e-07 1.83261e-07 1.67309e-07 1.52903e-07 1.26374e-06 1.12825e-06 1.00841e-06 9.02316e-07 8.08316e-07 7.24953e-07 6.50952e-07 5.85199e-07 5.26716e-07 4.74644e-07 4.28232e-07 3.8682e-07 3.49829e-07 3.16749e-07 2.87133e-07 2.60588e-07 2.36768e-07 2.15366e-07 1.96116e-07 1.78779e-07 1.63148e-07 1.49037e-07 1.24609e-06 1.11206e-06 9.93541e-07 8.88654e-07 7.9575e-07 7.13386e-07 6.40298e-07 5.75378e-07 5.17656e-07 4.66282e-07 4.20509e-07 3.79683e-07 3.43229e-07 3.10643e-07 2.81481e-07 2.55354e-07 2.31918e-07 2.10871e-07 1.91948e-07 1.74913e-07 1.5956e-07 1.45706e-07 1.23035e-06 1.09767e-06 9.80373e-07 8.76592e-07 7.84691e-07 7.03238e-07 6.30977e-07 5.66809e-07 5.09773e-07 4.59024e-07 4.13822e-07 3.73518e-07 3.37541e-07 3.05392e-07 2.76631e-07 2.50871e-07 2.27772e-07 2.07035e-07 1.88396e-07 1.71624e-07 1.56512e-07 1.42881e-07 1.21669e-06 1.08521e-06 9.69003e-07 8.66206e-07 7.75193e-07 6.94543e-07 6.2301e-07 5.59503e-07 5.03066e-07 4.52862e-07 4.08156e-07 3.68304e-07 3.3274e-07 3.00968e-07 2.72551e-07 2.47106e-07 2.24296e-07 2.03824e-07 1.85428e-07 1.68878e-07 1.53972e-07 1.40529e-07 1.20507e-06 1.07465e-06 9.59391e-07 8.57447e-07 7.67204e-07 6.87248e-07 6.16342e-07 5.53402e-07 4.97478e-07 4.4774e-07 4.03456e-07 3.63987e-07 3.28773e-07 2.97319e-07 2.69192e-07 2.44012e-07 2.21443e-07 2.01192e-07 1.82999e-07 1.66635e-07 1.51899e-07 1.38613e-07 1.19544e-06 1.06592e-06 9.51466e-07 8.50245e-07 7.60651e-07 6.8128e-07 6.109e-07 5.48434e-07 4.92939e-07 4.43587e-07 3.99654e-07 3.60503e-07 3.25576e-07 2.94383e-07 2.66495e-07 2.41531e-07 2.19161e-07 1.9909e-07 1.81062e-07 1.64849e-07 1.5025e-07 1.37091e-07 1.18771e-06 1.05892e-06 9.4513e-07 8.44501e-07 7.55439e-07 6.76544e-07 6.06592e-07 5.44512e-07 4.89364e-07 4.40324e-07 3.96673e-07 3.57776e-07 3.2308e-07 2.92096e-07 2.64396e-07 2.39605e-07 2.17391e-07 1.97462e-07 1.79565e-07 1.6347e-07 1.48981e-07 1.3592e-07 1.18187e-06 1.05365e-06 9.40359e-07 8.4018e-07 7.51521e-07 6.72989e-07 6.03362e-07 5.41574e-07 4.86689e-07 4.37887e-07 3.94449e-07 3.55745e-07 3.21222e-07 2.90395e-07 2.62838e-07 2.38176e-07 2.16078e-07 1.96257e-07 1.78455e-07 1.62449e-07 1.48041e-07 1.35053e-07 1.17728e-06 1.04953e-06 9.36655e-07 8.36846e-07 7.48517e-07 6.70277e-07 6.00913e-07 5.39359e-07 4.84684e-07 4.3607e-07 3.92801e-07 3.54249e-07 3.19863e-07 2.89158e-07 2.61711e-07 2.37147e-07 2.15139e-07 1.95398e-07 1.77668e-07 1.61729e-07 1.47378e-07 1.34446e-07 1.17455e-06 1.04707e-06 9.34439e-07 8.34846e-07 7.46708e-07 6.68639e-07 5.99427e-07 5.3801e-07 4.83458e-07 4.34955e-07 3.91787e-07 3.53326e-07 3.19022e-07 2.88392e-07 2.61011e-07 2.36507e-07 2.14554e-07 1.9486e-07 1.77176e-07 1.61274e-07 1.46961e-07 1.34061e-07 1.17427e-06 1.04681e-06 9.34196e-07 8.34619e-07 7.46496e-07 6.68441e-07 5.99241e-07 5.37835e-07 4.83293e-07 4.34799e-07 3.91639e-07 3.53187e-07 3.18891e-07 2.8827e-07 2.60898e-07 2.36403e-07 2.14456e-07 1.9477e-07 1.77091e-07 1.61195e-07 1.46885e-07 1.33989e-07 1.17432e-06 1.04685e-06 9.34236e-07 8.34657e-07 7.46532e-07 6.68475e-07 5.99274e-07 5.37866e-07 4.83321e-07 4.34825e-07 3.91663e-07 3.53208e-07 3.18911e-07 2.88287e-07 2.60913e-07 2.36416e-07 2.14468e-07 1.9478e-07 1.771e-07 1.61203e-07 1.46893e-07 1.33996e-07 1.1746e-06 1.04712e-06 9.34482e-07 8.34887e-07 7.46746e-07 6.68675e-07 5.99461e-07 5.38041e-07 4.83486e-07 4.3498e-07 3.9181e-07 3.53346e-07 3.1904e-07 2.88407e-07 2.61025e-07 2.3652e-07 2.14564e-07 1.94871e-07 1.77185e-07 1.61283e-07 1.46968e-07 1.34067e-07 1.17733e-06 1.04957e-06 9.36698e-07 8.36887e-07 7.48554e-07 6.70312e-07 6.00944e-07 5.39388e-07 4.84709e-07 4.36093e-07 3.92822e-07 3.54268e-07 3.19879e-07 2.89173e-07 2.61724e-07 2.37159e-07 2.1515e-07 1.95407e-07 1.77678e-07 1.61736e-07 1.47386e-07 1.34452e-07 1.18191e-06 1.05369e-06 9.40398e-07 8.40217e-07 7.51555e-07 6.7302e-07 6.0339e-07 5.416e-07 4.86712e-07 4.37907e-07 3.94467e-07 3.55761e-07 3.21237e-07 2.90409e-07 2.6285e-07 2.38187e-07 2.16088e-07 1.96266e-07 1.78463e-07 1.62457e-07 1.48047e-07 1.3506e-07 1.18774e-06 1.05896e-06 9.45164e-07 8.44533e-07 7.55468e-07 6.76571e-07 6.06617e-07 5.44535e-07 4.89384e-07 4.40343e-07 3.9669e-07 3.57792e-07 3.23093e-07 2.92109e-07 2.64407e-07 2.39616e-07 2.174e-07 1.97472e-07 1.79572e-07 1.63477e-07 1.48987e-07 1.35925e-07 1.19548e-06 1.06595e-06 9.51495e-07 8.50273e-07 7.60677e-07 6.81304e-07 6.10922e-07 5.48455e-07 4.92958e-07 4.43604e-07 3.9967e-07 3.60517e-07 3.25589e-07 2.94395e-07 2.66506e-07 2.41541e-07 2.1917e-07 1.99098e-07 1.8107e-07 1.64855e-07 1.50257e-07 1.37097e-07 1.2051e-06 1.07468e-06 9.59417e-07 8.57472e-07 7.67228e-07 6.8727e-07 6.16362e-07 5.53421e-07 4.97496e-07 4.47755e-07 4.0347e-07 3.64001e-07 3.28785e-07 2.9733e-07 2.69201e-07 2.44021e-07 2.21451e-07 2.012e-07 1.83005e-07 1.66642e-07 1.51904e-07 1.38618e-07 1.21671e-06 1.08524e-06 9.69026e-07 8.66228e-07 7.75214e-07 6.94563e-07 6.23028e-07 5.5952e-07 5.03082e-07 4.52877e-07 4.0817e-07 3.68316e-07 3.32751e-07 3.00978e-07 2.72561e-07 2.47115e-07 2.24304e-07 2.0383e-07 1.85435e-07 1.68883e-07 1.53978e-07 1.40534e-07 1.23038e-06 1.09769e-06 9.80394e-07 8.76612e-07 7.84711e-07 7.03256e-07 6.30994e-07 5.66825e-07 5.09788e-07 4.59037e-07 4.13834e-07 3.73529e-07 3.37552e-07 3.05401e-07 2.7664e-07 2.50879e-07 2.27779e-07 2.07041e-07 1.88402e-07 1.71629e-07 1.56517e-07 1.42886e-07 1.24611e-06 1.11208e-06 9.9356e-07 8.88673e-07 7.95768e-07 7.13403e-07 6.40314e-07 5.75393e-07 5.17669e-07 4.66294e-07 4.2052e-07 3.79693e-07 3.43239e-07 3.10652e-07 2.81489e-07 2.55362e-07 2.31925e-07 2.10878e-07 1.91953e-07 1.74918e-07 1.59565e-07 1.45711e-07 1.26376e-06 1.12827e-06 1.00842e-06 9.02333e-07 8.08332e-07 7.24968e-07 6.50967e-07 5.85213e-07 5.26728e-07 4.74655e-07 4.28243e-07 3.8683e-07 3.49838e-07 3.16757e-07 2.87141e-07 2.60595e-07 2.36774e-07 2.15372e-07 1.96121e-07 1.78784e-07 1.63153e-07 1.49042e-07 1.28378e-06 1.14667e-06 1.02535e-06 9.17908e-07 8.22678e-07 7.38191e-07 6.63163e-07 5.9647e-07 5.37124e-07 4.84262e-07 4.37125e-07 3.95047e-07 3.57443e-07 3.23801e-07 2.93666e-07 2.66643e-07 2.42381e-07 2.20574e-07 2.00948e-07 1.83265e-07 1.67313e-07 1.52906e-07 1.30544e-06 1.16666e-06 1.0438e-06 9.34959e-07 8.3844e-07 7.5277e-07 6.76655e-07 6.08961e-07 5.48695e-07 4.94985e-07 4.47066e-07 4.04267e-07 3.65998e-07 3.3174e-07 3.01038e-07 2.73489e-07 2.48742e-07 2.26484e-07 2.06442e-07 1.88373e-07 1.72064e-07 1.57325e-07 1.32885e-06 1.18833e-06 1.06388e-06 9.53567e-07 8.55692e-07 7.68771e-07 6.91501e-07 6.22741e-07 5.61489e-07 5.06867e-07 4.58105e-07 4.14526e-07 3.75534e-07 3.40606e-07 3.09283e-07 2.81159e-07 2.55878e-07 2.33125e-07 2.12623e-07 1.94127e-07 1.77421e-07 1.62313e-07 1.35381e-06 1.21153e-06 1.08544e-06 9.73615e-07 8.74338e-07 7.86115e-07 7.07638e-07 6.37757e-07 5.75465e-07 5.19878e-07 4.70219e-07 4.25805e-07 3.86038e-07 3.5039e-07 3.18397e-07 2.8965e-07 2.6379e-07 2.40497e-07 2.19493e-07 2.0053e-07 1.83389e-07 1.67877e-07 1.35381e-06 1.21153e-06 1.08544e-06 9.73616e-07 8.74338e-07 7.86116e-07 7.07638e-07 6.37757e-07 5.75465e-07 5.19878e-07 4.70219e-07 4.25805e-07 3.86038e-07 3.5039e-07 3.18397e-07 2.8965e-07 2.63789e-07 2.40497e-07 2.19493e-07 2.0053e-07 1.83389e-07 1.67876e-07 1.32886e-06 1.18833e-06 1.06388e-06 9.53569e-07 8.55694e-07 7.68773e-07 6.91502e-07 6.22742e-07 5.6149e-07 5.06868e-07 4.58106e-07 4.14526e-07 3.75534e-07 3.40606e-07 3.09283e-07 2.81159e-07 2.55878e-07 2.33125e-07 2.12622e-07 1.94126e-07 1.7742e-07 1.62313e-07 1.30545e-06 1.16666e-06 1.04381e-06 9.34963e-07 8.38444e-07 7.52773e-07 6.76657e-07 6.08963e-07 5.48696e-07 4.94986e-07 4.47067e-07 4.04267e-07 3.65998e-07 3.3174e-07 3.01037e-07 2.73489e-07 2.48741e-07 2.26484e-07 2.06442e-07 1.88373e-07 1.72064e-07 1.57325e-07 1.28379e-06 1.14667e-06 1.02535e-06 9.17914e-07 8.22683e-07 7.38195e-07 6.63167e-07 5.96472e-07 5.37126e-07 4.84263e-07 4.37126e-07 3.95047e-07 3.57443e-07 3.238e-07 2.93665e-07 2.66642e-07 2.4238e-07 2.20573e-07 2.00947e-07 1.83264e-07 1.67313e-07 1.52906e-07 1.26377e-06 1.12828e-06 1.00843e-06 9.0234e-07 8.08339e-07 7.24974e-07 6.50971e-07 5.85216e-07 5.2673e-07 4.74657e-07 4.28244e-07 3.8683e-07 3.49838e-07 3.16757e-07 2.8714e-07 2.60594e-07 2.36773e-07 2.15371e-07 1.9612e-07 1.78783e-07 1.63152e-07 1.49041e-07 1.24613e-06 1.11209e-06 9.93569e-07 8.88681e-07 7.95775e-07 7.13409e-07 6.40319e-07 5.75396e-07 5.17672e-07 4.66296e-07 4.20521e-07 3.79694e-07 3.43239e-07 3.10652e-07 2.81489e-07 2.55361e-07 2.31924e-07 2.10876e-07 1.91952e-07 1.74917e-07 1.59564e-07 1.4571e-07 1.23039e-06 1.0977e-06 9.80402e-07 8.76619e-07 7.84717e-07 7.03261e-07 6.30998e-07 5.66829e-07 5.09791e-07 4.5904e-07 4.13836e-07 3.7353e-07 3.37552e-07 3.05402e-07 2.76639e-07 2.50878e-07 2.27778e-07 2.07041e-07 1.88402e-07 1.71628e-07 1.56517e-07 1.42885e-07 1.21672e-06 1.08524e-06 9.6903e-07 8.66231e-07 7.75217e-07 6.94566e-07 6.23031e-07 5.59523e-07 5.03085e-07 4.52879e-07 4.08172e-07 3.68318e-07 3.32753e-07 3.00979e-07 2.72561e-07 2.47115e-07 2.24304e-07 2.0383e-07 1.85434e-07 1.68883e-07 1.53977e-07 1.40533e-07 1.2051e-06 1.07467e-06 9.59413e-07 8.57469e-07 7.67225e-07 6.87269e-07 6.16362e-07 5.53421e-07 4.97497e-07 4.47757e-07 4.03472e-07 3.64003e-07 3.28787e-07 2.97332e-07 2.69203e-07 2.44022e-07 2.21452e-07 2.01201e-07 1.83006e-07 1.66642e-07 1.51904e-07 1.38617e-07 1.19546e-06 1.06594e-06 9.51484e-07 8.50263e-07 7.60669e-07 6.81297e-07 6.10917e-07 5.48451e-07 4.92955e-07 4.43603e-07 3.9967e-07 3.60518e-07 3.25591e-07 2.94397e-07 2.66508e-07 2.41543e-07 2.19172e-07 1.99099e-07 1.8107e-07 1.64855e-07 1.50256e-07 1.37095e-07 1.18772e-06 1.05894e-06 9.45146e-07 8.44517e-07 7.55454e-07 6.76558e-07 6.06606e-07 5.44526e-07 4.89377e-07 4.40338e-07 3.96686e-07 3.5779e-07 3.23093e-07 2.92109e-07 2.64409e-07 2.39617e-07 2.17402e-07 1.97473e-07 1.79573e-07 1.63477e-07 1.48986e-07 1.35924e-07 1.18188e-06 1.05366e-06 9.40374e-07 8.40196e-07 7.51537e-07 6.73003e-07 6.03376e-07 5.41587e-07 4.86701e-07 4.37898e-07 3.9446e-07 3.55756e-07 3.21233e-07 2.90406e-07 2.62849e-07 2.38186e-07 2.16089e-07 1.96266e-07 1.78464e-07 1.62457e-07 1.48046e-07 1.35058e-07 1.17729e-06 1.04954e-06 9.36666e-07 8.36858e-07 7.48529e-07 6.7029e-07 6.00926e-07 5.39371e-07 4.84695e-07 4.3608e-07 3.9281e-07 3.54257e-07 3.19871e-07 2.89166e-07 2.61718e-07 2.37154e-07 2.15146e-07 1.95404e-07 1.77675e-07 1.61734e-07 1.47384e-07 1.3445e-07 1.17454e-06 1.04707e-06 9.34437e-07 8.34847e-07 7.46711e-07 6.68645e-07 5.99435e-07 5.38019e-07 4.83467e-07 4.34964e-07 3.91794e-07 3.53332e-07 3.19026e-07 2.88395e-07 2.61014e-07 2.3651e-07 2.14556e-07 1.94864e-07 1.77179e-07 1.61278e-07 1.46965e-07 1.34065e-07 1.17425e-06 1.04679e-06 9.3418e-07 8.34606e-07 7.46486e-07 6.68434e-07 5.99238e-07 5.37835e-07 4.83295e-07 4.34802e-07 3.91643e-07 3.5319e-07 3.18894e-07 2.88271e-07 2.60898e-07 2.36402e-07 2.14455e-07 1.94769e-07 1.77091e-07 1.61196e-07 1.46888e-07 1.33993e-07 1.17107e-06 1.17123e-06 1.1738e-06 1.17806e-06 1.1833e-06 1.19012e-06 1.19847e-06 1.20839e-06 1.21978e-06 1.23255e-06 1.24648e-06 1.26206e-06 1.2785e-06 1.29582e-06 1.3138e-06 1.24217e-06 1.21908e-06 1.19711e-06 1.17642e-06 1.15712e-06 1.13901e-06 1.12294e-06 1.10828e-06 1.09524e-06 1.08383e-06 1.07401e-06 1.06575e-06 1.05897e-06 1.05367e-06 1.04921e-06 1.03804e-06 1.03818e-06 1.04045e-06 1.04423e-06 1.04891e-06 1.05502e-06 1.06254e-06 1.07151e-06 1.08187e-06 1.09354e-06 1.10634e-06 1.12071e-06 1.13601e-06 1.15223e-06 1.16919e-06 1.10808e-06 1.08696e-06 1.06692e-06 1.04809e-06 1.03057e-06 1.01418e-06 9.99641e-07 9.86414e-07 9.74674e-07 9.64414e-07 9.55607e-07 9.48202e-07 9.42137e-07 9.374e-07 9.33413e-07 9.20998e-07 9.21118e-07 9.2314e-07 9.26493e-07 9.30681e-07 9.36155e-07 9.42926e-07 9.51056e-07 9.60497e-07 9.71167e-07 9.82938e-07 9.96206e-07 1.01043e-06 1.02562e-06 1.04161e-06 9.89586e-07 9.70253e-07 9.51952e-07 9.34793e-07 9.18868e-07 9.04021e-07 8.90851e-07 8.78902e-07 8.68318e-07 8.59085e-07 8.51173e-07 8.44531e-07 8.39096e-07 8.34852e-07 8.31289e-07 8.17959e-07 8.18066e-07 8.19864e-07 8.22844e-07 8.26597e-07 8.31512e-07 8.37613e-07 8.44981e-07 8.53593e-07 8.63373e-07 8.74208e-07 8.86455e-07 8.99688e-07 9.13909e-07 9.28968e-07 8.84791e-07 8.67074e-07 8.50344e-07 8.34693e-07 8.20199e-07 8.06728e-07 7.94784e-07 7.83977e-07 7.74423e-07 7.66103e-07 7.58986e-07 7.53021e-07 7.48146e-07 7.44339e-07 7.41151e-07 7.27184e-07 7.2728e-07 7.28881e-07 7.31535e-07 7.34903e-07 7.39324e-07 7.44827e-07 7.51505e-07 7.59368e-07 7.68346e-07 7.78332e-07 7.89641e-07 8.01948e-07 8.1526e-07 8.29437e-07 7.92027e-07 7.75773e-07 7.60464e-07 7.46173e-07 7.32965e-07 7.20727e-07 7.09882e-07 7.00096e-07 6.9146e-07 6.83954e-07 6.77544e-07 6.72179e-07 6.67801e-07 6.64383e-07 6.61527e-07 6.47157e-07 6.47243e-07 6.48671e-07 6.51037e-07 6.54065e-07 6.5805e-07 6.6302e-07 6.69076e-07 6.76256e-07 6.84508e-07 6.93725e-07 7.04175e-07 7.15616e-07 7.28075e-07 7.41414e-07 7.09835e-07 6.94908e-07 6.80885e-07 6.67822e-07 6.55772e-07 6.4464e-07 6.34781e-07 6.25908e-07 6.18093e-07 6.11311e-07 6.05531e-07 6.00701e-07 5.96764e-07 5.9369e-07 5.9113e-07 5.76551e-07 5.7663e-07 5.77905e-07 5.80017e-07 5.82743e-07 5.86341e-07 5.90839e-07 5.96333e-07 6.0289e-07 6.10481e-07 6.19001e-07 6.28666e-07 6.39298e-07 6.50951e-07 6.63499e-07 6.36942e-07 6.23219e-07 6.1036e-07 5.98407e-07 5.87401e-07 5.77264e-07 5.6829e-07 5.60234e-07 5.53153e-07 5.4702e-07 5.41799e-07 5.37445e-07 5.33901e-07 5.31134e-07 5.28836e-07 5.14209e-07 5.14283e-07 5.15423e-07 5.1731e-07 5.19768e-07 5.23021e-07 5.271e-07 5.32092e-07 5.38078e-07 5.45062e-07 5.52947e-07 5.61898e-07 5.71777e-07 5.82669e-07 5.94466e-07 5.72231e-07 5.59602e-07 5.47797e-07 5.36849e-07 5.26787e-07 5.17544e-07 5.09367e-07 5.02044e-07 4.9562e-07 4.90065e-07 4.85346e-07 4.81415e-07 4.7822e-07 4.75726e-07 4.73661e-07 4.59119e-07 4.59189e-07 4.6021e-07 4.61898e-07 4.64116e-07 4.67063e-07 4.70769e-07 4.75312e-07 4.80778e-07 4.87201e-07 4.94504e-07 5.02804e-07 5.11988e-07 5.22158e-07 5.33244e-07 5.14725e-07 5.03093e-07 4.92242e-07 4.82204e-07 4.72996e-07 4.6456e-07 4.57099e-07 4.50435e-07 4.44599e-07 4.39562e-07 4.3529e-07 4.31737e-07 4.28853e-07 4.26603e-07 4.24745e-07 4.10395e-07 4.10463e-07 4.1138e-07 4.12891e-07 4.14895e-07 4.17567e-07 4.20941e-07 4.25084e-07 4.30077e-07 4.35982e-07 4.42747e-07 4.50454e-07 4.58998e-07 4.68487e-07 4.78894e-07 4.63565e-07 4.52846e-07 4.42861e-07 4.33647e-07 4.25212e-07 4.17504e-07 4.10689e-07 4.04617e-07 3.99309e-07 3.94737e-07 3.90863e-07 3.87648e-07 3.85043e-07 3.8301e-07 3.81337e-07 3.67266e-07 3.6733e-07 3.68155e-07 3.69511e-07 3.71323e-07 3.73748e-07 3.76825e-07 3.8061e-07 3.85178e-07 3.90603e-07 3.96868e-07 4.0403e-07 4.11987e-07 4.20839e-07 4.30595e-07 4.18e-07 4.08117e-07 3.98922e-07 3.90453e-07 3.82719e-07 3.75669e-07 3.69439e-07 3.63899e-07 3.59065e-07 3.54909e-07 3.51394e-07 3.48481e-07 3.46123e-07 3.44285e-07 3.42776e-07 3.29053e-07 3.29114e-07 3.29859e-07 3.31076e-07 3.32717e-07 3.34921e-07 3.37728e-07 3.41194e-07 3.4538e-07 3.50364e-07 3.5616e-07 3.62819e-07 3.70238e-07 3.78498e-07 3.87634e-07 3.77369e-07 3.68255e-07 3.59783e-07 3.51991e-07 3.44891e-07 3.38438e-07 3.32735e-07 3.27675e-07 3.23269e-07 3.19485e-07 3.16292e-07 3.13649e-07 3.11513e-07 3.09848e-07 3.08486e-07 2.95166e-07 2.95223e-07 2.95895e-07 2.96992e-07 2.98478e-07 3.00483e-07 3.03048e-07 3.06224e-07 3.10068e-07 3.1465e-07 3.20008e-07 3.26197e-07 3.33121e-07 3.40834e-07 3.49381e-07 3.411e-07 3.32688e-07 3.24879e-07 3.17705e-07 3.11181e-07 3.05266e-07 3.00041e-07 2.95415e-07 2.91393e-07 2.87945e-07 2.8504e-07 2.8264e-07 2.80702e-07 2.79193e-07 2.77962e-07 2.65086e-07 2.65138e-07 2.65746e-07 2.66735e-07 2.68084e-07 2.69909e-07 2.72254e-07 2.75169e-07 2.78705e-07 2.82923e-07 2.87872e-07 2.93619e-07 3.00084e-07 3.07293e-07 3.15288e-07 3.08687e-07 3.00916e-07 2.93716e-07 2.87108e-07 2.81106e-07 2.75679e-07 2.70886e-07 2.66654e-07 2.62978e-07 2.59833e-07 2.57187e-07 2.55003e-07 2.53244e-07 2.51874e-07 2.50761e-07 2.38358e-07 2.38406e-07 2.38955e-07 2.39848e-07 2.41076e-07 2.42738e-07 2.44884e-07 2.47561e-07 2.50818e-07 2.54708e-07 2.59279e-07 2.6461e-07 2.70644e-07 2.77388e-07 2.84869e-07 2.79689e-07 2.72502e-07 2.6586e-07 2.59772e-07 2.54246e-07 2.49259e-07 2.4486e-07 2.40982e-07 2.3762e-07 2.34747e-07 2.32334e-07 2.30347e-07 2.28746e-07 2.27501e-07 2.26494e-07 2.14584e-07 2.14628e-07 2.15125e-07 2.15932e-07 2.17051e-07 2.18568e-07 2.20531e-07 2.22992e-07 2.25994e-07 2.29587e-07 2.33815e-07 2.38754e-07 2.44381e-07 2.50693e-07 2.57697e-07 2.53718e-07 2.47063e-07 2.4093e-07 2.35319e-07 2.30228e-07 2.25641e-07 2.21597e-07 2.18043e-07 2.14965e-07 2.12337e-07 2.10134e-07 2.08322e-07 2.06866e-07 2.05732e-07 2.0482e-07 1.93416e-07 1.93457e-07 1.93906e-07 1.94636e-07 1.95657e-07 1.97043e-07 1.98842e-07 2.01104e-07 2.03874e-07 2.07197e-07 2.1111e-07 2.15687e-07 2.20927e-07 2.26833e-07 2.33394e-07 2.30431e-07 2.24261e-07 2.18593e-07 2.13419e-07 2.08726e-07 2.04502e-07 2.00783e-07 1.97521e-07 1.947e-07 1.92294e-07 1.9028e-07 1.88627e-07 1.87299e-07 1.86266e-07 1.8544e-07 1.74546e-07 1.74586e-07 1.74992e-07 1.75653e-07 1.76586e-07 1.77854e-07 1.79503e-07 1.81583e-07 1.8414e-07 1.87215e-07 1.90843e-07 1.95086e-07 1.99961e-07 2.05481e-07 2.1163e-07 2.09525e-07 2.03802e-07 1.98556e-07 1.93781e-07 1.89454e-07 1.85562e-07 1.82135e-07 1.7914e-07 1.76552e-07 1.74347e-07 1.72504e-07 1.70994e-07 1.69783e-07 1.6884e-07 1.68092e-07 1.57707e-07 1.57746e-07 1.58115e-07 1.58714e-07 1.59565e-07 1.60727e-07 1.62241e-07 1.64155e-07 1.66516e-07 1.69364e-07 1.7273e-07 1.76666e-07 1.812e-07 1.86352e-07 1.92112e-07 1.90731e-07 1.85423e-07 1.80563e-07 1.7615e-07 1.72159e-07 1.6857e-07 1.65412e-07 1.62656e-07 1.60281e-07 1.58258e-07 1.5657e-07 1.55189e-07 1.54082e-07 1.53222e-07 1.52544e-07 1.42664e-07 1.42701e-07 1.43038e-07 1.43581e-07 1.44358e-07 1.45423e-07 1.46815e-07 1.48578e-07 1.50759e-07 1.53396e-07 1.56521e-07 1.60177e-07 1.64394e-07 1.69198e-07 1.74588e-07 1.73812e-07 1.68892e-07 1.64387e-07 1.60303e-07 1.56616e-07 1.53309e-07 1.50394e-07 1.47858e-07 1.45674e-07 1.43818e-07 1.4227e-07 1.41005e-07 1.39994e-07 1.39207e-07 1.38593e-07 1.29208e-07 1.29245e-07 1.29552e-07 1.30046e-07 1.30757e-07 1.31733e-07 1.33013e-07 1.34639e-07 1.36654e-07 1.39097e-07 1.41999e-07 1.45398e-07 1.49322e-07 1.53797e-07 1.58835e-07 1.58561e-07 1.54003e-07 1.49828e-07 1.46042e-07 1.42633e-07 1.39583e-07 1.36895e-07 1.34556e-07 1.32546e-07 1.30841e-07 1.2942e-07 1.28261e-07 1.27334e-07 1.26616e-07 1.26061e-07 1.1716e-07 1.17195e-07 1.17477e-07 1.17927e-07 1.18578e-07 1.19472e-07 1.2065e-07 1.22151e-07 1.24014e-07 1.26277e-07 1.28973e-07 1.32135e-07 1.35788e-07 1.39956e-07 1.44659e-07 1.44797e-07 1.40576e-07 1.36707e-07 1.33195e-07 1.30037e-07 1.27223e-07 1.24744e-07 1.22585e-07 1.20733e-07 1.19165e-07 1.17861e-07 1.16796e-07 1.15948e-07 1.15289e-07 1.14788e-07 1.2613e-06 1.2613e-06 1.26129e-06 1.26129e-06 1.26129e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26129e-06 1.26129e-06 1.26129e-06 1.2613e-06 1.2613e-06 1.26131e-06 1.26131e-06 1.26132e-06 1.26132e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26127e-06 1.26128e-06 1.26128e-06 1.26128e-06 1.26129e-06 1.26129e-06 1.2613e-06 1.2613e-06 1.26131e-06 1.26132e-06 1.26127e-06 1.26126e-06 1.26126e-06 1.26126e-06 1.26125e-06 1.26125e-06 1.26125e-06 1.26125e-06 1.26125e-06 1.26125e-06 1.26125e-06 1.26126e-06 1.26126e-06 1.26126e-06 1.26126e-06 1.26127e-06 1.26127e-06 1.26128e-06 1.26128e-06 1.26129e-06 1.26129e-06 1.2613e-06 1.2613e-06 1.26131e-06 1.26125e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26124e-06 1.26125e-06 1.26125e-06 1.26125e-06 1.26126e-06 1.26126e-06 1.26127e-06 1.26127e-06 1.26128e-06 1.26128e-06 1.26129e-06 1.2613e-06 1.2613e-06 1.26123e-06 1.26123e-06 1.26122e-06 1.26122e-06 1.26122e-06 1.26122e-06 1.26122e-06 1.26122e-06 1.26122e-06 1.26123e-06 1.26123e-06 1.26123e-06 1.26123e-06 1.26124e-06 1.26124e-06 1.26125e-06 1.26125e-06 1.26126e-06 1.26126e-06 1.26127e-06 1.26127e-06 1.26128e-06 1.26129e-06 1.26129e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26121e-06 1.26122e-06 1.26122e-06 1.26122e-06 1.26123e-06 1.26123e-06 1.26124e-06 1.26124e-06 1.26125e-06 1.26125e-06 1.26126e-06 1.26127e-06 1.26127e-06 1.26128e-06 1.26129e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.2612e-06 1.2612e-06 1.2612e-06 1.26121e-06 1.26121e-06 1.26122e-06 1.26122e-06 1.26123e-06 1.26123e-06 1.26124e-06 1.26124e-06 1.26125e-06 1.26125e-06 1.26126e-06 1.26127e-06 1.26128e-06 1.26116e-06 1.26116e-06 1.26117e-06 1.26117e-06 1.26117e-06 1.26117e-06 1.26117e-06 1.26118e-06 1.26118e-06 1.26119e-06 1.26119e-06 1.26119e-06 1.2612e-06 1.2612e-06 1.26121e-06 1.26121e-06 1.26122e-06 1.26122e-06 1.26123e-06 1.26124e-06 1.26124e-06 1.26125e-06 1.26126e-06 1.26126e-06 1.26114e-06 1.26114e-06 1.26114e-06 1.26115e-06 1.26115e-06 1.26115e-06 1.26116e-06 1.26116e-06 1.26116e-06 1.26117e-06 1.26117e-06 1.26118e-06 1.26118e-06 1.26119e-06 1.26119e-06 1.2612e-06 1.2612e-06 1.26121e-06 1.26122e-06 1.26122e-06 1.26123e-06 1.26124e-06 1.26124e-06 1.26125e-06 1.26112e-06 1.26112e-06 1.26112e-06 1.26113e-06 1.26113e-06 1.26113e-06 1.26114e-06 1.26114e-06 1.26115e-06 1.26115e-06 1.26116e-06 1.26116e-06 1.26117e-06 1.26117e-06 1.26118e-06 1.26118e-06 1.26119e-06 1.26119e-06 1.2612e-06 1.26121e-06 1.26122e-06 1.26122e-06 1.26123e-06 1.26124e-06 1.26109e-06 1.2611e-06 1.2611e-06 1.2611e-06 1.26111e-06 1.26111e-06 1.26112e-06 1.26112e-06 1.26113e-06 1.26113e-06 1.26114e-06 1.26114e-06 1.26115e-06 1.26115e-06 1.26116e-06 1.26117e-06 1.26117e-06 1.26118e-06 1.26119e-06 1.26119e-06 1.2612e-06 1.26121e-06 1.26122e-06 1.26123e-06 1.26107e-06 1.26107e-06 1.26107e-06 1.26108e-06 1.26108e-06 1.26109e-06 1.26109e-06 1.2611e-06 1.26111e-06 1.26111e-06 1.26112e-06 1.26112e-06 1.26113e-06 1.26113e-06 1.26114e-06 1.26115e-06 1.26115e-06 1.26116e-06 1.26117e-06 1.26118e-06 1.26119e-06 1.2612e-06 1.26121e-06 1.26122e-06 1.26104e-06 1.26104e-06 1.26105e-06 1.26105e-06 1.26106e-06 1.26106e-06 1.26107e-06 1.26108e-06 1.26108e-06 1.26109e-06 1.26109e-06 1.2611e-06 1.26111e-06 1.26111e-06 1.26112e-06 1.26113e-06 1.26114e-06 1.26115e-06 1.26116e-06 1.26117e-06 1.26118e-06 1.26119e-06 1.2612e-06 1.26121e-06 1.26101e-06 1.26101e-06 1.26102e-06 1.26102e-06 1.26103e-06 1.26104e-06 1.26104e-06 1.26105e-06 1.26106e-06 1.26106e-06 1.26107e-06 1.26108e-06 1.26109e-06 1.26109e-06 1.2611e-06 1.26111e-06 1.26112e-06 1.26114e-06 1.26115e-06 1.26116e-06 1.26117e-06 1.26118e-06 1.2612e-06 1.26121e-06 1.26098e-06 1.26098e-06 1.26099e-06 1.26099e-06 1.261e-06 1.26101e-06 1.26101e-06 1.26102e-06 1.26103e-06 1.26104e-06 1.26105e-06 1.26105e-06 1.26106e-06 1.26108e-06 1.26109e-06 1.2611e-06 1.26111e-06 1.26112e-06 1.26114e-06 1.26115e-06 1.26117e-06 1.26118e-06 1.2612e-06 1.26121e-06 1.26095e-06 1.26095e-06 1.26096e-06 1.26096e-06 1.26097e-06 1.26098e-06 1.26098e-06 1.26099e-06 1.261e-06 1.26101e-06 1.26102e-06 1.26103e-06 1.26105e-06 1.26106e-06 1.26107e-06 1.26109e-06 1.2611e-06 1.26112e-06 1.26113e-06 1.26115e-06 1.26116e-06 1.26118e-06 1.2612e-06 1.26121e-06 1.26091e-06 1.26092e-06 1.26092e-06 1.26093e-06 1.26094e-06 1.26094e-06 1.26095e-06 1.26096e-06 1.26097e-06 1.26099e-06 1.261e-06 1.26101e-06 1.26103e-06 1.26104e-06 1.26106e-06 1.26108e-06 1.26109e-06 1.26111e-06 1.26113e-06 1.26114e-06 1.26116e-06 1.26118e-06 1.2612e-06 1.26121e-06 1.26088e-06 1.26089e-06 1.26089e-06 1.2609e-06 1.2609e-06 1.26091e-06 1.26092e-06 1.26094e-06 1.26095e-06 1.26096e-06 1.26098e-06 1.261e-06 1.26101e-06 1.26103e-06 1.26105e-06 1.26107e-06 1.26109e-06 1.2611e-06 1.26112e-06 1.26114e-06 1.26116e-06 1.26118e-06 1.2612e-06 1.26122e-06 1.26085e-06 1.26085e-06 1.26086e-06 1.26086e-06 1.26087e-06 1.26088e-06 1.2609e-06 1.26091e-06 1.26093e-06 1.26094e-06 1.26096e-06 1.26098e-06 1.261e-06 1.26102e-06 1.26104e-06 1.26106e-06 1.26108e-06 1.2611e-06 1.26112e-06 1.26114e-06 1.26116e-06 1.26118e-06 1.2612e-06 1.26122e-06 1.26081e-06 1.26082e-06 1.26082e-06 1.26083e-06 1.26084e-06 1.26085e-06 1.26087e-06 1.26089e-06 1.2609e-06 1.26092e-06 1.26094e-06 1.26096e-06 1.26098e-06 1.26101e-06 1.26103e-06 1.26105e-06 1.26107e-06 1.26109e-06 1.26111e-06 1.26114e-06 1.26116e-06 1.26118e-06 1.2612e-06 1.26122e-06 1.26077e-06 1.26078e-06 1.26079e-06 1.2608e-06 1.26081e-06 1.26083e-06 1.26084e-06 1.26086e-06 1.26088e-06 1.2609e-06 1.26093e-06 1.26095e-06 1.26097e-06 1.26099e-06 1.26102e-06 1.26104e-06 1.26106e-06 1.26109e-06 1.26111e-06 1.26113e-06 1.26115e-06 1.26117e-06 1.2612e-06 1.26122e-06 1.26074e-06 1.26075e-06 1.26076e-06 1.26077e-06 1.26079e-06 1.2608e-06 1.26082e-06 1.26084e-06 1.26086e-06 1.26088e-06 1.26091e-06 1.26093e-06 1.26096e-06 1.26098e-06 1.26101e-06 1.26103e-06 1.26105e-06 1.26108e-06 1.2611e-06 1.26112e-06 1.26115e-06 1.26117e-06 1.26119e-06 1.26121e-06 1.2607e-06 1.26071e-06 1.26073e-06 1.26074e-06 1.26076e-06 1.26078e-06 1.2608e-06 1.26082e-06 1.26084e-06 1.26087e-06 1.26089e-06 1.26092e-06 1.26094e-06 1.26097e-06 1.26099e-06 1.26102e-06 1.26104e-06 1.26107e-06 1.26109e-06 1.26112e-06 1.26114e-06 1.26116e-06 1.26119e-06 1.26121e-06 1.26066e-06 1.26068e-06 1.2607e-06 1.26071e-06 1.26073e-06 1.26076e-06 1.26078e-06 1.2608e-06 1.26082e-06 1.26085e-06 1.26087e-06 1.2609e-06 1.26093e-06 1.26095e-06 1.26098e-06 1.261e-06 1.26103e-06 1.26106e-06 1.26108e-06 1.2611e-06 1.26113e-06 1.26115e-06 1.26118e-06 1.2612e-06 1.26062e-06 1.26064e-06 1.26066e-06 1.26069e-06 1.26071e-06 1.26073e-06 1.26076e-06 1.26078e-06 1.2608e-06 1.26083e-06 1.26086e-06 1.26088e-06 1.26091e-06 1.26094e-06 1.26096e-06 1.26099e-06 1.26101e-06 1.26104e-06 1.26107e-06 1.26109e-06 1.26111e-06 1.26114e-06 1.26116e-06 1.26118e-06 1.26058e-06 1.26061e-06 1.26063e-06 1.26066e-06 1.26068e-06 1.26071e-06 1.26073e-06 1.26076e-06 1.26078e-06 1.26081e-06 1.26084e-06 1.26086e-06 1.26089e-06 1.26092e-06 1.26094e-06 1.26097e-06 1.261e-06 1.26102e-06 1.26105e-06 1.26107e-06 1.2611e-06 1.26112e-06 1.26115e-06 1.26117e-06 1.26054e-06 1.26057e-06 1.2606e-06 1.26063e-06 1.26065e-06 1.26068e-06 1.26071e-06 1.26074e-06 1.26076e-06 1.26079e-06 1.26082e-06 1.26084e-06 1.26087e-06 1.2609e-06 1.26092e-06 1.26095e-06 1.26098e-06 1.261e-06 1.26103e-06 1.26105e-06 1.26108e-06 1.2611e-06 1.26113e-06 1.26115e-06 1.2605e-06 1.26053e-06 1.26056e-06 1.26059e-06 1.26062e-06 1.26065e-06 1.26068e-06 1.26071e-06 1.26074e-06 1.26077e-06 1.26079e-06 1.26082e-06 1.26085e-06 1.26087e-06 1.2609e-06 1.26093e-06 1.26095e-06 1.26098e-06 1.261e-06 1.26103e-06 1.26105e-06 1.26108e-06 1.2611e-06 1.26112e-06 1.26046e-06 1.26049e-06 1.26053e-06 1.26056e-06 1.26059e-06 1.26062e-06 1.26065e-06 1.26068e-06 1.26071e-06 1.26074e-06 1.26077e-06 1.2608e-06 1.26082e-06 1.26085e-06 1.26087e-06 1.2609e-06 1.26093e-06 1.26095e-06 1.26098e-06 1.261e-06 1.26102e-06 1.26105e-06 1.26107e-06 1.26109e-06 1.26042e-06 1.26045e-06 1.26049e-06 1.26052e-06 1.26056e-06 1.26059e-06 1.26062e-06 1.26066e-06 1.26068e-06 1.26071e-06 1.26074e-06 1.26077e-06 1.26079e-06 1.26082e-06 1.26085e-06 1.26087e-06 1.2609e-06 1.26092e-06 1.26094e-06 1.26097e-06 1.26099e-06 1.26101e-06 1.26103e-06 1.26106e-06 1.26037e-06 1.26041e-06 1.26045e-06 1.26048e-06 1.26052e-06 1.26056e-06 1.26059e-06 1.26062e-06 1.26065e-06 1.26068e-06 1.26071e-06 1.26074e-06 1.26076e-06 1.26079e-06 1.26081e-06 1.26084e-06 1.26086e-06 1.26088e-06 1.26091e-06 1.26093e-06 1.26095e-06 1.26098e-06 1.261e-06 1.26102e-06 1.26033e-06 1.26037e-06 1.26041e-06 1.26044e-06 1.26048e-06 1.26052e-06 1.26055e-06 1.26059e-06 1.26062e-06 1.26065e-06 1.26068e-06 1.26071e-06 1.26073e-06 1.26076e-06 1.26078e-06 1.2608e-06 1.26082e-06 1.26085e-06 1.26087e-06 1.26089e-06 1.26091e-06 1.26094e-06 1.26097e-06 1.26099e-06 1.26028e-06 1.26032e-06 1.26036e-06 1.2604e-06 1.26044e-06 1.26048e-06 1.26052e-06 1.26055e-06 1.26058e-06 1.26061e-06 1.26064e-06 1.26067e-06 1.26069e-06 1.26072e-06 1.26074e-06 1.26076e-06 1.26078e-06 1.2608e-06 1.26083e-06 1.26085e-06 1.26088e-06 1.26091e-06 1.26094e-06 1.26098e-06 1.26023e-06 1.26027e-06 1.26032e-06 1.26036e-06 1.2604e-06 1.26044e-06 1.26047e-06 1.26051e-06 1.26054e-06 1.26057e-06 1.2606e-06 1.26063e-06 1.26065e-06 1.26067e-06 1.2607e-06 1.26072e-06 1.26074e-06 1.26077e-06 1.26079e-06 1.26082e-06 1.26086e-06 1.2609e-06 1.26094e-06 1.26098e-06 1.26018e-06 1.26023e-06 1.26027e-06 1.26031e-06 1.26035e-06 1.26039e-06 1.26043e-06 1.26047e-06 1.2605e-06 1.26053e-06 1.26056e-06 1.26058e-06 1.26061e-06 1.26063e-06 1.26065e-06 1.26068e-06 1.2607e-06 1.26073e-06 1.26077e-06 1.26081e-06 1.26085e-06 1.2609e-06 1.26095e-06 1.261e-06 1.26013e-06 1.26018e-06 1.26022e-06 1.26026e-06 1.26031e-06 1.26035e-06 1.26038e-06 1.26042e-06 1.26045e-06 1.26048e-06 1.26051e-06 1.26054e-06 1.26056e-06 1.26059e-06 1.26061e-06 1.26064e-06 1.26067e-06 1.26071e-06 1.26075e-06 1.2608e-06 1.26086e-06 1.26091e-06 1.26097e-06 1.26103e-06 1.26008e-06 1.26013e-06 1.26017e-06 1.26022e-06 1.26026e-06 1.2603e-06 1.26034e-06 1.26037e-06 1.2604e-06 1.26043e-06 1.26046e-06 1.26049e-06 1.26052e-06 1.26054e-06 1.26058e-06 1.26061e-06 1.26066e-06 1.2607e-06 1.26076e-06 1.26081e-06 1.26087e-06 1.26094e-06 1.261e-06 1.26106e-06 1.26003e-06 1.26008e-06 1.26012e-06 1.26016e-06 1.26021e-06 1.26025e-06 1.26028e-06 1.26032e-06 1.26035e-06 1.26038e-06 1.26041e-06 1.26044e-06 1.26047e-06 1.26051e-06 1.26055e-06 1.2606e-06 1.26065e-06 1.26071e-06 1.26077e-06 1.26083e-06 1.2609e-06 1.26096e-06 1.26102e-06 1.26108e-06 1.25997e-06 1.26002e-06 1.26007e-06 1.26011e-06 1.26015e-06 1.26019e-06 1.26023e-06 1.26026e-06 1.2603e-06 1.26033e-06 1.26036e-06 1.2604e-06 1.26044e-06 1.26048e-06 1.26054e-06 1.26059e-06 1.26065e-06 1.26072e-06 1.26079e-06 1.26085e-06 1.26092e-06 1.26098e-06 1.26103e-06 1.26108e-06 1.25992e-06 1.25997e-06 1.26001e-06 1.26006e-06 1.2601e-06 1.26014e-06 1.26017e-06 1.26021e-06 1.26024e-06 1.26028e-06 1.26032e-06 1.26036e-06 1.26041e-06 1.26047e-06 1.26053e-06 1.2606e-06 1.26067e-06 1.26073e-06 1.2608e-06 1.26086e-06 1.26092e-06 1.26097e-06 1.26102e-06 1.26106e-06 1.25986e-06 1.25991e-06 1.25996e-06 1.26e-06 1.26004e-06 1.26008e-06 1.26012e-06 1.26015e-06 1.26019e-06 1.26023e-06 1.26028e-06 1.26033e-06 1.26039e-06 1.26046e-06 1.26053e-06 1.2606e-06 1.26067e-06 1.26074e-06 1.2608e-06 1.26086e-06 1.2609e-06 1.26094e-06 1.26098e-06 1.261e-06 1.2598e-06 1.25985e-06 1.2599e-06 1.25994e-06 1.25998e-06 1.26002e-06 1.26006e-06 1.2601e-06 1.26015e-06 1.26019e-06 1.26025e-06 1.26032e-06 1.26039e-06 1.26046e-06 1.26053e-06 1.26061e-06 1.26067e-06 1.26074e-06 1.26079e-06 1.26083e-06 1.26086e-06 1.26089e-06 1.26091e-06 1.26093e-06 1.25974e-06 1.25979e-06 1.25984e-06 1.25988e-06 1.25993e-06 1.25997e-06 1.26001e-06 1.26005e-06 1.2601e-06 1.26016e-06 1.26023e-06 1.2603e-06 1.26038e-06 1.26046e-06 1.26053e-06 1.2606e-06 1.26066e-06 1.26071e-06 1.26075e-06 1.26078e-06 1.2608e-06 1.26082e-06 1.26085e-06 1.26087e-06 1.25968e-06 1.25973e-06 1.25978e-06 1.25982e-06 1.25987e-06 1.25991e-06 1.25996e-06 1.26001e-06 1.26007e-06 1.26014e-06 1.26022e-06 1.2603e-06 1.26038e-06 1.26045e-06 1.26052e-06 1.26058e-06 1.26063e-06 1.26067e-06 1.2607e-06 1.26072e-06 1.26074e-06 1.26076e-06 1.2608e-06 1.26084e-06 1.25961e-06 1.25967e-06 1.25972e-06 1.25976e-06 1.25981e-06 1.25986e-06 1.25991e-06 1.25998e-06 1.26004e-06 1.26012e-06 1.2602e-06 1.26029e-06 1.26037e-06 1.26044e-06 1.2605e-06 1.26055e-06 1.26059e-06 1.26061e-06 1.26063e-06 1.26066e-06 1.26069e-06 1.26072e-06 1.26077e-06 1.26082e-06 1.25955e-06 1.2596e-06 1.25965e-06 1.2597e-06 1.25976e-06 1.25981e-06 1.25987e-06 1.25995e-06 1.26002e-06 1.26011e-06 1.26019e-06 1.26027e-06 1.26035e-06 1.26041e-06 1.26047e-06 1.2605e-06 1.26053e-06 1.26055e-06 1.26058e-06 1.26061e-06 1.26065e-06 1.2607e-06 1.26074e-06 1.26078e-06 1.25948e-06 1.25954e-06 1.25959e-06 1.25965e-06 1.25971e-06 1.25977e-06 1.25984e-06 1.25992e-06 1.26001e-06 1.26009e-06 1.26018e-06 1.26026e-06 1.26032e-06 1.26038e-06 1.26042e-06 1.26044e-06 1.26047e-06 1.26049e-06 1.26053e-06 1.26057e-06 1.26062e-06 1.26066e-06 1.2607e-06 1.26074e-06 1.25942e-06 1.25947e-06 1.25953e-06 1.25959e-06 1.25966e-06 1.25973e-06 1.25981e-06 1.2599e-06 1.25999e-06 1.26008e-06 1.26016e-06 1.26023e-06 1.26029e-06 1.26033e-06 1.26036e-06 1.26038e-06 1.26041e-06 1.26045e-06 1.26049e-06 1.26054e-06 1.26058e-06 1.26062e-06 1.26068e-06 1.26076e-06 1.25935e-06 1.25941e-06 1.25948e-06 1.25954e-06 1.25962e-06 1.2597e-06 1.25979e-06 1.25988e-06 1.25997e-06 1.26006e-06 1.26013e-06 1.26019e-06 1.26024e-06 1.26027e-06 1.2603e-06 1.26033e-06 1.26037e-06 1.26041e-06 1.26046e-06 1.26049e-06 1.26054e-06 1.2606e-06 1.2607e-06 1.26082e-06 1.25928e-06 1.25935e-06 1.25942e-06 1.2595e-06 1.25958e-06 1.25967e-06 1.25977e-06 1.25986e-06 1.25995e-06 1.26003e-06 1.2601e-06 1.26015e-06 1.26019e-06 1.26021e-06 1.26025e-06 1.26029e-06 1.26033e-06 1.26037e-06 1.26041e-06 1.26046e-06 1.26053e-06 1.26063e-06 1.26077e-06 1.26091e-06 1.25922e-06 1.25929e-06 1.25937e-06 1.25946e-06 1.25954e-06 1.25964e-06 1.25974e-06 1.25984e-06 1.25993e-06 1.26e-06 1.26006e-06 1.2601e-06 1.26013e-06 1.26016e-06 1.2602e-06 1.26025e-06 1.26029e-06 1.26033e-06 1.26037e-06 1.26044e-06 1.26055e-06 1.26068e-06 1.26083e-06 1.26096e-06 1.25915e-06 1.25924e-06 1.25932e-06 1.25942e-06 1.25951e-06 1.25962e-06 1.25972e-06 1.25982e-06 1.25989e-06 1.25996e-06 1.26001e-06 1.26005e-06 1.26008e-06 1.26012e-06 1.26016e-06 1.2602e-06 1.26024e-06 1.26028e-06 1.26035e-06 1.26045e-06 1.26058e-06 1.26072e-06 1.26085e-06 1.26094e-06 1.25909e-06 1.25918e-06 1.25928e-06 1.25938e-06 1.25948e-06 1.25959e-06 1.2597e-06 1.25979e-06 1.25986e-06 1.25992e-06 1.25996e-06 1.25999e-06 1.26003e-06 1.26008e-06 1.26012e-06 1.26016e-06 1.2602e-06 1.26026e-06 1.26035e-06 1.26047e-06 1.2606e-06 1.26072e-06 1.26081e-06 1.26086e-06 1.25903e-06 1.25913e-06 1.25924e-06 1.25935e-06 1.25946e-06 1.25957e-06 1.25967e-06 1.25975e-06 1.25982e-06 1.25987e-06 1.25991e-06 1.25994e-06 1.25999e-06 1.26004e-06 1.26007e-06 1.26011e-06 1.26016e-06 1.26024e-06 1.26036e-06 1.26048e-06 1.26059e-06 1.26068e-06 1.26072e-06 1.26075e-06 1.25897e-06 1.25908e-06 1.2592e-06 1.25932e-06 1.25943e-06 1.25954e-06 1.25964e-06 1.25972e-06 1.25978e-06 1.25982e-06 1.25986e-06 1.2599e-06 1.25995e-06 1.26e-06 1.26003e-06 1.26007e-06 1.26014e-06 1.26024e-06 1.26035e-06 1.26046e-06 1.26055e-06 1.2606e-06 1.26063e-06 1.26065e-06 1.25891e-06 1.25904e-06 1.25916e-06 1.25929e-06 1.2594e-06 1.25951e-06 1.25961e-06 1.25968e-06 1.25974e-06 1.25978e-06 1.25982e-06 1.25987e-06 1.25991e-06 1.25995e-06 1.25998e-06 1.26004e-06 1.26012e-06 1.26022e-06 1.26033e-06 1.26042e-06 1.26048e-06 1.26053e-06 1.26055e-06 1.26059e-06 1.25886e-06 1.259e-06 1.25913e-06 1.25926e-06 1.25938e-06 1.25948e-06 1.25957e-06 1.25964e-06 1.25969e-06 1.25974e-06 1.25978e-06 1.25983e-06 1.25987e-06 1.25991e-06 1.25994e-06 1.26001e-06 1.2601e-06 1.2602e-06 1.26029e-06 1.26036e-06 1.26042e-06 1.26046e-06 1.26051e-06 1.26056e-06 1.25881e-06 1.25895e-06 1.2591e-06 1.25923e-06 1.25935e-06 1.25945e-06 1.25954e-06 1.2596e-06 1.25965e-06 1.2597e-06 1.25975e-06 1.2598e-06 1.25983e-06 1.25986e-06 1.25991e-06 1.25998e-06 1.26007e-06 1.26016e-06 1.26024e-06 1.26031e-06 1.26037e-06 1.26043e-06 1.26049e-06 1.26055e-06 1.25876e-06 1.25892e-06 1.25906e-06 1.2592e-06 1.25932e-06 1.25942e-06 1.2595e-06 1.25956e-06 1.25961e-06 1.25966e-06 1.25972e-06 1.25976e-06 1.25979e-06 1.25982e-06 1.25987e-06 1.25995e-06 1.26003e-06 1.26012e-06 1.2602e-06 1.26028e-06 1.26035e-06 1.26041e-06 1.26048e-06 1.26055e-06 1.25871e-06 1.25888e-06 1.25903e-06 1.25917e-06 1.25929e-06 1.25939e-06 1.25947e-06 1.25953e-06 1.25958e-06 1.25963e-06 1.25968e-06 1.25972e-06 1.25975e-06 1.25978e-06 1.25983e-06 1.25991e-06 1.25999e-06 1.26008e-06 1.26017e-06 1.26026e-06 1.26033e-06 1.2604e-06 1.26047e-06 1.26055e-06 1.25867e-06 1.25885e-06 1.25901e-06 1.25915e-06 1.25926e-06 1.25936e-06 1.25943e-06 1.25949e-06 1.25955e-06 1.2596e-06 1.25965e-06 1.25968e-06 1.2597e-06 1.25974e-06 1.25979e-06 1.25987e-06 1.25995e-06 1.26005e-06 1.26016e-06 1.26025e-06 1.26033e-06 1.26039e-06 1.26047e-06 1.26056e-06 1.25863e-06 1.25881e-06 1.25898e-06 1.25912e-06 1.25924e-06 1.25933e-06 1.2594e-06 1.25946e-06 1.25952e-06 1.25958e-06 1.25962e-06 1.25964e-06 1.25966e-06 1.2597e-06 1.25975e-06 1.25982e-06 1.25992e-06 1.26004e-06 1.26016e-06 1.26025e-06 1.26032e-06 1.26038e-06 1.26047e-06 1.26056e-06 1.2586e-06 1.25879e-06 1.25895e-06 1.2591e-06 1.25921e-06 1.2593e-06 1.25937e-06 1.25944e-06 1.2595e-06 1.25955e-06 1.25959e-06 1.25961e-06 1.25962e-06 1.25965e-06 1.25971e-06 1.25979e-06 1.25991e-06 1.26004e-06 1.26017e-06 1.26026e-06 1.26031e-06 1.26038e-06 1.26047e-06 1.26056e-06 1.25857e-06 1.25876e-06 1.25893e-06 1.25907e-06 1.25919e-06 1.25928e-06 1.25935e-06 1.25941e-06 1.25948e-06 1.25953e-06 1.25956e-06 1.25957e-06 1.25958e-06 1.25961e-06 1.25967e-06 1.25977e-06 1.2599e-06 1.26006e-06 1.26018e-06 1.26025e-06 1.26031e-06 1.26038e-06 1.26048e-06 1.26057e-06 1.25854e-06 1.25874e-06 1.25891e-06 1.25905e-06 1.25917e-06 1.25926e-06 1.25933e-06 1.25939e-06 1.25946e-06 1.25951e-06 1.25953e-06 1.25953e-06 1.25954e-06 1.25957e-06 1.25964e-06 1.25975e-06 1.25992e-06 1.26008e-06 1.2602e-06 1.26025e-06 1.2603e-06 1.26039e-06 1.2605e-06 1.26057e-06 1.25852e-06 1.25872e-06 1.25889e-06 1.25903e-06 1.25915e-06 1.25924e-06 1.25931e-06 1.25938e-06 1.25944e-06 1.25949e-06 1.2595e-06 1.25949e-06 1.2595e-06 1.25954e-06 1.25961e-06 1.25975e-06 1.25994e-06 1.26011e-06 1.2602e-06 1.26024e-06 1.2603e-06 1.26041e-06 1.26051e-06 1.26057e-06 1.2585e-06 1.2587e-06 1.25888e-06 1.25902e-06 1.25913e-06 1.25922e-06 1.2593e-06 1.25937e-06 1.25943e-06 1.25947e-06 1.25947e-06 1.25946e-06 1.25947e-06 1.2595e-06 1.2596e-06 1.25976e-06 1.25997e-06 1.26014e-06 1.26021e-06 1.26024e-06 1.26031e-06 1.26043e-06 1.26052e-06 1.26057e-06 1.25849e-06 1.25869e-06 1.25886e-06 1.25901e-06 1.25912e-06 1.25921e-06 1.25929e-06 1.25936e-06 1.25942e-06 1.25945e-06 1.25944e-06 1.25943e-06 1.25944e-06 1.25948e-06 1.25959e-06 1.25978e-06 1.26001e-06 1.26016e-06 1.26021e-06 1.26024e-06 1.26033e-06 1.26045e-06 1.26053e-06 1.26057e-06 1.25849e-06 1.25868e-06 1.25886e-06 1.259e-06 1.25911e-06 1.2592e-06 1.25928e-06 1.25936e-06 1.25941e-06 1.25943e-06 1.25942e-06 1.2594e-06 1.25941e-06 1.25946e-06 1.2596e-06 1.25982e-06 1.26005e-06 1.26019e-06 1.26021e-06 1.26024e-06 1.26035e-06 1.26047e-06 1.26053e-06 1.26058e-06 1.25848e-06 1.25868e-06 1.25885e-06 1.25899e-06 1.2591e-06 1.2592e-06 1.25928e-06 1.25936e-06 1.25941e-06 1.25942e-06 1.25942e-06 1.25941e-06 1.2594e-06 1.25944e-06 1.25958e-06 1.25983e-06 1.26008e-06 1.26021e-06 1.26023e-06 1.26026e-06 1.26037e-06 1.26049e-06 1.26055e-06 1.2606e-06 1.30322e-06 1.30491e-06 1.30659e-06 1.30828e-06 1.30997e-06 1.31165e-06 1.31334e-06 1.31503e-06 1.31671e-06 1.3184e-06 1.32009e-06 1.32178e-06 1.32346e-06 1.32515e-06 1.32683e-06 1.32852e-06 1.3302e-06 1.33189e-06 1.33357e-06 1.33526e-06 1.33694e-06 1.33863e-06 1.34031e-06 1.342e-06 1.28288e-06 1.2845e-06 1.28613e-06 1.28775e-06 1.28938e-06 1.29101e-06 1.29263e-06 1.29426e-06 1.29588e-06 1.29751e-06 1.29913e-06 1.30076e-06 1.30238e-06 1.30401e-06 1.30563e-06 1.30726e-06 1.30888e-06 1.31051e-06 1.31213e-06 1.31375e-06 1.31538e-06 1.317e-06 1.31862e-06 1.32025e-06 1.26419e-06 1.26569e-06 1.2672e-06 1.2687e-06 1.27021e-06 1.27171e-06 1.27322e-06 1.27472e-06 1.27623e-06 1.27773e-06 1.27924e-06 1.28074e-06 1.28225e-06 1.28375e-06 1.28526e-06 1.28676e-06 1.28827e-06 1.28977e-06 1.29128e-06 1.29278e-06 1.29428e-06 1.29579e-06 1.29729e-06 1.29879e-06 1.24723e-06 1.24856e-06 1.24989e-06 1.25122e-06 1.25255e-06 1.25388e-06 1.25521e-06 1.25654e-06 1.25787e-06 1.2592e-06 1.26053e-06 1.26186e-06 1.2632e-06 1.26453e-06 1.26586e-06 1.26719e-06 1.26852e-06 1.26985e-06 1.27118e-06 1.27251e-06 1.27383e-06 1.27516e-06 1.27649e-06 1.27782e-06 1.23182e-06 1.23294e-06 1.23405e-06 1.23517e-06 1.23628e-06 1.2374e-06 1.23852e-06 1.23964e-06 1.24075e-06 1.24187e-06 1.24299e-06 1.24411e-06 1.24523e-06 1.24634e-06 1.24746e-06 1.24858e-06 1.2497e-06 1.25081e-06 1.25193e-06 1.25305e-06 1.25416e-06 1.25528e-06 1.25639e-06 1.25751e-06 1.21863e-06 1.21947e-06 1.22032e-06 1.22116e-06 1.22201e-06 1.22285e-06 1.22369e-06 1.22454e-06 1.22538e-06 1.22623e-06 1.22707e-06 1.22792e-06 1.22877e-06 1.22961e-06 1.23046e-06 1.23131e-06 1.23215e-06 1.233e-06 1.23384e-06 1.23469e-06 1.23553e-06 1.23637e-06 1.23722e-06 1.23806e-06 1.20717e-06 1.20771e-06 1.20825e-06 1.20879e-06 1.20934e-06 1.20988e-06 1.21042e-06 1.21096e-06 1.2115e-06 1.21205e-06 1.21259e-06 1.21313e-06 1.21368e-06 1.21422e-06 1.21477e-06 1.21531e-06 1.21586e-06 1.2164e-06 1.21695e-06 1.21749e-06 1.21803e-06 1.21858e-06 1.21912e-06 1.21966e-06 1.19756e-06 1.19778e-06 1.19799e-06 1.19821e-06 1.19842e-06 1.19863e-06 1.19885e-06 1.19906e-06 1.19927e-06 1.19948e-06 1.1997e-06 1.19991e-06 1.20013e-06 1.20035e-06 1.20056e-06 1.20078e-06 1.201e-06 1.20122e-06 1.20143e-06 1.20165e-06 1.20187e-06 1.20208e-06 1.20229e-06 1.20251e-06 1.18977e-06 1.18964e-06 1.18951e-06 1.18938e-06 1.18925e-06 1.18912e-06 1.18899e-06 1.18886e-06 1.18873e-06 1.1886e-06 1.18847e-06 1.18834e-06 1.18821e-06 1.18808e-06 1.18796e-06 1.18783e-06 1.1877e-06 1.18758e-06 1.18745e-06 1.18733e-06 1.1872e-06 1.18707e-06 1.18695e-06 1.18682e-06 1.18368e-06 1.18321e-06 1.18274e-06 1.18226e-06 1.18179e-06 1.18131e-06 1.18084e-06 1.18036e-06 1.17988e-06 1.17941e-06 1.17893e-06 1.17846e-06 1.17798e-06 1.17751e-06 1.17704e-06 1.17656e-06 1.17609e-06 1.17562e-06 1.17515e-06 1.17469e-06 1.17421e-06 1.17374e-06 1.17327e-06 1.1728e-06 1.17918e-06 1.17837e-06 1.17757e-06 1.17676e-06 1.17596e-06 1.17515e-06 1.17435e-06 1.17354e-06 1.17273e-06 1.17192e-06 1.17111e-06 1.1703e-06 1.1695e-06 1.16869e-06 1.16788e-06 1.16708e-06 1.16628e-06 1.16548e-06 1.16468e-06 1.16388e-06 1.16307e-06 1.16227e-06 1.16147e-06 1.16067e-06 1.1762e-06 1.17509e-06 1.17398e-06 1.17287e-06 1.17175e-06 1.17064e-06 1.16953e-06 1.16842e-06 1.1673e-06 1.16619e-06 1.16507e-06 1.16396e-06 1.16284e-06 1.16173e-06 1.16062e-06 1.1595e-06 1.15839e-06 1.15728e-06 1.15618e-06 1.15507e-06 1.15396e-06 1.15286e-06 1.15175e-06 1.15065e-06 1.17403e-06 1.17267e-06 1.17132e-06 1.16997e-06 1.16862e-06 1.16727e-06 1.16591e-06 1.16456e-06 1.16321e-06 1.16185e-06 1.1605e-06 1.15914e-06 1.15778e-06 1.15643e-06 1.15507e-06 1.15371e-06 1.15236e-06 1.15101e-06 1.14966e-06 1.14831e-06 1.14697e-06 1.14562e-06 1.14428e-06 1.14293e-06 1.17301e-06 1.17147e-06 1.16994e-06 1.1684e-06 1.16687e-06 1.16533e-06 1.16379e-06 1.16226e-06 1.16072e-06 1.15918e-06 1.15765e-06 1.15611e-06 1.15457e-06 1.15303e-06 1.15149e-06 1.14995e-06 1.14841e-06 1.14687e-06 1.14534e-06 1.14381e-06 1.14228e-06 1.14075e-06 1.13923e-06 1.1377e-06 1.17157e-06 1.16996e-06 1.16836e-06 1.16675e-06 1.16514e-06 1.16353e-06 1.16191e-06 1.1603e-06 1.15869e-06 1.15708e-06 1.15547e-06 1.15386e-06 1.15225e-06 1.15063e-06 1.14902e-06 1.14741e-06 1.14579e-06 1.14418e-06 1.14257e-06 1.14096e-06 1.13936e-06 1.13776e-06 1.13616e-06 1.13456e-06 1.17158e-06 1.16997e-06 1.16836e-06 1.16675e-06 1.16515e-06 1.16354e-06 1.16193e-06 1.16031e-06 1.1587e-06 1.15709e-06 1.15548e-06 1.15386e-06 1.15225e-06 1.15064e-06 1.14903e-06 1.14741e-06 1.1458e-06 1.14418e-06 1.14257e-06 1.14096e-06 1.13936e-06 1.13776e-06 1.13616e-06 1.13456e-06 1.17302e-06 1.17149e-06 1.16996e-06 1.16842e-06 1.16689e-06 1.16536e-06 1.16382e-06 1.16229e-06 1.16075e-06 1.15921e-06 1.15766e-06 1.15612e-06 1.15459e-06 1.15305e-06 1.15151e-06 1.14997e-06 1.14842e-06 1.14688e-06 1.14534e-06 1.14381e-06 1.14227e-06 1.14074e-06 1.13922e-06 1.13769e-06 1.17404e-06 1.17269e-06 1.17135e-06 1.17e-06 1.16865e-06 1.1673e-06 1.16595e-06 1.1646e-06 1.16325e-06 1.16189e-06 1.16053e-06 1.15917e-06 1.15781e-06 1.15645e-06 1.1551e-06 1.15374e-06 1.15238e-06 1.15102e-06 1.14966e-06 1.14831e-06 1.14695e-06 1.1456e-06 1.14426e-06 1.14292e-06 1.1762e-06 1.1751e-06 1.174e-06 1.17289e-06 1.17179e-06 1.17068e-06 1.16957e-06 1.16846e-06 1.16735e-06 1.16624e-06 1.16512e-06 1.16401e-06 1.16289e-06 1.16177e-06 1.16065e-06 1.15953e-06 1.15841e-06 1.1573e-06 1.15618e-06 1.15506e-06 1.15395e-06 1.15284e-06 1.15173e-06 1.15063e-06 1.17914e-06 1.17835e-06 1.17756e-06 1.17678e-06 1.17599e-06 1.17519e-06 1.17439e-06 1.17359e-06 1.17279e-06 1.17198e-06 1.17118e-06 1.17036e-06 1.16955e-06 1.16874e-06 1.16792e-06 1.16711e-06 1.1663e-06 1.16549e-06 1.16468e-06 1.16387e-06 1.16306e-06 1.16225e-06 1.16145e-06 1.16064e-06 1.1836e-06 1.18314e-06 1.18269e-06 1.18224e-06 1.1818e-06 1.18134e-06 1.18088e-06 1.18041e-06 1.17995e-06 1.17947e-06 1.179e-06 1.17852e-06 1.17804e-06 1.17756e-06 1.17708e-06 1.17659e-06 1.17611e-06 1.17563e-06 1.17516e-06 1.17468e-06 1.1742e-06 1.17372e-06 1.17324e-06 1.17277e-06 1.18967e-06 1.18954e-06 1.18942e-06 1.18932e-06 1.18922e-06 1.18912e-06 1.18902e-06 1.1889e-06 1.18878e-06 1.18866e-06 1.18853e-06 1.1884e-06 1.18827e-06 1.18814e-06 1.188e-06 1.18786e-06 1.18772e-06 1.18758e-06 1.18745e-06 1.18732e-06 1.18718e-06 1.18705e-06 1.18691e-06 1.18678e-06 1.19753e-06 1.19771e-06 1.1979e-06 1.19811e-06 1.19834e-06 1.19859e-06 1.19884e-06 1.19908e-06 1.19932e-06 1.19954e-06 1.19976e-06 1.19997e-06 1.20019e-06 1.2004e-06 1.2006e-06 1.20081e-06 1.20101e-06 1.20122e-06 1.20143e-06 1.20164e-06 1.20185e-06 1.20205e-06 1.20226e-06 1.20246e-06 1.2072e-06 1.2077e-06 1.2082e-06 1.20871e-06 1.20924e-06 1.20979e-06 1.21036e-06 1.21094e-06 1.21152e-06 1.21208e-06 1.21264e-06 1.21318e-06 1.21372e-06 1.21426e-06 1.2148e-06 1.21534e-06 1.21587e-06 1.2164e-06 1.21694e-06 1.21747e-06 1.21801e-06 1.21854e-06 1.21907e-06 1.2196e-06 1.21868e-06 1.21951e-06 1.22032e-06 1.22112e-06 1.22192e-06 1.22274e-06 1.22359e-06 1.22447e-06 1.22535e-06 1.22623e-06 1.2271e-06 1.22795e-06 1.2288e-06 1.22964e-06 1.23049e-06 1.23133e-06 1.23216e-06 1.233e-06 1.23383e-06 1.23467e-06 1.2355e-06 1.23634e-06 1.23717e-06 1.23799e-06 1.23185e-06 1.23297e-06 1.23408e-06 1.23516e-06 1.23623e-06 1.2373e-06 1.2384e-06 1.23952e-06 1.24067e-06 1.24183e-06 1.24298e-06 1.24412e-06 1.24524e-06 1.24636e-06 1.24748e-06 1.24859e-06 1.2497e-06 1.25081e-06 1.25192e-06 1.25302e-06 1.25413e-06 1.25523e-06 1.25633e-06 1.25743e-06 1.24724e-06 1.24857e-06 1.2499e-06 1.25123e-06 1.25253e-06 1.25381e-06 1.25509e-06 1.2564e-06 1.25774e-06 1.25911e-06 1.26048e-06 1.26185e-06 1.26319e-06 1.26453e-06 1.26586e-06 1.26719e-06 1.26852e-06 1.26984e-06 1.27116e-06 1.27247e-06 1.27379e-06 1.27511e-06 1.27642e-06 1.27773e-06 1.26422e-06 1.2657e-06 1.2672e-06 1.2687e-06 1.27019e-06 1.27167e-06 1.27312e-06 1.27458e-06 1.27607e-06 1.2776e-06 1.27914e-06 1.28069e-06 1.28222e-06 1.28374e-06 1.28525e-06 1.28676e-06 1.28826e-06 1.28976e-06 1.29125e-06 1.29274e-06 1.29423e-06 1.29572e-06 1.2972e-06 1.29868e-06 1.28293e-06 1.28453e-06 1.28613e-06 1.28774e-06 1.28936e-06 1.29097e-06 1.29255e-06 1.29412e-06 1.29571e-06 1.29733e-06 1.29899e-06 1.30067e-06 1.30233e-06 1.30398e-06 1.30561e-06 1.30724e-06 1.30886e-06 1.31048e-06 1.31209e-06 1.3137e-06 1.31531e-06 1.31692e-06 1.31852e-06 1.32012e-06 1.30327e-06 1.30494e-06 1.30661e-06 1.30827e-06 1.30994e-06 1.31161e-06 1.31327e-06 1.31491e-06 1.31655e-06 1.31821e-06 1.31991e-06 1.32164e-06 1.32337e-06 1.32509e-06 1.32679e-06 1.32848e-06 1.33017e-06 1.33185e-06 1.33353e-06 1.3352e-06 1.33687e-06 1.33853e-06 1.34019e-06 1.34185e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25673e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.25672e-06 1.17151e-06 1.1699e-06 1.1683e-06 1.16669e-06 1.16509e-06 1.16348e-06 1.16188e-06 1.16027e-06 1.15867e-06 1.15706e-06 1.15546e-06 1.15385e-06 1.15225e-06 1.15065e-06 1.14904e-06 1.14744e-06 1.14583e-06 1.14423e-06 1.14262e-06 1.14102e-06 1.13941e-06 1.13781e-06 1.1362e-06 1.1346e-06 1.17296e-06 1.17142e-06 1.16989e-06 1.16836e-06 1.16683e-06 1.1653e-06 1.16377e-06 1.16223e-06 1.1607e-06 1.15917e-06 1.15764e-06 1.15611e-06 1.15458e-06 1.15305e-06 1.15152e-06 1.14998e-06 1.14845e-06 1.14692e-06 1.14539e-06 1.14386e-06 1.14233e-06 1.1408e-06 1.13926e-06 1.13773e-06 1.17399e-06 1.17264e-06 1.17129e-06 1.16994e-06 1.16859e-06 1.16724e-06 1.16589e-06 1.16454e-06 1.16319e-06 1.16185e-06 1.1605e-06 1.15915e-06 1.1578e-06 1.15645e-06 1.1551e-06 1.15375e-06 1.1524e-06 1.15105e-06 1.1497e-06 1.14836e-06 1.14701e-06 1.14566e-06 1.14431e-06 1.14296e-06 1.17617e-06 1.17506e-06 1.17395e-06 1.17284e-06 1.17173e-06 1.17063e-06 1.16952e-06 1.16841e-06 1.1673e-06 1.16619e-06 1.16508e-06 1.16397e-06 1.16287e-06 1.16176e-06 1.16065e-06 1.15954e-06 1.15843e-06 1.15732e-06 1.15622e-06 1.15511e-06 1.154e-06 1.15289e-06 1.15178e-06 1.15067e-06 1.17916e-06 1.17836e-06 1.17755e-06 1.17675e-06 1.17595e-06 1.17514e-06 1.17434e-06 1.17354e-06 1.17273e-06 1.17193e-06 1.17113e-06 1.17033e-06 1.16952e-06 1.16872e-06 1.16792e-06 1.16712e-06 1.16631e-06 1.16551e-06 1.16471e-06 1.16391e-06 1.1631e-06 1.1623e-06 1.1615e-06 1.16069e-06 1.18367e-06 1.1832e-06 1.18273e-06 1.18226e-06 1.18178e-06 1.18131e-06 1.18084e-06 1.18037e-06 1.1799e-06 1.17942e-06 1.17895e-06 1.17848e-06 1.17801e-06 1.17754e-06 1.17707e-06 1.17659e-06 1.17612e-06 1.17565e-06 1.17518e-06 1.17471e-06 1.17424e-06 1.17377e-06 1.17329e-06 1.17282e-06 1.18976e-06 1.18964e-06 1.18951e-06 1.18938e-06 1.18925e-06 1.18913e-06 1.189e-06 1.18887e-06 1.18874e-06 1.18862e-06 1.18849e-06 1.18836e-06 1.18824e-06 1.18811e-06 1.18798e-06 1.18785e-06 1.18773e-06 1.1876e-06 1.18747e-06 1.18735e-06 1.18722e-06 1.18709e-06 1.18696e-06 1.18684e-06 1.19757e-06 1.19778e-06 1.198e-06 1.19822e-06 1.19843e-06 1.19865e-06 1.19886e-06 1.19908e-06 1.19929e-06 1.19951e-06 1.19972e-06 1.19994e-06 1.20015e-06 1.20037e-06 1.20058e-06 1.2008e-06 1.20102e-06 1.20123e-06 1.20145e-06 1.20166e-06 1.20188e-06 1.20209e-06 1.20231e-06 1.20253e-06 1.20718e-06 1.20772e-06 1.20826e-06 1.20881e-06 1.20935e-06 1.20989e-06 1.21044e-06 1.21098e-06 1.21152e-06 1.21207e-06 1.21261e-06 1.21315e-06 1.2137e-06 1.21424e-06 1.21478e-06 1.21533e-06 1.21587e-06 1.21641e-06 1.21696e-06 1.2175e-06 1.21804e-06 1.21859e-06 1.21913e-06 1.21967e-06 1.21864e-06 1.21949e-06 1.22033e-06 1.22118e-06 1.22202e-06 1.22287e-06 1.22371e-06 1.22456e-06 1.2254e-06 1.22625e-06 1.22709e-06 1.22793e-06 1.22878e-06 1.22962e-06 1.23047e-06 1.23131e-06 1.23216e-06 1.233e-06 1.23385e-06 1.2347e-06 1.23554e-06 1.23639e-06 1.23723e-06 1.23808e-06 1.23183e-06 1.23295e-06 1.23406e-06 1.23518e-06 1.2363e-06 1.23741e-06 1.23853e-06 1.23965e-06 1.24076e-06 1.24188e-06 1.243e-06 1.24412e-06 1.24523e-06 1.24635e-06 1.24747e-06 1.24858e-06 1.2497e-06 1.25082e-06 1.25194e-06 1.25305e-06 1.25417e-06 1.25529e-06 1.25641e-06 1.25752e-06 1.24724e-06 1.24857e-06 1.2499e-06 1.25123e-06 1.25256e-06 1.25389e-06 1.25522e-06 1.25655e-06 1.25788e-06 1.25921e-06 1.26054e-06 1.26187e-06 1.2632e-06 1.26453e-06 1.26586e-06 1.26719e-06 1.26852e-06 1.26985e-06 1.27118e-06 1.27251e-06 1.27384e-06 1.27517e-06 1.2765e-06 1.27783e-06 1.26419e-06 1.2657e-06 1.2672e-06 1.26871e-06 1.27021e-06 1.27171e-06 1.27322e-06 1.27472e-06 1.27623e-06 1.27773e-06 1.27924e-06 1.28075e-06 1.28225e-06 1.28375e-06 1.28526e-06 1.28677e-06 1.28827e-06 1.28978e-06 1.29128e-06 1.29279e-06 1.29429e-06 1.2958e-06 1.2973e-06 1.29881e-06 1.28288e-06 1.28451e-06 1.28613e-06 1.28776e-06 1.28938e-06 1.29101e-06 1.29263e-06 1.29426e-06 1.29588e-06 1.29751e-06 1.29913e-06 1.30076e-06 1.30238e-06 1.30401e-06 1.30563e-06 1.30726e-06 1.30888e-06 1.31051e-06 1.31213e-06 1.31376e-06 1.31538e-06 1.31701e-06 1.31863e-06 1.32026e-06 1.30322e-06 1.30491e-06 1.30659e-06 1.30828e-06 1.30996e-06 1.31165e-06 1.31334e-06 1.31502e-06 1.31671e-06 1.3184e-06 1.32009e-06 1.32177e-06 1.32346e-06 1.32515e-06 1.32683e-06 1.32852e-06 1.3302e-06 1.33189e-06 1.33358e-06 1.33527e-06 1.33695e-06 1.33864e-06 1.34033e-06 1.34201e-06 1.18936e-06 1.18948e-06 1.18959e-06 1.18971e-06 1.18983e-06 1.18995e-06 1.19009e-06 1.19021e-06 1.19035e-06 1.19047e-06 1.1906e-06 1.19073e-06 1.19085e-06 1.19098e-06 1.19111e-06 1.19127e-06 1.19147e-06 1.19172e-06 1.19196e-06 1.19216e-06 1.19228e-06 1.19234e-06 1.19237e-06 1.19244e-06 1.19257e-06 1.19274e-06 1.19289e-06 1.19304e-06 1.19321e-06 1.19341e-06 1.1936e-06 1.19376e-06 1.1939e-06 1.19401e-06 1.19411e-06 1.1942e-06 1.19431e-06 1.19443e-06 1.19456e-06 1.19471e-06 1.19487e-06 1.19503e-06 1.19519e-06 1.19534e-06 1.19549e-06 1.19564e-06 1.19578e-06 1.19591e-06 1.19605e-06 1.19618e-06 1.19631e-06 1.19643e-06 1.19656e-06 1.19669e-06 1.19681e-06 1.19694e-06 1.19706e-06 1.19719e-06 1.19733e-06 1.19746e-06 1.1976e-06 1.19774e-06 1.19788e-06 1.19802e-06 1.19816e-06 1.19829e-06 1.19843e-06 1.19856e-06 1.1987e-06 1.19883e-06 1.18943e-06 1.18955e-06 1.18967e-06 1.18978e-06 1.18991e-06 1.19003e-06 1.19015e-06 1.19028e-06 1.19041e-06 1.19054e-06 1.19067e-06 1.1908e-06 1.19093e-06 1.19106e-06 1.19118e-06 1.19131e-06 1.19149e-06 1.19172e-06 1.19198e-06 1.19222e-06 1.19239e-06 1.19247e-06 1.19249e-06 1.19252e-06 1.19262e-06 1.19277e-06 1.19293e-06 1.19308e-06 1.19324e-06 1.19342e-06 1.19362e-06 1.19379e-06 1.19394e-06 1.19406e-06 1.19416e-06 1.19425e-06 1.19435e-06 1.19446e-06 1.19459e-06 1.19474e-06 1.19489e-06 1.19505e-06 1.19521e-06 1.19536e-06 1.19551e-06 1.19565e-06 1.19579e-06 1.19593e-06 1.19606e-06 1.1962e-06 1.19633e-06 1.19645e-06 1.19658e-06 1.1967e-06 1.19683e-06 1.19695e-06 1.19708e-06 1.19721e-06 1.19734e-06 1.19747e-06 1.19761e-06 1.19775e-06 1.19789e-06 1.19803e-06 1.19816e-06 1.1983e-06 1.19843e-06 1.19857e-06 1.1987e-06 1.19884e-06 1.18947e-06 1.18959e-06 1.18972e-06 1.18985e-06 1.18997e-06 1.1901e-06 1.19022e-06 1.19035e-06 1.19048e-06 1.1906e-06 1.19074e-06 1.19087e-06 1.191e-06 1.19114e-06 1.19126e-06 1.19138e-06 1.19152e-06 1.19171e-06 1.19197e-06 1.19224e-06 1.19246e-06 1.19259e-06 1.19263e-06 1.19263e-06 1.19268e-06 1.19281e-06 1.19297e-06 1.19312e-06 1.19327e-06 1.19344e-06 1.19364e-06 1.19382e-06 1.19398e-06 1.1941e-06 1.19421e-06 1.1943e-06 1.19439e-06 1.1945e-06 1.19462e-06 1.19476e-06 1.19491e-06 1.19507e-06 1.19523e-06 1.19538e-06 1.19553e-06 1.19567e-06 1.19581e-06 1.19595e-06 1.19608e-06 1.19621e-06 1.19634e-06 1.19647e-06 1.19659e-06 1.19672e-06 1.19684e-06 1.19696e-06 1.19709e-06 1.19722e-06 1.19735e-06 1.19748e-06 1.19762e-06 1.19775e-06 1.19789e-06 1.19803e-06 1.19817e-06 1.19831e-06 1.19844e-06 1.19858e-06 1.19871e-06 1.19885e-06 1.18952e-06 1.18964e-06 1.18977e-06 1.1899e-06 1.19003e-06 1.19016e-06 1.1903e-06 1.19042e-06 1.19055e-06 1.19067e-06 1.1908e-06 1.19093e-06 1.19107e-06 1.19121e-06 1.19134e-06 1.19146e-06 1.19157e-06 1.19172e-06 1.19195e-06 1.19224e-06 1.19251e-06 1.19269e-06 1.19276e-06 1.19276e-06 1.19277e-06 1.19286e-06 1.19301e-06 1.19317e-06 1.19331e-06 1.19347e-06 1.19366e-06 1.19385e-06 1.19401e-06 1.19415e-06 1.19426e-06 1.19435e-06 1.19444e-06 1.19454e-06 1.19465e-06 1.19479e-06 1.19493e-06 1.19509e-06 1.19524e-06 1.1954e-06 1.19555e-06 1.19569e-06 1.19583e-06 1.19597e-06 1.1961e-06 1.19623e-06 1.19636e-06 1.19649e-06 1.19661e-06 1.19673e-06 1.19686e-06 1.19698e-06 1.1971e-06 1.19723e-06 1.19736e-06 1.19749e-06 1.19763e-06 1.19776e-06 1.1979e-06 1.19804e-06 1.19818e-06 1.19831e-06 1.19845e-06 1.19858e-06 1.19872e-06 1.19885e-06 1.18959e-06 1.18971e-06 1.18984e-06 1.18996e-06 1.1901e-06 1.19022e-06 1.19036e-06 1.19049e-06 1.19062e-06 1.19075e-06 1.19087e-06 1.191e-06 1.19113e-06 1.19127e-06 1.19141e-06 1.19154e-06 1.19164e-06 1.19176e-06 1.19194e-06 1.19222e-06 1.19252e-06 1.19276e-06 1.19289e-06 1.1929e-06 1.19288e-06 1.19292e-06 1.19305e-06 1.19321e-06 1.19335e-06 1.1935e-06 1.19368e-06 1.19387e-06 1.19404e-06 1.19419e-06 1.1943e-06 1.1944e-06 1.19449e-06 1.19458e-06 1.19469e-06 1.19481e-06 1.19496e-06 1.19511e-06 1.19526e-06 1.19542e-06 1.19557e-06 1.19571e-06 1.19585e-06 1.19599e-06 1.19612e-06 1.19625e-06 1.19638e-06 1.1965e-06 1.19663e-06 1.19675e-06 1.19687e-06 1.19699e-06 1.19712e-06 1.19724e-06 1.19737e-06 1.1975e-06 1.19763e-06 1.19777e-06 1.19791e-06 1.19805e-06 1.19818e-06 1.19832e-06 1.19846e-06 1.19859e-06 1.19872e-06 1.19886e-06 1.18963e-06 1.18975e-06 1.18989e-06 1.19002e-06 1.19016e-06 1.19029e-06 1.19042e-06 1.19056e-06 1.19068e-06 1.19081e-06 1.19095e-06 1.19107e-06 1.1912e-06 1.19133e-06 1.19147e-06 1.19161e-06 1.19172e-06 1.19182e-06 1.19195e-06 1.1922e-06 1.19251e-06 1.19281e-06 1.19299e-06 1.19304e-06 1.19301e-06 1.193e-06 1.1931e-06 1.19325e-06 1.1934e-06 1.19354e-06 1.1937e-06 1.19389e-06 1.19407e-06 1.19422e-06 1.19434e-06 1.19444e-06 1.19453e-06 1.19462e-06 1.19472e-06 1.19484e-06 1.19498e-06 1.19513e-06 1.19528e-06 1.19544e-06 1.19559e-06 1.19573e-06 1.19587e-06 1.19601e-06 1.19614e-06 1.19627e-06 1.19639e-06 1.19652e-06 1.19664e-06 1.19676e-06 1.19689e-06 1.19701e-06 1.19713e-06 1.19725e-06 1.19738e-06 1.19751e-06 1.19764e-06 1.19778e-06 1.19792e-06 1.19806e-06 1.19819e-06 1.19833e-06 1.19846e-06 1.1986e-06 1.19873e-06 1.19886e-06 1.18967e-06 1.1898e-06 1.18994e-06 1.19008e-06 1.19021e-06 1.19036e-06 1.19049e-06 1.19062e-06 1.19076e-06 1.19088e-06 1.19101e-06 1.19115e-06 1.19127e-06 1.19139e-06 1.19152e-06 1.19167e-06 1.1918e-06 1.19189e-06 1.19199e-06 1.19219e-06 1.1925e-06 1.19283e-06 1.19307e-06 1.19316e-06 1.19314e-06 1.1931e-06 1.19315e-06 1.19329e-06 1.19344e-06 1.19357e-06 1.19373e-06 1.19391e-06 1.19409e-06 1.19426e-06 1.19439e-06 1.19449e-06 1.19458e-06 1.19466e-06 1.19476e-06 1.19487e-06 1.195e-06 1.19515e-06 1.1953e-06 1.19545e-06 1.1956e-06 1.19575e-06 1.19589e-06 1.19602e-06 1.19616e-06 1.19629e-06 1.19641e-06 1.19654e-06 1.19666e-06 1.19678e-06 1.1969e-06 1.19702e-06 1.19714e-06 1.19727e-06 1.19739e-06 1.19752e-06 1.19765e-06 1.19779e-06 1.19793e-06 1.19806e-06 1.1982e-06 1.19834e-06 1.19847e-06 1.1986e-06 1.19874e-06 1.19887e-06 1.18973e-06 1.18987e-06 1.19e-06 1.19015e-06 1.19028e-06 1.19041e-06 1.19056e-06 1.19068e-06 1.19082e-06 1.19096e-06 1.19108e-06 1.19121e-06 1.19134e-06 1.19145e-06 1.19157e-06 1.19172e-06 1.19187e-06 1.19197e-06 1.19205e-06 1.1922e-06 1.19248e-06 1.19283e-06 1.19313e-06 1.19327e-06 1.19327e-06 1.19321e-06 1.19322e-06 1.19333e-06 1.19348e-06 1.19362e-06 1.19376e-06 1.19393e-06 1.19412e-06 1.19429e-06 1.19442e-06 1.19453e-06 1.19462e-06 1.1947e-06 1.19479e-06 1.1949e-06 1.19503e-06 1.19517e-06 1.19532e-06 1.19547e-06 1.19562e-06 1.19577e-06 1.19591e-06 1.19604e-06 1.19617e-06 1.1963e-06 1.19643e-06 1.19655e-06 1.19668e-06 1.1968e-06 1.19692e-06 1.19704e-06 1.19716e-06 1.19728e-06 1.19741e-06 1.19753e-06 1.19767e-06 1.1978e-06 1.19794e-06 1.19807e-06 1.19821e-06 1.19834e-06 1.19848e-06 1.19861e-06 1.19875e-06 1.19888e-06 1.18977e-06 1.18991e-06 1.19006e-06 1.1902e-06 1.19035e-06 1.19048e-06 1.19062e-06 1.19076e-06 1.19089e-06 1.19101e-06 1.19114e-06 1.19127e-06 1.1914e-06 1.19152e-06 1.19163e-06 1.19177e-06 1.19193e-06 1.19205e-06 1.19213e-06 1.19224e-06 1.19247e-06 1.19283e-06 1.19316e-06 1.19336e-06 1.19339e-06 1.19333e-06 1.1933e-06 1.19338e-06 1.19352e-06 1.19366e-06 1.19379e-06 1.19396e-06 1.19414e-06 1.19432e-06 1.19446e-06 1.19457e-06 1.19466e-06 1.19475e-06 1.19483e-06 1.19493e-06 1.19506e-06 1.19519e-06 1.19534e-06 1.19549e-06 1.19564e-06 1.19579e-06 1.19593e-06 1.19606e-06 1.19619e-06 1.19632e-06 1.19645e-06 1.19657e-06 1.19669e-06 1.19681e-06 1.19693e-06 1.19705e-06 1.19717e-06 1.19729e-06 1.19742e-06 1.19755e-06 1.19768e-06 1.19781e-06 1.19794e-06 1.19808e-06 1.19822e-06 1.19835e-06 1.19849e-06 1.19862e-06 1.19875e-06 1.19889e-06 1.18983e-06 1.18997e-06 1.19013e-06 1.19027e-06 1.19041e-06 1.19056e-06 1.19069e-06 1.19082e-06 1.19096e-06 1.19108e-06 1.1912e-06 1.19133e-06 1.19146e-06 1.19159e-06 1.19169e-06 1.19181e-06 1.19198e-06 1.19212e-06 1.19221e-06 1.19229e-06 1.19248e-06 1.19282e-06 1.19319e-06 1.19344e-06 1.1935e-06 1.19344e-06 1.19338e-06 1.19343e-06 1.19356e-06 1.1937e-06 1.19383e-06 1.19398e-06 1.19417e-06 1.19435e-06 1.19449e-06 1.19461e-06 1.1947e-06 1.19479e-06 1.19487e-06 1.19497e-06 1.19508e-06 1.19522e-06 1.19536e-06 1.19551e-06 1.19566e-06 1.19581e-06 1.19595e-06 1.19608e-06 1.19621e-06 1.19634e-06 1.19646e-06 1.19659e-06 1.19671e-06 1.19683e-06 1.19695e-06 1.19707e-06 1.19719e-06 1.19731e-06 1.19743e-06 1.19756e-06 1.19769e-06 1.19782e-06 1.19795e-06 1.19809e-06 1.19823e-06 1.19836e-06 1.19849e-06 1.19863e-06 1.19876e-06 1.19889e-06 1.18988e-06 1.19004e-06 1.19019e-06 1.19035e-06 1.19049e-06 1.19062e-06 1.19076e-06 1.19088e-06 1.19101e-06 1.19115e-06 1.19127e-06 1.19138e-06 1.19151e-06 1.19165e-06 1.19176e-06 1.19187e-06 1.19202e-06 1.19219e-06 1.19229e-06 1.19235e-06 1.1925e-06 1.19282e-06 1.1932e-06 1.19349e-06 1.1936e-06 1.19356e-06 1.19347e-06 1.19349e-06 1.1936e-06 1.19374e-06 1.19387e-06 1.19401e-06 1.19419e-06 1.19437e-06 1.19453e-06 1.19465e-06 1.19474e-06 1.19482e-06 1.19491e-06 1.195e-06 1.19511e-06 1.19524e-06 1.19539e-06 1.19553e-06 1.19568e-06 1.19583e-06 1.19596e-06 1.1961e-06 1.19623e-06 1.19636e-06 1.19648e-06 1.1966e-06 1.19673e-06 1.19684e-06 1.19696e-06 1.19708e-06 1.1972e-06 1.19732e-06 1.19744e-06 1.19757e-06 1.1977e-06 1.19783e-06 1.19796e-06 1.1981e-06 1.19824e-06 1.19837e-06 1.1985e-06 1.19864e-06 1.19877e-06 1.1989e-06 1.18994e-06 1.19012e-06 1.19028e-06 1.19042e-06 1.19056e-06 1.19069e-06 1.19082e-06 1.19095e-06 1.19107e-06 1.1912e-06 1.19133e-06 1.19145e-06 1.19157e-06 1.19171e-06 1.19183e-06 1.19192e-06 1.19206e-06 1.19224e-06 1.19236e-06 1.19243e-06 1.19254e-06 1.19282e-06 1.19321e-06 1.19354e-06 1.19369e-06 1.19366e-06 1.19357e-06 1.19355e-06 1.19364e-06 1.19378e-06 1.19391e-06 1.19405e-06 1.19422e-06 1.1944e-06 1.19456e-06 1.19468e-06 1.19478e-06 1.19486e-06 1.19494e-06 1.19503e-06 1.19514e-06 1.19527e-06 1.19541e-06 1.19555e-06 1.1957e-06 1.19585e-06 1.19598e-06 1.19612e-06 1.19625e-06 1.19637e-06 1.1965e-06 1.19662e-06 1.19674e-06 1.19686e-06 1.19698e-06 1.1971e-06 1.19722e-06 1.19734e-06 1.19746e-06 1.19758e-06 1.19771e-06 1.19784e-06 1.19798e-06 1.19811e-06 1.19824e-06 1.19838e-06 1.19851e-06 1.19865e-06 1.19878e-06 1.19891e-06 1.19004e-06 1.19021e-06 1.19037e-06 1.1905e-06 1.19063e-06 1.19076e-06 1.19088e-06 1.19101e-06 1.19113e-06 1.19125e-06 1.19138e-06 1.19151e-06 1.19162e-06 1.19176e-06 1.19189e-06 1.19199e-06 1.19211e-06 1.19229e-06 1.19243e-06 1.1925e-06 1.19259e-06 1.19284e-06 1.19323e-06 1.19358e-06 1.19376e-06 1.19376e-06 1.19366e-06 1.19362e-06 1.19369e-06 1.19382e-06 1.19395e-06 1.19408e-06 1.19425e-06 1.19443e-06 1.19459e-06 1.19472e-06 1.19482e-06 1.1949e-06 1.19498e-06 1.19506e-06 1.19517e-06 1.19529e-06 1.19543e-06 1.19558e-06 1.19572e-06 1.19587e-06 1.196e-06 1.19614e-06 1.19627e-06 1.19639e-06 1.19652e-06 1.19664e-06 1.19676e-06 1.19688e-06 1.197e-06 1.19711e-06 1.19723e-06 1.19735e-06 1.19747e-06 1.1976e-06 1.19772e-06 1.19785e-06 1.19799e-06 1.19812e-06 1.19825e-06 1.19839e-06 1.19852e-06 1.19865e-06 1.19879e-06 1.19892e-06 1.19017e-06 1.19031e-06 1.19045e-06 1.19059e-06 1.19071e-06 1.19082e-06 1.19094e-06 1.19107e-06 1.19118e-06 1.1913e-06 1.19144e-06 1.19156e-06 1.19167e-06 1.19181e-06 1.19195e-06 1.19205e-06 1.19216e-06 1.19233e-06 1.19249e-06 1.19257e-06 1.19265e-06 1.19287e-06 1.19324e-06 1.19362e-06 1.19383e-06 1.19384e-06 1.19375e-06 1.19368e-06 1.19374e-06 1.19386e-06 1.19399e-06 1.19412e-06 1.19428e-06 1.19446e-06 1.19462e-06 1.19475e-06 1.19485e-06 1.19493e-06 1.19501e-06 1.1951e-06 1.1952e-06 1.19532e-06 1.19546e-06 1.1956e-06 1.19574e-06 1.19589e-06 1.19602e-06 1.19616e-06 1.19629e-06 1.19641e-06 1.19654e-06 1.19666e-06 1.19678e-06 1.19689e-06 1.19701e-06 1.19713e-06 1.19725e-06 1.19736e-06 1.19749e-06 1.19761e-06 1.19774e-06 1.19787e-06 1.198e-06 1.19813e-06 1.19827e-06 1.1984e-06 1.19853e-06 1.19866e-06 1.1988e-06 1.19893e-06 1.19094e-06 1.1904e-06 1.19055e-06 1.19067e-06 1.19077e-06 1.19088e-06 1.19099e-06 1.19111e-06 1.19124e-06 1.19135e-06 1.19148e-06 1.19162e-06 1.19173e-06 1.19185e-06 1.192e-06 1.19211e-06 1.19221e-06 1.19238e-06 1.19254e-06 1.19263e-06 1.19271e-06 1.19291e-06 1.19327e-06 1.19365e-06 1.19389e-06 1.19392e-06 1.19383e-06 1.19375e-06 1.19379e-06 1.1939e-06 1.19403e-06 1.19416e-06 1.19431e-06 1.19449e-06 1.19465e-06 1.19478e-06 1.19489e-06 1.19497e-06 1.19504e-06 1.19513e-06 1.19523e-06 1.19535e-06 1.19548e-06 1.19562e-06 1.19577e-06 1.19591e-06 1.19604e-06 1.19618e-06 1.1963e-06 1.19643e-06 1.19655e-06 1.19667e-06 1.19679e-06 1.19691e-06 1.19703e-06 1.19714e-06 1.19726e-06 1.19738e-06 1.1975e-06 1.19762e-06 1.19775e-06 1.19788e-06 1.19801e-06 1.19814e-06 1.19828e-06 1.19841e-06 1.19854e-06 1.19867e-06 1.19881e-06 1.19894e-06 1.27026e-06 1.26539e-06 1.26434e-06 1.26334e-06 1.26234e-06 1.26136e-06 1.26038e-06 1.2594e-06 1.25844e-06 1.25747e-06 1.2565e-06 1.25555e-06 1.25457e-06 1.2536e-06 1.25266e-06 1.25168e-06 1.25069e-06 1.24975e-06 1.24883e-06 1.24784e-06 1.24682e-06 1.24591e-06 1.24519e-06 1.2445e-06 1.24366e-06 1.24261e-06 1.24142e-06 1.24023e-06 1.23916e-06 1.23817e-06 1.2372e-06 1.23624e-06 1.2353e-06 1.23438e-06 1.23346e-06 1.2325e-06 1.2315e-06 1.23049e-06 1.22947e-06 1.22846e-06 1.22747e-06 1.22649e-06 1.22553e-06 1.22458e-06 1.22363e-06 1.22268e-06 1.22173e-06 1.22077e-06 1.2198e-06 1.21883e-06 1.21786e-06 1.21689e-06 1.21592e-06 1.21494e-06 1.21397e-06 1.21299e-06 1.21202e-06 1.21104e-06 1.21007e-06 1.2091e-06 1.20813e-06 1.20717e-06 1.20621e-06 1.20525e-06 1.20429e-06 1.20333e-06 1.20237e-06 1.20141e-06 1.20045e-06 1.19949e-06 1.27009e-06 1.26532e-06 1.26431e-06 1.26334e-06 1.26235e-06 1.26138e-06 1.26041e-06 1.25944e-06 1.25848e-06 1.25751e-06 1.25655e-06 1.2556e-06 1.25462e-06 1.25365e-06 1.25271e-06 1.25173e-06 1.25074e-06 1.24981e-06 1.24889e-06 1.2479e-06 1.24688e-06 1.24597e-06 1.24524e-06 1.24456e-06 1.24372e-06 1.24267e-06 1.24148e-06 1.24029e-06 1.23921e-06 1.23822e-06 1.23724e-06 1.23628e-06 1.23534e-06 1.23442e-06 1.23349e-06 1.23253e-06 1.23154e-06 1.23052e-06 1.2295e-06 1.22849e-06 1.2275e-06 1.22652e-06 1.22556e-06 1.2246e-06 1.22365e-06 1.2227e-06 1.22175e-06 1.22079e-06 1.21982e-06 1.21885e-06 1.21788e-06 1.21691e-06 1.21594e-06 1.21496e-06 1.21399e-06 1.21301e-06 1.21203e-06 1.21106e-06 1.21008e-06 1.20911e-06 1.20815e-06 1.20718e-06 1.20622e-06 1.20526e-06 1.2043e-06 1.20334e-06 1.20238e-06 1.20142e-06 1.20046e-06 1.1995e-06 1.30321e-06 1.3049e-06 1.30658e-06 1.30827e-06 1.30996e-06 1.31165e-06 1.31333e-06 1.31502e-06 1.31671e-06 1.3184e-06 1.32008e-06 1.32177e-06 1.32346e-06 1.32514e-06 1.32683e-06 1.32852e-06 1.33021e-06 1.33189e-06 1.33358e-06 1.33527e-06 1.33695e-06 1.33864e-06 1.34033e-06 1.34201e-06 1.28287e-06 1.2845e-06 1.28612e-06 1.28775e-06 1.28937e-06 1.291e-06 1.29263e-06 1.29425e-06 1.29588e-06 1.2975e-06 1.29913e-06 1.30076e-06 1.30238e-06 1.30401e-06 1.30563e-06 1.30726e-06 1.30888e-06 1.31051e-06 1.31213e-06 1.31376e-06 1.31538e-06 1.31701e-06 1.31864e-06 1.32026e-06 1.26418e-06 1.26569e-06 1.26719e-06 1.2687e-06 1.2702e-06 1.27171e-06 1.27322e-06 1.27472e-06 1.27623e-06 1.27773e-06 1.27924e-06 1.28074e-06 1.28225e-06 1.28375e-06 1.28526e-06 1.28676e-06 1.28827e-06 1.28978e-06 1.29128e-06 1.29279e-06 1.29429e-06 1.2958e-06 1.2973e-06 1.29881e-06 1.24723e-06 1.24856e-06 1.24989e-06 1.25122e-06 1.25255e-06 1.25388e-06 1.25521e-06 1.25654e-06 1.25787e-06 1.25921e-06 1.26054e-06 1.26187e-06 1.2632e-06 1.26453e-06 1.26586e-06 1.26719e-06 1.26852e-06 1.26985e-06 1.27118e-06 1.27251e-06 1.27384e-06 1.27517e-06 1.2765e-06 1.27784e-06 1.23182e-06 1.23294e-06 1.23406e-06 1.23517e-06 1.23629e-06 1.23741e-06 1.23853e-06 1.23964e-06 1.24076e-06 1.24188e-06 1.243e-06 1.24411e-06 1.24523e-06 1.24635e-06 1.24747e-06 1.24858e-06 1.2497e-06 1.25082e-06 1.25194e-06 1.25305e-06 1.25417e-06 1.25529e-06 1.25641e-06 1.25752e-06 1.21863e-06 1.21948e-06 1.22032e-06 1.22117e-06 1.22202e-06 1.22286e-06 1.22371e-06 1.22455e-06 1.2254e-06 1.22624e-06 1.22709e-06 1.22793e-06 1.22878e-06 1.22962e-06 1.23047e-06 1.23131e-06 1.23216e-06 1.233e-06 1.23385e-06 1.2347e-06 1.23554e-06 1.23639e-06 1.23723e-06 1.23808e-06 1.20717e-06 1.20771e-06 1.20826e-06 1.2088e-06 1.20935e-06 1.20989e-06 1.21043e-06 1.21098e-06 1.21152e-06 1.21206e-06 1.21261e-06 1.21315e-06 1.21369e-06 1.21424e-06 1.21478e-06 1.21533e-06 1.21587e-06 1.21641e-06 1.21696e-06 1.2175e-06 1.21804e-06 1.21859e-06 1.21913e-06 1.21968e-06 1.19756e-06 1.19778e-06 1.19799e-06 1.19821e-06 1.19843e-06 1.19864e-06 1.19886e-06 1.19907e-06 1.19929e-06 1.19951e-06 1.19972e-06 1.19994e-06 1.20015e-06 1.20037e-06 1.20058e-06 1.2008e-06 1.20102e-06 1.20123e-06 1.20145e-06 1.20166e-06 1.20188e-06 1.2021e-06 1.20231e-06 1.20253e-06 1.18976e-06 1.18963e-06 1.1895e-06 1.18938e-06 1.18925e-06 1.18912e-06 1.189e-06 1.18887e-06 1.18874e-06 1.18862e-06 1.18849e-06 1.18836e-06 1.18823e-06 1.18811e-06 1.18798e-06 1.18785e-06 1.18773e-06 1.1876e-06 1.18747e-06 1.18735e-06 1.18722e-06 1.18709e-06 1.18697e-06 1.18684e-06 1.18367e-06 1.1832e-06 1.18272e-06 1.18225e-06 1.18178e-06 1.18131e-06 1.18084e-06 1.18037e-06 1.17989e-06 1.17942e-06 1.17895e-06 1.17848e-06 1.17801e-06 1.17754e-06 1.17707e-06 1.17659e-06 1.17612e-06 1.17565e-06 1.17518e-06 1.17471e-06 1.17424e-06 1.17377e-06 1.17329e-06 1.17282e-06 1.17915e-06 1.17835e-06 1.17755e-06 1.17675e-06 1.17594e-06 1.17514e-06 1.17434e-06 1.17354e-06 1.17273e-06 1.17193e-06 1.17113e-06 1.17032e-06 1.16952e-06 1.16872e-06 1.16792e-06 1.16712e-06 1.16631e-06 1.16551e-06 1.16471e-06 1.16391e-06 1.1631e-06 1.1623e-06 1.1615e-06 1.1607e-06 1.17617e-06 1.17506e-06 1.17395e-06 1.17284e-06 1.17173e-06 1.17062e-06 1.16952e-06 1.16841e-06 1.1673e-06 1.16619e-06 1.16508e-06 1.16397e-06 1.16287e-06 1.16176e-06 1.16065e-06 1.15954e-06 1.15843e-06 1.15732e-06 1.15622e-06 1.15511e-06 1.154e-06 1.15289e-06 1.15178e-06 1.15067e-06 1.17399e-06 1.17264e-06 1.17129e-06 1.16994e-06 1.16859e-06 1.16724e-06 1.16589e-06 1.16454e-06 1.16319e-06 1.16184e-06 1.1605e-06 1.15915e-06 1.1578e-06 1.15645e-06 1.1551e-06 1.15375e-06 1.1524e-06 1.15105e-06 1.1497e-06 1.14836e-06 1.14701e-06 1.14566e-06 1.14431e-06 1.14296e-06 1.17296e-06 1.17142e-06 1.16989e-06 1.16836e-06 1.16683e-06 1.1653e-06 1.16377e-06 1.16223e-06 1.1607e-06 1.15917e-06 1.15764e-06 1.15611e-06 1.15458e-06 1.15305e-06 1.15151e-06 1.14998e-06 1.14845e-06 1.14692e-06 1.14539e-06 1.14386e-06 1.14233e-06 1.1408e-06 1.13926e-06 1.13773e-06 1.17151e-06 1.1699e-06 1.1683e-06 1.16669e-06 1.16509e-06 1.16348e-06 1.16188e-06 1.16027e-06 1.15867e-06 1.15706e-06 1.15546e-06 1.15385e-06 1.15225e-06 1.15064e-06 1.14904e-06 1.14744e-06 1.14583e-06 1.14423e-06 1.14262e-06 1.14102e-06 1.13941e-06 1.13781e-06 1.1362e-06 1.1346e-06 1.26981e-06 1.26517e-06 1.26424e-06 1.26331e-06 1.26235e-06 1.2614e-06 1.26043e-06 1.25948e-06 1.25852e-06 1.25755e-06 1.2566e-06 1.25565e-06 1.25467e-06 1.25371e-06 1.25276e-06 1.25179e-06 1.2508e-06 1.24986e-06 1.24894e-06 1.24796e-06 1.24694e-06 1.24603e-06 1.24529e-06 1.24461e-06 1.24378e-06 1.24275e-06 1.24156e-06 1.24036e-06 1.23927e-06 1.23827e-06 1.23729e-06 1.23632e-06 1.23538e-06 1.23446e-06 1.23353e-06 1.23257e-06 1.23157e-06 1.23056e-06 1.22954e-06 1.22852e-06 1.22753e-06 1.22655e-06 1.22559e-06 1.22463e-06 1.22368e-06 1.22273e-06 1.22177e-06 1.22081e-06 1.21984e-06 1.21888e-06 1.2179e-06 1.21693e-06 1.21596e-06 1.21498e-06 1.214e-06 1.21303e-06 1.21205e-06 1.21107e-06 1.2101e-06 1.20913e-06 1.20816e-06 1.2072e-06 1.20624e-06 1.20528e-06 1.20432e-06 1.20336e-06 1.2024e-06 1.20144e-06 1.20047e-06 1.19951e-06 1.26966e-06 1.26512e-06 1.26421e-06 1.2633e-06 1.26237e-06 1.26142e-06 1.26047e-06 1.25952e-06 1.25856e-06 1.2576e-06 1.25665e-06 1.25569e-06 1.25473e-06 1.25376e-06 1.25281e-06 1.25184e-06 1.25085e-06 1.24992e-06 1.24901e-06 1.24802e-06 1.24699e-06 1.24608e-06 1.24536e-06 1.24469e-06 1.24387e-06 1.24282e-06 1.24161e-06 1.2404e-06 1.23931e-06 1.23831e-06 1.23733e-06 1.23636e-06 1.23542e-06 1.2345e-06 1.23356e-06 1.2326e-06 1.23161e-06 1.23059e-06 1.22957e-06 1.22855e-06 1.22756e-06 1.22658e-06 1.22561e-06 1.22466e-06 1.22371e-06 1.22275e-06 1.22179e-06 1.22083e-06 1.21987e-06 1.2189e-06 1.21792e-06 1.21695e-06 1.21598e-06 1.215e-06 1.21402e-06 1.21304e-06 1.21207e-06 1.21109e-06 1.21012e-06 1.20914e-06 1.20818e-06 1.20721e-06 1.20625e-06 1.20529e-06 1.20433e-06 1.20337e-06 1.20241e-06 1.20145e-06 1.20048e-06 1.19952e-06 1.19322e-06 1.19048e-06 1.19058e-06 1.19073e-06 1.19088e-06 1.19102e-06 1.19116e-06 1.1913e-06 1.19144e-06 1.19158e-06 1.19171e-06 1.19185e-06 1.19198e-06 1.1921e-06 1.19225e-06 1.19237e-06 1.19247e-06 1.19264e-06 1.19282e-06 1.19291e-06 1.19297e-06 1.19317e-06 1.19356e-06 1.19397e-06 1.19422e-06 1.19425e-06 1.19412e-06 1.19402e-06 1.19403e-06 1.19412e-06 1.19423e-06 1.19435e-06 1.1945e-06 1.19467e-06 1.19483e-06 1.19495e-06 1.19505e-06 1.19513e-06 1.1952e-06 1.19527e-06 1.19537e-06 1.19548e-06 1.19561e-06 1.19575e-06 1.19589e-06 1.19602e-06 1.19616e-06 1.19628e-06 1.19641e-06 1.19653e-06 1.19665e-06 1.19677e-06 1.19688e-06 1.197e-06 1.19711e-06 1.19723e-06 1.19734e-06 1.19746e-06 1.19757e-06 1.19769e-06 1.19782e-06 1.19794e-06 1.19807e-06 1.1982e-06 1.19834e-06 1.19847e-06 1.1986e-06 1.19873e-06 1.19886e-06 1.19899e-06 1.19046e-06 1.19056e-06 1.19069e-06 1.19081e-06 1.19094e-06 1.19107e-06 1.19122e-06 1.19135e-06 1.19149e-06 1.19162e-06 1.19176e-06 1.1919e-06 1.19202e-06 1.19215e-06 1.19231e-06 1.19241e-06 1.19252e-06 1.1927e-06 1.19287e-06 1.19295e-06 1.19301e-06 1.19324e-06 1.19366e-06 1.19407e-06 1.19429e-06 1.19428e-06 1.19415e-06 1.19404e-06 1.19406e-06 1.19416e-06 1.19427e-06 1.19439e-06 1.19454e-06 1.19471e-06 1.19486e-06 1.19499e-06 1.19508e-06 1.19515e-06 1.19522e-06 1.1953e-06 1.19539e-06 1.19551e-06 1.19564e-06 1.19577e-06 1.19591e-06 1.19605e-06 1.19618e-06 1.19631e-06 1.19643e-06 1.19655e-06 1.19667e-06 1.19679e-06 1.1969e-06 1.19702e-06 1.19713e-06 1.19724e-06 1.19736e-06 1.19747e-06 1.19759e-06 1.19771e-06 1.19783e-06 1.19796e-06 1.19809e-06 1.19822e-06 1.19835e-06 1.19848e-06 1.19861e-06 1.19874e-06 1.19887e-06 1.199e-06 1.19059e-06 1.19067e-06 1.19077e-06 1.19089e-06 1.19101e-06 1.19114e-06 1.19127e-06 1.1914e-06 1.19154e-06 1.19168e-06 1.19181e-06 1.19195e-06 1.19207e-06 1.19221e-06 1.19236e-06 1.19245e-06 1.19258e-06 1.19277e-06 1.19293e-06 1.19298e-06 1.19306e-06 1.19333e-06 1.19377e-06 1.19417e-06 1.19435e-06 1.19431e-06 1.19416e-06 1.19406e-06 1.1941e-06 1.1942e-06 1.19431e-06 1.19443e-06 1.19458e-06 1.19475e-06 1.1949e-06 1.19502e-06 1.19511e-06 1.19518e-06 1.19525e-06 1.19532e-06 1.19542e-06 1.19554e-06 1.19566e-06 1.1958e-06 1.19594e-06 1.19607e-06 1.1962e-06 1.19633e-06 1.19645e-06 1.19657e-06 1.19669e-06 1.19681e-06 1.19692e-06 1.19703e-06 1.19715e-06 1.19726e-06 1.19737e-06 1.19749e-06 1.1976e-06 1.19772e-06 1.19785e-06 1.19797e-06 1.1981e-06 1.19823e-06 1.19836e-06 1.19849e-06 1.19862e-06 1.19875e-06 1.19888e-06 1.19901e-06 1.19068e-06 1.19076e-06 1.19086e-06 1.19097e-06 1.19108e-06 1.1912e-06 1.19132e-06 1.19147e-06 1.1916e-06 1.19172e-06 1.19187e-06 1.192e-06 1.19212e-06 1.19227e-06 1.19241e-06 1.1925e-06 1.19264e-06 1.19284e-06 1.19297e-06 1.19301e-06 1.19311e-06 1.19344e-06 1.1939e-06 1.19427e-06 1.1944e-06 1.19432e-06 1.19416e-06 1.19408e-06 1.19414e-06 1.19424e-06 1.19434e-06 1.19447e-06 1.19462e-06 1.19479e-06 1.19493e-06 1.19505e-06 1.19513e-06 1.1952e-06 1.19527e-06 1.19535e-06 1.19545e-06 1.19556e-06 1.19569e-06 1.19583e-06 1.19596e-06 1.1961e-06 1.19623e-06 1.19635e-06 1.19647e-06 1.19659e-06 1.19671e-06 1.19683e-06 1.19694e-06 1.19705e-06 1.19716e-06 1.19728e-06 1.19739e-06 1.1975e-06 1.19762e-06 1.19774e-06 1.19786e-06 1.19799e-06 1.19812e-06 1.19824e-06 1.19837e-06 1.1985e-06 1.19863e-06 1.19876e-06 1.19889e-06 1.19902e-06 1.19074e-06 1.19084e-06 1.19093e-06 1.19104e-06 1.19114e-06 1.19126e-06 1.1914e-06 1.19153e-06 1.19165e-06 1.19179e-06 1.19193e-06 1.19205e-06 1.19217e-06 1.19233e-06 1.19245e-06 1.19254e-06 1.19271e-06 1.1929e-06 1.193e-06 1.19303e-06 1.19319e-06 1.19357e-06 1.19403e-06 1.19436e-06 1.19443e-06 1.19432e-06 1.19416e-06 1.19411e-06 1.19417e-06 1.19428e-06 1.19438e-06 1.1945e-06 1.19467e-06 1.19483e-06 1.19497e-06 1.19507e-06 1.19516e-06 1.19522e-06 1.19529e-06 1.19537e-06 1.19547e-06 1.19559e-06 1.19572e-06 1.19585e-06 1.19599e-06 1.19612e-06 1.19625e-06 1.19637e-06 1.1965e-06 1.19661e-06 1.19673e-06 1.19685e-06 1.19696e-06 1.19707e-06 1.19718e-06 1.19729e-06 1.19741e-06 1.19752e-06 1.19764e-06 1.19775e-06 1.19788e-06 1.198e-06 1.19813e-06 1.19826e-06 1.19839e-06 1.19852e-06 1.19865e-06 1.19877e-06 1.1989e-06 1.19903e-06 1.19079e-06 1.19089e-06 1.19099e-06 1.1911e-06 1.19121e-06 1.19135e-06 1.19146e-06 1.19157e-06 1.19172e-06 1.19185e-06 1.19197e-06 1.1921e-06 1.19224e-06 1.19238e-06 1.19248e-06 1.1926e-06 1.19279e-06 1.19296e-06 1.19302e-06 1.19307e-06 1.19329e-06 1.19372e-06 1.19417e-06 1.19443e-06 1.19444e-06 1.1943e-06 1.19415e-06 1.19413e-06 1.19421e-06 1.19431e-06 1.19441e-06 1.19455e-06 1.19471e-06 1.19487e-06 1.195e-06 1.1951e-06 1.19518e-06 1.19524e-06 1.19531e-06 1.1954e-06 1.1955e-06 1.19562e-06 1.19575e-06 1.19588e-06 1.19602e-06 1.19615e-06 1.19627e-06 1.1964e-06 1.19652e-06 1.19664e-06 1.19675e-06 1.19687e-06 1.19698e-06 1.19709e-06 1.1972e-06 1.19731e-06 1.19742e-06 1.19754e-06 1.19765e-06 1.19777e-06 1.19789e-06 1.19802e-06 1.19814e-06 1.19827e-06 1.1984e-06 1.19853e-06 1.19866e-06 1.19879e-06 1.19891e-06 1.19904e-06 1.19083e-06 1.19095e-06 1.19106e-06 1.19116e-06 1.19129e-06 1.19139e-06 1.19151e-06 1.19166e-06 1.19178e-06 1.1919e-06 1.19203e-06 1.19216e-06 1.1923e-06 1.19243e-06 1.19253e-06 1.19268e-06 1.19287e-06 1.193e-06 1.19304e-06 1.19313e-06 1.19343e-06 1.19389e-06 1.19429e-06 1.19448e-06 1.19443e-06 1.19427e-06 1.19415e-06 1.19416e-06 1.19425e-06 1.19434e-06 1.19445e-06 1.19459e-06 1.19475e-06 1.19491e-06 1.19503e-06 1.19513e-06 1.1952e-06 1.19526e-06 1.19533e-06 1.19542e-06 1.19552e-06 1.19564e-06 1.19577e-06 1.19591e-06 1.19604e-06 1.19617e-06 1.1963e-06 1.19642e-06 1.19654e-06 1.19666e-06 1.19677e-06 1.19689e-06 1.197e-06 1.19711e-06 1.19722e-06 1.19733e-06 1.19744e-06 1.19755e-06 1.19767e-06 1.19779e-06 1.19791e-06 1.19803e-06 1.19816e-06 1.19829e-06 1.19842e-06 1.19854e-06 1.19867e-06 1.1988e-06 1.19892e-06 1.19905e-06 1.19088e-06 1.19101e-06 1.19111e-06 1.19123e-06 1.19134e-06 1.19145e-06 1.1916e-06 1.1917e-06 1.19182e-06 1.19196e-06 1.19209e-06 1.19222e-06 1.19236e-06 1.19247e-06 1.19258e-06 1.19276e-06 1.19293e-06 1.19302e-06 1.19306e-06 1.19323e-06 1.1936e-06 1.19406e-06 1.1944e-06 1.1945e-06 1.1944e-06 1.19423e-06 1.19415e-06 1.19419e-06 1.19428e-06 1.19438e-06 1.19449e-06 1.19464e-06 1.1948e-06 1.19495e-06 1.19506e-06 1.19515e-06 1.19522e-06 1.19528e-06 1.19535e-06 1.19544e-06 1.19555e-06 1.19567e-06 1.1958e-06 1.19594e-06 1.19607e-06 1.1962e-06 1.19632e-06 1.19644e-06 1.19656e-06 1.19668e-06 1.19679e-06 1.19691e-06 1.19702e-06 1.19713e-06 1.19724e-06 1.19735e-06 1.19746e-06 1.19757e-06 1.19768e-06 1.1978e-06 1.19792e-06 1.19805e-06 1.19818e-06 1.1983e-06 1.19843e-06 1.19856e-06 1.19868e-06 1.19881e-06 1.19894e-06 1.19906e-06 1.19093e-06 1.19104e-06 1.19116e-06 1.19129e-06 1.19139e-06 1.19154e-06 1.19163e-06 1.19175e-06 1.19191e-06 1.19201e-06 1.19214e-06 1.19228e-06 1.19241e-06 1.19251e-06 1.19266e-06 1.19284e-06 1.19298e-06 1.19303e-06 1.19311e-06 1.19337e-06 1.1938e-06 1.19423e-06 1.19448e-06 1.19449e-06 1.19435e-06 1.1942e-06 1.19415e-06 1.19422e-06 1.19432e-06 1.19441e-06 1.19453e-06 1.19469e-06 1.19485e-06 1.19498e-06 1.19509e-06 1.19517e-06 1.19524e-06 1.1953e-06 1.19537e-06 1.19547e-06 1.19558e-06 1.1957e-06 1.19583e-06 1.19597e-06 1.1961e-06 1.19622e-06 1.19635e-06 1.19647e-06 1.19658e-06 1.1967e-06 1.19681e-06 1.19693e-06 1.19704e-06 1.19715e-06 1.19725e-06 1.19736e-06 1.19747e-06 1.19759e-06 1.1977e-06 1.19782e-06 1.19794e-06 1.19807e-06 1.19819e-06 1.19832e-06 1.19845e-06 1.19857e-06 1.1987e-06 1.19882e-06 1.19895e-06 1.19908e-06 1.19097e-06 1.19109e-06 1.19123e-06 1.19133e-06 1.19146e-06 1.19158e-06 1.19169e-06 1.19185e-06 1.19194e-06 1.19206e-06 1.19222e-06 1.19234e-06 1.19245e-06 1.19258e-06 1.19275e-06 1.19291e-06 1.193e-06 1.19305e-06 1.19321e-06 1.19355e-06 1.194e-06 1.19436e-06 1.19451e-06 1.19445e-06 1.19429e-06 1.19417e-06 1.19417e-06 1.19425e-06 1.19435e-06 1.19445e-06 1.19458e-06 1.19474e-06 1.19489e-06 1.19502e-06 1.19511e-06 1.19519e-06 1.19525e-06 1.19532e-06 1.1954e-06 1.19549e-06 1.19561e-06 1.19573e-06 1.19586e-06 1.19599e-06 1.19612e-06 1.19625e-06 1.19637e-06 1.19649e-06 1.19661e-06 1.19672e-06 1.19684e-06 1.19695e-06 1.19706e-06 1.19716e-06 1.19727e-06 1.19738e-06 1.19749e-06 1.1976e-06 1.19772e-06 1.19784e-06 1.19796e-06 1.19808e-06 1.19821e-06 1.19833e-06 1.19846e-06 1.19859e-06 1.19871e-06 1.19884e-06 1.19896e-06 1.19909e-06 1.19101e-06 1.19114e-06 1.19126e-06 1.19139e-06 1.19152e-06 1.19163e-06 1.19177e-06 1.19188e-06 1.19199e-06 1.19215e-06 1.19227e-06 1.19238e-06 1.19251e-06 1.19266e-06 1.19283e-06 1.19295e-06 1.19301e-06 1.19311e-06 1.19336e-06 1.19377e-06 1.19419e-06 1.19446e-06 1.1945e-06 1.19438e-06 1.19423e-06 1.19415e-06 1.19419e-06 1.19428e-06 1.19438e-06 1.19448e-06 1.19463e-06 1.19479e-06 1.19493e-06 1.19505e-06 1.19513e-06 1.1952e-06 1.19527e-06 1.19533e-06 1.19542e-06 1.19552e-06 1.19563e-06 1.19576e-06 1.19589e-06 1.19602e-06 1.19615e-06 1.19628e-06 1.1964e-06 1.19651e-06 1.19663e-06 1.19674e-06 1.19686e-06 1.19697e-06 1.19708e-06 1.19718e-06 1.19729e-06 1.1974e-06 1.19751e-06 1.19762e-06 1.19773e-06 1.19785e-06 1.19797e-06 1.1981e-06 1.19822e-06 1.19835e-06 1.19848e-06 1.1986e-06 1.19873e-06 1.19885e-06 1.19897e-06 1.1991e-06 1.19106e-06 1.19119e-06 1.19132e-06 1.19145e-06 1.19157e-06 1.19169e-06 1.19181e-06 1.19193e-06 1.19208e-06 1.1922e-06 1.19231e-06 1.19244e-06 1.19258e-06 1.19274e-06 1.19288e-06 1.19296e-06 1.19304e-06 1.19323e-06 1.19358e-06 1.194e-06 1.19435e-06 1.1945e-06 1.19445e-06 1.1943e-06 1.19417e-06 1.19415e-06 1.19422e-06 1.19431e-06 1.19441e-06 1.19453e-06 1.19468e-06 1.19483e-06 1.19497e-06 1.19507e-06 1.19515e-06 1.19522e-06 1.19528e-06 1.19535e-06 1.19544e-06 1.19554e-06 1.19566e-06 1.19579e-06 1.19592e-06 1.19605e-06 1.19618e-06 1.1963e-06 1.19642e-06 1.19654e-06 1.19665e-06 1.19677e-06 1.19688e-06 1.19699e-06 1.19709e-06 1.1972e-06 1.19731e-06 1.19742e-06 1.19753e-06 1.19764e-06 1.19775e-06 1.19787e-06 1.19799e-06 1.19812e-06 1.19824e-06 1.19837e-06 1.19849e-06 1.19862e-06 1.19874e-06 1.19886e-06 1.19899e-06 1.19911e-06 1.1911e-06 1.19124e-06 1.19137e-06 1.1915e-06 1.19162e-06 1.19175e-06 1.19187e-06 1.19201e-06 1.19213e-06 1.19224e-06 1.19237e-06 1.19251e-06 1.19266e-06 1.19281e-06 1.19291e-06 1.19298e-06 1.19313e-06 1.19342e-06 1.19382e-06 1.19421e-06 1.19444e-06 1.19448e-06 1.19437e-06 1.19422e-06 1.19414e-06 1.19417e-06 1.19425e-06 1.19434e-06 1.19444e-06 1.19457e-06 1.19473e-06 1.19488e-06 1.195e-06 1.1951e-06 1.19517e-06 1.19523e-06 1.1953e-06 1.19537e-06 1.19546e-06 1.19557e-06 1.1957e-06 1.19582e-06 1.19595e-06 1.19608e-06 1.19621e-06 1.19633e-06 1.19645e-06 1.19656e-06 1.19668e-06 1.19679e-06 1.1969e-06 1.19701e-06 1.19711e-06 1.19722e-06 1.19733e-06 1.19744e-06 1.19754e-06 1.19766e-06 1.19777e-06 1.19789e-06 1.19801e-06 1.19813e-06 1.19826e-06 1.19838e-06 1.19851e-06 1.19863e-06 1.19875e-06 1.19888e-06 1.199e-06 1.19912e-06 1.19115e-06 1.19128e-06 1.19141e-06 1.19154e-06 1.19168e-06 1.19181e-06 1.19194e-06 1.19206e-06 1.19217e-06 1.1923e-06 1.19245e-06 1.1926e-06 1.19274e-06 1.19284e-06 1.19292e-06 1.19304e-06 1.19329e-06 1.19366e-06 1.19406e-06 1.19436e-06 1.19447e-06 1.19441e-06 1.19427e-06 1.19415e-06 1.19413e-06 1.19419e-06 1.19428e-06 1.19437e-06 1.19448e-06 1.19463e-06 1.19478e-06 1.19492e-06 1.19503e-06 1.19512e-06 1.19519e-06 1.19525e-06 1.19531e-06 1.19539e-06 1.19549e-06 1.1956e-06 1.19573e-06 1.19586e-06 1.19598e-06 1.19611e-06 1.19624e-06 1.19635e-06 1.19647e-06 1.19659e-06 1.1967e-06 1.19681e-06 1.19692e-06 1.19703e-06 1.19713e-06 1.19724e-06 1.19735e-06 1.19745e-06 1.19756e-06 1.19767e-06 1.19779e-06 1.19791e-06 1.19803e-06 1.19815e-06 1.19828e-06 1.1984e-06 1.19852e-06 1.19865e-06 1.19877e-06 1.19889e-06 1.19901e-06 1.19914e-06 1.1912e-06 1.19134e-06 1.19148e-06 1.19161e-06 1.19174e-06 1.19187e-06 1.19199e-06 1.19211e-06 1.19224e-06 1.19239e-06 1.19253e-06 1.19267e-06 1.19277e-06 1.19286e-06 1.19298e-06 1.1932e-06 1.19354e-06 1.19393e-06 1.19425e-06 1.19441e-06 1.19442e-06 1.1943e-06 1.19417e-06 1.1941e-06 1.19413e-06 1.19421e-06 1.1943e-06 1.1944e-06 1.19453e-06 1.19468e-06 1.19483e-06 1.19495e-06 1.19505e-06 1.19513e-06 1.1952e-06 1.19526e-06 1.19533e-06 1.19541e-06 1.19552e-06 1.19563e-06 1.19576e-06 1.19589e-06 1.19601e-06 1.19614e-06 1.19626e-06 1.19638e-06 1.1965e-06 1.19661e-06 1.19672e-06 1.19683e-06 1.19694e-06 1.19705e-06 1.19715e-06 1.19726e-06 1.19737e-06 1.19747e-06 1.19758e-06 1.19769e-06 1.19781e-06 1.19792e-06 1.19805e-06 1.19817e-06 1.19829e-06 1.19842e-06 1.19854e-06 1.19866e-06 1.19878e-06 1.1989e-06 1.19903e-06 1.19915e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25709e-06 1.25709e-06 1.25709e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25709e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.2571e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25711e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25712e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.25713e-06 1.26206e-06 1.26208e-06 1.26209e-06 1.26211e-06 1.26212e-06 1.26214e-06 1.26215e-06 1.26217e-06 1.26219e-06 1.2622e-06 1.26222e-06 1.26224e-06 1.26225e-06 1.26227e-06 1.26229e-06 1.2623e-06 1.26232e-06 1.26234e-06 1.26235e-06 1.26237e-06 1.26239e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26245e-06 1.26247e-06 1.26207e-06 1.26208e-06 1.2621e-06 1.26211e-06 1.26213e-06 1.26215e-06 1.26216e-06 1.26218e-06 1.2622e-06 1.26221e-06 1.26223e-06 1.26225e-06 1.26226e-06 1.26228e-06 1.2623e-06 1.26232e-06 1.26233e-06 1.26235e-06 1.26237e-06 1.26239e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26245e-06 1.26247e-06 1.26249e-06 1.26207e-06 1.26209e-06 1.26211e-06 1.26212e-06 1.26214e-06 1.26216e-06 1.26217e-06 1.26219e-06 1.26221e-06 1.26223e-06 1.26224e-06 1.26226e-06 1.26228e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26235e-06 1.26237e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26245e-06 1.26247e-06 1.26249e-06 1.26251e-06 1.26208e-06 1.2621e-06 1.26212e-06 1.26213e-06 1.26215e-06 1.26217e-06 1.26219e-06 1.2622e-06 1.26222e-06 1.26224e-06 1.26226e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26235e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26247e-06 1.26249e-06 1.26251e-06 1.26253e-06 1.26209e-06 1.26211e-06 1.26213e-06 1.26214e-06 1.26216e-06 1.26218e-06 1.2622e-06 1.26222e-06 1.26223e-06 1.26225e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26234e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26247e-06 1.26249e-06 1.26251e-06 1.26253e-06 1.26254e-06 1.2621e-06 1.26212e-06 1.26213e-06 1.26215e-06 1.26217e-06 1.26219e-06 1.26221e-06 1.26223e-06 1.26225e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26232e-06 1.26234e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.26249e-06 1.26251e-06 1.26253e-06 1.26255e-06 1.26257e-06 1.2621e-06 1.26212e-06 1.26214e-06 1.26216e-06 1.26218e-06 1.2622e-06 1.26222e-06 1.26224e-06 1.26226e-06 1.26228e-06 1.2623e-06 1.26232e-06 1.26234e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.2625e-06 1.26252e-06 1.26253e-06 1.26255e-06 1.26257e-06 1.26259e-06 1.26211e-06 1.26213e-06 1.26215e-06 1.26217e-06 1.26219e-06 1.26221e-06 1.26223e-06 1.26226e-06 1.26228e-06 1.2623e-06 1.26232e-06 1.26234e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.2625e-06 1.26252e-06 1.26254e-06 1.26256e-06 1.26257e-06 1.26259e-06 1.26261e-06 1.26212e-06 1.26214e-06 1.26216e-06 1.26218e-06 1.2622e-06 1.26222e-06 1.26225e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.2625e-06 1.26252e-06 1.26254e-06 1.26256e-06 1.26258e-06 1.2626e-06 1.26262e-06 1.26263e-06 1.26212e-06 1.26214e-06 1.26217e-06 1.26219e-06 1.26221e-06 1.26223e-06 1.26226e-06 1.26228e-06 1.2623e-06 1.26233e-06 1.26235e-06 1.26237e-06 1.2624e-06 1.26242e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.2625e-06 1.26252e-06 1.26254e-06 1.26256e-06 1.26258e-06 1.2626e-06 1.26262e-06 1.26264e-06 1.26266e-06 1.26213e-06 1.26215e-06 1.26218e-06 1.2622e-06 1.26222e-06 1.26225e-06 1.26227e-06 1.26229e-06 1.26232e-06 1.26234e-06 1.26236e-06 1.26239e-06 1.26241e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.2625e-06 1.26253e-06 1.26255e-06 1.26257e-06 1.26259e-06 1.26261e-06 1.26263e-06 1.26265e-06 1.26266e-06 1.26268e-06 1.26214e-06 1.26216e-06 1.26219e-06 1.26221e-06 1.26223e-06 1.26226e-06 1.26228e-06 1.26231e-06 1.26233e-06 1.26235e-06 1.26238e-06 1.2624e-06 1.26243e-06 1.26245e-06 1.26248e-06 1.2625e-06 1.26252e-06 1.26255e-06 1.26257e-06 1.26259e-06 1.26261e-06 1.26263e-06 1.26265e-06 1.26267e-06 1.26269e-06 1.26271e-06 1.26216e-06 1.26218e-06 1.2622e-06 1.26222e-06 1.26225e-06 1.26227e-06 1.2623e-06 1.26232e-06 1.26234e-06 1.26237e-06 1.26239e-06 1.26242e-06 1.26244e-06 1.26247e-06 1.26249e-06 1.26252e-06 1.26254e-06 1.26257e-06 1.26259e-06 1.26261e-06 1.26264e-06 1.26266e-06 1.26268e-06 1.2627e-06 1.26272e-06 1.26274e-06 1.26218e-06 1.2622e-06 1.26222e-06 1.26224e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26234e-06 1.26236e-06 1.26239e-06 1.26241e-06 1.26244e-06 1.26246e-06 1.26249e-06 1.26251e-06 1.26254e-06 1.26256e-06 1.26259e-06 1.26261e-06 1.26264e-06 1.26266e-06 1.26268e-06 1.2627e-06 1.26272e-06 1.26274e-06 1.26276e-06 1.2622e-06 1.26222e-06 1.26224e-06 1.26226e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26243e-06 1.26245e-06 1.26248e-06 1.26251e-06 1.26253e-06 1.26256e-06 1.26258e-06 1.26261e-06 1.26263e-06 1.26266e-06 1.26268e-06 1.26271e-06 1.26273e-06 1.26275e-06 1.26277e-06 1.26279e-06 1.26222e-06 1.26224e-06 1.26226e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26235e-06 1.26238e-06 1.2624e-06 1.26243e-06 1.26245e-06 1.26247e-06 1.2625e-06 1.26252e-06 1.26255e-06 1.26258e-06 1.2626e-06 1.26263e-06 1.26265e-06 1.26268e-06 1.26271e-06 1.26273e-06 1.26275e-06 1.26278e-06 1.2628e-06 1.26282e-06 1.26224e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26233e-06 1.26236e-06 1.26238e-06 1.2624e-06 1.26243e-06 1.26245e-06 1.26247e-06 1.2625e-06 1.26252e-06 1.26255e-06 1.26257e-06 1.2626e-06 1.26262e-06 1.26265e-06 1.26268e-06 1.2627e-06 1.26273e-06 1.26275e-06 1.26278e-06 1.26281e-06 1.26283e-06 1.26285e-06 1.26227e-06 1.26229e-06 1.26231e-06 1.26234e-06 1.26236e-06 1.26238e-06 1.26241e-06 1.26243e-06 1.26245e-06 1.26248e-06 1.2625e-06 1.26252e-06 1.26255e-06 1.26257e-06 1.2626e-06 1.26262e-06 1.26265e-06 1.26267e-06 1.2627e-06 1.26273e-06 1.26275e-06 1.26278e-06 1.26281e-06 1.26283e-06 1.26286e-06 1.26289e-06 1.26229e-06 1.26232e-06 1.26234e-06 1.26236e-06 1.26239e-06 1.26241e-06 1.26243e-06 1.26246e-06 1.26248e-06 1.2625e-06 1.26253e-06 1.26255e-06 1.26257e-06 1.2626e-06 1.26262e-06 1.26265e-06 1.26267e-06 1.2627e-06 1.26272e-06 1.26275e-06 1.26278e-06 1.26281e-06 1.26283e-06 1.26286e-06 1.26289e-06 1.26292e-06 1.26232e-06 1.26234e-06 1.26236e-06 1.26239e-06 1.26241e-06 1.26244e-06 1.26246e-06 1.26248e-06 1.26251e-06 1.26253e-06 1.26255e-06 1.26258e-06 1.2626e-06 1.26263e-06 1.26265e-06 1.26267e-06 1.2627e-06 1.26272e-06 1.26275e-06 1.26278e-06 1.2628e-06 1.26283e-06 1.26286e-06 1.26289e-06 1.26292e-06 1.26295e-06 1.26234e-06 1.26236e-06 1.26239e-06 1.26241e-06 1.26244e-06 1.26246e-06 1.26249e-06 1.26251e-06 1.26254e-06 1.26256e-06 1.26258e-06 1.26261e-06 1.26263e-06 1.26266e-06 1.26268e-06 1.2627e-06 1.26273e-06 1.26275e-06 1.26278e-06 1.26281e-06 1.26283e-06 1.26286e-06 1.26289e-06 1.26293e-06 1.26296e-06 1.26299e-06 1.26236e-06 1.26238e-06 1.26241e-06 1.26244e-06 1.26246e-06 1.26249e-06 1.26251e-06 1.26254e-06 1.26256e-06 1.26259e-06 1.26261e-06 1.26264e-06 1.26266e-06 1.26269e-06 1.26271e-06 1.26273e-06 1.26276e-06 1.26279e-06 1.26281e-06 1.26284e-06 1.26287e-06 1.2629e-06 1.26293e-06 1.26296e-06 1.26299e-06 1.26303e-06 1.26238e-06 1.2624e-06 1.26243e-06 1.26246e-06 1.26248e-06 1.26251e-06 1.26254e-06 1.26256e-06 1.26259e-06 1.26261e-06 1.26264e-06 1.26267e-06 1.26269e-06 1.26272e-06 1.26274e-06 1.26277e-06 1.26279e-06 1.26282e-06 1.26285e-06 1.26287e-06 1.2629e-06 1.26293e-06 1.26297e-06 1.263e-06 1.26303e-06 1.26307e-06 1.26239e-06 1.26242e-06 1.26245e-06 1.26248e-06 1.2625e-06 1.26253e-06 1.26256e-06 1.26259e-06 1.26261e-06 1.26264e-06 1.26267e-06 1.26269e-06 1.26272e-06 1.26275e-06 1.26277e-06 1.2628e-06 1.26283e-06 1.26285e-06 1.26288e-06 1.26291e-06 1.26294e-06 1.26297e-06 1.263e-06 1.26304e-06 1.26307e-06 1.26311e-06 1.26241e-06 1.26244e-06 1.26247e-06 1.26249e-06 1.26252e-06 1.26255e-06 1.26258e-06 1.26261e-06 1.26264e-06 1.26267e-06 1.26269e-06 1.26272e-06 1.26275e-06 1.26278e-06 1.2628e-06 1.26283e-06 1.26286e-06 1.26289e-06 1.26292e-06 1.26295e-06 1.26298e-06 1.26301e-06 1.26305e-06 1.26308e-06 1.26311e-06 1.26315e-06 1.26242e-06 1.26245e-06 1.26248e-06 1.26251e-06 1.26254e-06 1.26257e-06 1.2626e-06 1.26263e-06 1.26266e-06 1.26269e-06 1.26272e-06 1.26275e-06 1.26278e-06 1.26281e-06 1.26284e-06 1.26287e-06 1.2629e-06 1.26293e-06 1.26296e-06 1.26299e-06 1.26302e-06 1.26306e-06 1.26309e-06 1.26312e-06 1.26315e-06 1.26319e-06 1.26243e-06 1.26246e-06 1.26249e-06 1.26252e-06 1.26256e-06 1.26259e-06 1.26262e-06 1.26265e-06 1.26268e-06 1.26271e-06 1.26274e-06 1.26277e-06 1.26281e-06 1.26284e-06 1.26287e-06 1.2629e-06 1.26293e-06 1.26296e-06 1.263e-06 1.26303e-06 1.26306e-06 1.2631e-06 1.26313e-06 1.26316e-06 1.2632e-06 1.26323e-06 1.26243e-06 1.26247e-06 1.2625e-06 1.26254e-06 1.26257e-06 1.2626e-06 1.26264e-06 1.26267e-06 1.2627e-06 1.26273e-06 1.26277e-06 1.2628e-06 1.26283e-06 1.26286e-06 1.2629e-06 1.26293e-06 1.26297e-06 1.263e-06 1.26304e-06 1.26307e-06 1.26311e-06 1.26314e-06 1.26317e-06 1.26321e-06 1.26324e-06 1.26327e-06 1.26244e-06 1.26247e-06 1.26251e-06 1.26254e-06 1.26258e-06 1.26262e-06 1.26265e-06 1.26269e-06 1.26272e-06 1.26275e-06 1.26279e-06 1.26282e-06 1.26286e-06 1.26289e-06 1.26293e-06 1.26296e-06 1.263e-06 1.26304e-06 1.26307e-06 1.26311e-06 1.26315e-06 1.26318e-06 1.26322e-06 1.26325e-06 1.26328e-06 1.26332e-06 1.26244e-06 1.26247e-06 1.26251e-06 1.26255e-06 1.26259e-06 1.26263e-06 1.26266e-06 1.2627e-06 1.26274e-06 1.26277e-06 1.26281e-06 1.26285e-06 1.26288e-06 1.26292e-06 1.26296e-06 1.26299e-06 1.26303e-06 1.26307e-06 1.26311e-06 1.26315e-06 1.26319e-06 1.26322e-06 1.26326e-06 1.26329e-06 1.26333e-06 1.26336e-06 1.26244e-06 1.26248e-06 1.26252e-06 1.26255e-06 1.26259e-06 1.26263e-06 1.26267e-06 1.26271e-06 1.26275e-06 1.26279e-06 1.26283e-06 1.26287e-06 1.26291e-06 1.26295e-06 1.26299e-06 1.26303e-06 1.26307e-06 1.26311e-06 1.26315e-06 1.26319e-06 1.26323e-06 1.26326e-06 1.2633e-06 1.26334e-06 1.26337e-06 1.2634e-06 1.26245e-06 1.26249e-06 1.26252e-06 1.26256e-06 1.2626e-06 1.26264e-06 1.26268e-06 1.26272e-06 1.26276e-06 1.26281e-06 1.26285e-06 1.26289e-06 1.26293e-06 1.26297e-06 1.26301e-06 1.26306e-06 1.2631e-06 1.26314e-06 1.26318e-06 1.26323e-06 1.26327e-06 1.2633e-06 1.26334e-06 1.26338e-06 1.26341e-06 1.26345e-06 1.26247e-06 1.2625e-06 1.26254e-06 1.26257e-06 1.26261e-06 1.26265e-06 1.26269e-06 1.26273e-06 1.26278e-06 1.26282e-06 1.26286e-06 1.26291e-06 1.26295e-06 1.263e-06 1.26304e-06 1.26309e-06 1.26313e-06 1.26317e-06 1.26322e-06 1.26326e-06 1.2633e-06 1.26334e-06 1.26338e-06 1.26342e-06 1.26346e-06 1.26349e-06 1.26251e-06 1.26254e-06 1.26256e-06 1.26259e-06 1.26263e-06 1.26266e-06 1.2627e-06 1.26274e-06 1.26279e-06 1.26283e-06 1.26288e-06 1.26293e-06 1.26297e-06 1.26302e-06 1.26307e-06 1.26312e-06 1.26316e-06 1.26321e-06 1.26325e-06 1.2633e-06 1.26334e-06 1.26338e-06 1.26342e-06 1.26346e-06 1.2635e-06 1.26354e-06 1.26257e-06 1.26259e-06 1.26261e-06 1.26263e-06 1.26266e-06 1.26269e-06 1.26272e-06 1.26276e-06 1.2628e-06 1.26285e-06 1.26289e-06 1.26294e-06 1.26299e-06 1.26304e-06 1.26309e-06 1.26314e-06 1.26319e-06 1.26324e-06 1.26328e-06 1.26333e-06 1.26337e-06 1.26342e-06 1.26346e-06 1.2635e-06 1.26354e-06 1.26358e-06 1.26264e-06 1.26265e-06 1.26266e-06 1.26268e-06 1.2627e-06 1.26273e-06 1.26275e-06 1.26279e-06 1.26282e-06 1.26287e-06 1.26291e-06 1.26296e-06 1.26301e-06 1.26306e-06 1.26312e-06 1.26317e-06 1.26322e-06 1.26327e-06 1.26332e-06 1.26336e-06 1.26341e-06 1.26345e-06 1.2635e-06 1.26354e-06 1.26359e-06 1.26363e-06 1.26271e-06 1.26272e-06 1.26273e-06 1.26275e-06 1.26276e-06 1.26278e-06 1.2628e-06 1.26282e-06 1.26286e-06 1.26289e-06 1.26294e-06 1.26298e-06 1.26303e-06 1.26309e-06 1.26314e-06 1.26319e-06 1.26324e-06 1.2633e-06 1.26335e-06 1.26339e-06 1.26344e-06 1.26349e-06 1.26353e-06 1.26358e-06 1.26363e-06 1.26368e-06 1.26277e-06 1.26278e-06 1.2628e-06 1.26281e-06 1.26283e-06 1.26284e-06 1.26285e-06 1.26287e-06 1.2629e-06 1.26293e-06 1.26297e-06 1.26301e-06 1.26306e-06 1.26311e-06 1.26316e-06 1.26322e-06 1.26327e-06 1.26332e-06 1.26337e-06 1.26342e-06 1.26347e-06 1.26352e-06 1.26357e-06 1.26362e-06 1.26367e-06 1.26372e-06 1.26281e-06 1.26283e-06 1.26286e-06 1.26288e-06 1.26289e-06 1.26291e-06 1.26292e-06 1.26293e-06 1.26295e-06 1.26297e-06 1.263e-06 1.26304e-06 1.26309e-06 1.26313e-06 1.26319e-06 1.26324e-06 1.26329e-06 1.26335e-06 1.2634e-06 1.26346e-06 1.26351e-06 1.26356e-06 1.26361e-06 1.26366e-06 1.26372e-06 1.26377e-06 1.26282e-06 1.26286e-06 1.2629e-06 1.26293e-06 1.26295e-06 1.26297e-06 1.26299e-06 1.263e-06 1.26301e-06 1.26303e-06 1.26305e-06 1.26308e-06 1.26312e-06 1.26316e-06 1.26321e-06 1.26326e-06 1.26332e-06 1.26337e-06 1.26343e-06 1.26348e-06 1.26354e-06 1.26359e-06 1.26365e-06 1.26371e-06 1.26376e-06 1.26382e-06 1.26281e-06 1.26287e-06 1.26292e-06 1.26296e-06 1.26299e-06 1.26302e-06 1.26305e-06 1.26306e-06 1.26308e-06 1.26309e-06 1.26311e-06 1.26314e-06 1.26316e-06 1.2632e-06 1.26324e-06 1.26329e-06 1.26334e-06 1.2634e-06 1.26346e-06 1.26351e-06 1.26357e-06 1.26363e-06 1.26369e-06 1.26375e-06 1.26381e-06 1.26387e-06 1.26279e-06 1.26285e-06 1.26291e-06 1.26297e-06 1.26302e-06 1.26306e-06 1.26309e-06 1.26312e-06 1.26314e-06 1.26316e-06 1.26318e-06 1.26319e-06 1.26322e-06 1.26325e-06 1.26328e-06 1.26332e-06 1.26337e-06 1.26343e-06 1.26348e-06 1.26354e-06 1.2636e-06 1.26367e-06 1.26373e-06 1.26379e-06 1.26386e-06 1.26393e-06 1.26278e-06 1.26283e-06 1.26289e-06 1.26296e-06 1.26302e-06 1.26308e-06 1.26313e-06 1.26317e-06 1.2632e-06 1.26322e-06 1.26324e-06 1.26326e-06 1.26327e-06 1.2633e-06 1.26333e-06 1.26336e-06 1.26341e-06 1.26346e-06 1.26351e-06 1.26357e-06 1.26364e-06 1.2637e-06 1.26377e-06 1.26384e-06 1.26391e-06 1.26398e-06 1.2628e-06 1.26284e-06 1.26289e-06 1.26295e-06 1.26301e-06 1.26308e-06 1.26314e-06 1.26319e-06 1.26324e-06 1.26327e-06 1.2633e-06 1.26332e-06 1.26334e-06 1.26335e-06 1.26338e-06 1.26341e-06 1.26345e-06 1.26349e-06 1.26355e-06 1.26361e-06 1.26367e-06 1.26374e-06 1.26381e-06 1.26388e-06 1.26395e-06 1.26403e-06 1.26284e-06 1.26287e-06 1.26291e-06 1.26295e-06 1.26301e-06 1.26307e-06 1.26314e-06 1.26321e-06 1.26327e-06 1.26331e-06 1.26335e-06 1.26338e-06 1.2634e-06 1.26341e-06 1.26343e-06 1.26346e-06 1.26349e-06 1.26353e-06 1.26358e-06 1.26364e-06 1.2637e-06 1.26377e-06 1.26385e-06 1.26392e-06 1.264e-06 1.26409e-06 1.26288e-06 1.26291e-06 1.26294e-06 1.26298e-06 1.26302e-06 1.26307e-06 1.26314e-06 1.26321e-06 1.26328e-06 1.26334e-06 1.26339e-06 1.26342e-06 1.26345e-06 1.26347e-06 1.26349e-06 1.26351e-06 1.26354e-06 1.26357e-06 1.26362e-06 1.26368e-06 1.26374e-06 1.26381e-06 1.26389e-06 1.26397e-06 1.26405e-06 1.26414e-06 1.26296e-06 1.26297e-06 1.26299e-06 1.26302e-06 1.26305e-06 1.26309e-06 1.26315e-06 1.26321e-06 1.26328e-06 1.26335e-06 1.26341e-06 1.26346e-06 1.2635e-06 1.26353e-06 1.26355e-06 1.26357e-06 1.26359e-06 1.26362e-06 1.26366e-06 1.26372e-06 1.26378e-06 1.26385e-06 1.26393e-06 1.26401e-06 1.2641e-06 1.2642e-06 1.2631e-06 1.26306e-06 1.26306e-06 1.26307e-06 1.2631e-06 1.26313e-06 1.26317e-06 1.26322e-06 1.26329e-06 1.26336e-06 1.26343e-06 1.26349e-06 1.26354e-06 1.26357e-06 1.2636e-06 1.26362e-06 1.26365e-06 1.26367e-06 1.26371e-06 1.26376e-06 1.26382e-06 1.26389e-06 1.26397e-06 1.26406e-06 1.26415e-06 1.26425e-06 1.26334e-06 1.26324e-06 1.26317e-06 1.26315e-06 1.26315e-06 1.26318e-06 1.26321e-06 1.26325e-06 1.2633e-06 1.26336e-06 1.26343e-06 1.26351e-06 1.26357e-06 1.26361e-06 1.26365e-06 1.26368e-06 1.2637e-06 1.26373e-06 1.26376e-06 1.26381e-06 1.26387e-06 1.26394e-06 1.26402e-06 1.26411e-06 1.26421e-06 1.26431e-06 1.26361e-06 1.26348e-06 1.26336e-06 1.26328e-06 1.26324e-06 1.26324e-06 1.26326e-06 1.26329e-06 1.26333e-06 1.26338e-06 1.26344e-06 1.26351e-06 1.26358e-06 1.26364e-06 1.26369e-06 1.26373e-06 1.26375e-06 1.26378e-06 1.26382e-06 1.26386e-06 1.26391e-06 1.26398e-06 1.26406e-06 1.26416e-06 1.26426e-06 1.26437e-06 1.26382e-06 1.26373e-06 1.2636e-06 1.26347e-06 1.26337e-06 1.26332e-06 1.26332e-06 1.26333e-06 1.26336e-06 1.2634e-06 1.26346e-06 1.26352e-06 1.2636e-06 1.26367e-06 1.26372e-06 1.26377e-06 1.2638e-06 1.26384e-06 1.26387e-06 1.26391e-06 1.26396e-06 1.26403e-06 1.26411e-06 1.26421e-06 1.26431e-06 1.26442e-06 1.2639e-06 1.26391e-06 1.26384e-06 1.26371e-06 1.26357e-06 1.26346e-06 1.2634e-06 1.26339e-06 1.26341e-06 1.26344e-06 1.26348e-06 1.26354e-06 1.26361e-06 1.26368e-06 1.26375e-06 1.26381e-06 1.26385e-06 1.26389e-06 1.26392e-06 1.26397e-06 1.26401e-06 1.26408e-06 1.26416e-06 1.26426e-06 1.26437e-06 1.26448e-06 1.26382e-06 1.26396e-06 1.26399e-06 1.26392e-06 1.26379e-06 1.26364e-06 1.26353e-06 1.26347e-06 1.26346e-06 1.26348e-06 1.26351e-06 1.26356e-06 1.26362e-06 1.26369e-06 1.26377e-06 1.26384e-06 1.26389e-06 1.26393e-06 1.26398e-06 1.26402e-06 1.26407e-06 1.26413e-06 1.26421e-06 1.26431e-06 1.26442e-06 1.26454e-06 1.2636e-06 1.26386e-06 1.26402e-06 1.26406e-06 1.26399e-06 1.26384e-06 1.26369e-06 1.26358e-06 1.26353e-06 1.26353e-06 1.26355e-06 1.26359e-06 1.26364e-06 1.26371e-06 1.26378e-06 1.26386e-06 1.26392e-06 1.26398e-06 1.26402e-06 1.26407e-06 1.26412e-06 1.26418e-06 1.26426e-06 1.26436e-06 1.26447e-06 1.2646e-06 1.26335e-06 1.26366e-06 1.26393e-06 1.2641e-06 1.26413e-06 1.26404e-06 1.26388e-06 1.26373e-06 1.26363e-06 1.26359e-06 1.2636e-06 1.26363e-06 1.26367e-06 1.26372e-06 1.2638e-06 1.26388e-06 1.26395e-06 1.26401e-06 1.26407e-06 1.26412e-06 1.26417e-06 1.26424e-06 1.26432e-06 1.26441e-06 1.26452e-06 1.26465e-06 1.26316e-06 1.26342e-06 1.26374e-06 1.26402e-06 1.26417e-06 1.26418e-06 1.26407e-06 1.2639e-06 1.26375e-06 1.26367e-06 1.26365e-06 1.26366e-06 1.2637e-06 1.26375e-06 1.26381e-06 1.26389e-06 1.26397e-06 1.26405e-06 1.26411e-06 1.26417e-06 1.26422e-06 1.26429e-06 1.26437e-06 1.26446e-06 1.26458e-06 1.26471e-06 1.26307e-06 1.26325e-06 1.26353e-06 1.26385e-06 1.26412e-06 1.26424e-06 1.26421e-06 1.26407e-06 1.2639e-06 1.26377e-06 1.26371e-06 1.26371e-06 1.26373e-06 1.26377e-06 1.26383e-06 1.26391e-06 1.26399e-06 1.26407e-06 1.26414e-06 1.26421e-06 1.26427e-06 1.26434e-06 1.26442e-06 1.26452e-06 1.26463e-06 1.26476e-06 1.26308e-06 1.26316e-06 1.26335e-06 1.26365e-06 1.26399e-06 1.26423e-06 1.2643e-06 1.26422e-06 1.26406e-06 1.26389e-06 1.26379e-06 1.26376e-06 1.26377e-06 1.2638e-06 1.26385e-06 1.26392e-06 1.26401e-06 1.2641e-06 1.26418e-06 1.26425e-06 1.26432e-06 1.26439e-06 1.26447e-06 1.26457e-06 1.26468e-06 1.26481e-06 1.26312e-06 1.26314e-06 1.26325e-06 1.26348e-06 1.26382e-06 1.26414e-06 1.26432e-06 1.26433e-06 1.2642e-06 1.26402e-06 1.26388e-06 1.26381e-06 1.26381e-06 1.26383e-06 1.26388e-06 1.26394e-06 1.26403e-06 1.26412e-06 1.2642e-06 1.26428e-06 1.26436e-06 1.26443e-06 1.26452e-06 1.26462e-06 1.26473e-06 1.26486e-06 1.26314e-06 1.26318e-06 1.26322e-06 1.26336e-06 1.26365e-06 1.264e-06 1.26428e-06 1.2644e-06 1.26433e-06 1.26416e-06 1.26399e-06 1.26388e-06 1.26385e-06 1.26387e-06 1.2639e-06 1.26396e-06 1.26404e-06 1.26413e-06 1.26423e-06 1.26431e-06 1.26439e-06 1.26447e-06 1.26456e-06 1.26466e-06 1.26478e-06 1.26491e-06 1.26314e-06 1.2632e-06 1.26323e-06 1.2633e-06 1.26351e-06 1.26384e-06 1.26419e-06 1.2644e-06 1.26442e-06 1.26429e-06 1.2641e-06 1.26396e-06 1.2639e-06 1.2639e-06 1.26393e-06 1.26398e-06 1.26406e-06 1.26415e-06 1.26425e-06 1.26434e-06 1.26443e-06 1.26451e-06 1.2646e-06 1.2647e-06 1.26482e-06 1.26495e-06 1.26313e-06 1.26321e-06 1.26326e-06 1.26329e-06 1.26341e-06 1.26369e-06 1.26407e-06 1.26437e-06 1.26447e-06 1.26439e-06 1.26421e-06 1.26405e-06 1.26395e-06 1.26394e-06 1.26396e-06 1.26401e-06 1.26407e-06 1.26416e-06 1.26426e-06 1.26436e-06 1.26445e-06 1.26455e-06 1.26464e-06 1.26474e-06 1.26486e-06 1.26499e-06 1.2631e-06 1.26321e-06 1.26328e-06 1.2633e-06 1.26336e-06 1.26357e-06 1.26393e-06 1.26429e-06 1.26449e-06 1.26448e-06 1.26432e-06 1.26414e-06 1.26401e-06 1.26397e-06 1.26399e-06 1.26403e-06 1.26409e-06 1.26417e-06 1.26428e-06 1.26438e-06 1.26448e-06 1.26458e-06 1.26467e-06 1.26478e-06 1.2649e-06 1.26503e-06 1.26309e-06 1.26319e-06 1.26329e-06 1.26333e-06 1.26335e-06 1.26348e-06 1.2638e-06 1.26419e-06 1.26447e-06 1.26454e-06 1.26442e-06 1.26423e-06 1.26408e-06 1.26401e-06 1.26401e-06 1.26405e-06 1.26411e-06 1.26419e-06 1.26429e-06 1.26439e-06 1.2645e-06 1.2646e-06 1.2647e-06 1.26481e-06 1.26493e-06 1.26506e-06 1.26309e-06 1.26317e-06 1.26328e-06 1.26335e-06 1.26335e-06 1.26342e-06 1.26368e-06 1.26407e-06 1.26442e-06 1.26456e-06 1.26449e-06 1.26431e-06 1.26414e-06 1.26405e-06 1.26404e-06 1.26407e-06 1.26412e-06 1.2642e-06 1.2643e-06 1.26441e-06 1.26452e-06 1.26462e-06 1.26473e-06 1.26484e-06 1.26496e-06 1.26508e-06 1.26309e-06 1.26315e-06 1.26326e-06 1.26335e-06 1.26337e-06 1.26339e-06 1.26358e-06 1.26396e-06 1.26435e-06 1.26457e-06 1.26455e-06 1.26439e-06 1.26421e-06 1.26409e-06 1.26406e-06 1.26409e-06 1.26414e-06 1.26421e-06 1.2643e-06 1.26441e-06 1.26453e-06 1.26464e-06 1.26475e-06 1.26486e-06 1.26498e-06 1.26511e-06 1.2631e-06 1.26315e-06 1.26324e-06 1.26335e-06 1.26339e-06 1.26338e-06 1.2635e-06 1.26384e-06 1.26426e-06 1.26455e-06 1.26459e-06 1.26446e-06 1.26427e-06 1.26413e-06 1.26409e-06 1.2641e-06 1.26415e-06 1.26422e-06 1.26431e-06 1.26442e-06 1.26454e-06 1.26465e-06 1.26476e-06 1.26488e-06 1.265e-06 1.26512e-06 1.2631e-06 1.26314e-06 1.26322e-06 1.26334e-06 1.2634e-06 1.26338e-06 1.26345e-06 1.26374e-06 1.26417e-06 1.26451e-06 1.26461e-06 1.26451e-06 1.26433e-06 1.26418e-06 1.26411e-06 1.26412e-06 1.26416e-06 1.26422e-06 1.26431e-06 1.26442e-06 1.26454e-06 1.26466e-06 1.26478e-06 1.26489e-06 1.26501e-06 1.26514e-06 1.2631e-06 1.26314e-06 1.26319e-06 1.26332e-06 1.2634e-06 1.26338e-06 1.2634e-06 1.26365e-06 1.26408e-06 1.26446e-06 1.26462e-06 1.26455e-06 1.26437e-06 1.26421e-06 1.26413e-06 1.26413e-06 1.26417e-06 1.26423e-06 1.26431e-06 1.26442e-06 1.26454e-06 1.26466e-06 1.26478e-06 1.2649e-06 1.26502e-06 1.26514e-06 1.26309e-06 1.26314e-06 1.26317e-06 1.26329e-06 1.2634e-06 1.2634e-06 1.26339e-06 1.26356e-06 1.26395e-06 1.26436e-06 1.2646e-06 1.2646e-06 1.26444e-06 1.26427e-06 1.26416e-06 1.26414e-06 1.26418e-06 1.26423e-06 1.26431e-06 1.26442e-06 1.26454e-06 1.26466e-06 1.26478e-06 1.26491e-06 1.26503e-06 1.26515e-06 1.34336e-06 1.3418e-06 1.34024e-06 1.33869e-06 1.33713e-06 1.33557e-06 1.33402e-06 1.33246e-06 1.3309e-06 1.32934e-06 1.32778e-06 1.32622e-06 1.32466e-06 1.3231e-06 1.32154e-06 1.31998e-06 1.31842e-06 1.31686e-06 1.3153e-06 1.31374e-06 1.31218e-06 1.31062e-06 1.30906e-06 1.3075e-06 1.30594e-06 1.30438e-06 1.32328e-06 1.32178e-06 1.32028e-06 1.31878e-06 1.31728e-06 1.31578e-06 1.31428e-06 1.31278e-06 1.31128e-06 1.30977e-06 1.30827e-06 1.30677e-06 1.30527e-06 1.30376e-06 1.30226e-06 1.30075e-06 1.29925e-06 1.29775e-06 1.29624e-06 1.29474e-06 1.29324e-06 1.29173e-06 1.29023e-06 1.28873e-06 1.28723e-06 1.28572e-06 1.30348e-06 1.30209e-06 1.3007e-06 1.29931e-06 1.29792e-06 1.29653e-06 1.29514e-06 1.29375e-06 1.29236e-06 1.29097e-06 1.28958e-06 1.28819e-06 1.2868e-06 1.2854e-06 1.28401e-06 1.28262e-06 1.28122e-06 1.27983e-06 1.27844e-06 1.27704e-06 1.27565e-06 1.27426e-06 1.27287e-06 1.27148e-06 1.27009e-06 1.2687e-06 1.28412e-06 1.28289e-06 1.28167e-06 1.28044e-06 1.27921e-06 1.27799e-06 1.27676e-06 1.27553e-06 1.2743e-06 1.27307e-06 1.27184e-06 1.27061e-06 1.26938e-06 1.26815e-06 1.26691e-06 1.26568e-06 1.26445e-06 1.26322e-06 1.26199e-06 1.26075e-06 1.25952e-06 1.25829e-06 1.25706e-06 1.25583e-06 1.25461e-06 1.25338e-06 1.26537e-06 1.26435e-06 1.26332e-06 1.26229e-06 1.26126e-06 1.26023e-06 1.2592e-06 1.25816e-06 1.25713e-06 1.2561e-06 1.25507e-06 1.25403e-06 1.253e-06 1.25196e-06 1.25093e-06 1.24989e-06 1.24886e-06 1.24783e-06 1.24679e-06 1.24576e-06 1.24472e-06 1.24369e-06 1.24266e-06 1.24163e-06 1.2406e-06 1.23957e-06 1.24743e-06 1.24665e-06 1.24587e-06 1.2451e-06 1.24432e-06 1.24354e-06 1.24276e-06 1.24198e-06 1.2412e-06 1.24042e-06 1.23964e-06 1.23886e-06 1.23807e-06 1.23729e-06 1.23651e-06 1.23573e-06 1.23495e-06 1.23416e-06 1.23338e-06 1.2326e-06 1.23182e-06 1.23104e-06 1.23026e-06 1.22948e-06 1.22871e-06 1.22793e-06 1.23044e-06 1.22995e-06 1.22945e-06 1.22895e-06 1.22846e-06 1.22796e-06 1.22746e-06 1.22696e-06 1.22646e-06 1.22595e-06 1.22545e-06 1.22495e-06 1.22445e-06 1.22394e-06 1.22344e-06 1.22294e-06 1.22244e-06 1.22194e-06 1.22144e-06 1.22094e-06 1.22044e-06 1.21994e-06 1.21944e-06 1.21894e-06 1.21844e-06 1.21794e-06 1.21462e-06 1.21443e-06 1.21423e-06 1.21404e-06 1.21385e-06 1.21365e-06 1.21346e-06 1.21326e-06 1.21306e-06 1.21287e-06 1.21267e-06 1.21247e-06 1.21227e-06 1.21207e-06 1.21188e-06 1.21168e-06 1.21149e-06 1.21129e-06 1.2111e-06 1.2109e-06 1.21071e-06 1.21052e-06 1.21032e-06 1.21013e-06 1.20993e-06 1.20974e-06 1.20014e-06 1.20027e-06 1.20039e-06 1.20052e-06 1.20064e-06 1.20077e-06 1.20089e-06 1.20101e-06 1.20113e-06 1.20125e-06 1.20137e-06 1.20149e-06 1.20162e-06 1.20174e-06 1.20186e-06 1.20199e-06 1.20211e-06 1.20224e-06 1.20236e-06 1.20249e-06 1.20261e-06 1.20274e-06 1.20286e-06 1.20299e-06 1.20311e-06 1.20324e-06 1.18721e-06 1.18765e-06 1.1881e-06 1.18855e-06 1.18899e-06 1.18943e-06 1.18988e-06 1.19032e-06 1.19076e-06 1.1912e-06 1.19164e-06 1.19209e-06 1.19253e-06 1.19297e-06 1.19342e-06 1.19387e-06 1.19431e-06 1.19476e-06 1.19521e-06 1.19565e-06 1.1961e-06 1.19655e-06 1.19699e-06 1.19744e-06 1.19788e-06 1.19833e-06 1.17602e-06 1.17677e-06 1.17753e-06 1.17828e-06 1.17903e-06 1.17978e-06 1.18053e-06 1.18128e-06 1.18203e-06 1.18278e-06 1.18353e-06 1.18429e-06 1.18504e-06 1.18579e-06 1.18655e-06 1.18731e-06 1.18806e-06 1.18882e-06 1.18957e-06 1.19033e-06 1.19108e-06 1.19184e-06 1.19259e-06 1.19334e-06 1.1941e-06 1.19485e-06 1.16677e-06 1.16781e-06 1.16885e-06 1.16989e-06 1.17092e-06 1.17196e-06 1.17299e-06 1.17403e-06 1.17506e-06 1.1761e-06 1.17714e-06 1.17818e-06 1.17922e-06 1.18026e-06 1.1813e-06 1.18234e-06 1.18338e-06 1.18442e-06 1.18546e-06 1.1865e-06 1.18754e-06 1.18858e-06 1.18962e-06 1.19066e-06 1.19169e-06 1.19273e-06 1.15965e-06 1.16092e-06 1.16218e-06 1.16344e-06 1.1647e-06 1.16596e-06 1.16722e-06 1.16848e-06 1.16974e-06 1.171e-06 1.17226e-06 1.17353e-06 1.1748e-06 1.17606e-06 1.17733e-06 1.1786e-06 1.17986e-06 1.18112e-06 1.18239e-06 1.18365e-06 1.18491e-06 1.18617e-06 1.18744e-06 1.1887e-06 1.18997e-06 1.19123e-06 1.15483e-06 1.15626e-06 1.15769e-06 1.15912e-06 1.16055e-06 1.16198e-06 1.16341e-06 1.16484e-06 1.16628e-06 1.16771e-06 1.16915e-06 1.17059e-06 1.17202e-06 1.17346e-06 1.1749e-06 1.17633e-06 1.17776e-06 1.1792e-06 1.18063e-06 1.18206e-06 1.1835e-06 1.18493e-06 1.18637e-06 1.18781e-06 1.18924e-06 1.19068e-06 1.15195e-06 1.15344e-06 1.15494e-06 1.15644e-06 1.15793e-06 1.15943e-06 1.16093e-06 1.16243e-06 1.16394e-06 1.16544e-06 1.16695e-06 1.16846e-06 1.16996e-06 1.17147e-06 1.17297e-06 1.17447e-06 1.17597e-06 1.17747e-06 1.17897e-06 1.18048e-06 1.18199e-06 1.18349e-06 1.185e-06 1.1865e-06 1.18801e-06 1.18951e-06 1.15195e-06 1.15344e-06 1.15494e-06 1.15644e-06 1.15793e-06 1.15943e-06 1.16094e-06 1.16244e-06 1.16394e-06 1.16545e-06 1.16696e-06 1.16846e-06 1.16997e-06 1.17147e-06 1.17297e-06 1.17447e-06 1.17597e-06 1.17748e-06 1.17899e-06 1.18049e-06 1.182e-06 1.18351e-06 1.18501e-06 1.18651e-06 1.18802e-06 1.18952e-06 1.15485e-06 1.15627e-06 1.1577e-06 1.15913e-06 1.16056e-06 1.16199e-06 1.16342e-06 1.16486e-06 1.1663e-06 1.16774e-06 1.16918e-06 1.17061e-06 1.17204e-06 1.17348e-06 1.17491e-06 1.17634e-06 1.17778e-06 1.17922e-06 1.18066e-06 1.1821e-06 1.18354e-06 1.18497e-06 1.1864e-06 1.18783e-06 1.18926e-06 1.19069e-06 1.15968e-06 1.16093e-06 1.16219e-06 1.16344e-06 1.1647e-06 1.16597e-06 1.16723e-06 1.1685e-06 1.16977e-06 1.17104e-06 1.1723e-06 1.17357e-06 1.17483e-06 1.17609e-06 1.17735e-06 1.17862e-06 1.17989e-06 1.18117e-06 1.18243e-06 1.1837e-06 1.18496e-06 1.18622e-06 1.18748e-06 1.18874e-06 1.18999e-06 1.19125e-06 1.16681e-06 1.16783e-06 1.16886e-06 1.1699e-06 1.17093e-06 1.17197e-06 1.17302e-06 1.17406e-06 1.17511e-06 1.17615e-06 1.17718e-06 1.17822e-06 1.17926e-06 1.1803e-06 1.18135e-06 1.18239e-06 1.18344e-06 1.18448e-06 1.18552e-06 1.18656e-06 1.18759e-06 1.18862e-06 1.18965e-06 1.19068e-06 1.19171e-06 1.19274e-06 1.17606e-06 1.17681e-06 1.17755e-06 1.1783e-06 1.17905e-06 1.17981e-06 1.18057e-06 1.18133e-06 1.18208e-06 1.18283e-06 1.18359e-06 1.18434e-06 1.1851e-06 1.18586e-06 1.18662e-06 1.18738e-06 1.18814e-06 1.18889e-06 1.18964e-06 1.19038e-06 1.19113e-06 1.19187e-06 1.19261e-06 1.19335e-06 1.19408e-06 1.19481e-06 1.18727e-06 1.1877e-06 1.18814e-06 1.18858e-06 1.18903e-06 1.18948e-06 1.18992e-06 1.19037e-06 1.19081e-06 1.19126e-06 1.1917e-06 1.19215e-06 1.1926e-06 1.19306e-06 1.19351e-06 1.19396e-06 1.1944e-06 1.19484e-06 1.19528e-06 1.19571e-06 1.19614e-06 1.19657e-06 1.19699e-06 1.19741e-06 1.19782e-06 1.19825e-06 1.20021e-06 1.20033e-06 1.20045e-06 1.20057e-06 1.2007e-06 1.20082e-06 1.20095e-06 1.20107e-06 1.20119e-06 1.20131e-06 1.20144e-06 1.20157e-06 1.20171e-06 1.20184e-06 1.20196e-06 1.20209e-06 1.2022e-06 1.20232e-06 1.20243e-06 1.20254e-06 1.20264e-06 1.20273e-06 1.20283e-06 1.20292e-06 1.20303e-06 1.20315e-06 1.21471e-06 1.21451e-06 1.21431e-06 1.21411e-06 1.21392e-06 1.21372e-06 1.21353e-06 1.21333e-06 1.21313e-06 1.21293e-06 1.21275e-06 1.21256e-06 1.21238e-06 1.21218e-06 1.21199e-06 1.21179e-06 1.21158e-06 1.21137e-06 1.21116e-06 1.21094e-06 1.21071e-06 1.21048e-06 1.21026e-06 1.21006e-06 1.20988e-06 1.20971e-06 1.23055e-06 1.23005e-06 1.22955e-06 1.22905e-06 1.22855e-06 1.22804e-06 1.22754e-06 1.22703e-06 1.22653e-06 1.22604e-06 1.22555e-06 1.22506e-06 1.22456e-06 1.22406e-06 1.22355e-06 1.22304e-06 1.22253e-06 1.22201e-06 1.22148e-06 1.22094e-06 1.22041e-06 1.21989e-06 1.21939e-06 1.21892e-06 1.21845e-06 1.21798e-06 1.24755e-06 1.24677e-06 1.24599e-06 1.24521e-06 1.24443e-06 1.24364e-06 1.24285e-06 1.24207e-06 1.24129e-06 1.24052e-06 1.23975e-06 1.23897e-06 1.23819e-06 1.23741e-06 1.23662e-06 1.23582e-06 1.23502e-06 1.23421e-06 1.23339e-06 1.23258e-06 1.23178e-06 1.23101e-06 1.23026e-06 1.22952e-06 1.22876e-06 1.22797e-06 1.26552e-06 1.26449e-06 1.26346e-06 1.26242e-06 1.26139e-06 1.26034e-06 1.2593e-06 1.25827e-06 1.25724e-06 1.25622e-06 1.25519e-06 1.25416e-06 1.25312e-06 1.25208e-06 1.25103e-06 1.24998e-06 1.24892e-06 1.24785e-06 1.24678e-06 1.24573e-06 1.2447e-06 1.2437e-06 1.2427e-06 1.24168e-06 1.24063e-06 1.23956e-06 1.28429e-06 1.28306e-06 1.28183e-06 1.2806e-06 1.27936e-06 1.27812e-06 1.27688e-06 1.27565e-06 1.27443e-06 1.27321e-06 1.27198e-06 1.27074e-06 1.26951e-06 1.26826e-06 1.26701e-06 1.26575e-06 1.26448e-06 1.26321e-06 1.26196e-06 1.26074e-06 1.25954e-06 1.25834e-06 1.25712e-06 1.25586e-06 1.25459e-06 1.25333e-06 1.30367e-06 1.30228e-06 1.30089e-06 1.29949e-06 1.29809e-06 1.29669e-06 1.29529e-06 1.2939e-06 1.29251e-06 1.29113e-06 1.28973e-06 1.28834e-06 1.28693e-06 1.28552e-06 1.2841e-06 1.28267e-06 1.28124e-06 1.27982e-06 1.27843e-06 1.27706e-06 1.2757e-06 1.27431e-06 1.27289e-06 1.27146e-06 1.27003e-06 1.26864e-06 1.32349e-06 1.322e-06 1.32049e-06 1.31898e-06 1.31747e-06 1.31595e-06 1.31445e-06 1.31295e-06 1.31145e-06 1.30995e-06 1.30844e-06 1.30693e-06 1.30541e-06 1.30388e-06 1.30235e-06 1.3008e-06 1.29926e-06 1.29774e-06 1.29626e-06 1.29479e-06 1.2933e-06 1.29177e-06 1.29021e-06 1.28868e-06 1.28717e-06 1.28569e-06 1.3436e-06 1.34204e-06 1.34048e-06 1.33891e-06 1.33734e-06 1.33577e-06 1.33421e-06 1.33265e-06 1.33109e-06 1.32953e-06 1.32796e-06 1.32639e-06 1.32481e-06 1.32322e-06 1.32162e-06 1.32002e-06 1.31844e-06 1.31689e-06 1.31536e-06 1.31381e-06 1.31223e-06 1.31062e-06 1.30902e-06 1.30745e-06 1.30591e-06 1.30435e-06 1.34453e-06 1.34453e-06 1.34452e-06 1.34451e-06 1.3445e-06 1.34448e-06 1.34448e-06 1.34448e-06 1.34448e-06 1.34447e-06 1.34446e-06 1.34444e-06 1.34442e-06 1.34438e-06 1.34434e-06 1.34429e-06 1.34427e-06 1.34429e-06 1.34431e-06 1.34431e-06 1.34427e-06 1.34421e-06 1.34418e-06 1.34418e-06 1.34419e-06 1.34418e-06 1.34455e-06 1.34455e-06 1.34455e-06 1.34453e-06 1.34451e-06 1.3445e-06 1.3445e-06 1.3445e-06 1.3445e-06 1.34449e-06 1.34448e-06 1.34446e-06 1.34443e-06 1.34439e-06 1.34435e-06 1.34431e-06 1.34429e-06 1.34431e-06 1.34433e-06 1.34431e-06 1.34426e-06 1.3442e-06 1.34418e-06 1.34419e-06 1.3442e-06 1.34417e-06 1.34458e-06 1.34458e-06 1.34457e-06 1.34455e-06 1.34454e-06 1.34452e-06 1.34452e-06 1.34452e-06 1.34452e-06 1.34451e-06 1.34449e-06 1.34447e-06 1.34445e-06 1.34441e-06 1.34436e-06 1.34432e-06 1.34431e-06 1.34433e-06 1.34434e-06 1.34432e-06 1.34426e-06 1.3442e-06 1.34419e-06 1.3442e-06 1.3442e-06 1.34417e-06 1.3446e-06 1.3446e-06 1.34459e-06 1.34458e-06 1.34456e-06 1.34454e-06 1.34454e-06 1.34454e-06 1.34454e-06 1.34453e-06 1.34451e-06 1.34449e-06 1.34446e-06 1.34443e-06 1.34438e-06 1.34434e-06 1.34434e-06 1.34435e-06 1.34436e-06 1.34433e-06 1.34426e-06 1.3442e-06 1.34419e-06 1.34421e-06 1.3442e-06 1.34417e-06 1.34463e-06 1.34463e-06 1.34462e-06 1.3446e-06 1.34458e-06 1.34456e-06 1.34456e-06 1.34456e-06 1.34456e-06 1.34455e-06 1.34453e-06 1.34451e-06 1.34448e-06 1.34445e-06 1.3444e-06 1.34437e-06 1.34436e-06 1.34437e-06 1.34437e-06 1.34433e-06 1.34426e-06 1.34421e-06 1.3442e-06 1.34422e-06 1.34421e-06 1.34418e-06 1.34466e-06 1.34466e-06 1.34464e-06 1.34462e-06 1.3446e-06 1.34459e-06 1.34458e-06 1.34458e-06 1.34458e-06 1.34457e-06 1.34455e-06 1.34453e-06 1.3445e-06 1.34447e-06 1.34442e-06 1.34439e-06 1.34438e-06 1.34439e-06 1.34439e-06 1.34434e-06 1.34426e-06 1.34421e-06 1.34421e-06 1.34423e-06 1.34421e-06 1.34418e-06 1.34469e-06 1.34468e-06 1.34467e-06 1.34465e-06 1.34463e-06 1.34461e-06 1.3446e-06 1.3446e-06 1.3446e-06 1.34459e-06 1.34457e-06 1.34455e-06 1.34453e-06 1.34449e-06 1.34445e-06 1.34442e-06 1.34441e-06 1.34441e-06 1.3444e-06 1.34435e-06 1.34426e-06 1.34421e-06 1.34421e-06 1.34424e-06 1.34422e-06 1.34418e-06 1.34472e-06 1.34471e-06 1.3447e-06 1.34468e-06 1.34465e-06 1.34464e-06 1.34463e-06 1.34463e-06 1.34462e-06 1.34461e-06 1.34459e-06 1.34457e-06 1.34455e-06 1.34451e-06 1.34447e-06 1.34444e-06 1.34443e-06 1.34444e-06 1.34442e-06 1.34436e-06 1.34427e-06 1.34421e-06 1.34422e-06 1.34424e-06 1.34422e-06 1.34418e-06 1.34476e-06 1.34475e-06 1.34473e-06 1.34471e-06 1.34468e-06 1.34466e-06 1.34465e-06 1.34465e-06 1.34465e-06 1.34463e-06 1.34462e-06 1.3446e-06 1.34457e-06 1.34454e-06 1.3445e-06 1.34447e-06 1.34446e-06 1.34446e-06 1.34444e-06 1.34437e-06 1.34427e-06 1.34421e-06 1.34422e-06 1.34425e-06 1.34423e-06 1.34418e-06 1.34479e-06 1.34478e-06 1.34476e-06 1.34474e-06 1.34471e-06 1.34469e-06 1.34468e-06 1.34468e-06 1.34467e-06 1.34466e-06 1.34464e-06 1.34462e-06 1.3446e-06 1.34457e-06 1.34453e-06 1.3445e-06 1.34449e-06 1.34449e-06 1.34446e-06 1.34438e-06 1.34427e-06 1.34421e-06 1.34423e-06 1.34426e-06 1.34423e-06 1.34419e-06 1.34483e-06 1.34481e-06 1.34479e-06 1.34477e-06 1.34474e-06 1.34471e-06 1.3447e-06 1.3447e-06 1.34469e-06 1.34468e-06 1.34466e-06 1.34464e-06 1.34462e-06 1.3446e-06 1.34456e-06 1.34453e-06 1.34452e-06 1.34452e-06 1.34448e-06 1.34439e-06 1.34428e-06 1.34421e-06 1.34423e-06 1.34427e-06 1.34424e-06 1.34419e-06 1.34487e-06 1.34485e-06 1.34483e-06 1.3448e-06 1.34477e-06 1.34474e-06 1.34473e-06 1.34473e-06 1.34472e-06 1.34471e-06 1.34469e-06 1.34467e-06 1.34465e-06 1.34462e-06 1.34459e-06 1.34457e-06 1.34456e-06 1.34454e-06 1.3445e-06 1.3444e-06 1.34428e-06 1.34421e-06 1.34424e-06 1.34428e-06 1.34425e-06 1.34419e-06 1.34491e-06 1.34489e-06 1.34486e-06 1.34483e-06 1.3448e-06 1.34477e-06 1.34476e-06 1.34475e-06 1.34475e-06 1.34473e-06 1.34471e-06 1.3447e-06 1.34468e-06 1.34465e-06 1.34463e-06 1.34461e-06 1.34459e-06 1.34458e-06 1.34452e-06 1.34442e-06 1.34429e-06 1.34422e-06 1.34425e-06 1.34429e-06 1.34425e-06 1.3442e-06 1.34495e-06 1.34493e-06 1.3449e-06 1.34486e-06 1.34483e-06 1.3448e-06 1.34479e-06 1.34478e-06 1.34477e-06 1.34476e-06 1.34474e-06 1.34472e-06 1.34471e-06 1.34469e-06 1.34466e-06 1.34464e-06 1.34463e-06 1.34461e-06 1.34454e-06 1.34443e-06 1.34429e-06 1.34422e-06 1.34425e-06 1.3443e-06 1.34426e-06 1.3442e-06 1.34499e-06 1.34497e-06 1.34494e-06 1.3449e-06 1.34486e-06 1.34484e-06 1.34482e-06 1.34481e-06 1.3448e-06 1.34479e-06 1.34477e-06 1.34475e-06 1.34474e-06 1.34472e-06 1.3447e-06 1.34468e-06 1.34467e-06 1.34464e-06 1.34457e-06 1.34444e-06 1.3443e-06 1.34422e-06 1.34426e-06 1.34431e-06 1.34427e-06 1.3442e-06 1.34504e-06 1.34501e-06 1.34497e-06 1.34494e-06 1.3449e-06 1.34487e-06 1.34485e-06 1.34484e-06 1.34483e-06 1.34481e-06 1.3448e-06 1.34478e-06 1.34477e-06 1.34475e-06 1.34473e-06 1.34472e-06 1.3447e-06 1.34467e-06 1.3446e-06 1.34446e-06 1.3443e-06 1.34423e-06 1.34426e-06 1.34431e-06 1.34427e-06 1.34421e-06 1.34508e-06 1.34505e-06 1.34502e-06 1.34498e-06 1.34494e-06 1.34491e-06 1.34489e-06 1.34487e-06 1.34486e-06 1.34484e-06 1.34482e-06 1.34481e-06 1.3448e-06 1.34478e-06 1.34477e-06 1.34476e-06 1.34474e-06 1.34471e-06 1.34462e-06 1.34447e-06 1.34431e-06 1.34423e-06 1.34427e-06 1.34432e-06 1.34428e-06 1.34421e-06 1.34513e-06 1.3451e-06 1.34506e-06 1.34502e-06 1.34498e-06 1.34494e-06 1.34492e-06 1.34491e-06 1.34489e-06 1.34487e-06 1.34485e-06 1.34484e-06 1.34483e-06 1.34482e-06 1.34481e-06 1.3448e-06 1.34478e-06 1.34474e-06 1.34465e-06 1.34449e-06 1.34432e-06 1.34424e-06 1.34428e-06 1.34433e-06 1.34429e-06 1.34422e-06 1.34518e-06 1.34514e-06 1.3451e-06 1.34506e-06 1.34502e-06 1.34498e-06 1.34496e-06 1.34494e-06 1.34493e-06 1.34491e-06 1.34488e-06 1.34487e-06 1.34486e-06 1.34486e-06 1.34485e-06 1.34484e-06 1.34482e-06 1.34478e-06 1.34467e-06 1.34451e-06 1.34434e-06 1.34425e-06 1.34429e-06 1.34434e-06 1.34429e-06 1.34422e-06 1.34524e-06 1.34519e-06 1.34515e-06 1.3451e-06 1.34506e-06 1.34502e-06 1.345e-06 1.34498e-06 1.34496e-06 1.34494e-06 1.34492e-06 1.3449e-06 1.3449e-06 1.34489e-06 1.34489e-06 1.34488e-06 1.34486e-06 1.34481e-06 1.3447e-06 1.34453e-06 1.34435e-06 1.34426e-06 1.3443e-06 1.34435e-06 1.3443e-06 1.34423e-06 1.34529e-06 1.34524e-06 1.34519e-06 1.34515e-06 1.3451e-06 1.34506e-06 1.34503e-06 1.34502e-06 1.345e-06 1.34497e-06 1.34495e-06 1.34493e-06 1.34493e-06 1.34493e-06 1.34493e-06 1.34492e-06 1.3449e-06 1.34484e-06 1.34473e-06 1.34455e-06 1.34436e-06 1.34427e-06 1.34431e-06 1.34437e-06 1.34431e-06 1.34423e-06 1.34535e-06 1.3453e-06 1.34524e-06 1.34519e-06 1.34514e-06 1.3451e-06 1.34508e-06 1.34505e-06 1.34503e-06 1.34501e-06 1.34498e-06 1.34497e-06 1.34497e-06 1.34497e-06 1.34497e-06 1.34496e-06 1.34494e-06 1.34487e-06 1.34475e-06 1.34457e-06 1.34438e-06 1.34429e-06 1.34433e-06 1.34438e-06 1.34432e-06 1.34424e-06 1.3454e-06 1.34535e-06 1.34529e-06 1.34524e-06 1.34519e-06 1.34515e-06 1.34512e-06 1.34509e-06 1.34507e-06 1.34504e-06 1.34502e-06 1.345e-06 1.345e-06 1.34501e-06 1.34501e-06 1.345e-06 1.34497e-06 1.3449e-06 1.34477e-06 1.34458e-06 1.34439e-06 1.3443e-06 1.34434e-06 1.34439e-06 1.34433e-06 1.34425e-06 1.34546e-06 1.3454e-06 1.34535e-06 1.34529e-06 1.34524e-06 1.34519e-06 1.34516e-06 1.34513e-06 1.34511e-06 1.34508e-06 1.34505e-06 1.34504e-06 1.34504e-06 1.34505e-06 1.34505e-06 1.34504e-06 1.34501e-06 1.34494e-06 1.3448e-06 1.3446e-06 1.34441e-06 1.34432e-06 1.34436e-06 1.34441e-06 1.34435e-06 1.34426e-06 1.34552e-06 1.34546e-06 1.3454e-06 1.34534e-06 1.34529e-06 1.34524e-06 1.3452e-06 1.34518e-06 1.34515e-06 1.34512e-06 1.34509e-06 1.34508e-06 1.34508e-06 1.34509e-06 1.3451e-06 1.34509e-06 1.34505e-06 1.34497e-06 1.34482e-06 1.34462e-06 1.34442e-06 1.34433e-06 1.34437e-06 1.34442e-06 1.34436e-06 1.34428e-06 1.34559e-06 1.34552e-06 1.34546e-06 1.34539e-06 1.34534e-06 1.34529e-06 1.34525e-06 1.34522e-06 1.34519e-06 1.34516e-06 1.34513e-06 1.34512e-06 1.34512e-06 1.34513e-06 1.34514e-06 1.34513e-06 1.34509e-06 1.345e-06 1.34484e-06 1.34464e-06 1.34444e-06 1.34435e-06 1.34439e-06 1.34444e-06 1.34437e-06 1.34429e-06 1.34565e-06 1.34558e-06 1.34551e-06 1.34545e-06 1.34539e-06 1.34534e-06 1.34529e-06 1.34526e-06 1.34523e-06 1.3452e-06 1.34517e-06 1.34516e-06 1.34516e-06 1.34518e-06 1.34519e-06 1.34518e-06 1.34513e-06 1.34503e-06 1.34486e-06 1.34465e-06 1.34446e-06 1.34437e-06 1.34441e-06 1.34445e-06 1.34439e-06 1.3443e-06 1.34571e-06 1.34564e-06 1.34557e-06 1.3455e-06 1.34544e-06 1.34538e-06 1.34534e-06 1.34531e-06 1.34527e-06 1.34524e-06 1.34521e-06 1.3452e-06 1.34521e-06 1.34522e-06 1.34524e-06 1.34523e-06 1.34517e-06 1.34506e-06 1.34488e-06 1.34467e-06 1.34448e-06 1.34439e-06 1.34443e-06 1.34447e-06 1.3444e-06 1.34432e-06 1.34578e-06 1.34571e-06 1.34563e-06 1.34556e-06 1.34549e-06 1.34544e-06 1.34539e-06 1.34535e-06 1.34532e-06 1.34528e-06 1.34525e-06 1.34524e-06 1.34525e-06 1.34527e-06 1.34529e-06 1.34527e-06 1.34521e-06 1.34509e-06 1.3449e-06 1.34469e-06 1.3445e-06 1.34441e-06 1.34445e-06 1.34448e-06 1.34442e-06 1.34433e-06 1.34585e-06 1.34577e-06 1.34569e-06 1.34562e-06 1.34555e-06 1.34549e-06 1.34544e-06 1.3454e-06 1.34536e-06 1.34532e-06 1.34529e-06 1.34528e-06 1.34529e-06 1.34532e-06 1.34534e-06 1.34532e-06 1.34526e-06 1.34512e-06 1.34493e-06 1.34471e-06 1.34452e-06 1.34443e-06 1.34446e-06 1.3445e-06 1.34443e-06 1.34434e-06 1.34592e-06 1.34583e-06 1.34575e-06 1.34567e-06 1.3456e-06 1.34554e-06 1.34549e-06 1.34545e-06 1.34541e-06 1.34537e-06 1.34533e-06 1.34532e-06 1.34534e-06 1.34537e-06 1.34539e-06 1.34538e-06 1.3453e-06 1.34515e-06 1.34495e-06 1.34473e-06 1.34454e-06 1.34446e-06 1.34448e-06 1.34452e-06 1.34445e-06 1.34436e-06 1.34599e-06 1.3459e-06 1.34581e-06 1.34573e-06 1.34566e-06 1.34559e-06 1.34554e-06 1.34549e-06 1.34545e-06 1.34541e-06 1.34538e-06 1.34537e-06 1.34539e-06 1.34542e-06 1.34544e-06 1.34543e-06 1.34534e-06 1.34518e-06 1.34497e-06 1.34475e-06 1.34457e-06 1.34448e-06 1.34451e-06 1.34453e-06 1.34446e-06 1.34438e-06 1.34606e-06 1.34596e-06 1.34588e-06 1.34579e-06 1.34571e-06 1.34565e-06 1.34559e-06 1.34554e-06 1.3455e-06 1.34546e-06 1.34542e-06 1.34542e-06 1.34544e-06 1.34548e-06 1.3455e-06 1.34548e-06 1.34539e-06 1.34521e-06 1.34499e-06 1.34477e-06 1.34459e-06 1.34451e-06 1.34453e-06 1.34455e-06 1.34448e-06 1.3444e-06 1.34613e-06 1.34603e-06 1.34594e-06 1.34585e-06 1.34577e-06 1.3457e-06 1.34564e-06 1.34559e-06 1.34555e-06 1.3455e-06 1.34547e-06 1.34546e-06 1.34549e-06 1.34553e-06 1.34556e-06 1.34554e-06 1.34543e-06 1.34525e-06 1.34501e-06 1.34479e-06 1.34462e-06 1.34454e-06 1.34455e-06 1.34457e-06 1.3445e-06 1.34441e-06 1.3462e-06 1.3461e-06 1.346e-06 1.34591e-06 1.34583e-06 1.34575e-06 1.34569e-06 1.34564e-06 1.3456e-06 1.34555e-06 1.34552e-06 1.34551e-06 1.34555e-06 1.34559e-06 1.34562e-06 1.34559e-06 1.34548e-06 1.34528e-06 1.34503e-06 1.34481e-06 1.34464e-06 1.34457e-06 1.34458e-06 1.34459e-06 1.34452e-06 1.34443e-06 1.34627e-06 1.34616e-06 1.34606e-06 1.34597e-06 1.34588e-06 1.34581e-06 1.34575e-06 1.34569e-06 1.34565e-06 1.3456e-06 1.34557e-06 1.34557e-06 1.3456e-06 1.34565e-06 1.34568e-06 1.34565e-06 1.34552e-06 1.34531e-06 1.34505e-06 1.34483e-06 1.34467e-06 1.3446e-06 1.3446e-06 1.34461e-06 1.34454e-06 1.34445e-06 1.34634e-06 1.34623e-06 1.34613e-06 1.34603e-06 1.34594e-06 1.34586e-06 1.3458e-06 1.34574e-06 1.3457e-06 1.34565e-06 1.34562e-06 1.34562e-06 1.34566e-06 1.34571e-06 1.34574e-06 1.3457e-06 1.34557e-06 1.34533e-06 1.34507e-06 1.34485e-06 1.3447e-06 1.34463e-06 1.34463e-06 1.34463e-06 1.34456e-06 1.34448e-06 1.34641e-06 1.3463e-06 1.34619e-06 1.34609e-06 1.346e-06 1.34592e-06 1.34585e-06 1.3458e-06 1.34575e-06 1.3457e-06 1.34567e-06 1.34567e-06 1.34571e-06 1.34577e-06 1.3458e-06 1.34576e-06 1.34561e-06 1.34536e-06 1.34509e-06 1.34487e-06 1.34473e-06 1.34467e-06 1.34466e-06 1.34465e-06 1.34458e-06 1.3445e-06 1.34648e-06 1.34636e-06 1.34625e-06 1.34615e-06 1.34606e-06 1.34597e-06 1.34591e-06 1.34585e-06 1.3458e-06 1.34575e-06 1.34572e-06 1.34573e-06 1.34577e-06 1.34583e-06 1.34586e-06 1.34582e-06 1.34565e-06 1.34539e-06 1.34511e-06 1.3449e-06 1.34477e-06 1.3447e-06 1.34469e-06 1.34468e-06 1.34461e-06 1.34453e-06 1.34655e-06 1.34643e-06 1.34631e-06 1.34621e-06 1.34611e-06 1.34603e-06 1.34596e-06 1.34591e-06 1.34585e-06 1.34581e-06 1.34577e-06 1.34578e-06 1.34583e-06 1.34589e-06 1.34592e-06 1.34587e-06 1.3457e-06 1.34542e-06 1.34513e-06 1.34492e-06 1.3448e-06 1.34474e-06 1.34472e-06 1.3447e-06 1.34464e-06 1.34456e-06 1.34662e-06 1.34649e-06 1.34638e-06 1.34627e-06 1.34617e-06 1.34609e-06 1.34602e-06 1.34596e-06 1.34591e-06 1.34586e-06 1.34583e-06 1.34583e-06 1.34588e-06 1.34595e-06 1.34598e-06 1.34593e-06 1.34574e-06 1.34545e-06 1.34515e-06 1.34494e-06 1.34483e-06 1.34478e-06 1.34476e-06 1.34473e-06 1.34467e-06 1.3446e-06 1.34669e-06 1.34656e-06 1.34644e-06 1.34633e-06 1.34623e-06 1.34615e-06 1.34607e-06 1.34601e-06 1.34596e-06 1.34591e-06 1.34588e-06 1.34588e-06 1.34593e-06 1.346e-06 1.34604e-06 1.34599e-06 1.34579e-06 1.34548e-06 1.34517e-06 1.34497e-06 1.34487e-06 1.34482e-06 1.3448e-06 1.34477e-06 1.3447e-06 1.34463e-06 1.34675e-06 1.34662e-06 1.3465e-06 1.34639e-06 1.34629e-06 1.3462e-06 1.34613e-06 1.34607e-06 1.34601e-06 1.34596e-06 1.34592e-06 1.34593e-06 1.34599e-06 1.34606e-06 1.34611e-06 1.34604e-06 1.34583e-06 1.34551e-06 1.34519e-06 1.34499e-06 1.34491e-06 1.34487e-06 1.34484e-06 1.3448e-06 1.34474e-06 1.34466e-06 1.34682e-06 1.34669e-06 1.34656e-06 1.34645e-06 1.34635e-06 1.34626e-06 1.34619e-06 1.34612e-06 1.34606e-06 1.34601e-06 1.34597e-06 1.34598e-06 1.34604e-06 1.34612e-06 1.34617e-06 1.3461e-06 1.34588e-06 1.34553e-06 1.34521e-06 1.34502e-06 1.34496e-06 1.34492e-06 1.34488e-06 1.34483e-06 1.34477e-06 1.3447e-06 1.34688e-06 1.34675e-06 1.34662e-06 1.34651e-06 1.3464e-06 1.34632e-06 1.34624e-06 1.34617e-06 1.34611e-06 1.34605e-06 1.34602e-06 1.34603e-06 1.34609e-06 1.34618e-06 1.34623e-06 1.34616e-06 1.34592e-06 1.34556e-06 1.34523e-06 1.34506e-06 1.345e-06 1.34497e-06 1.34492e-06 1.34487e-06 1.34481e-06 1.34473e-06 1.34695e-06 1.34681e-06 1.34668e-06 1.34656e-06 1.34646e-06 1.34637e-06 1.34629e-06 1.34622e-06 1.34616e-06 1.3461e-06 1.34606e-06 1.34608e-06 1.34615e-06 1.34624e-06 1.34629e-06 1.34622e-06 1.34597e-06 1.34559e-06 1.34526e-06 1.34509e-06 1.34505e-06 1.34503e-06 1.34496e-06 1.3449e-06 1.34484e-06 1.34477e-06 1.34701e-06 1.34687e-06 1.34674e-06 1.34662e-06 1.34652e-06 1.34643e-06 1.34635e-06 1.34627e-06 1.3462e-06 1.34614e-06 1.3461e-06 1.34612e-06 1.3462e-06 1.3463e-06 1.34635e-06 1.34627e-06 1.34601e-06 1.34563e-06 1.34529e-06 1.34512e-06 1.3451e-06 1.34508e-06 1.345e-06 1.34493e-06 1.34487e-06 1.3448e-06 1.34707e-06 1.34693e-06 1.3468e-06 1.34668e-06 1.34657e-06 1.34648e-06 1.34639e-06 1.34632e-06 1.34625e-06 1.34618e-06 1.34615e-06 1.34617e-06 1.34625e-06 1.34636e-06 1.34641e-06 1.34633e-06 1.34606e-06 1.34566e-06 1.34531e-06 1.34516e-06 1.34515e-06 1.34513e-06 1.34505e-06 1.34496e-06 1.34491e-06 1.34484e-06 1.34712e-06 1.34698e-06 1.34685e-06 1.34673e-06 1.34662e-06 1.34653e-06 1.34644e-06 1.34636e-06 1.34628e-06 1.34622e-06 1.34619e-06 1.34621e-06 1.34631e-06 1.34642e-06 1.34647e-06 1.34639e-06 1.34611e-06 1.34569e-06 1.34534e-06 1.34519e-06 1.34519e-06 1.34518e-06 1.34509e-06 1.345e-06 1.34495e-06 1.34488e-06 1.34718e-06 1.34704e-06 1.3469e-06 1.34678e-06 1.34667e-06 1.34657e-06 1.34648e-06 1.3464e-06 1.34632e-06 1.34625e-06 1.34622e-06 1.34626e-06 1.34635e-06 1.34647e-06 1.34653e-06 1.34644e-06 1.34615e-06 1.34573e-06 1.34536e-06 1.34523e-06 1.34524e-06 1.34523e-06 1.34513e-06 1.34503e-06 1.34498e-06 1.34493e-06 1.34722e-06 1.34709e-06 1.34695e-06 1.34683e-06 1.34672e-06 1.34662e-06 1.34652e-06 1.34643e-06 1.34635e-06 1.34629e-06 1.34626e-06 1.3463e-06 1.3464e-06 1.34652e-06 1.34658e-06 1.3465e-06 1.3462e-06 1.34576e-06 1.34539e-06 1.34526e-06 1.3453e-06 1.34529e-06 1.34517e-06 1.34507e-06 1.34502e-06 1.34497e-06 1.34727e-06 1.34713e-06 1.347e-06 1.34688e-06 1.34677e-06 1.34666e-06 1.34656e-06 1.34647e-06 1.34638e-06 1.34632e-06 1.3463e-06 1.34634e-06 1.34644e-06 1.34657e-06 1.34664e-06 1.34655e-06 1.34624e-06 1.34579e-06 1.34542e-06 1.3453e-06 1.34535e-06 1.34534e-06 1.34522e-06 1.3451e-06 1.34506e-06 1.34502e-06 1.34731e-06 1.34718e-06 1.34704e-06 1.34692e-06 1.34681e-06 1.3467e-06 1.34659e-06 1.3465e-06 1.34641e-06 1.34635e-06 1.34633e-06 1.34637e-06 1.34648e-06 1.34661e-06 1.34669e-06 1.3466e-06 1.34628e-06 1.34582e-06 1.34545e-06 1.34534e-06 1.3454e-06 1.34539e-06 1.34525e-06 1.34513e-06 1.34511e-06 1.34506e-06 1.34735e-06 1.34722e-06 1.34708e-06 1.34696e-06 1.34684e-06 1.34673e-06 1.34662e-06 1.34652e-06 1.34644e-06 1.34638e-06 1.34636e-06 1.3464e-06 1.34651e-06 1.34665e-06 1.34673e-06 1.34665e-06 1.34632e-06 1.34585e-06 1.34548e-06 1.34538e-06 1.34545e-06 1.34543e-06 1.34529e-06 1.34517e-06 1.34515e-06 1.34511e-06 1.34739e-06 1.34725e-06 1.34712e-06 1.34699e-06 1.34687e-06 1.34676e-06 1.34665e-06 1.34654e-06 1.34646e-06 1.3464e-06 1.34638e-06 1.34643e-06 1.34654e-06 1.34668e-06 1.34678e-06 1.34669e-06 1.34636e-06 1.34589e-06 1.34552e-06 1.34542e-06 1.34549e-06 1.34547e-06 1.34532e-06 1.34521e-06 1.34519e-06 1.34515e-06 1.34742e-06 1.34728e-06 1.34715e-06 1.34702e-06 1.3469e-06 1.34678e-06 1.34667e-06 1.34656e-06 1.34648e-06 1.34642e-06 1.3464e-06 1.34645e-06 1.34656e-06 1.34671e-06 1.34681e-06 1.34673e-06 1.3464e-06 1.34593e-06 1.34556e-06 1.34547e-06 1.34553e-06 1.34551e-06 1.34536e-06 1.34524e-06 1.34523e-06 1.34518e-06 1.34744e-06 1.34731e-06 1.34718e-06 1.34705e-06 1.34692e-06 1.3468e-06 1.34668e-06 1.34658e-06 1.34649e-06 1.34644e-06 1.34642e-06 1.34646e-06 1.34657e-06 1.34673e-06 1.34684e-06 1.34677e-06 1.34645e-06 1.34598e-06 1.34561e-06 1.3455e-06 1.34556e-06 1.34554e-06 1.34539e-06 1.34528e-06 1.34526e-06 1.34522e-06 1.34746e-06 1.34733e-06 1.3472e-06 1.34707e-06 1.34694e-06 1.34682e-06 1.3467e-06 1.34659e-06 1.34651e-06 1.34645e-06 1.34643e-06 1.34647e-06 1.34658e-06 1.34675e-06 1.34686e-06 1.3468e-06 1.34649e-06 1.34603e-06 1.34565e-06 1.34554e-06 1.34558e-06 1.34557e-06 1.34543e-06 1.34531e-06 1.34529e-06 1.34525e-06 1.34748e-06 1.34735e-06 1.34722e-06 1.34709e-06 1.34696e-06 1.34683e-06 1.34671e-06 1.3466e-06 1.34651e-06 1.34646e-06 1.34643e-06 1.34647e-06 1.34659e-06 1.34676e-06 1.34689e-06 1.34684e-06 1.34654e-06 1.34608e-06 1.3457e-06 1.34556e-06 1.34561e-06 1.34559e-06 1.34546e-06 1.34534e-06 1.34532e-06 1.34527e-06 1.34749e-06 1.34736e-06 1.34723e-06 1.3471e-06 1.34697e-06 1.34684e-06 1.34672e-06 1.34661e-06 1.34652e-06 1.34646e-06 1.34643e-06 1.34646e-06 1.34657e-06 1.34673e-06 1.34687e-06 1.34686e-06 1.34661e-06 1.34618e-06 1.34578e-06 1.3456e-06 1.34561e-06 1.34561e-06 1.34549e-06 1.34538e-06 1.34533e-06 1.34529e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.2397e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74706e-06 9.1783e-06 8.64274e-06 8.13843e-06 7.66355e-06 7.21639e-06 6.79532e-06 6.39881e-06 6.02545e-06 5.67389e-06 5.34283e-06 5.0311e-06 4.73756e-06 4.46113e-06 4.20085e-06 3.95576e-06 3.72498e-06 3.50765e-06 3.303e-06 3.1103e-06 2.92884e-06 2.75797e-06 2.59707e-06 2.44556e-06 2.30288e-06 2.16853e-06 2.04202e-06 1.92289e-06 1.81071e-06 1.70508e-06 1.6056e-06 1.51193e-06 1.42373e-06 1.34067e-06 1.26245e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.2397e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74706e-06 9.17831e-06 8.64275e-06 8.13844e-06 7.66356e-06 7.2164e-06 6.79533e-06 6.39883e-06 6.02548e-06 5.6739e-06 5.34283e-06 5.03109e-06 4.73755e-06 4.46116e-06 4.20089e-06 3.95577e-06 3.72496e-06 3.50764e-06 3.303e-06 3.1103e-06 2.92884e-06 2.75796e-06 2.59706e-06 2.44554e-06 2.30287e-06 2.16852e-06 2.04201e-06 1.92288e-06 1.8107e-06 1.70506e-06 1.60559e-06 1.51192e-06 1.42371e-06 1.34065e-06 1.26244e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74707e-06 9.17832e-06 8.64276e-06 8.13845e-06 7.66357e-06 7.21641e-06 6.79533e-06 6.39883e-06 6.02546e-06 5.6739e-06 5.34285e-06 5.03112e-06 4.73757e-06 4.46113e-06 4.20084e-06 3.95576e-06 3.72498e-06 3.50765e-06 3.303e-06 3.11029e-06 2.92883e-06 2.75795e-06 2.59705e-06 2.44553e-06 2.30286e-06 2.1685e-06 2.04199e-06 1.92286e-06 1.81068e-06 1.70504e-06 1.60557e-06 1.5119e-06 1.42369e-06 1.34063e-06 1.26242e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74707e-06 9.17833e-06 8.64277e-06 8.13846e-06 7.66358e-06 7.21641e-06 6.79534e-06 6.39885e-06 6.0255e-06 5.67391e-06 5.34285e-06 5.03112e-06 4.73757e-06 4.46116e-06 4.20088e-06 3.95576e-06 3.72496e-06 3.50763e-06 3.30299e-06 3.11028e-06 2.92882e-06 2.75794e-06 2.59703e-06 2.44552e-06 2.30284e-06 2.16849e-06 2.04198e-06 1.92284e-06 1.81066e-06 1.70502e-06 1.60555e-06 1.51188e-06 1.42368e-06 1.34062e-06 1.2624e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74708e-06 9.17833e-06 8.64278e-06 8.13847e-06 7.66359e-06 7.21643e-06 6.79535e-06 6.39885e-06 6.02548e-06 5.67391e-06 5.34286e-06 5.03111e-06 4.73757e-06 4.46115e-06 4.20087e-06 3.95577e-06 3.72497e-06 3.50763e-06 3.30298e-06 3.11027e-06 2.92881e-06 2.75793e-06 2.59702e-06 2.4455e-06 2.30283e-06 2.16847e-06 2.04196e-06 1.92283e-06 1.81064e-06 1.70501e-06 1.60553e-06 1.51186e-06 1.42366e-06 1.3406e-06 1.26239e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74709e-06 9.17834e-06 8.64278e-06 8.13848e-06 7.6636e-06 7.21643e-06 6.79536e-06 6.39887e-06 6.02551e-06 5.67393e-06 5.34287e-06 5.03114e-06 4.73759e-06 4.46114e-06 4.20085e-06 3.95575e-06 3.72496e-06 3.50763e-06 3.30297e-06 3.11026e-06 2.9288e-06 2.75792e-06 2.59701e-06 2.44549e-06 2.30281e-06 2.16846e-06 2.04194e-06 1.92281e-06 1.81063e-06 1.70499e-06 1.60552e-06 1.51185e-06 1.42364e-06 1.34058e-06 1.26237e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74709e-06 9.17835e-06 8.64279e-06 8.13849e-06 7.66361e-06 7.21644e-06 6.79537e-06 6.39886e-06 6.0255e-06 5.67393e-06 5.34286e-06 5.03111e-06 4.73757e-06 4.46117e-06 4.20089e-06 3.95577e-06 3.72496e-06 3.50762e-06 3.30297e-06 3.11025e-06 2.92878e-06 2.7579e-06 2.59699e-06 2.44547e-06 2.30279e-06 2.16844e-06 2.04192e-06 1.92279e-06 1.81061e-06 1.70497e-06 1.6055e-06 1.51183e-06 1.42362e-06 1.34057e-06 1.26235e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.7471e-06 9.17835e-06 8.6428e-06 8.1385e-06 7.66362e-06 7.21645e-06 6.79538e-06 6.39888e-06 6.02552e-06 5.67394e-06 5.34288e-06 5.03115e-06 4.73759e-06 4.46113e-06 4.20083e-06 3.95574e-06 3.72496e-06 3.50762e-06 3.30296e-06 3.11024e-06 2.92877e-06 2.75789e-06 2.59698e-06 2.44546e-06 2.30278e-06 2.16842e-06 2.04191e-06 1.92277e-06 1.81059e-06 1.70495e-06 1.60548e-06 1.51181e-06 1.42361e-06 1.34055e-06 1.26234e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.7471e-06 9.17836e-06 8.64281e-06 8.1385e-06 7.66363e-06 7.21646e-06 6.79539e-06 6.39888e-06 6.02551e-06 5.67394e-06 5.34288e-06 5.03112e-06 4.73758e-06 4.46119e-06 4.2009e-06 3.95577e-06 3.72494e-06 3.50761e-06 3.30295e-06 3.11023e-06 2.92876e-06 2.75788e-06 2.59697e-06 2.44544e-06 2.30276e-06 2.16841e-06 2.04189e-06 1.92276e-06 1.81057e-06 1.70494e-06 1.60546e-06 1.51179e-06 1.42359e-06 1.34053e-06 1.26232e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74711e-06 9.17837e-06 8.64281e-06 8.13851e-06 7.66363e-06 7.21647e-06 6.79539e-06 6.39889e-06 6.02553e-06 5.67395e-06 5.34289e-06 5.03115e-06 4.73758e-06 4.46113e-06 4.20082e-06 3.95574e-06 3.72495e-06 3.50761e-06 3.30294e-06 3.11022e-06 2.92875e-06 2.75787e-06 2.59695e-06 2.44543e-06 2.30275e-06 2.16839e-06 2.04187e-06 1.92274e-06 1.81055e-06 1.70492e-06 1.60544e-06 1.51178e-06 1.42357e-06 1.34052e-06 1.2623e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74712e-06 9.17837e-06 8.64282e-06 8.13852e-06 7.66364e-06 7.21647e-06 6.7954e-06 6.3989e-06 6.02553e-06 5.67395e-06 5.34289e-06 5.03115e-06 4.73759e-06 4.46118e-06 4.20089e-06 3.95576e-06 3.72493e-06 3.50759e-06 3.30294e-06 3.11021e-06 2.92874e-06 2.75785e-06 2.59694e-06 2.44541e-06 2.30273e-06 2.16837e-06 2.04186e-06 1.92272e-06 1.81054e-06 1.7049e-06 1.60543e-06 1.51176e-06 1.42355e-06 1.3405e-06 1.26229e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74712e-06 9.17838e-06 8.64283e-06 8.13853e-06 7.66365e-06 7.21648e-06 6.79541e-06 6.39891e-06 6.02554e-06 5.67396e-06 5.34289e-06 5.03114e-06 4.73758e-06 4.46114e-06 4.20084e-06 3.95574e-06 3.72494e-06 3.50759e-06 3.30292e-06 3.1102e-06 2.92873e-06 2.75784e-06 2.59692e-06 2.4454e-06 2.30271e-06 2.16836e-06 2.04184e-06 1.9227e-06 1.81052e-06 1.70488e-06 1.60541e-06 1.51174e-06 1.42354e-06 1.34048e-06 1.26227e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74713e-06 9.17839e-06 8.64283e-06 8.13853e-06 7.66366e-06 7.21649e-06 6.79542e-06 6.39891e-06 6.02554e-06 5.67396e-06 5.3429e-06 5.03117e-06 4.7376e-06 4.46117e-06 4.20086e-06 3.95574e-06 3.72492e-06 3.50758e-06 3.30292e-06 3.11019e-06 2.92871e-06 2.75783e-06 2.59691e-06 2.44538e-06 2.3027e-06 2.16834e-06 2.04182e-06 1.92268e-06 1.8105e-06 1.70486e-06 1.60539e-06 1.51172e-06 1.42352e-06 1.34046e-06 1.26226e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74713e-06 9.17839e-06 8.64284e-06 8.13854e-06 7.66366e-06 7.2165e-06 6.79542e-06 6.39892e-06 6.02555e-06 5.67397e-06 5.34289e-06 5.03113e-06 4.73758e-06 4.46116e-06 4.20086e-06 3.95575e-06 3.72493e-06 3.50758e-06 3.30291e-06 3.11018e-06 2.9287e-06 2.75781e-06 2.59689e-06 2.44537e-06 2.30268e-06 2.16832e-06 2.0418e-06 1.92267e-06 1.81048e-06 1.70485e-06 1.60537e-06 1.5117e-06 1.4235e-06 1.34045e-06 1.26224e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74714e-06 9.1784e-06 8.64285e-06 8.13854e-06 7.66367e-06 7.2165e-06 6.79543e-06 6.39893e-06 6.02555e-06 5.67397e-06 5.34291e-06 5.03117e-06 4.7376e-06 4.46114e-06 4.20083e-06 3.95572e-06 3.72491e-06 3.50757e-06 3.3029e-06 3.11017e-06 2.92869e-06 2.7578e-06 2.59688e-06 2.44535e-06 2.30266e-06 2.1683e-06 2.04178e-06 1.92265e-06 1.81046e-06 1.70483e-06 1.60535e-06 1.51169e-06 1.42349e-06 1.34043e-06 1.26222e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74714e-06 9.1784e-06 8.64285e-06 8.13855e-06 7.66368e-06 7.21651e-06 6.79543e-06 6.39893e-06 6.02556e-06 5.67398e-06 5.3429e-06 5.03114e-06 4.73759e-06 4.46118e-06 4.20088e-06 3.95575e-06 3.72491e-06 3.50756e-06 3.30289e-06 3.11016e-06 2.92868e-06 2.75778e-06 2.59686e-06 2.44533e-06 2.30265e-06 2.16829e-06 2.04177e-06 1.92263e-06 1.81045e-06 1.70481e-06 1.60534e-06 1.51167e-06 1.42347e-06 1.34041e-06 1.26221e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74715e-06 9.17841e-06 8.64286e-06 8.13856e-06 7.66368e-06 7.21652e-06 6.79544e-06 6.39894e-06 6.02557e-06 5.67398e-06 5.34291e-06 5.03116e-06 4.73759e-06 4.46113e-06 4.20081e-06 3.95571e-06 3.7249e-06 3.50755e-06 3.30288e-06 3.11015e-06 2.92866e-06 2.75777e-06 2.59685e-06 2.44532e-06 2.30263e-06 2.16827e-06 2.04175e-06 1.92261e-06 1.81043e-06 1.70479e-06 1.60532e-06 1.51165e-06 1.42345e-06 1.3404e-06 1.26219e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74715e-06 9.17842e-06 8.64287e-06 8.13857e-06 7.66369e-06 7.21652e-06 6.79544e-06 6.39894e-06 6.02557e-06 5.67399e-06 5.34291e-06 5.03116e-06 4.7376e-06 4.46118e-06 4.20087e-06 3.95574e-06 3.72489e-06 3.50754e-06 3.30287e-06 3.11014e-06 2.92865e-06 2.75776e-06 2.59683e-06 2.4453e-06 2.30261e-06 2.16825e-06 2.04173e-06 1.92259e-06 1.81041e-06 1.70477e-06 1.6053e-06 1.51164e-06 1.42344e-06 1.34038e-06 1.26218e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74716e-06 9.17842e-06 8.64287e-06 8.13857e-06 7.66369e-06 7.21653e-06 6.79545e-06 6.39895e-06 6.02558e-06 5.67399e-06 5.34291e-06 5.03115e-06 4.73758e-06 4.46112e-06 4.20081e-06 3.9557e-06 3.7249e-06 3.50754e-06 3.30286e-06 3.11013e-06 2.92864e-06 2.75774e-06 2.59682e-06 2.44529e-06 2.3026e-06 2.16823e-06 2.04171e-06 1.92258e-06 1.81039e-06 1.70476e-06 1.60528e-06 1.51162e-06 1.42342e-06 1.34037e-06 1.26216e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74716e-06 9.17842e-06 8.64288e-06 8.13858e-06 7.6637e-06 7.21653e-06 6.79546e-06 6.39895e-06 6.02558e-06 5.67399e-06 5.34292e-06 5.03117e-06 4.7376e-06 4.46116e-06 4.20085e-06 3.95572e-06 3.72488e-06 3.50752e-06 3.30284e-06 3.11011e-06 2.92863e-06 2.75773e-06 2.5968e-06 2.44527e-06 2.30258e-06 2.16822e-06 2.0417e-06 1.92256e-06 1.81038e-06 1.70474e-06 1.60527e-06 1.5116e-06 1.4234e-06 1.34035e-06 1.26214e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09926e-05 1.03511e-05 9.74717e-06 9.17843e-06 8.64288e-06 8.13858e-06 7.6637e-06 7.21654e-06 6.79546e-06 6.39896e-06 6.02558e-06 5.67399e-06 5.34291e-06 5.03115e-06 4.73757e-06 4.46114e-06 4.20082e-06 3.9557e-06 3.72488e-06 3.50753e-06 3.30284e-06 3.1101e-06 2.92861e-06 2.75771e-06 2.59679e-06 2.44525e-06 2.30256e-06 2.1682e-06 2.04168e-06 1.92254e-06 1.81036e-06 1.70472e-06 1.60525e-06 1.51159e-06 1.42339e-06 1.34033e-06 1.26213e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74717e-06 9.17843e-06 8.64289e-06 8.13859e-06 7.66371e-06 7.21654e-06 6.79546e-06 6.39895e-06 6.02558e-06 5.67399e-06 5.34292e-06 5.03117e-06 4.73759e-06 4.46114e-06 4.20082e-06 3.95569e-06 3.72486e-06 3.50749e-06 3.30282e-06 3.11009e-06 2.9286e-06 2.7577e-06 2.59677e-06 2.44524e-06 2.30255e-06 2.16818e-06 2.04166e-06 1.92252e-06 1.81034e-06 1.7047e-06 1.60523e-06 1.51157e-06 1.42337e-06 1.34032e-06 1.26211e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09926e-05 1.03512e-05 9.74717e-06 9.17844e-06 8.64289e-06 8.13859e-06 7.66371e-06 7.21655e-06 6.79547e-06 6.39897e-06 6.02559e-06 5.674e-06 5.34292e-06 5.03115e-06 4.73758e-06 4.46115e-06 4.20083e-06 3.9557e-06 3.72487e-06 3.50751e-06 3.30282e-06 3.11008e-06 2.92859e-06 2.75769e-06 2.59676e-06 2.44522e-06 2.30253e-06 2.16817e-06 2.04164e-06 1.92251e-06 1.81032e-06 1.70469e-06 1.60522e-06 1.51155e-06 1.42335e-06 1.3403e-06 1.2621e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09925e-05 1.03511e-05 9.74717e-06 9.17844e-06 8.6429e-06 8.1386e-06 7.66372e-06 7.21655e-06 6.79547e-06 6.39896e-06 6.02559e-06 5.674e-06 5.34291e-06 5.03116e-06 4.73758e-06 4.46112e-06 4.20079e-06 3.95567e-06 3.72484e-06 3.50747e-06 3.3028e-06 3.11007e-06 2.92857e-06 2.75767e-06 2.59674e-06 2.44521e-06 2.30251e-06 2.16815e-06 2.04163e-06 1.92249e-06 1.81031e-06 1.70467e-06 1.6052e-06 1.51154e-06 1.42334e-06 1.34029e-06 1.26208e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09926e-05 1.03512e-05 9.74718e-06 9.17845e-06 8.6429e-06 8.1386e-06 7.66372e-06 7.21656e-06 6.79548e-06 6.39897e-06 6.02559e-06 5.674e-06 5.34293e-06 5.03116e-06 4.73758e-06 4.46115e-06 4.20084e-06 3.95569e-06 3.72486e-06 3.5075e-06 3.30281e-06 3.11005e-06 2.92856e-06 2.75766e-06 2.59673e-06 2.44519e-06 2.3025e-06 2.16813e-06 2.04161e-06 1.92247e-06 1.81029e-06 1.70465e-06 1.60518e-06 1.51152e-06 1.42332e-06 1.34027e-06 1.26207e-06 2.40183e-05 2.26168e-05 2.12971e-05 2.00544e-05 1.88842e-05 1.77822e-05 1.67446e-05 1.57675e-05 1.48475e-05 1.39811e-05 1.31653e-05 1.23971e-05 1.16737e-05 1.09926e-05 1.03512e-05 9.74718e-06 9.17845e-06 8.6429e-06 8.1386e-06 7.66373e-06 7.21656e-06 6.79548e-06 6.39897e-06 6.02559e-06 5.674e-06 5.34291e-06 5.03115e-06 4.73757e-06 4.46111e-06 4.20078e-06 3.95566e-06 3.72482e-06 3.50745e-06 3.30277e-06 3.11005e-06 2.92855e-06 2.75764e-06 2.59672e-06 2.44518e-06 2.30248e-06 2.16812e-06 2.0416e-06 1.92246e-06 1.81027e-06 1.70464e-06 1.60517e-06 1.5115e-06 1.42331e-06 1.34026e-06 1.26205e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83581e-06 9.26191e-06 8.72149e-06 8.2126e-06 7.73341e-06 7.28218e-06 6.85727e-06 6.45716e-06 6.08039e-06 5.7256e-06 5.39151e-06 5.07692e-06 4.78067e-06 4.50171e-06 4.23902e-06 3.99166e-06 3.75872e-06 3.53939e-06 3.33285e-06 3.13835e-06 2.95519e-06 2.78273e-06 2.62034e-06 2.46742e-06 2.32342e-06 2.18784e-06 2.06016e-06 1.93994e-06 1.82673e-06 1.72013e-06 1.61975e-06 1.52524e-06 1.43624e-06 1.35243e-06 1.27352e-06 1.19921e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83581e-06 9.26191e-06 8.72149e-06 8.21261e-06 7.73342e-06 7.28218e-06 6.85728e-06 6.45716e-06 6.08039e-06 5.7256e-06 5.39151e-06 5.07691e-06 4.78066e-06 4.5017e-06 4.23901e-06 3.99165e-06 3.75872e-06 3.53937e-06 3.33281e-06 3.13832e-06 2.95518e-06 2.78272e-06 2.62032e-06 2.46741e-06 2.32341e-06 2.18782e-06 2.06015e-06 1.93992e-06 1.82672e-06 1.72012e-06 1.61974e-06 1.52522e-06 1.43622e-06 1.35242e-06 1.2735e-06 1.19919e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26191e-06 8.72149e-06 8.21261e-06 7.73342e-06 7.28218e-06 6.85728e-06 6.45716e-06 6.08039e-06 5.72561e-06 5.39152e-06 5.07691e-06 4.78066e-06 4.50169e-06 4.239e-06 3.99164e-06 3.7587e-06 3.53937e-06 3.33283e-06 3.13833e-06 2.95517e-06 2.78271e-06 2.62031e-06 2.46739e-06 2.3234e-06 2.18781e-06 2.06013e-06 1.93991e-06 1.8267e-06 1.7201e-06 1.61973e-06 1.52521e-06 1.43621e-06 1.35241e-06 1.27349e-06 1.19918e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83581e-06 9.26191e-06 8.7215e-06 8.21261e-06 7.73342e-06 7.28219e-06 6.85728e-06 6.45717e-06 6.0804e-06 5.7256e-06 5.39151e-06 5.07691e-06 4.78067e-06 4.50171e-06 4.23902e-06 3.99166e-06 3.75872e-06 3.53936e-06 3.3328e-06 3.13831e-06 2.95516e-06 2.7827e-06 2.6203e-06 2.46738e-06 2.32339e-06 2.1878e-06 2.06012e-06 1.93989e-06 1.82669e-06 1.72009e-06 1.61971e-06 1.5252e-06 1.4362e-06 1.35239e-06 1.27348e-06 1.19917e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.7215e-06 8.21261e-06 7.73342e-06 7.28219e-06 6.85728e-06 6.45716e-06 6.08039e-06 5.72561e-06 5.39152e-06 5.07691e-06 4.78065e-06 4.50168e-06 4.23898e-06 3.99161e-06 3.75868e-06 3.53934e-06 3.3328e-06 3.1383e-06 2.95515e-06 2.78269e-06 2.62029e-06 2.46737e-06 2.32337e-06 2.18778e-06 2.06011e-06 1.93988e-06 1.82667e-06 1.72008e-06 1.6197e-06 1.52518e-06 1.43618e-06 1.35238e-06 1.27347e-06 1.19916e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83581e-06 9.26192e-06 8.7215e-06 8.21262e-06 7.73342e-06 7.28219e-06 6.85728e-06 6.45717e-06 6.0804e-06 5.7256e-06 5.3915e-06 5.07691e-06 4.78067e-06 4.5017e-06 4.23902e-06 3.99166e-06 3.75871e-06 3.53935e-06 3.3328e-06 3.1383e-06 2.95514e-06 2.78268e-06 2.62028e-06 2.46736e-06 2.32336e-06 2.18777e-06 2.06009e-06 1.93987e-06 1.82666e-06 1.72006e-06 1.61969e-06 1.52517e-06 1.43617e-06 1.35237e-06 1.27345e-06 1.19915e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.7215e-06 8.21262e-06 7.73342e-06 7.28219e-06 6.85729e-06 6.45716e-06 6.08039e-06 5.72561e-06 5.39152e-06 5.0769e-06 4.78065e-06 4.50168e-06 4.23897e-06 3.9916e-06 3.75867e-06 3.53932e-06 3.33277e-06 3.13828e-06 2.95513e-06 2.78267e-06 2.62027e-06 2.46734e-06 2.32335e-06 2.18776e-06 2.06008e-06 1.93985e-06 1.82665e-06 1.72005e-06 1.61968e-06 1.52516e-06 1.43616e-06 1.35236e-06 1.27344e-06 1.19914e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.7215e-06 8.21262e-06 7.73343e-06 7.28219e-06 6.85729e-06 6.45718e-06 6.0804e-06 5.72559e-06 5.3915e-06 5.07691e-06 4.78066e-06 4.50168e-06 4.239e-06 3.99164e-06 3.75869e-06 3.53934e-06 3.3328e-06 3.13828e-06 2.95512e-06 2.78266e-06 2.62025e-06 2.46733e-06 2.32334e-06 2.18774e-06 2.06007e-06 1.93984e-06 1.82664e-06 1.72004e-06 1.61966e-06 1.52515e-06 1.43615e-06 1.35234e-06 1.27343e-06 1.19912e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.7215e-06 8.21262e-06 7.73343e-06 7.28219e-06 6.85729e-06 6.45716e-06 6.08039e-06 5.72561e-06 5.39151e-06 5.0769e-06 4.78065e-06 4.50169e-06 4.23898e-06 3.9916e-06 3.75867e-06 3.53931e-06 3.33274e-06 3.13825e-06 2.95511e-06 2.78264e-06 2.62024e-06 2.46732e-06 2.32332e-06 2.18773e-06 2.06005e-06 1.93983e-06 1.82662e-06 1.72003e-06 1.61965e-06 1.52513e-06 1.43614e-06 1.35233e-06 1.27342e-06 1.19911e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.2822e-06 6.85729e-06 6.45718e-06 6.0804e-06 5.72559e-06 5.3915e-06 5.0769e-06 4.78064e-06 4.50166e-06 4.23897e-06 3.9916e-06 3.75866e-06 3.53933e-06 3.33279e-06 3.13827e-06 2.9551e-06 2.78263e-06 2.62023e-06 2.46731e-06 2.32331e-06 2.18772e-06 2.06004e-06 1.93982e-06 1.82661e-06 1.72001e-06 1.61964e-06 1.52512e-06 1.43612e-06 1.35232e-06 1.27341e-06 1.1991e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26193e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.2822e-06 6.85729e-06 6.45716e-06 6.08039e-06 5.72561e-06 5.39151e-06 5.0769e-06 4.78065e-06 4.50169e-06 4.23899e-06 3.99162e-06 3.75867e-06 3.53929e-06 3.33272e-06 3.13823e-06 2.95509e-06 2.78262e-06 2.62022e-06 2.4673e-06 2.3233e-06 2.18771e-06 2.06003e-06 1.9398e-06 1.8266e-06 1.72e-06 1.61963e-06 1.52511e-06 1.43611e-06 1.35231e-06 1.2734e-06 1.19909e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.2822e-06 6.85729e-06 6.45717e-06 6.0804e-06 5.72559e-06 5.39149e-06 5.07689e-06 4.78063e-06 4.50165e-06 4.23895e-06 3.99157e-06 3.75863e-06 3.53931e-06 3.33277e-06 3.13825e-06 2.95508e-06 2.78261e-06 2.62021e-06 2.46729e-06 2.32329e-06 2.1877e-06 2.06002e-06 1.93979e-06 1.82659e-06 1.71999e-06 1.61961e-06 1.5251e-06 1.4361e-06 1.3523e-06 1.27339e-06 1.19908e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26193e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.2822e-06 6.85729e-06 6.45716e-06 6.08039e-06 5.72561e-06 5.3915e-06 5.07689e-06 4.78064e-06 4.50168e-06 4.23898e-06 3.99162e-06 3.75867e-06 3.53928e-06 3.3327e-06 3.13821e-06 2.95507e-06 2.7826e-06 2.6202e-06 2.46728e-06 2.32328e-06 2.18768e-06 2.06001e-06 1.93978e-06 1.82658e-06 1.71998e-06 1.6196e-06 1.52509e-06 1.43609e-06 1.35229e-06 1.27338e-06 1.19907e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26193e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.2822e-06 6.85729e-06 6.45717e-06 6.08039e-06 5.72558e-06 5.39149e-06 5.07688e-06 4.78062e-06 4.50165e-06 4.23894e-06 3.99155e-06 3.75861e-06 3.53929e-06 3.33275e-06 3.13823e-06 2.95506e-06 2.78259e-06 2.62019e-06 2.46726e-06 2.32327e-06 2.18767e-06 2.05999e-06 1.93977e-06 1.82656e-06 1.71997e-06 1.61959e-06 1.52508e-06 1.43608e-06 1.35228e-06 1.27337e-06 1.19906e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83583e-06 9.26193e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.28219e-06 6.85728e-06 6.45716e-06 6.08039e-06 5.7256e-06 5.3915e-06 5.07688e-06 4.78063e-06 4.50165e-06 4.23896e-06 3.9916e-06 3.75865e-06 3.53926e-06 3.33269e-06 3.1382e-06 2.95505e-06 2.78258e-06 2.62018e-06 2.46725e-06 2.32325e-06 2.18766e-06 2.05998e-06 1.93976e-06 1.82655e-06 1.71996e-06 1.61958e-06 1.52507e-06 1.43607e-06 1.35227e-06 1.27336e-06 1.19905e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26193e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.28219e-06 6.85728e-06 6.45716e-06 6.08038e-06 5.72558e-06 5.39148e-06 5.07688e-06 4.78063e-06 4.50166e-06 4.23894e-06 3.99154e-06 3.7586e-06 3.53927e-06 3.33273e-06 3.13821e-06 2.95504e-06 2.78257e-06 2.62017e-06 2.46724e-06 2.32324e-06 2.18765e-06 2.05997e-06 1.93975e-06 1.82654e-06 1.71994e-06 1.61957e-06 1.52506e-06 1.43606e-06 1.35226e-06 1.27335e-06 1.19904e-06 2.28225e-05 2.14908e-05 2.02368e-05 1.90559e-05 1.7944e-05 1.68969e-05 1.5911e-05 1.49825e-05 1.41083e-05 1.3285e-05 1.25098e-05 1.17799e-05 1.10925e-05 1.04453e-05 9.83582e-06 9.26192e-06 8.72151e-06 8.21262e-06 7.73343e-06 7.28219e-06 6.85728e-06 6.45716e-06 6.08039e-06 5.7256e-06 5.39149e-06 5.07687e-06 4.78061e-06 4.50162e-06 4.23893e-06 3.99157e-06 3.75863e-06 3.53926e-06 3.33269e-06 3.13818e-06 2.95503e-06 2.78257e-06 2.62016e-06 2.46723e-06 2.32323e-06 2.18764e-06 2.05996e-06 1.93974e-06 1.82653e-06 1.71993e-06 1.61956e-06 1.52505e-06 1.43605e-06 1.35225e-06 1.27334e-06 1.19903e-06 1.26501e-06 1.26445e-06 1.26388e-06 1.26331e-06 1.26274e-06 1.26216e-06 1.26159e-06 1.26101e-06 1.26044e-06 1.25986e-06 1.25928e-06 1.25871e-06 1.25813e-06 1.25756e-06 1.25699e-06 1.25642e-06 1.25586e-06 1.25529e-06 1.25473e-06 1.25416e-06 1.25359e-06 1.25303e-06 1.25247e-06 1.25191e-06 1.25135e-06 1.2508e-06 1.25024e-06 1.24969e-06 1.24914e-06 1.24858e-06 1.24803e-06 1.24748e-06 1.24693e-06 1.24638e-06 1.24583e-06 1.24529e-06 1.24474e-06 1.24419e-06 1.24364e-06 1.2431e-06 1.24256e-06 1.24201e-06 1.24147e-06 1.24093e-06 1.24038e-06 1.23984e-06 1.2393e-06 1.23876e-06 1.23822e-06 1.23767e-06 1.23713e-06 1.23659e-06 1.23605e-06 1.23551e-06 1.23497e-06 1.23443e-06 1.23389e-06 1.23334e-06 1.2328e-06 1.23226e-06 1.25823e-06 1.25768e-06 1.25713e-06 1.25658e-06 1.25602e-06 1.25546e-06 1.25491e-06 1.25435e-06 1.25379e-06 1.25324e-06 1.25268e-06 1.25213e-06 1.25158e-06 1.25103e-06 1.25048e-06 1.24993e-06 1.24939e-06 1.24885e-06 1.24831e-06 1.24776e-06 1.24722e-06 1.24668e-06 1.24614e-06 1.2456e-06 1.24507e-06 1.24453e-06 1.244e-06 1.24347e-06 1.24293e-06 1.2424e-06 1.24187e-06 1.24134e-06 1.24081e-06 1.24028e-06 1.23975e-06 1.23922e-06 1.2387e-06 1.23817e-06 1.23764e-06 1.23711e-06 1.23659e-06 1.23606e-06 1.23554e-06 1.23501e-06 1.23449e-06 1.23396e-06 1.23344e-06 1.23291e-06 1.23239e-06 1.23187e-06 1.23134e-06 1.23082e-06 1.23029e-06 1.22977e-06 1.22924e-06 1.22872e-06 1.2282e-06 1.22767e-06 1.22715e-06 1.22662e-06 1.25154e-06 1.25105e-06 1.25054e-06 1.25003e-06 1.24951e-06 1.24899e-06 1.24846e-06 1.24793e-06 1.24741e-06 1.24688e-06 1.24636e-06 1.24584e-06 1.24533e-06 1.24482e-06 1.2443e-06 1.24379e-06 1.24328e-06 1.24277e-06 1.24227e-06 1.24176e-06 1.24126e-06 1.24075e-06 1.24025e-06 1.23975e-06 1.23925e-06 1.23875e-06 1.23825e-06 1.23775e-06 1.23726e-06 1.23676e-06 1.23627e-06 1.23577e-06 1.23528e-06 1.23479e-06 1.23429e-06 1.2338e-06 1.23331e-06 1.23282e-06 1.23233e-06 1.23184e-06 1.23135e-06 1.23086e-06 1.23038e-06 1.22989e-06 1.2294e-06 1.22891e-06 1.22842e-06 1.22794e-06 1.22745e-06 1.22696e-06 1.22647e-06 1.22599e-06 1.2255e-06 1.22501e-06 1.22452e-06 1.22404e-06 1.22355e-06 1.22307e-06 1.22258e-06 1.2221e-06 1.24498e-06 1.24453e-06 1.24407e-06 1.24361e-06 1.24314e-06 1.24268e-06 1.2422e-06 1.24173e-06 1.24126e-06 1.24078e-06 1.24031e-06 1.23985e-06 1.23938e-06 1.23892e-06 1.23847e-06 1.23801e-06 1.23755e-06 1.2371e-06 1.23664e-06 1.23619e-06 1.23574e-06 1.23529e-06 1.23484e-06 1.2344e-06 1.23395e-06 1.2335e-06 1.23306e-06 1.23261e-06 1.23217e-06 1.23173e-06 1.23129e-06 1.23085e-06 1.23041e-06 1.22997e-06 1.22953e-06 1.22909e-06 1.22865e-06 1.22821e-06 1.22778e-06 1.22734e-06 1.22691e-06 1.22647e-06 1.22604e-06 1.2256e-06 1.22517e-06 1.22474e-06 1.2243e-06 1.22387e-06 1.22344e-06 1.223e-06 1.22257e-06 1.22214e-06 1.2217e-06 1.22127e-06 1.22084e-06 1.2204e-06 1.21997e-06 1.21954e-06 1.21911e-06 1.21867e-06 1.23856e-06 1.23816e-06 1.23777e-06 1.23738e-06 1.23698e-06 1.23657e-06 1.23617e-06 1.23577e-06 1.23537e-06 1.23497e-06 1.23457e-06 1.23418e-06 1.23379e-06 1.2334e-06 1.23301e-06 1.23263e-06 1.23224e-06 1.23186e-06 1.23148e-06 1.2311e-06 1.23073e-06 1.23035e-06 1.22997e-06 1.2296e-06 1.22922e-06 1.22885e-06 1.22847e-06 1.2281e-06 1.22773e-06 1.22735e-06 1.22698e-06 1.22661e-06 1.22624e-06 1.22587e-06 1.2255e-06 1.22514e-06 1.22477e-06 1.2244e-06 1.22403e-06 1.22367e-06 1.2233e-06 1.22293e-06 1.22257e-06 1.2222e-06 1.22184e-06 1.22147e-06 1.22111e-06 1.22074e-06 1.22037e-06 1.22001e-06 1.21964e-06 1.21928e-06 1.21891e-06 1.21855e-06 1.21818e-06 1.21781e-06 1.21745e-06 1.21708e-06 1.21672e-06 1.21635e-06 1.23235e-06 1.23205e-06 1.23174e-06 1.23142e-06 1.2311e-06 1.23076e-06 1.23044e-06 1.23011e-06 1.22978e-06 1.22947e-06 1.22915e-06 1.22883e-06 1.22852e-06 1.22821e-06 1.2279e-06 1.2276e-06 1.22729e-06 1.22699e-06 1.22669e-06 1.22639e-06 1.22609e-06 1.22579e-06 1.2255e-06 1.2252e-06 1.2249e-06 1.22461e-06 1.22431e-06 1.22402e-06 1.22372e-06 1.22343e-06 1.22314e-06 1.22285e-06 1.22256e-06 1.22226e-06 1.22197e-06 1.22168e-06 1.22139e-06 1.2211e-06 1.22081e-06 1.22053e-06 1.22024e-06 1.21995e-06 1.21966e-06 1.21937e-06 1.21909e-06 1.2188e-06 1.21851e-06 1.21822e-06 1.21794e-06 1.21765e-06 1.21736e-06 1.21707e-06 1.21679e-06 1.2165e-06 1.21621e-06 1.21592e-06 1.21563e-06 1.21534e-06 1.21506e-06 1.21477e-06 1.22641e-06 1.2262e-06 1.22599e-06 1.22577e-06 1.22554e-06 1.22532e-06 1.22507e-06 1.22485e-06 1.22463e-06 1.2244e-06 1.22419e-06 1.22397e-06 1.22376e-06 1.22355e-06 1.22334e-06 1.22314e-06 1.22294e-06 1.22273e-06 1.22253e-06 1.22233e-06 1.22213e-06 1.22194e-06 1.22174e-06 1.22154e-06 1.22135e-06 1.22115e-06 1.22096e-06 1.22076e-06 1.22057e-06 1.22038e-06 1.22018e-06 1.21999e-06 1.2198e-06 1.21961e-06 1.21942e-06 1.21923e-06 1.21904e-06 1.21885e-06 1.21866e-06 1.21847e-06 1.21828e-06 1.21809e-06 1.2179e-06 1.21772e-06 1.21753e-06 1.21734e-06 1.21715e-06 1.21697e-06 1.21678e-06 1.21659e-06 1.2164e-06 1.21622e-06 1.21603e-06 1.21584e-06 1.21565e-06 1.21546e-06 1.21527e-06 1.21508e-06 1.2149e-06 1.21471e-06 1.22074e-06 1.22064e-06 1.22053e-06 1.22042e-06 1.22029e-06 1.22017e-06 1.22005e-06 1.21992e-06 1.21981e-06 1.21969e-06 1.21959e-06 1.21948e-06 1.21938e-06 1.21928e-06 1.21919e-06 1.21909e-06 1.219e-06 1.21891e-06 1.21881e-06 1.21872e-06 1.21863e-06 1.21855e-06 1.21846e-06 1.21837e-06 1.21828e-06 1.2182e-06 1.21811e-06 1.21803e-06 1.21794e-06 1.21786e-06 1.21777e-06 1.21769e-06 1.2176e-06 1.21752e-06 1.21743e-06 1.21735e-06 1.21727e-06 1.21719e-06 1.2171e-06 1.21702e-06 1.21694e-06 1.21686e-06 1.21678e-06 1.21669e-06 1.21661e-06 1.21653e-06 1.21645e-06 1.21637e-06 1.21629e-06 1.21621e-06 1.21613e-06 1.21604e-06 1.21596e-06 1.21588e-06 1.2158e-06 1.21572e-06 1.21563e-06 1.21555e-06 1.21547e-06 1.21538e-06 1.21544e-06 1.21546e-06 1.21547e-06 1.21545e-06 1.21545e-06 1.21543e-06 1.21542e-06 1.21542e-06 1.21542e-06 1.21543e-06 1.21543e-06 1.21545e-06 1.21546e-06 1.21548e-06 1.2155e-06 1.21552e-06 1.21555e-06 1.21557e-06 1.2156e-06 1.21562e-06 1.21565e-06 1.21568e-06 1.21571e-06 1.21573e-06 1.21576e-06 1.21579e-06 1.21582e-06 1.21585e-06 1.21588e-06 1.21591e-06 1.21595e-06 1.21598e-06 1.21601e-06 1.21604e-06 1.21607e-06 1.2161e-06 1.21614e-06 1.21617e-06 1.2162e-06 1.21624e-06 1.21627e-06 1.2163e-06 1.21634e-06 1.21637e-06 1.2164e-06 1.21644e-06 1.21647e-06 1.21651e-06 1.21654e-06 1.21657e-06 1.21661e-06 1.21664e-06 1.21667e-06 1.21671e-06 1.21674e-06 1.21677e-06 1.2168e-06 1.21684e-06 1.21687e-06 1.2169e-06 1.21053e-06 1.21067e-06 1.21079e-06 1.21089e-06 1.211e-06 1.21111e-06 1.21121e-06 1.21134e-06 1.21146e-06 1.21159e-06 1.21172e-06 1.21186e-06 1.212e-06 1.21214e-06 1.21228e-06 1.21243e-06 1.21258e-06 1.21272e-06 1.21287e-06 1.21302e-06 1.21317e-06 1.21332e-06 1.21347e-06 1.21362e-06 1.21377e-06 1.21392e-06 1.21407e-06 1.21422e-06 1.21437e-06 1.21452e-06 1.21468e-06 1.21483e-06 1.21498e-06 1.21513e-06 1.21529e-06 1.21544e-06 1.21559e-06 1.21575e-06 1.2159e-06 1.21605e-06 1.21621e-06 1.21636e-06 1.21652e-06 1.21667e-06 1.21683e-06 1.21698e-06 1.21714e-06 1.21729e-06 1.21745e-06 1.2176e-06 1.21775e-06 1.21791e-06 1.21806e-06 1.21822e-06 1.21837e-06 1.21852e-06 1.21867e-06 1.21883e-06 1.21898e-06 1.21913e-06 1.20605e-06 1.20632e-06 1.20655e-06 1.20678e-06 1.20699e-06 1.20723e-06 1.20746e-06 1.20771e-06 1.20796e-06 1.20822e-06 1.20848e-06 1.20874e-06 1.20901e-06 1.20927e-06 1.20954e-06 1.20981e-06 1.21008e-06 1.21036e-06 1.21063e-06 1.2109e-06 1.21117e-06 1.21145e-06 1.21172e-06 1.21199e-06 1.21227e-06 1.21254e-06 1.21282e-06 1.21309e-06 1.21337e-06 1.21364e-06 1.21392e-06 1.21419e-06 1.21447e-06 1.21474e-06 1.21502e-06 1.21529e-06 1.21557e-06 1.21585e-06 1.21612e-06 1.2164e-06 1.21668e-06 1.21695e-06 1.21723e-06 1.21751e-06 1.21778e-06 1.21806e-06 1.21834e-06 1.21861e-06 1.21889e-06 1.21917e-06 1.21944e-06 1.21972e-06 1.22e-06 1.22027e-06 1.22055e-06 1.22082e-06 1.22109e-06 1.22137e-06 1.22164e-06 1.22191e-06 1.20209e-06 1.20247e-06 1.20282e-06 1.20315e-06 1.20349e-06 1.20384e-06 1.2042e-06 1.20457e-06 1.20495e-06 1.20533e-06 1.20572e-06 1.2061e-06 1.20649e-06 1.20688e-06 1.20727e-06 1.20767e-06 1.20806e-06 1.20845e-06 1.20884e-06 1.20924e-06 1.20963e-06 1.21003e-06 1.21042e-06 1.21081e-06 1.21121e-06 1.2116e-06 1.212e-06 1.21239e-06 1.21279e-06 1.21318e-06 1.21358e-06 1.21398e-06 1.21437e-06 1.21477e-06 1.21516e-06 1.21556e-06 1.21595e-06 1.21635e-06 1.21675e-06 1.21714e-06 1.21754e-06 1.21794e-06 1.21833e-06 1.21873e-06 1.21913e-06 1.21952e-06 1.21992e-06 1.22032e-06 1.22072e-06 1.22111e-06 1.22151e-06 1.2219e-06 1.2223e-06 1.2227e-06 1.22309e-06 1.22348e-06 1.22388e-06 1.22427e-06 1.22466e-06 1.22506e-06 1.19864e-06 1.19914e-06 1.19959e-06 1.20002e-06 1.20048e-06 1.20095e-06 1.20144e-06 1.20193e-06 1.20243e-06 1.20293e-06 1.20343e-06 1.20394e-06 1.20444e-06 1.20495e-06 1.20545e-06 1.20596e-06 1.20647e-06 1.20698e-06 1.20748e-06 1.20799e-06 1.2085e-06 1.20901e-06 1.20952e-06 1.21003e-06 1.21053e-06 1.21104e-06 1.21155e-06 1.21206e-06 1.21257e-06 1.21308e-06 1.21359e-06 1.2141e-06 1.2146e-06 1.21511e-06 1.21562e-06 1.21613e-06 1.21664e-06 1.21715e-06 1.21766e-06 1.21817e-06 1.21868e-06 1.21919e-06 1.2197e-06 1.22021e-06 1.22072e-06 1.22123e-06 1.22174e-06 1.22225e-06 1.22276e-06 1.22327e-06 1.22378e-06 1.22428e-06 1.22479e-06 1.2253e-06 1.22581e-06 1.22632e-06 1.22682e-06 1.22733e-06 1.22783e-06 1.22833e-06 1.19582e-06 1.1964e-06 1.19692e-06 1.19746e-06 1.19804e-06 1.19863e-06 1.19923e-06 1.19983e-06 1.20044e-06 1.20105e-06 1.20166e-06 1.20227e-06 1.20288e-06 1.20349e-06 1.2041e-06 1.20471e-06 1.20532e-06 1.20593e-06 1.20654e-06 1.20715e-06 1.20776e-06 1.20838e-06 1.20899e-06 1.2096e-06 1.21021e-06 1.21082e-06 1.21143e-06 1.21204e-06 1.21266e-06 1.21327e-06 1.21388e-06 1.21449e-06 1.2151e-06 1.21571e-06 1.21633e-06 1.21694e-06 1.21755e-06 1.21816e-06 1.21877e-06 1.21938e-06 1.22e-06 1.22061e-06 1.22122e-06 1.22183e-06 1.22245e-06 1.22306e-06 1.22367e-06 1.22428e-06 1.22489e-06 1.22551e-06 1.22612e-06 1.22673e-06 1.22734e-06 1.22795e-06 1.22856e-06 1.22917e-06 1.22978e-06 1.23039e-06 1.23099e-06 1.2316e-06 1.19591e-06 1.19647e-06 1.19699e-06 1.1976e-06 1.19822e-06 1.19885e-06 1.19948e-06 1.20012e-06 1.20075e-06 1.20139e-06 1.20203e-06 1.20267e-06 1.20331e-06 1.20395e-06 1.20459e-06 1.20523e-06 1.20587e-06 1.20651e-06 1.20715e-06 1.20779e-06 1.20844e-06 1.20908e-06 1.20973e-06 1.21037e-06 1.21101e-06 1.21166e-06 1.21231e-06 1.21295e-06 1.2136e-06 1.21424e-06 1.21489e-06 1.21554e-06 1.21619e-06 1.21684e-06 1.21748e-06 1.21813e-06 1.21878e-06 1.21944e-06 1.22009e-06 1.22074e-06 1.22139e-06 1.22205e-06 1.2227e-06 1.22336e-06 1.22402e-06 1.22468e-06 1.22534e-06 1.226e-06 1.22666e-06 1.22733e-06 1.228e-06 1.22866e-06 1.22933e-06 1.23e-06 1.23067e-06 1.23135e-06 1.23202e-06 1.2327e-06 1.23337e-06 1.23405e-06 1.2324e-06 1.23294e-06 1.23348e-06 1.23402e-06 1.23457e-06 1.23511e-06 1.23564e-06 1.23618e-06 1.23672e-06 1.23726e-06 1.23779e-06 1.23833e-06 1.23886e-06 1.2394e-06 1.23993e-06 1.24046e-06 1.24099e-06 1.24152e-06 1.24205e-06 1.24258e-06 1.24311e-06 1.24364e-06 1.24417e-06 1.2447e-06 1.24523e-06 1.24575e-06 1.24628e-06 1.2468e-06 1.24733e-06 1.24785e-06 1.24837e-06 1.2489e-06 1.24942e-06 1.24994e-06 1.25046e-06 1.25098e-06 1.2515e-06 1.25202e-06 1.25253e-06 1.25305e-06 1.25357e-06 1.25409e-06 1.25459e-06 1.2551e-06 1.25559e-06 1.25609e-06 1.2566e-06 1.2571e-06 1.2576e-06 1.25809e-06 1.25859e-06 1.25908e-06 1.25957e-06 1.26007e-06 1.26057e-06 1.26107e-06 1.26158e-06 1.26208e-06 1.26258e-06 1.26309e-06 1.22676e-06 1.22729e-06 1.22781e-06 1.22833e-06 1.22885e-06 1.22937e-06 1.22989e-06 1.23041e-06 1.23093e-06 1.23145e-06 1.23197e-06 1.23248e-06 1.233e-06 1.23351e-06 1.23402e-06 1.23454e-06 1.23505e-06 1.23556e-06 1.23608e-06 1.23659e-06 1.2371e-06 1.23761e-06 1.23812e-06 1.23863e-06 1.23914e-06 1.23965e-06 1.24016e-06 1.24067e-06 1.24118e-06 1.24168e-06 1.24219e-06 1.2427e-06 1.2432e-06 1.24371e-06 1.24421e-06 1.24472e-06 1.24522e-06 1.24573e-06 1.24623e-06 1.24673e-06 1.24724e-06 1.24773e-06 1.24822e-06 1.24871e-06 1.2492e-06 1.24969e-06 1.25018e-06 1.25067e-06 1.25115e-06 1.25163e-06 1.25211e-06 1.25259e-06 1.25307e-06 1.25356e-06 1.25404e-06 1.25452e-06 1.25499e-06 1.25548e-06 1.25596e-06 1.25645e-06 1.22224e-06 1.22273e-06 1.22322e-06 1.22371e-06 1.22419e-06 1.22468e-06 1.22516e-06 1.22565e-06 1.22613e-06 1.22662e-06 1.2271e-06 1.22758e-06 1.22806e-06 1.22854e-06 1.22902e-06 1.2295e-06 1.22998e-06 1.23046e-06 1.23093e-06 1.23141e-06 1.23189e-06 1.23236e-06 1.23284e-06 1.23332e-06 1.23379e-06 1.23427e-06 1.23474e-06 1.23522e-06 1.23569e-06 1.23616e-06 1.23663e-06 1.2371e-06 1.23757e-06 1.23804e-06 1.23851e-06 1.23898e-06 1.23945e-06 1.23992e-06 1.24039e-06 1.24086e-06 1.24132e-06 1.24178e-06 1.24223e-06 1.24269e-06 1.24314e-06 1.2436e-06 1.24405e-06 1.2445e-06 1.24495e-06 1.24539e-06 1.24584e-06 1.24628e-06 1.24673e-06 1.24716e-06 1.2476e-06 1.24804e-06 1.24848e-06 1.24893e-06 1.24939e-06 1.24985e-06 1.21883e-06 1.21927e-06 1.2197e-06 1.22014e-06 1.22058e-06 1.22101e-06 1.22144e-06 1.22188e-06 1.22231e-06 1.22274e-06 1.22317e-06 1.2236e-06 1.22403e-06 1.22446e-06 1.22489e-06 1.22532e-06 1.22574e-06 1.22617e-06 1.2266e-06 1.22702e-06 1.22745e-06 1.22787e-06 1.2283e-06 1.22872e-06 1.22915e-06 1.22957e-06 1.22999e-06 1.23041e-06 1.23084e-06 1.23126e-06 1.23168e-06 1.2321e-06 1.23251e-06 1.23293e-06 1.23335e-06 1.23377e-06 1.23418e-06 1.2346e-06 1.23502e-06 1.23543e-06 1.23584e-06 1.23625e-06 1.23665e-06 1.23706e-06 1.23747e-06 1.23787e-06 1.23827e-06 1.23866e-06 1.23906e-06 1.23945e-06 1.23985e-06 1.24024e-06 1.24062e-06 1.24101e-06 1.2414e-06 1.24178e-06 1.24218e-06 1.24258e-06 1.24298e-06 1.24339e-06 1.21651e-06 1.21688e-06 1.21725e-06 1.21761e-06 1.21798e-06 1.21834e-06 1.21871e-06 1.21907e-06 1.21944e-06 1.2198e-06 1.22016e-06 1.22052e-06 1.22088e-06 1.22124e-06 1.2216e-06 1.22196e-06 1.22232e-06 1.22267e-06 1.22303e-06 1.22339e-06 1.22375e-06 1.2241e-06 1.22446e-06 1.22482e-06 1.22517e-06 1.22553e-06 1.22588e-06 1.22624e-06 1.22659e-06 1.22695e-06 1.2273e-06 1.22765e-06 1.22801e-06 1.22836e-06 1.22871e-06 1.22906e-06 1.22941e-06 1.22976e-06 1.23011e-06 1.23046e-06 1.23081e-06 1.23115e-06 1.23149e-06 1.23183e-06 1.23218e-06 1.23251e-06 1.23285e-06 1.23318e-06 1.23352e-06 1.23385e-06 1.23418e-06 1.23449e-06 1.23481e-06 1.23515e-06 1.23546e-06 1.23579e-06 1.23611e-06 1.23643e-06 1.23677e-06 1.2371e-06 1.21493e-06 1.21522e-06 1.21551e-06 1.21579e-06 1.21608e-06 1.21637e-06 1.21666e-06 1.21694e-06 1.21723e-06 1.21751e-06 1.2178e-06 1.21808e-06 1.21837e-06 1.21865e-06 1.21893e-06 1.21921e-06 1.21949e-06 1.21977e-06 1.22006e-06 1.22034e-06 1.22062e-06 1.2209e-06 1.22118e-06 1.22146e-06 1.22173e-06 1.22201e-06 1.22229e-06 1.22257e-06 1.22285e-06 1.22313e-06 1.2234e-06 1.22368e-06 1.22395e-06 1.22423e-06 1.2245e-06 1.22478e-06 1.22506e-06 1.22533e-06 1.22561e-06 1.22588e-06 1.22615e-06 1.22641e-06 1.22668e-06 1.22695e-06 1.22721e-06 1.22748e-06 1.22774e-06 1.22799e-06 1.22825e-06 1.22851e-06 1.22875e-06 1.229e-06 1.22925e-06 1.22949e-06 1.22973e-06 1.22997e-06 1.2302e-06 1.23046e-06 1.23071e-06 1.23098e-06 1.21486e-06 1.21505e-06 1.21524e-06 1.21543e-06 1.21562e-06 1.21581e-06 1.216e-06 1.21619e-06 1.21638e-06 1.21656e-06 1.21675e-06 1.21694e-06 1.21712e-06 1.21731e-06 1.21749e-06 1.21767e-06 1.21786e-06 1.21804e-06 1.21822e-06 1.2184e-06 1.21859e-06 1.21877e-06 1.21895e-06 1.21913e-06 1.21931e-06 1.21949e-06 1.21967e-06 1.21985e-06 1.22003e-06 1.22021e-06 1.22039e-06 1.22057e-06 1.22075e-06 1.22092e-06 1.2211e-06 1.22128e-06 1.22146e-06 1.22163e-06 1.22181e-06 1.22198e-06 1.22215e-06 1.22232e-06 1.2225e-06 1.22267e-06 1.22283e-06 1.223e-06 1.22316e-06 1.22332e-06 1.22348e-06 1.22364e-06 1.22379e-06 1.22395e-06 1.22409e-06 1.22422e-06 1.22437e-06 1.2245e-06 1.22465e-06 1.2248e-06 1.22496e-06 1.22512e-06 1.21552e-06 1.21561e-06 1.21569e-06 1.21578e-06 1.21586e-06 1.21594e-06 1.21603e-06 1.21611e-06 1.21619e-06 1.21627e-06 1.21634e-06 1.21642e-06 1.2165e-06 1.21658e-06 1.21666e-06 1.21673e-06 1.21681e-06 1.21689e-06 1.21696e-06 1.21704e-06 1.21712e-06 1.21719e-06 1.21727e-06 1.21734e-06 1.21742e-06 1.21749e-06 1.21757e-06 1.21764e-06 1.21772e-06 1.21779e-06 1.21787e-06 1.21794e-06 1.21801e-06 1.21809e-06 1.21816e-06 1.21823e-06 1.21831e-06 1.21838e-06 1.21845e-06 1.21852e-06 1.21859e-06 1.21866e-06 1.21872e-06 1.21879e-06 1.21886e-06 1.21892e-06 1.21898e-06 1.21904e-06 1.2191e-06 1.21915e-06 1.2192e-06 1.21925e-06 1.21928e-06 1.21933e-06 1.21936e-06 1.21939e-06 1.21943e-06 1.21946e-06 1.21952e-06 1.21957e-06 1.21702e-06 1.21699e-06 1.21696e-06 1.21693e-06 1.2169e-06 1.21687e-06 1.21684e-06 1.2168e-06 1.21677e-06 1.21673e-06 1.2167e-06 1.21666e-06 1.21663e-06 1.21659e-06 1.21655e-06 1.21652e-06 1.21648e-06 1.21644e-06 1.2164e-06 1.21636e-06 1.21633e-06 1.21629e-06 1.21625e-06 1.21621e-06 1.21617e-06 1.21613e-06 1.21609e-06 1.21605e-06 1.21602e-06 1.21598e-06 1.21594e-06 1.2159e-06 1.21586e-06 1.21582e-06 1.21578e-06 1.21574e-06 1.21569e-06 1.21565e-06 1.21561e-06 1.21557e-06 1.21552e-06 1.21548e-06 1.21543e-06 1.21539e-06 1.21534e-06 1.21529e-06 1.21524e-06 1.21519e-06 1.21513e-06 1.21507e-06 1.21501e-06 1.21494e-06 1.21488e-06 1.2148e-06 1.21471e-06 1.21464e-06 1.21454e-06 1.21447e-06 1.2144e-06 1.21435e-06 1.21923e-06 1.21908e-06 1.21893e-06 1.21878e-06 1.21863e-06 1.21848e-06 1.21833e-06 1.21817e-06 1.21802e-06 1.21786e-06 1.21771e-06 1.21755e-06 1.2174e-06 1.21724e-06 1.21708e-06 1.21693e-06 1.21677e-06 1.21661e-06 1.21645e-06 1.2163e-06 1.21614e-06 1.21598e-06 1.21582e-06 1.21566e-06 1.21551e-06 1.21535e-06 1.21519e-06 1.21503e-06 1.21487e-06 1.21472e-06 1.21456e-06 1.2144e-06 1.21424e-06 1.21408e-06 1.21392e-06 1.21376e-06 1.2136e-06 1.21344e-06 1.21328e-06 1.21312e-06 1.21296e-06 1.21279e-06 1.21263e-06 1.21247e-06 1.2123e-06 1.21214e-06 1.21197e-06 1.2118e-06 1.21163e-06 1.21145e-06 1.21127e-06 1.21109e-06 1.21091e-06 1.21071e-06 1.21052e-06 1.2103e-06 1.21009e-06 1.20989e-06 1.2097e-06 1.20953e-06 1.22199e-06 1.22172e-06 1.22145e-06 1.22117e-06 1.2209e-06 1.22063e-06 1.22035e-06 1.22008e-06 1.2198e-06 1.21952e-06 1.21925e-06 1.21897e-06 1.21869e-06 1.21841e-06 1.21813e-06 1.21785e-06 1.21757e-06 1.21729e-06 1.21702e-06 1.21674e-06 1.21646e-06 1.21618e-06 1.2159e-06 1.21562e-06 1.21534e-06 1.21506e-06 1.21478e-06 1.2145e-06 1.21422e-06 1.21394e-06 1.21366e-06 1.21338e-06 1.2131e-06 1.21283e-06 1.21255e-06 1.21227e-06 1.21198e-06 1.2117e-06 1.21142e-06 1.21114e-06 1.21086e-06 1.21058e-06 1.2103e-06 1.21001e-06 1.20973e-06 1.20944e-06 1.20916e-06 1.20887e-06 1.20858e-06 1.20829e-06 1.208e-06 1.2077e-06 1.20739e-06 1.20708e-06 1.20676e-06 1.20643e-06 1.2061e-06 1.20577e-06 1.20545e-06 1.20516e-06 1.2251e-06 1.22471e-06 1.22432e-06 1.22393e-06 1.22354e-06 1.22314e-06 1.22275e-06 1.22235e-06 1.22196e-06 1.22156e-06 1.22116e-06 1.22076e-06 1.22037e-06 1.21997e-06 1.21957e-06 1.21917e-06 1.21878e-06 1.21838e-06 1.21798e-06 1.21758e-06 1.21718e-06 1.21679e-06 1.21639e-06 1.21599e-06 1.21559e-06 1.21519e-06 1.21479e-06 1.2144e-06 1.214e-06 1.2136e-06 1.2132e-06 1.2128e-06 1.2124e-06 1.21201e-06 1.21161e-06 1.21121e-06 1.21081e-06 1.21041e-06 1.21001e-06 1.20961e-06 1.20921e-06 1.20881e-06 1.20841e-06 1.20801e-06 1.20761e-06 1.20721e-06 1.2068e-06 1.2064e-06 1.206e-06 1.20559e-06 1.20518e-06 1.20477e-06 1.20435e-06 1.20393e-06 1.20349e-06 1.20305e-06 1.2026e-06 1.20213e-06 1.20168e-06 1.20127e-06 1.22834e-06 1.22784e-06 1.22734e-06 1.22683e-06 1.22632e-06 1.22582e-06 1.22531e-06 1.2248e-06 1.22429e-06 1.22378e-06 1.22328e-06 1.22277e-06 1.22226e-06 1.22175e-06 1.22124e-06 1.22072e-06 1.22021e-06 1.2197e-06 1.21919e-06 1.21868e-06 1.21817e-06 1.21766e-06 1.21715e-06 1.21664e-06 1.21613e-06 1.21562e-06 1.21511e-06 1.2146e-06 1.21409e-06 1.21358e-06 1.21307e-06 1.21256e-06 1.21206e-06 1.21155e-06 1.21104e-06 1.21053e-06 1.21002e-06 1.20951e-06 1.209e-06 1.20848e-06 1.20797e-06 1.20746e-06 1.20695e-06 1.20644e-06 1.20593e-06 1.20542e-06 1.20491e-06 1.20439e-06 1.20388e-06 1.20337e-06 1.20285e-06 1.20233e-06 1.20181e-06 1.20128e-06 1.20075e-06 1.2002e-06 1.19964e-06 1.19906e-06 1.19848e-06 1.19796e-06 1.23156e-06 1.23096e-06 1.23035e-06 1.22975e-06 1.22914e-06 1.22853e-06 1.22792e-06 1.22731e-06 1.2267e-06 1.22609e-06 1.22548e-06 1.22487e-06 1.22425e-06 1.22364e-06 1.22303e-06 1.22242e-06 1.22181e-06 1.22119e-06 1.22058e-06 1.21997e-06 1.21936e-06 1.21875e-06 1.21814e-06 1.21752e-06 1.21691e-06 1.2163e-06 1.21569e-06 1.21508e-06 1.21447e-06 1.21386e-06 1.21325e-06 1.21263e-06 1.21202e-06 1.21141e-06 1.2108e-06 1.21019e-06 1.20958e-06 1.20897e-06 1.20836e-06 1.20774e-06 1.20713e-06 1.20652e-06 1.20591e-06 1.2053e-06 1.20469e-06 1.20407e-06 1.20346e-06 1.20285e-06 1.20224e-06 1.20162e-06 1.20101e-06 1.20039e-06 1.19978e-06 1.19916e-06 1.19854e-06 1.1979e-06 1.19725e-06 1.19657e-06 1.19587e-06 1.19522e-06 1.23386e-06 1.23317e-06 1.23248e-06 1.23179e-06 1.23109e-06 1.23039e-06 1.22969e-06 1.22898e-06 1.22828e-06 1.22757e-06 1.22685e-06 1.22614e-06 1.22543e-06 1.22471e-06 1.22399e-06 1.22327e-06 1.22255e-06 1.22182e-06 1.2211e-06 1.22037e-06 1.21965e-06 1.21892e-06 1.21819e-06 1.21747e-06 1.21674e-06 1.21601e-06 1.21528e-06 1.21455e-06 1.21382e-06 1.21309e-06 1.21236e-06 1.21163e-06 1.21091e-06 1.21018e-06 1.20945e-06 1.20872e-06 1.20798e-06 1.20725e-06 1.20652e-06 1.20579e-06 1.20506e-06 1.20433e-06 1.2036e-06 1.20287e-06 1.20214e-06 1.2014e-06 1.20067e-06 1.19994e-06 1.1992e-06 1.19847e-06 1.19773e-06 1.197e-06 1.19626e-06 1.19552e-06 1.19478e-06 1.19404e-06 1.19329e-06 1.19253e-06 1.19168e-06 1.19085e-06 1.1989e-06 1.27321e-06 1.35211e-06 1.43591e-06 1.52491e-06 1.61942e-06 1.7198e-06 1.82639e-06 1.9396e-06 2.05983e-06 2.1875e-06 2.3231e-06 2.4671e-06 2.62002e-06 2.78243e-06 2.9549e-06 3.13805e-06 3.33257e-06 3.53914e-06 3.7585e-06 3.99144e-06 4.23882e-06 4.50152e-06 4.7805e-06 5.07676e-06 5.39139e-06 5.7255e-06 6.0803e-06 6.45708e-06 6.85721e-06 7.28212e-06 7.73337e-06 8.21257e-06 8.72146e-06 9.26189e-06 9.8358e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19891e-06 1.27321e-06 1.35212e-06 1.43592e-06 1.52492e-06 1.61943e-06 1.7198e-06 1.8264e-06 1.93961e-06 2.05983e-06 2.18751e-06 2.3231e-06 2.4671e-06 2.62003e-06 2.78243e-06 2.9549e-06 3.13807e-06 3.33258e-06 3.53912e-06 3.75849e-06 3.99145e-06 4.23881e-06 4.50152e-06 4.78051e-06 5.07677e-06 5.39138e-06 5.72548e-06 6.08029e-06 6.45708e-06 6.85721e-06 7.28213e-06 7.73337e-06 8.21258e-06 8.72147e-06 9.26189e-06 9.83579e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19891e-06 1.27322e-06 1.35212e-06 1.43593e-06 1.52492e-06 1.61943e-06 1.71981e-06 1.82641e-06 1.93961e-06 2.05984e-06 2.18751e-06 2.32311e-06 2.46711e-06 2.62003e-06 2.78244e-06 2.95491e-06 3.13807e-06 3.33258e-06 3.53915e-06 3.7585e-06 3.99144e-06 4.23884e-06 4.50155e-06 4.78052e-06 5.07678e-06 5.3914e-06 5.72551e-06 6.08031e-06 6.45709e-06 6.85722e-06 7.28213e-06 7.73338e-06 8.21258e-06 8.72147e-06 9.26189e-06 9.8358e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19892e-06 1.27322e-06 1.35213e-06 1.43593e-06 1.52493e-06 1.61944e-06 1.71981e-06 1.82641e-06 1.93962e-06 2.05984e-06 2.18752e-06 2.32311e-06 2.46712e-06 2.62004e-06 2.78245e-06 2.95492e-06 3.13808e-06 3.33259e-06 3.53915e-06 3.75851e-06 3.99147e-06 4.23883e-06 4.50152e-06 4.78051e-06 5.07678e-06 5.3914e-06 5.7255e-06 6.08031e-06 6.4571e-06 6.85723e-06 7.28214e-06 7.73338e-06 8.21258e-06 8.72147e-06 9.26189e-06 9.8358e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19893e-06 1.27323e-06 1.35214e-06 1.43594e-06 1.52493e-06 1.61945e-06 1.71982e-06 1.82642e-06 1.93962e-06 2.05985e-06 2.18753e-06 2.32312e-06 2.46712e-06 2.62005e-06 2.78245e-06 2.95492e-06 3.13808e-06 3.33259e-06 3.53916e-06 3.75851e-06 3.99145e-06 4.23885e-06 4.50157e-06 4.78055e-06 5.0768e-06 5.39142e-06 5.72553e-06 6.08032e-06 6.4571e-06 6.85723e-06 7.28214e-06 7.73339e-06 8.21259e-06 8.72148e-06 9.2619e-06 9.83581e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19893e-06 1.27324e-06 1.35214e-06 1.43594e-06 1.52494e-06 1.61945e-06 1.71983e-06 1.82642e-06 1.93963e-06 2.05986e-06 2.18753e-06 2.32313e-06 2.46713e-06 2.62005e-06 2.78246e-06 2.95493e-06 3.13809e-06 3.33261e-06 3.53917e-06 3.75853e-06 3.99148e-06 4.23885e-06 4.50154e-06 4.78052e-06 5.07679e-06 5.39141e-06 5.72551e-06 6.08033e-06 6.45711e-06 6.85724e-06 7.28215e-06 7.73339e-06 8.21259e-06 8.72148e-06 9.2619e-06 9.8358e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19894e-06 1.27324e-06 1.35215e-06 1.43595e-06 1.52495e-06 1.61946e-06 1.71983e-06 1.82643e-06 1.93964e-06 2.05986e-06 2.18754e-06 2.32314e-06 2.46714e-06 2.62006e-06 2.78247e-06 2.95494e-06 3.1381e-06 3.3326e-06 3.53916e-06 3.75852e-06 3.99147e-06 4.23886e-06 4.50157e-06 4.78056e-06 5.07682e-06 5.39143e-06 5.72554e-06 6.08033e-06 6.45711e-06 6.85724e-06 7.28216e-06 7.7334e-06 8.2126e-06 8.72148e-06 9.26191e-06 9.83581e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19895e-06 1.27325e-06 1.35216e-06 1.43596e-06 1.52495e-06 1.61947e-06 1.71984e-06 1.82644e-06 1.93964e-06 2.05987e-06 2.18755e-06 2.32314e-06 2.46714e-06 2.62007e-06 2.78248e-06 2.95495e-06 3.13811e-06 3.33263e-06 3.53919e-06 3.75855e-06 3.9915e-06 4.23888e-06 4.50157e-06 4.78055e-06 5.07681e-06 5.39142e-06 5.72553e-06 6.08034e-06 6.45713e-06 6.85725e-06 7.28216e-06 7.7334e-06 8.2126e-06 8.72149e-06 9.26191e-06 9.83581e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19895e-06 1.27326e-06 1.35217e-06 1.43597e-06 1.52496e-06 1.61948e-06 1.71985e-06 1.82645e-06 1.93965e-06 2.05988e-06 2.18756e-06 2.32315e-06 2.46715e-06 2.62008e-06 2.78248e-06 2.95495e-06 3.13811e-06 3.33261e-06 3.53917e-06 3.75854e-06 3.99149e-06 4.23886e-06 4.50157e-06 4.78056e-06 5.07682e-06 5.39144e-06 5.72555e-06 6.08034e-06 6.45712e-06 6.85725e-06 7.28217e-06 7.7334e-06 8.2126e-06 8.72149e-06 9.26191e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19896e-06 1.27326e-06 1.35217e-06 1.43597e-06 1.52497e-06 1.61948e-06 1.71986e-06 1.82645e-06 1.93966e-06 2.05989e-06 2.18756e-06 2.32316e-06 2.46716e-06 2.62009e-06 2.78249e-06 2.95496e-06 3.13812e-06 3.33264e-06 3.53921e-06 3.75856e-06 3.9915e-06 4.23889e-06 4.5016e-06 4.78057e-06 5.07683e-06 5.39144e-06 5.72555e-06 6.08036e-06 6.45714e-06 6.85726e-06 7.28217e-06 7.73341e-06 8.21261e-06 8.72149e-06 9.26191e-06 9.83581e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19897e-06 1.27327e-06 1.35218e-06 1.43598e-06 1.52498e-06 1.61949e-06 1.71987e-06 1.82646e-06 1.93967e-06 2.05989e-06 2.18757e-06 2.32317e-06 2.46717e-06 2.62009e-06 2.7825e-06 2.95497e-06 3.13813e-06 3.33263e-06 3.53918e-06 3.75856e-06 3.99152e-06 4.23888e-06 4.50158e-06 4.78056e-06 5.07683e-06 5.39145e-06 5.72556e-06 6.08035e-06 6.45713e-06 6.85726e-06 7.28217e-06 7.73341e-06 8.21261e-06 8.7215e-06 9.26192e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19898e-06 1.27328e-06 1.35219e-06 1.43599e-06 1.52499e-06 1.6195e-06 1.71988e-06 1.82647e-06 1.93968e-06 2.0599e-06 2.18758e-06 2.32318e-06 2.46718e-06 2.6201e-06 2.78251e-06 2.95498e-06 3.13814e-06 3.33266e-06 3.53923e-06 3.75857e-06 3.9915e-06 4.2389e-06 4.50162e-06 4.78059e-06 5.07684e-06 5.39145e-06 5.72556e-06 6.08037e-06 6.45715e-06 6.85726e-06 7.28218e-06 7.73341e-06 8.21261e-06 8.7215e-06 9.26192e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19899e-06 1.27329e-06 1.3522e-06 1.436e-06 1.525e-06 1.61951e-06 1.71988e-06 1.82648e-06 1.93969e-06 2.05991e-06 2.18759e-06 2.32319e-06 2.46719e-06 2.62011e-06 2.78252e-06 2.95499e-06 3.13815e-06 3.33265e-06 3.5392e-06 3.75858e-06 3.99155e-06 4.23891e-06 4.5016e-06 4.78058e-06 5.07685e-06 5.39146e-06 5.72556e-06 6.08035e-06 6.45714e-06 6.85727e-06 7.28218e-06 7.73342e-06 8.21261e-06 8.7215e-06 9.26192e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19899e-06 1.2733e-06 1.35221e-06 1.43601e-06 1.52501e-06 1.61952e-06 1.71989e-06 1.82649e-06 1.9397e-06 2.05992e-06 2.1876e-06 2.32319e-06 2.46719e-06 2.62012e-06 2.78253e-06 2.955e-06 3.13815e-06 3.33267e-06 3.53924e-06 3.75858e-06 3.99151e-06 4.2389e-06 4.50162e-06 4.78059e-06 5.07685e-06 5.39147e-06 5.72557e-06 6.08038e-06 6.45716e-06 6.85727e-06 7.28218e-06 7.73342e-06 8.21262e-06 8.7215e-06 9.26192e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.199e-06 1.27331e-06 1.35222e-06 1.43602e-06 1.52502e-06 1.61953e-06 1.7199e-06 1.8265e-06 1.93971e-06 2.05993e-06 2.18761e-06 2.3232e-06 2.4672e-06 2.62013e-06 2.78253e-06 2.955e-06 3.13817e-06 3.33267e-06 3.53923e-06 3.7586e-06 3.99156e-06 4.23893e-06 4.50163e-06 4.7806e-06 5.07686e-06 5.39147e-06 5.72557e-06 6.08036e-06 6.45715e-06 6.85727e-06 7.28219e-06 7.73342e-06 8.21262e-06 8.7215e-06 9.26192e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19901e-06 1.27332e-06 1.35223e-06 1.43603e-06 1.52503e-06 1.61954e-06 1.71991e-06 1.82651e-06 1.93972e-06 2.05994e-06 2.18762e-06 2.32321e-06 2.46721e-06 2.62014e-06 2.78255e-06 2.95502e-06 3.13817e-06 3.33268e-06 3.53925e-06 3.7586e-06 3.99154e-06 4.23891e-06 4.50161e-06 4.78059e-06 5.07686e-06 5.39148e-06 5.72559e-06 6.08039e-06 6.45716e-06 6.85728e-06 7.28219e-06 7.73342e-06 8.21262e-06 8.7215e-06 9.26192e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.19902e-06 1.27333e-06 1.35224e-06 1.43604e-06 1.52503e-06 1.61955e-06 1.71992e-06 1.82652e-06 1.93973e-06 2.05995e-06 2.18763e-06 2.32322e-06 2.46722e-06 2.62015e-06 2.78255e-06 2.95502e-06 3.13818e-06 3.33269e-06 3.53925e-06 3.75861e-06 3.99156e-06 4.23894e-06 4.50165e-06 4.78062e-06 5.07687e-06 5.39148e-06 5.72557e-06 6.08037e-06 6.45716e-06 6.85728e-06 7.28219e-06 7.73343e-06 8.21262e-06 8.72151e-06 9.26193e-06 9.83582e-06 1.04453e-05 1.10925e-05 1.17799e-05 1.25098e-05 1.3285e-05 1.41083e-05 1.49825e-05 1.5911e-05 1.68969e-05 1.7944e-05 1.90559e-05 2.02368e-05 2.14908e-05 2.28225e-05 1.34388e-06 1.34386e-06 1.34385e-06 1.34382e-06 1.3438e-06 1.34378e-06 1.34375e-06 1.34371e-06 1.34365e-06 1.34362e-06 1.34362e-06 1.34366e-06 1.34371e-06 1.34375e-06 1.34377e-06 1.34378e-06 1.34377e-06 1.34377e-06 1.34376e-06 1.34375e-06 1.34373e-06 1.3437e-06 1.34368e-06 1.34365e-06 1.34388e-06 1.34386e-06 1.34385e-06 1.34383e-06 1.3438e-06 1.34377e-06 1.34374e-06 1.3437e-06 1.34365e-06 1.3436e-06 1.3436e-06 1.34363e-06 1.34369e-06 1.34373e-06 1.34375e-06 1.34376e-06 1.34376e-06 1.34375e-06 1.34374e-06 1.34373e-06 1.34371e-06 1.34369e-06 1.34366e-06 1.34363e-06 1.34389e-06 1.34386e-06 1.34385e-06 1.34383e-06 1.3438e-06 1.34377e-06 1.34374e-06 1.34369e-06 1.34363e-06 1.34359e-06 1.34358e-06 1.34361e-06 1.34366e-06 1.34371e-06 1.34374e-06 1.34374e-06 1.34374e-06 1.34373e-06 1.34372e-06 1.34371e-06 1.34369e-06 1.34366e-06 1.34364e-06 1.34361e-06 1.34389e-06 1.34387e-06 1.34384e-06 1.34383e-06 1.34381e-06 1.34377e-06 1.34373e-06 1.34367e-06 1.34362e-06 1.34357e-06 1.34356e-06 1.34359e-06 1.34364e-06 1.34369e-06 1.34372e-06 1.34373e-06 1.34372e-06 1.34371e-06 1.3437e-06 1.34369e-06 1.34367e-06 1.34364e-06 1.34362e-06 1.34359e-06 1.34389e-06 1.34387e-06 1.34384e-06 1.34383e-06 1.34381e-06 1.34377e-06 1.34372e-06 1.34366e-06 1.3436e-06 1.34355e-06 1.34354e-06 1.34357e-06 1.34362e-06 1.34366e-06 1.34369e-06 1.34371e-06 1.3437e-06 1.34369e-06 1.34368e-06 1.34366e-06 1.34364e-06 1.34362e-06 1.34359e-06 1.34356e-06 1.3439e-06 1.34387e-06 1.34384e-06 1.34383e-06 1.34381e-06 1.34377e-06 1.3437e-06 1.34364e-06 1.34358e-06 1.34353e-06 1.34351e-06 1.34354e-06 1.34359e-06 1.34364e-06 1.34367e-06 1.34368e-06 1.34368e-06 1.34367e-06 1.34366e-06 1.34364e-06 1.34362e-06 1.34359e-06 1.34356e-06 1.34353e-06 1.3439e-06 1.34386e-06 1.34383e-06 1.34382e-06 1.34381e-06 1.34376e-06 1.34369e-06 1.34362e-06 1.34355e-06 1.3435e-06 1.34349e-06 1.34352e-06 1.34357e-06 1.34362e-06 1.34365e-06 1.34366e-06 1.34366e-06 1.34364e-06 1.34363e-06 1.34361e-06 1.34359e-06 1.34356e-06 1.34353e-06 1.3435e-06 1.3439e-06 1.34386e-06 1.34382e-06 1.34382e-06 1.34381e-06 1.34376e-06 1.34368e-06 1.3436e-06 1.34353e-06 1.34348e-06 1.34346e-06 1.34349e-06 1.34354e-06 1.34359e-06 1.34363e-06 1.34364e-06 1.34363e-06 1.34362e-06 1.3436e-06 1.34358e-06 1.34356e-06 1.34353e-06 1.3435e-06 1.34347e-06 1.3439e-06 1.34386e-06 1.34382e-06 1.34381e-06 1.34381e-06 1.34376e-06 1.34367e-06 1.34358e-06 1.3435e-06 1.34344e-06 1.34343e-06 1.34346e-06 1.34352e-06 1.34357e-06 1.3436e-06 1.34361e-06 1.3436e-06 1.34359e-06 1.34357e-06 1.34355e-06 1.34352e-06 1.34349e-06 1.34347e-06 1.34343e-06 1.3439e-06 1.34385e-06 1.34381e-06 1.3438e-06 1.34381e-06 1.34376e-06 1.34366e-06 1.34355e-06 1.34347e-06 1.34341e-06 1.3434e-06 1.34343e-06 1.34349e-06 1.34354e-06 1.34357e-06 1.34358e-06 1.34357e-06 1.34356e-06 1.34354e-06 1.34351e-06 1.34349e-06 1.34346e-06 1.34343e-06 1.3434e-06 1.3439e-06 1.34385e-06 1.3438e-06 1.3438e-06 1.34381e-06 1.34375e-06 1.34364e-06 1.34353e-06 1.34344e-06 1.34338e-06 1.34337e-06 1.34341e-06 1.34346e-06 1.34351e-06 1.34354e-06 1.34355e-06 1.34354e-06 1.34352e-06 1.3435e-06 1.34348e-06 1.34345e-06 1.34342e-06 1.34339e-06 1.34336e-06 1.34389e-06 1.34384e-06 1.34379e-06 1.34379e-06 1.34381e-06 1.34375e-06 1.34362e-06 1.3435e-06 1.34341e-06 1.34335e-06 1.34334e-06 1.34337e-06 1.34343e-06 1.34348e-06 1.34351e-06 1.34352e-06 1.34351e-06 1.34349e-06 1.34346e-06 1.34344e-06 1.34341e-06 1.34338e-06 1.34335e-06 1.34332e-06 1.34389e-06 1.34383e-06 1.34378e-06 1.34379e-06 1.3438e-06 1.34374e-06 1.3436e-06 1.34347e-06 1.34337e-06 1.34332e-06 1.34331e-06 1.34334e-06 1.3434e-06 1.34345e-06 1.34348e-06 1.34349e-06 1.34347e-06 1.34345e-06 1.34343e-06 1.3434e-06 1.34337e-06 1.34334e-06 1.3433e-06 1.34327e-06 1.34388e-06 1.34383e-06 1.34377e-06 1.34378e-06 1.3438e-06 1.34373e-06 1.34358e-06 1.34344e-06 1.34334e-06 1.34328e-06 1.34327e-06 1.34331e-06 1.34336e-06 1.34341e-06 1.34345e-06 1.34345e-06 1.34344e-06 1.34341e-06 1.34338e-06 1.34336e-06 1.34332e-06 1.34329e-06 1.34326e-06 1.34322e-06 1.34388e-06 1.34382e-06 1.34376e-06 1.34377e-06 1.34379e-06 1.34371e-06 1.34356e-06 1.34341e-06 1.34331e-06 1.34325e-06 1.34324e-06 1.34327e-06 1.34333e-06 1.34338e-06 1.34341e-06 1.34342e-06 1.3434e-06 1.34337e-06 1.34334e-06 1.34331e-06 1.34328e-06 1.34325e-06 1.34321e-06 1.34318e-06 1.34387e-06 1.34381e-06 1.34375e-06 1.34376e-06 1.34378e-06 1.3437e-06 1.34354e-06 1.34338e-06 1.34327e-06 1.34321e-06 1.3432e-06 1.34323e-06 1.34329e-06 1.34334e-06 1.34337e-06 1.34338e-06 1.34336e-06 1.34333e-06 1.3433e-06 1.34327e-06 1.34323e-06 1.3432e-06 1.34316e-06 1.34312e-06 1.34386e-06 1.3438e-06 1.34374e-06 1.34374e-06 1.34377e-06 1.34369e-06 1.34352e-06 1.34336e-06 1.34324e-06 1.34317e-06 1.34316e-06 1.34319e-06 1.34325e-06 1.3433e-06 1.34334e-06 1.34334e-06 1.34332e-06 1.34329e-06 1.34325e-06 1.34322e-06 1.34318e-06 1.34315e-06 1.34311e-06 1.34307e-06 1.34386e-06 1.34379e-06 1.34372e-06 1.34373e-06 1.34375e-06 1.34367e-06 1.3435e-06 1.34333e-06 1.3432e-06 1.34313e-06 1.34312e-06 1.34315e-06 1.34321e-06 1.34326e-06 1.34329e-06 1.3433e-06 1.34327e-06 1.34324e-06 1.3432e-06 1.34317e-06 1.34313e-06 1.34309e-06 1.34305e-06 1.34302e-06 1.34385e-06 1.34378e-06 1.34371e-06 1.34372e-06 1.34374e-06 1.34366e-06 1.34348e-06 1.3433e-06 1.34317e-06 1.34309e-06 1.34307e-06 1.3431e-06 1.34316e-06 1.34322e-06 1.34325e-06 1.34325e-06 1.34323e-06 1.34319e-06 1.34316e-06 1.34312e-06 1.34308e-06 1.34304e-06 1.343e-06 1.34296e-06 1.34384e-06 1.34377e-06 1.34369e-06 1.3437e-06 1.34373e-06 1.34364e-06 1.34346e-06 1.34327e-06 1.34313e-06 1.34305e-06 1.34303e-06 1.34306e-06 1.34312e-06 1.34318e-06 1.34321e-06 1.34321e-06 1.34318e-06 1.34315e-06 1.34311e-06 1.34307e-06 1.34302e-06 1.34298e-06 1.34294e-06 1.3429e-06 1.34383e-06 1.34375e-06 1.34368e-06 1.34369e-06 1.34371e-06 1.34363e-06 1.34343e-06 1.34324e-06 1.34309e-06 1.343e-06 1.34298e-06 1.34301e-06 1.34307e-06 1.34313e-06 1.34316e-06 1.34316e-06 1.34314e-06 1.3431e-06 1.34306e-06 1.34301e-06 1.34297e-06 1.34292e-06 1.34288e-06 1.34284e-06 1.34381e-06 1.34374e-06 1.34366e-06 1.34367e-06 1.3437e-06 1.34361e-06 1.34341e-06 1.34321e-06 1.34305e-06 1.34296e-06 1.34293e-06 1.34296e-06 1.34302e-06 1.34308e-06 1.34312e-06 1.34311e-06 1.34309e-06 1.34305e-06 1.343e-06 1.34296e-06 1.34291e-06 1.34286e-06 1.34282e-06 1.34277e-06 1.3438e-06 1.34373e-06 1.34364e-06 1.34365e-06 1.34368e-06 1.34359e-06 1.34339e-06 1.34318e-06 1.34302e-06 1.34291e-06 1.34288e-06 1.34291e-06 1.34297e-06 1.34303e-06 1.34307e-06 1.34307e-06 1.34304e-06 1.343e-06 1.34295e-06 1.3429e-06 1.34285e-06 1.3428e-06 1.34275e-06 1.34271e-06 1.34379e-06 1.34371e-06 1.34363e-06 1.34364e-06 1.34366e-06 1.34357e-06 1.34336e-06 1.34315e-06 1.34298e-06 1.34287e-06 1.34283e-06 1.34285e-06 1.34292e-06 1.34298e-06 1.34302e-06 1.34302e-06 1.34299e-06 1.34294e-06 1.34289e-06 1.34284e-06 1.34279e-06 1.34274e-06 1.34269e-06 1.34264e-06 1.34378e-06 1.3437e-06 1.34361e-06 1.34362e-06 1.34364e-06 1.34355e-06 1.34334e-06 1.34312e-06 1.34294e-06 1.34282e-06 1.34277e-06 1.3428e-06 1.34286e-06 1.34293e-06 1.34297e-06 1.34297e-06 1.34294e-06 1.34289e-06 1.34284e-06 1.34278e-06 1.34273e-06 1.34267e-06 1.34262e-06 1.34257e-06 1.34376e-06 1.34368e-06 1.34359e-06 1.3436e-06 1.34362e-06 1.34352e-06 1.34331e-06 1.34309e-06 1.3429e-06 1.34277e-06 1.34272e-06 1.34274e-06 1.34281e-06 1.34288e-06 1.34291e-06 1.34291e-06 1.34288e-06 1.34283e-06 1.34278e-06 1.34272e-06 1.34267e-06 1.34261e-06 1.34255e-06 1.3425e-06 1.34375e-06 1.34367e-06 1.34357e-06 1.34358e-06 1.3436e-06 1.3435e-06 1.34329e-06 1.34306e-06 1.34286e-06 1.34272e-06 1.34266e-06 1.34268e-06 1.34275e-06 1.34282e-06 1.34286e-06 1.34286e-06 1.34283e-06 1.34278e-06 1.34272e-06 1.34266e-06 1.3426e-06 1.34254e-06 1.34249e-06 1.34243e-06 1.34373e-06 1.34365e-06 1.34356e-06 1.34356e-06 1.34358e-06 1.34348e-06 1.34326e-06 1.34303e-06 1.34282e-06 1.34267e-06 1.3426e-06 1.34262e-06 1.34269e-06 1.34277e-06 1.34281e-06 1.34281e-06 1.34277e-06 1.34272e-06 1.34266e-06 1.3426e-06 1.34254e-06 1.34248e-06 1.34242e-06 1.34236e-06 1.34372e-06 1.34363e-06 1.34354e-06 1.34354e-06 1.34355e-06 1.34345e-06 1.34324e-06 1.343e-06 1.34279e-06 1.34262e-06 1.34255e-06 1.34256e-06 1.34263e-06 1.34271e-06 1.34275e-06 1.34275e-06 1.34272e-06 1.34266e-06 1.3426e-06 1.34254e-06 1.34248e-06 1.34241e-06 1.34235e-06 1.34229e-06 1.3437e-06 1.34361e-06 1.34352e-06 1.34351e-06 1.34353e-06 1.34343e-06 1.34322e-06 1.34298e-06 1.34275e-06 1.34257e-06 1.34249e-06 1.3425e-06 1.34257e-06 1.34265e-06 1.3427e-06 1.3427e-06 1.34266e-06 1.34261e-06 1.34254e-06 1.34248e-06 1.34241e-06 1.34234e-06 1.34228e-06 1.34221e-06 1.34368e-06 1.34359e-06 1.3435e-06 1.34349e-06 1.3435e-06 1.3434e-06 1.34319e-06 1.34295e-06 1.34271e-06 1.34253e-06 1.34243e-06 1.34244e-06 1.34251e-06 1.34259e-06 1.34264e-06 1.34264e-06 1.3426e-06 1.34255e-06 1.34248e-06 1.34242e-06 1.34235e-06 1.34227e-06 1.3422e-06 1.34213e-06 1.34366e-06 1.34358e-06 1.34348e-06 1.34347e-06 1.34347e-06 1.34337e-06 1.34317e-06 1.34292e-06 1.34268e-06 1.34248e-06 1.34237e-06 1.34238e-06 1.34245e-06 1.34253e-06 1.34258e-06 1.34258e-06 1.34255e-06 1.34249e-06 1.34242e-06 1.34235e-06 1.34228e-06 1.3422e-06 1.34213e-06 1.34206e-06 1.34364e-06 1.34355e-06 1.34346e-06 1.34344e-06 1.34344e-06 1.34334e-06 1.34314e-06 1.3429e-06 1.34265e-06 1.34243e-06 1.34232e-06 1.34232e-06 1.34239e-06 1.34248e-06 1.34253e-06 1.34253e-06 1.34249e-06 1.34243e-06 1.34236e-06 1.34229e-06 1.34221e-06 1.34213e-06 1.34206e-06 1.34198e-06 1.34362e-06 1.34353e-06 1.34344e-06 1.34342e-06 1.34341e-06 1.34331e-06 1.34312e-06 1.34288e-06 1.34261e-06 1.34238e-06 1.34226e-06 1.34225e-06 1.34233e-06 1.34242e-06 1.34247e-06 1.34247e-06 1.34243e-06 1.34237e-06 1.3423e-06 1.34222e-06 1.34214e-06 1.34206e-06 1.34198e-06 1.3419e-06 1.3436e-06 1.34351e-06 1.34342e-06 1.34339e-06 1.34338e-06 1.34328e-06 1.34309e-06 1.34285e-06 1.34258e-06 1.34234e-06 1.3422e-06 1.34219e-06 1.34227e-06 1.34236e-06 1.34241e-06 1.34241e-06 1.34237e-06 1.34231e-06 1.34224e-06 1.34216e-06 1.34208e-06 1.34199e-06 1.34191e-06 1.34182e-06 1.34358e-06 1.34349e-06 1.34339e-06 1.34337e-06 1.34335e-06 1.34325e-06 1.34307e-06 1.34283e-06 1.34255e-06 1.34229e-06 1.34214e-06 1.34213e-06 1.3422e-06 1.3423e-06 1.34236e-06 1.34236e-06 1.34232e-06 1.34225e-06 1.34217e-06 1.34209e-06 1.34201e-06 1.34192e-06 1.34183e-06 1.34174e-06 1.34355e-06 1.34346e-06 1.34337e-06 1.34334e-06 1.34331e-06 1.34322e-06 1.34304e-06 1.3428e-06 1.34251e-06 1.34224e-06 1.34208e-06 1.34206e-06 1.34214e-06 1.34224e-06 1.3423e-06 1.34231e-06 1.34226e-06 1.34219e-06 1.34211e-06 1.34203e-06 1.34194e-06 1.34185e-06 1.34176e-06 1.34166e-06 1.34353e-06 1.34344e-06 1.34335e-06 1.34331e-06 1.34328e-06 1.34318e-06 1.34302e-06 1.34278e-06 1.34248e-06 1.34219e-06 1.34202e-06 1.342e-06 1.34208e-06 1.34218e-06 1.34225e-06 1.34225e-06 1.34221e-06 1.34214e-06 1.34205e-06 1.34197e-06 1.34188e-06 1.34178e-06 1.34168e-06 1.34159e-06 1.3435e-06 1.34341e-06 1.34332e-06 1.34328e-06 1.34324e-06 1.34315e-06 1.34299e-06 1.34276e-06 1.34245e-06 1.34214e-06 1.34196e-06 1.34193e-06 1.34201e-06 1.34212e-06 1.34219e-06 1.3422e-06 1.34215e-06 1.34208e-06 1.342e-06 1.34191e-06 1.34181e-06 1.34171e-06 1.34161e-06 1.34151e-06 1.34348e-06 1.34339e-06 1.3433e-06 1.34325e-06 1.34321e-06 1.34312e-06 1.34297e-06 1.34274e-06 1.34242e-06 1.3421e-06 1.34189e-06 1.34186e-06 1.34195e-06 1.34206e-06 1.34213e-06 1.34214e-06 1.3421e-06 1.34203e-06 1.34194e-06 1.34185e-06 1.34175e-06 1.34164e-06 1.34153e-06 1.34143e-06 1.34346e-06 1.34337e-06 1.34328e-06 1.34323e-06 1.34317e-06 1.34308e-06 1.34294e-06 1.34272e-06 1.34239e-06 1.34205e-06 1.34183e-06 1.34179e-06 1.34188e-06 1.342e-06 1.34208e-06 1.34209e-06 1.34205e-06 1.34197e-06 1.34188e-06 1.34179e-06 1.34168e-06 1.34158e-06 1.34146e-06 1.34135e-06 1.34343e-06 1.34335e-06 1.34327e-06 1.34321e-06 1.34314e-06 1.34305e-06 1.34292e-06 1.3427e-06 1.34236e-06 1.342e-06 1.34177e-06 1.34173e-06 1.34181e-06 1.34193e-06 1.34202e-06 1.34203e-06 1.34199e-06 1.34192e-06 1.34183e-06 1.34173e-06 1.34162e-06 1.34151e-06 1.34139e-06 1.34128e-06 1.3434e-06 1.34332e-06 1.34325e-06 1.34319e-06 1.34312e-06 1.34302e-06 1.3429e-06 1.34268e-06 1.34233e-06 1.34196e-06 1.34171e-06 1.34166e-06 1.34174e-06 1.34187e-06 1.34196e-06 1.34198e-06 1.34194e-06 1.34187e-06 1.34178e-06 1.34168e-06 1.34157e-06 1.34145e-06 1.34133e-06 1.3412e-06 1.34336e-06 1.34329e-06 1.34322e-06 1.34316e-06 1.34309e-06 1.343e-06 1.34289e-06 1.34267e-06 1.34231e-06 1.34191e-06 1.34165e-06 1.34159e-06 1.34168e-06 1.34181e-06 1.3419e-06 1.34192e-06 1.34189e-06 1.34181e-06 1.34172e-06 1.34162e-06 1.34151e-06 1.34139e-06 1.34126e-06 1.34113e-06 1.34331e-06 1.34325e-06 1.34319e-06 1.34313e-06 1.34306e-06 1.34298e-06 1.34288e-06 1.34266e-06 1.34229e-06 1.34187e-06 1.3416e-06 1.34153e-06 1.34161e-06 1.34174e-06 1.34184e-06 1.34187e-06 1.34183e-06 1.34176e-06 1.34167e-06 1.34157e-06 1.34146e-06 1.34133e-06 1.3412e-06 1.34106e-06 1.34326e-06 1.34319e-06 1.34314e-06 1.34309e-06 1.34302e-06 1.34295e-06 1.34287e-06 1.34267e-06 1.34228e-06 1.34184e-06 1.34154e-06 1.34147e-06 1.34155e-06 1.34168e-06 1.34178e-06 1.34181e-06 1.34178e-06 1.34171e-06 1.34162e-06 1.34152e-06 1.3414e-06 1.34127e-06 1.34114e-06 1.34099e-06 1.34322e-06 1.34314e-06 1.34309e-06 1.34304e-06 1.34297e-06 1.34292e-06 1.34287e-06 1.34268e-06 1.34228e-06 1.34181e-06 1.34149e-06 1.3414e-06 1.34149e-06 1.34163e-06 1.34173e-06 1.34176e-06 1.34173e-06 1.34166e-06 1.34157e-06 1.34147e-06 1.34135e-06 1.34122e-06 1.34108e-06 1.34093e-06 1.34318e-06 1.34309e-06 1.34303e-06 1.34297e-06 1.3429e-06 1.34288e-06 1.34286e-06 1.34269e-06 1.34229e-06 1.3418e-06 1.34145e-06 1.34135e-06 1.34143e-06 1.34157e-06 1.34167e-06 1.3417e-06 1.34167e-06 1.34161e-06 1.34153e-06 1.34142e-06 1.3413e-06 1.34117e-06 1.34102e-06 1.34087e-06 1.34313e-06 1.34305e-06 1.34299e-06 1.34291e-06 1.34283e-06 1.34282e-06 1.34283e-06 1.34269e-06 1.3423e-06 1.34179e-06 1.34142e-06 1.3413e-06 1.34137e-06 1.34152e-06 1.34162e-06 1.34166e-06 1.34163e-06 1.34156e-06 1.34148e-06 1.34138e-06 1.34126e-06 1.34112e-06 1.34097e-06 1.34081e-06 1.34309e-06 1.34301e-06 1.34295e-06 1.34285e-06 1.34275e-06 1.34274e-06 1.3428e-06 1.34269e-06 1.34231e-06 1.34179e-06 1.3414e-06 1.34126e-06 1.34132e-06 1.34146e-06 1.34157e-06 1.34161e-06 1.34158e-06 1.34152e-06 1.34143e-06 1.34134e-06 1.34121e-06 1.34107e-06 1.34092e-06 1.34075e-06 1.34304e-06 1.34297e-06 1.34291e-06 1.3428e-06 1.34267e-06 1.34266e-06 1.34275e-06 1.34268e-06 1.34232e-06 1.3418e-06 1.34139e-06 1.34123e-06 1.34128e-06 1.34142e-06 1.34153e-06 1.34157e-06 1.34154e-06 1.34147e-06 1.34139e-06 1.34129e-06 1.34117e-06 1.34103e-06 1.34087e-06 1.34069e-06 1.34298e-06 1.34292e-06 1.34288e-06 1.34276e-06 1.34261e-06 1.34258e-06 1.34268e-06 1.34265e-06 1.34232e-06 1.3418e-06 1.34138e-06 1.34121e-06 1.34124e-06 1.34138e-06 1.34149e-06 1.34153e-06 1.3415e-06 1.34143e-06 1.34135e-06 1.34125e-06 1.34113e-06 1.34099e-06 1.34082e-06 1.34064e-06 1.34293e-06 1.34287e-06 1.34284e-06 1.34273e-06 1.34255e-06 1.3425e-06 1.34261e-06 1.34261e-06 1.3423e-06 1.34181e-06 1.34138e-06 1.3412e-06 1.34122e-06 1.34134e-06 1.34145e-06 1.34149e-06 1.34146e-06 1.34139e-06 1.34131e-06 1.34122e-06 1.34109e-06 1.34095e-06 1.34078e-06 1.3406e-06 1.34288e-06 1.34282e-06 1.3428e-06 1.34269e-06 1.3425e-06 1.34244e-06 1.34254e-06 1.34255e-06 1.34228e-06 1.3418e-06 1.34139e-06 1.3412e-06 1.34121e-06 1.34132e-06 1.34142e-06 1.34146e-06 1.34143e-06 1.34136e-06 1.34128e-06 1.34118e-06 1.34106e-06 1.34091e-06 1.34074e-06 1.34055e-06 1.34284e-06 1.34277e-06 1.34276e-06 1.34266e-06 1.34246e-06 1.34238e-06 1.34247e-06 1.34249e-06 1.34224e-06 1.34179e-06 1.3414e-06 1.34121e-06 1.3412e-06 1.3413e-06 1.34139e-06 1.34143e-06 1.3414e-06 1.34133e-06 1.34125e-06 1.34115e-06 1.34103e-06 1.34088e-06 1.34071e-06 1.34051e-06 1.34279e-06 1.34272e-06 1.34271e-06 1.34262e-06 1.34243e-06 1.34233e-06 1.3424e-06 1.34242e-06 1.34219e-06 1.34177e-06 1.3414e-06 1.34122e-06 1.34121e-06 1.34129e-06 1.34138e-06 1.34141e-06 1.34138e-06 1.34131e-06 1.34122e-06 1.34112e-06 1.341e-06 1.34085e-06 1.34068e-06 1.34048e-06 1.34276e-06 1.34268e-06 1.34267e-06 1.34258e-06 1.3424e-06 1.3423e-06 1.34234e-06 1.34235e-06 1.34213e-06 1.34175e-06 1.34141e-06 1.34124e-06 1.34123e-06 1.3413e-06 1.34137e-06 1.34139e-06 1.34136e-06 1.34128e-06 1.3412e-06 1.3411e-06 1.34098e-06 1.34083e-06 1.34065e-06 1.34045e-06 1.34272e-06 1.34265e-06 1.34263e-06 1.34254e-06 1.34237e-06 1.34227e-06 1.3423e-06 1.34228e-06 1.34206e-06 1.34171e-06 1.34141e-06 1.34127e-06 1.34126e-06 1.34131e-06 1.34136e-06 1.34138e-06 1.34134e-06 1.34127e-06 1.34118e-06 1.34108e-06 1.34096e-06 1.34081e-06 1.34063e-06 1.34043e-06 1.3427e-06 1.34262e-06 1.34259e-06 1.3425e-06 1.34234e-06 1.34226e-06 1.34227e-06 1.34221e-06 1.34198e-06 1.34166e-06 1.34141e-06 1.3413e-06 1.3413e-06 1.34133e-06 1.34137e-06 1.34137e-06 1.34133e-06 1.34126e-06 1.34117e-06 1.34106e-06 1.34094e-06 1.34079e-06 1.34061e-06 1.34041e-06 1.34267e-06 1.3426e-06 1.34256e-06 1.34246e-06 1.34232e-06 1.34225e-06 1.34223e-06 1.34214e-06 1.34192e-06 1.34164e-06 1.34143e-06 1.34134e-06 1.34132e-06 1.34134e-06 1.34137e-06 1.34137e-06 1.34133e-06 1.34125e-06 1.34116e-06 1.34106e-06 1.34094e-06 1.34079e-06 1.34061e-06 1.3404e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.4843e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16702e-05 1.09892e-05 1.0348e-05 9.74419e-06 9.17562e-06 8.64023e-06 8.13607e-06 7.66133e-06 7.21428e-06 6.79332e-06 6.39691e-06 6.02362e-06 5.67212e-06 5.34113e-06 5.02944e-06 4.73593e-06 4.45954e-06 4.19928e-06 3.95419e-06 3.72341e-06 3.5061e-06 3.30146e-06 3.10877e-06 2.92731e-06 2.75645e-06 2.59556e-06 2.44407e-06 2.30141e-06 2.16708e-06 2.0406e-06 1.9215e-06 1.80935e-06 1.70375e-06 1.60431e-06 1.51068e-06 1.42252e-06 1.3395e-06 1.26133e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.4843e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74419e-06 9.17562e-06 8.64022e-06 8.13606e-06 7.66132e-06 7.21428e-06 6.79331e-06 6.39691e-06 6.02363e-06 5.67212e-06 5.34111e-06 5.02941e-06 4.7359e-06 4.45953e-06 4.19927e-06 3.9542e-06 3.72342e-06 3.50609e-06 3.30145e-06 3.10876e-06 2.92731e-06 2.75645e-06 2.59556e-06 2.44406e-06 2.30141e-06 2.16708e-06 2.04059e-06 1.92149e-06 1.80934e-06 1.70374e-06 1.60431e-06 1.51068e-06 1.42251e-06 1.3395e-06 1.26132e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74418e-06 9.17561e-06 8.64022e-06 8.13606e-06 7.66132e-06 7.21427e-06 6.7933e-06 6.39689e-06 6.0236e-06 5.6721e-06 5.34111e-06 5.02943e-06 4.73593e-06 4.45953e-06 4.19926e-06 3.95417e-06 3.72339e-06 3.50609e-06 3.30145e-06 3.10875e-06 2.9273e-06 2.75644e-06 2.59555e-06 2.44405e-06 2.3014e-06 2.16707e-06 2.04059e-06 1.92149e-06 1.80934e-06 1.70374e-06 1.6043e-06 1.51067e-06 1.42251e-06 1.33949e-06 1.26132e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74418e-06 9.17561e-06 8.64021e-06 8.13605e-06 7.6613e-06 7.21426e-06 6.7933e-06 6.3969e-06 6.02361e-06 5.6721e-06 5.34109e-06 5.02939e-06 4.73588e-06 4.4595e-06 4.19926e-06 3.95419e-06 3.7234e-06 3.50608e-06 3.30144e-06 3.10875e-06 2.9273e-06 2.75643e-06 2.59555e-06 2.44405e-06 2.3014e-06 2.16707e-06 2.04058e-06 1.92148e-06 1.80934e-06 1.70373e-06 1.6043e-06 1.51067e-06 1.4225e-06 1.33949e-06 1.26131e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74417e-06 9.1756e-06 8.6402e-06 8.13605e-06 7.6613e-06 7.21425e-06 6.79328e-06 6.39687e-06 6.02358e-06 5.67208e-06 5.34109e-06 5.02941e-06 4.73591e-06 4.45952e-06 4.19924e-06 3.95415e-06 3.72338e-06 3.50607e-06 3.30144e-06 3.10874e-06 2.92729e-06 2.75643e-06 2.59554e-06 2.44405e-06 2.30139e-06 2.16707e-06 2.04058e-06 1.92148e-06 1.80933e-06 1.70373e-06 1.6043e-06 1.51066e-06 1.4225e-06 1.33948e-06 1.26131e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74417e-06 9.17559e-06 8.6402e-06 8.13604e-06 7.66129e-06 7.21424e-06 6.79328e-06 6.39688e-06 6.02359e-06 5.67208e-06 5.34108e-06 5.02938e-06 4.73587e-06 4.45948e-06 4.19924e-06 3.95417e-06 3.72338e-06 3.50606e-06 3.30143e-06 3.10873e-06 2.92728e-06 2.75643e-06 2.59554e-06 2.44404e-06 2.30139e-06 2.16706e-06 2.04058e-06 1.92148e-06 1.80933e-06 1.70373e-06 1.60429e-06 1.51066e-06 1.4225e-06 1.33948e-06 1.26131e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74416e-06 9.17559e-06 8.64019e-06 8.13603e-06 7.66129e-06 7.21423e-06 6.79326e-06 6.39685e-06 6.02357e-06 5.67207e-06 5.34107e-06 5.02938e-06 4.73588e-06 4.4595e-06 4.19922e-06 3.95414e-06 3.72337e-06 3.50606e-06 3.30142e-06 3.10873e-06 2.92728e-06 2.75642e-06 2.59553e-06 2.44404e-06 2.30138e-06 2.16706e-06 2.04057e-06 1.92147e-06 1.80933e-06 1.70372e-06 1.60429e-06 1.51066e-06 1.42249e-06 1.33947e-06 1.2613e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74415e-06 9.17558e-06 8.64018e-06 8.13602e-06 7.66127e-06 7.21422e-06 6.79326e-06 6.39686e-06 6.02357e-06 5.67206e-06 5.34106e-06 5.02938e-06 4.73586e-06 4.45947e-06 4.19923e-06 3.95415e-06 3.72336e-06 3.50605e-06 3.30142e-06 3.10872e-06 2.92728e-06 2.75642e-06 2.59553e-06 2.44403e-06 2.30138e-06 2.16706e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60429e-06 1.51065e-06 1.42249e-06 1.33947e-06 1.2613e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74415e-06 9.17557e-06 8.64018e-06 8.13601e-06 7.66127e-06 7.21422e-06 6.79324e-06 6.39683e-06 6.02355e-06 5.67205e-06 5.34105e-06 5.02935e-06 4.73585e-06 4.45947e-06 4.19921e-06 3.95414e-06 3.72337e-06 3.50605e-06 3.30141e-06 3.10872e-06 2.92727e-06 2.75641e-06 2.59553e-06 2.44403e-06 2.30138e-06 2.16705e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42249e-06 1.33947e-06 1.2613e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.0348e-05 9.74414e-06 9.17557e-06 8.64017e-06 8.136e-06 7.66126e-06 7.21421e-06 6.79324e-06 6.39683e-06 6.02355e-06 5.67204e-06 5.34104e-06 5.02936e-06 4.73585e-06 4.45947e-06 4.19921e-06 3.95412e-06 3.72334e-06 3.50604e-06 3.30141e-06 3.10872e-06 2.92727e-06 2.75641e-06 2.59553e-06 2.44403e-06 2.30138e-06 2.16705e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42249e-06 1.33947e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.03479e-05 9.74414e-06 9.17556e-06 8.64016e-06 8.136e-06 7.66125e-06 7.2142e-06 6.79322e-06 6.39681e-06 6.02353e-06 5.67203e-06 5.34103e-06 5.02933e-06 4.73582e-06 4.45944e-06 4.19919e-06 3.95413e-06 3.72336e-06 3.50604e-06 3.3014e-06 3.10871e-06 2.92727e-06 2.75641e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16705e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42248e-06 1.33946e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.03479e-05 9.74413e-06 9.17555e-06 8.64015e-06 8.13599e-06 7.66124e-06 7.21419e-06 6.79322e-06 6.39681e-06 6.02353e-06 5.67202e-06 5.34102e-06 5.02934e-06 4.73584e-06 4.45946e-06 4.19919e-06 3.9541e-06 3.72333e-06 3.50603e-06 3.3014e-06 3.10871e-06 2.92726e-06 2.75641e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16705e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42248e-06 1.33946e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.03479e-05 9.74412e-06 9.17555e-06 8.64014e-06 8.13598e-06 7.66123e-06 7.21418e-06 6.79321e-06 6.3968e-06 6.02352e-06 5.67201e-06 5.34101e-06 5.02932e-06 4.73581e-06 4.45942e-06 4.19918e-06 3.95412e-06 3.72334e-06 3.50603e-06 3.30139e-06 3.10871e-06 2.92726e-06 2.75641e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16705e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42248e-06 1.33946e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.03479e-05 9.74412e-06 9.17554e-06 8.64014e-06 8.13597e-06 7.66122e-06 7.21417e-06 6.7932e-06 6.39679e-06 6.0235e-06 5.672e-06 5.341e-06 5.02931e-06 4.73582e-06 4.45944e-06 4.19917e-06 3.95409e-06 3.72332e-06 3.50602e-06 3.30139e-06 3.1087e-06 2.92726e-06 2.7564e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16705e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42248e-06 1.33946e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09892e-05 1.03479e-05 9.74411e-06 9.17553e-06 8.64013e-06 8.13596e-06 7.66121e-06 7.21416e-06 6.79319e-06 6.39678e-06 6.0235e-06 5.67199e-06 5.341e-06 5.02931e-06 4.7358e-06 4.45941e-06 4.19917e-06 3.95411e-06 3.72333e-06 3.50602e-06 3.30139e-06 3.1087e-06 2.92726e-06 2.7564e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16706e-06 2.04057e-06 1.92147e-06 1.80932e-06 1.70372e-06 1.60428e-06 1.51065e-06 1.42248e-06 1.33946e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74411e-06 9.17553e-06 8.64012e-06 8.13595e-06 7.6612e-06 7.21415e-06 6.79318e-06 6.39677e-06 6.02348e-06 5.67198e-06 5.34098e-06 5.02929e-06 4.73579e-06 4.45942e-06 4.19915e-06 3.95408e-06 3.72331e-06 3.50601e-06 3.30139e-06 3.1087e-06 2.92726e-06 2.7564e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16706e-06 2.04057e-06 1.92147e-06 1.80933e-06 1.70372e-06 1.60429e-06 1.51065e-06 1.42249e-06 1.33946e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.7441e-06 9.17552e-06 8.64011e-06 8.13595e-06 7.66119e-06 7.21414e-06 6.79317e-06 6.39676e-06 6.02348e-06 5.67197e-06 5.34098e-06 5.0293e-06 4.73579e-06 4.45941e-06 4.19916e-06 3.9541e-06 3.72332e-06 3.50601e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.7564e-06 2.59552e-06 2.44403e-06 2.30138e-06 2.16706e-06 2.04058e-06 1.92148e-06 1.80933e-06 1.70373e-06 1.60429e-06 1.51065e-06 1.42249e-06 1.33947e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74409e-06 9.17551e-06 8.6401e-06 8.13593e-06 7.66118e-06 7.21413e-06 6.79316e-06 6.39674e-06 6.02346e-06 5.67196e-06 5.34096e-06 5.02927e-06 4.73577e-06 4.4594e-06 4.19914e-06 3.95407e-06 3.72331e-06 3.50601e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.75641e-06 2.59553e-06 2.44404e-06 2.30139e-06 2.16706e-06 2.04058e-06 1.92148e-06 1.80933e-06 1.70373e-06 1.60429e-06 1.51066e-06 1.42249e-06 1.33947e-06 1.26129e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74409e-06 9.1755e-06 8.6401e-06 8.13593e-06 7.66117e-06 7.21412e-06 6.79315e-06 6.39674e-06 6.02346e-06 5.67195e-06 5.34096e-06 5.02928e-06 4.73578e-06 4.4594e-06 4.19915e-06 3.95408e-06 3.7233e-06 3.506e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.75641e-06 2.59553e-06 2.44404e-06 2.30139e-06 2.16707e-06 2.04058e-06 1.92148e-06 1.80934e-06 1.70373e-06 1.6043e-06 1.51066e-06 1.42249e-06 1.33947e-06 1.2613e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74408e-06 9.1755e-06 8.64009e-06 8.13592e-06 7.66116e-06 7.21411e-06 6.79314e-06 6.39672e-06 6.02344e-06 5.67194e-06 5.34095e-06 5.02926e-06 4.73575e-06 4.45938e-06 4.19913e-06 3.95407e-06 3.72331e-06 3.506e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.75641e-06 2.59553e-06 2.44404e-06 2.30139e-06 2.16707e-06 2.04059e-06 1.92149e-06 1.80934e-06 1.70374e-06 1.6043e-06 1.51067e-06 1.4225e-06 1.33947e-06 1.2613e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31613e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74408e-06 9.17549e-06 8.64008e-06 8.13591e-06 7.66115e-06 7.2141e-06 6.79313e-06 6.39672e-06 6.02344e-06 5.67193e-06 5.34093e-06 5.02925e-06 4.73576e-06 4.45939e-06 4.19913e-06 3.95406e-06 3.72329e-06 3.506e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.75641e-06 2.59553e-06 2.44405e-06 2.3014e-06 2.16708e-06 2.04059e-06 1.92149e-06 1.80935e-06 1.70374e-06 1.6043e-06 1.51067e-06 1.4225e-06 1.33948e-06 1.2613e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31612e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74407e-06 9.17548e-06 8.64007e-06 8.1359e-06 7.66114e-06 7.21409e-06 6.79312e-06 6.3967e-06 6.02341e-06 5.67192e-06 5.34093e-06 5.02925e-06 4.73574e-06 4.45937e-06 4.19912e-06 3.95407e-06 3.72331e-06 3.506e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.75642e-06 2.59554e-06 2.44405e-06 2.3014e-06 2.16708e-06 2.0406e-06 1.9215e-06 1.80935e-06 1.70375e-06 1.60431e-06 1.51068e-06 1.42251e-06 1.33948e-06 1.26131e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00482e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31612e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74406e-06 9.17547e-06 8.64006e-06 8.13589e-06 7.66113e-06 7.21408e-06 6.79311e-06 6.3967e-06 6.02343e-06 5.67192e-06 5.34091e-06 5.02923e-06 4.73574e-06 4.45937e-06 4.19912e-06 3.95405e-06 3.72328e-06 3.50599e-06 3.30138e-06 3.1087e-06 2.92726e-06 2.75642e-06 2.59554e-06 2.44406e-06 2.30141e-06 2.16709e-06 2.04061e-06 1.92151e-06 1.80936e-06 1.70376e-06 1.60432e-06 1.51068e-06 1.42251e-06 1.33949e-06 1.26131e-06 2.4011e-05 2.26099e-05 2.12906e-05 2.00483e-05 1.88784e-05 1.77768e-05 1.67395e-05 1.57627e-05 1.48429e-05 1.39768e-05 1.31612e-05 1.23933e-05 1.16701e-05 1.09891e-05 1.03479e-05 9.74406e-06 9.17547e-06 8.64005e-06 8.13588e-06 7.66112e-06 7.21407e-06 6.7931e-06 6.39668e-06 6.0234e-06 5.6719e-06 5.34091e-06 5.02923e-06 4.73573e-06 4.45936e-06 4.19912e-06 3.95406e-06 3.7233e-06 3.506e-06 3.30138e-06 3.1087e-06 2.92727e-06 2.75642e-06 2.59555e-06 2.44406e-06 2.30142e-06 2.16709e-06 2.04061e-06 1.92151e-06 1.80937e-06 1.70376e-06 1.60432e-06 1.51069e-06 1.42252e-06 1.33949e-06 1.26132e-06 ) ; // ************************************************************************* //
[ "clint@clint-Parallels-Virtual-Platform.(none)" ]
clint@clint-Parallels-Virtual-Platform.(none)
16eeae1416d9185ab789829be34beb8c94d7dd58
315735a9bfcb418a6b3b53976c52051e85064c7b
/shared_ptr.h
74ac28d163b4a56396d7a46dbb5ae3c923e2977b
[]
no_license
chanami/excellenteam-concurrency-scheduler
0fcef57742227a5a8fecad05f6f959941aa61c17
b1362e61d5bbcee58c82cd085fe22ad40bca3444
refs/heads/master
2020-04-21T13:31:30.632241
2018-12-19T15:01:36
2018-12-19T15:01:36
169,601,728
0
0
null
null
null
null
UTF-8
C++
false
false
3,115
h
#ifndef EXCELLENTEAM_ELLA_CONCURRENCY_SCHEDULER_CHANAMI_SHARED_PTR_H #define EXCELLENTEAM_ELLA_CONCURRENCY_SCHEDULER_CHANAMI_SHARED_PTR_H #include <iostream> template<typename T> class shared_ptr { public : explicit shared_ptr(T *ptr = NULL); ~shared_ptr(); shared_ptr(const shared_ptr &ptr); shared_ptr& operator =(const shared_ptr &ptr); shared_ptr& operator =(T*); bool isvalid() const; int getCount() const;//for testing T* get() const; operator bool() const; bool operator!=(const shared_ptr& other) const; bool operator==(const shared_ptr& other) const; template <class U> shared_ptr(const shared_ptr<U>&pt); template <class U> friend class shared_ptr; T* operator ->() const; T& operator *() const; private : size_t *refCount; T* m_ptr; void release(); void swap(shared_ptr &other); }; template<typename T> shared_ptr<T>::shared_ptr(T *ptr)try :m_ptr(ptr) { refCount = new size_t(1); } catch (std::bad_alloc& e) { delete ptr; throw ; } template<typename T> void shared_ptr<T>::release() { if((*refCount) <= 0) { delete refCount; delete m_ptr; } } template<typename T> shared_ptr<T>::~shared_ptr() { if(isvalid()) { --(*refCount); release(); refCount = NULL; m_ptr = NULL; } } template<typename T> shared_ptr<T>::shared_ptr(const shared_ptr &ptr) : refCount(ptr.refCount), m_ptr(ptr.m_ptr) { if(isvalid()) (*refCount)++; } template<typename T> void shared_ptr<T>::swap(shared_ptr &other) { std::swap(m_ptr,other.m_ptr); std::swap(refCount,other.refCount); } template<typename T> shared_ptr<T>& shared_ptr<T>:: operator =(const shared_ptr &ptr) { shared_ptr<T> temp(ptr); swap(temp); return *this; } template<typename T> shared_ptr<T>& shared_ptr<T>:: operator =(T* other) { //TODO release() //TODO try & catch with other return *this; } template<typename T> bool shared_ptr<T>::isvalid() const { return (m_ptr != NULL && refCount != NULL); } template<typename T> int shared_ptr<T>:: getCount() const { if(refCount != NULL) return *refCount; else return 0; } template<typename T> T* shared_ptr<T>::operator ->() const { return m_ptr; } template<typename T> T& shared_ptr<T>::operator *()const { return *m_ptr; } template<typename T> bool shared_ptr<T>::operator==(const shared_ptr& other) const { return (m_ptr==other.m_ptr)&&(refCount==other.refCount); } template<typename T> bool shared_ptr<T>:: operator!=(const shared_ptr& other) const { return (m_ptr != other.m_ptr); } template<typename T> T * shared_ptr<T>:: get() const { return m_ptr; } template<typename T> shared_ptr<T>::operator bool()const { return dynamic_cast<T *>(get()) != NULL; } template<typename T> template<typename U> shared_ptr<T>::shared_ptr(const shared_ptr<U>& ptr) :refCount(ptr.refCount), m_ptr(ptr.m_ptr) { if(isvalid()) (*refCount)++; } #endif //EXCELLENTEAM_ELLA_CONCURRENCY_SCHEDULER_CHANAMI_SHARED_PTR_H
[ "chanami15@gmail.com" ]
chanami15@gmail.com
bf33b040252dcb489c80d82d9e8da5b9d8fa62b6
101d466d0b709e713c7fceeb64930428ac21d894
/调整数组顺序使奇数位于偶数前面/调整数组顺序使奇数位于偶数前面/调整数组顺序使奇数位于偶数前面.cpp
fe5f1c4a4f6d6f8409240552a19ff705c29a5f05
[]
no_license
jfyh5388/SwordOffer
3a37adfa903b80c0728c3a6e60f830962ee2ed86
a1798946067e0e559430ced17bfde95e94ca7c58
refs/heads/master
2021-01-23T05:50:53.312671
2018-07-08T02:35:43
2018-07-08T02:35:43
102,478,550
0
0
null
null
null
null
UTF-8
C++
false
false
685
cpp
#include<iostream> #include<vector> using namespace std; class Solution { public: void reOrderArray(vector<int> &array) { int count=0,i=0; int len=array.size(); for(count;count<len;count++) { if(array[i]%2==0) { array.push_back(array[i]); array.erase(array.begin()+i); } else i++; } } }; int main() { Solution so; vector<int> a; a.push_back(2); a.push_back(4); a.push_back(1); a.push_back(6); a.push_back(9); so.reOrderArray(a); for(auto it=a.begin();it!=a.end();it++) cout<<*it<<endl; return 0; }
[ "nxf31834@freescale.com" ]
nxf31834@freescale.com
1c518b36423d36a5c729315572371ad41249cf47
29a06eb3f4a803a033d106e75811f7f97288b6c0
/nrf_listen_air/nrf_listen_air.ino
2634ae227c80f1b96d2443076c979a568a0ec52f
[]
no_license
rgarik/Arduino
0ce8cf6d4e824438edfdfb3d90836696922ff2c6
94df7f2a1cbe2270462be006c2f861128df744f8
refs/heads/master
2022-12-22T15:36:29.556497
2019-12-08T20:47:31
2019-12-08T20:47:31
113,086,654
0
1
null
2020-10-04T03:59:34
2017-12-04T19:39:00
C++
UTF-8
C++
false
false
1,561
ino
#include <SPI.h> #include "nRF24L01.h" #include "RF24.h" RF24 radio(9,10); // инициализировать модуль на пинах 9 и 10 Для Уно //RF24 radio(9,53);// Для Меги const uint8_t num_channels = 128; uint8_t values[num_channels]; void setup(void) { Serial.begin(9600); printf_begin(); radio.begin(); radio.setAutoAck(false); radio.startListening(); radio.printDetails(); // Вот эта строка напечатает нам что-то, если все правильно соединили. delay(5000); // И посмотрим на это пять секунд. radio.stopListening(); int i = 0; // А это напечатает нам заголовки всех 127 каналов while ( i < num_channels ) { printf("%x",i>>4); ++i; } printf("\n\r"); i = 0; while ( i < num_channels ) { printf("%x",i&0xf); ++i; } printf("\n\r"); } const int num_reps = 100; void loop(void) { memset(values,0,sizeof(values)); int rep_counter = num_reps; while (rep_counter--) { int i = num_channels; while (i--) { radio.setChannel(i); radio.startListening(); delayMicroseconds(128); radio.stopListening(); if ( radio.testCarrier() ) ++values[i]; } } int i = 0; while ( i < num_channels ) { printf("%x",min(0xf,values[i]&0xf)); ++i; } printf("\n\r"); } int serial_putc( char c, FILE * ) { Serial.write( c ); return c; } void printf_begin(void) { fdevopen( &serial_putc, 0 ); }
[ "yagarik@yandex.ru" ]
yagarik@yandex.ru
f2ff31a60f91cca3e58e5798e5bb64572b9b7997
b33a9177edaaf6bf185ef20bf87d36eada719d4f
/qtbase/src/plugins/platforms/directfb/qdirectfbglcontext.cpp
7f75d8b1ecb8e9f4be2117cfccc07415044a7828
[ "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-commercial-license", "LGPL-2.0-or-later", "LGPL-2.1-only", "GFDL-1.3-only", "LicenseRef-scancode-qt-commercial-1.1", "LGPL-3.0-only", "LicenseRef-scancode-qt-company-exception-lgpl-2.1", ...
permissive
wgnet/wds_qt
ab8c093b8c6eead9adf4057d843e00f04915d987
8db722fd367d2d0744decf99ac7bafaba8b8a3d3
refs/heads/master
2021-04-02T11:07:10.181067
2020-06-02T10:29:03
2020-06-02T10:34:19
248,267,925
1
0
Apache-2.0
2020-04-30T12:16:53
2020-03-18T15:20:38
null
UTF-8
C++
false
false
3,341
cpp
/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the plugins of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qdirectfbglcontext.h" #include <directfbgl.h> #include <QDebug> QT_BEGIN_NAMESPACE QDirectFbGLContext::QDirectFbGLContext(IDirectFBGL *glContext) : m_dfbGlContext(glContext) { DFBResult result; DFBGLAttributes glAttribs; result = m_dfbGlContext->GetAttributes(glContext, &glAttribs); if (result == DFB_OK) { m_windowFormat.setDepthBufferSize(glAttribs.depth_size); m_windowFormat.setStencilBufferSize(glAttribs.stencil_size); m_windowFormat.setRedBufferSize(glAttribs.red_size); m_windowFormat.setGreenBufferSize(glAttribs.green_size); m_windowFormat.setBlueBufferSize(glAttribs.blue_size); m_windowFormat.setAlphaBufferSize(glAttribs.alpha_size); m_windowFormat.setAccumBufferSize(glAttribs.accum_red_size); m_windowFormat.setAlpha(glAttribs.accum_alpha_size); m_windowFormat.setDoubleBuffer(glAttribs.double_buffer); m_windowFormat.setStereo(glAttribs.stereo); } } void QDirectFbGLContext::makeCurrent() { QPlatformOpenGLContext::makeCurrent(); m_dfbGlContext->Lock(m_dfbGlContext); } void QDirectFbGLContext::doneCurrent() { QPlatformOpenGLContext::doneCurrent(); m_dfbGlContext->Unlock(m_dfbGlContext); } void *QDirectFbGLContext::getProcAddress(const QString &procName) { void *proc; DFBResult result = m_dfbGlContext->GetProcAddress(m_dfbGlContext,qPrintable(procName),&proc); if (result == DFB_OK) return proc; return 0; } void QDirectFbGLContext::swapBuffers() { // m_dfbGlContext->Unlock(m_dfbGlContext); //maybe not in doneCurrent() qDebug() << "Swap buffers"; } QPlatformWindowFormat QDirectFbGLContext::platformWindowFormat() const { return m_windowFormat; } QT_END_NAMESPACE
[ "p_pavlov@wargaming.net" ]
p_pavlov@wargaming.net
b774858023fa892771922c7b7de208e29718b5ae
39c7e3e028ad5cc0acdeb92284b56abf220612ea
/SampleProject/Plugins/EzAnimPlugin/Source/EzAnimPlugin/Movements/EzMovementTarget.cpp
8bc2854f0ebae38213b37970c132f4e996980cf6
[]
no_license
parayc/EzAnimation.ue4
b9bb18b92d3339063988328a64b5e608c2552073
d8411fe5c5e0a90ec2880e69c6133dfe315e7868
refs/heads/master
2020-04-29T08:29:47.096240
2017-04-26T01:54:49
2017-04-26T01:54:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
56
cpp
#include "EzAnimPlugin.h" #include "EzMovementTarget.h"
[ "pjc0247@naver.com" ]
pjc0247@naver.com
fcdd67006054bfb88223a1e88d481593e54abe2d
ece4556e027eba750127ac893f28aeee8893b16c
/CS211/Projects/nQueens/template-nqueens.cpp
4159fccef11527e4c065bcc3318ed1fa4f474a32
[]
no_license
axchen93/Adjunct_Website
5b118ffd51896d6a7abefaa522b7049eab27c557
db22b510c4fc8d8a060897771fb2315cecdc94d5
refs/heads/master
2021-06-16T19:39:01.936000
2019-09-05T21:39:33
2019-09-05T21:39:33
115,084,045
1
0
null
null
null
null
UTF-8
C++
false
false
717
cpp
#include <iostream> #include <cmath> using namespace std; bool ok(int q[], int c) { // Reuse the ok function from your 1D 8 queens program. } // This function should return the number of solutions for the given board size (you don't need to print the solutions). int nqueens(int n) { // Dynamically declare an array of size n and initialize the first element to 0. // Reuse the code from your 1D 8 queens program to find the solutions (you may have to make changes). // Delete the array. // Return the number of solutions. } int main() { int n = 12; for (int i = 1; i <= n; ++i) cout << "There are " << nqueens(i) << " solutions to the " << i << " queens problem.\n"; return 0; }
[ "axchen93@gmail.com" ]
axchen93@gmail.com
360c9b8b9cde0c87e01aa610af8f7aac7c5d1215
5856e2cd49a1571110bf9d4e408541c4d5a622fe
/blingfirecompile.library/inc/FANfas2TupleNfa.h
21403cb18528318a091c5754d837f3a56489e17c
[ "LicenseRef-scancode-generic-cla", "MIT" ]
permissive
tgarciai/BlingFire
c888828af472dd272f3e877b5f251a4d388e04af
afc8fdc7d2c789bb7a28c99cfb30f6a8e66f861c
refs/heads/master
2022-04-18T16:57:40.148163
2020-04-17T21:17:27
2020-04-17T21:17:27
257,096,571
1
0
MIT
2020-04-19T20:33:48
2020-04-19T20:33:48
null
UTF-8
C++
false
false
2,787
h
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ #ifndef _FA_NFAS2TUPLENFA_H_ #define _FA_NFAS2TUPLENFA_H_ #include "FAConfig.h" #include "FAArray_cont_t.h" #include "FAChain2Num_judy.h" #include "FAEncoder_pref.h" class FAAllocatorA; class FARSNfaA; /// /// This class build tuple-NFA from the array of N parallel Nfa-s. /// /// Nfa_a and Nfa_b are parallel if the following holds: /// |Qa| == |Qb| and if qa == qb then Pa == Pb, /// where \forall pa \in Pa, <qa, iwa, pa> \in Ea, iwa \in IWa /// and \forall pb \in Pb, <qb, iwb, pb> \in Eb, iwb \in IWb. /// /// The transitions <q, <Iw_1, ..., Iw_N>, p> of tuple-NFA where /// <qi, Iw_i, pi> \in Nfa_i and qi == q, pi == p are represented as N /// consiquent transitions. /// /// Note: /// /// 1. This class does not copy input NFAs (just store the pointers) so NFAs /// must exist during the entire processing. /// class FANfas2TupleNfa { public: FANfas2TupleNfa (FAAllocatorA * pAlloc); public: /// sets up ignore interval void SetIgnoreBase (const int IgnoreBase); /// sets up ignore interval void SetIgnoreMax (const int IgnoreMax); /// adds one more NFA to merge void AddNfa (const FARSNfaA * pNfa); /// sets up output container void SetOutNfa (FARSNfaA * pNfa); /// makes transformation void Process (); /// returns object into the initial state void Clear (); private: inline const int GetMaxState () const; inline const int GetMaxIw () const; inline const int GetInitials (const int ** ppStates) const; inline const int GetFinals (const int ** ppStates) const; inline void RemapStates ( const int * pStates, const int Count, const int ** ppOutStates ); inline void RemapStates2 ( const int FromState, const int Idx, const int * pStates, const int Count, const int ** ppOutStates ); inline const bool Ignore (const int Iw) const; void CalcStateMap (); void AddTransitions (const int Idx, const int State); void AddIgnoredTransitions (const int State); private: // input FAArray_cont_t < const FARSNfaA * > m_NfaArr; const FARSNfaA ** m_pNfaArr; int m_Count; // output FARSNfaA * m_pOutNfa; // mapping from state / transition -> new state FAChain2Num_judy m_state2state; FAEncoder_pref m_encoder; // keeps Max new state number int m_NewMaxState; // temporary arrays for states remapping FAArray_cont_t < int > m_tmp; // ignore interval int m_IgnoreBase; int m_IgnoreMax; }; #endif
[ "jiamguo@microsoft.com" ]
jiamguo@microsoft.com
98d2caa74ff5f5318f8dc37ca89bb1e6727aec9f
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/ef/852a350554213a/main.cpp
468f9575f1beada9b123de3df76a0aa05a7466a2
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
1,736
cpp
#include <chrono> #include <iostream> class CMatrix{ public: explicit CMatrix( int rows, int cols ){ m_pArray = new float[ rows * cols ]; m_nRows = rows; m_nCols = cols; } ~CMatrix(){ delete [] m_pArray; } inline float& operator()( int row, int col ){ return m_pArray[ (row + col * m_nRows) ]; } float operator()(int row, int col) const{ return m_pArray[ (row + col * m_nRows) ]; } float *GetPr(){ return m_pArray; } public: float *m_pArray; int m_nRows, m_nCols; }; std::chrono::high_resolution_clock::time_point timeGetTime(){ return std::chrono::high_resolution_clock::now(); } static inline std::chrono::high_resolution_clock::time_point myclock(); int main() { using namespace std::chrono; using std::cout; high_resolution_clock::time_point t, dt; duration<double> time_span; int nRows(16384), nCols(8192); CMatrix src( nRows, nCols ), dst( nRows, nCols ); float *psrc( src.GetPr() ), *pdst( dst.GetPr() ); dst( 0, 0 ) = src( 0, 0 ); dst(16383, 8191) = src(16383, 8191); for(int K=0; K<3; ++K){ t = myclock(); for( int j = 0; j < nCols; j++ ){ for( int i = 0; i < nRows; i++ ) { dst( i, j ) = src( i, j ); } } dt = myclock(); time_span = duration_cast< duration<double> >(dt-t); cout << "operator " << time_span.count() << '\n'; t = myclock(); for( int j = 0; j < nCols; j++ ){ for( int i = 0; i < nRows; i++ ) { pdst[ i + j*nRows ] = psrc[ i + j*nRows ]; } } dt = myclock(); time_span = duration_cast< duration<double> >(dt-t); cout << "direct " << time_span.count() << '\n'; } return 0; } static inline std::chrono::high_resolution_clock::time_point myclock() { return std::chrono::high_resolution_clock::now(); }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
bad51d195871227cdc34cca1034ce9dae28aeac7
bf00c85a15d59f9ad1a8ebc8fae46b3f5d58d2d5
/src/auxpow.h
f8dd5e1095d71c0a17ced4c360eb6cdb09f699ca
[ "MIT" ]
permissive
LadyPhoeynix/Beeso-Evo
02b2cd4b89c9e20e2f3dace000360c14d2818488
2aa42d7a4139b54d6105d2386fbdc6f6be1087b2
refs/heads/master
2021-03-07T15:24:53.831617
2020-03-10T11:05:49
2020-03-10T11:05:49
246,276,395
0
0
null
null
null
null
UTF-8
C++
false
false
5,100
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2019 Daniel Kraft // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_AUXPOW_H #define BITCOIN_AUXPOW_H #include <consensus/params.h> #include <primitives/pureheader.h> #include <primitives/transaction.h> #include <serialize.h> #include <uint256.h> #include <cassert> #include <memory> #include <vector> class CBlock; class CBlockHeader; class CBlockIndex; class CValidationState; class UniValue; namespace auxpow_tests { class CAuxPowForTest; } /** Header for merge-mining data in the coinbase. */ static const unsigned char pchMergedMiningHeader[] = { 0xfa, 0xbe, 'm', 'm' }; /** * Data for the merge-mining auxpow. This uses a merkle tx (the parent block's * coinbase tx) and a second merkle branch to link the actual Beeso block * header to the parent block header, which is mined to satisfy the PoW. */ class CAuxPow { private: /** The parent block's coinbase transaction. */ CTransactionRef coinbaseTx; /** The Merkle branch of the coinbase tx to the parent block's root. */ std::vector<uint256> vMerkleBranch; /** The merkle branch connecting the aux block to our coinbase. */ std::vector<uint256> vChainMerkleBranch; /** Merkle tree index of the aux block header in the coinbase. */ int nChainIndex; /** Parent block header (on which the real PoW is done). */ CPureBlockHeader parentBlock; /** * Check a merkle branch. This used to be in CBlock, but was removed * upstream. Thus include it here now. */ static uint256 CheckMerkleBranch (uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex); friend UniValue AuxpowToJSON(const CAuxPow& auxpow); friend class auxpow_tests::CAuxPowForTest; public: /* Prevent accidental conversion. */ inline explicit CAuxPow (CTransactionRef&& txIn) : coinbaseTx (std::move (txIn)) {} CAuxPow () = default; ADD_SERIALIZE_METHODS; template<typename Stream, typename Operation> inline void SerializationOp (Stream& s, Operation ser_action) { /* The coinbase Merkle tx' hashBlock field is never actually verified or used in the code for an auxpow (and never was). The parent block is known anyway directly, so this is also redundant. By setting the value to zero (for serialising), we make sure that the format is backwards compatible but the data can be compressed. */ uint256 hashBlock; /* The index of the parent coinbase tx is always zero. */ int nIndex = 0; /* Data from the coinbase transaction as Merkle tx. */ READWRITE (coinbaseTx); READWRITE (hashBlock); READWRITE (vMerkleBranch); READWRITE (nIndex); /* Additional data for the auxpow itself. */ READWRITE (vChainMerkleBranch); READWRITE (nChainIndex); READWRITE (parentBlock); } /** * Check the auxpow, given the merge-mined block's hash and our chain ID. * Note that this does not verify the actual PoW on the parent block! It * just confirms that all the merkle branches are valid. * @param hashAuxBlock Hash of the merge-mined block. * @param nChainId The auxpow chain ID of the block to check. * @param params Consensus parameters. * @return True if the auxpow is valid. */ bool check (const uint256& hashAuxBlock, int nChainId, const Consensus::Params& params) const; /** * Returns the parent block hash. This is used to validate the PoW. */ inline uint256 getParentBlockHash () const { return parentBlock.GetHash (); } /** * Return parent block. This is only used for the temporary parentblock * auxpow version check. * @return The parent block. */ /* FIXME: Remove after the hardfork. */ inline const CPureBlockHeader& getParentBlock () const { return parentBlock; } /** * Calculate the expected index in the merkle tree. This is also used * for the test-suite. * @param nNonce The coinbase's nonce value. * @param nChainId The chain ID. * @param h The merkle block height. * @return The expected index for the aux hash. */ static int getExpectedIndex (uint32_t nNonce, int nChainId, unsigned h); /** * Constructs a minimal CAuxPow object for the given block header and * returns it. The caller should make sure to set the auxpow flag on the * header already, since the block hash to which the auxpow commits depends * on that! */ static std::unique_ptr<CAuxPow> createAuxPow (const CPureBlockHeader& header); /** * Initialises the auxpow of the given block header. This builds a minimal * auxpow object like createAuxPow and sets it on the block header. Returns * a reference to the parent header so it can be mined as a follow-up. */ static CPureBlockHeader& initAuxPow (CBlockHeader& header); }; #endif // BITCOIN_AUXPOW_H
[ "btcinfo@sdf.org" ]
btcinfo@sdf.org
79e1dd63fae7e3a09d85da473dd1353c0f7d9aa7
f8fc6d86e097a4115ee3813c7fc053a5f92a0b3c
/catkin_ws/src/qrmove/src/main_qrreadImage.cpp
e6af7f60ebd210a50315cb6e4a21371fe61ee696
[]
no_license
cecileperrette/pdr
daeb3d40b10b59df16823d59c2d2b919fabe62d8
8cd263998c0034011a2d525f866b65433660767a
refs/heads/master
2021-04-03T09:41:35.174907
2018-05-18T08:33:00
2018-05-18T08:33:00
124,395,478
0
0
null
null
null
null
UTF-8
C++
false
false
2,301
cpp
#include <opencv2/opencv.hpp> #include <zbar.h> using namespace cv; using namespace std; using namespace zbar; // On commence par définir la structure qui renfermera l'information concernant un QRCode détécté dans l'image donnée typedef struct{ string type; string data; vector <Point> location; } decodedObject; // on écrit une fonction qui va repérer des QRCodes void decode(Mat &im, vector<decodedObject> &decodedObjects){ // création d'un scanner à QRCode ImageScanner scanner; // Configuration du scanner scanner.set_config(ZBAR_NONE, ZBAR_CFG_ENABLE,1); // On converti l'image en nuances de gris Mat imGray; cvtColor(im,imGray,CV_BGR2GRAY); //on met l'image au format d'une image zbar pour une meilleure compatibilité Image image(im.cols, im.rows, "Y800", (uchar *)imGray.data,im.cols * im.rows); //Scan de l'image int n= scanner.scan(image); //Impression des résultats for (Image::SymbolIterator symbol = image.symbol_begin(); symbol !=image.symbol_end(); ++symbol){ decodedObject obj; obj.type= symbol->get_type_name(); obj.data= symbol->get_data(); //Impression du type et du data cout << "Type : " << obj.type <<endl; cout << "Data : " << obj.data <<endl<<endl; //Obtention de la localisation for(int i=0; i<symbol->get_location_size();i++){ obj.location.push_back(Point(symbol->get_location_x(i),symbol->get_location_y(i))); } decodedObjects.push_back(obj); } } //Apparition des QRCodes recherchés void display(Mat &im, vector<decodedObject> &decodedObjects){ //On boucle sur tous les objects décodés for(int i=0;i< decodedObjects.size();i++){ vector<Point> points=decodedObjects[i].location; vector<Point> hull; // Formation d'une enveloppe convexe if(points.size()>4) convexHull(points, hull); else hull=points; int n=hull.size(); for(int j=0;j<n;j++){ line(im,hull[j],hull[(j+1) % n],Scalar(255,0,0),3); } } //On display le tout imshow("Results",im); waitKey(0); } int main(int argc, char* argv[]){ //On lit l'image Mat im= imread("index.png"); //Variable répertoriant les objects détectés vector<decodedObject> decodedObjects; //On trouve les QRCodes decode(im, decodedObjects); //On les affiches display(im, decodedObjects); return EXIT_SUCCESS; }
[ "car@mines-douai.com" ]
car@mines-douai.com
e11a87d2185e1307bda0ec6461cd07a0dc643ee4
9f16950a070174c4ad6419b6aa48e0b3fd34a09e
/users/marcel/lgen/LgenFilterQuantize.cpp
f3bf429d6d8588da7ba06322a8004607adb82580
[]
no_license
marcel303/framework
594043fad6a261ce2f8e862f921aee1192712612
9459898c280223b853bf16d6e382a6f7c573e10e
refs/heads/master
2023-05-14T02:30:51.063401
2023-05-07T07:57:12
2023-05-07T10:16:34
112,006,739
53
1
null
2020-01-13T18:48:32
2017-11-25T13:45:56
C++
UTF-8
C++
false
false
2,205
cpp
#include "LgenFilterQuantize.h" #include <math.h> #include <stdlib.h> namespace lgen { bool FilterQuantize::setNumLevels(const int in_numLevels) { if (in_numLevels < 2) { return false; } else { numLevels = in_numLevels; return true; } } bool FilterQuantize::apply(const Heightfield & src, Heightfield & dst) { int x1, y1, x2, y2; getClippingRect(src, x1, y1, x2, y2); // Find min / max. float min = src.height[x1][y1]; float max = src.height[x1][y1]; for (int i = x1; i <= x2; ++i) { const float * src_itr = src.height[i] + y1; for (int j = y1; j <= y2; ++j) { const float value = *src_itr++; if (value < min) { min = value; } else if (value > max) { max = value; } } } // Get scaling factors. float s1 = max - min; if (s1 == 0.f) { s1 = 1.f; } float s2 = max - min; // Translate and scale. for (int i = x1; i <= x2; ++i) { const float * src_itr = src.height[i] + y1; float * dst_itr = dst.height[i] + y1; for (int j = y1; j <= y2; ++j) { const float value = *src_itr++; const int level = (value - min) * (numLevels - 1e-3f) / s1; *dst_itr++ = min + level * s2 / (numLevels - 1); } } return true; } bool FilterQuantize::setOption(const std::string & name, const char * value) { if (name == "levels") { int numLevels = atoi(value); return setNumLevels(numLevels); } else { return Filter::setOption(name, value); } } // bool filterQuantize(const Heightfield & src, Heightfield & dst, const int numLevels) { FilterQuantize filter; return filter.setNumLevels(numLevels) && filter.apply(src, dst); } }
[ "marcel303@gmail.com" ]
marcel303@gmail.com
bd0ce70d76793bb7b1c7b5417c817be4c7dd2c4b
f56c1b459df3208d38c85d5cb2ba19c47c357b98
/A4/SceneNode.hpp
9eb9c682b836350252d9046fbbe10d6d2d6c3ec5
[]
no_license
AdventurerC/cs488
5b2da94dcd4ec4e477b582b1ae1ac5a09394ee97
17b05cda6a1cb9043480a203b66fc30de06a8751
refs/heads/master
2020-03-29T20:53:47.269525
2017-07-19T21:32:32
2017-07-19T21:32:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,452
hpp
#pragma once #include "Material.hpp" #include <glm/glm.hpp> #include <list> #include <string> #include <iostream> enum class NodeType { SceneNode, GeometryNode, JointNode }; class Ray { public: glm::vec3 _dir; glm::vec3 _orig; Ray(glm::vec3 orig, glm::vec3 dir) : _orig(orig), _dir(dir) { } Ray() : _orig(glm::vec3()), _dir(glm::vec3()){ } }; class Intersection { public: glm::vec3 _point; glm::vec3 _normal; Material *_material; double _t; bool _hit; Intersection() : _hit(false), _t(std::numeric_limits<double>::infinity()){ } }; class SceneNode { public: SceneNode(const std::string & name); SceneNode(const SceneNode & other); virtual ~SceneNode(); int totalSceneNodes() const; const glm::mat4& get_transform() const; const glm::mat4& get_inverse() const; void set_transform(const glm::mat4& m); void add_child(SceneNode* child); void remove_child(SceneNode* child); //-- Transformations: void rotate(char axis, float angle); void scale(const glm::vec3& amount); void translate(const glm::vec3& amount); friend std::ostream & operator << (std::ostream & os, const SceneNode & node); // Transformations glm::mat4 trans; glm::mat4 invtrans; std::list<SceneNode*> children; NodeType m_nodeType; std::string m_name; unsigned int m_nodeId; private: // The number of SceneNode instances. static unsigned int nodeInstanceCount; };
[ "yusi.zeng@gmail.com" ]
yusi.zeng@gmail.com
2afffbae6951da34a4d75b712e07f970b703d307
5838cf8f133a62df151ed12a5f928a43c11772ed
/NT/com/ole32/olethunk/olethk32/olethk32.cxx
4cdd354e2f3467c7bc72632adbc9ccbbab8aa1ad
[]
no_license
proaholic/Win2K3
e5e17b2262f8a2e9590d3fd7a201da19771eb132
572f0250d5825e7b80920b6610c22c5b9baaa3aa
refs/heads/master
2023-07-09T06:15:54.474432
2021-08-11T09:09:14
2021-08-11T09:09:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,294
cxx
//+--------------------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992 - 1994. // // File: olethk32.cxx // // Contents: Main routines for olethk32.dll // // History: 22-Feb-94 DrewB Created // //---------------------------------------------------------------------------- #include "headers.cxx" #pragma hdrstop #include <thkmgr.hxx> #include <stdio.h> DECLARE_INFOLEVEL(thk); DECLARE_INFOLEVEL(Stack); // Interop is disabled at load time DATA16 gdata16Data; BOOL gfIteropEnabled; #if DBG == 1 BOOL fSaveProxy = FALSE; // Used to find apps who call dead proxies BOOL fStabilizeProxies = TRUE; // Used to easily disable stabilization BOOL fZapProxy = FALSE; // Used to zap entries in freelist #if defined(__cplusplus) extern "C" { #endif void CallOutputFunctions(const char *buffer); #if defined(__cplusplus) } #endif #endif CLIPFORMAT g_cfLinkSourceDescriptor, g_cfObjectDescriptor; BYTE g_abLeadTable[256]; //+--------------------------------------------------------------------------- // // Function: DoThreadDetach // // Synopsis: When a thread is detaching, cleanup for it. // // Effects: This is called during both DLL_THREAD_DETACH, and // DLL_PROCESS_DETACH. // // Arguments: (none) // // History: 3-18-95 kevinro Created // // Notes: // //---------------------------------------------------------------------------- void DoThreadDetach() { thkDebugOut((DEB_DLL,"_IN DoThreadDetach\n")); // // If there is thunk data, clean it up now. // if (TlsGetValue(dwTlsThkIndex) != NULL) { thkDebugOut((DEB_DLL,"DoThreadDetach calling ThkMgrUninitialize\n")); ThkMgrUninitialize(0, 0, 0); } thkDebugOut((DEB_DLL,"OUT DoThreadDetach\n")); } //+--------------------------------------------------------------------------- // // Function: LibMain, public // // Synopsis: DLL initialization entry point // // History: 23-Feb-94 DrewB Created // // Notes: // // (KevinRo 19-Mar-95) // // Caution needs to be exercised during cleanup. OLE32.DLL has // a pointer that we pass in during CoInitializeWOW. This pointer // is used to call back into OLETHK32 for cleanup purposes, as well as // accessing functions exposed by the 16-bit side. It is important that // when OLETHK32 unloads, the pointer in OLE32 is marked as invalid. // There is a call during the DLL_PROCESS_DETACH below that causes // OLE32 to invalidate its pointer. // // In addition, the last thread attached to a DLL will not generate // a DLL_THREAD_DETACH. Instead, it generates a DLL_PROCESS_DETACH. This // means that DLL_PROCESS_DETACH should perform all the steps that // DLL_THREAD_DETACH does in addition to whatever DLL_PROCESS_DETACH work // that needs to be done. // // Lastly, OLETHK32.DLL is statically linked to OLE32.DLL. This means // that OLETHK32.DLL's DLL_PROCESS_DETACH will be called before OLE32's. // That is why it is safe for us to call the OLE32 entry point during // DLL_PROCESS_DETACH //---------------------------------------------------------------------------- extern "C" BOOL __cdecl LibMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved) { switch( dwReason ) { case DLL_PROCESS_ATTACH: #if DBG == 1 char achInfoLevel[80]; if(thkInfoLevel == (DEB_ERROR | DEB_WARN) && GetProfileStringA("olethk32", "InfoLevel", "3", achInfoLevel, sizeof(achInfoLevel)) > 0) { thkInfoLevel = strtol (achInfoLevel, NULL, 0); } #endif thkDebugOut((DEB_DLL,"_IN DLL_PROCESS_ATTACH\n")); // // Save a slot in the thread local storage for our PSTACK (pseudo- // stack) pointer. // if (!TlsThkAlloc()) { thkDebugOut((DEB_WARN, "TlsThkAlloc failed\n")); return FALSE; } thkDebugOut((DEB_DLL,"OUT DLL_PROCESS_ATTACH\n")); break; case DLL_THREAD_ATTACH: thkDebugOut((DEB_DLL,"_IN DLL_THREAD_ATTACH\n")); TlsSetValue(dwTlsThkIndex, NULL); thkDebugOut((DEB_DLL,"OUT DLL_THREAD_ATTACH\n")); break; case DLL_THREAD_DETACH: thkDebugOut((DEB_DLL,"_IN DLL_THREAD_DETACH\n")); // // Call OLE32.DLL and tell it to cleanup for this thread. This will // not mark OLE32's ptr invalid since this is only a thread detach // and not a process detach. This is a private API between OLE32 and // OLETHK32. // thkDebugOut((DEB_DLL,"Calling Unload WOW for Thread Detach\n")); CoUnloadingWOW(FALSE); // // When the thread for this task goes away, we need to clean out // the thunk manager. // DoThreadDetach(); thkDebugOut((DEB_DLL,"OUT DLL_THREAD_DETACH\n")); break; case DLL_PROCESS_DETACH: thkDebugOut((DEB_DLL, "IN DLL_PROCESS_DETACH: %s\n", lpReserved?"Process Exit":"Dll Unload")); // // The last threads cleanup needs to be done here. // if (lpReserved == NULL) { // // Call OLE32.DLL and tell it to cleanup for this thread, and to // never call us again, since we are going away. This is a private // API between OLE32 and OLETHK32. This call will mark OLE32's // private pointer to us as invalid. // thkDebugOut((DEB_DLL,"Calling Unload WOW\n")); CoUnloadingWOW(TRUE); // // lpReserved being NULL means this cleanup is due to // a FreeLibrary. If it was due to process exit, there // is no way for us to determine the state of the data // structures in the system. Other threads may have been // right smack in the middle of taking apart data structures. // // // Chicago unloads DLL's differently than NT. On Chicago, the // 32-bit side cleans up first, plus resources allocated on // the 32-bit side are released when the 16-bit process goes // away. On NT, the 16-bit process is treated like a thread, // so we have to cleanup. // DoThreadDetach(); // // Only cleanup the memory if the process is not going away. // On Windows NT, there are cases when the NTVDM needs to be // blown away. We shouldn't be calling back to the 16-bit // side in this case. Therefore, we explicitly call free here // instead of putting it in the destructor. // flFreeList32.FreeMemoryBlocks(); flHolderFreeList.FreeMemoryBlocks(); flRequestFreeList.FreeMemoryBlocks(); } TlsThkFree(); thkDebugOut((DEB_DLL,"OUT DLL_PROCESS_DETACH\n")); break; } return TRUE; } //+--------------------------------------------------------------------------- // // Function: IntOpInitialize, public // // Synopsis: Initializes the 32-bit interoperability code // // Arguments: [lpdata16] - 16-bit call data // [dw1] - Ignored // [dw2] - Ignored // // Returns: Appropriate status code // // History: 22-Feb-94 JohannP Created // //---------------------------------------------------------------------------- STDAPI IntOpInitialize(LPDATA16 lpdata16, DWORD dw1, DWORD dw2) { int i; thkDebugOut((DEB_ITRACE | DEB_THUNKMGR, "_IN IntOpInitialize (%08lX)\n", lpdata16)); thkAssert((THOP_LASTOP & ~THOP_OPMASK) == 0); #if DBG == 1 char achInfoLevel[80]; if (GetProfileIntA("olethk32", "BreakOnInit", FALSE)) { // DebugBreak's in WOW are fatal unless the exception // is handled somehow. If a debugger is hooked up, // it'll get first crack at the break exception // If not, our handler will ignore the exception so // execution can continue __try { DebugBreak(); } __except(EXCEPTION_EXECUTE_HANDLER) { } } fSaveProxy = GetProfileIntA("olethk32", "SaveProxy", FALSE); fZapProxy = GetProfileIntA("olethk32", "ZapProxy", FALSE); fStabilizeProxies = GetProfileIntA("olethk32", "Stabilize", TRUE); #endif // Copy passed parameter from 16-bit world... memcpy( (LPVOID)&gdata16Data, (LPVOID)lpdata16, sizeof( DATA16 ) ); // Enable interop gfIteropEnabled = TRUE; g_cfObjectDescriptor = (CLIPFORMAT) RegisterClipboardFormat(__TEXT("Object Descriptor")); g_cfLinkSourceDescriptor = (CLIPFORMAT) RegisterClipboardFormat(__TEXT("Link Source Descriptor")); if (g_cfObjectDescriptor == 0 || g_cfLinkSourceDescriptor == 0) { thkDebugOut((DEB_WARN, "IntOpInitialize: " "Unable to register clipboard formats\n")); return E_UNEXPECTED; } // Create a lookup table for lead-byte-ness // so we can avoid calling IsDBCSLeadByte on every character // during string validation for (i = 0; i < 256; i++) { g_abLeadTable[i] = (BYTE)IsDBCSLeadByte((BYTE)i); } thkDebugOut((DEB_THUNKMGR | DEB_ITRACE, "OUT IntOpInitialize (%08lX)\n", lpdata16)); return NOERROR; } //+--------------------------------------------------------------------------- // // Function: IntOpUninitialize, public // // Synopsis: Cleanup initiated by 16-bit DLL unload // // Arguments: [dw1] // [dw2] // [dw3] // // History: 29-Nov-94 DrewB Created // 10-20-97 Gopalk Disabled interop as CompObj is no // longer present after this point // // Notes: (KevinRo) This routine is only called by compobj.dll. To make // things even more interesting, it is only called on Windows/NT. Win95 // does the flFreeList16.FreeMemoryBlocks during PROCESS_DETACH. Cleanup // of the proxies is not neccessary on Win95, since the 16-bit process will // clean them up for us. // //---------------------------------------------------------------------------- STDAPI IntOpUninitialize(DWORD dw1, DWORD dw2, DWORD dw3) { thkDebugOut((DEB_THUNKMGR | DEB_ITRACE, "_IN IntOpUninitialize\n")); // Remove all existing proxies since we're going to free the // proxy memory in the next step if (TlsThkGetData() != NULL) { CThkMgr *ptm = TlsThkGetThkMgr(); if (ptm) { ptm->RemoveAllProxies(); } } // Clean up the 16-bit freelist at this time because we know // that 16-bit code is still active and available for callback // If we waited for the freelist destructor to be called, 16-bit // code would already be cleaned up and the WOWGlobalFree calls // would fail flFreeList16.FreeMemoryBlocks(); // Disable interop gfIteropEnabled = FALSE; #if DBG==1 // In debug builds zero out 16-bit callback function pointer so that // we fault in the 32-bit code if we call them hereafter memset( (LPVOID)&gdata16Data, 0, sizeof( DATA16 ) ); #endif WgtDump(); thkDebugOut((DEB_THUNKMGR | DEB_ITRACE, "OUT IntOpUninitialize\n")); return 0; } //+--------------------------------------------------------------------------- // // Function: ConvertHr1632Thunk, public // // Synopsis: Trivial function to allow calling HRESULT conversion // functions from 16-bit // // Arguments: [hr] - HRESULT to convert // [dw1] // [dw2] // // Returns: Appropriate status code // // History: 26-Sep-94 DrewB Created // // Notes: Required because 16-bit calls to CallProc32W use three // arguments // //---------------------------------------------------------------------------- STDAPI ConvertHr1632Thunk(HRESULT hr, DWORD dw1, DWORD dw2) { return TransformHRESULT_1632(hr); } //+--------------------------------------------------------------------------- // // Function: ConvertHr3216Thunk, public // // Synopsis: Trivial function to allow calling HRESULT conversion // functions from 16-bit // // Arguments: [hr] - HRESULT to convert // [dw1] // [dw2] // // Returns: Appropriate status code // // History: 26-Sep-94 DrewB Created // // Notes: Required because 16-bit calls to CallProc32W use three // arguments // //---------------------------------------------------------------------------- STDAPI ConvertHr3216Thunk(HRESULT hr, DWORD dw1, DWORD dw2) { return TransformHRESULT_3216(hr); } //+------------------------------------------------------------------------- // // Function: ThkAddAppCompatFlag // // Synopsis: Takes the given flag and ORs it into the current app // compatibility flag set // // Effects: // // Arguments: [dwFlag] -- flag to set // // Requires: // // Returns: void // // Signals: // // Modifies: // // Algorithm: // // History: dd-mmm-yy Author Comment // 15-Mar-95 alexgo author // // Notes: This function exists so that 16bit thunk dll's may // also set app compatibility flags. olethk32 code typically // sets the flags directly via TlsThkSetAppCompatFlags // //-------------------------------------------------------------------------- STDAPI_(void) ThkAddAppCompatFlag( DWORD dwFlag ) { DWORD dw; dw = TlsThkGetAppCompatFlags(); dw |= dwFlag; TlsThkSetAppCompatFlags(dw); } #if DBG == 1 static LONG _wgtAllocated = 0; //+--------------------------------------------------------------------------- // // Function: WgtAllocLock, public debug // // Synopsis: Tracking for WOWGlobalAllocLock16 // // History: 29-Nov-94 DrewB Created // //---------------------------------------------------------------------------- VPVOID WgtAllocLock(WORD wFlags, DWORD cb, HMEM16 *ph) { HMEM16 h; VPVOID vpv; vpv = WOWGlobalAllocLock16(wFlags, cb, &h); if (vpv != 0) { #ifdef WGT_TRACK if (WOWGlobalLockSize16(h, &cb) != 0) { _wgtAllocated += cb; WOWGlobalUnlock16(h); } else { thkDebugOut((DEB_WARN, "Unable to get size of allocated block 0x%04lX\n", h)); // This is a guess at how big a block Win16 will allocate _wgtAllocated += (cb+31) & 31; } #endif if (ph != NULL) { *ph = h; } } else { thkDebugOut((DEB_WARN, "Unable to allocate %d bytes of 16-bit memory\n", cb)); } return vpv; } //+--------------------------------------------------------------------------- // // Function: WgtUnlockFree, public // // Synopsis: Tracking for WOWGlobalUnlockFree16 // // History: 29-Nov-94 DrewB Created // //---------------------------------------------------------------------------- void WgtUnlockFree(VPVOID vpv) { HMEM16 h; DWORD cb; if (vpv == 0) { thkDebugOut((DEB_WARN, "Attempt to free NULL\n")); } else { #ifdef WGT_TRACK // Total hack, incorrect h = (HMEM16)(vpv >> 16); if (WOWGlobalLockSize16(h, &cb) != 0) { _wgtAllocated -= cb; WOWGlobalUnlock16(h); } else { thkDebugOut((DEB_WARN, "Unable to get size of allocated block 0x%04lX\n", h)); } #endif WOWGlobalUnlockFree16(vpv); } } //+--------------------------------------------------------------------------- // // Function: WgtDump, public // // Synopsis: Dumps global tracking information // // History: 29-Nov-94 DrewB Created // //---------------------------------------------------------------------------- void WgtDump(void) { if (_wgtAllocated != 0) { thkDebugOut((DEB_WARN, "%d bytes of 16-bit memory currently allocated\n", _wgtAllocated)); } } //+--------------------------------------------------------------------------- // // Function: ThkCallOutputFunctions, public // // Synopsis: thunked pass-thru to Ole32 CallOutputFunctions for 16-bit land // // History: 23-Jan-95 murthys Created // //---------------------------------------------------------------------------- void ThkCallOutputFunctions(const char * buffer, PVOID dummy1, PVOID dummy2) { CallOutputFunctions(buffer); } #endif // DBG == 1
[ "blindtiger@foxmail.com" ]
blindtiger@foxmail.com
d5f0d5f3202d7b9461631216a679dacbadf22579
7f2b587eb84ad364d2c8e6db3001ae845a4f40c8
/src/SqlData.cpp
e276d80423c2e1d6b40b9a3062213ab491333c5a
[]
no_license
yukina0102/Aigis_IR
74ba0684b980c14d868218fa5bf02e846fe7e488
0adf1a52d119a5d853a21a506bbc64f6a3dc5509
refs/heads/master
2021-01-10T01:10:29.484167
2016-02-28T19:24:46
2016-02-28T19:24:46
49,762,277
1
0
null
null
null
null
UTF-8
C++
false
false
3,693
cpp
#include "SqlData.h" unsigned int CSqlData::ColumnSize(void) { return Column.size(); } unsigned int CSqlData::RecordSize(void) { return Data.size(); } void CSqlData::Show(void) { //最初にカラム名を入れる for (uint i = 0; i < Column.size(); i++) { //_tprintf(_T(" %-*s"), getField(Column[i].name.c_str(), Column[i].maxLength), Column[i].name.c_str() ); //_tprintf(_T(" |")); _tprintf( _T("%s"), Column[i].name.descript((-1) * Column[i].maxLength).c_str() ); _tprintf(_T(" |")); } _tprintf(_T("\n")); //ラインを入れる for (uint i = 0; i < Column.size(); i++) { tstring line; line.append(Column[i].maxLength + 1, _T('-')); _tprintf(_T("%s-+"), line.c_str()); } _tprintf(_T("\n")); //データの表示 for (uint i = 0; i < Data.size(); i++) { for (uint j = 0; j < Data[i].size(); j++) { switch ( Data[i][j].which() ) { case TYPE_INTEGER: _tprintf(_T(" %*d"), Column[j].maxLength, Extract<INTEGER>( i, Column[j].name.c_str() ) ); break; case TYPE_TEXT: _tprintf( _T(" %s"), tstring(Extract<TEXT>(i, Column[j].name.c_str())).descript( (-1) * Column[j].maxLength).c_str() ); break; } _tprintf(_T(" |")); } _tprintf(_T("\n")); } } void CSqlData::Clear(void) { Column.clear(); Data.clear(); } void CSqlData::AddColumn(LPCTSTR cname, ColumnType ctype) { //Dataが入ってる場合はColumnの追加ができない if (Data.size() != 0) return; CIndex[cname] = Column.size(); ColumnData column = { cname, ctype }; Column.push_back(column); } void CSqlData::AddColumn(LPCTSTR cname, LPCTSTR ctype) { if (_tcsicmp( ctype, _T("INTEGER")) == 0) { AddColumn( cname, TYPE_INTEGER ); } else if (_tcsicmp(ctype, _T("TEXT")) == 0) { AddColumn(cname, TYPE_TEXT ); } } void CSqlData::CheckLength(void) { int i = Data.size() - 1; for (uint j = 0; j < Data[i].size(); j++) { int length = 0; //カラム名のサイズも計算に入れる if (j == 0) { length = wcswidth(Column[j].name.c_str(), _tcslen(Column[j].name.c_str())); } switch (Data[i][j].which()) { case TYPE_INTEGER: //文字列にして文字数チェック //length = std::to_wstring( Extract<INTEGER>(i, Column[j].name.c_str()) ).length(); length = to_tstring(Extract<INTEGER>(i, Column[j].name.c_str())).length(); break; case TYPE_TEXT: //length = _tcslen(Extract<TEXT>(i, Column[j].name.c_str())); length = wcswidth(Extract<TEXT>(i, Column[j].name.c_str()), _tcslen(Extract<TEXT>(i, Column[j].name.c_str()))); break; } Column[j].maxLength = length > Column[j].maxLength ? length : Column[j].maxLength; } } //void CSqlData::AddRecord(unsigned int datanum, .../*std::vector<tstring> record*/) //{ // //レコードデータ数がカラム数と違う場合はデータを追加しない // if (/*record.size()*/datanum != Column.size()) // return; // // // // //データの整合性をチェックするための一時保管配列 // //std::vector<tstring> trans; // // // va_list arg; // va_start(arg, datanum); // // for (unsigned int i = 0; i < datanum/*record.size()*/; i++) // { // // //Data.push_back(record[i]); // // // //_EXCEPTION_POINTERS* info; // //__try{ // // // //typeid(va_arg()); // // if (Column[i].type == TYPE_INTEGER) // { // Data.push_back(std::to_wstring(va_arg(arg, int))); // } // else if (Column[i].type == TYPE_TEXT) // { // Data.push_back(va_arg(arg, LPCTSTR)); // } // // //va_arg(arg, LPCTSTR); // // //} // /*__except (info = GetExceptionInformation(), EXCEPTION_EXECUTE_HANDLER) // { // va_end(arg); // return; // }*/ // } // // //Data = temp; // // // va_end(arg); //}
[ "yukina0102@gmail.com" ]
yukina0102@gmail.com
3a8df496bd94871da2d687477ef2b0f4285d62d7
5de42c4e14a7ddbc284a742c66cb01b230ba43ce
/codeforces/266/E.cpp
be9bc9258459bc712d4cd8f2ffa120ac850dcdb0
[]
no_license
NhatMinh0208/CP-Archive
42d6cc9b1d2d6b8c85e637b8a88a6852a398cc23
f95784d53708003e7ba74cbe4f2c7a888d29eac4
refs/heads/master
2023-05-09T15:50:34.344385
2021-05-04T14:25:00
2021-05-19T16:10:11
323,779,542
0
0
null
null
null
null
UTF-8
C++
false
false
3,567
cpp
/* A Submission by $%U%$ at time: $%Y%$-$%M%$-$%D%$ $%h%$:$%m%$:$%s%$ */ #include <bits/stdc++.h> using namespace std; #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; #define REP(i,n) for((i)=0;(i)<(int)(n);(i)++) #define foreach(c,itr) for(__typeof((c).begin()) itr=(c).begin();itr!=(c).end();itr++) #pragma comment(linker, "/stack:200000000") #pragma GCC optimize("O3,unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #define FILE_IN "input.txt" #define FILE_OUT "output.txt" #define ofile freopen(FILE_IN,"r",stdin);freopen(FILE_OUT,"w",stdout) #define fio ios::sync_with_stdio(0);cin.tie(0);cout.tie(0) #define nfio cin.tie(0);cout.tie(0) #define max(x,y) (((x)>(y))?(x):(y)) #define min(x,y) (((x)<(y))?(x):(y)) #define ord(a,b,c) ((a>=b)and(b>=c)) #define mod (ll(1000000007)) #define MAX 300001 #define mag 320 #define fi first #define se second #define pow2(x) (ll(1)<<x) #define pii pair<int,int> #define pll pair<ll,ll> #define piii pair<int,pii> #define For(i,__,___) for(int i=__;i<=___;i++) #define Rep(i,__,___) for(int i=__;i>=___;i--) #define ordered_set tree<long long,null_type,less<long long>,rb_tree_tag,tree_order_statistics_node_update> #define bi BigInt #define pi 3.1415926535897 typedef long long ll; //------------xúc xích normie tám muoi tám phan tram não----------// int n,m,a[100005],c[6][6],pw[6][100005],t[6][400005],lz[6][400005]; void build(int j,int i,int l,int r) { lz[j][i]=-1; if (l==r) { t[j][i]=(ll)pw[j][l]*a[l]%mod; return; } int mid=l+r>>1; build(j,i<<1,l,mid),build(j,i<<1|1,mid+1,r),t[j][i]=(t[j][i<<1]+t[j][i<<1|1])%mod; } void psd(int j,int i,int l,int r) { if (lz[j][i]!=-1) { int mid=l+r>>1,li=i<<1,ri=li|1; t[j][li]=(ll)lz[j][i]*(pw[j][mid]-pw[j][l-1])%mod; t[j][ri]=(ll)lz[j][i]*(pw[j][r]-pw[j][mid])%mod; lz[j][li]=lz[j][i],lz[j][ri]=lz[j][i],lz[j][i]=-1; } } int query(int j,int i,int l,int r,int x,int y) { if (x<=l&&y>=r) return t[j][i]; psd(j,i,l,r); int mid=l+r>>1; if (y<=mid) return query(j,i<<1,l,mid,x,y); if (x>mid) return query(j,i<<1|1,mid+1,r,x,y); return (query(j,i<<1,l,mid,x,y)+query(j,i<<1|1,mid+1,r,x,y))%mod; } void mdf(int j,int i,int l,int r,int x,int y,int z) { if (x<=l&&y>=r) { t[j][i]=(ll)z*(pw[j][r]-pw[j][l-1])%mod,lz[j][i]=z; return; } psd(j,i,l,r); int mid=l+r>>1; if (x<=mid) mdf(j,i<<1,l,mid,x,y,z); if (y>mid) mdf(j,i<<1|1,mid+1,r,x,y,z); t[j][i]=(t[j][i<<1]+t[j][i<<1|1])%mod; } int main() { fio; cin>>n>>m; pw[0][0]=1; for (int i=1;i<=n;i++) { cin>>a[i];pw[0][i]=1; for (int j=1;j<6;j++) pw[j][i]=(ll)pw[j-1][i]*i%mod; } for (int i=0;i<6;i++) { build(i,1,1,n),c[i][0]=1; for (int j=1;j<=n;j++) pw[i][j]=(pw[i][j]+pw[i][j-1])%mod; for (int j=1;j<=i;j++) c[i][j]=c[i-1][j-1]+c[i-1][j]; } while (m--) { char ch; cin>>ch; int x,y,z; cin>>x>>y>>z; if (ch=='?') { int ans=0; if (x==1) ans=query(z,1,1,n,1,y); else for (int i=0;i<=z;i++) if ((i^z)&1) ans=(ans-(ll)query(i,1,1,n,x,y)*(pw[z-i][x-1]-pw[z-i][x-2])%mod*c[z][i])%mod; else ans=(ans+(ll)query(i,1,1,n,x,y)*(pw[z-i][x-1]-pw[z-i][x-2])%mod*c[z][i])%mod; cout<<((ans+mod)%mod)<<endl; } else for (int i=0;i<6;i++) mdf(i,1,1,n,x,y,z); } }
[ "minhkhicon2468@gmail.com" ]
minhkhicon2468@gmail.com
c9af898334be3b1560b7de69fef24b38ae9c2bb8
477c8309420eb102b8073ce067d8df0afc5a79b1
/VTK/Graphics/vtkTessellatedBoxSource.h
00f1439d601511a2652cf74dd07a3440c997a08a
[ "BSD-3-Clause", "LicenseRef-scancode-paraview-1.2" ]
permissive
aashish24/paraview-climate-3.11.1
e0058124e9492b7adfcb70fa2a8c96419297fbe6
c8ea429f56c10059dfa4450238b8f5bac3208d3a
refs/heads/uvcdat-master
2021-07-03T11:16:20.129505
2013-05-10T13:14:30
2013-05-10T13:14:30
4,238,077
1
0
NOASSERTION
2020-10-12T21:28:23
2012-05-06T02:32:44
C++
UTF-8
C++
false
false
5,450
h
/*========================================================================= Program: Visualization Toolkit Module: vtkTessellatedBoxSource.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ // .NAME vtkTessellatedBoxSource - Create a polygonal representation of a box // with a given level of subdivision. // .SECTION Description // vtkTessellatedBoxSource creates a axis-aligned box defined by its bounds // and a level of subdivision. Connectivity is strong: points of the vertices // and inside the edges are shared between faces. In other words, faces are // connected. Each face looks like a grid of quads, each quad is composed of // 2 triangles. // Given a level of subdivision `l', each edge has `l'+2 points, `l' of them // are internal edge points, the 2 other ones are the vertices. // Each face has a total of (`l'+2)*(`l'+2) points, 4 of them are vertices, // 4*`l' are internal edge points, it remains `l'^2 internal face points. // // This source only generate geometry, no DataArrays like normals or texture // coordinates. #ifndef __vtkTessellatedBoxSource_h #define __vtkTessellatedBoxSource_h #include "vtkPolyDataAlgorithm.h" class VTK_GRAPHICS_EXPORT vtkTessellatedBoxSource : public vtkPolyDataAlgorithm { public: static vtkTessellatedBoxSource *New(); vtkTypeMacro(vtkTessellatedBoxSource,vtkPolyDataAlgorithm); virtual void PrintSelf(ostream& os, vtkIndent indent); // Description: // Set the bounds of the box. See GetBounds() for a detail description. // \pre xmin<=xmax && ymin<=ymax && zmin<zmax vtkSetVector6Macro(Bounds, double); // Description: // Bounds of the box in world coordinates. This a 6-uple of xmin,xmax,ymin, // ymax,zmin and zmax. Initial value is (-0.5,0.5,-0.5,0.5,-0.5,0.5), bounds // of a cube of length 1 centered at (0,0,0). Bounds are defined such that // xmin<=xmax, ymin<=ymax and zmin<zmax. // \post xmin<=xmax && ymin<=ymax && zmin<zmax vtkGetVector6Macro(Bounds, double); // Description: // Set the level of subdivision of the faces. // \pre positive_level: level>=0 vtkSetMacro(Level,int); // Description: // Level of subdivision of the faces. Initial value is 0. // \post positive_level: level>=0 vtkGetMacro(Level,int); // Description: // Flag to tell the source to duplicate points shared between faces // (vertices of the box and internal edge points). Initial value is false. // Implementation note: duplicating points is an easier method to implement // than a minimal number of points. vtkSetMacro(DuplicateSharedPoints, int); vtkGetMacro(DuplicateSharedPoints, int); vtkBooleanMacro(DuplicateSharedPoints, int); // Description: // Flag to tell the source to generate either a quad or two triangle for a // set of four points. Initial value is false (generate triangles). vtkSetMacro(Quads, int); vtkGetMacro(Quads, int); vtkBooleanMacro(Quads, int); protected: vtkTessellatedBoxSource(); ~vtkTessellatedBoxSource(); // Description: // Called by the superclass. Send the WHOLE_BOUNDING_BOX key. virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector); // Description: // Called by the superclass. Actual creation of the points and cells // happens here. virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outpuVector); void DuplicateSharedPointsMethod(double *bounds, vtkPoints *points, vtkCellArray *polys); void MinimalPointsMethod(double *bounds, vtkPoints *points, vtkCellArray *polys); // Description: // Compute the pointId of point (i,j) of face f. // Used by MinimalPointsMethod(). // \pre valid_face: f>=0 && f<6 // \pre valid_i: i>=0 && i<=(this->Level+1) // \pre valid_j: j>=0 && j<=(this->Level+1) vtkIdType LocalFacePointCoordinatesToPointId(int f, int i, int j); // Description: // Build one of the face of the box with some level of tessellation. // facePoints[0] is the lower-left point // facePoints[1] is the point along the first axis // facePoints[2] is the point along the second axis // \pre positive_id: firstPointId>=0 // \pre points_exists: points!=0 // \pre polys_exists: polys!=0 void BuildFace(vtkPoints *points, vtkCellArray *polys, vtkIdType firstPointId, double facePoints[3][3], int changed); double Bounds[6]; int Level; int DuplicateSharedPoints; int Quads; private: vtkTessellatedBoxSource(const vtkTessellatedBoxSource&); // Not implemented. void operator=(const vtkTessellatedBoxSource&); // Not implemented. }; #endif
[ "aashish.chaudhary@kitware.com" ]
aashish.chaudhary@kitware.com
66787ceef4cdd0577dd459c4b5d18f11457e6b37
6f874ccb136d411c8ec7f4faf806a108ffc76837
/code/VCSamples/VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/ResourceView.cpp
577fbcac21f2575f5a5bdd9c79968787a32dfd41
[ "MIT" ]
permissive
JetAr/ZDoc
c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435
e81a3adc354ec33345e9a3303f381dcb1b02c19d
refs/heads/master
2022-07-26T23:06:12.021611
2021-07-11T13:45:57
2021-07-11T13:45:57
33,112,803
8
8
null
null
null
null
UTF-8
C++
false
false
6,158
cpp
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (c) Microsoft Corporation. All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Microsoft Foundation Classes product. #include "stdafx.h" #include "VisualStudioDemo.h" #include "MainFrm.h" #include "ResourceView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CResourceViewBar CResourceViewBar::CResourceViewBar() { } CResourceViewBar::~CResourceViewBar() { } BEGIN_MESSAGE_MAP(CResourceViewBar, CDockablePane) ON_WM_CREATE() ON_WM_SIZE() ON_WM_CONTEXTMENU() ON_COMMAND(ID_EDIT_CUT, OnEditCut) ON_COMMAND(ID_EDIT_COPY, OnEditCopy) ON_COMMAND(ID_EDIT_PASTE, OnEditPaste) ON_COMMAND(ID_EDIT_CLEAR, OnEditClear) ON_WM_PAINT() ON_WM_SETFOCUS() END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CResourceViewBar message handlers int CResourceViewBar::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CDockablePane::OnCreate(lpCreateStruct) == -1) return -1; CRect rectDummy; rectDummy.SetRectEmpty(); // Create view: const DWORD dwViewStyle = WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | TVS_HASLINES | TVS_LINESATROOT | TVS_HASBUTTONS; if (!m_wndResourceView.Create(dwViewStyle, rectDummy, this, 3)) { TRACE0("Failed to create workspace view\n"); return -1; // fail to create } // Load view images: m_ResourceViewImages.Create(IDB_RESOURCE_VIEW, 16, 0, RGB(255, 0, 255)); m_wndResourceView.SetImageList(&m_ResourceViewImages, TVSIL_NORMAL); // Fill view context(dummy code, don't seek here something magic :-)): FillResourceView(); OnChangeVisualStyle(); return 0; } void CResourceViewBar::OnSize(UINT nType, int cx, int cy) { CDockablePane::OnSize(nType, cx, cy); if (CanAdjustLayout()) { m_wndResourceView.SetWindowPos(NULL, 1, 1, cx - 2, cy - 2, SWP_NOACTIVATE | SWP_NOZORDER); } } void CResourceViewBar::FillResourceView() { HTREEITEM hRoot = m_wndResourceView.InsertItem(_T("Hello resources"), 0, 0); m_wndResourceView.SetItemState(hRoot, TVIS_BOLD, TVIS_BOLD); HTREEITEM hFolder = m_wndResourceView.InsertItem(_T("Accelerator"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 1, 1, hFolder); m_wndResourceView.Expand(hRoot, TVE_EXPAND); hFolder = m_wndResourceView.InsertItem(_T("Dialog"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("IDD_ABOUTBOX"), 3, 3, hFolder); hFolder = m_wndResourceView.InsertItem(_T("Icon"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("IDR_HELLO"), 4, 4, hFolder); m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 4, 4, hFolder); m_wndResourceView.Expand(hFolder, TVE_EXPAND); hFolder = m_wndResourceView.InsertItem(_T("Menu"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("IDR_CONTEXT_MENU"), 5, 5, hFolder); m_wndResourceView.InsertItem(_T("IDR_HELLO"), 5, 5, hFolder); m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 5, 5, hFolder); m_wndResourceView.InsertItem(_T("IDR_POPUP_TOOLBAR"), 5, 5, hFolder); m_wndResourceView.Expand(hFolder, TVE_EXPAND); hFolder = m_wndResourceView.InsertItem(_T("String Table"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("String Table"), 6, 6, hFolder); hFolder = m_wndResourceView.InsertItem(_T("Toolbar"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 7, 7, hFolder); hFolder = m_wndResourceView.InsertItem(_T("Version"), 0, 0, hRoot); m_wndResourceView.InsertItem(_T("VS_VERSION_INFO"), 8, 8, hFolder); } void CResourceViewBar::OnContextMenu(CWnd* pWnd, CPoint point) { CTreeCtrl* pWndTree = (CTreeCtrl*) &m_wndResourceView; ASSERT_VALID(pWndTree); if (pWnd != pWndTree) { CDockablePane::OnContextMenu(pWnd, point); return; } if (point != CPoint(-1, -1)) { // Select clicked item: CPoint ptTree = point; pWndTree->ScreenToClient(&ptTree); UINT flags = 0; HTREEITEM hTreeItem = pWndTree->HitTest(ptTree, &flags); if (hTreeItem != NULL) { pWndTree->SelectItem(hTreeItem); } } pWndTree->SetFocus(); theApp.GetContextMenuManager()->ShowPopupMenu(IDR_POPUP_RESOURCE, point.x, point.y, this, TRUE); } void CResourceViewBar::OnEditCut() { // TODO: Add your command handler code here } void CResourceViewBar::OnEditCopy() { // TODO: Add your command handler code here } void CResourceViewBar::OnEditPaste() { // TODO: Add your command handler code here } void CResourceViewBar::OnEditClear() { // TODO: Add your command handler code here } void CResourceViewBar::OnPaint() { CPaintDC dc(this); // device context for painting CRect rectTree; m_wndResourceView.GetWindowRect(rectTree); ScreenToClient(rectTree); rectTree.InflateRect(1, 1); dc.Draw3dRect(rectTree, ::GetSysColor(COLOR_3DSHADOW), ::GetSysColor(COLOR_3DSHADOW)); } void CResourceViewBar::OnSetFocus(CWnd* pOldWnd) { CDockablePane::OnSetFocus(pOldWnd); m_wndResourceView.SetFocus(); } void CResourceViewBar::OnChangeVisualStyle() { m_ResourceViewImages.DeleteImageList(); UINT uiBmpId = theApp.m_bHiColorIcons ? IDB_RESOURCE_VIEW24 : IDB_RESOURCE_VIEW; CBitmap bmp; if (!bmp.LoadBitmap(uiBmpId)) { TRACE(_T("Can't load bitmap: %x\n"), uiBmpId); ASSERT(FALSE); return; } BITMAP bmpObj; bmp.GetBitmap(&bmpObj); UINT nFlags = ILC_MASK; nFlags |= (theApp.m_bHiColorIcons) ? ILC_COLOR24 : ILC_COLOR4; m_ResourceViewImages.Create(16, bmpObj.bmHeight, nFlags, 0, 0); m_ResourceViewImages.Add(&bmp, RGB(255, 0, 255)); m_wndResourceView.SetImageList(&m_ResourceViewImages, TVSIL_NORMAL); }
[ "126.org@gmail.com" ]
126.org@gmail.com
6b58ff8261cfd3eec5d234c843bda17b726df1ad
85b68d7e53e2a8e9ba19b37998a3a7160151f85e
/Frameworks/Leadtools.framework/Headers/Kernel/ltcrt.h
31be502f23e5bcef38fefe1da848f9840a894215
[]
no_license
dba11/Shoot-Prove
b73671a801856fcbd83c0c6a6dd6290e0e32a92c
531b73ee8f572fbb4607df218430b8be90d94420
refs/heads/master
2020-03-19T02:45:57.853704
2018-06-01T14:37:30
2018-06-01T14:37:30
135,658,754
0
0
null
null
null
null
UTF-8
C++
false
false
14,184
h
#if !defined(LTCRT_H) #define LTCRT_H #if defined(__cplusplus) #if defined(_MSC_VER) || defined(FOR_WINDOWS) || defined(FOR_WINRT) #if (_MSC_VER <=1200) || (_MSC_VER == 1310) #if defined(__cplusplus) #define L_USE_LTCRT_H #endif // #if defined(__cplusplus) #endif // #if (_MSC_VER <=1200) || (_MSC_VER == 1310) #else #define L_USE_LTCRT_H #endif // #if defined(FOR_WINDOWS) || defined(FOR_WINRT) #if defined(L_USE_LTCRT_H) #include <stdio.h> #include <time.h> #include <string.h> #include <stdarg.h> #if defined(_MSC_VER) #pragma warning(disable: 4710) // 'inline function' : function not expanded #include <tchar.h> #else #include <wchar.h> #endif // #if defined(_MSC_VER) #if defined(__GNUC__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-value" #endif // #if defined(__GNUC__) #if !defined (_countof) #define _countof(p) sizeof(p)/sizeof(p[0]) #endif // #if !defined (_countof) #define errno_t int static inline int sprintf_s(char* p1, size_t sizeOfBuffer, const char* format, ...) { UNREFERENCED_PARAMETER(sizeOfBuffer); int nRet= 0; va_list args; va_start(args,format); nRet = vsprintf(p1,format,args); strcpy(p1 + nRet, "\0"); va_end(args); return nRet; } static inline int sprintf_s(char* p1, const char* format, ...) { int nRet= 0; va_list args; va_start(args,format); nRet = vsprintf(p1,format,args); strcpy(p1 + nRet, "\0"); va_end(args); return nRet; } static inline int vsprintf_s(char* p1, size_t sizeOfBuffer, const char* format, va_list args) { UNREFERENCED_PARAMETER(sizeOfBuffer); int nRet= 0; nRet = vsprintf(p1,format,args); strcpy(p1 + nRet, "\0"); return nRet; } static inline int vsprintf_s(char* p1, const char* format, va_list args) { int nRet= 0; nRet = vsprintf(p1,format,args); strcpy(p1 + nRet, "\0"); return nRet; } #if defined(FOR_WINDOWS) static inline int _fcvt_s(char* buffer, size_t sizeInBytes, double value, int count, int*dec, int*sign) { UNREFERENCED_PARAMETER(sizeInBytes); buffer = _fcvt(value, count, dec, sign); return (buffer != NULL)? 1 : 0; } static inline int _gcvt_s(char*buffer, size_t sizeInBytes, double value, int digits) { UNREFERENCED_PARAMETER(sizeInBytes); _gcvt(value, digits, buffer); return (buffer != NULL)? 1 : 0; } #if !defined(__BORLANDC__) || !(__CODEGEARC__ >= 0x0680) static inline int vswprintf_s(wchar_t* p1, size_t sizeOfBuffer, const wchar_t* format, va_list args) { int nRet = 0; UNREFERENCED_PARAMETER(sizeOfBuffer); nRet = vswprintf(p1,format,args); wcscpy(p1 + nRet, L"\0"); return nRet; } #endif // #if !defined(__BORLANDC__) || !(__CODEGEARC__ >= 0x0680) static inline int vswprintf_s(wchar_t* p1, const wchar_t* format, va_list args) { int nRet= 0; nRet = vswprintf(p1,format,args); wcscpy(p1 + nRet, L"\0"); return nRet; } #else #define vswprintf_s vswprintf #define _snprintf snprintf #define memcpy_s memcpy static inline int vswprintf_s(wchar_t* p1, const wchar_t* format, va_list args) { return vswprintf(p1,0x7FFFFFFF,format,args); } static inline void memcpy_s(void* _Dst, size_t _DstSize, const void* _Src, size_t _MaxCount) { memcpy(_Dst, _Src, _MaxCount); } #endif // #if defined(FOR_WINDOWS) static inline int swprintf_s(wchar_t* p1, size_t sizeOfBuffer, const wchar_t* format, ...) { int nRet= 0; va_list args; va_start(args,format); nRet = vswprintf_s(p1, sizeOfBuffer, format, args); wcscpy(p1 + nRet, L"\0"); va_end(args); return nRet; } static inline int swprintf_s(wchar_t* p1, const wchar_t* format, ...) { int nRet= 0; va_list args; va_start(args,format); nRet = vswprintf_s(p1,format,args); wcscpy(p1 + nRet, L"\0"); va_end(args); return nRet; } #if defined(FOR_WINDOWS) static inline errno_t _itoa_s(int value, char* buffer, size_t sizeInCharacters, int radix) { UNREFERENCED_PARAMETER(sizeInCharacters); itoa(value, buffer, radix); return 1; } static inline errno_t _itoa_s(int value, char* buffer, int radix) { itoa(value, buffer, radix); return 1; } static inline errno_t _itow_s(int value, wchar_t* buffer, size_t sizeInCharacters, int radix) { UNREFERENCED_PARAMETER(sizeInCharacters); _itow(value, buffer, radix); return 1; } static inline errno_t _itow_s(int value, wchar_t* buffer, int radix) { _itow(value, buffer, radix); return 1; } static inline errno_t _ui64toa_s(unsigned __int64 value, char* buffer, size_t sizeInCharacters, int radix) { UNREFERENCED_PARAMETER(sizeInCharacters); _ui64toa(value, buffer, radix); return 1; } static inline errno_t _ui64tow_s(unsigned __int64 value, wchar_t* buffer, size_t sizeInCharacters, int radix) { UNREFERENCED_PARAMETER(sizeInCharacters); _ui64tow(value, buffer, radix); return 1; } static inline errno_t _ui64toa_s(unsigned __int64 value, char* buffer, int radix) { _ui64toa(value, buffer, radix); return 1; } static inline errno_t _ui64tow_s(unsigned __int64 value, wchar_t* buffer, int radix) { _ui64tow(value, buffer, radix); return 1; } #endif // #if defined(FOR_WINDOWS) static inline errno_t localtime_s(struct tm* _tm, const time_t* time) { struct tm* t = NULL; t = localtime(time); memcpy(_tm, t, sizeof(struct tm)); return 0; } #define strtok_s strtok_r #define wcstok_s std::wcstok static inline errno_t strcpy_s(char* strDestination, size_t sizeInBytes, const char* strSource) { UNREFERENCED_PARAMETER(sizeInBytes); return strcpy(strDestination, strSource) ? 1 : 0; } static inline errno_t strcpy_s(char* strDestination, const char* strSource) { return strcpy(strDestination, strSource) ? 1 : 0; } static inline errno_t wcscpy_s(wchar_t* strDestination, size_t sizeInWords, const wchar_t* strSource) { UNREFERENCED_PARAMETER(sizeInWords); return wcscpy(strDestination, strSource) ? 1 : 0; } static inline errno_t wcscpy_s(wchar_t* strDestination, const wchar_t* strSource) { return wcscpy(strDestination, strSource) ? 1 : 0; } static inline errno_t strcat_s(char* strDestination, size_t sizeInBytes, const char* strSource) { UNREFERENCED_PARAMETER(sizeInBytes); return strcat(strDestination, strSource) ? 1 : 0; } static inline errno_t strcat_s(char* strDestination, const char* strSource) { return strcat(strDestination, strSource) ? 1 : 0; } static inline errno_t wcscat_s(wchar_t* strDestination, size_t sizeInWords, const wchar_t* strSource) { UNREFERENCED_PARAMETER(sizeInWords); return wcscat(strDestination, strSource) ? 1 : 0; } static inline errno_t wcscat_s(wchar_t* strDestination, const wchar_t* strSource) { return wcscat(strDestination, strSource) ? 1 : 0; } #if defined(FOR_WINDOWS) && (_MSC_VER <=1200) static inline double _wtof(const wchar_t* str) { char* pmbbuf = (char*)malloc(MB_CUR_MAX); wcstombs(pmbbuf, str, MB_CUR_MAX); return atof(pmbbuf); } #endif // #if defined(FOR_WINDOWS) && (_MSC_VER <=1200) static inline size_t mbstowcs_s(size_t* convertedChars, wchar_t* wcstr, size_t sizeInWords, const char* mbstr, size_t count) { UNREFERENCED_PARAMETER(convertedChars); UNREFERENCED_PARAMETER(sizeInWords); return mbstowcs(wcstr, mbstr, count) != (size_t)-1 ? 0 : -1; } static inline size_t mbstowcs_s(size_t* convertedChars, wchar_t* wcstr, const char* mbstr, size_t count) { UNREFERENCED_PARAMETER(convertedChars); return mbstowcs(wcstr, mbstr, count) != (size_t)-1 ? 0 : -1; } static inline size_t wcstombs_s(size_t* convertedChars, char* mbstr, size_t sizeInBytes, const wchar_t* wcstr, size_t count) { UNREFERENCED_PARAMETER(convertedChars); UNREFERENCED_PARAMETER(sizeInBytes); return wcstombs(mbstr, wcstr, count) != (size_t)-1 ? 0 : -1; } static inline size_t wcstombs_s(size_t* convertedChars, char* mbstr, const wchar_t* wcstr, size_t count) { UNREFERENCED_PARAMETER(convertedChars); return wcstombs(mbstr, wcstr, count) != (size_t)-1 ? 0 : -1; } static inline errno_t strncpy_s(char* dest, size_t destsz, const char* src, size_t count) { UNREFERENCED_PARAMETER(destsz); strncpy(dest, src, count); return 0; } static inline errno_t _strupr_s(char *str, size_t numberOfElements) { UNREFERENCED_PARAMETER(numberOfElements); strupr(str); return 0; } static inline errno_t _strlwr_s(char *str, size_t numberOfElements) { UNREFERENCED_PARAMETER(numberOfElements); strlwr(str); return 0; } #if defined(FOR_WINDOWS) static inline errno_t _splitpath_s(const char* path, char* drive, size_t driveNumberOfElements, char* dir, size_t dirNumberOfElements, char* fname, size_t nameNumberOfElements, char* ext, size_t extNumberOfElements) { UNREFERENCED_PARAMETER(driveNumberOfElements); UNREFERENCED_PARAMETER(dirNumberOfElements); UNREFERENCED_PARAMETER(nameNumberOfElements); UNREFERENCED_PARAMETER(extNumberOfElements); return _splitpath(path, drive, dir, fname, ext); } static inline errno_t makepath_s(char *path, size_t sizeInBytes, const char *drive, const char *dir, const char *fname, const char *ext) { UNREFERENCED_PARAMETER(sizeInBytes); return _makepath_s(path, drive, dir, fname, ext); } #endif #define sscanf_s sscanf static inline errno_t wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_t count) { UNREFERENCED_PARAMETER(numberOfElements); wcsncpy(strDest, strSource, count); return 0; } #if defined(FOR_UNICODE) static inline errno_t _wcsupr_s(wchar_t* str, size_t numberOfElements) { UNREFERENCED_PARAMETER(numberOfElements); _wcsupr(str); return 0; } static inline errno_t _wcslwr_s(wchar_t* str, size_t numberOfElements) { UNREFERENCED_PARAMETER(numberOfElements); _wcslwr(str); return 0; } #endif #if defined(FOR_WINDOWS) static inline errno_t _wsplitpath_s(const wchar_t* path, wchar_t* drive, size_t driveNumberOfElements, wchar_t* dir, size_t dirNumberOfElements, wchar_t* fname, size_t nameNumberOfElements, wchar_t* ext, size_t extNumberOfElements) { UNREFERENCED_PARAMETER(driveNumberOfElements); UNREFERENCED_PARAMETER(dirNumberOfElements); UNREFERENCED_PARAMETER(nameNumberOfElements); UNREFERENCED_PARAMETER(extNumberOfElements); return _splitpath(path, drive, dir, fname, ext); } static inline errno_t _wmakepath_s(wchar_t* path, size_t sizeInWords, const wchar_t* drive, const wchar_t* dir, const wchar_t* fname, const wchar_t* ext) { UNREFERENCED_PARAMETER(sizeInWords); return _wmakepath(path, drive, dir, fname, ext); } #endif #if defined(_UNICODE) #define _tsplitpath_s _wsplitpath_s #define _tcscpy_s wcscpy_s #define _tcscat_s wcscat_s #define _tcsupr_s _wcsupr_s #define _stprintf_s swprintf_s #define _tcsncpy_s wcsncpy_s #define _tcslwr_s wcslwr_s #define _tmakepath_s _wmakepath_s #define _itot_s _itow_s #define _tcstok_s wcstok_s #define _ui64tot_s _ui64tow_s #define _tstof _wtof #define _snwprintf_s _snwprintf(p1,p3,p4) #define _vstprintf_s vswprintf_s #else #define _tsplitpath_s _splitpath_s #define _tcscpy_s strcpy_s #define _tcscat_s strcat_s #define _tcsupr_s _strupr_s #define _stprintf_s sprintf_s #define _tcslwr_s _strlwr_s #define _itot_s _itoa_s #define _tcstok_s strtok_s #define _ui64tot_s _ui64toa_s #define _tstof atof #define _tmakepath_s _makepath_s #define _vstprintf_s vsprintf_s #endif // #if defined(_UNICODE) #if defined(FOR_WINDOWS) && (_MSC_VER <=1200) #define _tstoi64 _ttoi64 #define _tstoi _ttoi #endif // #if defined(FOR_WINDOWS) && (_MSC_VER <=1200) #if defined(__GNUC__) #pragma GCC diagnostic pop #endif // #if defined(__GNUC__) #endif // #if defined(L_USE_LTCRT_H) #endif //#if defined(__cplusplus) #endif // #if !defined(LTCRT_H)
[ "smartdev727@gmail.com" ]
smartdev727@gmail.com
36912d08197a5d53ec4e6376618788572792070b
d24b37959f5f0bd7464be8291c5ca71f6295befe
/geant/fmsu/src/CellParameterisation.cc
f4a7f6232034a0b8dc41996a64247d012a596b90
[]
no_license
c-dilks/sims_mposka
090f85d6492b50f49a109f6163e1ccfe2e75c4a7
841e6d52c7b7f1d7ebc3a5938f6c4b7f5e77c030
refs/heads/master
2020-12-02T19:35:46.657253
2017-07-27T22:05:12
2017-07-27T22:05:12
96,363,283
0
0
null
null
null
null
UTF-8
C++
false
false
10,964
cc
#include "CellParameterisation.hh" #include "globals.hh" #include "G4VPhysicalVolume.hh" #include "G4ThreeVector.hh" #include "G4Box.hh" //BS #include "TVector3.h" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... CellParameterisation::CellParameterisation( G4int NoCells, G4int NoCellsX, G4double startX, // X of center of first G4double startY, // Y of center of first G4double startZ, // Z of center of first G4double spacingX, // X spacing of centers G4double spacingY, // Y spacing of centers G4double widthCell, G4double lengthCell) { fNoCells = NoCells; fNoCellsX=NoCellsX; fstartX=startX; fstartY=startY; fstartZ=startZ; spacingY=spacingX; fspacingX=spacingX; fwidthCell=widthCell; flengthCell=lengthCell; if( NoCells > 0 ){ if (fspacingX < widthCell) { G4Exception("CellParameterisation construction: Width>Spacing", "NotApplicable",FatalException,"Not Applicable"); } } cellgeo = new CellGeo(); // CellEtaL = new TH1D ("CellEtaL", "Cell Eta Position, Large",101,2.5,3.5); // CellEtaS = new TH1D ("CellEtaS", "Cell Eta Position, Small",101,3.,4.4); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... CellParameterisation::~CellParameterisation() { //if(cellgeo) delete cellgeo; // CJD (cellgeo defined in ../include/CellGeo.hh as extern CellGeo...) } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void CellParameterisation::ComputeTransformation (const G4int copyNo, G4VPhysicalVolume* physVol) const { G4double xp,yp,shift,leftNo,rowNo; G4int nstb,row,col; if(!strcmp(physVol->GetName(),"physiAlCellL")) { // bottom if(copyNo>=0 && copyNo<=19) { shift=7; leftNo=0; rowNo=0; } else if(copyNo>=20 && copyNo<=41) { shift=6; leftNo=20; rowNo=1; } else if(copyNo>=42 && copyNo<=65) { shift=5; leftNo=42; rowNo=2; } else if(copyNo>=66 && copyNo<=91) { shift=4; leftNo=66; rowNo=3; } else if(copyNo>=92 && copyNo<=119) { shift=3; leftNo=92; rowNo=4; } else if(copyNo>=120 && copyNo<=149) { shift=2; leftNo=120; rowNo=5; } else if(copyNo>=150 && copyNo<=181) { shift=1; leftNo=150; rowNo=6; } else if(copyNo>=182 && copyNo<=215) { shift=0; leftNo=182; rowNo=7; } else if(copyNo>=216 && copyNo<=249) { shift=0; leftNo=216; rowNo=8; } // middle top else if(copyNo>=250 && copyNo<=258) { shift=0; leftNo=250; rowNo=9; } else if(copyNo>=259 && copyNo<=267) { shift=25; leftNo=259; rowNo=9; } else if(copyNo>=268 && copyNo<=276) { shift=0; leftNo=268; rowNo=10; } else if(copyNo>=277 && copyNo<=285) { shift=25; leftNo=277; rowNo=10; } else if(copyNo>=286 && copyNo<=294) { shift=0; leftNo=286; rowNo=11; } else if(copyNo>=295 && copyNo<=303) { shift=25; leftNo=295; rowNo=11; } else if(copyNo>=304 && copyNo<=312) { shift=0; leftNo=304; rowNo=12; } else if(copyNo>=313 && copyNo<=321) { shift=25; leftNo=313; rowNo=12; } else if(copyNo>=322 && copyNo<=330) { shift=0; leftNo=322; rowNo=13; } else if(copyNo>=331 && copyNo<=339) { shift=25; leftNo=331; rowNo=13; } else if(copyNo>=340 && copyNo<=348) { shift=0; leftNo=340; rowNo=14; } else if(copyNo>=349 && copyNo<=357) { shift=25; leftNo=349; rowNo=14; } else if(copyNo>=358 && copyNo<=366) { shift=0; leftNo=358; rowNo=15; } else if(copyNo>=367 && copyNo<=375) { shift=25; leftNo=367; rowNo=15; } else if(copyNo>=376 && copyNo<=384) { shift=0; leftNo=376; rowNo=16; } else if(copyNo>=385 && copyNo<=393) { shift=25; leftNo=385; rowNo=16; } // middle top else if(copyNo>=394 && copyNo<=402) { shift=0; leftNo=394; rowNo=17; } else if(copyNo>=403 && copyNo<=411) { shift=25; leftNo=403; rowNo=17; } else if(copyNo>=412 && copyNo<=420) { shift=0; leftNo=412; rowNo=18; } else if(copyNo>=421 && copyNo<=429) { shift=25; leftNo=421; rowNo=18; } else if(copyNo>=430 && copyNo<=438) { shift=0; leftNo=430; rowNo=19; } else if(copyNo>=439 && copyNo<=447) { shift=25; leftNo=439; rowNo=19; } else if(copyNo>=448 && copyNo<=456) { shift=0; leftNo=448; rowNo=20; } else if(copyNo>=457 && copyNo<=465) { shift=25; leftNo=457; rowNo=20; } else if(copyNo>=466 && copyNo<=474) { shift=0; leftNo=466; rowNo=21; } else if(copyNo>=475 && copyNo<=483) { shift=25; leftNo=475; rowNo=21; } else if(copyNo>=484 && copyNo<=492) { shift=0; leftNo=484; rowNo=22; } else if(copyNo>=493 && copyNo<=501) { shift=25; leftNo=493; rowNo=22; } else if(copyNo>=502 && copyNo<=510) { shift=0; leftNo=502; rowNo=23; } else if(copyNo>=511 && copyNo<=519) { shift=25; leftNo=511; rowNo=23; } else if(copyNo>=520 && copyNo<=528) { shift=0; leftNo=520; rowNo=24; } else if(copyNo>=529 && copyNo<=537) { shift=25; leftNo=529; rowNo=24; } // top else if(copyNo>=538 && copyNo<=571) { shift=0; leftNo=538; rowNo=25; } else if(copyNo>=572 && copyNo<=605) { shift=0; leftNo=572; rowNo=26; } else if(copyNo>=606 && copyNo<=637) { shift=1; leftNo=606; rowNo=27; } else if(copyNo>=638 && copyNo<=667) { shift=2; leftNo=638; rowNo=28; } else if(copyNo>=668 && copyNo<=695) { shift=3; leftNo=668; rowNo=29; } else if(copyNo>=696 && copyNo<=721) { shift=4; leftNo=696; rowNo=30; } else if(copyNo>=722 && copyNo<=745) { shift=5; leftNo=722; rowNo=31; } else if(copyNo>=746 && copyNo<=767) { shift=6; leftNo=746; rowNo=32; } else if(copyNo>=768 && copyNo<=787) { shift=7; leftNo=768; rowNo=33; } xp = fstartX+(copyNo-leftNo+shift)*fspacingX; yp = fstartY+rowNo*fspacingX; // printf("large cell %d: (%f,%f)\n",copyNo,xp,yp); if((copyNo-leftNo+shift+1)<=17) nstb = 1; // south large else nstb = 2; // north large row = 33-rowNo; if(nstb==1) col = 16-(copyNo-leftNo+shift); else col = copyNo-leftNo+shift-17; cellgeo->SetCoord(copyNo,nstb,row,col); G4ThreeVector origin(xp,yp,0); physVol->SetTranslation(origin); physVol->SetRotation(0); TVector3 myvecbig( fabs(xp / cm) + 5.8/2., fabs(yp / cm) + 5.8/2, 700); TVector3 myvecsmall( fabs(xp / cm) - 5.8/2., fabs(yp / cm) - 5.8/2,700); /* Int_t EtaStartBin= CellEtaL->FindBin(myvecbig.Eta() ); //Note eta increases as distance to z axis decreases for constant z Int_t EtaEndBin= CellEtaL->FindBin(myvecsmall.Eta() ); for(Int_t i=EtaStartBin; i<=EtaEndBin; i++) { CellEtaL->AddBinContent(i); } */ // std::cout<<"Large Eta max =" << myvecsmall.Eta() << " and Eta min ="<< myvecbig.Eta() <<std::endl; } else if(!strcmp(physVol->GetName(),"physiAlCellS")) { // bottom if(copyNo>=0 && copyNo<=23) { shift=0; leftNo=0; rowNo=0; } else if(copyNo>=24 && copyNo<=47) { shift=0; leftNo=24; rowNo=1; } else if(copyNo>=48 && copyNo<=71) { shift=0; leftNo=48; rowNo=2; } else if(copyNo>=72 && copyNo<=95) { shift=0; leftNo=72; rowNo=3; } else if(copyNo>=96 && copyNo<=119) { shift=0; leftNo=96; rowNo=4; } else if(copyNo>=120 && copyNo<=143) { shift=0; leftNo=120; rowNo=5; } else if(copyNo>=144 && copyNo<=167) { shift=0; leftNo=144; rowNo=6; } // middle bottom else if(copyNo>=168 && copyNo<=174) { shift=0; leftNo=168; rowNo=7; } else if(copyNo>=175 && copyNo<=181) { shift=17; leftNo=175; rowNo=7; } else if(copyNo>=182 && copyNo<=188) { shift=0; leftNo=182; rowNo=8; } else if(copyNo>=189 && copyNo<=195) { shift=17; leftNo=189; rowNo=8; } else if(copyNo>=196 && copyNo<=202) { shift=0; leftNo=196; rowNo=9; } else if(copyNo>=203 && copyNo<=209) { shift=17; leftNo=203; rowNo=9; } else if(copyNo>=210 && copyNo<=216) { shift=0; leftNo=210; rowNo=10; } else if(copyNo>=217 && copyNo<=223) { shift=17; leftNo=217; rowNo=10; } else if(copyNo>=224 && copyNo<=230) { shift=0; leftNo=224; rowNo=11; } else if(copyNo>=231 && copyNo<=237) { shift=17; leftNo=231; rowNo=11; } // middle top else if(copyNo>=238 && copyNo<=244) { shift=0; leftNo=238; rowNo=12; } else if(copyNo>=245 && copyNo<=251) { shift=17; leftNo=245; rowNo=12; } else if(copyNo>=252 && copyNo<=258) { shift=0; leftNo=252; rowNo=13; } else if(copyNo>=259 && copyNo<=265) { shift=17; leftNo=259; rowNo=13; } else if(copyNo>=266 && copyNo<=272) { shift=0; leftNo=266; rowNo=14; } else if(copyNo>=273 && copyNo<=279) { shift=17; leftNo=273; rowNo=14; } else if(copyNo>=280 && copyNo<=286) { shift=0; leftNo=280; rowNo=15; } else if(copyNo>=287 && copyNo<=293) { shift=17; leftNo=287; rowNo=15; } else if(copyNo>=294 && copyNo<=300) { shift=0; leftNo=294; rowNo=16; } else if(copyNo>=301 && copyNo<=307) { shift=17; leftNo=301; rowNo=16; } // top else if(copyNo>=308 && copyNo<=331) { shift=0; leftNo=308; rowNo=17; } else if(copyNo>=332 && copyNo<=355) { shift=0; leftNo=332; rowNo=18; } else if(copyNo>=356 && copyNo<=379) { shift=0; leftNo=356; rowNo=19; } else if(copyNo>=380 && copyNo<=403) { shift=0; leftNo=380; rowNo=20; } else if(copyNo>=404 && copyNo<=427) { shift=0; leftNo=404; rowNo=21; } else if(copyNo>=428 && copyNo<=451) { shift=0; leftNo=428; rowNo=22; } else if(copyNo>=452 && copyNo<=475) { shift=0; leftNo=452; rowNo=23; } xp = fstartX+(copyNo-leftNo+shift)*fspacingX; yp = fstartY+rowNo*fspacingX; // printf("small cell %d: (%f,%f)\n",copyNo,xp,yp); if((copyNo-leftNo+shift+1)<=12) nstb = 3; // south small else nstb = 4; // north small row = 23-rowNo; if(nstb==3) col=11-(copyNo-leftNo+shift); else col = copyNo-leftNo+shift-12; cellgeo->SetCoord(copyNo,nstb,row,col); G4ThreeVector origin(xp,yp,0); physVol->SetTranslation(origin); physVol->SetRotation(0); TVector3 myvecbig( fabs(xp / cm) + 3.81/2., fabs(yp / cm) + 3.81/2, 700); TVector3 myvecsmall( fabs(xp / cm) - 3.81/2., fabs(yp / cm) - 3.81/2,700); /* Int_t EtaStartBin= CellEtaS->FindBin(myvecbig.Eta() ); //Note eta increases as distance to z axis decreases for constant z Int_t EtaEndBin= CellEtaS->FindBin(myvecsmall.Eta() ); for(Int_t i=EtaStartBin; i<=EtaEndBin; i++) { CellEtaS->AddBinContent(i); } */ } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void CellParameterisation::ComputeDimensions (G4Box& FMSCell, const G4int copyNo, const G4VPhysicalVolume* physVol) const { /* static int calledFirst = 1; if(calledFirst) { printf("<<<>>> CellParamaterisation::ComputeDimensions called\n"); calledFirst = 0; }; */ if(copyNo<-1) { }; G4double halfLength= flengthCell/2; G4double halfWidth= fwidthCell/2; FMSCell.SetXHalfLength(halfWidth); FMSCell.SetYHalfLength(halfWidth); FMSCell.SetZHalfLength(halfLength); // G4VPhysicalVolume* physiPhotoC=physVol->GetLogicalVolume()->GetDaughter(0); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
[ "christopher.j.dilks@gmail.com" ]
christopher.j.dilks@gmail.com
6640ccf1bf29573bc13ff743c7894a0fa6391f65
d6b4bdf418ae6ab89b721a79f198de812311c783
/intlpartnersmgt/include/tencentcloud/intlpartnersmgt/v20220928/model/DescribeBillSummaryByRegionResponse.h
4e843a0fe2f3edb8159e10fd52b06e5e04e9bc75
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp-intl-en
d0781d461e84eb81775c2145bacae13084561c15
d403a6b1cf3456322bbdfb462b63e77b1e71f3dc
refs/heads/master
2023-08-21T12:29:54.125071
2023-08-21T01:12:39
2023-08-21T01:12:39
277,769,407
2
0
null
null
null
null
UTF-8
C++
false
false
2,954
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TENCENTCLOUD_INTLPARTNERSMGT_V20220928_MODEL_DESCRIBEBILLSUMMARYBYREGIONRESPONSE_H_ #define TENCENTCLOUD_INTLPARTNERSMGT_V20220928_MODEL_DESCRIBEBILLSUMMARYBYREGIONRESPONSE_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/AbstractModel.h> #include <tencentcloud/intlpartnersmgt/v20220928/model/RegionSummaryOverviewItem.h> namespace TencentCloud { namespace Intlpartnersmgt { namespace V20220928 { namespace Model { /** * DescribeBillSummaryByRegion response structure. */ class DescribeBillSummaryByRegionResponse : public AbstractModel { public: DescribeBillSummaryByRegionResponse(); ~DescribeBillSummaryByRegionResponse() = default; CoreInternalOutcome Deserialize(const std::string &payload); std::string ToJsonString() const; /** * 获取Region details in the customer bill data totaled by region Note: This field may return null, indicating that no valid values can be obtained. * @return SummaryOverview Region details in the customer bill data totaled by region Note: This field may return null, indicating that no valid values can be obtained. * */ std::vector<RegionSummaryOverviewItem> GetSummaryOverview() const; /** * 判断参数 SummaryOverview 是否已赋值 * @return SummaryOverview 是否已赋值 * */ bool SummaryOverviewHasBeenSet() const; private: /** * Region details in the customer bill data totaled by region Note: This field may return null, indicating that no valid values can be obtained. */ std::vector<RegionSummaryOverviewItem> m_summaryOverview; bool m_summaryOverviewHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_INTLPARTNERSMGT_V20220928_MODEL_DESCRIBEBILLSUMMARYBYREGIONRESPONSE_H_
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
c283aa7f9d79a6e4565dc0afe0444aae316e0729
afbc34916ecb1106057973cadf915a1a38d3aabe
/zlpacmtraining/p1042/main.cpp
7e61013a5a81faf118a2174ac76f934c45de3944
[]
no_license
zlppassion/ACM-HDU
364a1083922e38eab32277c0eaa19ed4194bf507
95c2fdcf2a2ac29480123aea54efca9ae3d0e9f7
refs/heads/master
2020-04-09T04:22:23.822715
2019-10-23T12:24:12
2019-10-23T12:24:12
160,020,061
0
0
null
null
null
null
GB18030
C++
false
false
1,801
cpp
#include <iostream> #include<bits/stdc++.h> using namespace std; char c; char s1[62505],s2[62505]; int main() { int tot=1; while(scanf("%c",&c)!=EOF&&c!='E') { s1[tot]=c; s2[tot]=c; tot++; } int a1=(tot-1)/11,a2=(tot-1)/21; int t1=0,t2=0; for(int i=1; i<=a1; i++) { t1=(i-1)*11+1; int aa=0,bb=0; for(int j=t1; j<t1+11; j++) { if(s1[i]=='W') aa++; else bb++; } cout<<aa<<":"<<bb<<endl; } if(t1!=0) { t1=tot-1-(t1+11); int cc=0,dd=0; for(int i=t1;i<tot;i++) { if(s1[i]=='W') cc++; else dd++; } if(cc||dd) cout<<cc<<":"<<dd<<endl; cout<<endl; } else { int cc=0,dd=0; for(int i=t1;i<tot;i++) { if(s1[i]=='W') cc++; else dd++; } if(cc||dd) cout<<cc<<":"<<dd<<endl; cout<<endl; } for(int i=1; i<=a2; i++) { t2=(i-1)*21+1; int aa=0,bb=0; for(int j=t2; j<t2+21; j++) { if(s2[i]=='W') aa++; else bb++; } cout<<aa<<":"<<bb<<endl; } if(t2!=0) { t2=tot-1-(t2+21);//代表剩的个数 int hh=0,tt=0; for(int i=t2;i<tot;i++) { if(s1[i]=='W') hh++; else tt++; } if(hh||tt) cout<<hh<<":"<<tt<<endl; } else { int hh=0,tt=0; for(int i=0;i<tot;i++) { if(s1[i]=='W') hh++; else tt++; } if(hh||tt) cout<<hh<<":"<<tt<<endl; } cout<<endl; return 0; }
[ "2663935770@qq.com" ]
2663935770@qq.com
df4f2627bb6186ce0c96eb90a5dfa295e132da33
c8b7c98fa795ae51e298fc5f25597b669bbf8e36
/power2equa/power2equa/dis.cpp
fc568a98f9f0aa5cd78179b103bcada2ee2e4842
[]
no_license
B-chawapon/gitXcodehomework
3231d64be865a117f812b93aa51cd348c811b9fa
bf5554973d6ef4988d302b39c3954c9fd79a5ae7
refs/heads/master
2023-02-15T06:10:32.455077
2021-01-10T12:13:36
2021-01-10T12:13:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
221
cpp
#include<stdio.h> int main() { int i; int numf[3]; for(i=1;i<=3;i++) { scanf("%d",&numf[i]); } printf("%d\n",numf[1]); printf("%d",numf[2]); printf("%d",numf[3]); return 0; }
[ "chawapon2001@gmail.com" ]
chawapon2001@gmail.com
b5c7c42bc74f13daf188a5560266008175161196
39b90ba5502ac8df2c36236a81ba99a4eb02f5ec
/TimEng/CoreEngine.h
f32f734fe96c1fed14b6b8f23d1c4264daa65f3c
[]
no_license
timdng10/TimEng
aa94118733abcdf07c7972c6ccecf5454f2be01e
f3c91460756db2dc3334f7ad602e4348b623f812
refs/heads/master
2021-06-08T04:17:12.810038
2016-10-27T04:09:59
2016-10-27T04:09:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
860
h
#pragma once #include "InputManager.h" #include "Window.h" #include <memory> #include <string> namespace TimEng{ class IMainGame; class RenderingEngine; class CoreEngine { public: CoreEngine(std::string windowTitle, int windowWidth, int windowHeight, unsigned int flags, IMainGame* game); ~CoreEngine(); void run(); void onSDLEvent(SDL_Event& evnt); const float getFps() const { return m_fps; } RenderingEngine* getRenderingEngine() const { return m_renderingEngine.get(); } private: void checkInput(); IMainGame* m_game; bool m_isRunning = false; float m_fps = 0.0f; int m_windowWidth; int m_windowHeight; unsigned int m_windowFlags; std::string m_windowTitle; std::unique_ptr<RenderingEngine> m_renderingEngine; std::unique_ptr<InputManager> m_inputManager = std::make_unique<InputManager>(); }; }
[ "tdng@umass.edu" ]
tdng@umass.edu
f27f07a5452ae0e0dfc76b84440a3cfd78fc4a51
b17f2e626386162f1cfda33f7ffa61e436425d51
/hw6 BinarySearchTree/BinarySearchTree.h
3b55a0bdb673e2389282c4b08b809f39f9e92749
[]
no_license
NorrisKhoo/PIC-10C-Homework-Code
e87f801bc61cb53cb129721419aebf566d6826e9
f132f9375991256df6b448bd809112eac55baa77
refs/heads/master
2021-01-10T15:51:35.141846
2016-03-14T03:29:37
2016-03-14T03:29:37
53,769,369
0
0
null
null
null
null
UTF-8
C++
false
false
2,085
h
/** @file binarysearchtree.h @brief This file contains the declarations for the BinarySearchTree class Functionality has been expanded from the default code provided by the book */ #ifndef BINARYSEARCHTREE_H #define BINARYSEARCHTREE_H #include <iostream> #include "TreeNode.h" #include "TreeIterator.h" /** @class BinarySearchTree @brief The BinarySearchTree class is designed to create a Binary Seach Tree of int values The BinarySearchTree class contains a pointer to its root TreeNode object (which in turn contains pointers to its left, right and parent neighbors connecting all within the system). Functions have been included that allow the insertion of new int values, the deletion of int values, determine whether an int value exists within the system and provide the smallest/largest int value of the BinarySearchTree object. The copy swap idiom has been implemented and a recursive destructor is included which cycles through the TreeNode objects. The BinarySearchTree class has friendship with the TreeIterator class allowing the prior to access its variables particularly for the begin() and end() functions */ class BinarySearchTree { public: BinarySearchTree(); BinarySearchTree(const BinarySearchTree& copy); TreeNode* node_copy(const TreeNode* copy); void set_parent(TreeNode* child); void swap(BinarySearchTree& other); BinarySearchTree& operator=(BinarySearchTree copy); void insert(int data); void erase(int data); int count(int data) const; void print() const; int smallest(); int largest(); TreeIterator begin(); TreeIterator end(); void recursive_destructor(TreeNode* node); /** The BinarySearchTree destructor calls recursive_destructor on the root so that starting from the origin, it may cycle to all TreeNodes both to the left and right of the root calling delete. Virtual keyword included to enable future polymorphism */ virtual ~BinarySearchTree() { recursive_destructor(root); } private: TreeNode* root; friend class TreeIterator; }; #endif #pragma once
[ "norriskhoo@gmail.com" ]
norriskhoo@gmail.com
31ff82cd47e6dfe68f3703c571ca4e89f794fbe2
a59b6f32561a82855f963e7278d2c8c81235a555
/studio/curve-test/main.cc
98a51e51492bed90f94a29f03fea16b6ff0f081e
[]
no_license
shdwdln/Naiad-Clients
8731a31e45e2d8db1a9f5e89758dcc5e1aac1a4c
a2bb08ffb33ec8e1599a11536148c11efb558e46
refs/heads/master
2021-01-25T07:49:24.259309
2012-02-05T11:03:02
2012-02-05T11:03:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,608
cc
// ----------------------------------------------------------------------------- // // main.cc // // Main. // // Copyright (c) 2009 Exotic Matter AB. All rights reserved. // // This material contains the confidential and proprietary information of // Exotic Matter AB and may not be disclosed, copied or duplicated in // any form, electronic or hardcopy, in whole or in part, without the // express prior written consent of Exotic Matter AB. This copyright notice // does not imply publication. // // ----------------------------------------------------------------------------- #include "NsParameter.h" #include "NsCurveGrid.h" #include "NsCurveKeyframe.h" #include "NsCurveItem.h" #include "NsCurveScene.h" #include "NsCurveViewer.h" //#include "NsCurveCamera.h" #include <QApplication> #include <QtDebug> //#include <QGLWidget> //#include <QtOpenGL> #include <cstdlib> // std::abort //#include <iostream> #include <vector> #include <string> #include <limits> // TMP: For testing. #include "em_curve_factory.h" #include "em_time_value.h" #include "em_curve.h" void curveParseTest() { // Testing a couple of invalid curve strings, exceptions // should be thrown (and caught). const std::string crvStr[] = { std::string("~1[0:0 -1:0.2 3:-7.4 2:1.4]"), // Valid std::string("~5[0:0 1:0 2:0]"), // Invalid order std::string("1[0:0 1:0 2:0]"), // Missing '~' std::string("~10:0 1:0 2:0]"), // Missing '[' std::string("~1[0:0 1:0 2:0"), // Missing ']' std::string("~1[]"), // Empty std::string("~1[0:0 1fg:89]"), // Test stringstream std::string("~1[0:0 1:0 2:0 1:2.3]"), // Duplicate keys std::string("~1[0:0 7:-5 2:0 1:2.3] ] ]"), // Strange syntax std::string("~1[0:0 7,-5 2.0 1.2:3.4]") // Invalid keyframes }; for(int i = 0; i < 10; ++i) { try { qDebug() << "[Input]: \"" << crvStr[i].c_str() << "\""; em::time_value* tv = em::crv_fact::instance().create(crvStr[i]); qDebug() << "[Output]: \"" << tv->str().c_str() << "\"\n"; delete tv; } catch( std::exception& ex ) { qDebug() << ex.what() << "\n"; } } } void parseCLArgs(int argc, char* argv[], std::vector<std::string>* strVec) { if( 1 < argc && 0 != strVec ) { for(int i = 1; i < argc; ++i) { qDebug() << "Arg[" << i << "]: \"" << argv[i] << "\""; const std::string argStr(argv[i]); const std::string::size_type sepPos(argStr.find_first_of(':')); const std::string prmStr(argStr.substr(0, sepPos)); const std::string valStr(argStr.substr( sepPos + 1, std::string::npos)); //std::istringstream iss(val_str); if( std::string("curve") == prmStr ) { strVec->push_back(valStr); } } } } int main(int argc, char* argv[]) { QApplication application(argc, argv); // Create a "dummy" parameter outside the CurveEditor. // In Naiad, the CurveEditor would update this parameter // through commands, which would be created through NsNaiad. std::string prmString("~3[-40:33.2 0:0 25:-7.4 82:12.4]"); NsParameter param("Camera", "PosX", em::crv_fact::instance().create(prmString)); NsCurveScene crvScene; QGraphicsItem *grid = new NsCurveGrid(); // QGraphicsItem *dot = // new QGraphicsEllipseItem(25.0, 25.0, 10.0, 10.0, grid); crvScene.addItem(grid); // crvScene.addItem(new NsCurveKeyframe()); crvScene.addItem( new NsCurveItem("", "", em::crv_fact::instance().create(prmString))); //crvScene.addText("Hello World!"); //crvScene.addRect(0.0, 0.0, 100.0, 50.0); NsCurveViewer crvView(&crvScene); crvView.setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate); crvView.show(); // Process command line args. std::vector<std::string> strVec; parseCLArgs(argc, argv, &strVec); curveParseTest(); return QApplication::exec(); // std::vector<NsParameter> prmVec(strVec.size()); // for(std::vector<std::string>::size_type i = 0; i < strVec.size(); ++i) // { // try // { // prmVec[i].setValue(em::crv_fact::instance().create(strVec[i])); // //crvView.addParameter(prmVec[i]); // } // catch( std::exception& ex ) // { // std::cerr << ex.what() << "\n"; // } // } // double min_time(std::numeric_limits<double>::max()); // double max_time(-std::numeric_limits<double>::max()); // double min_val(std::numeric_limits<double>::max()); // double max_val(-std::numeric_limits<double>::max()); // // for(std::vector<std::string>::size_type i = 0; i < strVec.size(); ++i) // { // std::cerr << "Curve[" << i << "]: \"" << str_vec[i] << "\" [Input]\n"; // em::linear_curve* lin_crv(); // // NsParameter prm; // // if( !prm.curve().parse(str_vec[i]) ) // { // std::abort(); // } // // if( 0 != prm.curve().first() && 0 != prm.curve().last() ) // { // min_time = std::min<double>(min_time, prm.curve().first()->time()); // max_time = std::max<double>(max_time, prm.curve().last()->time()); // min_val = std::min<double>(min_val, prm.curve().first()->value()); // max_val = std::max<double>(max_val, prm.curve().last()->value()); // } // // std::cerr << "Curve[" << i << "]: " << prm.curve() << " [Internal]\n"; // std::cerr << "Curve[" << i << "]: \"" // << prm.curve().str() << "\" [Output]\n"; // // prm_vec.push_back(prm); // // crvView.addParameter(&prm_vec.back()); // } // // std::cerr << "Time: [" << min_time << ", " << max_time << "]\n"; // std::cerr << "Value: [" << min_val << ", " << max_val << "]\n"; // return QApplication::exec(); } //scalar::matrix4d mvp(cam.modelview()*cam.projection()); //std::cerr << mvp; //std::cerr << "Det: " << determinant(mvp) << "\n\n"; ////m1 = scalar::matrix4d::identity; //scalar::invert(&mvp); //std::cerr << "Inverse:\n" << mvp << "\n\n"; //scalar::matrix2d m2( // 1.0, 2.9, // 1.0, 2.0); //std::cerr << m2 << "\n"; //scalar::invert(&m2); //std::cerr << m2 << "\n"; //core::timer total_timer; // Open log file. // //core::log::instance().buf().setf(std::ios::fixed, std::ios::floatfield); //core::log::instance().buf().precision(config::default_io_precision); // if( !core::log::instance().open(config::default_log_fname) ) // { // Failure opening log file. // // // std::abort(); // } // Window with OpenGL context. // // gl_window win; // gl_window::parameters win_p; // Use default values. // if( !win.open(win_p) ) { std::abort(); } // Failure opening window. // Viewport. // // gl_viewport vp( // scalar::vec2<int>(0, 0), // scalar::vec2<int>(win.params().width, win.params().height)); // Camera, positioned such that z = 0 is in the middle of // near- and far planes. // // scalar::vec3d cam_pos(scalar::vec3d::origin); // cam_pos.z = 0.5*(config::default_cam_near + config::default_cam_far); // gl_ortho_camera cam( // -1.0, 1.0, // -1.0, 1.0, // config::default_cam_near, config::default_cam_far, // cam_pos); // vp.set_cam(&cam); // Attach camera to viewport. // win.add_viewport(vp); // Attach viewport to window. // Renderer, created after the OpenGL context. // // gl_renderer ren; // if( !ren.init_gl() ) { std::abort(); } // Initializing OpenGL. // Read curve from file. // // while( win.is_open() ) // { // Main loop. // // // ren.pre_render(); // ren.set_cam(cam); // ren.render_grid(); // //ren.render_curve(); // // ren.post_render(); // ren.swap_buffers(); // // win.check_events(); // } // core::log::instance().buf() // << "Total time: " << total_timer.elapsed_ms() << " [ms]\n"; // core::log::instance().flush(); // Shutting down... // // win.close(); // core::log::instance().close();
[ "marcus@graviton.(none)" ]
marcus@graviton.(none)
b67c981e13445c11fef24325268d05b2a706722d
baba16ca9599406591b2969dc2e8f30c23e63eb3
/src/positionsocket/SocketWriteStream.h
f9e954c80701820757e3106c2184695ef21d26e5
[]
no_license
hpenagos/Oat
d94b6f398036d9d9fa462d28a27416e7d8a6919e
e51c1fbf0f44b70c22e4dc6504516eb06b32f789
refs/heads/master
2021-01-21T02:58:50.406078
2015-12-23T01:06:17
2015-12-23T01:06:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,452
h
//****************************************************************************** //* File: SocketWriteStream.h //* Author: Jon Newman <jpnewman snail mit dot edu> //* //* Copyright (c) Jon Newman (jpnewman snail mit dot edu) //* All right reserved. //* This file is part of the Oat project. //* This is free software: you can redistribute it and/or modify //* it under the terms of the GNU General Public License as published by //* the Free Software Foundation, either version 3 of the License, or //* (at your option) any later version. //* This software is distributed in the hope that it will be useful, //* but WITHOUT ANY WARRANTY; without even the implied warranty of //* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //* GNU General Public License for more details. //* You should have received a copy of the GNU General Public License //* along with this source code. If not, see <http://www.gnu.org/licenses/>. //****************************************************************************** #ifndef RAPIDJSON_SOCKETWRITESTREAM_H #define RAPIDJSON_SOCKETWRITESTREAM_H #include <cstdio> #include <boost/asio/ip/udp.hpp> #include <rapidjson/rapidjson.h> RAPIDJSON_NAMESPACE_BEGIN /** Wrapper of C network ouput stream using sendto(). * This class implements the stream concept for the RapidJSON * library */ template <class S, class E> // Socket, Endpoint class SocketWriteStream { public: using Ch = char; SocketWriteStream(S* socket, const E& endpoint, char* buffer, size_t bufferSize) : socket_(socket) , endpoint_(endpoint) , buffer_(buffer) , bufferEnd_(buffer + bufferSize) , current_(buffer_) { RAPIDJSON_ASSERT(socket_ != nullptr); } void Put(char c) { if (current_ >= bufferEnd_) Flush(); *current_++ = c; } void PutN(char c, size_t n) { size_t avail = static_cast<size_t>(bufferEnd_ - current_); while (n > avail) { std::memset(current_, c, avail); current_ += avail; Flush(); n -= avail; avail = static_cast<size_t>(bufferEnd_ - current_); } if (n > 0) { std::memset(current_, c, n); current_ += n; } } void Flush() { if (current_ != buffer_) { socket_->send_to(boost::asio::buffer(buffer_, static_cast<size_t>(current_ - buffer_)), endpoint_); current_ = buffer_; } } // Not implemented char Peek() const { RAPIDJSON_ASSERT(false); return 0; } char Take() { RAPIDJSON_ASSERT(false); return 0; } size_t Tell() const { RAPIDJSON_ASSERT(false); return 0; } char* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } size_t PutEnd(char*) { RAPIDJSON_ASSERT(false); return 0; } // Prohibit copy constructor & assignment operator. SocketWriteStream(const SocketWriteStream&) = delete; SocketWriteStream& operator=(const SocketWriteStream&) = delete; private: S* socket_; const E endpoint_; char* buffer_; char* bufferEnd_; char* current_; }; // Specialized versions of PutN() with memset() for better performance. template <> inline void PutN(SocketWriteStream < boost::asio::ip::udp::socket, boost::asio::ip::udp::endpoint>& stream, char c, size_t n) { stream.PutN(c, n); } RAPIDJSON_NAMESPACE_END #endif /* RJSOCKETWRITESTREAM_H */
[ "jpnewman@mit.edu" ]
jpnewman@mit.edu
3c2fdc34b18599ffacdf5aed136b287fb23ef3a2
8dcf1479ce569ffad7b607dd3d43115e3c8ebc41
/DaQinBot/Source/MapTools.h
f763cf884869ca04816489a93091535ea1537dca
[]
no_license
liongis/DaQin
3d628aa481a4fcaa72582728851341863dece6bb
f851984c34b60da2bfa51baa3355e69153a617d3
refs/heads/master
2020-03-30T20:39:39.900596
2018-12-12T07:59:15
2018-12-12T07:59:15
151,597,967
8
0
null
null
null
null
GB18030
C++
false
false
3,199
h
#pragma once #include <BWTA.h> #include <vector> #include "Common.h" #include "DistanceMap.h" // Keep track of map information, like what tiles are walkable or buildable. namespace UAlbertaBot { struct ChokeData { int width; bool isRamp; BWAPI::TilePosition highElevationTile; bool requiresMineralWalk; BWAPI::Unit firstMineralPatch; BWAPI::Unit secondMineralPatch; ChokeData(const BWEM::ChokePoint* choke) : width(0) , isRamp(false) , highElevationTile(BWAPI::TilePosition(choke->Center())) , requiresMineralWalk(false) , firstMineralPatch(nullptr) , secondMineralPatch(nullptr) {}; }; class MapTools { const size_t allMapsSize = 40; // store this many distance maps in _allMaps std::map<BWAPI::TilePosition, DistanceMap> _allMaps; // a cache of already computed distance maps std::vector< std::vector<bool> > _terrainWalkable; // walkable considering terrain only std::vector< std::vector<bool> > _walkable; // walkable considering terrain and neutral units std::vector< std::vector<bool> > _buildable; std::vector< std::vector<bool> > _depotBuildable; bool _hasIslandBases; MapTools(); void setBWAPIMapData(); // reads in the map data from bwapi and stores it in our map format BWTA::BaseLocation *nextExpansion(bool hidden, bool wantMinerals, bool wantGas); public: static MapTools & Instance(); int getGroundTileDistance(BWAPI::TilePosition from, BWAPI::TilePosition to); int getGroundTileDistance(BWAPI::Position from, BWAPI::Position to); int getGroundDistance(BWAPI::Position from, BWAPI::Position to); int closestBaseDistance(BWTA::BaseLocation * base, std::vector<BWTA::BaseLocation*> bases); // Pass only valid tiles to these routines! bool isTerrainWalkable(BWAPI::TilePosition tile) const { return _terrainWalkable[tile.x][tile.y]; }; bool isWalkable(BWAPI::TilePosition tile) const { return _walkable[tile.x][tile.y]; }; bool isBuildable(BWAPI::TilePosition tile) const { return _buildable[tile.x][tile.y]; }; bool isDepotBuildable(BWAPI::TilePosition tile) const { return _depotBuildable[tile.x][tile.y]; }; bool isBuildable(BWAPI::TilePosition tile, BWAPI::UnitType type) const; const std::vector<BWAPI::TilePosition> & getClosestTilesTo(BWAPI::TilePosition pos); const std::vector<BWAPI::TilePosition> & getClosestTilesTo(BWAPI::Position pos); void drawHomeDistanceMap(); BWAPI::TilePosition getNextExpansion(bool hidden, bool wantMinerals, bool wantGas); BWAPI::Position getDistancePosition(BWAPI::Position start, BWAPI::Position end, double dist); BWAPI::Position getExtendedPosition(BWAPI::Position start, BWAPI::Position end, double dist); // center---圆心坐标, radius---圆半径, sp---圆外一点, rp1,rp2---切点坐标 void getCutPoint(BWAPI::Position center, double radius, BWAPI::Position sp, BWAPI::Position & rp1, BWAPI::Position & rp2); //获取指定出生点位的外范围坐标集 std::vector<BWAPI::Position> calculateEnemyRegionVertices(BWTA::BaseLocation * baseLocation); bool hasIslandBases() const { return _hasIslandBases; }; }; }
[ "liongis@163.com" ]
liongis@163.com
cb30a81ecd87192a14b1630a17fd9a2088dac829
cbadd1f5c74fa0fa396212dcba7f734ed3d9c85b
/algorithm/baekjoon/math1/10757.cpp
f39a04fee567751f049e7e69fb8546326b12c3ba
[]
no_license
denishong/gongbu
a872e89763112393e9cdee9d4c8871ea92d8fa60
7a6e0b6bedc9548d2241b5e01daf25c481866bca
refs/heads/master
2023-07-10T19:00:34.221539
2023-06-24T05:46:10
2023-06-24T05:46:10
161,889,684
0
0
null
null
null
null
UTF-8
C++
false
false
1,042
cpp
#include <bits/stdc++.h> using namespace std; char A[10002]; char B[10002]; char res[10003]; int carry = 0; int length = 0; void InputData(){ cin >> A >> B; } void reverse(char arr[]){ int len = strlen(arr); for(int i=0; i<len/2; i++){ char temp = arr[i]; arr[i] = arr[len -i -1]; arr[len -i -1] = temp; } } void Solve(){ int sum = 0, temp; char chA, chB; reverse(A); reverse(B); int sizeA = strlen(A); int sizeB = strlen(B); if( sizeA > sizeB){ length = sizeA; }else{ length = sizeB; } for(int i=0; i<length; i++){ if( sizeA >= i) chA = (A[i]-'0'); else chA = 0; if( sizeB >= i) chB = (B[i]-'0'); else chB = 0; sum = chA + chB + carry; carry = sum /10; res[i] = sum % 10 + '0'; } if( carry == 1) res[length] = '1'; reverse(res); cout << res << endl; } int main(){ InputData(); Solve(); return 0; }
[ "0330sisy@naver.com" ]
0330sisy@naver.com
70ea3d1bafb46540341d2e005c66c126ff6e9ea7
c592cad9432b5f6cee92f0edeffcc218c6e7f9e2
/tdutils/td/utils/port/rlimit.h
c47773a21b951adf7742107b90876f7fdf239a98
[ "BSL-1.0", "JSON", "LicenseRef-scancode-unknown-license-reference" ]
permissive
giuseppeM99/tdlight
d9548c80908789327ad1904bb36202ae1224e240
b47fab11cd7dddbb2829ef1830007632332b717b
refs/heads/master
2023-02-01T07:07:59.572403
2020-12-02T22:31:03
2020-12-02T22:31:03
321,060,665
0
0
BSL-1.0
2020-12-13T12:33:13
2020-12-13T12:33:13
null
UTF-8
C++
false
false
572
h
// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "td/utils/common.h" #include "td/utils/Status.h" namespace td { enum class ResourceLimitType { NoFile }; Status set_resource_limit(ResourceLimitType type, uint64 value, uint64 max_value = 0); Status set_maximize_resource_limit(ResourceLimitType type, uint64 value); } // namespace td
[ "levlam@telegram.org" ]
levlam@telegram.org
9fb1832fe303b371a39ba259e6b1a48481f1581f
47ff8543c73dab22c7854d9571dfc8d5f467ee8c
/BOJ/1946/1946.cpp
98da85e138f23813fd17c544e4e30146de519e91
[]
no_license
eldsg/BOJ
4bb0c93dc60783da151e685530fa9a511df3a141
6bd15e36d69ce1fcf208d193d5e9067de9bb405e
refs/heads/master
2020-04-16T02:18:55.808362
2017-11-28T11:02:37
2017-11-28T11:02:37
55,879,791
2
0
null
null
null
null
UTF-8
C++
false
false
525
cpp
#include<cstdio> #include<cstdlib> #include<vector> #include<algorithm> using namespace std; int main(){ int testcase; scanf("%d", &testcase); while (testcase--){ vector< pair<int, int> > v; int size, count = 0, min = 10000000, a, b; scanf("%d", &size); for (int i = 0; i < size; i++){ scanf("%d %d", &a, &b); v.push_back(make_pair(a, b)); } sort(v.begin(), v.end()); for (int i = 0; i < size; i++){ if (min > v[i].second){ count++; min = v[i].second; } } printf("%d\n", count); } }
[ "kgm0219@gmail.com" ]
kgm0219@gmail.com
fc52cea094f2338dc26552830fe9ae7e830c5e69
d16c1798cd61ffcf2f2e9df04c7e78b281e4db0b
/client/Simple/template/Classes/AppDelegate.cpp
467a1b49e32c761398dee3f8e38a04b31ef109d1
[]
no_license
LighterTeam/Lighter4
c0d3ffe9ae89bc97e2cb844c71c665f5e3e1fb2e
e3e0dcc54c652f2481bfe6ea66d61c2e98ff74fe
refs/heads/master
2016-09-05T12:31:36.413361
2013-11-14T10:05:52
2013-11-14T10:05:52
14,165,124
2
2
null
null
null
null
GB18030
C++
false
false
2,757
cpp
#include "cocos2d.h" #include "CCEGLView.h" #include "AppDelegate.h" #include "SimpleAudioEngine.h" #include "ScriptingCore.h" #include "TSEngine\TSScriptJS.h" #include "generated/jsb_cocos2dx_auto.hpp" #include "generated/jsb_cocos2dx_extension_auto.hpp" #include "jsb_cocos2dx_extension_manual.h" #include "cocos2d_specifics.hpp" #include "js_bindings_chipmunk_registration.h" #include "js_bindings_system_registration.h" #include "jsb_opengl_registration.h" #include "TSConnect.h" #include "TSMainScene.h" #include "TSEngine/TSEvent.h" using namespace CocosDenshion; USING_NS_CC; AppDelegate::AppDelegate() { } AppDelegate::~AppDelegate() { SimpleAudioEngine::end(); } bool AppDelegate::applicationDidFinishLaunching() { // initialize director CCDirector *pDirector = CCDirector::sharedDirector(); pDirector->setOpenGLView(CCEGLView::sharedOpenGLView()); CCSize screenSize = CCEGLView::sharedOpenGLView()->getFrameSize(); CCSize designSize = CCSizeMake(640, 480); CCEGLView::sharedOpenGLView()->setDesignResolutionSize(designSize.width, designSize.height, kResolutionNoBorder); // turn on display FPS pDirector->setDisplayStats(true); // set FPS. the default value is 1.0/60 if you don't call this pDirector->setAnimationInterval(1.0 / 60); ScriptingCore* sc = ScriptingCore::getInstance(); sc->addRegisterCallback(register_all_cocos2dx); sc->addRegisterCallback(register_all_cocos2dx_extension); sc->addRegisterCallback(register_cocos2dx_js_extensions); sc->addRegisterCallback(register_all_cocos2dx_extension_manual); sc->addRegisterCallback(jsb_register_chipmunk); sc->addRegisterCallback(JSB_register_opengl); sc->start(); // 初始化TSJS.注册Log函数 和 发包函数 CCScriptEngineProtocol *pEngine = ScriptingCore::getInstance(); CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine); TSScriptJS::GetSingleTon()->Init(); ScriptingCore::getInstance()->runScript("Template-jsb.js"); TSConnect::GetSingleTon()->initSocket(); // 初始化服务器连接 TSEvent::GetSingleTon()->JSON_RegistEvent("ConnectGateWay", (void*)TSConnect::GetSingleTon(), (TpInstEventJsonFun)&TSConnect::TSEventConnectGateWay); return true; } // This function will be called when the app is inactive. When comes a phone call,it's be invoked too void AppDelegate::applicationDidEnterBackground() { CCDirector::sharedDirector()->stopAnimation(); SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic(); } // this function will be called when the app is active again void AppDelegate::applicationWillEnterForeground() { CCDirector::sharedDirector()->startAnimation(); SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic(); }
[ "spiritring@gmail.com" ]
spiritring@gmail.com
fec99163a0775b10c8848e4da24361d40992f89c
a1a8b69b2a24fd86e4d260c8c5d4a039b7c06286
/build/iOS/Preview/include/Uno.Net.Dns.h
0ff0344e4cb4a15b1e578e5201b6094884bb18f2
[]
no_license
epireve/hikr-tute
df0af11d1cfbdf6e874372b019d30ab0541c09b7
545501fba7044b4cc927baea2edec0674769e22c
refs/heads/master
2021-09-02T13:54:05.359975
2018-01-03T01:21:31
2018-01-03T01:21:31
115,536,756
0
0
null
null
null
null
UTF-8
C++
false
false
968
h
// This file was generated based on /usr/local/share/uno/Packages/Uno.Net.Sockets/1.4.3/Dns.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Uno{namespace Net{struct Dns;}}} namespace g{namespace Uno{namespace Net{struct IPAddress;}}} namespace g{ namespace Uno{ namespace Net{ // public sealed class Dns :16 // { uType* Dns_typeof(); void Dns__ctor__fn(Dns* __this); void Dns__GetHostAddresses_fn(uString* hostNameOrAddress, uArray** __retval); void Dns__GetHostAddressesImpl_fn(uString* hostNameOrAddress, uArray** __retval); void Dns__GetLocalAddresses_fn(uArray** __retval); void Dns__New1_fn(Dns** __retval); struct Dns : uObject { void ctor_(); static uArray* GetHostAddresses(uString* hostNameOrAddress); static uArray* GetHostAddressesImpl(uString* hostNameOrAddress); static uArray* GetLocalAddresses(); static Dns* New1(); }; // } }}} // ::g::Uno::Net
[ "i@firdaus.my" ]
i@firdaus.my
d7674763b78900389d081904c5b4baf793c19587
34e1b919acad942a608d77d740c4c0f38868ad6e
/lib/systems/costs/rnlqsensorcost.h
a726e8c8277f74d8ed7f53eb1b0bf2d636f02e9e
[]
no_license
jhu-asco/gcop
b79d990e062c91307cd648210ccd28115d1e7035
cba7f12c491e91974f62f9f831d2115979c8289f
refs/heads/master
2021-06-30T08:39:12.248526
2021-06-07T15:54:28
2021-06-07T15:54:28
34,272,770
25
8
null
2021-06-07T15:54:29
2015-04-20T16:35:52
C++
UTF-8
C++
false
false
1,705
h
#ifndef GCOP_RNLQSENSORCOST_H #define GCOP_RNLQSENSORCOST_H #include "lqsensorcost.h" #include "rn.h" #include "system.h" namespace gcop { using namespace Eigen; /** * Linear-quadratic cost over a vector space \f$ \mathbb R^n \f$ */ template <int _nx = Dynamic, int _nu = Dynamic, int _np = Dynamic, int _ng = Dynamic, int _nz = Dynamic> class RnLqSensorCost : public LqSensorCost< Matrix<double, _nx, 1>, _nx, _nu, _np, _ng, Matrix<double, _nz, 1>, _nz> { typedef Matrix<double, _nx, 1> Vectornd; typedef Matrix<double, _nu, 1> Vectorcd; typedef Matrix<double, _np, 1> Vectormd; typedef Matrix<double, _nz, 1> Vectorrd; typedef Matrix<double, _nz, _nz> Matrixrd; typedef Matrix<double, _nz, _nx> Matrixrnd; typedef Matrix<double, _nz, _nu> Matrixrcd; typedef Matrix<double, _nz, _np> Matrixrmd; public: /** * Linear-quadratic cost on a vector space. Use this constructor only for fixed-size * initialization, i.e. RnLqCost<n,c>(tf, xf, ...) * @param diag are the R,S,P matrices diagonal? (true by default) */ RnLqCost(System<Vectornd, _nx, _nu, _np> &sys, Manifold<Vectorrd, _nz> &Z, bool diag = true); }; template <int _nx, int _nu, int _np, int _ng, int _nz> RnLqSensorCost<_nx, _nu, _np, _ng, _nz>::RnLqCost(System<Vectornd, _nx, _nu, _np> &sys, Manifold<Vectorrd, _nz> &Z, bool diag) : LqSensorCost<Matrix<double, _nx, 1>, _nx, _nu, _np, _ng, Matrix<double, _nz, 1>, _nz>(sys, Z, diag) { assert(_nx > 0); assert(_nu >= 0); } } #endif
[ "garimella.gowtham74@gmail.com" ]
garimella.gowtham74@gmail.com
031b824566fc9133f8160cc619ff5465ec599846
37b6016c1e61afb8581960ba385acafc5b5986a7
/Entraineur/Entraineur.cpp
f2838e45ffa1f6f73ba4e8d9bdd4deca876a5414
[]
no_license
maperr/inf1995
5162c03a501d3bb6a3842b2a553cfb669bd4c637
ba4c34c077331913c49d3fda653f007cea833cf3
refs/heads/master
2021-01-22T02:58:39.935173
2015-01-02T20:50:11
2015-01-02T20:50:11
28,562,943
0
0
null
null
null
null
UTF-8
C++
false
false
26,675
cpp
/**************************************************************************** * Fichier: Entraineur.cpp * Auteur: Maxime Perusse, Anas Balboul, Nam Nguyen & Kim Piché * Date: Avril 2014 * Description: Programme main de l'entraineur ****************************************************************************/ #define F_CPU 8000000UL #include <avr/io.h> #include <util/delay.h> #include <avr/interrupt.h> #include "../includes/LED.h" #include "../includes/roue.h" #include "../includes/timer_materiel.h" #include "../includes/timer_logiciel.h" #include "../includes/boutonEnfonce.h" #include "../includes/transmissionUART.h" #include "../includes/memoire_24.h" #include "../includes/son.h" #include "../includes/capteur_distance.h" #include "../includes/lcm_so1602dtr_m_fw.h" #include "../includes/customprocs.h" #include "../includes/can.h" #define DEMO_DDR DDRC // Data Direction Register' AVR occupé par l'aff. #define DEMO_PORT PORTC // Port AVR occupé par l'afficheur using namespace std; // Enum du capteur enum capteurIR { Gauche, GaucheCentre, Centre, Droite, DroiteCentre, Tout, Rien }; capteurIR directionCapteur; // Création d'un objet capteurIR // Enum des états du trajet enum deplacementRobot { aller, transfert, retour, aller2, stop }; uint16_t secondes; // Secondes qui seront affichées sur le LCD à la fin uint16_t minutes; // Minutes qui seront affichées sur le LCD à la fin char doublepoint =':'; // Charactère à afficher sur le LCD à la fin timer_materiel chrono; // Création d'un objet timer_matériel, le chronomètre /**************************************************************************** * Fonction: ISR(TIMER2_COMPA_vect) * Description: Interruption pour le chronomètre * Paramètres: TIMER2_COMPA_vect : l'interruption pour timer2 * Remarque: Routine d'interruption ****************************************************************************/ ISR(TIMER2_COMPA_vect) { // Augmenter les secondes à chaque cent centième de seconde if (chrono.getCentiemesSecondes() == 99) { chrono.incSecondes(); } else chrono.incCentiemesSecondes(); TCNT2 = 0; } volatile uint16_t compteurSon; // Création du compteur pour le son /**************************************************************************** * Fonction: ISR(TIMER0_COMPB_vect) * Description: Interruption pour le son * Paramètres: TIMER0_COMPB_vect : l'interruption pour timer0b * Remarque: Routine d'interruption ****************************************************************************/ ISR(TIMER0_COMPB_vect) { // on utilise la note 80 : 830Hz // on est en mode toggle // donc 830 fois 2 cycles pour 1 seconde if (compteurSon >= 830 * 2) { sonOff(); } else compteurSon++; } /**************************************************************************** * Fonction: high_level() * Description: Genere un signal cadencé qui oscille a 38kHz ****************************************************************************/ void high_level() { TCNT0 = 0; // le timer OCR0A = 104; // le registre de comparaison avec le timer 0 // mode CTC du timer 0 avec horloge divisee par 1 // interruption après la duree specifiee TCCR0A |= _BV(COM0A0) | _BV(WGM01); TCCR0B |= _BV(CS00); TIMSK0 |= _BV(OCIE0A); } /**************************************************************************** * Fonction: low_level() * Description: Arrete le timer et mets les registres a leur valeur par defaut * C'est comme envoyer un signal a frequence nulle ****************************************************************************/ void low_level() { TIMSK0 = 0; // desactiver les interruptions TCCR0A = 0; // registres avec valeurs par defaut TCCR0B = 0; PORTB &= ~_BV(4); // met le pin de la sortie de OC0B a 0 } /**************************************************************************** * Fonction: send_one() * Description: Envoi un 1 selon le protocole RC5 ****************************************************************************/ void send_one() { low_level(); _delay_us(842); high_level(); _delay_us(842); } /**************************************************************************** * Fonction: send_zero() * Description: Envoi un 0 selon le protocole RC5 ****************************************************************************/ void send_zero() { high_level(); _delay_us(842); low_level(); _delay_us(842); } /**************************************************************************** * Fonction: gauche(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) * Description: fonction apellee lorsque le capteur infrarouge n'a que * son capteur de gauche actif (la ligne se trouve a la gauche du robot) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * bool detection : presence ou non de l'athlete a ses cotes * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void gauche(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) { int8_t deltaV = 0; // variable qui modifie la vitesse du robot if (detection == false) // si l'athlete est derriere deltaV = 60; // entraineur ralentit, pour se laisser rejoindre else // si l'athlete est devant deltaV = -7; // entraineur accelere, pour le depasser // Mode aller if((etatRobot==aller) || (etatRobot==aller2)) roue(100 + deltaV, 150 + deltaV, true, true); // tourne legerement a droite // Mode retour else if(etatRobot==retour) roue(150 + deltaV, 100 + deltaV, true, true); // tourne legerement a gauche // Compteur toutOKcompteur=true; // une incrementation de compteur est possible } /**************************************************************************** * Fonction: droite(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) * Description: fonction apellee lorsque le capteur infrarouge n'a que son * capteur de droite actif (la ligne se trouve a la droite du robot) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * bool detection : presence ou non de l'athlete a ses cotes * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void droite(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) { int8_t deltaV = 0; // variable qui modifie la vitesse du robot if (detection == false) // si l'athlete est derriere deltaV = 60; // entraineur ralentit, pour se laisser rejoindre else // si l'athlete est devant deltaV = -7; // entraineur accelere, pour le depasser //Mode aller if(etatRobot==aller || etatRobot==aller2) roue(100 + deltaV, 150 + deltaV, true, true); // tourne legerement a droite //Mode retour else if(etatRobot==retour) roue(150 + deltaV, 100 + deltaV,true,true); // tourne legerement a gauche // Compteur toutOKcompteur=true; // une incrementation de compteur est possible } /**************************************************************************** * Fonction: rien(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) * Description: fonction apellee lorsque le capteur infrarouge n'a aucun * capteur actif (le robot ne trouve plus la ligne) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * bool detection : presence ou non de l'athlete a ses cotes * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void rien(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) { int8_t deltaV = 0; // variable qui modifie la vitesse du robot if (detection == false) // si l'athlete est derriere deltaV = 60; // entraineur ralentit, pour se laisser rejoindre else // si l'athlete est devant deltaV = -7; // entraineur accelere, pour le depasser // Mode aller if(etatRobot==aller || etatRobot==aller2) roue(130 + deltaV,100 + deltaV,true,true); // tourne legerement a droite // Mode retour else if(etatRobot==retour) roue(100 + deltaV, 130 + deltaV,true,true); // tourne legerement a gauche // Compteur toutOKcompteur=true; // une incrementation de compteur est possible } /**************************************************************************** * Fonction: centre(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) * Description: fonction apellee lorsque le capteur infrarouge n'a que son * capteur du centre actif (le robot se trouve sur la ligne) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * bool detection : presence ou non de l'athlete a ses cotes * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void centre(const deplacementRobot &etatRobot, bool &toutOKcompteur, bool detection) { int8_t deltaV = 0; // variable qui modifie la vitesse du robot if (detection == false) // si l'athlete est derriere deltaV = 60; // entraineur ralentit, pour se laisser rejoindre else // si l'athlete est devant deltaV = -7; // entraineur accelere, pour le depasser // Mode aller if(etatRobot==aller || etatRobot==aller2) roue(90 + deltaV, 150 + deltaV, true, true); // tourne rapidement a gauche // Mode retour else if(etatRobot==retour) roue(150 + deltaV, 90 + deltaV,true,true); // tourne rapidement a droite // Compteur toutOKcompteur=true; // une incrementation de compteur est possible } /**************************************************************************** * Fonction: gaucheCentre(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) * Description: fonction apellee lorsque le capteur infrarouge a le * capteur du centre et celui de gauche actif (le robot se troube legerement a droite de la ligne) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * uint8_t &compteur : compteur permettant de connaitre la position du robot sur la ligne * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void gaucheCentre(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) { // Mode aller if(etatRobot==aller || etatRobot==aller2) roue(110,160,true,true); // tourne legerement a gauche // Mode retour else if(etatRobot==retour) roue(120,110,true,true); // tourne legerement a droite } /**************************************************************************** * Fonction: droiteCentre(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) * Description: fonction apellee lorsque le capteur infrarouge a le * capteur du centre et celui de droite actif (le robot se trouve legerement a droite de la ligne) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * uint8_t &compteur : compteur permettant de connaitre la position du robot sur la ligne * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void droiteCentre(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) { // Mode aller if(etatRobot==aller || etatRobot==aller2) roue(110,120,true,true); // tourne legerement a droite // Mode retour else if(etatRobot==retour) roue(160,110,true,true); // tourne legerement a gauche } /**************************************************************************** * Fonction: tout(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) * Description: fonction apellee lorsque le capteur infrarouge a les 3 * capteurs actif (le robot se sur une ligne d'incrementation) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * uint8_t &compteur : compteur permettant de connaitre la position du robot sur la ligne * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void tout(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) { // Mode aller et retour roue(120,120,true,true); // avance tout droit // Compteur if(toutOKcompteur==true) // on s'assure que le capteur infrarouge du tick precedent n'etait pas un tout, { toutOKcompteur=false; // evite l'incrementation infinie compteur++; } } /**************************************************************************** * Fonction: tourner180(const deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) * Description: fonction apellee lorsque le capteur infrarouge a les 3 * capteurs actif (le robot se sur une ligne d'incrementation) * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * uint8_t &compteur : compteur permettant de connaitre la position du robot sur la ligne * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void tourner180(deplacementRobot &etatRobot, bool &toutOKcompteur, uint8_t &compteur) { toutOKcompteur = true; // incrementation possible roue(120,120,true,true); _delay_ms(1100); // depasser la ligne darrivee pour tourner ensuite //Mode aller if(etatRobot == aller){ roue(150,5,true,false); // un petit pousse pour roue droite _delay_ms(500); while((PINA & 0x40)) { roue(160,160,true,false); } roue(150,150,false,true); //repositionnement _delay_ms(200); roue (50,50,true,true); _delay_ms(100); while(PINA & 0x04) roue (150,150,true,true); _delay_ms(400); eteindreMoteur(); etatRobot = transfert; // le robot est pret pour le transfert de donnees a l'athlete } //Mode retour else if(etatRobot==retour){ roue(5,150,false,true); // un petit pousse pour roue gauche _delay_ms(500); while((PINA & 0x04)) { roue(160,160,false,true); } roue(150,150,true,false); //repositionnement _delay_ms(200); roue (50,50,true,true); _delay_ms(100); etatRobot = aller2; // le robot est dans son dernier sprint! }// fin else if compteur=0; // on recommence le trajet sur la ligne, on reinitialise donc le compteur de position } /**************************************************************************** * Fonction: deplacementDepart(const deplacementRobot &etatRobot) * Description: fonction apellee au debut du trajet. Vu que le robot doit etre centré au départ, * cette fonction s'assure qu'il se positionne a doire de la ligne * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void deplacementDepart(const deplacementRobot &etatRobot) { while(!(PINA & 0x04) && !(PINA & 0x10) && !(PINA & 0x40)) // tout roue (100,100,true,true); // avance _delay_ms(50); while(!(PINA & 0x01) && !(PINA & 0x10) && !(PINA & 0x40)) // tout roue (100,100,true,true); // avance if(etatRobot==aller || etatRobot==aller2){ while(PINA & 0x04) // si non gauche roue(130,255,true,true); // tourner a droite while(!(PINA & 0x04)) // si gauche roue(130,130,true,true); // avancer droit } else if(etatRobot==retour){ while(PINA & 0x40) // si non droite roue(255,140,true,true); // tourner a gauche while(!(PINA & 0x40)) // si droite roue(130,130,true,true); // avancer droit } } /**************************************************************************** * Fonction: testCapteur(bool &toutOKcompteur, uint8_t &compteur,deplacementRobot &etatRobot, uint8_t bits[], bool detection) * Description: fonction qui regarde l'etat du capteur infrarouge * Paramètres: deplacementRobot &etatRobot : l'etat present du robot * bool &toutOKcompteur : variable qui s'assure que l'incrementation du compteur de ligne se fait bien * uint8_t &compteur : compteur permettant de connaitre la position du robot sur la ligne * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void testCapteur(bool &toutOKcompteur, uint8_t &compteur,deplacementRobot &etatRobot, uint8_t bits[], bool detection) { if(compteur!=6) { if(!(PINA & 0x04)&& (PINA & 0x10) && (PINA & 0x40)) { gauche(etatRobot, toutOKcompteur, detection); } else if((PINA & 0x04)&& !(PINA & 0x10) && (PINA & 0x40)) { centre(etatRobot, toutOKcompteur, detection); } else if((PINA & 0x04)&& (PINA & 0x10) && !(PINA & 0x40)) { droite(etatRobot, toutOKcompteur, detection); } else if(!(PINA & 0x04)&& !(PINA & 0x10) && (PINA & 0x40)) { gaucheCentre(etatRobot, toutOKcompteur, compteur); } else if((PINA & 0x04)&& !(PINA & 0x10) && !(PINA & 0x40)) { droiteCentre(etatRobot, toutOKcompteur, compteur); } else if(!(PINA & 0x04)&& !(PINA & 0x10) && !(PINA & 0x40)) { tout(etatRobot, toutOKcompteur, compteur); } else if((PINA & 0x04)&& (PINA & 0x10) && (PINA & 0x40)) { rien(etatRobot, toutOKcompteur, detection); } } else if(etatRobot == aller || etatRobot == retour) tourner180(etatRobot,toutOKcompteur, compteur); else if (etatRobot == aller2) etatRobot = stop; } /**************************************************************************** * Fonction: detectionPoteau(uint8_t &compteur, char &test, char &test2, uint8_t obstacles[]) * Description: fonction qui determine la position des obstacles * Paramètres: char &test : character a afficher sur le LCD pour s'assurer que le robot a bien capté le premier obstacle * char &test2 : character a afficher sur le LCD pour s'assurer que le robot a bien capté le deuxieme obstacle * uint8_t obstacles[] : * uint8_t &compteur : compteur permettant de connaitre la position du robot sur la ligne * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ void detectionPoteau(uint8_t &compteur, char &test, char &test2, uint8_t obstacles[]) { capteur_distance_GP2D12 gp2d12; if(compteur==4 && obstacles[1]==0) { // position du deuxieme couple d'obstacle (a la 4e incrementation de ligne pleine) obstacle poteau12 = gp2d12.detectionObstable(); // on detecte l'obstacle if (poteau12 == PRES) { // par defaut, l'obstacle est loin, on change la valeur seulement s'il est pres obstacles[1]=1; // le poteau est pres } } if(compteur==2 && obstacles[0]==0) { // position du premier couple d'obstacle (a la 2e incrementation de ligne pleine) obstacle poteau34 = gp2d12.detectionObstable(); // on detecte l'obstacle if (poteau34 == PRES) { // par defaut, l'obstacle est loin, on change la valeur seulement s'il est pres obstacles[0]=1; // le poteau est pres } } //test if (obstacles[0]) test='P'; // P pour pres else test='L'; // L pour loin if (obstacles[1]) test2='P'; else test2='L'; } /**************************************************************************** * Fonction: detectionAthlete(bool pres) * Description: fonction qui determine si l'athlete est a cote de l'entraineur et * qui determine si l'entraineur doit utiliser son capteur * de distance de gauche ou de droite pour suivre l'athlete * Paramètres: bool pres : vrai -> l'athlete est a gauche, faux -> l'athlete est a droite * Retour: bool : vrai -> l'athlete est au meme niveau que l'entraineut, faux -> l'entraineur a de l'avance * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ bool detectionAthlete(bool pres) { if (pres) { capteur_distance_GP2D120 gp2d120; return gp2d120.detectionRobotPres(); } else { capteur_distance_GP2D12 gp2d12; return gp2d12.detectionRobotLoin(); } } /**************************************************************************** * Fonction: main() * Description: fonction principale de l'entraineur * Remarque: Notre robot ne suit pas la ligne avec le capteur du milieu, * il est constamment a droite de la ligne et la "cogne" continuellement ****************************************************************************/ int main() { DDRA |= _BV(3) | _BV(5); DDRB |= _BV(1) | _BV(3) | _BV(4) | _BV(5); DDRC = 0xff; // broche C en entier en mode sortie pour l'écran //DDRD est géré par la fonction roues char test; // tests d'obstacles char test2; LCM disp(&DEMO_DDR, &DEMO_PORT); //objet disp pour affichage LCD capteur_distance_GP2D120 gp2d120; capteur_distance_GP2D12 gp2d12; bool detection=true; // bool pour choisir le capteur bool toutOKcompteur=true; // bool pour activer compteur uint8_t compteur=0; // le compteur representant la position du robot sur son trajet uint8_t obstacles[2]={0,0}; // true pour P2-P1 (premiers poteaux pour athlete, deuxieme pour entraineur) // et P4-P3 (deuxieme pour athlete, premier pour entraineur) // true pcq plus difficile de capter les poteaux loins (true pour loin, false pour pres) uint8_t bits[14] = {1, 1, // bits de depart 0, // bit de toggle 0, 1, 0, 0, 1, // bits d'adresses 1, 0, 0, 0, 0, 1}; // bits de donnees roue(255,255,true,true); // moteur eteint au depart _delay_ms(1000); uint8_t compteurPresent=0; deplacementRobot etatRobot = aller; // etat initial est l'aller deplacementDepart(etatRobot); // positionnment a droite de la ligne for(;;) { switch(etatRobot) // choisir la detection (capteur gauche si robot pres, capteur droit si robot loin ou stop) { case(retour): detection = detectionAthlete(true); testCapteur(toutOKcompteur, compteur,etatRobot, bits, detection); if(compteur != compteurPresent) disp<<compteur; // affichage pour s'assurer du bon fonctionnement compteurPresent=compteur; break; case(aller2): detection=detectionAthlete(false); testCapteur(toutOKcompteur, compteur,etatRobot, bits, detection); if(compteur != compteurPresent) disp<<compteur; // affichage pour s'assurer du bon fonctionnement compteurPresent=compteur; break; case (transfert): disp << test << " " << test2; // affichage de la position des obstacles avant la transmission _delay_ms(1500); disp.clear(); disp<<"Transmission"; bits[12] = obstacles[1]; // le 12e bit transmit est la position du premier couple d'obstacle bits[13] = obstacles[0]; // le 13e bit transmit est la position du deuxieme couple d'obstacle PORTA|= _BV(5); //transmission for (int i = 0; i < 20; i++) // on envoie 20 fois le message pour s'assurer que l'athlete a bien recu le message for(int j = 0; j < 14;j++) { if (bits[j] == 0) send_zero(); else send_one(); } low_level(); //déclencher le chronometre apres la transmission sei(); // on recommence a capter les interruptions compteurSon = 0; sonOn(80); // joue une note aigue pendant une seconde chrono.partirMinuterie(); // demarre le chronometre pour le parcours de l'athlete qui commence toutOKcompteur=true; compteur=1; disp.clear(); // ferme l'affichage etatRobot = retour; // position du robot est retour break; case(stop): eteindreMoteur(); do{} while(detectionAthlete(false)==false); // tant que l'athlete n'est pas arrivé, on n'arrete pas le chronometre sei(); // on recommence a capter les interruptions compteurSon = 0; sonOn(80); // joue une note aigue pendant une seconde PORTA&= ~(_BV(5)); // fermer la led // affichage des minutes et des secondes sur le LCD chrono.resetMinuterie(); // termine le chronometre secondes = chrono.getSecondes(); minutes=(secondes-(secondes%60))/60; secondes=secondes-(minutes*60); while(1) { disp.clear(); if(secondes<=9) // affichage sous forme MM:SS disp <<"0"<< minutes << doublepoint <<"0"<< secondes; else disp <<"0"<< minutes << doublepoint << secondes; _delay_ms(500); } break; case(aller): // Detection des poteaux detectionPoteau(compteur, test, test2, obstacles); // Deplacement du robot testCapteur(toutOKcompteur, compteur,etatRobot, bits, true); if(compteur != compteurPresent) disp<<compteur; // affichage du compteur pour s'assurer du bon fonctionnement compteurPresent=compteur; break; default: break; } } return 0; }
[ "mpperusse@gmail.com" ]
mpperusse@gmail.com
9b32ca46f5d4a809bb3029656075c12347ab7a22
0b4cab24e8e2df80cd9a8889018cfd19a60e834c
/LibCore/GameDB/src/DBServerInterface.cpp
090bf7c9a41d23ede1834dbe05be754e0ae45daa
[]
no_license
woopengcheng/LibCore
77b2afb917edb4f5fd7b173e88d39a7114030379
e3ebdc70f2429b9deafe387cecd505900ca7ac69
refs/heads/master
2021-06-13T04:05:29.411325
2017-06-05T05:26:39
2017-06-05T05:26:39
28,578,832
3
0
null
null
null
null
UTF-8
C++
false
false
1,585
cpp
#include "GameDB/inc/DBServerInterface.h" #include "NetLib/inc/NetLib.h" #include "MsgLib/inc/RpcManager.h" #include "LogLib/inc/Log.h" namespace GameDB { DBServerInterface::DBServerInterface() : m_pEnvironment(NULL) , m_nMode(0) , m_strBackupDir("./db_backups/") { } DBServerInterface::~DBServerInterface(void) { } CErrno DBServerInterface::Init(Json::Value & conf) { if (RpcInterface::Init(conf).IsFailure()) { return CErrno::Failure(); } return InitDB(conf); } CErrno DBServerInterface::InitDB(const Json::Value & conf) { m_nMode = conf.get("auth_mode","0").asInt(); m_strBackupDir = conf.get("backup_dir","./db_backups/").asCString(); std::string strDir = conf.get("dir","./db/").asCString(); Json::Value dbConfig = conf.get("dbconf",Json::Value()); if(strDir[strDir.length() - 1] != '/') strDir = strDir + "/"; if(m_strBackupDir[m_strBackupDir.length() - 1] != '/') m_strBackupDir = m_strBackupDir + "/"; if (!m_pEnvironment) { m_pEnvironment = new Environment(strDir , dbConfig); } Env::Default()->CreateDir(m_strBackupDir); return CErrno::Success(); } CErrno DBServerInterface::InitNet(const Json::Value & conf) { return CErrno::Success(); } CErrno DBServerInterface::Cleanup(void) { if (m_pEnvironment) { // m_pEnvironment->Cleanup(); } SAFE_DELETE(m_pEnvironment); return RpcInterface::Cleanup(); } CErrno DBServerInterface::Update(void) { return RpcInterface::Update(); } }
[ "woopengcheng@163.com" ]
woopengcheng@163.com
fd25ee361912f50281f9f33153ed17f24810a63c
901512f73a7ffc83849c787ab44376520a713ac1
/narb-sw/rce/zebra_ospfclient.hh
7bb01777cec11b4930f81042a4a5c0e9c16a3044
[ "BSD-3-Clause" ]
permissive
penguin2005/NARB
3e33316d3f378c2f9f1a660c917bdd42cac88d34
a2fd5e01904581f91f4558f0f41ad52bbcd1ce82
refs/heads/master
2020-06-23T02:19:24.434895
2010-02-04T22:07:55
2010-02-04T22:07:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,686
hh
/* * Copyright (c) 2007 * DRAGON Project. * University of Southern California/Information Sciences Institute. * All rights reserved. * * Created by Xi Yang 2004-2007 * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifndef __RCE_ZEBRA_OSPFCLIENT_H__ #define __RCE_ZEBRA_OSPFCLIENT_H__ #include "rce_types.hh" #include "event.hh" #include "toolbox.hh" #include "rce_api.hh" #include "rce_lsa.hh" #include "rce_apiserver.hh" #define ZEBRA_OSPF_API_VERSION 1 #define OSPF_MAX_LSA_SIZE 1500 // Message tyes to OSPF daemon. #define MSG_ZEBRA_REGISTER_OPAQUETYPE 1 #define MSG_ZEBRA_UNREGISTER_OPAQUETYPE 2 #define MSG_ZEBRA_REGISTER_EVENT 3 #define MSG_ZEBRA_SYNC_LSDB 4 #define MSG_ZEBRA_ORIGINATE_REQUEST 5 #define MSG_ZEBRA_DELETE_REQUEST 6 #define MSG_ZEBRA_NEIGHBOR_COUNT_REQUEST 7 // Message types from OSPF daemon. #define MSG_ZEBRA_REPLY 10 #define MSG_ZEBRA_READY_NOTIFY 11 #define MSG_ZEBRA_LSA_UPDATE_NOTIFY 12 #define MSG_ZEBRA_LSA_DELETE_NOTIFY 13 #define MSG_ZEBRA_NEW_IF 14 #define MSG_ZEBRA_DEL_IF 15 #define MSG_ZEBRA_ISM_CHANGE 16 #define MSG_ZEBRA_NSM_CHANGE 17 #define MSG_ZEBRA_NEIGHBOR_COUNT 18 #define RCE_ZEBRA_LOCAL_PORT 4000 struct zebra_msg_header { u_char version; u_char msgtype; u_int16_t msglen; u_int32_t msgseq; }; struct zebra_msg { zebra_msg_header hdr; char* body; }; struct zebra_lsa_filter { u_int16_t typemask; // bitmask for selecting LSA types (1..16) u_char origin; // selects according to origin. #define NON_SELF_ORIGINATED 0 #define SELF_ORIGINATED (OSPF_LSA_SELF) #define ANY_ORIGIN 2 u_char num_areas; // number of areas in the filter. }; struct zebra_lsa_change_notify { // Used for LSA type 9 otherwise ignored struct in_addr ifaddr; // Area ID. Not valid for AS-External and Opaque11 LSAs struct in_addr area_id; u_char is_self_originated; // 1 if self originated. u_char pad[3]; lsa_header data; }; class ZebraOspfReader; class ZebraOspfWriter; class ZebraOspfSync: public Timer { private: ZebraOspfReader* reader; ZebraOspfWriter* writer; int sync_fd; int async_fd; char* ospfd_host; int ospfd_port; u_int32_t domain_mask; int attempt; public: ZebraOspfSync(char* host, int port, u_int32_t dmask, int sync_interval): Timer(sync_interval, 0, FOREVER), sync_fd(-1), async_fd(-1), reader(NULL), writer(NULL), ospfd_host(host), ospfd_port(port), domain_mask(dmask), attempt(0) { } virtual ~ZebraOspfSync(); int Connect (char *host, int syncport, int remote_port); bool Alive() { extern int module_connectable(char * host, int port); return module_connectable (ospfd_host, ospfd_port); } ZebraOspfReader * GetReader() { return reader;} ZebraOspfWriter * GetWriter() { return writer;} void SetReader(ZebraOspfReader *reader_ptr) { reader = reader_ptr;} void SetWriter(ZebraOspfWriter *writer_ptr) { writer = writer_ptr;} void SetSyncFd(int x) { sync_fd = x; } void SetAsyncFd(int x) { async_fd = x; } void SetAttemptNum(int x) { attempt = x; } virtual void Run(); void Exit(); u_int32_t DomainMask() { return domain_mask; } }; class ZebraOspfReader: public Reader { private: ZebraOspfSync *server; public: ZebraOspfReader(int fd, ZebraOspfSync *server_ptr): Reader(fd), server(server_ptr) { assert(server_ptr); server_ptr->SetReader(this); } virtual ~ZebraOspfReader() {} virtual void Run (); zebra_msg * ReadMessage( ); void HandleMessage (zebra_msg *msg); }; class ZebraOspfWriter: public Writer { private: list<zebra_msg *> msgQueue; ZebraOspfSync *server; public: ZebraOspfWriter(int fd, ZebraOspfSync *server_ptr): Writer(fd), server(server_ptr) { assert(server_ptr); server_ptr->SetWriter(this); } virtual ~ZebraOspfWriter() {} virtual void Run (); int WriteMessage(zebra_msg *msg); void PostMessage(zebra_msg *msg); }; #endif
[ "isiehpn@aacf9c1e-ac80-435b-8e83-6affbfa3956d" ]
isiehpn@aacf9c1e-ac80-435b-8e83-6affbfa3956d
bea1e4347b9b235ed75fc13f913dde9dd0166300
a98ddb3d778e11f66510b0e328225ebe309538bc
/Utilities/interface/ParticleInfo.h
b581ca3f1333c9ab038004489f6489d4ffcccd9d
[]
no_license
nickmccoll/AnalysisSupport
9cd01d8e6ce9763c59e87dd8cee903da2cb36da7
1a47882d380962bec0d498db353fbe5c5fa489e7
refs/heads/master
2021-10-26T13:14:37.671678
2019-04-12T23:25:43
2019-04-12T23:25:43
74,917,671
0
1
null
null
null
null
UTF-8
C++
false
false
9,984
h
/** @file ParticleInfo.h @author Sue Ann Koay (sakoay@cern.ch) */ #ifndef ANALYSISSUPPORT_PARTICLEINFO_H #define ANALYSISSUPPORT_PARTICLEINFO_H #include <vector> #include <TString.h> namespace ParticleInfo { enum HadronType { OTHER , /*PI0,*/ PIPLUS, ETA0, KAON, DIQUARK, LIGHT_MESON, LIGHT_BARYON , DPLUS, D0, DSPLUS, LAMBDACPLUS, C_MESON, C_BARYON , BPLUS, B0, BS0, LAMBDAB0, B_MESON, B_BARYON , numDetailedHadronTypes }; // New particle enums....how do they relate to old versions... // DOC_INTERMEDIATE, DOC_ALTERED, DOC_OUTGOING are effectively old status three partilces // however, they were compresses such that you only get one type of each particle // HADRONIZATION used to be string particles....just the math when doing the hadronization // INCOMING...as before // FINAL status 1 // INTERMEDIATE status 2 enum ParticleStatus { FINAL,INTERMEDIATE, HADRONIZATION, DOC_INTERMEDIATE, DOC_ALTERED, DOC_OUTGOING, INCOMING, UNKNOWN, NULLSTATUS}; enum ParticleID { p_unknown, p_d, p_u, p_s, p_c, p_b, p_t, p_bprime, p_tprime, p_eminus = 11, p_nu_e, p_muminus, p_nu_mu, p_tauminus, p_nu_tau, p_tauprimeminus, p_nu_tauprime, p_g = 21, p_gamma, p_Z0, p_Wplus, p_h0, p_Zprime0 = 32, p_Zpprime0, p_Wprimeplus, p_H0, p_A0, p_Hplus, p_G = 39, p_R0 = 41, p_H30 = 45, p_A20 = 46, p_LQ, p_cluster = 91, p_string, p_pi0 = 111, p_rho0 = 113, p_klong = 130, p_piplus = 211, p_rhoplus = 213, p_eta = 221, p_omega = 223, p_kshort = 310, p_k0, p_kstar0 = 313, p_kplus = 321, p_kstarplus = 323, p_phi = 333, p_dplus = 411, p_d0 = 421, p_dsplus = 431, p_b0 =511, p_bplus = 521, p_bs0 = 531, p_bcplus = 541, p_neutron = 2112, p_proton = 2212, p_sigmaminus = 3112, p_lambda0 = 3122, p_sigma0 = 3212, p_sigmaplus = 3222, p_ximinus = 3312, p_xi0 = 3322, p_omegaminus = 3334, p_sigmac0 = 4112, p_lambdacplus = 4122, p_xic0 = 4132, p_sigmacplus = 4212, p_sigmacpp = 4222, p_xicplus = 4232, p_omegac0 = 4332, p_sigmabminus = 5112, p_lambdab0 = 5122, p_xibminus = 5132, p_sigmab0 = 5212, p_sigmabplus = 5222, p_xib0 = 5232, p_omegabminus = 5332, p_sdownL = 1000001, p_supL, p_sstrangeL, p_scharmL, p_sbottom1, p_stop1, p_selectronL = 1000011, p_snu_eL, p_smuonL, p_snu_muL, p_stau1, p_snu_tauL, p_gluino = 1000021, p_chi10, p_chi20, p_chi1plus, p_chi30, p_chi40 = 1000035, p_chi2plus = 1000037, p_gravitino = 1000039, p_chi50 = 1000045, p_sdownR = 2000001, p_supR, p_sstrangeR, p_scharmR, p_sbottom2, p_stop2, p_selectronR = 2000011, p_snu_eR, p_smuonR, p_snu_muR, p_stau2, p_snu_tauR }; enum { p_LSP = 1000022 }; //_____________________________________________________________________________ // process status information //_____________________________________________________________________________ //// is a final, non-decayed particle bool isFinal(const int status); //// is a non-final decayed particle bool isIntermediate(const int status); //// is a particle used in the hadronization process bool isHadronization(const int status); //Doc particle that will be altered before becoming outgoing bool isDocIntermediate(const int status); //An altered version of a doc particle in prep for becoming outgoing bool isDocAltered(const int status); //Doc particle that is outgoing bool isDocOutgoing(const int status); // Is incoming particle bool isIncoming(const int status); // is a documentaiton particle, a part of the original particles that define the event bool isDoc(const int status); ParticleStatus getStatus(const int status); //check if the the last particle in the chain //Make sure the particle is of a certain status template<typename Particle> bool isLastInChain(const Particle* particle, bool (*selectID)(int) = 0); /// Traces particle down the chain of radiation vertices to the last instance of the same particle. template<typename ParticleRef> ParticleRef getFinal(ParticleRef particle, int maxNumDaughters = -1); template<typename Particle> const Particle* getFinal(const Particle* particle, int maxNumDaughters = -1); /// Traces particle up the chain of radiation vertices to the first instance of the same particle. template<typename ParticleRef> ParticleRef getOriginal(ParticleRef particle); template<typename Particle> const Particle* getOriginal(const Particle* particle); //// is a hadronically decaying w. caller may && with isLastInChain to count w. template<typename Particle> bool isGenWHadronic(const Particle* particle); //// is a hadronically decaying top. caller may && with isLastInChain to count tops. template<typename Particle> bool isGenTopHadronic(const Particle* particle); //_____________________________________________________________________________ // Check particle type from PDGID //_____________________________________________________________________________ bool isJetSource(int particleID); bool isLightQuark(int particleID); bool isHeavyQuark(int particleID); bool isQuark(int pdgId); bool isEWKBoson(int particleID); bool isHadron(int pdgId); bool isQuarkOrGluon(int pdgId); bool isDecayProduct(int pdgId); bool isThirdGeneration(int pdgId); bool isANeutrino(int particleID); bool isInvisible(int particleID); bool isVisible(int particleID); bool isLepton(int particleID); bool isLeptonOrNeutrino(int particleID); bool isPion(int particleID); bool isKaon(int particleID); bool isBSM(int particleID); bool isSquark(int pdgId); bool isSquarkOrGluino(int pdgId); bool isLSP(int pdgId); bool isHadronizationModel(int particleID); //_____________________________________________________________________________ // check if particle matches a given pdgId template<typename Particle> bool isA(int particleID, const Particle* p, bool checkCharge=false); //_____________________________________________________________________________ // Return the parton name and information as a string //_____________________________________________________________________________ TString smPartonName(int particleID, bool separateL = false, bool separateU = false, bool separateD = false, bool separateB = false, bool separateAnti = false); TString smPartonTitle(int particleID, bool separateL = false, bool separateU = false, bool separateD = false, bool separateB = false, bool separateAnti = false); TString bsmPartonName(int particleID, bool separateU = false, bool separateB = true, bool separateLR = false); TString flavorName(int particleID); TString shortFlavorName(int particleID); const TString* pfTypeNames(); const TString* pfTypeTitles(); TString multiply(int count, const char label[]); TString nameFor(int pdgId); template<typename Object> TString nameFor(const Object& object); TString titleFor(int pdgId); template<typename Object> TString titleFor(const Object& object); TString shortTitleFor(int pdgId, bool ignoreLR = false); TString toMathematica(TString text); //_____________________________________________________________________________ // Hadron type information //_____________________________________________________________________________ bool isHeavyFlavor(HadronType type); bool isBHadron(HadronType type); bool isCHadron(HadronType type); HadronType typeOfHadron(int pdgId, int* numBQuarks = 0, int* numCQuarks = 0); HadronType detailedTypeOfHadron(int pdgId); const TString& hadronTypeName(HadronType type); const TString& hadronTypeTitle(HadronType type); TString hadronTypeName(HadronType type, int pdgId); TString hadronTypeTitle(HadronType type, int pdgId); //_____________________________________________________________________________ // Print GenParticle history //_____________________________________________________________________________ /// Prints the history (ancestors and their decays) of the indexed genParticle. template<typename Particle> std::ostream& printGenHistory(const std::vector<Particle>& genParticles, const unsigned int particleIndex); /// Prints the entire particle creation/decay history, for the first genBound number of genParticles. /// Alternatively, output only after a specific start template<typename Particle> void printGenInfo(const std::vector<Particle>& genParticles, int genBound = 30, int genStart = -1); /// Print a specific particle template<typename Particle> void printGenParticleInfo(const Particle* genParticle, const int idx = 0); template<typename Particle> void printGenParticleInfo(const Particle& genParticle, const int idx = 0); template<typename Particle> void printPackedGenInfo(const std::vector<Particle>& genParticles, int genBound = 30, int genStart = -1); template<typename Particle> void printPackedGenParticleInfo(const Particle* genParticle, const int idx = 0); template<typename Particle> void printPackedGenParticleInfo(const Particle& genParticle, const int idx = 0); /// Inheritance template<typename Particle> bool hasMother(const Particle* genParticle, const int pid, bool checkCharge); template<typename Particle, typename Func> bool hasMother(const Particle* genParticle, Func test); template<typename Particle> const Particle* findMother(const Particle* genParticle, const int pid, bool checkCharge = false); template<typename Particle> bool hasDaughter(const Particle* genParticle, const int pid, bool checkCharge = false); template<typename Particle> const Particle* findDaughter(const Particle* genParticle, const int pid, bool checkCharge = false); }; // end class ParticleInfo #include "../src/ParticleInfo.icc" #endif //PARTICLEINFO_H
[ "nickmccoll@gmail.com" ]
nickmccoll@gmail.com
bce47a1764e7f003b692528f1140b93fa43363a0
aac7f7393550336fd232def82dc926c4baa2df4d
/src/seshat/Log.hpp
f4cf856e90e746b12e062af207bcef3bcf42ea72
[ "MIT" ]
permissive
ghord/inkmath
5d89772d51ae96c4a2f0d0fb466080213e169bb3
ec4a53a3ecaf03416374447b216c4a1c430980eb
refs/heads/master
2016-09-14T18:34:34.142641
2016-06-05T09:56:31
2016-06-05T09:56:31
56,228,068
3
1
null
null
null
null
UTF-8
C++
false
false
4,475
hpp
/*Copyright 2009,2010 Alex Graves This file is part of RNNLIB. RNNLIB is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. RNNLIB is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with RNNLIB. If not, see <http://www.gnu.org/licenses/>.*/ #ifndef _INCLUDED_Log_h #define _INCLUDED_Log_h using namespace std; template<class T> class Log { //data T expVal; T logVal; public: //static data static const T expMax; static const T expMin; static const T expLimit; static const T logZero; static const T logInfinity; //static functions static T safe_exp(T x) { if (x == logZero) { return 0; } if (x >= expLimit) { return expMax; } return std::exp(x); } static T safe_log(T x) { if (x <= expMin) { return logZero; } return std::log(x); } static T log_add(T x, T y) { if (x == logZero) { return y; } if (y == logZero) { return x; } if (x < y) { swap(x, y); } return x + std::log(1.0 + safe_exp(y - x)); } static T log_subtract(T x, T y) { if (y == logZero) { return x; } if (y >= x) { return logZero; } return x + std::log(1.0 - safe_exp(y - x)); } static T log_multiply(T x, T y) { if (x == logZero || y == logZero) { return logZero; } return x + y; } static T log_divide(T x, T y) { if (x == logZero) { return logZero; } if (y == logZero) { return logInfinity; } return x - y; } //functions Log(T v = 0, bool logScale = false): expVal(logScale ? -1 : v), logVal(logScale ? v : safe_log(v)) {} Log<T>& operator =(const Log<T>& l) { logVal = l.logVal; expVal = l.expVal; return *this; } Log<T>& operator +=(const Log<T>& l) { logVal = log_add(logVal, l.logVal); expVal = -1; return *this; } Log<T>& operator -=(const Log<T>& l) { logVal = log_subtract(logVal, l.logVal); expVal = -1; return *this; } Log<T>& operator *=(const Log<T>& l) { logVal = log_multiply(logVal, l.logVal); expVal = -1; return *this; } Log<T>& operator /=(const Log<T>& l) { logVal = log_divide(logVal, l.logVal); expVal = -1; return *this; } T exp() { if (expVal < 0) { expVal = safe_exp(logVal); } return expVal; } T log() const { return logVal; } }; //helper functions template<class T> Log<T> operator +(Log<T> log1, Log<T> log2) { return Log<T>(Log<T>::log_add(log1.log(), log2.log()), true); } template<class T> Log<T> operator -(Log<T> log1, Log<T> log2) { return Log<T>(Log<T>::log_subtract(log1.log(), log2.log()), true); } template<class T> Log<T> operator *(Log<T> log1, Log<T> log2) { return Log<T>(Log<T>::log_multiply(log1.log(), log2.log()), true); } template<class T> Log<T> operator /(Log<T> log1, Log<T> log2) { return Log<T>(Log<T>::log_divide(log1.log(), log2.log()), true); } template<class T> bool operator >(Log<T> log1, Log<T> log2) { return (log1.log() > log2.log()); } template<class T> bool operator <(Log<T> log1, Log<T> log2) { return (log1.log() < log2.log()); } template<class T> bool operator ==(Log<T> log1, Log<T> log2) { return (log1.log() == log2.log()); } template<class T> bool operator <=(Log<T> log1, Log<T> log2) { return (log1.log() <= log2.log()); } template<class T> bool operator >=(Log<T> log1, Log<T> log2) { return (log1.log() >= log2.log()); } template<class T> ostream& operator <<(ostream& out, const Log<T>& l) { out << l.log(); return out; } template<class T> istream& operator >>(istream& in, Log<T>& l) { T d; in >> d; l = Log<T>(d, true); return in; } template <class T> const T Log<T>::expMax = numeric_limits<T>::max(); template <class T> const T Log<T>::expMin = numeric_limits<T>::min(); template <class T> const T Log<T>::expLimit = std::log(expMax); template <class T> const T Log<T>::logInfinity = 1e100; template <class T> const T Log<T>::logZero = -Log<T>::logInfinity; #endif
[ "hordynski@outlook.com" ]
hordynski@outlook.com
57a28b0051e5e11c79febfe093048a241fb42b37
ea0c353ac6487e65faa44b76777c9070481ee042
/monitorclient/mysdl.h
4d62c669ca6b47f5b9fb388ab7ed952837fdb764
[]
no_license
yanshuzh/Monitor
919a4a50326a0475f808bdacac581e97d2708043
e4de99237239bd5cee33c524d9476bd7960b1391
refs/heads/master
2016-09-05T16:56:44.419272
2014-10-21T13:44:28
2014-10-21T13:44:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
429
h
#ifndef MYSDL_H #define MYSDL_H #include <stdlib.h> #include <SDL.h> #include <iostream> #define show_width 640 #define show_height 480 using namespace std; class MySDL { public: MySDL(int screen_width,int screen_height,unsigned char *inbuffer); ~MySDL(); int InitSDL(); int SDLshow(); private: int screen_w; int screen_h; SDL_Surface *screen; SDL_Overlay *overlay; SDL_Rect rect; unsigned char *buffer; }; #endif
[ "zhuang@ubuntu.(none)" ]
zhuang@ubuntu.(none)
98cb0624dbb11de51c6505db4d680af8fe14a57d
b533cc85d6de35b0e6a9664dce6b31e6945531a1
/TrecLib/TClientSocket.cpp
50a887824db7eebeb6bd3c8bb7a2cc0d34ab8d18
[]
no_license
TrecApps/AnaGame
efa90d4af51aea14fd0ecd834341193cb1c36cbc
23b349a2f4afa64d6410e47a3c5e56c99c136d57
refs/heads/master
2022-08-11T17:30:07.756655
2021-07-03T15:55:56
2021-07-03T15:55:56
142,814,475
0
2
null
2021-06-23T03:10:11
2018-07-30T02:25:01
C++
UTF-8
C++
false
false
2,897
cpp
#include "TClientSocket.h" //#include <WinSock2.h> //#include <ws2tcpip.h> #define CLIENT_BUFFER_SIZE 512; TClientSocket::TClientSocket(UCHAR type) { if (!type || (type > 2)) throw L"Error, Expected 1 (TCP) or 2 (UDP) for network type"; networkType = type; initSuccess = false; results = nullptr; sock = INVALID_SOCKET; } TClientSocket::~TClientSocket() { if (results) { FreeAddrInfo(results); results = nullptr; } Close(); } UINT TClientSocket::InitializeSocket(TString& address) { ADDRINFOW hint4, hint6; ZeroMemory(&hint4, sizeof(hint4)); ZeroMemory(&hint6, sizeof(hint6)); hint4.ai_addr = hint6.ai_addr = nullptr; hint4.ai_addrlen = hint6.ai_addrlen = 0; hint4.ai_canonname = hint6.ai_canonname = nullptr; hint4.ai_family = AF_INET; hint6.ai_family = AF_INET6; hint4.ai_flags = hint6.ai_flags = AI_PASSIVE; hint4.ai_next = nullptr; hint6.ai_next = nullptr; results = nullptr; if (networkType == 1) { hint4.ai_protocol = hint6.ai_protocol = IPPROTO_TCP; hint4.ai_socktype = hint6.ai_socktype = SOCK_STREAM; } else if (networkType == 2) { hint4.ai_protocol = hint6.ai_protocol = IPPROTO_UDP; hint4.ai_socktype = hint6.ai_socktype = SOCK_DGRAM; } int intResults = GetAddrInfoW(address.GetConstantBuffer().getBuffer(), port.GetConstantBuffer().getBuffer(), &hint4, &results); if (intResults != 0) { int e = WSAGetLastError(); return intResults; } sock = socket(results->ai_family, results->ai_socktype, results->ai_protocol); if (sock == INVALID_SOCKET) { FreeAddrInfo(results); results = nullptr; return 1; } initSuccess = true; return 0; } UINT TClientSocket::Connect() { if (!initSuccess) return 1; int conRes = connect(sock, results->ai_addr, results->ai_addrlen); if (conRes == SOCKET_ERROR) { closesocket(sock); initSuccess = false; sock = INVALID_SOCKET; return 2; } return 0; } void TClientSocket::Close() { if (sock != INVALID_SOCKET) { shutdown(sock, SD_BOTH); closesocket(sock); sock = INVALID_SOCKET; initSuccess = false; } } TString TClientSocket::Send(TDataArray<char>& bytes) { if(!initSuccess) return TString(L"Socket Not Properly Initialized!"); if (!bytes.Size()) return TString(L"No Data to Send!"); TString ret; int sendRes = send(sock, &bytes[0], bytes.Size(), 0); if (sendRes == SOCKET_ERROR) { ret.Format(L"Send Failed: Error code is %d", WSAGetLastError()); } return ret; } TString TClientSocket::Recieve(TDataArray<char>& bytes) { char catchBytes[512]; ZeroMemory(&catchBytes, sizeof(char)* 512); bytes.RemoveAll(); int recRes; do { recRes = recv(sock, catchBytes, 512, 0); if (recRes > 0) { for (UINT Rust = 0; Rust < recRes; Rust++) { bytes.push_back(catchBytes[Rust]); } } } while (recRes > 0); TString ret; if (recRes < 0) { ret.Format(L"Recieve Failed with WSA Error: %d", WSAGetLastError()); } return ret; }
[ "jljacko@outlook.com" ]
jljacko@outlook.com
56a918c7773d65a4fd76a5f5ec314e4452979fb5
9bcba5bfac34b8319cf0e10bd3719b719cfb4d2a
/GreenPad-nt350/kilib/log.cpp
47cc3c7fda3d292abff5fb4e9cd8d481c991e1cb
[ "LicenseRef-scancode-nysl-0.9982" ]
permissive
roytam1/rtoss
60a12f59d4cf11532460ce010463ba2d2b2c48b7
1041a1ab55cce3693d44c0fb199560442db39552
refs/heads/master
2023-08-04T11:18:53.858480
2023-07-29T15:08:02
2023-07-29T15:08:02
32,128,533
11
8
null
2023-03-01T14:09:47
2015-03-13T04:29:24
C
SHIFT_JIS
C++
false
false
1,487
cpp
#include "stdafx.h" #include "log.h" #include "app.h" #include "string.h" using namespace ki; //========================================================================= void Logger::WriteLine( const String& str ) { WriteLine( str.c_str(), str.len()*sizeof(TCHAR) ); } void Logger::WriteLine( const TCHAR* str ) { WriteLine( str, ::lstrlen(str)*sizeof(TCHAR) ); } void Logger::WriteLine( const TCHAR* str, int siz ) { #ifdef DO_LOGGING // Fileクラス自体のデバッグに使うかもしれないので、 // Fileクラスを使用することは出来ない。API直叩き static bool st_firsttime = true; DWORD dummy; // ファイル名 TCHAR fname[MAX_PATH]; ::GetModuleFileName( ::GetModuleHandle(NULL), fname, countof(fname) ); ::lstrcat( fname, TEXT("_log") ); // ファイルを書き込み専用で開く HANDLE h = ::CreateFile( fname, GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN, NULL ); if( h == INVALID_HANDLE_VALUE ) return; // 初回限定処理 if( st_firsttime ) { ::SetEndOfFile( h ); #ifdef _UNICODE ::WriteFile( h, "\xff\xfe", 2, &dummy, NULL ); #endif st_firsttime = false; } else { ::SetFilePointer( h, 0, NULL, FILE_END ); } // 書く ::WriteFile( h, str, siz, &dummy, NULL ); ::WriteFile( h, TEXT("\r\n"), sizeof(TEXT("\r")), &dummy, NULL ); // 閉じる ::CloseHandle( h ); #endif }
[ "roytam@gmail.com" ]
roytam@gmail.com
c3ed85a7d0430fb812c86bf66b47d57e3f68f61e
f7d027e9806665f1a5a87b95225c84dc8da620ea
/src/qt/rpcconsole.h
122166057af377c9d7cc496a92ab228520b86087
[ "MIT" ]
permissive
xuexingyouxi/origincoin
2ae4ef21862c03f707f3ce8e45d6ad6e7f53460f
b5e38484e0a8a5da618972498cd984a40f67eb3d
refs/heads/master
2021-01-24T15:24:08.590927
2016-02-24T05:05:04
2016-02-24T05:05:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,926
h
#ifndef RPCCONSOLE_H #define RPCCONSOLE_H #include <QDialog> namespace Ui { class RPCConsole; } class ClientModel; /** Local Bitcoin RPC console. */ class RPCConsole: public QDialog { Q_OBJECT public: explicit RPCConsole(QWidget *parent = 0); ~RPCConsole(); void setClientModel(ClientModel *model); enum MessageClass { MC_ERROR, MC_DEBUG, CMD_REQUEST, CMD_REPLY, CMD_ERROR }; protected: virtual bool eventFilter(QObject* obj, QEvent *event); private slots: void on_lineEdit_returnPressed(); void on_tabWidget_currentChanged(int index); /** open the debug.log from the current datadir */ void on_openDebugLogfileButton_clicked(); /** display messagebox with program parameters (same as OGC --help) */ void on_showCLOptionsButton_clicked(); /** change the time range of the network traffic graph */ void on_sldGraphRange_valueChanged(int value); /** update traffic statistics */ void updateTrafficStats(quint64 totalBytesIn, quint64 totalBytesOut); /** clear traffic graph */ void on_btnClearTrafficGraph_clicked(); public slots: void clear(); void message(int category, const QString &message, bool html = false); /** Set number of connections shown in the UI */ void setNumConnections(int count); /** Set number of blocks shown in the UI */ void setNumBlocks(int count); /** Go forward or back in history */ void browseHistory(int offset); /** Scroll console view to end */ void scrollToEnd(); signals: // For RPC command executor void stopExecutor(); void cmdRequest(const QString &command); private: static QString FormatBytes(quint64 bytes); void setTrafficGraphRange(int mins); Ui::RPCConsole *ui; ClientModel *clientModel; QStringList history; int historyPtr; void startExecutor(); }; #endif // RPCCONSOLE_H
[ "skypigr@gmail.com" ]
skypigr@gmail.com
ae16eb8e4d914fc8f3e537807705fb93eac06cfc
c04b9352435fb9bbd54e6f1f9184baf93c821618
/build-GeneralSignal-Desktop_Qt_5_14_2_MinGW_64_bit-Release/release/moc_generalsignal.cpp
618b7e76a8cb969bd3650a99db282a55064720ce
[]
no_license
tankscox777/GeneralSignal
6795ebeb7bed756a4305666e77c511db54d8f807
7eabcd400aef9ac92db497c78373c202242d6472
refs/heads/master
2023-01-11T09:53:47.282424
2020-11-18T17:17:48
2020-11-18T17:17:48
310,885,768
0
0
null
2020-11-18T17:17:49
2020-11-07T16:27:45
null
UTF-8
C++
false
false
2,773
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'generalsignal.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include <memory> #include "../../GeneralSignal/generalsignal.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'generalsignal.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.14.2. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE QT_WARNING_PUSH QT_WARNING_DISABLE_DEPRECATED struct qt_meta_stringdata_GeneralSignal_t { QByteArrayData data[1]; char stringdata0[14]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_GeneralSignal_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_GeneralSignal_t qt_meta_stringdata_GeneralSignal = { { QT_MOC_LITERAL(0, 0, 13) // "GeneralSignal" }, "GeneralSignal" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_GeneralSignal[] = { // content: 8, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; void GeneralSignal::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } QT_INIT_METAOBJECT const QMetaObject GeneralSignal::staticMetaObject = { { QMetaObject::SuperData::link<QMainWindow::staticMetaObject>(), qt_meta_stringdata_GeneralSignal.data, qt_meta_data_GeneralSignal, qt_static_metacall, nullptr, nullptr } }; const QMetaObject *GeneralSignal::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *GeneralSignal::qt_metacast(const char *_clname) { if (!_clname) return nullptr; if (!strcmp(_clname, qt_meta_stringdata_GeneralSignal.stringdata0)) return static_cast<void*>(this); return QMainWindow::qt_metacast(_clname); } int GeneralSignal::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QMainWindow::qt_metacall(_c, _id, _a); return _id; } QT_WARNING_POP QT_END_MOC_NAMESPACE
[ "zavadskiy@outlook.com" ]
zavadskiy@outlook.com
7501beeea6db88a8650049247caccb6a36af1e44
1377cee84e70f5c10ae3a0b03757bc367de50b3a
/BOJ/[BOJ]1764_듣보잡.cpp
e17d1dbe47db8103e31427fd7ca7908903b1c98e
[]
no_license
parkjungeun/Algorithm-Problem-Code
86b1a536127eff6b18b34885a5e5c22f4c3a1f2f
d897875e53ae00aeb7000738ef2abbf4412a7737
refs/heads/master
2020-05-18T17:30:14.609767
2019-05-23T11:46:34
2019-05-23T11:46:34
184,557,235
0
0
null
null
null
null
UHC
C++
false
false
1,124
cpp
#include<iostream> #include<string> #include<map> #include<vector> #include<algorithm> using namespace std; //int main() { // ios::sync_with_stdio(0); cin.tie(0); // int N, M; // cin >> N >> M; // // map<string, int> idMap; // string name; // for (int i = 0; i < N; ++i) { // cin >> name; // idMap[name] = 1; // } // // vector<string> ans; // for (int i = 0; i < M; ++i) { // cin >> name; // if (idMap.find(name) != idMap.end()) // ans.push_back(name); // } // // sort(ans.begin(), ans.end()); // // cout << ans.size() << '\n'; // for (int i = 0; i < ans.size(); ++i) // cout << ans[i] << '\n'; // return 0; //} int main() { ios::sync_with_stdio(0); cin.tie(0); int N, M; cin >> N >> M; vector<string> v(N); string name; for (int i = 0; i < N; ++i) cin >> v[i]; sort(v.begin(), v.end()); vector<string> ans; for (int i = 0; i < M; ++i) { cin >> name; //찾았을 때, true를 반환 if (binary_search(v.begin(), v.end(), name)) ans.push_back(name); } sort(ans.begin(), ans.end()); cout << ans.size() << '\n'; for (int i = 0; i < ans.size(); ++i) cout << ans[i] << '\n'; return 0; }
[ "jungeun3814@gmail.com" ]
jungeun3814@gmail.com
423f6d968194fd45182db598ac5e744097903048
694b8cd53264a5195f4b3bb0d6ff66e2d4964067
/main/multimedia/core/MediaPlayer/MPAudioAngledMixing.cpp
ee46bc518b2dda17b7778b14733b9fb7fcf14111
[]
no_license
liuguilin129/1110
d15a6d4714980252ba595fb9444d66be213d0b7e
eb22bb81efcb6cfe7493c8136c35b2b48fe728cb
refs/heads/master
2020-06-15T02:02:45.545932
2016-11-30T12:07:42
2016-11-30T12:07:42
75,183,270
0
0
null
2016-11-30T12:06:10
2016-11-30T12:06:10
null
UTF-8
C++
false
false
10,645
cpp
/*============================================================================= FILE: MPAudioAngledMixing.cpp SERVICES: CMPAudioAngledMixing class implementation GENERAL DESCRIPTION: PUBLIC CLASSES AND STATIC FUNCTIONS: INITIALIZATION AND SEQUENCING REQUIREMENTS: Copyright ?2005 QUALCOMM Incorporated. All Rights Reserved. QUALCOMM Proprietary/GTDR ===========================================================================*/ /*=========================================================================== EDIT HISTORY FOR MODULE Revision: $Header: //depot/asic/msmshared/apps/MediaPlayer/MPAudioAngledMixing.cpp#6 $ when who what, where, why -------- ----- ---------------------------------------------------------- ===========================================================================*/ #include "MPAudioAngledMixing.h" #ifdef FEATURE_MP_EQ_UI CMPAudioAngledMixing::CMPAudioAngledMixing(void* pOwner):CMPSymbol(pOwner), m_pwszNameString(NULL), m_nNumofEditItems(0), m_pLabels(NULL), m_pCommit(NULL), m_pListWin(NULL) { } CMPAudioAngledMixing::~CMPAudioAngledMixing() { /*lint -e1551*/ /*Suppressing Lint Warning: Function may throw exception '...' in destructor*/ if(m_pLabels) delete[] m_pLabels; m_pLabels = NULL; if(m_pCommit) delete m_pCommit; m_pCommit = NULL; if(m_pListWin) delete m_pListWin; m_pListWin = NULL; if(m_pwszNameString) delete [] m_pwszNameString; m_pwszNameString = NULL; DBGPRINTF_LOW("MP: end deleting CMPAudioAngledMixing."); /*lint +e1551*/ } void CMPAudioAngledMixing::Destroy() { delete this; } boolean CMPAudioAngledMixing::Init(AEERect rc) { int i; int offset; int stringWidth; uint32 charHight; IDisplay* pDisplay; MPDeviceInfo* pDeviceInfo; pDeviceInfo = MP_GetInfo(this); if(!pDeviceInfo) { DBGPRINTF_ERROR("MP: pDeviceInfo is NULL"); return FALSE; } pDisplay = pDeviceInfo->m_pDisplay; if(!pDisplay) { DBGPRINTF_ERROR("MP: pDisplay is NULL"); return FALSE; } GetBkColor()->SetColor(212, 255, 255); GetFgColor()->SetColor(0, 212, 212); GetSdColor()->SetColor(0, 150, 150); if(m_pLabels) delete[] m_pLabels; m_pLabels = NULL; m_nNumofEditItems = MP_LABEL_MAX - 1; charHight = IDISPLAY_GetFontMetrics(pDisplay, AEE_FONT_NORMAL, NULL, NULL) + 4; m_pListWin = new CMPListWin<CMPSymbol>(pDeviceInfo->m_pShell, pDisplay, rc); if(!m_pListWin) { DBGPRINTF_ERROR("MP: Error on creating m_pListWin."); return FALSE; } if(!m_pListWin->Init(charHight, 1, MP_LABEL_MAX)) { delete m_pListWin; m_pListWin = NULL; DBGPRINTF_ERROR("MP: Unable to initialize m_pListWin."); return FALSE; } // create labes m_pLabels = new CMPNumEdit[m_nNumofEditItems]; if(!m_pLabels) { delete m_pListWin; m_pListWin = NULL; DBGPRINTF_ERROR("MP: Error on creating m_pLabels."); return FALSE; } SetFrameRect(rc.x, rc.y, rc.dx, rc.dy); m_pListWin->GetBkColor()->SetColor(212, 255, 255); m_pListWin->GetFgColor()->SetColor(0, 0, 0); m_pListWin->GetSdColor()->SetColor(150, 150, 150); m_pListWin->SetLeftMargin(2); m_pListWin->SetScrollBarOnLeft(FALSE); // calculate the max row length needed, a row contains a label, a texteditor and a scrollbar // the max length of label string is "Spread(-32,32): " // the texteditor width is set to length of "9999999" // the scrollbar + leading and trailing space is about 16 stringWidth = GetStringWidth("Gain(0,32767): ") + GetStringWidth("9999999") + 16; // set label names if(rc.dx >= stringWidth) { m_pLabels[0].SetLabelName("Class(0,1): "); m_pLabels[1].SetLabelName("Gain(0,32767): "); m_pLabels[2].SetLabelName("Angle(0,359): "); m_pLabels[3].SetLabelName("Time(0,20): "); } else { // with limited screen space, use following texts m_pLabels[0].SetLabelName("Class: "); m_pLabels[1].SetLabelName("Gain: "); m_pLabels[2].SetLabelName("Angle: "); m_pLabels[3].SetLabelName("Time: "); } // calculate max offset offset = GetMaxLabelLength(); // string width for the edit ctl stringWidth = GetStringWidth("9999999"); for(i=0; i < m_nNumofEditItems; i++) { // save owner into label, so that we can pass the screen info m_pLabels[i].SetOwnerPtr(GetOwnerPtr()); m_pLabels[i].SetID(i); m_pLabels[i].SetRectOffset(offset); if(stringWidth) m_pLabels[i].SetWidth(stringWidth); m_pLabels[i].GetBkColor()->SetColor(212, 255, 255); m_pLabels[i].GetFgColor()->SetColor(0, 212, 212); m_pLabels[i].GetSdColor()->SetColor(0, 150, 150); m_pLabels[i].GetTextColor()->SetColor(0, 0, 0); m_pListWin->Add(&m_pLabels[i]); } // Class m_pLabels[0].SetRange(0, 1); m_pLabels[0].SetIncStep(1); // Gain m_pLabels[1].SetRange(0, 32767); m_pLabels[1].SetIncStep(3276); //Angle m_pLabels[2].SetRange(0, 359); m_pLabels[2].SetIncStep(45); //Time m_pLabels[3].SetRange(0, 20); m_pLabels[3].SetIncStep(2); #if (defined(FEATURE_MP_EQ) && defined(MP_FEATURE_AUDIO_QENSEMBLE)) #error code not present #endif //#if (defined(FEATURE_MP_EQ) && defined(MP_FEATURE_AUDIO_QENSEMBLE)) // create commit button m_pCommit = new CMPLabel; if(!m_pCommit) { delete m_pListWin; m_pListWin = NULL; delete [] m_pLabels; m_pLabels = NULL; DBGPRINTF_ERROR("MP: filed to create button."); return FALSE; } // save owner into label, so that we can pass the screen info m_pCommit->SetOwnerPtr(GetOwnerPtr()); m_pCommit->SetID(MP_BUTTON_COMMIT); m_pwszNameString = MP_ToAEEChar("Commit"); m_pCommit->SetName(m_pwszNameString); m_pCommit->SetAllignText(IDF_ALIGN_CENTER); m_pCommit->GetBkColor()->SetColor(212, 255, 255); m_pCommit->GetFgColor()->SetColor(0, 212, 212); m_pCommit->GetSdColor()->SetColor(0, 150, 150); m_pCommit->GetTextColor()->SetColor(0, 0, 0); m_pListWin->Add(m_pCommit); m_pLabels[0].SetFocus(TRUE); m_pLabels[0].SetSelection(TRUE); SetFocus(TRUE); return TRUE; } // this function returns max string length for all labels int CMPAudioAngledMixing::GetMaxLabelLength() { int i; int max = 0; int length; IDisplay* pDisplay; MPDeviceInfo* pDeviceInfo; pDeviceInfo = MP_GetInfo(this); if(!pDeviceInfo) { DBGPRINTF_ERROR("MP: pDeviceInfo is NULL"); return 0; } pDisplay = pDeviceInfo->m_pDisplay; if(!pDisplay) { DBGPRINTF_ERROR("MP: pDisplay is NULL"); return 0; } for(i=0; i < m_nNumofEditItems; i++) { length = IDISPLAY_MeasureText(pDisplay, AEE_FONT_NORMAL, m_pLabels[i].GetLabelName()); if(length > max) max = length; } return max; } // this function returns the width of given string int CMPAudioAngledMixing::GetStringWidth(const char* pstr) { int width = 0; IDisplay* pDisplay; MPDeviceInfo* pDeviceInfo; pDeviceInfo = MP_GetInfo(this); if(!pDeviceInfo) { DBGPRINTF_ERROR("MP: pDeviceInfo is NULL"); return 0; } pDisplay = pDeviceInfo->m_pDisplay; if(!pDisplay) { DBGPRINTF_ERROR("MP: pDisplay is NULL"); return 0; } AECHAR* pAEChar = MP_ToAEEChar(pstr); if(pAEChar) { width = IDISPLAY_MeasureText(pDisplay, AEE_FONT_NORMAL, pAEChar); delete[] pAEChar; } return width; } boolean CMPAudioAngledMixing::Draw(IGraphics *pg) { return m_pListWin->Draw(pg); } boolean CMPAudioAngledMixing::OnEvent(AEEEvent eCode, uint16 wParam, uint32 dwParam) { boolean ret = FALSE; int idx; CMPSymbol* pSymbol; if(!GetFocus()) return FALSE; if(!m_pListWin) { DBGPRINTF_ERROR("MP: m_pListWin is NULL"); return FALSE; } idx = m_pListWin->GetItem(); pSymbol = m_pListWin->GetItem(idx); if(NULL == pSymbol) { DBGPRINTF_ERROR("MP: NULL symbol."); return FALSE; } switch(eCode) { case EVT_KEY_PRESS: { switch(wParam) { case AVK_SELECT: if(MP_BUTTON_COMMIT == idx) { // commit the changes (void)Commit(); } else { // the focus is in edit ctl, pass the event ret = ((CMPNumEdit*)pSymbol)->OnEvent(eCode, wParam, dwParam); } break; case AVK_UP: if(MP_BUTTON_COMMIT != idx) { // turn off edit mode ((CMPNumEdit*)pSymbol)->SetEditMode(FALSE); } if(!m_pListWin->SetPrevious()) { //top, move focus to last item m_pListWin->SetLast(); } ret = TRUE; break; case AVK_DOWN: if(MP_BUTTON_COMMIT != idx) { // turn off edit mode ((CMPNumEdit*)pSymbol)->SetEditMode(FALSE); } if(!m_pListWin->SetNext()) { //top, move focus to first item m_pListWin->SetFirst(); } ret = TRUE; break; case AVK_LEFT: ret = pSymbol->OnEvent(eCode, wParam, dwParam); break; case AVK_RIGHT: ret = pSymbol->OnEvent(eCode, wParam, dwParam); break; default: ret = pSymbol->OnEvent(eCode, wParam, dwParam); break; } break; } default: ret = pSymbol->OnEvent(eCode, wParam, dwParam); break; } if(MP_BUTTON_COMMIT != idx) { MPDeviceInfo* pDeviceInfo; MPSetting* pSetting; pDeviceInfo = MP_GetInfo(this); if(!pDeviceInfo) { DBGPRINTF_ERROR("MP: pDeviceInfo is NULL"); return FALSE; } pSetting = pDeviceInfo->m_pSetting; if(!pSetting) { DBGPRINTF_ERROR("MP: pSetting is NULL"); return FALSE; } // save edit mode into setting object, so that MP can // use this information pSetting->m_bEditMode = ((CMPNumEdit*)pSymbol)->GetEditMode(); } return ret; } // this function save the current changes into setting object, and also // set into OEM void CMPAudioAngledMixing::Commit() { #if (defined(FEATURE_MP_EQ) && defined(MP_FEATURE_AUDIO_QENSEMBLE)) #error code not present #endif //#if (defined(FEATURE_MP_EQ) && defined(MP_FEATURE_AUDIO_QENSEMBLE)) } #endif // FEATURE_MP_EQ_UI
[ "jiaoyuhai@3f3bbce5-bc85-8142-9eb1-77d090cfebd4" ]
jiaoyuhai@3f3bbce5-bc85-8142-9eb1-77d090cfebd4
ad448969d7b88ede7abd3d80e9f4f55f149b03a8
7aa0f4e5d526ceb03d76a83b8606ee885e97261f
/ui/accessibility/ax_language_info.cc
72c091a2c92f0e1f66f442d97b43c8f05041e4aa
[ "BSD-3-Clause" ]
permissive
lealmeng/chromium
f1d67673a92b3eded974a211e44d1513c70d9f4b
255dc69c7cd88954afbdc87dd78b0265f61be2f3
refs/heads/master
2023-03-06T13:47:23.738772
2019-07-09T01:26:27
2019-07-09T01:26:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,675
cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/accessibility/ax_language_info.h" #include <algorithm> #include <functional> #include "base/command_line.h" #include "base/i18n/unicodestring.h" #include "base/strings/utf_string_conversions.h" #include "ui/accessibility/accessibility_switches.h" #include "ui/accessibility/ax_enums.mojom.h" #include "ui/accessibility/ax_tree.h" namespace ui { namespace { // This is the maximum number of languages we assign per page, so only the top // 3 languages on the top will be assigned to any node. const auto kMaxDetectedLanguagesPerPage = 3; // This is the maximum number of languages that cld3 will detect for each // input we give it, 3 was recommended to us by the ML team as a good // starting point. const auto kMaxDetectedLanguagesPerSpan = 3; const auto kShortTextIdentifierMinByteLength = 1; // TODO(https://bugs.chromium.org/p/chromium/issues/detail?id=971360): // Determine appropriate value for kShortTextIdentifierMaxByteLength. const auto kShortTextIdentifierMaxByteLength = 1000; } // namespace AXLanguageInfo::AXLanguageInfo() {} AXLanguageInfo::~AXLanguageInfo() {} AXLanguageInfoStats::AXLanguageInfoStats() : top_results_valid_(false), short_text_language_identifier_(kShortTextIdentifierMinByteLength, kShortTextIdentifierMaxByteLength) {} AXLanguageInfoStats::~AXLanguageInfoStats() = default; chrome_lang_id::NNetLanguageIdentifier& AXLanguageInfoStats::GetLanguageIdentifier() { return language_identifier_; } void AXLanguageInfoStats::Add(const std::vector<std::string>& languages) { // Assign languages with higher probability a higher score. // TODO(chrishall): consider more complex scoring size_t score = kMaxDetectedLanguagesPerSpan; for (const auto& lang : languages) { lang_counts_[lang] += score; --score; } InvalidateTopResults(); } int AXLanguageInfoStats::GetScore(const std::string& lang) const { const auto& lang_count_it = lang_counts_.find(lang); if (lang_count_it == lang_counts_.end()) { return 0; } return lang_count_it->second; } void AXLanguageInfoStats::InvalidateTopResults() { top_results_valid_ = false; } // Check if a given language is within the top results. bool AXLanguageInfoStats::CheckLanguageWithinTop(const std::string& lang) { if (!top_results_valid_) { GenerateTopResults(); } for (const auto& item : top_results_) { if (lang == item.second) { return true; } } return false; } void AXLanguageInfoStats::GenerateTopResults() { top_results_.clear(); for (const auto& item : lang_counts_) { top_results_.emplace_back(item.second, item.first); } // Since we store the pair as (score, language) the default operator> on pairs // does our sort appropriately. // Sort in descending order. std::sort(top_results_.begin(), top_results_.end(), std::greater<std::pair<unsigned int, std::string>>()); // Resize down to remove all values greater than the N we are considering. top_results_.resize(kMaxDetectedLanguagesPerPage); top_results_valid_ = true; } static void DetectLanguageForSubtreeInternal(AXNode* node, class AXTree* tree); // Detect language for a subtree rooted at the given node. void DetectLanguageForSubtree(AXNode* subtree_root, class AXTree* tree) { TRACE_EVENT0("accessibility", "AXLanguageInfo::DetectLanguageForSubtree"); DCHECK(subtree_root); DCHECK(tree); if (!::switches::IsExperimentalAccessibilityLanguageDetectionEnabled()) { // If feature is not enabled we still return success as we were as // successful as we could have been. return; } if (!tree->language_info_stats) { tree->language_info_stats.reset(new AXLanguageInfoStats()); } DetectLanguageForSubtreeInternal(subtree_root, tree); } // Detect language for a subtree rooted at the given node // will not check feature flag. static void DetectLanguageForSubtreeInternal(AXNode* node, class AXTree* tree) { if (node->IsText()) { AXLanguageInfoStats* lang_info_stats = tree->language_info_stats.get(); AXLanguageInfo* lang_info = node->GetLanguageInfo(); if (!lang_info) { // TODO(chrishall): consider space optimisations. // Currently we keep these language info instances around until // destruction of the containing node, this is due to us treating AXNode // as otherwise read-only and so we store any detected language // information on lang info. node->SetLanguageInfo(std::make_unique<AXLanguageInfo>()); lang_info = node->GetLanguageInfo(); } else { lang_info->detected_languages.clear(); } chrome_lang_id::NNetLanguageIdentifier& language_identifier = tree->language_info_stats->GetLanguageIdentifier(); // TODO(chrishall): implement strategy for nodes which are too small to get // reliable language detection results. Consider combination of // concatenation and bubbling up results. auto text = node->GetStringAttribute(ax::mojom::StringAttribute::kName); const auto results = language_identifier.FindTopNMostFreqLangs( text, kMaxDetectedLanguagesPerSpan); for (const auto res : results) { // The output of FindTopNMostFreqLangs is already sorted by byte count, // this seems good enough for now. // Only consider results which are 'reliable', this will also remove // 'unknown'. if (res.is_reliable) { lang_info->detected_languages.push_back(res.language); } } lang_info_stats->Add(lang_info->detected_languages); } // TODO(chrishall): refactor this as textnodes only ever have inline text // boxen as children. This means we don't need to recurse except for // inheritance which can be handled elsewhere. for (AXNode* child : node->children()) { DetectLanguageForSubtreeInternal(child, tree); } } static void LabelLanguageForSubtreeInternal(AXNode* node, class AXTree* tree); // Label language for each node in the subtree rooted at the given node. // This relies on DetectLanguageForSubtree having already been run. bool LabelLanguageForSubtree(AXNode* subtree_root, class AXTree* tree) { TRACE_EVENT0("accessibility", "AXLanguageInfo::LabelLanguageForSubtree"); DCHECK(subtree_root); DCHECK(tree); if (!::switches::IsExperimentalAccessibilityLanguageDetectionEnabled()) { // If feature is not enabled we still return success as we were as // successful as we could have been. return true; } if (!tree->language_info_stats) { // Detection has not been performed, error, the user is holding this wrong. // DetectLanguageForSubtree must always be called on a given subtree before // LabelLanguageForSubtree is called. LOG(FATAL) << "LabelLanguageForSubtree run before DetectLanguageForSubtree"; return false; } LabelLanguageForSubtreeInternal(subtree_root, tree); return true; } static void LabelLanguageForSubtreeInternal(AXNode* node, class AXTree* tree) { AXLanguageInfo* lang_info = node->GetLanguageInfo(); // lang_info is only attached by Detect when it thinks a node is interesting, // the presence of lang_info means that Detect expects the node to end up with // a language specified. // // If the lang_info->language is already set then we have no more work to do // for this node. if (lang_info && lang_info->language.empty()) { AXLanguageInfoStats* lang_info_stats = tree->language_info_stats.get(); for (const auto& lang : lang_info->detected_languages) { if (lang_info_stats->CheckLanguageWithinTop(lang)) { lang_info->language = lang; break; } } // TODO(chrishall): consider obeying the author declared lang tag in some // cases, either based on proximity or based on common language detection // error cases. // If language is still empty then we failed to detect a language from // this node, we will instead try construct a language from other sources // including any lang attribute and any language from the parent tree. if (lang_info->language.empty()) { const auto& lang_attr = node->GetStringAttribute(ax::mojom::StringAttribute::kLanguage); if (!lang_attr.empty()) { lang_info->language = lang_attr; } else { // We call GetLanguage() on our parent which will return a detected // language if it has one, otherwise it will search up the tree for a // kLanguage attribute. // // This means that lang attributes are inherited indefinitely but // detected language is only inherited one level. // // Currently we only attach detected language to text nodes, once we // start attaching detected language on other nodes we need to rethink // this. We may want to attach detected language information once we // consider combining multiple smaller text nodes into one larger one. // // TODO(chrishall): reconsider detected language inheritance. AXNode* parent = node->parent(); if (parent) { const auto& parent_lang = parent->GetLanguage(); if (!parent_lang.empty()) { lang_info->language = parent_lang; } } } } } for (AXNode* child : node->children()) { LabelLanguageForSubtreeInternal(child, tree); } } std::vector<AXLanguageSpan> AXLanguageInfoStats::GetLanguageAnnotationForStringAttribute( const AXNode& node, ax::mojom::StringAttribute attr) { std::vector<AXLanguageSpan> language_annotation; if (!node.HasStringAttribute(attr)) return language_annotation; std::string attr_value = node.GetStringAttribute(attr); // Use author-provided language if present. if (node.HasStringAttribute(ax::mojom::StringAttribute::kLanguage)) { // Use author-provided language if present. language_annotation.push_back(AXLanguageSpan{ 0 /* start_index */, attr_value.length() /* end_index */, node.GetStringAttribute( ax::mojom::StringAttribute::kLanguage) /* language */, 1 /* probability */}); return language_annotation; } // Calculate top 3 languages. // TODO(akihiroota): What's a reasonable number of languages to have // cld_3 find? Should vary. std::vector<chrome_lang_id::NNetLanguageIdentifier::Result> top_languages = short_text_language_identifier_.FindTopNMostFreqLangs( attr_value, kMaxDetectedLanguagesPerPage); // Create vector of AXLanguageSpans. for (const auto& result : top_languages) { std::vector<chrome_lang_id::NNetLanguageIdentifier::SpanInfo> ranges = result.byte_ranges; for (const auto& span_info : ranges) { language_annotation.push_back( AXLanguageSpan{span_info.start_index, span_info.end_index, result.language, span_info.probability}); } } // Sort Language Annotations by increasing start index. LanguageAnnotations // with lower start index should appear earlier in the vector. std::sort( language_annotation.begin(), language_annotation.end(), [](const AXLanguageSpan& left, const AXLanguageSpan& right) -> bool { return left.start_index <= right.start_index; }); // Ensure that AXLanguageSpans do not overlap. for (size_t i = 0; i < language_annotation.size(); ++i) { if (i > 0) { DCHECK(language_annotation[i].start_index <= language_annotation[i - 1].end_index); } } return language_annotation; } } // namespace ui
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
6a1a56c3d1301e103b43d7e17d1ac35ceb434648
4147e2a08af354f682ce100b9b760559dc69e8df
/ARemRecorder/PostProcessor/src/Orientation.cc
a5c9a88479b7371bb394aee7ad63d50439c0cdbf
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "MIT", "BSD-2-Clause" ]
permissive
donaldmunro/AARemu
4c40e4072e46bf4be5f90022f5ae1a5ed72f3a0b
f45c0909b2be645672ca16957d1d72741f93c9f1
refs/heads/master
2021-01-19T01:44:51.958044
2020-06-24T21:39:41
2020-06-24T21:39:41
22,467,863
34
14
null
null
null
null
UTF-8
C++
false
false
3,848
cc
#include <string.h> #include <iostream> #include <sstream> #include "Orientation.h" #include "util.h" inline bool _read(std::ifstream& in, char * buf, const int size, const std::string message) //----------------------------------------------------------------------------------------- { in.read(buf, size); if (! in.good()) { if (! in.eof()) std::cerr << "OrientationData: " << message << std::endl; return false; } return (! in.eof()); } bool OrientationData::read(std::ifstream& in) //---------------------------------------------------------------------- { uint64_t v; if (! _read(in, (char *) &v, sizeof(uint64_t), "Error reading timestamp")) return false; timestamp = (unsigned long) be64toh(v); uint32_t v32; int32_t bg; for (int i=0; i<4; i++) { std::stringstream ss; ss << "Error reading Q[" << i << "]"; if (!_read(in, (char *) &v32, sizeof(uint32_t), ss.str())) return false; bg = (int32_t) be32toh(v32); memcpy(&Q[i], &bg, sizeof(float)); } if (!_read(in, (char *) &v32, sizeof(uint32_t), "Error reading R length")) return false; bg = (int32_t) be32toh(v32); const uint32_t lastRLen = rlen; rlen = static_cast<uint32_t>(bg); if ( (lastRLen != rlen) && (R != nullptr) ) { delete[] R; R = nullptr; } if (R == nullptr) R = new float[rlen]; for (uint32_t i=0; i<rlen; i++) { std::stringstream ss; ss << "Error reading R[" << i << "]"; if (!_read(in, (char *) &v32, sizeof(uint32_t), "Error reading R length")) return false; bg = (int32_t) be32toh(v32); memcpy(&R[i], &bg, sizeof(float)); } if (!_read(in, (char *) &v32, sizeof(uint32_t), "Error reading bearing")) return false; bg = (int32_t) be32toh(v32); memcpy(&bearing, &bg, sizeof(float)); if (! in.good()) { if (R) delete [] R; R = nullptr; rlen = 0; Q[0] = Q[1] = Q[2] = Q[3] = 0; timestamp = -1; bearing = -1; } return in.good(); } bool OrientationData::write(std::ofstream& orientationWriter, float bearing) //------------------------------------------------------------------------- { uint64_t v; uint32_t v32; to_big_endian64((const unsigned char *) &timestamp, v); orientationWriter.write((const char *) &v, sizeof(uint64_t)); for (int i=0; i<4; i++) { to_big_endian32((const unsigned char *) &Q[i], v32); orientationWriter.write((const char *) &v32, sizeof(uint32_t)); } to_big_endian32((const unsigned char *) &rlen, v32); orientationWriter.write((const char *) &v32, sizeof(uint32_t)); for (uint32_t i=0; i<rlen; i++) { to_big_endian32((const unsigned char *) &R[i], v32); orientationWriter.write((const char *) &v32, sizeof(uint32_t)); } to_big_endian32((const unsigned char *) &bearing, v32); orientationWriter.write((const char *) &v32, sizeof(uint32_t)); return orientationWriter.good(); } OrientationData &OrientationData::operator=(const OrientationData &other) //----------------------------------------------------------------------- { if (&other != this) { timestamp = other.timestamp; std::copy(other.Q, other.Q + 4, Q); rlen = other.rlen; if ( (rlen > 0) && (other.R != nullptr) ) { R = new float[rlen]; std::copy(other.R, other.R + rlen, R); } bearing = other.bearing; } return *this; } OrientationData::OrientationData(const OrientationData &other) //----------------------------------------------------- { timestamp = other.timestamp; std::copy(other.Q, other.Q + 4, Q); rlen = other.rlen; if ( (rlen > 0) && (other.R != nullptr) ) { R = new float[rlen]; std::copy(other.R, other.R + rlen, R); } bearing = other.bearing; }
[ "donaldmunro@gmail.com" ]
donaldmunro@gmail.com
77d038ee1226ea02413c1e277e7b8921d2042e47
20f2474bbae25818cfae993fdd3773f83b5b9f13
/src/scene/geometry/plane.cpp
849e168e5df52af2db5a553ec1c3261ef9164220
[ "MIT" ]
permissive
axis7818/RayTracer
4a1d37b5fdab39b27a4ff6b62c7818963343f2bb
157bc958fde873eeacc3e7c03607daedca088a4f
refs/heads/master
2021-03-16T08:46:57.310340
2017-07-04T17:18:02
2017-07-04T17:18:02
87,435,329
0
0
null
null
null
null
UTF-8
C++
false
false
1,434
cpp
#include "plane.hpp" using namespace glm; using namespace std; Plane::Plane() : normal(0, 1, 0), distance(0) { in_bvh = false; } vec3 Plane::get_normal(vec3 point) { vec3 obj_normal = normalize(this->normal); return normal_to_world_space(obj_normal); } string Plane::get_type() { return string("Plane"); } shared_ptr<Intersection> Plane::get_intersection(shared_ptr<Ray> ray) { assert(ray != nullptr); shared_ptr<Ray> obj_ray = make_shared<Ray>(ray, this->inv_transform); float den = dot(obj_ray->dir, normal); // parallel to the plane, none or infinity intersections if (den == 0) return nullptr; // otherwise, we have 1 intersection point float num = distance - dot(obj_ray->source, normal); float t = num / den; // make sure it is a valid t value if (!obj_ray->t_valid(t)) return nullptr; // we have an intersection! return make_shared<Intersection>(ray, obj_ray, shared_from_this(), t); } vec3 Plane::get_center() { vec4 point = vec4( distance * normal, 1.0f ); return vec3(transform * point); } void Plane::print() const { cout << "- Type: Plane" << endl; cout << "- Normal: "; print_vec3(this->normal); cout << endl; cout << "- Distance: " << this->distance << endl; cout << "- Color: "; print_vec3(this->pigment.color.to_vec3()); cout << ", Filter: " << this->pigment.filter << endl; print_finish(this->finish); }
[ "axis7818@gmail.com" ]
axis7818@gmail.com
306ce8a2b82a943d8921ad2a23b23962e1827f14
6f9dca253abe5b8fe47dae0ea74983a5c5c8c27d
/include/client/texture/color.h
55eda2a7f2cf476e70b9987da4286292608e454f
[]
no_license
hlisdero/portal2D
79e79c61361dad2e7a4d3c6da41faf1973899395
faae30e49f3ab668d02f45ddc69622f7763cdf2b
refs/heads/master
2020-05-18T22:26:03.565650
2019-06-25T18:45:17
2019-06-25T18:45:17
184,686,607
1
1
null
2019-06-21T23:48:21
2019-05-03T02:11:53
C++
UTF-8
C++
false
false
324
h
#ifndef COLOR_H #define COLOR_H #include <cstdint> #include <string> class Color { public: Color(uint8_t red, uint8_t green, uint8_t blue, uint8_t alpha = 0); explicit Color(const std::string& color_name); uint8_t r; uint8_t g; uint8_t b; uint8_t a = 0; }; #endif // COLOR_H
[ "lisderoh@gmail.com" ]
lisderoh@gmail.com
b06c89172964a79f25cb11d961f74a6f59693914
f3f6c972cc0b0d760c11d5c3c52e601ab4f3fcb5
/IoTArduinoAgent/IoTArduinoAgent.ino
d3002c1f7a0b623d40aac5f1667d0083a40b00f5
[ "Apache-2.0" ]
permissive
dliofindia/iot-server-agents
80babe3563c04c8dced945836bd76211bcebb06a
d9261c935dfb0ecad3a107b0b82f5a9c56cd9f27
refs/heads/master
2022-07-08T03:18:14.084869
2016-02-15T12:51:16
2016-02-15T12:51:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
639
ino
#include "IoTArduinoAgent.h" #include <Ethernet.h> #include <SPI.h> #include <IPStack.h> #include <Countdown.h> #include <MQTTClient.h> EthernetClient httpClient; int digitalPins[] = { 2, 5, 8, 9, 12 }; int analogPins[] = { 0, 1, 2, 3, 4, 5 }; void setup() { Serial.begin(9600); connectHttp(); setupResource(); MQTTConnect(); } void loop() { if (httpClient.connected()) { // pushDigitalPinData(); // pushAnalogPinData(); } else { Serial.println("client not found..."); Serial.println("disconnecting."); httpClient.stop(); // connectHttp(); // for(;;) // ; } delay(PUBLISH_INTERVAL); }
[ "shabir_tck09@hotmail.com" ]
shabir_tck09@hotmail.com
7bdf927a75bc68f1525dae982aacf8c697e7b07d
b2155efef00dbb04ae7a23e749955f5ec47afb5a
/source/RenderSystemD3D/OED3DShader_Impl.h
456fb8b92a0cae624230fb0c7049fcd05b82a593
[]
no_license
zjhlogo/originengine
00c0bd3c38a634b4c96394e3f8eece86f2fe8351
a35a83ed3f49f6aeeab5c3651ce12b5c5a43058f
refs/heads/master
2021-01-20T13:48:48.015940
2011-04-21T04:10:54
2011-04-21T04:10:54
32,371,356
1
0
null
null
null
null
UTF-8
C++
false
false
1,848
h
/*! * \file OED3DShader_Impl.h * \date 1-6-2009 15:47:13 * * * \author zjhlogo (zjhlogo@163.com) */ #ifndef __OED3DSHADER_IMPL_H__ #define __OED3DSHADER_IMPL_H__ #include <OECore/IOEShader.h> #include "OED3DVertDecl_Impl.h" #include <d3dx9.h> class COED3DShader_Impl : public IOEShader { public: RTTI_DEF(COED3DShader_Impl, IOEShader); COED3DShader_Impl(const VERT_DECL_ELEMENT* pElement, const tstring& strFileName); virtual ~COED3DShader_Impl(); virtual bool SetInt(const tstring& strParamName, int nValue); virtual bool GetInt(int& nOut, const tstring& strParamName); virtual bool SetFloat(const tstring& strParamName, float fValue); virtual bool GetFloat(float& fOut, const tstring& strParamName); virtual bool SetVector(const tstring& strParamName, const CVector4& vIn); virtual bool SetVector(const tstring& strParamName, const CVector3& vIn); virtual bool GetVector(CVector4& vOut, const tstring& strParamName); virtual bool GetVector(CVector3& vOut, const tstring& strParamName); virtual bool SetMatrix(const tstring& strParamName, const CMatrix4x4& matIn); virtual bool GetMatrix(CMatrix4x4& matOut, const tstring& strParamName); virtual bool SetMatrixArray(const tstring& strParamName, const CMatrix4x4* pmatIn, uint nCount); virtual bool GetMatrixArray(CMatrix4x4* pmatOut, uint nCount, const tstring& strParamName); virtual bool SetTexture(const tstring& strParamName, IOETexture* pTexture); virtual bool SetTechnique(const tstring& strParamName); virtual IOEVertDecl* GetVertDecl(); ID3DXEffect* GetEffect() const; private: void Init(); void Destroy(); bool Create(const VERT_DECL_ELEMENT* pElement, const tstring& strFileName); private: COED3DVertDecl_Impl* m_pDecl; ID3DXEffect* m_pEffect; }; #endif // __OED3DSHADER_IMPL_H__
[ "zjhlogo@fdcc8808-487c-11de-a4f5-9d9bc3506571" ]
zjhlogo@fdcc8808-487c-11de-a4f5-9d9bc3506571
0302768f8b4c504208df248e3e2cf2dfe23e7eda
247f9a5cc6e068695d0439e4a6bbaf6c1f5d7032
/FunctionType/WindowsServiceCppLibraryDynamicLinkLib/Code/Common.hpp
c086dc294799111079876fdf4aa9c8b1988c7537
[ "MIT" ]
permissive
15831944/WindowsServiceCppLibrary
d90e0802b3708027194d88ca92391d35da5cacdf
1d4ff4b96b4808efdbc56615566e3355885361a6
refs/heads/master
2021-06-20T03:38:38.466047
2017-07-23T15:13:41
2017-07-23T15:13:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,395
hpp
#ifndef __COMMON_HPP__ #define __COMMON_HPP__ typedef unsigned long DWORD; namespace WinSvcLib { enum class ServiceAccessType : DWORD { QueryConfig = 0x0001, // SERVICE_QUERY_CONFIG ChangeConfig = 0x0002, // SERVICE_CHANGE_CONFIG QueryStatus = 0x0004, // SERVICE_QUERY_STATUS EnumerateDependents = 0x0008, // SERVICE_ENUMERATE_DEPENDENTS Start = 0x0010, // SERVICE_START Stop = 0x0020, // SERVICE_STOP PauseContinue = 0x0040, // SERVICE_PAUSE_CONTINUE Interrogate = 0x0080, // SERVICE_INTERROGATE UserDefinedControl = 0x0100, // SERVICE_USER_DEFINED_CONTROL AllAccess = 0xF01FF // SERVICE_ALL_ACCESS }; enum class ServiceType : DWORD { KernelDriver = 0x00000001, // SERVICE_KERNEL_DRIVER FileSystemDriver = 0x00000002, // SERVICE_FILE_SYSTEM_DRIVER Adapter = 0x00000004, // SERVICE_ADAPTER RecognizerDriver = 0x00000008, // SERVICE_RECOGNIZER_DRIVER Driver = 0x0000000B, // SERVICE_DRIVER Win32OwnProcess = 0x00000010, // SERVICE_WIN32_OWN_PROCESS Win32ShareProcess = 0x00000020, // SERVICE_WIN32_SHARE_PROCESS Win32 = 0x00000030, // SERVICE_WIN32 InteractiveProcess = 0x00000100, // SERVICE_INTERACTIVE_PROCESS TypeAll = 0x0000013F // SERVICE_TYPE_ALL }; ServiceAccessType operator | (const ServiceAccessType A, const ServiceAccessType B); ServiceType operator | (const ServiceType A, const ServiceType B); } #endif
[ "aimegu2014@gmail.com" ]
aimegu2014@gmail.com
5dd3fbfa23d525f18c1c7e85a2b43764ba57328b
260e5dec446d12a7dd3f32e331c1fde8157e5cea
/Indi/SDK/Indi_Flaw_Sys_WeakToShock_classes.hpp
6001d5e9846c6f7ffb437f5e5e8a60acf3f9ca38
[]
no_license
jfmherokiller/TheOuterWorldsSdkDump
6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0
18a8c6b1f5d87bb1ad4334be4a9f22c52897f640
refs/heads/main
2023-08-30T09:27:17.723265
2021-09-17T00:24:52
2021-09-17T00:24:52
407,437,218
0
0
null
null
null
null
UTF-8
C++
false
false
686
hpp
#pragma once // TheOuterWorlds SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "Indi_Flaw_Sys_WeakToShock_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass Flaw_Sys_WeakToShock.Flaw_Sys_WeakToShock_C // 0x0000 (0x0088 - 0x0088) class UFlaw_Sys_WeakToShock_C : public UFlaw { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass Flaw_Sys_WeakToShock.Flaw_Sys_WeakToShock_C"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "peterpan0413@live.com" ]
peterpan0413@live.com
0966f618bbb8ee1a604e42cd0343252699d651f4
9a3782520d8c9f4fd1c26c6d43565a45ce8a4b9f
/SVG-FILES-ORIGINAL/Circle.cpp
5452b84f7437aff13c9f128e39b5cd6a69a623bf
[]
no_license
batsanov/SVG_File_Project
f251a9c486fd360fd5a0aa8ccb00b8ce86a7c878
8b2100fef72445b0caf8c851751fa154bf9be77e
refs/heads/master
2023-04-25T21:55:58.578290
2021-05-27T08:57:46
2021-05-27T08:57:46
368,153,601
1
0
null
null
null
null
UTF-8
C++
false
false
1,234
cpp
#include "Circle.h" #include <string.h> Circle::Circle() : Figure() { } Circle::Circle(const int _cx, const int _cy, const int _r, String _colour) : Figure() { cx = _cx; cy = _cy; r = _r; colour = _colour; } Circle& Circle::operator=(const Circle& other) { cx = other.cx; cy = other.cy; r = other.r; colour = other.colour; return *this; } void Circle::print(std::ostream& os) { os << this->getId() << ". " << *this << std::endl; } void Circle::translate(int vertical, int horizontal) { cx += horizontal; cy += vertical; } String Circle::getFigureType() { String type("circle"); return type; } void Circle::printSave(std::ostream& os) { os << " <circle cx=\"" << cx << "\" cy=\"" << cy << "\" r=\"" << r << "\" fill=\"" << colour << "\" />" << std::endl; } Vector<int> Circle::getParams() { Vector<int> params; params.pushAtBack(cx); params.pushAtBack(cy); params.pushAtBack(r); return params; } int Circle::getCx() const { return cx; } int Circle::getCy() const { return cy; } int Circle::getR() const { return r; } std::ostream& operator<<(std::ostream& os, const Circle& circle) { os << "circle " << circle.cx << " " << circle.cy << " " << circle.r << " " << circle.colour; return os; }
[ "totobackn@gmail.com" ]
totobackn@gmail.com
042bffe4de6330f75740c0e1fbccf167315e707d
0b196244601b95079ae9fc0376b8afa0dedc105e
/queue_examples.cpp
4319b0cc4f2d5a679da9c2d6e27e0ca77f460046
[]
no_license
jyasskin/error-or
fa5feeb1f771f5e6fa0705e3de439f3e8df0ee15
b1690c125a96843c6dbbd76156dd7d2009294aa9
refs/heads/master
2016-09-06T03:23:00.507927
2012-10-16T08:12:18
2012-10-16T08:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,145
cpp
// Example API usage for various error handling patterns. #include <vector> // Imagine a hypothetical "freelist" allocator. template <typename T> class my_freelist; // This allocator is non-propagating by default -- it is a C++98 container. namespace std { template <> allocator_traits<my_freelist> { // ... }; // And a container type using this allocator. class wombat; typedef std::vector<wombat, my_freelist<wombat>> wombat_vector; // Some routine for building these wombat vectors based on user input. wombat_vector build_wombats(my_freelist<wombat> &freelist); // Some routine for processing wombats and upload them to a server. void process_wombats(wombat_vector&& wombats); void producer(std::shared_queue_back<wombat_vector>& queue, my_freelist<wombat> &freelist) { while (/* read data from network, whatever */) { queue.push_back(build_wombats(freelist)); } } void consumer1(std::shared_queue_back<wombat_vector>& queue) { try { for (;;) { wombat_vector wombats{queue.try_pop()}; // Whatever processing needs to occur... process_wombats(std::move(wombats)); } } catch (const queue_error& error) { // ... } } void consumer2(std::shared_queue_back<wombat_vector>& queue) { wombat_vector wombats; for (;;) { if (std::error_code e = queue.try_pop(wombats)) { // Handle error... return; } // Whatever processing needs to occur... process_wombats(std::move(wombats)); } } void consumer3(std::shared_queue_back<wombat_vector>& queue) { for (;;) { std::error_or<wombat_vector> wombats = queue.try_pop(wombats); if (std::error_code e = wombats.error()) { // Handle error... return; } // Whatever processing needs to occur... process_wombats(wombats.get()); } } void consumer4(std::shared_queue_back<wombat_vector>& queue) { try { for (;;) { std::error_or<wombat_vector> wombats{queue.try_pop()}; // Whatever processing needs to occur... process_wombats(wombats.get()); // This is safe, will throw if wrong. } } catch (const std::system_error& error) { // ... } }
[ "chandlerc@gmail.com" ]
chandlerc@gmail.com
aaf22c37242c467477d16d13a4c512053d2ff45b
508fff84ee929a68daac4ff900d36912f0d6b6ed
/WarbandLib/operation.cpp
6374aa64b6be1dcf8dfaebb59997551c1e3695ea
[ "WTFPL" ]
permissive
blockspacer/wse
f2e05755ba1263c645d0b021548a73e5a5a33ba6
3ad901f1a463139b320c30ea08bdc343358ea6b6
refs/heads/master
2023-03-16T13:15:04.153026
2014-02-13T08:10:03
2014-02-13T08:10:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,466
cpp
#include "operation.h" #include "warband.h" using namespace wb; operation::operation() { end_statement = -1; } __int64 operation::get_operand_value(__int64 *locals, const int &operand_no) { int operand_type; return this->get_operand_value(locals, operand_no, operand_type); } __int64 operation::get_operand_value(__int64 *locals, const int &operand_no, int &operand_type) { __int64 value = this->operands[operand_no]; if (value <= 0) { operand_type = 0; } else { operand_type = (value >> 56) & 0x7F; value &= 0xFFFFFFFFFFFFFF; } switch (operand_type) { case 0: return value; case 1: return warband->basic_game.registers[(int)value]; case 2: return warband->basic_game.global_variables.get((int)value); case 17: return locals[(int)value]; default: return value; } } void operation::set_return_value(__int64 *locals, const __int64 &value) { switch ((this->operands[0] >> 56) & 0x7F) { case 1: warband->basic_game.registers[(int)this->operands[0]] = value; break; case 2: warband->basic_game.global_variables.set((int)this->operands[0], value); break; case 17: locals[(int)this->operands[0]] = value; break; default: { char buf[512]; sprintf_s(buf, "Illegal lvalue in statement; Opcode = %d", warband->cur_opcode); script::error(buf); } break; } } bool operation::execute(__int64 *locals, const int &context_flags, int &error) { THISCALL3(addresses::operation_Execute, this, locals, context_flags, error); } bool operation::is_valid_register(int register_no) { if (register_no >= 0 && register_no < 128) return true; char buf[512]; sprintf_s(buf, "SCRIPT ERROR ON OPCODE %d: Invalid Register ID: %d", warband->cur_opcode, register_no); script::error(buf); return false; } bool operation::is_valid_script_parameter(int parameter_no, int num_parameters) { if (parameter_no >= 0 && parameter_no < num_parameters) return true; char buf[512]; sprintf_s(buf, "SCRIPT ERROR ON OPCODE %d: Invalid Script Parameter ID: %d", warband->cur_opcode, parameter_no); script::error(buf); return false; } bool is_valid_string(int type, int string_no) { char buf[512]; switch (type) { case 0: if (string_no >= 0 && string_no < NUM_REGISTERS) return true; sprintf_s(buf, "SCRIPT WARNING ON OPCODE %d: Invalid String Register ID: %d", warband->cur_opcode, string_no); break; case 3: if (string_no >= 0 && string_no < warband->string_manager.num_strings) return true; sprintf_s(buf, "SCRIPT WARNING ON OPCODE %d: Invalid String ID: %d", warband->cur_opcode, string_no); break; case 22: if (string_no >= 0 && string_no < warband->string_manager.num_quick_strings) return true; sprintf_s(buf, "SCRIPT WARNING ON OPCODE %d: Invalid Quick String ID: %d", warband->cur_opcode, string_no); break; } script::error(buf); return false; } bool operation::is_valid_party(int party_no) { if (warband->cur_game->parties.is_valid_index(party_no)) return true; char buf[512]; sprintf_s(buf, "SCRIPT ERROR ON OPCODE %d: Invalid Party ID: %d", warband->cur_opcode, party_no); script::error(buf); return false; } bool operation::is_valid_scene_prop_no(int scene_prop_no) { if (scene_prop_no >= 0 && scene_prop_no < warband->num_scene_props) return true; char buf[512]; sprintf_s(buf, "SCRIPT WARNING ON OPCODE %d: Invalid Scene Prop ID: %d", warband->cur_opcode, scene_prop_no); script::error(buf); return false; } operation_manager::operation_manager() { operations = nullptr; num_operations = 0; analyzed = false; } operation_manager::operation_manager(const operation_manager &obj) { operations = nullptr; *this = obj; } operation_manager::~operation_manager() { rgl::_delete(operations); } operation_manager &operation_manager::operator =(const operation_manager &obj) { rgl::_delete(operations); num_operations = obj.num_operations; analyzed = obj.analyzed; id = obj.id; if (num_operations) { operations = rgl::_new<operation>(num_operations); for (int i = 0; i < num_operations; ++i) { operations[i] = obj.operations[i]; } } else { operations = nullptr; } return *this; } void operation_manager::analyze() { if (this->analyzed) return; int else_statements[256]; int end_statements[256]; int depth = 0; for (int i = 0; i < this->num_operations; ++i) { int opcode = this->operations[i].opcode & 0xFFFFFFF; switch (opcode) { case try_begin: case try_for_range: case try_for_range_backwards: case try_for_parties: case try_for_agents: case try_for_active_players: case try_for_prop_instances: case try_for_dict_keys: else_statements[depth + 1] = i; end_statements[depth + 1] = i; depth++; if (depth >= 256) { char buf[512]; sprintf_s(buf, "Amount of nested loops in %s is greater than %d", 256); wb::script::error(buf); } break; case else_try: if (depth <= 0) { char buf[512]; sprintf_s(buf, "Unmatched else_try in %s, line %d", this->id.c_str(), i); wb::script::error(buf); } else { for (int j = else_statements[depth] + 1; i - j > 0; ++j) { if (this->operations[j].end_statement < 0) this->operations[j].end_statement = i; } else_statements[depth] = i; } break; case try_end: if (depth <= 0) { char buf[512]; sprintf_s(buf, "Unmatched try_end in %s, line %d", this->id.c_str(), i); wb::script::error(buf); } else { for (int j = end_statements[depth]; i - j > 0; ++j) { if (this->operations[j].end_statement < 0) this->operations[j].end_statement = i; } --depth; } break; } } for (int i = 0; i < this->num_operations; ++i) { if (this->operations[i].end_statement < 0) this->operations[i].end_statement = this->num_operations; } this->analyzed = true; } bool operation_manager::execute(int context) { __int64 params[16]; return this->execute(context, 0, 0, params); } bool operation_manager::execute(int context, int depth, const int &num_params, __int64 *params, int debug_mode) { THISCALL5(addresses::operation_manager_Execute, this, context, depth, num_params, params, debug_mode); }
[ "690187+Swyter@users.noreply.github.com" ]
690187+Swyter@users.noreply.github.com
790819298bd6244f3860504adc70efd0a5f284fe
cdb5362afc963b9d036cc9d350c84ddc55172769
/battleshiptwo.cpp
c8b33ad4083aec33802d3fe1cc83d9cd6971f63e
[]
no_license
Teo04/Cpp
d6799fcba25f5941aaf627a3d4ef5fbd75d52e99
51054ff54b7b40313f4b956497074be6bd86beeb
refs/heads/main
2023-03-17T23:47:56.545082
2021-03-10T08:22:31
2021-03-10T08:22:31
338,050,708
0
0
null
null
null
null
UTF-8
C++
false
false
1,837
cpp
/* * battleshipone1.cpp * Una battaglia navale contro il computer sulla costa * Autore: Matteo Grandi * Data: 12/2/2021 help sui codici della mappa: 0-empty, 1-ship, 2-bomb, 3-strike */ #include <iostream> #include <cstdlib> #include <ctime> using namespace std; void initialize(int v[], int l){ for(int i=0; i<l; i++) v[i]=0; } void show(int v[], int l){ for(int i=0; i<l; i++){ switch(v[i]){ case 0: cout<<"O "<<endl; break; case 1: cout<<"O "<<endl; break; case 2: cout<<"- "<<endl; break; case 3: cout<<"* "<<endl; break; } } cout<<endl; } void arrange (int v[], int l){ srand(time(NULL)); int n= rand() % (l-1); v[n]=1; v[n+1]=1; } void launch(int v[], int l){ int p= -1; while(p<0||p>=l){ cout<<"inserisci le coordinate di dove vuoi tirare la bomba (1..."<< l << "): "; cin>> p; } p--; if(v[p]==0) v[p]=2; if(v[p]==1) v[p]=3; } bool weWon(int v[], int l){ for(int i=0; i<l; i++){ if(v[i]==1) return false; } return true; } int main() { cout<<"battleshiptwo in esecuzione"<<endl; int numbomb=0; const int MAPLENGHT=10; int map[MAPLENGHT]; initialize(map, MAPLENGHT); arrange(map, MAPLENGHT); show(map, MAPLENGHT); while(true){ numbomb++; launch(map, MAPLENGHT); show(map, MAPLENGHT); if(weWon(map, MAPLENGHT)){ cout<<"HAI VINTOOOOOOO!!!!!"<<endl; break; } } if (numbomb<=3) cout<< "complimenti"; else if (numbomb<=5) cout<< "bravino"; else if (numbomb<=7) cout<< "accidenti"; cout<<" hai distrutto la flotta nemica utilizzando "<< numbomb << " bombe"<<endl; return 0; }
[ "matte.g101204@gmail.com" ]
matte.g101204@gmail.com
bbf13475f6ae6a51d9ed1e6621586873ba2c5f76
bde250a5bd97435abf0ffa505ba3da1f129720d8
/ds/src/test/ldaprepltest/replcompare.cpp
e94cee07136832e55ac8ef326469bec4ea568607
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_ds
f45afd1a1243e42a8ccb489048f4a73946dad99f
0d97393773ee5ecdc29aae15023492e383f7ee7f
refs/heads/master
2023-04-04T00:34:51.876505
2021-04-14T04:49:28
2021-04-14T04:49:28
357,774,650
1
0
null
null
null
null
UTF-8
C++
false
false
5,517
cpp
#include <NTDSpchx.h> #pragma hdrstop #include <windows.h> #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <attids.h> #include <ntsecapi.h> #include <ntdsa.h> #include <winldap.h> #include <ntdsapi.h> #include <drs.h> #include <stddef.h> #define DSID(x,y) (y) #define FILENO (0) #include <debug.h> #include "ReplStructInfo.hxx" #include "ReplMarshal.hxx" #include "ReplCompare.hpp" DWORD structComp(PCHAR pStructA, PCHAR pStructB, DWORD dwStructLen, DWORD rPtrOffset[], DWORD rPtrLen[], DWORD dwNumPtrs); DWORD Wcslen(const wchar_t *wstr); DWORD Wcslen(const wchar_t *wstr) { if (wstr) return wcslen(wstr); else return 0; } DWORD Repl_ArrayComp(DS_REPL_STRUCT_TYPE structId, puReplStructArray pStructArrayA, puReplStructArray pStructArrayB) { DWORD i; DWORD dwMinArraySize; DWORD dwElementSize; PCHAR rStructA, rStructB; Repl_GetElemArray(structId, pStructArrayB, &rStructB); Repl_GetElemArray(structId, pStructArrayA, &rStructA); dwElementSize = Repl_GetElemSize(structId); dwMinArraySize = min(Repl_GetArrayLength(structId, pStructArrayA), Repl_GetArrayLength(structId, pStructArrayB)); switch(structId) { case dsReplNeighbor: { DWORD i; UUID zUUID = { 0 }; for (i = 0; i < pStructArrayA->neighborsw.cNumNeighbors; i ++) { // TODO: Figure out why RPC Doesn't return these values. pStructArrayA->neighborsw.rgNeighbor[i].uuidNamingContextObjGuid = zUUID; pStructArrayA->neighborsw.rgNeighbor[i].uuidSourceDsaObjGuid = zUUID; pStructArrayB->neighborsw.rgNeighbor[i].uuidNamingContextObjGuid = zUUID; pStructArrayB->neighborsw.rgNeighbor[i].uuidSourceDsaObjGuid = zUUID; } } break; } DWORD dwDiff = 0; DWORD success = 0; for(i = 0; i < dwMinArraySize; i ++) { if (Repl_StructComp(structId, (puReplStruct)(rStructA + (i * dwElementSize)), (puReplStruct)(rStructB + (i * dwElementSize)))) { dwDiff = 1; break; } else { success ++; } } if (dwDiff & !success) { DWORD j; dwDiff = 0; for(i = 0, j = Repl_GetArrayLength(structId, pStructArrayB) - 1; i < dwMinArraySize; j--, i ++) { if (Repl_StructComp(structId, (puReplStruct)(rStructA + (i * dwElementSize)), (puReplStruct)(rStructB + (j * dwElementSize)))) { dwDiff = 1; break; } else { success++; } } } if (dwDiff & !success) { DWORD a, b; dwDiff = 0; for(i = 0, b = Repl_GetArrayLength(structId, pStructArrayB) - 1, a = Repl_GetArrayLength(structId, pStructArrayA) - 1; i < dwMinArraySize; a--, b--, i ++) { if (Repl_StructComp(structId, (puReplStruct)(rStructA + (a * dwElementSize)), (puReplStruct)(rStructB + (b * dwElementSize)))) { dwDiff = 1; break; } else { success++; } } } if (dwDiff) return success; else return 0; } DWORD Repl_StructComp(DS_REPL_STRUCT_TYPE structId, puReplStruct pStructA, puReplStruct pStructB) { DWORD dwNumPtrs = Repl_GetPtrCount(structId); PDWORD aPtrLengths; DWORD ret; if (dwNumPtrs) aPtrLengths = (PDWORD)malloc(sizeof(PDWORD) * dwNumPtrs); Assert(pStructA && pStructB); Repl_GetPtrLengths(structId, pStructA, aPtrLengths, dwNumPtrs, NULL); ret = structComp((PCHAR)pStructA, (PCHAR)pStructB, Repl_GetElemSize(structId), Repl_GetPtrOffsets(structId), aPtrLengths, dwNumPtrs ); if (dwNumPtrs) free(aPtrLengths); return ret; } DWORD structComp(PCHAR pStructA, PCHAR pStructB, DWORD dwStructLen, DWORD rPtrOffset[], DWORD rPtrLen[], DWORD dwNumPtrs) { PCHAR pA = pStructA; PCHAR pB = pStructB; DWORD i, dwNPDSize; // Without pointer case is easy if (!dwNumPtrs) { return memcmp(pA, pB, dwStructLen); } // compare NPD before first pointer dwNPDSize = rPtrOffset[0] - 0; if (dwNPDSize && memcmp(pA, pB, dwNPDSize)) return 1; for(i = 0;;) { // advance to pointer pA = pStructA + rPtrOffset[i]; pB = pStructB + rPtrOffset[i]; if (memcmp(*(PCHAR *)pA, *(PCHAR *)pB, rPtrLen[i])) { // printf("%ws != %ws", *(LPWSTR *)pA, *(LPWSTR *)pB); return 1; } // skip over pointer pA += sizeof(PCHAR); pB += sizeof(PCHAR); if (++i == dwNumPtrs) break; // compare NPD between pointers dwNPDSize = rPtrOffset[i] - rPtrOffset[i-1] - sizeof(PCHAR); if (dwNPDSize && memcmp(pA, pB, dwNPDSize)) return 1; } // compare NPD after last pointer dwNPDSize = dwStructLen - (pA - pStructA); if (dwNPDSize && memcmp(pA, pB, dwNPDSize)) return 1; return 0; }
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
54e3def2e7b7b46bb4b2e6addef48e236f644fc2
f074be00a5797db6bfc42efe26333437e439f401
/src/qt/coincontroldialog.cpp
2d48e534d151bdcb4914c3e8e7ee783ec8fc5446
[ "MIT" ]
permissive
crypto4like/c4l
f36d8d92f24c6d3c8247a72b65146170bd6a069a
139794d99d0ba562005c1bf23dfb30a8277bf3b4
refs/heads/master
2020-04-15T20:03:53.897193
2019-01-10T02:49:05
2019-01-10T02:49:05
164,977,174
1
0
null
null
null
null
UTF-8
C++
false
false
37,945
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "coincontroldialog.h" #include "ui_coincontroldialog.h" #include "addresstablemodel.h" #include "bitcoinunits.h" #include "guiutil.h" #include "init.h" #include "optionsmodel.h" #include "walletmodel.h" #include "coincontrol.h" #include "main.h" #include "obfuscation.h" #include "wallet.h" #include "multisigdialog.h" #include <boost/assign/list_of.hpp> // for 'map_list_of()' #include <QApplication> #include <QCheckBox> #include <QCursor> #include <QDialogButtonBox> #include <QFlags> #include <QIcon> #include <QSettings> #include <QString> #include <QTreeWidget> #include <QTreeWidgetItem> using namespace std; QList<CAmount> CoinControlDialog::payAmounts; int CoinControlDialog::nSplitBlockDummy; CCoinControl* CoinControlDialog::coinControl = new CCoinControl(); CoinControlDialog::CoinControlDialog(QWidget* parent, bool fMultisigEnabled) : QDialog(parent), ui(new Ui::CoinControlDialog), model(0) { ui->setupUi(this); this->fMultisigEnabled = fMultisigEnabled; /* Open CSS when configured */ this->setStyleSheet(GUIUtil::loadStyleSheet()); // context menu actions QAction* copyAddressAction = new QAction(tr("Copy address"), this); QAction* copyLabelAction = new QAction(tr("Copy label"), this); QAction* copyAmountAction = new QAction(tr("Copy amount"), this); copyTransactionHashAction = new QAction(tr("Copy transaction ID"), this); // we need to enable/disable this lockAction = new QAction(tr("Lock unspent"), this); // we need to enable/disable this unlockAction = new QAction(tr("Unlock unspent"), this); // we need to enable/disable this // context menu contextMenu = new QMenu(); contextMenu->addAction(copyAddressAction); contextMenu->addAction(copyLabelAction); contextMenu->addAction(copyAmountAction); contextMenu->addAction(copyTransactionHashAction); contextMenu->addSeparator(); contextMenu->addAction(lockAction); contextMenu->addAction(unlockAction); // context menu signals connect(ui->treeWidget, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showMenu(QPoint))); connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress())); connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel())); connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount())); connect(copyTransactionHashAction, SIGNAL(triggered()), this, SLOT(copyTransactionHash())); connect(lockAction, SIGNAL(triggered()), this, SLOT(lockCoin())); connect(unlockAction, SIGNAL(triggered()), this, SLOT(unlockCoin())); // clipboard actions QAction* clipboardQuantityAction = new QAction(tr("Copy quantity"), this); QAction* clipboardAmountAction = new QAction(tr("Copy amount"), this); QAction* clipboardFeeAction = new QAction(tr("Copy fee"), this); QAction* clipboardAfterFeeAction = new QAction(tr("Copy after fee"), this); QAction* clipboardBytesAction = new QAction(tr("Copy bytes"), this); QAction* clipboardPriorityAction = new QAction(tr("Copy priority"), this); QAction* clipboardLowOutputAction = new QAction(tr("Copy dust"), this); QAction* clipboardChangeAction = new QAction(tr("Copy change"), this); connect(clipboardQuantityAction, SIGNAL(triggered()), this, SLOT(clipboardQuantity())); connect(clipboardAmountAction, SIGNAL(triggered()), this, SLOT(clipboardAmount())); connect(clipboardFeeAction, SIGNAL(triggered()), this, SLOT(clipboardFee())); connect(clipboardAfterFeeAction, SIGNAL(triggered()), this, SLOT(clipboardAfterFee())); connect(clipboardBytesAction, SIGNAL(triggered()), this, SLOT(clipboardBytes())); connect(clipboardPriorityAction, SIGNAL(triggered()), this, SLOT(clipboardPriority())); connect(clipboardLowOutputAction, SIGNAL(triggered()), this, SLOT(clipboardLowOutput())); connect(clipboardChangeAction, SIGNAL(triggered()), this, SLOT(clipboardChange())); ui->labelCoinControlQuantity->addAction(clipboardQuantityAction); ui->labelCoinControlAmount->addAction(clipboardAmountAction); ui->labelCoinControlFee->addAction(clipboardFeeAction); ui->labelCoinControlAfterFee->addAction(clipboardAfterFeeAction); ui->labelCoinControlBytes->addAction(clipboardBytesAction); ui->labelCoinControlPriority->addAction(clipboardPriorityAction); ui->labelCoinControlLowOutput->addAction(clipboardLowOutputAction); ui->labelCoinControlChange->addAction(clipboardChangeAction); // toggle tree/list mode connect(ui->radioTreeMode, SIGNAL(toggled(bool)), this, SLOT(radioTreeMode(bool))); connect(ui->radioListMode, SIGNAL(toggled(bool)), this, SLOT(radioListMode(bool))); // click on checkbox connect(ui->treeWidget, SIGNAL(itemChanged(QTreeWidgetItem*, int)), this, SLOT(viewItemChanged(QTreeWidgetItem*, int))); // click on header #if QT_VERSION < 0x050000 ui->treeWidget->header()->setClickable(true); #else ui->treeWidget->header()->setSectionsClickable(true); #endif connect(ui->treeWidget->header(), SIGNAL(sectionClicked(int)), this, SLOT(headerSectionClicked(int))); // ok button connect(ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(buttonBoxClicked(QAbstractButton*))); // (un)select all connect(ui->pushButtonSelectAll, SIGNAL(clicked()), this, SLOT(buttonSelectAllClicked())); // Toggle lock state connect(ui->pushButtonToggleLock, SIGNAL(clicked()), this, SLOT(buttonToggleLockClicked())); // change coin control first column label due Qt4 bug. // see https://github.com/bitcoin/bitcoin/issues/5716 ui->treeWidget->headerItem()->setText(COLUMN_CHECKBOX, QString()); ui->treeWidget->setColumnWidth(COLUMN_CHECKBOX, 84); ui->treeWidget->setColumnWidth(COLUMN_AMOUNT, 100); ui->treeWidget->setColumnWidth(COLUMN_LABEL, 170); ui->treeWidget->setColumnWidth(COLUMN_ADDRESS, 190); ui->treeWidget->setColumnWidth(COLUMN_DATE, 80); ui->treeWidget->setColumnWidth(COLUMN_CONFIRMATIONS, 100); ui->treeWidget->setColumnWidth(COLUMN_PRIORITY, 100); ui->treeWidget->setColumnHidden(COLUMN_TXHASH, true); // store transacton hash in this column, but dont show it ui->treeWidget->setColumnHidden(COLUMN_VOUT_INDEX, true); // store vout index in this column, but dont show it ui->treeWidget->setColumnHidden(COLUMN_AMOUNT_INT64, true); // store amount int64 in this column, but dont show it ui->treeWidget->setColumnHidden(COLUMN_PRIORITY_INT64, true); // store priority int64 in this column, but dont show it ui->treeWidget->setColumnHidden(COLUMN_DATE_INT64, true); // store date int64 in this column, but dont show it // default view is sorted by amount desc sortView(COLUMN_AMOUNT_INT64, Qt::DescendingOrder); // restore list mode and sortorder as a convenience feature QSettings settings; if (settings.contains("nCoinControlMode") && !settings.value("nCoinControlMode").toBool()) ui->radioTreeMode->click(); if (settings.contains("nCoinControlSortColumn") && settings.contains("nCoinControlSortOrder")) sortView(settings.value("nCoinControlSortColumn").toInt(), ((Qt::SortOrder)settings.value("nCoinControlSortOrder").toInt())); } CoinControlDialog::~CoinControlDialog() { QSettings settings; settings.setValue("nCoinControlMode", ui->radioListMode->isChecked()); settings.setValue("nCoinControlSortColumn", sortColumn); settings.setValue("nCoinControlSortOrder", (int)sortOrder); delete ui; } void CoinControlDialog::setModel(WalletModel* model) { this->model = model; if (model && model->getOptionsModel() && model->getAddressTableModel()) { updateView(); updateLabelLocked(); CoinControlDialog::updateLabels(model, this); updateDialogLabels(); } } // helper function str_pad QString CoinControlDialog::strPad(QString s, int nPadLength, QString sPadding) { while (s.length() < nPadLength) s = sPadding + s; return s; } // ok button void CoinControlDialog::buttonBoxClicked(QAbstractButton* button) { if (ui->buttonBox->buttonRole(button) == QDialogButtonBox::AcceptRole) done(QDialog::Accepted); // closes the dialog } // (un)select all void CoinControlDialog::buttonSelectAllClicked() { Qt::CheckState state = Qt::Checked; for (int i = 0; i < ui->treeWidget->topLevelItemCount(); i++) { if (ui->treeWidget->topLevelItem(i)->checkState(COLUMN_CHECKBOX) != Qt::Unchecked) { state = Qt::Unchecked; break; } } ui->treeWidget->setEnabled(false); for (int i = 0; i < ui->treeWidget->topLevelItemCount(); i++) if (ui->treeWidget->topLevelItem(i)->checkState(COLUMN_CHECKBOX) != state) ui->treeWidget->topLevelItem(i)->setCheckState(COLUMN_CHECKBOX, state); ui->treeWidget->setEnabled(true); if (state == Qt::Unchecked) coinControl->UnSelectAll(); // just to be sure CoinControlDialog::updateLabels(model, this); updateDialogLabels(); } // Toggle lock state void CoinControlDialog::buttonToggleLockClicked() { QTreeWidgetItem* item; // Works in list-mode only if (ui->radioListMode->isChecked()) { ui->treeWidget->setEnabled(false); for (int i = 0; i < ui->treeWidget->topLevelItemCount(); i++) { item = ui->treeWidget->topLevelItem(i); if (item->text(COLUMN_TYPE) == "MultiSig") continue; COutPoint outpt(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt()); if (model->isLockedCoin(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt())) { model->unlockCoin(outpt); item->setDisabled(false); item->setIcon(COLUMN_CHECKBOX, QIcon()); } else { model->lockCoin(outpt); item->setDisabled(true); item->setIcon(COLUMN_CHECKBOX, QIcon(":/icons/lock_closed")); } updateLabelLocked(); } ui->treeWidget->setEnabled(true); CoinControlDialog::updateLabels(model, this); updateDialogLabels(); } else { QMessageBox msgBox; msgBox.setObjectName("lockMessageBox"); msgBox.setStyleSheet(GUIUtil::loadStyleSheet()); msgBox.setText(tr("Please switch to \"List mode\" to use this function.")); msgBox.exec(); } } // context menu void CoinControlDialog::showMenu(const QPoint& point) { QTreeWidgetItem* item = ui->treeWidget->itemAt(point); if (item) { contextMenuItem = item; // disable some items (like Copy Transaction ID, lock, unlock) for tree roots in context menu if (item->text(COLUMN_TXHASH).length() == 64) // transaction hash is 64 characters (this means its a child node, so its not a parent node in tree mode) { copyTransactionHashAction->setEnabled(true); if (model->isLockedCoin(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt())) { lockAction->setEnabled(false); unlockAction->setEnabled(true); } else { lockAction->setEnabled(true); unlockAction->setEnabled(false); } } else // this means click on parent node in tree mode -> disable all { copyTransactionHashAction->setEnabled(false); lockAction->setEnabled(false); unlockAction->setEnabled(false); } // show context menu contextMenu->exec(QCursor::pos()); } } // context menu action: copy amount void CoinControlDialog::copyAmount() { GUIUtil::setClipboard(BitcoinUnits::removeSpaces(contextMenuItem->text(COLUMN_AMOUNT))); } // context menu action: copy label void CoinControlDialog::copyLabel() { if (ui->radioTreeMode->isChecked() && contextMenuItem->text(COLUMN_LABEL).length() == 0 && contextMenuItem->parent()) GUIUtil::setClipboard(contextMenuItem->parent()->text(COLUMN_LABEL)); else GUIUtil::setClipboard(contextMenuItem->text(COLUMN_LABEL)); } // context menu action: copy address void CoinControlDialog::copyAddress() { if (ui->radioTreeMode->isChecked() && contextMenuItem->text(COLUMN_ADDRESS).length() == 0 && contextMenuItem->parent()) GUIUtil::setClipboard(contextMenuItem->parent()->text(COLUMN_ADDRESS)); else GUIUtil::setClipboard(contextMenuItem->text(COLUMN_ADDRESS)); } // context menu action: copy transaction id void CoinControlDialog::copyTransactionHash() { GUIUtil::setClipboard(contextMenuItem->text(COLUMN_TXHASH)); } // context menu action: lock coin void CoinControlDialog::lockCoin() { if (contextMenuItem->checkState(COLUMN_CHECKBOX) == Qt::Checked) contextMenuItem->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); COutPoint outpt(uint256(contextMenuItem->text(COLUMN_TXHASH).toStdString()), contextMenuItem->text(COLUMN_VOUT_INDEX).toUInt()); model->lockCoin(outpt); contextMenuItem->setDisabled(true); contextMenuItem->setIcon(COLUMN_CHECKBOX, QIcon(":/icons/lock_closed")); updateLabelLocked(); } // context menu action: unlock coin void CoinControlDialog::unlockCoin() { COutPoint outpt(uint256(contextMenuItem->text(COLUMN_TXHASH).toStdString()), contextMenuItem->text(COLUMN_VOUT_INDEX).toUInt()); model->unlockCoin(outpt); contextMenuItem->setDisabled(false); contextMenuItem->setIcon(COLUMN_CHECKBOX, QIcon()); updateLabelLocked(); } // copy label "Quantity" to clipboard void CoinControlDialog::clipboardQuantity() { GUIUtil::setClipboard(ui->labelCoinControlQuantity->text()); } // copy label "Amount" to clipboard void CoinControlDialog::clipboardAmount() { GUIUtil::setClipboard(ui->labelCoinControlAmount->text().left(ui->labelCoinControlAmount->text().indexOf(" "))); } // copy label "Fee" to clipboard void CoinControlDialog::clipboardFee() { GUIUtil::setClipboard(ui->labelCoinControlFee->text().left(ui->labelCoinControlFee->text().indexOf(" ")).replace("~", "")); } // copy label "After fee" to clipboard void CoinControlDialog::clipboardAfterFee() { GUIUtil::setClipboard(ui->labelCoinControlAfterFee->text().left(ui->labelCoinControlAfterFee->text().indexOf(" ")).replace("~", "")); } // copy label "Bytes" to clipboard void CoinControlDialog::clipboardBytes() { GUIUtil::setClipboard(ui->labelCoinControlBytes->text().replace("~", "")); } // copy label "Priority" to clipboard void CoinControlDialog::clipboardPriority() { GUIUtil::setClipboard(ui->labelCoinControlPriority->text()); } // copy label "Dust" to clipboard void CoinControlDialog::clipboardLowOutput() { GUIUtil::setClipboard(ui->labelCoinControlLowOutput->text()); } // copy label "Change" to clipboard void CoinControlDialog::clipboardChange() { GUIUtil::setClipboard(ui->labelCoinControlChange->text().left(ui->labelCoinControlChange->text().indexOf(" ")).replace("~", "")); } // treeview: sort void CoinControlDialog::sortView(int column, Qt::SortOrder order) { sortColumn = column; sortOrder = order; ui->treeWidget->sortItems(column, order); ui->treeWidget->header()->setSortIndicator(getMappedColumn(sortColumn), sortOrder); } // treeview: clicked on header void CoinControlDialog::headerSectionClicked(int logicalIndex) { if (logicalIndex == COLUMN_CHECKBOX) // click on most left column -> do nothing { ui->treeWidget->header()->setSortIndicator(getMappedColumn(sortColumn), sortOrder); } else { logicalIndex = getMappedColumn(logicalIndex, false); if (sortColumn == logicalIndex) sortOrder = ((sortOrder == Qt::AscendingOrder) ? Qt::DescendingOrder : Qt::AscendingOrder); else { sortColumn = logicalIndex; sortOrder = ((sortColumn == COLUMN_LABEL || sortColumn == COLUMN_ADDRESS) ? Qt::AscendingOrder : Qt::DescendingOrder); // if label or address then default => asc, else default => desc } sortView(sortColumn, sortOrder); } } // toggle tree mode void CoinControlDialog::radioTreeMode(bool checked) { if (checked && model) updateView(); } // toggle list mode void CoinControlDialog::radioListMode(bool checked) { if (checked && model) updateView(); } // checkbox clicked by user void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) { if (column == COLUMN_CHECKBOX && item->text(COLUMN_TXHASH).length() == 64) // transaction hash is 64 characters (this means its a child node, so its not a parent node in tree mode) { COutPoint outpt(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt()); if (item->checkState(COLUMN_CHECKBOX) == Qt::Unchecked) coinControl->UnSelect(outpt); else if (item->isDisabled()) // locked (this happens if "check all" through parent node) item->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); else coinControl->Select(outpt); // selection changed -> update labels if (ui->treeWidget->isEnabled()){ // do not update on every click for (un)select all CoinControlDialog::updateLabels(model, this); updateDialogLabels(); } } // todo: this is a temporary qt5 fix: when clicking a parent node in tree mode, the parent node // including all childs are partially selected. But the parent node should be fully selected // as well as the childs. Childs should never be partially selected in the first place. // Please remove this ugly fix, once the bug is solved upstream. #if QT_VERSION >= 0x050000 else if (column == COLUMN_CHECKBOX && item->childCount() > 0) { if (item->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked && item->child(0)->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked) item->setCheckState(COLUMN_CHECKBOX, Qt::Checked); } #endif } // return human readable label for priority number QString CoinControlDialog::getPriorityLabel(double dPriority, double mempoolEstimatePriority) { double dPriorityMedium = mempoolEstimatePriority; if (dPriorityMedium <= 0) dPriorityMedium = AllowFreeThreshold(); // not enough data, back to hard-coded if (dPriority / 1000000 > dPriorityMedium) return tr("highest"); else if (dPriority / 100000 > dPriorityMedium) return tr("higher"); else if (dPriority / 10000 > dPriorityMedium) return tr("high"); else if (dPriority / 1000 > dPriorityMedium) return tr("medium-high"); else if (dPriority > dPriorityMedium) return tr("medium"); else if (dPriority * 10 > dPriorityMedium) return tr("low-medium"); else if (dPriority * 100 > dPriorityMedium) return tr("low"); else if (dPriority * 1000 > dPriorityMedium) return tr("lower"); else return tr("lowest"); } // shows count of locked unspent outputs void CoinControlDialog::updateLabelLocked() { vector<COutPoint> vOutpts; model->listLockedCoins(vOutpts); if (vOutpts.size() > 0) { ui->labelLocked->setText(tr("(%1 locked)").arg(vOutpts.size())); ui->labelLocked->setVisible(true); } else ui->labelLocked->setVisible(false); } void CoinControlDialog::updateDialogLabels() { if (this->parentWidget() == nullptr) { CoinControlDialog::updateLabels(model, this); return; } vector<COutPoint> vCoinControl; vector<COutput> vOutputs; coinControl->ListSelected(vCoinControl); model->getOutputs(vCoinControl, vOutputs); CAmount nAmount = 0; unsigned int nQuantity = 0; for (const COutput& out : vOutputs) { // unselect already spent, very unlikely scenario, this could happen // when selected are spent elsewhere, like rpc or another computer uint256 txhash = out.tx->GetHash(); COutPoint outpt(txhash, out.i); if(model->isSpent(outpt)) { coinControl->UnSelect(outpt); continue; } // Quantity nQuantity++; // Amount nAmount += out.tx->vout[out.i].nValue; } MultisigDialog* multisigDialog = (MultisigDialog*)this->parentWidget(); multisigDialog->updateCoinControl(nAmount, nQuantity); } void CoinControlDialog::updateLabels(WalletModel* model, QDialog* dialog) { if (!model) return; // nPayAmount CAmount nPayAmount = 0; bool fDust = false; CMutableTransaction txDummy; foreach (const CAmount& amount, CoinControlDialog::payAmounts) { nPayAmount += amount; if (amount > 0) { CTxOut txout(amount, (CScript)vector<unsigned char>(24, 0)); txDummy.vout.push_back(txout); if (txout.IsDust(::minRelayTxFee)) fDust = true; } } QString sPriorityLabel = tr("none"); CAmount nAmount = 0; CAmount nPayFee = 0; CAmount nAfterFee = 0; CAmount nChange = 0; unsigned int nBytes = 0; unsigned int nBytesInputs = 0; double dPriority = 0; double dPriorityInputs = 0; unsigned int nQuantity = 0; int nQuantityUncompressed = 0; bool fAllowFree = false; vector<COutPoint> vCoinControl; vector<COutput> vOutputs; coinControl->ListSelected(vCoinControl); model->getOutputs(vCoinControl, vOutputs); BOOST_FOREACH (const COutput& out, vOutputs) { // unselect already spent, very unlikely scenario, this could happen // when selected are spent elsewhere, like rpc or another computer uint256 txhash = out.tx->GetHash(); COutPoint outpt(txhash, out.i); if (model->isSpent(outpt)) { coinControl->UnSelect(outpt); continue; } // Quantity nQuantity++; // Amount nAmount += out.tx->vout[out.i].nValue; // Priority dPriorityInputs += (double)out.tx->vout[out.i].nValue * (out.nDepth + 1); // Bytes CTxDestination address; if (ExtractDestination(out.tx->vout[out.i].scriptPubKey, address)) { CPubKey pubkey; CKeyID* keyid = boost::get<CKeyID>(&address); if (keyid && model->getPubKey(*keyid, pubkey)) { nBytesInputs += (pubkey.IsCompressed() ? 148 : 180); if (!pubkey.IsCompressed()) nQuantityUncompressed++; } else nBytesInputs += 148; // in all error cases, simply assume 148 here } else nBytesInputs += 148; } // calculation if (nQuantity > 0) { // Bytes nBytes = nBytesInputs + ((CoinControlDialog::payAmounts.size() > 0 ? CoinControlDialog::payAmounts.size() + max(1, CoinControlDialog::nSplitBlockDummy) : 2) * 34) + 10; // always assume +1 output for change here // Priority double mempoolEstimatePriority = mempool.estimatePriority(nTxConfirmTarget); dPriority = dPriorityInputs / (nBytes - nBytesInputs + (nQuantityUncompressed * 29)); // 29 = 180 - 151 (uncompressed public keys are over the limit. max 151 bytes of the input are ignored for priority) sPriorityLabel = CoinControlDialog::getPriorityLabel(dPriority, mempoolEstimatePriority); // Fee nPayFee = CWallet::GetMinimumFee(nBytes, nTxConfirmTarget, mempool); // IX Fee if (coinControl->useSwiftTX) nPayFee = max(nPayFee, CENT); // Allow free? double dPriorityNeeded = mempoolEstimatePriority; if (dPriorityNeeded <= 0) dPriorityNeeded = AllowFreeThreshold(); // not enough data, back to hard-coded fAllowFree = (dPriority >= dPriorityNeeded); if (fSendFreeTransactions) if (fAllowFree && nBytes <= MAX_FREE_TRANSACTION_CREATE_SIZE) nPayFee = 0; if (nPayAmount > 0) { nChange = nAmount - nPayFee - nPayAmount; // Never create dust outputs; if we would, just add the dust to the fee. if (nChange > 0 && nChange < CENT) { CTxOut txout(nChange, (CScript)vector<unsigned char>(24, 0)); if (txout.IsDust(::minRelayTxFee)) { nPayFee += nChange; nChange = 0; } } if (nChange == 0) nBytes -= 34; } // after fee nAfterFee = nAmount - nPayFee; if (nAfterFee < 0) nAfterFee = 0; } // actually update labels int nDisplayUnit = BitcoinUnits::CRYPTO4LIKE; if (model && model->getOptionsModel()) nDisplayUnit = model->getOptionsModel()->getDisplayUnit(); QLabel* l1 = dialog->findChild<QLabel*>("labelCoinControlQuantity"); QLabel* l2 = dialog->findChild<QLabel*>("labelCoinControlAmount"); QLabel* l3 = dialog->findChild<QLabel*>("labelCoinControlFee"); QLabel* l4 = dialog->findChild<QLabel*>("labelCoinControlAfterFee"); QLabel* l5 = dialog->findChild<QLabel*>("labelCoinControlBytes"); QLabel* l6 = dialog->findChild<QLabel*>("labelCoinControlPriority"); QLabel* l7 = dialog->findChild<QLabel*>("labelCoinControlLowOutput"); QLabel* l8 = dialog->findChild<QLabel*>("labelCoinControlChange"); // enable/disable "dust" and "change" dialog->findChild<QLabel*>("labelCoinControlLowOutputText")->setEnabled(nPayAmount > 0); dialog->findChild<QLabel*>("labelCoinControlLowOutput")->setEnabled(nPayAmount > 0); dialog->findChild<QLabel*>("labelCoinControlChangeText")->setEnabled(nPayAmount > 0); dialog->findChild<QLabel*>("labelCoinControlChange")->setEnabled(nPayAmount > 0); // stats l1->setText(QString::number(nQuantity)); // Quantity l2->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nAmount)); // Amount l3->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nPayFee)); // Fee l4->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nAfterFee)); // After Fee l5->setText(((nBytes > 0) ? "~" : "") + QString::number(nBytes)); // Bytes l6->setText(sPriorityLabel); // Priority l7->setText(fDust ? tr("yes") : tr("no")); // Dust l8->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nChange)); // Change if (nPayFee > 0 && !(payTxFee.GetFeePerK() > 0 && fPayAtLeastCustomFee && nBytes < 1000)) { l3->setText("~" + l3->text()); l4->setText("~" + l4->text()); if (nChange > 0) l8->setText("~" + l8->text()); } // turn labels "red" l5->setStyleSheet((nBytes >= MAX_FREE_TRANSACTION_CREATE_SIZE) ? "color:red;" : ""); // Bytes >= 1000 l6->setStyleSheet((dPriority > 0 && !fAllowFree) ? "color:red;" : ""); // Priority < "medium" l7->setStyleSheet((fDust) ? "color:red;" : ""); // Dust = "yes" // tool tips QString toolTip1 = tr("This label turns red, if the transaction size is greater than 1000 bytes.") + "<br /><br />"; toolTip1 += tr("This means a fee of at least %1 per kB is required.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CWallet::minTxFee.GetFeePerK())) + "<br /><br />"; toolTip1 += tr("Can vary +/- 1 byte per input."); QString toolTip2 = tr("Transactions with higher priority are more likely to get included into a block.") + "<br /><br />"; toolTip2 += tr("This label turns red, if the priority is smaller than \"medium\".") + "<br /><br />"; toolTip2 += tr("This means a fee of at least %1 per kB is required.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CWallet::minTxFee.GetFeePerK())); QString toolTip3 = tr("This label turns red, if any recipient receives an amount smaller than %1.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, ::minRelayTxFee.GetFee(546))); // how many satoshis the estimated fee can vary per byte we guess wrong double dFeeVary; if (payTxFee.GetFeePerK() > 0) dFeeVary = (double)std::max(CWallet::minTxFee.GetFeePerK(), payTxFee.GetFeePerK()) / 1000; else dFeeVary = (double)std::max(CWallet::minTxFee.GetFeePerK(), mempool.estimateFee(nTxConfirmTarget).GetFeePerK()) / 1000; QString toolTip4 = tr("Can vary +/- %1 duff(s) per input.").arg(dFeeVary); l3->setToolTip(toolTip4); l4->setToolTip(toolTip4); l5->setToolTip(toolTip1); l6->setToolTip(toolTip2); l7->setToolTip(toolTip3); l8->setToolTip(toolTip4); dialog->findChild<QLabel*>("labelCoinControlFeeText")->setToolTip(l3->toolTip()); dialog->findChild<QLabel*>("labelCoinControlAfterFeeText")->setToolTip(l4->toolTip()); dialog->findChild<QLabel*>("labelCoinControlBytesText")->setToolTip(l5->toolTip()); dialog->findChild<QLabel*>("labelCoinControlPriorityText")->setToolTip(l6->toolTip()); dialog->findChild<QLabel*>("labelCoinControlLowOutputText")->setToolTip(l7->toolTip()); dialog->findChild<QLabel*>("labelCoinControlChangeText")->setToolTip(l8->toolTip()); // Insufficient funds QLabel* label = dialog->findChild<QLabel*>("labelCoinControlInsuffFunds"); if (label) label->setVisible(nChange < 0); } void CoinControlDialog::updateView() { if (!model || !model->getOptionsModel() || !model->getAddressTableModel()) return; bool treeMode = ui->radioTreeMode->isChecked(); ui->treeWidget->clear(); ui->treeWidget->setEnabled(false); // performance, otherwise updateLabels would be called for every checked checkbox ui->treeWidget->setAlternatingRowColors(!treeMode); QFlags<Qt::ItemFlag> flgCheckbox = Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable; QFlags<Qt::ItemFlag> flgTristate = Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsTristate; int nDisplayUnit = model->getOptionsModel()->getDisplayUnit(); double mempoolEstimatePriority = mempool.estimatePriority(nTxConfirmTarget); map<QString, vector<COutput>> mapCoins; model->listCoins(mapCoins); BOOST_FOREACH (PAIRTYPE(QString, vector<COutput>) coins, mapCoins) { QTreeWidgetItem* itemWalletAddress = new QTreeWidgetItem(); itemWalletAddress->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); QString sWalletAddress = coins.first; QString sWalletLabel = model->getAddressTableModel()->labelForAddress(sWalletAddress); if (sWalletLabel.isEmpty()) sWalletLabel = tr("(no label)"); if (treeMode) { // wallet address ui->treeWidget->addTopLevelItem(itemWalletAddress); itemWalletAddress->setFlags(flgTristate); itemWalletAddress->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); // label itemWalletAddress->setText(COLUMN_LABEL, sWalletLabel); itemWalletAddress->setToolTip(COLUMN_LABEL, sWalletLabel); // address itemWalletAddress->setText(COLUMN_ADDRESS, sWalletAddress); itemWalletAddress->setToolTip(COLUMN_ADDRESS, sWalletAddress); } CAmount nSum = 0; double dPrioritySum = 0; int nChildren = 0; int nInputSum = 0; for(const COutput& out: coins.second) { isminetype mine = pwalletMain->IsMine(out.tx->vout[out.i]); bool fMultiSigUTXO = (mine & ISMINE_MULTISIG); // when multisig is enabled, it will only display outputs from multisig addresses if (fMultisigEnabled && !fMultiSigUTXO) continue; int nInputSize = 0; nSum += out.tx->vout[out.i].nValue; nChildren++; QTreeWidgetItem* itemOutput; if (treeMode) itemOutput = new QTreeWidgetItem(itemWalletAddress); else itemOutput = new QTreeWidgetItem(ui->treeWidget); itemOutput->setFlags(flgCheckbox); itemOutput->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); //MultiSig if (fMultiSigUTXO) { itemOutput->setText(COLUMN_TYPE, "MultiSig"); if (!fMultisigEnabled) { COutPoint outpt(out.tx->GetHash(), out.i); coinControl->UnSelect(outpt); // just to be sure itemOutput->setDisabled(true); itemOutput->setIcon(COLUMN_CHECKBOX, QIcon(":/icons/lock_closed")); } } else { itemOutput->setText(COLUMN_TYPE, "Personal"); } // address CTxDestination outputAddress; QString sAddress = ""; if (ExtractDestination(out.tx->vout[out.i].scriptPubKey, outputAddress)) { sAddress = QString::fromStdString(CBitcoinAddress(outputAddress).ToString()); // if listMode or change => show Crypto4Like address. In tree mode, address is not shown again for direct wallet address outputs if (!treeMode || (!(sAddress == sWalletAddress))) itemOutput->setText(COLUMN_ADDRESS, sAddress); itemOutput->setToolTip(COLUMN_ADDRESS, sAddress); CPubKey pubkey; CKeyID* keyid = boost::get<CKeyID>(&outputAddress); if (keyid && model->getPubKey(*keyid, pubkey) && !pubkey.IsCompressed()) nInputSize = 29; // 29 = 180 - 151 (public key is 180 bytes, priority free area is 151 bytes) } // label if (!(sAddress == sWalletAddress)) // change { // tooltip from where the change comes from itemOutput->setToolTip(COLUMN_LABEL, tr("change from %1 (%2)").arg(sWalletLabel).arg(sWalletAddress)); itemOutput->setText(COLUMN_LABEL, tr("(change)")); } else if (!treeMode) { QString sLabel = model->getAddressTableModel()->labelForAddress(sAddress); if (sLabel.isEmpty()) sLabel = tr("(no label)"); itemOutput->setText(COLUMN_LABEL, sLabel); } // amount itemOutput->setText(COLUMN_AMOUNT, BitcoinUnits::format(nDisplayUnit, out.tx->vout[out.i].nValue)); itemOutput->setToolTip(COLUMN_AMOUNT, BitcoinUnits::format(nDisplayUnit, out.tx->vout[out.i].nValue)); itemOutput->setText(COLUMN_AMOUNT_INT64, strPad(QString::number(out.tx->vout[out.i].nValue), 15, " ")); // padding so that sorting works correctly // date itemOutput->setText(COLUMN_DATE, GUIUtil::dateTimeStr(out.tx->GetTxTime())); itemOutput->setToolTip(COLUMN_DATE, GUIUtil::dateTimeStr(out.tx->GetTxTime())); itemOutput->setText(COLUMN_DATE_INT64, strPad(QString::number(out.tx->GetTxTime()), 20, " ")); // confirmations itemOutput->setText(COLUMN_CONFIRMATIONS, strPad(QString::number(out.nDepth), 8, " ")); // priority double dPriority = ((double)out.tx->vout[out.i].nValue / (nInputSize + 78)) * (out.nDepth + 1); // 78 = 2 * 34 + 10 itemOutput->setText(COLUMN_PRIORITY, CoinControlDialog::getPriorityLabel(dPriority, mempoolEstimatePriority)); itemOutput->setText(COLUMN_PRIORITY_INT64, strPad(QString::number((int64_t)dPriority), 20, " ")); dPrioritySum += (double)out.tx->vout[out.i].nValue * (out.nDepth + 1); nInputSum += nInputSize; // transaction hash uint256 txhash = out.tx->GetHash(); itemOutput->setText(COLUMN_TXHASH, QString::fromStdString(txhash.GetHex())); // vout index itemOutput->setText(COLUMN_VOUT_INDEX, QString::number(out.i)); // disable locked coins if (model->isLockedCoin(txhash, out.i)) { COutPoint outpt(txhash, out.i); coinControl->UnSelect(outpt); // just to be sure itemOutput->setDisabled(true); itemOutput->setIcon(COLUMN_CHECKBOX, QIcon(":/icons/lock_closed")); } // set checkbox if (coinControl->IsSelected(txhash, out.i)) itemOutput->setCheckState(COLUMN_CHECKBOX, Qt::Checked); } // amount if (treeMode) { dPrioritySum = dPrioritySum / (nInputSum + 78); itemWalletAddress->setText(COLUMN_CHECKBOX, "(" + QString::number(nChildren) + ")"); itemWalletAddress->setText(COLUMN_AMOUNT, BitcoinUnits::format(nDisplayUnit, nSum)); itemWalletAddress->setToolTip(COLUMN_AMOUNT, BitcoinUnits::format(nDisplayUnit, nSum)); itemWalletAddress->setText(COLUMN_AMOUNT_INT64, strPad(QString::number(nSum), 15, " ")); itemWalletAddress->setText(COLUMN_PRIORITY, CoinControlDialog::getPriorityLabel(dPrioritySum, mempoolEstimatePriority)); itemWalletAddress->setText(COLUMN_PRIORITY_INT64, strPad(QString::number((int64_t)dPrioritySum), 20, " ")); } } // expand all partially selected if (treeMode) { for (int i = 0; i < ui->treeWidget->topLevelItemCount(); i++) if (ui->treeWidget->topLevelItem(i)->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked) ui->treeWidget->topLevelItem(i)->setExpanded(true); } // sort view sortView(sortColumn, sortOrder); ui->treeWidget->setEnabled(true); }
[ "root@localhost" ]
root@localhost
7a4e1f0f9cb21bc2dc7d375446bb0e647b42529b
964743cc9072f09d3d60a88ddd90971e48e8a956
/NewGeneBackEnd/Model/Tables/FieldTypes.h
34c467a139c678b38c379c49a1879437970b054e
[]
no_license
daniel347x/newgene
f6a7abae718bc4b3813c6adf2c2f991dca535954
dc0b5ddaeea441d905d627a4145d7a3e2eda78b5
refs/heads/master
2022-06-27T17:19:42.205690
2022-06-21T21:52:07
2022-06-21T21:52:07
9,526,888
0
2
null
2022-06-21T21:52:08
2013-04-18T16:55:22
C
UTF-8
C++
false
false
6,348
h
#ifndef FIELDTYPES_H #define FIELDTYPES_H #include <cstdint> #include <string> #include <vector> #include "../../sqlite/sqlite-amalgamation-3071700/sqlite3.h" enum FIELD_TYPE { FIELD_TYPE_UNKNOWN = 0 , FIELD_TYPE_INT32 , FIELD_TYPE_INT64 , FIELD_TYPE_UINT32 , FIELD_TYPE_UINT64 , FIELD_TYPE_STRING_FIXED , FIELD_TYPE_STRING_VAR , FIELD_TYPE_FLOAT // Special - typically for internal NewGene use, and not available in the user interface directly, // but only as translated from user interface options such as "primary key" being selected for a column , FIELD_TYPE_TIMESTAMP , FIELD_TYPE_UUID , FIELD_TYPE_UUID_FOREIGN , FIELD_TYPE_STRING_CODE , FIELD_TYPE_STRING_LONGHAND , FIELD_TYPE_TIME_RANGE , FIELD_TYPE_NOTES_1 , FIELD_TYPE_NOTES_2 , FIELD_TYPE_NOTES_3 , FIELD_TYPE_FIELD_TYPE // Yes, a field type defined to represent a field type (must not itself be "FIELD_TYPE_FIELD_TYPE" or that would be circular) // DMU's , FIELD_TYPE_DMU_MEMBER_UUID , FIELD_TYPE_DMU_MEMBER_UUID_NUMERIC , FIELD_TYPE_DMU_MEMBER_UUID_STRING , FIELD_TYPE_DMU_MEMBER_CODE , FIELD_TYPE_DMU_MEMBER_DESCRIPTION , FIELD_TYPE_FK_TO_DMU_CATEGORY_UUID // Time range , FIELD_TYPE_TIME_RANGE_OUTPUT_START_DATETIME , FIELD_TYPE_TIME_RANGE_OUTPUT_END_DATETIME , FIELD_TYPE_DAY , FIELD_TYPE_MONTH , FIELD_TYPE_YEAR , FIELD_TYPE_DATETIME_STRING , FIELD_TYPE_DMU_PRIMARY_KEY_AND_DAY , FIELD_TYPE_DMU_PRIMARY_KEY_AND_MONTH , FIELD_TYPE_DMU_PRIMARY_KEY_AND_YEAR , FIELD_TYPE_DMU_PRIMARY_KEY_AND_DATETIME_STRING }; bool IsFieldTypeInt32(FIELD_TYPE const & field_type); bool IsFieldTypeInt64(FIELD_TYPE const & field_type); bool IsFieldTypeInt(FIELD_TYPE const & field_type); bool IsFieldTypeFloat(FIELD_TYPE const & field_type); bool IsFieldTypeString(FIELD_TYPE const & field_type); bool IsFieldTypeTimeRange(FIELD_TYPE const & field_type); void BindSqlField(sqlite3_stmt *, int &, std::pair<FIELD_TYPE, std::string> const &); template<FIELD_TYPE THE_FIELD_TYPE> struct FieldTypeTraits { typedef void * type; static type const default_; }; template<FIELD_TYPE THE_FIELD_TYPE> typename FieldTypeTraits<THE_FIELD_TYPE>::type const FieldTypeTraits<THE_FIELD_TYPE>::default_ = nullptr; template<> struct FieldTypeTraits<FIELD_TYPE_INT32> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_INT64> { typedef std::int64_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_UINT32> { typedef std::uint32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_UINT64> { typedef std::uint64_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_STRING_FIXED> { // TODO: make this somehow fixed size at initialization? typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_STRING_VAR> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_FLOAT> { typedef double type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_TIMESTAMP> { typedef std::int64_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_UUID> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_UUID_FOREIGN> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_STRING_CODE> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_STRING_LONGHAND> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_TIME_RANGE> { typedef std::uint64_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_NOTES_1> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_NOTES_2> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_NOTES_3> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_FIELD_TYPE> { typedef FIELD_TYPE type; static type const default_ = FIELD_TYPE_UNKNOWN; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_MEMBER_UUID> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_MEMBER_UUID_NUMERIC> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_MEMBER_UUID_STRING> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_MEMBER_CODE> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_MEMBER_DESCRIPTION> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_FK_TO_DMU_CATEGORY_UUID> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_TIME_RANGE_OUTPUT_START_DATETIME> { typedef std::int64_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_TIME_RANGE_OUTPUT_END_DATETIME> { typedef std::int64_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DAY> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_MONTH> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_YEAR> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DATETIME_STRING> { typedef std::string type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_PRIMARY_KEY_AND_DAY> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_PRIMARY_KEY_AND_MONTH> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_PRIMARY_KEY_AND_YEAR> { typedef std::int32_t type; static type const default_; }; template<> struct FieldTypeTraits<FIELD_TYPE_DMU_PRIMARY_KEY_AND_DATETIME_STRING> { typedef std::string type; static type const default_; }; #endif
[ "daniel347x@gmail.com" ]
daniel347x@gmail.com
5cf707f208d4444e3f2bb4a93019bcefea5d3130
fbfd3ec0f89101f4e7403854b0ebbeade1d06c1d
/Unreal Engine Full C++/ShootTheMap/Source/ShootTheMap/Public/UI/STMSpectatorWidget.h
7b94002939e23737d4398e450f556cc7dee76dfa
[]
no_license
markveligod/CoursesUnrealEngine
b1a14692f2d74d15a3911df4933b6f7588149f3d
3939882f35a81a47a7f8b8dd324f566a141e16dd
refs/heads/main
2023-05-30T23:24:02.200425
2021-06-16T16:19:20
2021-06-16T16:19:20
320,260,105
1
0
null
null
null
null
UTF-8
C++
false
false
354
h
// ShootTheMap #pragma once #include "CoreMinimal.h" #include "Blueprint/UserWidget.h" #include "STMSpectatorWidget.generated.h" /** * */ UCLASS() class SHOOTTHEMAP_API USTMSpectatorWidget : public UUserWidget { GENERATED_BODY() public: UFUNCTION(BlueprintCallable, Category = "UI") bool GetRespawnTime(int32 &CountTimeData) const; };
[ "markveligod@yandex.ru" ]
markveligod@yandex.ru
70737d7e7a5ea847228431c708b12eaccf67e441
e4064cba03e08a7d71e87d9acac7508a8fed8e2b
/PAT乙级(Basic Level)真题/1006.cpp
6276e8519f6f489833b90b86fa4a6fd5ce1e0673
[]
no_license
fengshow12345/NowCoder-Solutions
3a4ad58631c2b6e7928c85ea15045785a6ff9b2f
7656c63664ea865de2180b266023560b6fbcf820
refs/heads/master
2020-03-08T10:20:52.243373
2018-04-04T12:41:26
2018-04-04T12:41:26
128,071,007
1
0
null
2018-04-04T14:05:38
2018-04-04T14:05:38
null
UTF-8
C++
false
false
311
cpp
#include <iostream> using namespace std; int main() { int A, DA, B, DB; cin >> A >> DA >> B >> DB; int AA = 0, BB = 0; while (A != 0) { if (DA == A % 10) { AA = AA * 10 + DA; } A /= 10; } while (B != 0) { if (DB == B % 10) { BB = BB * 10 + DB; } B /= 10; } cout << AA + BB; return 0; }
[ "shiqitao@163.com" ]
shiqitao@163.com
d74115e4d7826dbe77bfcb4b93186b85348aae35
d1f7ed3891d318cb3552c35a36d5c35fee3bc291
/CSCE 121 Intro Prog/Project/XX/x1/x.cpp
658f83a50dce59b46c172b5caa5991af4a551dad
[]
no_license
carstenhood/TAMU
6b790430632882d481ec323413676af84f098693
bde49ada8be7e8205c3fd3e3d16bcbba41a40572
refs/heads/master
2021-08-31T22:47:22.942477
2017-12-23T07:17:34
2017-12-23T07:17:34
114,523,829
0
0
null
null
null
null
UTF-8
C++
false
false
12,566
cpp
// // main.cpp // x_test // // Created by Carsten Hood on 11/15/13. // Copyright (c) 2013 Carsten Hood. All rights reserved. // #include <iostream> #include "std_lib_facilities_3.h" #include "Simple_window.h" //fltk #include "Graph.h" //fltk //----------------------------------------------------------------- //fake graphics for testing; delete this later /*struct Point { int x; int y; Point(int xx, int yy) : x(xx), y(yy) {} }; struct Image { string name; Point p; Image(Point pp, string n) : name(n), p(pp) {} }; struct Text { string name; Point p; Text(Point pp, string n) : name(n), p(pp) {} };*/ //fake graphics ends //----------------------------------------------------------------- struct Movie_display { Image *poster; Text *title; Text *year; Text *tags; Text *actors; Text *scores; Text *avg; Movie_display(Image *p, Text *tl, Text *y, Text *tg, Text *a, Text *s, Text *av) : poster(p), title(tl), year(y), tags(tg), actors(a), scores(s), avg(av) { } }; //----------------------------------------------------------------- //testing code begins; this will be deleted (substitutes for code I don't have) struct Actor { vector<string> names; string photo; }; struct Movie { string title; string poster; int year; vector<Actor> actors; vector<string> tags; vector<double> scores; }; //returns a vector of Movies as read from a file vector<Movie> get_movies_from_file() { ifstream in; in.open("mdb.txt"); string input; vector<Movie> movies_read; while (true) { getline(in, input); if (input != "-NEXT MOVIE") break; Movie m; getline(in, m.title); getline(in, input); if (input!="") { stringstream year_stream(input); year_stream >> m.year; } else m.year = 0000; getline(in, m.poster); getline(in, input); while (true) { getline(in, input); if (input != "ACTOR") break; Actor actor; getline(in, actor.photo); string name; while (true) { getline(in, name); if (name == "") break; actor.names.push_back(name); } m.actors.push_back(actor); } while (true) { string tag; getline(in, tag); if (tag == "" || !in) break; m.tags.push_back(tag); } while (true) { double score; getline(in, input); if (input == "" || !in) break; stringstream score_stream(input); score_stream >> score; m.scores.push_back(score); } movies_read.push_back(m); getline(in, input); } return movies_read; } Simple_window win1(Point(100,200),600,600,"Testing"); vector<int> int_vector; vector<Movie> movie_vector; void populate_vectors() //creates a fake vector of movies for testing { movie_vector = get_movies_from_file(); for (int i=0; i<movie_vector.size(); ++i) { int_vector.push_back(i); } /*for (int i=0; i<5; ++i) { Movie m; stringstream test_stream; test_stream << " " << i; m.title = "Black Death" + test_stream.str(); m.poster = "blackdeath.jpg"; m.year = 2005; for (int k=0; k<10; ++k) { m.tags.push_back("Horror"); m.tags.push_back("Thriller"); m.tags.push_back("Action"); } Actor actor; actor.photo = "seanbean.jpg"; actor.names.push_back("Sean"); actor.names.push_back("Bean"); for (int k=0; k<10; ++k) { m.actors.push_back(actor); } for (int k=0; k<100; ++k) { m.scores.push_back(8.0+k*1.0/100.0); } movie_vector.push_back(m); int_vector.push_back(i);*/ } //testing code ends //----------------------------------------------------------------- //global variables int rows=2; //global variable can be 1-4; its square is the # of movies on the screen at a time; int display_index; vector<Movie_display*> movie_displays; //draw an individual movie given the location and dimensions of the display area void draw_movie(Movie &m, Point p, int w, int h) { //testing cout << "Displaying a movie at: (" << p.x << ", " << p.y << ") with height: " << h << " width: " << w << "\n"; double poster_side_length = h/2; if (poster_side_length > w) poster_side_length = w; int line_width=w/7; // less than 100 characters in 600 pixels int line_height=10+(5-rows)*3; Point text_point(p.x, p.y + h/2 + line_height); //display poster Image *poster = new Image(p, m.poster); poster->set_mask(Point(0,0), w-10, h/2); //fltk //display title stringstream year_stream; year_stream << "(" << m.year << ")"; //display tags stringstream tags_stream; if (rows < 5) { tags_stream << "Tags: "; for (int i=0; i<m.tags.size(); ++i) { if (tags_stream.str().length()+m.tags[i].length() > line_width) { tags_stream << "..."; break; } if (i!=0) tags_stream << ", "; tags_stream << m.tags[i]; if (i == m.tags.size()-1) tags_stream << ";"; } } //display actors stringstream actors_stream; if (rows < 5) { actors_stream << "Actors:"; for (int i=0; i<m.actors.size(); ++i) { stringstream next_actor; for (int k=0; k<m.actors[i].names.size(); ++k) next_actor << " " << m.actors[i].names[k]; if (actors_stream.str().length()+next_actor.str().length() > line_width) { actors_stream << "..."; break; } if (i!=0) actors_stream << ","; actors_stream << next_actor.str(); if (i == m.actors.size()-1) actors_stream << ";"; } } //display scores stringstream scores_stream; if (rows < 5) { scores_stream << "Ratings: "; for (int i=0; i<m.scores.size(); ++i) { stringstream next_score; next_score << m.scores[i]; if (scores_stream.str().length()+next_score.str().length() > line_width) { scores_stream << "..."; break; } if (i!=0) scores_stream << ", "; scores_stream << m.scores[i]; if (i == m.scores.size()-1) scores_stream << ";"; } } //display average score stringstream avg_stream; if (m.scores.size()>0) { double mean=0; double total_sum = 0; //sum values to determine mean for (int i=0; i<m.scores.size(); ++i) total_sum+=m.scores[i]; mean = total_sum/m.scores.size(); avg_stream << "Average rating: " << mean << " / 10.0"; } Text *title = new Text(text_point, m.title); title->set_font_size(22-rows*2); Text *year = new Text(Point(text_point.x, text_point.y+line_height), year_stream.str()); year->set_font_size(20-rows*2); Text *tags = new Text(Point(text_point.x, text_point.y+line_height*2), tags_stream.str()); tags->set_font_size(16-rows); Text *actors = new Text(Point(text_point.x, text_point.y+line_height*2.9), actors_stream.str()); actors->set_font_size(14-rows); Text *scores = new Text(Point(text_point.x, text_point.y+line_height*3.7), scores_stream.str()); scores->set_font_size(14-rows); Text *avg = new Text(Point(text_point.x, text_point.y+line_height*4.5), avg_stream.str()); avg->set_font_size(14-rows); win1.attach(*poster); // fltk win1.attach(*title); win1.attach(*year); win1.attach(*tags); win1.attach(*actors); win1.attach(*scores); win1.attach(*avg); Movie_display *m_display = new Movie_display(poster, title, year, tags, actors, scores, avg); movie_displays.push_back(m_display); } void clear_movies() { for (int i=0; i<movie_displays.size(); ++i) { //remove movie_displays[i] from win1 } movie_displays.clear(); } void display_movies(int index) //the index in int_vector of the first movie to be displayed on this screen { clear_movies(); //position and dimensions of the movies display within the window // "display" refers to the region where the movies will be // displayed on the right side of the window double display_x = 10; //leftmost point of display (probs around 300) double display_y = 10; //margin of top of display (probs around 10) double display_width = 600; double display_height = 600; //distance between individual movies; also determines width of movie double xspread = display_width/rows; double yspread = display_height/rows; //loop through the rows and columns, and call draw_movie on every movie double y = 0; //or //double y = yspread/2; //to give the center for (int row=0; row<rows; ++row) { double x = 0; for (int col=0; col<rows; ++col) { if (index < int_vector.size()) //if we are not through with the movies draw the next one draw_movie(movie_vector[int_vector[index]], Point(x+display_x, y+display_y), xspread, yspread); x+=xspread; ++index; } y+=yspread; } } bool can_next() { //checks if the next button should be visible return display_index + rows*rows < int_vector.size(); } bool can_prev() { //checks if the prev button should be visible return display_index - rows*rows >= 0; } void update_num_rows() { //rows = rows_box.input or whatever (get an int from a "number of rows" input box) rows=2; //testing if (rows<1) rows=1; // min movies that can be displayed is 1^2 (1 movie) else if (rows>4) rows=4; //max # of movies that can be displayed is 4^2 (16 movies) display_index=0; //hide the prev button if (!can_next()) { //hide the next button } } void next_button_touched() { clear_movies(); display_index+=rows*rows; display_movies(display_index); if (can_next()) { //hide the next button } //show the prev button } void prev_button_touched() { clear_movies(); display_index -= rows*rows; display_movies(display_index); if (can_prev()) { //hide the prev button } //show the next button } int main() { try { //Simple_window win1(Point(100,200),600,600,"Testing"); //fltk populate_vectors(); display_movies(0); cout << "\n"; for (int i=0; i<movie_displays.size(); ++i) { /*cout << "\n"; cout << movie_displays[i]->poster->name << " at (" << movie_displays[i]->poster->p.x << ", " << movie_displays[i]->poster->p.y << ")\n"; cout << movie_displays[i]->title->name << " at (" << movie_displays[i]->title->p.x << ", " << movie_displays[i]->title->p.y << ")\n"; cout << movie_displays[i]->tags->name << " at (" << movie_displays[i]->tags->p.x << ", " << movie_displays[i]->tags->p.y << ")\n"; cout << movie_displays[i]->actors->name << " at (" << movie_displays[i]->actors->p.x << ", " << movie_displays[i]->actors->p.y << ")\n"; cout << movie_displays[i]->scores->name << " at (" << movie_displays[i]->scores->p.x << ", " << movie_displays[i]->scores->p.y << ")\n\n";*/ /*win1.attach(*movie_displays[i]->poster); // fltk win1.attach(*movie_displays[i]->title); win1.attach(*movie_displays[i]->year); win1.attach(*movie_displays[i]->tags); win1.attach(*movie_displays[i]->actors); win1.attach(*movie_displays[i]->scores); win1.attach(*movie_displays[i]->avg);*/ } cout << "\n"; win1.wait_for_button(); //fltk } catch(exception& e) { cerr << "Exception: " << e.what() << '\n'; return 1; } catch (...) { cerr << "Some exception\n"; return 1; } return 0; }
[ "carstenfhood@gmail.com" ]
carstenfhood@gmail.com
4968136139f2eb08b4ffb859c6cf35c997398323
149cf6dcaecf6e4091d758dd065fb25a146d7844
/binarytrees/reconstruct.cpp
23d0f036a8106e22687d2bd771045358c8c1ef0b
[]
no_license
rkty13/DataStructAlgo
1902b06efeacc6f81c486101c975ad9be799ad3e
e2eb36cd53062be8cb6227524606ace5d4ac83f8
refs/heads/master
2021-01-10T05:13:15.755186
2015-11-19T04:59:11
2015-11-19T04:59:11
44,970,436
0
1
null
null
null
null
UTF-8
C++
false
false
728
cpp
#include <iostream> #include "BNode.h" /* Reconstructs a binary tree given a pre-order and in-order representation of the tree. */ BNode * reconstruct(const std::vector<int> pre, const std::vector<int> in) { BNode *root = new BNode(pre[0]); if (pre.size() == 1) { return root; } else if (pre.size() == 2) { if (pre[1] == in[0]) { root->left = new BNode(in[0]); } else if (pre[1] == in[1]) { root->right = new BNode(in[1]); } return root; } int in_pos = 0; for (int i = 0; i < in.size(); ++i) if (pre[0] == in[i]) in_pos = i; break; root->left = std::vector<int> in_left(&in[0], &in[in_pos - 1]); root->right = std::vector<int> in_right(&in[in_pos + 1], &in[in.size()]); return root; } int main() {}
[ "rkty13@gmail.com" ]
rkty13@gmail.com
4e20d2ac2c80a8705f044edd3219d3ea0ba564a9
a0faf7fcc84166ec3b113b2449431bd1100956f6
/main.cpp
952a45d89520dcb73e872c0104c3f2e4f30cfc19
[]
no_license
artthirt/scan_pmf
aa290bc2188a700d53179783ae2b71b42422c123
91f48c10c36d45cd2f02c4cfd28a6b433a7c1668
refs/heads/master
2023-07-03T07:07:17.650299
2021-08-17T08:31:16
2021-08-17T08:31:16
369,106,854
0
0
null
null
null
null
UTF-8
C++
false
false
3,078
cpp
#include <QCoreApplication> #include <QApplication> #include "mainwindow.h" #include "parserpmf.h" void gen1() { ParserPmf parser; parser.loadMask("d:\\develop\\dir15\\data\\KALAN_SCANS\\FlatField_r0000000000.pmf", QRect(0, 512, 3840, 256)); parser.setUseMask(true); parser.setRect(QRect(720, 0, 1100, 256)); parser.setUseFilter(true); parser.setUseInv(true); parser.setNeededWidth(1100); parser.scanDir("d:\\develop\\dir15\\data\\KALAN_SCANS\\", "sample_AngleNumber"); } void gen2() { ParserPmf parser; parser.clearOutputDir(); //parser.loadMask("d:\\develop\\dir15\\data\\M4\\FF\\000.pmf", QRect(0, 0, 3840, 256)); parser.setUseMask(true); parser.setRect(QRect(1950, 0, 480, 256)); parser.loadMask("d:/develop/dir15/data/14052021_1/FF/00000_00000.txt", QRect(0, 0, 3840, 256)); parser.setMax(50000); parser.setAngleRange(0, 360); parser.setThreshold(0.01); //d:\develop\dir15\data\M4_\Scans\ //parser.scanDir("d:\\develop\\dir15\\data\\M4\\Scans", ""); //parser.scanDir("d:\\develop\\dir15\\data\\M4_\\Scans\\", ""); parser.setNeededWidth(480); //parser.setUseInv(true); parser.setUseFilter(true); parser.setRemove256RemoveLine(true); parser.setBlurIter(1); parser.setKernelSize(9); parser.scanDir("d:/develop/dir15/data/14052021_1/Scans/", ""); } void gen3() { ParserPmf parser; parser.clearOutputDir(); //parser.setUseMask(true); parser.setRect(QRect(1763, 0, 350, 256)); //parser.loadMask("d:/develop/dir15/data/14052021_1/FF/00000_00000.txt", QRect(0, 0, 3840, 256)); parser.setMax(255); parser.setAngleRange(0, 360); parser.setThreshold(0.55); parser.setThresholdAsDynamicRange(true); parser.setNeededWidth(350); //parser.setUseInv(true); parser.setUseFilter(true); parser.setRemove256RemoveLine(true); parser.setBlurIter(3); parser.setKernelSize(3); parser.setUseNonLinearLut(true); //parser.setUseMedianFilter(false); parser.scanDirPgm("d://develop//dir15//data//PGM//Pattern_with_M3", ""); } void gen4() { ParserPmf parser; parser.clearOutputDir(); parser.setUseMask(true); parser.setRect(QRect(1178, 0, 540, 256)); parser.loadMask("d:\\develop\\dir15\\data\\PGM 2\\Pattern_FF\\0000.pgm", QRect(0, 0, 3840, 256)); parser.setMax(255); parser.setUseInv(true); parser.setAngleRange(0, 360); //parser.setThreshold(0.1); //parser.setThresholdAsDynamicRange(true); parser.setNeededWidth(540); parser.setUseFilter(true); //parser.setRemove256RemoveLine(true); //parser.setBlurIter(1); parser.setKernelSize(5); //parser.setUseNonLinearLut(true); //parser.setUseMedianFilter(false); parser.scanDirPgm("d:\\develop\\dir15\\data\\PGM 2\\Pattern\\", ""); } int main(int argc, char *argv[]) { #if 0 QCoreApplication a(argc, argv); qDebug("begin..."); gen4(); qDebug("end"); return 0; #else QApplication app(argc, argv); MainWindow w; w.show(); return app.exec(); #endif }
[ "artthirt@gmail.com" ]
artthirt@gmail.com
4dc2ea8709fd0244a26eeff03516d0fcf97a4f60
b4aff90b636412db70a2e2e2ab819a24d65cba2b
/voipengine/voipsdk/webrtc/src/chromium/src/content/common/gpu/client/gpu_memory_buffer_impl.h
dc792246e1fac1d29d2f02271b5dc03735b37d90
[]
no_license
brainpoint/voip_ios
9a9aebba88b3c5bb17108d7ed87c702f23dc6f12
5205f896b9e60881f52c0b12b1c5188c9608d83e
refs/heads/master
2020-12-26T04:37:38.258937
2015-04-14T16:16:31
2015-04-14T16:16:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,302
h
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_ #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_ #include "base/callback.h" #include "base/memory/scoped_ptr.h" #include "content/common/content_export.h" #include "ui/gfx/gpu_memory_buffer.h" #include "ui/gfx/size.h" namespace content { // Provides common implementation of a GPU memory buffer. class CONTENT_EXPORT GpuMemoryBufferImpl : public gfx::GpuMemoryBuffer { public: typedef base::Callback<void(uint32 sync_point)> DestructionCallback; ~GpuMemoryBufferImpl() override; // Creates an instance from the given |handle|. |size| and |internalformat| // should match what was used to allocate the |handle|. |callback| is // called when instance is deleted, which is not necessarily on the same // thread as this function was called on and instance was created on. static scoped_ptr<GpuMemoryBufferImpl> CreateFromHandle( const gfx::GpuMemoryBufferHandle& handle, const gfx::Size& size, Format format, const DestructionCallback& callback); // Type-checking upcast routine. Returns an NULL on failure. static GpuMemoryBufferImpl* FromClientBuffer(ClientBuffer buffer); // Returns the number of bytes per pixel that must be used by an // implementation when using |format|. static size_t BytesPerPixel(Format format); // Overridden from gfx::GpuMemoryBuffer: bool IsMapped() const override; Format GetFormat() const override; ClientBuffer AsClientBuffer() override; void set_destruction_sync_point(uint32 sync_point) { destruction_sync_point_ = sync_point; } protected: GpuMemoryBufferImpl(gfx::GpuMemoryBufferId id, const gfx::Size& size, Format format, const DestructionCallback& callback); const gfx::GpuMemoryBufferId id_; const gfx::Size size_; const Format format_; const DestructionCallback callback_; bool mapped_; uint32 destruction_sync_point_; private: DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImpl); }; } // namespace content #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_H_
[ "houxuehua49@gmail.com" ]
houxuehua49@gmail.com
5ea463b221cc249c615b2e6729e6604696f5f4ef
110aab8977911ddf8526a49481709e4413f3b29c
/src/objects/js-array-buffer-inl.h
ceb8fbe0498f16d1e54974543b282678e2dd5fab
[ "BSD-3-Clause", "SunPro", "bzip2-1.0.6", "Apache-2.0" ]
permissive
jimmcnulty41/v8
9501597d632b7c39527acd4535269d5cecbcae48
9f7dec93801ffaf21d787cfb290826bedbe64da8
refs/heads/master
2020-05-26T04:23:32.635341
2019-05-21T19:40:57
2019-05-22T17:22:47
188,105,161
1
0
null
2019-05-22T19:58:56
2019-05-22T19:58:56
null
UTF-8
C++
false
false
5,772
h
// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_OBJECTS_JS_ARRAY_BUFFER_INL_H_ #define V8_OBJECTS_JS_ARRAY_BUFFER_INL_H_ #include "src/objects/js-array-buffer.h" #include "src/heap/heap-write-barrier-inl.h" #include "src/objects-inl.h" #include "src/objects/js-objects-inl.h" #include "src/wasm/wasm-engine.h" // Has to be the last include (doesn't have include guards): #include "src/objects/object-macros.h" namespace v8 { namespace internal { OBJECT_CONSTRUCTORS_IMPL(JSArrayBuffer, JSObject) OBJECT_CONSTRUCTORS_IMPL(JSArrayBufferView, JSObject) OBJECT_CONSTRUCTORS_IMPL(JSTypedArray, JSArrayBufferView) OBJECT_CONSTRUCTORS_IMPL(JSDataView, JSArrayBufferView) CAST_ACCESSOR(JSArrayBuffer) CAST_ACCESSOR(JSArrayBufferView) CAST_ACCESSOR(JSTypedArray) CAST_ACCESSOR(JSDataView) size_t JSArrayBuffer::byte_length() const { return ReadField<size_t>(kByteLengthOffset); } void JSArrayBuffer::set_byte_length(size_t value) { WriteField<size_t>(kByteLengthOffset, value); } void* JSArrayBuffer::backing_store() const { return reinterpret_cast<void*>(ReadField<Address>(kBackingStoreOffset)); } void JSArrayBuffer::set_backing_store(void* value, WriteBarrierMode mode) { WriteField<Address>(kBackingStoreOffset, reinterpret_cast<Address>(value)); } size_t JSArrayBuffer::allocation_length() const { if (backing_store() == nullptr) { return 0; } // If this buffer is managed by the WasmMemoryTracker if (is_wasm_memory()) { const auto* data = GetIsolate()->wasm_engine()->memory_tracker()->FindAllocationData( backing_store()); DCHECK_NOT_NULL(data); return data->allocation_length; } return byte_length(); } void* JSArrayBuffer::allocation_base() const { if (backing_store() == nullptr) { return nullptr; } // If this buffer is managed by the WasmMemoryTracker if (is_wasm_memory()) { const auto* data = GetIsolate()->wasm_engine()->memory_tracker()->FindAllocationData( backing_store()); DCHECK_NOT_NULL(data); return data->allocation_base; } return backing_store(); } bool JSArrayBuffer::is_wasm_memory() const { return IsWasmMemoryBit::decode(bit_field()); } void JSArrayBuffer::set_is_wasm_memory(bool is_wasm_memory) { set_bit_field(IsWasmMemoryBit::update(bit_field(), is_wasm_memory)); } void JSArrayBuffer::clear_padding() { if (FIELD_SIZE(kOptionalPaddingOffset) != 0) { DCHECK_EQ(4, FIELD_SIZE(kOptionalPaddingOffset)); memset(reinterpret_cast<void*>(address() + kOptionalPaddingOffset), 0, FIELD_SIZE(kOptionalPaddingOffset)); } } void JSArrayBuffer::set_bit_field(uint32_t bits) { WriteField<uint32_t>(kBitFieldOffset, bits); } uint32_t JSArrayBuffer::bit_field() const { return ReadField<uint32_t>(kBitFieldOffset); } // |bit_field| fields. BIT_FIELD_ACCESSORS(JSArrayBuffer, bit_field, is_external, JSArrayBuffer::IsExternalBit) BIT_FIELD_ACCESSORS(JSArrayBuffer, bit_field, is_detachable, JSArrayBuffer::IsDetachableBit) BIT_FIELD_ACCESSORS(JSArrayBuffer, bit_field, was_detached, JSArrayBuffer::WasDetachedBit) BIT_FIELD_ACCESSORS(JSArrayBuffer, bit_field, is_shared, JSArrayBuffer::IsSharedBit) size_t JSArrayBufferView::byte_offset() const { return ReadField<size_t>(kByteOffsetOffset); } void JSArrayBufferView::set_byte_offset(size_t value) { WriteField<size_t>(kByteOffsetOffset, value); } size_t JSArrayBufferView::byte_length() const { return ReadField<size_t>(kByteLengthOffset); } void JSArrayBufferView::set_byte_length(size_t value) { WriteField<size_t>(kByteLengthOffset, value); } ACCESSORS(JSArrayBufferView, buffer, Object, kBufferOffset) bool JSArrayBufferView::WasDetached() const { return JSArrayBuffer::cast(buffer())->was_detached(); } size_t JSTypedArray::length() const { return ReadField<size_t>(kLengthOffset); } void JSTypedArray::set_length(size_t value) { WriteField<size_t>(kLengthOffset, value); } bool JSTypedArray::is_on_heap() const { DisallowHeapAllocation no_gc; // Checking that buffer()->backing_store() is not nullptr is not sufficient; // it will be nullptr when byte_length is 0 as well. FixedTypedArrayBase fta = FixedTypedArrayBase::cast(elements()); return fta->base_pointer()->ptr() == fta.ptr(); } // static MaybeHandle<JSTypedArray> JSTypedArray::Validate(Isolate* isolate, Handle<Object> receiver, const char* method_name) { if (V8_UNLIKELY(!receiver->IsJSTypedArray())) { const MessageTemplate message = MessageTemplate::kNotTypedArray; THROW_NEW_ERROR(isolate, NewTypeError(message), JSTypedArray); } Handle<JSTypedArray> array = Handle<JSTypedArray>::cast(receiver); if (V8_UNLIKELY(array->WasDetached())) { const MessageTemplate message = MessageTemplate::kDetachedOperation; Handle<String> operation = isolate->factory()->NewStringFromAsciiChecked(method_name); THROW_NEW_ERROR(isolate, NewTypeError(message, operation), JSTypedArray); } // spec describes to return `buffer`, but it may disrupt current // implementations, and it's much useful to return array for now. return array; } void* JSDataView::data_pointer() const { return reinterpret_cast<void*>(ReadField<Address>(kDataPointerOffset)); } void JSDataView::set_data_pointer(void* value) { WriteField<Address>(kDataPointerOffset, reinterpret_cast<Address>(value)); } } // namespace internal } // namespace v8 #include "src/objects/object-macros-undef.h" #endif // V8_OBJECTS_JS_ARRAY_BUFFER_INL_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
42ed86c4b44cd16061129061c8f0f0d1c0581593
cad6c698944b92d1da5c54c7473758e751bb36ac
/plugins/ie/oophm/oophm/SessionData.h
8585a4426e0c2288beefdeca99f8183b7d4e2408
[]
no_license
jhartman/scalagwt-gwt
2af05004040a78315c130abd05c4dd08975aa414
b3e32a53cbb44213a48bd1bbd4c3037fb4fa8f72
refs/heads/master
2021-01-18T16:19:25.065024
2011-03-18T17:19:43
2011-03-18T17:19:43
1,424,165
0
0
null
null
null
null
UTF-8
C++
false
false
3,152
h
/* * Copyright 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ #pragma once #include "stdafx.h" #include "comutil.h" #include "HostChannel.h" #include "Mshtml.h" #include "SessionHandler.h" #include "scoped_ptr/scoped_ptr.h" /* * Encapsules per-OOPHM-session data. */ class SessionData { public: SessionData(HostChannel* channel, IHTMLWindow2* window, SessionHandler* sessionHandler) : channel(channel), window(window), sessionHandler(sessionHandler) { } virtual void freeJavaObject(unsigned int objId)=0; HostChannel* getHostChannel() const { return channel.get(); } SessionHandler* getSessionHandler() const { return sessionHandler; } IHTMLWindow2* getWindow() const { return window; } /* * Convert a value from the JavaScript into something that can be sent back * to the OOPHM host. */ virtual void makeValue(Value& value, const _variant_t& in)=0; /* * Convert a value from the OOPHM host into something that can be passed into * the JavaScript execution environment. */ virtual void makeValueRef(_variant_t& value, const Value& in)=0; protected: /* * The communication channel used for the OOPHM session. */ scoped_ptr<HostChannel> const channel; /* * A reference to the SessionHandler being used in the OOPHM session. */ SessionHandler* const sessionHandler; CComPtr<IHTMLWindow2> const window; }; typedef SessionData* SessionDataRef; // TODO move these to a utility header static std::string BSTRToUTF8(BSTR bstr) { // Need an explict length due to the possibility of embedded nulls int length = SysStringLen(bstr); int numChars = WideCharToMultiByte(CP_UTF8, 0, bstr, length, NULL, 0, NULL, NULL); char* buffer = new char[numChars]; int res = WideCharToMultiByte(CP_UTF8, 0, bstr, length, buffer, numChars, NULL, NULL); // TODO assert res == numChars? std::string toReturn = std::string(buffer, res); delete[] buffer; return toReturn; } /* * Convert a utf8-encoded string into a BSTR. The length is explicitly * specified because the incoming string may have embedded null charachers. */ static _bstr_t UTF8ToBSTR(int length, const char* utf8) { // We explicitly use MultiByteToWideChar to handle embedded nulls int numChars = MultiByteToWideChar(CP_UTF8, 0, utf8, length, NULL, 0); OLECHAR* buffer = new OLECHAR[numChars]; int res = MultiByteToWideChar(CP_UTF8, 0, utf8, length, buffer, numChars); // Manually allocate the BSTR to set the length; _bstr_t assumes C-strings _bstr_t toReturn = _bstr_t(SysAllocStringLen(buffer, res), false); delete[] buffer; return toReturn; }
[ "jat@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7" ]
jat@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7
4406fcb64f644a1175c8600e6e598de76c72945c
fe7f262f34377aace02d46af30ea668b7d88076c
/src/io/ArrheniusAlloys.cpp
38446e02c35e8d5e27e34ab656e3e282bdd5b851
[ "Apache-2.0" ]
permissive
Warmshawn/MMonCa
02c08dc9ba285d3dae9c7825b6b71b8c158d411d
df279c2103484e89898ff4e81b45fb9ad43bcb9e
refs/heads/master
2021-02-15T20:23:57.977293
2020-02-29T02:03:30
2020-02-29T02:03:30
244,928,616
1
0
Apache-2.0
2020-03-04T14:58:12
2020-03-04T14:58:11
null
UTF-8
C++
false
false
3,998
cpp
/* * ArrheniusAlloys.cpp * * Created on: Dec 20, 2012 * * Copyright 2014 IMDEA Materials Institute, Getafe, Madrid, Spain * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "ArrheniusAlloys.h" #include "io/Diagnostic.h" #include "kernel/MeshElement.h" #include "io/ParameterManager.h" using std::vector; namespace IO { ArrheniusAlloys::ArrheniusAlloys(double p, double e) { for(unsigned i=0; i <= NVALUES; ++i) { _v[i]._pref = p; _v[i]._ener = e; } } ArrheniusAlloys::ArrheniusAlloys(const vector <float> &p, const vector <float> &e, const vector <float> &c) { for(unsigned i=0; i <= NVALUES; ++i) _v[i] = interpolate(p, e, c, float(i) / NVALUES); } Arrhenius ArrheniusAlloys::interpolate( const vector <float> &vpref, const vector <float> &vener, const vector <float> &vx, float x) const { Arrhenius arr; if (x == 0) { arr._pref = vpref[0]; arr._ener = vener[0]; return arr; } if (x == 1) { arr._pref = vpref.back(); arr._ener = vener.back(); return arr; } else { for(unsigned i = 0; i < vx.size(); i++) if(x >= vx[i] && x <= vx[i + 1]) { arr._ener = vener[i] + (vener[i + 1] - vener[i]) * (x - vx[i]) / (vx[i + 1] - vx[i]); // Linear interpolation for the energy arr._pref = pow(vpref[i], (vx[i + 1] - x) / (vx[i + 1] - vx[i])) * pow(vpref[i + 1], (x - vx[i]) / (vx[i + 1] - vx[i])); // Algebraic interpolation for the prefactor } return arr; } } ArrheniusAlloys& ArrheniusAlloys::operator=(const ArrheniusAlloys& arg) { for (unsigned i = 0; i <= NVALUES; i++) _v[i] = arg._v[i]; return *this; } //energies added, prefactors multiplied ArrheniusAlloys & ArrheniusAlloys::operator*= (const ArrheniusAlloys &arg) { for (unsigned i = 0; i <= NVALUES; i++) _v[i] *= arg._v[i]; return *this; } ArrheniusAlloys & ArrheniusAlloys::operator/= (const ArrheniusAlloys &arg) { for (unsigned i = 0; i <= NVALUES; i++) _v[i] /= arg._v[i]; return *this; } ArrheniusAlloys & ArrheniusAlloys::operator*=(double factor) { for (unsigned i = 0; i <= NVALUES; i++) _v[i] *= factor; return *this; } ArrheniusAlloys & ArrheniusAlloys::operator/=(double factor) { for (unsigned i = 0; i <= NVALUES; i++) _v[i] /= factor; return *this; } void ArrheniusAlloys::addEner(ArrheniusAlloys& arg) { for(unsigned i = 0; i <= NVALUES; i++) _v[i]._ener += arg._v[i]._ener; } void ArrheniusAlloys::addEner(double ener) { for (unsigned i = 0; i <= NVALUES; i++) _v[i]._ener += ener; } Arrhenius ArrheniusAlloys::operator()(const Kernel::MeshElement *pME) const { return operator ()(pME->getBAtoms() != 0 ? pME->getEffectiveAlloyFraction() : 0); } Arrhenius ArrheniusAlloys::operator()(double x) const { if(x == 0) return _v[0]; if(x == 1) return _v[NVALUES]; unsigned im = floor(x * NVALUES); unsigned iM = ceil (x * NVALUES); assert(x <= 1.); float xm = float(im) / NVALUES; float diffx = 1./ NVALUES; return Arrhenius( _v[im]._pref + (_v[iM]._pref - _v[im]._pref) * (x - xm) / diffx , _v[im]._ener + (_v[iM]._ener - _v[im]._ener) * (x - xm) / diffx ); } bool ArrheniusAlloys::canDivide() const { for (unsigned i = 0; i <= NVALUES; i++) if(_v[i]._pref == 0) return false; return true; } }
[ "cpt.gauss386@gmail.com" ]
cpt.gauss386@gmail.com
5c402858e588312bca55a2ca3af40d0d2e58c01d
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/Control/DataModelTest/DataModelTestDataRead/src/AuxDataTestTypelessRead.cxx
93dc4da8c3cfc0c988253206f3a5d5d85e902697
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
C++
false
false
6,327
cxx
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ // $Id$ /** * @file src/AuxDataTestTypelessRead.cxx * @author snyder@bnl.gov * @date May 2014 * @brief Algorithm to test reading @c DataVector with auxiliary data, * without compile-time typing of aux data. */ #include "AuxDataTestTypelessRead.h" #include "DataModelTestDataCommon/B.h" #include "DataModelTestDataCommon/BAux.h" #include "DataModelTestDataCommon/BAuxStandalone.h" #include "DataModelTestDataCommon/BAuxVec.h" #include "AthContainers/AuxTypeRegistry.h" #include "AthContainers/AuxStoreInternal.h" //#include "AthContainers/PackedElement.h" #include "AthLinks/ElementLink.h" #include "AthenaKernel/errorcheck.h" #include "CxxUtils/StrFormat.h" #include "GaudiKernel/System.h" #include <map> #include <memory> #include <sstream> namespace DMTest { /** * @brief Constructor. * @param name The algorithm name. * @param svc The service locator. */ AuxDataTestTypelessRead::AuxDataTestTypelessRead (const std::string &name, ISvcLocator *pSvcLocator) : AthAlgorithm (name, pSvcLocator), m_count(0) { declareProperty ("WritePrefix", m_writePrefix); } /** * @brief Algorithm initialization; called at the beginning of the job. */ StatusCode AuxDataTestTypelessRead::initialize() { return StatusCode::SUCCESS; } namespace { void dumpAuxItem (std::ostream& ost, SG::auxid_t auxid, const SG::AuxVectorData& c, size_t i) { const SG::AuxTypeRegistry& r = SG::AuxTypeRegistry::instance(); const std::type_info* ti = r.getType(auxid); std::string head = r.getName(auxid) + ": "; if (ti == &typeid(int)) ost << head << c.getData<int> (auxid, i) << "; "; else if (ti == &typeid(float)) ost << head << CxxUtils::strformat ("%.3f", c.getData<float> (auxid, i)) << "; "; else if (ti == &typeid(ElementLink<DMTest::BAuxVec>)) { const ElementLink<DMTest::BAuxVec>& el = c.getData<ElementLink<DMTest::BAuxVec> > (auxid, i); ost << head << el.dataID() << "[" << el.index() << "]; "; } else if (ti == &typeid(DMTest::B)) { ost << head << c.getData<B>(auxid, i).m_x << "; "; } #if 0 else if (ti == &typeid(SG::PackedElement<unsigned int>)) ost << head << c.getData<SG::PackedElement<unsigned int> > (auxid, i) << "; "; #endif else if (ti == &typeid(unsigned int)) ost << head << c.getData<unsigned int> (auxid, i) << "; "; #if 0 else if (ti == &typeid(SG::PackedElement<float>)) ost << head << c.getData<SG::PackedElement<float> > (auxid, i) << "; "; else if (ti == &typeid(SG::PackedElement<std::vector<unsigned int> >)) { ost << "\n " << head << "["; for (auto ii : c.getData<SG::PackedElement<std::vector<unsigned int> > > (auxid, i)) ost << ii << " "; ost << "]; "; } else if (ti == &typeid(SG::PackedElement<std::vector<int> >)) { ost << "\n " << head << "["; for (auto ii : c.getData<SG::PackedElement<std::vector<int> > > (auxid, i)) ost << ii << " "; ost << "]; "; } else if (ti == &typeid(SG::PackedElement<std::vector<float> >)) { ost << "\n " << head << "["; for (auto ii : c.getData<SG::PackedElement<std::vector<float> > > (auxid, i)) ost << CxxUtils::strformat ("%.3f", ii) << " "; ost << "]; "; } #endif else if (ti == &typeid(std::vector<int>)) { ost << "\n " << head << "["; for (auto ii : c.getData<std::vector<int> > (auxid, i)) ost << ii << " "; ost << "]; "; } else if (ti == &typeid(std::vector<float>) || strcmp (ti->name(), typeid(std::vector<float>).name()) == 0) { ost << "\n " << head << "["; for (auto ii : c.getData<std::vector<float> > (auxid, i)) ost << CxxUtils::strformat ("%.3f", ii) << " "; ost << "]; "; } else ost << head << "xxx " << ti->name() << "; "; } } // anonymous namespace /** * @brief Algorithm event processing. */ StatusCode AuxDataTestTypelessRead::execute() { ++m_count; std::cout << m_count << "\n"; const SG::AuxTypeRegistry& r = SG::AuxTypeRegistry::instance(); const BAuxVec* vec = 0; CHECK( evtStore()->retrieve (vec, "bauxvec") ); // Sort auxids in name order. std::map<std::string, SG::auxid_t> auxid_map; for (SG::auxid_t auxid : vec->getAuxIDs()) auxid_map[r.getName(auxid)] = auxid; std::cout << "bvec types: "; for (const auto& m : auxid_map) std::cout << r.getName(m.second) << "/" << System::typeinfoName (*r.getType(m.second)) << " "; std::cout << "\n"; for (size_t i = 0; i < vec->size(); i++) { std::ostringstream ss; ss << " "; for (const auto& m : auxid_map) dumpAuxItem (ss, m.second, *vec, i); std::cout << ss.str() << "\n"; } const BAux* b = 0; CHECK( evtStore()->retrieve (b, "b") ); const SG::AuxVectorData* cont = b->container(); std::map<std::string, SG::auxid_t> bauxid_map; for (SG::auxid_t auxid : cont->getAuxIDs()) bauxid_map[r.getName(auxid)] = auxid; std::cout << "b types: "; for (const auto& m : bauxid_map) std::cout << r.getName(m.second) << "/" << System::typeinfoName (*r.getType(m.second)) << " "; std::cout << "\n"; std::ostringstream ss; for (const auto& m : bauxid_map) dumpAuxItem (ss, m.second, *cont, 0); std::cout << ss.str() << "\n"; if (!m_writePrefix.empty()) { // Passing this as the third arg of record will make the object const. bool LOCKED = false; std::unique_ptr<BAuxVec> vecnew (new BAuxVec); std::unique_ptr<SG::AuxStoreInternal> store (new SG::AuxStoreInternal); vecnew->setStore (store.get()); for (size_t i = 0; i < vec->size(); i++) { vecnew->push_back (new BAux); *vecnew->back() = *(*vec)[i]; } CHECK (evtStore()->record (std::move(vecnew), m_writePrefix + "bauxvec", LOCKED)); CHECK (evtStore()->record (std::move(store), m_writePrefix + "bauxvecAux.", LOCKED)); std::unique_ptr<BAuxStandalone> bnew (new BAuxStandalone); bnew->makePrivateStore (*b); CHECK (evtStore()->record (std::move(bnew), m_writePrefix + "b", LOCKED)); } return StatusCode::SUCCESS; } /** * @brief Algorithm finalization; called at the end of the job. */ StatusCode AuxDataTestTypelessRead::finalize() { return StatusCode::SUCCESS; } } // namespace DMTest
[ "rushioda@lxplus754.cern.ch" ]
rushioda@lxplus754.cern.ch
79fe39b0f921efd7ad8fc897528570b20f85e6af
a2111a80faf35749d74a533e123d9da9da108214
/raw/pmsb13/pmsb13-data-20130530/sources/fjt74l9mlcqisdus/2013-04-18T18-27-29.554+0200/sandbox/my_sandbox/apps/fist_steps/tutorial_17/tutorial_17.cpp
eb43b4dbb6f24f7942e4563e706c7cacd5dd5f53
[ "MIT" ]
permissive
bkahlert/seqan-research
f2c550d539f511825842a60f6b994c1f0a3934c2
21945be863855077eec7cbdb51c3450afcf560a3
refs/heads/master
2022-12-24T13:05:48.828734
2015-07-01T01:56:22
2015-07-01T01:56:22
21,610,669
1
0
null
null
null
null
UTF-8
C++
false
false
459
cpp
#include <iostream> #include <seqan/index.h> using namespace seqan; int main () { typedef Index<DnaString, IndexQGram< OneGappedShape > > TIndex; TIndex index("CATGATTACATA"); stringToShape(indexShape(index),"1101"); hash(indexShape(index),"AT-A"); for (unsigned i = 0; i < length(getOccurrences(index, indexShape(index))); ++i) std::cout << getOccurrences(index, indexShape(index))[i] << std::endl; return 0; }
[ "mail@bkahlert.com" ]
mail@bkahlert.com
ed2666430da422f5e7fc65cc42712d2ea37272b1
879681c994f1ca9c8d2c905a4e5064997ad25a27
/root-2.3.0/run/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/0.92/p
43f60f8954fb78db00d0714524ca3823cc279451
[]
no_license
MizuhaWatanabe/OpenFOAM-2.3.0-with-Ubuntu
3828272d989d45fb020e83f8426b849e75560c62
daeb870be81275e8a81f5cbac4ca1906a9bc69c0
refs/heads/master
2020-05-17T16:36:41.848261
2015-04-18T09:29:48
2015-04-18T09:29:48
34,159,882
1
0
null
null
null
null
UTF-8
C++
false
false
46,718
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.92"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -2 0 0 0 0]; internalField nonuniform List<scalar> 6000 ( 105533 105536 105543 105553 105560 105565 105572 105583 105598 105615 105625 105629 105626 105619 105616 105603 105577 105559 105549 105538 105525 105507 105479 105449 105436 105476 105509 105520 105521 105525 105477 105481 105488 105498 105506 105512 105516 105519 105524 105535 105545 105548 105548 105547 105543 105530 105513 105500 105488 105475 105458 105433 105398 105364 105357 105366 105400 105416 105421 105430 105429 105437 105448 105458 105467 105473 105475 105477 105481 105493 105502 105502 105499 105495 105488 105476 105463 105453 105444 105432 105410 105373 105326 105303 105304 105304 105323 105343 105339 105352 105380 105388 105397 105404 105412 105419 105423 105426 105430 105434 105437 105437 105434 105428 105416 105406 105398 105389 105377 105360 105331 105286 105252 105251 105255 105256 105254 105263 105260 105272 105322 105326 105328 105331 105335 105342 105348 105352 105356 105355 105354 105353 105349 105344 105334 105323 105313 105299 105280 105264 105233 105203 105201 105207 105211 105213 105210 105209 105211 105216 105241 105236 105233 105234 105236 105238 105240 105242 105253 105257 105257 105253 105243 105236 105240 105232 105212 105183 105165 105157 105151 105153 105162 105168 105172 105175 105176 105174 105176 105179 105110 105103 105103 105107 105111 105107 105099 105100 105112 105126 105129 105119 105113 105124 105145 105144 105118 105110 105107 105105 105110 105118 105125 105131 105136 105139 105141 105141 105142 105146 104989 104988 104991 104997 105007 105015 105021 105026 105030 105035 105039 105042 105047 105058 105074 105073 105068 105071 105074 105077 105082 105086 105091 105096 105100 105103 105105 105106 105108 105112 104954 104954 104958 104963 104970 104980 104988 104994 104997 104999 105003 105008 105014 105021 105032 105031 105035 105040 105044 105050 105054 105056 105059 105062 105065 105068 105070 105072 105073 105076 104943 104944 104946 104950 104955 104962 104968 104973 104976 104978 104981 104984 104988 104992 104999 105001 105006 105010 105015 105021 105025 105026 105028 105030 105032 105034 105036 105038 105039 105042 104934 104935 104937 104939 104943 104947 104951 104953 104956 104957 104959 104961 104963 104964 104969 104974 104978 104981 104986 104992 104996 104998 104998 104999 105000 105001 105003 105004 105006 105008 104926 104926 104927 104929 104931 104933 104934 104935 104936 104937 104937 104938 104939 104939 104940 104947 104951 104955 104959 104964 104969 104972 104971 104970 104970 104970 104971 104972 104973 104973 104917 104918 104918 104918 104919 104919 104918 104917 104916 104916 104916 104916 104917 104916 104917 104922 104927 104930 104934 104938 104943 104947 104945 104943 104941 104940 104940 104941 104942 104941 104909 104909 104909 104908 104907 104905 104902 104899 104897 104896 104895 104895 104895 104896 104897 104901 104904 104907 104910 104914 104919 104923 104923 104918 104914 104912 104912 104913 104915 104915 104900 104901 104900 104898 104895 104891 104886 104881 104878 104875 104874 104873 104873 104874 104877 104881 104883 104886 104889 104892 104896 104900 104901 104896 104889 104886 104885 104886 104890 104892 104892 104892 104891 104888 104883 104877 104869 104863 104858 104854 104852 104851 104851 104851 104855 104860 104864 104867 104869 104872 104872 104874 104875 104873 104866 104860 104858 104860 104866 104867 104884 104883 104881 104877 104870 104861 104852 104843 104837 104832 104829 104827 104827 104827 104829 104837 104844 104848 104850 104849 104844 104841 104842 104846 104842 104835 104832 104834 104837 104831 104873 104872 104870 104864 104854 104843 104833 104823 104815 104810 104806 104803 104802 104801 104801 104808 104818 104824 104825 104816 104802 104793 104792 104802 104808 104804 104800 104799 104791 104779 104859 104858 104853 104845 104833 104822 104811 104801 104793 104786 104782 104779 104776 104774 104772 104775 104784 104789 104782 104762 104741 104726 104722 104730 104745 104747 104739 104727 104700 104697 104839 104836 104828 104817 104806 104795 104787 104779 104769 104763 104758 104755 104752 104749 104745 104743 104745 104738 104719 104693 104662 104638 104631 104635 104641 104640 104630 104613 104601 104601 104806 104801 104792 104780 104771 104764 104759 104754 104746 104739 104734 104731 104728 104725 104722 104717 104708 104686 104654 104613 104585 104573 104569 104568 104569 104569 104568 104565 104564 104564 104757 104752 104743 104735 104730 104728 104728 104728 104722 104714 104710 104707 104705 104704 104701 104693 104673 104636 104594 104566 104555 104551 104548 104546 104546 104546 104547 104548 104549 104549 104695 104692 104687 104684 104684 104687 104692 104698 104696 104689 104685 104684 104684 104685 104682 104667 104635 104593 104562 104550 104545 104542 104539 104537 104537 104536 104537 104537 104538 104538 104627 104626 104625 104627 104632 104640 104652 104664 104667 104662 104661 104661 104664 104667 104659 104635 104599 104566 104548 104541 104537 104534 104531 104529 104528 104527 104527 104526 104526 104526 104555 104556 104559 104565 104575 104589 104607 104626 104636 104636 104635 104639 104644 104644 104629 104600 104569 104547 104536 104530 104527 104524 104522 104520 104518 104517 104516 104515 104514 104513 104479 104481 104487 104497 104512 104533 104558 104585 104602 104607 104609 104615 104620 104609 104584 104557 104536 104523 104518 104515 104513 104511 104510 104508 104506 104504 104503 104501 104499 104498 104398 104401 104410 104424 104444 104470 104503 104541 104566 104576 104581 104588 104584 104553 104520 104496 104483 104481 104486 104489 104491 104492 104492 104491 104489 104488 104486 104483 104480 104479 104311 104316 104327 104344 104368 104399 104439 104486 104520 104538 104548 104548 104519 104474 104439 104417 104408 104410 104422 104440 104454 104462 104466 104467 104466 104465 104463 104460 104457 104455 104212 104221 104238 104259 104287 104321 104363 104414 104456 104484 104495 104474 104421 104374 104340 104321 104315 104321 104337 104360 104387 104409 104422 104429 104432 104433 104432 104429 104426 104424 104097 104117 104147 104174 104203 104236 104274 104320 104364 104397 104398 104353 104301 104257 104225 104208 104206 104218 104238 104265 104295 104327 104354 104371 104381 104386 104388 104388 104386 104384 104015 104032 104063 104093 104121 104146 104173 104207 104243 104264 104250 104213 104168 104123 104088 104073 104079 104100 104128 104160 104195 104230 104263 104290 104308 104321 104328 104332 104332 104330 103974 103979 103999 104022 104040 104054 104065 104083 104107 104114 104104 104075 104032 103980 103934 103915 103930 103966 104007 104049 104090 104128 104165 104197 104221 104238 104249 104257 104260 104261 103947 103945 103951 103960 103962 103957 103947 103944 103967 103977 103974 103950 103903 103846 103800 103785 103794 103822 103877 103934 103983 104027 104066 104099 104126 104145 104157 104166 104170 104173 103917 103913 103910 103902 103881 103854 103830 103816 103836 103858 103862 103843 103798 103748 103726 103722 103721 103729 103761 103817 103879 103929 103969 104003 104030 104049 104060 104067 104071 104077 103883 103877 103866 103849 103817 103776 103751 103744 103747 103761 103771 103759 103722 103692 103689 103689 103688 103688 103695 103728 103782 103837 103879 103911 103936 103953 103963 103970 103974 103983 103843 103835 103819 103794 103764 103733 103716 103708 103702 103702 103702 103696 103672 103658 103661 103662 103663 103663 103664 103677 103713 103758 103797 103827 103850 103864 103875 103884 103891 103896 103800 103792 103777 103754 103727 103706 103692 103682 103672 103663 103661 103652 103637 103632 103633 103635 103637 103639 103642 103650 103669 103700 103731 103757 103776 103791 103803 103813 103820 103821 103755 103748 103736 103717 103698 103681 103667 103655 103643 103632 103624 103619 103607 103606 103606 103608 103610 103614 103619 103628 103641 103661 103682 103702 103719 103733 103743 103752 103757 103759 103704 103701 103691 103678 103664 103650 103638 103626 103613 103602 103594 103595 103582 103579 103579 103581 103584 103588 103594 103603 103615 103630 103646 103661 103673 103683 103691 103697 103701 103705 103646 103646 103640 103632 103622 103613 103603 103593 103581 103569 103564 103564 103557 103553 103552 103554 103557 103562 103569 103575 103586 103598 103609 103620 103628 103635 103641 103646 103650 103654 103583 103583 103581 103578 103572 103567 103562 103555 103544 103532 103527 103529 103529 103526 103525 103527 103530 103535 103542 103546 103553 103561 103568 103575 103581 103588 103593 103598 103601 103604 103516 103517 103518 103517 103516 103514 103512 103509 103501 103489 103484 103486 103497 103499 103498 103500 103504 103510 103514 103516 103518 103520 103523 103527 103532 103537 103543 103547 103550 103550 103449 103450 103452 103454 103455 103455 103456 103456 103451 103440 103435 103436 103458 103471 103472 103475 103479 103484 103485 103482 103478 103474 103474 103476 103479 103483 103488 103491 103492 103491 103380 103382 103384 103388 103391 103394 103396 103398 103398 103388 103382 103380 103408 103438 103446 103450 103453 103455 103450 103441 103431 103424 103421 103421 103423 103425 103428 103429 103428 103427 103311 103312 103316 103321 103326 103330 103335 103339 103341 103334 103328 103324 103345 103391 103413 103420 103421 103416 103404 103389 103376 103369 103364 103363 103363 103363 103364 103364 103363 103362 103243 103240 103246 103253 103259 103266 103271 103277 103282 103281 103275 103270 103271 103315 103358 103373 103373 103362 103345 103328 103316 103308 103304 103301 103300 103299 103299 103298 103297 103297 103177 103173 103176 103185 103194 103201 103207 103213 103219 103227 103223 103215 103201 103215 103267 103294 103299 103289 103275 103261 103251 103244 103240 103237 103235 103234 103233 103232 103231 103230 103122 103119 103118 103122 103130 103136 103140 103146 103155 103168 103166 103155 103133 103116 103144 103183 103202 103205 103199 103190 103183 103178 103174 103171 103170 103168 103167 103165 103164 103164 103082 103078 103074 103072 103072 103073 103073 103075 103088 103103 103104 103088 103061 103038 103037 103073 103105 103118 103121 103118 103114 103110 103107 103105 103103 103101 103100 103099 103098 103097 103049 103045 103038 103029 103022 103014 103009 103010 103022 103034 103033 103015 102991 102979 102969 102987 103016 103035 103043 103044 103043 103041 103039 103038 103036 103035 103033 103032 103032 103031 103009 103009 103002 102991 102977 102964 102956 102955 102958 102960 102955 102939 102931 102928 102921 102925 102943 102960 102967 102971 102972 102972 102971 102970 102969 102968 102967 102966 102965 102965 102957 102959 102958 102950 102936 102922 102912 102905 102897 102885 102871 102867 102876 102879 102880 102883 102888 102893 102895 102899 102902 102903 102904 102903 102902 102902 102901 102900 102900 102899 102899 102900 102900 102898 102892 102881 102869 102854 102835 102809 102801 102812 102826 102834 102842 102846 102838 102828 102820 102826 102833 102836 102837 102837 102836 102836 102835 102835 102834 102834 102837 102838 102839 102839 102837 102831 102819 102800 102774 102754 102759 102771 102782 102792 102804 102804 102785 102762 102751 102760 102766 102770 102771 102771 102771 102770 102770 102770 102770 102769 102774 102772 102774 102778 102778 102774 102765 102748 102726 102722 102729 102736 102743 102752 102762 102753 102727 102701 102698 102703 102707 102708 102707 102706 102706 102705 102705 102705 102705 102706 102711 102701 102706 102714 102719 102721 102716 102703 102691 102696 102700 102704 102709 102713 102712 102695 102670 102658 102659 102660 102656 102649 102644 102642 102641 102641 102641 102641 102642 102643 102654 102647 102649 102651 102653 102666 102676 102672 102666 102670 102673 102675 102676 102675 102664 102645 102630 102625 102624 102621 102605 102590 102580 102577 102576 102576 102577 102578 102579 102580 102619 102617 102617 102617 102619 102627 102640 102651 102649 102648 102649 102649 102648 102641 102627 102612 102603 102596 102591 102580 102548 102522 102509 102508 102510 102512 102514 102515 102516 102519 102601 102600 102599 102599 102599 102602 102613 102633 102637 102633 102631 102628 102623 102615 102603 102592 102583 102572 102558 102531 102473 102433 102423 102435 102443 102449 102453 102454 102453 102459 102587 102586 102585 102584 102584 102585 102590 102612 102627 102623 102617 102612 102605 102596 102587 102578 102567 102547 102515 102456 102384 102357 102356 102365 102380 102392 102398 102397 102398 102403 102570 102571 102571 102569 102568 102568 102570 102589 102617 102616 102608 102600 102590 102581 102574 102563 102544 102507 102452 102368 102326 102319 102318 102321 102334 102347 102355 102358 102359 102360 102548 102551 102551 102551 102550 102548 102546 102555 102596 102609 102599 102589 102576 102565 102554 102534 102495 102443 102374 102307 102295 102297 102298 102299 102304 102311 102319 102326 102330 102332 102512 102518 102521 102524 102524 102522 102517 102514 102544 102580 102580 102565 102548 102527 102496 102454 102407 102361 102288 102264 102269 102275 102281 102284 102287 102291 102296 102302 102306 102310 102460 102466 102474 102481 102485 102484 102478 102467 102464 102491 102493 102478 102451 102404 102341 102299 102277 102249 102223 102230 102240 102251 102260 102265 102269 102271 102274 102278 102282 102282 102396 102401 102409 102418 102426 102429 102425 102410 102386 102369 102338 102292 102245 102202 102172 102161 102163 102169 102181 102195 102210 102223 102233 102237 102239 102240 102241 102240 102241 102235 102326 102330 102336 102344 102350 102354 102353 102342 102310 102260 102201 102150 102119 102104 102099 102100 102108 102122 102140 102158 102176 102189 102195 102196 102194 102191 102187 102183 102179 102174 102254 102257 102262 102267 102271 102272 102268 102256 102229 102179 102128 102093 102073 102065 102064 102066 102074 102084 102097 102116 102134 102143 102144 102141 102135 102129 102123 102116 102110 102105 102183 102185 102188 102192 102193 102191 102183 102170 102148 102116 102083 102058 102043 102035 102031 102032 102037 102042 102049 102066 102081 102084 102082 102077 102070 102063 102055 102046 102039 102033 102114 102115 102116 102118 102118 102113 102103 102088 102069 102050 102035 102022 102010 101998 101994 101993 101995 101995 101998 102011 102020 102020 102017 102011 102004 101995 101985 101975 101966 101961 102049 102047 102047 102048 102047 102039 102025 102008 101990 101977 101973 101976 101970 101956 101951 101952 101951 101948 101949 101955 101959 101957 101953 101946 101937 101927 101915 101904 101894 101889 101988 101982 101978 101980 101980 101969 101949 101926 101903 101889 101893 101914 101919 101909 101905 101907 101907 101902 101902 101903 101904 101898 101891 101882 101872 101860 101846 101832 101820 101817 101935 101925 101920 101918 101914 101897 101872 101840 101806 101780 101788 101825 101851 101855 101854 101861 101861 101857 101858 101857 101853 101840 101829 101819 101808 101796 101779 101761 101742 101744 101889 101882 101870 101859 101845 101823 101790 101749 101696 101654 101661 101716 101766 101790 101800 101811 101812 101811 101816 101815 101801 101779 101765 101755 101746 101735 101717 101694 101677 101677 101844 101840 101818 101797 101773 101745 101708 101658 101600 101567 101573 101608 101671 101716 101741 101757 101759 101763 101773 101769 101741 101710 101697 101691 101688 101681 101668 101655 101648 101646 101783 101777 101757 101728 101699 101668 101628 101576 101534 101529 101534 101548 101588 101639 101677 101700 101705 101712 101723 101708 101665 101632 101626 101627 101631 101636 101639 101638 101636 101634 101711 101708 101687 101658 101626 101592 101554 101507 101492 101502 101510 101519 101538 101574 101614 101638 101645 101655 101655 101625 101582 101563 101559 101565 101578 101594 101614 101627 101628 101625 101635 101639 101621 101591 101557 101522 101486 101463 101464 101475 101485 101495 101508 101529 101558 101574 101577 101583 101565 101534 101511 101506 101504 101510 101525 101548 101577 101606 101616 101615 101555 101565 101555 101528 101495 101463 101436 101428 101439 101449 101459 101470 101481 101494 101508 101510 101505 101501 101476 101461 101461 101463 101461 101463 101476 101500 101532 101567 101593 101600 101472 101482 101488 101469 101441 101414 101399 101405 101415 101424 101434 101443 101453 101460 101461 101451 101444 101436 101425 101421 101426 101429 101427 101425 101432 101450 101480 101516 101549 101571 101401 101404 101421 101416 101398 101381 101380 101387 101393 101400 101409 101417 101424 101426 101418 101405 101405 101402 101400 101399 101402 101402 101397 101390 101389 101401 101425 101456 101486 101515 101344 101336 101352 101370 101371 101363 101365 101370 101375 101380 101386 101393 101397 101396 101384 101375 101379 101380 101381 101384 101385 101381 101365 101348 101339 101345 101366 101393 101417 101439 101289 101280 101292 101332 101355 101354 101354 101357 101361 101365 101369 101373 101375 101373 101361 101354 101357 101361 101366 101372 101370 101348 101316 101288 101274 101276 101297 101324 101349 101363 101236 101234 101240 101277 101336 101347 101348 101350 101354 101357 101359 101360 101360 101354 101341 101335 101337 101344 101352 101353 101332 101288 101248 101210 101178 101177 101210 101243 101274 101283 101192 101197 101201 101228 101298 101335 101340 101341 101345 101349 101350 101349 101347 101338 101323 101317 101317 101324 101327 101303 101253 101206 101167 101141 101124 101120 101124 101151 101194 101208 101161 101166 101167 101176 101221 101275 101294 101303 101311 101318 101324 101326 101324 101312 101298 101293 101292 101288 101267 101208 101161 101131 101112 101097 101092 101090 101089 101095 101114 101138 101137 101137 101137 101136 101141 101145 101140 101151 101174 101205 101236 101256 101260 101251 101242 101237 101228 101202 101145 101114 101097 101087 101082 101081 101080 101078 101076 101075 101077 101083 101117 101114 101111 101105 101095 101078 101063 101056 101055 101062 101076 101092 101105 101115 101114 101113 101106 101093 101078 101075 101073 101072 101072 101072 101071 101070 101068 101066 101064 101065 101099 101094 101090 101082 101069 101050 101036 101026 101019 101015 101013 101014 101017 101022 101028 101034 101039 101044 101055 101061 101064 101064 101064 101063 101063 101062 101060 101059 101058 101057 101082 101077 101073 101064 101049 101030 101019 101014 101009 101004 101001 100999 100998 100999 101004 101011 101018 101027 101039 101049 101053 101054 101055 101055 101054 101054 101053 101052 101052 101052 101065 101061 101058 101047 101028 101011 101004 101002 100999 100997 100995 100994 100994 100995 100998 101002 101007 101013 101024 101035 101041 101044 101045 101046 101047 101047 101046 101046 101046 101046 101047 101046 101041 101026 101006 100992 100990 100989 100988 100987 100986 100986 100986 100987 100989 100992 100995 101000 101009 101022 101030 101034 101037 101038 101039 101040 101040 101040 101040 101040 101025 101025 101018 101001 100983 100976 100976 100976 100976 100976 100976 100976 100977 100978 100979 100981 100983 100987 100995 101008 101019 101025 101028 101030 101032 101033 101034 101034 101034 101034 100998 100998 100991 100975 100961 100962 100963 100964 100964 100965 100965 100966 100967 100967 100968 100970 100972 100975 100982 100996 101009 101015 101019 101022 101025 101026 101028 101028 101029 101029 100973 100970 100965 100952 100946 100949 100951 100952 100952 100953 100954 100955 100956 100957 100957 100959 100960 100963 100970 100984 100998 101006 101011 101015 101018 101020 101022 101023 101024 101024 100952 100947 100943 100934 100934 100937 100939 100940 100941 100942 100943 100944 100945 100946 100946 100947 100949 100951 100959 100973 100988 100997 101003 101007 101011 101014 101016 101018 101019 101020 100935 100930 100927 100922 100924 100926 100927 100929 100929 100931 100932 100933 100934 100934 100935 100936 100937 100939 100946 100961 100977 100987 100994 100999 101003 101007 101010 101012 101014 101015 100921 100920 100915 100914 100915 100916 100917 100918 100919 100920 100921 100922 100923 100923 100924 100924 100925 100927 100933 100948 100964 100975 100983 100990 100995 101000 101004 101007 101009 101011 100910 100910 100905 100906 100907 100907 100907 100908 100908 100909 100910 100911 100912 100912 100912 100912 100913 100914 100920 100934 100950 100961 100971 100978 100985 100991 100996 101000 101005 101009 100900 100896 100896 100897 100898 100898 100898 100898 100898 100898 100899 100900 100900 100901 100901 100901 100901 100901 100906 100920 100934 100945 100955 100963 100971 100978 100985 100992 100998 101002 100887 100885 100886 100889 100890 100889 100889 100889 100889 100888 100888 100889 100889 100890 100889 100889 100889 100889 100893 100905 100919 100928 100937 100945 100953 100960 100971 100977 100982 100983 100876 100876 100878 100879 100881 100881 100880 100880 100879 100879 100878 100878 100878 100879 100878 100878 100878 100877 100880 100891 100903 100911 100918 100925 100933 100943 100953 100960 100960 100954 100868 100868 100869 100870 100872 100872 100871 100870 100870 100869 100868 100868 100868 100868 100868 100867 100867 100866 100868 100877 100886 100893 100898 100905 100915 100927 100939 100943 100937 100927 100859 100860 100860 100861 100862 100863 100862 100861 100860 100859 100859 100858 100858 100858 100857 100856 100856 100856 100857 100863 100870 100875 100880 100889 100902 100917 100928 100929 100919 100915 100851 100851 100851 100852 100853 100853 100852 100851 100851 100850 100849 100848 100848 100847 100847 100846 100845 100845 100846 100850 100854 100859 100865 100876 100893 100910 100918 100915 100910 100906 100842 100842 100842 100843 100843 100844 100843 100842 100841 100840 100839 100839 100838 100837 100836 100835 100834 100834 100833 100837 100840 100846 100855 100869 100889 100903 100907 100905 100901 100900 100833 100833 100834 100834 100834 100834 100834 100832 100831 100831 100830 100829 100828 100827 100826 100825 100824 100823 100821 100824 100828 100835 100847 100865 100885 100899 100904 100898 100896 100896 100825 100825 100825 100825 100825 100825 100824 100823 100822 100821 100820 100819 100818 100817 100816 100814 100813 100812 100809 100811 100816 100826 100839 100859 100877 100889 100894 100892 100891 100891 100818 100817 100817 100817 100817 100816 100815 100814 100812 100811 100810 100809 100808 100807 100806 100804 100803 100801 100798 100797 100804 100816 100832 100850 100869 100880 100884 100886 100886 100886 100811 100810 100810 100810 100809 100808 100806 100804 100803 100802 100801 100799 100798 100797 100796 100794 100793 100791 100789 100786 100793 100806 100823 100841 100859 100873 100878 100880 100881 100881 100804 100803 100803 100802 100801 100799 100797 100795 100794 100792 100791 100790 100788 100787 100786 100784 100783 100782 100780 100777 100784 100795 100813 100832 100850 100865 100872 100874 100875 100875 100797 100797 100795 100794 100792 100791 100789 100786 100784 100783 100781 100780 100779 100777 100776 100775 100773 100772 100771 100769 100772 100783 100802 100822 100840 100856 100865 100868 100868 100869 100789 100788 100785 100784 100783 100782 100780 100777 100775 100773 100771 100770 100769 100767 100766 100765 100764 100763 100762 100762 100762 100773 100791 100811 100830 100847 100856 100860 100861 100861 100772 100774 100773 100772 100772 100772 100771 100768 100765 100763 100761 100760 100759 100758 100757 100756 100755 100754 100754 100753 100753 100764 100780 100800 100818 100836 100846 100851 100853 100853 100745 100750 100754 100756 100757 100759 100760 100758 100754 100752 100751 100750 100749 100748 100747 100746 100745 100745 100745 100745 100745 100753 100768 100788 100806 100821 100832 100839 100842 100843 100705 100718 100728 100735 100741 100744 100748 100746 100742 100741 100740 100739 100738 100738 100737 100736 100736 100735 100735 100735 100736 100742 100757 100775 100790 100804 100816 100824 100828 100830 100659 100680 100699 100711 100722 100729 100734 100732 100731 100730 100729 100729 100728 100727 100727 100726 100726 100726 100726 100726 100726 100730 100743 100759 100773 100786 100798 100807 100812 100814 100638 100644 100663 100686 100702 100713 100720 100719 100719 100719 100718 100718 100718 100717 100717 100717 100716 100716 100716 100716 100717 100719 100729 100744 100757 100768 100778 100787 100792 100794 100632 100634 100641 100658 100683 100697 100706 100707 100708 100708 100708 100708 100708 100707 100707 100707 100707 100707 100707 100707 100707 100708 100716 100729 100740 100750 100758 100766 100770 100772 100631 100631 100632 100641 100662 100682 100695 100696 100697 100697 100698 100698 100697 100697 100697 100697 100697 100697 100697 100698 100698 100699 100704 100715 100724 100732 100739 100744 100747 100749 100630 100630 100630 100634 100647 100672 100686 100686 100687 100687 100687 100688 100687 100687 100687 100687 100687 100688 100688 100689 100690 100690 100693 100701 100708 100714 100719 100722 100723 100725 100629 100629 100629 100631 100641 100664 100677 100678 100678 100678 100678 100678 100678 100677 100677 100678 100678 100679 100680 100681 100682 100682 100683 100687 100692 100695 100698 100700 100701 100702 100627 100627 100628 100629 100637 100659 100667 100669 100669 100669 100668 100668 100668 100668 100668 100668 100668 100669 100671 100673 100675 100674 100673 100673 100674 100675 100677 100678 100680 100680 100626 100626 100626 100627 100633 100652 100658 100660 100661 100660 100659 100658 100658 100658 100657 100658 100658 100660 100662 100664 100666 100665 100662 100659 100657 100657 100657 100658 100658 100658 100624 100624 100624 100624 100629 100643 100650 100652 100653 100651 100650 100649 100648 100647 100647 100647 100648 100649 100652 100655 100656 100654 100649 100645 100642 100640 100639 100638 100638 100637 100621 100621 100621 100622 100625 100636 100642 100645 100645 100643 100640 100638 100637 100637 100636 100636 100637 100639 100642 100645 100644 100640 100634 100629 100625 100623 100621 100619 100617 100617 100618 100618 100618 100618 100620 100628 100635 100638 100637 100634 100630 100628 100627 100626 100625 100625 100626 100627 100630 100633 100631 100624 100618 100612 100608 100604 100601 100599 100597 100598 100615 100615 100615 100614 100615 100619 100626 100629 100627 100623 100619 100616 100615 100614 100614 100613 100614 100615 100617 100618 100615 100608 100602 100595 100590 100585 100582 100579 100578 100581 100612 100611 100611 100610 100610 100611 100616 100617 100614 100609 100605 100604 100603 100602 100602 100601 100601 100602 100603 100603 100599 100592 100585 100578 100573 100567 100563 100562 100562 100569 100608 100608 100607 100606 100605 100605 100605 100602 100598 100593 100591 100591 100591 100590 100589 100589 100588 100588 100587 100586 100583 100577 100570 100563 100556 100552 100549 100549 100554 100560 100604 100603 100603 100602 100601 100598 100594 100587 100580 100577 100578 100578 100578 100578 100577 100576 100575 100574 100571 100570 100569 100563 100556 100549 100544 100540 100540 100544 100549 100554 100599 100599 100598 100597 100595 100590 100582 100570 100561 100562 100565 100566 100567 100566 100566 100564 100563 100560 100556 100554 100555 100552 100546 100540 100536 100534 100536 100540 100544 100546 100595 100594 100593 100591 100588 100580 100567 100551 100545 100549 100553 100555 100556 100556 100555 100554 100552 100549 100544 100541 100544 100543 100538 100534 100532 100531 100533 100534 100534 100532 100589 100588 100586 100583 100577 100568 100551 100536 100536 100540 100544 100545 100546 100546 100545 100544 100542 100540 100536 100533 100534 100536 100534 100532 100530 100529 100529 100527 100522 100516 100580 100579 100576 100571 100564 100554 100535 100529 100531 100534 100536 100537 100537 100537 100537 100536 100534 100532 100530 100528 100527 100532 100532 100531 100530 100527 100522 100517 100510 100506 100567 100565 100561 100555 100549 100538 100527 100526 100527 100528 100529 100530 100530 100529 100529 100528 100527 100526 100525 100524 100523 100525 100531 100530 100527 100522 100515 100507 100499 100494 100550 100548 100544 100539 100534 100526 100523 100524 100524 100524 100523 100523 100522 100522 100521 100521 100520 100520 100520 100520 100519 100519 100521 100518 100514 100510 100503 100492 100485 100484 100532 100530 100527 100524 100520 100518 100519 100521 100521 100519 100517 100516 100515 100515 100514 100514 100514 100514 100515 100515 100516 100515 100513 100507 100500 100493 100486 100479 100474 100472 100514 100513 100510 100508 100507 100510 100514 100518 100518 100515 100512 100509 100508 100507 100507 100507 100508 100508 100510 100511 100511 100509 100504 100493 100484 100476 100468 100462 100458 100457 100494 100492 100490 100490 100493 100498 100505 100511 100512 100509 100505 100502 100501 100500 100500 100500 100501 100503 100505 100507 100505 100499 100488 100476 100463 100454 100446 100441 100436 100434 100469 100467 100468 100471 100476 100483 100490 100496 100501 100501 100496 100493 100492 100492 100492 100493 100494 100497 100501 100503 100499 100485 100469 100453 100441 100427 100418 100412 100408 100406 100438 100440 100444 100450 100456 100462 100469 100477 100485 100489 100486 100484 100483 100483 100484 100485 100487 100491 100495 100497 100485 100468 100449 100430 100413 100400 100391 100384 100378 100374 100411 100415 100419 100425 100432 100439 100448 100458 100468 100475 100475 100474 100474 100474 100475 100477 100479 100483 100487 100479 100460 100442 100425 100409 100392 100376 100363 100354 100349 100346 100387 100390 100395 100400 100408 100417 100427 100440 100452 100461 100464 100464 100464 100465 100466 100468 100470 100474 100473 100457 100434 100413 100394 100378 100363 100350 100337 100326 100319 100316 100362 100364 100369 100375 100384 100395 100409 100423 100437 100447 100452 100454 100455 100456 100457 100458 100461 100464 100455 100433 100408 100384 100363 100345 100330 100317 100306 100297 100290 100286 100335 100337 100342 100350 100361 100375 100391 100408 100423 100434 100441 100444 100445 100447 100448 100449 100451 100450 100437 100411 100383 100357 100333 100313 100296 100283 100272 100264 100258 100255 100304 100306 100312 100321 100335 100353 100374 100395 100413 100423 100429 100434 100436 100438 100439 100440 100441 100436 100420 100391 100360 100332 100306 100283 100264 100249 100237 100229 100223 100221 100269 100272 100279 100292 100309 100331 100358 100387 100406 100414 100420 100424 100426 100428 100429 100430 100430 100424 100402 100369 100336 100306 100279 100255 100234 100216 100203 100192 100185 100182 100234 100238 100247 100260 100281 100307 100341 100380 100403 100407 100410 100413 100416 100418 100418 100419 100418 100407 100378 100340 100306 100275 100248 100223 100202 100183 100167 100154 100144 100139 100201 100209 100221 100236 100258 100286 100317 100354 100391 100397 100398 100400 100403 100404 100405 100405 100401 100382 100344 100304 100269 100238 100211 100188 100166 100147 100129 100113 100099 100090 100172 100181 100193 100208 100226 100249 100278 100316 100359 100376 100381 100384 100387 100387 100387 100385 100375 100345 100301 100261 100226 100197 100172 100149 100129 100109 100089 100070 100050 100036 100137 100142 100151 100163 100179 100200 100230 100269 100315 100343 100356 100362 100365 100365 100363 100356 100336 100295 100251 100212 100181 100154 100131 100110 100091 100072 100052 100030 100015 100008 100089 100091 100097 100107 100123 100145 100175 100214 100260 100296 100318 100329 100333 100332 100327 100312 100281 100237 100196 100162 100133 100109 100088 100071 100054 100038 100020 100007 100004 100003 100027 100028 100035 100049 100069 100090 100118 100152 100192 100232 100260 100276 100282 100281 100271 100247 100210 100170 100136 100108 100083 100061 100044 100031 100021 100012 100005 100002 100002 100002 100006 100005 100007 100012 100024 100039 100059 100086 100116 100148 100175 100194 100201 100198 100184 100156 100124 100095 100071 100051 100032 100019 100012 100008 100004 100003 100002 100002 100002 100002 100001 100001 100001 100001 100004 100008 100014 100024 100038 100054 100072 100086 100093 100089 100074 100056 100041 100029 100020 100012 100007 100004 100002 100002 100001 100001 100002 100002 100002 100002 100001 100001 100000 100000 100000 100000 100001 100003 100005 100008 100012 100016 100019 100018 100015 100012 100010 100007 100005 100003 100002 100002 100002 100001 100002 100002 100002 100002 100002 100002 100001 100001 100000 100000 100000 100000 99999.9 99999.6 99999.8 100000 100000 100001 100002 100003 100003 100004 100004 100003 100003 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100002 100002 100002 100002 100002 100002 100001 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100002 100002 100002 100002 100002 100001 100001 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100002 100002 100002 100002 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100002 100002 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100002 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 ) ; boundaryField { inlet { type fixedFluxPressure; gradient nonuniform List<scalar> 30 ( 39.6423 50.0448 57.531 63.5347 56.1958 44.0326 44.1891 58.9214 83.6776 96.9752 96.5671 94.7588 86.8306 68.7405 83.7533 91.1527 69.3206 46.0463 47.0524 55.1917 71.1553 81.7198 82.2033 78.8387 64.0046 85.845 84.6176 83.7377 82.0038 82.0759 ) ; value nonuniform List<scalar> 30 ( 105533 105536 105543 105553 105560 105565 105572 105583 105598 105615 105626 105629 105626 105619 105616 105603 105577 105559 105549 105538 105525 105507 105479 105449 105437 105476 105509 105520 105522 105526 ) ; } outlet { type fixedValue; value uniform 100000; } walls { type fixedFluxPressure; gradient uniform 0; value nonuniform List<scalar> 400 ( 105533 105477 105429 105380 105322 105241 105110 104989 104954 104943 104934 104926 104917 104909 104900 104892 104884 104873 104859 104839 104806 104757 104695 104627 104555 104479 104398 104311 104212 104097 104015 103974 103947 103917 103883 103843 103800 103755 103704 103646 103583 103516 103449 103380 103311 103243 103177 103122 103082 103049 103009 102957 102899 102837 102774 102711 102654 102619 102601 102587 102570 102548 102512 102460 102396 102326 102254 102183 102114 102049 101988 101935 101889 101844 101783 101711 101635 101555 101472 101401 101344 101289 101236 101192 101161 101137 101117 101099 101082 101065 101047 101025 100998 100973 100952 100935 100921 100910 100900 100887 100876 100868 100859 100851 100842 100833 100825 100818 100811 100804 100797 100789 100772 100745 100705 100659 100638 100632 100631 100630 100629 100627 100626 100624 100621 100618 100615 100612 100608 100604 100599 100595 100589 100580 100567 100550 100532 100514 100494 100469 100438 100411 100387 100362 100335 100304 100269 100234 100201 100172 100137 100089 100027 100006 100001 100001 100001 100001 100000 100000 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 105525 105430 105352 105272 105216 105179 105146 105112 105076 105042 105008 104973 104941 104915 104892 104867 104831 104779 104697 104601 104564 104549 104538 104526 104513 104498 104479 104455 104424 104384 104330 104261 104173 104077 103983 103896 103821 103759 103705 103654 103604 103550 103491 103427 103362 103297 103230 103164 103097 103031 102965 102899 102834 102769 102706 102643 102580 102519 102459 102403 102360 102332 102310 102282 102235 102174 102105 102033 101961 101889 101817 101744 101677 101646 101634 101625 101615 101600 101571 101515 101439 101363 101283 101208 101138 101083 101065 101057 101052 101046 101040 101034 101029 101024 101020 101015 101011 101009 101002 100983 100954 100927 100915 100906 100900 100896 100891 100886 100881 100875 100869 100861 100853 100843 100830 100814 100794 100772 100749 100725 100702 100680 100658 100637 100617 100598 100581 100569 100560 100554 100546 100532 100516 100506 100494 100484 100472 100457 100434 100406 100374 100346 100316 100286 100255 100221 100182 100139 100090 100036 100008 100003 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100002 100001 100001 100001 100001 100001 100001 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 ) ; } frontAndBackPlanes { type empty; } } // ************************************************************************* //
[ "mizuha.watanabe@gmail.com" ]
mizuha.watanabe@gmail.com
03f2e0a289174397791f262ec84f08427260035b
3bf91b10c47d677ac6caf121eeb4d1ead8d2b561
/src/helium/system/cachePartialUpdate.h
d67a598cada115d64e520867399f75977d3f15d3
[]
no_license
fabiodl/helium
8d9dea1e433973632199ea10a5bf54b6a3741afe
fe8f58eb55e033c596d66e377dc808c46ca0dfce
refs/heads/master
2020-12-06T15:09:29.227558
2020-03-10T07:48:28
2020-03-10T07:48:28
67,750,827
0
0
null
null
null
null
UTF-8
C++
false
false
1,109
h
/*! * \brief libhelium * \author Fabio Dalla Libera * \date 2012.07.01 * \version 0.2 * Release_flags g */ #ifndef HE_CACHEPARTIALUPDATE #define HE_CACHEPARTIALUPDATE namespace helium{ //used for keeping an internal cache of type GT=Array<T>,refreshed with updates of type UT=std::pair<int,T> template<typename VP> class CachePartialUpdate:public VP, public Callback<typename VP::V::RUT>, public ConnReference<typename VP::V::RUT>{ public: CachePartialUpdate(): VP(helium::Void()), ConnReference<typename VP::V::RUT>(this){ this->connect(this); } void init(size_t n, const typename VP::V::GT::value_type& initVal){ this->wCache.resize(n); setAll(this->wCache,initVal); } void operator()(typename VP::V::RUT p){ this->wCache[p.first]=p.second; } void onRemoteAvailable(){ this->get(this->wCache); for (size_t i=0;i<this->wCache.size();i++){ typename VP::V::UT ut(i,this->wCache[i]); this->signalData(ut); } } };//CachePartialUpdate }//ns #endif
[ "fabiodl@gmail.com" ]
fabiodl@gmail.com
45560301716dd41b86d3b0db1f02a0be724608cf
abdd0dcf68914e1547ac23b14fd1d7847dc9ce83
/fileSys/src/.history/node_20200501033017.cpp
0900e8114351ec85eb1c8ac08dc2864eff328976
[]
no_license
SnowflyLXF/Distributed-Systems-UMN
d290e2fdd2f07309fc62dffbe377443be6c34f3f
bd834f8cb2100836a67143ccdaeb79495cb74e18
refs/heads/master
2023-08-01T09:29:56.350535
2021-09-26T04:05:17
2021-09-26T04:05:17
410,444,689
0
0
null
null
null
null
UTF-8
C++
false
false
15,059
cpp
#include <condition_variable> #include "node.hpp" using namespace std; uint32_t checksum(std::ifstream& file) { uint32_t sum = 0; uint32_t word = 0; while (file.read(reinterpret_cast<char*>(&word), sizeof(word))) { sum += word; } if (file.gcount()) { word &= (~0U >> ((sizeof(uint32_t) - file.gcount()) * 8)); sum += word; } return sum; } int prior_value(int load, int latency){ return load+latency; } string Node::checkip() { char ip_address[15]; int fd; struct ifreq ifr; /*AF_INET - to define network interface IPv4*/ /*Creating soket for it.*/ fd = socket(AF_INET, SOCK_DGRAM, 0); /*AF_INET - to define IPv4 Address type.*/ ifr.ifr_addr.sa_family = AF_INET; /*eth0 - define the ifr_name - port name where network attached.*/ memcpy(ifr.ifr_name, "eno1", IFNAMSIZ - 1); /*Accessing network interface information by passing address using ioctl.*/ ioctl(fd, SIOCGIFADDR, &ifr); /*closing fd*/ close(fd); /*Extract IP Address*/ strcpy(ip_address, inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr)); printf("System IP Address is: %s\n", ip_address); string s(ip_address); return s; } Node ::Node(int Port, int OnPort) { num_up = 0; load = 0; _port = Port; _onListenPort = OnPort; _slen = sizeof(_node_addr); max_port = OnPort+1; node_ip = checkip(); dirname = "node" + to_string(_port); memset((char *)&_node_addr, 0, sizeof(_node_addr)); _node_addr.sin_family = AF_INET; _node_addr.sin_addr.s_addr = htonl(INADDR_ANY); _node_addr.sin_port = htons(_port); _node_socket_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); struct timeval tv0; tv0.tv_sec = 3; tv0.tv_usec = 0; if (setsockopt(_node_socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv0, sizeof(tv0)) < 0) { printf("time out setting failed\n"); } if (::bind(_node_socket_fd, (struct sockaddr *)&_node_addr, sizeof(_node_addr)) == -1) { cout << "Bind failed!" << endl; } thread onLis(&Node::onListen, this); onLis.detach(); } string Node::listen2() { char _buf2[BUFLEN]; memset(_buf2, ' ', BUFLEN); int recvLen = recvfrom(_onlisten_fd, _buf2, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen)); char msg[recvLen + 1]; strncpy(msg, _buf2, recvLen); msg[recvLen] = '\0'; string s(msg); return s; } void Node::onListen() { memset((char *)&_onlisten_addr, 0, sizeof(_onlisten_addr)); memset((char *)&_tmp_addr, 0, sizeof(_tmp_addr)); _onlisten_addr.sin_family = AF_INET; _onlisten_addr.sin_addr.s_addr = htonl(INADDR_ANY); _onlisten_addr.sin_port = htons(_onListenPort); _onlisten_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); if (::bind(_onlisten_fd, (struct sockaddr *)&_onlisten_addr, sizeof(_onlisten_addr)) == -1) { cout << "Bind failed!" << endl; } string m; while(1) { m = listen2(); if(strcmp(m.c_str(), "GetLoad")==0) { char msg[BUFLEN] = {0}; int len = sizeof(to_string(load).c_str()); snprintf(msg, len, to_string(load).c_str()); sendto(_onlisten_fd, msg, len, 0, (struct sockaddr *)&_tmp_addr, _slen); } else if (strncmp(m.c_str(), "Download", 8)==0) { // string dIP = listen2(); // int dport = stoi(listen2()); // string file = listen2(); // char *p; char *strs = new char[m.length() + 1]; strcpy(strs, m.c_str()); p = strtok(strs, ":"); p = strtok(NULL, ":"); string dIP(p); p = strtok(NULL, ":"); int dport = atoi(p); p = strtok(NULL, ":"); string file(p); // cout << dIP << ":" << dport << ", "<< file << endl; handleUpload(dIP, dport, file); } } } int Node::Connect() { char msg[BUFLEN] = {0}; int len = sizeof("Connect"); snprintf(msg, len, "Connect"); int n = sendall(msg, &len); return n; } int Node::SetServer(string serverIP, int serverPort) { memset((char *)&_server_addr, 0, sizeof(_server_addr)); _server_addr.sin_family = AF_INET; _server_addr.sin_addr.s_addr = inet_addr(serverIP.c_str()); _server_addr.sin_port = htons(serverPort); } string Node::listen() { memset(_buf, ' ', BUFLEN); int recvLen = recvfrom(_node_socket_fd, _buf, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen)); char msg[recvLen + 1]; // cout<<_buf<<endl; strncpy(msg, _buf, recvLen); // string s(msg); msg[recvLen] = '\0'; string s(msg); return s; } int Node ::sendall(char *msg, int *len) { // cout<<msg.c_str()<<endl; int bytesLeft = *len; int sentLen = 0; int n; while (sentLen < *len) { n = sendto(_node_socket_fd, msg + sentLen, bytesLeft, 0, (struct sockaddr *)&_server_addr, _slen); if (n == -1) { break; } sentLen += n; bytesLeft -= n; } *len = sentLen; return n == -1 ? -1 : 0; } Node::names Node::getFileList() { names files; DIR *dir; struct dirent *ptr; if ((dir = opendir(dirname.c_str())) == NULL) { perror("Open dir error..."); exit(1); } while ((ptr = readdir(dir)) != NULL) { if (strcmp(ptr->d_name, ".") == 0 || strcmp(ptr->d_name, "..") == 0) ///current dir OR parrent dir continue; else if (ptr->d_type == 8) files.push_back(ptr->d_name); } closedir(dir); return files; } int Node::FileList() { char msg[BUFLEN] = {0}; int len = sizeof("FileList"); snprintf(msg, len, "FileList"); int n = sendall(msg, &len); len = sizeof(to_string(_onListenPort)); snprintf(msg, len, to_string(_onListenPort).c_str()); n = sendall(msg, &len); names files = getFileList(); int fsize = files.size(); len = sizeof(to_string(fsize)); snprintf(msg, len, to_string(fsize).c_str()); n = sendall(msg, &len); for(int i = 0;i<fsize;i++) { len = sizeof(files[i]); snprintf(msg, len, files[i].c_str()); n = sendall(msg, &len); } } int Node::Update() { char msg[BUFLEN] = {0}; int len = sizeof("Update"); snprintf(msg, len, "Update"); int n = sendall(msg, &len); names files = getFileList(); int fsize = files.size(); len = sizeof(to_string(fsize)); snprintf(msg, len, to_string(fsize).c_str()); n = sendall(msg, &len); for (int i = 0; i < fsize; i++) { len = sizeof(files[i]); snprintf(msg, len, files[i].c_str()); n = sendall(msg, &len); } } Node::names Node::Find(string filename) { names tmpnodes; char msg[BUFLEN] = {0}; int len = sizeof("Find"); snprintf(msg, len, "Find"); int n = sendall(msg, &len); len = sizeof(filename.c_str()); snprintf(msg, len+1, filename.c_str()); n = sendall(msg, &len); string inmsg; inmsg = listen(); int nodecount = stoi(inmsg); for (int i = 0; i < nodecount; i++) { inmsg = listen(); tmpnodes.push_back(inmsg); cout<<"Find "<<inmsg<<endl; } // GetLoad(tmpnodes[0]); // GetLoad(tmpnodes[1]); return tmpnodes; } int Node::GetLoad(string c) { char *p; char *strs = new char[c.length() + 1]; strcpy(strs,c.c_str()); p = strtok(strs, ":"); string IP(p); p = strtok(NULL, ":"); int p2 = atoi(p); // cout<<p2<<endl; struct sockaddr_in _c_addr; memset((char *)&_c_addr, 0, sizeof(_c_addr)); _c_addr.sin_family = AF_INET; _c_addr.sin_addr.s_addr = inet_addr(IP.c_str()); _c_addr.sin_port = htons(p2); char msg[BUFLEN] = {0}; int len = sizeof("GetLoad"); snprintf(msg, len, "GetLoad"); sendto(_node_socket_fd, msg, len, 0, (struct sockaddr *)&_c_addr, _slen); char _bufd[BUFLEN]; int recvLen = recvfrom(_node_socket_fd, _bufd, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen)); if (recvLen == -1 && errno == EAGAIN) { printf("timeout, try another peer\n"); return -1; } return atoi(_bufd); } int Node::Download(string file) { load++; cout << "Try " << file << endl; thread onDownload(&Node::handleDownload, this, file); onDownload.detach(); // cout<<m<<endl; } int downloadfrom(string uper, string file) { } int Node::handleDownload(string file){ Node::names upers = Find(file); vector<pair<int, string>> nodelist; for (int i = 0; i < upers.size(); i++) { int p = prior_value(GetLoad(upers.at(i)), 1); nodelist.push_back(make_pair(p, upers.at(i))); } sort(nodelist.begin(), nodelist.end()); string uper = nodelist.front().second; int this_port = max_port++; cout<<this_port<<" Download from "<<uper<<endl; struct sockaddr_in down_node_addr, up_node_addr; memset((char *)&down_node_addr, 0, sizeof(down_node_addr)); down_node_addr.sin_family = AF_INET; down_node_addr.sin_addr.s_addr = htonl(INADDR_ANY); down_node_addr.sin_port = htons(this_port); int down_node_socket_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); struct timeval tv; tv.tv_sec = 3; tv.tv_usec = 0; if (setsockopt(down_node_socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0) { printf("time out setting failed\n"); } if (::bind(down_node_socket_fd, (struct sockaddr *)&down_node_addr, sizeof(down_node_addr)) == -1) { cout << "Bind failed!" << endl; } int pos = uper.find(":"); string upip = uper.substr(0,pos); string p = uper.substr(pos+1, uper.length()+1); int upport = stoi(p); memset((char *)&up_node_addr, 0, sizeof(up_node_addr)); up_node_addr.sin_family = AF_INET; up_node_addr.sin_addr.s_addr = inet_addr(upip.c_str()); up_node_addr.sin_port = htons(upport); char msg[BUFLEN] = {0}; string tmpstr = "Download:127.0.0.1:" + to_string(this_port) + ":" + file; int len = tmpstr.length()+1; snprintf(msg, len, tmpstr.c_str()); sendto(down_node_socket_fd, msg, len, 0, (struct sockaddr *)&up_node_addr, _slen);; char _bufd[BUFLEN]; int recvLen = recvfrom(down_node_socket_fd, _bufd, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen)); if (recvLen == -1 && errno == EAGAIN) { printf("timeout, try another peer\n"); return -1; } char filed[recvLen + 1]; strncpy(filed, _bufd, recvLen); filed[recvLen] = '\0'; cout << "downloader received:" << filed << endl; int flen = stoi(filed); recvLen = recvfrom(down_node_socket_fd, _bufd, flen, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen)); if (recvLen == -1 && errno == EAGAIN) { printf("timeout, try another peer\n"); return -1; } FILE * pfile; pfile = fopen((dirname + "/tmp/" + file).c_str(), "wb"); filed[recvLen + 1]; strncpy(filed, _bufd, recvLen); filed[recvLen] = '\0'; cout << "content: " << filed << endl; fwrite(filed, flen*sizeof(char), 1, pfile); fclose(pfile); ifstream f; uint32_t cksum; f.open((dirname + "/tmp/" + file).c_str(), ios_base::in); if (f.is_open()) cksum = checksum(f); f.close(); recvLen = recvfrom(down_node_socket_fd, _bufd, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen)); if (recvLen == -1 && errno == EAGAIN) { printf("timeout, try another peer\n"); return -1; } filed[recvLen + 1]; strncpy(filed, _bufd, recvLen); filed[recvLen] = '\0'; cout << filed<<endl; if (strcmp(filed, to_string(cksum).c_str()) == 0) { std::ifstream in((dirname + "/tmp/" + file).c_str(), std::ios::in | std::ios::binary); std::ofstream out((dirname +"/"+ file).c_str(), std::ios::out | std::ios::binary); out << in.rdbuf(); std::remove((dirname + "/tmp/" + file).c_str()); } else { std::remove((dirname + "/tmp/" + file).c_str()); return 2; } load--; return 1; } int Node::handleUpload(string dip, int dport, string file) { thread uplder(&Node::Uploader, this, dip, dport, file); uplder.detach(); num_up ++; } void Node::Uploader(string dip, int dport, string file) { load++; int this_port = max_port++; struct sockaddr_in downloader_addr, uploader_addr; // memset((char *)&uploader_addr, 0, sizeof(uploader_addr)); // uploader_addr.sin_family = AF_INET; // uploader_addr.sin_addr.s_addr = htonl(INADDR_ANY); // uploader_addr.sin_port = htons(this_port); int uploader_socket_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); char msg_up[BUFLEN] = {0}; int len; memset((char *)&downloader_addr, 0, sizeof(downloader_addr)); downloader_addr.sin_family = AF_INET; downloader_addr.sin_addr.s_addr = inet_addr(dip.c_str()); downloader_addr.sin_port = htons(dport); cout<< "sending "<<file<<" to: "<<dip <<":"<<dport<<endl; // sleep(4); DIR *dir; struct dirent *ptr; FILE *fp; if ((dir = opendir(dirname.c_str())) == NULL) { perror("Open dir error..."); exit(1); } while ((ptr = readdir(dir)) != NULL) { if (strcmp(ptr->d_name, ".") == 0 || strcmp(ptr->d_name, "..") == 0) ///current dir OR parrent dir continue; else if (ptr->d_type == 8) { if(strcmp(ptr->d_name, file.c_str()) == 0) { fp = fopen((dirname +"/"+ file).c_str(), "rb"); if (fp == NULL) { cerr << "File Open Error"; } struct stat st; stat((dirname + "/" + file).c_str(), &st); size_t fsize = st.st_size; len = sizeof(fsize); snprintf(msg_up, len, "%d", fsize); sendto(uploader_socket_fd, msg_up, len, 0, (struct sockaddr *)&downloader_addr, _slen); fread(msg_up, 1, fsize, fp); sendto(uploader_socket_fd, msg_up, fsize, 0, (struct sockaddr *)&downloader_addr, _slen); ifstream f; uint32_t cksum; f.open((dirname + "/" + file).c_str(), ios_base::in); if (f.is_open()) cksum = checksum(f); f.close(); len = sizeof(to_string(cksum)); snprintf(msg_up, len, to_string(cksum).c_str()); sendto(uploader_socket_fd, msg_up, len, 0, (struct sockaddr *)&downloader_addr, _slen); fclose(fp); } } } closedir(dir); load--; }
[ "lixuefei9679@gmail.com" ]
lixuefei9679@gmail.com
1459ab07246a2a1e21d86cc9d1d544005df56f87
d910373b4c7beace15fbbee67faf48067292e068
/src/bin/polyline/src/de/hampe/svg/LineCap.hpp
ba0c4d83508d20cdfdfce0a8892efb2765423b73
[]
no_license
benjaminhampe/benni-cmake-v6
17f396eea5ab608cf5ba675753d36f6dba493b01
2f4157244dbd9aa5bbd72aae803ca14eda881ae0
refs/heads/master
2020-06-17T04:25:47.804665
2019-08-05T13:10:39
2019-08-05T13:10:39
195,795,801
0
0
null
null
null
null
UTF-8
C++
false
false
1,433
hpp
////////////////////////////////////////////////////////////////////// /// @file LineCap.hpp /// @brief SVG LineCap /// @author Copyright (c) Benjamin Hampe <benjaminhampe@gmx.de> /// /// The author grants permission of free use, free distribution and /// free usage for commercial applications even for modified sources. /// /// What is not allowed is to remove the original authors name or claim /// any intellectual rights. This original code was written in my spare time /// and is distributed publicly as free software to anyone over GitLab and GitHub. /// ////////////////////////////////////////////////////////////////////// #ifndef DE_HAMPE_SVG_LINECAP_HPP #define DE_HAMPE_SVG_LINECAP_HPP #include <ostream> namespace de { namespace hampe { namespace svg { /// @brief LineCaps for Start- and EndSegment of a polyline by SVG standard struct LineCap { enum eLineCap { NONE = 0, // SVG lineCap = "butt" SQUARE, // SVG lineCap = "square" ROUND, // SVG lineCap = "round" ENUM_END }; LineCap( eLineCap value ) : Value( value ) {} operator eLineCap () const { return Value; } eLineCap Value = NONE; ///< Member Field }; } // end namespace svg } // end namespace hampe } // end namespace de /// @brief Print LineCaps std::ostream & operator<< ( std::ostream & out, de::hampe::svg::LineCap const lineCap ); #endif // DE_HAMPE_SVG_LINECAP_HPP
[ "benjamin.hampe@preh.de" ]
benjamin.hampe@preh.de
69deb4b8f1bbcb9060c49491650cfdd966ed789c
b1936b91f941b5ed7c4ef6263fbe68aab7bf3c08
/SnifferDlg.cpp
f719a8f0322e395f584f41a51070a98dc7780aa6
[]
no_license
philsong/smartkid
dd0f920f505fbf7db3d60de9a2cbc08b33885878
1eb26544e206cb1f1ca97b72d4a85ad461827f05
refs/heads/master
2021-01-18T17:17:33.679817
2006-12-29T14:37:53
2006-12-29T14:37:53
32,116,947
1
0
null
null
null
null
GB18030
C++
false
false
1,261
cpp
// SnifferDlg.cpp : 实现文件 //NDIS , DDK , pcaplib will add by songbo. #include "stdafx.h" #include "smartkid.h" #include "SnifferDlg.h" #include <winsock2.h> #include "mstcpip.h" #include "iphlpapi.h" #pragma comment (lib,"Iphlpapi.lib") // CSnifferDlg 对话框 IMPLEMENT_DYNAMIC(CSnifferDlg, CDialog) CSnifferDlg::CSnifferDlg(CWnd* pParent /*=NULL*/) : CDialog(CSnifferDlg::IDD, pParent) { } CSnifferDlg::~CSnifferDlg() { } void CSnifferDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Control(pDX, IDC_SNIFFER_LIST, m_dataListCtrl); } BEGIN_MESSAGE_MAP(CSnifferDlg, CDialog) END_MESSAGE_MAP() BOOL CSnifferDlg::OnInitDialog() { CDialog::OnInitDialog(); SetWindowText("Sniffer"); m_dataListCtrl.InsertColumn( 0, _T("协议"), LVCFMT_LEFT, 40); m_dataListCtrl.InsertColumn( 1, _T("源地址:端口"), LVCFMT_LEFT, 140); m_dataListCtrl.InsertColumn( 2, _T("目的地址:端口"), LVCFMT_LEFT, 140); m_dataListCtrl.InsertColumn( 3, _T("数据包大小"), LVCFMT_LEFT, 100); m_dataListCtrl.InsertColumn( 4, _T("时间"), LVCFMT_LEFT, 140); return TRUE; // return TRUE unless you set the focus to a control // 异常: OCX 属性页应返回 FALSE }
[ "songbohr@99f8ccfc-bd25-0410-92d8-6ff52df36cf9" ]
songbohr@99f8ccfc-bd25-0410-92d8-6ff52df36cf9
93a2bc8d8428376a1bf93237b55801850b52fbb8
b90c36b87185c31dbb7058a50b94e15d786ea6fe
/inc/Matrix3x3.hh
a16a06e7d771c1bcbf1bcdd7743544612bb751d5
[ "Unlicense" ]
permissive
KPO-2020-2021/zad5_1-Landsknecht3
14765747871057698e5d76ee0ad0d22757914c90
ad92aeceb20aecd147d8fb9ff30c84e97e889786
refs/heads/main
2023-05-28T08:19:30.062350
2021-06-09T20:47:00
2021-06-09T20:47:00
368,237,354
0
0
null
null
null
null
UTF-8
C++
false
false
226
hh
#ifndef MATRIX3X3_HH #define MATRIX3X3_HH #include <iostream> #include "Matrix.hh" typedef Matrix<3> Matrix3x3; Matrix3x3 mac_rot_x(double kat); Matrix3x3 mac_rot_y(double kat); Matrix3x3 mac_rot_z(double kat); #endif
[ "259260@student.pwr.edu.pl" ]
259260@student.pwr.edu.pl
1518656d905e02fe2831a995850ad1b5b1bdccfe
a2c13c0c0a79701b16b0f9d08c75901cee5e32e4
/UnitTest/test_data_send.h
b8ff7f81088afbd146a3c01da62515e0ec86e6cb
[]
no_license
GhostPastR/ClientServerWimApi
b7315231fba3555bf1447950a68ad92e38818778
3f1fa6ed98bdedeb0a3ee09985aefdfa1ea66cf8
refs/heads/main
2023-06-03T05:35:18.442992
2021-06-30T05:55:24
2021-06-30T05:55:24
381,333,958
0
0
null
null
null
null
UTF-8
C++
false
false
4,191
h
#ifndef TEST_DATA_SEND_H #define TEST_DATA_SEND_H #include <iostream> #include <cassert> #include <datasend.h> void test_data_send_not_file(){ DataSend data; data.header.sender = 1; data.header.recipient = 0; data.header.command = Command::CONNECT; std::wstring wstr; wstr += static_cast<wchar_t>(data.header.sender); wstr += static_cast<wchar_t>(data.header.recipient); wstr += static_cast<wchar_t>(data.header.command); wstr += static_cast<wchar_t>(data.header.dataComplete); wstr += static_cast<wchar_t>(0); auto buf = data.byte(); assert(buf == wstr); DataSend result; result.setByte( buf ); assert(data.header.sender == 1); assert(data.header.recipient == 0); assert(data.header.command == Command::CONNECT); std::cout << "Test 'test_data_send_not_file' - Pass!\n"; } void test_data_send_1_file(){ DataSend data; data.header.sender = 1; data.header.recipient = 0; data.header.command = Command::DATA; DataFile dataFile; dataFile.name = L"name_file"; dataFile.dataFile = L"1234567890"; data.dataFiles.push_back(dataFile); std::wstring wstr; wstr += static_cast<wchar_t>(data.header.sender); wstr += static_cast<wchar_t>(data.header.recipient); wstr += static_cast<wchar_t>(data.header.command); wstr += static_cast<wchar_t>(data.header.dataComplete); wstr += static_cast<wchar_t>(1); wstr += static_cast<wchar_t>(dataFile.name.size()); wstr += dataFile.name; wstr += 1; wstr += static_cast<wchar_t>(dataFile.dataFile.size()); wstr += dataFile.dataFile; auto buf = data.byte(); assert(buf == wstr); DataSend result; result.setByte( buf ); assert(data.header.sender == 1); assert(data.header.recipient == 0); assert(data.header.command == Command::DATA); assert(data.dataFiles.size() == 1); assert(data.dataFiles[0].name.size() == dataFile.name.size()); assert(data.dataFiles[0].name == dataFile.name); assert(data.dataFiles[0].dataFile.size() == dataFile.dataFile.size()); assert(data.dataFiles[0].dataFile == dataFile.dataFile); std::cout << "Test 'test_data_send_one_file' - Pass!\n"; } void test_data_send_2_file(){ DataSend data; data.header.sender = 1; data.header.recipient = 0; data.header.command = Command::DATA; DataFile dataFile; dataFile.name = L"name_file_1"; dataFile.dataFile = L"1234567890"; data.dataFiles.push_back(dataFile); DataFile dataFile2; dataFile2.name = L"name_file_2"; dataFile2.dataFile = L"9876543210"; data.dataFiles.push_back(dataFile2); std::wstring wstr; wstr += static_cast<wchar_t>(data.header.sender); wstr += static_cast<wchar_t>(data.header.recipient); wstr += static_cast<wchar_t>(data.header.command); wstr += static_cast<wchar_t>(data.header.dataComplete); wstr += static_cast<wchar_t>(2); wstr += static_cast<wchar_t>(dataFile.name.size()); wstr += dataFile.name; wstr += 1; wstr += static_cast<wchar_t>(dataFile.dataFile.size()); wstr += dataFile.dataFile; wstr += static_cast<wchar_t>(dataFile2.name.size()); wstr += dataFile2.name; wstr += 1; wstr += static_cast<wchar_t>(dataFile2.dataFile.size()); wstr += dataFile2.dataFile; auto buf = data.byte(); assert(buf == wstr); DataSend result; result.setByte( buf ); assert(data.header.sender == 1); assert(data.header.recipient == 0); assert(data.header.command == Command::DATA); assert(data.dataFiles.size() == 2); assert(data.dataFiles[0].name.size() == dataFile.name.size()); assert(data.dataFiles[0].name == dataFile.name); assert(data.dataFiles[0].dataFile.size() == dataFile.dataFile.size()); assert(data.dataFiles[0].dataFile == dataFile.dataFile); assert(data.dataFiles[1].name.size() == dataFile2.name.size()); assert(data.dataFiles[1].name == dataFile2.name); assert(data.dataFiles[1].dataFile.size() == dataFile2.dataFile.size()); assert(data.dataFiles[1].dataFile == dataFile2.dataFile); std::cout << "Test 'test_data_send_one_file' - Pass!\n"; } #endif // TEST_DATA_SEND_H
[ "nikolai0123456789@mail.ru" ]
nikolai0123456789@mail.ru
af9c362196272c4157de2c5c9352a98624c60f56
a43bf399b62b9ca17eb95c80c99067b925fdd2ad
/C++ Console/2015/T5/任务四 线段类/任务四 线段类/line.h
14b7c1dc8e735e688a3c5c8282104d14f1c30086
[]
no_license
imjinghun/university
d4bdf80ae6ed3d5a88c5a8b38c7640f19b0efe2c
1f5e9c0301ab4d38e4504d6c9cae4b5a187ce26b
refs/heads/master
2021-01-01T16:13:34.426161
2017-09-11T13:00:40
2017-09-11T13:00:40
97,788,115
0
0
null
null
null
null
UTF-8
C++
false
false
122
h
class line { class point { public: double x,y,z; }p,q; public: void input(); void output(); line(); ~line(); };
[ "1377525269@qq.com" ]
1377525269@qq.com
5a9418a76a827d4fdc565e6a00e3e023c6dfe2a8
a33a732433fbcad1a9d7bafd14c363ec05be073c
/open_chisel/include/open_chisel/Chisel.h
6eed2b4f74d3df8d5cb4adab1b348baaf477bc94
[]
no_license
tlb9551/OpenChisel
0c0d8bfa75daf580185c4f667496b650b3bd6eb1
eb2e537f6c26f71622b03af8f9a62195e7178abb
refs/heads/master
2020-03-25T23:36:01.460780
2019-01-09T04:47:11
2019-01-09T04:47:11
144,282,920
2
1
null
null
null
null
UTF-8
C++
false
false
15,611
h
// The MIT License (MIT) // Copyright (c) 2014 Matthew Klingensmith and Ivan Dryanovski // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #ifndef CHISEL_H_ #define CHISEL_H_ #include <open_chisel/threading/Threading.h> #include <open_chisel/ChunkManager.h> #include <open_chisel/ProjectionIntegrator.h> #include <open_chisel/geometry/Geometry.h> #include <open_chisel/camera/PinholeCamera.h> #include <open_chisel/camera/GeneralCamera.h> #include <open_chisel/camera/DepthImage.h> #include <open_chisel/geometry/Frustum.h> #include <open_chisel/pointcloud/PointCloud.h> #include <iostream> namespace chisel { class Chisel { public: Chisel(); Chisel(const Eigen::Vector3i &chunkSize, float voxelResolution, bool useColor); virtual ~Chisel(); inline const ChunkManager &GetChunkManager() const { return chunkManager; } inline ChunkManager &GetMutableChunkManager() { return chunkManager; } inline void SetChunkManager(const ChunkManager &manager) { chunkManager = manager; } void IntegratePointCloud( const ProjectionIntegrator &integrator, const PointCloud &cloud, const Transform &extrinsic, const float maxDist, const std::vector<float> &certainity); template <class DataType> void IntegrateDepthScan( const ProjectionIntegrator &integrator, const std::shared_ptr<const DepthImage<DataType>> &depthImage, const Transform &extrinsic, const PinholeCamera &camera) { printf("CHISEL: Integrating a scan\n"); Frustum frustum; camera.SetupFrustum(extrinsic, &frustum); ChunkIDList chunksIntersecting; chunkManager.GetChunkIDsIntersecting(frustum, &chunksIntersecting); std::mutex mutex; ChunkIDList garbageChunks; //for (const ChunkID &chunkID : chunksIntersecting) parallel_for(chunksIntersecting.begin(), chunksIntersecting.end(), [&](const ChunkID& chunkID) { bool chunkNew = false; mutex.lock(); if (!chunkManager.HasChunk(chunkID)) { chunkNew = true; chunkManager.CreateChunk(chunkID); } ChunkPtr chunk = chunkManager.GetChunk(chunkID); mutex.unlock(); bool needsUpdate = integrator.Integrate(depthImage, camera, extrinsic, chunk.get()); mutex.lock(); if (needsUpdate) { for (int dx = -1; dx <= 1; dx++) { for (int dy = -1; dy <= 1; dy++) { for (int dz = -1; dz <= 1; dz++) { meshesToUpdate[chunkID + ChunkID(dx, dy, dz)] = true; } } } } else if (chunkNew) { garbageChunks.push_back(chunkID); } mutex.unlock(); } ); printf("CHISEL: Done with scan with chunks %d\n", chunksIntersecting.size()); GarbageCollect(garbageChunks); chunkManager.PrintMemoryStatistics(); } template <class DataType, class ColorType> void IntegrateDepthScanColor( const ProjectionIntegrator &integrator, const std::shared_ptr<const DepthImage<DataType>> &depthImage, const Transform &depthExtrinsic, const PinholeCamera &depthCamera, const std::shared_ptr<const ColorImage<ColorType>> &colorImage, const Transform &colorExtrinsic, const PinholeCamera &colorCamera) { printf("CHISEL: Integrating a color scan\n"); auto wall_time = std::chrono::system_clock::now(); Frustum frustum; depthCamera.SetupFrustum(depthExtrinsic, &frustum); ChunkIDList chunksIntersecting; chunkManager.GetChunkIDsIntersecting(frustum, &chunksIntersecting); std::chrono::duration<double> elapsed = std::chrono::system_clock::now() - wall_time; printf("intersecting wall time: %f\n", elapsed.count() * 1000); wall_time = std::chrono::system_clock::now(); int n = chunksIntersecting.size(); std::vector<bool> isNew(n); std::vector<ChunkMap::iterator> newChunks(n); std::vector<bool> isGarbage(n); for (int i = 0; i < n; i++) { isNew[i] = false; isGarbage[i] = false; ChunkID chunkID = chunksIntersecting[i]; if (!chunkManager.HasChunk(chunkID)) { isNew[i] = true; newChunks[i] = chunkManager.CreateChunk(chunkID); } } printf("bucket_count: %d\n", chunkManager.GetBucketSize()); elapsed = std::chrono::system_clock::now() - wall_time; printf("allocation wall time: %f\n", elapsed.count() * 1000); wall_time = std::chrono::system_clock::now(); int nThread = 16; std::vector<int> debug_v; std::vector<std::thread> threads; std::mutex m; int blockSize = (n + nThread - 1) / nThread; for (int i = 0; i < nThread; i++) { int s = i * blockSize; printf("thread: %d, start: %d, blockSize: %d\n", i, s, blockSize); threads.push_back(std::thread([s, n, blockSize, this, &m, &chunksIntersecting, &depthImage, &depthCamera, &depthExtrinsic, &colorImage, &colorCamera, &colorExtrinsic, &integrator, &isNew, &isGarbage, &debug_v]() { for (int j = 0, k = s; j < blockSize && k < n; j++, k++) { ChunkID chunkID = chunksIntersecting[k]; ChunkPtr chunk = this->chunkManager.GetChunk(chunkID); bool needsUpdate = integrator.IntegrateColor( depthImage, depthCamera, depthExtrinsic, colorImage, colorCamera, colorExtrinsic, chunk.get()); if (!needsUpdate && isNew[k]) { isGarbage[k] = true; } if (needsUpdate) { m.lock(); for (int dx = -1; dx <= 1; dx++) { for (int dy = -1; dy <= 1; dy++) { for (int dz = -1; dz <= 1; dz++) { this->meshesToUpdate[chunkID + ChunkID(dx, dy, dz)] = true; } } } m.unlock(); } } })); } for (int i = 0; i < nThread; i++) threads[i].join(); elapsed = std::chrono::system_clock::now() - wall_time; printf("integration wall time: %f\n", elapsed.count() * 1000); wall_time = std::chrono::system_clock::now(); //ChunkIDList garbageChunks; for (int i = 0; i < n; i++) if (isGarbage[i]) { chunkManager.RemoveChunk(newChunks[i]); //garbageChunks.push_back(chunksIntersecting[i]); } //GarbageCollect(garbageChunks); printf("CHISEL: Done with color scan\n"); //chunkManager.PrintMemoryStatistics(); elapsed = std::chrono::system_clock::now() - wall_time; printf("garbage wall time: %f\n", elapsed.count() * 1000); } template <class DataType> void IntegrateDepthScan( const ProjectionIntegrator &integrator, const std::shared_ptr<const DepthImage<DataType>> &depthImage, const Transform &extrinsic, const GeneralCamera &camera ) { printf("CHISEL: Integrating a scan\n"); Frustum frustum; camera.SetupFrustum(extrinsic, &frustum); ChunkIDList chunksIntersecting; chunkManager.GetChunkIDsIntersecting(frustum, &chunksIntersecting); std::mutex mutex; ChunkIDList garbageChunks; //for (const ChunkID &chunkID : chunksIntersecting) parallel_for(chunksIntersecting.begin(), chunksIntersecting.end(), [&](const ChunkID& chunkID) { bool chunkNew = false; mutex.lock(); if (!chunkManager.HasChunk(chunkID)) { chunkNew = true; chunkManager.CreateChunk(chunkID); } ChunkPtr chunk = chunkManager.GetChunk(chunkID); mutex.unlock(); bool needsUpdate = integrator.Integrate(depthImage, camera, extrinsic, chunk.get()); mutex.lock(); if (needsUpdate) { for (int dx = -1; dx <= 1; dx++) { for (int dy = -1; dy <= 1; dy++) { for (int dz = -1; dz <= 1; dz++) { meshesToUpdate[chunkID + ChunkID(dx, dy, dz)] = true; } } } } else if (chunkNew) { garbageChunks.push_back(chunkID); } mutex.unlock(); } ); printf("CHISEL: Done with scan\n"); GarbageCollect(garbageChunks); chunkManager.PrintMemoryStatistics(); } template <class DataType, class ColorType> void IntegrateDepthScanColor( const ProjectionIntegrator &integrator, const std::shared_ptr<const DepthImage<DataType>> &depthImage, const std::shared_ptr<const ColorImage<ColorType>> &colorImage, const Transform &cameraExtrinsic, const GeneralCamera &Camera) { printf("CHISEL: Integrating a color scan, with general camera.\n"); auto wall_time = std::chrono::system_clock::now(); Frustum frustum; Camera.SetupFrustum(cameraExtrinsic, &frustum); ChunkIDList chunksIntersecting; chunkManager.GetChunkIDsIntersecting(frustum, &chunksIntersecting); std::chrono::duration<double> elapsed = std::chrono::system_clock::now() - wall_time; printf("intersecting wall time: %f with %d chunks\n", elapsed.count() * 1000, chunksIntersecting.size()); wall_time = std::chrono::system_clock::now(); int n = chunksIntersecting.size(); std::vector<bool> isNew(n); std::vector<ChunkMap::iterator> newChunks(n); std::vector<bool> isGarbage(n); for (int i = 0; i < n; i++) { isNew[i] = false; isGarbage[i] = false; ChunkID chunkID = chunksIntersecting[i]; if (!chunkManager.HasChunk(chunkID)) { isNew[i] = true; newChunks[i] = chunkManager.CreateChunk(chunkID); } } printf("bucket_count: %d\n", chunkManager.GetBucketSize()); elapsed = std::chrono::system_clock::now() - wall_time; printf("allocation wall time: %f\n", elapsed.count() * 1000); wall_time = std::chrono::system_clock::now(); int nThread = 16; std::vector<int> debug_v; std::vector<std::thread> threads; std::mutex m; int blockSize = (n + nThread - 1) / nThread; for (int i = 0; i < nThread; i++) { int s = i * blockSize; printf("thread: %d, s: %d, blockSize: %d\n", i, s, blockSize); threads.push_back(std::thread([s, n, blockSize, this, &m, &chunksIntersecting, &depthImage, &cameraExtrinsic, &colorImage, &Camera, &cameraExtrinsic, &integrator, &isNew, &isGarbage, &debug_v]() { for (int j = 0, k = s; j < blockSize && k < n; j++, k++) { ChunkID chunkID = chunksIntersecting[k]; ChunkPtr chunk = this->chunkManager.GetChunk(chunkID); bool needsUpdate = integrator.IntegrateColor(depthImage, colorImage, Camera, cameraExtrinsic, chunk.get()); if (!needsUpdate && isNew[k]) { isGarbage[k] = true; } if (needsUpdate) { m.lock(); for (int dx = -1; dx <= 1; dx++) { for (int dy = -1; dy <= 1; dy++) { for (int dz = -1; dz <= 1; dz++) { this->meshesToUpdate[chunkID + ChunkID(dx, dy, dz)] = true; } } } m.unlock(); } } })); } for (int i = 0; i < nThread; i++) threads[i].join(); elapsed = std::chrono::system_clock::now() - wall_time; printf("integration wall time: %f\n", elapsed.count() * 1000); wall_time = std::chrono::system_clock::now(); //ChunkIDList garbageChunks; for (int i = 0; i < n; i++) if (isGarbage[i]) { chunkManager.RemoveChunk(newChunks[i]); //garbageChunks.push_back(chunksIntersecting[i]); } //GarbageCollect(garbageChunks); printf("CHISEL: Done with color scan\n"); //chunkManager.PrintMemoryStatistics(); elapsed = std::chrono::system_clock::now() - wall_time; printf("garbage wall time: %f\n", elapsed.count() * 1000); } void GarbageCollect(const ChunkIDList &chunks); void UpdateAllMesh(ChunkSet &this_meshes) { chunkManager.ClearMeshes(); chunkManager.RecomputeMeshes(this_meshes); } void UpdateMeshes(); bool SaveAllMeshesToPLY(const std::string &filename); void Reset(); const ChunkSet &GetMeshesToUpdate() const { return meshesToUpdate; } protected: ChunkManager chunkManager; ChunkSet meshesToUpdate; }; typedef std::shared_ptr<Chisel> ChiselPtr; typedef std::shared_ptr<const Chisel> ChiselConstPtr; } // namespace chisel #endif // CHISEL_H_
[ "tlb9551@outlook.com" ]
tlb9551@outlook.com