From fecc6f53e4ebce754a1e0e1af31913cd3361c247 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 29 May 2016 14:28:06 -0400 Subject: [PATCH 1/5] Consolidate the code that starts and stops play/rec head scrolling --- src/toolbars/ControlToolBar.cpp | 63 ++++++++++++++++++--------- src/toolbars/ControlToolBar.h | 4 ++ src/toolbars/TranscriptionToolBar.cpp | 3 +- src/tracks/ui/Scrubbing.cpp | 25 +++++------ src/widgets/Ruler.cpp | 3 +- 5 files changed, 61 insertions(+), 37 deletions(-) diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index af56e337f..7b7ecfdf0 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -751,8 +751,7 @@ void ControlToolBar::OnPlay(wxCommandEvent & WXUNUSED(evt)) auto p = GetActiveProject(); if (doubleClicked) - p->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Centered); + StartScrolling(); else { if (!CanStopAudioStream()) return; @@ -792,11 +791,11 @@ void ControlToolBar::PlayDefault() void ControlToolBar::StopPlaying(bool stopStream /* = true*/) { + StopScrolling(); + AudacityProject *project = GetActiveProject(); if(project) { - project->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Off); // Let scrubbing code do some appearance change project->GetScrubber().StopScrubbing(); } @@ -857,22 +856,7 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt) mRecord->ClearDoubleClicked(); if (doubleClicked) { - // Display a fixed recording head while scrolling the waves continuously. - // If you overdub, you may want to anticipate some context in existing tracks, - // so center the head. If not, put it rightmost to display as much wave as we can. - const auto project = GetActiveProject(); - bool duplex; - gPrefs->Read(wxT("/AudioIO/Duplex"), &duplex, true); - - if (duplex) { - // See if there is really anything being overdubbed - if (gAudioIO->GetNumPlaybackChannels() == 0) - // No. - duplex = false; - } - - using Mode = AudacityProject::PlaybackScroller::Mode; - project->GetPlaybackScroller().Activate(duplex ? Mode::Centered : Mode::Right); + StartScrolling(); return; } @@ -1278,3 +1262,42 @@ void ControlToolBar::UpdateStatusBar(AudacityProject *pProject) { pProject->GetStatusBar()->SetStatusText(StateForStatusBar(), stateStatusBarField); } + +void ControlToolBar::StartScrolling() +{ + using Mode = AudacityProject::PlaybackScroller::Mode; + const auto project = GetActiveProject(); + if (project) { + auto mode = Mode::Centered; + + if (gAudioIO->GetNumCaptureChannels() > 0) { + // recording + + // Display a fixed recording head while scrolling the waves continuously. + // If you overdub, you may want to anticipate some context in existing tracks, + // so center the head. If not, put it rightmost to display as much wave as we can. + bool duplex; + gPrefs->Read(wxT("/AudioIO/Duplex"), &duplex, true); + + if (duplex) { + // See if there is really anything being overdubbed + if (gAudioIO->GetNumPlaybackChannels() == 0) + // No. + duplex = false; + } + + if (!duplex) + mode = Mode::Right; + } + + project->GetPlaybackScroller().Activate(mode); + } +} + +void ControlToolBar::StopScrolling() +{ + const auto project = GetActiveProject(); + if(project) + project->GetPlaybackScroller().Activate + (AudacityProject::PlaybackScroller::Mode::Off); +} diff --git a/src/toolbars/ControlToolBar.h b/src/toolbars/ControlToolBar.h index 989e3a168..5409a419e 100644 --- a/src/toolbars/ControlToolBar.h +++ b/src/toolbars/ControlToolBar.h @@ -106,6 +106,10 @@ class ControlToolBar final : public ToolBar { int WidthForStatusBar(wxStatusBar* const); void UpdateStatusBar(AudacityProject *pProject); + // Starting and stopping of scrolling display + void StartScrolling(); + void StopScrolling(); + private: AButton *MakeButton(teBmps eEnabledUp, teBmps eEnabledDown, teBmps eDisabled, diff --git a/src/toolbars/TranscriptionToolBar.cpp b/src/toolbars/TranscriptionToolBar.cpp index f088f9fbb..2fe288eef 100644 --- a/src/toolbars/TranscriptionToolBar.cpp +++ b/src/toolbars/TranscriptionToolBar.cpp @@ -480,8 +480,7 @@ void TranscriptionToolBar::OnPlaySpeed(wxCommandEvent & WXUNUSED(event)) button->ClearDoubleClicked(); if (doubleClicked) { - GetActiveProject()->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Centered); + GetActiveProject()->GetControlToolBar()->StartScrolling(); // Pop up the button SetButton(false, button); diff --git a/src/tracks/ui/Scrubbing.cpp b/src/tracks/ui/Scrubbing.cpp index 104ea7aa8..80bc6d60a 100644 --- a/src/tracks/ui/Scrubbing.cpp +++ b/src/tracks/ui/Scrubbing.cpp @@ -508,8 +508,6 @@ void Scrubber::StopScrubbing() UncheckAllMenuItems(); mScrubStartPosition = -1; - mProject->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Off); mDragging = false; if (!IsScrubbing()) @@ -784,20 +782,21 @@ bool Scrubber::PollIsSeeking() void Scrubber::ActivateScroller() { - using Mode = AudacityProject::PlaybackScroller::Mode; - mProject->GetPlaybackScroller().Activate(mSmoothScrollingScrub - ? Mode::Centered - : + const auto ctb = mProject->GetControlToolBar(); + if (mSmoothScrollingScrub) + ctb->StartScrolling(); + else { #ifdef __WXMAC__ - // PRL: cause many "unnecessary" refreshes. For reasons I don't understand, - // doing this causes wheel rotation events (mapped from the double finger vertical - // swipe) to be delivered more uniformly to the application, so that spped control - // works better. - Mode::Refresh + // PRL: cause many "unnecessary" refreshes. For reasons I don't understand, + // doing this causes wheel rotation events (mapped from the double finger vertical + // swipe) to be delivered more uniformly to the application, so that speed control + // works better. + mProject->GetPlaybackScroller().Activate + (AudacityProject::PlaybackScroller::Mode::Refresh); #else - Mode::Off + ctb->StopScrolling(); #endif - ); + } } void Scrubber::DoScrub(bool scroll, bool seek) diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp index 4da5d790d..8a06c5c20 100644 --- a/src/widgets/Ruler.cpp +++ b/src/widgets/Ruler.cpp @@ -2404,8 +2404,7 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) void AdornedRulerPanel::HandleQPDoubleClick(wxMouseEvent &evt, wxCoord mousePosX) { - mProject->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Centered); + mProject->GetControlToolBar()->StartScrolling(); } void AdornedRulerPanel::HandleQPClick(wxMouseEvent &evt, wxCoord mousePosX) From e39da0c42b0a2221b8cee194e7786cc40cdc6cc3 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 29 May 2016 15:47:11 -0400 Subject: [PATCH 2/5] New preference for pinned play head, also in Transport menu --- src/Menus.cpp | 22 ++++++++++++++++++++++ src/Menus.h | 1 + src/prefs/PlaybackPrefs.cpp | 32 +++++++++++++++++++++++++++++++- src/prefs/PlaybackPrefs.h | 3 +++ src/toolbars/ControlToolBar.cpp | 20 +++++++++++++++++--- src/toolbars/ControlToolBar.h | 1 + 6 files changed, 75 insertions(+), 4 deletions(-) diff --git a/src/Menus.cpp b/src/Menus.cpp index 909332752..1739d3f25 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -69,6 +69,7 @@ simplifies construction of menu items. #include "export/Export.h" #include "export/ExportMultiple.h" #include "prefs/PrefsDialog.h" +#include "prefs/PlaybackPrefs.h" #include "ShuttleGui.h" #include "HistoryWindow.h" #include "LyricsWindow.h" @@ -772,6 +773,11 @@ void AudacityProject::CreateMenusAndCommands() c->AddSeparator(); + c->AddCheck(wxT("PinnedHead"), _("Pinned Recording/Playback Head"), + FN(OnTogglePinnedHead), 0, + // Switching of scrolling on and off is permitted even during transport + AlwaysEnabledFlag, AlwaysEnabledFlag); + c->AddCheck(wxT("Duplex"), _("&Overdub (on/off)"), FN(OnTogglePlayRecording), 0); c->AddCheck(wxT("SWPlaythrough"), _("So&ftware Playthrough (on/off)"), FN(OnToggleSWPlaythrough), 0); @@ -1840,6 +1846,10 @@ void AudacityProject::ModifyToolbarMenus() gPrefs->Read(wxT("/AudioIO/AutomatedInputLevelAdjustment"),&active, false); mCommandManager.Check(wxT("AutomatedInputLevelAdjustmentOnOff"), active); #endif + + active = PlaybackPrefs::GetPinnedHeadPreference(); + mCommandManager.Check(wxT("PinnedHead"), active); + gPrefs->Read(wxT("/AudioIO/Duplex"),&active, true); mCommandManager.Check(wxT("Duplex"), active); gPrefs->Read(wxT("/AudioIO/SWPlaythrough"),&active, false); @@ -2360,6 +2370,18 @@ void AudacityProject::OnToggleSoundActivated() ModifyAllProjectToolbarMenus(); } +void AudacityProject::OnTogglePinnedHead() +{ + PlaybackPrefs::SetPinnedHeadPreference( + !PlaybackPrefs::GetPinnedHeadPreference(), true); + ModifyAllProjectToolbarMenus(); + + // Change what happens in case transport is in progress right now + auto ctb = GetActiveProject()->GetControlToolBar(); + if (ctb) + ctb->StartScrollingIfPreferred(); +} + void AudacityProject::OnTogglePlayRecording() { bool Duplex; diff --git a/src/Menus.h b/src/Menus.h index d88c187d3..88391d723 100644 --- a/src/Menus.h +++ b/src/Menus.h @@ -313,6 +313,7 @@ void OnResetToolBars(); void OnSoundActivated(); void OnToggleSoundActivated(); +void OnTogglePinnedHead(); void OnTogglePlayRecording(); void OnToggleSWPlaythrough(); #ifdef EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT diff --git a/src/prefs/PlaybackPrefs.cpp b/src/prefs/PlaybackPrefs.cpp index eb816bd71..f9436a468 100644 --- a/src/prefs/PlaybackPrefs.cpp +++ b/src/prefs/PlaybackPrefs.cpp @@ -19,13 +19,25 @@ *//********************************************************************/ #include "../Audacity.h" +#include "PlaybackPrefs.h" #include #include #include "../ShuttleGui.h" +#include "../Prefs.h" -#include "PlaybackPrefs.h" +namespace { + const wxChar *PinnedHeadPreferenceKey() + { + return wxT("/AudioIO/PinnedHead"); + } + + bool PinnedHeadPreferenceDefault() + { + return false; + } +} PlaybackPrefs::PlaybackPrefs(wxWindow * parent) : PrefsPanel(parent, _("Playback")) @@ -113,6 +125,11 @@ void PlaybackPrefs::PopulateOrExchange(ShuttleGui & S) S.EndThreeColumn(); } S.EndStatic(); + + // This affects recording too, though it is in playback preferences. + S.TieCheckBox(_("Pinned playback/recording head"), + PinnedHeadPreferenceKey(), + PinnedHeadPreferenceDefault()); } bool PlaybackPrefs::Apply() @@ -123,8 +140,21 @@ bool PlaybackPrefs::Apply() return true; } +bool PlaybackPrefs::GetPinnedHeadPreference() +{ + return gPrefs->ReadBool(PinnedHeadPreferenceKey(), PinnedHeadPreferenceDefault()); +} + +void PlaybackPrefs::SetPinnedHeadPreference(bool value, bool flush) +{ + gPrefs->Write(PinnedHeadPreferenceKey(), value); + if(flush) + gPrefs->Flush(); +} + PrefsPanel *PlaybackPrefsFactory::Create(wxWindow *parent) { wxASSERT(parent); // to justify safenew return safenew PlaybackPrefs(parent); } + diff --git a/src/prefs/PlaybackPrefs.h b/src/prefs/PlaybackPrefs.h index 0385498d6..43f176b47 100644 --- a/src/prefs/PlaybackPrefs.h +++ b/src/prefs/PlaybackPrefs.h @@ -27,6 +27,9 @@ class PlaybackPrefs final : public PrefsPanel virtual ~PlaybackPrefs(); bool Apply() override; + static bool GetPinnedHeadPreference(); + static void SetPinnedHeadPreference(bool value, bool flush = false); + private: void Populate(); void PopulateOrExchange(ShuttleGui & S); diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index 7b7ecfdf0..b5af09ce9 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -68,6 +68,7 @@ #include "../widgets/Meter.h" #include "../tracks/ui/Scrubbing.h" +#include "../prefs/PlaybackPrefs.h" IMPLEMENT_CLASS(ControlToolBar, ToolBar); @@ -635,15 +636,16 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion, NoteTrackArray(), #endif tcp0, tcp1, myOptions); - } else - { + } + else { // Cannot create cut preview tracks, clean up and exit SetPlay(false); SetStop(false); SetRecord(false); return -1; } - } else { + } + else { // Lifted the following into AudacityProject::GetDefaultPlayOptions() /* if (!timetrack) { @@ -682,6 +684,8 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion, return -1; } + StartScrollingIfPreferred(); + // Let other UI update appearance if (p) p->GetRulerPanel()->HideQuickPlayIndicator(); @@ -1076,6 +1080,8 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt) if (success) { p->SetAudioIOToken(token); mBusyProject = p; + + StartScrollingIfPreferred(); } else { if (shifted) { @@ -1263,6 +1269,14 @@ void ControlToolBar::UpdateStatusBar(AudacityProject *pProject) pProject->GetStatusBar()->SetStatusText(StateForStatusBar(), stateStatusBarField); } +void ControlToolBar::StartScrollingIfPreferred() +{ + if (PlaybackPrefs::GetPinnedHeadPreference()) + StartScrolling(); + else + StopScrolling(); +} + void ControlToolBar::StartScrolling() { using Mode = AudacityProject::PlaybackScroller::Mode; diff --git a/src/toolbars/ControlToolBar.h b/src/toolbars/ControlToolBar.h index 5409a419e..7e739d63b 100644 --- a/src/toolbars/ControlToolBar.h +++ b/src/toolbars/ControlToolBar.h @@ -107,6 +107,7 @@ class ControlToolBar final : public ToolBar { void UpdateStatusBar(AudacityProject *pProject); // Starting and stopping of scrolling display + void StartScrollingIfPreferred(); void StartScrolling(); void StopScrolling(); From ff95bf14905ac7c220a67c8c84b0a295a108c141 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 29 May 2016 15:58:47 -0400 Subject: [PATCH 3/5] Remove double-click handling for scrolling play/record --- src/toolbars/ControlToolBar.cpp | 27 ++++++--------------------- src/toolbars/TranscriptionToolBar.cpp | 21 +++++---------------- src/widgets/Ruler.cpp | 17 ----------------- src/widgets/Ruler.h | 3 --- 4 files changed, 11 insertions(+), 57 deletions(-) diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index b5af09ce9..e374ff680 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -749,24 +749,17 @@ void ControlToolBar::OnKeyEvent(wxKeyEvent & event) void ControlToolBar::OnPlay(wxCommandEvent & WXUNUSED(evt)) { - auto doubleClicked = mPlay->IsDoubleClicked(); - mPlay->ClearDoubleClicked(); - auto p = GetActiveProject(); - if (doubleClicked) - StartScrolling(); - else { - if (!CanStopAudioStream()) - return; + if (!CanStopAudioStream()) + return; - StopPlaying(); + StopPlaying(); - if (p) p->TP_DisplaySelection(); + if (p) p->TP_DisplaySelection(); - PlayDefault(); - UpdateStatusBar(p); - } + PlayDefault(); + UpdateStatusBar(p); } void ControlToolBar::OnStop(wxCommandEvent & WXUNUSED(evt)) @@ -856,14 +849,6 @@ void ControlToolBar::Pause() void ControlToolBar::OnRecord(wxCommandEvent &evt) { - auto doubleClicked = mRecord->IsDoubleClicked(); - mRecord->ClearDoubleClicked(); - - if (doubleClicked) { - StartScrolling(); - return; - } - if (gAudioIO->IsBusy()) { if (!CanStopAudioStream() || 0 == gAudioIO->GetNumCaptureChannels()) mRecord->PopUp(); diff --git a/src/toolbars/TranscriptionToolBar.cpp b/src/toolbars/TranscriptionToolBar.cpp index 2fe288eef..c4f22af04 100644 --- a/src/toolbars/TranscriptionToolBar.cpp +++ b/src/toolbars/TranscriptionToolBar.cpp @@ -476,22 +476,11 @@ void TranscriptionToolBar::OnPlaySpeed(wxCommandEvent & WXUNUSED(event)) { auto button = mButtons[TTB_PlaySpeed]; - auto doubleClicked = button->IsDoubleClicked(); - button->ClearDoubleClicked(); - - if (doubleClicked) { - GetActiveProject()->GetControlToolBar()->StartScrolling(); - - // Pop up the button - SetButton(false, button); - } - else { - // Let control have precedence over shift - const bool cutPreview = mButtons[TTB_PlaySpeed]->WasControlDown(); - const bool looped = !cutPreview && - button->WasShiftDown(); - PlayAtSpeed(looped, cutPreview); - } + // Let control have precedence over shift + const bool cutPreview = mButtons[TTB_PlaySpeed]->WasControlDown(); + const bool looped = !cutPreview && + button->WasShiftDown(); + PlayAtSpeed(looped, cutPreview); } void TranscriptionToolBar::OnSpeedSlider(wxCommandEvent& WXUNUSED(event)) diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp index 8a06c5c20..ab7a2ec1d 100644 --- a/src/widgets/Ruler.cpp +++ b/src/widgets/Ruler.cpp @@ -85,7 +85,6 @@ array of Ruler::Label. #include "../prefs/TracksPrefs.h" //#define SCRUB_ABOVE -#define RULER_DOUBLE_CLICK using std::min; using std::max; @@ -2378,15 +2377,7 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) } } -#ifdef RULER_DOUBLE_CLICK - if (evt.LeftDClick()) { - mDoubleClick = true; - HandleQPDoubleClick(evt, mousePosX); - } - else -#endif if (evt.LeftDown()) { - mDoubleClick = false; HandleQPClick(evt, mousePosX); HandleQPDrag(evt, mousePosX); ShowQuickPlayIndicator(); @@ -2402,11 +2393,6 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) } } -void AdornedRulerPanel::HandleQPDoubleClick(wxMouseEvent &evt, wxCoord mousePosX) -{ - mProject->GetControlToolBar()->StartScrolling(); -} - void AdornedRulerPanel::HandleQPClick(wxMouseEvent &evt, wxCoord mousePosX) { // Temporarily unlock locked play region @@ -2540,9 +2526,6 @@ void AdornedRulerPanel::HandleQPDrag(wxMouseEvent &event, wxCoord mousePosX) void AdornedRulerPanel::HandleQPRelease(wxMouseEvent &evt) { - if (mDoubleClick) - return; - if (HasCapture()) ReleaseMouse(); else diff --git a/src/widgets/Ruler.h b/src/widgets/Ruler.h index 329aaad5e..5f6c5098b 100644 --- a/src/widgets/Ruler.h +++ b/src/widgets/Ruler.h @@ -336,7 +336,6 @@ private: void OnSize(wxSizeEvent &evt); void UpdateRects(); void OnMouseEvents(wxMouseEvent &evt); - void HandleQPDoubleClick(wxMouseEvent &event, wxCoord mousePosX); void HandleQPClick(wxMouseEvent &event, wxCoord mousePosX); void HandleQPDrag(wxMouseEvent &event, wxCoord mousePosX); void HandleQPRelease(wxMouseEvent &event); @@ -439,8 +438,6 @@ private: bool mShowScrubbing { true }; - bool mDoubleClick {}; - DECLARE_EVENT_TABLE() friend QuickPlayRulerOverlay; From 2d14867aa8be58716613fc4f996752e9da411c74 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 31 May 2016 13:28:39 -0400 Subject: [PATCH 4/5] Images for pin/unpin of play/record head --- src/ThemeAsCeeCode.h | 8479 +++++++++++++++++++++--------------------- 1 file changed, 4257 insertions(+), 4222 deletions(-) diff --git a/src/ThemeAsCeeCode.h b/src/ThemeAsCeeCode.h index c1b589a50..aa0913d85 100644 --- a/src/ThemeAsCeeCode.h +++ b/src/ThemeAsCeeCode.h @@ -7,4225 +7,4260 @@ 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,184, 0,0,3,68,8,6,0,0,0,194,5,58,248,0,0,0,4,115,66,73, 84,8,8,8,8,124,8,100,136,0,0,32,0,73,68,65,84,120,156,236, - 189,123,124,84,213,189,247,255,217,123,246,220,114,129,132,139,36,10,106,32, - 169,16,245,88,208,90,137,40,151,99,219,223,131,79,57,61,181,122,218,234, - 105,251,212,62,167,30,17,90,240,138,109,5,218,83,241,130,168,40,218,211, - 83,159,158,90,56,246,232,169,199,94,164,71,169,8,74,131,214,2,106,107, - 208,18,8,2,18,72,200,133,36,51,179,103,246,101,253,254,152,89,147,239, - 172,236,61,51,185,204,100,146,172,247,235,53,175,204,236,203,186,101,102,125, - 246,247,187,190,107,45,37,20,10,41,30,77,211,20,69,81,0,40,0,152, - 101,89,204,50,77,179,180,180,148,101,58,15,0,103,94,84,49,167,237,96, - 123,99,180,39,214,133,33,98,209,170,249,123,183,175,219,57,135,124,94,188, - 125,221,206,173,67,149,126,33,83,236,247,151,92,62,115,230,252,154,202,202, - 90,205,227,9,52,119,116,52,255,233,224,193,250,67,39,79,54,136,215,170, - 0,222,110,120,151,125,188,246,111,148,129,228,101,11,159,95,175,174,174,9, - 3,183,133,61,158,139,21,175,86,6,69,81,109,211,10,49,195,120,231,12, - 224,225,43,26,27,247,100,147,238,157,247,221,121,246,233,214,211,58,0,140, - 159,60,62,112,255,93,247,31,113,186,78,81,20,54,144,114,75,36,18,73, - 38,148,104,52,90,222,210,17,62,187,163,93,31,199,152,173,50,6,91,81, - 88,215,25,19,180,195,101,101,227,122,84,213,83,210,210,17,62,215,233,252, - 248,241,227,186,138,138,138,216,85,223,93,184,230,162,235,46,252,250,142,7, - 94,191,111,207,230,125,79,12,166,64,139,86,205,191,127,222,210,185,215,238, - 218,180,187,106,251,186,157,10,57,126,104,222,210,185,177,93,155,118,63,177, - 125,221,206,141,131,175,122,42,179,207,155,183,102,223,7,187,214,56,157,83, - 20,117,50,99,118,107,186,99,101,165,147,38,119,118,159,74,185,198,233,24, - 231,235,159,189,115,205,255,251,205,253,41,249,21,7,2,37,183,47,89,114, - 215,215,175,186,234,22,77,85,199,135,99,49,24,166,9,211,178,96,218,54, - 254,212,216,184,251,145,23,95,188,253,189,35,71,254,192,239,81,1,252,244, - 149,127,103,71,206,60,132,243,142,157,143,47,126,234,31,250,37,116,92,224, - 118,85,207,40,50,84,207,125,150,162,156,167,217,246,235,26,179,159,154,215, - 120,176,57,113,110,154,169,168,95,53,85,245,114,15,99,135,189,182,181,124, - 94,227,65,195,45,205,213,143,172,62,219,95,234,255,191,70,212,216,5,0, - 94,191,119,94,180,59,250,111,107,191,189,182,143,200,73,129,147,72,36,185, - 66,105,56,208,122,201,143,158,51,191,124,162,205,154,165,192,246,49,166,196, - 74,252,109,13,215,255,127,214,211,117,151,214,54,30,109,238,169,126,252,23, - 230,87,78,180,89,181,244,252,151,63,99,62,61,247,210,218,134,226,162,34, - 227,111,239,94,176,230,138,111,93,190,58,214,19,69,203,7,167,222,123,229, - 222,29,43,155,118,29,126,185,191,133,89,180,106,254,251,243,150,206,61,15, - 0,34,167,117,236,217,188,111,223,246,117,59,231,44,90,53,127,241,188,165, - 115,95,140,196,13,2,236,217,188,239,129,237,235,118,222,73,239,101,109,43, - 24,186,99,64,204,74,159,137,105,227,116,75,24,183,110,120,115,237,83,191, - 62,176,134,31,254,237,67,141,236,127,223,90,221,71,28,106,166,93,112,179, - 87,11,156,209,208,244,167,53,233,142,45,255,135,53,107,14,31,63,220,242, - 235,215,255,253,137,116,199,220,242,59,107,194,132,169,91,191,251,221,109,83, - 202,202,102,182,117,119,163,71,215,97,152,38,108,22,239,255,85,37,126,169, - 110,24,120,124,235,214,219,95,248,227,31,215,3,9,129,251,253,79,89,211, - 133,141,136,245,68,161,125,228,199,85,254,207,96,193,39,175,204,74,232,108, - 196,197,45,230,241,252,132,65,241,249,45,243,75,84,188,118,85,207,168,180, - 161,212,94,217,216,248,202,174,234,25,147,12,213,115,47,83,148,113,62,203, - 252,230,188,198,131,167,197,244,86,253,112,213,148,241,83,75,151,107,62,237, - 75,122,119,108,5,0,4,74,125,15,155,49,243,153,211,199,186,55,174,251, - 206,186,147,244,122,41,112,18,137,36,87,168,199,155,91,199,31,61,222,81, - 219,30,158,124,89,71,100,242,220,182,80,217,101,31,125,212,114,254,209,163, - 199,198,25,134,225,105,110,110,25,119,244,120,199,249,226,249,99,199,62,26, - 103,24,134,10,0,140,49,216,166,13,211,176,49,113,250,132,243,191,248,211, - 107,94,186,126,203,63,188,58,229,252,51,230,100,42,0,135,139,91,228,180, - 142,200,105,29,109,7,219,154,248,185,237,235,118,110,221,181,105,247,183,248, - 231,139,111,152,125,199,162,85,243,191,156,146,64,119,12,214,169,8,194,39, - 66,8,53,247,184,190,78,159,232,193,95,15,119,226,68,91,36,229,246,158, - 72,119,159,50,205,60,247,130,155,127,190,246,181,77,61,225,206,228,177,25, - 83,63,118,163,120,44,222,6,192,45,215,221,187,169,238,194,207,220,72,143, - 45,255,135,251,54,45,152,179,228,102,49,109,154,95,113,32,80,178,245,187, - 223,221,54,177,180,116,230,209,83,167,112,170,171,11,161,104,20,49,110,189, - 89,22,98,166,137,152,101,65,1,240,181,133,11,31,188,178,182,246,27,201, - 124,128,100,251,71,207,136,224,119,19,126,133,29,111,190,150,181,112,24,170, - 231,94,0,150,202,236,15,12,143,231,73,122,206,134,50,39,230,241,172,120, - 189,186,186,118,94,227,193,83,94,219,90,170,48,214,97,168,158,7,197,116, - 86,172,94,49,161,244,204,210,111,104,126,237,70,120,212,242,228,9,143,90, - 174,249,181,27,75,207,44,253,198,138,213,43,38,100,91,46,137,68,34,25, - 12,170,101,154,30,48,195,7,91,15,192,214,3,96,70,128,49,195,103,89, - 166,199,182,109,197,178,44,199,243,166,101,168,182,77,70,112,24,3,108,6, - 219,178,97,153,54,166,125,226,172,5,95,127,225,43,123,62,187,126,241,211, - 165,21,37,83,211,21,34,225,150,60,143,91,104,78,108,95,183,115,227,158, - 205,251,174,39,135,174,75,185,32,102,33,26,54,208,29,54,208,19,49,93, - 95,93,33,19,221,97,3,81,67,28,125,74,213,131,153,231,94,112,243,111, - 30,122,119,211,129,35,7,96,152,49,0,192,132,113,19,63,253,252,253,111, - 109,106,60,218,136,152,25,77,185,222,178,0,191,215,143,175,94,125,251,166, - 89,231,206,249,52,0,216,54,224,211,124,184,113,201,221,155,230,207,22,69, - 174,55,191,219,151,44,185,171,162,172,108,102,115,71,7,122,116,29,150,109, - 199,219,83,44,33,99,128,162,192,231,245,226,11,115,231,62,80,18,8,156, - 65,78,166,180,127,182,188,94,93,93,99,41,202,44,159,101,125,19,0,44, - 69,153,254,234,199,62,70,69,206,128,130,34,75,81,174,3,128,121,141,7, - 13,205,182,31,179,20,229,204,157,213,213,95,226,23,221,188,250,230,146,201, - 103,79,190,193,235,215,190,169,170,234,148,148,242,51,6,85,85,167,120,253, - 218,55,39,159,61,249,134,155,87,223,92,146,117,1,37,18,137,100,128,168, - 136,7,142,12,4,215,251,152,205,96,25,54,44,195,194,249,75,102,253,227, - 77,191,255,70,227,130,219,174,184,215,87,226,27,231,114,203,181,217,100,184, - 125,221,206,255,216,179,121,223,3,0,112,241,13,179,255,110,209,170,249,47, - 164,228,155,232,84,25,99,174,47,48,150,232,123,69,1,81,147,239,102,158, - 123,193,205,191,221,240,238,166,15,155,91,16,210,187,225,213,252,40,47,157, - 248,233,157,63,58,244,235,206,110,195,223,209,221,154,204,43,153,119,162,73, - 38,140,159,226,95,241,165,7,127,125,225,140,79,126,90,85,226,199,131,129, - 18,220,184,100,149,131,200,197,3,74,190,126,213,85,183,156,234,238,70,40, - 26,237,147,174,19,154,170,162,188,164,164,252,147,53,53,255,228,116,158,217, - 125,211,248,127,191,255,169,99,194,166,170,126,75,179,237,215,19,31,61,0, - 96,41,74,245,206,154,234,21,194,117,243,118,212,212,172,1,128,43,26,27, - 27,52,219,254,147,173,170,11,1,224,171,171,191,26,56,115,90,197,117,222, - 160,118,139,71,83,167,185,149,219,163,169,211,188,65,237,150,51,167,85,92, - 247,213,213,95,13,100,172,168,68,34,145,12,2,53,243,37,3,135,49,6, - 203,176,160,106,170,255,178,127,186,116,213,63,191,242,141,198,57,215,127,252, - 102,143,207,227,231,215,36,130,71,170,248,152,219,158,205,251,30,216,179,121, - 223,7,135,119,31,233,116,74,115,251,186,157,119,238,217,188,111,95,226,227, - 223,13,85,89,75,138,226,218,219,43,110,173,232,10,181,163,164,104,60,46, - 152,113,105,237,211,107,118,109,238,232,182,252,237,93,173,176,108,247,113,62, - 85,81,81,86,58,217,127,219,13,143,108,62,167,114,86,173,105,25,80,160, - 36,69,110,225,197,159,75,17,185,203,103,206,156,175,169,234,248,238,72,36, - 57,222,230,6,127,162,80,85,21,1,175,23,231,157,117,214,146,254,212,113, - 213,158,59,216,47,182,253,103,74,38,150,162,204,72,4,148,132,1,88,137, - 140,60,134,234,249,212,107,213,213,127,75,50,87,77,143,122,229,142,154,154, - 59,0,64,101,236,45,91,81,38,95,123,237,181,190,143,157,53,99,137,47, - 232,95,174,106,106,117,166,50,168,154,90,237,11,250,151,127,236,172,25,75, - 174,189,246,90,95,127,202,47,145,72,36,253,65,203,71,38,182,101,67,177, - 129,192,248,192,228,79,175,254,219,77,159,248,218,156,149,175,62,248,250,170, - 191,190,124,224,57,0,85,52,160,36,113,203,157,233,210,203,5,83,38,84, - 162,122,234,5,55,255,234,193,94,113,179,153,141,128,47,136,155,62,191,246, - 90,191,55,128,76,226,6,0,138,162,64,85,85,140,47,158,48,185,114,226, - 180,107,67,145,46,40,138,146,20,185,111,254,253,234,77,165,69,101,232,9, - 199,103,84,212,84,86,214,70,98,49,24,150,229,232,150,236,147,62,226,86, - 161,39,110,197,213,246,167,142,102,177,137,189,165,127,196,221,187,238,98,151, - 91,87,226,234,249,139,21,40,240,243,104,73,0,189,86,149,130,64,204,227, - 89,225,181,237,29,52,13,91,85,62,254,122,117,245,165,0,58,25,80,90, - 59,191,118,145,183,200,191,194,227,245,92,168,100,225,13,80,0,197,227,245, - 92,136,34,255,138,218,249,181,93,248,175,254,212,64,34,145,72,178,39,167, - 22,28,133,49,192,50,44,196,122,98,240,6,189,51,22,220,118,197,179,23, - 223,240,241,213,249,202,63,19,150,101,225,209,149,191,217,116,232,163,99,56, - 221,211,6,102,179,164,187,48,102,234,232,14,159,134,109,91,89,184,16,227, - 125,188,105,27,232,14,159,78,142,223,1,113,139,54,18,13,225,154,69,223, - 220,116,180,165,17,0,160,121,60,129,40,137,150,204,22,22,79,47,216,159, - 123,120,251,119,162,3,255,29,253,47,60,249,252,143,82,50,101,138,50,73, - 168,137,97,43,202,12,122,204,134,82,108,43,184,132,1,101,241,242,107,11, - 0,204,1,99,106,54,53,136,123,135,153,10,96,78,226,94,137,68,34,201, - 9,121,17,56,102,51,152,81,19,145,142,8,58,143,117,226,224,206,67,123, - 95,248,214,111,22,238,217,252,246,218,76,247,46,90,53,127,111,226,245,254, - 162,85,243,239,95,180,106,254,222,121,75,231,206,78,156,110,74,123,115,63, - 104,110,59,134,27,127,56,127,105,115,219,135,48,45,19,118,98,134,152,97, - 198,112,186,167,29,49,51,10,155,217,25,5,142,49,27,166,25,67,87,79, - 59,244,88,24,12,12,54,179,97,89,22,218,187,78,98,223,7,175,227,145, - 103,110,95,170,36,154,254,120,71,71,179,101,219,89,15,132,242,220,245,88, - 12,173,93,93,205,105,47,22,224,237,175,124,160,226,171,227,191,142,127,254, - 252,77,10,24,162,187,170,103,76,3,0,133,177,99,36,163,110,205,178,158, - 213,108,251,71,52,13,175,109,237,152,127,160,241,9,196,199,235,66,177,112, - 236,37,35,108,212,91,134,101,129,177,62,35,155,125,202,30,119,91,91,70, - 216,168,143,133,99,47,245,167,252,18,137,68,210,31,114,59,6,103,35,41, - 108,167,143,117,225,240,27,71,222,219,246,131,87,175,251,221,119,182,93,220, - 178,191,117,71,226,178,95,1,192,197,55,204,158,189,104,213,252,251,157,210, - 153,183,116,110,217,188,165,115,207,155,183,116,238,29,23,223,48,123,118,194, - 165,217,180,125,221,206,233,67,85,214,104,44,130,19,109,71,158,248,206,147, - 55,44,109,105,63,22,181,109,27,138,162,160,171,167,29,63,250,229,234,231, - 222,59,244,86,171,101,153,80,213,116,77,198,96,90,6,62,106,61,140,55, - 223,123,165,245,205,191,252,254,57,159,230,135,109,219,104,237,248,8,111,252, - 121,91,244,87,175,253,116,233,190,191,238,122,98,234,148,120,209,247,28,60, - 88,111,90,86,114,158,91,54,152,150,133,142,158,30,124,216,210,82,223,159, - 58,218,141,10,62,95,116,29,54,221,248,164,114,197,39,231,41,0,224,97, - 236,128,169,168,95,77,92,226,73,84,195,246,218,214,239,231,55,54,62,195, - 128,41,252,152,102,217,175,121,24,123,28,0,108,69,153,227,97,236,232,107, - 191,126,237,245,72,151,254,80,44,108,188,145,78,228,168,184,197,194,198,27, - 145,46,253,161,215,126,253,218,235,14,151,74,36,18,201,144,160,162,111,56, - 97,182,184,222,199,24,96,197,44,232,167,35,232,250,136,11,219,246,235,94, - 188,227,127,46,56,250,214,177,231,232,181,219,215,237,252,220,158,205,251,184, - 200,245,157,223,150,128,207,143,3,128,182,131,109,0,240,156,211,117,3,39, - 94,157,230,83,31,62,113,231,166,47,46,105,237,56,30,53,77,3,209,88, - 4,71,91,26,27,238,251,217,45,11,14,28,121,183,213,52,77,215,20,12, - 211,192,177,150,67,120,253,157,173,173,255,241,210,35,11,122,34,93,13,126, - 111,16,39,219,143,98,247,159,95,142,254,102,215,207,150,124,120,226,175,79, - 0,64,81,160,20,0,112,232,228,201,134,63,53,54,238,6,0,40,74,220, - 245,152,166,132,140,49,116,69,34,248,168,189,29,127,57,122,244,41,199,235, - 92,18,248,215,175,255,171,178,228,170,207,166,40,169,102,219,63,51,85,245, - 242,132,21,103,1,128,135,177,6,15,99,207,208,235,60,204,222,183,224,192, - 129,53,243,26,15,26,175,87,87,215,154,170,122,137,106,219,127,216,185,115, - 167,217,242,215,150,151,244,112,244,190,88,196,124,211,50,109,219,177,0,140, - 193,50,109,59,22,49,223,212,195,209,251,90,254,218,242,210,206,157,59,221, - 27,83,34,145,72,6,137,10,192,98,12,49,203,182,116,219,102,186,109,89, - 58,99,136,33,222,217,49,183,243,10,148,62,147,173,24,99,113,97,235,140, - 224,244,71,93,248,232,237,227,71,119,62,188,107,169,147,176,9,60,203,223, - 92,124,195,236,45,139,86,205,95,238,118,97,219,193,54,28,222,125,228,3, - 113,37,19,152,54,76,203,70,204,176,97,164,123,89,241,235,210,17,138,116, - 189,124,199,227,215,46,249,240,196,7,93,86,98,220,205,180,140,134,53,63, - 185,113,65,227,177,119,91,157,58,112,219,182,209,124,234,67,236,122,103,107, - 235,182,55,254,115,65,119,248,116,131,230,241,162,181,243,56,118,189,189,181, - 235,119,187,159,89,210,118,250,100,114,117,23,106,177,61,250,226,139,183,235, - 134,1,58,175,144,230,192,69,143,49,134,30,93,199,225,150,22,236,59,116, - 104,219,241,246,246,20,23,31,109,127,145,175,95,245,127,28,77,196,43,26, - 27,247,120,24,59,108,120,60,171,1,120,60,54,107,240,218,214,93,243,26, - 15,158,226,215,40,12,237,154,205,126,12,0,187,170,103,140,55,85,117,153, - 135,177,195,243,27,27,159,1,128,31,255,248,199,70,75,67,203,75,209,80, - 116,67,44,28,219,215,71,228,184,184,133,99,251,162,161,232,134,150,134,150, - 151,126,252,227,31,187,46,245,37,145,72,36,67,129,230,81,173,211,1,245, - 84,195,233,211,127,101,54,108,31,24,98,193,18,171,193,231,45,233,50,12, - 195,2,204,174,128,218,246,158,203,249,120,143,204,0,203,180,17,237,138,34, - 220,30,70,91,83,251,209,63,63,223,112,223,161,215,154,158,178,77,59,154, - 161,12,216,190,110,231,127,0,184,232,226,27,102,223,1,0,23,223,48,251, - 81,0,141,124,113,229,200,105,189,10,72,17,183,153,98,26,167,91,194,248, - 235,145,46,116,135,141,180,193,136,166,197,112,188,53,2,211,100,194,241,84, - 99,34,20,233,126,249,59,79,254,227,220,111,125,241,254,29,138,162,38,174, - 49,26,214,252,219,141,11,190,253,197,7,146,199,146,215,235,61,216,253,231, - 151,90,95,126,227,217,5,33,189,187,1,0,194,209,30,212,191,251,63,173, - 191,221,245,243,5,33,189,43,101,161,100,154,223,95,142,28,249,195,227,91, - 183,222,254,181,133,11,31,244,105,26,52,77,131,154,176,230,128,132,112,217, - 54,186,34,17,28,110,105,193,158,131,7,15,238,120,239,189,175,36,19,16, - 218,95,105,85,177,224,107,217,45,213,5,0,94,219,90,30,243,104,63,135, - 2,191,215,178,127,148,152,50,0,0,80,128,38,205,178,254,243,138,198,198, - 3,175,87,87,215,26,170,186,140,41,40,242,89,246,26,154,198,143,127,252, - 99,99,217,178,101,191,29,95,53,222,163,0,119,248,138,124,73,247,49,179, - 24,51,194,177,125,122,119,244,129,211,77,167,127,43,197,77,34,145,228,3, - 109,242,4,223,193,207,93,105,254,236,196,201,238,113,150,101,169,138,162,218, - 227,198,149,118,157,125,214,248,195,182,109,235,103,76,240,31,254,220,149,230, - 211,78,231,153,109,155,0,96,70,45,116,159,232,65,203,7,167,186,246,61, - 243,246,154,3,175,28,124,34,27,97,163,36,44,178,143,206,157,123,246,205, - 135,119,31,241,113,113,75,76,29,96,231,206,61,187,233,240,238,35,207,245, - 177,220,18,172,220,240,230,218,19,109,17,196,12,27,153,188,174,134,201,208, - 116,188,123,7,61,118,178,253,88,159,235,76,203,104,120,228,23,119,44,40, - 43,153,184,128,30,123,248,23,183,167,28,3,128,15,155,255,218,242,151,67, - 111,166,8,153,211,49,183,252,94,248,227,31,215,183,247,244,116,94,59,119, - 238,3,229,37,37,229,1,175,23,30,85,133,13,32,26,139,161,61,20,194, - 241,182,54,236,61,116,104,219,142,247,222,251,138,110,24,39,248,189,182,101, - 163,251,68,15,186,15,133,112,101,96,1,110,252,218,215,251,53,121,127,94, - 227,65,99,87,245,140,111,26,170,231,193,168,199,179,106,71,77,205,159,84, - 198,222,82,128,86,0,80,128,232,142,154,154,53,81,85,189,196,195,216,97, - 159,101,175,153,215,216,216,39,192,231,177,199,30,139,46,91,182,236,87,234, - 244,114,143,162,40,255,108,155,6,3,0,35,130,191,68,123,140,39,79,55, - 157,254,213,99,143,61,214,175,239,133,68,34,145,12,20,165,173,173,77,209, - 163,81,77,215,117,197,178,44,69,81,20,166,105,26,11,6,2,102,69,69, - 5,203,116,30,0,230,124,249,162,21,12,24,247,231,231,223,123,216,212,205, - 65,111,153,35,110,141,35,110,157,51,154,41,9,4,206,248,100,77,205,63, - 157,119,214,89,75,202,75,74,106,25,99,193,83,93,93,205,135,91,90,234, - 255,114,244,232,83,162,91,82,5,240,244,214,159,179,158,72,15,110,190,230, - 159,251,189,42,141,232,172,221,58,107,214,55,77,143,231,42,75,85,38,51, - 40,37,0,160,128,133,61,54,59,170,89,214,107,139,247,239,255,215,76,105, - 94,187,226,218,224,121,103,85,127,38,170,155,199,0,192,31,208,166,126,240, - 81,227,75,207,61,252,92,31,223,169,92,108,89,34,145,228,10,237,223,255, - 253,223,161,40,10,64,163,248,88,239,28,176,76,231,1,96,225,57,127,187, - 51,22,50,26,247,233,239,12,201,126,112,219,215,237,220,186,225,217,245,123, - 87,94,119,219,156,196,231,57,27,158,93,191,120,229,117,183,141,250,253,224, - 122,116,189,229,252,5,11,30,153,80,82,178,175,216,239,175,85,20,37,80, - 108,24,205,227,195,225,250,151,55,108,232,99,9,2,192,130,139,22,224,236, - 179,166,13,116,201,181,20,182,148,151,255,14,64,37,128,233,0,248,138,51, - 81,0,141,0,178,138,122,124,238,225,231,34,87,173,190,124,239,161,151,155, - 117,0,152,254,233,202,150,223,63,252,135,190,3,131,18,137,68,146,67,148, - 13,27,54,148,27,166,125,182,101,218,227,88,220,32,176,1,214,229,213,148, - 195,154,166,245,0,40,49,76,251,92,151,243,93,43,87,174,100,171,31,185, - 103,205,184,202,113,95,111,59,216,126,223,189,119,223,59,168,253,224,54,60, - 187,254,126,196,215,166,172,90,121,221,109,10,57,126,8,64,12,192,19,43, - 175,187,109,200,247,131,187,106,225,103,214,252,254,213,151,214,56,157,11,6, - 131,147,35,145,72,107,186,99,223,254,214,138,201,143,60,250,112,202,53,78, - 199,56,247,125,127,195,154,187,238,89,153,146,223,242,101,203,74,102,84,84, - 220,53,109,210,164,91,20,96,188,197,24,152,109,39,3,76,58,67,161,221, - 77,45,45,183,223,183,126,125,202,126,112,175,236,222,206,14,156,58,128,191, - 57,243,34,212,93,124,217,128,246,131,187,190,174,46,0,224,14,0,231,1, - 216,5,224,185,45,245,245,167,18,231,42,0,252,61,128,185,0,62,4,176, - 118,75,125,189,107,4,228,85,171,47,63,219,95,58,238,231,177,238,232,17, - 0,240,149,250,207,142,118,119,253,227,239,215,254,65,238,7,39,145,72,242, - 134,114,239,186,7,47,57,213,201,190,28,51,217,44,0,62,0,49,143,106, - 54,76,44,197,211,37,37,193,198,104,204,170,110,237,96,95,137,153,172,150, - 158,159,80,202,158,46,41,41,106,184,117,229,74,99,245,195,247,172,153,80, - 53,97,181,109,89,136,245,24,239,157,106,60,181,242,193,31,172,239,247,126, - 112,27,158,93,255,62,226,29,44,103,223,202,235,110,155,179,225,217,245,139, - 1,188,72,142,63,176,242,186,219,82,198,226,94,125,121,19,131,105,3,14, - 11,13,167,192,0,51,102,161,225,80,199,218,111,221,254,253,53,252,240,207, - 54,253,23,251,234,210,47,244,17,135,79,126,98,238,205,197,197,37,103,108, - 223,177,109,77,186,99,235,127,248,232,154,176,30,105,185,231,7,119,61,145, - 238,152,91,126,183,126,251,219,83,47,173,169,217,230,247,122,103,198,76,19, - 150,109,199,87,55,225,150,114,194,130,182,109,27,135,91,90,110,255,222,15, - 127,152,220,15,238,149,221,219,217,187,39,223,133,109,89,24,167,141,199,188, - 218,43,48,171,230,188,172,247,131,75,136,219,253,136,255,127,151,81,241,186, - 190,174,110,18,128,25,91,234,235,223,188,190,174,174,12,113,17,44,5,176, - 106,75,125,125,79,159,246,90,254,201,41,211,47,59,231,251,21,179,166,124, - 170,225,183,251,223,4,128,218,255,61,235,147,39,246,159,220,118,232,141,15, - 239,121,115,227,155,114,63,56,137,68,146,23,84,195,52,198,235,134,89,27, - 179,189,151,197,108,239,220,168,165,93,166,71,205,243,13,195,24,199,24,243, - 24,134,49,78,55,204,243,197,243,166,97,142,99,182,157,12,37,100,140,129, - 217,128,183,200,123,254,153,23,85,190,116,239,79,126,248,234,202,187,86,100, - 61,110,230,32,110,201,32,134,132,107,242,91,228,220,29,27,158,93,159,58, - 95,206,180,193,98,54,172,168,149,246,101,70,77,132,194,6,162,177,212,209, - 39,211,234,187,198,228,220,75,231,222,252,237,255,187,106,147,105,245,6,253, - 93,50,231,19,55,138,199,128,120,88,203,185,103,158,183,233,187,119,173,185, - 145,30,171,58,115,230,166,123,238,254,126,159,93,4,104,126,203,151,45,43, - 185,180,166,102,155,79,211,102,70,98,49,112,129,99,182,221,187,19,130,221, - 187,138,202,212,137,19,31,252,222,157,119,126,131,166,199,219,255,116,236,52, - 182,190,243,91,60,253,226,230,254,8,199,109,136,79,11,57,0,224,7,194, - 185,90,0,55,93,95,87,55,125,75,125,125,39,128,123,0,116,2,184,91, - 76,164,246,218,218,9,83,170,38,62,85,49,115,242,223,105,126,173,156,79, - 112,208,252,90,121,197,204,201,127,55,165,106,226,83,181,215,214,202,253,224, - 36,18,73,94,80,193,224,1,99,62,48,59,0,102,7,0,22,96,96,62, - 6,230,97,140,41,128,235,121,231,37,61,18,219,209,4,203,2,11,166,93, - 50,117,207,247,55,173,125,250,91,43,151,167,221,15,46,225,150,60,47,221, - 53,9,183,164,251,126,112,137,189,208,76,139,101,241,178,97,247,177,244,82, - 63,207,189,116,238,205,183,222,116,207,166,158,72,40,185,253,204,140,170,25, - 159,94,121,211,119,54,133,34,33,48,59,85,32,25,3,84,197,131,105,83, - 102,108,186,243,182,187,63,205,147,84,21,21,211,166,212,56,136,92,111,126, - 51,42,42,238,242,123,189,51,117,195,232,221,11,206,109,63,56,196,119,19, - 168,44,47,127,96,249,178,101,103,56,92,148,205,154,205,73,174,175,171,59, - 27,192,44,244,10,214,244,235,235,234,168,200,153,0,138,0,92,13,0,9, - 235,238,167,0,42,175,175,171,91,204,47,170,189,182,182,228,220,75,166,109, - 174,186,162,234,111,180,128,119,10,232,162,212,182,5,45,224,157,82,117,69, - 213,223,156,123,201,180,205,181,215,214,202,253,224,36,18,73,206,201,201,126, - 112,96,44,177,88,49,80,58,165,228,31,207,185,236,236,198,123,30,250,222, - 189,203,150,47,27,212,126,112,43,175,187,237,63,0,60,144,248,248,119,27, - 158,93,255,130,243,149,204,253,197,220,38,17,244,86,103,238,165,115,111,190, - 245,159,239,217,20,137,70,97,217,38,20,85,197,244,170,25,159,254,151,85, - 15,253,218,182,21,191,97,198,92,39,34,120,53,191,127,250,89,179,126,125, - 215,237,223,249,52,47,137,71,245,96,218,148,106,71,75,110,249,178,101,37, - 211,38,77,186,133,91,109,217,238,40,224,213,180,242,242,226,98,199,253,224, - 156,210,120,233,245,109,110,9,127,29,241,49,55,128,47,213,5,204,184,190, - 174,238,171,194,117,151,95,95,87,183,12,0,182,212,215,31,2,176,23,192, - 60,0,56,103,254,57,129,115,102,159,181,121,198,130,233,213,190,34,239,52, - 183,181,186,124,69,222,105,51,22,76,175,62,103,246,89,155,207,153,127,142, - 220,15,78,34,145,228,148,220,46,182,156,16,58,40,138,191,252,156,178,85, - 231,204,157,214,120,247,189,171,110,190,101,217,45,201,253,224,18,193,35,85, - 137,143,251,16,23,176,15,16,119,131,245,33,49,246,54,228,251,193,105,158, - 248,206,65,73,113,211,163,48,45,3,154,71,195,57,83,171,106,111,95,186, - 122,179,205,212,132,184,165,23,33,175,230,243,207,152,122,254,230,162,64,73, - 45,99,113,75,207,163,106,9,145,251,65,138,200,77,40,41,153,175,0,227, - 45,7,23,169,8,151,96,69,81,224,81,20,20,7,2,253,218,15,238,177, - 231,31,103,245,123,118,139,133,159,142,120,64,137,14,190,31,92,92,232,22, - 93,95,87,247,73,33,251,121,215,215,213,113,215,232,59,0,38,161,22,190, - 153,87,213,60,93,189,96,198,185,129,82,127,117,166,213,150,3,165,254,234, - 234,5,51,206,157,121,85,205,211,168,133,220,15,78,34,145,228,140,188,236, - 7,199,23,224,85,53,207,228,201,31,155,180,169,108,218,248,149,119,172,185, - 99,213,3,107,30,120,14,68,220,248,180,0,12,195,126,112,62,95,0,159, - 252,68,220,45,201,197,141,49,6,85,241,224,111,231,45,190,86,85,60,136, - 25,177,140,187,9,40,138,2,198,0,205,227,155,236,247,6,175,181,108,51, - 113,140,193,163,106,56,167,226,99,155,190,255,189,251,146,43,153,20,251,253, - 181,54,99,241,104,198,126,236,7,167,40,10,124,154,214,175,253,224,162,86, - 20,187,155,234,241,163,23,126,196,62,89,51,23,179,207,191,72,1,224,231, - 209,146,232,157,22,0,196,247,134,187,9,125,167,6,92,120,125,93,221,5, - 0,186,0,140,91,124,227,226,69,231,94,114,214,52,255,120,255,133,96,89, - 120,3,24,20,255,120,255,133,51,174,172,138,44,46,90,188,232,119,183,253, - 174,63,85,144,72,36,146,172,201,219,126,112,96,241,49,36,219,180,161,168, - 234,140,137,211,39,60,123,247,189,171,10,102,63,56,48,134,155,191,118,219, - 166,144,30,129,105,25,41,126,76,219,182,227,199,250,177,46,53,99,241,123, - 236,148,177,58,6,203,54,81,57,233,236,77,122,44,4,0,80,20,37,96, - 219,153,183,225,233,147,126,252,213,175,253,224,120,251,159,14,117,225,127,246, - 252,14,219,94,255,189,152,233,68,225,179,129,222,7,16,78,49,128,11,1, - 140,3,0,91,143,125,71,81,149,57,204,100,106,54,117,96,140,129,153,76, - 85,84,101,142,173,199,190,211,159,242,75,36,18,73,127,200,207,126,112,136, - 239,9,103,27,22,12,221,68,184,61,180,247,196,123,39,23,222,123,247,186, - 140,251,193,109,120,118,253,222,196,235,253,13,207,174,191,127,195,179,235,247, - 2,24,242,253,224,244,88,4,143,61,117,223,210,104,44,2,198,236,164,27, - 146,11,21,75,238,5,151,105,63,56,214,43,110,204,234,61,6,134,152,25, - 67,87,168,29,77,31,237,95,202,29,142,186,97,52,51,100,63,16,202,115, - 183,109,27,49,195,232,215,126,112,188,253,199,123,198,225,243,151,95,131,79, - 93,113,149,2,32,154,152,231,6,0,199,201,229,221,0,94,0,240,115,33, - 153,215,183,212,215,63,131,184,27,179,39,220,25,190,231,240,238,35,199,35, - 93,186,197,172,244,1,46,140,1,204,98,136,116,233,214,225,221,71,142,135, - 59,195,247,244,167,252,18,137,68,210,31,114,187,31,28,4,97,235,136,188, - 119,234,192,169,235,86,47,91,123,241,195,247,63,188,35,113,217,175,18,127, - 103,39,162,41,157,40,67,60,202,242,14,16,113,91,121,221,109,67,182,31, - 156,109,219,248,211,222,183,158,248,241,211,143,46,13,71,194,81,46,37,166, - 101,224,149,215,183,62,215,210,126,162,53,46,122,233,165,136,129,65,143,69, - 208,217,125,170,181,179,251,212,115,241,253,227,24,98,49,29,157,93,173,209, - 19,109,71,151,222,251,192,15,158,8,248,139,0,0,167,195,225,122,198,88, - 234,74,49,25,96,140,193,176,44,68,98,177,126,237,7,87,172,148,224,127, - 93,252,191,112,211,23,111,82,206,155,81,195,51,108,68,124,18,55,208,27, - 100,194,0,236,216,82,95,191,21,192,36,114,108,23,128,45,137,207,23,0, - 56,246,218,131,245,175,247,180,247,44,251,112,247,145,143,244,46,221,98,150, - 235,110,57,96,150,13,189,75,183,62,220,125,228,163,158,246,158,101,175,61, - 88,47,247,131,147,72,36,57,35,55,251,193,33,225,14,51,236,84,97,187, - 101,205,5,235,127,248,80,202,182,57,43,175,187,237,115,232,21,185,190,243, - 219,220,201,201,126,112,127,218,251,199,39,30,122,226,251,75,34,122,56,26, - 95,197,223,194,241,19,71,27,214,111,252,193,130,182,182,150,214,116,110,56, - 198,108,232,209,48,218,187,90,90,63,106,61,180,192,180,204,6,85,241,32, - 26,211,209,209,221,26,61,217,126,108,201,250,13,15,60,1,196,131,78,0, - 224,193,13,27,26,58,67,161,172,247,131,3,226,115,232,244,88,12,221,145, - 136,243,126,112,14,199,206,40,155,140,91,190,188,84,153,125,225,199,69,37, - 253,47,0,115,19,86,28,15,50,105,0,240,91,225,186,125,91,234,235,31, - 219,82,95,111,94,95,87,55,29,192,28,0,127,4,96,238,220,182,235,165, - 158,246,200,210,15,223,56,114,92,239,214,109,190,250,10,45,15,179,109,232, - 221,186,253,225,27,71,142,247,180,71,150,238,220,182,235,37,196,167,32,72, - 36,18,73,78,80,17,239,212,98,12,208,1,232,96,76,135,176,31,156,203, - 249,190,155,170,37,38,37,115,97,211,187,244,163,237,77,237,75,157,132,77, - 224,89,242,126,203,134,103,215,187,238,7,151,224,3,113,37,19,62,198,199, - 39,60,187,189,236,44,230,137,53,29,110,122,121,253,166,239,47,57,221,221, - 222,197,3,100,218,218,219,26,238,127,108,205,130,182,142,22,199,165,183,192, - 226,150,91,123,87,75,107,107,199,241,5,143,110,124,180,65,81,20,196,12, - 29,237,93,45,93,45,29,199,151,60,252,232,134,228,234,46,84,101,154,90, - 90,110,23,199,225,156,246,131,3,0,211,182,17,142,197,112,58,28,222,246, - 208,35,143,164,44,188,76,219,95,196,65,216,0,0,91,234,235,27,16,95, - 126,235,91,136,91,112,251,1,60,144,152,212,205,105,7,240,12,0,92,95, - 87,87,2,224,255,0,248,48,97,225,1,123,96,236,220,182,243,165,72,151, - 190,226,240,27,71,79,232,93,186,205,200,60,67,102,51,232,93,186,125,248, - 141,163,39,34,93,250,138,157,219,118,190,132,61,144,91,230,72,36,146,156, - 162,2,236,180,170,152,13,48,187,223,96,102,215,110,152,221,111,120,84,251, - 61,69,81,186,24,99,22,192,186,84,197,124,207,229,60,217,161,51,30,192, - 96,114,97,59,212,190,244,196,123,39,107,30,88,251,96,198,181,41,133,249, - 109,0,240,104,98,121,46,14,13,116,248,96,229,117,183,245,217,15,206,140, - 89,8,69,76,132,34,6,122,116,247,87,72,55,161,199,172,248,50,88,4, - 209,50,107,58,220,244,242,15,31,250,238,220,246,211,109,173,92,25,218,218, - 218,26,238,223,184,102,65,123,231,169,86,81,45,76,219,66,71,119,107,107, - 107,199,241,5,27,31,123,180,1,0,44,219,66,123,119,107,235,201,246,99, - 115,31,33,226,38,230,119,223,250,245,127,56,220,210,114,187,105,197,203,149, - 220,7,14,189,194,198,24,131,97,154,8,233,58,78,135,66,7,219,186,187, - 191,130,212,4,147,237,239,179,125,152,62,185,95,222,219,181,0,74,16,95, - 100,249,133,196,148,1,206,177,196,177,35,9,203,237,78,196,131,91,254,45, - 37,133,61,48,94,121,102,199,111,195,157,250,138,15,223,60,122,34,218,19, - 99,188,2,209,158,24,251,240,205,163,39,194,157,250,138,87,158,217,241,91, - 41,110,18,137,36,31,104,154,166,28,156,80,130,159,25,166,53,14,12,42, - 20,216,30,85,237,242,106,234,97,0,186,230,81,14,79,40,193,211,78,231, - 25,99,38,0,216,54,131,25,53,17,13,197,186,186,62,234,90,211,115,42, - 244,196,166,199,55,245,107,223,175,149,215,221,118,231,134,103,215,127,4,224, - 102,0,62,190,115,64,98,45,74,134,120,64,201,115,125,44,183,4,13,135, - 58,214,234,49,27,44,211,90,148,136,91,113,97,221,218,65,143,69,13,189, - 207,117,109,237,109,13,15,111,90,183,224,156,115,170,22,36,143,181,245,61, - 6,0,17,61,212,210,29,238,72,138,155,219,49,183,252,190,247,195,31,174, - 255,222,157,119,118,158,89,94,254,128,87,211,202,85,69,137,79,47,64,124, - 124,208,72,184,37,79,135,195,219,218,186,187,191,242,216,227,143,39,247,131, - 99,12,48,163,38,16,83,80,119,222,229,152,63,55,251,205,78,129,248,234, - 36,215,215,213,173,66,124,53,147,111,93,95,87,183,23,241,121,110,237,137, - 75,98,137,73,222,115,16,183,246,30,222,82,95,255,81,159,132,26,17,125, - 245,23,175,254,234,51,55,92,229,249,176,254,200,58,6,156,0,128,15,235, - 143,116,25,61,198,170,87,127,241,234,175,208,8,185,31,156,68,34,201,11, - 202,131,15,62,168,48,198,52,219,182,21,198,152,2,69,97,138,162,48,85, - 81,204,59,238,184,131,101,58,15,0,119,223,187,106,5,128,113,93,205,221, - 15,63,254,216,227,131,222,50,71,247,47,144,78,0,0,32,0,73,68,65, - 84,220,26,135,110,157,51,218,89,190,108,217,25,229,197,197,255,84,28,8, - 44,241,105,90,45,3,130,49,195,104,142,196,98,245,221,145,200,83,162,91, - 82,5,240,218,155,187,88,52,166,243,168,200,126,33,58,51,175,173,171,251, - 18,128,133,0,38,179,248,162,202,0,99,33,69,81,142,2,248,195,115,241, - 8,202,180,76,157,58,53,56,227,75,231,126,166,235,104,231,49,0,24,55, - 173,108,234,193,103,14,191,116,236,216,49,185,31,156,68,34,201,27,202,159, - 254,244,167,140,29,12,119,167,41,137,72,191,120,100,96,252,175,166,105,80, - 20,5,170,170,38,255,138,238,62,198,24,108,219,134,101,89,80,20,5,150, - 101,193,38,11,9,219,194,186,142,74,63,34,10,157,224,171,130,120,60,158, - 148,227,60,47,250,215,178,172,148,242,136,101,225,229,81,85,21,30,143,39, - 249,158,191,104,221,25,99,201,182,17,243,29,76,189,10,185,253,47,186,232, - 34,40,9,107,19,136,91,155,182,109,39,219,131,166,71,203,153,45,188,172, - 235,214,173,195,182,109,219,80,84,84,4,203,178,146,255,219,116,239,121,221, - 77,51,30,203,226,241,120,192,24,131,162,40,240,122,189,41,247,120,60,30, - 148,148,148,224,242,203,47,199,210,165,75,147,117,202,117,189,20,69,193,95, - 254,252,78,214,247,73,114,143,162,40,248,248,236,139,211,94,243,246,190,61, - 184,120,206,37,10,16,223,63,204,237,58,53,49,220,206,228,131,220,176,144, - 245,74,38,180,99,247,120,60,208,52,45,249,151,118,254,148,100,208,7,233, - 96,121,135,195,197,133,119,28,3,153,236,44,194,243,225,101,165,208,124,76, - 211,76,190,98,177,24,44,203,130,105,154,73,177,227,245,117,171,183,215,235, - 77,105,3,143,199,147,188,134,231,79,219,130,119,138,188,115,29,8,133,218, - 254,209,104,20,239,191,255,254,128,234,212,95,22,46,92,136,207,125,238,115, - 57,207,135,49,134,88,44,134,15,62,248,32,229,97,130,34,62,60,1,169, - 223,25,254,255,226,15,15,180,157,249,103,198,24,142,28,57,130,179,167,157, - 149,203,234,72,250,73,54,226,246,214,91,111,1,136,139,91,186,223,141,162, - 40,76,205,126,154,171,100,136,201,74,224,120,7,234,241,120,224,245,122,225, - 245,122,83,58,122,241,233,149,90,5,188,83,229,29,191,248,151,91,21,252, - 61,253,178,56,137,133,27,188,195,16,203,34,10,91,44,22,131,97,24,136, - 70,163,136,70,163,48,12,3,134,97,36,59,123,192,89,220,104,27,104,154, - 6,77,211,224,243,249,250,180,5,181,162,104,217,249,223,129,88,115,133,220, - 254,220,18,26,109,120,189,222,100,187,58,9,23,71,85,85,248,124,190,228, - 67,12,111,51,142,199,227,129,109,219,201,191,212,114,179,109,27,111,188,241, - 6,206,158,118,77,222,235,39,201,142,183,247,237,73,249,60,249,140,138,62, - 226,182,115,231,7,174,247,63,244,208,175,113,235,173,75,152,84,184,225,193, - 85,224,120,7,205,221,96,188,67,231,47,167,14,128,254,120,121,26,98,122, - 98,103,201,197,128,119,26,162,53,65,211,112,235,104,185,149,34,62,85,139, - 194,22,139,197,160,235,58,34,145,8,34,145,72,138,176,241,251,121,157,220, - 132,131,139,0,127,89,150,5,175,215,11,219,182,147,194,195,235,69,235,157, - 169,14,35,181,253,157,92,178,185,34,155,5,169,135,2,234,158,164,117,230, - 255,11,250,208,195,63,83,247,37,47,39,127,200,208,52,13,182,109,39,239, - 225,158,2,69,81,208,210,210,146,151,58,141,85,248,239,222,182,25,162,209, - 40,98,70,12,182,109,199,223,71,163,168,172,60,19,227,199,143,115,252,30, - 139,226,6,0,173,45,39,250,28,147,20,46,125,4,142,90,24,220,13,230, - 243,249,224,247,251,225,247,251,147,157,43,255,241,83,87,23,29,207,162,150, - 3,208,251,99,167,226,224,148,47,135,166,207,59,103,55,23,31,239,60,196, - 99,220,13,201,173,181,80,40,132,112,56,140,72,36,146,34,6,162,101,36, - 118,98,188,60,98,25,169,216,209,49,45,159,207,151,124,79,173,185,108,24, - 105,237,239,52,102,153,43,156,220,130,185,64,116,39,243,255,5,29,239,164, - 238,97,32,85,232,53,77,75,113,5,243,135,39,241,123,234,244,189,149,100, - 79,38,241,162,22,51,31,127,21,223,7,2,126,4,131,65,68,163,131,15, - 238,157,63,191,119,75,203,116,86,157,36,127,164,8,156,216,185,106,154,6, - 191,223,143,64,32,128,64,32,0,159,207,151,180,108,120,199,202,69,196,48, - 140,148,113,44,58,222,224,4,207,139,90,12,226,61,180,35,118,19,9,234, - 98,227,80,113,211,117,29,161,80,8,61,61,61,8,135,195,208,117,61,153, - 135,215,235,77,10,7,21,15,238,14,228,29,42,45,131,88,86,250,228,110, - 154,38,84,85,69,44,22,75,166,67,235,34,90,131,78,99,102,35,173,253, - 7,27,16,84,168,80,113,227,15,62,92,220,156,172,103,241,30,32,46,200, - 252,127,66,45,107,26,8,84,92,92,156,207,106,141,24,226,30,150,120,112, - 80,56,28,134,97,26,201,247,166,97,164,60,216,185,137,23,255,13,251,18, - 191,33,254,155,10,248,3,137,115,42,170,171,171,161,170,42,142,30,61,58, - 232,50,111,216,240,155,228,251,139,47,254,216,160,211,147,12,158,62,22,28, - 237,92,121,199,26,12,6,225,247,251,147,63,106,222,177,198,98,177,228,56, - 22,15,214,200,212,185,114,139,137,191,23,197,131,90,66,64,234,147,177,219, - 248,149,248,84,204,59,252,72,36,130,80,40,132,238,238,110,244,244,244,192, - 72,252,48,120,221,138,138,138,80,84,84,148,20,56,110,49,137,174,73,234, - 190,163,229,228,245,165,110,78,26,193,41,90,111,162,85,224,36,26,131,109, - 127,49,152,129,194,243,27,234,246,207,23,249,116,81,242,191,212,82,163,227, - 109,110,129,68,226,49,254,157,138,197,98,41,214,190,147,69,55,22,224,30, - 21,203,138,127,63,221,196,203,48,226,199,188,94,175,235,251,76,226,21,8, - 4,50,90,253,67,217,254,82,212,10,143,20,129,163,238,23,222,177,210,206, - 149,91,41,209,104,20,186,174,67,215,117,196,98,177,164,160,136,225,231,98, - 186,220,85,195,59,42,42,36,244,199,79,131,61,232,123,167,78,132,126,129, - 185,232,112,203,173,167,167,7,93,93,93,232,233,233,129,105,198,247,101,243, - 251,253,40,46,46,70,73,73,9,138,139,139,83,44,55,94,119,158,31,69, - 140,126,19,163,16,169,59,10,72,181,44,69,145,16,159,244,7,219,254,188, - 206,78,109,79,219,142,119,168,212,5,55,216,246,23,243,202,37,249,116,81, - 2,72,113,83,115,235,25,64,31,129,19,197,78,180,122,185,21,200,59,103, - 62,102,71,189,4,163,1,42,94,150,101,65,143,234,41,158,20,43,241,29, - 181,44,43,249,61,119,19,47,159,207,7,205,235,69,81,81,124,81,114,175, - 70,222,123,53,4,131,253,218,41,42,47,72,23,101,225,145,34,112,252,135, - 236,247,199,253,210,220,186,225,63,72,211,52,147,1,26,186,174,39,173,7, - 218,185,58,69,222,137,174,46,158,151,211,19,44,191,143,11,18,239,244,233, - 88,152,27,182,109,39,45,183,238,238,110,156,62,125,26,161,80,8,134,97, - 64,85,85,4,131,65,148,150,150,98,220,184,113,8,6,131,73,183,159,211, - 88,138,216,113,139,214,24,125,10,23,163,228,104,93,121,155,100,83,254,254, - 182,63,181,154,197,7,138,116,1,33,116,60,78,28,91,28,76,251,143,54, - 248,248,39,127,248,1,210,139,155,248,157,167,15,19,188,67,231,255,43,126, - 109,73,73,73,158,107,53,48,178,25,239,162,226,197,61,13,226,123,110,17, - 251,18,94,19,96,100,136,87,54,72,23,101,225,161,137,227,62,94,175,55, - 101,204,135,63,197,199,98,177,100,231,26,14,135,147,226,70,173,54,142,211, - 83,61,143,46,164,157,42,205,219,73,20,121,71,76,195,228,121,103,33,194, - 173,24,30,76,210,221,221,141,80,40,4,211,52,225,241,120,80,84,84,132, - 113,227,198,97,220,184,113,41,150,155,83,231,237,22,76,65,173,24,26,125, - 72,199,92,184,208,185,33,10,202,64,218,63,18,137,36,197,205,77,216,220, - 220,184,162,248,210,50,13,164,253,243,41,120,249,114,81,82,111,3,127,248, - 17,173,113,113,66,125,186,177,56,222,190,52,154,146,70,85,14,55,67,17, - 172,193,93,242,84,188,84,85,69,192,31,72,60,32,40,201,8,224,209,130, - 10,40,138,162,48,198,226,83,5,68,81,219,179,231,175,184,245,214,37,80, - 1,133,13,124,215,22,201,32,208,128,212,206,149,6,93,240,31,31,239,92, - 67,161,16,66,161,80,82,220,104,208,5,39,157,229,64,207,243,14,213,201, - 226,227,29,137,97,24,41,115,134,120,167,35,118,198,252,7,200,167,1,132, - 195,225,164,184,41,138,130,162,162,34,140,31,63,30,227,199,143,71,113,113, - 49,130,193,96,159,142,139,35,118,250,20,39,225,166,226,204,59,127,177,77, - 232,117,78,65,27,253,105,255,112,56,156,124,176,16,173,8,167,250,240,246, - 167,121,83,87,38,21,58,234,142,204,182,253,243,41,112,124,69,146,92,195, - 45,45,58,137,95,108,95,167,239,44,133,62,52,240,191,60,64,133,187,179, - 221,44,237,161,196,45,88,163,191,226,53,20,227,93,163,17,46,114,93,93, - 93,216,187,183,119,191,96,42,110,195,88,188,49,79,82,224,196,112,116,254, - 132,74,131,53,66,161,16,116,93,79,118,124,64,106,167,232,6,117,239,57, - 5,42,56,89,33,180,83,166,227,66,124,30,17,183,8,121,25,184,245,198, - 197,141,187,37,3,129,0,202,202,202,48,110,220,56,148,148,148,164,136,27, - 79,207,169,12,20,218,201,243,243,78,193,35,162,117,39,90,73,180,126,226, - 185,108,218,159,138,27,77,139,223,239,214,249,82,107,67,180,30,69,177,227, - 233,102,219,254,249,20,184,142,142,142,188,229,197,219,148,90,232,78,117,21, - 173,52,250,157,112,130,91,195,188,189,7,106,209,12,54,88,131,138,154,20, - 175,193,161,2,202,184,113,227,146,34,39,197,173,112,208,248,15,153,207,3, - 163,43,114,136,162,193,39,71,59,117,220,28,241,184,56,225,217,173,179,112, - 178,224,248,32,52,125,114,87,148,248,128,61,181,0,249,216,27,47,107,52, - 26,5,99,12,126,191,31,165,165,165,40,41,41,73,138,27,157,67,70,203, - 43,150,131,142,83,209,115,78,199,249,103,209,229,74,69,130,230,73,93,152, - 217,182,127,56,28,78,186,37,169,69,193,95,78,22,6,45,11,13,83,167, - 162,70,235,68,207,101,219,254,249,20,184,230,230,230,188,228,195,235,69,31, - 162,68,87,162,232,69,224,237,47,122,0,68,139,93,252,125,56,9,71,190, - 130,53,164,120,13,29,84,228,22,44,152,41,197,173,64,208,168,123,140,14, - 168,139,226,22,141,70,251,68,10,2,206,161,227,78,22,80,186,177,6,39, - 177,163,34,199,127,220,252,28,237,216,169,245,198,131,47,44,203,130,207,231, - 67,81,81,81,82,224,248,52,0,154,190,147,21,230,230,114,21,235,45,186, - 27,157,234,36,190,196,233,12,60,207,76,237,207,45,55,222,142,212,186,160, - 159,197,124,104,61,169,213,64,45,51,177,46,244,255,154,77,251,231,83,224, - 34,145,62,155,17,228,4,234,82,228,164,171,167,248,80,225,246,125,160,215, - 210,188,156,48,205,212,8,93,110,181,91,137,247,163,57,88,99,164,194,69, - 78,138,91,225,160,241,142,138,187,38,104,52,32,15,71,167,115,172,220,126, - 188,78,98,1,196,59,114,190,178,131,147,245,70,127,240,92,176,104,39,202, - 59,110,198,122,87,133,167,157,43,157,247,198,199,6,21,37,62,160,93,82, - 82,130,162,162,162,228,83,170,216,33,139,229,21,93,141,110,79,223,20,49, - 104,131,151,73,12,76,112,178,94,105,160,65,186,246,231,86,51,191,151,215, - 133,183,13,93,3,211,105,28,142,183,43,45,167,24,52,67,39,172,211,99, - 153,218,63,159,2,151,207,105,2,233,30,200,210,141,65,58,125,167,196,243, - 244,30,167,181,60,85,85,69,113,113,239,252,76,203,178,146,65,81,166,105, - 38,31,132,248,220,58,0,73,175,5,255,222,164,11,116,146,12,13,78,59, - 4,40,0,100,64,73,225,160,241,206,149,174,188,193,163,246,248,92,43,30, - 161,152,233,201,212,9,209,154,16,239,21,199,48,104,199,66,69,142,255,120, - 185,96,82,49,160,203,113,49,198,224,77,184,100,248,139,63,237,138,121,165, - 123,146,22,173,51,39,171,53,221,117,162,181,71,231,80,81,55,96,166,246, - 231,117,114,18,126,250,55,147,155,82,28,23,164,110,75,58,158,74,23,7, - 166,46,48,183,246,119,179,64,70,50,162,181,158,233,90,209,245,232,246,48, - 228,116,111,89,89,89,159,227,52,106,85,180,150,233,247,132,127,167,249,113, - 209,29,237,241,120,146,98,167,40,74,138,240,241,229,234,36,146,209,140,70, - 151,165,162,22,17,23,12,62,145,59,211,19,161,248,3,231,80,139,70,196, - 205,109,67,143,209,31,56,23,217,88,44,150,236,100,233,248,27,143,44,228, - 238,73,62,230,198,59,10,177,172,78,101,17,221,120,180,14,110,34,232,246, - 89,140,16,229,239,105,36,98,166,246,167,109,79,219,66,20,55,241,69,243, - 163,162,75,235,65,197,77,20,123,167,52,157,218,63,159,228,171,67,230,237, - 147,206,181,46,182,151,211,247,215,173,188,244,123,194,93,138,78,215,240,240, - 125,55,184,176,241,64,21,254,160,196,223,3,189,83,87,232,255,75,211,52, - 148,150,150,38,223,187,137,32,223,121,99,52,62,196,72,198,6,26,128,148, - 168,66,222,193,82,97,227,194,65,59,127,17,183,31,60,117,115,241,235,68, - 11,195,13,222,137,211,21,219,249,120,18,47,27,23,56,62,39,140,175,2, - 18,8,4,28,197,45,221,211,181,24,32,192,223,83,113,23,93,151,244,175, - 152,22,117,7,138,171,86,80,119,169,91,251,211,197,156,197,112,245,116,66, - 231,52,126,36,10,183,216,14,116,149,19,254,151,118,142,110,237,159,79,43, - 32,159,46,74,113,194,190,155,216,137,46,106,49,42,215,233,33,72,12,234, - 25,76,57,51,137,32,16,111,55,62,30,167,170,42,252,126,127,178,172,116, - 79,67,81,4,121,27,240,200,89,254,191,166,129,71,82,4,37,133,140,70, - 231,131,1,189,171,129,240,151,24,53,40,138,146,155,224,113,156,58,37,167, - 113,48,183,243,98,199,205,59,127,190,98,63,221,172,148,49,150,12,181,231, - 147,74,157,162,223,178,45,59,189,70,236,136,68,161,115,250,129,211,200,69, - 106,145,210,116,211,181,63,157,47,37,182,69,54,34,39,142,39,186,185,36, - 197,186,138,2,151,174,253,71,227,88,15,125,56,17,143,137,86,49,181,252, - 1,244,121,24,164,231,248,56,102,166,53,67,135,26,203,178,208,211,211,147, - 246,26,55,17,228,30,17,250,224,196,163,104,169,219,155,127,175,229,184,160, - 164,144,72,206,131,3,82,215,114,164,227,110,78,99,78,78,227,88,20,42, - 12,233,198,225,68,156,92,61,84,0,120,7,66,131,94,120,71,65,199,179, - 168,112,136,34,39,90,49,226,216,156,120,173,24,160,225,212,241,185,181,1, - 133,46,192,44,186,18,129,190,237,79,173,35,167,64,21,238,226,116,18,57, - 177,173,221,132,154,186,81,121,91,209,73,228,98,180,164,216,254,249,36,223, - 99,70,212,114,163,150,120,182,247,57,253,110,156,246,19,44,4,178,17,65, - 46,124,220,35,195,163,55,185,8,2,153,199,5,21,69,145,34,40,201,27, - 26,125,2,229,29,172,40,110,244,154,76,214,151,120,92,20,55,209,61,153, - 46,61,122,13,141,230,163,110,73,113,18,178,40,112,188,220,52,77,55,23, - 163,88,79,39,43,45,27,203,141,34,62,165,243,60,196,168,78,177,253,221, - 196,77,180,220,210,185,44,105,125,221,58,14,250,36,78,219,139,138,112,186, - 246,207,244,192,50,148,228,203,69,73,197,92,124,56,114,178,122,249,95,250, - 191,116,250,94,196,151,195,234,181,220,184,139,113,164,96,219,118,202,84,141, - 238,238,238,62,215,100,26,23,228,94,139,108,69,80,28,23,148,193,49,146, - 254,160,137,157,58,237,96,157,44,52,209,37,227,4,191,79,92,153,223,109, - 252,77,124,47,10,140,216,201,208,121,65,20,46,112,84,220,104,121,156,92, - 75,98,185,105,25,168,107,143,94,147,201,106,19,45,67,154,174,56,54,150, - 169,253,69,43,207,201,5,73,69,78,156,66,0,164,186,74,157,202,74,221, - 146,52,31,250,224,224,214,254,163,117,236,133,187,19,121,221,105,196,168,105, - 154,174,1,54,78,86,27,79,75,252,78,229,203,69,153,79,184,104,15,38, - 56,134,138,32,31,27,228,231,100,112,140,164,63,104,244,7,70,119,131,230, - 136,214,143,211,123,167,107,68,203,205,201,37,39,10,159,152,6,127,170,163, - 29,47,221,169,154,175,53,73,199,142,232,158,110,52,109,241,73,219,173,94, - 162,85,39,186,65,197,250,242,107,120,58,212,234,21,133,144,186,91,185,120, - 165,107,127,122,29,109,83,90,47,39,161,163,174,74,177,29,105,249,157,238, - 165,229,162,101,117,107,255,124,146,239,40,74,42,112,226,67,0,183,94,69, - 171,87,124,168,225,237,36,90,110,252,197,87,29,25,75,12,68,4,115,21, - 28,35,25,221,104,0,82,58,85,209,90,113,115,65,137,99,87,20,209,194, - 160,157,173,232,102,162,29,130,24,128,33,90,20,110,79,100,180,163,161,110, - 63,81,200,104,7,47,138,139,152,182,211,211,182,155,107,147,227,180,61,136, - 155,11,139,150,47,93,251,59,69,238,185,89,196,244,56,23,58,218,241,166, - 123,209,180,197,180,210,181,127,62,93,148,249,90,153,131,6,79,208,249,159, - 188,99,21,221,212,20,241,255,76,197,141,138,30,127,69,163,209,188,212,105, - 164,145,141,8,2,131,15,142,41,41,41,70,56,28,206,71,149,36,195,64, - 210,207,146,205,120,18,253,98,112,247,1,221,216,147,195,63,211,113,38,209, - 101,41,90,82,162,184,209,180,0,231,221,180,157,202,151,45,212,50,116,19, - 55,106,173,80,87,165,248,20,207,143,113,196,109,108,196,54,73,151,103,58, - 210,185,118,157,112,235,136,197,116,104,90,78,229,6,220,219,63,159,110,160, - 25,51,102,228,37,31,26,101,10,164,62,144,88,150,149,178,63,156,147,139, - 145,62,180,136,22,27,109,63,167,239,137,164,127,12,54,56,38,190,118,237, - 200,25,7,149,244,15,13,72,157,155,227,54,46,192,159,130,196,137,193,110, - 22,4,125,209,117,18,105,122,244,175,120,92,68,116,19,210,251,179,89,245, - 157,167,225,116,78,180,242,104,103,78,255,242,246,113,179,172,232,121,17,209, - 13,232,84,55,126,191,91,251,139,101,119,235,28,249,184,68,58,43,131,166, - 235,132,91,25,197,246,207,39,11,23,46,204,75,62,134,97,36,159,246,121, - 125,13,195,72,217,66,70,12,242,225,80,107,205,73,220,68,143,128,20,184, - 220,147,77,112,140,19,147,207,168,64,107,203,137,148,99,111,189,245,214,144, - 150,77,146,91,52,254,36,233,212,241,210,177,24,42,110,226,74,28,64,95, - 193,114,155,147,149,9,39,17,18,159,134,233,248,22,29,115,114,18,0,209, - 69,40,118,42,180,3,226,159,121,158,78,86,28,45,19,189,158,166,39,190, - 231,101,164,109,197,95,60,96,195,169,253,69,151,35,141,50,115,106,55,94, - 78,62,230,70,173,50,177,179,117,19,63,154,183,232,66,117,106,255,117,235, - 214,57,222,159,11,174,190,250,234,148,255,121,182,136,255,63,209,69,76,93, - 232,180,125,118,237,218,133,119,223,125,23,64,111,32,4,95,33,135,239,182, - 206,55,165,5,82,93,143,124,236,141,135,193,243,61,253,248,218,174,124,149, - 160,206,206,78,44,92,112,229,80,54,147,100,8,120,123,223,30,41,102,163, - 0,77,236,208,157,66,218,169,75,81,20,50,183,241,27,241,233,150,118,152, - 244,30,183,78,93,124,234,165,243,195,196,149,243,185,208,210,206,215,201,146, - 114,18,31,55,87,161,40,10,153,44,23,154,183,40,76,252,47,29,23,163, - 121,57,181,191,88,46,30,158,46,90,102,162,176,137,229,161,159,69,235,208, - 169,28,78,215,167,107,255,181,107,215,58,182,71,46,200,103,94,249,100,205, - 234,239,13,119,17,36,132,108,196,237,19,159,248,68,158,74,35,25,12,26, - 99,44,37,26,142,62,221,186,89,11,78,29,57,189,71,12,40,113,27,95, - 163,247,138,79,213,162,245,64,87,246,224,105,211,193,99,30,61,197,173,23, - 218,241,211,232,55,39,145,163,239,157,196,205,237,30,154,158,155,240,113,241, - 165,235,77,138,150,148,91,251,59,33,214,139,90,117,84,132,157,4,47,157, - 139,204,205,170,227,22,190,91,251,75,6,207,197,151,92,58,220,69,144,72, - 70,37,154,56,89,154,118,152,212,45,41,138,147,211,152,27,144,58,61,128, - 255,229,110,32,122,156,167,233,118,140,151,133,187,122,120,88,175,211,248,7, - 15,19,118,26,235,160,174,63,113,108,138,230,41,90,67,226,57,183,251,196, - 207,162,245,70,67,153,185,43,149,90,151,153,218,223,201,90,115,122,81,113, - 163,129,63,110,22,159,155,187,146,10,31,157,244,239,214,254,18,137,68,82, - 168,104,188,83,227,115,202,128,190,225,233,78,174,74,122,206,205,146,115,114, - 99,58,89,126,52,109,26,169,73,197,141,239,22,0,32,69,48,20,165,119, - 195,80,58,254,36,70,176,137,150,162,155,123,46,157,219,206,13,241,126,81, - 228,156,86,86,225,101,76,215,254,188,14,84,164,168,104,211,250,82,232,184, - 167,88,78,167,177,56,250,162,101,160,226,230,214,254,18,137,68,82,168,104, - 188,35,3,82,231,58,137,86,132,83,103,159,73,248,68,203,39,157,219,141, - 222,67,221,104,134,97,36,247,69,51,77,51,101,98,39,29,215,210,52,45, - 233,234,19,231,149,137,17,143,78,174,56,254,89,116,65,138,245,77,215,14, - 226,49,143,199,147,92,244,153,135,150,211,48,113,106,41,1,125,219,159,254, - 117,114,75,58,185,39,249,181,110,2,39,90,125,180,173,121,123,209,48,246, - 76,237,47,145,72,36,133,138,198,59,52,218,25,210,80,120,62,70,228,102, - 157,113,156,130,73,156,220,146,110,98,192,161,174,59,30,121,22,14,135,147, - 75,239,104,154,6,159,207,151,226,242,227,22,28,221,85,128,90,69,98,132, - 162,155,171,81,180,132,210,237,231,229,84,15,42,44,188,156,124,87,102,58, - 111,138,139,7,141,184,115,107,127,126,61,223,136,84,28,195,163,145,173,226, - 20,6,113,185,50,49,125,209,162,163,99,115,60,2,48,83,251,75,36,18, - 73,161,162,137,29,29,224,110,201,184,185,236,156,58,123,49,176,195,41,141, - 116,22,6,223,196,148,135,86,27,134,1,85,85,83,182,195,17,199,225,124, - 62,31,98,177,88,114,28,202,201,69,201,243,117,114,77,138,227,85,124,34, - 59,189,198,173,190,252,56,183,42,249,50,67,126,191,63,101,115,86,46,188, - 124,133,139,76,237,47,30,115,154,42,64,199,221,232,114,91,78,2,45,10, - 163,56,111,139,139,47,223,112,53,83,251,75,36,18,73,161,162,1,189,129, - 14,116,105,39,106,205,80,177,18,173,13,183,241,56,10,21,55,183,241,56, - 254,153,138,91,56,28,70,119,119,55,34,145,8,108,219,118,20,55,32,110, - 189,240,137,185,180,236,116,142,31,181,38,69,1,113,18,19,241,28,189,215, - 13,81,108,253,126,63,2,129,64,114,225,88,46,110,116,39,132,108,218,159, - 150,133,186,41,105,89,220,150,40,115,178,142,157,198,226,168,53,201,199,220, - 178,109,127,137,68,34,41,68,146,43,153,136,127,157,58,126,32,243,2,201, - 252,61,117,149,137,56,141,217,81,235,70,215,117,132,195,97,116,117,117,37, - 221,99,154,166,33,16,8,32,24,12,194,239,247,39,119,235,230,229,224,99, - 67,92,32,105,154,78,1,20,98,189,156,132,75,20,25,90,118,122,31,29, - 175,164,59,138,23,21,21,165,76,97,160,209,136,84,224,178,105,127,254,94, - 156,112,47,206,91,116,114,13,139,150,41,173,155,56,207,141,186,133,179,105, - 127,137,68,34,41,84,82,214,162,164,243,200,168,133,224,100,165,165,123,122, - 231,238,61,81,52,156,220,148,84,128,184,184,133,66,33,116,117,117,161,167, - 167,7,209,104,20,138,162,36,59,215,64,32,224,184,91,128,162,40,41,86, - 28,29,203,163,209,127,226,252,47,177,60,60,77,42,20,162,155,146,90,129, - 116,206,31,21,1,190,210,5,47,19,15,216,136,197,98,142,219,253,100,211, - 254,116,42,0,119,75,138,235,131,114,1,20,197,79,204,75,108,31,110,185, - 69,34,145,126,181,191,68,34,145,20,42,201,221,4,156,2,49,196,78,150, - 10,27,181,40,56,252,156,83,52,38,77,151,118,216,60,31,30,212,16,10, - 133,208,221,221,141,174,174,46,232,186,14,198,88,31,209,160,83,4,120,30, - 188,99,231,238,64,186,144,173,104,129,138,97,247,162,133,67,175,119,18,55, - 49,45,62,230,230,247,251,147,229,12,6,131,201,45,60,120,192,12,95,158, - 73,220,13,187,63,237,79,203,201,45,87,209,253,170,170,106,159,192,32,39, - 43,145,70,76,198,98,177,228,195,69,127,219,95,34,145,72,10,17,13,72, - 117,25,138,225,230,116,111,37,222,153,211,191,110,184,185,40,69,235,141,7, - 92,240,49,159,211,167,79,163,187,187,27,161,80,40,185,114,123,81,81,17, - 138,139,139,17,8,4,146,46,63,39,247,168,88,54,42,94,116,130,50,45, - 139,232,114,20,197,143,66,243,164,83,20,120,64,9,119,75,114,55,30,23, - 90,62,166,200,197,77,220,71,173,191,237,207,45,100,209,34,165,243,236,120, - 25,197,182,167,2,71,173,202,193,180,191,68,34,145,20,34,142,219,18,211, - 113,37,160,55,180,157,142,51,57,117,186,180,147,22,87,225,0,144,34,54, - 60,77,211,52,147,99,62,221,221,221,232,233,233,73,6,53,120,189,94,148, - 150,150,162,164,164,4,69,69,69,201,128,13,39,225,164,34,193,173,11,113, - 87,114,49,40,131,206,39,19,207,137,238,65,26,104,3,32,101,133,18,110, - 185,241,177,55,190,59,49,143,70,164,139,236,102,179,211,112,182,237,207,219, - 153,127,230,46,75,26,136,226,148,54,109,123,195,48,134,164,253,37,18,137, - 164,208,72,17,56,26,130,238,212,201,242,243,212,122,113,219,53,192,45,64, - 131,187,231,104,231,26,10,133,16,137,68,146,99,62,0,224,245,122,81,82, - 82,146,236,96,131,193,96,202,62,92,220,117,200,221,128,60,253,116,214,11, - 255,203,239,161,115,211,196,177,57,238,238,20,203,79,235,77,231,185,241,247, - 84,220,184,219,143,79,148,206,36,110,131,105,127,186,163,130,155,229,172,40, - 189,187,23,12,85,251,75,36,18,73,161,162,137,33,252,98,7,76,173,5, - 186,66,8,93,103,81,20,56,183,39,124,234,146,164,219,135,196,55,29,140, - 187,240,184,112,20,21,21,161,164,164,4,37,37,37,41,161,246,78,17,145, - 116,172,201,169,236,28,90,54,113,154,1,79,75,180,230,196,123,233,218,151, - 188,92,124,226,51,143,226,228,174,63,94,63,93,215,83,230,189,209,52,57, - 35,181,253,37,18,137,164,80,73,154,40,212,106,16,67,210,105,39,75,45, - 48,126,31,239,92,197,29,188,57,212,37,70,215,54,228,127,121,231,79,163, - 16,139,139,139,81,92,92,156,180,138,184,120,240,114,137,46,80,167,128,10, - 167,192,24,122,76,180,58,197,32,15,154,38,175,27,119,75,242,48,121,26, - 112,65,45,35,238,154,164,81,147,110,226,54,210,219,95,34,145,72,10,145, - 20,31,156,104,81,240,99,180,99,103,44,190,121,35,128,228,246,41,226,120, - 149,24,181,39,142,249,240,191,212,237,198,39,69,243,104,189,64,32,144,50, - 223,74,44,15,205,207,45,204,95,44,147,147,43,85,140,68,20,39,76,139, - 2,66,151,7,163,227,143,116,30,25,125,57,137,155,216,198,35,189,253,37, - 18,137,164,16,113,12,50,113,178,120,248,113,222,217,242,201,212,116,76,135, - 119,182,226,242,79,92,0,196,213,51,248,98,196,124,28,139,119,176,124,129, - 98,113,131,79,90,54,177,188,78,33,252,78,238,52,190,174,35,189,142,10, - 29,144,186,27,57,157,231,38,90,71,212,162,50,12,35,105,185,113,17,17, - 5,72,44,155,27,35,173,253,37,18,137,164,16,113,20,56,32,117,254,26, - 239,104,185,229,66,175,49,12,35,217,249,139,227,76,98,199,200,239,229,29, - 39,15,175,23,95,188,19,167,157,169,147,235,45,19,78,194,71,161,157,61, - 21,67,49,31,158,142,56,103,142,238,151,70,173,35,126,220,77,220,178,45, - 251,72,111,127,137,68,34,25,78,92,5,142,34,118,250,124,76,198,52,205, - 228,42,254,124,249,41,234,250,162,75,81,241,123,105,160,6,183,18,232,120, - 150,56,191,142,186,8,51,149,145,227,54,38,199,143,59,173,253,200,223,115, - 43,142,174,185,41,6,109,112,17,161,98,70,173,40,167,64,21,55,119,106, - 54,140,132,246,151,72,36,146,66,35,43,129,3,250,46,95,197,223,59,185, - 196,196,14,150,166,65,199,181,196,240,118,55,247,99,127,59,215,116,150,27, - 181,170,68,139,141,186,42,211,229,43,186,254,232,103,183,8,76,126,223,64, - 25,73,237,47,145,72,36,133,128,194,24,99,123,247,238,69,83,83,19,98, - 177,24,138,139,139,251,236,247,229,22,252,224,70,166,107,104,52,95,40,20, - 130,207,231,67,85,85,21,230,204,153,131,230,230,102,52,55,55,227,197,23, - 95,132,105,154,201,137,211,226,146,84,67,89,30,113,115,79,77,211,112,245, - 213,87,163,178,178,18,37,37,37,232,238,238,70,103,103,103,114,101,15,26, - 154,159,11,232,148,0,238,130,44,43,43,67,105,105,41,182,109,219,150,147, - 60,157,104,110,110,198,204,153,51,83,214,182,20,197,154,11,45,117,223,138, - 174,85,128,46,18,205,192,88,234,66,209,141,141,141,184,242,202,43,243,86, - 175,218,218,218,188,229,37,201,15,114,241,1,137,19,218,59,239,188,131,247, - 223,127,31,23,92,112,1,166,76,153,130,162,162,34,0,125,119,148,230,100, - 51,7,42,211,53,188,115,180,109,27,145,72,4,39,78,156,192,123,239,189, - 151,20,212,23,94,120,1,85,85,85,152,48,97,2,252,126,127,94,203,19, - 139,197,208,214,214,134,23,94,120,1,215,92,115,13,20,69,193,169,83,167, - 112,198,25,103,160,164,164,36,57,145,155,147,203,242,112,55,104,79,79,15, - 90,90,90,146,63,226,43,175,188,18,229,229,229,125,132,36,155,191,110,229, - 166,249,246,244,244,224,149,87,94,65,40,20,66,71,71,7,128,212,14,132, - 78,56,23,203,75,119,86,167,86,38,192,231,244,153,176,44,164,220,171,235, - 58,0,224,156,115,206,65,48,24,76,219,118,131,33,22,139,225,208,161,67, - 232,236,236,204,89,30,18,137,164,112,208,122,122,122,16,12,6,81,89,89, - 137,162,162,34,215,0,11,167,206,148,159,23,201,116,13,119,229,169,170,138, - 146,146,18,156,121,230,153,56,116,232,16,122,122,122,240,246,219,111,195,239, - 247,99,226,196,137,8,4,2,125,238,207,101,121,60,30,15,130,193,32,38, - 77,154,132,230,230,102,236,218,181,11,159,253,236,103,147,75,86,113,113,75, - 39,78,217,184,243,178,25,79,228,101,246,249,124,40,45,45,69,71,71,71, - 114,122,64,119,119,183,227,116,6,167,250,137,109,69,207,139,193,40,124,124, - 50,20,10,1,0,218,219,219,83,22,175,230,27,192,138,109,111,89,86,114, - 10,3,93,182,13,64,50,248,165,119,18,188,2,77,235,141,102,181,109,27, - 45,45,45,0,144,220,172,214,233,255,61,144,122,81,24,235,157,94,193,5, - 85,82,184,68,34,17,0,169,255,43,222,31,228,242,33,72,50,186,208,12, - 195,64,69,69,5,130,193,160,107,4,33,255,235,20,182,46,90,35,153,174, - 161,231,121,71,20,12,6,81,81,81,129,104,52,10,203,178,250,88,110,249, - 44,15,99,12,126,191,31,19,38,76,128,97,24,104,107,107,195,164,73,147, - 146,17,136,162,56,57,89,72,78,214,19,45,79,186,107,156,58,107,77,211, - 80,82,82,130,83,167,78,1,0,218,218,218,16,141,70,83,198,207,120,26, - 226,98,205,252,26,62,70,199,5,169,215,221,107,39,45,42,69,81,16,141, - 70,147,157,10,157,224,77,167,80,136,214,160,91,219,240,107,232,142,230,154, - 166,164,164,167,40,74,210,107,16,14,135,97,154,166,99,80,139,83,208,142, - 88,142,212,182,142,187,66,249,103,186,200,53,239,40,37,133,135,174,235,104, - 106,106,194,47,127,185,23,245,245,205,216,191,255,4,58,59,129,178,50,96, - 214,172,10,212,213,85,226,154,107,230,160,170,170,74,254,31,37,25,209,78, - 158,60,137,243,206,59,175,207,170,245,28,177,19,113,58,54,144,107,168,91, - 208,182,109,4,131,65,188,255,254,251,104,110,110,70,77,77,77,138,27,108, - 176,121,101,123,13,47,15,23,185,35,71,142,196,27,137,172,226,225,132,83, - 112,137,120,204,205,170,200,246,26,58,61,128,11,15,143,130,52,77,179,207, - 2,204,84,236,168,59,81,81,148,20,55,171,105,50,248,253,72,166,227,243, - 249,146,2,231,247,251,29,55,53,165,109,71,23,117,118,18,121,94,7,183, - 49,75,30,232,2,244,206,53,164,162,236,52,158,231,148,135,40,136,182,205, - 160,170,169,229,227,2,87,86,86,214,167,28,146,225,71,215,117,108,221,186, - 23,143,63,190,27,64,25,230,204,169,195,213,215,148,163,172,44,128,206,78, - 29,77,77,29,216,190,189,9,245,245,219,113,203,45,115,241,249,207,215,73, - 145,147,164,69,11,135,195,240,122,189,232,234,234,74,89,118,74,180,156,134, - 18,222,105,199,93,86,86,50,220,157,227,241,120,16,10,133,250,68,248,229, - 163,60,60,184,131,118,236,30,143,7,209,104,180,79,180,97,46,203,67,203, - 197,131,60,56,220,109,200,133,139,175,176,66,133,132,90,73,78,174,67,126, - 220,239,239,181,224,184,203,144,139,41,183,188,220,234,202,69,71,92,148,154, - 158,23,243,165,249,115,151,39,183,214,157,86,153,225,247,83,139,77,140,36, - 21,211,141,167,141,164,5,71,211,2,32,199,224,10,16,93,215,177,101,203, - 118,60,181,165,9,85,179,102,97,241,213,179,80,94,22,64,32,0,232,0, - 202,117,160,106,86,5,102,207,174,196,243,207,239,199,191,172,223,141,230,230, - 19,184,254,250,69,82,228,36,174,104,64,170,203,134,186,205,232,147,57,61, - 47,30,19,201,230,26,122,157,88,6,222,225,137,215,230,186,60,20,90,6, - 183,14,60,159,229,17,203,224,243,249,146,15,5,78,91,216,56,185,238,220, - 214,143,84,213,94,107,76,76,215,201,130,19,211,21,113,178,186,156,132,136, - 151,137,150,221,105,217,52,39,23,181,248,217,77,128,249,57,154,174,28,131, - 43,44,34,145,8,246,239,111,194,83,191,108,64,160,178,22,149,181,149,8, - 148,5,128,0,160,7,1,32,8,4,35,64,4,8,84,150,161,98,118,5, - 154,245,8,158,250,101,3,102,205,170,192,172,89,85,195,93,5,73,129,146, - 118,30,92,186,206,171,191,247,13,5,178,60,169,247,139,162,230,150,110,166, - 16,106,106,25,209,241,57,186,254,165,147,11,54,93,186,162,251,80,180,190, - 120,26,84,120,220,234,225,244,0,33,214,203,73,184,157,198,98,1,57,6, - 87,104,68,34,17,108,221,186,31,29,193,42,4,3,64,51,128,19,186,142, - 50,4,16,255,79,241,128,147,196,195,73,121,16,29,101,65,32,82,133,173, - 91,247,75,129,147,184,210,111,129,27,10,210,141,103,165,163,208,202,51,92, - 164,115,149,210,177,49,142,91,0,12,191,158,191,167,139,47,3,72,9,44, - 161,105,187,9,142,120,142,127,230,227,129,110,22,182,169,114,101,0,0,32, - 0,73,68,65,84,159,232,6,77,247,127,118,27,31,206,198,91,192,175,225, - 99,112,91,183,110,69,125,125,61,246,237,219,39,69,47,79,232,186,142,217, - 179,103,163,174,174,14,139,23,47,6,0,92,115,205,53,168,111,170,2,102, - 45,2,2,1,52,119,68,176,183,9,168,44,11,32,16,140,139,156,14,64, - 143,232,232,208,129,166,230,8,16,8,160,179,28,120,106,235,110,236,223,255, - 252,176,214,73,82,184,104,0,146,147,137,197,206,35,87,130,226,4,237,40, - 197,72,186,225,88,189,158,150,135,134,198,139,194,49,28,229,161,203,109,1, - 169,27,165,210,247,244,94,58,22,37,238,184,14,32,105,185,209,160,140,254, - 142,57,210,52,233,61,60,79,234,238,164,174,112,250,255,165,99,101,153,130, - 73,104,189,232,103,138,184,137,44,16,31,131,219,190,125,59,182,108,217,130, - 242,242,114,25,145,151,71,116,93,199,137,19,39,240,212,83,79,65,215,117, - 44,90,180,8,21,21,21,208,59,170,80,86,22,64,121,121,124,220,45,126, - 109,226,166,32,160,71,122,45,184,96,0,40,47,15,64,7,208,89,86,133, - 138,138,200,112,85,71,82,224,104,64,111,71,150,139,128,142,108,173,35,39, - 113,205,69,64,199,96,203,227,116,62,31,56,89,70,52,98,146,227,36,34, - 233,44,48,254,158,135,241,211,115,52,194,209,201,106,115,114,83,186,253,191, - 196,177,60,126,31,175,3,189,223,73,168,156,218,59,93,189,232,53,98,122, - 186,174,99,255,254,253,168,170,170,66,121,121,57,0,25,89,153,47,58,59, - 59,17,137,68,80,86,86,134,253,251,247,163,174,174,14,229,229,229,40,171, - 170,66,101,121,0,149,101,229,40,43,15,160,60,16,23,186,64,176,87,240, - 0,160,60,16,0,146,54,93,7,80,85,133,242,242,230,97,170,141,164,208, - 73,17,56,32,255,29,183,19,195,101,37,185,49,156,194,230,4,15,154,160, - 46,68,177,147,119,115,7,242,107,156,172,60,209,50,164,255,7,49,143,116, - 214,147,24,245,152,110,188,78,124,136,161,159,221,234,149,169,109,40,180,44, - 188,12,129,64,0,205,205,205,168,172,172,68,69,69,5,0,36,133,78,146, - 91,202,203,203,209,209,209,1,93,215,209,220,220,132,64,32,128,178,178,50, - 148,119,68,80,89,86,133,138,202,184,184,149,5,3,8,150,5,17,64,252, - 255,165,235,58,244,178,32,34,157,145,196,49,0,40,135,222,209,44,31,78, - 36,174,164,236,232,157,139,206,219,41,205,108,172,168,177,82,158,129,34,62, - 144,100,35,194,110,227,87,226,103,81,112,156,210,20,143,211,9,230,78,214, - 174,40,138,116,172,208,169,236,153,242,205,116,204,173,158,64,220,90,171,171, - 171,67,36,18,65,48,24,148,29,100,30,9,4,2,8,4,2,232,232,232, - 64,85,85,29,202,202,202,226,255,3,116,38,44,183,50,148,149,7,81,94, - 6,4,16,31,131,3,226,150,156,30,209,17,168,0,208,25,4,58,34,208, - 203,59,81,214,212,41,87,54,145,184,146,118,195,211,92,33,206,57,227,27, - 134,186,145,143,242,0,189,65,22,140,177,228,164,224,225,44,15,111,35,62, - 95,144,147,206,45,72,199,182,248,49,42,66,78,115,200,122,243,234,123,47, - 29,155,165,99,101,226,78,5,212,218,162,19,205,185,229,36,142,13,138,150, - 26,173,135,136,83,189,232,245,110,65,51,180,45,41,157,157,157,168,170,170, - 66,67,67,67,178,195,149,157,100,126,224,75,112,5,131,65,84,85,85,161, - 179,179,19,21,21,21,168,108,106,66,121,25,23,183,132,5,23,136,79,21, - 224,14,201,96,32,128,136,174,39,62,37,2,79,130,29,168,168,144,81,148, - 18,103,52,192,189,99,17,231,121,13,85,199,78,211,19,67,211,135,171,60, - 162,203,45,27,139,104,32,243,217,250,83,30,177,108,78,215,101,26,3,115, - 178,218,156,172,209,222,255,69,239,49,113,219,160,76,109,34,138,151,24,60, - 226,102,141,137,227,115,233,174,117,251,156,174,94,34,186,174,39,3,75,116, - 93,71,71,71,135,116,81,230,137,72,36,146,12,236,41,47,47,135,174,235, - 241,207,101,77,232,56,177,15,229,85,139,146,226,22,40,139,139,91,128,7, - 153,4,0,116,246,14,200,53,237,175,71,85,153,116,47,75,220,25,150,105, - 2,98,250,78,29,245,112,150,7,200,110,251,141,124,148,39,93,96,72,54, - 110,83,241,62,113,87,114,122,141,170,246,141,214,20,5,206,201,141,9,100, - 158,46,192,87,90,113,170,91,186,201,228,233,234,227,148,86,54,247,240,136, - 201,170,42,249,228,159,111,156,218,124,246,236,217,0,128,237,245,251,209,188, - 191,18,149,139,230,34,16,0,202,130,64,48,17,83,18,12,0,17,29,232, - 4,0,61,128,253,123,247,161,188,99,63,22,213,205,73,222,47,145,136,12, - 171,192,241,60,178,205,167,208,202,147,15,220,172,18,55,203,46,211,113,186, - 164,151,8,63,78,131,76,232,18,106,92,32,249,117,84,48,157,34,48,197, - 213,84,168,149,197,167,13,164,46,252,60,240,96,158,116,150,174,24,77,42, - 199,220,10,11,254,192,161,235,58,234,27,234,209,180,47,130,185,139,22,33, - 88,22,15,38,9,32,97,189,37,166,13,236,222,189,29,122,243,62,212,205, - 169,194,236,217,179,81,89,89,57,108,101,151,20,54,195,54,15,46,221,83, - 247,112,204,131,75,87,158,225,152,7,151,141,85,50,208,252,51,141,117,113, - 156,86,245,231,227,105,78,238,199,116,238,81,177,220,212,141,57,84,109,154, - 238,94,90,47,185,22,101,225,193,199,228,58,58,58,176,127,239,86,60,223, - 176,27,85,115,102,97,214,236,217,152,85,85,133,166,166,38,236,223,183,15, - 77,123,247,3,122,7,102,85,85,161,170,170,10,193,96,80,46,189,38,113, - 69,206,131,235,103,121,156,206,231,3,39,161,17,231,168,113,129,162,129,36, - 84,180,220,172,54,49,15,30,208,194,215,184,20,45,35,154,14,159,63,71, - 31,144,196,160,15,167,53,48,169,192,209,117,54,157,220,213,162,117,230,20, - 72,147,77,189,248,24,174,236,16,11,147,138,138,10,204,153,51,7,229,229, - 229,104,106,106,66,211,246,237,168,223,178,5,186,174,35,16,8,160,178,178, - 18,149,149,149,168,170,141,111,151,195,167,120,200,255,167,196,13,57,15,46, - 11,134,83,216,156,224,209,149,0,250,88,222,217,222,239,20,164,193,24,75, - 89,184,153,111,203,35,94,67,197,222,182,237,164,27,83,156,6,192,93,145, - 252,28,135,222,207,243,164,233,139,215,240,207,226,123,167,58,184,141,13,210, - 239,184,92,181,164,48,225,209,172,21,21,21,168,170,170,66,36,18,65,103, - 103,103,82,224,248,148,2,190,127,165,252,63,74,50,33,231,193,13,115,121, - 6,10,119,237,209,142,219,41,68,222,201,213,73,221,139,84,180,184,107,152, - 35,46,132,76,67,253,157,44,58,154,191,211,238,6,78,214,164,56,30,232, - 100,189,247,183,94,226,117,226,248,160,28,131,43,124,248,184,154,211,142,222, - 82,216,36,217,34,231,193,97,228,205,131,163,99,87,226,158,111,244,126,126, - 173,232,226,19,133,131,94,67,235,205,119,19,112,42,159,40,56,110,112,1, - 118,187,70,81,148,228,255,94,28,155,115,171,151,155,5,39,90,109,162,165, - 201,145,99,112,35,19,46,118,210,37,41,201,150,126,205,131,115,34,211,92, - 48,183,64,3,254,119,48,243,224,134,178,60,185,154,7,55,144,185,114,226, - 248,146,40,40,162,149,227,22,21,153,206,10,114,186,86,156,247,38,90,112, - 153,172,168,76,159,69,120,26,233,166,9,12,196,61,236,36,124,180,94,178, - 131,148,72,198,6,131,158,38,48,24,107,70,20,186,161,200,107,40,202,3, - 12,221,60,184,193,150,199,109,30,156,166,105,240,122,189,131,182,38,105,250, - 60,224,131,91,109,116,71,117,167,50,241,135,19,183,177,48,234,2,21,235, - 192,143,139,193,50,252,243,80,214,11,72,93,197,69,186,184,36,146,177,129, - 156,7,231,144,71,33,141,181,185,149,135,187,83,51,141,117,137,110,59,122, - 140,167,3,164,142,137,113,119,40,95,198,138,166,45,90,130,92,100,233,4, - 114,39,65,227,145,148,140,1,252,112,186,96,23,145,254,214,75,76,131,6, - 230,200,49,56,137,100,108,208,199,69,233,52,102,35,190,23,239,161,215,164, - 235,128,40,153,220,87,78,215,22,74,121,232,61,195,81,30,203,178,16,10, - 133,250,4,133,136,121,165,67,140,114,228,233,68,163,81,196,98,49,0,113, - 129,227,81,149,244,58,81,132,24,99,125,166,9,208,60,156,92,134,116,76, - 140,142,129,26,134,209,39,40,100,32,136,237,108,89,86,82,184,229,24,156, - 68,50,54,112,141,162,228,65,12,78,29,115,114,178,175,162,0,68,124,248, - 95,122,222,38,233,37,143,17,247,148,219,56,140,83,121,210,141,71,197,203, - 167,64,81,250,134,139,139,231,249,241,222,99,125,195,211,51,185,40,157,30, - 4,134,170,60,0,235,211,238,180,60,111,191,253,118,218,178,13,21,62,159, - 15,94,175,215,213,210,226,255,63,113,98,190,83,48,136,155,232,209,241,195, - 19,39,78,228,165,94,114,12,78,34,25,27,164,8,28,13,59,167,147,190, - 157,130,24,168,32,57,93,195,207,123,28,238,81,201,19,187,91,200,55,21, - 26,26,36,224,36,42,252,122,177,60,206,1,10,125,143,197,221,102,169,33, - 243,110,229,161,47,49,223,116,229,113,63,239,92,70,90,7,90,158,47,124, - 225,11,142,249,73,178,167,189,189,125,184,139,32,145,72,242,64,210,69,201, - 7,247,169,192,185,173,64,209,223,200,57,167,99,244,137,222,41,144,129,91, - 117,84,80,114,93,30,62,166,37,186,200,68,177,165,199,114,133,104,81,230, - 50,175,177,198,132,9,19,134,187,8,18,137,36,15,164,8,156,162,40,240, - 122,189,73,97,161,86,25,237,216,185,229,197,20,5,112,88,151,144,158,247, - 56,28,83,18,150,146,199,227,65,44,22,115,156,38,192,63,243,49,32,55, - 75,50,213,242,98,176,237,190,43,161,208,243,128,218,231,24,99,189,159,13, - 195,232,179,62,34,173,127,166,181,19,83,211,238,181,14,221,206,83,107,141, - 222,3,244,29,203,146,72,36,18,73,246,36,151,234,210,52,13,193,96,176, - 207,242,76,28,167,224,8,183,64,10,250,222,45,56,4,136,47,170,236,241, - 120,28,45,38,143,199,3,191,223,15,77,211,28,231,73,229,162,60,92,104, - 157,44,62,190,178,62,13,107,207,71,121,156,172,77,137,68,34,145,100,70, - 5,128,150,150,22,248,253,126,4,131,65,71,113,3,250,186,228,210,143,43, - 165,90,124,110,247,104,154,6,191,223,15,159,207,135,147,39,79,38,143,119, - 118,118,194,235,245,194,239,247,187,78,2,206,69,121,60,30,79,82,224,59, - 58,58,0,0,197,197,197,8,133,66,201,115,249,46,15,23,248,80,40,228, - 152,175,68,34,145,72,156,81,39,77,154,132,134,134,134,97,115,129,113,235, - 104,255,254,253,152,52,105,18,198,143,31,143,195,135,15,15,123,121,62,252, - 240,67,140,31,63,30,140,49,180,182,182,14,107,121,20,69,65,107,107,235, - 176,228,47,145,72,36,35,21,181,184,184,24,205,205,205,216,188,121,51,14, - 28,56,144,247,2,28,56,112,0,155,55,111,70,115,115,51,138,139,139,17, - 8,4,208,214,214,134,151,95,126,25,199,142,29,203,123,121,142,29,59,134, - 151,95,126,25,109,109,109,8,4,2,240,122,189,232,233,233,193,187,239,190, - 139,182,182,182,188,151,167,173,173,13,239,190,251,46,122,122,122,48,126,252, - 248,188,231,47,145,72,36,35,21,101,255,254,253,236,192,129,3,248,243,159, - 255,140,67,135,14,161,163,163,3,209,104,52,231,227,62,138,162,192,239,247, - 163,188,188,28,211,167,79,199,133,23,94,136,154,154,26,0,192,11,47,188, - 128,67,135,14,225,248,241,227,232,238,238,134,97,24,121,41,143,215,235,69, - 105,105,41,206,60,243,76,76,159,62,29,159,251,220,231,48,113,226,68,180, - 183,183,227,228,201,147,232,232,232,128,174,235,105,23,98,30,74,52,77,67, - 32,16,64,121,121,57,166,76,153,130,9,19,38,96,202,148,41,121,201,91, - 34,145,72,70,58,10,99,140,157,56,113,2,173,173,173,104,107,107,75,174, - 144,145,15,65,209,52,13,197,197,197,152,56,113,34,38,79,158,140,138,138, - 10,232,186,142,206,206,78,180,182,182,226,213,87,95,69,36,18,129,101,89, - 121,41,143,199,227,65,48,24,196,194,133,11,49,121,242,100,148,149,149,193, - 227,241,64,215,117,132,195,97,132,195,225,228,74,27,249,40,15,15,108,41, - 42,42,66,81,81,17,2,129,0,252,126,127,78,243,149,72,36,146,209,130, - 194,0,25,162,39,145,72,36,99,16,117,148,79,63,202,188,100,190,68,34, - 145,72,36,35,16,41,112,18,137,68,34,25,149,72,129,147,72,36,18,201, - 168,68,10,156,68,34,145,72,70,37,82,224,36,18,137,68,50,42,73,187, - 163,183,164,47,217,196,28,201,176,84,137,100,108,16,223,189,113,236,230,95, - 232,140,14,129,163,115,210,242,16,246,154,110,14,156,92,245,95,34,25,27, - 40,32,139,166,143,193,252,71,2,3,154,7,39,118,225,76,56,150,215,198, - 22,86,224,103,241,253,105,114,154,37,255,98,245,57,62,22,191,104,98,59, - 228,91,224,135,59,255,49,136,91,11,143,165,239,190,216,7,228,251,183,63, - 84,249,143,246,121,112,131,158,232,205,155,103,88,190,220,14,91,206,196,15, - 231,95,228,198,170,184,57,109,9,148,55,145,201,99,254,195,250,61,239,7, - 185,44,103,50,109,23,15,70,114,219,167,28,228,93,72,12,247,3,238,80, - 230,63,218,5,110,228,6,153,184,136,91,222,178,71,234,150,55,163,253,71, - 221,7,186,143,29,121,41,116,199,214,81,150,63,99,44,171,49,216,225,194, - 173,227,27,202,180,211,165,159,220,180,55,39,37,40,12,210,181,113,62,234, - 62,220,249,143,52,70,252,24,220,112,90,16,188,67,29,171,226,198,235,77, - 173,134,100,155,228,242,255,144,102,220,33,215,249,23,234,152,71,62,196,45, - 229,152,211,239,142,188,47,196,54,26,42,134,123,156,125,184,243,31,73,140, - 76,129,35,214,27,48,188,255,240,124,143,55,2,72,223,113,103,115,205,32, - 203,144,77,123,231,76,100,242,156,255,72,237,74,114,234,170,20,196,107,164, - 182,209,64,24,110,209,30,238,252,71,26,35,215,69,153,32,223,99,111,195, - 6,99,240,100,169,228,158,120,239,158,219,226,32,222,177,209,2,241,207,249, - 248,17,210,252,197,215,80,229,79,199,156,168,43,188,208,92,65,212,194,226, - 194,158,252,60,132,105,39,211,79,115,158,83,104,109,36,25,155,140,60,129, - 19,172,183,49,65,63,196,141,147,15,145,27,11,56,185,222,146,239,135,171, - 80,4,39,113,227,12,245,111,36,147,184,241,221,231,37,146,66,97,100,186, - 40,19,140,9,235,205,73,220,178,236,184,60,138,162,88,241,94,121,200,139, - 69,45,37,209,29,150,143,255,66,58,75,109,20,126,11,10,14,55,203,78, - 182,189,164,144,24,89,2,55,214,172,55,7,113,27,136,37,55,164,34,151, - 101,228,106,206,30,56,134,59,127,137,156,34,35,25,49,140,44,129,35,140, - 9,235,77,81,96,49,198,168,168,89,89,168,123,159,235,135,178,109,136,184, - 184,89,110,249,136,160,28,182,252,199,56,82,220,36,35,137,145,55,6,135, - 49,22,38,155,16,57,241,152,235,139,144,75,113,139,127,236,13,100,200,183, - 184,229,43,127,154,159,24,185,91,8,29,59,157,143,41,90,182,67,253,59, - 17,231,193,101,27,112,34,145,12,23,35,214,130,227,140,137,167,117,7,75, - 46,19,121,17,55,39,119,113,62,197,45,199,249,39,35,53,137,128,0,133, - 35,110,28,58,247,175,207,170,62,67,152,54,37,155,128,147,66,106,35,201, - 216,100,68,11,92,33,136,91,190,194,226,29,45,57,23,242,37,110,188,92, - 57,103,24,243,207,103,224,204,80,146,175,37,163,146,249,229,201,114,203,230, - 255,48,154,133,117,172,215,191,191,140,88,129,43,24,113,203,231,170,13,217, - 212,55,199,19,171,243,222,238,195,157,191,64,161,90,38,110,150,86,174,210, - 206,180,163,70,46,219,104,172,239,230,49,214,235,223,31,70,228,24,220,112, - 119,114,64,170,75,166,80,230,68,13,57,195,45,46,195,157,191,64,161,138, - 27,135,142,199,229,42,237,116,233,243,243,57,21,55,184,215,177,208,255,63, - 67,193,88,175,127,127,25,121,219,229,20,152,184,165,28,31,141,95,48,58, - 53,99,56,218,125,184,243,151,244,193,237,191,144,207,239,254,88,31,243,27, - 170,250,143,246,221,4,6,189,93,206,88,35,83,164,216,168,252,161,13,183, - 184,12,119,254,146,130,36,239,67,4,5,198,80,212,95,10,156,36,5,57, - 200,43,145,20,14,121,11,242,42,80,6,91,255,209,46,112,35,54,200,100, - 184,24,203,63,38,137,164,208,24,235,191,199,177,94,255,76,140,200,32,19, - 137,68,34,145,72,50,33,5,78,34,145,72,36,163,18,41,112,18,137,68, - 34,25,149,72,129,147,72,36,18,201,168,68,10,156,68,34,145,72,70,37, - 74,62,21,206,206,99,94,82,185,37,195,1,83,20,25,216,38,145,20,8, - 82,7,36,18,137,68,50,42,145,2,39,145,72,36,146,81,201,152,157,232, - 125,230,212,169,25,93,73,199,143,29,27,221,211,252,37,18,137,100,20,51, - 102,5,14,0,142,30,61,234,122,110,218,180,105,121,44,137,100,48,216,194, - 130,14,234,200,219,190,77,34,145,228,128,172,93,148,54,192,248,235,138,249, - 243,153,248,57,151,133,204,5,199,143,29,83,220,68,108,218,180,105,210,122, - 27,33,216,0,107,108,108,196,139,47,190,136,198,198,70,172,95,191,190,143, - 224,13,21,175,238,220,57,226,190,231,18,201,88,102,64,81,148,54,192,230, - 207,159,143,215,119,238,236,151,8,12,52,138,114,170,224,78,60,150,133,248, - 100,91,175,51,167,78,101,212,146,27,141,226,54,90,45,28,94,175,134,134, - 6,248,124,62,236,216,177,3,11,22,44,192,195,15,63,140,77,155,54,13, - 121,61,47,188,232,34,246,231,119,222,73,155,166,140,162,148,72,10,135,130, - 14,50,121,254,249,231,215,76,157,58,149,29,56,112,0,71,143,30,197,209, - 163,71,241,155,95,191,128,169,83,167,178,231,159,127,126,205,80,228,65,45, - 185,209,40,110,156,3,7,14,36,95,185,178,112,184,69,255,189,213,171,115, - 222,201,115,203,173,163,163,3,181,181,181,104,105,105,193,130,5,11,240,228, - 147,79,98,197,138,21,88,188,120,241,160,234,185,252,219,223,238,115,239,212, - 169,83,29,143,75,36,146,2,69,29,192,11,113,11,142,13,224,190,126,49, - 117,234,84,198,121,254,249,231,217,243,207,63,159,252,156,73,228,250,91,182, - 169,83,167,246,171,62,55,47,59,212,239,250,15,199,11,0,59,112,224,64, - 202,11,64,78,202,142,184,160,176,213,171,87,231,188,109,0,176,67,135,14, - 177,198,198,70,214,209,209,193,0,176,159,252,228,39,172,177,177,145,45,90, - 180,136,53,54,54,14,170,158,110,247,6,131,193,180,105,42,138,194,228,75, - 190,228,171,48,94,5,27,100,194,45,55,0,248,239,255,254,111,252,253,223, - 255,125,202,249,3,7,14,160,166,166,102,53,128,53,67,145,95,54,150,219, - 77,203,14,141,200,167,247,154,154,26,240,182,172,169,169,193,198,141,27,241, - 237,229,203,135,185,84,131,199,182,109,180,180,180,0,0,234,235,235,81,87, - 87,135,170,170,42,108,219,182,13,159,250,212,167,6,156,238,165,151,93,198, - 222,120,227,141,148,207,127,124,227,13,5,0,238,190,251,110,188,248,226,139, - 201,207,18,137,164,112,81,135,187,0,233,8,4,2,142,226,198,207,1,113, - 55,230,80,228,117,211,178,67,204,73,192,248,241,193,136,91,54,110,187,92, - 184,246,108,128,49,198,192,24,67,77,77,13,106,106,106,134,52,237,108,235, - 149,43,183,101,117,117,53,206,56,227,12,188,243,206,59,56,227,140,51,176, - 120,241,98,52,53,53,161,186,186,26,77,77,77,253,74,235,174,187,239,102, - 252,69,197,13,0,130,193,32,238,186,251,110,6,0,171,191,247,61,69,60, - 47,145,72,10,147,130,181,224,56,78,226,54,212,220,180,236,16,219,180,177, - 42,241,41,179,144,253,232,177,233,89,63,189,247,103,28,104,237,218,181,88, - 189,122,53,251,193,218,181,67,106,29,52,54,54,114,139,23,27,55,110,28, - 146,52,85,64,177,1,150,174,204,188,238,171,87,175,198,80,215,137,195,3, - 75,158,124,242,73,108,220,184,17,251,247,239,79,138,155,218,143,32,147,123, - 239,189,215,245,220,206,87,95,85,94,125,245,85,86,208,79,131,18,137,164, - 15,5,45,112,186,174,39,45,53,167,115,153,24,106,151,98,127,132,13,232, - 159,184,113,134,74,228,184,245,230,196,183,151,47,31,18,177,17,69,110,237, - 218,181,41,249,3,185,17,55,30,96,82,93,93,141,111,124,227,27,248,151, - 127,249,23,116,118,118,98,249,242,229,3,18,55,137,68,50,58,41,232,105, - 2,83,133,16,126,202,180,105,211,176,113,227,198,181,0,240,249,207,127,126, - 141,120,94,197,208,8,92,127,69,141,51,216,72,197,193,10,3,23,184,198, - 198,70,0,72,177,222,134,74,224,104,94,78,199,115,45,110,110,12,68,220, - 46,189,236,178,100,29,184,11,146,167,179,246,7,63,96,47,190,248,34,248, - 184,155,29,15,64,113,204,131,41,114,154,128,68,82,40,20,172,5,199,231, - 190,77,155,54,13,7,14,28,72,90,114,186,174,243,206,218,85,220,134,130, - 129,10,27,135,91,55,252,115,166,206,190,63,215,102,34,31,214,219,112,224, - 36,110,67,101,169,9,65,35,41,141,119,239,189,247,34,26,137,140,216,118, - 147,72,198,44,3,13,161,206,229,52,129,169,83,167,50,254,226,115,225,196, - 99,153,130,75,114,29,166,62,212,161,243,217,94,151,109,158,140,177,148,105, - 1,27,55,110,100,27,55,110,28,242,240,125,90,110,254,158,190,134,106,202, - 0,226,226,150,146,118,174,254,103,223,142,207,117,99,244,51,127,127,245,213, - 87,51,250,89,124,13,119,88,180,124,201,151,124,245,190,6,220,217,228,74, - 224,220,132,140,191,207,70,220,48,196,29,222,80,116,206,217,8,220,80,138, - 1,200,252,55,36,4,46,23,245,162,229,206,244,121,48,249,228,75,220,248, - 235,162,139,46,234,147,199,250,245,235,153,211,113,250,26,238,31,180,124,201, - 151,124,245,190,6,220,225,228,66,224,250,107,165,165,163,191,101,235,239,68, - 239,66,126,65,176,162,114,97,189,193,65,188,178,61,214,223,124,242,45,110, - 42,128,157,59,119,246,201,103,226,196,137,204,233,56,125,13,247,15,90,190, - 228,75,190,122,95,137,62,100,248,161,235,77,230,122,124,77,132,175,71,153, - 205,22,58,35,141,92,5,150,168,241,0,37,37,211,88,97,182,215,165,35, - 23,99,110,153,88,56,127,126,159,124,190,240,133,47,56,30,151,72,36,133, - 73,65,8,92,33,136,27,16,223,62,103,52,137,92,174,196,45,95,20,218, - 34,209,255,246,175,255,58,34,219,81,34,25,171,100,45,112,116,123,156,249, - 243,231,99,231,206,157,201,99,131,221,46,135,139,218,112,138,27,103,180,136, - 220,72,23,55,10,183,2,135,187,28,18,137,100,100,49,160,121,112,3,37, - 221,60,56,62,222,54,84,226,150,169,94,78,226,70,25,233,59,11,60,178, - 113,35,27,201,226,150,110,174,89,33,195,20,57,15,78,34,41,20,10,70, - 224,134,154,108,4,46,83,26,35,89,224,70,50,35,85,220,0,41,112,18, - 73,33,49,102,5,78,34,201,5,82,224,36,146,194,65,234,128,68,34,145, - 72,70,37,5,187,84,151,100,108,33,45,31,137,68,50,212,72,11,78,34, - 145,72,36,163,146,17,57,144,47,201,15,242,233,71,50,26,201,103,44,192, - 64,80,164,55,99,200,144,46,74,137,68,34,73,37,69,96,206,61,247,220, - 133,135,15,31,222,49,208,196,110,189,245,214,148,244,126,249,203,95,14,42, - 61,73,246,200,135,116,137,68,34,73,37,233,217,26,172,184,1,192,67,15, - 61,148,76,79,138,91,126,145,2,39,145,72,36,105,56,247,220,115,207,45, - 228,244,36,238,244,123,12,110,170,48,65,250,216,255,207,222,185,199,71,81, - 157,255,255,51,187,155,205,29,146,112,21,19,9,225,162,120,225,142,5,165, - 16,144,90,172,87,10,181,212,210,74,149,42,22,191,241,146,82,181,95,75, - 2,245,167,181,126,197,10,165,226,165,109,188,148,122,227,98,193,98,41,133, - 128,168,8,228,130,40,88,144,152,16,12,225,150,235,102,179,217,236,238,249, - 253,177,123,38,179,179,51,187,51,187,179,155,219,243,126,189,230,181,187,51, - 115,206,115,230,236,238,249,204,115,158,115,230,208,100,104,221,196,178,14,35, - 177,213,91,239,126,178,115,114,252,234,172,178,162,130,126,227,61,8,181,24, - 92,110,110,110,118,113,113,113,17,128,25,178,67,187,179,179,179,11,245,122, - 94,175,191,254,122,118,121,121,185,98,126,27,54,108,80,205,143,98,112,157, - 0,95,120,180,181,181,149,113,202,74,15,138,75,219,116,118,249,186,3,177, - 172,67,185,173,141,27,55,22,234,181,21,108,89,152,194,194,66,213,101,99, - 16,225,146,54,57,57,57,44,39,39,135,89,173,86,113,227,251,114,114,114, - 12,95,46,71,154,55,223,24,3,99,12,1,251,141,176,175,181,126,34,173, - 199,80,121,24,145,127,119,220,228,228,230,230,102,3,40,6,192,166,79,47, - 100,165,165,165,172,185,185,153,49,198,88,105,105,41,91,180,104,17,95,170, - 169,56,59,59,59,87,33,11,63,94,127,253,245,236,252,252,252,226,252,252, - 124,246,208,67,15,177,245,235,215,179,109,219,182,177,109,219,182,177,245,235, - 215,179,215,95,127,157,229,231,231,179,252,252,124,197,252,58,123,137,153,158, - 180,133,250,174,68,50,51,51,197,70,121,227,198,141,108,227,198,141,226,231, - 104,139,156,124,69,239,104,217,137,182,173,88,214,33,183,229,21,186,34,150, - 153,89,164,219,86,176,70,130,11,156,92,232,114,188,222,143,226,49,173,91, - 78,78,14,59,120,240,160,226,102,180,200,229,228,228,176,61,123,174,96,159, - 151,239,99,187,118,121,215,155,99,172,99,237,57,254,126,215,46,176,207,203, - 247,177,61,123,174,136,216,62,175,159,9,19,246,249,229,35,255,140,8,5, - 104,194,132,125,65,215,207,139,52,255,238,186,41,80,156,155,155,203,74,75, - 75,89,102,102,17,107,110,110,102,165,165,165,172,180,180,148,49,198,196,207, - 185,185,185,12,94,33,12,74,126,126,126,241,154,53,107,216,250,245,235,89, - 110,110,174,40,110,210,109,253,250,245,108,205,154,53,44,63,63,63,32,191, - 206,22,133,158,180,169,124,223,254,100,102,102,178,227,199,143,3,0,54,109, - 218,132,185,115,231,98,238,220,185,226,241,227,199,143,35,47,47,175,64,75, - 94,122,224,94,200,241,227,199,81,93,93,141,213,171,87,99,203,63,54,35, - 154,30,15,183,85,93,93,109,168,173,88,214,33,183,181,105,211,166,21,115, - 231,206,13,200,51,26,223,215,242,194,194,152,116,171,84,84,84,224,237,183, - 223,14,232,70,140,132,140,62,127,198,187,155,63,192,204,153,192,231,229,251, - 240,197,161,125,248,188,124,159,223,251,153,51,129,119,55,127,128,140,62,127, - 54,196,230,56,175,248,132,124,13,39,207,112,210,135,99,175,39,224,243,222, - 102,172,90,181,10,227,199,143,7,0,140,30,189,1,149,149,149,168,172,172, - 68,89,89,25,82,82,82,48,114,228,72,172,90,181,10,0,102,4,243,226, - 94,127,253,245,108,0,51,250,245,235,135,244,244,116,0,192,211,79,63,29, - 112,94,122,122,58,250,245,235,23,50,63,34,50,52,9,28,0,36,36,36, - 136,13,179,210,49,160,99,69,0,163,200,203,203,43,168,174,174,198,182,109, - 219,144,149,245,42,242,242,154,48,110,252,68,84,87,87,35,47,47,175,192, - 72,123,220,22,191,206,77,155,54,25,110,43,150,117,184,109,219,182,21,121, - 121,77,5,89,89,175,138,251,178,178,94,69,86,214,171,97,217,90,94,88, - 200,164,219,202,194,66,65,254,202,215,111,43,44,44,12,154,54,156,235,217, - 186,117,171,248,126,210,164,102,0,127,69,118,206,110,102,177,238,18,183,236, - 156,221,44,59,103,183,238,252,207,213,79,17,223,95,57,110,138,226,22,13, - 202,75,167,8,193,62,235,65,73,24,181,230,103,132,184,74,201,206,201,97, - 124,187,103,201,18,67,133,243,158,37,75,152,52,255,72,243,43,46,46,46, - 90,180,104,17,198,143,31,143,178,178,50,172,88,113,9,110,184,33,30,115, - 231,206,197,119,190,243,29,140,31,63,30,171,86,149,227,240,97,27,70,142, - 28,137,69,139,22,161,178,178,178,80,77,148,202,203,203,139,198,141,27,39, - 138,219,181,215,94,27,112,206,222,189,123,113,242,228,73,164,167,167,99,220, - 184,113,152,55,111,158,106,126,68,100,232,154,7,167,212,48,71,11,137,23, - 130,185,115,231,34,47,239,85,191,227,199,143,31,199,200,145,35,11,0,20, - 26,101,11,128,162,0,25,105,43,86,117,56,119,238,220,2,121,157,41,145, - 153,153,201,86,175,94,189,34,212,50,69,43,11,11,67,54,150,57,57,57, - 104,110,110,134,146,248,105,47,185,63,91,183,110,197,77,55,221,36,126,62, - 120,240,32,38,77,106,198,137,19,211,21,207,31,62,124,143,110,27,3,210, - 247,97,198,140,41,248,188,124,31,206,213,79,193,128,116,181,215,57,62,49, - 204,9,247,114,162,74,121,233,20,33,92,113,138,36,45,135,11,206,245,215, - 95,143,151,214,173,19,0,96,251,246,237,44,59,39,135,73,247,133,195,61, - 75,150,176,237,219,183,99,251,246,237,226,160,31,223,62,6,68,52,16,104, - 70,94,94,30,108,54,27,42,43,43,113,251,237,223,65,65,193,6,100,101, - 189,138,234,234,59,193,111,16,239,185,103,4,82,82,82,144,151,151,135,162, - 162,34,249,160,17,191,252,204,102,179,248,97,218,180,105,248,232,163,143,240, - 244,211,79,227,145,71,30,17,189,185,105,211,166,1,0,124,231,6,203,143, - 136,0,205,30,156,195,225,8,235,88,36,108,219,182,13,121,121,77,48,202, - 11,9,101,139,123,137,220,134,209,182,98,89,135,14,135,3,213,213,119,162, - 186,250,78,113,31,255,44,181,101,132,135,42,245,222,206,157,59,23,65,169, - 189,222,94,115,115,179,159,199,38,69,109,63,167,162,66,255,115,42,148,196, - 108,230,204,93,184,114,92,171,226,235,169,83,198,116,83,118,119,164,30,20, - 23,177,202,138,10,65,42,100,149,21,21,66,101,69,133,176,125,251,118,132, - 235,205,113,113,227,121,241,253,47,173,91,39,84,86,84,8,215,95,127,125, - 64,89,244,228,63,114,228,72,240,27,220,148,148,20,60,244,208,88,0,16, - 219,157,163,71,231,33,37,37,5,54,155,77,236,198,4,212,135,251,115,239, - 141,195,189,56,46,110,143,60,242,136,226,185,52,125,192,120,52,9,220,169, - 83,167,132,145,35,71,170,30,31,57,114,164,184,26,183,145,196,210,99,140, - 182,173,88,214,161,94,91,225,198,228,148,60,51,147,111,234,73,184,94,219, - 202,194,66,33,53,53,21,55,221,116,147,232,189,201,95,149,88,177,162,163, - 234,60,208,215,93,169,228,177,1,0,99,185,138,27,0,88,172,187,122,101, - 204,74,14,239,42,12,229,161,113,145,11,7,169,215,166,196,75,235,214,137, - 34,23,78,183,37,143,177,101,103,103,195,102,179,225,225,135,199,137,199,184, - 184,241,243,108,54,155,238,242,115,111,13,240,23,55,34,250,104,234,162,228, - 163,9,179,178,178,112,252,248,113,209,163,113,56,28,126,141,165,81,171,113, - 115,184,23,226,181,237,189,155,226,159,163,229,241,168,29,139,148,88,214,161, - 220,150,180,206,164,182,242,242,154,10,242,242,94,21,143,111,220,184,177,48, - 28,251,220,123,171,168,168,8,184,99,138,164,123,82,77,204,164,172,88,177, - 2,5,5,29,218,204,5,8,208,222,93,169,228,193,1,187,84,207,119,58, - 129,163,71,7,99,236,216,93,204,229,156,25,244,250,148,186,253,74,75,181, - 199,244,228,233,195,137,211,169,117,61,234,41,135,26,21,21,21,200,201,201, - 137,168,251,209,8,94,90,183,78,200,206,201,97,188,60,122,40,43,43,195, - 248,241,227,49,114,228,72,81,196,170,171,239,132,205,102,19,197,13,0,108, - 54,155,232,233,5,163,190,190,62,192,139,83,19,182,250,250,122,93,101,37, - 244,17,82,224,164,67,229,87,175,94,189,194,23,139,130,116,31,96,188,184, - 249,188,16,86,93,93,173,120,60,10,30,79,212,108,197,178,14,181,218,202, - 203,107,138,104,20,165,220,59,170,168,152,129,156,156,221,168,172,48,62,156, - 160,36,116,114,97,147,238,239,96,166,166,252,149,61,184,214,160,54,71,143, - 174,133,213,234,173,135,202,138,25,170,141,187,138,32,105,246,50,34,25,120, - 162,33,143,136,189,80,46,38,217,57,57,172,51,39,196,115,207,77,175,184, - 1,216,189,122,245,234,25,107,214,172,17,197,77,250,42,37,37,37,5,171, - 87,175,6,128,221,193,242,115,187,221,154,255,4,110,183,59,84,126,68,4, - 4,21,56,121,99,9,120,197,64,30,175,49,90,220,164,182,67,121,33,209, - 240,120,140,244,174,98,89,135,90,109,205,157,59,183,64,218,35,171,215,67, - 149,54,234,252,61,159,87,21,94,201,181,33,21,186,130,130,2,81,112,228, - 175,156,215,94,51,198,131,51,194,75,236,137,116,165,39,188,132,91,150,236, - 236,236,194,162,162,162,93,121,121,121,126,30,156,92,220,0,175,167,87,84, - 84,132,236,236,236,66,0,13,74,249,109,216,176,161,16,192,174,137,19,39, - 6,120,113,114,234,235,235,81,94,94,206,211,40,230,71,68,134,170,192,41, - 53,150,188,17,142,134,160,5,179,221,21,60,30,163,196,45,90,117,24,202, - 86,102,102,102,84,189,97,238,209,133,242,104,180,114,251,237,183,227,212,169, - 83,226,231,204,204,76,241,125,78,206,95,1,64,209,131,11,135,212,212,131, - 56,87,63,41,192,131,51,210,75,140,37,145,140,134,140,214,124,56,73,156, - 78,119,218,235,175,191,30,219,183,111,143,138,135,232,123,92,214,238,135,31, - 126,120,198,170,85,171,2,68,142,191,150,149,149,225,225,135,31,6,58,188, - 173,6,40,136,18,207,239,194,133,11,51,128,192,1,39,156,250,250,122,92, - 184,112,33,100,126,68,100,40,10,92,176,198,50,218,116,69,143,199,104,113, - 51,154,80,182,98,21,255,147,123,117,225,231,19,216,144,85,86,84,136,239, - 179,115,252,61,197,72,132,174,178,162,66,184,253,246,219,153,119,232,255,29, - 232,120,253,179,161,94,98,48,228,162,18,142,200,240,110,72,62,220,95,239, - 28,184,112,210,106,65,105,234,128,94,94,90,183,78,48,104,74,128,114,25, - 179,179,11,139,139,139,11,39,76,152,48,99,209,162,69,200,203,203,195,248, - 241,227,197,152,219,234,213,171,81,84,84,4,248,158,73,9,159,16,85,86, - 86,170,122,113,243,230,205,43,172,172,172,156,49,110,220,56,152,205,102,81, - 232,234,235,235,225,118,187,81,94,94,14,248,158,73,25,42,63,34,124,2, - 126,40,93,77,220,58,75,20,186,106,222,122,109,201,143,203,71,75,6,43, - 95,176,33,182,220,99,83,18,53,163,188,184,96,182,213,230,193,73,25,62, - 124,15,194,45,135,220,134,154,192,133,99,195,227,125,68,150,152,70,46,42, - 252,179,252,188,112,8,150,135,7,96,19,38,236,51,36,206,215,157,80,155, - 72,146,157,157,157,91,89,89,89,8,149,135,45,251,222,115,79,171,33,148, - 32,101,103,103,231,206,155,55,79,49,63,159,176,41,230,167,235,25,138,68, - 80,2,60,56,222,8,202,27,190,204,204,34,118,234,212,34,205,154,176,54, - 46,0,0,32,0,73,68,65,84,127,4,253,231,119,29,81,136,20,181,58, - 12,44,135,127,29,233,173,179,80,182,162,233,161,70,83,192,180,216,30,62, - 220,43,176,167,78,41,55,87,153,153,154,167,120,106,194,168,238,80,37,140, - 124,162,73,164,182,123,51,190,238,197,92,149,167,138,72,187,16,67,138,27, - 207,239,217,103,159,53,44,63,66,63,138,63,110,222,0,250,55,150,69,190, - 6,37,116,3,172,231,92,239,249,61,71,220,56,74,117,232,95,142,192,58, - 210,91,111,193,108,25,113,157,122,37,66,238,213,117,103,98,225,37,18,157, - 131,150,71,1,168,76,186,14,91,136,244,228,71,30,156,113,232,242,200,244, - 102,174,181,161,222,184,113,99,161,22,143,199,8,98,105,75,78,52,235,208, - 223,142,49,34,110,172,15,212,189,144,78,131,8,229,37,146,192,117,47,24, - 9,72,175,65,183,192,69,195,131,3,66,123,60,70,18,75,91,106,24,233, - 193,249,231,107,156,135,218,155,5,142,232,185,144,192,17,1,232,245,62,194, - 241,86,122,27,242,58,50,162,206,248,178,63,27,55,110,44,140,244,217,153, - 157,189,110,23,109,180,69,99,235,236,53,202,104,139,225,6,162,199,97,148, - 135,106,50,162,48,4,209,197,32,15,174,247,64,2,71,168,66,193,110,130, - 32,186,51,116,147,78,16,4,65,244,72,72,224,8,130,32,136,30,9,117, - 81,18,170,208,221,15,209,19,209,191,36,110,112,168,43,191,235,66,109,24, - 65,16,132,63,76,186,169,60,137,132,232,6,144,192,17,4,65,248,35,246, - 108,101,103,103,207,244,61,194,139,232,134,144,192,17,4,65,4,65,229,49, - 91,68,55,64,119,12,46,63,63,223,175,191,249,217,103,159,165,56,158,78, - 98,89,135,145,216,234,173,119,63,249,203,150,249,215,217,51,207,208,111,188, - 7,161,22,131,203,205,205,205,46,46,46,46,130,202,106,2,106,158,28,197, - 224,186,46,154,255,184,249,249,249,133,0,10,102,207,158,45,238,27,60,104, - 0,222,248,219,223,1,96,197,179,207,62,91,104,116,225,122,26,177,172,67, - 110,11,0,38,79,158,140,3,7,14,172,224,159,181,218,10,38,112,207,61, - 255,60,123,232,129,7,20,127,63,247,45,93,202,94,88,187,54,108,81,224, - 2,35,93,105,156,175,97,7,24,47,56,114,65,3,128,89,179,236,0,128, - 157,59,147,2,206,143,212,190,214,250,137,180,30,67,229,97,68,254,221,17, - 185,192,73,133,109,250,244,66,252,225,15,183,136,11,159,150,149,149,5,172, - 7,39,23,58,18,184,174,139,158,155,116,177,97,222,177,99,7,118,236,216, - 129,218,51,231,224,219,87,224,107,80,163,66,126,126,62,147,110,209,178,19, - 3,91,177,172,195,130,201,147,39,3,192,138,117,235,214,161,164,164,164,96, - 242,228,201,240,237,51,204,214,115,207,63,239,87,71,82,177,144,31,211,195, - 196,137,19,113,237,181,215,138,219,196,137,19,49,113,226,196,0,27,145,146, - 191,108,25,27,55,206,140,201,147,38,96,236,88,59,236,118,59,102,205,178, - 99,235,86,96,235,86,175,208,217,237,118,140,29,107,199,228,73,19,48,110, - 156,217,48,251,143,254,250,239,44,216,103,163,243,39,148,41,46,46,46,202, - 205,205,157,81,90,90,138,138,138,108,140,28,57,18,199,143,31,71,89,89, - 25,198,143,31,143,53,107,214,160,180,180,20,185,185,185,51,124,235,197,17, - 221,4,77,2,151,159,159,207,164,13,243,236,217,179,33,245,66,120,3,109, - 116,225,242,243,243,11,185,109,190,45,252,241,143,184,8,21,118,39,91,177, - 172,67,46,204,7,14,28,88,49,121,242,100,181,60,13,253,190,34,17,51, - 61,216,237,118,76,156,56,209,80,145,139,179,140,197,233,218,179,248,228,19, - 96,198,244,105,104,110,154,134,25,211,167,249,189,255,228,19,224,116,237,89, - 196,89,198,26,98,147,139,79,168,215,112,242,12,39,125,111,21,195,220,220, - 220,108,0,51,86,173,90,133,241,227,199,3,0,70,143,222,128,202,202,74, - 84,86,86,162,172,172,12,41,41,41,24,57,114,36,86,173,90,5,0,51, - 104,84,101,247,33,96,193,211,96,240,134,89,141,252,252,252,66,131,187,42, - 69,143,231,233,167,159,6,0,60,242,200,35,152,61,123,54,118,236,216,81, - 144,159,159,15,3,237,249,121,87,0,68,17,50,210,86,12,235,112,69,73, - 73,73,65,73,73,137,184,99,221,186,117,0,128,37,75,150,224,192,129,3, - 186,108,201,5,236,161,7,30,16,120,55,37,127,189,111,233,82,6,0,163, - 70,141,10,153,86,239,197,156,57,115,6,131,6,13,2,0,124,248,161,11, - 73,73,99,145,191,236,13,38,233,197,4,239,197,124,246,153,133,186,242,119, - 182,239,5,224,45,243,238,61,123,245,22,45,108,126,247,228,143,4,169,176, - 200,63,235,65,42,140,191,123,242,71,2,207,143,127,39,122,210,74,243,8, - 7,233,205,199,196,137,19,113,199,130,5,134,117,131,174,127,243,77,38,253, - 77,71,218,93,92,92,92,92,180,104,209,34,140,31,63,30,101,101,101,88, - 177,226,18,236,219,119,6,115,231,206,133,205,102,67,74,74,10,86,173,42, - 199,212,169,131,113,213,85,35,177,104,209,34,20,21,21,21,6,139,201,17, - 93,7,93,2,23,172,97,54,26,185,199,163,84,150,29,59,118,20,0,40, - 52,218,150,252,58,141,180,21,171,58,156,60,121,178,159,184,169,225,243,246, - 66,198,228,180,136,82,82,82,18,92,46,151,162,248,105,46,184,12,169,176, - 1,192,183,191,253,109,124,248,161,11,179,102,245,83,60,127,231,206,11,186, - 109,88,227,166,161,95,191,189,152,49,125,26,156,237,123,97,141,83,123,29, - 232,19,195,192,184,92,87,32,18,129,140,36,45,135,11,155,84,212,242,151, - 45,99,249,203,150,177,72,133,142,11,91,73,73,137,40,106,235,223,124,147, - 113,155,17,8,221,140,188,188,60,216,108,54,84,86,86,226,246,219,191,131, - 130,130,13,200,202,122,21,213,213,119,34,43,235,85,0,192,61,247,140,64, - 74,74,10,242,242,242,80,84,84,36,31,132,66,116,81,116,9,92,103,192, - 61,55,249,231,71,30,121,4,128,177,94,35,207,91,46,12,209,176,21,109, - 14,28,56,128,37,75,150,0,240,247,220,248,49,142,111,0,74,68,30,170, - 212,123,115,58,157,17,149,251,185,231,159,103,149,149,149,1,194,198,57,115, - 230,12,0,101,113,3,0,187,93,191,77,37,49,251,228,147,169,0,220,0, - 2,95,77,189,117,120,169,140,252,101,203,24,23,22,53,17,147,30,95,255, - 230,155,44,28,145,227,226,38,23,49,158,23,23,58,169,45,61,130,199,99, - 110,0,144,146,146,130,135,30,26,139,231,158,59,36,138,219,209,163,243,144, - 146,146,2,155,205,38,118,99,2,222,233,3,149,149,149,149,122,175,135,136, - 29,154,254,170,207,62,251,172,160,228,69,113,124,199,86,24,84,166,30,73, - 44,235,80,227,84,0,185,45,221,49,57,37,207,140,143,202,11,215,107,123, - 232,129,7,4,139,197,130,65,131,6,137,34,39,127,85,226,216,177,99,226, - 251,251,150,190,193,242,151,121,55,45,54,149,60,54,0,184,233,166,126,138, - 27,0,44,253,31,109,121,247,116,180,122,104,207,62,243,140,160,165,71,65, - 9,37,113,147,114,199,130,5,2,143,203,134,19,155,229,49,182,236,236,108, - 216,108,54,60,252,240,56,241,24,23,55,126,158,205,102,11,231,18,136,78, - 66,147,7,199,7,45,40,117,223,73,27,230,104,120,55,220,123,146,123,110, - 209,32,154,121,199,178,14,37,131,76,0,40,122,110,43,0,128,199,232,194, - 137,201,73,225,222,155,93,193,125,138,164,123,82,77,204,164,28,59,118,204, - 47,230,199,5,8,208,222,93,169,228,193,121,61,54,101,60,30,32,55,55, - 30,192,27,108,237,154,224,241,62,165,110,191,198,70,237,113,62,121,250,112, - 98,99,106,93,143,122,202,161,134,221,110,71,82,82,146,161,113,182,112,184, - 99,193,2,33,127,217,50,198,203,163,7,62,90,146,79,13,176,217,108,168, - 174,190,83,140,193,113,108,54,155,232,233,17,221,131,144,2,39,27,42,191, - 194,23,139,146,18,21,113,243,121,33,76,45,102,21,5,143,39,106,182,98, - 89,135,114,91,0,10,164,93,146,144,136,91,68,118,100,222,145,221,254,9, - 146,146,166,2,88,27,73,182,138,40,9,157,92,216,164,251,59,80,239,202, - 148,162,236,193,185,131,218,44,46,110,131,201,228,173,135,96,131,90,148,4, - 73,203,192,143,96,233,245,162,150,135,158,114,168,193,197,68,111,183,160,209, - 112,207,77,175,184,1,216,189,122,245,234,25,107,214,172,17,197,77,250,42, - 37,37,37,5,171,87,175,6,128,221,134,20,154,136,58,65,5,78,161,177, - 196,179,207,62,43,200,135,205,71,195,115,147,123,60,82,239,42,90,30,79, - 52,188,171,88,214,161,86,91,147,39,79,230,115,228,0,248,199,228,52,217, - 145,52,234,254,239,167,70,181,219,78,42,116,163,70,141,18,5,71,254,202, - 57,117,202,24,15,206,8,47,177,39,210,149,158,240,18,110,89,178,179,179, - 11,139,138,138,118,229,229,229,249,121,112,114,113,3,188,158,94,81,81,17, - 178,179,179,11,1,52,68,88,100,34,6,168,10,156,74,99,89,40,125,141, - 22,157,233,241,24,105,43,150,117,24,202,86,126,126,62,147,138,154,2,17, - 121,195,220,163,11,229,209,104,165,164,164,68,245,73,38,73,73,222,185,104, - 74,30,92,56,88,44,223,134,179,253,195,0,15,206,72,47,49,150,68,50, - 26,50,90,243,225,120,156,46,28,120,124,45,26,130,234,27,234,191,251,225, - 135,31,158,177,106,213,170,0,145,227,175,101,101,101,120,248,225,135,129,14, - 239,173,1,36,114,93,30,69,129,11,214,88,70,155,174,232,241,24,45,110, - 70,19,202,150,60,38,199,133,78,30,147,139,180,124,74,94,93,120,249,4, - 111,200,228,221,163,145,8,221,179,207,60,35,120,187,183,146,0,148,162,227, - 117,172,161,94,98,48,140,120,162,137,116,238,155,158,121,108,74,243,240,140, - 232,22,229,40,77,29,208,203,29,11,22,8,6,77,9,80,36,59,59,187, - 176,184,184,184,112,194,132,9,51,22,45,90,132,188,188,60,140,31,63,94, - 140,185,201,31,213,5,159,176,85,86,86,146,192,117,113,2,4,174,11,138, - 91,97,52,202,16,77,91,93,81,220,36,199,21,99,114,122,202,247,236,51, - 11,5,46,50,70,120,107,70,17,174,208,41,53,152,252,250,140,242,18,229, - 168,9,146,244,115,184,49,50,189,2,37,61,223,72,113,3,140,19,163,104, - 14,98,241,121,113,185,217,217,217,185,69,69,69,133,10,243,220,184,176,1, - 29,158,27,137,91,55,64,201,131,227,15,229,245,107,248,242,243,243,153,158, - 39,209,135,115,190,172,12,157,38,10,6,160,88,135,74,229,144,214,145,222, - 58,11,101,43,154,30,106,103,10,155,215,246,27,190,7,50,43,159,35,233, - 209,52,132,104,9,29,16,40,42,70,139,140,30,219,189,25,169,208,41,28, - 150,138,90,3,121,111,221,3,197,31,55,111,0,149,26,75,45,13,176,158, - 115,165,231,251,232,238,226,198,237,20,6,203,91,169,142,244,214,91,48,91, - 70,92,167,222,249,204,93,209,171,11,151,252,101,111,48,181,167,165,72,217, - 185,243,66,143,184,222,222,132,218,114,57,82,84,214,128,83,20,54,90,77, - 160,235,18,174,135,165,9,29,2,87,8,13,30,143,17,196,210,150,130,237, - 168,213,97,16,59,97,95,103,111,126,96,135,52,206,23,202,75,36,129,235, - 94,48,18,164,94,131,110,129,139,134,7,231,75,83,232,75,83,168,53,77, - 184,196,210,86,144,50,24,230,193,41,229,235,35,34,17,239,205,2,71,244, - 92,72,224,122,15,186,158,69,169,181,225,245,197,121,116,253,136,98,41,54, - 93,225,121,146,106,117,100,192,234,222,154,226,127,4,65,16,61,29,234,90, - 233,129,24,229,161,146,7,71,244,68,200,131,235,61,144,192,17,170,80,240, - 156,32,136,238,12,221,164,19,4,65,16,61,18,18,56,130,32,8,162,71, - 34,144,194,17,68,247,130,98,72,4,161,13,210,55,130,32,8,162,71,162, - 107,154,0,65,244,36,60,128,161,158,144,73,54,104,43,218,249,19,4,17, - 28,191,46,202,88,254,33,201,86,228,182,98,133,209,215,36,197,136,235,11, - 85,190,72,108,172,93,93,196,0,96,105,222,162,168,124,15,225,228,79,93, - 148,4,161,13,63,15,78,107,67,192,255,148,161,88,154,183,72,245,88,44, - 109,189,176,186,72,75,22,134,52,98,177,180,165,133,27,111,186,153,1,192, - 251,91,183,132,109,207,4,8,30,128,73,175,237,190,188,69,126,223,97,164, - 199,35,133,49,229,159,137,32,116,250,253,1,65,16,157,68,68,49,184,231, - 255,50,81,241,85,47,163,198,29,102,74,175,209,192,168,50,27,69,180,175, - 125,203,214,45,216,178,117,139,145,89,118,10,30,128,241,45,26,249,107,249, - 30,244,124,87,209,248,13,71,243,127,65,16,61,145,176,98,112,82,81,80, - 18,140,7,238,42,209,156,151,90,163,209,241,103,214,158,87,40,212,196,173, - 51,68,78,218,88,41,93,251,177,242,171,12,237,186,243,0,172,43,116,119, - 70,194,127,118,182,2,0,174,155,149,104,232,181,4,255,13,150,132,60,71, - 254,93,25,253,61,202,127,43,255,61,52,38,210,44,9,162,87,16,246,32, - 147,107,39,39,43,238,255,232,64,75,167,230,213,149,108,133,34,154,101,225, - 226,198,133,128,123,63,145,10,67,168,27,152,72,143,199,26,46,30,242,239, - 226,207,47,231,224,238,159,87,136,159,175,157,156,28,176,15,240,126,87,114, - 33,227,121,5,251,30,149,190,139,96,223,143,180,124,255,61,20,234,170,8, - 130,0,66,116,81,170,117,9,169,53,204,252,216,193,195,211,53,25,255,217, - 207,43,24,207,235,207,47,231,224,207,47,231,104,182,163,151,131,135,167,135, - 44,183,156,104,118,137,41,53,168,252,250,175,157,156,140,159,253,188,34,34, - 187,74,13,165,17,226,118,237,228,100,85,143,55,210,227,90,249,207,206,86, - 195,6,190,92,59,57,89,241,187,80,67,233,55,170,246,187,82,251,30,131, - 149,93,239,255,141,32,8,117,130,10,156,244,238,63,218,5,225,119,198,193, - 26,151,88,34,247,128,162,9,191,102,185,119,16,41,67,134,12,17,69,122, - 200,144,33,17,231,199,27,218,96,13,122,36,199,229,200,227,110,215,205,74, - 212,87,224,48,8,246,93,24,241,27,13,246,187,138,229,255,141,32,122,3, - 33,7,153,244,70,145,235,9,226,6,0,181,53,53,130,210,251,238,128,7, - 96,255,217,217,10,249,198,69,206,72,47,142,163,229,187,136,228,55,170,229, - 119,69,34,71,16,198,161,41,6,199,135,137,199,98,160,194,221,63,175,16, - 187,235,162,209,232,135,162,167,136,27,0,220,243,63,75,216,186,53,235,196, - 247,47,173,89,215,45,68,142,139,155,18,92,228,212,142,107,69,222,117,40, - 21,44,191,247,65,242,144,254,70,121,126,127,125,57,39,160,142,127,246,243, - 10,38,205,83,42,94,188,59,95,73,208,34,237,166,38,136,222,142,40,112, - 193,254,240,82,180,222,89,134,138,195,73,237,169,217,250,243,203,57,128,198, - 198,255,103,63,175,96,74,141,139,150,178,112,228,163,14,165,199,228,34,164, - 214,144,29,60,172,201,148,106,131,42,181,21,236,154,180,192,197,141,191,239, - 105,207,101,243,137,93,88,34,192,235,149,255,14,249,141,21,127,207,153,116, - 213,30,0,254,191,33,165,243,130,125,79,127,125,57,71,48,65,249,230,105, - 210,85,123,188,194,40,155,51,168,84,70,130,32,244,33,10,156,252,15,42, - 111,12,101,127,206,144,127,184,73,87,237,193,95,131,28,255,235,203,57,130, - 180,113,145,34,109,64,120,3,19,138,96,19,167,39,93,181,71,147,200,113, - 79,149,191,151,149,55,100,250,191,190,156,35,104,157,152,14,149,6,85,158, - 159,166,188,20,184,241,166,155,217,150,173,91,252,186,188,110,188,233,102,166, - 119,194,119,40,145,13,118,156,31,147,123,48,122,242,143,37,90,122,15,34, - 241,186,181,244,132,196,178,7,129,32,122,58,154,110,234,123,82,183,93,40, - 122,74,204,81,42,110,128,247,186,194,153,240,45,189,17,145,35,21,176,96, - 105,67,9,160,238,66,69,145,96,223,137,17,191,205,96,191,47,18,55,130, - 48,150,144,2,215,155,196,141,211,221,69,110,194,196,73,170,229,14,118,76, - 13,53,17,226,251,67,117,207,133,115,76,11,215,205,74,140,248,119,249,209, - 129,150,128,249,106,90,6,153,4,75,47,63,46,71,203,32,19,41,127,125, - 57,71,232,140,121,154,4,209,221,9,58,200,164,55,138,27,167,59,15,172, - 57,88,114,80,117,24,250,193,146,131,172,171,199,226,76,128,112,221,172,68, - 197,129,38,70,12,48,145,114,172,252,42,97,212,184,195,76,46,32,151,141, - 59,140,143,14,180,96,210,85,222,207,31,29,104,17,247,41,229,33,253,172, - 69,140,194,153,167,72,34,71,16,250,8,57,15,78,233,79,23,234,142,85, - 107,220,76,122,103,122,247,207,43,20,239,142,141,98,210,85,123,194,186,211, - 142,150,184,41,121,13,252,250,63,58,208,18,182,119,51,97,234,164,160,130, - 108,2,132,9,83,245,123,113,177,198,39,114,144,111,146,199,117,25,118,227, - 197,5,74,237,85,235,57,74,231,26,241,168,174,80,246,8,130,80,38,236, - 71,117,25,41,62,177,188,51,237,74,119,193,209,40,203,193,79,14,134,236, - 119,214,114,142,18,31,29,104,193,181,147,147,85,203,29,233,113,57,242,213, - 8,140,244,220,228,232,21,46,181,115,228,231,70,163,140,4,65,104,35,172, - 222,42,254,44,65,165,87,189,207,25,148,222,229,234,105,64,194,65,90,62, - 181,215,88,17,236,154,195,189,238,9,19,131,123,111,28,19,32,132,19,139, - 123,224,174,18,124,116,160,69,181,174,34,61,174,21,35,189,55,130,32,122, - 46,97,123,112,70,11,68,180,197,77,74,103,139,27,199,232,107,46,45,57, - 168,57,189,158,115,165,132,170,171,72,143,199,18,45,131,136,238,235,88,103, - 48,228,185,225,172,232,29,73,254,4,65,4,199,79,224,180,142,26,148,252, - 41,131,18,204,61,140,165,45,173,121,64,99,153,130,53,52,177,180,213,219, - 224,143,233,50,170,78,162,93,183,244,221,17,68,231,18,214,138,222,70,64, - 182,8,61,80,189,18,4,161,23,161,171,15,25,39,58,159,104,206,7,52, - 66,184,66,149,175,167,137,35,19,132,46,63,10,150,32,186,2,36,112,68, - 175,131,4,130,32,122,7,164,111,4,65,16,68,143,132,4,142,32,8,130, - 232,145,80,23,37,65,116,51,168,139,149,32,180,65,250,70,16,4,65,244, - 72,194,158,232,77,16,221,157,101,143,60,98,168,39,244,204,211,79,251,141, - 214,44,92,185,210,208,252,11,151,47,239,81,163,65,9,34,218,248,117,81, - 254,166,160,192,208,63,228,111,87,172,80,253,67,146,173,200,109,197,10,163, - 175,73,138,17,215,23,170,124,145,216,248,104,239,65,6,0,215,78,155,20, - 149,239,97,255,167,229,12,0,174,254,214,56,205,249,83,23,37,65,104,35, - 172,24,220,190,125,101,154,254,96,83,166,140,143,184,81,48,194,86,119,43, - 175,145,188,254,183,191,49,0,248,201,143,127,28,145,189,223,20,20,176,27, - 111,184,77,252,252,254,182,205,126,194,17,233,241,72,203,86,88,88,168,120, - 172,176,176,144,4,142,32,122,41,17,197,224,62,45,187,72,241,85,47,207, - 191,80,203,148,94,163,129,81,101,54,138,104,95,251,177,99,199,112,236,216, - 49,35,179,236,20,126,83,80,192,248,22,141,252,127,255,135,211,76,233,85, - 239,57,156,53,47,158,49,188,156,209,200,147,32,122,50,97,9,220,167,101, - 23,169,10,133,94,193,80,107,224,159,127,161,150,25,221,216,7,43,115,172, - 133,78,122,125,209,18,57,169,24,68,179,155,49,86,252,244,206,255,197,79, - 239,252,95,195,175,69,77,184,164,2,166,229,28,14,23,34,163,4,105,205, - 139,103,152,209,121,18,68,111,32,108,15,46,107,136,85,113,235,236,188,186, - 146,173,206,44,11,23,129,223,174,88,33,240,46,58,35,132,33,212,141,64, - 164,199,99,13,23,168,161,153,86,191,237,220,233,63,96,104,102,199,119,33, - 221,39,221,164,121,112,178,134,196,33,107,72,92,80,187,74,3,80,130,13, - 74,225,121,134,202,151,32,136,14,130,10,156,90,151,80,176,70,56,107,136, - 21,53,103,134,106,50,190,241,189,58,198,243,42,43,125,30,101,165,207,107, - 182,163,151,154,51,67,67,150,91,78,52,187,196,228,246,164,215,159,53,196, - 138,141,239,213,69,100,87,41,238,20,105,204,235,211,178,139,144,53,196,170, - 42,82,145,30,215,138,145,94,156,84,168,56,7,15,252,94,245,124,249,49, - 165,244,156,172,33,113,216,188,37,240,123,12,38,100,74,199,72,212,8,34, - 60,130,10,156,145,119,254,161,24,63,225,1,0,8,16,185,206,66,234,1, - 69,219,22,191,102,94,7,70,145,154,154,42,138,116,106,106,106,196,249,113, - 81,86,187,81,136,244,184,28,121,220,237,181,87,255,159,190,2,135,1,23, - 176,73,147,127,21,112,140,239,11,38,128,161,224,2,166,52,228,159,239,51, - 122,122,1,65,244,86,66,118,81,246,70,145,235,9,226,6,0,191,250,229, - 47,5,165,247,221,129,223,20,20,48,30,115,147,110,92,228,162,17,139,11, - 38,110,156,72,68,46,152,184,137,231,144,200,17,132,97,104,154,232,253,219, - 21,43,4,126,39,29,237,70,127,252,132,7,196,238,186,104,52,250,161,232, - 41,226,6,0,239,189,191,133,29,220,127,80,124,127,235,141,55,119,11,145, - 227,226,166,4,23,57,181,227,90,121,235,221,11,126,2,34,21,44,191,247, - 65,242,56,120,224,247,162,224,241,252,126,56,191,95,64,29,111,222,82,199, - 202,203,254,40,126,150,138,87,205,217,75,2,246,73,211,133,186,14,130,32, - 212,17,5,78,30,243,81,243,162,180,222,53,135,138,195,73,237,169,217,42, - 43,125,30,208,216,248,111,124,175,142,125,255,214,12,197,6,92,107,76,48, - 216,168,67,185,8,41,217,218,248,94,29,171,57,163,201,148,223,53,203,175, - 159,219,10,118,77,90,224,226,38,127,223,83,240,137,92,88,34,192,133,136, - 11,211,164,201,191,82,244,224,50,7,127,13,0,56,85,59,76,220,167,116, - 158,146,176,113,110,187,57,195,207,43,147,122,112,251,63,189,133,1,192,109, - 146,125,252,60,158,142,132,142,32,194,67,20,184,80,13,169,212,179,217,248, - 222,3,33,255,112,67,6,85,5,61,254,253,91,51,4,46,114,114,241,144, - 122,54,161,242,225,4,155,56,61,100,80,149,38,145,227,158,42,127,239,127, - 116,69,200,244,223,191,53,67,208,58,209,27,62,79,21,80,247,224,34,17, - 183,215,255,246,55,118,236,216,49,191,46,230,215,255,246,55,166,119,194,119, - 40,145,13,118,156,31,219,248,94,29,83,187,137,137,84,196,141,132,139,156, - 212,51,147,163,165,27,83,141,194,229,203,133,194,149,43,89,225,202,149,76, - 173,155,82,75,55,38,65,16,218,208,52,77,160,39,117,219,133,162,167,196, - 28,165,226,6,120,175,43,156,9,223,210,27,17,57,82,1,11,150,54,148, - 0,234,46,84,20,9,22,99,139,68,220,56,193,98,108,36,110,4,97,44, - 33,5,174,55,137,27,167,187,139,220,11,235,94,84,45,119,176,99,106,168, - 137,16,223,31,76,164,194,61,166,133,215,94,253,127,17,255,46,171,78,57, - 81,117,202,233,183,79,203,32,147,96,233,165,84,215,180,7,236,211,50,200, - 68,202,109,55,103,8,74,249,16,4,17,156,144,243,224,128,222,37,110,156, - 238,44,114,53,167,107,84,231,193,213,156,174,49,196,70,52,249,237,138,21, - 130,218,148,0,35,6,152,72,249,213,131,23,9,64,135,80,241,109,192,69, - 15,250,9,151,116,159,116,147,230,193,169,174,105,23,55,53,130,77,19,80, - 35,84,158,4,65,248,19,114,30,156,82,67,89,93,19,236,142,213,169,57, - 110,246,253,91,51,4,158,215,248,9,15,4,136,91,48,59,122,25,50,168, - 42,100,185,229,168,93,191,17,200,237,73,175,191,186,198,25,182,119,243,194, - 203,47,6,29,233,250,219,21,43,132,23,94,214,239,197,197,26,46,114,242, - 141,139,155,17,222,27,135,11,148,218,171,214,115,56,255,115,239,32,129,191, - 242,247,145,34,205,211,136,252,8,162,55,16,246,122,112,70,138,143,145,121, - 117,37,91,161,136,70,89,106,78,133,246,208,180,156,163,68,117,141,19,89, - 67,172,170,229,142,244,184,28,249,106,4,70,122,110,114,180,8,151,150,115, - 56,209,16,34,18,55,130,208,71,88,207,162,252,214,248,211,170,175,252,189, - 86,30,184,111,176,240,192,125,131,5,254,94,233,213,40,164,229,83,123,141, - 21,193,174,57,220,235,126,97,93,112,239,141,243,219,21,43,132,112,98,113, - 223,26,127,26,213,53,78,213,186,138,244,184,86,140,244,222,8,130,232,185, - 132,237,193,25,45,16,209,22,55,41,157,45,110,28,163,175,249,190,37,247, - 106,78,175,231,92,41,161,234,42,210,227,177,68,203,138,222,155,183,188,163, - 249,220,112,86,244,254,231,191,254,161,249,92,26,93,73,16,250,240,19,56, - 173,3,42,222,223,182,57,98,195,177,180,165,53,15,173,101,10,230,61,196, - 210,86,111,131,15,60,49,170,78,228,130,100,52,36,72,4,209,185,248,9, - 92,44,27,83,178,69,232,129,234,149,32,8,189,8,17,45,233,77,244,10, - 162,57,85,194,8,225,10,85,190,158,38,142,76,16,186,252,40,88,130,232, - 10,144,192,17,189,14,18,8,130,232,29,144,190,17,4,65,16,61,18,18, - 56,130,32,8,162,71,18,246,52,1,130,232,138,80,247,35,65,16,28,242, - 224,8,130,32,136,30,9,9,28,65,16,4,209,35,9,217,69,233,145,172, - 152,108,2,130,14,183,214,115,110,168,180,70,230,101,212,185,161,210,82,153, - 141,57,55,84,218,72,242,34,8,162,247,160,201,131,219,185,179,1,59,119, - 54,248,53,52,114,60,0,227,231,233,69,45,173,22,187,0,224,102,140,185, - 25,243,59,71,107,153,25,99,144,37,213,92,102,165,180,90,203,172,68,87, - 175,103,37,120,29,132,83,102,165,239,77,107,90,45,118,9,130,232,221,80, - 23,37,65,16,4,209,35,209,37,112,106,119,249,252,46,59,28,180,164,13, - 230,93,132,242,0,130,149,57,28,207,77,107,218,112,61,162,96,105,59,179, - 158,67,161,230,77,105,177,171,246,29,106,73,75,94,28,65,16,106,40,10, - 156,7,96,124,3,128,89,179,210,52,103,200,207,149,231,161,55,173,94,187, - 130,32,32,220,50,11,130,16,118,153,165,105,245,218,237,142,245,44,183,199, - 175,63,156,50,135,155,86,175,93,130,32,122,39,1,143,234,82,187,107,158, - 53,43,77,140,131,204,154,149,38,6,247,165,231,75,207,145,167,85,26,12, - 160,53,173,146,93,160,227,206,95,16,4,93,105,165,30,88,176,180,106,101, - 214,146,86,173,204,74,249,72,145,230,25,172,158,213,210,106,169,103,61,118, - 213,242,145,95,175,180,78,244,254,54,120,90,179,68,181,244,166,229,118,105, - 30,28,65,16,28,63,125,11,214,37,180,115,103,67,208,59,125,181,70,136, - 167,13,230,97,132,74,27,204,174,154,200,24,145,54,88,153,35,177,27,172, - 139,147,49,22,178,158,131,165,13,85,207,225,218,13,245,219,8,230,81,133, - 250,126,163,149,150,32,136,222,77,88,131,76,120,227,31,237,152,144,154,93, - 32,116,236,77,45,109,180,99,111,106,118,195,177,215,21,234,89,47,92,100, - 195,177,203,191,211,112,210,82,44,142,32,8,57,52,138,146,32,8,130,232, - 145,144,192,17,4,65,16,61,146,176,4,142,15,66,48,1,130,158,17,120, - 50,195,186,211,74,7,63,152,117,6,95,164,101,14,55,110,19,78,90,181, - 1,27,122,210,118,102,61,235,133,15,246,8,199,46,255,78,195,73,171,54, - 192,134,32,136,222,139,73,246,65,181,97,9,22,236,7,130,15,172,8,213, - 96,134,74,27,204,110,176,193,17,145,166,13,86,230,72,236,6,19,202,96, - 131,87,128,224,3,43,66,53,242,161,210,134,42,115,176,235,13,22,155,12, - 245,253,70,43,45,65,16,189,27,197,21,189,149,130,245,193,134,144,203,135, - 116,203,9,214,232,134,74,27,106,232,186,116,170,128,222,50,75,135,152,235, - 45,115,176,180,161,202,44,205,71,111,153,59,171,158,131,149,89,105,138,128, - 86,187,74,83,4,244,166,149,218,165,105,2,4,65,112,20,187,40,121,23, - 19,111,52,244,140,104,227,231,202,243,208,155,86,175,93,198,24,194,45,51, - 111,40,195,41,179,52,173,94,187,221,177,158,229,246,244,120,80,242,50,135, - 155,86,175,93,130,32,122,39,186,98,112,106,119,247,209,142,17,5,243,42, - 66,197,226,130,149,57,154,177,56,35,98,111,74,118,59,171,158,67,161,214, - 61,170,197,174,218,119,168,37,45,197,222,8,130,80,131,70,81,18,4,65, - 16,61,18,197,24,156,148,238,184,230,23,149,89,123,218,158,86,102,138,193, - 17,4,193,9,41,112,4,209,157,32,129,35,8,130,67,250,70,16,4,65, - 244,72,72,224,8,130,32,136,30,137,5,0,22,175,44,101,78,71,51,0, - 192,154,144,138,87,150,79,240,139,107,240,227,242,99,106,251,149,48,34,143, - 80,121,203,203,47,221,111,177,36,226,47,43,175,142,250,104,59,163,108,242, - 124,228,121,168,237,55,42,143,80,191,5,241,188,229,251,153,211,105,135,213, - 154,132,148,244,76,252,225,161,33,134,214,45,117,53,18,4,17,41,194,61, - 43,75,89,249,222,34,156,63,117,4,0,208,63,243,114,140,155,182,72,108, - 216,230,253,226,29,246,223,242,45,176,219,206,35,99,240,8,140,153,178,16, - 127,89,121,181,32,223,47,77,35,199,136,60,148,184,107,249,126,118,174,230, - 8,190,62,178,19,182,134,26,191,242,3,128,244,186,82,210,134,96,216,229, - 179,48,96,200,229,154,133,193,227,114,135,44,131,201,98,22,133,96,177,172, - 46,245,216,148,219,47,223,91,132,186,218,175,144,148,210,31,151,142,187,25, - 27,254,244,3,225,174,229,251,217,103,251,222,8,216,111,84,30,242,242,203, - 127,11,156,159,62,90,204,142,125,246,79,212,157,253,10,201,201,253,112,241, - 240,201,200,24,56,10,25,131,70,5,8,29,23,66,143,211,25,186,46,173, - 86,88,173,73,120,101,229,213,180,174,27,65,16,17,99,113,58,154,113,254, - 212,17,20,127,240,23,212,214,214,98,193,162,95,195,97,243,78,170,157,247, - 139,119,216,231,251,254,142,170,175,62,194,254,143,255,131,91,110,127,16,141, - 231,171,112,243,226,162,128,253,60,141,28,35,242,144,195,133,109,255,142,63, - 162,254,92,5,46,156,57,142,47,63,63,224,87,126,147,197,44,94,87,83, - 83,19,174,190,230,58,212,159,171,64,250,128,28,220,188,184,136,169,137,142, - 180,145,111,111,119,132,44,75,92,92,2,250,103,94,46,138,98,56,54,229, - 72,243,185,236,202,201,104,119,216,112,243,226,34,214,120,190,42,96,255,188, - 95,188,195,148,68,46,156,60,28,182,6,213,223,2,0,60,248,92,13,171, - 59,115,12,53,21,251,113,234,171,143,240,209,127,222,196,21,99,167,226,220, - 233,35,24,112,209,229,184,120,248,100,252,244,209,98,198,133,110,241,242,253, - 236,191,135,254,129,51,223,28,129,211,217,18,178,46,173,214,100,12,186,248, - 114,44,94,190,159,189,252,219,111,133,60,159,32,8,34,24,22,143,203,141, - 246,118,7,154,154,154,208,208,208,128,246,118,7,90,109,23,252,4,136,139, - 135,173,225,52,170,190,250,16,117,181,95,161,166,178,4,95,126,126,0,39, - 79,158,84,21,2,169,184,133,155,135,20,53,97,107,106,106,66,109,109,173, - 88,126,0,224,215,197,41,222,177,5,73,73,73,33,69,71,42,12,193,104, - 106,106,2,0,216,237,118,63,33,8,199,166,28,105,217,139,119,108,65,238, - 236,155,209,238,114,32,99,240,8,216,26,78,251,237,231,245,44,23,57,189, - 121,220,188,184,136,181,218,46,4,252,22,56,15,62,87,195,170,143,127,136, - 138,47,118,160,246,228,33,52,94,168,130,211,233,196,190,189,219,225,114,185, - 48,45,247,123,1,66,87,127,254,107,84,127,125,0,187,223,127,197,91,183, - 65,188,184,182,182,54,180,180,180,224,39,247,61,133,97,163,103,7,173,123, - 130,32,8,45,88,164,31,92,46,23,218,90,234,3,4,136,139,71,115,67, - 13,254,91,186,5,78,123,3,254,251,229,33,212,214,214,138,13,189,28,37, - 113,211,155,7,71,77,216,0,136,141,113,93,93,29,108,54,27,226,226,18, - 2,210,219,237,118,52,52,52,192,233,116,134,20,29,169,48,52,53,53,193, - 110,183,171,54,204,118,187,29,46,151,75,60,223,100,49,35,46,46,65,44, - 19,79,27,174,208,241,122,217,254,207,13,248,206,245,55,227,92,205,81,56, - 237,13,126,251,175,255,222,60,177,190,149,60,57,173,121,112,241,107,107,169, - 7,224,253,45,72,169,62,254,33,14,239,127,11,53,21,251,241,197,161,79, - 224,116,58,209,214,214,134,134,6,175,176,127,176,245,109,196,197,197,225,186, - 239,206,21,133,46,37,109,16,92,14,27,0,160,190,190,30,109,109,109,104, - 111,111,87,188,86,46,112,78,103,139,166,238,76,130,32,136,80,88,228,59, - 228,2,196,27,107,135,195,129,54,71,35,218,28,141,168,172,172,68,83,83, - 19,206,159,63,175,40,42,114,113,11,39,15,64,155,176,53,53,53,193,102, - 179,193,229,114,97,241,146,135,48,226,202,239,194,154,144,2,167,175,97,5, - 58,60,7,187,221,30,82,116,106,43,15,194,213,102,23,207,231,13,184,18, - 46,151,11,54,91,135,29,107,66,42,210,6,14,199,213,215,92,135,205,239, - 190,14,151,203,133,166,166,38,88,44,22,93,66,199,133,146,151,221,110,183, - 227,223,219,183,96,250,244,233,126,215,100,183,219,85,69,78,111,30,82,241, - 147,179,120,249,126,86,178,251,101,212,84,236,71,217,129,221,104,110,110,70, - 75,75,11,108,54,27,218,219,219,253,110,0,214,191,182,14,201,201,201,88, - 120,215,35,72,109,201,68,75,227,89,81,12,165,117,37,133,231,97,183,219, - 85,235,154,32,8,66,47,126,2,103,177,88,2,4,168,166,166,6,54,155, - 13,243,231,207,7,0,124,246,217,103,162,55,214,208,208,224,39,42,128,178, - 184,233,205,67,175,176,221,189,120,41,210,250,15,195,136,43,191,139,75,199, - 221,140,191,172,188,90,88,248,171,157,170,131,20,212,132,238,220,169,207,225, - 118,181,161,217,55,96,37,88,151,26,224,21,56,169,167,243,202,242,9,194, - 188,95,188,195,92,206,86,220,185,248,81,52,156,255,26,27,222,253,155,110, - 161,147,10,229,246,127,110,16,203,188,103,207,30,76,159,62,29,99,198,140, - 193,158,61,123,196,253,74,34,167,55,15,185,248,73,113,58,237,168,175,63, - 137,178,3,187,69,79,89,42,108,92,152,92,46,23,126,182,248,62,196,39, - 164,2,0,28,246,122,216,154,207,2,128,232,185,169,121,112,60,61,65,16, - 132,81,248,9,92,82,82,18,0,175,0,169,9,19,0,81,152,238,94,188, - 20,23,143,152,42,138,202,226,149,165,236,224,206,23,67,138,91,168,60,202, - 247,22,225,244,215,165,1,194,198,61,42,155,205,6,135,195,129,187,23,47, - 69,106,218,16,100,95,54,19,163,38,220,162,123,180,162,84,232,182,255,115, - 3,172,86,43,166,76,153,34,218,11,7,62,82,241,92,205,17,28,43,253, - 7,22,45,94,134,230,134,26,188,183,249,45,85,155,185,179,111,70,253,185, - 10,12,184,248,10,44,94,89,202,184,80,54,213,85,227,59,215,223,140,127, - 111,223,34,166,251,224,131,15,48,103,206,28,76,159,62,29,123,246,236,17, - 247,30,228,10,192,0,0,32,0,73,68,65,84,111,126,247,117,220,54,255, - 39,136,75,72,193,93,203,247,135,149,7,23,63,57,188,203,176,174,174,14, - 103,206,156,193,45,183,220,10,0,248,199,63,222,131,211,233,132,197,98,193, - 252,249,63,0,0,164,164,93,132,212,190,67,208,220,88,131,15,119,189,135, - 43,175,188,42,172,122,36,8,130,136,20,191,137,222,188,241,227,66,226,114, - 185,68,97,218,183,111,31,0,136,251,23,44,88,0,107,82,26,134,100,142, - 19,135,153,59,29,205,104,170,171,22,197,141,199,168,244,230,81,87,251,21, - 182,109,90,135,253,31,255,199,111,0,137,180,76,11,23,46,132,53,41,13, - 153,163,166,97,212,132,91,176,229,149,69,66,56,115,206,184,119,85,87,87, - 135,243,231,207,227,131,15,62,16,69,56,92,254,178,242,106,97,203,43,139, - 132,81,19,110,65,230,168,105,176,38,165,97,206,156,57,152,51,103,142,120, - 19,193,109,214,214,214,226,221,55,255,138,63,175,93,142,166,186,106,240,57, - 104,27,254,244,3,97,72,246,56,88,147,210,48,125,250,116,36,37,37,137, - 93,162,31,124,240,1,0,4,236,127,243,141,151,97,107,168,129,203,213,26, - 86,30,77,77,77,216,179,103,143,88,207,114,218,219,219,49,239,246,31,35, - 37,237,34,196,37,164,32,35,35,3,243,231,255,64,20,183,189,123,63,68, - 155,163,25,205,141,53,104,243,93,7,224,141,175,17,4,65,196,26,63,129, - 115,185,92,152,51,103,142,56,64,194,98,177,96,235,214,173,0,128,41,83, - 166,136,119,250,124,191,211,222,128,154,83,229,152,247,139,119,24,224,141,65, - 245,201,200,194,101,87,78,22,189,148,112,242,200,24,60,2,55,204,93,130, - 171,175,185,14,53,53,53,98,151,164,203,229,130,197,98,193,7,31,124,128, - 61,123,246,192,105,111,192,169,99,123,113,172,244,31,184,121,113,17,187,107, - 249,126,205,115,167,92,46,23,28,14,7,28,14,7,108,54,27,108,54,27, - 26,26,26,48,103,206,28,140,25,51,38,162,120,208,93,203,247,179,155,23, - 23,177,99,165,255,192,169,99,123,225,180,55,160,178,178,82,20,78,46,50, - 124,155,55,255,199,184,123,233,74,244,201,200,130,213,215,189,55,239,23,239, - 176,154,202,114,49,45,79,7,0,115,230,204,1,208,225,13,243,235,88,176, - 240,231,72,73,27,2,139,37,49,172,60,108,54,27,166,79,159,46,222,152, - 112,76,86,171,248,62,62,33,21,169,125,135,32,62,33,21,211,166,125,27, - 0,80,94,94,134,242,242,50,196,197,197,161,221,97,131,173,225,52,142,28, - 46,69,75,75,139,159,77,130,32,136,88,162,248,168,46,222,248,1,16,5, - 5,240,10,20,247,64,44,22,11,222,219,252,22,106,42,75,240,223,242,45, - 98,183,216,240,203,103,99,232,136,107,197,225,231,225,228,49,102,202,66,76, - 152,177,24,35,174,252,46,238,92,252,40,110,189,237,135,0,2,99,94,187, - 139,255,133,157,219,223,66,213,87,31,161,116,247,43,216,191,227,143,162,80, - 170,33,21,54,190,241,56,94,254,163,255,135,254,131,71,35,62,161,175,88, - 70,189,204,251,197,59,108,255,142,63,162,116,247,43,168,250,234,35,28,220, - 183,205,111,176,78,93,93,157,232,33,113,155,35,199,221,140,9,51,22,99, - 194,244,187,197,9,227,39,142,236,240,214,139,47,109,83,83,19,28,14,135, - 95,87,175,221,110,23,247,47,94,242,16,134,142,184,214,175,171,87,111,30, - 11,22,44,0,224,237,170,182,88,58,122,175,173,214,36,12,206,28,139,5, - 139,150,33,46,46,81,244,208,170,170,42,113,252,248,49,0,16,7,145,236, - 221,251,33,62,253,116,31,206,156,57,131,250,250,250,176,234,144,32,8,194, - 8,2,70,81,198,39,244,133,53,41,13,183,222,246,67,49,110,227,114,185, - 176,117,235,86,220,116,211,77,126,113,27,151,203,133,119,223,252,43,238,255, - 229,42,113,212,226,134,63,253,64,224,34,115,253,247,230,97,251,63,55,232, - 206,131,119,53,74,159,84,114,247,146,199,131,14,218,0,32,138,234,93,203, - 247,51,233,40,74,14,23,51,169,80,242,1,42,35,199,221,140,97,151,207, - 66,107,211,89,28,222,247,102,200,138,83,242,74,196,24,228,177,15,113,184, - 116,55,128,224,131,98,184,77,165,185,120,13,103,79,136,93,189,39,79,158, - 68,67,67,3,22,46,92,8,160,67,152,206,159,63,47,14,210,25,58,226, - 90,92,57,229,71,126,93,189,122,242,184,123,241,82,164,102,12,133,211,222, - 0,171,196,99,3,128,87,86,94,45,252,244,209,98,150,146,210,31,95,150, - 191,135,173,239,190,0,139,197,34,14,253,231,163,35,91,90,90,68,175,205, - 233,116,138,93,151,156,96,3,76,8,130,32,140,38,64,224,82,211,134,32, - 115,212,52,52,213,85,139,2,197,239,240,185,248,241,65,11,124,191,124,146, - 182,146,200,233,205,3,208,39,116,0,176,249,221,215,177,228,193,223,251,77, - 17,224,131,69,164,222,26,16,40,108,92,100,22,254,106,39,59,90,246,15, - 0,29,243,220,212,186,216,228,251,185,168,28,46,221,29,150,176,113,164,147, - 239,121,23,173,84,128,0,248,141,64,149,139,91,56,121,92,60,98,42,250, - 100,100,225,212,177,189,1,30,28,0,188,246,187,92,225,167,143,22,51,155, - 237,60,110,154,127,31,234,106,191,194,150,247,222,12,24,77,201,235,235,23, - 247,47,67,250,128,28,113,20,101,91,91,91,208,81,169,161,70,172,18,4, - 65,232,69,108,197,120,227,20,159,156,142,172,17,83,1,76,69,156,37,1, - 215,127,111,158,56,167,75,46,126,124,191,18,114,145,11,39,15,78,40,161, - 147,122,102,74,66,201,69,6,80,23,54,126,46,159,63,198,235,131,139,83, - 48,248,124,51,37,81,209,35,108,114,236,118,187,216,253,40,21,32,187,221, - 14,155,205,166,42,110,225,228,49,106,194,45,0,128,115,223,124,17,16,131, - 227,188,246,187,92,97,241,242,253,172,255,224,17,248,230,196,1,44,188,235, - 17,52,94,168,194,155,235,255,12,167,211,9,151,203,133,123,150,60,132,190, - 253,134,226,210,241,222,252,106,79,30,18,39,113,171,229,203,225,199,76,50, - 15,146,32,8,34,28,44,188,65,231,119,208,113,113,9,232,155,113,9,222, - 248,253,44,81,160,110,155,255,19,188,249,198,203,136,79,78,199,240,203,103, - 195,233,108,65,156,37,65,220,175,52,73,27,240,23,185,112,243,144,162,38, - 116,141,13,223,224,141,162,23,224,114,185,196,124,248,117,241,9,230,90,69, - 198,154,144,138,254,153,151,99,193,162,95,235,122,22,101,66,74,26,156,142, - 102,81,28,29,14,7,238,92,116,111,88,194,38,253,78,22,44,252,185,40, - 64,86,107,50,206,125,243,5,156,78,39,22,46,186,47,168,184,133,147,199, - 194,95,237,100,242,223,130,156,87,86,94,45,60,248,92,13,203,24,56,10, - 23,15,159,140,111,78,28,192,189,255,179,18,141,23,170,240,90,209,11,232, - 219,111,40,174,152,60,31,67,114,174,134,199,233,68,124,114,58,126,114,223, - 83,154,159,69,153,53,108,50,172,214,240,226,159,4,65,16,82,104,53,1, - 5,244,172,38,0,0,9,41,105,189,106,53,1,14,127,248,114,221,217,99, - 248,230,196,1,180,180,92,64,198,192,17,24,53,230,123,120,237,119,185,222, - 60,105,53,1,130,32,58,9,193,132,208,107,128,221,181,124,63,115,185,90, - 3,142,169,237,87,194,136,60,130,229,237,116,216,252,150,174,1,252,133,202, - 154,144,18,211,245,224,34,181,217,213,215,131,147,242,224,115,53,204,86,127, - 10,124,125,184,87,12,168,103,18,56,130,32,34,69,88,181,106,21,115,56, - 212,187,226,18,18,148,187,14,231,207,191,13,239,190,187,25,225,166,5,128, - 172,172,97,58,138,218,65,117,245,215,221,46,173,0,224,145,71,31,21,63, - 63,253,187,223,65,75,11,254,196,19,79,132,101,15,0,30,127,252,241,160, - 199,43,42,42,48,60,39,71,99,185,130,105,86,96,10,35,238,36,244,40, - 220,83,79,61,165,233,188,199,30,123,204,239,179,89,16,162,118,211,83,123, - 246,44,59,114,228,8,142,28,57,130,242,242,114,0,192,43,47,189,68,11, - 195,18,68,140,176,0,192,109,183,221,166,43,209,232,209,163,81,93,253,53, - 34,77,11,0,71,143,30,5,0,8,130,0,147,41,112,90,30,99,222,255, - 175,199,227,1,0,124,240,193,7,162,64,26,145,86,43,145,166,197,67,15, - 33,39,39,39,224,88,69,69,69,208,180,119,220,113,7,214,175,95,15,0, - 226,99,196,130,49,123,246,108,49,223,80,121,175,95,191,30,120,252,113,197, - 114,117,160,165,61,230,231,116,180,181,39,66,216,30,158,147,131,218,51,103, - 130,103,59,104,144,6,219,29,200,197,75,206,238,221,187,241,212,83,79,133, - 60,47,92,246,31,60,200,222,127,255,125,28,60,120,16,101,101,101,24,50, - 100,8,6,15,30,140,81,163,70,97,242,228,201,81,177,73,16,132,58,138, - 19,189,99,141,32,8,162,72,201,55,179,217,12,147,201,4,181,27,237,72, - 210,198,154,156,156,28,113,211,195,29,119,220,1,192,251,168,179,244,244,116, - 213,77,42,110,198,148,75,111,189,249,159,159,147,147,131,29,59,118,168,126, - 6,128,65,131,6,225,208,161,67,170,159,141,230,177,199,30,83,244,246,246, - 191,56,145,73,183,227,39,78,176,250,198,70,93,222,209,251,239,191,143,111, - 190,249,6,55,220,112,3,222,120,227,13,212,212,212,160,230,212,41,161,120, - 231,78,225,153,167,159,22,70,143,14,253,92,206,157,197,197,108,103,113,49, - 121,101,4,97,0,1,243,224,98,13,23,40,179,217,28,48,247,10,240,122, - 97,140,49,209,11,51,42,109,103,160,87,216,164,112,79,110,219,182,109,184, - 225,134,27,2,142,79,156,56,17,128,126,113,83,47,87,184,55,5,2,184, - 39,87,81,81,33,138,174,210,103,0,56,115,230,12,198,142,29,171,250,217, - 72,164,182,151,47,95,46,78,60,223,255,226,68,118,245,189,37,126,23,188, - 255,197,219,89,253,196,23,81,223,216,200,210,251,246,213,84,25,227,199,143, - 199,138,130,130,176,239,166,190,56,122,148,45,93,186,20,179,102,205,10,55, - 11,130,32,36,116,9,129,227,30,87,118,118,182,226,57,85,85,85,112,187, - 221,1,66,21,73,90,41,163,71,143,86,220,175,165,43,82,79,218,72,4, - 14,80,23,185,72,196,205,136,114,197,10,65,16,196,110,231,112,224,130,182, - 123,247,110,81,236,184,184,185,217,139,126,25,155,133,123,133,253,47,222,203, - 142,151,120,207,17,15,148,0,233,143,188,141,254,253,251,67,171,240,105,101, - 207,158,61,216,179,103,15,250,245,235,167,75,88,9,130,80,38,64,224,248, - 51,35,229,72,159,79,169,70,184,105,185,39,246,220,115,207,41,30,159,63, - 127,126,200,46,202,112,210,114,212,210,106,185,102,61,105,253,4,40,76,81, - 145,139,92,164,226,166,92,174,72,219,85,1,192,9,228,228,228,224,165,151, - 94,18,197,68,254,25,240,118,73,110,223,190,93,244,218,228,159,3,114,142, - 80,228,148,144,139,27,223,103,22,238,13,168,136,23,238,1,187,240,214,91, - 248,225,15,127,104,104,25,190,56,122,148,221,117,215,93,0,128,77,155,54, - 5,120,186,4,65,232,39,64,224,30,122,232,33,197,19,181,120,51,225,164, - 229,226,35,8,2,126,244,163,31,41,158,195,159,112,33,23,170,72,210,74, - 209,34,100,70,164,53,66,224,128,14,145,51,66,220,140,44,151,82,190,209, - 232,162,140,134,200,161,4,40,41,121,201,111,151,159,231,230,199,6,212,239, - 216,128,227,39,78,176,145,195,135,71,236,101,213,158,61,203,150,46,93,138, - 3,7,14,136,251,158,126,250,105,236,44,46,102,179,114,115,201,139,35,136, - 48,9,16,56,189,35,4,141,74,219,27,144,11,81,69,69,133,56,66,50, - 92,34,153,70,32,45,135,209,12,215,32,148,131,67,141,146,12,114,83,98, - 168,200,149,148,160,164,164,4,242,56,156,18,238,131,47,50,243,164,123,133, - 23,238,1,187,112,225,45,67,204,239,219,183,15,57,57,57,24,59,118,44, - 14,29,58,132,140,140,12,12,26,52,8,123,247,238,69,85,117,53,27,154, - 149,229,87,174,170,234,106,6,0,242,253,4,65,248,211,233,49,56,41,131, - 7,15,86,220,127,234,212,169,168,166,141,85,12,238,222,123,238,241,251,60, - 60,39,7,8,49,87,45,24,191,1,34,74,207,145,151,75,208,53,3,77, - 25,65,97,218,134,94,66,149,194,104,79,78,169,171,50,128,146,18,184,217, - 139,236,165,123,239,21,215,216,139,132,250,198,70,118,254,252,121,220,118,203, - 45,194,202,39,158,96,124,4,233,99,143,61,134,41,83,166,4,44,22,91, - 123,246,44,219,180,105,19,46,189,244,210,136,109,19,68,79,167,75,196,224, - 56,106,241,172,31,252,224,7,138,251,163,157,214,232,24,220,223,223,236,88, - 134,231,71,11,22,104,146,145,205,155,55,107,56,75,153,80,115,20,207,158, - 61,139,65,3,7,42,148,43,114,199,192,100,200,84,239,224,20,22,22,70, - 221,134,17,236,44,46,102,187,119,239,198,209,163,135,3,142,73,7,146,100, - 100,100,0,240,62,32,251,163,143,62,194,109,183,220,226,87,137,181,103,207, - 178,199,31,127,28,233,233,233,226,218,125,4,65,168,211,233,49,56,41,161, - 226,104,209,74,27,171,24,220,192,129,3,3,246,157,61,123,54,104,154,107, - 174,185,6,31,127,252,49,0,4,220,205,43,193,7,63,156,61,123,54,100, - 222,31,127,252,49,112,219,109,138,229,234,10,200,5,76,250,185,176,176,16, - 5,5,5,177,45,16,128,18,148,96,34,38,6,236,175,170,174,102,101,101, - 101,1,251,11,86,172,96,60,238,56,125,250,244,160,121,103,102,102,98,240, - 224,193,168,173,173,197,59,239,188,131,23,94,124,145,205,157,59,23,109,109, - 109,40,43,43,195,173,183,222,138,134,134,6,188,240,194,11,134,143,224,36, - 136,158,8,197,224,98,200,185,115,231,194,74,199,69,46,62,62,94,117,0, - 6,99,76,28,238,31,74,216,140,42,87,180,145,11,24,23,184,168,138,91, - 73,73,136,227,128,84,223,190,56,122,148,221,120,227,141,24,54,108,152,162, - 128,189,252,242,203,226,251,7,31,124,16,197,59,119,170,102,61,101,202,20, - 76,157,58,21,155,54,109,194,201,147,39,241,219,223,254,22,91,183,110,5, - 0,124,250,233,167,168,171,171,195,218,181,107,65,3,79,8,66,27,20,131, - 67,236,98,112,51,103,206,12,153,159,26,92,228,14,29,58,20,32,114,145, - 136,91,164,229,138,53,157,229,185,169,177,112,225,66,156,60,121,18,0,48, - 98,196,136,0,1,251,247,191,255,141,93,187,118,97,230,204,153,184,98,244, - 232,160,194,52,120,224,64,225,143,127,250,19,219,180,105,19,0,160,182,182, - 22,219,182,109,3,224,237,190,44,44,44,196,125,247,6,78,93,32,8,66, - 25,138,193,5,73,107,116,12,46,210,174,64,169,200,141,25,51,6,128,119, - 160,69,36,226,102,68,185,98,69,52,196,45,125,246,219,40,217,113,59,0, - 160,228,222,151,80,130,16,30,28,128,146,123,239,197,214,211,55,99,234,212, - 108,164,167,167,163,190,190,30,179,103,207,198,51,207,60,131,87,94,242,159, - 106,16,74,212,228,204,159,63,31,117,117,117,248,221,239,126,7,135,195,129, - 132,132,4,92,117,213,85,184,247,222,165,152,59,247,102,44,55,96,80,17, - 65,244,22,40,6,135,216,197,224,252,4,40,76,81,225,34,247,217,103,159, - 97,204,152,49,24,54,108,88,96,222,58,49,162,92,177,32,148,184,237,222, - 189,91,119,158,253,251,247,71,253,196,23,177,125,251,118,84,162,18,80,136, - 175,41,49,117,106,54,174,191,254,122,92,61,105,146,0,0,175,188,244,82, - 128,184,133,195,224,129,3,253,4,209,110,179,225,211,79,62,193,167,159,124, - 130,187,22,69,156,61,65,244,42,40,6,23,67,118,237,218,213,241,33,130, - 39,97,112,145,139,212,115,51,186,92,157,201,242,229,203,195,74,151,222,183, - 175,80,223,216,200,210,211,211,197,149,204,181,96,181,90,209,191,127,255,176, - 108,18,4,17,27,40,6,135,216,197,224,6,12,24,224,247,249,236,217,179, - 226,8,201,112,137,100,26,1,71,94,174,174,130,210,18,72,134,231,47,8, - 44,45,45,45,252,76,104,61,54,130,232,178,80,12,46,72,90,163,99,112, - 215,201,158,18,63,104,224,64,64,231,122,122,1,68,154,30,129,229,50,100, - 162,119,215,88,137,137,32,136,94,12,197,224,16,187,24,92,56,43,122,71, - 19,245,21,189,187,199,68,111,130,32,136,96,80,12,46,134,132,179,162,119, - 168,188,158,120,226,9,113,65,84,189,104,91,209,155,32,8,162,123,66,49, - 56,116,159,245,224,228,249,148,248,38,37,175,95,191,62,108,145,51,178,92, - 4,65,16,93,137,110,29,131,227,15,218,101,140,5,93,15,78,122,174,30, - 187,70,199,224,140,16,18,185,184,221,112,195,13,216,182,109,91,68,34,23, - 88,46,134,200,214,132,99,0,197,224,8,130,232,100,186,117,12,142,49,6, - 143,199,3,65,16,68,33,147,31,231,171,121,7,19,184,88,197,224,34,21, - 56,185,184,113,34,21,57,242,224,8,130,232,137,116,235,24,156,219,237,22, - 69,142,35,21,50,198,152,159,200,117,54,145,44,44,170,38,110,156,72,68, - 78,185,92,225,122,113,157,61,116,134,32,8,194,75,183,142,193,217,237,118, - 8,130,0,65,16,252,230,76,73,187,46,129,14,33,84,35,146,24,156,30, - 194,21,56,46,110,59,118,236,8,122,222,148,41,83,176,111,223,62,221,34, - 167,94,46,189,34,71,226,70,16,68,215,193,208,24,92,164,232,141,193,157, - 62,125,26,130,111,213,103,190,248,165,82,119,36,247,228,244,218,53,250,154, - 163,177,162,183,26,122,242,13,62,146,147,215,91,48,161,35,97,35,8,162, - 235,17,81,12,78,237,220,112,209,27,131,59,113,226,68,192,62,135,195,161, - 154,127,66,66,130,226,126,61,66,166,38,134,90,236,26,189,162,183,81,200, - 203,165,252,4,145,96,2,71,3,74,8,130,232,122,68,20,131,139,228,81, - 74,85,85,129,226,164,149,161,67,135,135,157,118,254,252,240,159,252,17,137, - 93,60,244,80,88,43,122,71,19,181,21,189,9,130,32,122,2,221,58,6, - 103,20,177,138,193,133,179,162,119,168,188,54,111,222,140,107,174,185,38,172, - 60,186,250,138,222,4,65,16,145,208,173,99,112,209,182,107,244,53,27,181, - 114,54,23,164,175,191,254,26,128,87,168,194,21,57,35,203,69,16,4,209, - 149,48,116,30,92,164,68,242,60,201,72,136,133,120,3,198,172,156,45,23, - 183,49,99,198,224,179,207,62,139,72,228,186,211,138,222,4,65,16,90,49, - 116,30,28,17,156,72,187,2,121,250,138,138,10,113,244,40,16,185,200,81, - 23,37,65,16,61,17,138,193,33,118,49,184,72,86,206,150,138,27,224,157, - 250,192,231,0,2,192,216,177,99,113,232,208,161,176,68,174,187,172,232,77, - 16,4,161,7,138,193,5,177,107,244,53,135,187,114,54,23,183,183,222,122, - 43,228,185,241,241,241,186,69,174,39,172,232,77,16,4,33,135,98,112,136, - 93,12,46,210,21,189,227,227,227,53,159,171,39,223,174,186,162,55,65,16, - 68,36,80,12,46,70,8,38,19,102,75,63,3,80,238,144,141,45,2,16, - 80,46,130,32,136,158,0,197,224,16,187,24,28,65,16,4,17,59,40,6, - 23,196,110,172,186,46,9,130,32,8,227,161,24,28,72,200,8,130,32,122, - 34,20,131,35,8,130,32,122,36,20,131,3,197,224,8,130,32,122,34,20, - 131,11,98,151,186,46,9,130,32,186,47,20,131,3,9,25,65,16,68,79, - 132,98,112,4,65,16,68,143,132,98,112,160,24,28,65,16,68,79,132,98, - 112,65,236,82,215,37,65,16,68,247,133,98,112,32,33,35,8,130,232,137, - 80,12,142,32,8,130,232,145,80,12,14,20,131,35,8,130,232,137,116,122, - 12,142,49,38,190,170,197,194,230,207,159,239,119,174,209,80,12,142,32,8, - 162,231,209,233,49,56,198,24,60,30,15,4,65,16,133,76,126,220,237,118, - 195,227,241,68,77,224,72,200,8,130,32,122,30,157,30,131,115,187,221,162, - 200,113,164,66,198,24,243,19,57,130,32,8,130,208,66,167,199,224,236,118, - 59,4,65,128,32,8,48,153,76,226,126,105,215,37,208,33,132,4,65,16, - 4,161,133,78,23,184,211,167,79,67,16,188,235,72,11,130,32,122,115,114, - 49,227,158,28,65,16,4,65,104,193,162,22,115,139,21,39,78,156,8,216, - 231,112,56,84,207,79,72,72,136,216,166,218,160,146,104,219,37,8,130,32, - 98,135,192,200,45,34,8,66,1,129,119,173,4,97,233,210,165,19,214,174, - 93,91,202,95,117,154,40,4,80,0,96,133,239,189,220,62,181,77,68,68, - 116,122,23,37,65,16,221,147,165,75,151,150,248,94,249,174,137,26,147,94, - 6,224,151,0,174,7,224,6,112,23,128,76,0,255,7,224,75,99,75,73, - 244,102,200,131,35,8,66,17,37,15,110,233,210,165,113,0,146,0,36,2, - 152,12,224,41,0,9,240,138,149,29,64,43,0,251,218,181,107,219,85,178, - 189,29,192,235,79,60,241,164,245,150,91,230,97,244,232,28,84,85,85,225, - 237,183,223,198,175,127,253,107,39,128,159,0,120,219,103,159,218,38,34,34, - 72,224,8,130,80,68,46,112,75,151,46,77,2,48,10,192,21,0,46,1, - 144,5,96,168,239,112,21,128,106,0,39,1,124,1,224,216,218,181,107,237, - 178,44,47,3,112,104,215,174,93,214,210,210,52,216,108,237,88,190,124,178, - 120,176,184,184,24,51,103,206,116,2,24,11,224,75,18,56,34,82,76,161, - 79,33,8,162,183,179,116,233,210,190,0,174,5,176,0,192,76,0,131,0, - 52,194,219,181,88,237,123,63,200,119,108,1,128,107,125,105,164,252,242,201, - 39,159,180,230,230,230,226,39,63,185,20,239,188,243,21,78,159,110,17,15, - 230,230,230,226,201,39,159,180,194,219,125,73,16,17,67,30,28,65,16,138, - 112,15,206,39,84,115,0,76,131,55,102,86,15,160,9,222,238,200,129,0, - 206,0,16,224,237,182,236,3,32,29,128,25,192,135,0,254,181,118,237,218, - 70,95,150,39,191,250,234,171,172,225,195,135,3,0,150,47,255,20,45,45, - 46,36,37,89,48,120,112,18,150,46,189,10,39,78,156,192,136,17,35,170, - 1,92,66,30,28,17,41,36,112,4,209,37,97,96,204,13,143,7,56,125, - 186,13,59,119,53,97,255,167,77,248,242,203,6,212,158,118,162,169,201,1, - 147,137,161,95,127,51,134,12,177,96,204,85,105,184,246,218,116,92,59,109, - 32,82,83,227,124,15,79,136,172,131,70,16,4,193,215,45,121,3,128,25, - 0,156,0,206,2,24,9,224,167,0,190,15,128,199,218,120,108,174,15,128, - 126,240,10,159,21,192,110,0,219,124,221,149,174,246,246,118,179,197,226,29, - 219,86,91,107,199,119,190,243,30,110,187,45,7,191,248,197,149,184,232,162, - 100,184,92,46,196,197,197,185,1,88,72,224,136,72,33,129,35,136,46,133, - 247,239,216,218,234,198,166,205,231,241,106,209,5,124,118,168,30,109,109,181, - 112,58,171,224,97,53,240,120,26,224,114,183,67,96,38,120,88,31,0,125, - 32,32,29,64,95,164,165,199,97,206,156,76,44,89,114,57,166,76,25,8, - 179,217,4,175,31,22,114,196,127,0,247,223,127,191,21,192,53,240,10,92, - 2,128,26,120,189,181,243,0,54,0,248,45,128,173,190,211,45,232,16,184, - 254,240,118,87,14,1,224,0,176,13,192,199,107,215,174,61,33,245,224,188, - 215,233,66,98,98,199,96,110,242,224,8,35,161,105,2,4,209,69,240,120, - 92,240,120,24,182,109,107,196,239,158,170,193,217,179,231,209,210,82,140,250, - 250,143,145,146,106,199,196,137,57,200,201,201,68,223,180,17,72,76,76,132, - 219,229,129,221,222,134,115,231,26,241,229,151,95,226,248,241,58,212,215,15, - 196,223,255,158,137,119,222,249,2,55,220,112,49,158,120,98,26,46,189,52, - 29,22,75,28,52,76,107,147,51,4,192,20,120,5,171,26,64,29,188,226, - 118,1,192,123,0,242,0,188,230,59,215,2,111,151,165,212,163,75,132,119, - 32,202,20,0,149,0,182,191,253,246,219,119,63,246,216,99,162,1,169,184, - 1,192,219,111,191,13,0,219,245,22,148,32,148,32,15,142,32,58,25,198, - 188,143,166,179,217,220,248,245,99,167,176,119,239,89,216,29,91,241,205,169, - 173,152,54,109,28,230,124,55,23,87,94,117,9,172,86,11,172,86,51,172, - 113,86,152,205,102,152,204,94,113,96,30,6,151,187,29,245,245,14,236,218, - 245,21,182,108,41,195,145,35,14,48,207,80,164,166,90,241,212,211,215,226, - 206,159,142,67,66,66,28,76,38,237,247,180,247,223,127,255,20,0,183,193, - 43,84,85,0,78,1,168,133,87,224,154,225,29,49,57,19,192,33,120,5, - 238,57,0,227,1,44,1,48,24,222,1,40,67,225,21,190,205,190,88,220, - 161,93,187,118,89,115,115,115,3,236,209,40,74,194,104,200,131,35,136,78, - 134,49,134,250,122,23,238,252,105,21,90,236,213,168,172,42,192,85,87,12, - 198,111,254,183,16,153,151,164,35,62,62,14,41,201,41,72,73,73,65,82, - 82,18,226,227,227,97,54,155,59,98,108,140,193,237,113,195,233,116,98,228, - 200,44,44,88,48,25,219,255,245,53,158,127,254,223,248,166,38,21,121,247, - 255,11,199,143,157,69,65,65,46,82,83,83,253,30,106,30,130,65,0,250, - 162,99,64,137,29,29,115,221,28,240,14,34,89,1,111,23,230,50,0,63, - 6,144,3,32,67,114,94,171,47,143,65,0,62,5,240,147,153,51,103,190, - 254,228,147,79,90,111,191,253,118,12,29,58,84,105,30,28,77,246,38,12, - 129,60,56,130,232,68,188,158,91,59,126,120,123,37,90,219,202,176,255,211, - 167,176,100,201,124,220,116,211,52,196,89,227,144,150,214,23,25,233,233,72, - 73,73,69,66,66,2,44,22,139,184,250,134,44,39,120,60,222,101,165,156, - 78,23,236,45,205,168,174,174,195,227,143,111,195,191,182,159,135,0,15,30, - 124,112,50,150,47,159,141,228,148,100,152,205,230,144,101,187,255,254,251,127, - 6,224,58,120,187,23,43,225,237,166,60,3,111,87,165,13,192,104,0,31, - 1,120,2,192,227,240,10,91,10,188,163,40,7,195,219,61,153,237,219,254, - 179,118,237,218,34,95,214,210,39,153,12,129,55,182,183,29,178,39,153,144, - 7,71,68,10,121,112,4,209,73,120,215,57,108,199,175,126,117,10,205,182, - 19,40,47,127,2,191,121,252,23,184,122,202,101,72,78,73,198,192,1,3, - 208,175,95,63,36,38,38,130,143,60,84,71,128,201,228,93,114,42,46,46, - 14,9,9,113,72,73,77,193,139,47,253,16,143,61,246,31,252,125,125,5, - 214,172,217,131,75,47,203,192,130,5,19,145,146,146,18,78,76,78,78,57, - 188,49,183,71,225,157,35,23,188,132,234,130,149,5,224,110,223,70,16,134, - 65,19,189,9,162,211,96,248,247,142,102,236,221,123,30,135,15,63,131,123, - 127,254,99,76,153,114,25,250,246,233,131,172,139,47,198,224,193,23,33,37, - 37,69,131,184,5,98,54,91,144,144,144,136,193,131,7,226,255,254,239,70, - 204,152,49,4,46,215,96,20,20,108,64,101,197,25,56,28,14,45,203,79, - 185,125,175,113,146,205,34,217,204,0,210,0,252,30,192,97,201,126,249,249, - 0,224,210,125,17,4,17,33,228,193,169,224,241,120,96,50,153,224,118,119, - 60,105,65,16,248,146,57,129,119,190,38,147,9,30,143,183,61,96,204,225, - 59,87,240,237,231,43,145,51,56,157,110,180,58,235,81,223,100,69,195,133, - 56,84,159,244,160,254,252,89,84,84,39,160,185,193,138,175,79,212,224,100, - 149,19,45,182,68,212,215,59,96,183,159,87,44,95,114,31,224,226,139,250, - 225,146,161,86,164,164,246,193,128,1,45,200,26,154,137,180,129,102,244,75, - 5,178,46,49,33,173,95,59,210,210,146,144,100,17,96,181,90,196,216,75, - 123,123,187,216,69,37,189,70,126,125,38,83,71,247,149,199,227,6,99,222, - 101,132,204,230,100,191,186,33,34,195,229,98,120,250,169,26,180,218,255,141, - 209,163,251,226,134,27,167,34,37,37,17,67,46,186,8,253,250,247,135,213, - 106,141,40,127,65,16,16,23,103,193,128,1,125,240,220,243,55,98,230,140, - 183,113,230,140,25,47,191,82,140,199,30,251,30,6,12,28,24,74,60,207, - 192,251,132,146,4,120,7,154,36,249,182,86,116,8,150,11,222,174,197,4, - 133,243,18,125,91,35,188,243,231,8,34,166,144,192,169,226,189,187,149,54, - 234,210,99,188,209,231,120,60,9,18,97,72,70,123,123,59,220,110,134,102, - 155,7,213,223,184,80,125,210,131,19,39,220,40,61,88,143,35,159,159,71, - 229,241,147,104,116,8,0,115,0,66,2,24,235,139,164,248,118,216,219,226, - 0,0,130,192,219,131,54,223,107,188,196,90,27,90,207,3,231,207,219,113, - 232,48,0,230,128,32,180,2,248,20,140,57,144,16,111,133,163,205,137,126, - 253,6,225,154,107,70,98,216,240,33,24,123,85,19,210,251,15,68,214,37, - 38,92,117,121,60,236,141,54,36,246,49,195,237,238,200,213,95,216,60,146, - 125,201,146,253,146,4,68,216,48,230,193,39,159,52,224,196,137,122,92,184, - 240,30,30,125,108,25,18,18,204,232,63,96,0,210,51,50,84,197,141,49, - 6,230,105,3,243,56,1,83,28,76,166,56,8,2,255,222,4,240,223,173, - 244,38,204,108,182,224,138,203,251,99,241,207,39,97,213,179,110,108,216,176, - 23,139,22,77,69,74,106,10,82,82,82,131,117,85,114,129,27,4,239,252, - 182,190,240,14,30,225,83,1,44,232,16,58,11,58,158,100,194,207,237,3, - 111,76,238,140,111,35,136,152,66,2,167,2,111,236,189,13,61,147,125,22, - 96,54,39,139,199,248,249,30,143,7,23,234,156,168,254,198,133,242,47,60, - 56,124,208,129,146,242,50,124,121,184,9,23,234,18,33,8,253,36,22,46, - 134,32,0,30,214,2,48,64,16,28,104,117,2,130,32,127,62,45,224,47, - 110,62,124,194,8,192,43,144,240,61,246,79,0,28,78,32,49,222,140,11, - 23,234,176,117,235,65,48,150,8,239,211,149,128,236,139,178,112,213,164,161, - 152,117,29,208,39,53,5,99,38,12,198,229,151,90,97,181,90,208,222,222, - 14,147,201,41,154,16,132,68,197,186,241,138,123,178,226,49,34,52,124,90, - 192,63,255,89,143,214,214,35,24,54,172,63,114,134,15,64,159,62,125,145, - 145,209,15,241,241,241,10,231,187,192,24,192,88,27,208,86,3,161,237,52, - 96,78,129,59,33,19,130,37,3,130,0,48,143,19,12,12,38,83,60,4, - 193,44,17,62,239,239,243,206,59,71,225,249,63,252,23,181,103,108,248,236, - 240,215,24,114,113,63,36,37,5,29,112,114,218,183,101,193,59,112,68,62, - 207,205,14,229,39,153,244,135,119,192,73,58,188,79,51,225,249,16,68,76, - 33,129,83,161,189,189,29,113,113,113,98,215,163,127,55,158,0,135,195,9, - 179,217,123,231,123,246,236,89,28,60,112,30,39,42,47,193,158,93,85,248, - 120,111,59,26,155,146,225,102,141,240,120,204,16,132,68,48,150,0,198,120, - 30,94,239,143,177,4,191,207,94,111,45,80,204,18,173,102,180,58,165,158, - 83,188,127,47,41,115,192,59,106,187,131,214,54,64,16,90,125,226,6,120, - 219,26,160,242,180,13,149,91,190,192,150,45,222,189,227,174,76,199,184,177, - 237,248,246,172,43,144,53,162,63,198,140,78,64,191,12,43,220,110,55,204, - 102,6,135,195,9,183,187,29,137,137,29,221,179,106,194,71,232,129,225,192, - 129,58,180,181,125,133,177,99,175,64,92,92,28,250,244,233,139,196,132,68, - 63,143,202,227,105,135,167,253,60,208,94,7,64,128,192,92,240,180,148,195, - 101,251,2,66,252,0,120,92,211,129,36,11,226,208,10,180,213,120,211,196, - 15,134,96,29,236,39,92,130,32,224,178,203,50,144,153,213,15,85,149,131, - 112,248,179,175,48,109,218,101,72,75,75,83,21,184,181,107,215,158,93,186, - 116,233,127,224,21,171,97,240,247,214,146,160,46,112,252,81,93,125,1,124, - 5,239,8,202,179,6,12,106,33,8,93,144,192,169,96,50,57,225,241,116, - 196,153,184,199,198,5,175,217,230,193,103,71,29,56,84,194,176,103,215,57, - 108,125,191,21,192,151,240,120,90,32,8,141,96,172,47,76,38,175,151,195, - 88,2,4,193,33,17,180,126,72,236,115,14,172,213,219,54,36,37,13,130, - 96,57,15,230,186,196,123,220,114,30,246,118,233,114,90,30,36,154,90,253, - 11,232,233,3,0,176,183,197,65,16,252,187,47,57,124,12,129,183,251,18, - 146,253,14,64,184,8,0,80,254,121,61,202,63,175,199,223,222,249,18,23, - 13,202,192,181,223,190,14,179,190,215,31,227,174,48,33,235,98,11,250,101, - 88,1,88,192,88,43,218,219,227,144,144,16,89,92,136,0,248,221,201,215, - 95,183,192,217,126,14,151,92,50,6,9,113,113,72,74,78,132,217,34,141, - 109,50,48,183,13,104,57,6,143,221,183,88,182,41,29,172,181,12,174,154, - 67,192,160,76,180,57,47,6,92,169,232,99,58,5,143,253,0,24,115,3, - 137,223,130,39,53,25,241,241,102,152,205,22,111,183,38,243,64,16,4,92, - 122,105,6,170,42,147,240,205,55,103,224,104,181,195,213,238,242,70,206,84, - 88,187,118,237,209,165,75,151,238,130,119,48,73,63,116,116,69,242,185,113, - 242,39,151,240,135,45,247,133,183,219,96,215,218,181,107,143,26,85,115,4, - 161,7,18,56,21,4,33,209,111,0,134,199,147,136,11,117,78,124,252,137, - 19,39,78,184,241,222,123,54,212,86,55,224,120,197,25,152,76,201,240,120, - 90,36,169,227,97,18,42,145,216,103,32,18,125,66,2,116,172,28,34,88, - 206,163,95,90,2,46,52,184,193,60,54,48,118,2,204,13,64,56,129,102, - 91,11,76,168,71,155,51,14,29,45,143,212,59,243,238,139,179,122,191,58, - 171,21,112,58,45,72,140,79,69,155,211,219,56,50,150,136,196,68,11,90, - 125,186,38,122,113,98,151,38,124,94,31,39,29,174,246,4,84,159,2,214, - 175,223,132,119,223,117,225,162,65,25,184,237,251,83,48,108,152,27,211,102, - 140,64,246,240,56,164,37,89,196,65,39,130,144,224,23,179,35,244,192,224, - 116,122,208,214,102,134,217,204,16,103,77,66,139,35,14,21,39,218,145,158, - 230,129,201,100,6,99,30,120,220,118,176,214,74,120,90,202,224,58,191,11, - 66,66,60,220,166,44,152,60,149,48,215,92,128,167,191,27,174,182,35,48, - 123,128,118,115,45,132,182,207,0,91,27,28,105,3,224,17,134,65,48,37, - 34,94,48,1,96,56,84,126,30,35,70,166,33,41,49,1,22,75,50,90, - 29,109,112,182,187,225,114,187,192,24,11,58,101,96,237,218,181,31,250,86, - 237,190,21,94,207,44,5,222,121,112,210,193,38,92,248,82,224,237,150,60, - 11,224,189,181,107,215,126,24,181,106,36,136,16,144,192,5,193,227,241,192, - 227,177,162,250,140,13,197,123,220,56,124,160,10,187,119,181,162,252,179,166, - 0,81,51,153,146,145,209,215,91,157,233,233,131,192,215,129,52,155,79,163, - 213,81,37,158,103,107,105,67,83,99,11,206,157,243,142,142,100,112,64,128, - 3,29,15,135,240,239,106,84,195,233,228,231,121,7,175,181,182,121,7,176, - 49,159,0,182,182,14,246,229,159,128,196,248,84,0,128,163,205,27,135,19, - 132,4,177,139,147,177,68,63,15,79,64,60,218,157,241,56,89,221,134,213, - 207,239,6,67,27,198,95,89,131,233,215,101,33,119,214,80,92,51,213,138, - 126,25,9,190,250,14,161,220,162,0,0,32,0,73,68,65,84,113,195,237, - 246,248,174,211,95,236,104,148,165,50,30,143,11,95,126,233,192,125,75,170, - 144,148,216,7,77,141,117,96,12,248,226,243,54,172,89,179,25,239,188,243, - 125,140,28,153,6,139,217,9,180,158,128,167,121,63,60,206,79,96,106,61, - 9,119,187,5,237,241,109,176,152,235,16,127,190,9,204,220,134,56,118,0, - 104,107,2,179,216,33,216,79,163,221,41,160,173,181,30,237,113,45,176,38, - 186,17,103,97,248,247,142,58,60,186,236,159,216,184,249,86,184,221,46,228, - 12,31,135,109,219,14,34,193,250,25,158,126,102,8,250,244,241,248,197,235, - 148,240,137,220,121,0,115,1,92,10,175,151,214,79,118,26,31,137,245,37, - 128,77,228,185,17,157,13,9,156,10,174,246,11,168,111,112,99,219,63,109, - 216,241,31,19,182,111,187,128,186,70,239,205,42,239,122,228,175,25,125,45, - 72,79,79,64,114,10,23,138,86,52,158,59,141,102,167,19,45,182,122,56, - 218,170,193,224,128,55,206,222,0,175,136,53,2,136,247,233,76,27,188,2, - 167,132,124,20,37,255,156,230,123,109,148,28,75,240,229,151,0,134,211,224, - 222,94,107,91,34,128,52,8,72,3,67,2,24,107,131,128,120,36,196,91, - 1,180,192,209,150,44,138,156,32,36,128,49,7,24,218,144,148,152,9,135, - 163,25,135,190,168,193,23,199,14,99,243,198,12,204,155,215,31,223,158,121, - 29,190,251,29,111,222,60,14,233,246,13,199,212,242,132,140,222,11,195,87, - 95,181,225,166,27,191,6,99,30,152,204,71,96,111,253,6,12,38,156,174, - 109,199,201,170,74,92,56,255,13,6,244,111,71,70,74,11,208,92,10,79, - 195,7,16,82,190,4,76,245,48,213,37,65,184,56,14,38,83,43,152,173, - 25,113,214,38,8,238,118,180,185,27,225,246,88,33,52,157,135,217,149,12, - 87,66,11,220,237,173,112,123,156,96,44,1,71,143,52,162,162,242,40,46, - 92,152,6,167,211,9,179,185,31,250,101,140,192,187,27,15,161,161,177,9, - 175,189,126,7,250,247,87,143,197,113,124,221,149,23,224,125,130,201,72,0, - 35,224,141,207,1,222,167,155,124,5,224,56,128,163,107,215,174,165,105,1, - 68,167,211,43,4,78,58,180,157,15,239,23,132,68,184,221,110,196,197,197, - 193,237,110,129,219,101,135,37,174,31,76,38,19,218,219,219,241,199,23,44, - 40,61,216,140,127,255,251,56,46,92,72,147,228,213,34,122,107,153,89,12, - 151,12,245,198,164,170,191,174,70,93,253,55,176,181,180,193,222,98,5,243, - 236,132,163,221,133,14,175,172,17,94,17,107,131,186,151,150,0,165,238,72, - 47,109,8,164,21,222,94,161,54,217,57,141,146,115,226,193,189,60,134,52, - 112,47,143,1,112,180,165,129,33,13,38,193,4,134,116,36,38,184,224,112, - 52,3,0,76,66,95,56,28,205,162,216,181,59,147,81,85,221,132,23,94, - 96,120,237,245,127,225,199,11,47,67,238,172,161,248,246,204,120,244,77,244, - 10,127,123,123,28,204,102,175,216,121,7,169,152,224,106,175,3,0,88,227, - 7,248,234,207,3,198,90,197,233,23,189,5,198,60,104,105,105,199,79,239, - 172,0,99,30,252,114,89,42,242,243,247,129,177,54,120,220,46,196,197,185, - 193,24,67,107,115,3,218,26,236,96,236,27,176,182,3,128,237,191,176,244, - 63,3,230,114,66,184,224,129,112,73,18,76,113,14,152,29,30,192,236,128, - 153,185,145,224,2,92,214,84,152,90,157,104,139,179,128,121,154,128,246,90, - 160,45,21,72,48,195,229,102,96,30,15,154,26,235,209,238,114,225,203,47, - 27,49,100,112,10,192,146,177,227,63,7,241,228,255,75,67,65,225,247,208, - 183,111,154,124,96,74,192,76,240,63,253,233,79,154,174,151,6,148,16,93, - 129,30,43,112,110,119,139,24,39,226,67,248,189,221,102,201,190,137,206,204, - 55,144,196,140,246,246,56,88,173,222,222,150,162,191,126,37,122,108,118,251, - 121,216,219,226,32,237,109,235,159,222,23,215,76,139,19,63,31,251,242,44, - 170,78,86,194,209,118,14,12,149,0,190,134,191,192,116,136,26,147,9,155, - 16,16,221,151,30,239,43,121,175,52,106,177,1,94,241,226,175,128,218,40, - 204,142,188,27,0,180,65,64,43,128,108,95,119,102,58,60,204,235,221,217, - 91,19,68,207,206,209,214,81,22,65,146,167,163,237,28,220,172,30,171,159, - 63,134,205,27,7,226,182,239,79,193,79,22,13,195,165,35,4,196,89,26, - 97,111,140,71,82,223,20,113,130,187,53,126,0,220,238,22,180,180,180,32, - 57,57,217,183,191,55,142,194,20,240,210,75,23,112,168,204,142,95,255,239, - 197,120,251,237,82,56,157,23,0,48,239,122,109,76,0,152,0,183,187,21, - 38,103,21,88,211,39,16,226,14,65,112,159,135,32,180,0,173,128,208,220, - 10,75,156,29,2,156,64,187,19,130,9,16,90,93,48,121,26,97,73,104, - 135,169,205,5,179,89,64,156,165,10,9,238,221,48,217,170,224,50,77,134, - 167,61,30,12,128,199,227,213,43,143,71,64,179,205,12,8,201,96,44,30, - 47,191,178,21,55,222,120,57,166,94,115,41,82,82,146,73,156,136,30,67, - 207,21,56,151,29,222,213,68,120,119,162,9,14,135,19,86,171,5,102,179, - 25,174,246,11,176,198,15,240,54,194,86,11,182,188,111,195,59,111,157,199, - 129,125,173,56,94,113,6,113,230,33,112,51,23,76,38,192,44,244,197,21, - 87,216,112,249,149,253,97,107,110,194,201,42,39,234,235,15,225,204,153,19, - 112,56,79,193,43,28,124,235,16,51,46,96,252,61,255,156,16,239,125,30, - 109,159,164,65,232,223,63,25,241,9,253,49,108,232,48,0,192,144,172,56, - 88,227,189,3,83,250,36,3,169,233,222,175,168,185,222,133,212,116,11,154, - 235,189,222,82,147,100,76,75,125,109,21,26,109,2,170,170,0,15,190,70, - 155,227,60,142,28,231,93,161,14,248,119,129,166,193,43,158,92,240,106,209, - 225,221,165,131,33,13,173,109,128,213,218,31,78,167,69,20,55,175,232,121, - 103,253,57,157,128,0,175,71,247,252,243,219,177,121,99,31,60,148,63,25, - 211,102,140,192,229,151,90,225,106,191,128,150,54,15,82,18,51,224,116,254, - 127,246,222,60,76,146,179,58,243,253,125,177,71,46,149,85,189,175,234,69, - 251,138,16,18,24,16,72,66,8,6,176,101,24,108,176,101,182,129,241,5, - 227,1,155,25,143,109,60,246,101,176,239,204,220,107,251,98,99,99,198,190, - 198,70,24,132,25,48,216,35,33,177,9,169,17,18,2,180,171,181,47,189, - 85,111,213,93,85,153,89,149,153,177,126,241,221,63,190,136,200,165,171,133, - 0,201,82,119,231,251,60,249,116,102,100,70,70,100,86,246,247,198,123,206, - 123,206,73,113,28,31,223,135,48,212,53,118,142,115,220,254,236,142,138,40, - 150,252,213,95,237,103,221,58,147,125,251,102,249,222,109,79,160,83,86,10, - 165,4,10,133,16,10,147,8,83,238,65,45,60,140,185,110,26,67,117,244, - 151,222,81,16,100,216,110,128,234,164,136,52,69,164,10,99,65,145,69,49, - 230,214,24,161,76,76,97,226,185,251,48,194,25,172,238,67,100,204,147,246, - 46,2,20,153,82,121,8,91,161,50,137,192,71,81,37,12,15,242,233,79, - 127,147,51,206,92,137,235,58,63,117,7,149,49,198,120,190,224,184,94,105, - 138,214,83,97,24,227,121,14,158,231,144,228,246,123,203,94,78,24,198,236, - 159,237,242,151,31,75,248,198,245,247,114,112,127,202,66,48,133,107,158,65, - 36,31,193,48,170,156,119,142,201,37,175,90,193,225,67,30,15,223,255,8, - 247,62,112,15,174,189,151,48,121,156,97,242,104,15,41,52,33,22,129,69, - 148,170,35,240,88,53,117,33,235,55,108,98,203,166,45,108,60,249,85,92, - 116,222,99,212,87,154,84,252,58,74,249,164,89,95,245,89,70,131,52,107, - 99,155,206,64,29,219,48,6,95,239,122,103,17,133,58,12,155,196,218,220, - 146,165,91,216,177,99,15,59,159,156,230,246,91,19,246,238,223,69,123,225, - 0,97,210,65,19,91,209,89,169,192,193,252,243,104,35,74,20,23,4,173, - 243,118,97,148,127,159,101,208,170,141,227,88,196,177,197,238,233,5,62,244, - 155,183,114,193,185,223,225,237,239,185,132,183,189,251,76,26,213,148,44,211, - 100,166,67,150,170,44,49,24,238,10,115,98,224,123,183,117,216,189,187,199, - 197,23,215,185,241,91,59,242,176,185,66,215,21,154,101,15,18,33,187,152, - 217,97,68,60,139,225,119,33,149,32,20,44,10,140,142,36,115,67,140,197, - 20,18,80,9,168,3,10,230,37,230,43,20,82,100,152,116,241,188,3,168, - 166,196,172,24,68,113,23,21,173,0,242,240,48,0,2,133,64,97,160,77, - 143,62,55,222,248,67,14,29,122,61,141,70,99,76,112,99,28,55,56,110, - 9,206,178,151,149,161,73,189,200,106,201,99,24,122,161,150,82,242,141,111, - 133,124,244,15,30,231,193,7,107,192,6,18,185,31,232,146,24,211,92,124, - 249,50,94,116,238,6,0,110,185,241,206,156,216,182,227,185,45,130,104,47, - 75,41,181,126,200,209,99,213,228,197,172,223,176,137,151,95,124,26,91,78, - 222,200,185,231,45,199,243,50,162,40,194,176,15,32,99,173,210,138,90,53, - 203,24,12,73,106,248,190,34,74,59,0,100,137,73,77,181,232,136,73,18, - 25,99,155,253,69,40,75,192,54,77,148,242,177,60,93,247,102,27,61,206, - 123,65,133,243,94,112,58,111,122,171,4,241,18,246,61,97,113,239,246,105, - 118,61,177,135,91,111,219,198,98,47,32,136,82,134,137,78,171,62,237,236, - 244,200,88,91,18,93,150,155,83,0,132,88,77,18,207,0,179,56,206,10, - 146,56,228,174,237,45,118,253,225,173,124,247,166,93,124,248,163,175,102,227, - 122,73,189,166,59,230,59,142,67,24,198,164,65,136,63,49,220,254,235,68, - 192,183,190,53,131,16,41,97,175,203,190,125,135,81,57,185,129,192,16,73, - 222,248,88,96,171,3,88,230,126,140,94,15,140,4,21,103,90,117,205,0, - 11,25,134,23,147,45,102,136,158,130,24,196,163,32,58,9,152,38,244,50, - 76,66,196,68,134,120,48,69,156,12,214,227,211,40,246,129,82,40,185,128, - 160,104,5,103,32,16,121,152,218,102,190,57,205,3,219,119,179,118,221,10, - 106,181,218,216,44,52,198,113,129,227,150,224,12,195,28,106,42,12,144,101, - 122,18,242,220,124,204,127,255,111,143,243,249,207,239,165,53,175,21,143,84, - 237,1,197,182,153,250,100,204,182,109,247,240,195,239,221,75,28,223,1,28, - 36,76,102,128,16,196,225,82,153,185,158,32,10,53,201,173,156,60,137,23, - 156,118,1,103,188,232,76,94,255,243,91,74,210,18,34,192,247,123,4,129, - 32,145,49,174,109,150,93,70,6,45,250,133,90,19,34,96,162,166,23,34, - 83,214,49,108,137,173,102,136,204,117,248,110,23,55,171,99,24,97,254,153, - 60,146,172,135,107,25,164,145,32,201,122,40,229,227,185,211,244,58,186,60, - 192,198,161,90,19,156,114,150,100,253,201,85,162,240,52,222,247,193,139,216, - 126,255,28,183,220,116,43,123,166,35,30,126,228,96,174,238,10,101,215,210, - 231,194,1,116,232,82,195,206,67,151,182,221,37,137,27,8,26,196,113,132, - 32,69,224,49,63,223,230,203,215,70,220,121,207,97,62,242,95,47,227,13, - 63,183,1,203,233,16,7,208,168,173,196,52,125,194,48,166,122,98,241,27, - 219,183,47,98,8,197,220,92,143,36,73,134,186,70,58,70,74,42,187,32, - 96,194,253,33,110,253,49,196,222,54,24,25,98,81,160,22,128,3,10,22, - 21,42,75,16,179,192,162,130,158,64,221,3,194,4,217,202,48,158,20,168, - 117,32,234,145,158,220,246,66,129,185,191,141,233,28,6,49,133,173,102,17, - 106,21,80,84,137,8,4,22,10,7,165,20,59,118,236,163,215,61,139,52, - 149,99,130,27,227,184,192,113,75,112,89,150,149,255,73,181,163,207,71,202, - 148,27,190,174,115,109,95,254,95,83,68,114,6,33,118,32,196,114,150,53, - 44,94,243,186,229,92,112,225,20,119,223,217,228,127,126,242,75,196,241,118, - 244,200,171,8,207,181,200,68,155,40,212,121,12,215,19,196,33,24,234,20, - 46,56,247,197,92,118,249,37,156,127,238,70,54,159,26,98,24,33,65,32, - 24,180,254,23,228,6,16,133,146,90,165,130,29,30,160,195,36,190,175,202, - 115,46,136,203,48,235,164,73,130,97,75,44,219,70,217,27,240,141,26,194, - 208,202,45,77,237,252,117,96,209,192,178,44,28,23,116,141,45,168,236,108, - 150,79,129,48,66,194,32,32,136,116,72,211,54,42,212,151,251,132,65,192, - 249,23,173,228,226,87,188,131,253,251,82,118,236,216,195,109,219,118,112,219, - 237,187,152,153,123,28,207,94,49,16,206,44,66,151,94,25,186,76,98,15, - 133,133,33,26,8,60,148,42,140,40,33,142,99,177,103,250,16,239,255,181, - 79,241,254,237,47,225,253,255,241,82,38,39,43,52,155,77,170,213,58,142, - 211,15,21,23,176,109,155,227,25,123,167,123,40,21,177,208,14,116,103,145, - 129,231,76,17,130,106,130,146,248,83,219,113,166,103,96,111,136,104,103,168, - 67,80,122,151,76,129,177,95,145,61,33,180,41,127,15,136,125,58,220,43, - 238,55,224,14,137,216,40,224,231,4,234,174,12,117,134,137,185,61,192,118, - 82,132,82,216,106,134,76,45,7,6,143,47,242,91,204,194,98,155,40,138, - 144,105,10,238,56,76,57,198,177,143,227,150,224,138,6,201,5,209,181,122, - 9,215,126,105,154,191,252,179,199,184,239,161,41,76,209,192,53,207,32,99, - 129,215,189,62,230,149,151,109,98,122,247,94,254,241,211,215,113,215,246,7, - 208,43,10,20,211,62,194,248,48,0,130,149,120,206,10,38,252,51,184,248, - 213,151,242,242,75,183,150,225,199,68,165,132,161,1,84,112,76,65,44,135, - 93,214,21,187,82,222,55,140,46,178,210,192,205,92,138,148,148,101,219,88, - 150,86,113,30,41,88,54,137,229,99,167,1,137,229,163,199,115,229,202,206, - 178,113,242,182,78,113,58,156,211,74,99,19,223,232,228,251,216,184,174,71, - 213,153,64,166,154,84,210,52,197,117,167,32,106,146,36,7,88,185,10,38, - 150,175,228,5,47,57,133,55,62,214,229,222,237,211,220,252,237,239,228,170, - 14,250,134,20,175,12,93,194,153,8,90,40,165,183,43,60,68,238,252,140, - 227,89,4,30,81,92,231,207,254,252,110,118,61,177,135,95,251,207,239,228, - 133,47,172,17,196,77,28,179,118,194,229,121,58,221,152,76,165,132,137,130, - 33,122,83,152,72,144,61,132,18,152,81,23,241,181,0,76,129,124,18,140, - 135,209,205,176,30,82,176,30,212,110,3,238,6,102,5,60,96,64,51,67, - 69,160,254,73,32,246,0,123,21,124,5,93,141,118,83,134,122,8,178,77, - 105,238,162,12,81,89,66,159,212,20,253,37,64,146,166,33,50,147,200,241, - 196,136,49,142,19,28,179,4,23,71,135,113,220,149,229,88,26,219,78,144, - 105,143,36,173,224,251,62,32,144,178,75,146,216,236,159,237,114,245,223,119, - 249,235,143,55,105,47,108,6,218,36,114,63,167,110,149,188,254,231,96,203, - 22,248,238,77,223,225,250,175,127,159,48,190,21,240,64,220,90,30,75,169, - 58,168,58,190,187,130,51,79,123,45,231,159,119,25,111,124,171,162,226,215, - 243,206,239,58,183,6,17,133,195,58,201,64,8,168,169,22,139,172,197,243, - 52,9,89,185,82,177,172,169,161,207,227,123,163,246,126,253,216,1,176,170, - 84,181,37,20,211,62,242,79,54,152,65,147,73,138,89,179,144,137,137,144, - 41,182,105,145,88,41,96,128,85,28,195,37,78,37,194,40,198,117,233,227, - 164,233,2,155,79,77,216,124,234,74,94,255,230,247,114,223,15,158,224,150, - 155,110,229,251,63,136,153,153,59,76,223,149,121,48,95,162,117,1,185,227, - 212,72,98,55,47,18,39,39,186,25,20,45,4,30,95,249,234,94,238,186, - 239,75,101,200,18,167,77,184,96,225,121,250,204,171,213,42,89,38,73,147, - 121,76,171,130,76,123,101,221,220,241,130,138,175,80,42,209,189,31,71,160, - 84,140,33,82,50,37,80,123,51,196,19,32,58,25,170,106,192,54,137,218, - 105,32,58,10,22,64,221,7,226,145,12,53,47,224,59,10,163,173,64,130, - 184,78,34,50,64,42,178,79,102,136,54,48,163,80,19,2,21,91,128,68, - 140,40,199,252,232,232,110,91,81,94,194,241,35,135,160,142,49,198,49,131, - 99,150,224,10,114,179,109,27,211,204,0,19,211,2,199,45,230,183,201,146, - 220,254,227,175,239,230,107,55,56,64,149,68,238,199,54,215,241,75,87,173, - 230,130,11,167,152,222,189,151,63,251,127,239,96,247,244,119,128,71,129,86, - 190,48,131,227,78,16,135,46,190,91,99,235,73,47,226,85,175,126,25,151, - 95,241,114,214,173,183,88,88,56,136,97,235,43,93,77,110,71,194,117,93, - 18,86,83,179,77,244,240,99,202,1,147,131,10,12,192,54,173,35,200,75, - 102,21,76,163,135,231,29,233,164,204,162,14,129,172,83,173,168,242,177,225, - 214,24,240,185,148,8,195,35,187,164,216,73,74,50,112,252,66,5,90,150, - 69,154,166,144,204,241,210,151,175,226,5,47,121,23,111,126,172,203,191,252, - 243,109,220,118,123,225,196,156,164,95,22,209,44,195,150,74,173,65,80,16, - 93,81,22,161,67,174,187,166,239,231,195,191,253,16,15,108,127,37,87,189, - 243,10,78,59,41,35,12,67,170,213,58,221,110,23,199,113,112,220,149,116, - 154,11,248,19,149,209,211,61,230,177,118,157,195,131,15,233,139,177,190,130, - 210,48,72,201,136,17,40,120,84,33,102,50,221,202,248,75,232,200,112,71, - 161,28,3,177,198,64,60,148,193,1,129,136,20,226,110,133,200,205,41,42, - 70,243,148,45,48,14,101,144,8,232,42,144,38,180,37,136,226,111,157,31, - 95,101,249,163,24,232,2,49,21,223,71,112,226,57,92,199,56,126,113,204, - 18,28,232,188,77,150,201,129,89,109,254,192,140,54,193,109,119,244,248,203, - 63,213,227,107,12,180,85,218,48,218,188,255,3,43,216,120,146,205,237,219, - 6,85,91,11,207,149,4,81,11,33,180,189,63,14,27,156,117,234,75,134, - 136,173,19,46,178,144,23,161,101,137,73,52,210,97,164,152,229,213,87,106, - 195,95,113,161,212,10,245,162,239,251,57,65,245,137,204,178,10,66,28,86, - 122,3,59,81,25,121,60,136,52,77,176,172,226,28,204,145,231,36,33,193, - 16,161,122,104,245,151,200,20,173,240,50,100,154,48,97,245,152,56,79,240, - 190,141,23,241,202,87,95,194,119,111,218,197,245,95,251,6,97,210,42,247, - 21,3,109,193,108,103,5,73,172,93,150,153,106,211,55,171,120,28,156,11, - 185,230,179,183,208,60,108,240,59,255,231,69,76,77,45,67,202,132,48,12, - 49,77,27,41,99,42,141,26,65,16,28,119,38,148,115,207,173,115,227,183, - 118,34,211,124,78,155,82,20,85,105,134,72,49,8,181,228,127,24,68,12, - 217,50,19,113,48,131,213,2,33,21,188,72,144,157,146,33,190,159,83,163, - 43,80,150,66,77,25,16,9,212,22,16,211,25,202,17,168,213,22,226,144, - 68,85,76,232,129,136,50,132,26,14,140,34,200,157,155,186,196,69,136,128, - 181,235,214,98,148,230,146,177,146,27,227,216,199,49,75,112,69,103,146,56, - 150,152,102,134,105,26,101,206,13,4,215,93,223,225,163,127,240,24,123,167, - 69,62,155,109,154,147,55,215,120,239,127,56,131,101,141,57,254,234,207,175, - 231,193,71,30,33,76,190,139,227,29,34,10,21,97,188,152,119,149,88,201, - 170,201,147,120,217,203,46,230,23,223,252,98,182,158,181,1,8,89,88,232, - 144,200,152,90,165,126,132,106,27,29,82,89,16,219,96,232,113,148,212,244, - 235,114,34,243,86,252,200,207,236,121,30,97,24,150,239,163,226,225,92,137, - 112,204,254,246,129,191,108,65,116,131,143,139,247,72,211,132,52,213,239,51, - 72,122,118,86,33,137,231,9,194,136,74,58,139,185,114,45,151,95,110,176, - 233,164,45,108,218,250,26,190,243,237,61,60,248,200,237,132,73,7,207,174, - 1,41,97,114,128,56,110,225,57,203,137,147,83,242,146,130,126,155,51,1, - 28,154,11,185,250,154,59,105,183,119,241,123,127,244,30,54,109,136,136,35, - 109,62,1,109,8,114,28,103,232,194,229,120,192,165,151,174,224,207,255,44, - 66,97,1,6,125,5,167,205,250,197,212,25,177,15,148,9,226,133,74,135, - 33,215,131,120,0,120,129,66,156,37,16,119,103,168,75,12,196,3,185,210, - 250,128,137,250,146,132,215,128,122,208,208,251,126,4,248,53,129,122,191,1, - 95,0,213,117,80,123,134,39,125,43,50,116,78,119,30,152,167,94,159,228, - 148,83,86,98,89,86,110,206,26,119,51,25,227,216,199,49,75,112,122,62, - 153,46,222,206,178,172,236,76,2,112,221,245,29,126,251,67,187,105,54,53, - 185,1,156,119,142,201,127,248,237,77,116,102,119,240,87,127,254,29,238,220, - 254,4,130,27,65,76,19,71,250,226,89,169,58,190,123,42,175,60,111,45, - 175,125,235,187,216,186,245,36,86,175,13,233,118,58,101,237,153,101,52,8, - 243,139,109,208,196,166,205,33,195,95,101,17,130,28,12,61,122,158,63,160, - 204,142,116,13,122,35,42,108,41,84,171,117,164,76,48,77,27,124,187,127, - 31,134,182,11,121,116,114,8,195,16,215,176,137,50,173,242,6,149,94,65, - 118,221,30,76,78,78,49,9,180,90,46,81,167,139,180,44,78,57,213,101, - 221,250,211,56,231,220,115,185,241,246,141,124,251,159,191,203,204,220,52,90, - 193,105,210,14,227,189,8,234,253,191,85,89,39,88,180,43,59,192,63,127, - 21,132,113,35,31,254,232,171,217,178,165,78,115,126,15,142,59,133,231,121, - 248,190,95,54,111,6,113,92,76,38,184,244,210,213,172,93,107,179,127,127, - 15,33,44,180,66,202,59,153,128,14,25,170,140,236,133,2,14,10,61,85, - 237,223,234,58,55,26,6,156,148,33,206,3,53,97,96,252,44,100,77,3, - 177,85,192,171,50,248,33,240,51,2,229,11,56,83,65,53,35,187,216,192, - 184,88,161,102,5,198,131,121,24,51,179,232,143,145,0,29,62,222,15,28, - 226,229,47,125,13,213,170,131,231,122,152,230,49,187,44,140,49,198,16,142, - 217,95,178,110,142,236,149,74,206,178,151,145,36,9,55,124,61,224,211,159, - 218,193,158,221,43,242,110,36,41,47,127,197,6,222,249,171,27,216,126,199, - 110,62,247,217,91,153,155,191,3,193,163,128,38,181,34,36,185,122,234,98, - 222,240,218,75,248,229,119,191,152,74,165,71,150,45,210,89,52,0,31,203, - 240,181,129,66,4,248,190,34,203,250,100,52,72,110,190,231,14,17,149,204, - 42,120,158,194,178,204,31,73,106,5,81,233,251,71,191,130,54,77,39,207, - 229,140,238,99,151,251,153,230,176,75,81,14,56,58,171,213,188,216,87,246, - 21,223,32,217,165,105,66,189,170,11,204,123,1,216,206,50,214,173,90,137, - 233,164,180,90,77,132,17,242,130,11,36,103,159,115,58,47,58,195,230,243, - 159,217,145,171,225,69,20,83,104,87,229,65,125,12,60,96,77,174,230,138, - 194,248,16,219,169,241,79,215,126,27,119,85,198,111,252,234,233,156,116,210, - 114,92,67,159,215,220,124,76,189,102,228,229,29,121,24,239,24,39,57,223, - 55,248,119,239,62,149,255,246,127,221,70,86,150,84,232,207,36,149,67,166, - 26,8,209,129,11,76,232,10,125,173,112,158,130,25,200,206,0,97,24,24, - 53,133,218,8,106,3,176,81,145,189,20,196,68,6,171,13,178,83,4,70, - 79,64,67,32,50,133,218,96,162,20,164,91,171,36,247,231,205,181,179,149, - 40,97,2,18,41,99,20,59,129,39,177,172,148,215,191,225,50,60,207,163, - 90,173,30,113,177,54,198,24,199,42,142,217,95,114,166,26,104,167,164,204, - 7,147,102,37,185,233,233,218,211,24,70,149,159,125,131,207,149,111,109,112, - 211,182,27,249,202,63,252,16,212,46,224,201,188,49,114,222,82,75,173,228, - 130,115,223,204,219,222,121,57,47,125,249,42,58,139,146,32,16,248,126,8, - 3,153,174,90,221,36,77,244,66,237,249,253,124,217,104,24,114,208,20,98, - 89,198,16,177,253,40,66,147,82,233,134,185,121,126,81,202,172,172,17,43, - 76,53,0,69,217,216,112,14,82,230,97,218,193,109,89,254,122,163,156,170, - 80,204,112,43,74,14,70,21,159,138,109,146,252,124,28,87,255,68,210,52, - 33,234,89,216,206,50,60,175,71,26,54,73,45,159,139,95,177,149,173,91, - 79,226,218,47,111,230,134,175,111,203,221,150,107,209,163,129,124,60,167,74, - 20,135,121,70,71,27,79,20,107,137,226,189,24,76,114,205,167,110,38,60, - 56,93,134,43,9,19,42,190,71,177,248,195,177,79,110,160,255,214,31,252, - 224,5,124,225,11,247,240,228,147,51,160,170,121,184,18,98,85,35,99,5, - 138,105,178,245,117,84,111,30,92,137,81,131,172,33,52,161,237,183,144,61, - 3,177,49,37,179,36,98,173,129,113,58,32,76,178,53,6,134,43,80,203, - 114,114,75,5,212,76,226,67,19,244,204,53,132,193,122,80,77,18,99,5, - 250,191,124,70,24,29,2,30,64,136,189,188,225,117,111,228,180,51,86,51, - 49,209,160,82,169,96,154,199,254,247,61,198,24,112,12,19,156,227,88,249, - 194,167,151,206,239,223,218,227,227,127,178,139,109,183,206,14,213,183,93,249, - 214,173,220,180,237,70,62,255,169,175,161,45,105,247,129,152,46,51,12,158, - 179,133,215,94,126,37,191,254,155,63,79,163,209,160,221,110,83,169,244,232, - 245,42,244,122,90,177,37,50,198,245,76,130,72,23,74,27,102,63,252,54, - 170,216,138,48,228,83,145,218,168,58,27,44,114,54,205,126,94,173,152,132, - 176,212,235,6,95,51,122,127,120,155,94,172,180,210,29,126,222,52,7,7, - 150,246,85,33,190,77,156,106,210,206,242,94,98,150,213,133,74,130,45,123, - 122,187,183,46,119,103,134,156,121,134,203,198,223,186,156,115,94,104,240,185, - 207,124,155,123,182,107,114,131,128,48,158,203,219,67,121,185,138,219,132,160, - 141,226,118,50,182,96,176,134,27,190,121,128,70,237,83,188,239,67,87,176, - 117,235,154,60,207,88,126,106,32,57,46,10,193,151,45,243,249,219,191,125, - 61,111,122,211,223,210,106,237,69,147,184,65,172,170,40,99,57,8,65,194, - 106,210,117,51,88,118,72,102,166,168,9,129,57,169,136,15,216,136,197,10, - 230,218,69,12,51,67,77,65,182,194,134,80,160,86,8,228,130,11,149,12, - 49,159,96,74,65,234,213,89,152,59,141,102,112,22,221,100,51,138,54,194, - 172,163,185,107,22,41,111,2,241,48,103,157,121,62,239,120,215,155,168,215, - 38,152,154,154,90,210,177,59,198,24,199,42,158,247,4,55,56,203,109,112, - 225,86,42,32,203,124,148,10,185,251,62,197,71,62,178,139,219,111,95,142, - 97,244,200,88,224,202,55,60,198,219,222,243,42,174,253,226,205,124,254,154, - 175,225,187,211,244,162,187,128,60,11,161,78,193,115,37,255,254,221,31,224, - 170,119,188,8,128,40,106,82,169,232,46,36,131,45,180,106,21,77,104,69, - 174,109,212,9,57,74,106,69,168,173,48,125,20,74,109,144,216,142,182,96, - 63,91,198,138,165,84,208,40,129,22,228,42,101,70,189,80,148,150,202,183, - 121,132,33,144,187,58,53,9,233,197,80,38,41,174,181,139,55,188,254,84, - 86,78,173,229,203,95,254,18,255,251,134,76,79,19,183,83,194,100,39,176, - 22,85,134,42,161,44,20,231,30,194,120,138,127,252,10,96,62,193,175,255, - 214,38,214,174,60,136,149,118,137,205,211,169,215,32,142,99,84,214,194,178, - 151,81,228,144,142,69,85,103,24,6,47,125,233,6,62,119,205,219,249,141, - 15,92,205,147,59,118,0,22,74,153,40,203,70,169,89,226,112,29,105,245, - 0,66,205,32,58,2,163,38,144,74,160,204,6,81,183,138,211,72,177,173, - 20,150,131,178,108,178,158,3,19,38,97,187,142,105,36,184,246,34,89,170, - 72,157,26,221,120,43,161,253,34,236,90,3,149,181,117,110,77,245,128,27, - 49,140,59,121,249,203,94,197,7,62,112,21,43,86,212,89,185,114,5,141, - 70,227,8,199,237,24,99,28,203,16,74,169,231,189,31,184,8,179,141,46, - 106,113,116,152,76,53,120,237,235,102,120,248,254,131,204,54,219,216,230,58, - 206,62,187,195,71,254,232,12,62,253,169,29,124,243,235,127,67,152,124,151, - 98,70,91,209,241,127,213,228,105,252,238,239,255,46,23,191,98,43,81,212, - 44,219,107,13,186,36,139,92,219,160,229,255,233,144,219,209,136,173,112,122, - 62,95,49,120,49,209,15,99,234,176,169,148,253,214,90,133,147,51,12,67, - 194,48,196,16,1,139,11,41,152,19,88,190,207,254,199,15,242,241,143,63, - 202,151,175,253,39,0,20,83,3,13,169,39,241,220,149,132,145,46,28,207, - 6,202,8,60,199,228,253,239,215,173,189,124,99,14,199,157,34,83,85,42, - 190,196,243,32,12,245,119,90,76,37,56,22,161,84,70,20,71,236,217,61, - 195,231,63,191,141,31,254,240,126,94,243,154,139,88,179,102,45,158,88,228, - 172,13,79,80,205,238,164,234,237,194,112,91,136,56,70,58,14,241,226,74, - 164,170,82,117,119,224,213,247,163,246,58,36,39,77,160,122,46,105,203,38, - 114,215,97,24,61,124,113,8,163,150,209,110,173,166,157,93,134,244,47,197, - 169,109,224,155,223,216,193,11,47,88,197,181,215,238,101,255,254,59,184,224, - 69,91,56,235,236,13,212,171,53,86,173,94,201,170,85,171,169,215,171,8, - 113,124,133,134,199,56,177,241,188,37,184,209,60,210,82,255,217,154,11,51, - 252,225,127,21,124,242,47,103,145,170,141,45,54,178,101,235,67,252,214,71, - 126,134,237,119,236,230,111,62,249,73,194,228,78,20,187,242,241,53,26,171, - 38,95,199,239,252,151,119,115,241,43,182,2,48,215,220,3,128,109,58,248, - 190,34,8,68,105,251,47,114,109,133,43,242,104,196,86,108,31,37,181,99, - 57,180,166,155,85,27,37,217,21,33,204,130,236,194,48,239,155,105,167,196, - 129,34,77,37,50,182,8,83,201,222,67,109,254,254,51,15,243,237,127,254, - 46,7,231,210,161,225,174,190,123,42,97,20,163,136,114,21,23,226,57,38, - 97,188,151,213,203,87,242,225,63,120,39,191,124,213,25,44,180,247,178,108, - 101,29,199,172,161,98,137,229,123,72,153,80,61,198,139,228,148,82,196,113, - 76,187,221,166,217,108,18,4,61,26,141,73,42,158,67,180,184,151,172,183, - 11,51,222,133,140,14,33,178,14,169,242,72,84,13,75,40,38,157,7,112, - 107,59,161,99,208,181,166,144,201,4,153,170,19,101,235,48,72,169,88,7, - 81,164,132,217,10,122,230,133,56,83,23,48,181,98,61,134,97,17,4,65, - 158,175,150,180,90,45,132,16,52,26,19,76,78,78,81,169,84,142,248,63, - 54,38,184,49,142,117,28,19,4,87,64,202,46,166,169,23,183,48,140,249, - 228,95,119,249,240,127,62,80,146,91,198,2,95,252,202,6,174,253,226,205, - 124,250,154,175,2,219,112,188,54,113,232,130,208,189,36,95,115,225,27,120, - 219,251,62,204,217,23,56,204,29,238,148,115,215,128,82,189,133,161,65,173, - 110,14,213,178,21,118,255,167,34,54,211,20,72,169,112,28,243,121,173,212, - 126,82,20,13,146,7,21,93,65,114,160,141,40,153,236,176,184,144,82,173, - 215,217,191,191,197,255,250,199,199,184,230,179,183,112,112,46,197,200,107,226, - 20,33,134,56,61,47,4,7,56,88,18,28,180,120,209,185,87,240,251,31, - 189,148,11,47,90,129,33,2,50,229,227,184,203,169,215,250,11,238,177,172, - 226,10,72,41,137,162,40,191,144,176,176,109,19,153,72,226,104,129,56,88, - 32,236,181,8,195,30,74,42,132,105,99,26,41,118,58,67,22,237,34,139, - 83,34,89,65,25,85,148,211,192,176,39,48,77,11,147,16,153,70,72,229, - 96,120,107,168,79,173,166,49,185,18,199,117,202,54,92,82,74,210,52,193, - 16,6,142,235,98,219,214,146,83,188,199,4,55,198,177,142,99,134,224,164, - 236,150,61,10,179,44,27,168,117,11,153,111,235,254,126,127,252,167,103,0, - 240,251,191,243,123,96,220,71,24,77,107,91,122,174,222,94,120,206,251,248, - 208,111,190,141,139,94,172,216,123,112,97,232,120,133,114,3,104,76,246,139, - 147,7,77,36,158,231,151,247,139,80,228,168,105,228,88,86,108,63,10,131, - 33,204,56,150,56,142,137,148,153,206,145,229,165,6,134,173,255,22,243,135, - 23,241,60,159,253,251,91,220,126,123,194,255,248,163,207,112,112,46,197,117, - 54,16,197,123,17,108,70,224,162,136,208,189,45,139,25,116,0,1,255,246, - 103,47,226,247,254,232,61,52,106,7,17,118,198,186,85,155,233,118,23,153, - 156,244,72,18,187,116,154,30,15,80,74,13,17,140,148,146,36,73,137,147, - 4,153,38,101,243,2,195,52,80,169,34,140,2,194,40,64,166,41,166,105, - 96,90,30,182,109,97,91,22,166,97,144,202,132,52,205,176,108,11,223,243, - 112,61,31,199,177,159,242,152,75,97,76,112,99,28,235,120,94,155,76,250, - 147,159,21,50,237,97,90,21,178,44,227,222,237,61,62,253,169,29,52,155, - 9,243,237,20,165,230,248,224,7,55,113,242,201,38,111,253,197,255,73,156, - 76,163,120,28,129,87,214,184,93,112,238,175,240,161,223,124,27,103,156,39, - 120,108,231,94,106,19,21,178,68,19,104,34,99,8,28,170,181,26,105,174, - 82,142,166,218,70,115,108,131,228,118,188,207,208,26,44,71,176,237,4,41, - 69,222,11,212,4,95,33,130,144,88,118,136,3,69,173,86,35,77,37,141, - 201,41,46,190,100,130,95,217,245,74,62,249,201,31,16,198,79,32,152,68, - 79,16,159,204,45,35,186,183,165,130,220,148,2,95,249,234,119,217,124,202, - 73,92,245,206,43,216,184,222,226,208,129,38,245,229,69,30,78,159,207,96, - 217,196,177,140,81,162,49,77,19,195,48,112,28,11,165,242,6,214,69,125, - 182,130,138,172,145,201,20,149,41,132,33,16,66,96,154,70,249,62,74,233, - 190,92,194,208,69,242,75,253,46,127,20,185,141,49,198,241,128,231,53,193, - 233,238,230,218,222,110,90,21,132,240,217,181,191,205,103,175,222,203,247,110, - 77,74,83,201,235,222,224,115,233,171,54,241,239,255,221,63,16,199,79,224, - 185,79,18,198,139,56,174,32,10,235,156,125,234,107,249,208,111,190,141,211, - 207,241,105,5,143,81,107,172,69,70,25,105,214,198,50,26,76,54,250,196, - 86,228,220,150,202,181,121,158,119,92,229,216,126,82,104,162,171,146,36,241, - 80,89,131,239,251,16,128,170,90,200,80,209,112,98,12,113,136,229,203,92, - 174,122,231,21,0,124,236,207,111,40,167,160,23,211,6,20,147,232,98,240, - 131,132,201,1,116,135,141,41,174,249,236,45,156,115,238,185,76,46,95,78, - 210,219,67,125,249,73,3,37,4,250,226,226,120,33,185,81,8,33,116,207, - 202,37,160,35,231,246,211,82,97,99,140,113,34,227,121,31,131,40,72,78, - 8,77,60,219,239,49,185,246,139,59,152,111,167,216,230,58,54,111,146,92, - 249,214,173,124,238,239,110,98,126,126,6,216,70,16,205,2,16,133,138,213, - 83,23,243,158,247,190,149,51,206,19,218,76,18,174,38,139,187,8,17,80, - 171,212,17,34,32,77,18,60,223,199,178,44,38,170,85,38,170,85,42,126, - 63,36,57,216,187,17,158,186,203,200,137,130,36,73,112,138,222,151,42,36, - 8,116,120,209,113,28,42,150,192,55,245,112,87,199,157,162,221,157,99,245, - 138,54,87,189,243,10,222,124,229,64,178,219,125,0,0,32,0,73,68,65, - 84,27,48,88,51,240,78,186,62,206,16,13,96,77,222,9,69,99,102,174, - 195,63,252,127,215,179,227,145,135,153,152,154,226,208,244,30,50,85,45,123, - 112,74,249,188,140,174,255,171,97,76,110,99,140,241,212,120,94,19,92,150, - 101,165,131,50,77,230,184,119,123,143,143,125,172,205,238,153,85,216,98,35, - 82,181,121,235,59,166,216,126,199,110,174,251,250,163,40,110,134,34,231,166, - 206,197,119,87,240,150,95,186,130,139,94,60,69,24,4,101,61,155,82,154, - 44,179,196,196,117,221,82,181,249,158,171,251,70,154,19,24,102,13,207,243, - 112,13,155,106,181,142,105,218,56,142,83,230,126,138,219,137,10,219,182,203, - 58,58,211,172,230,206,70,133,105,154,152,166,192,173,249,88,190,190,40,152, - 154,212,245,85,235,215,116,120,219,187,182,112,249,139,15,230,239,178,6,69, - 11,152,65,169,25,12,209,200,201,111,10,221,229,126,39,219,126,240,0,215, - 95,95,103,177,171,59,202,164,241,94,2,233,208,237,46,34,165,30,63,51, - 58,29,124,140,49,198,24,3,158,199,4,167,23,79,35,183,53,119,233,36, - 19,108,187,57,97,251,157,219,49,69,131,68,77,243,178,203,92,22,91,14, - 255,242,149,239,99,168,123,128,168,172,115,131,22,191,252,166,247,114,229,155, - 206,7,244,204,182,40,138,180,98,203,218,248,190,194,176,101,89,227,86,152, - 73,42,62,52,38,250,237,181,250,249,182,19,55,36,249,244,81,212,251,153, - 101,203,49,207,243,112,204,26,150,101,211,104,44,227,101,23,159,206,85,239, - 253,13,94,116,238,6,224,32,142,163,167,40,20,13,153,85,62,29,92,195, - 3,14,112,235,77,55,241,195,91,247,51,49,53,197,226,66,74,176,168,221, - 151,131,14,206,49,201,141,49,198,24,163,120,222,18,28,104,231,100,129,93, - 79,38,124,238,234,199,137,83,189,136,46,95,222,226,141,111,216,194,45,55, - 222,201,238,233,111,16,38,183,225,185,157,210,84,242,154,139,206,227,202,183, - 92,70,163,209,32,12,13,124,95,105,51,9,186,51,73,150,121,101,88,178, - 32,55,207,243,49,242,197,216,53,250,57,183,49,185,61,61,12,186,238,28, - 199,204,213,156,93,230,45,187,221,69,76,79,240,202,43,150,243,246,247,92, - 194,234,229,41,73,156,82,204,146,83,42,175,171,99,13,197,180,112,128,187, - 182,127,139,155,111,218,199,129,195,107,80,114,145,36,91,36,77,139,146,133, - 36,47,91,208,74,110,208,233,249,92,163,184,64,59,86,111,99,140,113,172, - 227,121,251,43,46,28,148,113,116,24,211,172,178,237,230,132,7,31,172,17, - 38,147,72,213,230,138,43,78,103,122,79,194,254,3,223,2,30,193,115,107, - 132,241,78,0,86,79,93,204,59,222,119,21,235,214,91,180,219,237,225,182, - 91,74,119,206,24,85,110,163,78,73,203,239,147,155,105,26,99,114,123,154, - 24,92,28,181,131,79,224,121,14,19,19,19,184,134,141,12,21,85,59,226, - 226,75,78,225,87,222,254,74,20,173,1,245,22,229,173,188,26,249,54,31, - 77,126,45,238,189,255,102,238,191,251,32,194,172,19,134,33,105,170,107,185, - 194,48,28,234,178,50,216,129,101,140,49,198,56,177,241,188,37,56,160,44, - 234,190,251,190,14,127,243,137,189,0,100,89,151,147,55,215,216,122,154,195, - 45,55,222,73,123,65,95,245,103,98,78,239,164,86,242,182,119,190,131,83, - 207,57,131,78,184,88,146,91,16,8,166,140,30,137,183,26,195,8,135,148, - 155,204,42,67,78,73,77,110,162,204,183,13,218,227,199,120,122,24,172,97, - 44,156,142,149,134,110,187,229,248,130,141,235,45,94,113,217,229,101,168,18, - 192,113,82,77,114,194,203,139,194,39,209,142,74,143,123,182,119,249,238,77, - 15,210,94,148,4,97,68,24,6,229,236,58,21,203,33,146,27,99,140,49, - 198,128,231,49,193,73,41,201,178,12,199,93,201,103,175,222,201,147,187,58, - 229,115,23,253,76,149,251,239,154,229,225,199,110,33,76,182,3,62,113,164, - 11,183,87,77,93,200,43,94,185,149,118,187,77,22,119,75,67,9,128,170, - 111,192,178,109,38,220,250,146,57,55,215,176,71,102,170,141,182,46,58,190, - 235,220,158,13,20,202,183,40,86,46,96,136,46,47,123,169,195,85,239,220, - 90,22,121,235,112,165,134,98,50,175,151,243,242,91,147,27,190,190,141,219, - 111,79,152,152,88,11,64,24,6,132,97,72,148,245,59,172,232,99,141,47, - 68,198,24,99,140,231,49,193,21,11,227,221,247,117,248,198,13,7,180,177, - 68,238,231,212,173,171,1,184,239,222,59,242,217,110,51,32,182,3,122,244, - 205,239,252,151,119,179,126,99,138,231,233,80,85,161,224,138,222,146,0,194, - 171,150,182,255,34,231,86,40,183,193,227,143,9,237,167,71,150,201,188,201, - 180,145,23,47,59,248,206,20,19,19,19,212,107,6,151,92,126,25,191,112, - 229,229,232,97,168,45,61,245,91,133,8,92,108,199,66,177,150,34,76,57, - 51,119,152,91,110,252,14,123,15,181,117,104,50,209,132,56,26,170,28,135, - 41,199,24,99,12,120,30,19,92,150,101,40,21,240,217,171,119,242,216,147, - 117,221,111,210,92,199,153,103,75,162,206,253,236,154,190,159,48,153,133,220, - 53,169,84,157,215,95,241,62,46,126,197,86,102,231,14,17,69,81,249,94, - 182,161,45,230,166,81,163,94,235,55,234,213,121,183,190,114,3,202,156,219, - 24,207,12,148,210,132,213,239,74,163,251,72,74,169,8,226,38,155,79,182, - 121,221,91,94,197,73,27,79,194,113,86,228,164,166,195,148,113,60,59,242, - 110,45,110,187,125,23,7,31,123,136,56,205,72,100,58,20,170,4,74,195, - 201,24,99,140,49,198,115,182,146,15,134,145,178,76,30,113,75,147,57,146, - 196,230,134,235,250,251,156,188,117,47,181,250,4,119,222,115,24,193,195,192, - 238,178,137,178,239,158,202,219,223,125,41,73,114,0,203,104,12,29,203,176, - 37,158,239,35,12,77,134,131,166,18,24,46,5,248,215,34,183,162,198,111, - 233,231,142,254,221,252,52,239,123,244,125,228,17,199,125,166,96,154,85,76, - 179,90,26,79,10,101,110,136,54,190,51,133,12,21,63,255,218,132,87,189, - 114,21,105,178,156,36,78,203,153,113,130,77,184,206,6,116,93,156,110,231, - 181,208,121,152,27,110,23,164,177,73,16,70,200,36,197,16,58,84,217,11, - 204,242,189,199,101,3,99,140,49,198,115,70,112,63,42,252,103,217,203,248, - 252,87,66,154,205,220,68,146,117,241,252,73,162,206,253,204,204,60,9,244, - 107,160,148,170,243,203,111,122,11,213,90,151,40,29,94,220,93,215,61,194, - 49,9,28,209,126,75,147,155,121,196,16,208,103,19,75,89,177,71,201,13, - 250,42,232,104,207,143,190,231,143,99,241,46,154,90,15,254,251,175,1,61, - 188,148,124,214,155,199,149,111,185,140,101,203,26,3,53,112,125,12,214,197, - 5,81,202,163,63,152,102,255,190,20,149,233,237,105,40,177,44,19,67,116, - 135,204,38,63,46,209,143,49,198,24,199,23,158,243,88,220,232,130,90,16, - 140,148,25,95,251,226,77,204,183,83,76,209,96,197,84,131,147,54,57,236, - 216,225,16,198,15,0,45,32,68,169,58,171,38,79,227,202,183,92,6,128, - 140,107,152,142,54,164,20,228,102,89,22,166,101,99,155,186,245,102,173,86, - 59,194,84,162,115,110,255,122,95,199,232,177,10,133,214,15,233,201,33,98, - 3,134,158,43,106,4,127,28,117,183,244,121,152,75,254,251,108,67,202,44, - 47,33,208,143,95,113,153,203,207,253,27,7,223,173,231,19,6,52,226,216, - 202,103,201,245,137,239,174,237,223,98,199,14,61,195,47,145,41,65,172,67, - 146,97,24,162,98,73,146,86,242,99,140,205,38,99,140,113,34,227,57,13, - 81,22,170,97,80,53,21,33,182,237,15,69,124,251,219,122,230,151,84,109, - 132,53,203,124,47,99,207,254,29,104,114,139,64,28,70,224,241,138,139,223, - 194,186,245,154,188,60,47,67,26,93,12,123,120,113,115,44,3,211,182,74, - 114,27,44,7,120,54,107,220,158,78,248,111,80,169,21,40,238,203,180,119, - 196,173,120,46,77,230,127,44,117,247,227,16,225,82,196,249,76,171,59,219, - 182,145,105,15,128,201,138,205,85,255,199,37,84,107,83,125,163,137,240,48, - 68,35,239,118,162,107,226,124,215,2,90,92,247,165,29,236,223,151,210,235, - 9,22,186,93,50,217,33,12,3,162,172,48,156,140,115,113,99,140,113,162, - 227,57,87,112,131,24,108,207,245,217,171,119,178,16,244,27,239,78,214,55, - 208,157,57,200,236,252,163,192,76,222,195,16,86,78,158,196,27,223,244,114, - 58,161,158,249,150,40,139,160,37,168,196,250,241,104,167,146,2,133,169,228, - 95,227,51,141,134,255,6,255,29,36,183,165,200,204,74,231,203,91,129,226, - 185,226,126,177,255,224,123,22,199,27,60,214,211,173,231,27,124,126,240,188, - 159,201,122,192,193,139,10,223,247,73,147,57,94,248,66,159,75,94,62,58, - 183,204,39,137,171,80,150,12,104,60,244,216,54,154,205,190,97,168,23,12, - 237,86,134,42,199,185,184,49,198,56,113,241,188,33,184,209,133,232,174,7, - 18,150,53,180,42,203,178,46,171,183,36,204,183,247,33,208,227,84,116,67, - 229,149,108,216,120,17,245,41,155,40,104,106,245,22,101,84,252,58,137,183, - 26,203,182,49,173,254,130,57,216,169,4,158,221,169,0,163,10,232,104,74, - 174,80,96,5,81,149,231,58,66,106,131,219,70,183,15,146,220,83,169,185, - 31,101,236,89,74,225,21,143,165,236,254,84,161,208,81,20,249,177,76,245, - 13,65,117,215,224,117,111,121,213,17,175,21,194,43,107,226,130,168,3,68, - 28,106,38,44,44,246,107,35,71,39,139,143,49,198,24,99,60,167,4,87, - 228,147,70,113,120,54,228,145,187,37,189,222,44,89,214,165,226,38,44,171, - 24,185,185,228,224,192,43,27,188,252,226,211,88,189,54,196,54,29,146,172, - 135,233,116,80,202,47,115,111,142,101,224,121,222,80,104,178,112,77,194,115, - 215,95,242,104,68,81,146,151,108,63,229,109,148,236,10,146,75,146,167,247, - 121,10,50,60,218,109,20,66,120,67,251,254,180,8,2,45,185,60,207,33, - 142,83,76,171,66,28,199,252,220,107,28,150,45,27,112,193,10,15,165,124, - 108,103,112,116,97,0,180,120,226,209,239,149,202,61,8,117,222,110,144,232, - 198,221,77,198,24,227,196,198,115,74,112,66,120,101,216,171,32,154,48,140, - 105,206,238,162,189,80,37,136,123,24,70,149,74,101,5,123,118,199,4,113, - 23,242,208,100,129,23,95,248,98,90,237,121,12,91,18,133,18,215,210,31, - 201,178,142,62,203,117,176,199,228,179,141,165,242,106,163,143,151,82,111,5, - 100,52,63,116,123,42,200,180,135,109,39,75,154,83,150,186,63,120,220,163, - 221,95,106,223,65,178,251,73,81,152,75,194,48,198,243,156,178,45,91,189, - 102,112,210,186,173,3,70,19,23,132,151,119,57,41,122,83,234,80,243,244, - 238,221,68,65,147,52,213,5,223,50,73,137,114,243,77,49,51,110,140,49, - 198,56,113,241,156,77,244,214,38,2,191,156,247,150,36,9,42,107,225,56, - 203,249,234,215,87,35,213,35,40,213,64,169,46,83,83,171,105,54,191,143, - 96,39,228,11,159,82,117,206,62,85,143,194,113,61,19,25,215,168,216,130, - 40,93,196,116,53,113,21,185,183,163,185,38,159,41,12,170,177,165,212,77, - 154,104,98,50,173,74,105,158,40,182,13,194,74,231,65,182,135,137,44,109, - 67,150,147,186,49,137,76,219,249,139,27,152,174,182,218,91,64,106,233,251, - 50,237,97,90,149,242,92,132,240,74,66,42,206,109,48,36,250,116,137,173, - 120,159,103,202,101,89,12,176,181,237,4,41,19,132,240,168,86,171,28,158, - 13,249,249,159,143,184,239,193,6,74,249,40,30,205,235,226,54,83,56,103, - 193,5,34,190,255,131,152,119,245,214,209,171,58,120,114,31,202,203,72,163, - 245,164,166,36,178,18,8,147,60,215,122,124,78,253,30,99,140,49,158,26, - 207,169,130,27,180,202,23,106,42,142,83,110,185,121,247,208,235,170,181,128, - 78,55,98,176,246,13,224,140,211,243,252,91,40,17,34,32,206,93,115,245, - 74,127,49,147,89,165,188,63,24,154,124,166,176,84,173,26,12,187,31,7, - 183,21,175,29,69,65,110,37,210,246,48,185,129,190,63,240,88,70,243,164, - 185,82,25,205,203,37,137,77,146,216,71,132,29,7,205,43,75,237,55,24, - 242,60,26,225,61,19,56,90,73,198,242,101,14,63,251,11,87,148,143,5, - 174,38,104,225,33,240,240,221,26,90,197,5,44,116,30,102,199,142,61,136, - 76,127,111,73,120,244,186,183,177,217,100,140,49,78,60,60,47,76,38,73, - 146,148,202,160,151,42,182,223,185,155,44,211,161,38,195,208,161,171,110,103, - 111,249,122,69,136,239,174,96,243,41,39,177,110,189,69,18,71,101,59,46, - 0,211,210,230,18,207,243,168,86,212,17,198,146,103,234,106,126,212,222,191, - 20,169,61,149,3,114,244,249,52,150,90,189,21,196,150,181,144,97,19,149, - 45,12,223,210,61,144,182,233,198,25,66,181,73,3,189,127,55,202,202,99, - 24,162,141,148,73,153,147,27,61,110,113,236,193,115,24,125,60,186,95,145, - 51,125,38,203,5,6,21,166,254,29,24,156,123,150,203,166,53,43,203,231, - 149,242,241,61,61,55,46,136,106,229,190,65,212,97,223,222,20,153,127,238, - 133,104,17,164,110,186,61,58,47,110,220,126,109,140,49,78,60,60,103,33, - 74,232,59,233,6,9,167,213,234,177,24,199,8,97,162,148,199,178,134,69, - 24,52,9,99,201,176,130,155,226,252,115,55,18,116,22,176,29,23,167,98, - 16,47,74,124,87,27,20,28,107,120,65,19,142,249,140,150,6,20,133,216, - 192,17,132,181,20,142,182,93,191,129,86,32,66,245,85,155,202,22,80,209, - 60,2,80,17,168,172,137,48,116,217,132,112,151,65,214,162,106,64,55,174, - 83,117,218,44,118,42,52,106,45,218,209,36,213,60,68,107,91,69,24,114, - 137,243,24,84,139,163,48,27,67,175,77,173,101,101,232,179,8,87,22,223, - 193,79,26,178,28,172,129,28,188,31,134,49,182,157,112,238,133,155,216,253, - 213,59,203,105,16,65,104,229,29,77,138,252,159,222,222,60,184,27,88,141, - 97,214,1,202,254,148,69,159,209,2,186,1,179,24,15,242,28,99,140,19, - 8,207,25,193,21,57,152,65,36,105,133,214,156,130,108,51,48,131,16,33, - 194,74,152,157,239,80,22,119,231,152,168,232,169,2,73,54,162,74,44,11, - 153,38,96,185,249,156,183,103,119,65,91,146,220,158,138,60,64,19,200,200, - 107,6,149,155,202,22,144,226,16,34,91,44,159,143,123,135,112,114,145,154, - 137,20,51,211,195,103,170,6,128,38,164,197,78,8,190,86,114,5,201,29, - 237,220,210,88,106,66,93,18,243,152,149,45,67,251,14,146,28,60,51,181, - 112,5,177,73,153,149,68,103,219,9,50,237,177,101,171,169,47,32,196,20, - 20,147,190,69,3,199,170,19,38,45,64,159,251,252,194,1,253,94,114,177, - 36,57,153,164,224,21,83,6,160,90,45,136,110,92,248,61,198,24,39,18, - 158,83,5,87,160,88,232,170,213,42,247,62,184,112,148,87,21,149,188,122, - 177,91,191,97,19,6,187,73,100,133,138,61,73,154,36,152,78,15,149,53, - 176,28,153,23,118,171,35,250,77,62,83,24,52,106,44,69,108,165,81,100, - 192,20,66,218,214,255,50,143,233,46,91,210,76,82,42,55,103,7,176,18, - 242,9,228,233,161,12,86,29,194,241,29,160,142,20,135,74,146,235,198,117, - 96,31,194,90,143,17,28,164,94,243,104,71,147,229,91,151,100,151,159,159, - 204,149,97,121,110,3,38,150,226,92,101,111,103,105,98,41,20,29,64,24, - 130,105,202,210,133,90,12,51,253,73,16,199,18,199,25,104,192,108,152,100, - 153,135,101,123,156,123,145,206,189,21,148,228,59,21,194,184,73,144,88,249, - 84,57,253,123,216,51,29,209,237,84,17,34,96,98,162,70,156,74,32,29, - 58,142,148,9,166,233,252,68,231,56,198,24,99,28,187,120,94,196,107,138, - 249,93,89,150,209,153,221,193,124,59,69,169,193,186,171,153,35,246,217,178, - 105,11,203,214,247,243,110,118,56,83,230,225,28,203,64,216,75,27,14,158, - 53,55,221,0,121,148,106,108,32,151,70,156,27,103,242,237,71,144,91,14, - 85,108,15,108,240,244,164,132,56,136,241,31,120,82,147,156,152,68,100,59, - 244,177,196,33,90,173,136,170,209,87,122,0,51,237,126,216,48,75,172,210, - 192,82,230,248,138,99,102,45,84,186,167,204,237,141,158,107,105,98,201,235, - 238,202,143,154,231,181,202,99,100,242,39,106,108,236,140,152,126,146,36,65, - 202,12,41,51,206,63,219,192,117,50,200,39,11,4,241,160,82,47,66,213, - 1,251,246,238,102,177,153,148,173,217,100,158,123,91,122,140,206,184,249,242, - 24,99,156,72,120,30,16,220,176,1,224,190,59,118,31,241,138,94,215,161, - 156,251,70,136,235,9,26,141,205,229,88,156,36,235,209,17,147,229,212,128, - 2,197,56,156,103,90,189,61,45,140,56,30,75,2,25,197,128,138,82,153, - 86,175,153,151,2,45,8,186,229,203,122,214,174,252,141,90,116,7,58,120, - 0,180,230,245,5,64,167,221,239,87,21,118,52,233,25,118,62,20,116,176, - 46,108,64,45,130,38,85,41,14,245,137,14,232,198,89,223,196,18,75,22, - 59,33,221,40,35,150,250,216,163,228,244,227,67,96,24,58,12,25,134,49, - 160,47,62,138,219,198,245,69,112,65,135,165,125,47,29,152,206,222,175,133, - 59,212,76,48,232,255,102,226,168,249,83,158,215,24,99,140,113,188,224,57, - 11,81,22,201,254,162,14,46,142,14,35,140,73,230,22,54,145,101,179,8, - 17,162,23,183,10,82,21,139,86,11,129,71,28,54,168,78,236,195,243,150, - 99,135,61,18,99,51,89,94,0,222,168,231,11,175,177,18,203,210,87,236, - 142,163,13,12,221,110,23,211,52,80,42,44,11,139,143,134,165,12,20,131, - 198,146,2,71,212,174,141,228,209,0,76,181,106,40,164,168,178,5,68,54, - 49,244,62,50,108,34,84,91,155,73,122,0,147,40,255,73,232,181,72,15, - 173,161,146,110,102,97,34,4,66,170,245,26,244,22,105,7,21,38,150,79, - 211,105,111,36,104,199,84,27,243,192,122,42,102,78,140,57,65,166,166,86, - 63,66,181,251,234,44,108,162,220,57,68,111,17,97,76,33,122,139,200,92, - 16,155,25,84,141,233,60,100,217,15,79,54,204,86,94,111,215,35,8,116, - 177,182,148,54,166,9,160,242,188,156,54,114,20,127,215,226,123,3,134,12, - 42,113,172,195,156,134,161,187,153,232,215,101,249,190,18,211,19,172,89,182, - 154,93,7,83,16,13,130,48,194,115,219,132,209,228,80,38,205,115,231,153, - 105,58,172,21,19,116,130,125,172,172,54,176,8,144,137,85,250,81,194,48, - 28,200,195,141,49,198,24,39,10,158,51,5,87,244,54,4,189,0,154,86, - 5,211,52,89,104,10,132,104,231,33,74,151,164,167,242,102,187,125,120,238, - 4,142,187,150,78,111,145,142,152,36,148,77,44,183,203,84,205,96,190,221, - 198,170,24,164,65,80,90,197,131,32,68,202,46,213,106,21,195,48,127,36, - 185,61,173,243,47,106,201,70,13,37,3,202,168,64,17,118,44,84,210,168, - 90,58,2,170,197,104,199,22,128,154,209,68,249,115,154,184,242,220,220,194, - 220,176,217,163,211,14,134,148,92,129,210,161,57,248,120,0,189,93,7,17, - 189,126,168,179,84,156,105,155,222,128,42,234,70,25,221,40,195,182,122,20, - 93,177,250,161,191,190,74,30,116,43,22,14,73,61,248,84,223,215,221,75, - 204,124,255,110,126,65,81,16,163,222,62,185,252,104,164,212,119,82,134,145, - 254,14,107,94,29,215,50,104,5,9,41,195,6,38,215,176,199,109,187,198, - 24,227,4,196,115,71,112,3,99,95,12,195,68,8,159,56,78,105,45,68, - 165,107,14,32,177,83,108,167,139,94,212,220,114,251,68,149,50,68,89,203, - 85,91,18,102,212,107,85,146,197,54,245,106,15,199,23,120,158,135,227,56, - 36,137,253,99,77,187,62,82,189,245,247,27,173,39,27,84,111,133,73,68, - 187,32,119,144,204,62,137,146,59,181,82,234,45,150,170,46,139,37,89,44, - 145,97,19,25,54,105,119,244,246,130,184,6,225,63,240,164,62,167,153,129, - 208,164,152,28,122,141,165,246,16,180,99,194,228,48,213,170,62,159,65,178, - 155,61,156,151,52,228,199,3,52,161,169,22,42,235,19,152,232,45,162,162, - 121,178,88,210,106,69,67,199,88,236,244,255,46,69,205,157,238,68,162,242, - 191,165,26,34,182,226,251,30,188,13,110,47,94,91,252,22,244,140,59,173, - 4,235,174,129,50,86,48,248,55,215,40,200,45,192,115,109,138,80,101,187, - 221,166,215,211,18,52,30,25,122,27,101,227,33,168,99,140,113,34,226,57, - 35,56,211,170,12,245,52,148,82,226,20,13,117,69,63,44,86,41,243,106, - 33,158,59,1,120,132,145,193,66,23,76,215,32,145,58,127,147,101,30,157, - 220,60,103,55,78,161,98,118,203,60,84,97,136,40,70,241,196,209,225,167, - 125,158,253,133,89,29,233,156,44,66,147,3,134,18,21,205,231,97,70,125, - 236,244,80,70,111,119,168,13,35,170,85,18,93,187,115,72,135,8,115,37, - 53,89,117,153,61,220,15,197,2,208,51,201,22,20,230,236,232,4,130,22, - 120,135,241,213,46,125,142,169,254,183,221,158,161,34,36,65,59,70,165,251, - 168,86,231,169,86,231,233,69,77,86,76,69,101,14,176,8,133,150,100,170, - 90,154,68,85,171,36,60,229,206,233,51,153,159,41,223,15,192,8,250,205, - 174,99,217,41,85,92,146,216,72,153,149,29,67,178,44,27,26,56,58,56, - 105,92,169,128,194,178,111,154,85,44,123,217,80,193,183,46,29,24,12,68, - 106,162,21,70,241,187,240,128,40,87,111,125,181,234,121,25,158,239,147,198, - 249,240,86,49,172,100,199,243,225,198,24,227,196,194,115,70,112,186,14,174, - 31,210,82,89,139,56,78,243,231,150,231,29,76,134,21,68,24,21,87,226, - 17,19,85,200,226,46,182,233,208,237,116,244,104,28,163,198,29,63,244,104, - 205,217,196,230,233,76,52,214,18,41,11,207,115,112,28,147,230,194,12,89, - 38,177,236,101,79,235,28,117,8,85,161,84,176,116,89,192,208,139,71,66, - 147,222,225,33,147,136,70,107,73,133,86,16,78,221,63,68,65,110,74,181, - 160,34,135,85,91,129,138,164,187,216,201,75,6,250,88,62,17,97,169,61, - 67,219,130,118,76,208,142,203,174,40,195,228,166,143,21,7,113,255,252,252, - 4,84,11,35,180,168,123,250,243,250,13,125,156,66,13,198,65,159,40,108, - 75,55,120,6,221,110,173,8,59,26,134,81,78,73,55,12,3,41,187,253, - 91,254,61,102,89,150,27,76,180,225,36,142,37,65,160,187,165,56,142,133, - 200,102,97,176,233,242,16,92,70,127,31,81,20,145,166,41,194,8,73,100, - 74,47,24,143,206,25,99,140,19,25,207,161,139,82,47,146,113,156,230,161, - 41,141,218,202,97,223,203,134,213,10,131,66,217,228,35,86,92,155,133,174, - 30,134,233,251,10,215,117,73,147,132,168,99,176,103,199,118,62,255,153,111, - 241,215,127,113,136,27,111,210,10,34,73,18,210,100,158,137,106,13,195,48, - 105,245,134,235,164,150,66,113,78,163,221,74,6,107,222,70,139,179,11,245, - 134,218,133,162,79,52,254,3,79,14,147,157,119,152,134,223,99,97,78,210, - 234,70,180,186,195,11,245,83,193,50,218,208,211,36,210,77,155,88,214,131, - 64,95,197,129,14,87,38,173,39,72,90,79,176,162,49,195,138,198,76,25, - 150,236,163,53,242,239,200,179,221,168,84,151,73,235,137,161,231,50,217,39, - 221,36,173,148,42,46,142,37,82,202,161,190,143,131,173,189,76,179,170,27, - 108,171,6,82,102,92,119,125,135,183,255,210,13,124,226,19,247,115,120,54, - 196,243,28,124,191,223,208,121,52,68,89,169,24,35,99,115,38,241,221,13, - 0,44,91,121,30,19,19,107,8,162,54,30,79,253,247,29,135,41,199,24, - 227,196,192,115,88,232,45,80,42,192,113,60,192,162,189,104,114,221,55,67, - 102,118,218,100,153,38,145,243,207,219,200,153,231,172,224,158,7,110,166,40, - 19,240,220,254,41,155,174,193,66,39,161,86,241,72,178,30,235,55,108,229, - 103,127,225,10,238,125,48,227,131,191,250,53,124,255,48,87,190,110,35,87, - 190,229,50,94,255,111,38,49,77,155,48,140,89,86,115,203,176,227,96,174, - 109,208,57,169,9,109,137,222,141,3,245,110,163,118,123,224,8,133,230,71, - 143,3,6,74,181,16,98,18,77,40,85,80,45,26,126,209,161,100,21,113, - 239,80,255,45,138,247,8,22,49,246,183,128,101,152,179,146,133,45,7,105, - 176,2,68,139,138,9,65,6,74,53,200,186,251,49,170,235,200,210,93,24, - 214,230,161,227,23,121,180,186,183,68,104,18,128,73,210,67,33,69,32,184, - 187,216,161,90,175,49,81,53,105,205,69,24,249,215,61,215,146,120,3,158, - 143,56,80,56,190,64,197,18,225,152,216,118,191,239,101,81,0,94,220,215, - 255,106,99,207,220,124,204,35,219,35,254,226,227,55,115,231,61,135,217,61, - 253,24,27,182,156,172,191,211,252,162,34,203,116,62,86,43,184,62,86,44, - 107,0,91,153,157,219,142,158,240,61,73,16,77,114,219,182,29,152,214,70, - 54,157,36,88,191,113,57,157,52,165,206,24,99,140,113,162,227,57,159,7, - 7,130,123,183,247,248,208,111,238,231,119,127,227,27,236,217,61,133,97,84, - 49,140,42,103,157,179,130,11,46,156,98,80,101,132,145,89,58,231,0,38, - 106,54,134,17,226,90,6,237,86,147,135,238,126,132,243,207,54,120,209,139, - 95,70,179,233,113,245,53,15,240,190,119,127,132,223,254,237,71,8,195,24, - 211,20,121,14,78,43,200,36,73,6,166,86,103,71,109,38,252,148,189,36, - 161,175,222,24,32,40,191,10,143,247,191,98,165,90,116,83,125,220,110,218, - 44,73,173,57,59,76,138,217,194,64,174,168,185,180,218,8,6,54,59,141, - 190,58,203,210,93,67,106,110,232,28,179,165,106,196,142,84,112,221,197,206, - 17,238,204,138,208,143,59,237,160,95,134,0,36,166,86,213,225,200,176,1, - 211,52,75,114,43,122,76,222,125,95,135,235,190,25,243,23,31,191,153,91, - 110,119,217,179,119,45,130,77,250,245,158,24,106,236,220,75,143,204,151,121, - 254,100,78,114,62,154,224,214,226,57,27,248,242,87,159,224,127,252,209,103, - 184,246,139,55,211,106,70,79,57,11,112,140,49,198,56,113,240,172,17,220, - 96,216,81,202,46,113,116,120,192,128,32,73,147,57,230,230,19,254,211,111, - 205,242,203,111,222,201,23,190,48,195,124,115,3,137,154,198,20,13,38,252, - 38,191,248,214,21,220,125,103,19,207,182,128,16,199,59,132,238,65,184,70, - 191,177,90,32,146,186,187,188,109,175,69,102,29,62,246,241,140,207,126,166, - 199,59,127,181,129,235,100,40,90,204,204,77,179,253,174,29,236,159,237,34, - 165,34,73,43,121,233,128,102,137,56,214,97,181,34,127,52,138,210,80,210, - 219,169,59,149,116,119,234,122,178,172,69,22,236,202,109,255,58,52,9,90, - 169,89,70,91,135,41,79,205,153,232,241,69,168,72,48,246,64,208,165,106, - 29,89,120,238,248,61,100,187,137,49,33,232,229,225,65,177,176,2,147,89, - 76,102,169,90,107,1,232,77,204,224,231,127,57,33,244,235,44,235,65,124, - 181,139,134,159,231,183,114,162,155,112,15,48,225,30,56,194,165,169,84,75, - 151,28,160,67,168,123,215,232,243,169,212,231,169,214,107,52,188,253,67,231, - 214,83,38,97,114,152,200,91,70,79,86,233,230,23,25,89,162,201,100,176, - 145,117,241,189,106,53,172,47,40,30,122,52,102,219,205,9,173,67,146,137, - 186,160,102,197,160,126,128,98,155,222,39,84,100,170,65,166,26,164,201,220, - 128,139,178,31,190,21,217,44,167,157,177,10,223,189,8,197,22,20,30,65, - 220,69,224,113,104,174,198,213,95,232,242,225,255,116,7,183,124,119,43,113, - 154,145,134,77,50,217,33,12,67,84,172,251,92,166,201,220,146,127,227,49, - 198,24,227,248,195,179,70,112,69,72,74,202,46,66,120,56,238,202,161,158, - 131,95,251,166,203,175,190,231,17,62,127,205,93,236,218,157,119,28,17,13, - 76,209,192,96,130,149,171,55,178,237,230,144,71,183,95,71,152,164,64,72, - 28,234,124,140,159,135,41,179,196,44,71,165,88,142,36,77,18,30,123,124, - 39,223,185,105,23,0,155,78,218,140,231,152,20,225,205,52,8,134,234,161, - 116,251,38,53,240,120,120,252,13,44,161,220,6,102,180,169,108,129,204,75, - 181,99,50,111,171,165,84,171,175,224,122,230,144,130,43,114,103,133,146,75, - 108,125,17,80,173,104,147,71,28,84,48,38,134,137,207,100,22,201,138,161, - 109,19,56,80,145,248,102,238,138,20,253,154,182,184,119,168,36,57,160,204, - 241,13,110,91,74,181,109,56,168,232,73,189,189,187,216,161,29,174,3,250, - 185,189,66,193,13,98,208,108,50,90,103,86,24,134,128,178,65,243,87,191, - 178,135,187,239,108,242,242,215,93,70,99,229,90,92,39,97,116,198,159,109, - 39,116,163,140,168,19,16,6,195,231,169,140,21,108,57,121,29,103,157,22, - 96,176,6,131,73,4,122,78,28,120,40,90,220,185,253,9,126,255,119,255, - 31,62,241,167,59,233,166,103,146,41,159,74,221,34,202,18,230,155,38,73, - 90,97,220,116,121,140,49,78,12,60,107,4,151,101,125,203,120,17,162,2, - 152,239,68,92,253,233,39,248,232,31,60,194,181,215,205,50,55,55,121,228, - 190,44,176,102,227,36,223,184,254,94,238,218,190,23,104,162,175,228,139,133, - 76,171,135,68,198,136,220,10,158,198,38,174,59,69,16,90,220,183,125,154, - 175,125,241,38,102,231,219,132,241,94,32,111,101,213,155,160,23,152,132,97, - 72,44,59,116,187,139,121,95,197,132,56,142,49,140,248,168,77,148,135,230, - 180,145,119,2,137,230,251,228,22,116,75,231,35,149,156,12,42,18,163,170, - 137,207,216,191,180,114,40,72,46,177,187,36,118,151,32,211,225,199,138,161, - 16,11,130,116,66,147,28,160,201,210,108,179,64,172,205,38,128,26,32,183, - 226,189,6,73,174,225,247,202,251,58,36,186,180,169,4,192,237,40,130,142, - 137,157,28,89,8,223,90,212,68,228,134,243,4,105,134,111,25,56,190,40, - 91,129,21,40,102,175,57,3,102,16,33,60,166,247,100,252,240,174,71,184, - 251,142,39,104,29,146,180,15,31,32,140,231,128,144,133,217,188,183,166,212, - 221,255,227,64,209,141,123,120,254,36,133,201,68,41,143,125,7,230,216,120, - 146,205,233,47,217,8,108,70,49,137,160,255,251,17,76,98,48,73,24,75, - 62,125,205,173,188,247,29,127,199,157,119,215,137,3,133,97,167,248,102,140, - 239,251,196,177,124,198,231,218,141,49,198,24,207,63,60,107,4,23,199,41, - 166,105,150,99,113,60,207,33,203,50,254,229,218,136,63,254,191,119,240,224, - 131,53,108,115,29,166,104,32,85,187,252,55,145,251,217,188,73,178,216,60, - 192,238,61,187,244,190,182,197,96,189,83,81,46,224,122,38,174,235,178,208, - 233,171,135,70,197,7,92,190,115,91,66,183,211,68,47,232,1,89,178,139, - 90,101,1,67,116,137,163,102,169,62,138,240,149,138,229,80,14,232,169,220, - 146,50,108,130,220,165,195,146,35,228,102,25,109,77,62,102,159,120,140,120, - 166,204,165,77,212,245,162,42,70,136,41,93,20,120,221,22,190,65,169,204, - 44,213,196,26,240,175,20,100,57,129,195,130,121,24,211,92,128,201,131,40, - 209,70,136,54,21,179,141,25,239,35,177,187,196,189,67,248,106,23,113,239, - 144,38,182,92,85,118,83,165,207,85,232,199,237,60,45,103,206,246,75,18, - 18,187,75,214,237,135,40,231,22,250,78,198,48,233,215,16,198,129,34,75, - 172,178,63,101,161,226,226,184,232,80,211,15,85,214,38,51,130,208,98,250, - 112,200,53,127,127,59,11,209,52,250,194,37,100,106,101,198,98,24,148,23, - 31,71,64,133,24,70,149,217,217,30,119,223,217,228,85,151,190,154,243,207, - 209,179,241,60,119,37,170,36,185,16,69,136,192,67,17,114,247,246,89,254, - 240,191,220,202,247,127,88,33,236,44,226,84,34,122,237,226,92,199,78,202, - 49,198,56,222,241,172,17,92,81,27,85,32,73,18,174,254,66,135,79,252, - 241,35,60,185,99,67,185,189,32,55,128,44,235,178,114,101,194,234,45,9, - 123,247,237,38,136,116,177,180,48,244,44,56,237,160,28,174,135,74,148,197, - 68,77,135,62,23,99,131,56,21,40,229,145,246,116,168,207,119,251,10,163, - 211,155,40,23,208,34,55,243,148,144,195,93,255,203,82,0,119,46,47,138, - 222,213,39,55,209,42,85,21,128,217,72,177,140,54,157,168,139,88,88,65, - 167,18,96,47,236,26,122,251,65,146,179,234,138,168,54,28,158,28,52,59, - 22,170,181,192,4,14,162,42,117,184,18,240,13,16,139,109,2,179,75,197, - 108,151,138,176,184,117,211,38,137,173,159,27,122,159,195,211,250,163,174,48, - 17,107,50,252,154,38,167,34,108,10,96,100,45,156,154,86,117,158,173,39, - 109,7,105,54,164,224,138,225,170,208,111,196,60,216,213,164,211,50,240,157, - 10,42,176,121,244,201,69,230,230,119,51,24,158,76,131,128,56,154,35,12, - 67,210,84,150,57,190,97,184,220,125,199,19,44,175,195,43,95,125,33,130, - 144,32,90,68,224,230,195,80,117,51,110,197,78,124,167,138,34,228,158,7, - 110,230,179,127,251,105,14,28,94,195,220,92,27,25,239,36,13,66,164,84, - 101,238,117,140,49,198,56,62,241,172,17,92,191,43,133,62,196,13,95,15, - 248,196,31,63,194,131,15,106,83,136,84,109,228,64,63,68,169,218,156,127, - 222,4,87,92,113,58,203,42,70,174,190,14,2,7,8,34,157,131,11,163, - 14,16,225,187,203,1,136,66,73,22,143,22,83,231,48,42,4,209,98,190, - 47,44,246,192,181,118,233,49,42,161,36,72,51,34,217,37,12,67,186,113, - 175,116,3,90,233,252,208,120,25,224,200,46,37,221,156,20,218,205,190,114, - 171,230,138,192,212,234,173,217,30,86,8,181,158,143,106,65,218,53,8,178, - 190,74,243,186,45,188,110,139,172,123,228,130,222,238,198,71,108,195,92,192, - 116,186,44,208,127,110,98,114,190,84,100,236,217,159,127,255,237,33,2,5, - 134,201,77,77,66,160,47,32,204,89,137,57,43,81,7,151,254,57,76,77, - 250,36,11,125,69,231,134,154,244,195,206,98,169,132,117,110,75,35,142,37, - 74,5,3,238,212,174,86,112,249,247,41,92,63,207,141,106,52,15,235,227, - 118,243,139,146,110,79,160,146,226,92,34,16,30,89,214,69,41,143,71,31, - 127,140,109,55,237,230,210,203,60,206,63,231,133,229,123,8,92,108,167,134, - 200,73,83,79,128,63,0,236,212,46,203,143,220,200,129,195,107,232,201,42, - 137,25,148,161,105,41,21,73,146,140,212,238,141,213,221,24,99,28,15,120, - 22,203,4,4,160,23,143,255,125,221,2,31,255,147,157,67,228,6,218,84, - 178,172,97,209,152,232,114,222,57,38,111,186,114,13,23,92,56,197,158,221, - 49,97,116,24,29,94,60,136,190,210,215,97,39,128,32,210,249,29,215,215, - 97,170,40,205,16,134,126,206,177,20,66,132,216,21,129,192,69,231,237,38, - 217,180,137,210,89,183,16,36,164,189,12,149,24,100,81,135,52,149,132,157, - 197,178,191,98,249,9,138,6,197,121,23,144,204,75,7,100,85,11,99,166, - 131,88,28,32,141,1,2,241,87,44,130,217,166,71,85,184,102,0,0,32, - 0,73,68,65,84,230,106,229,99,45,104,194,178,170,89,233,128,4,74,213, - 102,214,114,227,131,24,206,145,245,242,118,99,65,71,12,149,12,76,57,71, - 42,15,179,121,100,25,64,65,106,163,100,87,28,167,155,30,56,98,159,2, - 105,79,171,178,102,107,32,60,156,12,183,57,115,252,190,234,28,236,106,34, - 132,55,100,214,153,154,176,128,168,36,57,13,125,17,20,249,18,164,38,248, - 48,12,250,247,131,22,131,138,93,79,152,152,226,134,235,224,201,39,37,103, - 158,119,6,190,219,175,120,75,226,78,174,228,214,14,16,232,20,130,144,127, - 186,246,219,252,247,63,248,59,14,28,94,195,225,25,73,24,134,132,97,120, - 196,108,59,24,86,158,99,140,49,198,177,139,103,237,127,178,238,55,8,219, - 31,138,248,244,167,118,112,203,247,244,98,41,71,186,216,3,156,115,182,195, - 219,222,117,42,231,93,52,201,221,119,54,121,244,209,123,209,164,22,48,24, - 198,18,98,145,81,215,29,64,213,210,139,117,197,90,128,172,7,68,36,157, - 97,101,183,123,119,127,24,38,64,34,83,100,162,213,93,209,179,208,8,14, - 178,216,9,89,236,132,195,243,211,138,227,151,221,246,7,156,146,71,129,31, - 121,168,174,137,200,230,251,38,17,180,130,27,36,49,183,163,67,147,110,71, - 225,118,142,116,247,85,106,122,1,247,107,10,131,22,230,28,224,231,139,190, - 153,171,62,217,239,221,41,166,245,103,44,204,39,65,166,201,109,244,189,11, - 197,89,188,126,232,115,142,146,225,83,160,80,112,42,150,36,105,165,44,246, - 30,29,43,52,189,39,3,21,226,59,38,118,20,231,10,75,195,13,76,218, - 139,185,218,75,82,18,153,14,132,143,7,154,111,171,54,136,6,79,238,234, - 112,251,182,239,176,114,85,141,53,203,86,163,136,242,134,220,96,176,6,193, - 36,97,188,23,197,20,48,137,194,67,112,128,175,124,245,1,254,234,79,191, - 141,229,251,101,11,175,130,228,160,168,137,204,198,97,203,49,198,56,78,240, - 19,19,156,110,66,44,135,234,221,244,118,61,221,89,166,61,230,230,19,62, - 246,39,135,248,234,245,154,64,6,243,109,166,104,176,121,147,100,227,250,195, - 188,241,23,20,111,252,5,189,255,163,219,175,35,136,22,81,28,164,239,248, - 139,0,23,212,202,252,177,118,69,70,65,19,165,124,226,76,91,218,131,184, - 88,196,93,48,42,249,235,116,99,222,122,5,210,52,37,197,71,133,93,125, - 147,139,24,105,147,52,148,84,204,46,190,217,43,111,131,234,77,101,11,32, - 119,229,165,0,249,57,137,22,102,239,48,102,179,137,101,180,49,253,126,8, - 47,89,49,135,18,17,198,124,198,98,146,187,0,89,64,76,39,136,5,129, - 53,145,23,132,139,54,97,125,161,36,185,176,222,15,83,90,19,77,234,135, - 156,254,190,244,231,199,133,118,27,225,194,130,244,176,234,93,112,166,177,170, - 25,237,110,76,221,142,16,139,109,234,118,27,223,204,77,43,6,195,229,7, - 162,197,130,121,24,212,36,149,116,51,0,139,107,166,203,167,15,5,189,210, - 145,185,20,10,21,23,164,25,94,254,183,72,204,0,219,234,97,136,54,182, - 157,144,101,122,130,67,161,134,106,147,25,8,143,32,238,97,85,84,238,126, - 108,49,88,231,214,237,205,146,200,148,56,205,6,38,2,184,32,60,173,222, - 132,135,82,30,74,237,231,193,135,43,28,62,212,97,114,185,141,32,36,142, - 45,40,243,112,45,96,109,30,174,108,33,104,230,207,53,185,225,235,219,248, - 151,127,130,184,219,102,110,62,34,83,85,84,44,233,4,243,185,147,214,192, - 48,226,31,107,242,196,24,99,140,241,252,196,79,76,112,197,194,37,132,87, - 94,241,74,217,69,169,16,195,48,176,236,229,124,246,115,1,223,252,154,182, - 199,23,196,86,40,184,205,155,36,107,54,78,242,202,87,95,200,197,151,156, - 66,221,243,217,118,211,110,182,63,26,150,121,148,167,127,46,250,245,245,202, - 240,252,48,219,169,229,247,134,187,202,135,121,135,178,36,204,232,36,38,70, - 218,44,27,9,247,162,230,17,228,86,140,184,41,80,20,72,3,164,209,114, - 204,101,253,199,102,35,197,139,5,248,122,113,172,245,180,139,84,48,81,222, - 47,80,49,52,33,23,97,202,226,113,137,163,116,49,41,48,20,166,204,67, - 145,5,161,74,169,9,177,40,24,47,59,159,228,234,113,2,167,12,175,202, - 21,102,73,116,189,197,101,172,242,251,249,52,0,254,127,246,222,53,214,146, - 236,188,14,91,123,239,170,83,85,231,125,186,111,247,12,103,166,95,51,67, - 74,20,103,200,225,80,18,20,137,34,103,70,178,165,88,137,40,75,138,165, - 4,18,228,216,128,253,67,72,108,36,129,97,197,129,1,253,138,224,0,254, - 17,32,64,130,32,144,5,202,64,96,36,64,228,196,113,236,136,20,169,136, - 162,97,82,212,140,40,62,134,156,153,126,78,79,63,238,189,231,125,234,185, - 247,206,143,253,168,93,143,123,187,251,246,208,234,6,106,1,23,125,239,57, - 245,62,167,107,213,247,125,235,91,95,139,3,74,144,28,226,116,80,70,190, - 64,57,66,199,40,81,93,161,209,102,97,190,106,117,211,100,125,88,250,51, - 148,73,73,172,174,64,168,110,172,188,127,184,196,102,189,130,164,123,56,117, - 74,125,183,36,202,233,20,74,108,18,106,5,110,137,219,7,215,241,79,127, - 251,55,113,235,160,192,108,118,10,130,47,176,220,173,17,245,84,186,59,73, - 50,171,252,237,208,161,195,227,141,135,138,224,0,232,65,150,77,7,144,215, - 191,190,195,255,241,47,46,227,96,113,219,190,102,72,238,212,196,195,211,79, - 9,188,252,241,0,191,250,107,125,188,244,98,31,127,252,229,12,127,248,185, - 235,141,225,166,77,132,141,87,132,80,175,173,119,185,142,220,128,172,32,200, - 51,99,10,172,110,88,130,175,33,147,173,53,227,245,195,234,233,219,193,158, - 14,185,137,140,219,185,105,136,183,138,220,118,12,222,64,64,234,155,54,95, - 122,64,152,130,245,202,155,51,145,90,100,227,244,157,81,44,108,157,108,39, - 8,118,130,160,79,38,16,241,6,34,110,153,26,208,2,185,18,154,64,37, - 72,0,72,146,130,13,212,249,140,51,15,227,157,34,2,111,60,87,219,167, - 18,32,11,149,178,36,11,236,68,211,65,133,237,115,236,188,43,234,184,201, - 18,124,163,150,73,157,38,119,42,170,41,217,36,191,91,25,172,234,142,209, - 1,202,209,52,42,18,42,167,30,68,189,118,183,24,64,165,144,115,47,130, - 95,168,237,154,90,107,27,41,30,28,100,184,118,85,9,109,134,131,0,81, - 48,66,175,215,52,89,142,115,179,141,196,146,221,159,126,253,6,254,199,255, - 254,45,172,147,24,251,251,251,240,60,134,237,118,141,205,102,13,74,150,218, - 0,156,119,181,184,14,29,30,115,60,84,4,71,41,115,134,88,170,62,50, - 66,34,220,221,79,240,143,255,187,59,248,211,63,185,1,66,78,219,30,55, - 64,145,219,108,22,226,99,159,160,120,229,213,16,47,254,64,128,183,222,190, - 133,127,254,207,254,0,223,254,238,13,181,45,220,66,25,117,213,157,246,155, - 209,93,91,4,215,243,164,19,193,85,177,74,215,160,197,2,124,115,8,15, - 183,64,11,245,51,160,107,12,112,189,20,149,100,92,69,115,142,189,21,118, - 172,82,67,99,187,82,116,65,2,128,8,199,90,74,86,35,31,178,162,74, - 25,201,39,232,83,137,62,149,216,201,37,72,159,131,244,203,154,20,211,181, - 53,218,210,148,77,198,20,73,79,66,38,25,36,169,93,27,35,222,209,36, - 106,122,238,92,82,171,71,137,52,83,15,32,110,116,105,4,47,17,163,216, - 172,182,152,140,51,204,166,17,22,203,155,24,227,50,198,184,12,0,24,12, - 14,237,156,56,0,152,176,133,237,31,164,100,105,35,57,105,201,81,17,85, - 145,12,106,83,1,244,195,9,202,58,105,145,177,90,4,87,35,57,162,26, - 191,137,216,7,45,206,34,73,51,228,217,64,215,219,66,199,229,36,129,122, - 192,9,145,228,158,37,185,223,254,167,255,23,126,239,159,253,17,252,222,41, - 8,190,193,114,123,0,207,243,245,164,131,210,82,174,67,135,14,143,47,222, - 183,71,84,41,19,48,175,143,44,43,108,106,50,94,157,169,144,27,0,204, - 102,33,126,232,71,6,248,216,71,35,252,232,191,215,3,99,12,255,207,191, - 188,131,47,124,30,72,51,10,96,233,164,40,31,44,85,89,20,133,22,153, - 212,17,99,189,51,91,244,48,101,71,220,184,204,216,27,177,2,145,203,210, - 125,31,122,118,90,159,171,126,183,129,128,76,84,196,37,23,20,114,171,45, - 184,106,132,35,231,138,212,0,160,24,3,52,43,48,78,183,0,91,218,58, - 92,157,112,12,185,29,135,136,182,167,249,48,175,165,56,217,18,222,64,216, - 125,236,4,1,99,171,202,62,188,123,236,110,122,234,138,218,244,34,198,249, - 73,121,126,99,92,182,179,230,100,241,46,34,182,67,17,43,114,115,237,205, - 220,161,167,0,144,228,83,248,125,130,60,171,70,91,81,175,36,225,4,30, - 188,30,119,34,184,20,245,7,157,168,215,199,118,179,178,203,152,182,20,19, - 197,25,197,109,53,77,153,104,219,55,0,136,241,143,254,219,207,99,179,27, - 227,214,221,242,59,179,222,8,100,124,163,109,220,186,26,92,135,14,143,51, - 30,58,69,233,130,144,8,223,124,51,195,239,254,147,239,226,112,89,216,148, - 164,193,100,188,197,96,24,227,229,31,156,225,163,47,63,9,193,23,248,194, - 151,223,196,231,63,7,220,62,236,33,232,9,29,189,29,135,102,138,210,96, - 87,140,107,41,202,102,202,42,68,129,5,103,32,152,35,24,102,214,99,209, - 147,215,172,253,150,233,119,115,71,203,72,169,26,185,189,129,176,245,46,162, - 199,250,120,249,92,213,220,34,97,73,78,146,42,57,27,34,89,27,225,200, - 182,76,213,153,104,206,133,251,126,27,146,94,185,60,145,85,194,147,110,237, - 142,45,177,19,4,35,127,169,250,229,0,144,65,149,116,24,246,225,173,84, - 52,106,26,189,9,89,218,41,5,155,213,22,16,115,107,224,44,138,43,24, - 133,59,120,242,26,60,121,13,3,92,199,46,157,99,151,206,81,196,135,88, - 111,18,219,79,104,163,55,126,25,64,138,208,95,96,215,162,82,44,5,66, - 37,202,8,174,157,208,123,84,41,76,55,133,250,238,16,18,106,177,73,237, - 90,229,5,76,154,218,32,244,11,220,62,184,142,127,252,63,252,107,12,130, - 30,138,157,192,118,85,64,240,5,124,30,85,122,228,58,116,232,240,120,226, - 161,35,56,87,108,146,101,5,62,251,59,59,220,184,78,108,228,198,229,18, - 66,108,109,106,242,252,133,30,158,123,142,225,220,211,30,222,189,53,196,255, - 249,191,21,248,206,183,239,32,78,15,145,164,119,79,20,189,9,17,66,138, - 16,68,44,109,4,167,82,148,199,143,77,201,54,91,44,214,73,99,10,182, - 37,54,61,29,160,210,18,224,244,186,201,165,227,163,25,223,223,165,28,249, - 138,0,201,128,219,212,225,78,204,43,105,68,67,64,100,69,27,14,38,117, - 24,114,99,139,114,57,185,160,101,11,1,20,129,114,62,86,109,11,3,110, - 201,211,237,155,91,60,169,235,94,155,146,88,139,181,58,38,130,57,38,227, - 106,211,249,114,115,7,162,184,130,201,56,197,98,145,170,212,46,84,29,179, - 79,223,195,122,147,216,217,121,94,113,136,249,92,213,86,227,150,246,11,160, - 26,193,25,84,35,184,42,201,237,82,31,185,95,224,96,161,175,21,85,15, - 83,38,130,235,245,246,180,9,179,221,26,202,135,163,4,73,190,1,16,226, - 247,255,247,207,226,91,223,85,42,220,36,45,175,71,189,125,160,67,135,14, - 143,31,222,151,20,37,231,28,82,38,248,230,155,25,254,240,247,191,138,245, - 234,3,149,180,100,63,80,55,136,167,159,18,248,212,171,23,112,238,60,197, - 245,119,11,252,209,23,223,194,31,126,238,58,174,94,187,2,137,91,90,222, - 221,52,95,86,56,122,234,53,165,9,8,77,84,13,206,137,224,30,20,101, - 74,18,200,98,117,67,183,6,202,164,89,15,163,88,148,74,199,200,249,55, - 18,72,56,129,88,168,180,164,196,202,18,85,189,197,108,39,230,232,211,153, - 170,199,153,121,114,91,134,245,32,86,205,221,230,216,50,21,125,201,149,218, - 79,68,3,144,80,71,131,36,197,28,99,144,37,32,48,197,38,173,74,252, - 189,241,28,222,120,94,18,231,160,73,50,211,91,101,132,99,122,232,188,81, - 25,85,109,87,55,26,235,140,79,51,112,114,7,195,201,117,44,22,41,226, - 165,186,102,219,172,140,32,77,186,114,54,219,218,126,54,63,109,113,104,185, - 39,154,159,191,159,55,31,96,76,187,64,158,21,214,151,178,9,243,218,45, - 220,153,15,240,217,255,249,183,177,73,159,129,228,107,8,190,193,205,125,157, - 126,206,184,21,203,116,36,215,161,195,227,135,135,110,19,80,191,103,96,108, - 128,207,254,206,14,223,252,214,71,193,188,175,87,150,237,247,247,48,155,133, - 120,234,252,8,207,61,167,34,132,215,191,33,240,249,207,1,215,223,219,34, - 205,168,141,220,100,35,114,43,159,220,213,123,137,125,205,235,107,95,73,87, - 69,105,34,56,106,110,242,33,128,8,35,71,249,62,99,170,241,154,136,37, - 246,134,170,5,64,20,87,32,249,101,109,76,124,5,254,245,55,193,151,243, - 210,64,121,60,183,117,55,163,150,148,19,128,76,74,226,35,50,180,145,92, - 68,3,144,43,213,180,155,208,17,165,137,182,70,254,18,35,191,140,152,204, - 239,100,192,49,254,122,128,129,211,6,32,122,30,232,74,145,191,36,137,250, - 73,50,196,65,130,164,39,49,122,67,29,7,197,2,227,93,170,26,194,1, - 107,233,37,183,12,114,203,176,90,168,215,86,200,170,169,76,0,171,94,129, - 209,248,208,166,75,77,195,247,228,212,18,147,83,75,120,222,55,236,15,0, - 228,251,111,131,236,214,88,29,112,12,39,215,49,11,190,141,1,174,99,64, - 215,144,197,187,88,173,247,109,20,167,62,191,39,244,231,38,97,220,105,12, - 204,144,210,16,5,152,167,196,66,85,145,73,21,132,44,145,107,31,76,41, - 54,144,98,9,41,19,237,94,163,162,185,114,210,192,20,245,20,37,16,34, - 12,118,0,22,248,210,151,175,224,250,229,183,81,32,194,122,85,96,208,151, - 40,138,28,169,200,91,157,78,58,116,232,240,120,224,33,106,112,213,40,224, - 107,111,108,240,197,207,95,129,192,10,187,212,111,44,63,24,198,56,115,70, - 17,195,245,107,2,95,255,202,85,92,191,124,19,219,205,28,82,38,86,253, - 118,111,148,203,20,59,227,119,217,84,81,170,155,168,65,41,50,57,10,198, - 150,170,23,149,146,118,227,174,15,182,4,248,164,140,128,156,108,217,189,76, - 63,68,75,154,180,240,85,207,149,27,73,25,225,7,25,240,138,207,164,61, - 22,29,9,86,16,9,132,76,34,100,205,27,176,137,244,212,198,203,109,99, - 154,97,54,161,173,86,95,173,199,223,226,145,9,168,1,171,113,178,3,194, - 187,152,204,174,170,125,6,7,88,44,82,64,44,48,160,202,245,133,167,135, - 170,46,55,111,219,159,250,220,14,86,23,148,64,8,192,166,80,74,202,34, - 171,215,32,155,117,184,122,4,23,6,189,218,18,199,165,185,23,72,82,10, - 32,193,237,131,235,248,220,255,251,37,236,118,68,187,168,196,40,10,245,217, - 184,169,202,14,29,58,60,94,120,232,20,165,25,104,250,250,55,4,174,188, - 189,15,46,151,160,84,213,91,140,200,196,212,222,206,93,80,83,4,174,94, - 126,7,127,242,198,77,92,187,249,14,18,157,174,186,255,230,238,163,151,91, - 37,101,152,102,166,9,28,5,34,20,51,25,159,197,211,167,205,59,213,84, - 164,157,16,160,107,111,172,183,133,76,181,176,164,6,87,88,34,245,252,59, - 218,34,116,89,231,53,145,135,83,47,91,33,195,24,189,70,116,85,238,99, - 214,60,23,25,54,20,148,92,41,249,45,145,17,173,218,156,245,114,32,62, - 58,221,91,7,27,74,16,178,172,16,93,159,45,49,240,136,154,68,16,111, - 129,120,11,178,189,14,178,91,99,56,185,174,196,58,133,170,107,110,51,161, - 90,45,90,17,2,8,112,122,172,8,210,144,156,137,224,238,133,188,54,139, - 78,169,112,171,219,175,62,52,69,168,138,148,66,251,247,151,254,232,59,184, - 249,110,117,123,238,180,9,206,37,146,36,211,118,94,93,251,64,135,14,143, - 3,30,138,224,140,146,242,224,48,199,231,255,239,125,44,182,61,231,189,45, - 184,92,226,212,196,195,96,24,227,210,179,234,137,252,237,183,57,222,248,202, - 85,236,191,75,112,120,88,189,89,55,211,147,109,56,62,202,203,208,126,243, - 25,245,91,95,86,199,170,167,86,87,234,110,247,64,37,66,210,48,205,221, - 246,239,85,243,242,146,21,197,100,93,37,95,227,58,2,192,142,191,105,28, - 99,207,3,93,229,192,97,147,88,143,219,159,245,173,4,108,36,231,74,247, - 197,88,171,68,117,116,104,210,176,17,91,216,137,7,128,34,186,62,83,19, - 10,98,1,200,239,92,199,141,53,179,215,74,202,43,128,92,168,73,11,252, - 10,56,185,131,124,241,22,6,184,142,109,38,64,113,213,110,107,183,51,215, - 46,129,169,173,9,190,182,105,202,38,2,84,107,112,234,156,234,17,92,208, - 43,63,19,89,251,158,200,6,177,37,206,191,9,190,245,237,91,120,231,157, - 107,136,147,20,171,205,14,219,245,218,46,221,69,113,29,58,60,158,120,136, - 26,28,3,165,20,121,238,227,250,187,5,190,242,111,182,54,114,83,239,151, - 191,159,191,160,110,218,30,189,138,197,106,139,215,223,240,113,176,224,118,26, - 183,60,70,64,210,68,59,9,26,21,101,15,237,242,250,163,82,148,179,105, - 164,210,147,110,51,183,134,23,28,84,34,55,214,219,170,102,110,205,25,199, - 165,39,249,182,122,243,165,89,209,26,205,145,1,111,68,112,108,82,0,135, - 85,146,109,91,23,40,73,213,61,22,178,162,192,92,90,181,100,62,43,111, - 206,110,122,21,114,9,186,154,86,82,159,117,1,138,36,75,72,178,84,19, - 16,72,117,32,235,249,245,29,136,149,116,172,203,22,64,148,43,162,219,173, - 49,14,222,171,40,44,13,250,125,243,181,43,73,135,178,17,138,162,192,176, - 149,227,234,223,143,246,239,75,61,130,147,78,132,214,132,121,79,249,85,38, - 249,6,95,250,194,59,182,225,220,164,42,219,102,6,82,122,124,11,71,135, - 14,29,30,13,60,180,217,50,0,124,225,15,114,188,117,249,170,126,189,170, - 224,155,205,212,13,102,52,83,209,218,59,223,201,176,56,200,177,221,84,107, - 59,166,6,71,236,20,129,7,67,93,69,105,255,117,224,225,16,180,88,96, - 167,133,15,84,44,144,223,249,150,77,79,246,162,35,88,144,173,170,196,112, - 220,113,132,78,13,47,43,128,164,165,62,182,64,213,214,107,192,237,207,152, - 37,224,155,150,227,72,36,68,174,69,40,78,164,40,73,2,196,164,17,189, - 145,37,64,223,114,60,50,7,53,130,140,74,19,104,131,113,218,52,88,182, - 61,122,70,69,106,28,87,190,75,27,106,77,41,23,216,174,55,42,18,14, - 239,98,177,77,49,156,92,87,102,213,80,227,110,100,37,202,45,107,112,130, - 171,136,105,211,202,227,247,119,241,221,8,174,14,53,229,91,9,142,20,220, - 6,112,69,152,95,250,242,21,172,14,34,91,255,227,121,121,48,46,209,117, - 138,202,14,29,30,15,60,84,138,82,202,4,235,141,192,239,253,222,6,82, - 134,13,114,27,71,115,12,251,215,49,28,141,177,94,244,112,249,50,195,181, - 155,223,197,58,203,32,197,18,226,200,218,204,113,104,127,34,151,34,172,168, - 40,219,28,77,10,156,2,0,12,156,12,225,166,119,17,64,153,158,4,81, - 211,185,233,205,146,28,188,62,83,13,220,161,105,226,110,143,32,76,221,13, - 128,85,49,214,97,166,2,240,108,80,170,49,157,166,110,198,218,189,61,17, - 150,7,109,106,125,134,232,138,29,183,17,158,33,58,178,162,16,11,0,113, - 170,188,43,205,186,169,58,159,123,193,56,158,84,92,79,6,2,44,123,183, - 242,26,35,43,165,50,29,30,194,27,30,162,63,58,68,209,187,137,237,122, - 131,201,236,42,86,7,28,162,165,247,45,112,68,46,62,185,130,94,48,131, - 231,121,150,232,188,158,187,78,251,245,62,174,6,71,96,8,188,77,188,100, - 172,187,92,255,207,5,150,171,247,240,255,253,225,59,72,211,57,226,36,117, - 4,39,198,76,188,83,84,118,232,240,56,225,161,8,142,23,59,252,241,151, - 51,252,201,191,249,115,80,58,0,33,73,37,53,233,247,9,6,79,60,105, - 213,147,119,239,14,176,221,231,216,110,230,246,102,84,77,79,134,141,218,201, - 253,194,70,112,6,180,223,234,106,225,98,54,141,48,204,174,96,25,183,23, - 232,136,211,146,103,156,67,172,83,201,209,165,176,99,33,15,84,36,196,122, - 91,112,109,44,109,211,130,108,101,235,99,141,244,103,34,65,106,83,194,85, - 244,70,193,14,128,109,86,158,187,28,11,208,172,192,250,78,175,82,111,51, - 81,156,60,202,234,75,195,78,39,135,18,196,24,162,51,245,185,245,32,6, - 205,110,99,228,167,240,228,220,78,49,55,233,92,233,76,19,159,232,168,152, - 223,249,142,58,47,146,96,183,19,72,51,31,238,195,74,166,155,172,41,83, - 238,36,247,86,81,6,182,6,23,243,163,207,231,104,241,210,12,213,116,119, - 138,36,47,240,197,207,93,107,44,233,42,42,1,116,36,215,161,195,99,130, - 19,19,28,231,28,189,224,12,222,126,155,35,47,46,64,136,45,60,250,108, - 35,138,59,101,234,45,242,54,174,221,94,216,190,55,33,151,32,8,236,147, - 54,65,162,27,189,129,102,207,82,59,60,237,94,33,68,168,102,189,21,5, - 50,161,72,35,43,136,118,181,184,101,183,199,118,75,61,27,76,165,39,141, - 130,50,146,87,16,39,59,213,247,22,141,224,47,117,61,78,31,142,36,41, - 194,85,8,144,177,114,14,137,4,68,155,14,37,42,137,129,95,159,40,210, - 9,9,104,86,216,118,1,58,18,144,135,115,36,227,196,138,62,108,91,0, - 31,131,49,134,100,156,52,82,142,38,61,89,71,210,147,16,87,5,250,119, - 114,208,85,14,57,22,96,251,2,162,231,97,114,43,7,94,159,216,230,115, - 227,122,146,248,75,53,83,238,138,172,204,153,51,117,187,252,137,119,172,234, - 178,79,85,106,121,61,136,177,125,246,182,237,209,3,0,73,79,65,156,162, - 170,62,57,81,228,185,243,223,66,159,76,212,128,213,120,139,109,126,89,205, - 210,3,108,122,178,223,167,144,72,116,159,91,249,25,2,170,31,142,23,57, - 8,77,28,39,19,179,110,208,58,140,53,98,41,8,157,212,68,38,250,65, - 68,215,218,72,35,146,51,51,226,0,69,158,1,128,91,136,147,175,224,173, - 239,62,137,76,71,113,0,26,81,28,99,164,83,82,118,232,240,24,224,196, - 4,199,24,67,146,100,248,218,87,231,214,181,196,180,8,24,146,155,142,84, - 91,192,221,187,3,21,189,221,190,229,40,232,74,144,251,170,177,184,203,148, - 55,170,30,35,182,15,206,69,207,187,143,167,108,237,28,210,139,122,152,24, - 65,103,172,82,100,98,123,166,178,168,141,132,34,217,80,75,186,144,36,177, - 239,71,105,121,19,172,136,68,230,18,81,170,183,193,86,24,179,234,241,187, - 41,197,186,184,68,44,128,132,151,239,135,76,54,200,86,244,188,35,69,45, - 102,157,144,73,172,250,154,168,198,122,186,183,230,14,127,238,99,197,67,144, - 1,183,166,208,99,150,64,220,86,100,72,244,117,219,164,91,144,1,183,215, - 198,164,92,201,122,89,246,16,2,122,80,108,137,221,78,32,236,177,10,129, - 81,154,216,54,1,187,90,84,134,208,196,182,96,180,127,87,164,88,182,180, - 9,52,35,184,102,134,192,252,173,200,108,127,127,139,63,255,250,215,109,36, - 105,162,54,19,197,25,119,147,206,136,185,67,135,71,31,15,149,162,252,230, - 155,25,254,245,191,250,147,70,212,102,48,24,170,8,105,179,94,97,179,94, - 225,112,249,46,164,104,62,129,63,152,138,18,218,129,2,32,36,70,174,107, - 109,140,54,71,227,148,83,158,143,38,80,118,42,2,200,20,219,66,86,166, - 94,155,49,50,46,136,72,245,152,154,123,183,51,216,62,54,87,100,146,200, - 202,223,94,159,217,168,141,77,10,75,16,124,235,181,11,84,52,145,185,141, - 221,109,61,112,150,216,18,9,121,56,183,132,43,73,90,138,101,98,138,241, - 46,85,211,194,157,104,209,203,231,96,140,85,72,151,12,56,86,60,68,180, - 167,201,127,1,176,213,202,250,106,178,65,97,123,235,198,232,65,222,210,233, - 103,185,0,33,75,108,215,27,200,193,93,155,190,238,247,41,146,140,3,214, - 153,166,132,33,185,16,5,136,216,111,92,87,183,30,231,247,29,43,179,90, - 4,103,240,96,41,239,20,119,230,107,92,121,235,26,138,60,71,81,20,54, - 138,219,58,125,149,221,56,157,14,29,30,15,60,20,193,93,191,38,112,120, - 168,162,54,19,185,9,161,218,5,162,113,245,169,253,250,229,155,216,108,211, - 214,167,236,123,163,218,7,149,164,170,102,150,243,12,67,185,128,16,33,8, - 77,172,64,193,192,29,128,57,139,222,178,191,83,177,0,196,28,3,111,1, - 126,24,35,219,221,105,77,125,1,42,42,73,122,178,169,66,212,104,237,61, - 3,128,195,69,163,102,6,168,84,163,187,43,27,245,136,84,69,66,81,0, - 122,89,52,200,173,109,91,0,128,152,128,94,167,245,254,116,187,175,10,249, - 69,2,136,180,13,151,12,108,4,231,162,173,191,207,68,153,81,26,42,65, - 140,179,77,147,154,52,237,19,108,82,96,91,188,135,221,229,107,16,171,234, - 57,132,190,58,200,50,138,215,196,43,180,2,87,127,126,69,81,32,129,7, - 73,247,244,65,185,234,203,242,152,243,93,185,253,122,4,215,204,10,220,47, - 209,37,184,124,245,50,146,164,220,86,146,36,96,116,103,237,187,186,113,58, - 29,58,60,30,120,96,182,113,199,228,188,253,54,135,148,122,90,118,45,138, - 235,251,165,232,193,39,87,16,167,30,8,121,226,200,237,30,255,164,221,116, - 147,7,128,32,84,117,41,147,222,50,105,37,41,195,134,194,174,32,207,195, - 147,7,214,193,132,233,90,220,112,118,27,189,104,167,250,188,204,177,44,212, - 120,27,147,138,107,179,194,186,23,238,101,225,37,53,95,187,237,7,155,61, - 221,104,238,8,88,218,172,190,92,20,235,1,200,59,229,185,178,253,242,243, - 33,75,1,178,4,228,162,233,234,82,172,7,118,250,183,93,126,69,213,12, - 187,0,54,170,172,131,30,138,230,185,69,2,113,80,70,98,227,204,195,48, - 24,128,78,150,136,134,220,62,60,24,11,183,126,159,30,107,203,214,232,133, - 35,213,52,98,27,218,34,56,87,73,233,162,252,187,126,12,106,249,52,217, - 199,157,235,239,129,209,161,141,40,121,94,216,52,165,65,39,54,233,208,225, - 209,198,137,34,56,33,4,178,172,192,215,190,58,7,200,196,146,155,153,26, - 96,158,212,13,222,121,167,135,116,19,219,39,119,41,31,108,144,169,66,243, - 230,150,38,28,27,45,117,116,37,230,132,36,240,115,207,81,81,166,88,238, - 46,195,147,107,80,177,192,100,120,27,161,71,64,229,162,20,151,0,141,137, - 1,173,66,18,131,250,112,81,7,146,36,138,104,204,250,245,104,76,71,125, - 113,144,88,98,40,118,142,187,200,229,114,249,70,45,109,110,34,48,221,224, - 253,198,194,238,167,33,68,89,0,236,6,7,238,52,83,105,108,177,66,114, - 179,92,190,81,175,11,83,16,145,218,8,211,70,176,218,73,229,168,250,30, - 95,122,106,92,207,92,128,172,8,60,186,180,211,9,12,218,108,212,60,28, - 194,195,33,4,95,99,149,234,207,209,73,81,170,26,92,123,170,153,180,164, - 167,237,123,206,58,85,161,73,27,193,170,193,170,151,175,237,227,107,95,215, - 131,106,243,28,89,33,192,124,15,219,29,169,136,77,58,116,232,240,104,227, - 129,9,142,82,10,74,41,214,27,129,175,125,229,45,155,58,162,116,128,56, - 227,149,54,1,0,184,118,85,69,37,235,172,236,17,107,171,185,221,191,23, - 165,194,96,162,110,48,67,45,117,172,11,20,234,227,114,78,71,250,38,47, - 230,16,219,155,160,114,129,65,63,131,63,94,128,78,150,216,201,165,149,199, - 19,49,191,231,28,54,64,17,21,205,138,214,180,158,88,171,75,43,114,86, - 233,97,35,75,37,225,231,156,43,177,135,22,148,24,2,33,34,173,70,72, - 110,221,174,45,13,121,89,86,95,55,203,235,117,228,62,177,199,231,138,83, - 218,142,217,146,86,36,203,129,170,81,149,84,234,164,79,132,250,44,221,41, - 227,166,1,92,142,101,101,126,158,122,0,74,107,70,216,106,253,149,40,35, - 126,51,113,221,166,40,239,1,51,77,224,94,233,239,163,173,224,170,115,227, - 226,116,131,249,45,149,54,165,52,1,47,242,74,211,183,1,231,121,215,244, - 221,161,195,35,140,19,215,224,214,73,140,55,223,90,219,250,155,130,150,85, - 231,165,250,205,216,116,1,64,28,235,155,248,125,58,83,84,209,226,38,207, - 218,125,27,143,66,66,110,129,97,142,222,100,142,65,63,67,238,171,27,241, - 78,16,140,71,53,139,42,173,44,44,213,147,101,253,10,184,119,10,178,186, - 99,181,94,171,212,63,106,175,227,184,203,138,156,181,146,155,57,14,177,96, - 141,40,206,174,179,104,246,236,17,25,130,95,86,42,207,122,36,182,136,7, - 64,76,42,74,206,182,250,227,54,243,91,175,129,59,120,149,172,204,54,212, - 76,56,51,236,180,45,130,27,211,38,81,184,17,156,108,81,174,182,137,76, - 8,57,58,245,121,127,211,42,84,202,125,185,33,72,55,234,191,71,136,242, - 252,139,130,35,217,168,8,147,177,251,51,133,238,208,161,195,95,12,78,76, - 112,95,255,83,134,40,44,32,196,22,82,30,64,136,45,8,121,10,66,108, - 49,142,202,59,234,181,171,202,154,171,216,17,16,18,235,209,56,15,166,154, - 84,168,174,243,164,127,3,57,47,163,194,49,22,8,240,182,173,243,144,40, - 215,34,147,82,69,57,197,13,76,79,93,129,159,15,212,168,23,122,13,146, - 44,209,39,19,172,214,12,236,212,1,2,113,21,98,161,211,136,100,98,93, - 69,18,78,148,122,50,18,149,233,221,98,77,193,191,86,182,14,16,25,130, - 239,247,64,174,26,233,125,169,166,164,35,157,162,189,1,208,203,194,206,143, - 91,206,148,218,116,2,85,27,99,55,56,168,223,76,43,146,141,180,164,98, - 218,17,216,141,234,114,102,61,187,95,77,124,9,39,8,153,68,172,35,46, - 246,103,19,187,172,171,186,156,188,185,177,233,210,69,63,6,194,133,242,213, - 140,4,138,29,87,189,115,43,138,40,229,32,43,138,98,61,176,199,19,7, - 9,228,74,96,122,43,130,191,127,8,58,91,170,30,191,105,134,161,247,142, - 34,41,153,32,15,122,218,201,36,4,48,193,100,40,17,108,148,95,165,135, - 67,44,56,67,191,216,175,68,112,42,69,153,194,173,199,186,34,19,131,163, - 210,223,110,29,174,74,116,77,241,10,176,192,213,171,128,215,95,33,45,4, - 18,120,200,182,75,48,186,195,118,71,16,14,71,144,71,76,38,239,208,161, - 195,163,131,19,19,220,193,250,222,203,0,234,41,124,157,101,21,151,127,87, - 221,104,112,188,200,196,52,131,151,203,172,182,17,210,221,83,246,239,245,122, - 131,62,155,216,58,96,21,213,109,231,254,22,254,120,1,34,39,42,114,35, - 11,140,167,135,64,156,170,89,109,186,206,37,23,229,229,169,11,77,26,234, - 201,88,69,19,146,36,13,155,46,27,141,57,181,56,27,85,213,34,56,182, - 88,65,228,236,200,198,110,23,50,201,84,10,242,142,49,92,22,141,117,201, - 70,245,201,153,227,15,153,212,222,149,7,173,251,112,69,42,246,181,65,161, - 200,244,8,251,49,131,144,73,200,185,118,107,209,231,234,78,71,32,36,65, - 20,29,45,154,25,49,181,111,79,71,124,237,56,58,250,63,46,69,121,239, - 20,184,121,128,82,15,27,2,151,17,103,18,105,194,173,170,211,96,183,46, - 236,48,212,14,29,58,60,186,56,49,193,45,238,112,155,114,116,65,72,82, - 169,127,185,205,188,6,121,155,171,254,177,55,32,245,212,238,214,80,198,131, - 24,131,161,22,64,236,150,32,125,110,77,148,155,72,64,229,77,248,161,82, - 244,245,153,118,200,215,174,248,140,173,192,38,69,197,38,139,102,5,136,56, - 68,49,31,55,182,230,78,10,48,145,82,177,227,149,26,23,128,74,90,177, - 66,60,139,170,144,36,224,196,18,157,184,42,84,157,206,137,224,200,82,11, - 86,234,151,232,154,135,34,137,128,94,139,57,181,21,184,192,18,182,185,58, - 226,27,57,228,91,68,109,215,33,93,145,51,32,145,138,200,34,161,61,70, - 74,3,105,113,181,170,208,164,171,28,244,90,117,162,185,88,148,68,107,224, - 14,87,141,19,117,237,82,107,45,86,158,148,251,249,9,111,138,36,94,180, - 164,38,143,142,254,235,42,202,147,101,10,202,125,240,180,186,189,182,201,2, - 157,146,178,67,135,71,23,39,38,184,235,87,111,0,36,116,28,38,154,173, - 2,6,117,247,146,7,247,155,172,207,3,83,40,180,228,127,60,202,33,119, - 205,104,164,205,139,114,52,62,84,106,201,233,45,248,203,5,248,123,76,121, - 65,202,21,242,89,174,100,240,43,170,82,138,215,105,235,96,83,160,84,55, - 202,9,109,175,199,45,106,255,214,64,150,176,81,159,137,174,136,12,45,241, - 25,66,60,46,146,43,222,16,192,21,189,189,141,91,31,84,132,72,54,18, - 72,212,190,172,251,74,172,82,170,166,62,103,72,205,64,238,147,10,145,25, - 210,150,11,130,229,119,122,96,251,138,216,204,49,202,185,218,166,74,183,18, - 144,43,18,69,18,129,44,133,106,26,215,35,134,128,178,142,38,99,191,98, - 182,12,168,250,232,200,25,85,68,139,5,194,104,90,249,126,61,40,238,191, - 23,206,236,163,124,80,184,121,179,124,88,49,77,223,71,161,107,248,238,208, - 225,209,196,137,9,238,238,221,1,218,211,69,78,67,118,188,64,186,137,149, - 247,160,88,218,158,185,54,156,164,15,206,136,76,118,171,21,198,163,28,222, - 102,83,121,191,158,10,205,250,223,6,216,210,218,79,225,112,14,250,246,59, - 0,159,52,82,133,34,103,192,129,128,92,137,134,53,23,59,128,37,5,178, - 84,222,143,236,160,36,42,185,18,170,94,182,41,151,169,64,203,247,101,75, - 128,65,150,234,253,122,13,206,144,85,5,115,9,154,100,240,188,35,110,176, - 122,121,147,78,157,0,0,25,35,253,22,171,16,162,90,86,90,98,116,149, - 146,33,147,144,105,8,241,246,16,179,107,213,72,145,44,5,196,101,105,35, - 60,121,157,131,237,11,120,137,179,92,77,133,57,9,235,17,79,121,17,4, - 157,218,52,229,130,179,35,156,76,218,113,63,42,202,251,131,246,176,20,87, - 0,0,94,63,129,167,123,58,179,66,0,188,20,209,152,58,92,215,240,221, - 161,195,163,137,19,223,17,190,249,231,205,155,143,251,180,109,4,0,235,44, - 179,211,3,204,128,211,135,131,227,100,97,68,38,3,137,29,95,34,26,20, - 90,169,119,143,1,153,108,133,104,111,13,177,0,210,63,166,224,239,49,32, - 166,8,153,4,113,36,135,100,41,90,167,6,200,149,80,145,142,110,5,144, - 55,116,106,209,68,40,115,180,185,80,149,169,70,168,72,201,246,167,25,209, - 74,76,64,46,171,95,237,236,55,103,29,36,213,218,159,247,182,128,92,56, - 132,225,68,141,110,244,134,3,129,226,64,223,132,175,238,208,255,183,121,227, - 216,68,206,84,228,117,67,42,33,73,141,212,197,59,243,106,235,131,142,0, - 201,18,144,105,136,88,164,234,186,220,168,30,11,17,105,165,9,60,19,3, - 128,174,156,20,37,64,164,58,105,42,22,216,173,86,150,228,218,219,4,142, - 234,133,155,180,190,94,197,253,71,131,171,141,218,79,177,11,81,220,9,241, - 35,0,0,32,0,73,68,65,84,228,121,57,109,156,141,145,242,246,76,69, - 135,14,29,30,45,156,152,224,110,92,55,41,156,26,121,104,21,155,223,39, - 72,55,138,208,238,231,230,115,255,125,112,213,253,121,178,84,62,196,91,15, - 81,79,17,131,159,102,173,181,62,64,185,116,68,52,128,92,206,208,187,230, - 129,126,245,109,27,193,201,57,16,111,72,37,154,169,123,79,86,72,207,164, - 250,22,122,30,92,172,230,176,21,27,102,134,69,183,163,229,245,98,199,173, - 250,178,1,125,8,166,125,1,49,133,88,83,120,53,119,13,19,45,242,194, - 211,255,82,144,171,194,10,68,138,55,4,200,91,101,95,157,89,158,44,5, - 188,91,113,25,93,58,179,237,248,102,7,239,171,92,69,108,107,90,81,104, - 178,27,28,136,83,164,90,96,130,43,229,185,153,94,59,211,114,96,30,128, - 218,166,174,239,133,101,100,100,106,113,247,242,162,172,227,184,129,167,10,71, - 25,45,55,179,7,132,86,63,160,162,40,224,23,177,243,119,181,225,187,75, - 83,118,232,240,232,225,196,4,87,100,119,143,125,127,151,231,216,20,58,117, - 213,98,176,252,224,56,70,48,176,37,24,16,32,114,250,181,92,213,38,0, - 144,183,170,233,75,67,90,222,173,88,165,236,118,45,233,211,5,148,64,35, - 110,191,76,100,41,0,211,242,231,58,155,204,37,144,29,157,142,37,27,85, - 3,51,4,96,82,124,43,30,90,194,180,219,55,168,165,27,205,251,118,246, - 170,203,193,11,180,71,118,0,200,21,9,177,165,71,6,51,100,169,162,75, - 35,164,73,56,1,59,80,81,106,145,68,224,183,203,8,170,72,34,181,172, - 51,115,142,108,84,13,206,64,146,180,156,165,119,204,20,134,253,68,139,121, - 6,18,28,106,180,67,155,64,233,225,224,158,116,212,242,122,219,197,4,252, - 228,54,138,60,175,40,41,1,32,21,101,29,145,210,123,171,94,59,116,232, - 240,239,22,39,38,184,82,41,25,64,202,176,236,83,34,19,196,217,206,122, - 81,18,58,180,17,156,233,81,106,107,244,190,127,225,137,90,119,200,212,205, - 168,32,167,225,201,53,210,245,6,34,153,235,253,76,64,130,8,126,207,3, - 144,32,10,78,3,0,216,155,0,27,31,42,99,96,25,130,76,230,192,20, - 232,127,39,71,254,217,12,72,166,32,179,114,79,98,193,224,189,173,73,200, - 185,57,11,67,66,14,113,208,235,212,206,93,99,95,20,240,243,13,144,148, - 77,216,149,190,180,68,17,1,215,233,200,88,164,32,50,196,240,159,7,149, - 186,157,156,208,202,126,196,150,218,158,53,241,141,211,192,21,64,6,106,123, - 197,166,218,26,224,111,57,138,130,217,243,152,99,12,190,223,3,253,130,0, - 29,136,202,61,92,238,19,117,140,251,18,114,2,224,74,57,145,60,162,1, - 228,103,71,40,190,29,193,11,99,120,73,92,33,48,179,236,84,134,144,175, - 75,240,194,131,191,217,161,184,21,41,95,203,176,135,148,73,140,254,45,5, - 33,137,74,33,211,190,22,153,212,236,183,196,28,216,18,48,204,109,171,64, - 149,20,205,220,182,246,135,29,183,6,231,42,40,9,2,59,23,174,196,241, - 233,242,56,45,172,136,41,101,170,29,133,121,71,55,118,119,17,92,135,14, - 143,30,222,135,170,124,218,58,171,107,167,45,140,164,216,180,172,243,112,251, - 115,225,201,3,20,100,84,137,222,142,85,222,185,198,192,115,89,169,37,225, - 234,174,81,115,19,107,10,190,245,32,73,98,21,133,228,74,45,58,90,64, - 41,11,99,10,190,223,171,16,31,243,142,86,223,97,174,106,93,33,147,144, - 36,1,157,31,211,255,229,156,82,194,9,228,66,69,80,36,69,25,197,153, - 227,105,57,253,233,106,161,154,203,111,200,230,242,139,234,122,69,18,217,232, - 178,56,16,192,59,135,240,55,59,123,94,70,68,66,117,26,83,92,21,144, - 73,86,105,58,247,139,157,77,219,6,188,153,206,78,179,145,254,237,62,30, - 108,142,104,222,118,157,76,78,134,251,177,238,234,208,161,195,227,138,135,36, - 184,227,251,140,118,121,222,106,132,251,126,120,81,186,240,100,181,235,92,202, - 16,50,45,159,208,227,180,36,25,190,223,67,188,63,106,212,213,146,155,12, - 197,27,74,21,216,191,147,171,186,90,216,3,121,67,213,175,18,78,144,50, - 9,188,217,179,66,16,151,200,76,90,143,29,168,215,121,161,47,109,45,117, - 88,238,176,102,247,21,83,69,16,206,242,21,129,137,93,79,13,43,149,111, - 107,210,129,142,226,156,237,23,27,86,238,31,0,219,20,144,115,128,127,77, - 162,216,103,200,253,161,34,198,125,167,181,96,95,90,97,140,191,191,179,209, - 165,252,188,0,249,115,45,88,185,225,248,94,46,212,118,201,190,30,184,122, - 205,83,145,160,221,191,103,211,182,254,220,199,254,102,31,214,129,196,47,156, - 11,211,254,185,27,161,137,58,184,118,99,228,186,147,201,189,107,112,199,33, - 70,249,128,118,204,119,145,175,32,243,230,127,155,46,69,217,161,195,163,135, - 19,19,92,156,237,156,191,210,214,223,251,190,223,26,193,61,152,23,229,241, - 36,90,16,149,126,140,117,205,168,71,183,42,130,19,110,131,182,186,97,61, - 115,75,221,16,205,224,78,187,141,36,66,255,78,174,212,131,75,245,55,22, - 42,66,17,11,102,251,194,38,208,106,201,55,90,136,103,161,236,183,228,74, - 168,180,100,237,189,198,113,111,24,216,13,142,226,142,122,0,224,91,69,16, - 197,134,217,26,157,73,5,146,77,53,234,34,50,84,169,83,77,164,36,5, - 144,69,118,189,54,240,171,51,164,223,98,160,203,150,33,170,245,168,79,55, - 135,147,93,4,250,103,4,184,165,183,81,120,21,223,203,162,80,66,26,114, - 69,170,107,116,165,220,4,43,10,208,235,20,68,6,96,7,0,123,83,203, - 239,101,8,63,205,208,10,90,230,135,215,220,157,95,212,70,56,39,241,51, - 189,23,82,180,145,91,192,111,218,86,129,156,171,135,37,175,150,174,236,76, - 151,59,116,120,244,112,98,130,235,79,252,218,141,199,248,4,42,200,52,182, - 105,202,251,193,209,53,184,163,111,100,121,150,90,21,165,73,81,102,66,121, - 35,146,40,119,38,122,3,75,127,13,182,207,193,14,170,206,247,182,31,108, - 161,108,170,234,222,142,114,33,33,46,203,178,199,237,117,105,9,172,210,75, - 182,0,248,101,165,176,100,155,2,204,51,30,148,229,251,245,117,228,91,196, - 154,19,155,200,15,40,21,144,22,73,25,17,202,125,2,185,32,170,53,97, - 75,27,203,1,128,87,240,114,255,250,117,246,181,67,244,191,147,55,150,47, - 146,72,157,79,2,155,238,20,91,213,188,46,175,115,144,119,10,136,45,5, - 119,134,180,21,137,38,211,44,82,235,93,6,248,235,19,123,110,166,47,47, - 222,168,136,206,60,32,152,122,90,6,222,104,244,86,11,170,252,240,224,4, - 153,199,147,247,193,181,71,107,81,80,158,175,169,193,185,48,42,202,14,29, - 58,60,186,56,57,193,249,247,118,82,151,105,251,12,184,147,91,40,1,134, - 240,228,160,93,197,217,163,101,143,146,27,41,78,242,17,222,250,150,168,140, - 137,33,75,0,137,138,212,138,48,130,88,83,200,125,2,47,137,65,54,18, - 172,40,224,21,92,9,72,160,210,155,244,117,45,58,113,136,17,80,41,62, - 114,69,145,33,18,39,109,8,52,155,170,161,73,96,81,181,191,194,66,147, - 83,81,168,223,245,113,52,210,156,119,120,35,82,51,162,22,178,145,150,248, - 232,82,130,121,74,105,73,222,16,16,87,244,128,216,184,140,190,253,205,14, - 108,211,172,19,178,125,1,254,123,28,226,117,181,142,171,202,244,139,93,169, - 234,76,1,114,85,192,123,253,80,157,247,157,242,65,165,127,71,75,232,47, - 75,248,152,218,169,19,253,62,173,244,193,213,177,173,95,174,99,38,4,216, - 69,238,171,15,238,40,180,171,39,93,20,121,142,34,59,58,13,233,223,199, - 255,135,14,29,58,252,187,197,137,9,238,233,15,156,86,141,219,71,8,0, - 226,196,3,9,34,219,243,84,31,99,82,79,83,30,93,131,107,39,67,178, - 61,115,204,209,165,144,177,95,249,219,64,206,203,126,53,23,222,173,184,93, - 150,159,66,77,204,142,41,232,101,149,134,99,69,81,105,228,46,146,72,165, - 28,247,5,232,117,138,66,232,186,99,253,190,188,168,70,103,98,193,172,107, - 136,184,42,74,34,116,162,62,57,108,250,91,22,78,138,148,121,162,90,239, - 171,8,92,202,243,225,87,40,228,66,54,34,187,138,154,50,40,215,147,127, - 14,208,47,8,187,14,93,42,194,103,155,194,238,199,207,85,250,153,220,144, - 101,255,155,241,197,212,209,97,177,227,72,191,85,18,67,63,200,27,214,109, - 15,11,83,231,125,176,26,92,75,39,190,254,192,140,231,169,113,202,201,180, - 223,36,161,229,242,245,20,101,135,14,29,30,61,156,152,224,70,179,15,32, - 12,71,181,87,171,164,117,100,173,5,15,18,197,157,172,214,66,34,147,66, - 106,39,78,34,3,219,83,230,70,29,174,107,8,247,60,69,30,11,85,35, - 227,151,171,194,12,119,211,94,193,33,214,212,250,52,62,168,16,79,28,161, - 126,4,80,202,253,163,190,170,199,93,145,149,58,31,29,52,111,236,134,244, - 204,191,116,169,82,138,50,80,203,75,87,79,225,164,39,237,250,175,83,144, - 175,74,208,165,68,62,80,251,226,198,205,163,33,124,81,4,10,160,210,255, - 87,177,236,210,216,165,62,162,232,248,30,202,6,90,30,162,76,67,63,240, - 32,74,221,123,25,122,59,89,6,49,173,140,99,82,175,149,31,106,61,69, - 217,213,224,58,116,120,244,112,98,130,123,249,165,5,226,100,160,210,71,50, - 209,55,161,170,103,100,6,94,105,184,54,81,220,251,33,50,217,240,0,145, - 119,179,84,80,234,250,141,170,193,5,240,115,15,126,111,11,119,30,28,160, - 106,69,128,154,117,70,87,57,200,109,192,235,235,27,228,2,40,66,37,48, - 225,67,15,108,83,64,76,8,200,13,137,34,121,1,244,15,100,73,124,158, - 7,132,138,240,104,146,1,83,128,126,137,35,255,163,62,188,254,70,213,172, - 244,253,50,247,250,40,110,69,192,84,183,13,36,106,251,114,33,33,175,168, - 227,161,127,166,5,38,169,58,100,227,101,233,166,55,105,172,164,250,226,127, - 13,224,189,91,88,98,171,8,80,28,101,38,47,168,141,240,232,64,128,198, - 59,20,98,136,194,99,118,189,6,177,105,66,244,183,28,36,133,141,222,0, - 157,166,212,231,36,182,20,188,160,182,15,207,243,56,16,2,30,85,169,82, - 76,245,245,252,221,231,209,187,230,33,199,66,207,12,92,34,17,231,143,253, - 196,143,70,121,160,85,145,147,126,55,163,149,76,129,121,136,146,72,43,25, - 130,114,42,69,91,20,167,48,30,166,240,232,4,62,235,129,5,84,77,246, - 214,68,26,134,205,38,254,46,69,217,161,195,163,135,147,183,9,144,39,106, - 127,135,229,147,246,81,67,39,143,120,29,120,80,145,73,104,27,189,93,48, - 84,29,83,234,86,93,195,27,5,252,253,67,240,173,135,128,147,138,83,191, - 81,78,154,168,131,237,23,149,123,31,251,242,85,144,55,4,200,82,139,72, - 140,187,188,73,83,106,107,46,127,163,234,83,108,83,216,84,165,191,217,193, - 251,254,24,228,134,106,132,70,8,91,223,243,247,15,155,78,41,137,147,202, - 172,95,178,4,32,183,212,185,147,218,37,48,127,51,79,64,68,253,74,58, - 210,144,21,160,162,205,250,186,246,60,245,50,50,40,127,232,64,53,135,211, - 165,172,236,195,61,166,250,177,154,227,239,237,223,86,22,96,128,174,193,61, - 140,250,49,56,226,247,210,45,199,124,199,122,189,194,62,72,185,15,84,18, - 137,67,118,205,239,156,33,191,189,189,129,125,205,140,205,49,126,148,73,18, - 119,42,202,14,29,30,3,156,152,224,94,252,193,16,230,137,218,152,40,191, - 63,102,202,247,130,74,37,109,184,54,195,37,245,52,233,209,216,60,227,65, - 222,80,138,197,148,201,74,205,205,244,148,217,244,155,123,239,75,128,244,75, - 107,229,244,17,148,41,67,115,159,52,34,13,55,178,51,40,118,67,200,61, - 130,226,213,61,184,247,85,238,121,74,177,184,166,192,53,15,56,16,240,10, - 142,220,31,90,130,52,1,134,171,138,20,91,10,186,148,21,17,75,27,252, - 124,83,169,169,185,175,183,69,108,6,134,212,26,198,31,40,235,125,46,201, - 181,90,133,105,136,5,67,241,205,154,243,201,67,9,140,202,117,221,20,37, - 208,20,153,152,81,73,18,169,19,201,181,60,45,0,112,93,77,130,144,232, - 127,149,209,179,73,83,10,17,34,68,1,159,169,237,118,42,202,14,29,30, - 125,156,152,224,78,143,0,130,57,32,147,218,24,28,125,19,146,137,29,110, - 249,112,168,223,16,171,86,93,247,183,142,194,240,70,97,149,139,117,205,157, - 237,63,67,233,196,111,197,34,11,40,7,254,5,108,122,207,181,198,2,84, - 138,78,132,229,244,106,115,239,164,241,14,242,99,20,226,149,169,138,220,52, - 25,154,8,144,44,149,178,147,223,14,64,210,82,184,1,148,53,47,151,80, - 204,143,75,82,150,148,142,128,251,158,173,167,57,196,102,82,141,173,219,112, - 136,206,173,223,153,101,239,69,180,109,117,184,147,163,220,89,156,181,91,99, - 213,83,148,71,167,195,219,253,39,179,36,168,76,142,7,96,83,148,185,119, - 180,191,104,151,162,236,208,225,209,195,137,9,238,220,121,10,33,157,148,96, - 91,250,81,38,118,234,183,148,17,194,160,215,92,70,227,104,21,229,241,119, - 80,83,131,27,120,85,229,131,114,203,0,26,97,72,109,222,153,185,209,123, - 30,111,47,199,104,209,132,17,81,212,221,251,235,217,46,230,14,198,236,197, - 16,19,2,252,85,130,224,220,93,200,103,136,77,63,114,207,43,73,98,174, - 136,192,214,180,52,216,166,64,177,171,58,193,200,0,202,47,18,85,98,35, - 105,149,108,220,223,13,41,243,130,130,93,20,118,125,64,215,216,140,72,37, - 84,203,90,98,111,59,71,135,240,114,191,233,82,227,94,139,10,225,59,136, - 90,30,78,38,15,233,4,34,197,18,65,79,84,210,224,202,131,178,186,47, - 245,61,171,147,110,243,120,206,159,11,16,39,119,172,146,18,0,120,145,35, - 231,5,184,232,119,42,202,14,29,30,3,156,156,224,158,246,112,225,220,184, - 249,198,17,117,54,66,226,19,54,226,158,60,165,213,86,215,35,27,45,236, - 208,117,175,74,45,201,188,111,164,249,189,88,9,80,166,165,136,194,252,110, - 132,23,38,146,226,158,7,47,140,27,169,61,246,146,128,124,153,2,225,2, - 187,15,249,186,22,166,73,80,79,34,16,11,160,184,21,85,142,197,164,65, - 189,254,166,53,90,106,139,156,76,255,155,155,98,172,147,144,252,24,85,68, - 235,110,71,159,23,66,128,76,73,41,186,113,80,120,172,74,112,33,90,151, - 107,75,109,122,97,149,80,138,93,179,147,123,121,79,179,226,227,103,252,17, - 58,105,124,191,170,228,214,246,189,44,201,78,34,177,63,64,136,83,227,15, - 0,80,131,103,163,94,245,120,7,125,217,169,40,59,116,120,12,112,242,54, - 129,33,197,199,94,250,161,251,90,214,29,151,211,22,197,149,110,239,46,204, - 223,247,22,37,4,236,136,166,111,103,162,247,210,87,145,30,47,60,37,236, - 208,168,16,128,211,215,102,199,224,56,176,110,30,33,32,38,4,124,232,217, - 8,208,144,150,28,18,75,24,254,150,131,127,134,130,237,101,72,56,65,248, - 20,135,12,74,1,70,62,236,171,137,1,243,102,35,56,224,212,250,160,136, - 200,146,76,29,97,45,101,104,8,203,61,118,125,156,226,37,0,23,29,98, - 215,132,36,247,8,228,30,177,17,104,177,27,90,43,46,132,128,55,228,182, - 118,232,146,92,157,248,138,130,129,123,30,232,148,91,98,115,107,112,81,88, - 0,180,223,122,190,199,163,58,69,32,234,85,183,97,34,184,227,80,85,79, - 186,112,163,190,16,103,166,103,49,123,242,2,0,32,77,56,226,204,105,114, - 103,239,247,8,159,14,29,58,124,175,112,98,130,99,140,224,210,115,79,85, - 132,37,118,28,78,77,108,146,164,3,123,243,73,90,122,227,234,50,110,189, - 150,254,247,254,34,56,146,168,167,108,227,100,226,154,45,55,246,119,67,245, - 181,185,205,202,149,221,95,4,242,23,156,27,104,168,200,77,132,61,117,35, - 79,84,164,35,194,158,74,239,133,213,134,108,247,119,250,137,83,234,44,152, - 132,188,72,80,136,33,228,157,16,204,43,44,1,24,105,191,33,167,194,99, - 240,60,14,50,213,86,87,91,39,141,234,28,147,65,190,215,7,223,243,108, - 170,145,15,189,146,104,53,152,39,32,38,4,244,19,167,64,158,169,238,175, - 66,154,250,119,143,110,224,111,185,221,94,62,84,215,131,78,245,107,186,62, - 104,142,41,223,235,3,83,216,99,182,152,2,222,147,142,241,117,226,97,54, - 62,105,180,115,116,13,174,45,130,179,239,85,62,92,115,44,237,223,175,48, - 80,15,60,231,47,94,130,223,43,247,71,153,18,51,29,229,69,217,213,224, - 58,116,120,244,240,192,4,39,132,128,16,234,70,250,202,171,33,164,140,64, - 72,108,73,77,226,22,36,158,60,114,253,147,245,194,233,117,97,148,155,97, - 197,170,203,109,15,48,94,148,165,217,178,10,65,134,125,109,83,53,229,202, - 29,95,247,195,217,122,212,20,21,39,16,239,55,50,176,151,132,37,31,86, - 20,170,223,77,247,120,209,41,7,251,173,76,69,48,238,253,115,90,70,44, - 242,2,32,47,170,13,76,0,144,215,40,216,135,52,1,15,137,34,132,165, - 0,125,93,40,251,171,80,147,93,22,65,190,64,32,190,191,135,98,55,84, - 209,214,84,109,219,244,215,241,161,7,177,165,16,91,10,239,127,202,64,47, - 114,91,63,51,36,132,16,144,231,5,188,33,183,245,55,250,220,6,124,143, - 150,228,230,28,11,166,250,119,45,176,41,158,246,176,253,79,122,160,191,3, - 144,191,159,65,14,137,77,225,210,41,87,170,209,161,135,237,207,247,192,126, - 43,131,124,134,64,222,9,171,181,55,211,91,8,64,202,3,0,1,230,171, - 247,143,12,218,154,188,141,184,68,253,40,41,106,181,61,192,224,170,253,141, - 16,21,225,199,233,62,206,159,251,107,216,27,189,13,64,187,153,200,114,218, - 248,81,42,202,250,60,184,110,62,92,135,14,127,241,120,96,130,163,84,59, - 99,208,12,231,206,83,156,62,221,179,42,202,82,193,214,140,186,238,85,127, - 107,239,131,171,54,105,27,68,65,81,177,234,226,90,19,41,28,245,8,137, - 114,167,15,46,1,91,58,17,89,2,200,121,45,157,165,83,113,118,253,49, - 5,94,62,5,249,4,108,115,55,160,211,138,154,16,232,5,170,82,119,117, - 92,212,41,191,33,1,27,212,124,30,167,78,237,202,164,17,221,177,59,129, - 82,94,146,23,212,223,214,55,50,116,122,227,194,82,204,66,159,19,32,99, - 10,121,161,121,125,77,36,105,29,72,46,2,8,83,200,139,196,110,71,238, - 145,242,56,156,180,166,60,47,32,255,142,68,240,159,207,64,94,40,175,149, - 27,157,50,175,0,157,114,4,63,54,194,242,66,185,178,91,115,51,199,229, - 59,27,47,5,64,192,131,213,88,171,203,230,126,97,109,186,220,52,184,17, - 151,168,159,250,247,202,77,83,170,112,92,34,129,148,35,16,178,6,65,136, - 11,23,128,209,153,50,61,28,120,71,127,119,25,235,34,183,14,29,30,85, - 156,40,69,105,72,238,220,211,30,190,255,197,123,11,77,234,105,204,186,47, - 37,208,166,162,212,185,192,6,142,142,252,40,173,22,158,212,68,111,179,45, - 13,29,169,201,203,205,183,12,188,36,6,63,13,200,159,163,144,207,147,74, - 75,128,95,56,14,26,23,250,144,207,147,70,4,215,250,59,0,54,40,44, - 113,97,10,85,127,107,59,143,129,128,252,143,152,149,216,203,137,34,22,230, - 233,6,115,19,109,2,144,63,123,26,56,203,32,94,66,57,10,103,90,238, - 219,11,99,229,33,233,9,136,151,212,212,113,239,99,20,120,18,213,90,157, - 19,121,34,4,232,47,167,32,191,192,224,95,90,170,73,229,45,231,35,135, - 4,187,31,246,65,62,69,48,195,170,242,158,88,48,236,126,216,135,120,109, - 138,236,188,81,210,150,189,147,37,238,35,146,183,223,151,154,21,92,238,217, - 8,206,237,131,171,78,243,118,197,35,110,122,50,5,48,173,244,198,73,57, - 66,24,12,241,212,185,42,105,9,199,162,139,249,38,53,171,150,225,60,215, - 255,86,31,152,186,249,112,29,58,252,197,227,161,6,158,78,39,12,159,248, - 216,83,0,230,149,94,56,147,178,116,83,151,229,123,198,208,214,189,9,181, - 137,76,154,228,38,245,141,41,78,203,66,127,192,238,130,97,9,18,40,171, - 46,85,131,59,230,166,105,108,184,46,171,176,41,31,246,155,117,168,133,106, - 6,167,207,109,32,94,161,101,45,44,236,33,247,250,246,70,79,130,4,242, - 101,37,186,112,133,41,54,130,153,234,90,159,65,36,144,127,112,207,138,85, - 168,95,70,127,114,72,80,236,134,16,91,10,249,131,4,228,249,242,38,107, - 150,151,67,98,35,67,115,121,248,71,151,64,20,192,123,133,129,158,22,32, - 103,157,235,230,16,93,62,96,144,23,137,154,74,126,190,64,254,124,191,140, - 198,166,0,217,147,246,184,229,51,4,236,51,12,108,47,67,44,212,231,68, - 107,81,158,57,223,224,71,5,188,179,27,245,64,112,129,66,158,87,166,209, - 116,202,17,124,152,131,124,138,160,247,145,106,215,225,113,30,165,199,163,25, - 193,29,7,247,161,201,164,42,235,246,92,38,53,105,126,31,247,191,31,151, - 158,59,87,169,191,25,68,97,245,181,48,12,109,4,199,216,67,206,14,238, - 208,161,195,251,142,135,250,95,201,24,195,43,175,93,192,169,83,138,212,164, - 76,20,89,29,99,201,213,134,118,145,137,129,75,132,78,19,175,174,193,165, - 188,109,170,192,189,211,94,228,170,114,228,247,194,88,165,233,180,144,164,66, - 116,179,24,244,85,2,122,81,141,176,241,194,184,66,94,177,72,33,62,54, - 134,124,134,168,215,245,205,95,78,168,34,141,103,208,72,81,178,143,107,161, - 134,187,172,222,158,113,226,23,175,80,96,166,45,195,60,81,214,212,28,194, - 2,0,242,49,9,239,99,20,36,72,128,243,133,34,166,162,80,53,47,189, - 172,169,127,177,151,116,228,6,0,145,0,123,34,109,30,131,222,7,249,36, - 0,29,117,133,76,130,200,218,195,199,20,192,69,128,188,160,234,138,177,72, - 213,121,158,118,182,115,17,96,47,19,176,73,1,249,242,172,178,186,215,119, - 85,163,229,103,53,79,142,168,91,61,224,247,9,112,201,173,77,188,100,162, - 185,216,89,62,4,228,25,60,253,204,5,60,255,33,117,28,166,7,206,243, - 125,107,211,117,20,186,136,173,67,135,71,15,39,38,56,66,66,112,206,241, - 226,199,57,206,63,245,44,128,230,132,128,227,136,206,21,153,180,71,112,6, - 109,209,88,114,143,113,57,117,21,101,53,170,17,97,15,228,134,54,50,118, - 197,21,238,250,122,110,156,184,68,33,94,161,138,4,107,72,153,132,247,209, - 181,170,109,57,160,35,37,10,225,123,229,229,37,50,196,18,0,29,45,43, - 203,87,70,244,64,181,31,144,215,78,41,217,204,194,233,119,107,105,91,216, - 253,176,175,136,141,36,42,141,120,17,74,210,31,198,150,180,188,68,245,230, - 201,11,20,252,52,236,224,86,58,42,211,142,212,231,64,72,32,39,20,187, - 15,249,16,63,201,64,140,80,36,174,146,159,249,241,194,24,197,115,20,222, - 105,138,148,73,32,18,16,231,132,125,0,16,47,81,144,231,125,44,195,5, - 232,108,137,28,11,244,131,28,81,175,95,27,151,83,126,190,179,240,94,36, - 241,224,194,164,106,122,210,144,91,234,252,148,81,92,24,156,195,143,125,242, - 67,232,71,74,49,89,117,232,41,225,121,29,153,117,232,240,56,224,196,4, - 103,158,88,167,211,62,126,230,23,63,10,160,236,59,35,36,180,228,118,191, - 209,92,123,4,215,86,179,81,211,150,111,174,166,56,67,213,205,244,80,12, - 177,218,146,138,200,164,71,71,200,179,2,161,174,153,44,253,181,242,162,188, - 64,213,77,184,190,59,77,124,220,125,82,143,85,15,27,125,181,41,196,144, - 19,138,64,167,251,196,75,250,50,46,170,61,95,178,109,6,231,249,2,100, - 79,71,48,97,149,52,189,33,7,123,73,128,126,228,64,201,102,166,165,11, - 137,221,183,169,149,133,64,240,99,163,178,62,6,64,62,235,89,162,166,62, - 183,145,36,0,200,75,0,219,43,83,131,197,115,206,71,175,143,131,142,4, - 130,15,115,208,31,175,146,174,36,186,253,227,25,181,15,178,39,33,39,20, - 236,101,181,158,61,205,153,250,91,14,9,228,69,2,50,213,205,240,3,14, - 254,125,1,118,169,74,231,145,160,157,56,196,61,51,151,213,239,130,159,223, - 171,39,45,169,253,110,200,205,40,126,171,238,55,207,158,127,22,151,158,59, - 103,253,39,9,137,17,4,247,38,213,46,61,217,161,195,163,137,135,250,159, - 73,105,134,161,191,194,39,62,62,182,125,110,109,2,18,41,147,6,209,185, - 209,222,209,179,225,18,160,230,4,15,0,113,234,225,3,31,248,46,238,138, - 8,1,187,139,83,116,131,145,215,18,226,0,72,242,50,69,248,252,135,41, - 248,165,169,138,174,60,175,82,131,50,81,137,105,216,38,99,10,144,49,150, - 0,200,11,66,213,218,12,166,0,57,61,69,152,17,69,48,47,159,178,68, - 194,158,72,33,122,199,223,120,249,51,181,8,192,28,186,142,180,92,210,178, - 243,213,180,40,69,78,168,117,76,161,151,170,31,31,191,48,117,182,69,16, - 7,122,26,247,144,64,94,154,34,225,164,76,55,158,154,86,162,66,209,243, - 32,122,30,232,37,130,164,39,33,147,76,69,145,250,88,200,12,149,243,162, - 35,1,113,126,10,196,78,207,223,20,40,158,212,41,209,75,128,76,50,76, - 18,181,147,189,225,30,8,73,156,254,181,7,28,152,7,160,30,193,29,95, - 131,75,236,247,229,232,244,183,18,150,0,234,187,21,132,123,120,246,217,243, - 200,179,180,98,209,229,121,30,162,48,64,24,134,173,163,114,186,244,100,135, - 14,143,38,78,76,112,66,8,48,54,128,144,19,252,200,15,239,240,203,191, - 248,4,138,252,52,164,76,224,249,7,247,92,191,158,162,172,194,77,47,182, - 169,238,202,20,101,202,207,216,54,129,234,1,42,181,163,138,224,212,205,244, - 234,11,30,188,87,151,40,194,200,18,153,153,255,102,162,29,211,2,32,87, - 2,8,23,118,203,228,51,178,146,90,148,88,169,52,94,76,193,206,45,21, - 1,234,128,64,142,133,218,222,204,105,254,78,50,76,101,8,18,246,192,62, - 195,176,59,235,67,246,78,149,209,220,2,200,159,239,131,254,93,61,171,77, - 134,138,72,207,38,118,191,116,36,172,48,69,238,17,208,209,210,18,214,18, - 128,255,139,74,81,40,39,20,162,231,97,208,211,189,90,23,1,118,113,137, - 144,73,43,26,33,175,174,213,49,76,104,153,74,253,148,4,253,203,154,52, - 34,129,137,73,79,234,127,229,88,145,221,150,246,192,247,40,242,189,3,196, - 65,98,143,65,190,76,193,126,32,87,215,79,105,126,192,55,59,176,241,33, - 214,63,92,141,10,75,133,171,186,104,161,124,178,82,79,45,160,26,228,9, - 73,28,21,165,74,43,202,150,208,216,109,19,80,159,143,33,181,5,128,185, - 254,119,9,245,221,42,83,147,132,172,1,121,14,103,167,31,194,171,63,241, - 105,80,239,50,252,94,96,163,56,175,165,129,219,243,124,4,212,136,75,154, - 169,235,14,29,58,60,26,120,136,20,37,69,158,231,224,60,199,153,51,103, - 241,177,31,186,96,91,0,242,172,120,128,137,221,85,52,103,117,221,71,138, - 168,54,7,206,133,27,193,1,42,50,115,251,180,188,68,137,67,76,221,172, - 245,152,194,30,196,37,138,221,217,242,102,103,110,246,136,132,146,233,159,19, - 182,113,27,80,41,194,90,215,2,100,82,230,224,162,161,196,110,179,174,188, - 95,233,31,35,181,136,87,147,150,197,197,234,182,221,91,62,245,121,121,124, - 64,229,184,1,0,49,133,215,103,24,244,242,138,146,19,80,196,26,102,213, - 155,182,169,199,201,137,58,239,65,47,199,170,31,32,162,129,173,233,1,74, - 80,35,206,9,43,108,1,148,16,201,158,131,38,66,63,205,236,56,27,131, - 132,220,194,253,130,144,4,82,134,240,115,207,246,193,213,199,229,0,104,169, - 189,1,245,233,1,106,185,5,206,156,185,132,151,95,20,182,254,230,70,112, - 46,76,253,141,244,88,215,3,215,161,195,35,142,135,78,81,250,222,14,148, - 82,124,242,211,207,227,252,57,69,70,70,48,226,206,226,2,202,84,229,241, - 233,202,16,64,132,7,177,234,106,139,224,242,154,231,229,176,207,192,191,15, - 192,89,86,222,240,117,106,146,60,163,106,82,198,194,170,13,108,216,71,240, - 97,94,33,65,73,116,244,18,166,160,151,72,53,229,55,246,65,102,40,211, - 141,250,95,73,18,37,169,215,68,225,214,225,200,51,234,248,0,69,52,100, - 79,42,87,144,106,169,72,213,11,95,162,165,192,196,32,212,202,72,189,77, - 67,136,225,83,92,165,92,161,85,145,97,15,136,164,138,220,244,178,46,33, - 2,40,197,37,49,173,16,179,193,232,172,243,154,78,83,146,176,7,122,137, - 192,251,1,61,129,97,235,129,103,3,219,42,65,136,169,129,85,125,66,15, - 214,181,116,229,150,96,202,142,118,2,145,50,212,219,42,157,76,146,68,61, - 44,40,69,238,162,230,92,82,159,251,86,166,47,165,28,129,32,196,247,127, - 223,15,225,236,185,15,96,23,151,15,29,65,16,192,243,60,132,208,243,254, - 196,73,60,52,59,116,232,240,23,133,135,34,56,94,236,224,249,167,144,36, - 25,206,61,237,225,181,79,157,133,148,183,65,73,149,112,234,68,215,134,7, - 157,232,93,199,86,168,70,111,99,213,85,21,32,232,41,205,16,32,83,137, - 104,40,85,63,155,70,241,28,133,247,10,67,241,131,172,17,197,37,156,40, - 34,11,18,96,70,108,29,204,30,183,86,48,210,11,205,8,207,144,10,0, - 69,24,154,228,216,160,40,221,68,142,67,88,182,31,84,34,173,41,64,94, - 34,213,90,221,17,80,130,16,128,79,203,134,124,73,18,200,36,179,34,24, - 178,82,199,73,102,109,91,208,203,232,115,17,152,130,239,81,21,157,198,68, - 17,32,73,85,127,29,148,187,75,81,239,253,231,77,51,128,210,101,38,2, - 163,79,33,148,165,189,27,31,76,177,224,12,81,208,94,99,51,228,230,58, - 153,4,61,1,33,151,53,114,139,81,62,29,44,96,134,229,170,109,172,109, - 253,237,204,244,60,126,236,149,103,177,221,12,208,6,18,14,16,134,33,6, - 125,105,211,147,38,122,235,60,40,59,116,120,116,113,98,130,203,243,28,204, - 33,137,211,167,122,248,245,255,234,39,112,254,220,89,120,254,1,72,139,247, - 95,105,159,212,36,187,251,233,131,43,81,78,244,6,218,122,225,212,123,126, - 77,236,65,250,92,221,220,199,162,58,194,101,70,64,206,177,70,74,17,80, - 173,0,128,34,5,58,5,226,128,85,200,134,200,208,54,79,7,31,230,173, - 238,36,230,230,143,152,218,200,136,78,203,8,203,93,135,115,110,247,231,182, - 25,152,72,107,75,123,144,19,106,201,200,110,27,42,98,50,219,50,164,133, - 144,128,94,82,253,104,54,145,171,201,150,94,34,202,151,82,71,111,114,174, - 211,168,73,160,207,45,64,210,211,231,175,219,38,168,38,12,50,3,36,13, - 128,72,128,111,61,248,115,223,70,147,155,126,12,177,0,228,106,134,213,226, - 20,86,181,8,84,69,215,229,231,61,25,74,220,21,17,10,50,66,65,78, - 219,215,227,212,179,105,77,23,238,107,38,130,51,86,112,237,109,1,230,204, - 93,87,147,178,175,242,71,127,244,147,120,246,217,243,118,155,71,165,39,13, - 136,158,38,222,213,223,58,116,120,180,241,16,211,4,212,127,242,44,227,8, - 195,30,0,137,115,79,123,248,133,95,216,67,150,237,219,229,218,136,14,104, - 73,95,62,80,4,87,162,32,234,41,156,99,2,142,137,149,162,103,69,245, - 230,67,207,156,197,221,157,143,132,19,172,250,142,50,115,162,162,17,217,143, - 21,105,24,89,253,92,145,87,165,182,117,129,150,194,13,7,33,147,138,8, - 102,4,212,231,37,185,64,17,144,91,167,114,183,37,199,162,172,171,105,194, - 115,27,195,229,4,213,148,168,73,35,158,166,32,99,90,33,55,0,182,217, - 218,144,150,28,11,240,61,69,134,36,72,236,241,88,156,154,85,90,25,200, - 76,165,25,137,115,201,77,61,206,141,224,204,223,68,148,145,155,141,210,206, - 50,12,131,1,200,41,55,28,84,130,17,41,67,53,46,167,134,229,166,122, - 30,43,81,70,69,132,52,191,59,245,215,118,59,161,77,6,140,169,178,17, - 149,184,77,221,105,73,108,196,164,51,19,68,193,7,241,169,215,62,137,160, - 127,19,65,255,38,206,134,28,57,207,84,122,210,247,173,122,18,168,246,191, - 117,228,214,161,195,163,143,135,72,81,74,48,54,176,255,209,165,76,208,143, - 56,126,252,213,159,192,133,115,31,114,150,171,74,181,219,162,58,243,58,65, - 88,113,43,81,120,48,177,74,63,168,19,80,243,6,57,122,34,82,114,246, - 90,234,143,140,85,250,177,104,145,130,3,0,63,93,109,222,174,28,37,147, - 160,207,150,55,245,138,208,79,71,109,182,22,165,187,183,235,98,64,57,22, - 246,189,58,68,207,3,89,41,130,21,231,4,248,233,150,133,34,1,62,86, - 68,99,72,86,78,80,77,149,106,36,156,64,156,42,95,95,245,3,165,124, - 52,178,255,164,121,28,235,188,124,141,159,6,100,237,163,225,251,61,204,51, - 31,226,169,211,144,115,1,206,199,16,235,146,161,9,73,16,39,237,105,192, - 7,129,137,224,100,26,43,114,19,101,132,214,180,228,50,13,221,85,114,3, - 0,130,41,254,202,95,250,37,60,255,33,142,60,83,39,179,198,7,74,7, - 19,167,39,50,12,35,120,158,223,217,115,117,232,240,24,225,196,255,67,141, - 80,196,247,125,8,193,145,231,62,124,111,135,159,250,75,33,126,238,231,127, - 68,47,85,181,232,63,138,228,72,173,215,173,26,205,221,191,123,197,82,112, - 27,193,153,185,112,109,224,125,149,210,116,155,178,141,212,157,250,220,154,28, - 3,213,136,135,13,171,34,3,34,195,74,31,152,125,29,138,100,10,127,6, - 127,174,163,145,36,0,99,204,166,252,90,9,170,190,79,221,102,96,199,239, - 152,136,111,70,224,245,89,25,25,58,169,79,131,186,104,164,34,70,73,148, - 250,145,12,184,37,173,145,159,170,180,35,73,27,196,85,39,93,57,1,60, - 61,126,200,159,251,96,140,161,88,205,176,226,213,135,147,157,208,15,63,59, - 134,77,241,108,37,181,24,244,114,212,31,62,10,114,26,115,209,7,19,37, - 9,182,165,40,1,32,234,49,244,112,84,255,153,43,46,41,39,118,55,182, - 17,60,135,159,251,171,63,6,81,92,194,19,167,50,228,89,106,155,187,235, - 237,1,157,123,73,135,14,143,31,30,34,69,89,222,132,40,101,232,245,24, - 8,157,162,136,19,252,195,223,60,139,151,94,248,56,2,127,95,187,69,76, - 32,112,11,65,111,13,104,2,35,88,88,162,115,199,154,220,59,130,43,255, - 142,139,167,112,51,61,139,130,140,144,242,51,240,240,65,76,163,133,186,41, - 210,190,35,100,40,215,241,247,79,35,248,209,171,192,143,68,240,194,24,98, - 92,222,200,146,231,115,240,103,24,138,48,82,53,164,36,179,36,66,100,8, - 200,21,228,69,82,89,71,246,99,144,157,38,160,139,203,178,137,123,70,224, - 229,115,149,54,76,2,91,91,179,132,167,151,1,84,211,184,77,141,146,242, - 88,141,119,36,123,66,71,185,43,149,122,100,151,212,126,1,149,66,84,170, - 72,1,204,35,144,139,75,144,21,181,169,68,122,137,128,124,72,165,51,39, - 243,8,225,42,84,41,200,152,130,245,182,144,53,231,124,34,213,177,146,0, - 40,125,33,246,208,0,0,32,0,73,68,65,84,118,28,72,2,123,76,67, - 125,158,152,17,75,130,114,53,67,49,31,131,177,21,70,219,8,253,213,19, - 216,62,69,176,122,254,44,228,142,65,136,9,120,222,148,167,166,153,15,245, - 240,19,131,80,53,61,123,46,250,152,209,29,2,143,218,1,163,68,15,228, - 83,68,23,0,8,84,138,146,174,172,82,54,78,215,144,184,10,137,91,0, - 222,67,217,243,150,170,127,201,245,74,228,166,54,120,14,255,240,191,248,12, - 70,51,31,212,187,140,195,205,8,126,47,64,20,73,136,156,53,154,187,219, - 6,156,118,13,222,29,58,60,218,120,223,114,44,148,50,48,70,65,122,12, - 61,54,196,175,255,253,79,98,48,250,8,122,189,61,72,92,5,65,136,36, - 227,8,122,185,173,149,0,245,168,174,237,105,189,30,193,5,149,229,206,134, - 138,56,76,45,206,160,94,131,19,228,41,0,128,220,26,2,82,233,72,19, - 109,1,170,150,38,39,170,31,173,77,112,114,156,106,49,224,237,53,25,59, - 77,128,143,75,1,73,170,106,152,102,31,242,96,209,92,222,160,229,56,108, - 202,209,52,96,183,212,169,236,178,45,202,72,55,66,155,70,122,0,235,114, - 106,155,179,203,131,113,148,151,43,1,138,133,250,153,42,49,12,207,6,88, - 231,101,138,119,157,115,108,55,234,248,7,55,37,36,87,159,201,54,215,105, - 83,35,237,111,153,182,30,23,79,97,70,119,32,125,110,201,77,161,61,130, - 143,19,15,50,141,17,199,110,77,207,8,75,204,239,11,132,193,16,189,192, - 236,95,215,222,228,8,159,249,43,63,143,115,207,159,197,96,88,141,244,133, - 8,209,235,87,255,91,152,232,205,77,79,118,232,208,225,209,199,251,90,68, - 80,145,92,15,140,249,248,185,159,13,240,43,191,250,105,228,89,117,226,114, - 146,241,134,7,96,189,95,169,25,197,185,40,235,41,22,131,82,196,145,137, - 1,8,73,208,243,170,194,14,42,111,2,0,214,249,4,60,27,128,94,2, - 112,154,66,98,5,73,103,144,36,81,169,65,221,10,0,52,83,115,136,181, - 32,197,168,14,77,127,88,36,145,50,169,228,255,19,229,114,226,98,158,249, - 0,91,89,97,14,207,6,64,20,168,148,224,88,168,8,174,134,134,131,63, - 140,67,74,53,189,73,100,208,16,155,0,74,237,104,106,124,50,45,183,197, - 57,87,63,134,72,181,24,196,168,35,37,45,207,153,245,182,224,156,43,235, - 46,50,179,81,161,218,144,34,141,145,207,192,45,17,106,49,9,31,97,117, - 230,28,0,64,136,114,29,55,221,232,247,134,112,63,199,200,83,159,143,113, - 48,169,163,42,44,81,12,173,200,109,174,191,63,11,148,194,18,213,18,32, - 177,64,146,110,144,38,213,239,194,19,179,79,226,83,175,125,18,79,156,159, - 162,16,75,248,189,160,213,154,203,103,30,250,45,229,216,78,96,210,161,195, - 227,129,247,189,74,238,251,190,189,1,252,234,95,191,132,151,95,220,107,44, - 19,250,134,244,170,179,185,170,117,146,250,144,182,150,125,245,2,204,69,31, - 197,110,15,124,48,173,72,204,219,192,222,212,251,217,50,20,23,166,165,32, - 67,168,208,37,100,82,69,85,102,236,75,84,189,49,146,176,103,35,34,57, - 65,217,188,157,100,42,130,211,210,123,67,128,133,175,22,30,179,4,114,53, - 3,231,188,82,167,82,162,22,128,100,135,149,253,132,76,218,134,112,160,20, - 194,8,76,149,228,159,49,32,166,32,50,128,76,181,210,49,110,255,40,141, - 218,209,159,251,138,88,53,25,49,198,192,57,175,8,77,0,0,177,26,125, - 83,236,84,132,102,72,153,142,84,170,112,213,15,44,41,202,45,195,58,159, - 96,39,8,214,249,4,114,199,32,249,8,66,76,32,196,20,135,203,139,216, - 196,51,240,236,52,182,171,106,154,82,61,248,148,215,34,46,158,194,252,168, - 70,106,153,56,195,82,157,241,73,36,134,68,10,129,91,40,237,184,74,114, - 35,100,13,144,187,149,244,100,47,24,227,103,126,234,211,74,88,194,51,43, - 46,137,34,9,159,245,224,249,62,152,231,195,103,30,152,239,65,200,82,92, - 162,174,27,233,122,223,58,116,120,76,240,61,147,129,245,61,130,239,123,158, - 224,191,249,205,87,240,196,105,109,96,172,35,128,36,87,179,220,76,79,146, - 196,162,17,213,85,209,76,83,173,182,234,209,218,60,121,203,157,91,15,81, - 55,45,213,7,87,222,68,197,153,143,64,238,84,196,225,13,4,200,37,32, - 174,73,212,201,172,249,154,129,36,73,179,121,27,165,149,85,91,212,85,17, - 94,240,49,102,11,69,226,124,233,41,2,116,253,42,39,85,107,43,245,90, - 233,3,73,38,186,7,77,187,244,203,84,69,131,166,95,205,164,64,109,218, - 117,70,80,248,51,20,235,146,168,192,86,149,212,35,25,240,170,154,51,10, - 42,105,82,206,121,195,186,11,80,228,198,249,88,213,217,214,83,136,245,212, - 146,219,54,31,35,230,2,94,56,6,199,4,135,98,88,89,183,156,38,80, - 141,196,235,81,84,185,66,216,104,13,32,152,107,161,211,45,167,45,160,218, - 204,221,60,232,51,248,247,95,251,79,241,179,127,237,85,0,176,228,102,246, - 107,156,75,0,53,185,187,71,120,173,53,64,17,155,16,71,187,172,116,232, - 208,225,209,193,251,74,112,74,77,89,202,244,101,198,241,201,31,127,6,127, - 239,55,94,195,233,83,23,32,112,75,71,111,161,67,110,142,109,82,237,111, - 133,246,145,57,41,125,178,241,26,239,79,28,183,122,227,150,161,38,18,152, - 26,92,196,7,136,249,20,43,118,23,100,70,17,13,21,89,36,92,69,65, - 100,76,17,62,213,244,103,52,38,197,252,180,150,222,47,203,122,153,17,163, - 72,146,180,187,129,104,66,145,91,134,185,83,243,35,227,121,165,225,251,40, - 136,156,129,172,40,214,185,78,107,38,153,18,131,100,74,232,99,163,56,179, - 252,120,129,85,63,0,157,42,2,3,96,151,93,241,80,145,83,54,40,201, - 119,70,32,48,197,34,30,128,47,213,177,228,51,245,57,50,198,64,100,0, - 177,158,0,51,245,117,201,39,234,65,101,39,136,173,179,9,49,193,58,61, - 135,109,62,6,207,78,67,98,134,253,100,140,148,159,169,184,148,84,97,108, - 217,84,52,62,148,138,192,153,118,39,9,163,35,204,65,141,229,27,174,66, - 145,218,45,253,179,212,15,75,73,67,84,34,229,8,31,127,241,23,108,207, - 155,217,167,241,158,44,82,125,45,69,136,65,208,3,23,125,244,6,147,70, - 107,0,208,77,15,232,208,225,113,193,251,94,131,115,211,55,193,80,221,188, - 126,237,111,253,101,252,202,175,126,26,79,158,246,144,228,5,36,102,182,1, - 188,108,4,95,212,218,7,220,226,135,27,193,169,180,230,170,214,5,144,135, - 79,64,136,208,214,121,170,34,147,20,7,177,186,41,237,64,17,108,180,84, - 127,54,179,105,74,3,147,86,108,67,194,73,73,86,110,131,180,158,42,112, - 63,24,249,74,82,175,14,96,220,32,68,67,68,128,146,226,187,125,122,163, - 179,153,106,240,238,201,134,148,63,233,73,123,108,100,69,49,242,83,72,90, - 166,18,173,184,70,163,242,55,105,122,121,198,251,163,198,241,84,142,83,71, - 111,0,108,212,102,112,40,134,216,79,116,171,4,25,53,4,64,109,8,66, - 102,63,195,99,97,125,76,111,235,7,161,247,160,20,147,203,35,137,13,242, - 12,62,242,193,159,194,175,252,218,79,224,165,31,58,131,195,119,119,149,186, - 91,16,4,232,245,41,194,40,66,191,47,193,124,15,131,126,179,57,191,75, - 79,118,232,240,120,225,123,146,162,244,125,31,189,158,82,85,14,6,35,244, - 61,130,255,250,31,124,16,191,252,43,127,3,189,222,243,14,145,197,206,143, - 194,113,179,187,20,66,132,65,83,205,104,250,150,76,163,55,137,242,138,85, - 215,153,240,58,0,128,14,28,101,224,72,69,37,139,120,128,48,47,111,242, - 86,76,209,210,227,198,38,42,221,186,206,3,48,51,21,200,89,78,26,198, - 114,72,195,181,170,114,85,135,172,183,197,98,60,109,26,29,219,109,165,21, - 51,228,85,48,168,120,74,186,112,219,15,248,120,12,178,4,136,62,13,47, - 87,53,198,21,50,96,81,179,161,98,43,144,25,5,197,2,227,180,124,106, - 24,179,68,165,51,217,170,210,186,48,12,6,240,6,2,59,65,64,163,33, - 132,168,146,35,207,84,225,112,22,50,132,242,73,244,245,3,68,18,126,80, - 47,145,194,79,239,57,217,20,69,113,220,172,55,212,28,75,170,81,91,181, - 153,59,196,15,124,240,211,248,155,127,251,151,240,226,71,79,99,179,188,133, - 83,79,87,107,125,73,66,193,232,176,34,44,241,60,86,137,222,58,114,235, - 208,225,241,195,247,172,6,39,101,130,76,167,11,57,207,225,245,150,248,207, - 254,203,103,240,15,254,222,127,12,137,16,81,112,29,42,26,139,244,207,220, - 254,168,27,87,140,82,104,98,220,78,154,41,43,159,246,177,198,7,80,228, - 57,50,114,26,160,43,0,1,100,26,107,203,176,16,192,19,0,128,5,158, - 129,216,174,192,200,10,225,117,229,182,194,62,174,182,99,82,115,0,64,38, - 11,152,225,224,75,232,20,164,73,1,198,105,89,55,59,203,64,118,17,226, - 32,81,17,212,60,2,29,45,21,65,74,37,202,24,233,90,33,231,99,112, - 62,70,159,206,176,19,115,172,22,42,58,26,249,204,90,135,73,122,74,145, - 138,65,18,40,171,45,61,130,103,246,148,34,160,48,35,170,222,166,9,8, - 112,106,125,100,2,182,90,97,213,15,80,104,178,157,79,67,181,239,213,19, - 232,211,25,214,57,199,58,159,96,180,141,32,87,51,144,169,22,143,144,9, - 192,53,97,153,58,29,31,151,174,38,115,1,122,9,88,173,181,26,84,215, - 42,183,249,24,18,51,20,120,22,178,55,65,40,159,68,28,159,65,66,47, - 98,199,151,224,131,41,152,119,14,148,92,129,148,19,172,146,69,37,13,61, - 30,17,240,108,8,145,51,80,154,32,162,122,66,64,188,112,250,223,84,221, - 141,144,24,192,183,1,92,6,112,5,208,245,219,102,159,219,25,64,158,177, - 228,246,225,23,60,20,98,217,24,135,19,4,1,166,179,0,94,79,63,120, - 176,49,40,27,54,200,173,238,90,194,249,209,70,2,29,58,116,120,52,240, - 61,35,56,66,66,125,99,40,163,155,179,3,134,159,254,15,215,248,187,127, - 231,111,65,202,151,0,204,160,82,76,239,161,36,51,37,28,40,37,223,77, - 36,105,89,231,163,62,71,24,234,169,211,206,208,203,56,46,244,77,212,200, - 198,21,138,226,2,118,243,239,67,204,212,13,170,112,114,132,86,92,49,35, - 170,29,128,6,149,254,182,72,75,232,233,84,57,127,0,213,198,108,64,75, - 248,103,180,230,197,88,135,146,194,155,84,229,200,79,155,51,219,0,53,254, - 6,104,24,56,87,122,229,248,184,172,197,233,180,163,28,11,140,206,102,144, - 99,169,8,107,209,195,78,16,144,85,121,46,125,90,166,224,10,50,43,199, - 223,176,101,197,15,211,93,6,0,138,180,84,170,214,83,147,0,16,199,103, - 80,12,135,40,134,67,144,62,7,199,204,74,255,213,188,64,85,63,11,123, - 12,70,0,180,92,94,1,0,68,195,49,40,27,225,112,37,48,212,167,104, - 197,37,114,169,71,45,221,134,192,2,192,85,148,15,62,237,105,205,31,248, - 224,167,241,235,191,246,50,62,252,130,7,143,78,144,103,169,29,100,10,104, - 215,26,29,149,245,60,106,39,6,180,129,243,106,148,221,54,185,190,67,135, - 14,143,22,190,135,102,122,74,206,110,212,123,19,182,64,175,159,226,185,15, - 63,143,95,253,235,151,240,91,255,232,151,241,137,23,95,0,48,69,232,155, - 158,40,87,73,233,154,229,186,8,96,158,232,61,58,65,146,80,36,137,58, - 141,81,223,87,190,132,114,9,137,91,136,252,166,147,201,106,75,16,143,158, - 196,224,166,132,88,169,155,217,244,233,94,163,70,5,148,81,29,223,122,224, - 91,79,9,77,162,170,162,147,200,0,97,70,170,14,37,102,125,71,173,184, - 221,120,21,130,25,249,12,140,173,148,8,228,84,25,153,26,114,73,56,169, - 248,65,202,9,176,24,151,203,173,120,8,240,49,216,162,140,248,72,232,168, - 21,107,117,53,67,104,238,49,152,116,169,28,203,234,242,122,191,174,2,212, - 147,115,96,70,225,5,7,232,83,9,185,99,240,70,90,205,137,25,56,102, - 152,39,28,145,62,254,62,43,183,103,26,183,213,172,54,53,216,52,201,110, - 64,125,198,1,38,147,139,0,128,229,82,61,160,156,62,59,66,44,134,136, - 130,194,182,7,168,200,237,54,4,110,129,224,91,122,203,183,0,242,22,64, - 238,150,215,73,142,0,121,14,127,227,151,126,30,127,243,111,255,18,46,253, - 224,135,1,0,113,114,7,126,79,157,215,176,63,66,16,4,136,130,73,197, - 177,132,139,190,77,77,154,137,221,128,242,156,172,167,39,59,161,73,135,14, - 143,62,142,151,239,157,16,66,148,79,187,156,115,68,81,132,229,102,10,112, - 1,130,5,206,61,61,193,127,240,243,23,112,225,252,43,248,221,127,114,1, - 255,226,95,254,43,0,230,38,181,128,43,237,143,2,15,113,77,80,97,106, - 112,234,166,7,235,29,40,69,168,39,59,223,133,196,21,36,185,73,131,170, - 27,91,40,159,196,244,9,142,213,55,126,31,189,231,181,32,131,50,12,197, - 12,219,252,16,224,33,70,128,138,190,116,111,156,75,92,254,220,7,231,30, - 232,12,192,66,215,198,82,96,158,13,49,235,229,74,153,136,12,163,169,0, - 64,1,57,197,58,47,9,101,67,25,176,81,99,123,214,57,199,200,215,195, - 77,181,58,145,76,212,62,19,78,84,74,52,76,33,39,4,102,11,134,223, - 216,1,48,158,170,20,91,225,207,128,45,48,30,244,80,108,41,24,116,191, - 156,222,230,106,189,4,112,10,59,1,72,202,212,200,160,221,25,236,250,237, - 82,119,185,101,224,122,216,232,152,37,0,87,6,202,163,83,20,128,0,159, - 205,176,19,0,141,134,200,87,213,26,229,44,100,88,235,194,223,154,83,20, - 56,133,113,160,197,42,197,117,132,189,187,72,51,247,243,213,102,200,252,50, - 128,51,8,67,1,193,119,88,111,148,146,50,78,61,16,178,212,45,1,183, - 33,113,11,4,239,1,184,10,144,235,118,191,189,96,140,44,93,65,202,17, - 62,242,193,159,194,79,255,204,47,224,229,23,5,206,158,59,141,66,44,145, - 103,169,21,149,228,60,67,154,166,24,12,135,150,220,12,38,99,218,80,77, - 246,122,29,145,117,232,240,184,226,123,66,112,148,82,75,114,140,49,100,89, - 129,97,116,10,156,75,108,183,107,80,178,69,64,18,188,248,114,132,223,184, - 244,147,248,241,215,46,226,179,255,203,23,241,39,95,255,10,66,127,136,36, - 191,1,115,19,140,211,2,110,212,6,164,54,69,105,210,77,126,222,71,129, - 28,59,66,173,179,188,170,227,169,89,96,103,103,207,224,213,159,252,73,0, - 59,108,86,91,140,159,125,10,66,0,148,46,33,249,8,28,2,131,13,176, - 197,33,160,249,108,17,15,48,222,50,16,71,148,178,66,134,49,180,144,132, - 8,112,190,6,248,24,99,0,60,83,132,51,70,15,69,127,15,100,38,176, - 211,117,56,211,0,221,135,192,14,20,216,173,65,250,167,176,206,15,49,70, - 41,6,1,153,0,201,14,161,137,56,147,0,152,229,0,100,37,202,43,252, - 25,214,136,109,125,15,80,66,150,62,5,86,189,2,35,120,224,179,153,90, - 79,167,7,141,171,191,92,3,132,173,33,214,83,16,198,192,135,5,118,130, - 96,60,163,118,2,128,199,57,228,150,129,140,21,225,141,7,61,240,249,4, - 114,235,97,75,37,8,56,248,134,216,218,27,199,12,34,3,104,168,210,152, - 28,51,12,217,4,0,135,0,208,27,76,240,236,179,33,126,230,167,57,254, - 232,75,95,196,237,131,91,250,179,153,170,127,217,165,198,119,200,235,113,68, - 65,1,130,57,132,142,200,9,46,3,88,162,23,46,145,165,138,216,210,68, - 130,202,211,8,123,207,227,167,126,226,199,241,169,215,212,108,183,160,127,19, - 113,114,71,125,63,122,1,60,58,193,80,190,7,80,128,71,62,60,207,3, - 211,254,146,174,223,100,53,114,211,67,92,187,104,173,67,135,255,191,189,123, - 141,149,228,188,235,60,254,171,170,190,95,207,241,153,241,196,246,120,124,209, - 196,114,192,6,2,187,201,70,114,192,54,146,131,37,131,216,141,32,171,176, - 32,191,64,209,174,18,242,2,33,16,47,178,144,213,190,96,165,213,238,2, - 90,180,132,21,27,32,68,65,220,13,34,32,12,194,4,9,4,108,34,180, - 33,76,34,135,113,28,19,123,102,60,62,167,239,213,93,183,125,81,245,84, - 87,95,206,156,114,152,73,207,60,254,126,36,171,47,231,57,117,170,167,219, - 245,235,255,83,207,243,212,45,233,134,4,92,145,235,186,170,213,42,138,162, - 72,158,231,168,221,78,191,209,187,213,80,238,216,85,88,127,73,239,120,71, - 85,247,156,123,84,207,252,230,189,250,131,63,252,51,249,87,199,90,118,79, - 174,159,235,88,126,227,54,223,204,107,45,87,245,70,91,26,93,85,171,189, - 208,108,254,37,73,190,110,223,239,234,169,39,190,94,143,63,241,173,122,235, - 215,5,114,98,87,193,116,95,71,254,80,189,118,162,163,209,190,246,186,135, - 26,75,234,184,105,55,222,40,112,212,222,151,116,224,41,138,66,121,147,161, - 162,40,91,76,88,77,37,146,34,167,47,87,87,53,140,26,234,102,93,155, - 81,212,211,52,62,148,246,22,106,73,74,94,113,21,159,233,201,241,70,249, - 4,232,177,210,80,149,210,208,115,90,183,105,120,244,154,250,146,154,157,68, - 177,210,138,215,28,78,163,40,146,156,190,102,245,145,26,251,174,210,192,202, - 28,189,73,145,91,60,95,228,100,115,23,46,111,188,7,197,225,252,82,218, - 47,29,199,125,121,222,40,237,58,109,69,10,231,7,242,116,69,211,216,81, - 55,155,196,61,141,102,106,69,61,85,148,86,150,47,189,201,209,65,179,173, - 68,131,116,52,106,161,178,118,27,251,154,77,42,106,245,251,74,178,171,232, - 197,149,52,84,189,106,69,15,255,139,51,250,209,187,42,122,248,153,68,191, - 247,204,139,250,251,11,23,178,10,59,125,127,251,253,244,119,162,120,44,207, - 237,40,10,151,93,211,141,218,21,249,11,243,133,101,166,185,159,200,209,105, - 45,252,134,154,245,138,222,242,192,187,244,216,183,127,155,190,233,225,187,117, - 234,174,43,10,22,23,181,188,232,109,26,110,142,51,211,88,123,106,119,58, - 234,85,164,160,82,205,207,187,53,26,205,124,165,18,167,230,173,12,44,33, - 220,128,91,215,13,15,56,195,84,114,69,174,215,81,127,95,233,127,221,35, - 157,251,145,251,244,93,239,190,87,127,247,127,255,81,63,247,115,191,172,209, - 180,162,217,220,44,235,181,167,101,216,165,7,78,115,78,69,146,38,163,161, - 198,211,145,42,206,23,117,230,64,250,190,239,255,62,189,243,91,239,215,55, - 127,67,67,139,217,23,180,24,167,85,159,219,216,87,236,75,201,124,160,94, - 251,48,95,43,113,44,201,29,184,106,41,86,36,169,25,73,206,112,168,168, - 215,75,47,251,18,247,213,173,46,7,177,72,74,135,220,87,211,112,115,134, - 142,212,185,45,63,141,56,62,147,205,151,203,194,173,58,108,104,222,73,247, - 255,208,155,232,238,168,41,63,91,179,50,232,239,201,189,71,114,148,86,189, - 209,36,189,240,105,165,229,105,243,242,170,171,156,161,35,119,127,32,197,145, - 228,36,106,87,238,80,92,115,53,113,147,244,69,21,246,161,168,58,108,232, - 242,129,171,83,138,211,213,72,206,180,229,93,188,178,210,166,59,105,42,82, - 90,197,141,11,7,250,100,234,41,10,54,167,80,132,157,142,230,145,171,142, - 39,29,69,158,14,58,174,66,53,21,5,161,60,93,213,185,115,7,250,183, - 63,240,118,61,246,248,227,250,204,255,187,168,63,127,246,57,125,242,143,63, - 169,225,40,209,96,48,208,193,233,142,42,106,42,92,40,175,174,146,228,146, - 102,139,73,118,238,46,91,201,69,13,53,234,119,231,21,219,249,7,34,85, - 107,117,5,139,151,36,213,243,207,69,171,217,85,39,57,210,220,219,147,91, - 77,187,177,61,183,35,167,145,168,157,45,197,85,12,183,245,81,147,132,27, - 112,107,187,225,1,87,92,214,168,90,77,15,215,81,56,85,167,121,155,22, - 222,66,195,193,203,146,164,118,183,43,121,142,206,191,249,53,221,117,247,57, - 61,249,93,255,89,127,241,169,127,212,63,189,20,234,133,231,95,212,197,47, - 93,212,220,127,85,87,95,59,157,111,175,222,220,151,23,38,90,76,99,213, - 90,85,125,227,67,111,214,143,127,232,14,61,242,109,231,213,239,188,162,40, - 8,229,134,135,106,57,145,90,221,134,142,70,202,34,36,173,72,166,81,95, - 142,14,181,55,91,72,106,40,218,27,104,42,87,221,126,95,209,32,109,227, - 12,29,37,217,129,110,212,138,212,114,247,53,113,61,181,91,167,37,189,170, - 81,208,87,123,156,157,95,155,74,78,235,138,134,167,223,42,87,3,197,113, - 63,175,216,174,56,77,157,30,207,20,244,164,131,168,45,41,86,60,218,147, - 123,247,43,210,80,138,39,167,229,237,93,146,148,173,19,57,145,42,45,45, - 87,91,217,147,6,217,60,182,110,214,139,54,141,29,181,101,6,179,56,154, - 198,82,75,146,222,28,203,109,118,21,207,198,133,149,70,246,52,139,98,181, - 171,67,121,71,103,20,244,124,29,68,109,185,157,68,241,108,44,247,210,56, - 187,78,222,246,57,121,205,168,173,67,205,148,36,125,189,170,169,204,24,209, - 40,187,103,206,189,117,178,193,37,7,89,69,86,245,42,106,214,28,5,149, - 88,113,52,150,231,74,15,62,124,155,206,156,189,93,223,241,228,247,232,251, - 255,254,81,201,187,79,7,167,95,208,108,114,57,61,103,87,107,170,26,166, - 231,87,171,181,138,246,187,21,221,121,231,67,186,239,158,239,212,189,231,207, - 233,174,179,21,221,127,255,57,221,121,87,69,99,127,36,37,67,205,253,104, - 229,60,155,153,6,48,210,29,170,73,170,215,247,179,169,0,145,170,181,83, - 242,220,105,214,45,185,122,165,128,109,83,2,138,159,101,66,15,184,117,56, - 73,146,108,31,23,125,3,164,231,229,210,63,87,156,35,231,251,190,194,48, - 80,24,70,242,179,139,141,250,190,175,69,24,43,10,3,249,179,244,185,249, - 124,115,201,174,170,219,82,173,229,174,172,0,111,214,17,148,36,55,204,6, - 110,4,87,180,24,167,83,3,156,120,160,249,104,172,186,151,86,44,189,44, - 132,156,122,218,214,117,151,163,57,77,64,25,230,60,154,227,165,243,174,154, - 81,59,61,175,182,102,52,79,87,211,111,122,174,102,81,172,70,120,144,111, - 191,62,246,21,244,124,117,220,236,239,245,7,170,14,142,52,232,38,234,86, - 61,57,237,72,193,169,171,170,94,186,95,206,87,134,26,252,213,68,237,119, - 156,77,71,59,102,204,101,105,204,62,228,251,123,105,172,151,70,158,246,206, - 183,179,127,243,172,187,48,11,184,102,118,240,174,143,125,205,59,141,252,181, - 154,215,233,120,35,181,59,161,156,161,163,73,71,106,140,122,154,121,147,60, - 40,205,54,139,231,223,228,238,107,228,236,229,231,222,142,34,79,205,246,237, - 106,85,230,170,52,246,243,21,249,93,111,57,202,51,12,211,247,199,247,103, - 138,130,80,65,180,57,53,161,90,168,178,214,219,206,252,244,179,224,207,102, - 43,159,139,36,105,230,23,45,149,210,5,0,204,249,182,98,151,164,180,125, - 50,183,164,235,86,189,185,46,87,252,6,118,233,107,214,69,105,184,174,167, - 32,8,228,121,142,162,40,61,96,55,26,13,249,217,41,151,70,163,169,201, - 212,81,213,11,37,133,154,133,218,184,186,242,124,62,87,146,52,213,213,203, - 10,170,117,85,42,133,213,57,188,158,162,88,170,180,167,10,253,72,113,101, - 127,173,138,243,149,184,125,213,187,146,27,167,7,213,113,44,181,43,71,74, - 180,39,55,57,82,28,239,169,62,54,231,128,26,10,122,190,170,195,244,118, - 44,169,119,229,203,121,23,228,52,107,101,130,100,18,244,210,138,48,59,168, - 15,39,142,36,79,145,43,117,178,199,167,149,118,17,106,79,154,121,19,117, - 134,142,142,188,83,218,27,189,170,56,187,90,204,236,213,174,170,146,178,229, - 25,85,73,14,21,100,93,179,147,113,69,73,212,205,67,214,4,108,75,177, - 198,103,122,58,171,161,198,90,13,55,41,29,206,63,141,164,208,31,170,151, - 117,151,198,241,158,92,247,104,165,218,140,7,125,77,229,170,53,138,53,239, - 56,74,198,171,225,102,182,181,174,235,197,74,36,237,121,145,146,138,43,39, - 155,30,16,39,233,63,134,57,220,155,139,135,154,144,243,170,105,144,249,217, - 135,160,234,45,23,60,110,53,165,56,203,245,40,110,201,171,78,229,85,211, - 159,207,252,249,198,103,35,173,64,151,87,228,46,142,148,172,122,149,99,195, - 205,160,107,18,176,199,215,180,130,91,23,4,129,162,40,81,20,165,93,151, - 230,0,23,134,129,198,227,241,202,115,230,27,251,250,18,78,102,245,247,98, - 245,102,14,98,146,20,103,231,240,76,37,231,134,175,232,112,212,148,27,191, - 144,183,113,179,101,75,98,255,80,251,167,22,138,94,219,188,32,167,225,212, - 15,11,225,151,118,61,74,82,183,178,28,229,56,10,143,212,173,236,105,178, - 165,183,175,157,29,229,27,193,203,121,21,231,57,203,185,108,238,126,86,73, - 245,14,21,30,222,35,125,193,211,36,124,89,157,179,103,52,201,10,32,51, - 34,114,93,62,136,196,29,172,132,219,112,226,228,251,227,214,210,157,106,134, - 174,146,70,162,241,120,160,94,118,61,61,83,205,153,202,210,4,103,241,252, - 157,9,203,105,212,207,171,183,216,221,83,226,246,53,138,92,117,188,190,188, - 78,154,210,166,122,51,43,131,108,99,222,95,83,185,23,69,113,75,237,86, - 146,119,35,174,87,248,210,246,207,69,241,74,4,235,159,11,19,108,146,110, - 88,229,102,80,193,1,187,181,243,128,51,76,208,21,67,110,219,1,77,90, - 30,212,140,109,7,49,195,84,9,241,124,156,135,220,225,200,209,65,243,229, - 188,205,209,200,215,169,206,114,244,225,225,81,225,96,155,205,135,115,22,171, - 93,149,110,45,86,51,116,55,66,44,202,70,16,186,89,81,105,134,207,207, - 38,21,213,189,43,121,119,168,180,26,114,134,231,12,149,244,18,77,227,195, - 244,124,223,184,146,78,74,63,211,145,223,29,174,92,115,109,157,169,60,205, - 96,150,225,196,81,167,147,182,243,195,100,57,156,191,150,238,87,207,29,40, - 105,36,114,124,103,37,184,77,215,229,178,186,91,13,212,225,196,145,211,184, - 39,251,135,72,187,39,91,94,95,137,246,243,112,115,188,174,42,45,87,205, - 138,187,17,112,105,197,190,124,159,211,219,205,121,121,197,247,177,82,169,30, - 251,153,48,159,7,175,82,85,20,6,43,115,219,138,93,146,197,193,36,146, - 86,194,237,70,172,51,73,192,1,187,245,53,239,162,92,103,46,188,89,171, - 121,90,44,164,236,216,35,223,215,202,65,49,138,91,242,220,233,214,109,44, - 15,92,203,202,205,252,110,126,96,84,39,31,62,209,223,151,226,112,153,235, - 137,6,10,11,75,47,69,21,95,94,248,165,244,129,155,78,250,78,106,171, - 129,18,44,164,168,208,51,106,130,99,62,59,173,186,119,69,179,217,114,48, - 76,56,237,170,221,77,228,198,161,198,218,87,236,31,170,231,14,228,87,239, - 144,19,31,170,120,205,243,142,43,185,137,35,201,81,60,232,101,61,157,99, - 121,253,125,133,135,251,43,213,217,36,232,41,240,61,245,218,137,134,19,71, - 189,118,162,43,78,83,29,167,47,63,76,84,105,72,147,176,16,78,238,190, - 220,252,101,30,106,24,247,165,105,186,223,109,39,145,95,117,148,52,178,213, - 73,102,203,57,109,78,253,80,177,153,192,61,221,147,92,201,201,174,84,16, - 187,123,106,229,213,219,242,79,153,112,139,147,166,26,77,71,82,168,106,212, - 148,179,54,113,122,253,125,90,183,94,249,85,42,158,26,141,166,124,127,150, - 191,239,69,213,122,59,239,194,92,15,54,115,223,116,73,222,200,112,3,176, - 123,59,173,224,164,213,129,39,81,20,111,237,178,148,86,191,233,175,119,103, - 21,207,171,164,183,171,19,118,231,113,144,111,35,142,198,114,189,142,22,147, - 180,146,50,85,93,122,255,149,149,237,14,6,151,116,208,155,235,234,176,158, - 119,99,110,51,155,84,242,37,170,242,215,229,238,105,50,118,212,234,245,52, - 29,14,213,234,245,228,196,131,149,237,244,59,151,20,78,167,114,147,35,181, - 91,11,205,252,52,192,205,185,176,150,98,141,227,125,245,174,124,89,195,211, - 233,160,21,179,246,99,224,103,87,218,118,247,228,214,98,197,139,101,181,224, - 214,226,124,116,163,220,172,122,236,118,52,31,141,213,108,135,138,221,52,172, - 214,95,83,191,115,73,131,97,154,218,237,202,145,38,225,158,58,225,64,227, - 202,106,184,207,102,167,243,237,76,18,229,213,91,92,217,83,181,145,238,71, - 181,219,223,168,222,234,110,53,159,103,102,222,99,163,248,94,151,97,170,185, - 244,119,151,159,135,109,159,133,244,249,101,213,150,222,46,167,57,220,168,128, - 163,130,3,118,107,231,1,87,20,199,177,162,40,202,7,159,152,131,96,178, - 136,242,144,146,116,226,55,125,115,32,45,74,10,23,66,157,199,129,22,243, - 101,176,133,126,164,94,219,215,120,176,60,80,22,195,110,154,120,43,35,48, - 183,73,220,190,156,120,160,196,221,236,58,76,175,127,119,184,241,251,110,124, - 164,206,226,133,252,177,233,178,52,154,141,244,178,46,225,229,56,239,118,148, - 164,216,217,147,227,111,191,234,120,30,70,133,10,235,90,251,91,116,173,16, - 47,50,219,52,175,213,12,56,41,118,79,118,123,105,21,101,2,174,24,110, - 235,138,97,151,44,162,141,247,174,248,179,226,231,64,218,252,44,172,87,124, - 235,193,150,222,95,78,5,184,145,3,74,8,56,96,183,110,170,128,147,150, - 33,39,105,165,154,147,182,31,224,214,109,235,182,146,164,106,101,170,197,180, - 176,10,138,151,157,199,25,143,212,242,86,47,125,82,12,58,41,157,98,208, - 202,166,29,76,147,244,128,56,31,175,94,87,205,4,152,57,216,59,58,84, - 173,211,206,219,213,59,233,178,98,139,241,68,167,58,151,245,234,248,246,252, - 188,95,112,249,31,116,112,247,158,174,126,249,72,78,253,80,237,214,66,147, - 105,77,237,214,66,225,229,229,73,190,89,247,77,27,193,54,140,151,231,252, - 138,203,101,25,235,97,116,156,83,157,203,186,58,172,235,160,55,95,57,7, - 185,191,215,204,43,216,98,88,150,9,55,73,106,116,186,43,93,147,197,243, - 94,146,242,47,51,69,81,20,108,4,161,121,110,91,117,191,174,238,86,53, - 143,131,45,35,36,111,204,96,146,227,16,112,192,110,221,116,1,87,180,30, - 118,233,237,178,170,147,180,114,224,44,90,174,35,184,80,28,215,54,14,164, - 225,108,245,0,89,236,198,148,148,119,97,26,179,69,162,36,90,189,230,88, - 224,111,159,20,45,73,213,134,171,192,143,243,46,187,117,129,31,203,13,211, - 138,105,191,59,211,209,200,215,116,56,84,187,147,104,50,222,94,157,173,236, - 191,115,112,205,159,71,173,190,246,188,101,213,26,87,182,87,114,102,255,182, - 189,22,179,127,163,209,88,237,253,179,249,227,226,246,130,74,83,181,138,155, - 15,242,145,164,154,19,169,213,63,149,183,93,31,212,225,121,238,198,229,103, - 214,223,159,98,8,110,107,183,222,197,185,174,86,171,229,237,119,181,50,9, - 1,7,236,214,77,29,112,134,25,109,89,60,8,110,251,150,47,173,126,75, - 47,50,7,84,115,192,51,219,90,15,58,99,178,88,14,104,9,195,40,159, - 110,96,204,22,171,255,108,205,154,147,135,96,171,217,91,105,211,172,57,249, - 99,115,95,90,61,255,103,12,14,183,119,129,142,70,227,141,231,230,222,157, - 170,71,95,201,195,231,184,16,147,180,17,180,102,142,90,59,155,26,96,230, - 11,142,3,79,173,102,47,223,183,113,224,229,225,103,66,91,146,156,70,91, - 21,205,20,170,185,50,185,222,173,119,228,58,51,213,234,105,101,87,236,46, - 94,15,184,106,181,186,178,210,141,17,69,113,254,254,173,7,225,178,205,50, - 232,174,245,57,72,239,239,102,110,27,1,7,236,214,45,17,112,69,197,169, - 5,210,50,176,164,229,96,129,32,8,182,14,28,48,207,167,19,205,221,149, - 208,75,111,183,159,243,147,142,31,206,158,142,230,107,230,183,82,54,37,161, - 222,81,25,209,162,112,37,241,108,86,183,9,70,179,186,71,226,79,20,84, - 154,10,23,158,28,215,151,87,169,42,92,100,131,40,106,171,251,99,170,169, - 226,202,32,197,137,211,43,109,157,72,137,179,12,69,39,57,202,247,187,24, - 232,139,196,83,20,108,174,52,210,172,57,90,36,94,30,108,198,250,92,51, - 105,115,112,199,235,25,216,81,124,223,242,215,180,246,184,200,4,154,89,90, - 107,87,75,108,17,112,192,110,221,114,1,103,152,131,158,169,0,94,239,1, - 44,142,227,236,178,62,81,190,108,152,81,230,188,223,250,224,6,19,124,197, - 73,201,197,121,92,233,207,150,7,245,193,204,85,55,11,196,217,104,89,181, - 249,97,148,79,135,48,161,98,194,106,17,30,223,37,90,12,182,106,237,182, - 229,54,178,201,210,147,169,163,118,43,201,3,213,171,21,39,70,111,254,219, - 109,155,151,54,153,58,234,182,167,154,206,180,17,106,102,59,235,243,221,164, - 205,1,30,215,123,212,226,205,186,70,36,1,7,236,214,45,27,112,215,131, - 185,102,93,122,41,31,119,37,232,138,33,55,79,210,80,72,178,170,38,78, - 218,114,157,201,198,125,35,12,131,99,87,238,48,204,64,8,115,107,126,175, - 24,44,174,51,211,104,146,206,255,43,86,80,94,181,146,63,46,86,101,53, - 39,210,44,234,166,237,227,150,26,133,224,50,129,182,45,204,142,219,215,245, - 170,53,90,84,228,213,194,252,118,249,251,171,67,242,205,20,141,226,165,103, - 182,85,218,182,35,224,128,221,122,67,7,156,84,188,250,120,146,7,92,58, - 233,124,219,185,161,205,225,236,201,34,210,162,154,142,206,172,5,233,138,26, - 179,168,166,166,183,200,239,123,141,244,192,94,119,210,80,152,39,21,117,170, - 195,149,81,157,210,242,188,223,122,245,228,58,51,133,254,246,43,112,75,82, - 165,225,41,244,35,85,26,158,226,164,41,215,153,41,78,210,21,93,78,170, - 36,141,109,243,6,215,153,192,187,86,120,175,135,155,180,122,94,212,156,123, - 123,35,32,224,128,221,34,224,226,205,110,63,83,209,165,247,151,147,207,205, - 48,245,70,67,218,54,74,189,90,153,42,8,91,27,207,23,127,47,8,210, - 251,166,237,250,252,188,117,235,85,84,177,11,180,248,184,232,164,234,177,56, - 149,98,219,188,179,100,45,220,3,111,166,106,212,204,247,111,61,12,215,167, - 102,28,23,108,111,180,133,140,9,56,96,183,222,240,1,103,152,160,75,207, - 203,197,74,146,217,218,207,211,169,6,230,154,118,210,246,144,51,138,75,142, - 21,31,75,105,200,109,19,69,65,222,29,42,165,21,225,44,170,109,116,135, - 110,235,22,53,63,111,122,11,205,227,64,110,53,204,67,233,184,185,129,175, - 215,113,147,176,79,26,205,106,66,237,184,193,63,182,34,224,128,221,34,224, - 142,177,28,196,178,94,225,45,151,21,43,218,54,183,107,221,182,54,174,187, - 88,9,188,98,247,232,113,115,189,214,231,0,174,7,143,169,24,143,11,158, - 226,249,176,226,253,162,50,83,50,204,246,142,99,6,1,189,145,170,182,34, - 2,14,216,45,2,238,4,219,3,174,48,151,45,27,137,185,180,237,128,95, - 12,139,120,101,58,131,233,10,61,233,252,95,250,187,155,129,119,173,48,43, - 170,86,3,57,78,99,75,48,123,249,100,250,237,127,51,201,218,109,15,193, - 245,231,139,175,173,248,248,141,136,128,3,118,139,128,187,78,138,211,21,142, - 155,186,176,222,69,102,45,17,218,0,0,9,73,73,68,65,84,87,124,124, - 220,156,174,109,174,21,58,215,178,237,111,159,116,187,109,34,118,186,15,203, - 160,44,182,199,18,1,7,236,22,1,119,139,136,227,40,31,168,97,194,197, - 156,223,218,22,46,215,51,112,182,117,51,190,145,187,30,203,34,224,128,221, - 218,249,245,224,80,158,233,206,44,51,26,241,122,86,83,219,254,22,225,6, - 224,102,71,5,7,220,32,84,112,192,110,241,127,32,0,192,74,4,28,0, - 192,74,175,111,24,94,217,141,58,14,221,158,0,128,157,122,189,131,76,186, - 146,254,181,164,167,148,134,227,31,73,250,223,215,123,167,0,0,248,231,42, - 91,193,185,146,30,149,244,39,146,254,70,210,191,44,252,236,183,37,253,155, - 149,141,82,193,1,0,118,172,108,192,61,45,233,255,100,247,107,146,158,151, - 116,46,123,60,146,212,91,217,40,1,7,0,216,177,50,131,76,30,212,50, - 220,254,66,82,32,233,237,146,158,147,244,5,73,239,188,49,187,6,0,192, - 87,175,204,57,184,95,42,220,255,221,236,246,21,165,93,150,0,0,220,148, - 78,234,162,60,37,233,69,73,205,236,241,253,146,46,158,184,81,186,40,1, - 0,59,118,92,5,247,81,73,45,73,125,45,195,77,146,254,167,164,177,210, - 229,241,63,40,233,210,141,220,57,0,0,190,90,219,206,193,213,37,153,133, - 6,59,133,231,125,73,83,165,85,223,66,210,230,21,55,1,0,184,73,156, - 212,69,249,27,146,222,157,221,127,69,210,89,73,199,95,60,204,108,148,46, - 74,0,192,142,157,52,200,228,187,11,247,191,44,41,210,39,146,7,148,232, - 223,233,239,62,249,33,125,227,187,126,77,159,119,223,171,7,117,94,151,47, - 126,94,183,223,39,93,144,167,15,179,2,24,0,96,183,174,149,68,167,180, - 236,170,148,164,223,146,36,93,208,243,250,188,126,82,223,244,228,71,244,151, - 191,254,30,73,82,146,252,149,110,191,239,211,82,252,67,55,108,79,1,0, - 120,29,174,85,193,189,109,237,241,51,43,143,46,232,63,72,122,159,30,212, - 139,10,131,71,244,124,237,2,107,55,3,0,110,22,215,74,164,183,175,61, - 254,220,70,139,59,30,144,164,32,13,55,0,0,110,30,215,10,184,135,10, - 247,127,103,107,139,241,107,146,63,185,247,122,238,16,0,0,215,67,49,224, - 238,84,58,170,210,140,172,124,75,225,103,102,53,19,71,231,179,169,3,15, - 234,139,122,248,219,127,66,159,125,86,186,103,117,45,74,0,0,118,205,4, - 220,71,37,253,147,164,88,233,4,111,105,25,112,23,180,92,162,43,209,95, - 255,218,64,71,191,30,105,166,183,202,209,159,104,225,75,205,228,5,189,69, - 63,246,53,219,107,0,0,78,96,170,181,226,188,181,79,75,250,89,165,11, - 44,191,40,233,188,210,5,150,83,31,75,206,234,121,125,101,101,43,15,232, - 81,125,65,127,150,111,244,195,238,137,115,229,0,0,184,145,76,192,253,39, - 73,31,90,251,217,127,147,244,31,245,85,172,88,194,68,111,0,192,174,21, - 87,50,121,155,210,46,203,185,164,207,252,179,54,74,192,1,0,118,204,249, - 220,231,62,87,42,140,46,95,190,92,106,131,159,253,108,185,118,191,248,139, - 231,78,110,244,58,124,250,211,255,170,84,187,159,250,169,255,81,170,221,243, - 207,63,85,170,221,249,243,191,95,170,93,167,83,230,202,68,210,251,223,255, - 254,82,237,28,167,236,181,106,203,121,223,251,202,125,39,121,239,123,159,43, - 213,238,133,23,94,40,213,238,161,143,127,188,84,187,178,190,229,222,123,203, - 53,252,76,201,239,112,63,248,131,165,154,125,228,99,31,43,213,238,55,255, - 123,243,228,70,175,195,189,223,114,111,169,118,63,255,182,114,175,247,35,127, - 93,238,245,126,236,87,203,189,222,247,28,149,91,251,225,3,31,248,158,82, - 237,62,248,193,47,150,106,247,51,63,125,190,84,187,255,250,206,63,45,213, - 238,145,105,185,153,80,31,127,228,137,82,237,190,249,145,105,169,118,167,90, - 47,151,106,247,212,83,239,42,213,238,119,116,182,84,187,31,121,250,182,82, - 237,62,114,223,187,79,110,36,233,7,190,238,153,147,27,73,250,196,29,63, - 93,170,221,179,207,62,91,170,29,51,179,1,0,86,34,224,0,0,86,34, - 224,0,0,86,34,224,0,0,86,34,224,0,0,86,34,224,0,0,86,34, - 224,0,0,86,34,224,0,0,86,34,224,0,0,86,114,88,86,11,0,96, - 35,231,79,63,252,225,82,1,55,252,137,95,40,181,193,239,214,255,42,213, - 238,163,31,125,181,84,187,167,159,126,186,84,187,225,176,92,78,255,237,223, - 14,74,181,123,236,177,126,169,118,207,61,87,110,233,170,178,75,152,61,244, - 208,237,215,117,123,31,248,192,247,150,106,151,36,63,89,170,221,133,11,173, - 147,27,73,122,241,197,114,75,147,61,241,196,15,151,106,247,216,99,143,150, - 106,119,183,115,119,169,118,23,131,139,165,218,29,30,30,150,106,119,233,210, - 165,82,237,158,124,248,201,82,237,84,238,237,149,202,253,89,253,242,171,191, - 82,170,221,127,41,185,148,221,239,255,251,223,40,213,238,83,253,79,149,106, - 87,246,255,163,79,124,226,179,165,218,61,254,248,67,39,55,146,244,158,247, - 60,86,170,29,110,77,116,81,2,0,172,68,192,1,0,172,68,192,1,0, - 172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0, - 172,68,192,1,0,172,68,192,1,0,172,196,82,93,0,0,43,81,193,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1, - 0,172,68,192,1,0,172,244,255,1,133,174,174,214,192,161,207,28,0,0, - 0,0,73,69,78,68,174,66,96,130, + 189,123,124,84,213,185,255,255,217,123,246,220,114,129,132,107,162,160,6,66, + 129,168,181,160,213,18,81,46,199,182,191,131,223,114,218,122,244,180,71,79, + 235,183,250,109,173,8,45,212,27,182,21,104,79,197,11,162,85,209,214,115, + 60,109,45,28,123,244,28,107,91,165,71,169,8,74,131,214,2,106,107,208, + 18,8,16,36,33,33,23,146,185,236,153,125,89,191,63,102,214,228,153,149, + 189,103,38,36,153,76,96,189,95,175,121,101,102,95,214,45,51,235,179,159, + 103,61,107,45,37,28,14,43,30,77,211,20,69,81,0,40,0,152,101,89, + 204,50,77,179,180,180,148,101,59,15,0,103,92,80,49,187,125,127,71,67, + 44,20,239,198,32,177,112,229,188,221,91,215,110,159,77,62,47,218,186,118, + 251,230,193,74,191,144,41,246,251,75,46,157,49,99,222,180,202,202,26,205, + 227,9,52,119,118,54,255,121,255,254,186,3,199,142,213,139,215,170,0,222, + 169,127,143,125,162,230,227,202,201,228,101,11,159,223,168,174,158,22,1,110, + 141,120,60,23,42,94,173,12,138,162,218,166,21,102,134,241,238,4,224,161, + 203,26,26,118,229,146,238,29,247,222,113,214,137,182,19,58,0,140,30,63, + 58,112,223,157,247,29,118,186,78,81,20,118,50,229,150,72,36,146,108,40, + 177,88,172,188,181,51,114,86,103,135,62,138,49,91,101,12,182,162,176,238, + 9,99,180,131,101,101,163,66,170,234,41,105,237,140,156,227,116,126,244,232, + 81,221,69,69,69,236,138,239,45,88,125,193,53,231,127,109,219,253,111,220, + 187,107,227,158,199,7,82,160,133,43,231,221,55,119,201,156,171,119,108,216, + 89,181,117,237,118,133,28,63,48,119,201,156,248,142,13,59,31,223,186,118, + 251,35,3,175,122,58,179,166,207,93,189,231,195,29,171,157,206,41,138,58, + 158,49,187,45,211,177,178,210,113,227,187,122,142,167,93,227,116,140,243,181, + 207,221,177,250,63,126,119,95,90,126,197,129,64,201,109,139,23,223,249,181, + 43,174,184,69,83,213,209,145,120,28,134,105,194,180,44,152,182,141,63,55, + 52,236,124,248,165,151,110,123,255,240,225,63,242,123,84,0,63,123,245,231, + 236,240,25,7,48,253,200,185,248,210,167,255,169,95,66,199,5,110,71,245, + 212,34,67,245,220,107,41,202,116,205,182,223,208,152,253,212,220,134,253,205, + 201,115,147,77,69,253,170,169,170,151,122,24,59,232,181,173,101,115,27,246, + 27,110,105,174,122,120,213,89,254,82,255,255,51,98,198,14,0,240,250,189, + 115,99,61,177,127,91,243,237,53,125,68,78,10,156,68,34,25,42,148,250, + 125,109,23,253,228,57,243,159,91,218,173,153,10,108,31,99,74,188,196,223, + 94,127,237,255,103,61,93,123,113,77,67,83,115,168,250,177,95,153,95,105, + 105,183,106,232,249,127,254,172,249,244,156,139,107,234,139,139,138,140,191,187, + 107,254,234,203,190,117,233,170,120,40,134,214,15,143,191,255,234,61,219,86, + 52,238,56,248,74,127,11,179,112,229,188,15,230,46,153,51,29,0,162,39, + 116,236,218,184,103,207,214,181,219,103,47,92,57,111,209,220,37,115,94,138, + 38,12,2,236,218,184,231,254,173,107,183,223,65,239,101,237,203,25,122,226, + 64,220,202,156,137,105,227,68,107,4,223,89,255,214,154,167,126,187,111,53, + 63,252,226,131,13,236,255,124,167,186,143,56,76,155,124,222,205,94,45,48, + 161,190,241,207,171,51,29,91,246,79,171,87,31,60,122,176,245,183,111,252, + 252,241,76,199,220,242,59,115,204,152,73,155,191,247,189,45,19,203,202,102, + 180,247,244,32,164,235,48,76,19,54,75,244,255,170,146,184,84,55,12,60, + 182,121,243,109,47,252,233,79,235,128,164,192,253,225,103,172,241,252,6,196, + 67,49,104,31,249,113,133,255,179,152,127,201,229,57,9,157,141,132,184,197, + 61,158,127,103,80,124,126,203,252,50,21,175,29,213,83,43,109,40,53,151, + 55,52,188,186,163,122,234,56,67,245,220,195,20,101,148,207,50,191,49,183, + 97,255,9,49,189,149,63,90,57,113,244,164,210,101,154,79,251,178,222,19, + 95,14,0,129,82,223,67,102,220,124,230,196,145,158,71,214,126,119,237,49, + 122,189,20,56,137,68,50,84,168,71,155,219,70,55,29,237,172,233,136,140, + 255,84,103,116,252,156,246,112,217,167,62,250,168,245,220,166,166,35,163,12, + 195,240,52,55,183,142,106,58,218,121,174,120,254,200,145,143,70,25,134,161, + 2,0,99,12,182,105,195,52,108,140,157,50,230,220,47,253,236,170,151,175, + 221,244,79,175,77,60,119,194,236,108,5,224,112,113,139,158,208,17,61,161, + 163,125,127,123,35,63,183,117,237,246,205,59,54,236,252,22,255,124,225,117, + 179,110,95,184,114,222,63,167,37,208,19,135,117,60,138,72,75,24,225,230, + 144,235,235,68,75,8,127,59,216,133,150,246,104,218,237,161,104,79,159,50, + 205,56,231,188,155,127,185,230,245,13,161,72,87,234,216,212,73,31,187,65, + 60,150,104,3,224,150,107,238,217,80,123,254,103,111,160,199,150,253,211,189, + 27,230,207,94,124,179,152,54,205,175,56,16,40,217,252,189,239,109,25,91, + 90,58,163,233,248,113,28,239,238,70,56,22,67,156,91,111,150,133,184,105, + 34,110,89,80,0,92,191,96,193,3,151,215,212,220,152,202,7,72,181,127, + 108,66,20,191,31,243,27,108,123,235,245,156,133,195,80,61,247,0,176,84, + 102,127,104,120,60,79,208,115,54,148,217,113,143,103,249,27,213,213,53,115, + 27,246,31,247,218,214,18,133,177,78,67,245,60,32,166,179,124,213,242,49, + 165,103,148,222,168,249,181,27,224,81,203,83,39,60,106,185,230,215,110,40, + 61,163,244,198,229,171,150,143,201,181,92,18,137,68,50,16,84,203,52,61, + 96,134,15,182,30,128,173,7,192,140,0,99,134,207,178,76,143,109,219,138, + 101,89,142,231,77,203,80,109,155,140,224,48,6,216,12,182,101,195,50,109, + 76,254,228,153,243,191,246,194,87,118,125,110,221,162,167,75,43,74,38,101, + 42,68,210,45,57,157,91,104,78,108,93,187,253,145,93,27,247,92,75,14, + 93,147,118,65,220,66,44,98,160,39,98,32,20,53,93,95,221,97,19,61, + 17,3,49,67,28,125,74,215,131,25,231,156,119,243,239,30,124,111,195,190, + 195,251,96,152,113,0,192,152,81,99,63,243,252,125,111,111,104,104,106,64, + 220,140,165,93,111,89,128,223,235,199,87,175,188,109,195,204,115,102,127,6, + 0,108,27,240,105,62,220,176,248,174,13,243,102,137,34,215,155,223,109,139, + 23,223,89,81,86,54,163,185,179,19,33,93,135,101,219,137,246,20,75,200, + 24,160,40,240,121,189,248,199,57,115,238,47,9,4,38,144,147,105,237,159, + 43,111,84,87,79,179,20,101,166,207,178,190,1,0,150,162,76,121,237,99, + 31,163,34,103,64,65,145,165,40,215,0,192,220,134,253,134,102,219,143,90, + 138,114,198,246,234,234,47,243,139,110,94,117,115,201,248,179,198,95,231,245, + 107,223,80,85,117,98,90,249,25,131,170,170,19,189,126,237,27,227,207,26, + 127,221,205,171,110,46,201,185,128,18,137,68,114,146,168,72,4,142,156,12, + 174,247,49,155,193,50,108,88,134,133,115,23,207,252,151,155,254,112,99,195, + 252,91,47,187,199,87,226,27,229,114,203,213,185,100,184,117,237,246,255,220, + 181,113,207,253,0,112,225,117,179,254,97,225,202,121,47,164,229,155,236,84, + 25,99,174,47,48,150,236,123,69,1,81,83,239,102,156,115,222,205,47,174, + 127,111,195,161,230,86,132,245,30,120,53,63,202,75,199,126,102,251,79,14, + 252,182,171,199,240,119,246,180,165,242,74,229,157,108,146,49,163,39,250,151, + 127,249,129,223,158,63,245,146,207,168,74,226,120,48,80,130,27,22,175,116, + 16,185,68,64,201,215,174,184,226,150,227,61,61,8,199,98,125,210,117,66, + 83,85,148,151,148,148,95,50,109,218,215,157,206,51,187,111,26,255,241,135, + 159,57,38,108,170,234,183,52,219,126,35,249,209,3,0,150,162,84,111,159, + 86,189,92,184,110,238,182,105,211,86,3,192,101,13,13,245,154,109,255,217, + 86,213,5,0,240,213,85,95,13,156,49,185,226,26,111,80,187,197,163,169, + 147,221,202,237,209,212,201,222,160,118,203,25,147,43,174,249,234,170,175,6, + 178,86,84,34,145,72,6,128,154,253,146,147,135,49,6,203,176,160,106,170, + 255,83,95,191,120,229,55,95,189,177,97,246,181,159,184,217,227,243,248,249, + 53,201,224,145,42,62,230,182,107,227,158,251,119,109,220,243,225,193,157,135, + 187,156,210,220,186,118,251,29,187,54,238,217,147,252,248,15,131,85,214,146, + 162,132,246,246,138,91,27,186,195,29,40,41,26,141,243,166,94,92,243,244, + 234,29,27,59,123,44,127,71,119,27,44,219,125,156,79,85,84,148,149,142, + 247,223,122,221,195,27,207,174,156,89,99,90,6,20,40,41,145,91,112,225, + 231,211,68,238,210,25,51,230,105,170,58,186,39,26,77,141,183,185,193,159, + 40,84,85,69,192,235,197,244,51,207,92,220,159,58,174,220,117,59,251,213, + 150,255,74,203,196,82,148,169,201,128,146,8,0,43,153,145,199,80,61,159, + 126,189,186,250,239,72,230,170,233,81,47,223,54,109,218,237,0,160,50,246, + 182,173,40,227,175,190,250,106,223,199,206,156,186,216,23,244,47,83,53,181, + 58,91,25,84,77,173,246,5,253,203,62,118,230,212,197,87,95,125,181,175, + 63,229,151,72,36,146,254,160,229,35,19,219,178,161,216,64,96,116,96,252, + 103,86,253,221,134,79,94,63,123,197,107,15,188,177,242,111,175,236,123,14, + 64,21,13,40,73,222,114,71,166,244,134,130,137,99,42,81,61,233,188,155, + 127,243,64,175,184,217,204,70,192,23,196,77,95,92,115,181,223,27,64,54, + 113,3,0,69,81,160,170,42,70,23,143,25,95,57,118,242,213,225,104,55, + 20,69,73,137,220,55,190,176,106,67,105,81,25,66,145,196,140,138,105,149, + 149,53,209,120,28,134,101,57,186,37,251,164,143,132,85,232,73,88,113,53, + 253,169,163,89,108,98,119,233,159,112,215,142,59,217,165,214,229,184,114,222, + 34,5,10,252,60,90,18,64,175,85,165,32,16,247,120,150,123,109,123,27, + 77,195,86,149,79,188,81,93,125,49,128,46,6,148,214,204,171,89,232,45, + 242,47,247,120,61,231,43,57,120,3,20,64,241,120,61,231,163,200,191,188, + 102,94,77,55,254,187,63,53,144,72,36,146,220,25,82,11,142,194,24,96, + 25,22,226,161,56,188,65,239,212,249,183,94,246,236,133,215,125,98,85,190, + 242,207,134,101,89,248,241,138,223,109,56,240,209,17,156,8,181,131,217,44, + 229,46,140,155,58,122,34,39,96,219,86,14,46,196,68,31,111,218,6,122, + 34,39,82,227,119,64,194,162,141,198,194,184,106,225,55,54,52,181,54,0, + 0,52,143,39,16,35,209,146,185,194,18,233,5,251,115,15,111,255,46,116, + 226,215,177,255,198,19,207,255,36,45,83,166,40,227,132,154,24,182,162,76, + 165,199,108,40,197,182,130,139,24,80,150,40,191,54,31,192,108,48,166,230, + 82,131,132,119,152,169,0,102,39,239,149,72,36,146,33,33,47,2,199,108, + 6,51,102,34,218,25,69,215,145,46,236,223,126,96,247,11,223,250,221,130, + 93,27,223,89,147,237,222,133,43,231,237,78,190,62,88,184,114,222,125,11, + 87,206,219,61,119,201,156,89,201,211,141,25,111,238,7,205,237,71,112,195, + 143,230,45,105,110,63,4,211,50,97,39,103,136,25,102,28,39,66,29,136, + 155,49,216,204,206,42,112,140,217,48,205,56,186,67,29,208,227,17,48,48, + 216,204,134,101,89,232,232,62,134,61,31,190,129,135,159,185,109,137,146,108, + 250,163,157,157,205,150,109,231,60,16,202,115,215,227,113,180,117,119,55,103, + 188,88,128,183,191,242,161,138,175,142,254,26,190,249,197,155,20,48,196,118, + 84,79,157,12,0,10,99,71,72,70,61,154,101,61,171,217,246,79,104,26, + 94,219,218,54,111,95,195,227,72,140,215,133,227,145,248,203,70,196,168,179, + 12,203,2,99,125,70,54,251,148,61,225,182,182,140,136,81,23,143,196,95, + 238,79,249,37,18,137,164,63,12,237,24,156,141,148,176,157,56,210,141,131, + 111,30,126,127,203,15,95,187,230,247,223,221,114,97,235,222,182,109,201,203, + 126,3,0,23,94,55,107,214,194,149,243,238,115,74,103,238,146,57,101,115, + 151,204,153,62,119,201,156,219,47,188,110,214,172,164,75,179,113,235,218,237, + 83,6,171,172,177,120,20,45,237,135,31,255,238,19,215,45,105,237,56,18, + 179,109,27,138,162,160,59,212,129,159,252,207,170,231,222,63,240,118,155,101, + 153,80,213,76,77,198,96,90,6,62,106,59,136,183,222,127,181,237,173,191, + 254,225,57,159,230,135,109,219,104,235,252,8,111,254,101,75,236,55,175,255, + 108,201,158,191,237,120,124,210,196,68,209,119,237,223,95,103,90,86,106,158, + 91,46,152,150,133,206,80,8,135,90,91,235,250,83,71,187,65,193,23,139, + 174,193,134,27,158,80,46,187,100,174,2,0,30,198,246,153,138,250,213,228, + 37,158,100,53,108,175,109,253,97,94,67,195,51,12,152,200,143,105,150,253, + 186,135,177,199,0,192,86,148,217,30,198,154,94,255,237,235,111,68,187,245, + 7,227,17,227,205,76,34,71,197,45,30,49,222,140,118,235,15,190,254,219, + 215,223,112,184,84,34,145,72,6,5,21,125,195,9,115,197,245,62,198,0, + 43,110,65,63,17,69,247,71,92,216,182,94,243,210,237,255,123,94,211,219, + 71,158,163,215,110,93,187,253,243,187,54,238,225,34,215,119,126,91,18,62, + 63,14,0,218,247,183,3,192,115,78,215,157,60,137,234,52,31,63,244,248, + 29,27,190,180,184,173,243,104,204,52,13,196,226,81,52,181,54,212,223,251, + 139,91,230,239,59,252,94,155,105,154,174,41,24,166,129,35,173,7,240,198, + 187,155,219,254,243,229,135,231,135,162,221,245,126,111,16,199,58,154,176,243, + 47,175,196,126,183,227,23,139,15,181,252,237,113,0,40,10,148,2,0,14, + 28,59,86,255,231,134,134,157,0,0,69,73,184,30,51,148,144,49,134,238, + 104,20,31,117,116,224,175,77,77,79,57,94,231,146,192,79,191,246,83,101, + 241,21,159,75,83,82,205,182,127,97,170,234,165,73,43,206,2,0,15,99, + 245,30,198,158,161,215,121,152,189,103,254,190,125,171,231,54,236,55,222,168, + 174,174,49,85,245,34,213,182,255,184,125,251,118,179,245,111,173,47,235,145, + 216,189,241,168,249,150,101,218,182,99,1,24,131,101,218,118,60,106,190,165, + 71,98,247,182,254,173,245,229,237,219,183,187,55,166,68,34,145,12,16,21, + 128,197,24,226,150,109,233,182,205,116,219,178,116,198,16,71,162,179,99,110, + 231,21,40,125,38,91,49,198,18,194,214,21,197,137,143,186,241,209,59,71, + 155,182,63,180,99,137,147,176,9,60,203,223,92,120,221,172,77,11,87,206, + 91,230,118,97,251,254,118,28,220,121,248,67,113,37,19,152,54,76,203,70, + 220,176,97,100,122,89,137,235,50,17,142,118,191,114,251,99,87,47,62,212, + 242,97,183,149,28,119,51,45,163,126,245,191,223,48,191,225,200,123,109,78, + 29,184,109,219,104,62,126,8,59,222,221,220,182,229,205,255,154,223,19,57, + 81,175,121,188,104,235,58,138,29,239,108,238,254,253,206,103,22,183,159,56, + 150,90,221,133,90,108,63,126,233,165,219,116,195,0,157,87,72,115,224,162, + 199,24,67,72,215,113,176,181,21,123,14,28,216,114,180,163,35,205,197,71, + 219,95,228,107,87,252,95,71,19,241,178,134,134,93,30,198,14,26,30,207, + 42,0,30,143,205,234,189,182,117,231,220,134,253,199,249,53,10,67,135,102, + 179,39,1,96,71,245,212,209,166,170,46,245,48,118,112,94,67,195,51,0, + 240,228,147,79,26,173,245,173,47,199,194,177,245,241,72,124,79,31,145,227, + 226,22,137,239,137,133,99,235,91,235,91,95,126,242,201,39,93,151,250,146, + 72,36,146,193,64,243,168,214,137,128,122,188,254,196,137,191,49,27,182,15, + 12,241,96,137,85,239,243,150,116,27,134,97,1,102,119,64,109,127,223,229, + 124,162,71,102,128,101,218,136,117,199,16,233,136,160,189,177,163,233,47,207, + 215,223,123,224,245,198,167,108,211,142,101,41,3,182,174,221,254,159,0,46, + 184,240,186,89,183,3,192,133,215,205,250,49,128,6,190,184,114,244,132,94, + 5,164,137,219,12,49,141,19,173,17,252,237,112,55,122,34,70,198,96,68, + 211,98,56,218,22,133,105,50,225,120,186,49,17,142,246,188,242,221,39,254, + 101,206,183,190,116,223,54,69,81,147,215,24,245,171,255,237,134,249,223,254, + 210,253,169,99,169,235,245,16,118,254,229,229,182,87,222,124,118,126,88,239, + 169,7,128,72,44,132,186,247,254,183,237,197,29,191,156,31,214,187,211,22, + 74,166,249,253,245,240,225,63,62,182,121,243,109,215,47,88,240,128,79,211, + 160,105,26,212,164,53,7,36,133,203,182,209,29,141,226,96,107,43,118,237, + 223,191,127,219,251,239,127,37,149,128,208,254,74,155,138,249,215,231,182,84, + 23,0,120,109,107,89,220,163,253,18,10,252,94,203,254,73,114,202,0,0, + 64,1,26,53,203,250,175,203,26,26,246,189,81,93,93,99,168,234,82,166, + 160,200,103,217,171,105,26,79,62,249,164,177,116,233,210,23,71,87,141,246, + 40,192,237,190,34,95,202,125,204,44,198,140,72,124,143,222,19,187,255,68, + 227,137,23,165,184,73,36,146,124,160,141,31,227,219,255,249,203,205,95,180, + 28,235,25,101,89,150,170,40,170,61,106,84,105,247,89,103,142,62,104,219, + 182,62,97,140,255,224,231,47,55,159,118,58,207,108,219,4,0,51,102,161, + 167,37,132,214,15,143,119,239,121,230,157,213,251,94,221,255,120,46,194,70, + 73,90,100,31,157,51,231,172,155,15,238,60,236,227,226,150,156,58,192,206, + 153,115,86,227,193,157,135,159,235,99,185,37,89,177,254,173,53,45,237,81, + 196,13,27,217,188,174,134,201,208,120,180,103,27,61,118,172,227,72,159,235, + 76,203,168,127,248,87,183,207,47,43,25,59,159,30,123,232,87,183,165,29, + 3,128,67,205,127,107,253,235,129,183,210,132,204,233,152,91,126,47,252,233, + 79,235,58,66,161,174,171,231,204,185,191,188,164,164,60,224,245,194,163,170, + 176,1,196,226,113,116,132,195,56,218,222,142,221,7,14,108,217,246,254,251, + 95,209,13,163,133,223,107,91,54,122,90,66,232,57,16,198,229,129,249,184, + 225,250,175,245,107,242,254,220,134,253,198,142,234,169,223,48,84,207,3,49, + 143,103,229,182,105,211,254,172,50,246,182,2,180,1,128,2,196,182,77,155, + 182,58,166,170,23,121,24,59,232,179,236,213,115,27,26,250,4,248,60,250, + 232,163,177,165,75,151,254,70,157,82,238,81,20,229,155,182,105,48,0,48, + 162,248,107,44,100,60,113,162,241,196,111,30,125,244,209,126,125,47,36,18, + 137,228,100,81,218,219,219,21,61,22,211,116,93,87,44,203,82,20,69,97, + 154,166,177,96,32,96,86,84,84,176,108,231,1,96,246,63,95,176,156,1, + 163,254,242,252,251,15,153,186,57,224,45,115,196,173,113,196,173,115,78,101, + 74,2,129,9,151,76,155,246,245,233,103,158,185,184,188,164,164,134,49,22, + 60,222,221,221,124,176,181,181,238,175,77,77,79,137,110,73,21,192,211,155, + 127,201,66,209,16,110,190,234,155,253,94,149,70,116,214,110,158,57,243,27, + 166,199,115,133,165,42,227,25,148,18,0,80,192,34,30,155,53,105,150,245, + 250,162,189,123,127,154,45,205,171,151,95,29,156,126,102,245,103,99,186,121, + 4,0,252,1,109,210,135,31,53,188,252,220,67,207,245,241,157,202,197,150, + 37,18,201,80,161,253,252,231,63,135,162,40,0,141,226,99,189,115,192,178, + 157,7,128,5,103,255,221,246,120,216,104,216,163,191,59,40,251,193,109,93, + 187,125,243,250,103,215,237,94,113,205,173,179,147,159,103,175,127,118,221,162, + 21,215,220,122,202,239,7,23,210,245,214,115,231,207,127,120,76,73,201,158, + 98,191,191,70,81,148,64,177,97,52,143,142,68,234,94,89,191,190,143,37, + 8,0,243,47,152,143,179,206,156,124,178,75,174,165,177,169,188,252,247,0, + 42,1,76,1,192,87,156,137,1,104,0,144,83,212,227,115,15,61,23,189, + 98,213,165,187,15,188,210,172,3,192,148,207,84,182,254,225,161,63,246,29, + 24,148,72,36,146,33,68,89,191,126,125,185,97,218,103,89,166,61,138,37, + 12,2,27,96,221,94,77,57,168,105,90,8,64,137,97,218,231,184,156,239, + 94,177,98,5,91,245,240,221,171,71,85,142,250,90,251,254,142,123,239,185, + 235,158,1,237,7,183,254,217,117,247,33,177,54,101,213,138,107,110,85,200, + 241,3,0,226,0,30,95,113,205,173,131,190,31,220,21,11,62,187,250,15, + 175,189,188,218,233,92,48,24,28,31,141,70,219,50,29,251,246,183,150,143, + 127,248,199,15,165,93,227,116,140,115,239,15,214,175,190,243,238,21,105,249, + 45,91,186,180,100,106,69,197,157,147,199,141,187,69,1,70,91,140,129,217, + 118,42,192,164,43,28,222,217,216,218,122,219,189,235,214,165,237,7,247,234, + 206,173,108,223,241,125,248,248,25,23,160,246,194,79,157,212,126,112,215,214, + 214,6,0,220,14,96,58,128,29,0,158,219,84,87,119,60,121,174,2,192, + 23,0,204,1,112,8,192,154,77,117,117,174,17,144,87,172,186,244,44,127, + 233,168,95,198,123,98,135,1,192,87,234,63,43,214,211,253,47,127,88,243, + 71,185,31,156,68,34,201,27,202,61,107,31,184,232,120,23,251,231,184,201, + 102,2,240,1,136,123,84,179,126,108,41,158,46,41,9,54,196,226,86,117, + 91,39,251,74,220,100,53,244,252,152,82,246,116,73,73,81,253,119,86,172, + 48,86,61,116,247,234,49,85,99,86,217,150,133,120,200,120,255,120,195,241, + 21,15,252,112,93,191,247,131,91,255,236,186,15,144,232,96,57,123,86,92, + 115,235,236,245,207,174,91,4,224,37,114,252,254,21,215,220,154,54,22,247, + 218,43,27,24,76,27,112,88,104,56,13,6,152,113,11,245,7,58,215,124, + 235,182,31,172,230,135,127,177,225,191,217,87,151,252,99,31,113,184,228,147, + 115,110,46,46,46,153,176,117,219,150,213,153,142,173,251,209,143,87,71,244, + 104,235,221,63,188,243,241,76,199,220,242,251,206,183,191,61,233,226,105,211, + 182,248,189,222,25,113,211,132,101,219,137,213,77,184,165,156,180,160,109,219, + 198,193,214,214,219,190,255,163,31,165,246,131,123,117,231,86,246,222,177,247, + 96,91,22,70,105,163,49,183,230,50,204,156,54,61,231,253,224,146,226,118, + 31,18,255,223,165,84,188,174,173,173,29,7,96,234,166,186,186,183,174,173, + 173,45,67,66,4,75,1,172,220,84,87,23,234,211,94,203,46,153,56,229, + 83,103,255,160,98,230,196,79,215,191,184,247,45,0,168,249,63,51,47,105, + 217,123,108,203,129,55,15,221,253,214,35,111,201,253,224,36,18,73,94,80, + 13,211,24,173,27,102,77,220,246,126,42,110,123,231,196,44,237,83,122,204, + 60,215,48,140,81,140,49,143,97,24,163,116,195,60,87,60,111,26,230,40, + 102,219,169,80,66,198,24,152,13,120,139,188,231,158,113,65,229,203,247,252, + 251,143,94,91,113,231,242,156,199,205,28,196,45,21,196,144,116,77,126,139, + 156,187,125,253,179,235,210,231,203,153,54,88,220,134,21,179,50,190,204,152, + 137,112,196,64,44,158,62,250,100,90,125,215,152,156,115,241,156,155,191,253, + 255,86,110,48,173,222,160,191,139,102,127,242,6,241,24,144,8,107,57,231, + 140,233,27,190,119,231,234,27,232,177,170,51,102,108,184,251,174,31,244,217, + 69,128,230,183,108,233,210,146,139,167,77,219,226,211,180,25,209,120,28,92, + 224,152,109,247,238,132,96,247,174,162,50,105,236,216,7,190,127,199,29,55, + 210,244,120,251,159,136,159,192,230,119,95,196,211,47,109,236,143,112,220,138, + 196,180,144,125,0,126,40,156,171,1,112,211,181,181,181,83,54,213,213,117, + 1,184,27,64,23,128,187,196,68,106,174,174,25,51,177,106,236,83,21,51, + 198,255,131,230,215,202,249,4,7,205,175,149,87,204,24,255,15,19,171,198, + 62,85,115,117,141,220,15,78,34,145,228,5,21,12,30,48,230,3,179,3, + 96,118,0,96,1,6,230,99,96,30,198,152,2,184,158,119,94,210,35,185, + 29,77,176,44,48,127,242,69,147,118,253,96,195,154,167,191,181,98,89,198, + 253,224,146,110,201,233,153,174,73,186,37,221,247,131,75,238,133,102,90,44, + 135,151,13,187,143,165,151,254,121,206,197,115,110,254,206,77,119,111,8,69, + 195,169,237,103,166,86,77,253,204,138,155,190,187,33,28,13,131,217,233,2, + 201,24,160,42,30,76,158,56,117,195,29,183,222,245,25,158,164,170,168,152, + 60,113,154,131,200,245,230,55,181,162,226,78,191,215,59,67,55,140,222,189, + 224,220,246,131,67,98,55,129,202,242,242,251,151,45,93,58,193,225,162,92, + 214,108,78,113,109,109,237,89,0,102,162,87,176,166,92,91,91,75,69,206, + 4,80,4,224,74,0,72,90,119,63,3,80,121,109,109,237,34,126,81,205, + 213,53,37,231,92,52,121,99,213,101,85,31,215,2,222,137,160,139,82,219, + 22,180,128,119,98,213,101,85,31,63,231,162,201,27,107,174,174,145,251,193, + 73,36,146,33,103,72,246,131,3,99,201,197,138,129,210,137,37,255,114,246, + 167,206,106,184,251,193,239,223,179,116,217,210,1,237,7,183,226,154,91,255, + 19,192,253,201,143,255,176,254,217,117,47,56,95,201,220,95,204,109,18,65, + 111,117,230,92,60,231,230,239,124,243,238,13,209,88,12,150,109,66,81,85, + 76,169,154,250,153,127,93,249,224,111,109,91,241,27,102,220,117,34,130,87, + 243,251,167,156,57,243,183,119,222,246,221,207,240,146,120,84,15,38,79,172, + 118,180,228,150,45,93,90,50,121,220,184,91,184,213,150,235,142,2,94,77, + 43,47,47,46,118,220,15,206,41,141,151,223,216,226,150,240,215,144,24,115, + 3,248,82,93,192,212,107,107,107,191,42,92,119,233,181,181,181,75,1,96, + 83,93,221,1,0,187,1,204,5,128,179,231,157,29,56,123,214,153,27,167, + 206,159,82,237,43,242,78,118,91,171,203,87,228,157,60,117,254,148,234,179, + 103,157,185,241,236,121,103,203,253,224,36,18,201,144,50,180,139,45,39,133, + 14,138,226,47,63,187,108,229,217,115,38,55,220,117,207,202,155,111,89,122, + 75,106,63,184,100,240,72,85,242,227,30,36,4,236,67,36,220,96,125,72, + 142,189,13,250,126,112,154,39,177,115,80,74,220,244,24,76,203,128,230,209, + 112,246,164,170,154,219,150,172,218,104,51,53,41,110,153,69,200,171,249,252, + 83,39,157,187,177,40,80,82,195,88,194,210,243,168,90,82,228,126,152,38, + 114,99,74,74,230,41,192,104,203,193,69,42,194,37,88,81,20,120,20,5, + 197,129,64,191,246,131,123,244,249,199,88,221,174,157,98,225,167,32,17,80, + 162,131,239,7,151,16,186,133,215,214,214,94,34,100,63,247,218,218,90,238, + 26,125,23,192,56,212,192,55,227,138,105,79,87,207,159,122,78,160,212,95, + 157,109,181,229,64,169,191,186,122,254,212,115,102,92,49,237,105,212,64,238, + 7,39,145,72,134,140,188,236,7,199,23,224,85,53,207,248,241,31,27,183, + 161,108,242,232,21,183,175,190,125,229,253,171,239,127,14,68,220,248,180,0, + 12,195,126,112,62,95,0,151,124,50,225,150,228,226,198,24,131,170,120,240, + 119,115,23,93,173,42,30,196,141,120,214,221,4,20,69,1,99,128,230,241, + 141,247,123,131,87,91,182,153,60,198,224,81,53,156,93,241,177,13,63,248, + 254,189,169,149,76,138,253,254,26,155,177,68,52,99,63,246,131,83,20,5, + 62,77,235,215,126,112,49,43,134,157,141,117,248,201,11,63,97,151,76,155, + 131,89,231,94,160,0,240,243,104,73,244,78,11,0,18,123,195,221,132,190, + 83,3,206,191,182,182,246,60,0,221,0,70,45,186,97,209,194,115,46,58, + 115,178,127,180,255,124,176,28,188,1,12,138,127,180,255,252,169,151,87,69, + 23,21,45,90,248,251,91,127,223,159,42,72,36,18,73,206,228,109,63,56, + 176,196,24,146,109,218,80,84,117,234,216,41,99,158,189,235,158,149,5,179, + 31,28,24,195,205,215,223,186,33,172,71,97,90,70,154,31,211,182,237,196, + 177,126,172,75,205,88,226,30,59,109,172,142,193,178,77,84,142,59,107,131, + 30,15,3,0,20,69,9,216,118,246,109,120,250,164,159,120,245,107,63,56, + 222,254,39,194,221,248,223,93,191,199,150,55,254,32,102,58,86,248,108,160, + 247,1,132,83,12,224,124,0,163,0,192,214,227,223,85,84,101,54,51,153, + 154,75,29,24,99,96,38,83,21,85,153,109,235,241,239,246,167,252,18,137, + 68,210,31,242,179,31,28,18,123,194,217,134,5,67,55,17,233,8,239,110, + 121,255,216,130,123,238,90,155,117,63,184,245,207,174,219,157,124,125,176,254, + 217,117,247,173,127,118,221,110,0,131,190,31,156,30,143,226,209,167,238,93, + 18,139,71,193,152,157,114,67,114,161,98,169,189,224,178,237,7,199,122,197, + 141,89,189,199,192,16,55,227,232,14,119,160,241,163,189,75,184,195,81,55, + 140,102,134,220,7,66,121,238,182,109,35,110,24,253,218,15,142,183,255,104, + 207,40,124,241,210,171,240,233,203,174,80,0,196,146,243,220,0,224,40,185, + 188,7,192,11,0,126,41,36,243,198,166,186,186,103,144,112,99,134,34,93, + 145,187,15,238,60,124,52,218,173,91,204,202,28,224,194,24,192,44,134,104, + 183,110,29,220,121,248,104,164,43,114,119,127,202,47,145,72,36,253,97,104, + 247,131,131,32,108,157,209,247,143,239,59,126,205,170,165,107,46,124,232,190, + 135,182,37,47,251,77,242,239,172,100,52,165,19,101,72,68,89,222,14,34, + 110,43,174,185,117,208,246,131,179,109,27,127,222,253,246,227,79,62,253,227, + 37,145,104,36,198,165,196,180,12,188,250,198,230,231,90,59,90,218,18,162, + 151,89,138,24,24,244,120,20,93,61,199,219,186,122,142,63,151,216,63,142, + 33,30,215,209,213,221,22,107,105,111,90,114,207,253,63,124,60,224,47,2, + 0,156,136,68,234,24,99,233,43,197,100,129,49,6,195,178,16,141,199,251, + 181,31,92,177,82,130,191,191,240,239,113,211,151,110,82,166,79,157,198,51, + 108,64,98,18,55,208,27,100,194,0,108,219,84,87,183,25,192,56,114,108, + 7,128,77,201,207,231,1,56,242,250,3,117,111,132,58,66,75,15,237,60, + 252,145,222,173,91,204,114,221,45,7,204,178,161,119,235,214,161,157,135,63, + 10,117,132,150,190,254,64,157,220,15,78,34,145,12,25,67,179,31,28,146, + 238,48,195,78,23,182,91,86,159,183,238,71,15,166,109,155,179,226,154,91, + 63,143,94,145,235,59,191,205,157,33,217,15,238,207,187,255,244,248,131,143, + 255,96,113,84,143,196,18,171,248,91,56,218,210,84,191,238,145,31,206,111, + 111,111,109,203,228,134,99,204,134,30,139,160,163,187,181,237,163,182,3,243, + 77,203,172,87,21,15,98,113,29,157,61,109,177,99,29,71,22,175,91,127, + 255,227,64,34,232,4,0,30,88,191,190,190,43,28,206,121,63,56,32,49, + 135,78,143,199,209,19,141,58,239,7,231,112,108,66,217,120,220,242,207,75, + 148,89,231,127,66,84,210,255,6,48,39,105,197,241,32,147,122,0,47,10, + 215,237,217,84,87,247,232,166,186,58,243,218,218,218,41,0,102,3,248,19, + 0,115,251,150,29,47,135,58,162,75,14,189,121,248,168,222,163,219,124,245, + 21,90,30,102,219,208,123,116,251,208,155,135,143,134,58,162,75,182,111,217, + 241,50,18,83,16,36,18,137,100,72,80,145,232,212,226,12,208,1,232,96, + 76,135,176,31,156,203,249,190,155,170,37,39,37,115,97,211,187,245,166,142, + 198,142,37,78,194,38,240,44,121,191,105,253,179,235,92,247,131,75,242,161, + 184,146,9,31,227,227,19,158,221,94,118,14,243,196,26,15,54,190,178,110, + 195,15,22,159,232,233,232,230,1,50,237,29,237,245,247,61,186,122,126,123, + 103,171,227,210,91,96,9,203,173,163,187,181,173,173,243,232,252,31,63,242, + 227,122,69,81,16,55,116,116,116,183,118,183,118,30,93,252,208,143,215,167, + 86,119,161,42,211,216,218,122,155,56,14,231,180,31,28,0,152,182,141,72, + 60,142,19,145,200,150,7,31,126,56,109,225,101,218,254,34,14,194,6,0, + 216,84,87,87,143,196,242,91,223,66,194,130,219,11,224,254,228,164,110,78, + 7,128,103,0,224,218,218,218,18,0,255,23,192,161,164,133,7,236,130,177, + 125,203,246,151,163,221,250,242,131,111,54,181,232,221,186,205,200,60,67,102, + 51,232,221,186,125,240,205,166,150,104,183,190,124,251,150,237,47,99,23,228, + 150,57,18,137,100,72,81,1,118,66,85,204,122,152,61,111,50,179,123,39, + 204,158,55,61,170,253,190,162,40,221,140,49,11,96,221,170,98,190,239,114, + 158,236,208,153,8,96,48,185,176,29,232,88,210,242,254,177,105,247,175,121, + 32,235,218,148,194,252,54,0,248,113,114,121,46,14,13,116,248,112,197,53, + 183,246,217,15,206,140,91,8,71,77,132,163,6,66,186,251,43,172,155,208, + 227,86,98,25,44,130,104,153,53,30,108,124,229,71,15,126,111,78,199,137, + 246,54,174,12,237,237,237,245,247,61,178,122,126,71,215,241,54,81,45,76, + 219,66,103,79,91,91,91,231,209,249,143,60,250,227,122,0,176,108,11,29, + 61,109,109,199,58,142,204,121,152,136,155,152,223,189,235,214,253,241,96,107, + 235,109,166,149,40,87,106,31,56,244,10,27,99,12,134,105,34,172,235,56, + 17,14,239,111,239,233,249,10,210,19,76,181,191,207,246,97,202,248,126,121, + 111,215,0,40,65,98,145,229,23,146,83,6,56,71,146,199,14,39,45,183, + 59,144,8,110,249,183,180,20,118,193,120,245,153,109,47,70,186,244,229,135, + 222,106,106,137,133,226,140,87,32,22,138,179,67,111,53,181,68,186,244,229, + 175,62,179,237,69,41,110,18,137,36,31,104,154,166,236,31,83,130,95,24, + 166,53,10,12,42,20,216,30,85,237,246,106,234,65,0,186,230,81,14,142, + 41,193,211,78,231,25,99,38,0,216,54,131,25,51,17,11,199,187,187,63, + 234,94,29,58,30,126,124,195,99,27,250,181,239,215,138,107,110,189,99,253, + 179,235,62,2,112,51,0,31,223,57,32,185,22,37,67,34,160,228,185,62, + 150,91,146,250,3,157,107,244,184,13,150,109,45,74,36,172,184,136,110,109, + 163,199,98,134,222,231,186,246,142,246,250,135,54,172,157,127,246,217,85,243, + 83,199,218,251,30,3,128,168,30,110,237,137,116,166,196,205,237,152,91,126, + 223,255,209,143,214,125,255,142,59,186,206,40,47,191,223,171,105,229,170,162, + 36,166,23,32,49,62,104,36,221,146,39,34,145,45,237,61,61,95,121,244, + 177,199,82,251,193,49,6,152,49,19,136,43,168,157,126,41,230,205,201,125, + 179,83,32,177,58,201,181,181,181,43,145,88,205,228,91,215,214,214,238,70, + 98,158,91,71,242,146,120,114,146,247,108,36,172,189,135,54,213,213,125,212, + 39,161,6,196,94,251,213,107,191,249,236,117,87,120,14,213,29,94,203,128, + 22,0,56,84,119,184,219,8,25,43,95,251,213,107,191,65,3,228,126,112, + 18,137,36,47,40,15,60,240,128,194,24,211,108,219,86,24,99,10,20,133, + 41,138,194,84,69,49,111,191,253,118,150,237,60,0,220,117,207,202,229,0, + 70,117,55,247,60,244,216,163,143,13,120,203,28,113,107,28,186,117,206,169, + 206,178,165,75,39,148,23,23,127,96,36,137,154,0,0,32,0,73,68,65, + 84,189,56,16,88,236,211,180,26,6,4,227,134,209,28,141,199,235,122,162, + 209,167,68,183,164,10,224,245,183,118,176,88,92,231,81,145,253,66,116,102, + 94,93,91,251,101,0,11,0,140,103,137,69,149,1,198,194,138,162,52,1, + 248,227,115,137,8,202,140,76,154,52,41,56,245,203,231,124,182,187,169,235, + 8,0,140,154,92,54,105,255,51,7,95,62,114,228,136,220,15,78,34,145, + 228,13,229,207,127,254,115,214,14,134,187,211,148,100,164,95,34,50,48,241, + 87,211,52,40,138,2,85,85,83,127,69,119,31,99,12,182,109,195,178,44, + 40,138,2,203,178,96,147,133,132,109,97,93,71,165,31,17,133,78,240,85, + 65,60,30,79,218,113,158,23,253,107,89,86,90,121,196,178,240,242,168,170, + 10,143,199,147,122,207,95,180,238,140,177,84,219,136,249,14,164,94,133,220, + 254,23,92,112,1,148,164,181,9,36,172,77,219,182,83,237,65,211,163,229, + 204,21,94,214,181,107,215,98,203,150,45,40,42,42,130,101,89,169,255,109, + 166,247,188,238,166,153,136,101,241,120,60,96,140,65,81,20,120,189,222,180, + 123,60,30,15,74,74,74,112,233,165,151,98,201,146,37,169,58,13,117,189, + 20,69,193,95,255,242,110,206,247,73,134,30,69,81,240,137,89,23,102,188, + 230,157,61,187,112,225,236,139,20,32,177,127,152,219,117,106,114,184,157,201, + 7,185,97,33,231,149,76,104,199,238,241,120,160,105,90,234,47,237,252,41, + 169,160,15,210,193,242,14,135,139,11,239,56,78,102,178,179,8,207,135,151, + 149,66,243,49,77,51,245,138,199,227,176,44,11,166,105,166,196,142,215,215, + 173,222,94,175,55,173,13,60,30,79,234,26,158,63,109,11,222,41,242,206, + 245,100,40,212,246,143,197,98,248,224,131,15,78,170,78,253,101,193,130,5, + 248,252,231,63,63,228,249,48,198,16,143,199,241,225,135,31,166,61,76,80, + 196,135,39,32,253,59,195,255,95,252,225,129,182,51,255,204,24,195,225,195, + 135,113,214,228,51,135,178,58,146,126,146,139,184,189,253,246,219,0,18,226, + 150,233,119,163,40,10,83,115,159,230,42,25,100,114,18,56,222,129,122,60, + 30,120,189,94,120,189,222,180,142,94,124,122,165,86,1,239,84,121,199,47, + 254,229,86,5,127,79,191,44,78,98,225,6,239,48,196,178,136,194,22,143, + 199,97,24,6,98,177,24,98,177,24,12,195,128,97,24,169,206,30,112,22, + 55,218,6,154,166,65,211,52,248,124,190,62,109,65,173,40,90,118,254,247, + 100,172,185,66,110,127,110,9,157,106,120,189,222,84,187,58,9,23,71,85, + 85,248,124,190,212,67,12,111,51,142,199,227,129,109,219,169,191,212,114,179, + 109,27,111,190,249,38,206,154,124,85,222,235,39,201,141,119,246,236,74,251, + 60,126,66,69,31,113,219,190,253,67,215,251,31,124,240,183,248,206,119,22, + 51,169,112,195,131,171,192,241,14,154,187,193,120,135,206,95,78,29,0,253, + 241,242,52,196,244,196,206,146,139,1,239,52,68,107,130,166,225,214,209,114, + 43,69,124,170,22,133,45,30,143,67,215,117,68,163,81,68,163,209,52,97, + 227,247,243,58,185,9,7,23,1,254,178,44,11,94,175,23,182,109,167,132, + 135,215,139,214,59,91,29,70,106,251,59,185,100,135,138,92,22,164,30,12, + 168,123,146,214,153,255,47,232,67,15,255,76,221,151,188,156,252,33,67,211, + 52,216,182,157,186,135,123,10,20,69,65,107,107,107,94,234,116,186,194,127, + 247,182,205,16,139,197,16,55,226,176,109,59,241,62,22,67,101,229,25,24, + 61,122,148,227,247,88,20,55,0,104,107,109,233,115,76,82,184,244,17,56, + 106,97,112,55,152,207,231,131,223,239,135,223,239,79,117,174,252,199,79,93, + 93,116,60,139,90,14,64,239,143,157,138,131,83,190,28,154,62,239,156,221, + 92,124,188,243,16,143,113,55,36,183,214,194,225,48,34,145,8,162,209,104, + 154,24,136,150,145,216,137,241,242,136,101,164,98,71,199,180,124,62,95,234, + 61,181,230,114,97,164,181,191,211,152,229,80,225,228,22,28,10,68,119,50, + 255,95,208,241,78,234,30,6,210,133,94,211,180,52,87,48,127,120,18,191, + 167,78,223,91,73,238,100,19,47,106,49,243,241,87,241,125,32,224,71,48, + 24,68,44,54,240,224,222,121,243,122,183,180,204,100,213,73,242,71,154,192, + 137,157,171,166,105,240,251,253,8,4,2,8,4,2,240,249,124,41,203,134, + 119,172,92,68,12,195,72,27,199,162,227,13,78,240,188,168,197,32,222,67, + 59,98,55,145,160,46,54,14,21,55,93,215,17,14,135,17,10,133,16,137, + 68,160,235,122,42,15,175,215,155,18,14,42,30,220,29,200,59,84,90,6, + 177,172,244,201,221,52,77,168,170,138,120,60,158,74,135,214,69,180,6,157, + 198,204,70,90,251,15,52,32,168,80,161,226,198,31,124,184,184,57,89,207, + 226,61,64,66,144,249,255,132,90,214,52,16,168,184,184,56,159,213,26,49, + 36,60,44,137,224,160,72,36,2,195,52,82,239,77,195,72,123,176,115,19, + 47,254,27,246,37,127,67,252,55,21,240,7,146,231,84,84,87,87,67,85, + 85,52,53,53,13,184,204,235,215,255,46,245,254,194,11,63,54,224,244,36, + 3,167,143,5,71,59,87,222,177,6,131,65,248,253,254,212,143,154,119,172, + 241,120,60,53,142,197,131,53,178,117,174,220,98,226,239,69,241,160,150,16, + 144,254,100,236,54,126,37,62,21,243,14,63,26,141,34,28,14,163,167,167, + 7,161,80,8,70,242,135,193,235,86,84,84,132,162,162,162,148,192,113,139, + 73,116,77,82,247,29,45,39,175,47,117,115,210,8,78,209,122,19,173,2, + 39,209,24,104,251,139,193,12,20,158,223,96,183,127,190,200,167,139,146,255, + 165,150,26,29,111,115,11,36,18,143,241,239,84,60,30,79,179,246,157,44, + 186,211,1,238,81,177,172,196,247,211,77,188,12,35,113,204,235,245,186,190, + 207,38,94,129,64,32,171,213,63,152,237,47,69,173,240,72,19,56,234,126, + 225,29,43,237,92,185,149,18,139,197,160,235,58,116,93,71,60,30,79,9, + 138,24,126,46,166,203,93,53,188,163,162,66,66,127,252,52,216,131,190,119, + 234,68,232,23,152,139,14,183,220,66,161,16,186,187,187,17,10,133,96,154, + 137,125,217,252,126,63,138,139,139,81,82,82,130,226,226,226,52,203,141,215, + 157,231,71,17,163,223,196,40,68,234,142,2,210,45,75,81,36,196,39,253, + 129,182,63,175,179,83,219,211,182,227,29,42,117,193,13,180,253,197,188,134, + 146,124,186,40,1,164,185,169,185,245,12,160,143,192,137,98,39,90,189,220, + 10,228,157,51,31,179,163,94,130,83,1,42,94,150,101,65,143,233,105,158, + 20,43,249,29,181,44,43,245,61,119,19,47,159,207,7,205,235,69,81,81, + 98,81,114,175,70,222,123,53,4,131,253,218,41,42,47,72,23,101,225,145, + 38,112,252,135,236,247,39,252,210,220,186,225,63,72,211,52,83,1,26,186, + 174,167,172,7,218,185,58,69,222,137,174,46,158,151,211,19,44,191,143,11, + 18,239,244,233,88,152,27,182,109,167,44,183,158,158,30,156,56,113,2,225, + 112,24,134,97,64,85,85,4,131,65,148,150,150,98,212,168,81,8,6,131, + 41,183,159,211,88,138,216,113,139,214,24,125,10,23,163,228,104,93,121,155, + 228,82,254,254,182,63,181,154,197,7,138,76,1,33,116,60,78,28,91,28, + 72,251,159,106,240,241,79,254,240,3,100,22,55,241,59,79,31,38,120,135, + 206,255,87,252,218,146,146,146,60,215,234,228,200,101,188,139,138,23,247,52, + 136,239,185,69,236,75,122,77,128,145,33,94,185,32,93,148,133,135,38,142, + 251,120,189,222,180,49,31,254,20,31,143,199,83,157,107,36,18,73,137,27, + 181,218,56,78,79,245,60,186,144,118,170,52,111,39,81,228,29,49,13,147, + 231,157,133,8,183,98,120,48,73,79,79,15,194,225,48,76,211,132,199,227, + 65,81,81,17,70,141,26,133,81,163,70,165,89,110,78,157,183,91,48,5, + 181,98,104,244,33,29,115,225,66,231,134,40,40,39,211,254,209,104,52,37, + 110,110,194,230,230,198,21,197,151,150,233,100,218,63,159,130,151,47,23,37, + 245,54,240,135,31,209,26,23,39,212,103,26,139,227,237,75,163,41,105,84, + 229,112,51,24,193,26,220,37,79,197,75,85,85,4,252,129,228,3,130,146, + 138,0,62,85,80,1,69,81,20,198,88,98,170,128,40,106,187,118,253,13, + 223,249,206,98,168,128,194,78,126,215,22,201,0,208,128,244,206,149,6,93, + 240,31,31,239,92,195,225,48,194,225,112,74,220,104,208,5,39,147,229,64, + 207,243,14,213,201,226,227,29,137,97,24,105,115,134,120,167,35,118,198,252, + 7,200,167,1,68,34,145,148,184,41,138,130,162,162,34,140,30,61,26,163, + 71,143,70,113,113,49,130,193,96,159,142,139,35,118,250,20,39,225,166,226, + 204,59,127,177,77,232,117,78,65,27,253,105,255,72,36,146,122,176,16,173, + 8,167,250,240,246,167,121,83,87,38,21,58,234,142,204,181,253,243,41,112, + 124,69,146,161,134,91,90,116,18,191,216,190,78,223,89,10,125,104,224,127, + 121,128,10,119,103,187,89,218,131,137,91,176,70,127,197,107,48,198,187,78, + 69,184,200,117,119,119,99,247,238,222,253,130,169,184,13,99,241,78,123,82, + 2,39,134,163,243,39,84,26,172,17,14,135,161,235,122,170,227,3,210,59, + 69,55,168,123,207,41,80,193,201,10,161,157,50,29,23,226,243,136,184,69, + 200,203,192,173,55,46,110,220,45,25,8,4,80,86,86,134,81,163,70,161, + 164,164,36,77,220,120,122,78,101,160,208,78,158,159,119,10,30,17,173,59, + 209,74,162,245,19,207,229,210,254,84,220,104,90,252,126,183,206,151,90,27, + 162,245,40,138,29,79,55,215,246,207,167,192,117,118,118,230,45,47,222,166, + 212,66,119,170,171,104,165,209,239,132,19,220,26,230,237,125,178,22,205,64, + 131,53,168,168,73,241,26,24,42,160,140,26,53,42,37,114,82,220,10,7, + 141,255,144,249,60,48,186,34,135,40,26,124,114,180,83,199,205,17,143,139, + 19,158,221,58,11,39,11,142,15,66,211,39,119,69,73,12,216,83,11,144, + 143,189,241,178,198,98,49,48,198,224,247,251,81,90,90,138,146,146,146,148, + 184,209,57,100,180,188,98,57,232,56,21,61,231,116,156,127,22,93,174,84, + 36,104,158,212,133,153,107,251,71,34,145,148,91,146,90,20,252,229,100,97, + 208,178,208,48,117,42,106,180,78,244,92,174,237,159,79,129,107,110,110,206, + 75,62,188,94,244,33,74,116,37,138,94,4,222,254,162,7,64,180,216,197, + 223,135,147,112,228,43,88,67,138,215,224,65,69,110,254,252,25,82,220,10, + 4,141,186,199,232,128,186,40,110,177,88,172,79,164,32,224,28,58,238,100, + 1,101,26,107,112,18,59,42,114,252,199,205,207,209,142,157,90,111,60,248, + 194,178,44,248,124,62,20,21,21,165,4,142,79,3,160,233,59,89,97,110, + 46,87,177,222,162,187,209,169,78,226,75,156,206,192,243,204,214,254,220,114, + 227,237,72,173,11,250,89,204,135,214,147,90,13,212,50,19,235,66,255,175, + 185,180,127,62,5,46,26,237,179,25,193,144,64,93,138,156,76,245,20,31, + 42,220,190,15,244,90,154,151,19,166,153,30,161,203,173,118,43,249,254,84, + 14,214,24,169,112,145,147,226,86,56,104,188,163,226,174,9,26,13,200,195, + 209,233,28,43,183,31,175,147,88,0,137,142,156,175,236,224,100,189,209,31, + 60,23,44,218,137,242,142,155,177,222,85,225,105,231,74,231,189,241,177,65, + 69,73,12,104,151,148,148,160,168,168,40,245,148,42,118,200,98,121,69,87, + 163,219,211,55,69,12,218,224,101,18,3,19,156,172,87,26,104,144,169,253, + 185,213,204,239,229,117,225,109,67,215,192,116,26,135,227,237,74,203,41,6, + 205,208,9,235,244,88,182,246,207,167,192,229,115,154,64,166,7,178,76,99, + 144,78,223,41,241,60,189,199,105,45,79,85,85,81,92,220,59,63,211,178, + 172,84,80,148,105,154,169,7,33,62,183,14,64,202,107,193,191,55,153,2, + 157,36,131,131,211,14,1,10,0,25,80,82,56,104,188,115,165,43,111,240, + 168,61,62,215,138,71,40,102,123,50,117,66,180,38,196,123,197,49,12,218, + 177,80,145,227,63,94,46,152,84,12,232,114,92,140,49,120,147,46,25,254, + 226,79,187,98,94,153,158,164,69,235,204,201,106,205,116,157,104,237,209,57, + 84,212,13,152,173,253,121,157,156,132,159,254,205,230,166,20,199,5,169,219, + 146,142,167,210,197,129,169,11,204,173,253,221,44,144,145,140,104,173,103,187, + 86,116,61,186,61,12,57,221,91,86,86,214,231,56,141,90,21,173,101,250, + 61,225,223,105,126,92,116,71,123,60,158,148,216,41,138,146,38,124,124,185, + 58,137,228,84,70,163,203,82,81,139,136,11,6,159,200,157,237,137,80,252, + 129,115,168,69,35,226,230,182,161,199,232,15,156,139,108,60,30,79,117,178, + 116,252,141,71,22,114,247,36,31,115,227,29,133,88,86,167,178,136,110,60, + 90,7,55,17,116,251,44,70,136,242,247,52,18,49,91,251,211,182,167,109, + 33,138,155,248,162,249,81,209,165,245,160,226,38,138,189,83,154,78,237,159, + 79,242,213,33,243,246,201,228,90,23,219,203,233,251,235,86,94,250,61,225, + 46,69,167,107,120,248,190,27,92,216,120,160,10,127,80,226,239,129,222,169, + 43,244,255,165,105,26,74,75,75,83,239,221,68,144,239,188,113,42,62,196, + 72,78,15,52,0,105,81,133,188,131,165,194,198,133,131,118,254,34,110,63, + 120,234,230,226,215,137,22,134,27,188,19,167,43,182,243,241,36,94,54,46, + 112,124,78,24,95,5,36,16,8,56,138,91,166,167,107,49,64,128,191,167, + 226,46,186,46,233,95,49,45,234,14,20,87,173,160,238,82,183,246,167,139, + 57,139,225,234,153,132,206,105,252,72,20,110,177,29,232,42,39,252,47,237, + 28,221,218,63,159,86,64,62,93,148,226,132,125,55,177,19,93,212,98,84, + 174,211,67,144,24,212,51,144,114,102,19,65,32,209,110,124,60,78,85,85, + 248,253,254,84,89,233,158,134,162,8,242,54,224,145,179,252,127,77,3,143, + 164,8,74,10,25,141,206,7,3,122,87,3,225,47,49,106,80,20,37,55, + 193,227,56,117,74,78,227,96,110,231,197,142,155,119,254,124,197,126,186,89, + 41,99,44,21,106,207,39,149,58,69,191,229,90,118,122,141,216,17,137,66, + 231,244,3,167,145,139,212,34,165,233,102,106,127,58,95,74,108,139,92,68, + 78,28,79,116,115,73,138,117,21,5,46,83,251,159,138,99,61,244,225,68, + 60,38,90,197,212,242,7,208,231,97,144,158,227,227,152,217,214,12,29,108, + 44,203,66,40,20,202,120,141,155,8,114,143,8,125,112,226,81,180,212,237, + 205,191,215,114,92,80,82,72,164,230,193,1,233,107,57,210,113,55,167,49, + 39,167,113,44,10,21,134,76,227,112,34,78,174,30,42,0,188,3,161,65, + 47,188,163,160,227,89,84,56,68,145,19,173,24,113,108,78,188,86,12,208, + 112,234,248,220,218,128,66,23,96,22,93,137,64,223,246,167,214,145,83,160, + 10,119,113,58,137,156,216,214,110,66,77,221,168,188,173,232,36,114,49,90, + 82,108,255,124,146,239,49,35,106,185,81,75,60,215,251,156,126,55,78,251, + 9,22,2,185,136,32,23,62,238,145,225,209,155,92,4,129,236,227,130,138, + 162,72,17,148,228,13,141,62,129,242,14,86,20,55,122,77,54,235,75,60, + 46,138,155,232,158,204,148,30,189,134,70,243,81,183,164,56,9,89,20,56, + 94,110,154,166,155,139,81,172,167,147,149,150,139,229,70,17,159,210,121,30, + 98,84,167,216,254,110,226,38,90,110,153,92,150,180,190,110,29,7,125,18, + 167,237,69,69,56,83,251,103,123,96,25,76,242,229,162,164,98,46,62,28, + 57,89,189,252,47,253,95,58,125,47,18,203,97,245,90,110,220,197,56,82, + 176,109,59,109,170,70,79,79,79,159,107,178,141,11,114,175,69,174,34,40, + 142,11,202,224,24,73,127,208,196,78,157,118,176,78,22,154,232,146,113,130, + 223,39,174,204,239,54,254,38,190,23,5,70,236,100,232,188,32,10,23,56, + 42,110,180,60,78,174,37,177,220,180,12,212,181,71,175,201,102,181,137,150, + 33,77,87,28,27,203,214,254,162,149,231,228,130,164,34,39,78,33,0,210, + 93,165,78,101,165,110,73,154,15,125,112,112,107,255,83,117,236,133,187,19, + 121,221,105,196,168,105,154,174,1,54,78,86,27,79,75,252,78,229,203,69, + 153,79,184,104,15,36,56,134,138,32,31,27,228,231,100,112,140,164,63,104, + 244,7,70,119,131,230,136,214,143,211,123,167,107,68,203,205,201,37,39,10, + 159,152,6,127,170,163,29,47,221,169,154,175,53,73,199,142,232,158,110,52, + 109,241,73,219,173,94,162,85,39,186,65,197,250,242,107,120,58,212,234,21, + 133,144,186,91,185,120,101,106,127,122,29,109,83,90,47,39,161,163,174,74, + 177,29,105,249,157,238,165,229,162,101,117,107,255,124,146,239,40,74,42,112, + 226,67,0,183,94,69,171,87,124,168,225,237,36,90,110,252,197,87,29,57, + 157,56,25,17,28,170,224,24,201,169,141,6,32,173,83,21,173,21,55,23, + 148,56,118,69,17,45,12,218,217,138,110,38,218,33,136,1,24,162,69,225, + 246,68,70,59,26,234,246,19,133,140,118,240,162,184,136,105,59,61,109,187, + 185,54,57,78,219,131,184,185,176,104,249,50,181,191,83,228,158,155,69,76, + 143,115,161,163,29,111,166,23,77,91,76,43,83,251,231,211,69,153,175,149, + 57,104,240,4,157,255,201,59,86,209,77,77,17,255,207,84,220,168,232,241, + 87,44,22,203,75,157,70,26,185,136,32,48,240,224,152,146,146,98,68,34, + 145,124,84,73,50,12,164,252,44,185,140,39,209,47,6,119,31,208,141,61, + 57,252,51,29,103,18,93,150,162,37,37,138,27,77,11,112,222,77,219,169, + 124,185,66,45,67,55,113,163,214,10,117,85,138,79,241,252,24,71,220,198, + 70,108,147,76,121,102,34,147,107,215,9,183,142,88,76,135,166,229,84,110, + 192,189,253,243,233,6,154,58,117,106,94,242,161,81,166,64,250,3,137,101, + 89,105,251,195,57,185,24,233,67,139,104,177,209,246,115,250,158,72,250,199, + 64,131,99,18,107,215,142,156,113,80,73,255,208,128,244,185,57,110,227,2, + 252,41,72,156,24,236,102,65,208,23,93,39,145,166,71,255,138,199,69,68, + 55,33,189,63,151,85,223,121,26,78,231,68,43,143,118,230,244,47,111,31, + 55,203,138,158,23,17,221,128,78,117,227,247,187,181,191,88,118,183,206,145, + 143,75,100,178,50,104,186,78,184,149,81,108,255,124,178,96,193,130,188,228, + 99,24,70,234,105,159,215,215,48,140,180,45,100,196,32,31,14,181,214,156, + 196,77,244,8,72,129,27,122,114,9,142,113,98,252,132,10,180,181,182,164, + 29,123,251,237,183,7,181,108,146,161,69,227,79,146,78,29,47,29,139,161, + 226,38,174,196,1,244,21,44,183,57,89,217,112,18,33,241,105,152,142,111, + 209,49,39,39,1,16,93,132,98,167,66,59,32,254,153,231,233,100,197,209, + 50,209,235,105,122,226,123,94,70,218,86,252,197,3,54,156,218,95,116,57, + 210,40,51,167,118,227,229,228,99,110,212,42,19,59,91,55,241,163,121,139, + 46,84,167,246,95,187,118,173,227,253,67,193,149,87,94,153,246,63,207,21, + 241,255,39,186,136,169,11,157,182,207,142,29,59,240,222,123,239,1,232,13, + 132,224,43,228,240,221,214,249,166,180,64,186,235,145,143,189,241,48,120,190, + 167,31,95,219,149,175,18,212,213,213,133,5,243,47,31,204,102,146,12,2, + 239,236,217,37,197,236,20,64,19,59,116,167,144,118,234,82,20,133,204,109, + 252,70,124,186,165,29,38,189,199,173,83,23,159,122,233,252,48,113,229,124, + 46,180,180,243,117,178,164,156,196,199,205,85,40,138,66,54,203,133,230,45, + 10,19,255,75,199,197,104,94,78,237,47,150,139,135,167,139,150,153,40,108, + 98,121,232,103,209,58,116,42,135,211,245,153,218,127,205,154,53,142,237,49, + 20,228,51,175,124,178,122,213,247,135,187,8,18,66,46,226,246,201,79,126, + 50,79,165,145,12,4,141,49,150,22,13,71,159,110,221,172,5,167,142,156, + 222,35,6,148,184,141,175,209,123,197,167,106,209,122,160,43,123,240,180,233, + 224,49,143,158,226,214,11,237,248,105,244,155,147,200,209,247,78,226,230,118, + 15,77,207,77,248,184,248,210,245,38,69,75,202,173,253,157,16,235,69,173, + 58,42,194,78,130,151,201,69,230,102,213,113,11,223,173,253,37,3,231,194, + 139,46,30,238,34,72,36,167,36,154,56,89,154,118,152,212,45,41,138,147, + 211,152,27,144,62,61,128,255,229,110,32,122,156,167,233,118,140,151,133,187, + 122,120,88,175,211,248,7,15,19,118,26,235,160,174,63,113,108,138,230,41, + 90,67,226,57,183,251,196,207,162,245,70,67,153,185,43,149,90,151,217,218, + 223,201,90,115,122,81,113,163,129,63,110,22,159,155,187,146,10,31,157,244, + 239,214,254,18,137,68,82,168,104,188,83,227,115,202,128,190,225,233,78,174, + 74,122,206,205,146,115,114,99,58,89,126,52,109,26,169,73,197,141,239,22, + 0,32,77,48,20,165,119,195,80,58,254,36,70,176,137,150,162,155,123,46, + 147,219,206,13,241,126,81,228,156,86,86,225,101,204,212,254,188,14,84,164, + 168,104,211,250,82,232,184,167,88,78,167,177,56,250,162,101,160,226,230,214, + 254,18,137,68,82,168,104,188,35,3,210,231,58,137,86,132,83,103,159,77, + 248,68,203,39,147,219,141,222,67,221,104,134,97,164,246,69,51,77,51,109, + 98,39,29,215,210,52,45,229,234,19,231,149,137,17,143,78,174,56,254,89, + 116,65,138,245,205,212,14,226,49,143,199,147,90,244,153,135,150,211,48,113, + 106,41,1,125,219,159,254,117,114,75,58,185,39,249,181,110,2,39,90,125, + 180,173,121,123,209,48,246,108,237,47,145,72,36,133,138,198,59,52,218,25, + 210,80,120,62,70,228,102,157,113,156,130,73,156,220,146,110,98,192,161,174, + 59,30,121,22,137,68,82,75,239,104,154,6,159,207,151,230,242,227,22,28, + 221,85,128,90,69,98,132,162,155,171,81,180,132,50,237,231,229,84,15,42, + 44,188,156,124,87,102,58,111,138,139,7,141,184,115,107,127,126,61,223,136, + 84,28,195,163,145,173,226,20,6,113,185,50,49,125,209,162,163,99,115,60, + 2,48,91,251,75,36,18,73,161,162,137,29,29,224,110,201,184,185,236,156, + 58,123,49,176,195,41,141,76,22,6,223,196,148,135,86,27,134,1,85,85, + 211,182,195,17,199,225,124,62,31,226,241,120,106,28,202,201,69,201,243,117, + 114,77,138,227,85,124,34,59,189,198,173,190,252,56,183,42,249,50,67,126, + 191,63,109,115,86,46,188,124,133,139,108,237,47,30,115,154,42,64,199,221, + 232,114,91,78,2,45,10,163,56,111,139,139,47,223,112,53,91,251,75,36, + 18,73,161,162,1,189,129,14,116,105,39,106,205,80,177,18,173,13,183,241, + 56,10,21,55,183,241,56,254,153,138,91,36,18,65,79,79,15,162,209,40, + 108,219,118,20,55,32,97,189,240,137,185,180,236,116,142,31,181,38,69,1, + 113,18,19,241,28,189,215,13,81,108,253,126,63,2,129,64,106,225,88,46, + 110,116,39,132,92,218,159,150,133,186,41,105,89,220,150,40,115,178,142,157, + 198,226,168,53,201,199,220,114,109,127,137,68,34,41,68,82,43,153,136,127, + 157,58,126,32,251,2,201,252,61,117,149,137,56,141,217,81,235,70,215,117, + 68,34,17,116,119,119,167,220,99,154,166,33,16,8,32,24,12,194,239,247, + 167,118,235,230,229,224,99,67,92,32,105,154,78,1,20,98,189,156,132,75, + 20,25,90,118,122,31,29,175,164,59,138,23,21,21,165,77,97,160,209,136, + 84,224,114,105,127,254,94,156,112,47,206,91,116,114,13,139,150,41,173,155, + 56,207,141,186,133,115,105,127,137,68,34,41,84,210,214,162,164,243,200,168, + 133,224,100,165,101,122,122,231,238,61,81,52,156,220,148,84,128,184,184,133, + 195,97,116,119,119,35,20,10,33,22,139,65,81,148,84,231,26,8,4,28, + 119,11,80,20,37,205,138,163,99,121,52,250,79,156,255,37,150,135,167,73, + 133,66,116,83,82,43,144,206,249,163,34,192,87,186,224,101,226,1,27,241, + 120,220,113,187,159,92,218,159,78,5,224,110,73,113,125,80,46,128,162,248, + 137,121,137,237,195,45,183,104,52,218,175,246,151,72,36,146,66,37,181,155, + 128,83,32,134,216,201,82,97,163,22,5,135,159,115,138,198,164,233,210,14, + 155,231,195,131,26,194,225,48,122,122,122,208,221,221,13,93,215,193,24,235, + 35,26,116,138,0,207,131,119,236,220,29,72,23,178,21,45,80,49,236,94, + 180,112,232,245,78,226,38,166,197,199,220,252,126,127,170,156,193,96,48,181, + 133,7,15,152,225,203,51,137,187,97,247,167,253,105,57,185,229,42,186,95, + 85,85,237,19,24,228,100,37,210,136,201,120,60,158,122,184,232,111,251,75, + 36,18,73,33,162,1,233,46,67,49,220,156,238,173,196,59,115,250,215,13, + 55,23,165,104,189,241,128,11,62,230,115,226,196,9,244,244,244,32,28,14, + 167,86,110,47,42,42,66,113,113,49,2,129,64,202,229,231,228,30,21,203, + 70,197,139,78,80,166,101,17,93,142,162,248,81,104,158,116,138,2,15,40, + 225,110,73,238,198,227,66,203,199,20,185,184,137,251,168,245,183,253,185,133, + 44,90,164,116,158,29,47,163,216,246,84,224,168,85,57,144,246,151,72,36, + 146,66,196,113,91,98,58,174,4,244,134,182,211,113,38,167,78,151,118,210, + 226,42,28,0,210,196,134,167,105,154,102,106,204,167,167,167,7,161,80,40, + 21,212,224,245,122,81,90,90,138,146,146,18,20,21,21,165,2,54,156,132, + 147,138,4,183,46,196,93,201,197,160,12,58,159,76,60,39,186,7,105,160, + 13,128,180,21,74,184,229,198,199,222,248,238,196,60,26,145,46,178,155,203, + 78,195,185,182,63,111,103,254,153,187,44,105,32,138,83,218,180,237,13,195, + 24,148,246,151,72,36,146,66,35,77,224,104,8,186,83,39,203,207,83,235, + 197,109,215,0,183,0,13,238,158,163,157,107,56,28,70,52,26,77,141,249, + 0,128,215,235,69,73,73,73,170,131,13,6,131,105,251,112,113,215,33,119, + 3,242,244,51,89,47,252,47,191,135,206,77,19,199,230,184,187,83,44,63, + 173,55,157,231,198,223,83,113,227,110,63,62,81,58,155,184,13,164,253,233, + 142,10,110,150,179,162,244,238,94,48,88,237,47,145,72,36,133,138,38,134, + 240,139,29,48,181,22,232,10,33,116,157,69,81,224,220,158,240,169,75,146, + 110,31,146,216,116,48,225,194,227,194,81,84,84,132,146,146,18,148,148,148, + 164,133,218,59,69,68,210,177,38,167,178,115,104,217,196,105,6,60,45,209, + 154,19,239,165,107,95,242,114,241,137,207,60,138,147,187,254,120,253,116,93, + 79,155,247,70,211,228,140,212,246,151,72,36,146,66,37,101,162,80,171,65, + 12,73,167,157,44,181,192,248,125,188,115,21,119,240,230,80,151,24,93,219, + 144,255,229,157,63,141,66,44,46,46,70,113,113,113,202,42,226,226,193,203, + 37,186,64,157,2,42,156,2,99,232,49,209,234,20,131,60,104,154,188,110, + 220,45,201,195,228,105,192,5,181,140,184,107,146,70,77,186,137,219,72,111, + 127,137,68,34,41,68,210,124,112,162,69,193,143,209,142,157,177,196,230,141, + 0,82,219,167,136,227,85,98,212,158,56,230,195,255,82,183,27,159,20,205, + 163,245,2,129,64,218,124,43,177,60,52,63,183,48,127,177,76,78,174,84, + 49,18,81,156,48,45,10,8,93,30,140,142,63,210,121,100,244,229,36,110, + 98,27,143,244,246,151,72,36,146,66,196,49,200,196,201,226,225,199,121,103, + 203,39,83,211,49,29,222,217,138,203,63,113,1,16,87,207,224,139,17,243, + 113,44,222,193,242,5,138,197,13,62,105,217,196,242,58,133,240,59,185,211, + 248,186,142,244,58,42,116,64,250,110,228,116,158,155,104,29,81,139,202,48, + 140,148,229,198,69,68,20,32,177,108,110,140,180,246,151,72,36,146,66,196, + 81,224,128,244,249,107,188,163,229,150,11,189,198,48,140,84,231,47,142,51, + 137,29,35,191,151,119,156,60,188,94,124,241,78,156,118,166,78,174,183,108, + 56,9,31,133,118,246,84,12,197,124,120,58,226,156,57,186,95,26,181,142, + 248,113,55,113,203,181,236,35,189,253,37,18,137,100,56,113,21,56,138,216, + 233,243,49,25,211,52,83,171,248,243,229,167,168,235,139,46,69,197,239,165, + 129,26,220,74,160,227,89,226,252,58,234,34,204,86,70,142,219,152,28,63, + 238,180,246,35,127,207,173,56,186,230,166,24,180,193,69,132,138,25,181,162, + 156,2,85,220,220,169,185,48,18,218,95,34,145,72,10,141,156,4,14,232, + 187,124,21,127,239,228,18,19,59,88,154,6,29,215,18,195,219,221,220,143, + 253,237,92,51,89,110,212,170,18,45,54,234,170,204,148,175,232,250,163,159, + 221,34,48,249,125,39,203,72,106,127,137,68,34,41,4,20,198,24,219,189, + 123,55,26,27,27,17,143,199,81,92,92,220,103,191,47,183,224,7,55,178, + 93,67,163,249,194,225,48,124,62,31,170,170,170,48,123,246,108,52,55,55, + 163,185,185,25,47,189,244,18,76,211,76,77,156,22,151,164,26,204,242,136, + 155,123,106,154,134,43,175,188,18,149,149,149,40,41,41,65,79,79,15,186, + 186,186,82,43,123,208,208,252,161,128,78,9,224,46,200,178,178,50,148,150, + 150,98,203,150,45,67,146,167,19,205,205,205,152,49,99,70,218,218,150,162, + 88,115,161,165,238,91,209,181,10,208,69,162,25,24,75,95,40,186,161,161, + 1,151,95,126,121,222,234,85,83,83,147,183,188,36,249,65,46,62,32,113, + 66,123,247,221,119,241,193,7,31,224,188,243,206,195,196,137,19,81,84,84, + 4,160,239,142,210,156,92,230,64,101,187,134,119,142,182,109,35,26,141,162, + 165,165,5,239,191,255,126,74,80,95,120,225,5,84,85,85,97,204,152,49, + 240,251,253,121,45,79,60,30,71,123,123,59,94,120,225,5,92,117,213,85, + 80,20,5,199,143,31,199,132,9,19,80,82,82,146,154,200,205,25,202,242, + 112,55,104,40,20,66,107,107,107,234,71,124,249,229,151,163,188,188,188,143, + 144,228,242,215,173,220,52,223,80,40,132,87,95,125,21,225,112,24,157,157, + 157,0,210,59,16,58,225,92,44,47,221,89,157,90,153,0,159,211,103,194, + 178,144,118,175,174,235,0,128,179,207,62,27,193,96,48,99,219,13,132,120, + 60,142,3,7,14,160,171,171,107,200,242,144,72,36,133,131,22,10,133,16, + 12,6,81,89,89,137,162,162,34,215,0,11,167,206,148,159,23,201,118,13, + 119,229,169,170,138,146,146,18,156,113,198,25,56,112,224,0,66,161,16,222, + 121,231,29,248,253,126,140,29,59,22,129,64,160,207,253,67,89,30,143,199, + 131,96,48,136,113,227,198,161,185,185,25,59,118,236,192,231,62,247,185,212, + 146,85,92,220,50,137,83,46,238,188,92,198,19,121,153,125,62,31,74,75, + 75,209,217,217,153,154,30,208,211,211,227,56,157,193,169,126,98,91,209,243, + 98,48,10,31,159,12,135,195,0,128,142,142,142,180,197,171,249,6,176,98, + 219,91,150,149,154,194,64,151,109,3,144,10,126,233,157,4,175,64,211,122, + 163,89,109,219,70,107,107,43,0,164,54,171,117,250,127,159,76,189,40,140, + 245,78,175,224,130,42,41,92,162,209,40,128,244,255,21,239,15,134,242,33, + 72,114,106,161,25,134,129,138,138,10,4,131,65,215,8,66,254,215,41,108, + 93,180,70,178,93,67,207,243,142,40,24,12,162,162,162,2,177,88,12,150, + 101,245,177,220,242,89,30,198,24,252,126,63,198,140,25,3,195,48,208,222, + 222,142,113,227,198,165,34,16,69,113,114,178,144,156,172,39,90,158,76,215, + 56,117,214,154,166,161,164,164,4,199,143,31,7,0,180,183,183,35,22,139, + 165,141,159,241,52,196,197,154,249,53,124,140,142,11,82,175,187,215,78,89, + 84,138,162,32,22,139,165,58,21,58,193,155,78,161,16,173,65,183,182,225, + 215,208,29,205,53,77,73,75,79,81,148,148,215,32,18,137,192,52,77,199, + 160,22,167,160,29,177,28,233,109,157,112,133,242,207,116,145,107,222,81,74, + 10,15,93,215,209,216,216,136,255,249,159,221,168,171,107,198,222,189,45,232, + 234,2,202,202,128,153,51,43,80,91,91,137,171,174,154,141,170,170,42,249, + 127,148,100,69,59,118,236,24,166,79,159,222,103,213,122,142,216,137,56,29, + 59,153,107,168,91,208,182,109,4,131,65,124,240,193,7,104,110,110,198,180, + 105,211,210,220,96,3,205,43,215,107,120,121,184,200,29,62,124,56,209,72, + 100,21,15,39,156,130,75,196,99,110,86,69,174,215,208,233,1,92,120,120, + 20,164,105,154,125,22,96,166,98,71,221,137,138,162,164,185,89,77,147,193, + 239,71,42,29,159,207,151,18,56,191,223,239,184,169,41,109,59,186,168,179, + 147,200,243,58,184,141,89,242,64,23,160,119,174,33,21,101,167,241,60,167, + 60,68,65,180,109,6,85,77,47,31,23,184,178,178,178,62,229,144,12,63, + 186,174,99,243,230,221,120,236,177,157,0,202,48,123,118,45,174,188,170,28, + 101,101,1,116,117,233,104,108,236,196,214,173,141,168,171,219,138,91,110,153, + 131,47,126,177,86,138,156,36,35,90,36,18,129,215,235,69,119,119,119,218, + 178,83,162,229,52,152,240,78,59,225,178,178,82,225,238,28,143,199,131,112, + 56,220,39,194,47,31,229,225,193,29,180,99,247,120,60,136,197,98,125,162, + 13,135,178,60,180,92,60,200,131,195,221,134,92,184,248,10,43,84,72,168, + 149,228,228,58,228,199,253,254,94,11,142,187,12,185,152,114,203,203,173,174, + 92,116,196,69,169,233,121,49,95,154,63,119,121,114,107,221,105,149,25,126, + 63,181,216,196,72,82,49,221,68,218,72,89,112,52,45,0,114,12,174,0, + 209,117,29,155,54,109,197,83,155,26,81,53,115,38,22,93,57,19,229,101, + 1,4,2,128,14,160,92,7,170,102,86,96,214,172,74,60,255,252,94,252, + 235,186,157,104,110,110,193,181,215,46,148,34,39,113,69,3,210,93,54,212, + 109,70,159,204,233,121,241,152,72,46,215,208,235,196,50,240,14,79,188,118, + 168,203,67,161,101,112,235,192,243,89,30,177,12,62,159,47,245,80,224,180, + 133,141,147,235,206,109,253,72,85,237,181,198,196,116,157,44,56,49,93,17, + 39,171,203,73,136,120,153,104,217,157,150,77,115,114,81,139,159,221,4,152, + 159,163,233,202,49,184,194,34,26,141,98,239,222,70,60,245,63,245,8,84, + 214,160,178,166,18,129,178,0,16,0,244,32,0,4,129,96,20,136,2,129, + 202,50,84,204,170,64,179,30,197,83,255,83,143,153,51,43,48,115,102,213, + 112,87,65,82,160,100,156,7,151,169,243,234,239,125,131,129,44,79,250,253, + 162,168,185,165,155,45,132,154,90,70,116,124,142,174,127,233,228,130,205,148, + 174,232,62,20,173,47,158,6,21,30,183,122,56,61,64,136,245,114,18,110, + 167,177,88,64,142,193,21,26,209,104,20,155,55,239,69,103,176,10,193,0, + 208,12,160,69,215,81,134,0,18,255,41,30,112,146,124,56,41,15,162,179, + 44,8,68,171,176,121,243,94,41,112,18,87,250,45,112,131,65,166,241,172, + 76,20,90,121,134,139,76,174,82,58,54,198,113,11,128,225,215,243,247,116, + 241,101,0,105,129,37,52,109,55,193,17,207,241,207,124,60,208,205,226,19, + 221,160,153,254,207,110,227,195,185,120,11,248,53,50,24,205,120,0,0,32, + 0,73,68,65,84,124,12,110,243,230,205,168,171,171,195,158,61,123,164,232, + 229,9,93,215,49,107,214,44,212,214,214,98,209,162,69,0,128,171,174,186, + 10,117,141,85,192,204,133,64,32,128,230,206,40,118,55,2,149,101,1,4, + 130,9,145,211,1,232,81,29,157,58,208,216,28,5,2,1,116,149,3,79, + 109,222,137,189,123,159,31,214,58,73,10,23,13,64,106,50,177,216,121,12, + 149,160,56,65,59,74,49,146,110,56,86,175,167,229,161,161,241,162,112,12, + 71,121,232,114,91,64,250,70,169,244,61,189,151,142,69,137,59,174,3,72, + 89,110,52,40,163,191,99,142,52,77,122,15,207,147,186,59,169,43,156,254, + 127,233,88,89,182,96,18,90,47,250,153,34,110,34,11,36,198,224,182,110, + 221,138,77,155,54,161,188,188,92,70,228,229,17,93,215,209,210,210,130,167, + 158,122,10,186,174,99,225,194,133,168,168,168,128,222,89,133,178,178,0,202, + 203,19,227,110,137,107,147,55,5,1,61,218,107,193,5,3,64,121,121,0, + 58,128,174,178,42,84,84,68,135,171,58,146,2,71,3,122,59,178,161,8, + 232,200,213,58,114,18,215,161,8,232,24,104,121,156,206,231,3,39,203,136, + 70,76,114,156,68,36,147,5,198,223,243,48,126,122,142,70,56,58,89,109, + 78,110,74,183,255,151,56,150,199,239,227,117,160,247,59,9,149,83,123,103, + 170,23,189,70,76,79,215,117,236,221,187,23,85,85,85,40,47,47,7,32, + 35,43,243,69,87,87,23,162,209,40,202,202,202,176,119,239,94,212,214,214, + 162,188,188,28,101,85,85,168,44,15,160,178,172,28,101,229,1,148,7,18, + 66,23,8,246,10,30,0,148,7,2,64,202,166,235,4,170,170,80,94,222, + 60,76,181,145,20,58,105,2,7,228,191,227,118,98,184,172,36,55,134,83, + 216,156,224,65,19,212,133,40,118,242,110,238,64,126,141,147,149,39,90,134, + 244,255,32,230,145,201,122,18,163,30,51,141,215,137,15,49,244,179,91,189, + 178,181,13,133,150,133,151,33,16,8,160,185,185,25,149,149,149,168,168,168, + 0,128,148,208,73,134,150,242,242,114,116,118,118,66,215,117,52,55,55,34, + 16,8,160,172,172,12,229,157,81,84,150,85,161,162,50,33,110,101,193,0, + 130,101,65,4,144,248,127,233,186,14,189,44,136,104,87,52,121,12,0,202, + 161,119,54,203,135,19,137,43,105,59,122,15,69,231,237,148,102,46,86,212, + 233,82,158,147,69,124,32,201,69,132,221,198,175,196,207,162,224,56,165,41, + 30,167,19,204,157,172,93,81,20,233,88,161,83,217,179,229,155,237,152,91, + 61,129,132,181,86,91,91,139,104,52,138,96,48,40,59,200,60,18,8,4, + 16,8,4,208,217,217,137,170,170,90,148,149,149,37,254,7,232,74,90,110, + 101,40,43,15,162,188,12,8,32,49,6,7,36,44,57,61,170,35,80,1, + 160,43,8,116,70,161,151,119,161,172,177,75,174,108,34,113,37,227,134,167, + 67,133,56,231,140,111,24,234,70,62,202,3,244,6,89,48,198,82,147,130, + 135,179,60,188,141,248,124,65,78,38,183,32,29,219,226,199,168,8,57,205, + 33,235,205,171,239,189,116,108,150,142,149,137,59,21,80,107,139,78,52,231, + 150,147,56,54,40,90,106,180,30,34,78,245,162,215,187,5,205,208,182,164, + 116,117,117,161,170,170,10,245,245,245,169,14,87,118,146,249,129,47,193,21, + 12,6,81,85,85,133,174,174,46,84,84,84,160,178,177,17,229,101,92,220, + 146,22,92,32,49,85,128,59,36,131,129,0,162,186,158,252,148,12,60,9, + 118,162,162,66,70,81,74,156,209,0,247,142,69,156,231,53,88,29,59,77, + 79,12,77,31,174,242,136,46,183,92,44,162,147,153,207,214,159,242,136,101, + 115,186,46,219,24,152,147,213,230,100,141,246,254,47,122,143,137,219,6,101, + 107,19,81,188,196,224,17,55,107,76,28,159,203,116,173,219,231,76,245,18, + 209,117,61,21,88,162,235,58,58,59,59,165,139,50,79,68,163,209,84,96, + 79,121,121,57,116,93,79,124,46,107,68,103,203,30,148,87,45,76,137,91, + 160,44,33,110,1,30,100,18,0,208,213,59,32,215,184,183,14,85,101,210, + 189,44,113,103,88,166,9,136,233,59,117,212,195,89,30,32,183,237,55,242, + 81,158,76,129,33,185,184,77,197,251,196,93,201,233,53,170,218,55,90,83, + 20,56,39,55,38,144,125,186,0,95,105,197,169,110,153,38,147,103,170,143, + 83,90,185,220,195,35,38,171,170,228,147,127,190,113,106,243,89,179,102,1, + 0,182,214,237,69,243,222,74,84,46,156,131,64,0,40,11,2,193,100,76, + 73,48,0,68,117,160,11,0,244,0,246,238,222,131,242,206,189,88,88,59, + 59,117,191,68,34,50,172,2,199,243,200,53,159,66,43,79,62,112,179,74, + 220,44,187,108,199,233,146,94,34,252,56,13,50,161,75,168,113,129,228,215, + 81,193,116,138,192,20,87,83,161,86,22,159,54,144,190,240,243,201,7,243, + 100,178,116,197,104,82,57,230,86,88,240,7,14,93,215,81,87,95,135,198, + 61,81,204,89,184,16,193,178,68,48,73,0,73,235,45,57,109,96,231,206, + 173,208,155,247,160,118,118,21,102,205,154,133,202,202,202,97,43,187,164,176, + 25,182,121,112,153,158,186,135,99,30,92,166,242,12,199,60,184,92,172,146, + 147,205,63,219,88,23,199,105,85,127,62,158,230,228,126,204,228,30,21,203, + 77,221,152,131,213,166,153,238,165,245,146,107,81,22,30,124,76,174,179,179, + 19,123,119,111,198,243,245,59,81,53,123,38,102,206,154,133,153,85,85,104, + 108,108,196,222,61,123,208,184,123,47,160,119,98,102,85,21,170,170,170,16, + 12,6,229,210,107,18,87,228,60,184,126,150,199,233,124,62,112,18,26,113, + 142,26,23,40,26,72,66,69,203,205,106,19,243,224,1,45,124,141,75,209, + 50,162,233,240,249,115,244,1,73,12,250,112,90,3,147,10,28,93,103,211, + 201,93,45,90,103,78,129,52,185,212,139,143,225,202,14,177,48,169,168,168, + 192,236,217,179,81,94,94,142,198,198,70,52,110,221,138,186,77,155,160,235, + 58,2,129,0,42,43,43,81,89,89,137,170,154,196,118,57,124,138,135,252, + 127,74,220,144,243,224,114,96,56,133,205,9,30,93,9,160,143,229,157,235, + 253,78,65,26,140,177,180,133,155,249,182,60,226,53,84,236,109,219,78,185, + 49,197,105,0,220,21,201,207,113,232,253,60,79,154,190,120,13,255,44,190, + 119,170,131,219,216,32,253,142,203,85,75,10,19,30,205,90,81,81,129,170, + 170,42,68,163,81,116,117,117,165,4,142,79,41,224,251,87,202,255,163,36, + 27,114,30,220,48,151,231,100,225,174,61,218,113,59,133,200,59,185,58,169, + 123,145,138,22,119,13,115,196,133,144,105,168,191,147,69,71,243,119,218,221, + 192,201,154,20,199,3,157,172,247,254,214,75,188,78,28,31,148,99,112,133, + 15,31,87,115,218,209,91,10,155,36,87,228,60,56,140,188,121,112,116,236, + 74,220,243,141,222,207,175,21,93,124,162,112,208,107,104,189,249,110,2,78, + 229,19,5,199,13,46,192,110,215,40,138,146,250,223,139,99,115,110,245,114, + 179,224,68,171,77,180,52,57,114,12,110,100,194,197,78,186,36,37,185,210, + 175,121,112,78,100,155,11,230,22,104,192,255,14,100,30,220,96,150,103,168, + 230,193,157,204,92,57,113,124,73,20,20,209,202,113,139,138,204,100,5,57, + 93,43,206,123,19,45,184,108,86,84,182,207,34,60,141,76,211,4,78,198, + 61,236,36,124,180,94,178,131,148,72,78,15,6,60,77,96,32,214,140,40, + 116,131,145,215,96,148,7,24,188,121,112,3,45,143,219,60,56,77,211,224, + 245,122,7,108,77,210,244,121,192,7,183,218,232,142,234,78,101,226,15,39, + 110,99,97,212,5,42,214,129,31,23,131,101,248,231,193,172,23,144,190,138, + 139,116,113,73,36,167,7,114,30,156,67,30,133,52,214,230,86,30,238,78, + 205,54,214,37,186,237,232,49,158,14,144,62,38,198,221,161,124,25,43,154, + 182,104,9,114,145,165,19,200,157,4,141,71,82,50,6,240,195,153,130,93, + 68,250,91,47,49,13,26,152,35,199,224,36,146,211,131,62,46,74,167,49, + 27,241,189,120,15,189,38,83,7,68,201,230,190,114,186,182,80,202,67,239, + 25,142,242,88,150,133,112,56,220,39,40,68,204,43,19,98,148,35,79,39, + 22,139,33,30,143,3,72,8,28,143,170,164,215,137,34,196,24,235,51,77, + 128,230,225,228,50,164,99,98,116,12,212,48,140,62,65,33,39,131,216,206, + 150,101,165,132,91,142,193,73,36,167,7,174,81,148,60,136,193,169,99,78, + 77,246,85,20,128,136,15,255,75,207,219,36,189,212,49,226,158,114,27,135, + 113,42,79,166,241,168,68,249,20,40,74,223,112,113,241,60,63,222,123,172, + 111,120,122,54,23,165,211,131,192,96,149,7,96,125,218,157,150,231,157,119, + 222,201,88,182,193,194,231,243,193,235,245,186,90,90,252,255,39,78,204,119, + 10,6,113,19,61,58,126,216,210,210,146,151,122,201,49,56,137,228,244,32, + 77,224,104,216,57,157,244,237,20,196,64,5,201,233,26,126,222,227,112,143, + 74,158,216,221,66,190,169,208,208,32,1,39,81,225,215,139,229,113,14,80, + 232,123,44,225,54,75,15,153,119,43,15,125,137,249,102,42,143,251,121,231, + 50,210,58,208,242,252,227,63,254,163,99,126,146,220,233,232,232,24,238,34, + 72,36,146,60,144,114,81,242,193,125,42,112,110,43,80,244,55,114,206,233, + 24,125,162,119,10,100,224,86,29,21,148,161,46,15,31,211,18,93,100,162, + 216,210,99,67,133,104,81,14,101,94,167,27,99,198,140,25,238,34,72,36, + 146,60,144,38,112,138,162,192,235,245,166,132,133,90,101,180,99,231,150,23, + 83,20,192,97,93,66,122,222,227,112,76,73,90,74,30,143,7,241,120,220, + 113,154,0,255,204,199,128,220,44,201,116,203,139,193,182,251,174,132,66,207, + 3,106,159,99,140,245,126,54,12,163,207,250,136,180,254,217,214,78,76,79, + 187,215,58,116,59,79,173,53,122,15,208,119,44,75,34,145,72,36,185,147, + 90,170,75,211,52,4,131,193,62,203,51,113,156,130,35,220,2,41,232,123, + 183,224,16,32,177,168,178,199,227,113,180,152,60,30,15,252,126,63,52,77, + 115,156,39,53,20,229,225,66,235,100,241,241,149,245,105,88,123,62,202,227, + 100,109,74,36,18,137,36,59,42,0,180,182,182,194,239,247,35,24,12,58, + 138,27,208,215,37,151,121,92,41,221,226,115,187,71,211,52,248,253,126,248, + 124,62,28,59,118,44,117,188,171,171,11,94,175,23,126,191,223,117,18,240, + 80,148,199,227,241,164,4,190,179,179,19,0,80,92,92,140,112,56,156,58, + 151,239,242,112,129,15,135,195,142,249,74,36,18,137,196,25,117,220,184,113, + 168,175,175,31,54,23,24,183,142,246,238,221,139,113,227,198,97,244,232,209, + 56,120,240,224,176,151,231,208,161,67,24,61,122,52,24,99,104,107,107,27, + 214,242,40,138,130,182,182,182,97,201,95,34,145,72,70,42,106,113,113,49, + 154,155,155,177,113,227,70,236,219,183,47,239,5,216,183,111,31,54,110,220, + 136,230,230,102,20,23,23,35,16,8,160,189,189,29,175,188,242,10,142,28, + 57,146,247,242,28,57,114,4,175,188,242,10,218,219,219,17,8,4,224,245, + 122,17,10,133,240,222,123,239,161,189,189,61,239,229,105,111,111,199,123,239, + 189,135,80,40,132,209,163,71,231,61,127,137,68,34,25,169,40,123,247,238, + 101,251,246,237,195,95,254,242,23,28,56,112,0,157,157,157,136,197,98,67, + 62,238,163,40,10,252,126,63,202,203,203,49,101,202,20,156,127,254,249,152, + 54,109,26,0,224,133,23,94,192,129,3,7,112,244,232,81,244,244,244,192, + 48,140,188,148,199,235,245,162,180,180,20,103,156,113,6,166,76,153,130,207, + 127,254,243,24,59,118,44,58,58,58,112,236,216,49,116,118,118,66,215,245, + 140,11,49,15,38,154,166,33,16,8,160,188,188,28,19,39,78,196,152,49, + 99,48,113,226,196,188,228,45,145,72,36,35,29,133,49,198,90,90,90,208, + 214,214,134,246,246,246,212,10,25,249,16,20,77,211,80,92,92,140,177,99, + 199,98,252,248,241,168,168,168,128,174,235,232,234,234,66,91,91,27,94,123, + 237,53,68,163,81,88,150,149,151,242,120,60,30,4,131,65,44,88,176,0, + 227,199,143,71,89,89,25,60,30,15,116,93,71,36,18,65,36,18,73,173, + 180,145,143,242,240,192,150,162,162,34,20,21,21,33,16,8,192,239,247,15, + 105,190,18,137,68,114,170,160,48,64,134,232,73,36,18,201,105,136,122,138, + 79,63,202,190,100,190,68,34,145,72,36,35,16,41,112,18,137,68,34,57, + 37,145,2,39,145,72,36,146,83,18,41,112,18,137,68,34,57,37,145,2, + 39,145,72,36,146,83,146,140,59,122,75,250,146,75,204,145,12,75,149,72, + 78,15,18,187,55,158,190,249,23,58,167,134,192,209,57,105,121,8,123,205, + 52,7,78,174,250,47,145,156,30,40,32,139,166,159,134,249,143,4,78,106, + 30,156,216,133,51,225,88,94,27,91,88,129,159,37,246,167,25,210,44,249, + 23,171,207,241,211,241,139,38,182,67,190,5,126,184,243,63,13,113,107,225, + 211,233,187,47,246,1,249,254,237,15,86,254,167,250,60,184,1,79,244,230, + 205,51,44,95,110,135,45,103,18,135,243,47,114,167,171,184,57,109,9,148, + 55,145,201,99,254,195,250,61,239,7,67,89,206,84,218,46,30,140,212,182, + 79,67,144,119,33,49,220,15,184,131,153,255,169,46,112,35,55,200,196,69, + 220,242,150,61,210,183,188,57,213,127,212,125,160,251,216,145,151,66,119,108, + 61,197,242,103,140,229,52,6,59,92,184,117,124,131,153,118,166,244,83,155, + 246,14,73,9,10,131,76,109,156,143,186,15,119,254,35,141,17,63,6,55, + 156,22,4,239,80,79,87,113,227,245,166,86,67,170,77,134,242,255,144,97, + 220,97,168,243,47,212,49,143,124,136,91,218,49,167,223,29,121,95,136,109, + 52,88,12,247,56,251,112,231,63,146,24,153,2,71,172,55,96,120,255,225, + 249,30,111,4,144,185,227,206,229,154,1,150,33,151,246,30,50,145,201,115, + 254,35,181,43,25,82,87,165,32,94,35,181,141,78,134,225,22,237,225,206, + 127,164,49,114,93,148,73,242,61,246,54,108,48,6,79,142,74,238,73,244, + 238,67,91,28,36,58,54,90,32,254,57,31,63,66,154,191,248,26,172,252, + 233,152,19,117,133,23,154,43,136,90,88,92,216,83,159,7,49,237,84,250, + 25,206,115,10,173,141,36,167,39,35,79,224,4,235,237,180,160,31,226,198, + 201,135,200,157,14,56,185,222,82,239,135,171,80,4,39,113,227,12,246,111, + 36,155,184,241,221,231,37,146,66,97,100,186,40,147,156,22,214,155,147,184, + 229,216,113,121,20,69,177,18,189,242,160,23,139,90,74,162,59,44,31,255, + 133,76,150,218,41,248,45,40,56,220,44,59,217,246,146,66,98,100,9,220, + 233,102,189,57,136,219,201,88,114,131,42,114,57,70,174,14,217,3,199,112, + 231,47,145,83,100,36,35,134,145,37,112,132,211,194,122,83,20,88,140,49, + 42,106,86,14,234,222,231,250,193,108,27,34,46,110,150,91,62,34,40,135, + 45,255,211,28,41,110,146,145,196,200,27,131,195,105,22,38,155,20,57,241, + 152,235,139,48,148,226,150,248,216,27,200,144,111,113,203,87,254,52,63,49, + 114,183,16,58,118,58,31,83,180,108,7,251,119,34,206,131,203,53,224,68, + 34,25,46,70,172,5,199,57,45,158,214,29,44,185,108,228,69,220,156,220, + 197,249,20,183,33,206,63,21,169,73,4,4,40,28,113,227,208,185,127,125, + 86,245,25,196,180,41,185,4,156,20,82,27,73,78,79,70,180,192,21,130, + 184,229,43,44,222,209,146,115,33,95,226,198,203,53,228,12,99,254,249,12, + 156,25,76,242,181,100,84,42,191,60,89,110,185,252,31,78,101,97,61,221, + 235,223,95,70,172,192,21,140,184,229,115,213,134,92,234,59,196,19,171,243, + 222,238,195,157,191,64,161,90,38,110,150,214,80,165,157,109,71,141,161,108, + 163,211,125,55,143,211,189,254,253,97,68,142,193,13,119,39,7,164,187,100, + 10,101,78,212,160,51,220,226,50,220,249,11,20,170,184,113,232,120,220,80, + 165,157,41,125,126,126,72,197,13,238,117,44,244,255,207,96,112,186,215,191, + 191,140,188,237,114,10,76,220,210,142,159,138,95,48,58,53,99,56,218,125, + 184,243,151,244,193,237,191,144,207,239,254,233,62,230,55,88,245,63,213,119, + 19,24,240,118,57,167,27,217,34,197,78,201,31,218,112,139,203,112,231,47, + 41,72,242,62,68,80,96,12,70,253,165,192,73,210,144,131,188,18,73,225, + 144,183,32,175,2,101,160,245,63,213,5,110,196,6,153,12,23,167,243,143, + 73,34,41,52,78,247,223,227,233,94,255,108,140,200,32,19,137,68,34,145, + 72,178,33,5,78,34,145,72,36,167,36,82,224,36,18,137,68,114,74,34, + 5,78,34,145,72,36,167,36,82,224,36,18,137,68,114,74,162,228,83,225, + 236,60,230,37,149,91,50,28,228,243,59,158,79,20,69,145,1,123,146,17, + 135,212,1,137,68,34,145,156,146,72,129,147,72,36,18,201,41,201,105,59, + 209,251,140,73,147,178,186,92,142,30,57,114,106,79,243,151,72,36,146,83, + 152,211,86,224,0,160,169,169,201,245,220,228,201,147,243,88,18,201,64,176, + 133,5,29,212,145,183,125,155,68,34,25,2,114,14,50,161,157,200,188,121, + 243,176,125,251,118,208,207,111,108,223,158,181,83,41,180,32,147,51,38,77, + 98,78,34,55,121,242,100,105,189,141,16,108,128,53,52,52,224,195,15,63, + 196,244,233,211,241,194,11,47,224,214,91,111,29,18,145,123,109,251,118,182, + 96,222,188,140,233,186,125,199,171,175,255,248,20,219,180,247,171,90,238,163, + 2,182,105,163,249,15,141,247,69,91,194,119,186,93,83,125,253,199,139,109, + 211,254,123,33,221,209,182,105,223,40,28,243,219,166,61,235,100,243,151,65, + 38,146,145,200,73,69,81,218,0,203,85,212,132,251,78,138,73,130,59,241, + 72,14,226,147,107,189,68,145,59,21,197,237,84,181,112,120,189,234,235,235, + 225,243,249,176,109,219,54,204,159,63,31,15,61,244,16,54,108,216,48,232, + 245,60,255,130,11,216,95,222,125,247,164,4,14,0,170,175,255,248,247,1, + 124,82,191,210,251,185,108,121,5,94,50,94,233,122,191,109,202,241,183,155, + 159,2,112,111,166,107,171,175,255,248,76,0,99,244,43,189,149,252,152,246, + 23,235,83,74,132,85,24,151,104,83,83,199,234,173,51,213,78,187,40,126, + 169,119,108,127,243,151,2,39,25,137,20,116,144,201,243,207,63,191,122,210, + 164,73,108,223,190,125,104,106,106,66,83,83,19,126,247,219,23,48,105,210, + 36,246,252,243,207,175,30,140,60,142,30,57,162,112,119,228,169,40,110,156, + 125,251,246,165,94,162,224,13,22,54,192,108,128,125,127,213,170,33,239,12, + 185,229,214,217,217,137,154,154,26,180,182,182,98,254,252,249,120,226,137,39, + 176,124,249,114,44,90,180,104,64,245,92,246,237,111,247,185,119,210,164,73, + 142,199,251,193,253,0,166,231,114,161,29,183,206,109,223,213,98,2,88,159, + 195,229,31,2,40,161,7,204,25,234,219,74,156,141,73,59,54,93,109,86, + 162,40,26,130,252,37,146,130,164,160,5,110,217,178,101,171,154,154,154,16, + 8,4,240,235,95,255,26,191,254,245,175,241,137,89,23,162,169,169,9,203, + 150,45,91,53,216,34,215,31,113,187,105,233,129,17,241,68,107,3,108,223, + 190,125,195,93,140,33,65,85,85,180,183,183,163,179,179,19,181,181,181,216, + 182,109,27,190,249,205,111,226,235,95,255,58,30,121,228,145,1,165,253,240, + 195,15,247,57,246,251,151,94,82,126,250,211,159,158,116,154,13,63,127,47, + 6,224,59,129,151,140,253,153,174,243,191,24,111,106,121,253,176,151,217,236, + 22,0,241,28,210,181,1,188,23,120,201,8,165,14,122,21,203,154,164,110, + 243,189,97,116,165,142,197,16,143,77,198,65,255,22,35,60,152,249,75,36, + 133,74,193,10,28,183,220,0,224,215,191,254,53,190,240,133,47,224,11,95, + 248,66,234,252,190,125,251,176,108,217,178,85,131,149,95,46,226,118,211,210, + 3,140,191,6,43,223,124,48,109,218,180,180,247,3,237,252,11,5,219,182, + 209,218,218,138,246,246,118,212,213,213,225,198,27,111,196,167,63,253,105,60, + 249,228,147,248,244,167,63,125,210,233,94,252,169,79,49,183,207,119,221,117, + 87,159,243,253,161,225,231,239,189,8,96,175,218,102,215,57,157,247,52,90, + 47,197,58,162,161,200,145,158,237,0,94,237,71,186,205,0,122,212,54,187, + 157,31,179,170,60,7,152,79,105,87,58,237,163,48,89,20,54,99,214,4, + 52,179,34,165,91,233,232,189,110,48,242,151,72,10,145,130,21,56,0,41, + 203,141,10,27,61,7,36,220,152,131,145,151,155,112,13,134,168,229,226,182, + 27,10,215,158,13,48,198,24,24,99,152,54,109,90,154,208,13,70,218,185, + 214,107,168,220,150,213,213,213,152,48,97,2,222,125,247,93,76,152,48,1, + 139,22,45,66,99,99,35,170,171,171,209,216,216,216,175,180,238,188,235,46, + 198,95,111,190,249,102,218,185,96,48,136,59,239,186,139,1,192,170,239,127, + 95,17,207,159,4,223,246,253,201,154,225,116,66,251,171,53,183,101,235,161, + 74,0,43,78,34,221,119,125,127,178,74,233,1,115,154,250,154,247,61,107, + 12,98,240,155,17,195,163,142,210,78,24,231,121,250,92,55,72,249,75,36, + 5,69,193,79,19,112,18,183,193,230,166,165,7,216,134,71,170,146,159,178, + 11,217,79,30,157,146,179,43,179,63,227,64,107,214,172,193,170,85,171,216, + 15,215,172,25,212,113,192,134,134,6,236,219,183,111,80,173,55,21,80,108, + 128,101,42,51,175,251,170,85,171,48,216,117,226,240,192,146,39,158,120,2, + 143,60,242,8,246,238,221,155,18,183,254,4,153,220,115,207,61,174,231,182, + 191,246,154,242,218,107,175,177,193,122,26,108,248,249,123,251,171,175,255,248, + 227,129,151,140,143,233,87,122,175,225,199,3,47,25,175,116,238,61,94,101, + 134,141,255,0,112,228,36,210,13,85,95,255,241,253,129,151,140,82,253,74, + 239,36,0,96,99,212,19,106,200,218,238,121,49,82,105,47,242,159,173,120, + 20,139,141,70,72,177,80,167,61,23,57,211,188,186,40,245,212,51,208,252, + 37,146,66,163,160,5,78,215,245,148,165,230,116,46,27,131,237,74,236,143, + 176,1,253,19,55,206,96,137,28,183,222,156,248,246,178,101,131,34,54,162, + 200,173,89,179,38,45,127,96,104,196,141,7,152,84,87,87,227,198,27,111, + 196,191,254,235,191,162,171,171,11,203,150,45,59,41,113,27,38,238,1,80, + 79,15,88,113,235,220,142,93,45,61,24,88,96,199,7,0,62,35,164,187, + 135,153,246,133,74,137,231,255,103,239,220,227,163,168,238,254,255,153,205,102, + 115,33,64,18,174,98,34,49,92,20,47,220,241,65,161,16,144,90,172,87, + 10,181,212,210,74,149,42,22,159,120,201,67,213,62,150,4,244,167,181,22, + 172,208,60,226,165,109,20,75,173,202,197,130,197,82,132,128,168,8,228,130, + 40,88,46,49,16,12,225,150,132,100,179,217,108,118,247,252,254,216,61,147, + 217,217,153,217,153,221,217,205,237,251,126,189,230,181,187,51,115,206,247,204, + 217,221,243,153,239,249,158,51,199,46,217,87,33,88,132,177,81,176,79,16, + 29,134,14,61,77,32,67,101,158,26,224,27,241,184,114,229,202,165,0,240, + 131,31,252,160,64,126,220,2,115,4,206,168,168,113,34,29,169,24,169,48, + 112,129,59,118,236,24,128,192,216,155,89,2,39,181,165,180,63,218,226,166, + 70,56,226,38,141,171,241,46,72,158,207,210,167,159,102,31,124,240,1,246, + 238,217,35,240,50,168,217,48,242,27,31,58,127,228,108,0,203,156,183,196, + 95,149,176,217,85,117,250,163,202,4,199,169,198,187,17,97,236,107,232,252, + 145,151,2,184,218,121,75,124,175,132,205,46,199,233,143,42,227,210,174,237, + 239,78,26,208,227,38,231,45,241,25,9,155,93,23,78,127,84,105,77,189, + 170,239,87,201,131,122,46,208,99,159,166,9,16,157,145,14,27,131,227,115, + 223,50,51,51,3,188,53,167,211,25,82,220,204,96,245,170,108,33,92,113, + 3,130,27,217,252,252,124,88,124,55,20,138,155,252,92,51,196,77,9,179, + 197,45,150,40,137,91,168,186,212,203,222,61,123,4,190,201,143,61,251,236, + 179,80,218,31,41,199,138,190,88,7,224,12,222,188,136,36,135,45,211,172, + 129,29,199,138,190,248,22,64,139,63,223,100,199,169,198,115,223,110,57,190, + 5,64,189,127,95,31,199,169,198,67,213,91,191,121,49,26,246,9,162,163, + 208,33,187,40,165,19,187,87,174,92,185,116,216,176,97,1,163,37,245,138, + 91,36,2,101,6,188,11,207,72,26,51,189,30,37,239,205,108,164,93,145, + 210,46,74,192,220,152,162,154,184,69,154,175,18,143,60,242,72,192,52,129, + 7,30,120,0,43,253,159,111,190,229,22,54,108,216,48,241,179,9,60,150, + 144,150,84,214,251,219,36,0,248,149,89,153,2,56,144,144,150,52,195,159, + 239,65,255,190,55,18,210,146,94,240,239,91,19,101,251,4,209,238,116,56, + 15,78,46,110,128,239,201,37,43,87,174,92,202,55,32,122,158,155,217,24, + 105,132,205,20,55,65,8,206,38,90,93,147,242,114,115,111,21,240,137,92, + 164,35,40,99,41,110,0,176,242,15,127,16,70,141,26,21,240,25,0,126, + 247,251,223,179,83,167,78,137,159,77,226,56,243,120,97,117,199,1,64,165, + 137,249,218,37,249,242,121,111,103,36,251,206,69,217,62,65,180,59,29,202, + 131,83,18,55,46,100,209,22,180,65,25,25,44,90,79,49,177,0,194,211, + 50,239,38,156,115,140,194,167,5,68,195,123,211,51,136,68,207,72,75,61, + 118,98,41,110,156,149,43,87,98,218,212,169,1,251,158,123,238,57,172,95, + 191,62,104,127,132,120,160,112,51,98,2,76,33,95,175,194,190,104,217,39, + 136,118,167,195,120,112,90,226,22,109,248,243,40,245,44,161,211,217,136,214, + 192,18,30,239,10,37,90,122,207,211,34,214,226,6,0,74,15,85,158,51, + 103,142,226,254,8,113,71,73,95,152,66,190,30,133,125,209,178,79,16,237, + 78,135,16,184,142,32,110,128,111,249,156,174,36,114,209,18,183,88,209,209, + 30,18,253,218,43,175,68,195,62,121,112,4,17,37,116,11,28,127,34,5, + 159,34,176,115,231,78,113,223,119,166,78,141,72,20,184,168,181,167,184,113, + 186,138,200,117,118,113,147,18,201,232,200,78,128,247,66,105,141,233,153,30, + 43,250,130,41,228,171,180,47,42,246,9,162,35,16,214,60,184,112,209,154, + 35,196,31,185,101,150,184,133,186,46,181,181,224,56,157,125,101,129,63,172, + 92,201,58,179,184,105,205,53,235,200,196,114,205,195,88,66,243,224,136,206, + 72,135,17,56,179,209,35,112,161,242,232,204,2,215,153,233,172,226,6,144, + 192,17,68,71,162,219,10,28,65,68,3,18,56,130,232,56,144,14,16,4, + 65,16,93,146,14,53,15,142,232,190,176,174,226,33,48,214,41,187,86,9, + 162,43,66,30,28,65,16,4,209,37,161,187,77,66,21,186,251,33,186,34, + 29,61,78,74,241,78,243,160,46,74,130,32,136,64,2,4,38,43,43,107, + 90,101,101,101,113,184,153,229,229,229,5,228,183,110,221,186,136,242,35,244, + 67,55,233,4,65,16,129,136,61,91,145,138,27,0,44,95,190,92,204,143, + 196,45,182,144,192,17,4,65,104,144,149,149,149,213,145,243,35,212,49,28, + 131,203,144,77,144,62,69,147,161,13,19,203,58,140,196,86,119,189,251,201, + 202,206,14,168,179,202,138,10,250,141,119,33,212,98,112,57,57,57,89,197, + 197,197,69,0,228,203,69,236,204,202,202,42,48,234,121,173,89,179,38,171, + 188,188,92,49,191,117,235,214,169,230,71,49,184,118,96,253,250,245,5,25, + 25,25,172,185,185,153,113,202,74,247,179,140,140,12,198,31,179,69,104,19, + 203,58,148,219,90,191,126,125,129,81,91,22,141,173,160,160,128,169,29,131, + 239,73,36,154,233,181,182,236,236,108,150,157,157,205,108,54,155,184,241,125, + 217,217,217,17,229,173,101,79,186,49,6,198,24,130,246,155,97,95,111,253, + 68,90,143,161,242,48,35,255,206,184,201,201,201,201,201,2,80,12,128,77, + 153,82,192,74,75,75,89,99,99,35,99,140,177,210,210,82,54,127,254,124, + 6,95,92,174,56,43,43,43,71,33,139,0,214,172,89,147,149,151,151,87, + 156,151,151,199,30,125,244,81,182,118,237,90,182,101,203,22,182,101,203,22, + 182,118,237,90,182,102,205,26,150,151,151,199,242,242,242,20,243,19,4,129, + 209,102,206,22,234,187,18,201,200,200,16,27,229,245,235,215,179,245,235,215, + 139,159,163,45,114,25,25,25,76,186,69,203,78,180,109,197,178,14,185,45, + 159,208,21,177,140,140,34,195,182,180,26,9,46,112,114,161,203,246,121,63, + 138,199,244,110,217,217,217,108,255,254,253,138,155,217,34,151,157,157,205,118, + 237,186,154,125,89,190,135,237,216,1,6,248,132,13,8,124,191,99,7,216, + 151,229,123,216,174,93,87,71,108,159,215,207,216,177,123,2,242,145,127,70, + 132,2,52,118,236,30,166,149,71,164,249,119,214,77,129,226,156,156,28,86, + 90,90,202,50,50,138,88,99,99,35,43,45,45,101,165,165,165,140,49,38, + 126,206,201,201,97,240,9,161,38,121,121,121,197,171,86,173,98,107,215,174, + 101,57,57,57,162,184,73,183,181,107,215,178,85,171,86,177,188,188,188,160, + 252,218,91,20,186,210,166,242,125,7,146,145,145,193,142,30,61,10,0,216, + 176,97,3,102,205,154,133,89,179,102,137,199,143,30,61,138,220,220,220,124, + 61,121,25,129,123,33,71,143,30,69,85,85,21,86,174,92,137,77,255,216, + 136,104,122,60,220,86,85,85,149,169,182,98,89,135,220,214,134,13,27,150, + 206,154,53,43,40,207,104,124,95,75,10,10,98,210,173,82,81,81,129,119, + 222,121,39,168,27,49,18,210,123,253,9,239,109,252,16,211,166,1,95,150, + 239,193,87,7,246,224,203,242,61,1,239,167,77,3,222,219,248,33,210,123, + 253,201,20,155,163,125,226,19,242,53,156,60,195,73,31,142,189,174,128,223, + 123,155,186,98,197,10,140,25,51,6,0,48,98,196,58,84,86,86,162,178, + 178,18,101,101,101,72,73,73,193,176,97,195,176,98,197,10,0,152,170,229, + 197,173,89,179,38,11,192,212,62,125,250,32,45,45,13,0,240,252,243,207, + 7,157,151,150,150,134,62,125,250,132,204,143,136,12,93,2,7,0,137,137, + 137,98,195,172,116,12,104,91,17,192,44,114,115,115,243,171,170,170,176,101, + 203,22,100,102,190,129,220,220,6,140,30,51,14,85,85,85,200,205,205,205, + 55,211,30,183,197,175,115,195,134,13,166,219,138,101,29,110,217,178,101,105, + 110,110,67,126,102,230,27,226,190,204,204,55,144,153,249,70,88,182,150,20, + 20,48,233,182,172,160,64,144,191,242,245,219,10,10,10,52,211,134,115,61, + 155,55,111,22,223,143,31,223,8,224,47,200,202,222,201,172,182,29,226,150, + 149,189,147,101,101,239,52,156,255,185,186,137,226,251,107,70,79,84,220,162, + 65,121,233,68,65,235,179,17,148,132,81,111,126,102,136,171,148,172,236,108, + 198,183,251,23,46,52,85,56,239,95,184,144,73,243,143,52,191,226,226,226, + 162,249,243,231,99,204,152,49,40,43,43,195,210,165,151,225,230,155,19,48, + 107,214,44,124,247,187,223,197,152,49,99,176,98,69,57,14,30,180,99,216, + 176,97,152,63,127,62,42,43,43,11,212,68,169,188,188,188,104,244,232,209, + 162,184,77,154,52,41,232,156,221,187,119,227,228,201,147,72,75,75,195,232, + 209,163,49,123,246,108,213,252,136,200,48,52,15,78,169,97,142,22,18,47, + 4,179,102,205,66,110,238,27,1,199,143,30,61,138,97,195,134,229,3,40, + 48,203,22,0,69,1,50,211,86,172,234,112,214,172,89,249,242,58,83,34, + 35,35,131,173,92,185,114,105,168,101,138,150,21,20,132,108,44,179,179,179, + 209,216,216,8,37,241,211,95,242,64,54,111,222,140,91,111,189,85,252,188, + 127,255,126,140,31,223,136,227,199,167,40,158,63,100,200,46,195,54,250,165, + 237,193,212,169,19,241,101,249,30,156,171,155,136,126,105,106,175,51,253,98, + 152,29,238,229,68,149,242,210,137,66,184,226,20,73,90,14,23,156,155,110, + 186,9,175,174,94,45,0,192,214,173,91,89,86,118,54,147,238,11,135,251, + 23,46,100,91,183,110,197,214,173,91,197,65,63,254,125,12,136,104,32,208, + 212,220,220,92,216,237,118,84,86,86,226,174,187,190,139,252,252,117,200,204, + 124,3,85,85,247,128,223,32,222,127,255,80,164,164,164,32,55,55,23,69, + 69,69,242,65,35,1,249,197,197,197,137,31,38,79,158,140,79,62,249,4, + 207,63,255,60,30,127,252,113,209,155,155,60,121,50,0,192,127,174,86,126, + 68,4,232,246,224,156,78,103,88,199,34,97,203,150,45,200,205,109,128,89, + 94,72,40,91,220,75,228,54,204,182,21,203,58,116,58,157,168,170,186,7, + 85,85,247,136,251,248,103,169,45,51,60,84,169,247,118,238,220,185,8,74, + 237,243,246,26,27,27,3,60,54,41,106,251,57,21,21,198,159,83,161,36, + 102,211,166,237,192,53,163,155,21,95,79,157,50,167,155,178,179,35,245,160, + 184,136,85,86,84,8,82,33,171,172,168,16,42,43,42,132,173,91,183,34, + 92,111,142,139,27,207,139,239,127,117,245,106,161,178,162,66,184,233,166,155, + 130,202,98,36,255,97,195,134,129,223,224,166,164,164,224,209,71,71,1,128, + 216,238,28,62,60,27,41,41,41,176,219,237,98,55,38,160,62,220,159,123, + 111,28,238,197,113,113,123,252,241,199,21,207,165,233,3,230,163,75,224,78, + 157,58,37,12,27,54,76,245,248,176,97,195,196,213,184,205,36,150,30,99, + 180,109,197,178,14,141,218,10,55,38,167,228,153,89,252,83,79,194,245,218, + 150,21,20,8,61,123,246,196,173,183,222,42,122,111,242,87,37,150,46,109, + 171,58,47,140,117,87,42,121,108,0,192,88,142,226,6,0,86,219,142,110, + 25,179,146,195,187,10,67,121,104,92,228,194,65,234,181,41,241,234,234,213, + 162,200,133,211,109,201,99,108,89,89,89,176,219,237,120,236,177,209,226,49, + 46,110,252,60,187,221,110,184,252,220,91,3,2,197,141,136,62,186,186,40, + 249,104,194,204,204,76,28,61,122,84,244,104,156,78,103,64,99,105,214,106, + 220,28,238,133,248,108,251,238,166,248,231,104,121,60,106,199,34,37,150,117, + 40,183,37,173,51,169,173,220,220,134,252,220,220,55,196,227,235,215,175,47, + 8,199,62,247,222,42,42,42,130,238,152,34,233,158,84,19,51,41,75,151, + 46,69,126,126,155,54,115,1,2,244,119,87,42,121,112,192,14,213,243,93, + 46,224,240,225,129,24,53,106,7,115,187,166,105,94,159,82,183,95,105,169, + 254,152,158,60,125,56,113,58,181,174,71,35,229,80,163,162,162,2,217,217, + 217,17,117,63,154,193,171,171,87,11,89,217,217,140,151,199,8,101,101,101, + 24,51,102,12,134,13,27,38,138,88,85,213,61,176,219,237,162,184,1,128, + 221,110,23,61,61,45,234,234,234,130,188,56,53,97,171,171,171,51,84,86, + 194,24,33,5,78,58,84,126,229,202,149,75,253,177,40,72,247,1,230,139, + 155,223,11,97,85,85,85,138,199,163,224,241,68,205,86,44,235,80,175,173, + 220,220,134,136,70,81,202,189,163,138,138,169,200,206,222,137,202,74,72,78, + 179,0,0,32,0,73,68,65,84,10,243,195,9,74,66,39,23,54,233,254, + 54,166,233,202,95,217,131,107,214,180,57,98,68,13,108,54,95,61,84,86, + 76,85,109,220,85,4,73,183,151,17,201,192,19,29,121,68,236,133,114,49, + 201,202,206,102,237,57,33,158,123,110,70,197,13,192,206,149,43,87,78,93, + 181,106,149,40,110,210,87,41,41,41,41,88,185,114,37,0,236,212,202,207, + 227,241,232,254,19,120,60,158,80,249,17,17,160,41,112,242,198,18,240,137, + 129,60,94,99,182,184,73,109,135,242,66,162,225,241,152,233,93,197,178,14, + 245,218,154,53,107,86,190,180,71,214,168,135,42,109,212,249,123,62,175,42, + 188,146,235,67,42,116,249,249,249,162,224,200,95,57,111,190,105,142,7,103, + 134,151,216,21,233,72,79,120,9,183,44,89,89,89,5,69,69,69,59,114, + 115,115,3,60,56,185,184,1,62,79,175,168,168,8,89,89,89,5,0,234, + 149,242,91,183,110,93,1,128,29,227,198,141,11,242,226,228,212,213,213,161, + 188,188,156,167,81,204,143,136,12,85,129,83,106,44,121,35,28,13,65,211, + 178,221,17,60,30,179,196,45,90,117,24,202,86,70,70,70,84,189,97,238, + 209,133,242,104,244,114,215,93,119,225,212,169,83,226,231,140,140,12,241,125, + 118,246,95,0,64,209,131,11,135,158,61,247,227,92,221,248,32,15,206,76, + 47,49,150,68,50,26,50,90,243,225,36,113,58,195,105,111,186,233,38,108, + 221,186,53,42,30,162,255,113,89,59,31,123,236,177,169,43,86,172,8,18, + 57,254,90,86,86,134,199,30,123,12,104,243,182,234,161,32,74,60,191,11, + 23,46,76,5,130,7,156,112,234,234,234,112,225,194,133,144,249,17,145,161, + 40,112,90,141,101,180,233,136,30,143,217,226,102,54,161,108,197,42,254,39, + 247,234,194,207,39,184,33,171,172,168,16,223,103,101,7,122,138,145,8,93, + 101,69,133,112,215,93,119,49,223,208,255,187,209,246,250,39,83,189,68,45, + 228,162,18,142,200,240,110,72,62,220,223,232,28,184,112,210,234,65,105,234, + 128,81,94,93,189,90,48,105,74,128,114,25,179,178,10,138,139,139,11,198, + 142,29,59,117,254,252,249,200,205,205,197,152,49,99,196,152,219,202,149,43, + 81,84,84,4,248,159,73,9,191,16,85,86,86,170,122,113,179,103,207,46, + 168,172,172,156,58,122,244,104,196,197,197,137,66,87,87,87,7,143,199,131, + 242,242,114,192,255,76,202,80,249,17,225,19,244,67,233,104,226,214,94,162, + 208,81,243,54,106,75,126,92,62,90,82,171,124,90,67,108,185,199,166,36, + 106,102,121,113,90,182,213,230,193,73,25,50,100,23,194,45,135,220,134,154, + 192,133,99,195,235,123,68,150,152,70,46,42,252,179,252,188,112,208,202,195, + 11,176,177,99,247,152,18,231,235,76,168,77,36,201,202,202,202,169,172,172, + 44,128,202,195,150,253,239,185,167,85,31,74,144,178,178,178,114,102,207,158, + 173,152,159,95,216,20,243,51,244,12,69,66,147,32,15,142,55,130,242,134, + 47,35,163,136,157,58,53,95,247,31,193,248,249,29,71,20,34,69,173,14, + 131,203,17,88,71,70,235,44,148,173,104,122,168,209,20,48,61,182,135,12, + 241,9,236,169,83,202,205,85,70,134,238,41,158,186,48,171,59,84,9,51, + 159,104,18,169,237,238,140,191,123,49,71,229,169,34,210,46,196,144,226,198, + 243,91,190,124,185,105,249,17,198,81,252,113,243,6,48,176,177,44,242,55, + 40,161,27,96,35,231,250,206,239,58,226,198,81,170,195,192,114,4,215,145, + 209,122,211,178,101,198,117,26,149,8,185,87,215,153,137,133,151,72,180,15, + 122,30,5,160,50,233,58,108,33,50,146,31,121,112,230,97,200,35,51,154, + 185,222,134,122,253,250,245,5,122,60,30,51,136,165,45,57,209,172,195,64, + 59,230,136,184,185,62,80,231,66,58,13,34,148,151,72,2,215,185,96,36, + 32,221,6,195,2,23,13,15,14,8,237,241,152,73,44,109,169,97,166,7, + 23,152,175,121,30,106,119,22,56,162,235,66,2,71,4,97,212,251,8,199, + 91,233,110,200,235,200,140,58,227,203,254,172,95,191,190,32,210,103,103,182, + 247,186,93,180,209,22,141,173,189,215,40,163,45,134,27,136,46,135,89,30, + 170,197,140,194,16,68,7,131,60,184,238,3,9,28,161,10,5,187,9,130, + 232,204,208,77,58,65,16,4,209,37,33,129,35,8,130,32,186,36,212,69, + 73,168,66,119,63,68,87,196,248,146,184,218,80,87,126,199,133,218,48,130, + 32,136,64,152,116,83,121,18,9,209,9,32,129,35,8,130,8,68,236,217, + 202,202,202,154,230,127,132,23,209,9,33,129,35,8,130,208,64,229,49,91, + 68,39,192,112,12,46,47,47,47,160,191,121,249,242,229,20,199,51,72,44, + 235,48,18,91,221,245,238,39,111,241,226,192,58,123,225,5,250,141,119,33, + 212,98,112,57,57,57,89,197,197,197,69,80,89,77,64,205,147,163,24,92, + 199,69,247,31,55,47,47,175,0,64,254,140,25,51,196,125,3,7,244,195, + 91,127,253,27,0,44,93,190,124,121,129,217,133,235,106,196,178,14,185,45, + 0,152,48,97,2,246,237,219,183,148,127,214,107,75,75,224,94,124,233,37, + 246,232,195,15,43,254,126,30,92,180,136,189,92,88,24,182,40,112,129,145, + 174,52,206,215,176,3,204,23,28,185,160,1,192,244,233,14,0,192,246,237, + 201,65,231,71,106,95,111,253,68,90,143,161,242,48,35,255,206,136,92,224, + 164,194,54,101,74,1,254,240,135,219,197,133,79,203,202,202,130,214,131,147, + 11,29,9,92,199,197,200,77,186,216,48,111,219,182,13,219,182,109,67,205, + 153,115,240,239,203,247,55,168,81,33,47,47,143,73,183,104,217,137,129,173, + 88,214,97,254,132,9,19,0,96,233,234,213,171,81,82,82,146,63,97,194, + 4,248,247,153,102,235,197,151,94,10,168,35,169,88,200,143,25,97,220,184, + 113,152,52,105,146,184,141,27,55,14,227,198,141,11,178,17,41,121,139,23, + 179,209,163,227,48,97,252,88,140,26,229,128,195,225,192,244,233,14,108,222, + 12,108,222,236,19,58,135,195,129,81,163,28,152,48,126,44,70,143,142,51, + 205,254,19,191,254,27,211,250,108,118,254,132,50,197,197,197,69,57,57,57, + 83,75,75,75,81,81,145,133,97,195,134,225,232,209,163,40,43,43,195,152, + 49,99,176,106,213,42,148,150,150,34,39,39,103,170,127,189,56,162,147,160, + 75,224,242,242,242,152,180,97,158,49,99,6,164,94,8,111,160,205,46,92, + 94,94,94,1,183,205,183,121,63,249,49,23,161,130,206,100,43,150,117,200, + 133,121,223,190,125,75,39,76,152,160,150,167,169,223,87,36,98,102,4,135, + 195,129,113,227,198,153,42,114,241,214,81,56,93,115,22,159,125,6,76,157, + 50,25,141,13,147,49,117,202,228,128,247,159,125,6,156,174,57,139,120,235, + 40,83,108,114,241,9,245,26,78,158,225,164,239,174,98,152,147,147,147,5, + 96,234,138,21,43,48,102,204,24,0,192,136,17,235,80,89,89,137,202,202, + 74,148,149,149,33,37,37,5,195,134,13,195,138,21,43,0,96,42,141,170, + 236,60,4,45,120,170,5,111,152,213,200,203,203,43,48,185,171,82,244,120, + 158,127,254,121,0,192,227,143,63,142,25,51,102,96,219,182,109,249,121,121, + 121,48,209,94,128,119,5,64,20,33,51,109,197,176,14,151,150,148,148,228, + 151,148,148,136,59,86,175,94,13,0,88,184,112,33,246,237,219,103,200,150, + 92,192,30,125,248,97,129,119,83,242,215,7,23,45,98,0,48,124,248,240, + 144,105,141,94,204,153,51,103,48,96,192,0,0,192,199,31,187,145,156,60, + 10,121,139,223,98,146,94,76,240,94,204,229,47,204,51,148,191,171,117,55, + 0,95,153,119,238,218,109,180,104,97,243,219,103,127,44,72,133,69,254,217, + 8,82,97,252,237,179,63,22,120,126,252,59,49,146,86,154,71,56,72,111, + 62,198,141,27,135,187,231,206,53,173,27,116,237,219,111,51,233,111,58,210, + 238,226,226,226,226,162,249,243,231,99,204,152,49,40,43,43,195,210,165,151, + 97,207,158,51,152,53,107,22,236,118,59,82,82,82,176,98,69,57,174,191, + 126,32,174,189,118,24,230,207,159,143,162,162,162,2,173,152,28,209,113,48, + 36,112,90,13,179,217,200,61,30,165,178,108,219,182,45,31,64,129,217,182, + 228,215,105,166,173,88,213,225,132,9,19,2,196,77,13,191,183,23,50,38, + 167,71,148,146,147,147,225,118,187,21,197,79,119,193,101,72,133,13,0,190, + 243,157,239,224,227,143,221,152,62,189,143,226,249,219,183,95,48,108,195,22, + 63,25,125,250,236,198,212,41,147,225,106,221,13,91,188,218,107,127,191,24, + 6,199,229,58,2,145,8,100,36,105,57,92,216,164,162,150,183,120,49,203, + 91,188,152,69,42,116,92,216,74,74,74,68,81,91,251,246,219,140,219,140, + 64,232,166,230,230,230,194,110,183,163,178,178,18,119,221,245,93,228,231,175, + 67,102,230,27,168,170,186,7,153,153,111,0,0,238,191,127,40,82,82,82, + 144,155,155,139,162,162,34,249,32,20,162,131,98,72,224,218,3,238,185,201, + 63,63,254,248,227,0,204,245,26,121,222,114,97,136,134,173,104,179,111,223, + 62,44,92,184,16,64,160,231,198,143,113,252,3,80,34,242,80,165,222,155, + 203,229,138,168,220,47,190,244,18,171,172,172,12,18,54,206,153,51,103,0, + 40,139,27,0,56,28,198,109,42,137,217,103,159,93,15,192,3,32,248,213, + 210,93,135,151,202,200,91,188,152,113,97,81,19,49,233,241,181,111,191,205, + 194,17,57,46,110,114,17,227,121,113,161,147,218,50,34,120,60,230,6,0, + 41,41,41,120,244,209,81,120,241,197,3,162,184,29,62,60,27,41,41,41, + 176,219,237,98,55,38,224,155,62,80,89,89,89,105,244,122,136,216,161,235, + 175,186,124,249,114,65,201,139,226,248,143,45,53,169,76,93,146,88,214,161, + 206,169,0,114,91,134,99,114,74,158,25,31,149,23,174,215,246,232,195,15, + 11,86,171,21,3,6,12,16,69,78,254,170,196,145,35,71,196,247,15,46, + 122,139,229,45,246,109,122,108,42,121,108,0,112,235,173,125,20,55,0,88, + 244,223,250,242,238,234,232,245,208,150,191,240,130,160,167,71,65,9,37,113, + 147,114,247,220,185,2,143,203,134,19,155,229,49,182,172,172,44,216,237,118, + 60,246,216,104,241,24,23,55,126,158,221,110,15,231,18,136,118,66,151,7, + 199,7,45,40,117,223,73,27,230,104,120,55,220,123,146,123,110,209,32,154, + 121,199,178,14,37,131,76,0,40,122,110,75,1,128,199,232,194,137,201,73, + 225,222,155,67,193,125,138,164,123,82,77,204,164,28,57,114,36,32,230,199, + 5,8,208,223,93,169,228,193,249,60,54,101,188,94,32,39,39,1,192,91, + 172,112,149,118,188,79,169,219,239,226,69,253,113,62,121,250,112,98,99,106, + 93,143,70,202,161,134,195,225,64,114,114,178,169,113,182,112,184,123,238,92, + 33,111,241,98,198,203,99,4,62,90,146,79,13,176,219,237,168,170,186,71, + 140,193,113,236,118,187,232,233,17,157,131,144,2,39,27,42,191,212,31,139, + 146,18,21,113,243,123,33,76,45,102,21,5,143,39,106,182,98,89,135,114, + 91,0,242,165,93,146,144,136,91,68,118,100,222,145,195,241,25,146,147,175, + 7,80,24,73,182,138,40,9,157,92,216,164,251,219,80,239,202,148,162,236, + 193,121,52,109,22,23,183,192,98,241,213,131,214,160,22,37,65,210,51,240, + 67,43,189,81,212,242,48,82,14,53,184,152,24,237,22,52,27,238,185,25, + 21,55,0,59,87,174,92,57,117,213,170,85,162,184,73,95,165,164,164,164, + 96,229,202,149,0,176,211,148,66,19,81,71,83,224,20,26,75,44,95,190, + 92,144,15,155,143,134,231,38,247,120,164,222,85,180,60,158,104,120,87,177, + 172,67,189,182,38,76,152,192,231,200,1,8,140,201,233,178,35,105,212,3, + 223,95,31,213,110,59,169,208,13,31,62,92,20,28,249,43,231,212,41,115, + 60,56,51,188,196,174,72,71,122,194,75,184,101,201,202,202,42,40,42,42, + 218,145,155,155,27,224,193,201,197,13,240,121,122,69,69,69,200,202,202,42, + 0,80,31,97,145,137,24,160,42,112,42,141,101,129,244,53,90,180,167,199, + 99,166,173,88,214,97,40,91,121,121,121,76,42,106,10,68,228,13,115,143, + 46,148,71,163,151,146,146,18,213,39,153,36,39,251,230,162,41,121,112,225, + 96,181,126,7,174,214,143,131,60,56,51,189,196,88,18,201,104,200,104,205, + 135,227,113,186,112,224,241,181,104,8,170,127,168,255,206,199,30,123,108,234, + 138,21,43,130,68,142,191,150,149,149,225,177,199,30,3,218,188,183,122,144, + 200,117,120,20,5,78,171,177,140,54,29,209,227,49,91,220,204,38,148,45, + 121,76,142,11,157,60,38,23,105,249,148,188,186,240,242,209,110,200,228,221, + 163,145,8,221,242,23,94,16,124,221,91,201,0,74,209,246,58,202,84,47, + 81,11,51,158,104,34,157,251,102,100,30,155,210,60,60,51,186,69,57,74, + 83,7,140,114,247,220,185,130,73,83,2,20,201,202,202,42,40,46,46,46, + 24,59,118,236,212,249,243,231,35,55,55,23,99,198,140,17,99,110,242,71, + 117,193,47,108,149,149,149,36,112,29,156,32,129,235,128,226,86,16,141,50, + 68,211,86,71,20,55,201,113,197,152,156,145,242,45,127,97,158,192,69,198, + 12,111,205,44,194,21,58,165,6,147,95,159,89,94,162,28,53,65,146,126, + 14,55,70,102,84,160,164,231,155,41,110,128,121,98,20,205,65,44,126,47, + 46,39,43,43,43,167,168,168,168,64,97,158,27,23,54,160,205,115,35,113, + 235,4,40,121,112,252,161,188,1,13,95,94,94,30,51,242,36,250,112,206, + 151,149,161,221,68,193,4,20,235,80,169,28,210,58,50,90,103,161,108,69, + 211,67,109,79,97,243,217,126,203,255,64,102,229,115,36,61,154,166,16,45, + 161,3,130,69,197,108,145,49,98,187,59,35,21,58,133,195,82,81,171,39, + 239,173,115,160,248,227,230,13,160,82,99,169,167,1,54,114,174,244,124,63, + 157,93,220,184,157,2,173,188,149,234,200,104,189,105,217,50,227,58,141,206, + 103,238,136,94,93,184,228,45,126,139,169,61,45,69,202,246,237,23,186,196, + 245,118,39,212,150,203,145,162,178,6,156,162,176,209,106,2,29,151,112,61, + 44,93,24,16,184,2,232,240,120,204,32,150,182,20,108,71,173,14,53,236, + 132,125,157,221,249,129,29,210,56,95,40,47,145,4,174,115,193,72,144,186, + 13,134,5,46,26,30,156,63,77,129,63,77,129,222,52,225,18,75,91,26, + 101,48,205,131,83,202,215,79,68,34,222,157,5,142,232,186,144,192,117,31, + 12,61,139,82,111,195,235,143,243,24,250,17,197,82,108,58,194,243,36,213, + 234,200,132,213,189,117,197,255,8,130,32,186,58,212,181,210,5,49,203,67, + 37,15,142,232,138,144,7,215,125,32,129,35,84,161,224,57,65,16,157,25, + 186,73,39,8,130,32,186,36,36,112,4,65,16,68,151,68,32,133,35,136, + 206,5,197,144,8,66,31,164,111,4,65,16,68,151,196,208,52,1,130,232, + 74,120,1,83,61,33,139,108,208,86,180,243,39,8,66,155,128,46,202,88, + 254,33,201,86,228,182,98,133,217,215,36,197,140,235,11,85,190,72,108,20, + 174,44,98,0,176,40,119,126,84,190,135,112,242,167,46,74,130,208,71,128, + 7,167,183,33,224,127,202,80,44,202,157,175,122,44,150,182,94,94,89,164, + 39,11,83,26,177,88,218,210,195,45,183,222,198,0,224,131,205,155,194,182, + 103,1,4,47,192,164,215,246,96,238,252,128,239,48,210,227,145,194,152,242, + 207,68,16,218,253,254,128,32,136,118,34,162,24,220,75,127,30,167,248,106, + 148,225,163,15,50,165,215,104,96,86,153,205,34,218,215,190,105,243,38,108, + 218,188,201,204,44,219,5,47,192,248,22,141,252,245,124,15,70,190,171,104, + 252,134,163,249,191,32,136,174,72,88,49,56,169,40,40,9,198,195,247,150, + 232,206,75,173,209,104,251,51,235,207,43,20,106,226,214,30,34,39,109,172, + 148,174,253,72,249,181,166,118,221,121,1,214,17,186,59,35,225,163,237,205, + 0,128,27,167,39,153,122,45,218,191,193,146,144,231,200,191,43,179,191,71, + 249,111,229,63,7,70,70,154,37,65,116,11,194,30,100,50,105,66,15,197, + 253,159,236,107,106,215,188,58,146,173,80,68,179,44,92,220,184,16,112,239, + 39,82,97,8,117,3,19,233,241,88,195,197,67,254,93,252,233,181,108,220, + 247,139,10,241,243,164,9,61,130,246,1,190,239,74,46,100,60,47,173,239, + 81,233,187,208,250,126,164,229,251,207,129,80,87,69,16,4,16,162,139,82, + 173,75,72,173,97,230,199,246,31,156,162,203,248,207,127,81,193,120,94,127, + 122,45,27,127,122,45,91,183,29,163,236,63,56,37,100,185,229,68,179,75, + 76,169,65,229,215,63,105,66,15,252,252,23,21,17,217,85,106,40,205,16, + 183,73,19,122,168,122,188,145,30,215,203,71,219,155,77,27,248,50,105,66, + 15,197,239,66,13,165,223,168,218,239,74,237,123,212,42,187,209,255,27,65, + 16,234,104,10,156,244,238,63,218,5,225,119,198,90,141,75,44,145,123,64, + 209,132,95,179,220,59,136,148,65,131,6,137,34,61,104,208,160,136,243,227, + 13,173,86,131,30,201,113,57,242,184,219,141,211,147,140,21,56,12,180,190, + 11,51,126,163,90,191,171,88,254,223,8,162,59,16,114,144,73,119,20,185, + 174,32,110,0,80,83,93,45,40,189,239,12,120,1,246,209,246,102,200,55, + 46,114,102,122,113,28,61,223,69,36,191,81,61,191,43,18,57,130,48,15, + 93,49,56,62,76,60,22,3,21,238,251,69,133,216,93,23,141,70,63,20, + 93,69,220,0,224,254,255,94,200,86,175,90,45,190,127,117,213,234,78,33, + 114,92,220,148,224,34,167,118,92,47,242,174,67,169,96,5,188,215,200,67, + 250,27,229,249,253,229,181,236,160,58,254,249,47,42,152,52,79,169,120,241, + 238,124,37,65,139,180,155,154,32,186,59,162,192,105,253,225,165,232,189,179, + 12,21,135,147,218,83,179,245,167,215,178,1,157,141,255,207,127,81,193,148, + 26,23,61,101,225,200,71,29,74,143,201,69,72,173,33,219,127,80,151,41, + 213,6,85,106,75,235,154,244,192,197,141,191,239,106,207,101,243,139,93,88, + 34,192,235,149,255,14,249,141,21,127,207,25,127,237,46,0,129,191,33,165, + 243,180,190,167,191,188,150,45,88,160,124,243,52,254,218,93,62,97,148,205, + 25,84,42,35,65,16,198,16,5,78,254,7,149,55,134,178,63,103,200,63, + 220,248,107,119,225,47,26,199,255,242,90,182,32,109,92,164,72,27,16,222, + 192,132,66,107,226,244,248,107,119,233,18,57,238,169,242,247,178,242,134,76, + 255,151,215,178,5,189,19,211,161,210,160,202,243,211,149,151,2,183,220,122, + 27,219,180,121,83,64,151,215,45,183,222,198,140,78,248,14,37,178,90,199, + 249,49,185,7,99,36,255,88,162,167,247,32,18,175,91,79,79,72,44,123, + 16,8,162,171,163,235,166,190,43,117,219,133,162,171,196,28,165,226,6,248, + 174,43,156,9,223,210,27,17,57,82,1,211,74,27,74,0,13,23,42,138, + 104,125,39,102,252,54,181,126,95,36,110,4,97,46,33,5,174,59,137,27, + 167,179,139,220,216,113,227,85,203,173,117,76,13,53,17,226,251,67,117,207, + 133,115,76,15,55,78,79,138,248,119,249,201,190,166,160,249,106,122,6,153, + 104,165,151,31,151,163,103,144,137,148,191,188,150,45,180,199,60,77,130,232, + 236,104,14,50,233,142,226,198,233,204,3,107,246,151,236,87,29,134,190,191, + 100,63,235,232,177,56,11,32,220,56,61,73,113,160,137,25,3,76,164,28, + 41,191,86,24,62,250,32,147,11,200,149,163,15,226,147,125,77,24,127,173, + 239,243,39,251,154,196,125,74,121,72,63,235,17,163,112,230,41,146,200,17, + 132,49,66,206,131,83,250,211,133,186,99,213,27,55,147,222,153,222,247,139, + 10,197,187,99,179,24,127,237,174,176,238,180,163,37,110,74,94,3,191,254, + 79,246,53,133,237,221,140,189,126,188,166,32,91,0,97,236,245,198,189,184, + 88,227,23,57,200,55,201,227,186,76,187,241,226,2,165,246,170,247,28,165, + 115,205,120,84,87,40,123,4,65,40,19,246,163,186,204,20,159,88,222,153, + 118,164,187,224,104,148,101,255,103,251,67,246,59,235,57,71,137,79,246,53, + 97,210,132,30,170,229,142,244,184,28,249,106,4,102,122,110,114,140,10,151, + 218,57,242,115,163,81,70,130,32,244,17,86,111,21,127,150,160,210,171,209, + 231,12,74,239,114,141,52,32,225,32,45,159,218,107,172,208,186,230,112,175, + 123,236,56,109,239,141,99,1,132,112,98,113,15,223,91,130,79,246,53,169, + 214,85,164,199,245,98,166,247,70,16,68,215,37,108,15,206,108,129,136,182, + 184,73,105,111,113,227,152,125,205,165,37,251,117,167,55,114,174,148,80,117, + 21,233,241,88,162,103,16,209,131,109,235,12,134,60,55,156,21,189,35,201, + 159,32,8,109,2,4,78,239,168,65,201,159,82,19,45,247,48,150,182,244, + 230,1,157,101,210,106,104,98,105,171,187,193,31,211,101,86,157,68,187,110, + 233,187,35,136,246,37,172,21,189,205,128,108,17,70,160,122,37,8,194,40, + 66,71,31,50,78,180,63,209,156,15,104,134,112,133,42,95,87,19,71,38, + 8,29,126,20,44,65,116,4,72,224,136,110,7,9,4,65,116,15,72,223, + 8,130,32,136,46,9,9,28,65,16,4,209,37,161,46,74,130,232,100,80, + 23,43,65,232,131,244,141,32,8,130,232,146,132,61,209,155,32,58,59,139, + 31,127,220,84,79,232,133,231,159,15,24,173,89,176,108,153,169,249,23,44, + 89,210,165,70,131,18,68,180,9,232,162,252,77,126,190,169,127,200,167,151, + 46,85,253,67,146,173,200,109,197,10,179,175,73,138,25,215,23,170,124,145, + 216,248,100,247,126,6,0,147,38,143,143,202,247,176,247,243,114,6,0,215, + 253,215,104,221,249,83,23,37,65,232,35,172,24,220,158,61,101,186,254,96, + 19,39,142,137,184,81,48,195,86,103,43,175,153,172,249,235,95,25,0,252, + 244,39,63,137,200,222,111,242,243,217,45,55,223,41,126,254,96,203,198,0, + 225,136,244,120,164,101,43,40,40,80,60,86,80,80,64,2,71,16,221,148, + 136,98,112,159,151,93,162,248,106,148,151,94,174,97,74,175,209,192,172,50, + 155,69,180,175,253,200,145,35,56,114,228,136,153,89,182,11,191,201,207,103, + 124,139,70,254,191,251,195,105,166,244,106,244,28,206,170,87,206,152,94,206, + 104,228,73,16,93,153,176,4,238,243,178,75,84,133,194,168,96,168,53,240, + 47,189,92,195,204,110,236,181,202,28,107,161,147,94,95,180,68,78,42,6, + 209,236,102,140,21,63,187,231,127,241,179,123,254,215,244,107,81,19,46,169, + 128,233,57,135,195,133,200,44,65,90,245,202,25,102,118,158,4,209,29,8, + 219,131,203,28,100,83,220,218,59,175,142,100,171,61,203,194,69,224,233,165, + 75,5,222,69,103,134,48,132,186,17,136,244,120,172,225,2,53,56,195,22, + 176,157,59,253,7,12,206,104,251,46,164,251,164,155,52,15,78,230,160,120, + 100,14,138,215,180,171,52,0,69,107,80,10,207,51,84,190,4,65,180,161, + 41,112,106,93,66,90,141,112,230,32,27,170,207,12,214,101,124,253,251,181, + 140,231,85,86,250,18,202,74,95,210,109,199,40,213,103,6,135,44,183,156, + 104,118,137,201,237,73,175,63,115,144,13,235,223,175,141,200,174,82,220,41, + 210,152,215,231,101,151,32,115,144,77,85,164,34,61,174,23,51,189,56,169, + 80,113,246,239,251,157,234,249,242,99,74,233,57,153,131,226,177,113,83,240, + 247,168,37,100,74,199,72,212,8,34,60,52,5,206,204,59,255,80,140,25, + 251,48,0,4,137,92,123,33,245,128,162,109,139,95,51,175,3,179,232,217, + 179,167,40,210,61,123,246,140,56,63,46,202,106,55,10,145,30,151,35,143, + 187,189,249,198,255,51,86,224,48,224,2,54,126,194,175,130,142,241,125,90, + 2,24,10,46,96,74,67,254,249,62,179,167,23,16,68,119,37,100,23,101, + 119,20,185,174,32,110,0,240,171,255,249,31,65,233,125,103,224,55,249,249, + 140,199,220,164,27,23,185,104,196,226,180,196,141,19,137,200,105,137,155,120, + 14,137,28,65,152,134,174,137,222,79,47,93,42,240,59,233,104,55,250,99, + 198,62,44,118,215,69,163,209,15,69,87,17,55,0,120,255,131,77,108,255, + 222,253,226,251,59,110,185,173,83,136,28,23,55,37,184,200,169,29,215,203, + 223,223,187,16,32,32,82,193,10,120,175,145,199,254,125,191,19,5,143,231, + 247,163,57,125,130,234,120,227,166,90,86,94,246,71,241,179,84,188,170,207, + 94,22,180,79,154,46,212,117,16,4,161,142,40,112,242,152,143,154,23,165, + 247,174,57,84,28,78,106,79,205,86,89,233,75,128,206,198,127,253,251,181, + 236,7,119,164,43,54,224,122,99,130,90,163,14,229,34,164,100,107,253,251, + 181,172,250,140,46,83,1,215,44,191,126,110,75,235,154,244,192,197,77,254, + 190,171,224,23,185,176,68,128,11,17,23,166,241,19,126,165,232,193,101,12, + 252,6,0,112,170,230,114,113,159,210,121,74,194,198,185,243,182,244,0,175, + 76,234,193,237,253,252,118,6,0,119,74,246,241,243,120,58,18,58,130,8, + 15,81,224,66,53,164,82,207,102,253,251,15,135,252,195,13,26,112,66,243, + 248,15,238,72,23,184,200,201,197,67,234,217,132,202,135,163,53,113,122,208, + 128,19,186,68,142,123,170,252,125,224,209,165,33,211,255,224,142,116,65,239, + 68,111,248,61,85,64,221,131,139,68,220,214,252,245,175,236,200,145,35,1, + 93,204,107,254,250,87,102,116,194,119,40,145,213,58,206,143,173,127,191,150, + 169,221,196,68,42,226,102,194,69,78,234,153,201,209,211,141,169,70,193,146, + 37,66,193,178,101,172,96,217,50,166,214,77,169,167,27,147,32,8,125,232, + 154,38,208,149,186,237,66,209,85,98,142,82,113,3,124,215,21,206,132,111, + 233,141,136,28,169,128,105,165,13,37,128,134,11,21,69,180,98,108,145,136, + 27,71,43,198,70,226,70,16,230,18,82,224,186,147,184,113,58,187,200,189, + 188,250,21,213,114,107,29,83,67,77,132,248,126,45,145,10,247,152,30,222, + 124,227,255,69,252,187,60,113,202,133,19,167,92,1,251,244,12,50,209,74, + 47,165,170,186,53,104,159,158,65,38,82,238,188,45,93,80,202,135,32,8, + 109,66,206,131,3,186,151,184,113,58,179,200,85,159,174,86,157,7,87,125, + 186,218,20,27,209,228,233,165,75,5,181,41,1,102,12,48,145,242,171,71, + 46,17,128,54,161,226,91,191,75,30,9,16,46,233,62,233,38,205,131,83, + 85,221,42,110,106,104,77,19,80,35,84,158,4,65,4,18,114,30,156,82, + 67,89,85,173,117,199,234,210,29,55,251,193,29,233,2,207,107,204,216,135, + 131,196,77,203,142,81,6,13,56,17,178,220,114,212,174,223,12,228,246,164, + 215,95,85,237,10,219,187,121,249,181,87,52,71,186,62,189,116,169,240,242, + 107,198,189,184,88,195,69,78,190,113,113,51,195,123,227,112,129,82,123,213, + 123,14,231,191,31,24,32,240,87,254,62,82,164,121,154,145,31,65,116,7, + 194,94,15,206,76,241,49,51,175,142,100,43,20,209,40,75,245,169,208,30, + 154,158,115,148,168,170,118,33,115,144,77,181,220,145,30,151,35,95,141,192, + 76,207,77,142,30,225,210,115,14,39,26,66,68,226,70,16,198,8,235,89, + 148,255,53,230,180,234,43,127,175,151,135,31,28,40,60,252,224,64,129,191, + 87,122,53,11,105,249,212,94,99,133,214,53,135,123,221,47,175,214,246,222, + 56,79,47,93,42,132,19,139,251,175,49,167,81,85,237,82,173,171,72,143, + 235,197,76,239,141,32,136,174,75,216,30,156,217,2,17,109,113,147,210,222, + 226,198,49,251,154,31,92,248,128,238,244,70,206,149,18,170,174,34,61,30, + 75,244,172,232,189,113,211,187,186,207,13,103,69,239,127,254,235,31,186,207, + 165,209,149,4,97,140,0,129,211,59,160,226,131,45,27,35,54,28,75,91, + 122,243,208,91,38,45,239,33,150,182,186,27,124,224,137,89,117,34,23,36, + 179,33,65,34,136,246,37,64,224,98,217,152,146,45,194,8,84,175,4,65, + 24,69,136,104,73,111,162,91,16,205,169,18,102,8,87,168,242,117,53,113, + 100,130,208,225,71,193,18,68,71,128,4,142,232,118,144,64,16,68,247,128, + 244,141,32,8,130,232,146,144,192,17,4,65,16,93,146,176,167,9,16,68, + 71,132,186,31,9,130,224,144,7,71,16,4,65,116,73,72,224,8,130,32, + 136,46,73,200,46,74,175,100,197,100,11,160,57,220,218,200,185,161,210,154, + 153,151,89,231,134,74,75,101,54,231,220,80,105,35,201,139,32,136,238,131, + 46,15,110,251,246,122,108,223,94,31,208,208,200,241,2,140,159,103,20,181, + 180,122,236,2,128,135,49,230,97,44,224,28,189,101,102,140,65,150,84,119, + 153,149,210,234,45,179,18,29,189,158,149,224,117,16,78,153,149,190,55,189, + 105,245,216,37,8,162,123,67,93,148,4,65,16,68,151,196,144,192,169,221, + 229,243,187,236,112,208,147,86,203,187,8,229,1,104,149,57,28,207,77,111, + 218,112,61,34,173,180,237,89,207,161,80,243,166,244,216,85,251,14,245,164, + 37,47,142,32,8,53,20,5,206,11,48,190,1,192,244,233,169,186,51,228, + 231,202,243,48,154,214,168,93,65,16,16,110,153,5,65,8,187,204,210,180, + 70,237,118,198,122,150,219,227,215,31,78,153,195,77,107,212,46,65,16,221, + 147,160,71,117,169,221,53,79,159,158,42,198,65,166,79,79,21,131,251,210, + 243,165,231,200,211,42,13,6,208,155,86,201,46,208,118,231,47,8,130,161, + 180,82,15,76,43,173,90,153,245,164,85,43,179,82,62,82,164,121,106,213, + 179,90,90,61,245,108,196,174,90,62,242,235,149,214,137,209,223,6,79,27, + 39,81,45,163,105,185,93,154,7,71,16,4,39,64,223,180,186,132,182,111, + 175,215,188,211,87,107,132,120,90,45,15,35,84,90,45,187,106,34,99,70, + 90,173,50,71,98,87,171,139,147,49,22,178,158,181,210,134,170,231,112,237, + 134,250,109,104,121,84,161,190,223,104,165,37,8,162,123,19,214,32,19,222, + 248,71,59,38,164,102,23,8,29,123,83,75,27,237,216,155,154,221,112,236, + 117,132,122,54,10,23,217,112,236,242,239,52,156,180,20,139,35,8,66,14, + 141,162,36,8,130,32,186,36,36,112,4,65,16,68,151,36,44,129,227,131, + 16,44,128,96,100,4,158,204,176,225,180,210,193,15,113,6,131,47,210,50, + 135,27,183,9,39,173,218,128,13,35,105,219,179,158,141,194,7,123,132,99, + 151,127,167,225,164,85,27,96,67,16,68,247,197,34,251,160,218,176,104,5, + 251,1,237,129,21,161,26,204,80,105,181,236,106,13,142,136,52,173,86,153, + 35,177,171,37,148,90,131,87,0,237,129,21,161,26,249,80,105,67,149,89, + 235,122,181,98,147,161,190,223,104,165,37,8,162,123,163,184,162,183,82,176, + 94,107,8,185,124,72,183,28,173,70,55,84,218,80,67,215,165,83,5,140, + 150,89,58,196,220,104,153,181,210,134,42,179,52,31,163,101,110,175,122,214, + 42,179,210,20,1,189,118,149,166,8,24,77,43,181,75,211,4,8,130,224, + 40,118,81,242,46,38,222,104,24,25,209,198,207,149,231,97,52,173,81,187, + 140,49,132,91,102,222,80,134,83,102,105,90,163,118,59,99,61,203,237,25, + 241,160,228,101,14,55,173,81,187,4,65,116,79,12,197,224,212,238,238,163, + 29,35,210,242,42,66,197,226,180,202,28,205,88,156,25,177,55,37,187,237, + 85,207,161,80,235,30,213,99,87,237,59,212,147,150,98,111,4,65,168,65, + 163,40,9,130,32,136,46,137,98,12,78,74,103,92,243,139,202,172,63,109, + 87,43,51,197,224,8,130,224,132,20,56,130,232,76,144,192,17,4,193,33, + 125,35,8,130,32,186,36,36,112,4,65,16,68,151,196,10,0,11,150,149, + 50,151,179,17,0,96,75,236,137,215,151,140,13,136,107,240,227,242,99,106, + 251,149,48,35,143,80,121,203,203,47,221,111,181,38,225,207,203,174,139,250, + 104,59,179,108,242,124,228,121,168,237,55,43,143,80,191,5,241,188,37,123, + 153,203,229,128,205,150,140,148,180,12,252,225,209,65,166,214,45,117,53,18, + 4,17,41,194,253,203,74,89,249,238,34,156,63,117,8,0,208,55,227,42, + 140,158,60,95,108,216,102,255,242,93,246,159,242,77,112,216,207,35,125,224, + 80,140,156,56,15,127,94,118,157,32,223,47,77,35,199,140,60,148,184,119, + 201,94,118,174,250,16,190,57,180,29,246,250,234,128,242,3,128,244,186,82, + 82,7,225,242,171,166,163,223,160,171,116,11,131,215,237,9,89,6,139,53, + 78,20,130,5,178,186,52,98,83,110,191,124,119,17,106,107,142,33,57,165, + 47,174,24,125,27,214,253,223,15,133,123,151,236,101,95,236,121,43,104,191, + 89,121,200,203,47,255,45,112,126,246,68,49,59,242,197,63,81,123,246,24, + 122,244,232,131,75,135,76,64,122,255,225,72,31,48,60,72,232,184,16,122, + 93,174,208,117,105,179,193,102,75,198,235,203,174,163,117,221,8,130,136,24, + 171,203,217,136,243,167,14,161,248,195,63,163,166,166,6,115,231,255,26,78, + 187,111,82,237,236,95,190,203,190,220,243,55,156,56,246,9,246,126,250,17, + 110,191,235,17,92,60,127,2,183,45,40,10,218,207,211,200,49,35,15,57, + 92,216,246,110,251,35,234,206,85,224,194,153,163,248,250,203,125,1,229,183, + 88,227,196,235,106,104,104,192,117,55,220,136,186,115,21,72,235,151,141,219, + 22,20,49,53,209,145,54,242,173,173,206,144,101,137,143,79,68,223,140,171, + 68,81,12,199,166,28,105,62,87,94,51,1,173,78,59,110,91,80,196,46, + 158,63,17,180,127,246,47,223,101,74,34,23,78,30,78,123,189,234,111,1, + 0,30,121,177,154,213,158,57,130,234,138,189,56,117,236,19,124,242,209,219, + 184,122,212,245,56,119,250,16,250,93,114,21,46,29,50,1,63,123,162,152, + 113,161,91,176,100,47,251,207,129,127,224,204,183,135,224,114,53,133,172,75, + 155,173,7,6,92,122,21,22,44,217,203,94,123,250,191,66,158,79,16,4, + 161,133,213,235,246,160,181,213,137,134,134,6,212,215,215,163,181,213,137,102, + 251,133,0,1,226,226,97,175,63,141,19,199,62,70,109,205,49,84,87,150, + 224,235,47,247,225,228,201,147,170,66,32,21,183,112,243,144,162,38,108,13, + 13,13,168,169,169,17,203,15,0,252,186,56,197,219,54,33,57,57,57,164, + 232,72,133,65,139,134,134,6,0,128,195,225,8,16,130,112,108,202,145,150, + 189,120,219,38,228,204,184,13,173,110,39,210,7,14,133,189,254,116,192,126, + 94,207,114,145,51,154,199,109,11,138,88,179,253,66,208,111,129,243,200,139, + 213,172,234,232,199,168,248,106,27,106,78,30,192,197,11,39,224,114,185,176, + 103,247,86,184,221,110,76,206,249,126,144,208,213,157,255,6,85,223,236,195, + 206,15,94,247,213,173,134,23,215,210,210,130,166,166,38,252,244,193,231,112, + 249,136,25,154,117,79,16,4,161,7,171,244,131,219,237,70,75,83,93,144, + 0,113,241,104,172,175,198,127,74,55,193,229,168,199,127,190,62,128,154,154, + 26,177,161,151,163,36,110,70,243,224,168,9,27,0,177,49,174,173,173,133, + 221,110,71,124,124,98,80,122,135,195,129,250,250,122,184,92,174,144,162,35, + 21,134,134,134,6,56,28,14,213,134,217,225,112,192,237,118,139,231,91,172, + 113,185,106,59,108,0,0,32,0,73,68,65,84,136,143,79,20,203,196,211, + 134,43,116,188,94,182,254,115,29,190,123,211,109,56,87,125,24,46,71,125, + 192,254,155,190,63,91,172,111,37,79,78,111,30,92,252,90,154,234,0,248, + 126,11,82,170,142,126,140,131,123,255,142,234,138,189,248,234,192,103,112,185, + 92,104,105,105,65,125,189,79,216,63,220,252,14,226,227,227,113,227,247,102, + 137,66,151,146,58,0,110,167,29,0,80,87,87,135,150,150,22,180,182,182, + 42,94,43,23,56,151,171,73,87,119,38,65,16,68,40,172,242,29,114,1, + 226,141,181,211,233,68,139,243,34,90,156,23,81,89,89,137,134,134,6,156, + 63,127,94,81,84,228,226,22,78,30,128,62,97,107,104,104,128,221,110,135, + 219,237,198,130,133,143,98,232,53,223,131,45,49,5,46,127,195,10,180,121, + 14,14,135,35,164,232,212,84,238,135,187,197,33,158,207,27,112,37,220,110, + 55,236,246,54,59,182,196,158,72,237,63,4,215,221,112,35,54,190,183,6, + 110,183,27,13,13,13,176,90,173,134,132,142,11,37,47,187,195,225,192,191, + 183,110,194,148,41,83,2,174,201,225,112,168,138,156,209,60,164,226,39,103, + 193,146,189,172,100,231,107,168,174,216,139,178,125,59,209,216,216,136,166,166, + 38,216,237,118,180,182,182,6,220,0,172,125,115,53,122,244,232,129,121,247, + 62,142,158,77,25,104,186,120,86,20,67,105,93,73,225,121,56,28,14,213, + 186,38,8,130,48,74,128,192,89,173,214,32,1,170,174,174,134,221,110,199, + 156,57,115,0,0,95,124,241,133,232,141,213,215,215,7,136,10,160,44,110, + 70,243,48,42,108,247,45,88,132,212,190,151,99,232,53,223,195,21,163,111, + 195,159,151,93,39,204,251,213,118,213,65,10,106,66,119,238,212,151,240,184, + 91,208,232,31,176,162,213,165,6,248,4,78,234,233,188,190,100,172,48,251, + 151,239,50,183,171,25,247,44,120,2,245,231,191,193,186,247,254,106,88,232, + 164,66,185,245,159,235,196,50,239,218,181,11,83,166,76,193,200,145,35,177, + 107,215,46,113,191,146,200,25,205,67,46,126,82,92,46,7,234,234,78,162, + 108,223,78,209,83,150,10,27,23,38,183,219,141,159,47,120,16,9,137,61, + 1,0,78,71,29,236,141,103,1,64,244,220,212,60,56,158,158,32,8,194, + 44,2,4,46,57,57,25,128,79,128,212,132,9,128,40,76,247,45,88,132, + 75,135,94,47,138,202,130,101,165,108,255,246,87,66,138,91,168,60,202,119, + 23,225,244,55,165,65,194,198,61,42,187,221,14,167,211,137,251,22,44,66, + 207,212,65,200,186,114,26,134,143,189,221,240,104,69,169,208,109,253,231,58, + 216,108,54,76,156,56,81,180,23,14,124,164,226,185,234,67,56,82,250,15, + 204,95,176,24,141,245,213,120,127,227,223,85,109,230,204,184,13,117,231,42, + 208,239,210,171,177,96,89,41,227,66,217,80,91,133,239,222,116,27,254,189, + 117,147,152,238,195,15,63,196,204,153,51,49,101,202,20,236,218,181,75,220, + 191,241,189,53,184,115,206,79,17,159,152,130,123,151,236,13,43,15,46,126, + 114,120,151,97,109,109,45,206,156,57,131,219,111,191,3,0,240,143,127,188, + 15,151,203,5,171,213,138,57,115,126,8,0,72,73,189,4,61,123,15,66, + 227,197,106,124,188,227,125,92,115,205,181,97,213,35,65,16,68,164,4,76, + 244,230,141,31,23,18,183,219,45,10,211,158,61,123,0,64,220,63,119,238, + 92,216,146,83,49,40,99,180,56,204,220,229,108,68,67,109,149,40,110,60, + 70,101,52,143,218,154,99,216,178,97,53,246,126,250,81,192,0,18,105,153, + 230,205,155,7,91,114,42,50,134,79,198,240,177,183,99,211,235,243,133,112, + 230,156,113,239,170,182,182,22,231,207,159,199,135,31,126,40,138,112,184,252, + 121,217,117,194,166,215,231,11,195,199,222,142,140,225,147,97,75,78,197,204, + 153,51,49,115,230,76,241,38,130,219,172,169,169,193,123,111,255,5,127,42, + 92,130,134,218,42,240,57,104,235,254,239,135,194,160,172,209,176,37,167,98, + 202,148,41,72,78,78,22,187,68,63,252,240,67,0,8,218,255,246,91,175, + 193,94,95,13,183,187,57,172,60,26,26,26,176,107,215,46,177,158,229,180, + 182,182,98,246,93,63,65,74,234,37,136,79,76,65,122,122,58,230,204,249, + 161,40,110,187,119,127,140,22,103,35,26,47,86,163,197,127,29,128,47,190, + 70,16,4,17,107,2,4,206,237,118,99,230,204,153,226,0,9,171,213,138, + 205,155,55,3,0,38,78,156,40,222,233,243,253,46,71,61,170,79,149,99, + 246,47,223,101,128,47,6,213,43,61,19,87,94,51,65,244,82,194,201,35, + 125,224,80,220,60,107,33,174,187,225,70,84,87,87,139,93,146,110,183,27, + 86,171,21,31,126,248,33,118,237,218,5,151,163,30,167,142,236,198,145,210, + 127,224,182,5,69,236,222,37,123,117,207,157,114,187,221,112,58,157,112,58, + 157,176,219,237,176,219,237,168,175,175,199,204,153,51,49,114,228,200,136,226, + 65,247,46,217,203,110,91,80,196,142,148,254,3,167,142,236,134,203,81,143, + 202,202,74,81,56,185,200,240,109,246,156,159,224,190,69,203,208,43,61,19, + 54,127,247,222,236,95,190,203,170,43,203,197,180,60,29,0,204,156,57,19, + 64,155,55,204,175,99,238,188,95,32,37,117,16,172,214,164,176,242,176,219, + 237,152,50,101,138,120,99,194,177,216,108,226,251,132,196,158,232,217,123,16, + 18,18,123,98,242,228,239,0,0,202,203,203,80,94,94,134,248,248,120,180, + 58,237,176,215,159,198,161,131,165,104,106,106,10,176,73,16,4,17,75,20, + 31,213,197,27,63,0,162,160,0,62,129,226,30,136,213,106,197,251,27,255, + 142,234,202,18,252,167,124,147,216,45,54,228,170,25,24,60,116,146,56,252, + 60,156,60,70,78,156,135,177,83,23,96,232,53,223,195,61,11,158,192,29, + 119,254,8,64,112,204,107,103,241,191,176,125,235,223,113,226,216,39,40,221, + 249,58,246,110,251,163,40,148,106,72,133,141,111,60,142,151,247,196,239,209, + 119,224,8,36,36,246,22,203,104,148,217,191,124,151,237,221,246,71,148,238, + 124,29,39,142,125,130,253,123,182,4,12,214,169,173,173,21,61,36,110,115, + 216,232,219,48,118,234,2,140,157,114,159,56,97,252,248,161,109,190,122,241, + 167,109,104,104,128,211,233,12,232,234,117,56,28,226,254,5,11,31,197,224, + 161,147,2,186,122,141,230,49,119,238,92,0,190,174,106,171,181,173,247,218, + 102,75,198,192,140,81,152,59,127,49,226,227,147,68,15,237,196,137,74,28, + 61,122,4,0,196,65,36,187,119,127,140,207,63,223,131,51,103,206,160,174, + 174,46,172,58,36,8,130,48,131,160,81,148,9,137,189,97,75,78,197,29, + 119,254,72,140,219,184,221,110,108,222,188,25,183,222,122,107,64,220,198,237, + 118,227,189,183,255,130,135,254,103,133,56,106,113,221,255,253,80,224,34,115, + 211,247,103,99,235,63,215,25,206,131,119,53,74,159,84,114,223,194,167,52, + 7,109,0,16,69,245,222,37,123,153,116,20,37,135,139,153,84,40,249,0, + 149,97,163,111,195,229,87,77,71,115,195,89,28,220,243,118,200,138,83,242, + 74,196,24,228,145,143,113,176,116,39,0,237,65,49,220,166,210,92,188,250, + 179,199,197,174,222,147,39,79,162,190,190,30,243,230,205,3,208,38,76,231, + 207,159,23,7,233,12,30,58,9,215,76,252,113,64,87,175,145,60,238,91, + 176,8,61,211,7,195,229,168,135,77,226,177,1,192,235,203,174,19,126,246, + 68,49,75,73,233,139,175,203,223,199,230,247,94,134,213,106,21,135,254,243, + 209,145,77,77,77,162,215,230,114,185,196,174,75,142,214,0,19,130,32,8, + 179,9,18,184,158,169,131,144,49,124,50,26,106,171,68,129,226,119,248,92, + 252,248,160,5,190,95,62,73,91,73,228,140,230,1,24,19,58,0,216,248, + 222,26,44,124,228,119,1,83,4,248,96,17,169,183,6,4,11,27,23,153, + 121,191,218,206,14,151,253,3,64,219,60,55,181,46,54,249,126,46,42,7, + 75,119,134,37,108,28,233,228,123,222,69,43,21,32,0,1,35,80,229,226, + 22,78,30,151,14,189,30,189,210,51,113,234,200,238,32,15,14,0,222,252, + 109,142,240,179,39,138,153,221,126,30,183,206,121,16,181,53,199,176,233,253, + 183,131,70,83,242,250,250,229,67,139,145,214,47,91,28,69,217,210,210,162, + 57,42,53,212,136,85,130,32,8,163,136,173,24,111,156,18,122,164,33,115, + 232,245,0,174,71,188,53,17,55,125,127,182,56,167,75,46,126,124,191,18, + 114,145,11,39,15,78,40,161,147,122,102,74,66,201,69,6,80,23,54,126, + 46,159,63,198,235,131,139,147,22,124,190,153,146,168,24,17,54,57,14,135, + 67,236,126,148,10,144,195,225,128,221,110,87,21,183,112,242,24,62,246,118, + 0,192,185,111,191,10,138,193,113,222,252,109,142,176,96,201,94,214,119,224, + 80,124,123,124,31,230,221,251,56,46,94,56,129,183,215,254,9,46,151,11, + 110,183,27,247,47,124,20,189,251,12,198,21,99,124,249,213,156,60,32,78, + 226,86,203,151,195,143,89,100,30,36,65,16,68,56,88,121,131,206,239,160, + 227,227,19,209,59,253,50,188,245,187,233,162,64,221,57,231,167,120,251,173, + 215,144,208,35,13,67,174,154,1,151,171,9,241,214,68,113,191,210,36,109, + 32,80,228,194,205,67,138,154,208,93,172,255,22,111,21,189,12,183,219,45, + 230,195,175,139,79,48,215,43,50,182,196,158,232,155,113,21,230,206,255,181, + 161,103,81,38,166,164,194,229,108,20,197,209,233,116,226,158,249,15,132,37, + 108,210,239,100,238,188,95,136,2,100,179,245,192,185,111,191,130,203,229,194, + 188,249,15,106,138,91,56,121,204,251,213,118,38,255,45,200,121,125,217,117, + 194,35,47,86,179,244,254,195,113,233,144,9,248,246,248,62,60,240,223,203, + 112,241,194,9,188,89,244,50,122,247,25,140,171,39,204,193,160,236,235,224, + 117,185,144,208,35,13,63,125,240,57,221,207,162,204,188,124,2,108,182,240, + 226,159,4,65,16,82,104,53,1,5,140,172,38,0,0,137,41,169,221,106, + 53,1,14,127,248,114,237,217,35,248,246,248,62,52,53,93,64,122,255,161, + 24,62,242,251,120,243,183,57,190,60,105,53,1,130,32,218,9,193,130,208, + 107,128,221,187,100,47,115,187,155,131,142,169,237,87,194,140,60,180,242,118, + 57,237,1,75,215,0,129,66,101,75,76,137,233,122,112,145,218,236,232,235, + 193,73,121,228,197,106,102,175,59,5,190,62,220,235,38,212,51,9,28,65, + 16,145,34,172,88,177,130,57,157,234,93,113,137,137,202,93,135,115,230,220, + 137,247,222,219,136,112,211,2,64,102,230,229,6,138,218,70,85,213,55,157, + 46,173,0,224,241,39,158,16,63,63,255,219,223,66,79,11,254,204,51,207, + 132,101,15,0,158,122,234,41,205,227,21,21,21,24,146,157,173,179,92,90, + 154,21,156,194,140,59,9,35,10,247,220,115,207,233,58,239,201,39,159,12, + 248,28,39,8,81,187,233,169,57,123,150,29,58,116,8,135,14,29,66,121, + 121,57,0,224,245,87,95,165,133,97,9,34,70,88,1,224,206,59,239,52, + 148,104,196,136,17,168,170,250,6,145,166,5,128,195,135,15,3,0,4,65, + 128,197,18,60,45,143,49,223,255,215,235,245,2,0,62,252,240,67,81,32, + 205,72,171,151,72,211,226,209,71,145,157,157,29,116,172,162,162,66,51,237, + 221,119,223,141,181,107,215,2,128,248,24,49,45,102,204,152,33,230,27,42, + 239,181,107,215,2,79,61,165,88,174,54,244,180,199,252,156,182,182,246,120, + 8,219,67,178,179,81,115,230,140,118,182,3,6,232,176,221,134,92,188,228, + 236,220,185,19,207,61,247,92,200,243,194,101,239,254,253,236,131,15,62,192, + 254,253,251,81,86,86,134,65,131,6,97,224,192,129,24,62,124,56,38,76, + 152,16,21,155,4,65,168,163,56,209,59,214,8,130,32,138,148,124,139,139, + 139,131,197,98,129,218,141,118,36,105,99,77,118,118,182,184,25,225,238,187, + 239,6,224,123,212,89,90,90,154,234,38,21,55,115,202,101,180,222,2,207, + 207,206,206,198,182,109,219,84,63,3,192,128,1,3,112,224,192,1,213,207, + 102,243,228,147,79,42,122,123,123,95,25,199,164,219,209,227,199,89,221,197, + 139,134,188,163,15,62,248,0,223,126,251,45,110,190,249,102,188,245,214,91, + 168,174,174,70,245,169,83,66,241,246,237,194,11,207,63,47,140,24,17,250, + 185,156,219,139,139,217,246,226,98,242,202,8,194,4,130,230,193,197,26,46, + 80,113,113,113,65,115,175,0,159,23,198,24,19,189,48,179,210,182,7,70, + 133,77,10,247,228,182,108,217,130,155,111,190,57,232,248,184,113,227,0,24, + 23,55,245,114,133,123,83,32,128,123,114,21,21,21,162,232,42,125,6,128, + 51,103,206,96,212,168,81,170,159,205,68,106,123,201,146,37,226,196,243,189, + 175,140,99,215,61,80,18,112,193,123,95,185,139,213,141,123,5,117,23,47, + 178,180,222,189,117,85,198,152,49,99,176,52,63,63,236,187,169,175,14,31, + 102,139,22,45,194,244,233,211,195,205,130,32,8,9,29,66,224,184,199,149, + 149,149,165,120,206,137,19,39,224,241,120,130,132,42,146,180,82,70,140,24, + 161,184,95,79,87,164,145,180,145,8,28,160,46,114,145,136,155,25,229,138, + 21,130,32,136,221,206,225,192,5,109,231,206,157,162,216,113,113,243,176,87, + 2,50,142,19,30,16,246,190,242,0,59,90,226,59,71,60,80,2,164,61, + 254,14,250,246,237,11,189,194,167,151,93,187,118,97,215,174,93,232,211,167, + 143,33,97,37,8,66,153,32,129,227,207,140,148,35,125,62,165,26,225,166, + 229,158,216,139,47,190,168,120,124,206,156,57,33,187,40,195,73,203,81,75, + 171,231,154,141,164,13,16,160,48,69,69,46,114,145,138,155,114,185,34,109, + 87,5,0,199,145,157,157,141,87,95,125,85,20,19,249,103,192,215,37,185, + 117,235,86,209,107,147,127,14,202,57,66,145,83,66,46,110,124,95,156,240, + 64,80,69,188,124,63,216,133,191,255,29,63,250,209,143,76,45,195,87,135, + 15,179,123,239,189,23,0,176,97,195,134,32,79,151,32,8,227,4,9,220, + 163,143,62,170,120,162,30,111,38,156,180,92,124,4,65,192,143,127,252,99, + 197,115,248,19,46,228,66,21,73,90,41,122,132,204,140,180,102,8,28,208, + 38,114,102,136,155,153,229,82,202,55,26,93,148,209,16,57,148,0,37,37, + 175,6,236,10,240,220,2,88,135,186,109,235,112,244,248,113,54,108,200,144, + 136,189,172,154,179,103,217,162,69,139,176,111,223,62,113,223,243,207,63,143, + 237,197,197,108,122,78,14,121,113,4,17,38,65,2,103,116,132,160,89,105, + 187,3,114,33,170,168,168,16,71,72,134,75,36,211,8,164,229,48,155,33, + 58,132,114,96,168,81,146,26,55,37,166,138,92,73,9,74,74,74,32,143, + 195,41,225,217,255,10,139,27,255,128,240,242,253,96,23,46,252,221,20,243, + 123,246,236,65,118,118,54,70,141,26,133,3,7,14,32,61,61,29,3,6, + 12,192,238,221,187,113,162,170,138,13,206,204,12,40,215,137,170,42,6,0, + 242,253,4,65,4,210,238,49,56,41,3,7,14,84,220,127,234,212,169,168, + 166,141,85,12,238,129,251,239,15,248,60,36,59,27,8,49,87,77,139,223, + 0,17,165,231,200,203,37,24,154,129,166,140,160,48,109,195,40,161,74,97, + 182,39,167,212,85,25,68,73,9,60,236,21,246,234,3,15,136,107,236,69, + 66,221,197,139,236,252,249,243,184,243,246,219,133,101,207,60,195,248,8,210, + 39,159,124,18,19,39,78,12,90,44,182,230,236,89,182,97,195,6,92,113, + 197,21,17,219,38,136,174,78,135,136,193,113,212,226,89,63,252,225,15,21, + 247,71,59,173,217,49,184,191,189,221,182,12,207,143,231,206,213,37,35,27, + 55,110,212,113,150,50,161,230,40,158,61,123,22,3,250,247,87,40,87,228, + 142,129,197,148,169,222,218,20,20,20,68,221,134,25,108,47,46,102,59,119, + 238,196,225,195,7,131,142,73,7,146,164,167,167,3,240,61,32,251,147,79, + 62,193,157,183,223,30,80,137,53,103,207,178,167,158,122,10,105,105,105,226, + 218,125,4,65,168,211,238,49,56,41,161,226,104,209,74,27,171,24,92,255, + 254,253,131,246,157,61,123,86,51,205,13,55,220,128,79,63,253,20,0,130, + 238,230,149,224,131,31,206,158,61,27,50,239,79,63,253,20,184,243,78,197, + 114,117,4,228,2,38,253,92,80,80,128,252,252,252,216,22,8,64,9,74, + 48,14,227,130,246,159,168,170,98,101,101,101,65,251,243,151,46,101,60,238, + 56,101,202,20,205,188,51,50,50,48,112,224,64,212,212,212,224,221,119,223, + 197,203,175,188,194,102,205,154,133,150,150,22,148,149,149,225,142,59,238,64, + 125,125,61,94,126,249,101,211,71,112,18,68,87,132,98,112,49,228,220,185, + 115,97,165,227,34,151,144,144,160,58,0,131,49,38,14,247,15,37,108,102, + 149,43,218,200,5,140,11,92,84,197,173,164,36,196,113,64,170,111,95,29, + 62,204,110,185,229,22,92,126,249,229,138,2,246,218,107,175,137,239,31,121, + 228,17,20,111,223,174,154,245,196,137,19,113,253,245,215,99,195,134,13,56, + 121,242,36,158,126,250,105,108,222,188,25,0,240,249,231,159,163,182,182,22, + 133,133,133,160,129,39,4,161,15,138,193,33,118,49,184,105,211,166,133,204, + 79,13,46,114,7,14,28,8,18,185,72,196,45,210,114,197,154,246,242,220, + 212,152,55,111,30,78,158,60,9,0,24,58,116,104,144,128,253,251,223,255, + 198,142,29,59,48,109,218,52,92,61,98,132,166,48,13,236,223,95,248,227, + 255,253,31,219,176,97,3,0,160,166,166,6,91,182,108,1,224,235,190,44, + 40,40,192,131,15,4,79,93,32,8,66,25,138,193,105,164,53,59,6,23, + 105,87,160,84,228,70,142,28,9,192,55,208,34,18,113,51,163,92,177,34, + 26,226,150,54,227,29,148,108,187,11,0,80,242,192,171,40,65,8,15,14, + 64,201,3,15,96,243,233,219,112,253,245,89,72,75,75,67,93,93,29,102, + 204,152,129,23,94,120,1,175,191,26,56,213,32,148,168,201,153,51,103,14, + 106,107,107,241,219,223,254,22,78,167,19,137,137,137,184,246,218,107,241,192, + 3,139,48,107,214,109,88,98,194,160,34,130,232,46,80,12,14,177,139,193, + 5,8,80,152,162,194,69,238,139,47,190,192,200,145,35,113,249,229,151,7, + 231,109,16,51,202,21,11,66,137,219,206,157,59,13,231,217,183,111,95,212, + 141,123,5,91,183,110,69,37,42,1,133,248,154,18,215,95,159,133,155,110, + 186,9,215,141,31,47,0,192,235,175,190,26,36,110,225,48,176,127,255,0, + 65,116,216,237,248,252,179,207,240,249,103,159,225,222,249,17,103,79,16,221, + 10,138,193,197,144,29,59,118,180,125,136,224,73,24,92,228,34,245,220,204, + 46,87,123,178,100,201,146,176,210,165,245,238,45,212,93,188,200,210,210,210, + 196,149,204,245,96,179,217,208,183,111,223,176,108,18,4,17,27,40,6,135, + 216,197,224,250,245,235,23,240,249,236,217,179,226,8,201,112,137,100,26,1, + 71,94,174,142,130,210,18,72,166,231,47,8,44,53,53,53,252,76,104,61, + 54,130,232,176,80,12,78,35,173,217,49,184,27,101,79,137,31,208,191,63, + 96,112,61,189,32,34,77,143,224,114,153,50,209,187,99,172,196,68,16,68, + 55,134,98,112,136,93,12,46,156,21,189,163,137,250,138,222,157,99,162,55, + 65,16,132,22,20,131,139,33,225,172,232,29,42,175,103,158,121,70,92,16, + 213,40,250,86,244,38,8,130,232,156,80,12,14,157,103,61,56,121,62,37, + 254,73,201,107,215,174,13,91,228,204,44,23,65,16,68,71,162,83,199,224, + 248,131,118,25,99,154,235,193,73,207,53,98,215,236,24,156,25,66,34,23, + 183,155,111,190,25,91,182,108,137,72,228,130,203,197,16,217,154,112,12,160, + 24,28,65,16,237,76,167,142,193,49,198,224,245,122,33,8,130,40,100,242, + 227,124,53,111,45,129,139,85,12,46,82,129,147,139,27,39,82,145,35,15, + 142,32,136,174,72,167,142,193,121,60,30,81,228,56,82,33,99,140,5,136, + 92,123,19,201,194,162,106,226,198,137,68,228,148,203,21,174,23,215,222,67, + 103,8,130,32,124,116,234,24,156,195,225,128,32,8,16,4,33,96,206,148, + 180,235,18,104,19,66,53,34,137,193,25,33,92,129,227,226,182,109,219,54, + 205,243,38,78,156,136,61,123,246,24,22,57,245,114,25,21,57,18,55,130, + 32,58,14,166,198,224,34,197,104,12,238,244,233,211,16,252,171,62,243,197, + 47,149,186,35,185,39,103,212,174,217,215,28,141,21,189,213,48,146,175,246, + 72,78,94,111,90,66,71,194,70,16,68,199,35,162,24,156,218,185,225,98, + 52,6,119,252,248,241,160,125,78,167,83,53,255,196,196,68,197,253,70,132, + 76,77,12,245,216,53,123,69,111,179,144,151,75,249,9,34,90,2,71,3, + 74,8,130,232,120,68,20,131,139,228,81,74,39,78,4,139,147,94,6,15, + 30,18,118,218,57,115,194,127,242,71,36,118,241,232,163,97,173,232,29,77, + 212,86,244,38,8,130,232,10,116,234,24,156,89,196,42,6,23,206,138,222, + 161,242,218,184,113,35,110,184,225,134,176,242,232,232,43,122,19,4,65,68, + 66,167,142,193,69,219,174,217,215,108,214,202,217,92,144,190,249,230,27,0, + 62,161,10,87,228,204,44,23,65,16,68,71,194,212,121,112,145,18,201,243, + 36,35,33,22,226,13,152,179,114,182,92,220,70,142,28,137,47,190,248,34, + 34,145,235,76,43,122,19,4,65,232,197,212,121,112,132,54,145,118,5,242, + 244,21,21,21,226,232,81,32,114,145,163,46,74,130,32,186,34,20,131,67, + 236,98,112,145,172,156,45,21,55,192,55,245,129,207,1,4,128,81,163,70, + 225,192,129,3,97,137,92,103,89,209,155,32,8,194,8,20,131,211,176,107, + 246,53,135,187,114,54,23,183,191,255,253,239,33,207,77,72,72,48,44,114, + 93,97,69,111,130,32,8,57,20,131,67,236,98,112,145,174,232,157,144,144, + 160,251,92,35,249,118,212,21,189,9,130,32,34,129,98,112,49,66,176,88, + 48,67,250,25,128,114,135,108,108,17,128,160,114,17,4,65,116,5,40,6, + 135,216,197,224,8,130,32,136,216,65,49,56,13,187,177,234,186,36,8,130, + 32,204,135,98,112,32,33,35,8,130,232,138,80,12,142,32,8,130,232,146, + 80,12,14,20,131,35,8,130,232,138,80,12,78,195,46,117,93,18,4,65, + 116,94,40,6,7,18,50,130,32,136,174,8,197,224,8,130,32,136,46,9, + 197,224,64,49,56,130,32,136,174,8,197,224,52,236,82,215,37,65,16,68, + 231,133,98,112,32,33,35,8,130,232,138,80,12,142,32,8,130,232,146,80, + 12,14,20,131,35,8,130,232,138,180,123,12,142,49,38,190,170,197,194,230, + 204,153,19,112,174,217,80,12,142,32,8,162,235,209,238,49,56,198,24,188, + 94,47,4,65,16,133,76,126,220,227,241,192,235,245,70,77,224,72,200,8, + 130,32,186,30,237,30,131,243,120,60,162,200,113,164,66,198,24,11,16,57, + 130,32,8,130,208,67,187,199,224,28,14,7,4,65,128,32,8,176,88,44, + 226,126,105,215,37,208,38,132,4,65,16,4,161,135,118,23,184,211,167,79, + 67,16,124,235,72,11,130,32,122,115,114,49,227,158,28,65,16,4,65,232, + 193,170,22,115,139,21,199,143,31,15,218,231,116,58,85,207,79,76,76,140, + 216,166,218,160,146,104,219,37,8,130,32,98,135,192,200,45,34,8,66,1, + 129,119,173,104,176,104,209,162,177,133,133,133,165,252,213,160,137,2,0,249, + 0,150,250,223,203,237,83,219,68,68,68,187,119,81,18,4,209,57,89,180, + 104,81,137,255,149,239,26,167,51,233,149,0,254,7,192,77,0,60,0,238, + 5,144,1,224,247,0,190,54,183,148,68,119,134,60,56,130,32,20,81,242, + 224,22,45,90,20,15,32,25,64,18,128,9,0,158,3,144,8,159,88,57, + 0,52,3,112,20,22,22,182,170,100,123,23,128,53,207,60,243,172,237,246, + 219,103,99,196,136,108,156,56,113,2,239,188,243,14,126,253,235,95,187,0, + 252,20,192,59,126,251,212,54,17,17,65,2,71,16,132,34,114,129,91,180, + 104,81,50,128,225,0,174,6,112,25,128,76,0,131,253,135,79,0,168,2, + 112,18,192,87,0,142,20,22,22,58,100,89,94,9,224,192,142,29,59,108, + 165,165,169,176,219,91,177,100,201,4,241,96,113,113,49,166,77,155,230,2, + 48,10,192,215,36,112,68,164,88,66,159,66,16,68,119,103,209,162,69,189, + 1,76,2,48,23,192,52,0,3,0,92,132,175,107,177,202,255,126,128,255, + 216,92,0,147,252,105,164,252,207,179,207,62,107,203,201,201,193,79,127,122, + 5,222,125,247,24,78,159,110,18,15,230,228,228,224,217,103,159,181,193,215, + 125,73,16,17,67,30,28,65,16,138,112,15,206,47,84,51,1,76,134,47, + 102,86,7,160,1,190,238,200,254,0,206,0,16,224,235,182,236,5,32,13, + 64,28,128,143,1,252,171,176,176,240,162,63,203,147,199,142,29,203,28,50, + 100,8,0,96,201,146,207,209,212,228,70,114,178,21,3,7,38,99,209,162, + 107,113,252,248,113,12,29,58,180,10,192,101,228,193,17,145,66,2,71,16, + 29,18,6,198,60,240,122,129,211,167,91,176,125,71,3,246,126,222,128,175, + 191,174,71,205,105,23,26,26,156,176,88,24,250,244,141,195,160,65,86,140, + 188,54,21,147,38,165,97,210,228,254,232,217,51,222,255,240,132,200,58,104, + 4,65,16,252,221,146,55,3,152,10,192,5,224,44,128,97,0,126,6,224, + 7,0,120,172,141,199,230,122,1,232,3,159,240,217,0,236,4,176,197,223, + 93,233,110,109,109,141,179,90,125,99,219,106,106,28,248,238,119,223,199,157, + 119,102,227,151,191,188,6,151,92,210,3,110,183,27,241,241,241,30,0,86, + 18,56,34,82,72,224,8,162,67,225,251,59,54,55,123,176,97,227,121,188, + 81,116,1,95,28,168,67,75,75,13,92,174,19,240,178,106,120,189,245,112, + 123,90,33,48,11,188,172,23,128,94,16,144,6,160,55,82,211,226,49,115, + 102,6,22,46,188,10,19,39,246,71,92,156,5,62,63,44,228,136,255,32, + 30,122,232,33,27,128,27,224,19,184,68,0,213,240,121,107,231,1,172,3, + 240,52,128,205,254,211,173,104,19,184,190,240,117,87,14,2,224,4,176,5, + 192,167,133,133,133,199,165,30,156,239,58,221,72,74,106,27,204,77,30,28, + 97,38,52,77,128,32,58,8,94,175,27,94,47,195,150,45,23,241,219,231, + 170,113,246,236,121,52,53,21,163,174,238,83,164,244,116,96,220,184,108,100, + 103,103,160,119,234,80,36,37,37,193,227,246,194,225,104,193,185,115,23,241, + 245,215,95,227,232,209,90,212,213,245,199,223,254,150,129,119,223,253,10,55, + 223,124,41,158,121,102,50,174,184,34,13,86,107,60,116,76,107,147,51,8, + 192,68,248,4,171,10,64,45,124,226,118,1,192,251,0,114,1,188,233,63, + 215,10,95,151,165,212,163,75,130,111,32,202,68,0,149,0,182,190,243,206, + 59,247,61,249,228,147,162,1,169,184,1,192,59,239,188,3,0,91,141,22, + 148,32,148,32,15,142,32,218,25,198,124,143,166,179,219,61,248,245,147,167, + 176,123,247,89,56,156,155,241,237,169,205,152,60,121,52,102,126,47,7,215, + 92,123,25,108,54,43,108,182,56,216,226,109,136,139,139,131,37,206,39,14, + 204,203,224,246,180,162,174,206,137,29,59,142,97,211,166,50,28,58,228,4, + 243,14,70,207,158,54,60,247,252,36,220,243,179,209,72,76,140,135,197,162, + 255,158,246,161,135,30,154,8,224,78,248,132,234,4,128,83,0,106,224,19, + 184,70,248,70,76,78,3,112,0,62,129,123,17,192,24,0,11,1,12,132, + 111,0,202,96,248,132,111,163,63,22,119,96,199,142,29,182,156,156,156,32, + 123,52,138,146,48,27,242,224,8,162,157,97,140,161,174,206,141,123,126,118, + 2,77,142,42,84,158,200,199,181,87,15,196,111,254,183,0,25,151,165,33, + 33,33,30,41,61,82,144,146,146,130,228,228,100,36,36,36,32,46,46,174, + 45,198,198,24,60,94,15,92,46,23,134,13,203,196,220,185,19,176,245,95, + 223,224,165,151,254,141,111,171,123,34,247,161,127,225,232,145,179,200,207,207, + 65,207,158,61,3,30,106,30,130,1,0,122,163,109,64,137,3,109,115,221, + 156,240,13,34,89,10,95,23,230,98,0,63,1,144,13,32,93,114,94,179, + 63,143,1,0,62,7,240,211,105,211,166,173,121,246,217,103,109,119,221,117, + 23,6,15,30,172,52,15,142,38,123,19,166,64,30,28,65,180,35,62,207, + 173,21,63,186,171,18,205,45,101,216,251,249,115,88,184,112,14,110,189,117, + 50,226,109,241,72,77,237,141,244,180,52,164,164,244,68,98,98,34,172,86, + 171,184,250,134,44,39,120,189,190,101,165,92,46,55,28,77,141,168,170,170, + 197,83,79,109,193,191,182,158,135,0,47,30,121,100,2,150,44,153,129,30, + 41,61,16,23,23,23,178,108,15,61,244,208,207,1,220,8,95,247,98,37, + 124,221,148,103,224,235,170,180,3,24,1,224,19,0,207,0,120,10,62,97, + 75,129,111,20,229,64,248,186,39,179,252,219,71,133,133,133,69,254,172,165, + 79,50,25,4,95,108,111,43,100,79,50,33,15,142,136,20,242,224,8,162, + 157,240,173,115,216,138,95,253,234,20,26,237,199,81,94,254,12,126,243,212, + 47,113,221,196,43,209,35,165,7,250,247,235,135,62,125,250,32,41,41,9, + 124,228,161,58,2,44,22,223,146,83,241,241,241,72,76,140,71,74,207,20, + 188,242,234,143,240,228,147,31,225,111,107,43,176,106,213,46,92,113,101,58, + 230,206,29,135,148,148,148,112,98,114,114,202,225,139,185,61,1,223,28,57, + 237,18,170,11,86,38,128,251,252,27,65,152,6,77,244,38,136,118,131,225, + 223,219,26,177,123,247,121,28,60,248,2,30,248,197,79,48,113,226,149,232, + 221,171,23,50,47,189,20,3,7,94,130,148,148,20,29,226,22,76,92,156, + 21,137,137,73,24,56,176,63,126,255,251,91,48,117,234,32,184,221,3,145, + 159,191,14,149,21,103,224,116,58,245,44,63,229,241,191,198,75,54,171,100, + 139,3,144,10,224,119,0,14,74,246,203,207,7,0,183,225,139,32,136,8, + 33,15,78,5,175,215,11,139,197,2,143,167,237,73,11,130,192,151,204,9, + 190,243,181,88,44,240,122,125,237,1,99,78,255,185,130,127,63,95,137,156, + 193,229,242,160,217,85,135,186,6,27,234,47,196,163,234,164,23,117,231,207, + 162,162,42,17,141,245,54,124,115,188,26,39,79,184,208,100,79,66,93,157, + 19,14,199,121,197,242,245,232,5,92,122,73,31,92,54,216,134,148,158,189, + 208,175,95,19,50,7,103,32,181,127,28,250,244,4,50,47,179,32,181,79, + 43,82,83,147,145,108,21,96,179,89,197,216,75,107,107,171,216,69,37,189, + 70,126,125,22,75,91,247,149,215,235,1,99,190,101,132,226,226,122,4,212, + 13,17,25,110,55,195,243,207,85,163,217,241,111,140,24,209,27,55,223,114, + 61,82,82,146,48,232,146,75,208,167,111,95,216,108,182,136,242,23,4,1, + 241,241,86,244,235,215,11,47,190,116,11,166,77,125,7,103,206,196,225,181, + 215,139,241,228,147,223,71,191,254,253,67,137,231,25,248,158,80,146,8,223, + 64,147,100,255,214,140,54,193,114,195,215,181,152,168,112,94,146,127,187,8, + 223,252,57,130,136,41,36,112,170,248,238,110,165,141,186,244,24,111,244,57, + 94,111,162,68,24,122,160,181,181,21,30,15,67,163,221,139,170,111,221,168, + 58,233,197,241,227,30,148,238,175,195,161,47,207,163,242,232,73,92,116,10, + 0,115,2,66,34,24,235,141,228,132,86,56,90,226,1,0,130,192,219,131, + 22,255,107,130,196,90,11,154,207,3,231,207,59,112,224,32,0,230,132,32, + 52,3,248,28,140,57,145,152,96,131,179,197,133,62,125,6,224,134,27,134, + 225,242,33,131,48,234,218,6,164,245,237,143,204,203,44,184,246,170,4,56, + 46,218,145,212,43,14,30,79,91,174,129,194,230,149,236,235,33,217,47,73, + 64,132,13,99,94,124,246,89,61,142,31,175,195,133,11,239,227,137,39,23, + 35,49,49,14,125,251,245,67,90,122,186,170,184,49,198,192,188,45,96,94, + 23,96,137,135,197,18,15,65,224,223,155,0,254,187,149,222,132,197,197,89, + 113,245,85,125,177,224,23,227,177,98,185,7,235,214,237,198,252,249,215,35, + 165,103,10,82,82,122,106,117,85,114,129,27,0,223,252,182,222,240,13,30, + 225,83,1,172,104,19,58,43,218,158,100,194,207,237,5,95,76,238,140,127, + 35,136,152,66,2,167,2,111,236,125,13,61,147,125,22,16,23,215,67,60, + 198,207,247,122,189,184,80,235,66,213,183,110,148,127,229,197,193,253,78,148, + 148,151,225,235,131,13,184,80,155,4,65,232,35,177,112,41,4,1,240,178, + 38,128,1,130,224,68,179,11,16,4,249,243,105,129,64,113,243,227,23,70, + 0,62,129,132,255,177,127,2,224,116,1,73,9,113,184,112,161,22,155,55, + 239,7,99,73,240,61,93,9,200,186,36,19,215,142,31,140,233,55,2,189, + 122,166,96,228,216,129,184,234,10,27,108,54,43,90,91,91,97,177,184,68, + 19,130,144,164,88,55,62,113,239,161,120,140,8,13,159,22,240,207,127,214, + 161,185,249,16,46,191,188,47,178,135,244,67,175,94,189,145,158,222,7,9, + 9,9,10,231,187,193,24,192,88,11,208,82,13,161,229,52,16,151,2,79, + 98,6,4,107,58,4,1,96,94,23,24,24,44,150,4,8,66,156,68,248, + 124,191,207,123,238,25,142,151,254,240,31,212,156,177,227,139,131,223,96,208, + 165,125,144,156,172,57,224,228,180,127,203,132,111,224,136,124,158,155,3,202, + 79,50,233,11,223,128,147,52,248,158,102,194,243,33,136,152,66,2,167,66, + 107,107,43,226,227,227,197,174,199,192,110,60,1,78,167,11,113,113,190,59, + 223,179,103,207,98,255,190,243,56,94,121,25,118,237,56,129,79,119,183,226, + 98,67,15,120,216,69,120,189,113,16,132,36,48,150,8,198,120,30,62,239, + 143,177,196,128,207,62,111,45,88,204,146,108,113,104,118,73,61,167,132,192, + 94,82,230,132,111,212,118,27,205,45,128,32,52,251,197,13,240,181,53,64, + 229,105,59,42,55,125,133,77,155,124,123,71,95,147,134,209,163,90,241,157, + 233,87,35,115,104,95,140,28,145,136,62,233,54,120,60,30,196,197,49,56, + 157,46,120,60,173,72,74,106,235,158,85,19,62,194,8,12,251,246,213,162, + 165,229,24,70,141,186,26,241,241,241,232,213,171,55,146,18,147,2,60,42, + 175,183,21,222,214,243,64,107,45,0,1,2,115,195,219,84,14,183,253,43, + 8,9,253,224,117,79,1,146,173,136,71,51,208,82,237,75,147,48,16,130, + 109,96,128,112,9,130,128,43,175,76,71,70,102,31,156,168,28,128,131,95, + 28,195,228,201,87,34,53,53,85,85,224,10,11,11,207,46,90,180,232,35, + 248,196,234,114,4,122,107,201,80,23,56,254,168,174,222,0,142,193,55,130, + 242,172,9,131,90,8,194,16,36,112,42,88,44,46,120,189,109,113,38,238, + 177,113,193,107,180,123,241,197,97,39,14,148,48,236,218,113,14,155,63,104, + 6,240,53,188,222,38,8,194,69,48,214,27,22,139,207,203,97,44,17,130, + 224,148,8,90,31,36,245,58,7,214,236,107,27,146,147,7,64,176,158,7, + 115,95,230,59,110,61,15,71,171,116,57,45,47,146,44,205,129,5,244,246, + 2,0,56,90,226,240,4,68,155,0,0,32,0,73,68,65,84,33,8,129, + 221,151,28,62,134,192,215,125,9,201,126,39,32,92,2,0,40,255,178,14, + 229,95,214,225,175,239,126,141,75,6,164,99,210,119,110,196,244,239,247,197, + 232,171,45,200,188,212,138,62,233,54,0,86,48,214,140,214,214,120,36,38, + 70,22,23,34,0,126,119,242,205,55,77,112,181,158,195,101,151,141,68,98, + 124,60,146,123,36,33,206,42,141,109,50,48,143,29,104,58,2,175,195,191, + 88,182,37,13,172,185,12,238,234,3,192,128,12,180,184,46,5,220,61,209, + 203,114,10,94,199,62,48,230,1,146,254,11,222,158,61,144,144,16,135,184, + 56,171,175,91,147,121,33,8,2,174,184,34,29,39,42,147,241,237,183,103, + 224,108,118,192,221,234,246,69,206,84,40,44,44,60,188,104,209,162,29,240, + 13,38,233,131,182,174,72,62,55,78,254,228,18,254,176,229,222,240,117,27, + 236,40,44,44,60,108,86,205,17,132,17,72,224,84,16,132,164,128,1,24, + 94,111,18,46,212,186,240,233,103,46,28,63,238,193,251,239,219,81,83,85, + 143,163,21,103,96,177,244,128,215,219,36,73,157,0,139,80,137,164,94,253, + 145,228,23,18,160,109,229,16,193,122,30,125,82,19,113,161,222,3,230,181, + 131,177,227,96,30,0,194,113,52,218,155,96,65,29,90,92,241,104,107,121, + 164,222,153,111,95,188,205,247,213,217,108,128,203,101,69,82,66,79,180,184, + 124,141,35,99,73,72,74,178,162,217,175,107,162,23,39,118,105,194,239,245, + 113,210,224,110,77,68,213,41,96,237,218,13,120,239,61,55,46,25,144,142, + 59,127,48,17,151,95,238,193,228,169,67,145,53,36,30,169,201,86,113,208, + 137,32,36,6,196,236,8,35,48,184,92,94,180,180,196,33,46,142,33,222, + 150,140,38,103,60,42,142,183,34,45,213,11,139,37,14,140,121,225,245,56, + 192,154,43,225,109,42,131,251,252,14,8,137,9,240,88,50,97,241,86,34, + 174,250,2,188,125,61,112,183,28,66,156,23,104,141,171,129,208,242,5,96, + 111,129,51,181,31,188,194,229,16,44,73,72,16,44,0,24,14,148,159,199, + 208,97,169,72,78,74,132,213,218,3,205,206,22,184,90,61,112,123,220,96, + 140,105,78,25,40,44,44,252,216,191,106,247,29,240,121,102,41,240,205,131, + 147,14,54,225,194,151,2,95,183,228,89,0,239,23,22,22,126,28,181,106, + 36,136,16,144,192,105,224,245,122,225,245,218,80,117,198,142,226,93,30,28, + 220,119,2,59,119,52,163,252,139,134,32,81,179,88,122,32,189,183,175,58, + 211,210,6,128,175,3,25,23,119,26,205,206,19,226,121,246,166,22,52,92, + 108,194,185,115,190,209,145,12,78,8,112,162,237,225,16,129,93,141,106,184, + 92,252,60,223,224,181,230,22,223,0,54,230,23,192,230,230,129,254,252,19, + 145,148,208,19,0,224,108,241,197,225,4,33,81,236,226,100,44,41,192,195, + 19,144,128,86,87,2,78,86,181,96,229,75,59,193,208,130,49,215,84,99, + 202,141,153,200,153,62,24,55,92,111,67,159,244,68,127,253,120,224,241,120, + 253,215,25,40,118,52,202,82,25,175,215,141,175,191,118,226,193,133,39,144, + 156,212,11,13,23,107,193,24,240,213,151,45,88,181,106,35,222,125,247,7, + 24,54,44,21,214,56,23,208,124,28,222,198,189,240,186,62,131,165,249,36, + 60,173,86,180,38,180,192,26,87,139,132,243,13,96,113,45,136,103,251,128, + 150,6,48,171,3,130,227,52,90,93,2,90,154,235,208,26,223,4,91,146, + 7,241,86,134,127,111,171,197,19,139,255,137,245,27,239,128,199,227,70,246, + 144,209,216,178,101,63,18,109,95,224,249,23,6,161,87,47,111,64,188,78, + 9,191,200,157,7,48,11,192,21,240,121,105,125,100,167,241,145,88,95,3, + 216,64,158,27,209,222,144,192,169,224,110,189,128,186,122,15,182,252,211,142, + 109,31,89,176,117,203,5,212,94,244,221,172,242,174,71,254,154,222,219,138, + 180,180,68,244,72,225,66,209,140,139,231,78,163,209,229,66,147,189,14,206, + 150,42,48,56,225,139,179,215,195,39,98,23,1,36,248,117,166,5,62,129, + 83,66,62,138,146,127,78,245,191,94,148,28,75,244,231,151,8,134,211,224, + 222,94,115,75,18,128,84,8,72,5,67,34,24,107,129,128,4,36,38,216, + 0,52,193,217,210,67,20,57,65,72,4,99,78,48,180,32,57,41,3,78, + 103,35,14,124,85,141,175,142,28,196,198,245,233,152,61,187,47,190,51,237, + 70,124,239,187,190,188,121,28,210,227,31,142,169,231,9,25,221,23,134,99, + 199,90,112,235,45,223,128,49,47,44,113,135,224,104,254,22,12,22,156,174, + 105,197,201,19,149,184,112,254,91,244,235,219,138,244,148,38,160,177,20,222, + 250,15,33,164,124,13,88,234,96,169,77,134,112,105,60,44,150,102,48,123, + 35,226,109,13,16,60,173,104,241,92,132,199,107,131,208,112,30,113,238,30, + 112,39,54,193,211,218,12,143,215,5,198,18,113,248,208,69,84,84,30,198, + 133,11,147,225,114,185,16,23,215,7,125,210,135,226,189,245,7,80,127,177, + 1,111,174,185,27,125,251,170,199,226,56,254,238,202,11,240,61,193,100,24, + 128,161,240,197,231,0,223,211,77,142,1,56,10,224,112,97,97,33,77,11, + 32,218,157,110,33,112,210,161,237,124,120,191,32,36,193,227,241,32,62,62, + 30,30,79,19,60,110,7,172,241,125,96,177,88,208,218,218,138,63,190,108, + 69,233,254,70,252,251,223,71,113,225,66,170,36,175,38,209,91,203,200,100, + 184,108,176,47,38,85,245,77,21,106,235,190,133,189,169,5,142,38,27,152, + 119,59,156,173,110,180,121,101,23,225,19,177,22,168,123,105,137,80,234,142, + 244,209,130,96,154,225,235,21,106,145,157,115,81,114,78,2,184,151,199,144, + 10,238,229,49,0,206,150,84,48,164,194,34,88,192,144,134,164,68,55,156, + 206,70,0,128,69,232,13,167,179,81,20,187,86,87,15,156,168,106,192,203, + 47,51,188,185,230,95,248,201,188,43,145,51,125,48,190,51,45,1,189,147, + 124,194,223,218,26,143,184,56,159,216,249,6,169,88,224,110,173,5,0,216, + 18,250,249,235,207,11,198,154,197,233,23,221,5,198,188,104,106,106,197,207, + 238,169,0,99,94,252,207,226,158,200,203,219,3,198,90,224,245,184,17,31, + 239,1,99,255,159,189,55,15,147,228,172,206,124,127,95,236,145,75,101,85, + 119,245,190,183,246,21,33,36,48,168,65,18,66,48,32,91,6,99,131,45, + 179,13,140,47,24,15,216,140,61,182,241,114,49,246,181,231,94,143,175,109, + 108,204,120,193,150,48,22,198,96,176,71,66,98,19,146,16,18,2,180,171, + 181,47,189,85,111,213,93,85,153,89,149,153,177,199,55,127,124,17,145,145, + 89,213,66,128,100,245,146,239,243,228,83,153,145,75,68,46,245,189,241,158, + 243,158,115,36,222,66,139,160,213,67,202,125,200,224,46,232,60,142,49,57, + 141,140,67,196,108,138,216,88,65,51,125,116,63,5,221,71,151,9,78,12, + 177,85,71,243,66,2,211,64,166,243,16,29,132,160,14,142,78,156,72,100, + 154,50,223,110,18,197,49,143,61,214,102,237,234,26,200,42,55,125,227,110, + 254,232,15,199,249,200,239,189,129,70,99,124,216,152,178,168,18,252,19,159, + 248,196,179,122,191,35,67,201,8,71,3,142,91,130,75,146,110,145,39,202, + 45,252,42,108,86,205,10,157,101,102,36,209,137,34,19,203,82,209,150,107, + 174,126,170,80,108,189,222,12,189,192,164,28,109,155,156,104,240,138,109,102, + 113,251,137,199,14,177,123,207,46,252,224,48,146,93,192,78,6,9,166,79, + 106,114,136,216,196,162,236,126,249,254,70,233,250,82,174,197,22,138,188,242, + 191,112,36,23,102,255,181,91,64,128,192,3,54,103,225,204,9,82,169,212, + 93,207,115,10,101,231,7,253,99,17,165,215,244,131,195,36,178,201,95,124, + 236,9,254,253,139,43,121,227,79,253,24,111,127,215,22,78,59,89,96,26, + 109,122,109,155,74,163,86,20,184,91,246,10,146,164,75,183,219,165,90,173, + 102,219,79,68,23,166,224,111,255,118,150,7,238,235,241,91,191,189,142,207, + 125,238,94,194,112,22,144,106,94,155,20,32,5,73,226,161,133,187,145,243, + 119,34,204,7,16,201,12,66,116,193,3,177,224,97,152,61,4,33,68,33, + 66,3,225,197,104,105,27,195,137,208,130,24,93,23,152,198,110,156,228,155, + 104,157,221,196,218,133,164,145,141,4,210,84,241,85,154,10,22,58,58,136, + 42,82,218,252,221,39,191,196,21,87,156,201,203,95,113,26,181,90,117,68, + 78,35,28,55,56,126,9,46,238,161,166,137,228,225,68,13,223,15,177,44, + 3,93,215,137,163,89,44,123,133,90,132,45,131,235,111,232,240,249,127,153, + 225,174,239,120,60,185,99,26,83,95,75,34,99,52,13,116,209,224,172,179, + 58,156,121,246,36,157,133,121,246,236,14,105,54,31,96,122,250,105,252,112, + 47,138,56,242,75,159,204,114,2,203,175,231,183,29,91,245,163,29,171,172, + 98,114,178,138,237,76,178,101,211,22,0,214,110,48,177,108,101,76,25,171, + 66,125,66,125,69,11,205,152,250,132,193,66,83,169,165,249,146,167,165,121, + 112,55,237,142,96,247,110,72,217,73,224,207,240,200,147,121,40,212,103,48, + 4,58,142,34,207,156,240,14,210,87,119,19,72,198,241,2,176,172,73,194, + 208,40,200,77,145,158,170,250,11,67,16,40,69,247,177,143,125,141,127,255, + 226,24,31,250,213,11,217,118,241,201,156,121,154,69,28,205,210,13,82,106, + 238,50,194,48,198,178,92,92,23,124,95,213,216,89,214,113,251,179,59,34, + 130,48,225,175,254,106,63,107,215,234,236,219,55,195,183,239,120,10,149,178, + 146,72,41,144,72,132,144,232,4,232,201,30,228,252,163,232,107,167,208,100, + 71,125,232,29,9,94,138,105,123,200,78,140,136,99,68,44,209,230,37,105, + 16,162,111,13,17,82,71,23,58,142,189,15,205,159,198,232,62,66,202,28, + 113,239,66,64,146,74,153,133,176,37,50,77,16,184,72,170,248,254,65,174, + 190,250,107,156,126,198,10,108,219,250,145,59,168,140,48,194,209,130,227,122, + 165,201,91,79,249,126,136,227,88,56,142,69,148,217,239,13,115,57,190,31, + 178,127,166,203,95,254,105,196,87,111,184,159,131,251,99,230,189,9,108,253, + 116,130,228,49,52,173,202,185,103,235,92,252,234,73,14,31,114,120,244,193, + 199,184,255,161,251,176,205,189,248,209,147,12,146,71,123,64,161,9,177,0, + 44,32,101,29,129,195,202,137,11,88,183,126,19,91,54,109,97,195,73,175, + 230,194,115,159,160,190,66,167,226,214,145,210,37,78,251,170,207,208,26,196, + 105,27,83,183,74,117,108,131,40,63,222,118,206,36,240,85,24,54,10,149, + 185,37,141,183,176,99,199,30,118,62,61,197,157,183,71,236,221,191,139,246, + 252,1,252,168,131,34,182,188,179,82,142,131,217,251,81,70,148,32,204,9, + 90,229,237,252,32,251,60,139,160,85,27,203,50,8,67,131,221,83,243,124, + 232,87,110,231,252,115,190,201,219,223,115,49,111,123,247,25,52,170,49,105, + 170,200,76,133,44,101,81,98,48,216,21,230,196,192,183,239,232,176,123,119, + 143,109,219,234,220,244,245,29,89,216,92,162,234,10,245,162,7,137,72,186, + 232,233,97,68,56,131,230,118,33,78,64,72,88,16,104,157,132,212,246,209, + 22,98,136,64,70,32,15,72,152,75,208,95,41,73,68,138,78,23,199,57, + 128,108,38,232,21,141,32,236,34,131,73,32,11,15,3,32,144,8,36,26, + 202,244,232,114,211,77,223,227,208,161,55,208,104,52,70,4,55,194,113,131, + 227,150,224,12,115,89,17,154,84,139,172,146,60,154,166,22,234,36,73,248, + 234,215,125,62,250,187,79,242,240,195,53,96,61,81,178,31,232,18,105,83, + 108,187,108,25,47,57,103,61,0,183,221,116,119,70,108,219,113,236,22,94, + 176,151,165,148,90,63,228,232,176,114,124,27,235,214,111,226,162,109,167,178, + 229,164,13,156,115,238,114,28,39,37,8,2,52,243,0,73,168,84,90,94, + 171,102,104,229,144,164,130,235,74,130,184,3,64,26,233,212,100,139,142,24, + 39,74,66,76,189,191,8,165,17,152,186,142,148,46,134,163,234,222,76,173, + 199,185,47,170,112,238,139,78,227,77,111,77,64,188,140,125,79,25,220,191, + 125,138,93,79,237,225,246,59,110,101,161,231,225,5,49,131,68,167,84,159, + 114,118,58,164,172,41,136,46,205,204,41,0,66,172,34,10,167,129,25,44, + 107,146,40,244,185,103,123,139,93,191,127,59,223,186,121,23,31,254,232,107, + 216,176,46,161,94,83,29,243,45,203,194,247,67,98,207,199,29,27,108,255, + 117,34,224,235,95,159,70,136,24,191,215,101,223,190,195,200,140,220,64,160, + 137,40,107,124,44,48,229,1,12,125,63,90,175,7,90,132,12,83,165,186, + 166,129,249,20,205,9,73,23,82,68,79,66,8,226,113,16,157,8,116,29, + 122,41,58,62,98,44,69,60,28,35,78,2,227,201,41,36,251,64,74,100, + 50,143,32,111,5,167,33,16,89,152,218,100,174,57,197,67,219,119,179,102, + 237,36,181,90,109,100,22,26,225,184,192,113,75,112,154,166,15,52,21,6, + 72,83,53,9,121,118,46,228,143,254,240,73,62,243,153,189,180,230,148,226, + 73,100,187,164,216,54,83,31,15,185,245,214,251,248,222,183,239,39,12,239, + 2,14,226,71,211,128,15,226,112,161,204,108,71,16,248,138,228,86,140,111, + 228,69,167,158,207,233,47,57,131,55,252,228,150,130,180,132,240,112,221,30, + 158,39,136,146,16,219,212,139,46,35,101,139,126,174,214,132,240,24,171,169, + 133,72,79,234,104,102,130,41,167,9,244,181,184,118,23,59,173,163,105,126, + 246,158,28,162,180,135,109,104,196,129,32,74,123,72,233,226,216,83,244,58, + 170,60,192,196,162,90,19,156,124,102,194,186,147,170,4,254,169,188,239,131, + 23,178,253,193,89,110,187,249,118,246,76,5,60,250,216,193,76,221,229,202, + 174,165,142,133,3,168,208,165,130,153,133,46,77,179,75,20,54,16,52,8, + 195,0,65,140,192,97,110,174,205,23,174,11,184,251,190,195,124,228,247,46, + 229,138,159,88,143,97,117,8,61,104,212,86,160,235,46,190,31,82,61,177, + 248,141,237,219,23,208,132,100,118,182,71,20,69,3,93,35,45,45,38,78, + 186,32,96,204,254,30,118,253,9,196,222,54,104,41,98,65,32,231,129,3, + 18,22,36,50,141,16,51,192,130,132,158,64,222,7,66,135,164,149,162,61, + 45,144,107,65,212,3,53,185,237,197,2,125,127,27,221,58,12,98,2,83, + 206,32,228,74,32,175,18,17,8,12,36,22,82,74,118,236,216,71,175,123, + 38,113,156,140,8,110,132,227,2,199,45,193,165,105,90,252,147,42,71,159, + 75,146,196,220,248,21,149,107,251,194,191,76,16,36,211,8,177,3,33,150, + 179,172,97,240,218,215,47,231,252,11,38,184,247,238,38,255,235,19,159,39, + 12,183,163,70,94,5,56,182,65,42,218,4,190,202,99,216,142,32,244,65, + 147,39,115,254,57,47,229,210,203,46,230,188,115,54,176,249,20,31,77,243, + 241,60,65,217,250,159,147,27,64,224,39,212,42,21,76,255,0,29,198,113, + 93,89,28,115,78,92,154,94,39,142,34,52,51,193,48,77,164,185,30,87, + 171,33,52,165,220,226,216,204,30,7,6,13,12,195,192,178,65,213,216,130, + 76,207,98,249,4,8,205,199,247,60,188,64,133,52,77,173,66,125,185,139, + 239,121,156,119,225,10,182,189,242,29,236,223,23,179,99,199,30,238,184,117, + 7,119,220,185,139,233,217,39,113,204,201,82,56,51,15,93,58,69,232,50, + 10,29,36,6,154,104,32,112,144,50,55,162,248,88,150,193,158,169,67,188, + 255,23,63,201,251,183,191,140,247,255,183,75,24,31,175,208,108,54,169,86, + 235,88,86,63,84,156,195,52,77,142,103,236,157,234,33,101,192,124,219,83, + 157,69,74,247,233,194,7,217,4,153,224,78,108,199,154,154,134,189,62,162, + 157,34,15,65,225,93,210,5,218,126,73,250,148,80,166,252,61,32,246,169, + 112,175,120,80,131,187,18,196,6,1,63,33,144,247,164,200,211,117,244,237, + 30,166,21,35,164,196,148,211,164,114,57,80,222,191,200,46,33,243,11,109, + 130,32,32,137,99,176,71,97,202,17,142,125,28,183,4,151,55,72,206,137, + 174,213,139,184,238,243,83,252,229,159,61,193,3,143,76,160,139,6,182,126, + 58,41,243,188,254,13,33,175,186,116,19,83,187,247,242,207,87,95,207,61, + 219,31,66,173,40,144,79,251,240,195,195,0,8,86,224,88,147,140,185,167, + 179,237,53,151,112,209,37,91,139,240,99,36,99,124,95,3,42,88,186,32, + 76,6,93,214,21,179,82,92,215,180,46,73,165,129,157,218,228,41,41,195, + 52,49,12,165,226,28,98,48,76,34,195,197,140,61,34,195,69,141,231,202, + 148,157,97,98,101,109,157,194,120,48,167,21,135,58,174,214,201,158,99,98, + 219,14,85,107,140,36,86,164,18,199,49,182,61,1,65,147,40,58,192,138, + 149,48,182,124,5,47,122,217,201,188,241,137,46,247,111,159,226,150,111,124, + 51,83,117,208,55,164,56,69,232,18,206,64,208,66,74,181,93,226,32,50, + 231,103,24,206,32,112,8,194,58,127,246,231,247,178,235,169,61,252,226,127, + 127,39,47,126,113,13,47,108,98,233,181,19,46,207,211,233,134,164,50,198, + 143,36,12,208,155,68,39,129,164,135,144,2,61,232,34,190,236,129,46,72, + 158,6,237,81,84,51,172,71,36,172,3,185,91,131,123,129,25,1,15,105, + 208,76,145,1,200,127,21,136,61,192,94,9,95,68,85,163,221,156,34,31, + 129,116,83,156,185,40,125,100,26,209,39,53,73,127,9,72,136,99,159,36, + 77,72,70,19,35,70,56,78,112,204,18,92,24,28,198,178,87,20,99,105, + 76,51,34,137,123,68,113,5,215,117,1,65,146,116,137,34,147,253,51,93, + 174,249,135,46,127,253,177,38,237,249,205,64,155,40,217,207,41,91,19,222, + 240,19,176,101,11,124,235,230,111,114,195,87,190,131,31,222,14,56,32,110, + 47,246,37,101,29,100,29,215,158,228,140,83,95,199,121,231,94,202,27,223, + 42,169,184,245,172,243,187,202,173,65,64,238,176,142,82,16,2,106,178,197, + 2,107,112,28,69,66,70,166,84,12,99,98,224,253,184,206,176,189,95,221, + 182,0,140,42,85,101,9,69,55,23,127,101,229,12,90,18,197,232,53,131, + 36,210,17,73,140,169,27,68,70,12,104,96,228,251,176,9,227,4,161,229, + 227,186,212,126,226,120,158,205,167,68,108,62,101,5,111,120,243,123,121,224, + 187,79,113,219,205,183,243,157,239,134,76,207,30,166,239,202,60,152,45,209, + 170,128,220,178,106,68,161,157,21,137,147,17,221,52,146,22,2,135,47,126, + 105,47,247,60,240,249,34,100,137,213,198,159,55,112,28,117,228,213,106,149, + 52,77,136,163,57,116,163,66,18,247,138,186,185,227,5,21,87,34,101,164, + 122,63,14,65,202,16,77,196,164,82,32,247,166,136,167,64,116,82,100,85, + 131,91,19,228,78,13,209,145,48,15,242,1,16,143,165,200,57,1,223,148, + 104,109,9,9,136,235,19,68,10,36,146,244,19,41,162,13,76,75,228,152, + 64,134,6,144,32,134,148,99,182,119,84,183,173,32,43,225,248,190,67,80, + 71,24,225,152,193,49,75,112,57,185,153,166,137,174,167,128,142,110,128,101, + 231,243,219,146,130,220,254,219,47,237,230,203,55,90,64,149,40,217,143,169, + 175,229,103,175,90,197,249,23,76,48,181,123,47,127,246,255,223,197,238,169, + 111,2,143,3,173,108,97,6,203,30,35,244,109,92,187,198,214,141,47,225, + 213,175,121,5,151,93,126,17,107,215,25,204,207,31,68,51,213,153,174,34, + 183,197,176,109,155,136,85,212,76,29,53,252,152,98,192,100,89,129,1,152, + 186,177,136,188,146,180,130,174,245,112,156,197,78,202,52,232,224,37,117,170, + 21,89,220,214,236,26,37,159,75,1,223,95,220,37,197,140,98,162,210,254, + 115,21,104,24,6,113,28,67,52,203,203,47,90,201,139,94,246,46,222,252, + 68,151,127,255,183,59,184,227,206,220,137,57,78,191,44,162,89,132,45,165, + 92,141,32,39,186,188,44,66,133,92,119,77,61,200,135,127,253,17,30,218, + 254,42,174,122,231,229,156,186,49,197,247,125,170,213,58,221,110,23,203,178, + 176,236,21,116,154,243,184,99,149,225,195,61,230,177,102,173,197,195,143,168, + 147,177,190,130,82,208,136,73,9,17,72,120,92,34,166,83,213,202,248,243, + 168,200,112,71,34,45,13,177,90,67,60,146,194,1,129,8,36,226,94,137, + 200,204,41,50,68,241,148,41,208,14,165,16,9,232,74,72,116,104,39,32, + 242,239,58,219,191,76,179,91,33,208,5,66,42,174,139,224,196,115,184,142, + 112,252,226,152,37,56,80,121,155,52,77,74,179,218,220,210,140,54,193,29, + 119,245,248,203,63,81,227,107,52,148,85,90,211,218,188,255,3,147,108,216, + 104,114,231,173,101,213,214,194,177,19,188,160,133,16,202,222,31,250,13,206, + 60,229,101,3,196,214,241,23,152,207,138,208,210,72,39,24,234,48,146,207, + 242,234,43,181,193,143,56,87,106,185,122,81,215,221,140,160,250,68,102,24, + 57,33,14,42,189,210,147,168,12,221,46,35,142,35,12,35,63,6,125,232, + 190,4,31,111,128,80,29,148,250,139,146,24,165,240,82,146,56,98,204,232, + 49,118,174,224,125,27,46,228,85,175,185,152,111,221,188,139,27,190,252,85, + 252,168,85,60,87,148,218,130,153,214,36,81,168,92,150,169,108,211,55,171, + 56,28,156,245,185,246,211,183,209,60,172,241,27,255,247,133,76,76,44,35, + 73,34,124,223,71,215,77,146,36,164,210,168,225,121,222,113,103,66,57,231, + 156,58,55,125,125,39,73,156,205,105,147,146,188,42,77,19,49,26,190,146, + 252,143,130,8,33,93,166,35,14,166,176,74,32,18,9,47,17,164,39,167, + 136,239,100,212,104,11,164,33,145,19,26,4,2,185,5,196,84,138,180,4, + 114,149,129,56,148,32,43,58,244,64,4,41,66,14,6,70,17,100,206,77, + 85,226,34,132,199,154,181,107,208,10,115,201,72,201,141,112,236,227,152,37, + 184,188,51,73,24,38,232,122,138,174,107,69,206,13,4,215,223,208,225,163, + 191,251,4,123,167,68,54,155,109,138,147,54,215,120,239,127,61,157,101,141, + 89,254,234,207,111,224,225,199,30,195,143,190,133,229,28,34,240,37,126,184, + 144,117,149,88,193,202,241,141,188,226,21,219,248,153,55,191,148,173,103,174, + 7,124,230,231,59,68,73,72,173,82,95,164,218,134,135,84,230,196,86,14, + 61,14,147,154,122,92,70,100,206,228,247,125,207,142,227,224,251,126,241,58, + 50,28,204,149,8,75,239,111,47,125,179,57,209,149,111,231,175,17,199,17, + 113,172,94,167,76,122,102,90,33,10,231,240,252,128,74,60,131,190,98,13, + 151,93,166,177,105,227,22,54,109,125,45,223,252,198,30,30,126,236,78,252, + 168,131,99,214,128,24,63,58,64,24,182,112,172,229,132,209,201,89,73,65, + 191,205,153,0,14,205,250,92,115,237,221,180,219,187,248,173,63,120,15,155, + 214,7,132,129,50,159,128,50,4,89,150,53,112,226,114,60,224,146,75,38, + 249,243,63,11,144,24,128,70,95,193,41,179,126,62,117,70,236,3,169,131, + 120,177,84,97,200,117,32,30,2,94,36,17,103,10,196,189,41,242,98,13, + 241,80,166,180,62,160,35,63,159,192,107,65,62,172,169,231,126,4,248,69, + 129,124,191,6,159,5,217,181,144,123,6,39,125,75,82,84,78,119,14,152, + 163,94,31,231,228,147,87,96,24,70,102,206,26,117,51,25,225,216,199,49, + 75,112,106,62,153,42,222,78,211,180,232,76,2,112,253,13,29,126,253,67, + 187,105,54,21,185,1,156,123,182,206,127,253,245,77,116,102,118,240,87,127, + 254,77,238,222,254,20,130,155,64,76,17,6,234,228,89,202,58,174,125,10, + 175,58,119,13,175,123,235,187,216,186,117,35,171,214,248,116,59,157,162,246, + 204,208,26,248,217,201,54,40,98,83,230,144,193,143,50,15,65,150,67,143, + 142,227,150,148,217,98,215,160,51,164,194,150,66,181,90,39,73,34,116,221, + 4,215,236,95,135,129,237,34,57,50,57,248,190,143,173,153,4,169,82,121, + 101,165,151,147,93,183,7,227,227,19,140,3,173,150,77,208,233,146,24,6, + 39,159,98,179,118,221,169,156,125,206,57,220,116,231,6,190,241,111,223,98, + 122,118,10,165,224,20,105,251,225,94,4,245,254,119,85,212,9,230,237,202, + 14,240,111,95,2,161,221,196,135,63,250,26,182,108,169,211,156,219,131,101, + 79,224,56,14,174,235,22,205,155,65,28,23,147,9,46,185,100,21,107,214, + 152,236,223,223,67,8,3,165,144,178,78,38,160,66,134,50,37,125,177,128, + 131,66,77,85,251,41,85,231,70,67,131,141,41,226,92,144,99,26,218,143, + 67,218,212,16,91,5,188,58,133,239,1,63,38,144,174,128,51,36,84,83, + 210,109,26,218,54,137,156,17,104,15,103,97,204,212,160,63,70,2,84,248, + 120,63,112,136,139,94,254,90,170,85,11,199,118,208,245,99,118,89,24,97, + 132,1,28,179,191,100,213,28,217,41,148,156,97,46,35,138,34,110,252,138, + 199,213,159,220,193,158,221,147,89,55,146,152,139,94,185,158,119,254,194,122, + 182,223,181,155,127,250,244,237,204,206,221,133,224,113,64,145,90,30,146,92, + 53,177,141,43,94,119,49,63,247,238,151,82,169,244,72,211,5,58,11,26, + 224,98,104,174,50,80,8,15,215,149,164,105,159,140,202,228,230,58,246,0, + 81,37,105,5,199,145,24,134,254,125,73,45,39,42,117,253,200,103,208,186, + 110,101,185,156,225,231,152,197,243,116,125,208,165,152,148,28,157,213,106,86, + 236,155,244,21,95,153,236,226,56,162,94,85,5,230,61,15,76,107,25,107, + 87,174,64,183,98,90,173,38,66,243,121,209,249,9,103,157,125,26,47,57, + 221,228,51,159,218,145,169,225,5,36,19,40,87,229,65,181,15,28,96,117, + 166,230,242,194,120,31,211,170,241,175,215,125,3,123,101,202,47,255,194,105, + 108,220,184,28,91,83,199,53,59,23,82,175,105,89,121,71,22,198,59,198, + 73,206,117,53,254,243,187,79,225,15,255,159,59,72,139,146,10,245,158,18, + 105,145,202,6,66,116,224,124,29,186,66,157,43,156,43,97,26,210,211,65, + 104,26,90,77,34,55,128,92,15,108,144,164,47,7,49,150,194,42,141,244, + 100,129,214,19,208,16,136,84,34,215,235,72,9,241,214,42,209,131,89,115, + 237,116,5,82,232,64,66,146,132,72,118,2,79,99,24,49,111,184,226,82, + 28,199,161,90,173,46,58,89,27,97,132,99,21,199,236,47,57,149,13,148, + 83,50,201,6,147,166,5,185,169,233,218,83,104,90,149,31,191,194,229,202, + 183,54,184,249,214,155,248,226,63,126,15,228,46,224,233,172,49,114,214,82, + 75,174,224,252,115,222,204,219,222,121,25,47,191,104,37,157,133,4,207,19, + 184,174,15,165,76,87,173,174,19,71,106,161,118,220,126,190,108,56,12,89, + 54,133,24,134,54,64,108,223,143,208,146,68,170,134,185,89,126,49,73,210, + 162,70,44,55,213,0,228,101,99,131,57,200,36,11,211,150,183,165,217,227, + 181,98,170,66,62,195,45,47,57,24,86,124,50,52,137,178,227,177,108,245, + 19,137,227,136,160,103,96,90,203,112,156,30,177,223,36,54,92,182,189,114, + 43,91,183,110,228,186,47,108,230,198,175,220,154,185,45,215,160,70,3,185, + 56,86,149,32,244,179,140,142,50,158,72,214,16,132,123,209,24,231,218,79, + 222,130,127,112,170,8,87,226,71,84,92,135,124,241,135,99,159,220,64,125, + 215,31,252,224,249,124,246,179,247,241,244,211,211,32,171,89,184,18,66,89, + 35,101,18,201,20,233,186,58,178,55,7,118,130,86,131,180,33,20,161,237, + 55,72,122,26,98,67,76,106,36,136,53,26,218,105,128,208,73,87,107,104, + 182,64,46,203,200,45,22,80,211,9,15,141,209,211,87,227,123,235,64,54, + 137,180,73,212,191,124,138,31,28,2,30,66,136,189,92,241,250,55,114,234, + 233,171,24,27,107,80,169,84,208,245,99,255,243,30,97,4,56,134,9,206, + 178,140,108,225,83,75,231,119,110,239,241,177,255,185,139,91,111,159,25,168, + 111,187,242,173,91,185,249,214,155,248,204,39,191,140,178,164,61,0,98,170, + 200,48,56,214,22,94,119,217,149,252,210,175,252,36,141,70,131,118,187,77, + 165,210,163,215,171,208,235,41,197,22,37,33,182,163,227,5,170,80,90,211, + 251,225,183,97,197,150,135,33,159,137,212,134,213,89,185,200,89,215,251,121, + 181,124,18,194,82,143,43,63,102,248,250,224,54,181,88,41,165,59,120,191, + 174,151,7,150,246,85,33,174,73,24,43,210,78,179,94,98,134,209,133,74, + 132,153,244,212,118,103,109,230,206,244,57,227,116,155,13,191,118,25,103,191, + 88,227,159,62,245,13,238,219,174,200,13,60,252,112,54,107,15,229,100,42, + 110,19,130,54,146,59,73,217,130,198,106,110,252,218,1,26,181,79,242,190, + 15,93,206,214,173,171,179,60,99,241,174,129,232,184,40,4,95,182,204,229, + 239,254,238,13,188,233,77,127,71,171,181,23,69,226,26,161,172,34,181,229, + 32,4,17,171,136,215,78,99,152,62,169,30,35,199,4,250,184,36,60,96, + 34,22,42,232,107,22,208,244,20,57,1,233,164,9,190,64,78,10,146,121, + 27,42,41,98,46,66,79,4,177,83,103,126,246,84,154,222,153,116,163,205, + 72,218,8,189,142,226,174,25,146,228,102,16,143,114,230,25,231,241,142,119, + 189,137,122,109,140,137,137,137,37,29,187,35,140,112,172,226,168,39,184,242, + 44,183,242,194,45,165,71,154,186,72,233,115,239,3,146,143,124,100,23,119, + 222,185,28,77,235,145,50,207,149,87,60,193,219,222,243,106,174,251,220,45, + 124,230,218,47,227,218,83,244,130,123,128,44,11,33,79,198,177,19,254,203, + 187,63,192,85,239,120,9,0,65,208,164,82,81,93,72,202,45,180,106,21, + 69,104,121,174,109,216,9,57,76,106,121,168,45,55,125,228,74,173,76,108, + 71,90,176,159,47,99,197,82,42,104,152,64,115,114,77,146,148,122,174,40, + 13,153,109,115,240,125,32,115,117,42,18,82,139,97,18,197,216,198,46,174, + 120,195,41,172,152,88,195,23,190,240,121,254,247,141,169,154,38,110,198,248, + 209,78,96,13,178,8,85,66,81,40,206,125,248,225,4,255,252,69,64,127, + 138,95,250,181,77,172,89,113,16,35,238,18,234,167,81,175,65,24,134,200, + 180,133,97,46,35,207,33,29,139,170,78,211,52,94,254,242,245,252,211,181, + 111,231,151,63,112,13,79,239,216,1,24,72,169,35,13,19,41,103,8,253, + 181,196,213,3,8,57,141,232,8,180,154,32,145,2,169,55,8,186,85,172, + 70,140,105,196,176,28,164,97,146,246,44,24,211,241,219,117,116,45,194,54, + 23,72,99,73,108,213,232,134,91,241,205,151,96,214,26,200,180,173,114,107, + 178,7,220,132,166,221,205,69,175,120,53,31,248,192,85,76,78,214,89,177, + 98,146,70,163,177,200,113,59,194,8,199,50,132,148,242,168,247,3,231,97, + 182,225,69,45,12,14,147,202,6,175,123,253,52,143,62,120,144,153,102,27, + 83,95,203,89,103,117,248,200,31,156,206,213,159,220,193,215,190,242,55,248, + 209,183,200,103,180,229,29,255,87,142,159,202,111,254,206,111,178,237,149,91, + 9,130,102,209,94,171,236,146,204,115,109,101,203,255,179,33,183,35,17,91, + 238,244,60,90,81,62,153,232,135,49,85,216,52,73,250,173,181,114,39,167, + 239,251,248,190,143,38,60,22,230,99,208,199,48,92,151,253,79,30,228,99, + 31,123,156,47,92,247,175,0,72,38,74,13,169,199,113,236,21,248,129,42, + 28,79,75,101,4,142,165,243,254,247,171,214,94,174,54,139,101,79,144,202, + 42,21,55,193,113,192,247,213,103,154,79,37,56,22,33,101,74,16,6,236, + 217,61,205,103,62,115,43,223,251,222,131,188,246,181,23,178,122,245,26,28, + 177,192,153,235,159,162,154,222,77,213,217,133,102,183,16,97,72,98,89,132, + 11,43,72,100,149,170,189,3,167,190,31,185,215,34,218,56,134,236,217,196, + 45,147,192,94,139,166,245,112,197,33,180,90,74,187,181,138,118,122,41,137, + 123,9,86,109,61,95,251,234,14,94,124,254,74,174,187,110,47,251,247,223, + 197,249,47,217,194,153,103,173,167,94,173,177,114,213,10,86,174,92,69,189, + 94,69,136,227,43,52,60,194,137,141,163,150,224,134,243,72,75,253,179,53, + 231,167,249,253,223,19,124,226,47,103,72,100,27,83,108,96,203,214,71,248, + 181,143,252,24,219,239,218,205,223,124,226,19,248,209,221,72,118,101,227,107, + 20,86,142,191,158,223,248,237,119,179,237,149,91,1,152,109,238,1,192,212, + 45,92,87,226,121,162,176,253,231,185,182,220,21,121,36,98,203,183,15,147, + 218,177,28,90,83,205,170,181,130,236,242,16,102,78,118,190,159,245,205,52, + 99,66,79,18,199,9,73,104,224,199,9,123,15,181,249,135,79,61,202,55, + 254,237,91,28,156,141,7,134,187,186,246,41,248,65,136,36,200,84,156,143, + 99,233,248,225,94,86,45,95,193,135,127,247,157,252,220,85,167,51,223,222, + 203,178,21,117,44,189,134,12,19,12,215,33,73,34,170,199,120,145,156,148, + 146,48,12,105,183,219,52,155,77,60,175,71,163,49,78,197,177,8,22,246, + 146,246,118,161,135,187,72,130,67,136,180,67,44,29,34,89,195,16,146,113, + 235,33,236,218,78,232,104,116,141,9,146,104,140,84,214,9,210,181,104,196, + 84,140,131,72,98,252,116,146,158,126,1,214,196,249,76,76,174,67,211,12, + 60,207,203,242,213,9,173,86,11,33,4,141,198,24,227,227,19,84,42,149, + 69,255,99,35,130,27,225,88,199,49,65,112,57,146,164,139,174,171,197,205, + 247,67,62,241,215,93,62,252,223,15,20,228,150,50,207,231,190,184,158,235, + 62,119,11,87,95,251,37,224,86,44,167,77,232,219,32,84,47,201,215,94, + 112,5,111,123,223,135,57,235,124,139,217,195,157,98,238,26,80,168,55,223, + 215,168,213,245,129,90,182,220,238,255,76,196,166,235,130,36,145,88,150,126, + 84,43,181,31,22,121,131,228,178,162,203,73,14,148,17,37,77,58,44,204, + 199,84,235,117,246,239,111,241,47,255,252,4,215,126,250,54,14,206,198,104, + 89,77,156,196,71,19,167,101,133,224,0,7,11,130,131,22,47,57,231,114, + 126,231,163,151,112,193,133,147,104,194,35,149,46,150,189,156,122,173,191,224, + 30,203,42,46,71,146,36,4,65,144,157,72,24,152,166,78,18,37,132,193, + 60,161,55,143,223,107,225,251,61,100,34,17,186,137,174,197,152,241,52,105, + 176,139,52,140,9,146,10,82,171,34,173,6,154,57,134,174,27,232,248,36, + 113,64,34,45,52,103,53,245,137,85,52,198,87,96,217,86,209,134,43,73, + 18,226,56,66,19,26,150,109,99,154,198,146,83,188,71,4,55,194,177,142, + 99,134,224,146,164,91,244,40,76,211,180,84,235,230,51,215,86,253,253,254, + 248,79,78,7,224,119,126,227,183,64,123,0,63,152,82,182,244,76,189,189, + 248,236,247,241,161,95,121,27,23,190,84,178,247,224,252,192,254,114,229,6, + 208,24,239,23,39,151,77,36,142,227,22,215,243,80,228,176,105,228,88,86, + 108,223,15,229,16,102,24,38,88,150,78,146,164,42,71,150,149,26,104,166, + 250,46,230,14,47,224,56,46,251,247,183,184,243,206,136,255,241,7,159,226, + 224,108,140,109,173,39,8,247,34,216,140,192,70,18,160,122,91,230,51,232, + 0,60,126,234,199,47,228,183,254,224,61,52,106,7,17,102,202,218,149,155, + 233,118,23,24,31,119,136,34,179,89,1,19,70,0,0,32,0,73,68,65, + 84,112,154,30,15,144,82,14,16,76,146,36,68,81,76,24,69,36,113,84, + 52,47,208,116,13,25,75,252,192,195,15,60,146,56,70,215,53,116,195,193, + 52,13,76,195,64,215,52,226,36,34,142,83,12,211,192,117,28,108,199,197, + 178,204,103,220,231,82,24,17,220,8,199,58,142,106,147,73,127,242,179,36, + 137,123,232,70,133,52,77,185,127,123,143,171,63,185,131,102,51,98,174,29, + 35,229,44,31,252,224,38,78,58,73,231,173,63,243,191,8,163,41,36,79, + 34,112,138,26,183,243,207,249,121,62,244,43,111,227,244,115,5,79,236,220, + 75,109,172,66,26,41,2,141,146,16,60,139,106,173,70,156,169,148,35,169, + 182,225,28,91,153,220,142,247,25,90,229,114,4,211,140,72,18,145,245,2, + 213,193,149,8,207,39,76,58,132,158,164,86,171,17,199,9,141,241,9,182, + 93,60,198,207,239,122,21,159,248,196,119,241,195,167,16,140,163,38,136,143, + 103,150,17,213,219,82,66,102,74,129,47,126,233,91,108,62,121,35,87,189, + 243,114,54,172,51,56,116,160,73,125,121,158,135,83,199,83,46,155,56,150, + 49,76,52,186,174,163,105,26,150,101,32,101,214,192,58,175,207,150,80,73, + 106,164,73,140,76,37,66,19,8,33,208,117,173,120,29,41,85,95,46,161, + 169,34,249,165,126,151,223,143,220,70,24,225,120,192,81,77,112,170,187,185, + 178,183,235,70,5,33,92,118,237,111,243,233,107,246,242,237,219,163,194,84, + 242,250,43,92,46,121,245,38,254,203,127,254,71,194,240,41,28,251,105,252, + 112,1,203,22,4,126,157,179,78,121,29,31,250,149,183,113,218,217,46,45, + 239,9,106,141,53,36,65,74,156,182,49,180,6,227,141,62,177,229,57,183, + 165,114,109,142,227,28,87,57,182,31,22,138,232,170,68,81,56,80,214,224, + 186,46,120,32,171,6,137,47,105,88,33,154,56,196,242,101,54,87,189,243, + 114,0,254,244,207,111,44,166,160,231,211,6,36,227,168,98,240,131,248,209, + 1,84,135,141,9,174,253,244,109,156,125,206,57,140,47,95,78,212,219,67, + 125,249,198,82,9,129,58,185,56,94,72,110,24,66,8,213,179,114,9,168, + 200,185,249,172,84,216,8,35,156,200,56,234,99,16,57,201,9,161,136,103, + 251,125,58,215,125,110,7,115,237,24,83,95,203,230,77,9,87,190,117,43, + 255,244,247,55,51,55,55,13,220,138,23,204,0,16,248,146,85,19,219,120, + 207,123,223,202,233,231,10,101,38,241,87,145,134,93,132,240,168,85,234,8, + 225,17,71,17,142,235,98,24,6,99,213,42,99,213,42,21,183,31,146,44, + 247,110,132,103,238,50,114,162,32,138,34,172,188,247,165,244,241,60,21,94, + 180,44,139,138,33,112,117,53,220,213,178,39,104,119,103,89,53,217,230,170, + 119,94,206,155,175,188,2,141,213,165,87,82,245,113,154,104,0,171,179,78, + 40,10,211,179,29,254,241,111,111,96,199,99,143,50,54,49,193,161,169,61, + 164,178,90,244,224,76,146,163,50,186,254,31,134,17,185,141,48,194,51,227, + 168,38,184,52,77,11,7,101,28,205,114,255,246,30,127,250,167,109,118,79, + 175,196,20,27,72,100,155,183,190,99,130,237,119,237,230,250,175,60,142,228, + 22,200,115,110,242,28,92,123,146,183,252,236,229,92,248,210,9,124,207,43, + 234,217,164,84,100,153,70,58,182,109,23,170,205,117,108,213,55,82,31,67, + 211,107,56,142,131,173,153,84,171,117,116,221,196,178,172,34,247,147,95,78, + 84,152,166,89,212,209,233,122,53,115,54,74,116,93,71,215,5,118,205,197, + 112,213,73,193,196,184,170,175,90,183,186,195,219,222,181,133,203,94,122,48, + 123,149,213,72,90,192,52,82,78,163,137,70,70,126,19,168,46,247,59,185, + 245,187,15,113,195,13,117,22,186,170,163,76,28,238,197,75,44,186,221,5, + 146,68,141,159,25,158,14,62,194,8,35,140,0,71,49,193,169,197,83,203, + 108,205,93,58,209,24,183,222,18,177,253,238,237,232,162,65,36,167,120,197, + 165,54,11,45,139,127,255,226,119,208,228,125,64,80,212,185,65,139,159,123, + 211,123,185,242,77,231,1,106,102,91,16,4,74,177,165,109,92,87,162,153, + 73,81,227,150,155,73,42,46,52,198,250,237,181,250,249,182,19,55,36,249, + 236,145,215,251,233,69,203,49,199,113,176,244,26,134,97,210,104,44,227,21, + 219,78,227,170,247,254,50,47,57,103,61,112,16,203,82,83,20,242,134,204, + 50,155,14,174,224,0,7,184,253,230,155,249,222,237,251,25,155,152,96,97, + 62,198,91,80,238,203,178,131,115,68,114,35,140,48,194,48,142,90,130,3, + 229,156,204,177,235,233,136,127,186,230,73,194,88,45,162,203,151,183,120,227, + 21,91,184,237,166,187,217,61,245,85,252,232,14,28,187,83,152,74,94,123, + 225,185,92,249,150,75,105,52,26,248,190,134,235,74,101,38,65,117,38,73, + 83,167,8,75,230,228,230,56,46,90,182,24,219,90,63,231,54,34,183,103, + 135,178,235,206,178,244,76,205,153,69,222,178,219,93,64,119,4,175,186,124, + 57,111,127,207,197,172,90,30,19,133,49,249,44,57,41,179,186,58,86,147, + 79,11,7,184,103,251,215,185,229,230,125,28,56,188,26,153,44,16,165,11, + 196,113,94,178,16,101,101,11,74,201,149,157,158,47,52,242,19,180,99,245, + 50,194,8,199,58,142,218,95,113,238,160,12,131,195,232,122,149,91,111,137, + 120,248,225,26,126,52,78,34,219,92,126,249,105,76,237,137,216,127,224,235, + 192,99,56,118,13,63,220,9,192,170,137,109,188,227,125,87,177,118,157,65, + 187,221,30,108,187,37,85,231,140,97,229,54,236,148,52,220,62,185,233,186, + 54,34,183,103,137,242,226,168,28,124,2,199,177,24,27,27,195,214,76,18, + 95,82,53,3,182,93,124,50,63,255,246,87,33,105,149,212,91,144,181,242, + 106,100,219,92,20,249,181,184,255,193,91,120,240,222,131,8,189,142,239,251, + 196,177,170,229,242,125,127,160,203,74,185,3,203,8,35,140,112,98,227,168, + 37,56,160,40,234,190,247,129,14,127,243,241,189,0,164,105,151,147,54,215, + 216,122,170,197,109,55,221,77,123,94,157,245,167,98,86,61,73,174,224,109, + 239,124,7,167,156,125,58,29,127,161,32,55,207,19,76,104,61,34,103,21, + 154,230,15,40,183,36,173,12,56,37,21,185,137,34,223,86,182,199,143,240, + 236,80,174,97,204,157,142,149,134,106,187,101,185,130,13,235,12,94,121,233, + 101,69,168,18,192,178,98,69,114,194,201,138,194,199,81,142,74,135,251,182, + 119,249,214,205,15,211,94,72,240,252,0,223,247,138,217,117,50,76,6,72, + 110,132,17,70,24,1,142,98,130,75,146,132,52,77,177,236,21,124,250,154, + 157,60,189,171,83,220,119,225,143,85,121,240,158,25,30,125,226,54,252,104, + 59,224,18,6,170,112,123,229,196,5,188,242,85,91,105,183,219,164,97,183, + 48,148,0,200,250,122,12,211,100,204,174,47,153,115,179,53,115,104,166,218, + 112,235,162,227,187,206,237,249,64,174,124,243,98,229,28,154,232,242,138,151, + 91,92,245,206,173,69,145,183,10,87,42,72,198,179,122,57,39,187,52,185, + 241,43,183,114,231,157,17,99,99,107,0,240,125,15,223,247,9,210,126,135, + 21,181,175,209,137,200,8,35,140,112,20,19,92,190,48,222,251,64,135,175, + 222,120,64,25,75,146,253,156,178,117,21,0,15,220,127,87,54,219,109,26, + 196,118,64,141,190,249,141,223,126,55,235,54,196,56,142,10,85,229,10,46, + 239,45,9,32,156,106,97,251,207,115,110,185,114,43,239,127,68,104,63,58, + 210,52,201,154,76,107,89,241,178,133,107,77,48,54,54,70,189,166,113,241, + 101,151,242,211,87,94,134,26,134,218,82,83,191,165,143,192,198,180,12,36, + 107,200,195,148,211,179,135,185,237,166,111,178,247,80,91,133,38,35,69,136, + 195,161,202,81,152,114,132,17,70,128,163,152,224,210,52,69,74,143,79,95, + 179,147,39,158,174,171,126,147,250,90,206,56,43,33,232,60,200,174,169,7, + 241,163,25,200,92,147,82,214,121,195,229,239,99,219,43,183,50,51,123,136, + 32,8,138,215,50,53,101,49,215,181,26,245,90,191,81,175,202,187,245,149, + 27,80,228,220,70,120,110,32,165,34,172,126,87,26,213,71,50,73,36,94, + 216,100,243,73,38,175,127,203,171,217,184,97,35,150,53,153,145,154,10,83, + 134,225,204,208,171,181,184,227,206,93,28,124,226,17,194,56,37,74,226,129, + 80,37,80,24,78,70,24,97,132,17,94,176,149,188,28,70,74,211,100,209, + 37,142,102,137,34,147,27,175,239,63,231,164,173,123,169,213,199,184,251,190, + 195,8,30,5,118,23,77,148,93,251,20,222,254,238,75,136,162,3,24,90, + 99,96,95,154,153,224,184,46,66,83,100,88,54,149,192,96,41,192,127,20, + 185,229,53,126,75,223,119,228,207,230,71,121,221,35,63,39,89,180,223,231, + 10,186,94,69,215,171,133,241,36,87,230,154,104,227,90,19,36,190,228,39, + 95,23,241,234,87,173,36,142,150,19,133,113,49,51,78,176,9,219,90,143, + 170,139,83,237,188,230,59,143,114,227,157,130,56,212,241,252,128,36,138,209, + 132,10,85,246,60,189,120,237,81,217,192,8,35,140,240,130,17,220,247,11, + 255,25,230,50,62,243,69,159,102,51,51,145,164,93,28,119,156,160,243,32, + 211,211,79,3,253,26,40,41,235,252,220,155,222,66,181,214,37,136,7,23, + 119,219,182,23,57,38,129,69,237,183,20,185,233,139,134,128,62,159,88,202, + 138,61,76,110,208,87,65,71,186,127,248,53,127,16,139,119,222,212,186,252, + 247,63,2,106,120,41,217,172,55,135,43,223,114,41,203,150,53,74,53,112, + 125,148,235,226,188,32,230,241,239,78,177,127,95,140,76,213,246,216,79,48, + 12,29,77,116,7,204,38,63,40,209,143,48,194,8,199,23,94,240,88,220, + 240,130,154,19,76,146,164,124,249,115,55,51,215,142,209,69,131,201,137,6, + 27,55,89,236,216,97,225,135,15,1,45,192,71,202,58,43,199,79,229,202, + 183,92,10,64,18,214,208,45,101,72,201,201,205,48,12,116,195,196,212,85, + 235,205,90,173,182,200,84,162,114,110,255,113,31,199,240,190,114,133,214,15, + 233,37,3,196,6,12,220,151,215,8,254,32,234,110,233,227,208,151,252,251, + 124,35,73,210,172,132,64,221,126,229,165,54,63,241,159,44,92,187,158,77, + 24,80,8,67,35,155,37,215,39,190,123,182,127,157,29,59,212,12,191,40, + 137,241,66,21,146,244,125,31,25,38,68,113,37,219,199,200,108,50,194,8, + 39,50,94,208,16,101,174,26,202,170,41,15,177,109,127,36,224,27,223,80, + 51,191,18,217,70,24,51,204,245,82,246,236,223,129,34,183,0,196,97,4, + 14,175,220,246,22,214,174,83,228,229,56,41,137,214,69,51,7,23,55,203, + 208,208,77,163,32,183,114,57,192,243,89,227,246,108,194,127,101,165,150,35, + 191,158,196,189,69,151,252,190,56,154,251,129,212,221,15,66,132,75,17,231, + 115,173,238,76,211,36,137,123,0,140,87,76,174,250,191,46,166,90,155,232, + 27,77,132,131,38,26,89,183,19,85,19,231,218,6,208,226,250,207,239,96, + 255,190,152,94,79,48,223,237,146,38,29,124,223,35,72,115,195,201,40,23, + 55,194,8,39,58,94,112,5,87,70,185,61,215,167,175,217,201,188,215,111, + 188,59,94,95,79,119,250,32,51,115,143,3,211,89,15,67,88,49,190,145, + 55,190,233,34,58,190,154,249,22,73,3,175,37,168,132,234,246,112,167,146, + 28,185,169,228,63,226,61,13,135,255,202,127,203,228,182,20,153,25,241,92, + 113,201,145,223,151,95,207,159,95,126,205,124,127,229,125,61,219,122,190,242, + 253,229,227,126,46,235,1,203,39,21,174,235,18,71,179,188,248,197,46,23, + 95,52,60,183,204,37,10,171,80,148,12,40,60,242,196,173,52,155,125,195, + 80,207,27,120,90,17,170,28,229,226,70,24,225,196,197,81,67,112,195,11, + 209,61,15,69,44,107,40,85,150,166,93,86,109,137,152,107,239,67,160,198, + 169,168,134,202,43,88,191,225,66,234,19,38,129,215,84,234,45,72,169,184, + 117,34,103,21,134,105,162,27,253,5,179,220,169,4,158,223,169,0,195,10, + 232,72,74,46,87,96,57,81,21,199,58,68,106,229,109,195,219,203,36,247, + 76,106,238,251,25,123,150,82,120,249,237,36,233,254,72,161,208,97,228,249, + 177,84,246,13,65,117,91,227,245,111,121,245,162,199,10,225,20,53,113,94, + 208,1,2,14,53,35,230,23,250,181,145,195,147,197,71,24,97,132,17,94, + 80,130,203,243,73,195,56,60,227,243,216,189,9,189,222,12,105,218,165,98, + 71,44,171,104,153,185,228,96,233,145,13,46,218,118,42,171,214,248,152,186, + 69,148,246,208,173,14,82,186,69,238,205,50,52,28,199,25,8,77,230,174, + 73,120,225,250,75,30,137,40,10,242,74,218,207,120,25,38,187,156,228,162, + 232,217,189,159,156,12,143,116,25,134,16,206,192,115,127,84,120,158,146,92, + 142,99,17,134,49,186,81,33,12,67,126,226,181,22,203,150,149,92,176,194, + 65,74,23,211,42,143,46,244,128,22,79,61,254,237,66,185,123,190,202,219, + 149,137,110,212,221,100,132,17,78,108,188,160,4,39,132,83,132,189,114,162, + 241,253,144,230,204,46,218,243,85,188,176,135,166,85,169,84,38,217,179,59, + 196,11,187,144,133,38,115,188,244,130,151,210,106,207,161,153,9,129,159,96, + 27,234,45,25,198,145,103,185,150,123,76,62,223,88,42,175,54,124,123,41, + 245,150,35,9,230,6,46,207,132,36,238,97,154,209,146,230,148,165,174,151, + 247,123,164,235,75,61,183,76,118,63,44,114,115,137,239,135,56,142,85,180, + 101,171,215,52,54,174,221,90,50,154,216,32,156,172,203,73,222,155,82,133, + 154,167,118,239,38,240,154,196,177,42,248,78,162,152,32,51,223,228,51,227, + 70,24,97,132,19,23,47,216,68,111,101,34,112,139,121,111,81,20,33,211, + 22,150,181,156,47,125,101,21,137,124,12,41,27,72,217,101,98,98,21,205, + 230,119,16,236,132,108,225,147,178,206,89,167,168,81,56,182,163,147,132,53, + 42,166,32,136,23,208,109,69,92,121,238,237,72,174,201,231,10,101,53,182, + 148,186,137,35,69,76,186,81,41,204,19,249,182,50,140,120,14,146,246,32, + 145,197,109,72,51,82,215,198,73,226,118,246,224,6,186,173,172,246,6,16, + 27,234,122,18,247,208,141,74,113,44,66,56,5,33,229,199,86,14,137,62, + 91,98,203,95,231,185,114,89,230,3,108,77,51,34,73,34,132,112,168,86, + 171,28,158,241,249,201,159,12,120,224,225,6,82,186,72,30,207,234,226,54, + 147,59,103,193,6,2,190,243,221,144,119,245,214,210,171,90,56,201,62,164, + 147,18,7,235,136,245,132,192,136,192,143,178,92,235,241,57,245,123,132,17, + 70,120,102,188,160,10,174,108,149,207,213,84,24,198,220,118,203,238,129,199, + 85,107,30,157,110,64,185,246,13,224,244,211,178,252,155,159,32,132,71,152, + 185,230,234,149,254,98,150,164,149,226,122,57,52,249,92,97,169,90,53,24, + 116,63,150,183,229,143,29,70,78,110,5,226,246,32,185,129,186,94,186,157, + 4,115,196,153,82,25,206,203,69,145,73,20,153,139,194,142,101,243,202,82, + 207,43,135,60,143,68,120,207,5,142,84,146,177,124,153,197,143,255,244,229, + 197,109,129,173,8,90,56,8,28,92,187,134,82,113,30,243,157,71,217,177, + 99,15,34,85,159,91,228,31,185,238,109,100,54,25,97,132,19,15,71,133, + 201,36,138,162,66,25,244,98,201,246,187,119,147,166,42,212,164,105,42,116, + 213,237,236,45,30,47,241,113,237,73,54,159,188,145,181,235,12,162,48,40, + 218,113,1,232,134,50,151,56,142,67,181,34,23,25,75,158,171,179,249,97, + 123,255,82,164,246,76,14,200,225,251,227,48,81,234,45,39,182,180,69,226, + 55,145,233,252,224,37,222,3,113,155,110,152,34,100,155,216,83,207,239,6, + 105,177,15,77,180,73,146,168,200,201,13,239,55,223,119,249,24,134,111,15, + 63,47,207,153,62,151,229,2,101,133,169,126,7,26,231,156,105,179,105,245, + 138,226,126,41,93,92,71,205,141,243,130,90,241,92,47,232,176,111,111,76, + 146,189,239,249,96,1,18,213,116,123,120,94,220,168,253,218,8,35,156,120, + 120,193,66,148,208,119,210,149,9,167,213,234,177,16,134,8,161,35,165,195, + 178,134,129,239,53,241,195,132,65,5,55,193,121,231,108,192,235,204,99,90, + 54,86,69,35,92,72,112,109,101,80,176,140,193,5,77,88,250,115,90,26, + 144,23,98,3,139,8,107,41,28,105,187,122,1,165,64,132,236,171,54,153, + 206,35,131,57,4,32,3,144,105,19,161,169,178,9,97,47,131,180,69,85, + 131,110,88,167,106,181,89,232,84,104,212,90,180,131,113,170,89,136,214,52, + 242,48,228,18,199,81,86,139,195,208,27,3,143,141,141,101,69,232,51,15, + 87,230,159,193,15,27,178,44,215,64,150,175,251,126,136,105,70,156,115,193, + 38,118,127,233,238,98,26,132,231,27,89,71,147,60,255,167,182,55,15,238, + 6,86,161,233,117,128,162,63,101,222,103,52,135,106,192,44,70,131,60,71, + 24,225,4,194,11,70,112,121,14,166,140,40,174,208,154,149,144,110,6,166, + 17,194,71,24,17,51,115,29,138,226,238,12,99,21,53,85,32,74,135,84, + 137,97,144,196,17,24,118,54,231,237,249,93,208,150,36,183,103,34,15,80, + 4,50,244,152,178,114,147,233,60,137,56,132,72,23,138,251,195,222,33,172, + 76,164,166,34,70,79,213,240,153,170,6,160,8,105,161,227,131,171,148,92, + 78,114,71,58,182,56,76,20,161,46,137,57,244,202,150,129,231,150,73,14, + 158,155,90,184,156,216,146,36,45,136,206,52,35,146,184,199,150,173,186,58, + 129,16,19,144,79,250,22,13,44,163,142,31,181,0,117,236,115,243,7,212, + 107,37,11,5,201,37,81,12,78,62,101,0,170,213,156,232,70,133,223,35, + 140,112,34,225,5,85,112,57,242,133,174,90,173,114,255,195,243,71,120,84, + 94,201,171,22,187,117,235,55,161,177,155,40,169,80,49,199,137,163,8,221, + 234,33,211,6,134,149,100,133,221,114,81,191,201,231,10,101,163,198,82,196, + 86,24,69,74,166,16,226,182,250,203,28,186,189,108,73,51,73,161,220,172, + 29,192,10,200,38,144,199,135,82,88,121,8,203,181,128,58,137,56,84,144, + 92,55,172,3,251,16,198,58,52,239,32,245,154,67,59,24,47,94,186,32, + 187,236,248,146,76,25,22,199,86,50,177,228,199,154,244,118,22,38,150,92, + 209,1,248,62,232,122,82,184,80,243,97,166,63,12,194,48,193,178,74,13, + 152,53,157,52,117,48,76,135,115,46,84,185,183,156,146,92,171,130,31,54, + 241,34,35,155,42,167,126,15,123,166,2,186,157,42,66,120,140,141,213,8, + 227,4,136,7,246,147,36,17,186,110,253,80,199,56,194,8,35,28,187,56, + 42,226,53,249,252,174,52,77,233,204,236,96,174,29,35,101,185,238,106,122, + 209,115,182,108,218,194,178,117,253,188,155,233,79,23,121,56,203,208,16,230, + 210,134,131,231,205,77,87,34,143,66,141,149,114,105,132,153,113,38,219,190, + 136,220,50,200,124,187,103,130,163,38,37,132,94,136,251,208,211,138,228,196, + 56,34,221,161,246,37,14,209,106,5,84,181,190,210,3,152,110,247,195,134, + 105,100,20,6,150,34,199,151,239,51,109,33,227,61,69,110,111,248,88,11, + 19,75,86,119,87,188,213,44,175,85,236,35,77,126,168,198,198,214,144,233, + 39,138,34,146,36,37,73,82,206,59,75,195,182,82,200,38,11,120,97,89, + 169,231,161,106,143,125,123,119,179,208,140,138,214,108,73,150,123,91,122,140, + 206,168,249,242,8,35,156,72,56,10,8,110,208,0,240,192,93,187,23,61, + 162,215,181,40,230,190,225,99,59,130,70,99,115,49,22,39,74,123,116,196, + 120,49,53,32,71,62,14,231,185,86,111,207,10,67,142,199,130,64,134,81, + 82,81,50,85,234,53,117,98,160,5,94,183,120,88,207,216,149,189,80,139, + 110,169,131,7,64,107,78,157,0,116,218,253,126,85,126,71,145,158,102,102, + 67,65,203,117,97,37,181,8,138,84,19,113,168,79,116,64,55,76,251,38, + 150,48,97,161,227,211,13,82,194,68,237,123,152,156,126,112,8,52,77,133, + 33,125,63,4,212,201,71,126,217,176,46,15,46,168,176,180,235,196,165,233, + 236,253,90,184,67,205,8,141,254,111,38,12,154,63,226,113,141,48,194,8, + 199,11,94,176,16,101,158,236,207,235,224,194,224,48,66,27,103,118,126,19, + 105,58,131,16,62,106,113,171,144,200,124,209,106,33,112,8,253,6,213,177, + 125,56,206,114,76,191,71,164,109,38,205,10,192,27,245,108,225,213,86,96, + 24,234,140,221,178,148,129,161,219,237,162,235,26,82,250,69,97,241,145,176, + 148,129,162,108,44,201,177,168,118,109,40,143,6,160,203,149,3,33,69,153, + 206,35,210,177,129,215,73,252,38,66,182,149,153,164,7,48,142,116,159,134, + 94,139,248,208,106,42,241,102,230,199,124,192,167,90,175,65,111,129,182,87, + 97,108,249,20,157,246,6,188,118,72,181,49,7,172,163,162,103,196,152,17, + 100,172,43,245,35,100,187,175,206,252,38,210,158,69,244,22,16,218,4,162, + 183,64,146,9,98,61,133,170,54,149,133,44,251,225,201,134,222,202,234,237, + 122,120,158,42,214,78,18,19,93,7,144,89,94,78,25,57,242,239,53,255, + 220,128,1,131,74,24,170,48,167,166,169,110,38,234,113,105,246,220,4,221, + 17,172,94,182,138,93,7,99,16,13,60,63,192,177,219,248,193,248,64,38, + 205,177,231,152,110,90,172,17,99,116,188,125,172,168,54,48,240,72,34,163, + 240,163,248,190,95,202,195,141,48,194,8,39,10,94,48,5,151,247,54,4, + 181,0,234,70,5,93,215,153,111,10,132,104,103,33,74,155,168,39,179,102, + 187,125,56,246,24,150,189,134,78,111,129,142,24,199,79,154,24,118,151,137, + 154,198,92,187,141,81,209,136,61,175,176,138,123,158,79,146,116,169,86,171, + 104,154,254,125,201,237,89,29,127,94,75,54,108,40,41,41,163,28,121,216, + 49,87,73,195,106,105,17,100,139,225,142,45,0,53,173,137,116,103,21,113, + 101,185,185,249,217,65,179,71,167,237,13,40,185,28,133,67,179,124,187,132, + 222,174,131,136,94,63,212,89,40,206,184,77,175,164,138,186,65,74,55,72, + 49,141,30,121,87,172,126,232,175,175,146,203,110,197,220,33,169,6,159,170, + 235,170,123,137,158,61,191,155,157,80,228,196,168,182,143,47,63,18,41,245, + 157,148,126,160,62,195,154,83,199,54,52,90,94,68,204,160,129,201,214,204, + 81,219,174,17,70,56,1,241,194,17,92,105,236,139,166,233,8,225,18,134, + 49,173,249,160,112,205,1,68,102,140,105,117,81,139,154,93,108,31,171,82, + 132,40,107,153,106,139,252,148,122,173,74,180,208,166,94,237,97,185,2,199, + 113,176,44,139,40,50,127,160,105,215,139,213,91,255,121,195,245,100,101,245, + 150,155,68,148,11,114,7,209,204,211,200,100,167,82,74,189,133,66,213,165, + 97,66,26,38,36,126,147,196,111,210,238,168,237,57,113,149,225,62,244,180, + 58,166,233,82,104,82,140,15,60,198,144,123,240,218,33,126,116,152,106,85, + 29,79,153,236,102,14,103,37,13,217,254,0,69,104,178,133,76,251,4,38, + 122,11,200,96,142,52,76,104,181,130,129,125,44,116,250,223,75,94,115,167, + 58,145,200,236,187,148,3,196,150,127,222,229,75,121,123,254,216,252,183,160, + 102,220,41,37,88,183,53,164,54,73,249,59,87,200,201,205,195,177,77,242, + 80,101,187,221,166,215,83,18,52,28,26,122,27,164,163,33,168,35,140,112, + 34,226,5,35,56,221,168,12,244,52,76,146,4,43,111,168,43,250,97,177, + 74,145,87,243,113,236,49,192,193,15,52,230,187,160,219,26,81,162,242,55, + 105,234,208,201,204,115,102,227,100,42,122,183,200,67,229,134,136,124,20,79, + 24,28,126,214,199,217,95,152,229,98,231,100,30,154,44,25,74,100,48,151, + 133,25,213,190,227,67,41,189,221,190,50,140,200,86,65,116,237,206,33,21, + 34,204,148,212,120,213,102,230,112,63,20,11,64,79,39,157,151,232,51,195, + 19,8,90,224,28,198,149,187,212,49,198,234,111,187,61,77,69,36,120,237, + 16,25,239,163,90,157,163,90,157,163,23,52,153,156,8,138,28,96,30,10, + 45,200,84,182,20,137,202,86,65,120,210,158,85,71,50,55,93,188,30,128, + 230,245,155,93,135,73,167,80,113,81,100,146,36,105,209,49,36,77,211,129, + 129,163,229,73,227,82,122,228,150,125,93,175,98,152,203,6,10,190,85,233, + 64,57,16,169,136,86,104,249,239,194,1,130,76,189,245,213,170,227,164,56, + 174,75,28,102,195,91,197,160,146,29,205,135,27,97,132,19,11,47,24,193, + 169,58,184,126,72,75,166,45,194,48,206,238,91,158,117,48,25,84,16,126, + 144,159,137,7,140,85,33,13,187,152,186,69,183,211,81,163,113,180,26,119, + 125,207,161,53,107,18,234,167,49,214,88,67,32,13,28,199,194,178,116,154, + 243,211,164,105,130,97,46,123,86,199,168,66,168,18,41,189,165,203,2,6, + 30,60,20,154,116,14,15,152,68,20,90,75,42,180,156,112,234,238,33,114, + 114,147,178,5,149,100,80,181,229,168,36,116,23,58,89,201,64,31,203,199, + 2,12,185,103,96,155,215,14,241,218,97,209,21,101,144,220,212,190,66,47, + 236,31,159,27,129,108,161,249,6,117,71,189,95,183,161,246,147,171,193,208, + 235,19,133,105,168,6,207,160,218,173,229,97,71,77,211,138,41,233,154,166, + 145,36,221,254,37,251,28,211,52,205,12,38,202,112,18,134,9,158,167,186, + 165,88,150,129,72,103,160,220,116,121,0,54,195,191,143,32,8,136,227,24, + 161,249,68,73,76,207,27,141,206,25,97,132,19,25,47,160,139,82,45,146, + 97,24,103,161,41,133,218,138,65,223,203,250,85,18,141,92,217,100,35,86, + 108,147,249,174,26,134,233,186,18,219,182,137,163,136,160,163,177,103,199,118, + 62,243,169,175,243,215,127,113,136,155,110,86,10,34,138,34,226,104,142,177, + 106,13,77,211,105,245,6,235,164,150,66,126,76,195,221,74,202,53,111,195, + 197,217,185,122,67,238,66,210,39,26,247,161,167,7,201,206,57,76,195,237, + 49,63,155,208,234,6,180,186,131,11,245,51,193,208,218,208,83,36,210,141, + 155,24,198,195,64,95,197,129,10,87,70,173,167,136,90,79,49,217,152,102, + 178,49,93,132,37,251,104,13,253,29,186,183,27,20,234,50,106,61,53,112, + 95,154,244,73,55,138,43,133,138,11,195,132,36,73,6,250,62,150,91,123, + 233,122,85,53,216,150,13,146,36,229,250,27,58,188,253,103,111,228,227,31, + 127,144,195,51,62,142,99,225,186,253,134,206,195,33,202,74,69,27,26,155, + 51,142,107,175,7,96,217,138,115,25,27,91,141,23,180,113,120,230,239,119, + 20,166,28,97,132,19,3,47,96,161,183,64,74,15,203,114,0,131,246,130, + 206,245,95,243,153,222,105,146,166,138,68,206,59,119,3,103,156,61,201,125, + 15,221,66,94,38,224,216,253,67,214,109,141,249,78,68,173,226,16,165,61, + 214,173,223,202,143,255,244,229,220,255,112,202,7,127,225,203,184,238,97,174, + 124,253,6,174,124,203,165,188,225,63,141,163,235,38,190,31,178,172,102,23, + 97,199,114,174,173,236,156,84,132,182,68,239,198,82,189,219,176,221,30,88, + 164,208,220,224,73,64,67,202,22,66,140,163,8,165,10,178,69,195,205,59, + 148,172,36,236,29,234,191,68,254,26,222,2,218,254,22,176,12,125,38,97, + 126,203,65,26,76,130,104,81,209,193,75,65,202,6,105,119,63,90,117,45, + 105,188,11,205,216,60,176,255,60,143,86,119,150,8,77,2,48,78,124,200, + 39,15,4,119,23,58,84,235,53,198,170,58,173,217,0,45,251,184,103,91, + 9,78,201,243,17,122,18,203,21,200,48,65,88,58,166,217,239,123,153,23, + 128,231,215,213,95,101,236,153,157,11,121,108,123,192,95,124,236,22,238,190, + 239,48,187,167,158,96,253,150,147,212,103,154,157,84,164,169,202,199,42,5, + 215,199,228,178,6,176,149,153,217,237,168,9,223,227,120,193,56,119,220,186, + 3,221,216,192,166,141,130,117,27,150,211,137,99,234,140,48,194,8,39,58, + 94,240,121,112,32,184,127,123,143,15,253,202,126,126,243,151,191,202,158,221, + 19,104,90,21,77,171,114,230,217,147,156,127,193,4,101,149,225,7,122,225, + 156,3,24,171,153,104,154,143,109,104,180,91,77,30,185,247,49,206,59,75, + 227,37,47,125,5,205,166,195,53,215,62,196,251,222,253,17,126,253,215,31, + 195,247,67,116,93,100,57,56,165,32,163,40,42,77,173,78,143,216,76,248, + 25,123,73,66,95,189,81,34,40,183,10,79,246,63,98,41,91,116,99,181, + 223,110,220,44,72,173,57,51,72,138,233,124,41,87,212,92,90,109,120,165, + 205,86,163,175,206,210,120,215,128,154,27,56,198,116,169,26,177,197,10,174, + 187,208,89,228,206,172,8,117,187,211,246,250,101,8,64,164,43,85,237,15, + 13,27,208,117,189,32,183,188,199,228,189,15,116,184,254,107,33,127,241,177, + 91,184,237,78,155,61,123,215,32,216,164,30,239,136,129,198,206,189,120,113, + 190,204,113,199,51,146,115,81,4,183,6,199,90,207,23,190,244,20,255,227, + 15,62,197,117,159,187,133,86,51,120,198,89,128,35,140,48,194,137,131,231, + 141,224,202,97,199,36,233,18,6,135,75,6,132,132,56,154,101,118,46,226, + 87,127,109,134,159,123,243,78,62,251,217,105,230,154,235,137,228,20,186,104, + 48,230,54,249,153,183,78,114,239,221,77,28,211,0,124,44,231,16,170,7, + 225,106,245,194,114,158,32,81,221,229,77,115,13,73,218,225,79,63,150,242, + 233,79,245,120,231,47,52,176,173,20,73,139,233,217,41,182,223,179,131,253, + 51,93,146,68,18,197,149,172,116,64,177,68,24,170,176,90,158,63,26,70, + 97,40,233,237,84,157,74,186,59,85,61,89,218,34,245,118,101,182,127,21, + 154,4,165,212,12,173,173,194,148,167,100,76,244,228,2,84,18,208,246,128, + 215,165,106,44,46,60,183,220,30,73,187,137,54,38,232,101,225,65,49,63, + 137,206,12,58,51,84,141,53,0,244,198,166,113,179,111,78,8,245,56,195, + 120,24,87,238,162,225,102,249,173,140,232,198,236,3,140,217,7,22,185,52, + 165,108,169,146,3,84,8,117,239,106,117,60,149,250,28,213,122,141,134,179, + 127,224,216,122,82,199,143,14,19,56,203,232,37,85,186,217,73,70,26,41, + 50,41,55,178,206,63,87,165,134,213,9,197,35,143,135,220,122,75,68,235, + 80,194,88,93,80,51,66,144,223,69,114,171,122,142,47,73,101,131,84,54, + 136,163,217,146,139,178,31,190,21,233,12,167,158,190,18,215,190,16,201,22, + 36,14,94,216,69,224,112,104,182,198,53,159,237,242,225,95,189,139,219,190, + 181,149,48,78,137,253,38,105,210,193,247,125,100,168,250,92,198,209,236,146, + 223,241,8,35,140,112,252,225,121,35,184,60,36,149,36,93,132,112,176,236, + 21,3,61,7,191,252,53,155,95,120,207,99,124,230,218,123,216,181,59,235, + 56,34,26,232,162,129,198,24,43,86,109,224,214,91,124,30,223,126,61,126, + 20,3,62,161,175,242,49,110,22,166,76,35,189,24,149,98,88,9,113,20, + 241,196,147,59,249,230,205,187,0,216,180,113,51,142,165,147,135,55,99,207, + 27,168,135,82,237,155,100,233,246,224,248,27,88,66,185,149,102,180,201,116, + 158,212,137,149,99,50,107,171,37,101,171,175,224,122,250,128,130,203,115,103, + 185,146,139,76,117,18,80,173,40,147,71,232,85,208,198,6,137,79,103,134, + 132,201,129,109,99,88,80,73,112,245,204,21,41,250,53,109,97,239,80,65, + 114,64,145,227,43,111,91,74,181,173,63,40,233,37,106,123,119,161,67,219, + 95,11,244,115,123,185,130,43,163,108,54,25,174,51,203,13,67,64,209,160, + 249,75,95,220,195,189,119,55,185,232,245,151,210,88,177,6,219,138,24,158, + 241,103,154,17,221,32,37,232,120,248,222,224,113,74,109,146,45,39,173,229, + 204,83,61,52,86,163,49,142,64,205,137,3,7,73,139,187,183,63,197,239, + 252,230,255,199,199,255,100,39,221,248,12,82,233,82,169,27,4,105,196,92, + 83,39,138,43,140,154,46,143,48,194,137,129,231,141,224,210,180,111,25,207, + 67,84,0,115,157,128,107,174,126,138,143,254,238,99,92,119,253,12,179,179, + 227,139,159,203,60,171,55,140,243,213,27,238,231,158,237,123,129,38,234,76, + 62,95,200,148,122,136,146,16,145,89,193,227,80,199,182,39,240,124,131,7, + 182,79,241,229,207,221,204,204,92,27,63,220,11,100,173,172,122,99,244,60, + 29,223,247,9,147,14,221,238,66,214,87,49,34,12,67,52,45,60,98,19, + 229,129,57,109,100,157,64,130,185,62,185,121,221,194,249,72,37,35,131,74, + 130,86,85,196,167,237,95,90,57,228,36,23,153,93,34,179,139,151,170,240, + 99,69,147,136,121,65,60,166,72,14,80,100,169,183,153,39,84,102,19,64, + 150,200,45,127,173,50,201,53,220,94,113,93,133,68,151,54,149,0,216,29, + 137,215,209,49,163,197,133,240,173,5,69,68,182,63,135,23,167,184,134,134, + 229,138,162,21,88,142,124,246,154,85,50,131,8,225,48,181,39,229,123,247, + 60,198,189,119,61,69,235,80,66,251,240,1,252,112,22,240,153,159,201,122, + 107,38,170,251,127,232,73,186,97,15,199,29,39,55,153,72,233,176,239,192, + 44,27,54,154,156,246,178,13,192,102,36,227,8,250,191,31,193,56,26,227, + 248,97,194,213,215,222,206,123,223,241,247,220,125,111,157,208,147,104,102,140, + 171,135,184,174,75,24,38,207,249,92,187,17,70,24,225,232,195,243,70,112, + 97,24,163,235,122,49,22,199,113,44,210,52,229,223,175,11,248,227,255,119, + 7,15,63,92,195,212,215,162,139,6,137,108,23,127,163,100,63,155,55,37, + 44,52,15,176,123,207,46,245,92,211,160,92,239,148,151,11,216,142,142,109, + 219,204,119,250,234,161,81,113,1,155,111,222,17,209,237,52,81,11,186,71, + 26,237,162,86,153,71,19,93,194,160,89,168,143,60,124,37,195,100,32,7, + 244,76,110,201,196,111,66,178,75,133,37,135,200,205,208,218,138,124,244,62, + 241,104,225,116,145,75,27,171,171,69,85,12,17,83,188,32,112,186,45,92, + 141,66,153,25,178,137,81,242,175,228,100,57,134,197,188,126,24,93,159,135, + 241,131,72,209,70,136,54,21,189,141,30,238,35,50,187,132,189,67,184,114, + 23,97,239,144,34,182,76,85,118,99,169,142,85,168,219,237,44,45,167,207, + 244,75,18,34,179,75,218,237,135,40,103,231,251,78,70,63,234,215,16,134, + 158,36,141,140,162,63,101,174,226,194,48,239,80,211,15,85,214,198,83,60, + 223,96,234,176,207,181,255,112,39,243,193,20,234,196,197,103,98,69,202,130, + 239,21,39,31,139,32,125,52,173,202,204,76,143,123,239,110,242,234,75,94, + 195,121,103,171,217,120,142,189,2,89,144,156,143,196,71,224,32,241,185,119, + 251,12,191,255,219,183,243,157,239,85,240,59,11,88,149,128,94,59,63,214, + 145,147,114,132,17,142,119,60,111,4,151,215,70,229,136,162,136,107,62,219, + 225,227,127,252,24,79,239,88,95,108,207,201,13,32,77,187,172,88,17,177, + 106,75,196,222,125,187,241,2,85,44,45,52,53,11,78,57,40,7,235,161, + 34,105,48,86,83,161,207,133,80,35,140,5,82,58,196,61,21,234,115,237, + 190,194,232,244,198,138,5,52,207,205,60,35,146,193,174,255,69,41,128,61, + 155,21,69,239,234,147,155,104,21,170,10,64,111,202,158,86,221,0,0,32, + 0,73,68,65,84,196,24,90,155,78,208,69,204,79,210,169,120,152,243,187, + 6,94,190,76,114,70,93,18,212,6,195,147,101,179,99,174,90,115,140,97, + 33,170,137,10,87,2,174,6,98,161,141,167,119,169,232,237,66,17,230,151, + 110,220,36,50,213,125,3,175,115,120,74,189,213,73,29,177,58,197,173,41, + 114,202,195,166,0,90,218,194,170,41,85,231,152,106,210,182,23,167,3,10, + 46,31,174,10,253,70,204,229,174,38,157,150,134,107,85,144,158,201,227,79, + 47,48,59,183,155,114,120,50,246,60,194,96,22,223,247,137,227,164,200,241, + 13,194,230,222,187,158,98,121,29,94,245,154,11,16,248,120,193,2,2,59, + 27,134,170,154,113,75,118,226,90,85,36,62,247,61,116,11,159,254,187,171, + 57,112,120,53,179,179,109,146,112,39,177,231,147,36,178,200,189,142,48,194, + 8,199,39,158,55,130,235,119,165,80,187,184,241,43,30,31,255,227,199,120, + 248,97,101,10,73,100,155,164,212,15,49,145,109,206,59,119,140,203,47,63, + 141,101,21,45,83,95,7,129,3,120,129,202,193,249,65,7,8,112,237,229, + 0,4,126,66,26,14,23,83,103,208,42,120,193,66,246,92,88,232,129,109, + 236,82,99,84,252,4,47,78,9,146,46,190,239,211,13,123,133,27,208,136, + 231,6,198,203,0,139,187,148,116,51,82,104,55,251,202,173,154,41,2,93, + 169,183,102,123,80,33,212,122,46,178,5,113,87,195,75,251,42,205,233,182, + 112,186,45,210,238,226,5,189,221,13,23,109,67,159,71,183,186,204,211,191, + 111,108,124,174,80,100,236,217,159,125,254,237,1,2,5,6,201,77,142,131, + 167,78,32,244,153,4,125,38,65,30,92,250,231,48,49,238,18,205,247,21, + 157,237,43,210,247,59,11,133,18,86,185,45,133,48,76,144,210,43,185,83, + 187,74,193,101,159,167,176,221,44,55,170,208,60,172,246,219,205,78,74,186, + 61,129,140,242,99,9,64,56,164,105,23,41,29,30,127,242,9,110,189,121, + 55,151,92,234,112,222,217,47,46,94,67,96,99,90,53,68,70,154,106,2, + 252,1,96,167,114,89,126,228,38,14,28,94,77,47,169,18,233,94,17,154, + 78,18,73,20,69,67,181,123,35,117,55,194,8,199,3,158,199,50,1,1, + 168,197,227,127,95,63,207,199,254,231,206,1,114,3,101,42,89,214,48,104, + 140,117,57,247,108,157,55,93,185,154,243,47,152,96,207,238,16,63,56,140, + 10,47,30,68,157,233,171,176,19,128,23,168,252,142,237,170,48,85,16,167, + 8,77,221,103,25,18,33,124,204,138,64,96,163,242,118,227,108,218,68,225, + 172,155,247,34,226,94,138,140,52,210,160,67,28,39,248,157,133,162,191,98, + 241,14,242,6,197,89,23,144,212,137,75,178,170,133,54,221,65,44,148,72, + 163,68,32,238,228,2,232,109,106,182,82,62,198,188,34,44,163,154,22,14, + 72,160,80,109,122,45,51,62,136,193,28,89,47,107,55,230,117,196,64,201, + 192,132,181,88,121,232,205,197,101,0,57,169,13,147,93,190,159,110,124,96, + 209,115,114,196,61,165,202,154,173,82,120,56,26,108,115,102,185,125,213,89, + 238,106,34,132,51,96,214,153,24,51,128,160,32,57,5,117,18,20,184,9, + 36,138,224,125,223,235,95,247,90,148,21,187,154,48,49,193,141,215,195,211, + 79,39,156,113,238,233,184,118,191,226,45,10,59,153,146,91,83,34,208,9, + 4,62,255,122,221,55,248,163,223,253,123,14,28,94,205,225,233,4,223,247, + 241,125,127,209,108,59,24,84,158,35,140,48,194,177,139,231,237,63,89,245, + 27,132,237,143,4,92,253,201,29,220,246,109,181,88,38,67,93,236,1,206, + 62,203,226,109,239,58,133,115,47,28,231,222,187,155,60,254,248,253,40,82, + 243,40,135,177,132,88,96,216,117,7,80,53,212,98,93,49,230,33,237,1, + 1,81,103,80,217,237,222,221,31,134,9,16,37,49,73,164,212,93,222,179, + 80,243,14,178,208,241,89,232,248,131,243,211,242,253,23,221,246,75,78,201, + 35,192,13,28,100,87,71,164,115,125,147,8,74,193,149,73,204,238,168,208, + 164,221,145,216,157,197,238,190,74,77,45,224,110,77,162,209,66,159,5,220, + 108,209,215,51,213,151,244,123,119,138,41,245,30,115,243,137,151,254,31,246, + 222,53,214,146,236,188,14,91,123,239,170,83,85,231,125,250,53,195,153,233, + 215,204,144,18,165,33,103,56,164,4,69,162,200,25,202,182,18,59,17,105, + 73,177,148,64,130,28,27,176,127,8,137,141,36,48,236,56,48,160,95,17, + 236,64,63,2,24,72,144,31,178,64,25,48,12,39,176,108,201,178,21,145, + 34,21,81,52,44,138,154,209,240,53,228,204,244,227,246,244,244,116,223,123, + 207,251,212,115,239,157,31,251,81,187,30,247,118,247,237,161,213,29,212,2, + 46,250,222,115,234,125,78,215,170,239,251,214,183,62,69,110,245,109,155,136, + 211,44,95,57,207,58,25,30,3,19,193,201,140,35,47,250,182,217,187,62, + 86,104,239,186,0,100,130,168,199,224,167,153,142,176,20,130,152,97,185,214, + 209,94,94,32,231,133,147,62,118,204,183,229,18,32,19,188,121,117,131,47, + 127,225,139,56,123,110,136,199,79,61,6,137,84,27,114,3,20,143,131,96, + 138,36,187,1,137,25,128,41,36,66,16,188,131,255,251,55,191,134,127,252, + 191,126,14,94,20,89,11,47,67,114,128,233,137,20,93,218,178,67,135,255, + 159,224,196,4,167,76,136,121,165,223,77,189,174,166,59,243,98,135,131,195, + 28,191,242,143,110,227,55,127,75,17,136,91,111,99,100,130,75,23,57,206, + 63,121,7,159,249,105,137,207,252,180,90,255,245,215,254,53,226,116,13,137, + 91,40,21,127,41,128,0,144,103,245,223,74,21,153,198,115,72,25,33,19, + 74,210,30,103,230,38,30,0,180,175,151,83,198,188,163,62,80,20,5,10, + 68,144,201,86,253,240,53,104,49,71,145,112,244,217,22,17,219,217,31,55, + 122,147,98,5,240,171,186,21,64,31,19,89,128,237,238,128,205,231,240,232, + 18,44,42,83,120,249,153,3,72,146,130,30,10,172,115,173,2,196,10,100, + 47,7,89,17,120,99,221,16,78,150,72,70,43,75,114,201,168,76,83,122, + 227,57,70,183,123,229,186,40,231,199,37,254,18,36,0,86,60,132,55,218, + 2,189,61,120,3,129,229,54,195,200,79,65,214,75,140,252,37,34,166,69, + 43,20,213,246,3,178,192,138,221,1,228,20,253,226,18,0,96,253,248,158, + 125,251,118,188,179,138,204,54,152,40,46,46,4,66,253,89,228,44,134,239, + 237,64,201,18,190,159,67,8,53,193,193,68,67,195,169,0,72,136,56,219, + 193,235,75,173,126,92,192,237,115,219,238,246,145,243,2,89,33,156,137,0, + 1,64,66,21,189,145,16,82,134,144,242,38,190,254,205,62,238,220,222,96, + 122,218,7,65,130,44,243,0,91,135,91,0,120,159,78,87,46,64,48,215, + 239,205,241,111,254,237,23,240,47,255,5,144,109,151,56,56,76,33,228,0, + 50,227,216,196,135,90,73,75,65,105,118,95,147,39,58,116,232,240,112,226, + 196,4,103,110,92,132,132,246,137,151,243,45,164,76,64,41,133,231,159,198, + 103,127,61,198,239,252,182,146,199,27,98,51,17,220,165,139,28,143,159,159, + 226,19,127,238,99,248,248,39,159,197,40,140,240,133,207,95,195,107,175,39, + 182,142,114,239,199,162,150,31,245,171,243,195,252,222,80,255,86,117,149,79, + 180,67,89,158,8,108,114,6,90,204,173,145,240,46,157,55,200,205,140,184, + 49,48,13,210,0,80,164,167,193,78,149,127,179,73,129,48,35,64,164,110, + 142,195,157,82,145,18,140,237,239,6,125,170,8,217,164,41,205,223,22,71, + 184,152,24,84,210,148,58,21,105,8,149,115,69,136,166,97,220,58,159,232, + 232,113,140,158,77,175,242,51,204,18,221,110,125,10,231,162,178,158,6,0, + 104,113,64,9,146,67,156,14,202,200,23,40,71,232,24,37,170,43,52,218, + 44,204,87,173,110,154,172,15,75,127,134,50,41,137,213,21,8,213,141,149, + 247,15,151,216,172,87,144,244,12,78,157,82,223,45,137,114,58,133,18,155, + 132,90,129,91,226,221,131,61,252,211,95,253,37,220,58,40,48,155,157,130, + 224,11,44,119,107,68,61,149,238,78,146,204,42,127,59,116,232,240,104,227, + 129,34,56,0,122,144,101,211,1,228,149,215,118,248,151,191,117,5,7,139, + 119,237,107,134,228,78,77,60,60,249,132,192,139,31,9,240,243,191,208,199, + 11,31,234,227,15,191,156,225,247,63,183,215,24,110,218,68,216,120,69,8, + 245,218,122,151,235,200,13,200,10,130,60,51,166,192,234,134,37,248,26,50, + 217,90,51,94,63,172,158,190,29,236,233,144,155,200,184,157,155,134,120,171, + 200,109,199,224,13,4,164,190,105,243,165,7,132,41,88,175,188,57,19,169, + 69,54,78,223,25,197,194,214,201,118,130,96,39,8,250,100,2,17,111,32, + 226,150,169,1,45,144,43,161,9,84,130,4,128,36,41,216,64,157,207,56, + 243,48,222,41,34,240,198,115,181,125,42,1,178,80,41,75,178,192,78,52, + 29,84,216,62,199,206,187,170,142,155,44,193,55,106,153,212,105,114,167,162, + 154,146,77,242,59,149,193,170,238,24,29,160,28,77,163,34,161,114,234,65, + 212,107,119,139,1,84,10,57,247,34,248,133,218,174,169,181,182,145,226,193, + 65,134,235,215,148,208,102,56,8,16,5,35,244,122,77,147,229,56,55,219, + 72,44,217,253,201,107,55,240,191,255,111,111,96,157,196,216,223,223,135,231, + 49,108,183,107,108,54,107,80,178,212,6,224,188,171,197,117,232,240,136,227, + 129,34,56,74,153,51,196,82,245,145,17,18,225,206,126,130,95,249,71,183, + 241,39,127,124,3,132,156,182,61,110,128,34,183,217,44,196,243,31,165,120, + 233,229,16,31,250,190,0,111,188,121,11,255,234,159,255,30,190,245,157,27, + 106,91,184,133,50,234,170,59,237,55,163,187,182,8,174,231,73,39,130,171, + 98,149,174,65,139,5,248,230,16,30,110,129,22,234,103,64,215,24,96,175, + 20,149,100,92,69,115,142,189,21,118,172,82,67,99,187,82,116,65,2,128, + 8,199,90,74,86,35,31,178,162,74,25,201,39,232,83,137,62,149,216,201, + 37,72,159,131,244,203,154,20,211,181,53,218,210,148,77,198,20,73,79,66, + 38,25,36,169,93,27,35,222,209,36,106,122,238,92,82,171,71,137,52,83, + 15,32,110,116,105,4,47,17,163,216,172,182,152,140,51,204,166,17,22,203, + 155,24,227,10,198,184,2,0,24,12,14,237,156,56,0,152,176,133,237,31, + 164,100,105,35,57,105,201,81,17,85,145,12,106,83,1,244,195,9,202,58, + 105,145,177,90,4,87,35,57,162,26,191,137,216,7,45,206,33,73,51,228, + 217,64,215,219,66,199,229,36,129,122,192,9,145,228,158,37,185,95,253,167, + 191,137,223,248,231,127,0,191,119,10,130,111,176,220,30,192,243,124,61,233, + 160,180,148,235,208,161,195,163,139,247,236,17,85,202,4,204,235,35,203,10, + 155,154,140,87,103,43,228,6,0,179,89,136,31,248,161,1,158,255,112,132, + 31,254,79,122,96,140,225,223,254,246,109,124,225,243,64,154,81,0,75,39, + 69,121,127,169,202,162,40,180,200,164,142,24,235,157,217,162,135,41,59,226, + 198,101,198,222,136,21,136,92,150,238,251,208,179,211,250,92,245,187,13,4, + 100,162,34,46,185,160,144,91,109,193,85,35,28,57,87,164,6,0,197,24, + 160,89,129,113,186,5,216,210,214,225,234,132,99,200,237,56,68,180,61,205, + 135,121,45,197,201,150,240,6,194,238,99,39,8,24,91,85,246,225,221,101, + 119,211,83,87,213,166,23,49,46,76,202,243,27,227,138,157,53,39,139,183, + 17,177,29,138,88,145,155,107,111,230,14,61,5,128,36,159,194,239,19,228, + 89,53,218,138,122,37,9,39,240,224,245,184,19,193,165,168,63,232,68,189, + 62,182,155,149,93,198,180,165,152,40,206,40,110,171,105,202,68,219,190,1, + 64,140,127,248,191,124,30,155,221,24,183,238,148,223,153,245,70,32,227,27, + 109,227,214,213,224,58,116,120,148,241,192,41,74,23,132,68,248,198,235,25, + 126,253,159,124,7,135,203,194,166,36,13,38,227,45,6,195,24,47,126,108, + 134,15,191,248,56,4,95,224,11,95,126,29,159,255,28,240,238,97,15,65, + 79,232,232,237,56,52,83,148,6,187,98,92,75,81,54,83,86,33,10,44, + 56,3,193,28,193,48,179,30,139,158,188,110,237,183,76,191,155,59,90,70, + 74,213,200,237,13,132,173,119,17,61,214,199,203,231,170,230,22,9,75,114, + 146,84,201,217,16,201,218,8,71,182,101,170,206,68,115,46,220,247,219,144, + 244,202,229,137,172,18,158,116,107,119,108,137,157,32,24,249,75,213,47,7, + 128,12,170,164,195,176,15,111,165,162,81,211,232,77,200,210,78,41,216,172, + 182,128,152,91,3,103,81,92,197,40,220,193,147,215,225,201,235,24,96,15, + 187,116,142,93,58,71,17,31,98,189,73,108,63,161,141,222,248,21,0,41, + 66,127,129,93,139,74,177,20,8,149,40,35,184,118,66,239,81,165,48,221, + 20,234,187,67,72,168,197,38,181,107,149,23,48,105,106,131,208,47,240,238, + 193,30,126,229,31,255,14,6,65,15,197,78,96,187,42,32,248,2,62,143, + 42,61,114,29,58,116,120,52,241,192,17,156,43,54,201,178,2,159,253,181, + 29,110,236,17,27,185,113,185,132,16,91,155,154,188,112,177,135,103,158,97, + 56,255,164,135,183,111,13,241,175,255,69,129,111,127,235,54,226,244,16,73, + 122,231,68,209,155,16,33,164,8,65,196,210,70,112,42,69,121,252,216,148, + 108,179,197,98,157,52,166,96,91,98,211,211,1,42,45,1,78,175,155,92, + 58,62,154,241,189,93,202,145,175,8,144,12,184,77,29,238,196,188,146,70, + 52,4,68,86,180,225,96,82,135,33,55,182,40,151,147,11,90,182,16,64, + 17,40,231,99,213,182,48,224,150,60,221,190,185,197,227,186,238,181,41,137, + 181,88,171,99,34,152,99,50,174,54,157,47,55,183,33,138,171,152,140,83, + 44,22,169,74,237,66,213,49,251,244,29,172,55,137,157,157,231,21,135,152, + 207,85,109,53,110,105,191,0,170,17,156,65,53,130,171,146,220,46,245,145, + 251,5,14,22,250,90,81,245,48,101,34,184,94,239,140,54,97,182,91,67, + 249,112,148,32,201,55,0,66,252,238,255,245,89,124,243,59,74,133,155,164, + 229,245,168,183,15,116,232,208,225,209,195,123,146,162,228,156,67,202,4,223, + 120,61,195,239,255,238,87,176,94,189,175,146,150,236,7,234,6,241,228,19, + 2,159,120,249,34,206,95,160,216,123,187,192,31,124,241,13,252,254,231,246, + 112,237,250,85,72,220,210,242,238,166,249,178,194,209,83,175,41,77,64,104, + 162,106,112,78,4,119,191,40,83,146,64,22,171,27,186,53,80,38,205,122, + 24,197,162,84,58,70,206,191,145,64,194,9,196,66,165,37,37,86,150,168, + 234,45,102,59,49,71,159,206,84,61,206,204,147,219,50,172,7,177,106,238, + 54,199,150,169,232,75,174,212,126,34,26,128,132,58,26,36,41,230,24,131, + 44,1,129,41,54,105,85,226,239,141,231,240,198,243,146,56,7,77,146,153, + 222,42,35,28,211,67,231,141,202,168,106,187,186,209,88,103,124,154,129,147, + 219,24,78,246,176,88,164,136,151,234,154,109,179,50,130,52,233,202,217,108, + 107,251,217,252,180,197,161,229,174,104,126,254,126,222,124,128,49,237,2,121, + 86,88,95,202,38,204,107,183,112,123,62,192,103,255,207,95,197,38,125,10, + 146,175,33,248,6,55,247,117,250,57,227,86,44,211,145,92,135,14,143,30, + 30,184,77,64,253,158,129,177,1,62,251,107,59,124,227,155,31,6,243,94, + 171,44,219,239,159,193,108,22,226,137,11,35,60,243,140,138,16,94,249,186, + 192,231,63,7,236,189,179,69,154,81,27,185,201,70,228,86,62,185,171,247, + 18,251,154,215,215,190,146,174,138,210,68,112,212,220,228,67,0,17,70,142, + 242,125,198,84,227,53,17,75,156,25,170,22,0,81,92,133,228,87,180,49, + 241,85,248,123,175,131,47,231,165,129,242,120,110,235,110,70,45,41,39,0, + 153,148,196,71,100,104,35,185,136,6,32,87,171,105,55,161,35,74,19,109, + 141,252,37,70,126,25,49,153,223,201,128,99,252,90,128,129,211,6,32,122, + 30,232,74,145,191,36,137,250,73,50,196,65,130,164,39,49,122,85,29,7, + 197,2,227,93,170,26,194,1,107,233,37,183,12,114,203,176,90,168,215,86, + 200,170,169,76,0,171,94,129,209,248,208,166,75,77,195,247,228,212,18,147, + 83,75,120,222,215,237,15,0,228,251,111,130,236,214,88,29,112,12,39,123, + 152,5,223,194,0,123,24,208,53,100,241,54,86,235,125,27,197,169,207,239, + 49,253,185,73,24,119,26,3,51,164,52,68,1,230,41,177,80,85,100,82, + 5,33,75,228,218,7,83,138,13,164,88,66,202,68,187,215,168,104,174,156, + 52,48,69,61,69,9,132,8,131,29,128,5,190,244,229,171,216,187,242,38, + 10,68,88,175,10,12,250,18,69,145,35,21,121,171,211,73,135,14,29,30, + 13,60,64,13,174,26,5,124,245,213,13,190,248,249,171,16,88,97,151,250, + 141,229,7,195,24,103,207,42,98,216,187,46,240,218,31,93,195,222,149,155, + 216,110,230,144,50,177,234,183,187,163,92,166,216,25,191,203,166,138,82,221, + 68,13,74,145,201,81,48,182,84,189,168,148,180,27,119,125,176,37,192,39, + 101,4,228,100,203,238,102,250,33,90,210,164,133,175,122,174,220,72,202,8, + 63,200,128,87,124,38,237,177,232,72,176,130,72,32,100,18,33,107,222,128, + 77,164,167,54,94,110,27,211,12,179,9,109,181,250,106,61,254,22,143,76, + 64,13,88,141,147,29,16,222,193,100,118,77,237,51,56,192,98,145,2,98, + 129,1,85,174,47,60,61,84,117,185,121,219,254,212,231,118,176,186,168,4, + 66,0,54,133,82,82,22,89,189,6,217,172,195,213,35,184,48,232,213,150, + 56,46,205,189,64,146,82,0,9,222,61,216,195,231,254,159,47,97,183,35, + 218,69,37,70,81,168,207,198,77,85,118,232,208,225,209,194,3,167,40,205, + 64,211,87,190,46,112,245,205,125,112,185,4,165,170,222,98,68,38,166,246, + 118,254,162,154,34,112,237,202,91,248,227,87,111,226,250,205,183,144,232,116, + 213,189,55,119,31,189,220,42,41,195,52,51,77,224,40,16,161,152,201,248, + 44,158,62,109,222,169,166,34,237,132,0,93,123,99,189,45,100,170,133,37, + 53,184,194,18,169,231,223,209,22,161,203,58,175,137,60,156,122,217,10,25, + 198,232,53,162,171,114,31,179,230,185,200,176,161,160,228,74,201,111,137,140, + 104,213,230,172,151,3,241,209,233,222,58,216,80,130,144,101,133,232,250,108, + 137,129,71,212,36,130,120,11,196,91,144,237,30,200,110,141,225,100,79,137, + 117,10,85,215,220,102,66,181,90,180,34,4,16,224,244,88,17,164,33,57, + 19,193,221,13,121,109,22,157,82,225,86,183,95,125,104,138,80,21,41,133, + 246,239,47,253,193,183,113,243,237,234,246,220,105,19,156,75,36,73,166,237, + 188,186,246,129,14,29,30,5,60,16,193,25,37,229,193,97,142,207,255,155, + 125,44,182,61,231,189,45,184,92,226,212,196,195,96,24,227,242,211,234,137, + 252,205,55,57,94,253,163,107,216,127,155,224,240,176,122,179,110,166,39,219, + 112,124,148,151,161,253,230,51,234,183,190,172,142,85,79,173,174,212,221,238, + 130,74,132,164,97,154,187,237,223,171,230,229,37,43,138,201,186,74,190,198, + 117,4,128,29,127,211,56,198,158,7,186,202,129,195,38,177,30,183,63,235, + 91,9,216,72,206,149,238,139,177,86,137,234,232,208,164,97,35,182,176,19, + 15,0,69,116,125,166,38,20,196,2,144,223,222,195,141,53,179,215,74,202, + 171,128,92,168,73,11,252,42,56,185,141,124,241,6,6,216,195,54,19,160, + 184,102,183,181,219,153,107,151,192,212,214,4,95,219,52,101,19,1,170,53, + 56,117,78,245,8,46,232,149,159,137,172,125,79,100,131,216,18,231,223,4, + 223,252,214,45,188,245,214,117,196,73,138,213,102,135,237,122,109,151,238,162, + 184,14,29,30,77,60,64,13,142,129,82,138,60,247,177,247,118,129,63,250, + 247,91,27,185,169,247,203,223,47,92,84,55,109,143,94,195,98,181,197,43, + 175,250,56,88,112,59,141,91,30,35,32,105,162,157,4,141,138,178,135,118, + 121,253,81,41,202,217,52,82,233,73,183,153,91,195,11,14,42,145,27,235, + 109,85,51,183,230,140,227,210,147,124,91,189,249,210,172,104,141,230,200,128, + 55,34,56,54,41,128,195,42,201,182,173,11,148,164,234,30,11,89,81,96, + 46,173,90,50,159,149,55,103,55,189,10,185,4,93,77,43,169,207,186,0, + 69,146,37,36,89,170,9,8,164,58,144,245,194,250,54,196,74,58,214,101, + 11,32,202,21,209,237,214,24,7,239,84,20,150,6,253,190,249,218,149,164, + 67,217,8,69,81,96,216,202,113,245,239,71,251,247,165,30,193,73,39,66, + 107,194,188,167,252,42,147,124,131,47,125,225,45,219,112,110,82,149,109,51, + 3,41,61,190,133,163,67,135,14,15,7,30,216,108,25,0,190,240,123,57, + 222,184,114,77,191,94,85,240,205,102,234,6,51,154,169,104,237,173,111,103, + 88,28,228,216,110,170,181,29,83,131,35,118,138,192,253,161,174,162,180,255, + 58,240,112,8,90,44,176,211,194,7,42,22,200,111,127,211,166,39,123,209, + 17,44,200,86,85,98,56,238,56,66,167,134,151,21,64,210,82,31,91,160, + 106,235,53,224,246,103,204,18,240,77,203,113,36,18,34,215,34,20,39,82, + 148,36,1,98,210,136,222,200,18,160,111,56,30,153,131,26,65,70,165,9, + 180,193,56,109,26,44,219,30,61,163,34,53,142,43,223,161,13,181,166,148, + 11,108,215,27,21,9,135,119,176,216,166,24,78,246,148,89,53,212,184,27, + 89,137,114,203,26,156,224,42,98,218,180,242,248,189,93,124,55,130,171,67, + 77,249,86,130,35,5,183,1,92,17,230,151,190,124,21,171,131,200,214,255, + 120,94,30,140,75,116,157,162,178,67,135,71,3,15,148,162,148,50,193,122, + 35,240,27,191,177,129,148,97,131,220,198,209,28,195,254,30,134,163,49,214, + 139,30,174,92,97,184,126,243,59,88,103,25,164,88,66,28,89,155,57,14, + 237,79,228,82,132,21,21,101,155,163,73,129,83,0,128,129,147,33,220,244, + 46,1,40,211,147,32,106,58,55,189,89,146,131,215,103,170,129,59,52,77, + 220,237,17,132,169,187,1,176,42,198,58,204,84,0,158,13,74,53,166,211, + 212,205,88,187,183,39,194,242,160,77,173,207,16,93,177,227,54,194,51,68, + 71,86,20,98,1,32,78,149,119,165,89,55,85,231,115,55,24,199,147,138, + 235,201,64,128,101,111,87,94,99,100,165,84,166,195,67,120,195,67,244,71, + 135,40,122,55,177,93,111,48,153,93,195,234,128,67,180,244,190,5,142,200, + 197,39,87,209,11,102,240,60,207,18,157,215,115,215,105,191,222,199,213,224, + 8,12,129,183,137,151,140,117,151,235,255,185,192,114,245,14,254,223,223,127, + 11,105,58,71,156,164,142,224,196,152,137,119,138,202,14,29,30,37,60,16, + 193,241,98,135,63,252,114,134,63,254,247,95,3,165,3,16,146,84,82,147, + 126,159,96,240,216,227,86,61,121,231,206,0,219,125,142,237,102,110,111,70, + 213,244,100,216,168,157,220,43,108,4,103,64,251,173,174,22,46,102,211,8, + 195,236,42,150,113,123,129,142,56,45,121,198,57,196,58,149,28,93,10,59, + 22,242,64,69,66,172,183,5,215,198,210,54,45,200,86,182,62,214,72,127, + 38,18,164,54,37,92,69,111,20,236,0,216,102,229,185,203,177,0,205,10, + 172,111,247,42,245,54,19,197,201,163,172,190,52,236,116,114,40,65,140,33, + 58,83,159,91,15,98,208,236,93,140,252,20,158,156,219,41,230,38,157,43, + 157,105,226,19,29,21,243,219,223,86,231,69,18,236,118,2,105,230,195,125, + 88,201,116,147,53,101,202,157,228,238,42,202,192,214,224,98,126,244,249,28, + 45,94,154,161,154,238,78,145,228,5,190,248,185,235,141,37,93,69,37,128, + 142,228,58,116,120,68,112,98,130,227,156,163,23,156,197,155,111,114,228,197, + 69,8,177,133,71,159,110,68,113,167,76,189,69,190,139,235,239,46,108,223, + 155,144,75,16,4,246,73,155,32,209,141,222,64,179,103,169,29,158,118,175, + 16,34,84,179,222,138,2,153,80,164,145,21,68,187,90,220,178,219,99,187, + 165,158,13,166,210,147,70,65,25,201,171,136,147,157,234,123,139,70,240,151, + 186,30,167,15,71,146,20,225,42,4,200,88,57,135,68,2,162,77,135,18, + 149,196,192,247,38,138,116,66,2,154,21,182,93,128,142,4,228,225,28,201, + 56,177,162,15,219,22,192,199,96,140,33,25,39,141,148,163,73,79,214,145, + 244,36,196,53,129,254,237,28,116,149,67,142,5,216,190,128,232,121,152,220, + 202,129,87,38,182,249,220,184,158,36,254,82,205,148,187,42,43,115,230,76, + 221,46,127,236,45,171,186,236,83,149,90,94,15,98,108,159,126,215,246,232, + 1,128,164,167,32,78,81,85,159,156,40,242,220,249,111,160,79,38,106,192, + 106,188,197,54,191,162,102,233,1,54,61,217,239,83,72,36,186,207,173,252, + 12,1,213,15,199,139,28,132,38,142,147,137,89,55,104,29,198,26,177,20, + 132,78,106,34,19,253,32,162,107,109,164,17,201,153,25,113,128,34,207,0, + 192,45,196,201,31,225,141,239,60,142,76,71,113,0,26,81,28,99,164,83, + 82,118,232,240,8,224,196,4,199,24,67,146,100,248,234,87,230,214,181,196, + 180,8,24,146,155,142,84,91,192,157,59,3,21,189,189,123,203,81,208,149, + 32,247,84,99,113,151,41,111,84,61,70,108,31,156,139,158,119,15,79,217, + 218,57,164,23,245,48,49,130,206,88,165,200,196,246,108,101,81,27,9,69, + 178,161,150,116,33,73,98,223,143,210,242,38,88,17,137,204,37,162,84,111, + 131,173,48,102,213,227,119,83,138,117,113,137,88,0,9,47,223,15,153,108, + 144,173,232,121,71,138,90,204,58,33,147,88,245,53,81,141,245,116,111,205, + 29,254,220,199,138,135,32,3,110,77,161,199,44,129,120,87,145,33,209,215, + 109,147,110,65,6,220,94,27,147,114,37,235,101,217,67,8,232,65,177,37, + 118,59,129,176,199,42,4,70,105,98,219,4,236,106,81,25,66,19,219,130, + 209,254,93,145,98,217,210,38,208,140,224,154,25,2,243,183,34,179,253,253, + 45,190,246,218,107,54,146,52,81,155,137,226,140,187,73,103,196,220,161,195, + 195,143,7,74,81,126,227,245,12,191,243,239,254,184,17,181,25,12,134,42, + 66,218,172,87,216,172,87,56,92,190,13,41,154,79,224,247,167,162,132,118, + 160,0,8,137,145,235,90,27,163,205,209,56,229,148,231,163,9,148,157,138, + 0,50,197,182,144,149,169,215,102,140,140,11,34,82,61,166,230,238,237,12, + 182,143,205,21,153,36,178,242,183,215,103,54,106,99,147,194,18,4,223,122, + 237,2,21,77,100,110,99,119,91,15,156,37,182,68,66,30,206,45,225,74, + 146,150,98,153,152,98,188,75,213,180,112,39,90,244,242,57,24,99,21,210, + 37,3,142,21,15,17,157,209,228,191,0,216,106,101,125,53,217,160,176,189, + 117,99,244,32,111,233,244,179,92,128,144,37,182,235,13,228,224,142,77,95, + 247,251,20,73,198,1,235,76,83,194,144,92,136,2,68,236,55,174,171,91, + 143,243,251,142,149,89,45,130,51,184,191,148,119,138,219,243,53,174,190,113, + 29,69,158,163,40,10,27,197,109,157,190,202,110,156,78,135,14,143,6,30, + 136,224,246,174,11,28,30,170,168,205,68,110,66,168,118,129,104,92,125,106, + 223,187,114,19,155,109,218,250,148,125,119,84,251,160,146,84,213,204,114,158, + 97,40,23,16,34,4,161,137,21,40,24,184,3,48,103,209,27,246,119,42, + 22,128,152,99,224,45,192,15,99,100,187,219,173,169,47,64,69,37,73,79, + 54,85,136,26,173,189,103,0,112,184,104,212,204,0,149,106,116,119,101,163, + 30,145,170,72,40,10,64,175,136,6,185,181,109,11,0,16,19,208,61,90, + 239,79,183,251,170,144,95,36,128,72,219,112,201,192,70,112,46,218,250,251, + 76,148,25,165,161,18,196,56,219,52,169,73,211,62,193,38,5,182,197,59, + 216,93,185,14,177,170,158,67,232,171,131,44,163,120,77,188,66,43,112,245, + 231,87,20,5,18,120,144,244,140,62,40,87,125,89,30,115,190,43,183,95, + 143,224,154,89,129,123,37,186,4,87,174,93,65,146,148,219,74,146,4,140, + 238,172,125,87,55,78,167,67,135,71,3,247,205,54,238,152,156,55,223,228, + 144,82,79,203,174,69,113,125,191,20,61,248,228,42,226,212,3,33,143,29, + 185,221,227,159,180,155,110,242,0,16,132,170,46,101,210,91,38,173,36,101, + 216,80,216,21,228,89,120,242,192,58,152,48,93,139,27,206,222,69,47,218, + 169,62,47,115,44,11,53,222,198,164,226,218,172,176,238,134,187,89,120,73, + 205,215,110,251,193,230,140,110,52,119,4,44,109,86,95,46,138,245,0,228, + 173,242,92,217,126,249,249,144,165,0,89,2,114,209,116,117,41,214,3,59, + 253,219,46,191,162,106,134,93,0,27,85,214,65,15,69,243,220,34,129,56, + 40,35,177,113,230,97,24,12,64,39,75,68,67,110,31,30,140,133,91,191, + 79,143,181,101,107,244,194,145,106,26,177,13,109,17,156,171,164,116,81,254, + 93,63,6,181,124,154,236,227,246,222,59,96,116,104,35,74,158,23,54,77, + 105,208,137,77,58,116,120,184,113,162,8,78,8,129,44,43,240,213,175,204, + 1,50,177,228,102,166,6,152,39,117,131,183,222,234,33,221,196,246,201,93, + 202,251,27,100,170,208,188,185,165,9,199,70,75,29,93,137,57,33,9,252, + 220,115,84,148,41,150,187,43,240,228,26,84,44,48,25,190,139,208,35,160, + 114,81,138,75,128,198,196,128,86,33,137,65,125,184,168,3,73,18,69,52, + 102,253,122,52,166,163,190,56,72,44,49,20,59,199,93,228,74,185,124,163, + 150,54,55,17,152,110,240,126,117,97,247,211,16,162,44,0,118,131,3,183, + 155,169,52,182,88,33,185,89,46,223,168,215,133,41,136,72,109,132,105,35, + 88,237,164,114,84,125,143,47,61,53,174,103,46,64,86,4,30,93,218,233, + 4,6,109,54,106,30,14,225,225,16,130,175,177,74,245,231,232,164,40,85, + 13,174,61,213,76,90,210,211,246,61,103,157,170,208,164,141,96,213,96,213, + 43,215,247,241,213,215,244,160,218,60,71,86,8,48,223,195,118,71,42,98, + 147,14,29,58,60,220,184,111,130,163,148,130,82,138,245,70,224,171,127,244, + 134,77,29,81,58,64,156,241,74,155,0,0,92,191,166,162,146,117,86,246, + 136,181,213,220,238,221,139,82,97,48,81,55,152,161,150,58,214,5,10,245, + 113,57,167,35,125,147,23,115,136,237,77,80,185,192,160,159,193,31,47,64, + 39,75,236,228,210,202,227,137,152,223,117,14,27,160,136,138,102,69,107,90, + 79,172,213,165,21,57,171,244,176,145,165,146,240,115,206,149,216,67,11,74, + 12,129,16,145,86,35,36,183,110,215,150,134,188,34,171,175,155,229,245,58, + 114,159,216,227,115,197,41,109,199,108,73,43,146,229,64,213,168,74,42,117, + 210,39,66,125,150,238,148,113,211,0,46,199,178,50,63,79,61,0,165,53, + 35,108,181,254,74,148,17,191,153,184,110,83,148,119,129,153,38,112,183,244, + 247,209,86,112,213,185,113,113,186,193,252,150,74,155,82,154,128,23,121,165, + 233,219,128,243,188,107,250,238,208,225,33,198,137,107,112,235,36,198,235,111, + 172,109,253,77,65,203,170,243,82,253,102,108,186,0,32,142,245,77,252,30, + 157,41,170,104,113,147,103,237,190,141,71,33,33,183,192,48,71,111,50,199, + 160,159,33,247,213,141,120,39,8,198,163,154,69,149,86,22,150,234,201,178, + 126,5,220,61,5,89,221,177,90,175,85,234,31,181,215,113,220,101,69,206, + 90,201,205,28,135,88,176,70,20,103,215,89,52,123,246,136,12,193,175,40, + 149,103,61,18,91,196,3,32,38,21,37,103,91,253,113,155,249,173,215,192, + 29,188,74,86,102,27,106,38,156,25,118,218,22,193,141,105,147,40,220,8, + 78,182,40,87,219,68,38,132,28,157,250,188,183,105,21,42,229,190,220,16, + 164,27,245,223,35,68,121,254,69,193,145,108,84,132,201,216,189,153,66,119, + 232,208,225,207,6,39,38,184,215,254,132,33,10,11,8,177,133,148,7,16, + 98,11,66,158,128,16,91,140,163,242,142,122,253,154,178,230,42,118,4,132, + 196,122,52,206,253,169,38,21,170,235,60,238,223,64,206,203,168,112,140,5, + 2,188,105,235,60,36,202,181,200,164,84,81,78,113,3,211,83,87,225,231, + 3,53,234,133,94,135,36,75,244,201,4,171,53,3,59,117,128,64,92,131, + 88,232,52,34,153,88,87,145,132,19,165,158,140,68,101,122,183,88,83,240, + 175,150,173,3,68,134,224,251,61,144,107,70,122,95,170,41,233,72,167,104, + 111,0,244,138,176,243,227,150,51,165,54,157,64,213,198,216,13,14,234,55, + 211,138,100,35,45,169,152,118,4,118,163,186,156,89,207,238,87,19,95,194, + 9,66,38,17,235,136,139,253,233,196,46,235,170,46,39,175,111,108,186,116, + 209,143,129,112,161,124,53,35,129,98,199,85,239,220,138,34,74,57,200,138, + 162,88,15,236,241,196,65,2,185,18,152,222,138,224,239,31,130,206,150,170, + 199,111,154,97,232,189,165,72,74,38,200,131,158,118,50,9,1,76,48,25, + 74,4,27,229,87,233,225,16,11,206,208,47,246,43,17,156,74,81,166,112, + 235,177,174,200,196,224,168,244,183,91,135,171,18,93,83,188,2,44,112,237, + 26,224,245,87,72,11,129,4,30,178,237,18,140,238,176,221,17,132,195,17, + 228,17,147,201,59,116,232,240,240,224,196,4,119,176,190,251,50,128,122,10, + 95,103,89,197,229,223,85,55,26,28,47,50,49,205,224,229,50,171,109,132, + 116,247,132,253,123,189,222,160,207,38,182,14,88,69,117,219,185,191,133,63, + 94,128,200,137,138,220,200,2,227,233,33,16,167,106,86,155,174,115,201,69, + 121,121,234,66,147,134,122,50,86,209,132,36,73,195,166,203,70,99,78,45, + 206,70,85,181,8,142,45,86,16,57,59,178,177,219,133,76,50,149,130,188, + 109,12,151,69,99,93,178,81,125,114,230,248,67,38,181,119,229,65,235,62, + 92,145,138,125,109,80,40,50,61,194,126,204,32,100,18,114,174,221,90,244, + 185,186,211,17,8,73,16,69,71,139,102,70,76,237,219,211,17,95,59,142, + 142,254,143,75,81,222,61,5,110,30,160,212,195,134,192,21,196,153,68,154, + 112,171,234,52,216,173,11,59,12,181,67,135,14,15,47,78,76,112,139,219, + 220,166,28,93,16,146,84,234,95,110,51,175,65,222,230,170,127,236,13,72, + 61,181,187,53,148,241,32,198,96,168,5,16,187,37,72,159,91,19,229,38, + 18,80,121,19,126,168,20,125,125,166,29,242,181,43,62,99,43,176,73,81, + 177,201,162,89,1,34,14,81,204,199,141,173,185,147,2,76,164,84,236,120, + 165,198,5,160,146,86,172,16,207,162,42,36,9,56,177,68,39,174,9,85, + 167,115,34,56,178,212,130,149,250,37,186,238,161,72,34,160,215,98,78,109, + 5,46,176,132,109,174,142,248,122,14,249,6,81,219,117,72,87,228,12,72, + 164,34,178,72,104,143,145,210,64,90,92,171,42,52,233,42,7,189,94,157, + 104,46,22,37,209,26,184,195,85,227,68,93,187,212,90,139,149,39,229,126, + 126,194,155,34,137,23,45,169,201,163,163,255,186,138,242,100,153,130,114,31, + 60,173,110,175,109,178,64,167,164,236,208,225,225,197,137,9,110,88,39,64, + 226,0,0,32,0,73,68,65,84,239,218,13,128,132,142,195,68,179,85,192, + 160,238,94,114,255,126,147,245,121,96,10,133,150,252,143,71,57,228,174,25, + 141,180,121,81,142,198,135,74,45,57,189,5,127,185,0,127,135,41,47,72, + 185,66,62,203,149,12,126,69,85,74,113,143,182,14,54,5,74,117,163,156, + 208,246,122,220,162,246,111,13,100,9,27,245,153,232,138,200,208,18,159,33, + 196,227,34,185,226,85,1,92,213,219,219,184,245,65,69,136,100,35,129,68, + 237,203,186,175,196,42,165,106,234,115,134,212,12,228,62,169,16,153,33,109, + 185,32,88,126,187,7,182,175,136,205,28,163,156,171,109,170,116,43,1,185, + 42,81,36,17,200,82,168,166,113,61,98,8,40,235,104,50,246,43,102,203, + 128,170,143,142,156,81,69,180,88,32,140,166,149,239,215,253,226,222,123,225, + 204,62,202,7,133,155,55,203,135,21,211,244,125,20,186,134,239,14,29,30, + 78,156,152,224,238,220,25,160,61,93,228,52,100,199,11,164,155,88,121,15, + 138,165,237,153,107,195,73,250,224,140,200,100,183,90,97,60,202,225,109,54, + 149,247,235,169,208,172,255,45,128,45,173,253,20,14,231,160,111,190,5,240, + 73,35,85,40,114,6,28,8,200,149,104,88,115,177,3,88,82,32,75,229, + 253,200,14,74,162,146,43,161,234,101,155,114,153,10,180,124,95,182,4,24, + 100,169,222,175,215,224,12,89,85,48,151,160,73,6,207,59,226,6,171,151, + 55,233,212,9,0,144,49,210,111,178,10,33,170,101,165,37,70,87,41,25, + 50,9,153,134,16,111,14,49,187,94,141,20,201,82,64,92,145,54,194,147, + 123,28,108,95,192,75,156,229,106,42,204,73,88,143,120,202,139,32,232,212, + 166,41,23,156,29,225,100,210,142,123,81,81,222,27,180,135,165,184,10,0, + 240,250,9,60,221,211,153,21,2,224,165,136,198,212,225,186,134,239,14,29, + 30,78,156,248,142,240,141,175,53,111,62,238,211,182,17,0,172,179,204,78, + 15,48,3,78,31,12,142,147,133,17,153,12,36,118,124,137,104,80,104,165, + 222,93,6,100,178,21,162,51,107,136,5,144,254,33,5,127,135,1,49,69, + 200,36,136,35,57,36,75,209,58,53,64,174,132,138,116,116,43,128,188,161, + 83,139,38,66,153,163,205,133,170,76,53,66,69,74,182,63,205,136,86,98, + 2,114,69,253,106,103,191,57,235,32,169,214,254,188,55,5,228,194,33,12, + 39,106,116,163,55,28,8,20,7,250,38,124,109,135,254,127,200,27,199,38, + 114,166,34,175,27,82,9,73,106,164,46,222,154,87,91,31,116,4,72,150, + 128,76,67,196,34,85,215,229,70,245,88,136,72,43,77,224,153,24,0,116, + 229,164,40,1,34,213,73,83,177,192,110,181,178,36,215,222,38,112,84,47, + 220,164,245,245,42,238,61,26,92,109,212,126,138,93,136,34,207,203,105,227, + 108,140,148,183,103,42,58,116,232,240,112,225,196,4,119,99,207,164,112,106, + 228,161,85,108,126,159,32,221,40,66,187,151,155,207,189,247,193,85,247,231, + 201,82,249,16,111,61,68,61,69,12,126,154,181,214,250,0,229,210,17,209, + 0,114,57,67,239,186,7,250,149,55,109,4,39,231,64,188,33,149,104,166, + 238,61,89,33,61,147,234,91,232,121,112,177,154,195,86,108,152,25,22,221, + 142,150,215,139,29,183,234,203,6,244,33,152,246,5,196,20,98,77,225,213, + 220,53,76,180,200,11,79,255,75,65,174,9,43,16,41,94,21,32,111,148, + 125,117,102,121,178,20,240,110,197,101,116,233,204,182,227,155,29,188,175,112, + 21,177,173,105,69,161,201,110,112,32,78,145,106,129,9,174,150,231,102,122, + 237,76,203,129,121,0,106,155,186,126,38,44,35,35,83,139,187,155,23,101, + 29,199,13,60,85,56,202,104,185,153,61,32,180,250,1,21,69,1,191,136, + 157,191,171,13,223,93,154,178,67,135,135,15,39,38,184,34,187,115,236,251, + 187,60,199,166,208,169,171,22,131,229,251,199,49,130,129,45,193,128,0,145, + 211,175,229,170,54,1,128,188,81,77,95,26,210,242,110,197,42,101,183,107, + 73,159,46,160,4,26,113,251,101,34,75,1,152,150,63,215,217,100,46,129, + 236,232,116,44,217,168,26,152,33,0,147,226,91,241,208,18,166,221,190,65, + 45,221,104,222,183,179,87,93,14,94,160,61,178,3,64,174,74,136,45,61, + 50,152,33,75,21,93,26,33,77,194,9,216,129,138,82,139,36,2,127,183, + 140,160,138,36,82,203,58,51,231,200,70,213,224,12,36,73,203,89,122,199, + 76,97,216,79,180,152,103,32,193,161,70,59,180,9,148,30,12,238,73,71, + 45,175,183,93,76,192,79,222,69,145,231,21,37,37,0,164,162,172,35,82, + 122,119,213,107,135,14,29,254,227,226,196,4,87,42,37,3,72,25,150,125, + 74,100,130,56,219,89,47,74,66,135,54,130,51,61,74,109,141,222,247,46, + 60,81,235,14,153,186,25,21,228,52,60,185,70,186,222,64,36,115,189,159, + 9,72,16,193,239,121,0,18,68,193,105,0,0,123,29,96,227,67,101,12, + 44,67,144,201,28,152,2,253,111,231,200,63,155,1,201,20,100,86,238,73, + 44,24,188,55,53,9,57,55,103,97,72,200,33,14,186,71,237,220,53,246, + 69,1,63,223,0,73,217,132,93,233,75,75,20,17,112,157,142,140,69,10, + 34,67,12,255,85,80,169,219,201,9,173,236,71,108,169,237,89,19,95,63, + 13,92,5,100,160,182,87,108,170,173,1,254,150,163,40,152,61,143,57,198, + 224,251,61,208,47,8,208,129,168,220,195,229,62,81,199,184,47,33,39,0, + 174,150,19,201,35,26,64,126,118,132,226,91,17,188,48,134,151,196,21,2, + 51,203,78,101,8,249,138,4,47,60,248,155,29,138,91,145,242,181,12,123, + 72,153,196,232,63,80,16,146,168,20,50,237,107,145,73,205,126,75,204,129, + 45,1,195,220,182,10,84,73,209,204,109,107,127,216,113,107,112,174,130,146, + 32,176,115,225,74,28,159,46,143,211,194,138,152,82,166,218,81,152,119,116, + 99,119,23,193,117,232,240,240,225,61,168,202,167,173,179,186,118,218,194,72, + 138,77,203,58,15,182,63,23,158,60,64,65,70,149,232,237,88,229,157,107, + 12,60,151,149,90,18,174,237,26,53,55,177,166,224,91,15,146,36,86,81, + 72,174,214,162,163,5,148,178,48,166,224,251,189,10,241,49,239,104,245,29, + 230,170,214,21,50,9,73,18,208,249,49,253,95,206,41,37,156,64,46,84, + 4,69,82,148,81,156,57,158,150,211,159,174,22,170,185,252,134,108,46,191, + 168,174,87,36,145,141,46,139,3,1,188,117,8,127,179,179,231,101,68,36, + 84,167,49,197,53,1,153,100,149,166,115,191,216,217,180,109,192,155,233,236, + 52,27,233,223,238,225,193,230,136,230,109,215,201,228,100,184,23,235,174,14, + 29,58,60,170,120,64,130,59,190,207,104,151,231,173,70,184,239,133,23,165, + 11,79,86,187,206,165,12,33,211,242,9,61,78,75,146,225,251,61,196,251, + 163,70,93,45,185,201,80,188,170,84,129,253,219,185,170,171,133,61,144,87, + 85,253,42,225,4,41,147,192,235,61,43,4,113,137,204,164,245,216,129,122, + 157,23,250,210,214,82,135,229,14,107,118,95,49,85,4,225,44,95,17,152, + 216,245,212,176,82,249,166,38,29,232,40,206,217,126,177,97,229,254,1,176, + 77,1,57,7,248,87,37,138,125,134,220,31,42,98,220,119,90,11,246,165, + 21,198,248,251,59,27,93,202,207,11,144,175,105,193,202,13,199,247,114,161, + 182,75,246,245,192,213,235,158,138,4,237,254,61,155,182,245,231,62,246,55, + 251,176,14,36,126,225,92,152,246,207,221,8,77,212,193,181,27,35,215,157, + 76,238,94,131,59,14,49,202,7,180,99,190,139,124,5,153,55,255,219,116, + 41,202,14,29,30,62,156,152,224,226,108,231,252,149,182,254,222,247,253,214, + 8,238,254,188,40,143,39,209,130,168,244,99,172,107,70,61,186,85,17,156, + 112,27,180,213,13,235,169,91,234,134,104,6,119,218,109,36,17,250,183,115, + 165,30,92,170,191,177,80,17,138,88,48,219,23,54,129,86,75,190,218,66, + 60,11,101,191,37,87,66,165,37,107,239,53,142,123,195,192,110,112,20,183, + 213,3,0,223,42,130,40,54,204,214,232,76,42,144,108,170,81,23,145,161, + 74,157,106,34,37,41,128,44,178,235,181,129,95,155,33,253,38,3,93,182, + 12,81,173,71,125,186,57,156,236,34,208,63,37,192,45,189,141,194,171,248, + 94,22,133,18,210,144,171,82,93,163,171,229,38,88,81,128,238,81,16,25, + 128,29,0,236,117,45,191,151,33,252,52,67,43,104,153,31,94,115,119,126, + 81,27,225,156,196,207,244,110,72,209,70,110,1,191,105,91,5,114,174,30, + 150,188,90,186,178,51,93,238,208,225,225,195,137,9,174,63,241,107,55,30, + 227,19,168,32,211,216,166,41,239,5,71,215,224,142,190,145,229,89,106,85, + 148,38,69,153,9,229,141,72,162,220,153,232,13,44,253,53,216,62,7,59, + 168,58,223,219,126,176,133,178,169,170,123,59,202,133,132,184,34,203,30,183, + 87,164,37,176,74,47,217,2,224,87,148,194,146,109,10,48,207,120,80,150, + 239,215,215,145,111,16,107,78,108,34,63,160,84,64,90,36,101,68,40,247, + 9,228,130,168,214,132,45,109,44,7,0,94,193,203,253,235,215,217,87,15, + 209,255,118,222,88,190,72,34,117,62,9,108,186,83,108,85,243,186,220,227, + 32,111,21,16,91,10,238,12,105,43,18,77,166,89,164,214,187,2,240,87, + 38,246,220,76,95,94,188,81,17,157,121,64,48,245,180,12,188,209,232,173, + 22,84,249,225,193,9,50,143,39,239,131,107,143,214,162,160,60,95,83,131, + 115,97,84,148,29,58,116,120,120,113,114,130,243,239,238,164,46,211,246,25, + 112,39,183,80,2,12,225,201,65,187,138,179,71,203,30,37,55,82,156,228, + 35,188,241,77,81,25,19,67,150,0,18,21,169,21,97,4,177,166,144,251, + 4,94,18,131,108,36,88,81,192,43,184,18,144,64,165,55,233,43,90,116, + 226,16,35,160,82,124,228,170,34,67,36,78,218,16,104,54,85,67,147,192, + 162,106,127,133,133,38,167,162,80,191,235,227,104,164,57,111,243,70,164,102, + 68,45,100,35,45,241,209,165,4,243,148,210,146,188,42,32,174,234,1,177, + 113,25,125,251,155,29,216,166,89,39,100,251,2,252,55,56,196,43,106,29, + 87,149,233,23,187,82,213,153,2,228,154,128,247,202,161,58,239,219,229,131, + 74,255,182,150,208,95,145,240,49,181,83,39,250,125,90,233,131,171,99,91, + 191,92,199,76,8,176,139,220,83,31,220,81,104,87,79,186,40,242,28,69, + 118,116,26,210,191,135,255,15,29,58,116,248,143,139,19,19,220,147,239,59, + 173,26,183,143,16,0,196,137,7,18,68,182,231,169,62,198,164,158,166,60, + 186,6,215,78,134,100,123,246,152,163,75,33,99,191,242,183,129,156,151,253, + 106,46,188,91,113,187,44,63,133,154,152,29,83,208,43,42,13,199,138,162, + 210,200,93,36,145,74,57,238,11,208,61,138,66,232,186,99,253,190,188,168, + 70,103,98,193,172,107,136,184,38,74,34,116,162,62,57,108,250,91,22,78, + 138,148,121,162,90,239,171,8,92,202,243,225,87,41,228,66,54,34,187,138, + 154,50,40,215,147,95,3,232,23,132,93,135,46,21,225,179,77,97,247,227, + 231,42,253,76,110,200,178,255,205,248,98,234,232,176,216,113,164,223,44,137, + 161,31,228,13,235,182,7,133,169,243,222,95,13,174,165,19,95,127,96,198, + 243,212,56,229,100,218,111,146,208,114,249,122,138,178,67,135,14,15,31,78, + 76,112,163,217,251,16,134,163,218,171,85,210,58,178,214,130,251,137,226,78, + 86,107,33,145,73,33,181,19,39,145,129,237,41,115,163,14,215,53,132,123, + 158,34,143,133,170,145,241,43,85,97,134,187,105,175,224,16,107,106,125,26, + 239,87,136,39,142,80,63,2,40,229,254,81,95,213,227,174,202,74,157,143, + 14,154,55,118,67,122,230,95,186,84,41,69,25,168,229,165,171,167,112,210, + 147,118,253,87,40,200,87,36,232,82,34,31,168,125,113,227,230,209,16,190, + 40,2,5,80,233,255,171,88,118,105,236,82,31,81,116,124,15,101,3,45, + 15,81,166,161,31,184,31,165,238,221,12,189,157,44,131,152,86,198,49,169, + 215,202,15,181,158,162,236,106,112,29,58,60,124,56,49,193,189,248,194,2, + 113,50,80,233,35,153,232,155,80,213,51,50,3,175,52,92,155,40,238,189, + 16,153,108,120,128,200,187,89,42,40,117,253,70,213,224,2,248,185,7,191, + 183,133,59,15,14,80,181,34,64,205,58,163,171,28,228,93,192,235,235,27, + 228,2,40,66,37,48,225,67,15,108,83,64,76,8,200,13,137,34,121,14, + 244,247,100,73,124,158,7,132,138,240,104,146,1,83,128,126,137,35,255,131, + 62,188,254,70,213,172,244,253,50,247,250,40,110,69,192,84,183,13,36,106, + 251,114,33,33,175,170,227,161,127,170,5,38,169,58,100,227,101,233,166,55, + 105,172,164,250,226,159,5,240,222,46,44,177,85,4,40,142,50,147,23,212, + 70,120,116,32,64,227,29,10,49,68,225,49,187,94,131,216,52,33,250,91, + 14,146,194,70,111,128,78,83,234,115,18,91,10,94,80,219,135,231,121,28, + 8,1,143,170,84,41,166,250,122,254,250,179,232,93,247,144,99,161,103,6, + 46,145,136,11,199,126,226,71,163,60,208,170,200,73,191,155,209,74,166,192, + 60,68,73,164,149,12,65,57,149,162,45,138,83,24,15,83,120,116,2,159, + 245,192,2,170,38,123,107,34,13,195,102,19,127,151,162,236,208,225,225,195, + 201,219,4,200,99,181,191,195,242,73,251,168,161,147,71,188,14,220,175,200, + 36,180,141,222,46,24,170,142,41,117,171,174,225,141,2,254,254,33,248,214, + 67,192,73,197,169,223,40,39,77,212,193,246,139,202,189,143,125,249,26,200, + 171,2,100,169,69,36,198,93,222,164,41,181,53,151,191,81,245,41,182,41, + 108,170,210,223,236,224,125,111,12,114,67,53,66,35,132,173,239,249,251,135, + 77,167,148,196,73,101,214,47,89,2,144,91,234,220,73,237,18,152,191,153, + 39,32,162,126,37,29,105,200,10,80,209,102,125,93,123,158,122,25,25,148, + 63,116,160,154,195,233,82,86,246,225,30,83,253,88,205,241,247,246,223,85, + 22,96,128,174,193,61,136,250,49,56,226,247,210,45,199,124,199,122,189,194, + 62,72,185,15,84,18,137,67,118,205,239,156,33,191,51,103,6,246,53,51, + 54,199,248,81,38,73,220,169,40,59,116,120,4,112,98,130,251,208,199,66, + 152,39,106,99,162,252,222,152,41,223,13,42,149,180,225,218,12,151,212,211, + 164,71,99,243,148,7,121,67,41,22,83,38,43,53,55,211,83,102,211,111, + 238,189,47,1,210,47,173,149,211,71,80,166,12,205,125,210,136,52,220,200, + 206,160,216,13,33,207,16,20,47,159,129,123,95,229,158,167,20,139,107,10, + 92,247,128,3,1,175,224,200,253,161,37,72,19,96,184,170,72,177,165,160, + 75,89,17,177,180,193,207,55,149,154,154,251,122,91,196,102,96,72,173,97, + 252,129,178,222,231,146,92,171,85,152,134,88,48,20,223,168,57,159,60,144, + 192,168,92,215,77,81,2,77,145,137,25,149,36,145,58,145,92,203,211,2, + 0,215,213,36,8,137,254,87,25,61,155,52,165,16,33,66,20,240,153,218, + 110,167,162,236,208,225,225,199,137,9,238,244,8,32,152,3,50,169,141,193, + 209,55,33,153,216,225,150,15,134,250,13,177,106,213,117,111,235,40,12,111, + 20,86,185,88,215,220,217,254,51,148,78,252,86,44,178,128,114,224,95,192, + 166,247,92,107,44,64,165,232,68,88,78,175,54,247,78,26,239,32,159,167, + 16,47,77,85,228,166,201,208,68,128,100,169,148,157,252,221,0,36,45,133, + 27,64,89,243,114,9,197,252,184,36,101,73,233,8,184,239,217,122,154,67, + 108,38,213,216,186,13,135,232,220,250,157,89,246,110,68,219,86,135,59,57, + 202,157,197,89,187,53,86,61,69,121,116,58,188,221,127,50,75,130,202,228, + 120,0,54,69,153,123,71,251,139,118,41,202,14,29,30,62,156,152,224,206, + 95,160,16,210,73,9,182,165,31,101,98,167,126,75,25,33,12,122,205,101, + 52,142,86,81,30,127,7,53,53,184,129,87,85,62,40,183,12,160,17,134, + 212,230,157,153,27,189,231,241,246,114,140,22,77,24,17,69,221,189,191,158, + 237,98,238,96,204,94,12,49,33,192,95,38,8,206,223,129,124,138,216,244, + 35,247,188,146,36,230,138,8,108,77,75,131,109,10,20,187,170,19,140,12, + 160,252,34,81,37,54,146,86,201,198,253,221,144,50,47,40,216,37,97,215, + 7,116,141,205,136,84,66,181,172,37,246,182,115,116,8,47,247,155,46,53, + 238,181,168,16,190,131,168,229,225,100,242,128,78,32,82,44,17,244,68,37, + 13,174,60,40,171,251,82,223,179,58,233,54,143,231,194,249,0,113,114,219, + 42,41,1,128,23,57,114,94,128,139,126,167,162,236,208,225,17,192,201,9, + 238,73,15,23,207,143,155,111,28,81,103,35,36,62,97,35,238,201,83,90, + 109,117,61,178,209,194,14,93,247,170,212,146,204,251,70,154,223,139,149,0, + 101,90,138,40,204,239,70,120,97,34,41,238,121,240,194,184,145,218,99,47, + 8,200,23,41,16,46,176,251,128,175,107,97,154,4,245,36,2,177,0,138, + 91,81,229,88,76,26,212,235,111,90,163,165,182,200,201,244,191,185,41,198, + 58,9,201,231,169,34,90,119,59,250,188,16,2,100,74,74,209,141,131,194, + 99,85,130,11,209,186,92,91,106,211,11,171,132,82,236,154,157,220,203,187, + 154,21,31,63,227,143,208,73,227,251,85,37,183,182,239,101,73,118,18,137, + 253,1,66,156,26,191,15,128,26,60,27,245,170,199,59,232,203,78,69,217, + 161,195,35,128,147,183,9,12,41,158,127,225,7,238,105,89,119,92,78,91, + 20,87,186,189,187,48,127,223,93,148,16,176,35,154,190,157,137,222,75,95, + 69,122,188,240,148,176,67,163,66,0,78,95,155,29,131,227,192,186,121,132, + 128,152,16,240,161,103,35,64,67,90,114,72,44,97,248,91,14,254,105,10, + 118,38,67,194,9,194,39,56,100,80,10,48,242,97,95,77,12,152,55,27, + 193,1,167,214,7,69,68,150,100,234,8,107,41,67,67,88,238,177,235,227, + 20,47,0,184,228,16,187,38,36,121,134,64,158,33,54,2,45,118,67,107, + 197,133,16,240,134,220,214,14,93,146,171,19,95,81,48,112,207,3,157,114, + 75,108,110,13,46,10,11,128,246,91,207,247,120,84,167,8,68,189,234,54, + 76,4,119,28,170,234,73,23,110,212,23,226,236,244,28,102,143,95,4,0, + 164,9,71,156,57,77,238,236,189,30,225,211,161,67,135,239,22,78,76,112, + 140,17,92,126,230,137,138,176,196,142,195,169,137,77,146,116,96,111,62,73, + 75,111,92,93,198,173,215,210,255,222,91,4,71,18,245,148,109,156,76,92, + 179,229,198,254,110,168,190,54,183,89,185,178,251,75,64,254,156,115,3,13, + 21,185,137,176,167,110,228,137,138,116,68,216,83,233,189,176,218,144,237,254, + 78,63,122,74,157,5,147,144,151,8,10,49,132,188,29,130,121,133,37,0, + 35,237,55,228,84,120,12,158,199,65,166,218,234,106,235,164,81,157,99,50, + 200,207,244,193,207,120,54,213,200,135,94,73,180,26,204,19,16,19,2,250, + 209,83,32,79,85,247,87,33,77,253,187,71,55,240,183,220,110,47,31,170, + 235,65,167,250,53,93,31,52,199,148,159,233,3,83,216,99,182,152,2,222, + 227,142,241,117,226,97,54,62,105,180,115,116,13,174,45,130,179,239,85,62, + 92,115,44,237,223,175,48,80,15,60,23,46,93,134,223,43,247,71,153,18, + 51,29,229,69,217,213,224,58,116,120,248,112,223,4,39,132,128,16,234,70, + 250,210,203,33,164,140,64,72,108,73,77,226,22,36,30,63,114,253,147,245, + 194,233,117,97,148,155,97,197,170,203,109,15,48,94,148,165,217,178,10,65, + 134,125,109,83,53,229,202,29,95,247,195,217,122,212,20,21,39,16,239,239, + 101,96,47,8,75,62,172,40,84,191,155,238,241,162,83,14,246,203,153,138, + 96,220,251,231,180,140,88,228,69,64,94,82,27,152,0,32,159,162,96,31, + 208,4,60,36,138,16,150,2,244,21,161,236,175,66,77,118,89,4,249,28, + 129,248,222,30,138,221,80,69,91,83,181,109,211,95,199,135,30,196,150,66, + 108,41,188,255,35,3,189,196,109,253,204,144,16,66,64,94,16,240,134,220, + 214,223,232,51,27,240,51,180,36,55,231,88,48,213,191,107,129,77,241,164, + 135,237,127,221,3,253,53,128,252,221,12,114,72,108,10,151,78,185,82,141, + 14,61,108,127,178,7,246,203,25,228,83,4,242,118,88,173,189,153,222,66, + 0,82,30,0,8,48,95,189,119,100,208,214,228,109,196,37,234,71,73,81, + 171,237,1,6,215,236,111,132,168,8,63,78,247,113,225,252,95,193,153,209, + 155,0,180,155,137,44,167,141,31,165,162,172,207,131,235,230,195,117,232,240, + 103,143,251,38,56,74,181,51,6,205,112,254,2,197,233,211,61,171,162,44, + 21,108,205,168,235,110,245,183,246,62,184,106,147,182,65,20,20,21,171,46, + 174,53,145,194,81,143,144,40,119,250,224,18,176,165,19,145,37,128,156,215, + 210,89,58,21,103,215,31,83,224,197,83,144,143,193,54,119,3,58,173,168, + 9,129,94,164,42,117,87,199,37,157,242,27,18,176,65,205,231,113,234,212, + 174,76,26,209,29,187,19,40,229,37,121,78,253,109,125,35,67,167,55,46, + 44,197,44,244,25,1,50,166,144,23,155,215,215,68,146,214,129,228,18,128, + 48,133,188,68,236,118,228,25,82,30,135,147,214,148,23,4,228,223,146,8, + 254,187,25,200,115,229,181,114,163,83,230,21,160,83,142,224,71,70,88,94, + 44,87,118,107,110,230,184,124,103,227,165,0,8,184,191,26,107,117,217,220, + 47,172,77,151,155,6,55,226,18,245,83,255,94,185,105,74,21,142,75,36, + 144,114,4,66,214,32,8,113,241,34,48,58,91,166,135,3,239,232,239,46, + 99,93,228,214,161,195,195,138,19,165,40,13,201,157,127,210,195,247,126,232, + 238,66,147,122,26,179,238,75,9,180,169,40,117,46,176,129,163,35,63,74, + 171,133,39,53,209,219,108,75,67,71,106,242,74,243,45,3,47,137,193,79, + 3,242,51,20,242,89,82,105,9,240,11,199,65,227,98,31,242,89,210,136, + 224,90,127,7,192,6,133,37,46,76,161,234,111,109,231,49,16,144,255,37, + 179,18,123,57,81,196,194,60,221,96,110,162,77,0,242,39,78,3,231,24, + 196,11,40,71,225,76,203,125,123,97,172,60,36,61,1,241,130,154,58,238, + 61,79,129,199,81,173,213,57,145,39,66,128,254,108,10,242,83,12,254,229, + 165,154,84,222,114,62,114,72,176,251,65,31,228,19,4,51,172,42,239,137, + 5,195,238,7,125,136,79,77,145,93,48,74,218,178,119,178,196,61,68,242, + 246,251,82,179,130,203,61,27,193,185,125,112,213,105,222,174,120,196,77,79, + 166,0,166,149,222,56,41,71,8,131,33,158,56,95,37,45,225,88,116,49, + 223,164,102,213,50,156,231,250,223,234,3,83,55,31,174,67,135,63,123,60, + 208,192,211,233,132,225,163,207,63,1,96,94,233,133,51,41,75,55,117,89, + 190,103,12,109,221,155,80,155,200,164,73,110,82,223,152,226,180,44,244,7, + 236,14,24,150,32,129,178,234,82,53,184,99,110,154,198,134,235,138,10,155, + 242,97,191,89,135,90,168,102,112,250,204,6,226,37,90,214,194,194,30,114, + 175,111,111,244,36,72,32,95,84,162,11,87,152,98,35,152,169,174,245,25, + 68,2,249,251,207,88,177,10,245,203,232,79,14,9,138,221,16,98,75,33, + 63,70,64,158,45,111,178,102,121,57,36,54,50,52,151,135,127,120,9,68, + 1,188,151,24,232,105,1,114,206,185,110,14,209,229,3,6,121,137,168,169, + 228,23,10,228,207,246,203,104,108,10,144,51,210,30,183,124,138,128,125,154, + 129,157,201,16,11,245,57,209,90,148,103,206,55,248,97,1,239,220,70,61, + 16,92,164,144,23,148,105,52,157,114,4,31,228,32,159,32,232,125,127,181, + 235,240,56,143,210,227,209,140,224,142,131,251,208,100,82,149,117,123,46,147, + 154,52,191,143,251,223,139,203,207,156,175,212,223,12,162,176,250,90,24,134, + 54,130,99,236,1,103,7,119,232,208,225,61,199,3,253,175,100,140,225,165, + 79,93,196,169,83,138,212,164,76,20,89,29,99,201,213,134,118,145,137,129, + 75,132,78,19,175,174,193,165,188,109,170,192,221,211,94,228,154,114,228,247, + 194,88,165,233,180,144,164,66,116,179,24,244,101,2,122,73,141,176,241,194, + 184,66,94,177,72,33,158,31,67,62,69,212,235,250,230,47,39,84,145,198, + 83,104,164,40,217,71,180,80,195,93,86,111,207,56,241,139,151,40,48,211, + 150,97,158,40,107,106,14,97,1,0,121,94,194,123,158,130,4,9,112,161, + 80,196,84,20,170,230,165,151,53,245,47,246,130,142,220,0,32,18,96,143, + 165,205,99,208,251,32,31,7,160,163,174,144,73,16,89,123,248,152,2,184, + 4,144,231,84,93,49,22,169,58,207,211,206,118,46,1,236,69,2,54,41, + 32,95,156,85,86,247,250,174,106,180,252,172,230,201,17,117,171,251,252,62, + 1,46,185,181,137,151,76,52,23,59,203,135,128,60,139,39,159,186,136,103, + 63,160,142,195,244,192,121,190,111,109,186,142,66,23,177,117,232,240,240,225, + 196,4,71,72,8,206,57,62,244,17,142,11,79,60,13,160,57,33,224,56, + 162,115,69,38,237,17,156,65,91,52,150,220,101,92,78,93,69,89,141,106, + 68,216,3,185,161,141,140,93,113,133,187,190,158,27,39,46,83,136,151,168, + 34,193,26,82,38,225,125,120,173,106,91,14,232,72,137,66,248,153,242,242, + 18,25,98,9,128,142,150,149,229,43,35,122,160,218,15,200,167,78,41,217, + 204,194,233,119,107,105,91,216,253,160,175,136,141,36,42,141,120,9,74,210, + 31,198,150,180,188,68,245,230,201,139,20,252,52,236,224,86,58,42,211,142, + 212,231,64,72,32,39,20,187,15,248,16,127,142,129,24,161,72,92,37,63, + 243,227,133,49,138,103,40,188,211,20,41,147,64,36,32,206,11,251,0,32, + 94,160,32,207,250,88,134,11,208,217,18,57,22,232,7,57,162,94,191,54, + 46,167,252,124,103,225,221,72,226,254,133,73,213,244,164,33,183,212,249,41, + 163,184,48,56,143,31,249,248,7,208,143,148,98,178,234,208,83,194,243,58, + 50,235,208,225,81,192,137,9,206,60,177,78,167,125,252,165,159,254,48,128, + 178,239,140,144,208,146,219,189,70,115,237,17,92,91,205,70,77,91,190,185, + 154,226,44,85,55,211,67,49,196,106,75,42,34,147,30,29,33,207,10,132, + 186,102,178,244,215,202,139,242,34,85,55,225,250,238,52,241,113,247,73,61, + 86,61,108,244,229,166,16,67,78,40,2,157,238,19,47,232,203,184,168,246, + 124,201,182,25,156,23,10,144,51,58,130,9,171,164,233,13,57,216,11,2, + 244,251,15,148,108,102,90,186,144,216,125,155,90,89,8,4,63,50,42,235, + 99,0,228,211,158,37,106,234,115,27,73,2,128,188,12,176,51,101,106,176, + 120,198,249,232,245,113,208,145,64,240,65,14,250,163,85,210,149,68,183,127, + 60,165,246,65,206,72,200,9,5,123,81,173,103,79,115,166,254,150,67,2, + 121,137,128,76,117,51,252,128,131,127,79,128,93,170,210,121,36,104,39,14, + 113,215,204,101,245,187,224,231,119,235,73,75,106,191,27,114,51,138,223,170, + 251,205,211,23,158,198,229,103,206,91,255,73,66,98,4,193,221,73,181,75, + 79,118,232,240,112,226,129,254,103,82,154,97,232,175,240,209,143,140,109,159, + 91,155,128,68,202,164,65,116,110,180,119,244,108,184,4,168,57,193,3,64, + 156,122,120,223,251,190,131,59,34,66,192,238,224,20,221,96,228,181,132,56, + 0,146,188,76,17,62,251,65,10,126,121,170,162,43,207,171,212,160,76,84, + 98,26,182,201,152,2,100,140,37,0,242,156,80,181,54,131,41,64,78,79, + 17,102,68,17,204,139,167,44,145,176,199,82,136,222,241,55,94,254,84,45, + 2,48,135,174,35,45,151,180,236,124,53,45,74,145,19,106,29,83,232,229, + 234,199,199,47,78,157,109,17,196,129,158,198,61,36,144,151,167,72,56,41, + 211,141,167,166,149,168,80,244,60,136,158,7,122,153,32,233,73,200,36,83, + 81,164,62,22,50,67,229,188,232,72,64,92,152,2,177,211,243,55,5,138, + 199,117,74,244,50,32,147,12,147,68,237,228,204,240,12,8,73,156,254,181, + 251,28,152,7,160,30,193,29,95,131,75,236,247,229,232,244,183,18,150,0, + 234,187,21,132,103,240,244,211,23,144,103,105,197,162,203,243,60,68,97,128, + 48,12,91,71,229,116,233,201,14,29,30,78,156,152,224,132,16,96,108,0, + 33,39,248,161,31,220,225,103,127,250,49,20,249,105,72,153,192,243,15,238, + 186,126,61,69,89,133,155,94,108,83,221,149,41,202,148,159,181,109,2,213, + 3,84,106,71,21,193,169,155,233,181,231,60,120,47,47,81,132,145,37,50, + 51,255,205,68,59,166,5,64,174,4,16,46,236,150,201,167,101,37,181,40, + 177,82,105,188,152,130,157,95,42,2,212,1,129,28,11,181,189,153,211,252, + 157,100,152,202,16,36,236,129,125,154,97,119,206,135,236,157,42,163,185,5, + 144,63,219,7,253,219,122,86,155,12,21,145,158,75,236,126,233,72,88,97, + 138,60,67,64,71,75,75,88,75,0,254,79,43,69,161,156,80,136,158,135, + 65,79,247,106,93,2,216,165,37,66,38,173,104,132,188,188,86,199,48,161, + 101,42,245,19,18,244,47,104,210,136,4,38,38,61,169,255,149,99,69,118, + 91,218,3,63,67,145,159,57,64,28,36,246,24,228,139,20,236,251,114,117, + 253,148,230,7,124,179,3,27,31,98,253,131,213,168,176,84,184,170,139,22, + 202,199,43,245,212,2,170,65,158,144,196,81,81,170,180,162,108,9,141,221, + 54,1,245,249,24,82,91,0,152,235,127,151,80,223,173,50,53,73,200,26, + 144,231,113,110,250,1,188,252,99,159,4,245,174,192,239,5,54,138,243,90, + 26,184,61,207,71,64,141,184,164,153,186,238,208,161,195,195,129,7,72,81, + 82,228,121,14,206,115,156,61,123,14,207,255,192,69,219,2,144,103,197,125, + 76,236,174,162,57,171,235,30,82,68,181,57,112,46,220,8,14,80,145,153, + 219,167,229,37,74,28,98,234,102,173,199,20,246,32,46,83,236,206,149,55, + 59,115,179,71,36,148,76,255,188,176,141,219,128,74,17,214,186,22,32,147, + 50,7,23,13,37,118,155,117,229,253,74,255,24,169,69,188,154,180,44,46, + 85,183,237,222,242,169,207,203,227,3,42,199,13,0,136,41,188,62,195,160, + 151,87,148,156,128,34,214,48,171,222,180,77,61,78,78,212,121,15,122,57, + 86,253,0,17,13,108,77,15,80,130,26,113,94,88,97,11,160,132,72,246, + 28,52,17,250,105,102,199,217,24,36,228,22,238,21,132,36,144,50,132,159, + 123,182,15,174,62,46,7,64,75,237,13,168,79,15,80,203,45,112,246,236, + 101,188,248,33,97,235,111,110,4,231,194,212,223,72,143,117,61,112,29,58, + 60,228,120,224,20,165,239,237,64,41,197,199,63,249,44,46,156,87,100,100, + 4,35,238,44,46,160,76,85,30,159,174,12,1,68,184,31,171,174,182,8, + 46,175,121,94,14,251,12,252,123,0,156,99,229,13,95,167,38,201,83,170, + 38,101,44,172,218,192,134,125,4,31,228,21,18,148,68,71,47,97,10,122, + 153,84,83,126,99,31,100,134,50,221,168,255,149,36,81,146,122,77,20,110, + 29,142,60,165,142,15,80,68,67,206,72,229,10,82,45,21,169,122,225,11, + 180,20,152,24,132,90,25,169,183,105,8,49,124,130,171,148,43,180,42,50, + 236,1,145,84,145,155,94,214,37,68,0,165,184,36,166,21,98,54,24,157, + 115,94,211,105,74,18,246,64,47,19,120,223,167,39,48,108,61,240,108,96, + 91,37,8,49,53,176,170,79,232,193,186,150,174,220,18,76,217,209,78,32, + 82,134,122,91,165,147,73,146,168,135,5,165,200,93,212,156,75,234,115,223, + 202,244,165,148,35,16,132,248,222,239,249,1,156,59,255,62,236,226,242,161, + 35,8,2,120,158,135,16,122,222,159,56,137,135,102,135,14,29,254,172,240, + 64,4,199,139,29,60,255,20,146,36,195,249,39,61,124,234,19,231,32,229, + 187,160,164,74,56,117,162,107,195,253,78,244,174,99,43,84,163,183,177,234, + 170,10,16,244,148,102,8,144,169,68,52,148,170,159,77,163,120,134,194,123, + 137,161,248,24,107,68,113,9,39,138,200,130,4,152,17,91,7,179,199,173, + 21,140,244,98,51,194,51,164,2,64,17,134,38,57,54,40,74,55,145,227, + 16,150,237,7,149,72,107,10,144,23,72,181,86,119,4,148,32,4,224,211, + 178,33,95,146,4,50,201,172,8,134,172,212,113,146,89,219,22,244,50,250, + 92,4,166,224,103,168,138,78,99,162,8,144,164,170,191,14,202,221,165,168, + 247,254,243,166,25,64,233,50,19,129,209,39,16,202,210,222,141,15,166,88, + 112,134,40,104,175,177,25,114,115,157,76,130,158,128,144,203,26,185,197,40, + 159,14,22,48,195,114,213,54,214,182,254,118,118,122,1,63,242,210,211,216, + 110,6,104,3,9,7,8,195,16,131,190,180,233,73,19,189,117,30,148,29, + 58,60,188,56,49,193,229,121,14,230,144,196,233,83,61,252,226,255,248,99, + 184,112,254,28,60,255,0,164,197,251,175,180,79,106,146,221,189,244,193,149, + 40,39,122,3,109,189,112,234,61,191,38,246,32,125,174,110,238,99,81,29, + 225,50,35,32,231,89,35,165,8,168,86,0,64,145,2,157,2,113,192,42, + 100,67,100,104,155,167,131,15,242,86,119,18,115,243,71,76,109,100,68,167, + 101,132,229,174,195,57,183,251,115,219,12,76,164,181,165,61,200,9,181,100, + 100,183,13,21,49,153,109,25,210,66,72,64,47,171,126,52,155,200,213,100, + 75,47,19,229,75,169,163,55,57,215,105,212,36,208,231,22,32,233,233,243, + 215,109,19,84,19,6,153,1,146,6,64,36,192,183,30,252,185,111,163,201, + 77,63,134,88,0,114,53,195,106,113,10,171,90,4,170,162,235,242,243,158, + 12,37,238,136,8,5,25,161,32,167,237,235,113,234,217,180,166,11,247,53, + 19,193,25,43,184,246,182,0,115,230,174,171,73,217,87,249,195,63,252,113, + 60,253,244,5,187,205,163,210,147,6,68,79,19,239,234,111,29,58,60,220, + 120,128,105,2,234,63,121,150,113,132,97,15,128,196,249,39,61,252,212,79, + 157,65,150,237,219,229,218,136,14,104,73,95,222,87,4,87,162,32,234,41, + 156,99,2,142,137,149,162,103,69,245,230,67,207,158,195,157,157,143,132,19, + 172,250,142,50,115,162,162,17,217,143,21,105,24,89,253,92,145,87,165,182, + 117,145,150,194,13,7,33,147,138,8,102,4,212,231,37,185,64,17,144,91, + 167,114,183,37,199,162,172,171,105,194,115,27,195,229,4,213,148,168,73,35, + 158,166,32,99,90,33,55,0,182,217,218,144,150,28,11,240,51,138,12,73, + 144,216,227,177,56,53,171,180,50,144,153,74,51,18,231,146,155,122,156,27, + 193,153,191,137,40,35,55,27,165,157,99,24,6,3,144,83,110,56,168,4, + 35,82,134,106,92,78,13,203,77,245,60,86,162,140,138,8,105,126,119,234, + 175,237,118,66,155,12,24,83,101,35,42,113,155,186,211,146,216,136,73,103, + 38,136,130,247,227,19,159,250,56,130,254,77,4,253,155,56,23,114,228,60, + 83,233,73,223,183,234,73,160,218,255,214,145,91,135,14,15,63,30,32,69, + 41,193,216,192,254,71,151,50,65,63,226,248,209,151,127,12,23,207,127,192, + 89,211,222,241,70,0,0,32,0,73,68,65,84,174,42,213,110,139,234,204, + 235,4,97,197,173,68,225,254,196,42,253,160,78,64,205,27,228,232,177,72, + 201,217,107,169,63,50,86,233,199,162,69,10,14,0,252,116,181,121,187,114, + 148,76,130,62,93,222,212,43,66,63,29,181,217,90,148,238,222,174,139,1, + 229,88,216,247,234,16,61,15,100,165,8,86,156,23,224,167,91,22,138,4, + 248,88,17,141,33,89,57,65,53,85,170,145,112,2,113,170,124,125,213,15, + 148,242,209,200,254,147,230,113,172,243,242,53,126,26,144,181,143,134,239,247, + 48,207,124,136,39,78,67,206,5,56,31,67,172,75,134,38,36,65,156,180, + 167,1,239,7,38,130,147,105,172,200,77,148,17,90,211,146,203,52,116,87, + 201,13,0,8,166,248,139,127,254,103,240,236,7,56,242,76,157,204,26,239, + 43,29,76,156,158,200,48,140,224,121,126,103,207,213,161,195,35,132,19,255, + 15,53,66,17,223,247,33,4,71,158,251,240,189,29,126,252,207,135,248,204, + 79,254,144,94,170,106,209,127,20,201,145,90,175,91,53,154,187,119,247,138, + 165,224,54,130,51,115,225,218,192,251,42,165,233,54,101,27,169,59,245,185, + 53,57,6,170,17,15,27,86,69,6,68,134,149,62,48,251,58,20,201,20, + 254,12,254,92,71,35,73,0,198,152,77,249,181,18,84,125,159,186,205,192, + 142,223,49,17,223,140,192,235,179,50,50,116,82,159,6,117,209,72,69,140, + 146,40,245,35,25,112,75,90,35,63,85,105,71,146,54,136,171,78,186,114, + 2,120,122,252,144,63,247,193,24,67,177,154,97,197,171,15,39,59,161,31, + 126,118,12,155,226,233,74,106,49,232,229,168,63,124,20,228,52,230,162,15, + 38,74,18,108,75,81,2,64,212,99,232,225,168,254,51,87,92,82,78,236, + 110,108,35,120,6,159,249,203,63,2,81,92,198,99,167,50,228,89,106,155, + 187,235,237,1,157,123,73,135,14,143,30,30,32,69,89,222,132,40,101,232, + 245,24,8,157,162,136,19,252,131,95,58,135,23,158,251,8,2,127,95,187, + 69,76,32,112,11,65,111,13,104,2,35,88,88,162,115,199,154,220,61,130, + 43,255,142,139,39,112,51,61,135,130,140,144,242,179,240,240,126,76,163,133, + 186,41,210,190,35,100,40,215,241,247,79,35,248,225,107,192,15,69,240,194, + 24,98,92,222,200,146,103,115,240,167,24,138,48,82,53,164,36,179,36,66, + 100,8,200,21,228,37,82,89,71,246,99,144,157,38,160,75,203,178,137,123, + 70,224,229,115,149,54,76,2,91,91,179,132,167,151,1,84,211,184,77,141, + 146,242,88,141,119,36,123,76,71,185,43,149,122,100,151,213,126,1,149,66, + 84,170,72,1,204,35,144,75,75,144,21,181,169,68,122,153,128,124,64,165, + 51,39,243,8,225,42,84,41,200,152,130,245,182,144,53,231,124,34,213,177, + 146,0,40,118,28,72,2,123,76,67,125,158,152,17,75,130,114,53,67,49, + 31,131,177,21,70,219,8,253,213,99,216,62,65,176,122,246,28,228,142,65, + 136,9,120,222,148,167,166,153,15,245,240,19,131,80,53,61,123,46,250,152, + 209,29,2,143,218,1,163,68,15,228,83,68,23,0,8,84,138,146,174,172, + 82,54,78,215,144,184,6,137,91,0,222,65,217,243,150,170,127,201,94,37, + 114,83,27,60,143,127,240,223,127,26,163,153,15,234,93,193,225,102,4,191, + 23,32,138,36,68,206,26,205,221,109,3,78,187,6,239,14,29,30,110,188, + 103,57,22,74,25,24,163,32,61,134,30,27,226,23,255,238,199,49,24,125, + 63,122,189,51,144,184,6,130,16,73,198,17,244,114,91,43,1,234,81,93, + 219,211,122,61,130,11,42,203,157,11,21,113,152,90,156,65,189,6,39,200, + 19,0,0,185,53,4,164,210,145,38,218,2,84,45,77,78,84,63,90,155, + 224,228,56,213,98,192,219,107,50,118,154,0,31,151,2,146,84,213,48,205, + 62,228,193,162,185,188,65,203,113,216,148,163,105,192,110,169,83,217,101,91, + 148,145,110,132,54,141,244,0,214,229,212,54,103,151,7,227,40,47,87,2, + 20,11,245,51,85,98,24,158,13,176,206,203,20,239,58,231,216,110,212,241, + 15,110,74,72,174,62,147,109,174,211,166,70,218,223,50,109,61,46,158,192, + 140,238,64,250,220,146,155,66,123,4,31,39,30,100,26,35,142,221,154,158, + 17,150,152,223,23,8,131,33,122,129,217,191,174,189,201,17,62,253,23,127, + 18,231,159,61,135,193,176,26,233,11,17,162,215,175,254,183,48,209,155,155, + 158,236,208,161,195,195,143,247,180,136,160,34,185,30,24,243,241,153,159,8, + 240,115,63,255,73,228,89,117,226,114,146,241,134,7,96,189,95,169,25,197, + 185,40,235,41,22,131,82,196,145,137,1,8,73,208,243,170,194,14,42,111, + 2,0,214,249,4,60,27,128,94,6,112,154,66,98,5,73,103,144,36,81, + 169,65,221,10,0,52,83,115,136,181,32,197,168,14,77,127,88,36,145,50, + 169,228,255,19,229,114,226,98,158,249,0,91,89,97,14,207,6,64,20,168, + 148,224,88,168,8,174,134,134,131,63,140,67,74,53,189,73,100,208,16,155, + 0,74,237,104,106,124,50,45,183,197,57,87,63,134,72,181,24,196,168,35, + 37,45,207,153,245,182,224,156,43,235,46,50,179,81,161,218,144,34,141,145, + 207,192,45,17,106,49,9,31,97,117,246,60,0,64,136,114,29,55,221,232, + 247,134,112,63,199,200,83,159,143,113,48,169,163,42,44,81,12,173,200,109, + 174,191,63,11,148,194,18,213,18,32,177,64,146,110,144,38,213,239,194,99, + 179,143,227,19,159,250,56,30,187,48,69,33,150,240,123,65,171,53,151,207, + 60,244,91,202,177,157,192,164,67,135,71,3,239,121,149,220,247,125,123,3, + 248,249,191,122,25,47,126,232,76,99,153,208,55,164,87,157,205,85,173,147, + 212,135,180,181,236,171,23,96,46,250,40,118,103,192,7,211,138,196,188,13, + 236,117,189,159,45,67,113,113,90,10,50,132,10,93,66,38,85,84,101,198, + 190,68,213,27,35,9,123,54,34,146,19,148,205,219,73,166,34,56,45,189, + 55,4,88,248,106,225,49,75,32,87,51,112,206,43,117,42,37,106,1,72, + 118,88,217,79,200,164,109,8,7,74,33,140,192,84,73,254,25,3,98,10, + 34,3,200,84,43,29,227,246,143,210,168,29,253,185,175,136,85,147,17,99, + 12,156,243,138,208,4,0,16,171,209,55,197,78,69,104,134,148,233,72,165, + 10,87,253,192,146,162,220,50,172,243,9,118,130,96,157,79,32,119,12,146, + 143,32,196,4,66,76,113,184,188,132,77,60,3,207,78,99,187,170,166,41, + 213,131,79,121,45,226,226,9,204,143,106,164,150,137,51,44,213,25,159,68, + 98,72,164,16,184,133,210,142,171,36,55,66,214,0,185,83,73,79,246,130, + 49,254,210,143,127,82,9,75,120,102,197,37,81,36,225,179,30,60,223,7, + 243,124,248,204,3,243,61,8,89,138,75,212,117,35,93,239,91,135,14,143, + 8,190,107,50,176,190,71,240,61,207,18,252,207,191,244,18,30,59,173,13, + 140,117,4,144,228,106,150,155,233,73,146,88,52,162,186,42,154,105,170,213, + 86,61,90,155,39,111,185,115,235,33,234,166,165,250,224,202,155,168,56,251, + 253,144,59,21,113,120,3,1,114,25,136,107,18,117,50,107,190,102,32,73, + 210,108,222,70,105,101,213,22,117,85,132,23,124,140,217,66,145,56,95,122, + 138,0,93,191,202,73,213,218,74,189,86,250,64,146,137,238,65,211,46,253, + 50,85,209,160,233,87,51,41,80,155,118,157,17,20,254,12,197,186,36,42, + 176,85,37,245,72,6,188,170,230,140,130,74,154,148,115,222,176,238,2,20, + 185,113,62,86,117,182,245,20,98,61,181,228,182,205,199,136,185,128,23,142, + 193,49,193,161,24,86,214,45,167,9,84,35,241,122,20,85,174,16,54,90, + 3,8,230,90,232,116,203,105,11,168,54,115,55,15,250,44,254,179,79,253, + 55,248,137,191,242,50,0,88,114,51,251,53,206,37,128,154,220,221,35,188, + 214,26,160,136,77,136,163,93,86,58,116,232,240,240,224,61,37,56,165,166, + 44,101,250,50,227,248,248,143,62,133,191,243,247,62,133,211,167,46,66,224, + 150,142,222,66,135,220,28,219,164,218,223,10,237,35,115,82,250,120,227,53, + 222,159,56,110,245,198,45,67,77,36,48,53,184,136,15,16,243,41,86,236, + 14,200,140,34,26,42,178,72,184,138,130,200,152,34,124,162,233,207,104,76, + 138,249,105,45,189,95,150,245,50,35,70,145,36,105,119,3,209,132,34,183, + 12,115,167,230,71,198,243,74,195,247,81,16,57,3,89,81,172,115,157,214, + 76,50,37,6,201,148,208,199,70,113,102,249,241,2,171,126,0,58,85,4, + 6,192,46,187,226,161,34,167,108,80,146,239,140,64,96,138,69,60,0,95, + 170,99,201,103,234,115,100,140,129,200,0,98,61,1,102,234,235,146,79,212, + 131,202,78,16,91,103,19,98,130,117,122,30,219,124,12,158,157,134,196,12, + 251,201,24,41,63,91,113,41,169,194,216,178,169,104,124,40,21,129,51,237, + 78,18,70,71,152,131,26,203,55,92,131,34,181,91,250,103,169,31,150,146, + 134,168,68,202,17,62,242,161,159,178,61,111,102,159,198,123,178,72,245,181, + 20,33,6,65,15,92,244,209,27,76,26,173,1,64,55,61,160,67,135,71, + 5,239,121,13,206,77,223,4,67,117,243,250,133,191,241,23,240,115,63,255, + 73,60,126,218,67,146,23,144,152,217,6,240,178,17,124,81,107,31,112,139, + 31,110,4,167,210,154,171,90,23,64,30,62,6,33,66,91,231,169,138,76, + 82,28,196,234,166,180,3,69,176,209,82,253,217,204,166,41,13,76,90,177, + 13,9,39,37,89,185,13,210,122,170,192,189,96,228,43,73,189,58,128,113, + 131,16,13,17,1,74,138,239,246,233,141,206,101,170,193,187,39,27,82,254, + 164,39,237,177,145,21,197,200,79,33,105,153,74,180,226,26,141,202,223,164, + 233,229,25,239,143,26,199,83,57,78,29,189,1,176,81,155,193,161,24,98, + 63,209,173,18,100,212,16,0,181,33,8,153,253,12,143,133,245,49,125,87, + 63,8,189,3,165,152,92,30,73,108,144,103,241,253,239,255,113,252,220,47, + 252,24,94,248,129,179,56,124,123,87,169,187,5,65,128,94,159,34,140,34, + 244,251,18,204,247,48,232,55,155,243,187,244,100,135,14,143,22,190,43,41, + 74,223,247,209,235,41,85,229,96,48,66,223,35,248,159,254,254,251,241,179, + 63,247,215,208,235,61,235,16,89,236,252,40,28,55,187,75,33,68,24,52, + 213,140,166,111,201,52,122,147,40,175,88,117,157,13,247,0,0,116,224,40, + 3,71,42,42,89,196,3,132,121,121,147,183,98,138,150,30,55,54,81,233, + 214,117,30,128,153,169,64,206,114,210,48,150,67,26,174,85,149,171,58,100, + 189,45,22,227,105,211,232,216,110,43,173,152,33,175,130,65,197,83,210,133, + 219,126,192,199,99,144,37,64,244,105,120,185,170,49,174,144,1,139,154,13, + 21,91,129,204,40,40,22,24,167,229,83,195,152,37,42,157,201,86,149,214, + 133,97,48,128,55,16,216,9,2,26,13,33,68,149,28,121,166,10,135,179, + 144,33,148,143,163,175,31,32,146,240,253,122,137,20,126,122,215,201,166,40, + 138,227,102,189,161,230,88,82,141,218,170,205,220,33,190,239,253,159,196,95, + 255,155,63,131,15,125,248,52,54,203,91,56,245,100,181,214,151,36,20,140, + 14,43,194,18,207,99,149,232,173,35,183,14,29,30,61,124,215,106,112,82, + 38,200,116,186,144,243,28,94,111,137,255,246,127,120,10,127,255,239,252,87, + 144,8,17,5,123,80,209,88,164,127,230,246,71,221,184,98,148,66,19,227, + 118,210,76,89,249,180,143,53,222,135,34,207,145,145,211,0,93,1,8,32, + 211,88,91,134,133,0,30,3,0,44,240,20,196,118,5,70,86,8,247,148, + 219,10,251,136,218,142,73,205,1,0,153,44,96,134,131,47,161,83,144,38, + 5,24,167,101,221,236,28,3,217,69,136,131,68,69,80,243,8,116,180,84, + 4,41,149,40,99,164,107,133,156,143,193,249,24,125,58,195,78,204,177,90, + 168,232,104,228,51,107,29,38,233,41,69,42,6,73,160,172,182,244,8,158, + 217,19,138,128,194,140,168,122,155,38,32,192,169,245,145,9,216,106,133,85, + 63,64,161,201,118,62,13,213,190,87,143,161,79,103,88,231,28,235,124,130, + 209,54,130,92,205,64,166,90,60,66,38,0,215,132,101,234,116,124,92,186, + 154,204,5,232,101,96,181,214,106,80,93,171,220,230,99,72,204,80,224,105, + 200,222,4,161,124,28,113,124,22,9,189,132,29,95,130,15,166,96,222,121, + 80,114,21,82,78,176,74,22,149,52,244,120,68,192,179,33,68,206,64,105, + 130,136,234,9,1,241,194,233,127,83,117,55,66,98,0,223,2,112,5,192, + 85,64,215,111,155,125,110,103,1,121,214,146,219,7,159,243,80,136,101,99, + 28,78,16,4,152,206,2,120,61,253,224,193,198,160,108,216,32,183,186,107, + 9,231,71,27,9,116,232,208,225,225,192,119,141,224,8,9,245,141,161,140, + 110,206,13,24,254,211,255,98,141,191,253,183,254,6,164,124,1,192,12,42, + 197,244,14,74,50,83,194,129,82,242,221,68,146,150,117,62,234,115,132,161, + 158,58,237,12,189,140,227,66,223,68,141,108,92,161,40,46,98,55,255,30, + 196,76,221,160,10,39,71,104,197,21,51,162,218,1,104,80,233,111,139,180, + 132,158,78,149,243,7,80,109,204,6,180,132,127,70,107,94,140,117,40,41, + 188,73,85,142,252,180,57,179,13,80,227,111,128,134,129,115,165,87,142,143, + 203,90,156,78,59,202,177,192,232,92,6,57,150,138,176,22,61,236,4,1, + 89,149,231,210,167,101,10,174,32,179,114,252,13,91,86,252,48,221,101,0, + 160,72,75,165,106,61,53,9,0,113,124,22,197,112,136,98,56,4,233,115, + 112,204,172,244,95,205,11,84,245,179,176,199,96,4,64,203,229,85,0,64, + 52,28,131,178,17,14,87,2,67,125,138,86,92,34,151,122,212,210,187,16, + 88,0,184,134,242,193,167,61,173,249,125,239,255,36,126,241,23,94,196,7, + 159,243,224,209,9,242,44,181,131,76,1,237,90,163,163,178,158,71,237,196, + 128,54,112,94,141,178,219,38,215,119,232,208,225,225,194,119,209,76,79,201, + 217,141,122,111,194,22,232,245,83,60,243,193,103,241,243,127,245,50,126,249, + 31,254,44,62,250,161,231,0,76,17,250,166,39,202,85,82,186,102,185,46, + 2,152,39,122,143,78,144,36,20,73,162,78,99,212,247,149,47,161,92,66, + 226,22,34,191,233,100,178,218,18,196,163,199,49,184,41,33,86,234,102,54, + 125,178,215,168,81,1,101,84,199,183,30,248,214,83,66,147,168,170,232,36, + 50,64,152,145,170,67,137,89,223,81,43,110,55,94,133,96,70,62,3,99, + 43,37,2,57,85,70,166,134,92,18,78,42,126,144,114,2,44,198,229,114, + 43,30,2,124,12,182,40,35,62,18,58,106,197,90,93,205,16,154,123,12, + 38,93,42,199,178,186,188,222,175,171,0,245,228,28,152,81,120,193,1,250, + 84,66,238,24,188,145,86,115,98,6,142,25,230,9,71,164,143,191,207,202, + 237,153,198,109,53,171,77,13,54,77,178,27,80,159,113,128,201,228,18,0, + 96,185,84,15,40,167,207,141,16,139,33,162,160,176,237,1,42,114,123,23, + 2,183,64,240,77,189,229,91,0,121,3,32,119,202,235,36,71,128,60,143, + 191,246,51,63,137,191,254,55,127,6,151,63,246,65,0,64,156,220,134,223, + 83,231,53,236,143,16,4,1,162,96,82,113,44,225,162,111,83,147,102,98, + 55,160,60,39,235,233,201,78,104,210,161,195,195,143,227,229,123,39,132,16, + 229,211,46,231,28,81,20,97,185,153,2,92,128,96,129,243,79,78,240,159, + 255,228,69,92,188,240,18,126,253,159,92,196,111,253,246,191,3,96,110,82, + 11,184,210,254,40,240,16,215,4,21,166,6,167,110,122,176,222,129,82,132, + 122,178,243,29,72,92,69,146,155,52,168,186,177,133,242,113,76,31,227,88, + 125,253,119,209,123,86,11,50,40,195,80,204,176,205,15,1,30,98,4,168, + 232,75,247,198,185,196,229,207,125,112,238,129,206,0,44,116,109,44,5,230, + 217,16,179,94,174,148,137,200,48,154,10,0,20,144,83,172,243,255,175,189, + 187,143,149,236,190,239,58,254,57,231,204,243,227,157,189,187,222,216,94,219, + 107,107,99,57,173,77,155,20,18,34,217,169,237,68,118,172,154,170,16,149, + 160,148,86,254,163,138,64,9,249,3,85,160,254,17,218,32,254,40,18,2, + 10,162,130,0,37,180,33,74,213,22,138,169,8,8,183,170,73,16,85,31, + 18,85,77,131,19,57,93,199,118,99,239,174,215,247,206,243,153,57,79,252, + 113,206,239,204,153,135,187,247,56,221,205,245,254,252,126,73,214,157,185,247, + 119,207,157,217,25,159,207,124,127,231,247,176,10,148,137,235,73,147,116,219, + 158,113,16,169,91,205,54,55,205,70,39,58,253,244,111,250,145,147,118,137, + 54,22,74,250,142,204,17,76,190,121,87,165,222,94,218,197,22,86,7,210, + 84,234,181,107,10,167,174,60,101,243,229,178,99,142,198,67,73,167,52,139, + 165,196,245,210,45,131,102,103,52,107,237,30,234,158,76,61,69,217,102,163, + 61,207,151,162,116,1,229,238,41,87,82,172,104,48,208,44,150,220,102,71, + 193,104,253,26,229,160,225,105,156,93,248,27,71,174,66,157,82,175,158,13, + 86,9,95,82,163,118,69,139,101,241,245,205,22,67,142,46,74,58,163,70, + 35,86,28,205,52,158,164,35,41,231,139,138,28,103,152,77,9,184,164,68, + 175,202,209,43,146,190,37,57,47,229,127,183,86,239,105,185,24,41,73,186, + 250,222,183,63,174,15,254,208,135,244,174,7,98,221,114,199,190,194,120,168, + 96,185,200,7,149,4,209,82,139,197,66,237,78,39,15,55,163,223,115,183, + 70,77,214,106,4,25,112,179,186,33,1,231,186,110,30,114,158,231,105,185, + 12,213,105,158,82,20,37,154,78,199,114,157,169,234,142,175,7,222,213,212, + 79,223,253,1,61,244,232,121,253,242,191,127,86,127,248,199,191,175,70,181, + 35,63,120,89,230,36,56,95,132,42,86,109,210,34,239,162,52,221,77,213, + 160,165,80,129,102,142,155,175,44,159,94,199,75,247,2,187,101,112,78,143, + 124,224,3,146,102,154,140,166,234,221,115,155,226,88,114,221,161,146,168,171, + 72,177,218,19,105,170,215,165,44,207,14,231,109,245,166,158,156,194,160,148, + 145,150,234,41,27,72,226,196,138,162,177,20,245,212,147,20,45,211,192,233, + 169,166,176,117,90,206,32,214,44,187,14,103,38,64,183,20,107,38,87,154, + 141,229,180,78,105,28,188,174,158,86,131,65,228,244,37,127,166,134,169,56, + 253,186,52,8,36,37,107,85,94,88,29,104,172,121,126,125,79,74,7,178, + 180,92,105,84,11,213,85,69,209,96,144,254,94,214,61,104,86,245,79,198, + 146,227,141,21,143,247,228,120,158,162,78,168,89,236,168,55,112,243,29,0, + 42,81,164,100,234,201,233,165,129,215,107,215,20,29,244,149,76,43,154,186, + 137,28,69,138,38,78,126,237,45,210,64,241,82,114,27,105,55,102,164,129, + 58,94,95,82,164,88,82,173,221,215,61,247,52,244,67,31,140,244,165,255, + 243,172,46,93,125,53,123,109,246,210,175,222,221,91,239,161,74,45,82,179, + 30,202,209,129,226,172,34,119,116,81,210,80,181,198,80,203,69,26,108,11, + 63,145,155,236,171,81,187,160,199,223,255,144,222,247,104,186,183,91,189,245, + 109,205,253,203,233,251,163,86,87,197,237,171,147,188,34,185,82,212,172,170, + 82,169,200,203,214,151,44,174,55,185,94,185,101,155,184,82,173,1,55,165, + 27,18,112,69,174,235,170,86,171,40,138,34,121,158,163,118,59,253,68,239, + 86,67,185,19,87,97,253,101,189,247,189,85,221,117,231,195,122,250,215,207, + 235,191,255,143,223,145,127,117,162,85,247,228,230,181,142,213,39,110,243,201, + 188,214,114,85,111,180,165,241,85,181,218,75,205,23,223,146,228,235,150,65, + 87,79,62,246,189,122,244,177,247,233,157,223,19,200,137,93,5,179,129,14, + 253,145,122,237,68,135,227,129,246,186,7,154,72,234,184,105,55,222,56,112, + 212,30,72,218,247,20,69,161,188,233,72,81,148,45,38,172,166,18,73,145, + 211,151,171,171,26,69,13,117,179,174,205,40,234,105,22,31,72,123,75,181, + 36,37,175,186,138,207,246,228,120,227,124,2,244,68,105,168,74,105,232,57, + 173,83,26,29,190,174,190,164,102,39,81,172,180,226,53,167,211,40,138,36, + 167,175,121,125,172,198,192,85,26,88,153,195,183,41,114,139,215,139,156,108, + 238,194,229,173,215,160,56,156,95,74,251,165,227,184,47,207,27,167,93,167, + 173,72,225,98,95,158,174,104,22,59,234,102,147,184,103,209,92,173,168,167, + 138,210,202,242,229,183,57,218,111,182,149,104,152,142,70,45,84,214,110,99, + 160,249,180,162,86,191,175,36,219,69,47,174,164,161,234,85,43,122,224,47, + 158,213,223,187,189,162,7,158,78,244,223,158,126,81,127,242,220,115,89,133, + 157,190,190,253,126,250,59,81,60,145,231,118,20,133,171,174,233,70,237,138, + 252,165,249,192,50,215,194,79,228,232,140,150,126,67,205,122,69,239,184,247, + 113,61,242,254,31,212,247,63,112,135,78,223,126,69,193,242,162,86,155,222, + 166,225,230,56,115,77,180,167,118,167,163,94,69,10,42,213,252,186,91,163, + 209,204,87,42,113,106,222,218,192,18,194,13,184,121,221,240,128,51,76,37, + 87,228,122,29,245,7,74,255,235,30,234,206,159,186,91,63,252,161,243,250, + 163,63,252,83,253,194,47,252,146,198,179,138,230,11,179,172,215,158,86,97, + 151,158,56,205,53,21,73,154,142,71,154,204,198,170,56,223,212,217,125,233, + 199,126,252,199,244,208,251,238,209,187,254,66,67,203,249,55,180,156,164,85, + 159,219,24,40,246,165,100,49,84,175,125,144,175,149,56,145,228,14,93,181, + 20,43,146,212,140,36,103,52,82,212,235,165,219,190,196,125,117,171,171,65, + 44,146,210,33,247,213,52,220,156,145,35,117,78,229,151,17,39,103,179,249, + 114,89,184,85,71,13,45,58,233,227,63,240,166,186,35,106,202,207,214,172, + 12,250,123,114,239,146,28,165,85,111,52,77,55,62,173,180,60,109,111,175, + 186,206,25,57,114,7,67,41,142,36,39,81,187,114,171,226,154,171,169,155, + 164,79,170,240,24,138,170,163,134,46,239,187,58,173,56,93,141,228,108,91, + 222,197,43,107,109,186,211,166,34,165,85,220,164,112,162,79,102,158,162,96, + 123,10,69,216,233,104,17,185,234,120,210,97,228,105,191,227,42,84,83,81, + 16,202,211,85,221,121,231,190,254,198,79,188,71,143,60,250,168,190,242,199, + 23,245,191,159,121,86,95,248,95,95,208,104,156,104,56,28,106,255,76,71, + 21,53,21,46,149,87,87,73,114,73,243,229,52,187,118,151,173,228,162,134, + 26,245,59,242,138,237,194,189,145,170,181,186,130,229,203,146,234,249,251,162, + 213,236,170,147,28,106,225,237,201,173,166,221,216,158,219,145,211,72,212,206, + 150,226,42,134,219,230,168,73,194,13,184,185,221,240,128,43,46,107,84,173, + 166,167,235,40,156,169,211,60,165,165,183,212,104,248,138,36,169,221,237,74, + 158,163,11,111,127,93,183,223,113,167,158,248,225,127,164,47,125,241,79,245, + 103,47,135,122,225,249,23,117,241,91,23,181,240,95,211,213,215,207,228,199, + 171,55,7,242,194,68,203,89,172,90,171,170,239,187,255,237,250,233,79,222, + 170,7,127,240,130,250,157,87,21,5,161,220,240,64,45,39,82,171,219,208, + 225,88,89,132,164,21,201,44,234,203,209,129,246,230,75,73,13,69,123,67, + 205,228,170,219,239,43,26,166,109,156,145,163,36,59,209,141,91,145,90,238, + 64,83,215,83,187,117,70,210,107,26,7,125,181,39,217,245,181,153,228,180, + 174,104,116,230,157,114,53,84,28,247,243,138,237,138,211,212,153,201,92,65, + 79,218,143,218,146,98,197,227,61,185,119,188,42,141,164,120,122,70,222,222, + 37,73,217,58,145,83,169,210,210,106,181,149,61,105,152,205,99,235,102,189, + 104,179,216,81,91,102,48,139,163,89,44,181,36,233,237,177,220,102,87,241, + 124,82,88,105,100,79,243,40,86,187,58,146,119,120,86,65,207,215,126,212, + 150,219,73,20,207,39,114,47,77,178,125,242,118,207,201,107,70,109,29,104, + 174,36,233,235,53,205,100,198,136,70,217,45,115,237,173,147,13,46,217,207, + 42,178,170,87,81,179,230,40,168,196,138,163,137,60,87,186,239,129,83,58, + 123,238,22,125,240,137,31,213,143,255,201,195,146,119,183,246,207,188,160,249, + 244,114,122,205,174,214,84,53,76,175,175,86,107,21,13,186,21,221,118,219, + 253,186,251,174,191,162,243,23,238,212,237,231,42,186,231,158,59,117,219,237, + 21,77,252,177,148,140,180,240,163,181,235,108,102,26,192,88,183,170,38,169, + 94,31,100,83,1,34,85,107,167,229,185,179,172,91,114,125,167,128,93,83, + 2,138,239,101,66,15,184,121,56,73,146,236,30,23,125,3,164,215,229,210, + 63,87,156,35,231,251,190,194,48,80,24,70,242,179,205,70,125,223,215,50, + 140,21,133,129,252,121,250,189,197,98,123,201,174,170,219,82,173,229,174,173, + 0,111,214,17,148,36,55,204,6,110,4,87,180,156,164,83,3,156,120,168, + 197,120,162,186,151,86,44,189,44,132,156,122,218,214,117,87,163,57,77,64, + 25,230,58,154,227,165,243,174,154,81,59,189,174,182,97,188,72,87,211,111, + 122,174,230,81,172,70,184,159,31,191,62,241,21,244,124,117,220,236,239,245, + 135,170,14,15,53,236,38,234,86,61,57,237,72,193,233,171,170,94,186,71, + 206,183,71,26,254,238,84,237,247,158,75,71,59,102,204,182,52,230,49,228, + 143,247,210,68,47,143,61,237,93,104,103,255,230,89,119,97,22,112,205,236, + 228,93,159,248,90,116,26,249,115,53,207,211,241,198,106,119,66,57,35,71, + 211,142,212,24,247,52,247,166,121,80,154,99,22,175,191,201,29,104,236,236, + 229,215,222,14,35,79,205,246,45,106,85,22,170,52,6,249,138,252,174,183, + 26,229,25,134,233,235,227,251,115,69,65,168,32,218,158,154,80,45,84,89, + 155,109,231,126,250,94,240,231,243,181,247,69,146,52,243,77,75,165,116,1, + 0,115,189,173,216,37,41,237,158,204,45,233,186,85,111,174,203,142,223,192, + 73,250,174,117,81,26,174,235,41,8,2,121,158,163,40,74,79,216,141,70, + 67,126,118,201,165,209,104,106,58,115,84,245,66,73,161,230,161,182,118,87, + 94,44,22,74,146,166,186,122,69,65,181,174,74,165,176,58,135,215,83,20, + 75,149,246,76,161,31,41,174,12,54,170,56,95,137,219,87,189,43,185,113, + 122,82,157,196,82,187,114,168,68,123,114,147,67,197,241,158,234,19,115,13, + 168,161,160,231,171,58,74,191,78,36,245,174,188,148,119,65,206,178,86,38, + 72,166,65,47,173,8,179,147,250,104,234,72,242,20,185,82,39,187,127,70, + 105,23,161,246,164,185,55,85,103,228,232,208,59,173,189,241,107,138,179,221, + 98,230,175,117,85,149,148,45,207,168,74,114,160,32,235,154,157,78,42,74, + 162,110,30,178,38,96,91,138,53,57,219,211,57,141,52,209,122,184,73,233, + 112,254,89,36,133,254,72,189,172,187,52,142,247,228,186,135,107,213,102,60, + 236,107,38,87,173,113,172,69,199,81,50,89,15,55,115,172,77,93,47,86, + 34,105,207,139,148,84,92,57,217,244,128,56,73,255,49,204,233,222,108,30, + 106,66,206,171,166,65,230,103,111,130,170,183,90,240,184,213,148,226,44,215, + 163,184,37,175,58,147,87,77,127,62,247,23,91,239,141,180,2,93,237,200, + 93,28,41,89,245,42,71,134,155,65,215,36,96,143,239,106,5,183,41,8, + 2,69,81,162,40,74,187,46,205,9,46,12,3,77,38,147,181,239,153,79, + 236,155,75,56,153,213,223,139,213,155,57,137,73,82,156,93,195,51,149,156, + 27,190,170,131,113,83,110,252,66,222,198,205,150,45,137,253,3,13,78,47, + 21,189,190,189,33,167,225,212,15,10,225,151,118,61,74,82,183,178,26,229, + 56,14,15,213,173,236,105,186,163,183,175,157,157,229,27,193,43,121,21,231, + 57,171,185,108,238,32,171,164,122,7,10,15,238,146,190,225,105,26,190,162, + 206,185,179,154,102,5,144,25,17,185,41,31,68,226,14,215,194,109,52,117, + 242,199,227,214,210,7,213,12,93,37,141,68,147,201,80,189,108,63,61,83, + 205,153,202,210,4,103,241,250,157,9,203,89,212,207,171,183,216,221,83,226, + 246,53,142,92,117,188,190,188,78,154,210,166,122,51,43,131,236,98,94,95, + 83,185,23,69,113,75,237,86,146,119,35,110,86,248,210,238,247,69,113,39, + 130,205,247,133,9,54,73,55,172,114,51,168,224,128,147,117,226,1,103,152, + 160,43,134,220,174,19,154,180,58,169,25,187,78,98,134,169,18,226,197,36, + 15,185,131,177,163,253,230,43,121,155,195,177,175,211,157,213,232,195,131,195, + 194,201,54,155,15,231,44,215,187,42,221,90,172,102,232,110,133,88,148,141, + 32,116,179,162,210,12,159,159,79,43,170,123,87,242,238,80,105,61,228,12, + 207,25,41,233,37,154,197,7,233,245,190,73,37,157,148,126,182,35,191,59, + 90,219,115,109,147,169,60,205,96,150,209,212,81,167,147,182,243,195,100,53, + 156,191,150,62,174,158,59,84,210,72,228,248,206,90,112,155,174,203,85,117, + 183,30,168,163,169,35,167,113,87,246,15,145,118,79,182,188,190,18,13,242, + 112,115,188,174,42,45,87,205,138,187,21,112,105,197,190,122,157,211,175,219, + 243,242,138,175,99,165,82,61,242,61,97,222,15,94,165,170,40,12,214,230, + 182,21,187,36,139,131,73,36,173,133,219,141,88,103,146,128,3,78,214,119, + 189,139,114,147,217,120,179,86,243,180,92,74,217,185,71,190,175,181,147,98, + 20,183,228,185,179,157,199,88,157,184,86,149,155,249,221,252,196,168,78,62, + 124,162,63,144,226,112,149,235,137,134,10,11,75,47,69,21,95,94,248,173, + 244,142,155,78,250,78,106,235,129,18,44,165,168,208,51,106,130,99,49,63, + 163,186,119,69,243,249,106,48,76,56,235,170,221,77,228,198,161,38,26,40, + 246,15,212,115,135,242,171,183,202,137,15,84,220,243,188,227,74,110,226,72, + 114,20,15,123,89,79,231,68,94,127,160,240,96,176,86,157,77,131,158,2, + 223,83,175,157,104,52,117,212,107,39,186,226,52,213,113,250,242,195,68,149, + 134,52,13,11,225,228,14,228,230,79,243,64,163,184,47,205,210,199,221,118, + 18,249,85,71,73,35,91,157,100,190,154,211,230,212,15,20,155,9,220,179, + 61,201,149,156,108,167,130,216,221,83,43,175,222,86,127,202,132,91,156,52, + 213,104,58,146,66,85,163,166,156,141,137,211,155,175,211,166,205,202,175,82, + 241,212,104,52,229,251,243,252,117,47,170,214,219,121,23,230,102,176,153,219, + 166,75,242,70,134,27,128,147,119,162,21,156,180,62,240,36,138,226,157,93, + 150,210,250,39,253,205,238,172,226,117,149,244,235,250,132,221,69,28,228,199, + 136,163,137,92,175,163,229,52,173,164,76,85,151,222,126,117,237,184,195,225, + 37,237,247,22,186,58,170,231,221,152,187,204,167,149,124,137,170,252,121,185, + 123,154,78,28,181,122,61,205,70,35,181,122,61,57,241,112,237,56,253,206, + 37,133,179,153,220,228,80,237,214,82,115,63,13,112,115,45,172,165,88,147, + 120,160,222,149,151,52,58,147,14,90,49,107,63,6,126,182,211,182,187,39, + 183,22,43,94,174,170,5,183,22,231,163,27,229,102,213,99,183,163,197,120, + 162,102,59,84,236,166,97,181,249,156,250,157,75,26,142,210,212,110,87,14, + 53,13,247,212,9,135,154,84,214,195,125,62,63,147,31,103,154,40,175,222, + 226,202,158,170,141,244,113,84,187,253,173,234,173,238,86,243,121,102,230,53, + 54,138,175,117,25,166,154,75,127,119,245,126,216,245,94,72,191,191,170,218, + 210,175,171,105,14,55,42,224,168,224,128,147,117,226,1,87,20,199,177,162, + 40,202,7,159,152,147,96,178,140,242,144,146,116,236,39,125,115,34,45,74, + 10,27,161,46,226,64,203,197,42,216,66,63,82,175,237,107,50,92,157,40, + 139,97,55,75,188,181,17,152,187,36,110,95,78,60,84,226,110,119,29,166, + 251,223,29,108,253,190,27,31,170,179,124,33,191,111,186,44,141,102,35,221, + 214,37,188,28,231,221,142,146,20,59,123,114,252,221,187,142,231,97,84,168, + 176,174,245,120,139,174,21,226,69,230,152,230,185,154,1,39,197,238,201,110, + 47,173,162,76,192,21,195,109,83,49,236,146,101,180,245,218,21,127,86,124, + 31,72,219,239,133,205,138,111,51,216,210,219,171,169,0,55,114,64,9,1, + 7,156,172,55,85,192,73,171,144,147,180,86,205,73,187,79,112,155,118,117, + 91,73,82,181,50,211,114,86,88,5,197,203,174,227,76,198,106,121,235,91, + 159,20,131,78,74,167,24,180,178,105,7,179,36,61,33,46,38,235,251,170, + 153,0,51,39,123,71,7,170,117,218,121,187,122,39,93,86,108,57,153,234, + 116,231,178,94,155,220,146,95,247,11,46,255,63,237,223,177,167,171,47,29, + 202,169,31,168,221,90,106,58,171,169,221,90,42,188,188,186,200,55,239,190, + 109,43,216,70,241,234,154,95,113,185,44,99,51,140,142,114,186,115,89,87, + 71,117,237,247,22,107,215,32,7,123,205,188,130,45,134,101,153,112,147,164, + 70,167,187,214,53,89,188,238,37,41,255,48,83,20,69,193,86,16,154,239, + 237,170,238,55,213,221,170,22,113,176,99,132,228,141,25,76,114,20,2,14, + 56,89,111,186,128,43,218,12,187,244,235,170,170,147,180,118,226,44,90,173, + 35,184,84,28,215,182,78,164,225,124,253,4,89,236,198,148,148,119,97,26, + 243,101,162,36,90,223,115,44,240,119,79,138,150,164,106,195,85,224,199,121, + 151,221,166,192,143,229,134,105,197,52,232,206,117,56,246,53,27,141,212,238, + 36,154,78,118,87,103,107,143,223,217,191,230,207,163,86,95,123,222,170,106, + 141,43,187,43,57,243,248,118,61,23,243,248,198,227,137,218,131,115,249,253, + 226,241,130,74,83,181,138,155,15,242,145,164,154,19,169,213,63,157,183,221, + 28,212,225,121,238,214,246,51,155,175,79,49,4,119,181,219,236,226,220,84, + 171,213,242,246,39,181,50,9,1,7,156,172,55,117,192,25,102,180,101,241, + 36,184,235,83,190,180,254,41,189,200,156,80,205,9,207,28,107,51,232,140, + 233,114,53,160,37,12,163,124,186,129,49,95,174,255,179,53,107,78,30,130, + 173,102,111,173,77,179,230,228,247,205,109,105,253,250,159,49,60,216,221,5, + 58,30,79,182,190,183,240,110,83,61,250,118,30,62,71,133,152,164,173,160, + 53,115,212,218,217,212,0,51,95,112,18,120,106,53,123,249,99,155,4,94, + 30,126,38,180,37,201,105,180,85,209,92,161,154,107,147,235,221,122,71,174, + 51,87,173,158,86,118,197,238,226,205,128,171,86,171,107,43,221,24,81,20, + 231,175,223,102,16,174,218,172,130,238,90,239,131,244,246,201,204,109,35,224, + 128,147,117,83,4,92,81,113,106,129,180,10,44,105,53,88,32,8,130,157, + 3,7,204,247,211,137,230,238,90,232,165,95,119,95,243,147,142,30,206,158, + 142,230,107,230,95,165,108,74,66,189,163,50,162,101,97,39,241,108,86,183, + 9,70,179,186,71,226,79,21,84,154,10,151,158,28,215,151,87,169,42,92, + 102,131,40,106,235,143,199,84,83,197,149,65,138,19,167,215,218,58,145,18, + 103,21,138,78,114,152,63,238,98,160,47,19,79,81,176,189,210,72,179,230, + 104,153,120,121,176,25,155,115,205,164,237,193,29,111,100,96,71,241,117,203, + 159,211,198,253,34,124,200,48,116,0,0,11,255,73,68,65,84,19,104,102, + 105,173,147,90,98,139,128,3,78,214,77,23,112,134,57,233,153,10,224,141, + 158,192,226,56,206,182,245,137,242,101,195,140,50,215,253,54,7,55,152,224, + 43,78,74,46,206,227,74,127,182,58,169,15,231,174,186,89,32,206,199,171, + 170,205,15,163,124,58,132,9,21,19,86,203,240,232,46,209,98,176,85,107, + 167,86,199,200,38,75,79,103,142,218,173,36,15,84,175,86,156,24,189,253, + 111,183,107,94,218,116,230,168,219,158,105,54,215,86,168,153,227,108,206,119, + 147,182,7,120,92,239,81,139,111,214,53,34,9,56,224,100,221,180,1,119, + 61,152,61,235,210,173,124,220,181,160,43,134,220,34,73,67,33,201,170,154, + 56,105,203,117,166,91,183,141,48,12,142,92,185,195,48,3,33,204,87,243, + 123,197,96,113,157,185,198,211,116,254,95,177,130,242,170,149,252,126,177,42, + 171,57,145,230,81,55,109,31,183,212,40,4,151,9,180,93,97,118,212,99, + 221,172,90,163,101,69,94,45,204,191,174,126,127,125,72,190,153,162,81,220, + 122,102,87,165,109,59,2,14,56,89,111,233,128,147,138,187,143,39,121,192, + 165,147,206,119,93,27,218,30,206,158,44,35,45,171,233,232,204,90,144,174, + 168,49,143,106,106,122,203,252,182,215,72,79,236,117,39,13,133,69,82,81, + 167,58,90,27,213,41,173,174,251,109,86,79,174,51,87,232,239,222,129,91, + 146,42,13,79,161,31,169,210,240,20,39,77,185,206,92,113,146,174,232,114, + 92,37,105,236,154,55,184,201,4,222,181,194,123,51,220,164,245,235,162,230, + 218,219,91,1,1,7,156,44,2,46,222,238,246,51,21,93,122,123,53,249, + 220,12,83,111,52,164,93,163,212,171,149,153,130,176,181,245,253,226,239,5, + 65,122,219,180,221,156,159,183,105,179,138,42,118,129,22,239,23,29,87,61, + 22,167,82,236,154,119,150,108,132,123,224,205,85,141,154,249,227,219,12,195, + 205,169,25,71,5,219,91,109,33,99,2,14,56,89,111,249,128,51,76,208, + 165,215,229,98,37,201,124,227,231,233,84,3,179,167,157,180,59,228,140,226, + 146,99,197,251,82,26,114,187,68,81,144,119,135,74,105,69,56,143,106,91, + 221,161,187,186,69,205,207,155,222,82,139,56,144,91,13,243,80,58,106,110, + 224,27,117,212,36,236,227,70,179,154,80,59,106,240,143,173,8,56,224,100, + 17,112,71,88,13,98,217,172,240,86,203,138,21,237,154,219,181,105,87,27, + 215,93,174,5,94,177,123,244,168,185,94,155,115,0,55,131,199,84,140,71, + 5,79,241,122,88,241,118,81,153,41,25,230,120,71,49,131,128,222,74,85, + 91,17,1,7,156,44,2,238,24,187,3,174,48,151,45,27,137,185,178,235, + 132,95,12,139,120,109,58,131,233,10,61,238,250,95,250,187,219,129,119,173, + 48,43,170,86,3,57,78,99,71,48,123,249,100,250,221,127,51,201,218,237, + 14,193,205,239,23,159,91,241,254,91,17,1,7,156,44,2,238,58,41,78, + 87,56,106,234,194,102,23,93,241,254,81,115,186,118,185,86,232,92,203,174, + 191,125,220,215,93,19,177,211,199,176,10,202,98,123,172,16,112,192,201,34, + 224,110,18,113,28,229,3,53,76,184,152,235,91,187,194,229,122,6,206,174, + 110,198,183,114,215,99,89,4,28,112,178,78,124,63,56,148,103,186,51,203, + 140,70,188,158,213,212,174,191,69,184,1,120,179,163,130,3,110,16,42,56, + 224,100,241,127,32,0,192,74,4,28,0,192,74,111,108,24,94,217,131,58, + 14,221,158,0,128,19,245,70,7,153,116,37,253,85,73,79,42,13,199,255, + 41,233,223,93,239,7,5,0,192,159,87,217,10,206,149,244,176,164,223,146, + 244,251,146,254,82,225,103,255,69,210,95,91,59,40,21,28,0,224,132,149, + 13,184,167,36,253,135,236,118,77,210,243,146,238,204,238,143,37,245,214,14, + 74,192,1,0,78,88,153,65,38,247,105,21,110,95,146,20,72,122,143,164, + 103,37,125,67,210,67,55,230,161,1,0,240,157,43,115,13,238,63,22,110, + 255,215,236,235,171,74,187,44,1,0,120,83,58,174,139,242,180,164,23,37, + 53,179,251,247,72,186,120,236,65,233,162,4,0,156,176,163,42,184,207,72, + 106,73,234,107,21,110,146,244,175,36,77,148,46,143,255,9,73,151,110,228, + 131,3,0,224,59,181,235,26,92,93,146,89,104,176,83,248,190,47,105,166, + 180,234,91,74,218,222,113,19,0,128,55,137,227,186,40,127,77,210,135,178, + 219,175,74,58,39,233,232,205,195,204,65,233,162,4,0,156,176,227,6,153, + 252,72,225,246,75,146,34,125,62,185,87,137,254,166,254,232,11,159,212,247, + 61,254,43,250,186,251,17,221,167,11,186,124,241,235,186,229,110,233,57,121, + 250,20,43,128,1,0,78,214,181,146,232,180,86,93,149,146,244,159,37,73, + 207,233,121,125,93,63,171,239,127,226,211,250,191,191,250,97,73,82,146,252, + 174,110,185,251,203,82,252,119,110,216,35,5,0,224,13,184,86,5,247,238, + 141,251,79,175,221,123,78,127,91,210,71,117,159,94,84,24,60,168,231,107, + 207,177,118,51,0,224,205,226,90,137,244,158,141,251,95,219,106,113,235,189, + 146,20,164,225,6,0,192,155,199,181,2,238,254,194,237,223,216,217,98,242, + 186,228,79,207,95,207,7,4,0,192,245,80,12,184,219,148,142,170,52,35, + 43,223,81,248,153,89,205,196,209,133,108,234,192,125,250,166,30,120,255,207, + 232,171,207,72,119,173,175,69,9,0,192,73,51,1,247,25,73,127,38,41, + 86,58,193,91,90,5,220,115,90,45,209,149,232,247,126,101,168,195,95,141, + 52,215,59,229,232,183,180,244,165,102,242,130,222,161,191,255,93,123,212,0, + 0,28,195,84,107,197,121,107,95,150,244,47,149,46,176,252,162,164,11,74, + 23,88,78,125,54,57,167,231,245,237,181,163,220,171,135,245,13,253,78,126, + 208,79,185,199,206,149,3,0,224,70,50,1,247,15,37,125,114,227,103,255, + 84,210,63,208,119,176,98,9,19,189,1,0,39,173,184,146,201,187,149,118, + 89,46,36,125,229,207,117,80,2,14,0,112,194,156,175,125,237,107,165,194, + 232,242,229,203,165,14,248,213,175,150,107,247,139,191,120,231,241,141,222,128, + 47,127,249,47,151,106,247,115,63,247,207,75,181,123,254,249,39,75,181,187, + 112,225,55,75,181,235,116,202,236,76,36,125,236,99,31,43,213,206,113,202, + 238,85,91,206,71,63,90,238,51,201,71,62,242,108,169,118,47,188,240,66, + 169,118,247,127,238,115,165,218,149,245,3,231,207,151,107,248,149,146,159,225, + 126,242,39,75,53,251,244,103,63,91,170,221,175,255,179,230,241,141,222,128, + 243,63,112,190,84,187,127,243,238,114,207,247,211,191,87,238,249,126,246,63, + 149,123,190,31,62,44,183,246,195,199,63,254,163,165,218,125,226,19,223,44, + 213,238,95,252,252,133,82,237,254,201,67,191,93,170,221,131,179,114,51,161, + 62,247,224,99,165,218,189,235,193,89,169,118,167,91,175,148,106,247,228,147, + 143,151,106,247,27,58,87,170,221,79,61,117,170,84,187,79,223,253,161,227, + 27,73,250,137,239,121,250,248,70,146,62,127,235,207,151,106,247,204,51,207, + 148,106,199,204,108,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56, + 0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56, + 0,128,149,8,56,0,128,149,28,150,213,2,0,216,200,249,237,79,125,170, + 84,192,141,126,230,223,150,58,224,143,232,95,151,106,247,153,207,188,86,170, + 221,83,79,61,85,170,221,104,84,46,167,255,224,15,134,165,218,61,242,72, + 191,84,187,103,159,45,183,116,85,217,37,204,238,191,255,150,235,122,188,143, + 127,252,175,151,106,151,36,63,91,170,221,115,207,181,142,111,36,233,197,23, + 203,45,77,246,216,99,127,183,84,187,71,30,121,184,84,187,59,156,59,74, + 181,187,24,92,44,213,238,224,224,160,84,187,75,151,46,149,106,247,196,3, + 79,148,106,167,114,47,175,84,238,207,234,151,94,251,229,82,237,254,113,201, + 165,236,126,243,111,253,90,169,118,95,236,127,177,84,187,178,255,31,125,254, + 243,95,45,213,238,209,71,239,63,190,145,164,15,127,248,145,82,237,112,115, + 162,139,18,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,150,234,2,0,88,137,10,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0, + 96,165,255,15,49,185,100,52,148,169,231,220,0,0,0,0,73,69,78,68, + 174,66,96,130, From d424be9a782f2442514e429b03ec2504aa93243f Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 29 May 2016 12:27:50 -0400 Subject: [PATCH 5/5] Add pin/unpin button to the time ruler --- src/AllThemeResources.h | 3 ++ src/Menus.cpp | 5 +++ src/widgets/Ruler.cpp | 89 +++++++++++++++++++++++++++++++++++++++++ src/widgets/Ruler.h | 7 ++++ 4 files changed, 104 insertions(+) diff --git a/src/AllThemeResources.h b/src/AllThemeResources.h index 016b6a099..48328c5f5 100644 --- a/src/AllThemeResources.h +++ b/src/AllThemeResources.h @@ -123,6 +123,9 @@ from there. Audacity will look for a file called "Pause.png". DEFINE_IMAGE( bmpMic, wxImage( 25, 25 ), wxT("Mic")); DEFINE_IMAGE( bmpSpeaker, wxImage( 25, 25 ), wxT("Speaker")); + DEFINE_IMAGE( bmpPinnedPlayRecordHead, wxImage( 27, 27 ), wxT("PinnedPlayRecordHead")); + DEFINE_IMAGE( bmpUnpinnedPlayRecordHead, wxImage( 27, 27 ), wxT("UnpinnedPlayRecordHead")); + SET_THEME_FLAGS( resFlagPaired ); DEFINE_IMAGE( bmpZoomFit, wxImage( 27, 27 ), wxT("ZoomFit")); DEFINE_IMAGE( bmpZoomFitDisabled, wxImage( 27, 27 ), wxT("ZoomFitDisabled")); diff --git a/src/Menus.cpp b/src/Menus.cpp index 1739d3f25..1bfc8ffb7 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -2380,6 +2380,11 @@ void AudacityProject::OnTogglePinnedHead() auto ctb = GetActiveProject()->GetControlToolBar(); if (ctb) ctb->StartScrollingIfPreferred(); + + auto ruler = GetRulerPanel(); + if (ruler) + // Update button image + ruler->UpdateButtonStates(); } void AudacityProject::OnTogglePlayRecording() diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp index ab7a2ec1d..e88ae7b0f 100644 --- a/src/widgets/Ruler.cpp +++ b/src/widgets/Ruler.cpp @@ -66,6 +66,7 @@ array of Ruler::Label. #include #include +#include "AButton.h" #include "../AColor.h" #include "../AudioIO.h" #include "../Internat.h" @@ -82,6 +83,7 @@ array of Ruler::Label. #include "../Prefs.h" #include "../Snap.h" #include "../tracks/ui/Scrubbing.h" +#include "../prefs/PlaybackPrefs.h" #include "../prefs/TracksPrefs.h" //#define SCRUB_ABOVE @@ -1915,6 +1917,8 @@ enum { OnAutoScrollID, OnLockPlayRegionID, + OnTogglePinnedStateID, + OnShowHideScrubbingID, }; @@ -1937,6 +1941,10 @@ BEGIN_EVENT_TABLE(AdornedRulerPanel, OverlayPanel) // Pop up menus on Windows EVT_CONTEXT_MENU(AdornedRulerPanel::OnContextMenu) + EVT_COMMAND( OnTogglePinnedStateID, + wxEVT_COMMAND_BUTTON_CLICKED, + AdornedRulerPanel::OnTogglePinnedState ) + END_EVENT_TABLE() AdornedRulerPanel::AdornedRulerPanel(AudacityProject* parent, @@ -2033,6 +2041,9 @@ namespace { void AdornedRulerPanel::UpdatePrefs() { + // Update button texts for language change + UpdateButtonStates(); + #ifdef EXPERIMENTAL_SCROLLING_LIMITS #ifdef EXPERIMENTAL_TWO_TONE_TIME_RULER { @@ -2051,8 +2062,56 @@ void AdornedRulerPanel::UpdatePrefs() RegenerateTooltips(mPrevZone); } +namespace +{ + wxString ComposeButtonLabel + (AudacityProject &project, const wxString &commandName, const wxString &label) + { + auto pCmdMgr = project.GetCommandManager(); + const auto &keyString = pCmdMgr->GetKeyFromName(commandName); + return keyString.empty() + ? label + : label + wxT(" (") + keyString + wxT(")"); + } +} + void AdornedRulerPanel::ReCreateButtons() { + for (auto & button : mButtons) { + if (button) + button->Destroy(); + button = nullptr; + } + + // Make the short row of time ruler pushbottons. + // Don't bother with sizers. Their sizes and positions are fixed. + wxPoint position{ FocusBorderLeft, FocusBorderTop }; + size_t iButton = 0; + const auto size = theTheme.ImageSize( bmpRecoloredUpSmall ); + + auto buttonMaker = [&] + (wxWindowID id, teBmps bitmap, bool toggle) + { + const auto button = + ToolBar::MakeButton( + this, + bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, + bitmap, bitmap, bitmap, + id, position, toggle, size + ); + + position.x += size.GetWidth(); + mButtons[iButton++] = button; + return button; + }; + auto button = buttonMaker(OnTogglePinnedStateID, bmpPinnedPlayRecordHead, false); + ToolBar::MakeAlternateImages( + *button, 1, + bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, + bmpUnpinnedPlayRecordHead, bmpUnpinnedPlayRecordHead, bmpUnpinnedPlayRecordHead, + size); + + UpdateButtonStates(); } void AdornedRulerPanel::InvalidateRuler() @@ -2115,6 +2174,14 @@ void AdornedRulerPanel::OnCapture(wxCommandEvent & evt) void AdornedRulerPanel::OnPaint(wxPaintEvent & WXUNUSED(evt)) { + if (mNeedButtonUpdate) { + // Visit this block once only in the lifetime of this panel + mNeedButtonUpdate = false; + // Do this first time setting of button status texts + // when we are sure the CommandManager is initialized. + UpdateButtonStates(); + } + wxPaintDC dc(this); auto &backDC = GetBackingDCForRepaint(); @@ -2698,6 +2765,28 @@ void AdornedRulerPanel::OnContextMenu(wxContextMenuEvent & WXUNUSED(event)) ShowContextMenu(MenuChoice::QuickPlay, nullptr); } +void AdornedRulerPanel::UpdateButtonStates() +{ + bool state = PlaybackPrefs::GetPinnedHeadPreference(); + auto pinButton = static_cast(FindWindow(OnTogglePinnedStateID)); + pinButton->PopUp(); + pinButton->SetAlternateIdx(state ? 0 : 1); + const auto label = state + // Label descibes the present state, not what the click does + // (which is, to toggle the state) + ? _("Pinned play/record Head") + : _("Unpinned play/record Head"); + const auto &fullLabel = ComposeButtonLabel(*mProject, _("PinnedHead"), label); + pinButton->SetLabel(fullLabel); + pinButton->SetToolTip(fullLabel); +} + +void AdornedRulerPanel::OnTogglePinnedState(wxCommandEvent & event) +{ + mProject->OnTogglePinnedHead(); + UpdateButtonStates(); +} + void AdornedRulerPanel::OnCaptureLost(wxMouseCaptureLostEvent & WXUNUSED(evt)) { HideQuickPlayIndicator(); diff --git a/src/widgets/Ruler.h b/src/widgets/Ruler.h index 5f6c5098b..3be39e59d 100644 --- a/src/widgets/Ruler.h +++ b/src/widgets/Ruler.h @@ -349,8 +349,10 @@ private: void DoDrawEdge(wxDC *dc); void DoDrawMarks(wxDC * dc, bool /*text */ ); void DoDrawSelection(wxDC * dc); + public: void DoDrawIndicator(wxDC * dc, wxCoord xx, bool playing, int width, bool scrub); + void UpdateButtonStates(); private: QuickPlayIndicatorOverlay *GetOverlay(); @@ -415,6 +417,8 @@ private: void OnContextMenu(wxContextMenuEvent & WXUNUSED(event)); + void OnTogglePinnedState(wxCommandEvent & event); + bool mPlayRegionDragsSelection; bool mTimelineToolTip; bool mQuickPlayEnabled; @@ -441,6 +445,9 @@ private: DECLARE_EVENT_TABLE() friend QuickPlayRulerOverlay; + + wxWindow *mButtons[1] { {} }; + bool mNeedButtonUpdate { true }; }; #endif //define __AUDACITY_RULER__