|
|
|
@ -19,12 +19,50 @@ |
|
|
|
|
|
|
|
|
|
//[Headers] You can add your own extra header files here...
|
|
|
|
|
#include "PluginEditor.h" |
|
|
|
|
#include "DXLookNFeel.h" |
|
|
|
|
//[/Headers]
|
|
|
|
|
|
|
|
|
|
#include "GlobalEditor.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//[MiscUserDefs] You can add your own user definitions and misc code here...
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Ugly but usefull midi monitor to know if you are really sending/receiving something from the DX7 |
|
|
|
|
* If the midi is not configured this component wont show up |
|
|
|
|
*/ |
|
|
|
|
class MidiMonitor : public Component { |
|
|
|
|
SysexComm *midi; |
|
|
|
|
public: |
|
|
|
|
MidiMonitor(SysexComm *sysexComm) { |
|
|
|
|
midi = sysexComm; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void paint(Graphics &g) { |
|
|
|
|
if ( ! (midi->isInputActive() || midi->isOutputActive() ) ) |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
/*g.setColour(DXLookNFeel::lightBackground);
|
|
|
|
|
g.fillRoundedRectangle(0, 0, getWidth(), getHeight(), 3); |
|
|
|
|
*/ |
|
|
|
|
g.setColour(Colours::white); |
|
|
|
|
// g.drawSingleLineText("DX7 ACT ", 0, 13);
|
|
|
|
|
|
|
|
|
|
Image myStrip = ImageCache::getFromMemory(BinaryData::Light_14x14_png, BinaryData::Light_14x14_pngSize); |
|
|
|
|
|
|
|
|
|
if ( midi->isInputActive() ) { |
|
|
|
|
g.drawSingleLineText("DX7 IN", 17,14); |
|
|
|
|
g.drawImage(myStrip, 0, 3, 14, 14, 0, midi->inActivity ? 14 : 0, 14, 14); |
|
|
|
|
midi->inActivity = false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ( midi->isOutputActive() ) { |
|
|
|
|
g.drawSingleLineText("DX7 OUT", 17, 28); |
|
|
|
|
g.drawImage(myStrip, 0, 17, 14, 14, 0, midi->outActivity ? 14 : 0, 14, 14); |
|
|
|
|
midi->outActivity = false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
//[/MiscUserDefs]
|
|
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
@ -32,7 +70,7 @@ GlobalEditor::GlobalEditor () |
|
|
|
|
{ |
|
|
|
|
addAndMakeVisible (lfoSpeed = new Slider ("lfoSpeed")); |
|
|
|
|
lfoSpeed->setRange (0, 99, 1); |
|
|
|
|
lfoSpeed->setSliderStyle (Slider::Rotary); |
|
|
|
|
lfoSpeed->setSliderStyle (Slider::RotaryVerticalDrag); |
|
|
|
|
lfoSpeed->setTextBoxStyle (Slider::NoTextBox, false, 80, 20); |
|
|
|
|
lfoSpeed->addListener (this); |
|
|
|
|
|
|
|
|
@ -122,6 +160,7 @@ GlobalEditor::GlobalEditor () |
|
|
|
|
|
|
|
|
|
addAndMakeVisible (oscSync = new ToggleButton ("oscSync")); |
|
|
|
|
oscSync->setButtonText (String::empty); |
|
|
|
|
oscSync->addListener (this); |
|
|
|
|
|
|
|
|
|
addAndMakeVisible (pitchModSens = new Slider ("pitchModSens")); |
|
|
|
|
pitchModSens->setRange (0, 7, 0); |
|
|
|
@ -131,6 +170,7 @@ GlobalEditor::GlobalEditor () |
|
|
|
|
|
|
|
|
|
addAndMakeVisible (lfoSync = new ToggleButton ("lfoSync")); |
|
|
|
|
lfoSync->setButtonText (String::empty); |
|
|
|
|
lfoSync->addListener (this); |
|
|
|
|
|
|
|
|
|
addAndMakeVisible (pitchEnvDisplay = new PitchEnvDisplay()); |
|
|
|
|
pitchEnvDisplay->setName ("pitchEnvDisplay"); |
|
|
|
@ -218,6 +258,7 @@ GlobalEditor::GlobalEditor () |
|
|
|
|
lfoType->setImage(ImageCache::getFromMemory(BinaryData::LFO_36_26_png, BinaryData::LFO_36_26_pngSize)); |
|
|
|
|
|
|
|
|
|
programs = programSelector; |
|
|
|
|
|
|
|
|
|
//[/Constructor]
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -281,6 +322,9 @@ void GlobalEditor::paint (Graphics& g) |
|
|
|
|
//[UserPaint] Add your own custom painting code here..
|
|
|
|
|
Image myStrip = ImageCache::getFromMemory(BinaryData::Light_14x14_png, BinaryData::Light_14x14_pngSize); |
|
|
|
|
g.drawImage(myStrip, 300, 70, 14, 14, 0, monoMode->getToggleState() ? 14 : 0, 14, 14); |
|
|
|
|
|
|
|
|
|
g.drawImage(myStrip, 621, 102, 14, 14, 0, lfoSync->getToggleState() ? 14 : 0, 14, 14); |
|
|
|
|
g.drawImage(myStrip, 705, 102, 14, 14, 0, oscSync->getToggleState() ? 14 : 0, 14, 14); |
|
|
|
|
//[/UserPaint]
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -301,12 +345,12 @@ void GlobalEditor::resized() |
|
|
|
|
pitchLevel4->setBounds (823, 56, 34, 34); |
|
|
|
|
pitchLevel1->setBounds (739, 57, 34, 34); |
|
|
|
|
transpose->setBounds (202, 60, 34, 34); |
|
|
|
|
oscSync->setBounds (652, 95, 48, 26); |
|
|
|
|
oscSync->setBounds (650, 96, 48, 26); |
|
|
|
|
pitchModSens->setBounds (666, 5, 34, 34); |
|
|
|
|
lfoSync->setBounds (571, 96, 48, 26); |
|
|
|
|
lfoSync->setBounds (567, 96, 48, 26); |
|
|
|
|
pitchEnvDisplay->setBounds (751, 10, 93, 30); |
|
|
|
|
algoDisplay->setBounds (338, 30, 146, 91); |
|
|
|
|
feedback->setBounds (501, 80, 34, 34); |
|
|
|
|
feedback->setBounds (501, 81, 34, 34); |
|
|
|
|
algo->setBounds (501, 22, 34, 34); |
|
|
|
|
lcdDisplay->setBounds (6, 87, 140, 13); |
|
|
|
|
output->setBounds (157, 60, 34, 34); |
|
|
|
@ -318,7 +362,7 @@ void GlobalEditor::resized() |
|
|
|
|
loadButton->setBounds (50, 111, 50, 30); |
|
|
|
|
saveButton->setBounds (98, 111, 50, 30); |
|
|
|
|
storeButton->setBounds (270, 109, 50, 30); |
|
|
|
|
monoMode->setBounds (248, 65, 48, 26); |
|
|
|
|
monoMode->setBounds (249, 65, 48, 26); |
|
|
|
|
lfoType->setBounds (584, 8, 36, 26); |
|
|
|
|
programSelector->setBounds (153, 115, 112, 18); |
|
|
|
|
//[UserResized] Add your own custom resize handling here..
|
|
|
|
@ -443,7 +487,19 @@ void GlobalEditor::buttonClicked (Button* buttonThatWasClicked) |
|
|
|
|
//[UserbuttonClicked_Pre]
|
|
|
|
|
//[/UserbuttonClicked_Pre]
|
|
|
|
|
|
|
|
|
|
if (buttonThatWasClicked == initButton) |
|
|
|
|
if (buttonThatWasClicked == oscSync) |
|
|
|
|
{ |
|
|
|
|
//[UserButtonCode_oscSync] -- add your button handler code here..
|
|
|
|
|
repaint(); |
|
|
|
|
//[/UserButtonCode_oscSync]
|
|
|
|
|
} |
|
|
|
|
else if (buttonThatWasClicked == lfoSync) |
|
|
|
|
{ |
|
|
|
|
//[UserButtonCode_lfoSync] -- add your button handler code here..
|
|
|
|
|
repaint(); |
|
|
|
|
//[/UserButtonCode_lfoSync]
|
|
|
|
|
} |
|
|
|
|
else if (buttonThatWasClicked == initButton) |
|
|
|
|
{ |
|
|
|
|
//[UserButtonCode_initButton] -- add your button handler code here..
|
|
|
|
|
editor->initProgram(); |
|
|
|
@ -527,6 +583,11 @@ void GlobalEditor::bind(DexedAudioProcessor *parent) { |
|
|
|
|
algoDisplay->algo = &(parent->data[134]); |
|
|
|
|
pitchEnvDisplay->pvalues = &(parent->data[126]); |
|
|
|
|
processor = parent; |
|
|
|
|
|
|
|
|
|
midiMonitor = new MidiMonitor(&(processor->sysexComm)); |
|
|
|
|
addAndMakeVisible(midiMonitor); |
|
|
|
|
midiMonitor->setBounds(155, 21, 80, 80); |
|
|
|
|
|
|
|
|
|
repaint(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -579,8 +640,8 @@ BEGIN_JUCER_METADATA |
|
|
|
|
</BACKGROUND> |
|
|
|
|
<SLIDER name="lfoSpeed" id="b10eaf327ab3bff5" memberName="lfoSpeed" virtualName="" |
|
|
|
|
explicitFocusOrder="0" pos="564 50 34 34" min="0" max="99" int="1" |
|
|
|
|
style="Rotary" textBoxPos="NoTextBox" textBoxEditable="1" textBoxWidth="80" |
|
|
|
|
textBoxHeight="20" skewFactor="1"/> |
|
|
|
|
style="RotaryVerticalDrag" textBoxPos="NoTextBox" textBoxEditable="1" |
|
|
|
|
textBoxWidth="80" textBoxHeight="20" skewFactor="1"/> |
|
|
|
|
<SLIDER name="lfoAmDepth" id="3e95a6206fa4a891" memberName="lfoAmDepth" |
|
|
|
|
virtualName="" explicitFocusOrder="0" pos="686 50 34 34" min="0" |
|
|
|
|
max="99" int="1" style="RotaryVerticalDrag" textBoxPos="NoTextBox" |
|
|
|
@ -638,15 +699,15 @@ BEGIN_JUCER_METADATA |
|
|
|
|
max="48" int="0" style="RotaryVerticalDrag" textBoxPos="NoTextBox" |
|
|
|
|
textBoxEditable="1" textBoxWidth="80" textBoxHeight="20" skewFactor="1"/> |
|
|
|
|
<TOGGLEBUTTON name="oscSync" id="8f3fe641537cd00" memberName="oscSync" virtualName="" |
|
|
|
|
explicitFocusOrder="0" pos="652 95 48 26" buttonText="" connectedEdges="0" |
|
|
|
|
needsCallback="0" radioGroupId="0" state="0"/> |
|
|
|
|
explicitFocusOrder="0" pos="650 96 48 26" buttonText="" connectedEdges="0" |
|
|
|
|
needsCallback="1" radioGroupId="0" state="0"/> |
|
|
|
|
<SLIDER name="pitchModSens" id="904f73df85a9f886" memberName="pitchModSens" |
|
|
|
|
virtualName="" explicitFocusOrder="0" pos="666 5 34 34" min="0" |
|
|
|
|
max="7" int="0" style="RotaryVerticalDrag" textBoxPos="NoTextBox" |
|
|
|
|
textBoxEditable="1" textBoxWidth="80" textBoxHeight="20" skewFactor="1"/> |
|
|
|
|
<TOGGLEBUTTON name="lfoSync" id="ff92bb0a5a4f7187" memberName="lfoSync" virtualName="" |
|
|
|
|
explicitFocusOrder="0" pos="571 96 48 26" buttonText="" connectedEdges="0" |
|
|
|
|
needsCallback="0" radioGroupId="0" state="0"/> |
|
|
|
|
explicitFocusOrder="0" pos="567 96 48 26" buttonText="" connectedEdges="0" |
|
|
|
|
needsCallback="1" radioGroupId="0" state="0"/> |
|
|
|
|
<GENERICCOMPONENT name="pitchEnvDisplay" id="9ddaae8ef924a038" memberName="pitchEnvDisplay" |
|
|
|
|
virtualName="" explicitFocusOrder="0" pos="751 10 93 30" class="PitchEnvDisplay" |
|
|
|
|
params=""/> |
|
|
|
@ -654,7 +715,7 @@ BEGIN_JUCER_METADATA |
|
|
|
|
virtualName="" explicitFocusOrder="0" pos="338 30 146 91" class="AlgoDisplay" |
|
|
|
|
params=""/> |
|
|
|
|
<SLIDER name="feedback" id="4fac1940c29ab8c" memberName="feedback" virtualName="" |
|
|
|
|
explicitFocusOrder="0" pos="501 80 34 34" min="0" max="7" int="1" |
|
|
|
|
explicitFocusOrder="0" pos="501 81 34 34" min="0" max="7" int="1" |
|
|
|
|
style="RotaryVerticalDrag" textBoxPos="NoTextBox" textBoxEditable="1" |
|
|
|
|
textBoxWidth="80" textBoxHeight="20" skewFactor="1"/> |
|
|
|
|
<SLIDER name="algo" id="8a226ddf9bbff752" memberName="algo" virtualName="" |
|
|
|
@ -692,7 +753,7 @@ BEGIN_JUCER_METADATA |
|
|
|
|
virtualName="" explicitFocusOrder="0" pos="270 109 50 30" buttonText="STORE" |
|
|
|
|
connectedEdges="0" needsCallback="1" radioGroupId="0"/> |
|
|
|
|
<TOGGLEBUTTON name="monoMode" id="e683d8cbe286367b" memberName="monoMode" virtualName="" |
|
|
|
|
explicitFocusOrder="0" pos="248 65 48 26" buttonText="" connectedEdges="0" |
|
|
|
|
explicitFocusOrder="0" pos="249 65 48 26" buttonText="" connectedEdges="0" |
|
|
|
|
needsCallback="1" radioGroupId="0" state="0"/> |
|
|
|
|
<GENERICCOMPONENT name="lfoType" id="62f61dda9f76c8f" memberName="lfoType" virtualName="" |
|
|
|
|
explicitFocusOrder="0" pos="584 8 36 26" class="ComboBoxImage" |
|
|
|
@ -709,298 +770,498 @@ END_JUCER_METADATA |
|
|
|
|
//==============================================================================
|
|
|
|
|
// Binary resources - be careful not to edit any of these sections!
|
|
|
|
|
|
|
|
|
|
// JUCER_RESOURCE: globalEditor_864x144_png, 16274, "../Resources/ui/GlobalEditor_864x144.png"
|
|
|
|
|
static const unsigned char resource_GlobalEditor_globalEditor_864x144_png[] = { 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,3,96,0,0,0,144,8,6,0,0,0,110,232,8,32,0,0,0,9,112,72,89,115,0,0,14,195, |
|
|
|
|
0,0,14,195,1,199,111,168,100,0,0,0,7,116,73,77,69,7,222,9,16,3,34,22,232,201,175,57,0,0,0,29,105,84,88,116,67,111,109,109,101,110,116,0,0,0,0,0,67,114,101,97,116,101,100,32,119,105,116,104,32,71,73,77, |
|
|
|
|
80,100,46,101,7,0,0,32,0,73,68,65,84,120,218,237,221,121,124,83,101,190,63,240,79,74,123,2,154,48,51,57,157,107,147,249,93,26,238,208,118,126,182,229,218,197,129,194,176,41,34,107,69,5,148,197,5,68,64, |
|
|
|
|
101,145,165,3,165,104,5,101,113,40,91,1,45,200,166,128,40,8,178,239,12,219,143,237,74,91,134,182,252,108,203,189,36,253,141,73,71,123,162,99,142,163,57,44,253,253,145,228,144,52,45,20,104,75,151,207,251, |
|
|
|
|
245,234,11,146,156,156,229,201,115,158,156,111,158,231,124,31,13,0,13,128,32,0,193,0,4,0,205,61,127,45,0,104,1,132,0,104,230,89,70,3,34,162,134,165,28,192,13,0,215,1,92,5,224,2,240,139,207,159,226,121, |
|
|
|
|
254,134,103,121,182,135,68,60,31,137,88,159,169,214,234,67,176,231,131,14,241,84,2,29,128,95,121,254,90,2,120,208,243,188,183,82,176,66,16,81,67,108,16,175,3,184,230,105,0,127,2,224,4,240,79,207,159,12, |
|
|
|
|
224,103,79,195,8,182,135,68,60,31,137,88,159,169,54,235,67,176,39,18,111,14,224,215,0,66,1,60,20,249,123,115,251,54,255,97,238,96,12,123,232,63,254,253,127,253,206,204,242,36,162,198,160,228,255,253,221, |
|
|
|
|
90,86,38,149,88,74,254,158,125,241,82,225,81,0,165,0,202,42,44,166,101,123,72,196,243,145,136,245,153,106,169,62,148,107,0,232,61,149,225,33,189,238,193,63,116,238,240,232,75,143,38,196,119,183,219,237, |
|
|
|
|
0,0,239,191,68,68,13,157,209,104,84,255,45,248,191,95,127,181,255,240,177,229,78,249,95,95,123,26,70,25,238,161,3,58,182,135,68,60,31,137,88,159,169,150,234,195,15,26,0,191,5,240,16,0,243,51,253,122,166, |
|
|
|
|
254,86,252,77,7,86,2,34,106,10,141,163,75,185,90,184,238,211,47,166,1,176,0,112,192,61,124,224,55,0,90,177,61,36,226,249,72,196,250,76,53,92,31,174,0,40,109,6,119,55,232,191,69,253,222,220,35,250,15,17, |
|
|
|
|
207,179,50,16,81,83,32,203,50,126,253,235,95,133,162,252,134,203,254,143,239,138,224,30,163,47,0,16,163,126,111,238,206,246,144,136,231,35,17,235,51,213,84,125,208,160,220,101,43,253,238,107,0,63,121, |
|
|
|
|
239,255,106,25,21,241,251,36,86,6,162,250,227,219,50,7,11,161,134,252,91,168,161,210,231,237,118,59,254,16,25,241,104,246,223,46,109,135,123,136,72,57,128,95,177,61,36,182,13,13,227,124,188,122,245,26, |
|
|
|
|
92,138,130,107,215,174,65,185,122,141,149,131,234,140,16,18,140,224,224,96,8,33,33,16,132,16,214,103,214,135,106,213,135,243,23,10,182,2,104,17,12,247,13,129,15,62,208,162,121,196,207,255,250,137,37,72, |
|
|
|
|
84,79,46,174,152,2,169,230,124,231,41,211,202,46,252,132,224,224,255,128,59,3,85,11,207,23,36,219,67,98,219,80,207,207,199,27,55,110,224,95,63,255,130,127,253,252,139,250,28,219,76,170,75,87,175,94,195, |
|
|
|
|
213,171,215,240,243,207,191,160,185,86,128,238,193,7,16,20,20,196,250,204,250,112,187,250,240,0,0,65,77,65,255,243,191,126,10,99,241,17,213,143,11,44,170,187,242,149,164,50,239,92,44,130,231,175,5,219, |
|
|
|
|
67,98,219,80,191,207,199,159,254,245,179,223,197,42,209,253,244,139,75,193,143,242,79,172,207,84,157,250,160,5,16,18,12,247,124,3,33,26,13,99,109,162,251,141,231,225,125,43,227,102,158,63,176,61,36,182, |
|
|
|
|
13,245,251,124,84,174,94,197,47,46,133,237,37,213,43,87,175,94,195,47,46,5,45,154,107,89,159,233,86,245,33,24,64,144,119,34,230,32,22,21,209,253,197,222,175,186,43,231,74,134,62,53,243,105,7,217,30,18, |
|
|
|
|
219,134,122,124,62,186,92,87,89,41,168,94,114,41,85,6,96,53,86,159,79,159,255,27,11,250,62,234,144,248,159,247,90,31,130,0,104,130,225,30,102,202,176,155,136,154,58,77,133,127,137,168,30,158,143,87,175, |
|
|
|
|
214,125,0,118,245,234,85,88,254,110,199,119,210,247,117,178,189,208,223,252,26,255,203,244,16,30,104,209,156,53,161,1,185,90,117,226,140,26,173,207,45,180,218,128,251,139,168,118,5,5,5,161,101,203,150, |
|
|
|
|
53,86,31,130,3,235,6,17,81,83,185,182,187,219,215,137,232,126,157,143,215,174,95,175,243,61,252,111,235,223,225,248,225,71,52,23,4,52,107,214,172,86,183,85,94,94,142,178,239,127,192,191,126,249,5,143, |
|
|
|
|
68,71,177,122,52,32,229,229,229,181,94,159,155,105,52,208,106,181,8,14,14,102,129,215,101,43,229,41,247,154,170,15,252,244,136,136,136,136,110,193,241,195,143,208,61,240,0,4,65,168,245,158,135,27,55,110, |
|
|
|
|
160,121,243,230,16,4,129,5,79,212,72,49,0,35,34,34,34,186,133,32,0,193,193,193,117,50,236,203,187,141,22,45,90,176,224,137,26,123,0,198,236,43,68,247,27,207,193,58,43,233,219,180,119,108,15,137,109,67, |
|
|
|
|
125,62,31,53,245,110,31,107,99,123,238,109,178,45,98,125,166,134,220,30,87,85,31,120,7,31,17,17,17,17,17,81,29,97,0,70,68,68,68,68,68,196,0,140,136,136,136,136,136,136,1,24,17,17,17,17,17,17,49,0,35,34, |
|
|
|
|
34,34,34,34,98,0,70,68,68,68,68,68,212,228,49,13,61,81,61,193,115,176,254,148,117,197,215,183,237,61,204,66,163,58,243,76,239,238,77,170,109,184,211,243,177,41,181,149,252,94,96,125,166,134,125,78,86, |
|
|
|
|
181,252,205,137,152,249,249,19,221,231,179,154,69,80,111,202,186,146,215,91,104,181,117,50,9,43,53,93,65,65,65,104,217,178,101,96,253,211,240,124,108,178,109,37,191,23,88,159,169,97,159,147,85,44,31,204, |
|
|
|
|
146,36,34,186,181,102,26,13,180,90,45,130,131,217,100,82,45,126,175,123,234,25,17,17,53,110,252,57,151,136,136,136,136,136,136,1,24,17,17,17,17,17,17,3,48,34,34,34,34,34,34,98,0,70,68,68,68,68,68,84,127, |
|
|
|
|
169,119,148,7,49,13,38,209,125,197,84,180,117,199,183,189,43,191,205,235,68,247,179,126,54,133,182,225,78,207,199,251,81,30,26,141,230,190,109,151,88,159,169,225,94,171,85,117,61,193,30,48,34,34,34,162, |
|
|
|
|
91,104,222,188,121,157,95,40,115,218,11,162,198,139,57,149,137,136,136,136,110,193,100,50,226,231,159,127,193,245,235,215,235,100,123,33,33,33,248,237,111,67,1,92,99,225,19,49,0,35,34,34,34,106,90,90, |
|
|
|
|
234,90,32,84,12,69,203,95,253,10,205,154,53,171,245,237,149,151,151,195,81,246,45,208,140,101,79,196,0,140,136,136,136,168,137,105,174,21,0,92,133,252,207,178,186,187,64,99,240,69,212,20,2,48,222,4,72, |
|
|
|
|
68,77,133,230,30,95,39,186,159,245,147,231,35,17,235,51,53,228,250,192,30,48,34,162,123,212,177,227,35,247,244,254,83,167,46,112,27,220,6,17,17,53,17,106,0,198,52,152,68,247,151,134,191,138,213,93,89, |
|
|
|
|
223,166,189,99,123,72,245,169,126,54,246,182,225,78,207,71,182,149,196,250,76,13,229,90,77,195,52,244,68,68,68,68,119,239,145,248,4,245,255,97,70,35,90,133,155,213,199,109,34,34,161,211,233,212,255,63, |
|
|
|
|
18,159,160,62,110,21,110,70,152,209,168,46,43,8,2,30,142,142,241,91,111,155,136,200,122,119,188,130,32,224,145,248,4,191,125,173,43,99,223,156,84,47,203,132,168,38,48,0,35,34,34,34,170,134,201,127,78, |
|
|
|
|
85,3,169,209,175,141,197,236,247,51,212,215,230,47,206,4,0,252,169,115,87,36,63,253,12,226,226,19,176,250,147,79,209,42,220,140,86,225,102,76,254,115,170,186,108,175,62,253,240,216,19,61,220,239,91,148, |
|
|
|
|
137,199,186,63,129,228,167,159,193,146,229,89,245,234,120,13,162,136,249,139,50,49,250,245,177,88,253,201,70,204,95,148,233,23,72,214,166,136,136,72,232,244,122,86,58,106,148,212,33,136,229,229,229,44, |
|
|
|
|
13,162,251,168,28,60,7,235,172,172,125,218,187,202,218,62,182,135,84,95,234,103,83,104,27,238,244,124,188,159,229,113,238,236,41,252,169,115,87,236,248,242,11,180,137,140,132,213,122,5,255,30,30,14,131, |
|
|
|
|
40,162,196,98,129,83,118,226,228,137,163,56,121,226,40,0,192,233,116,226,79,93,186,96,203,103,159,98,220,155,147,240,27,131,1,14,135,132,158,125,250,32,227,253,185,120,200,24,6,151,226,194,130,191,204, |
|
|
|
|
245,4,99,75,241,191,163,99,112,169,32,175,222,124,47,57,36,9,227,223,24,13,0,24,248,220,16,12,120,238,121,44,93,188,208,111,57,157,78,7,131,24,170,6,109,14,73,66,137,213,130,71,226,19,160,184,148,128, |
|
|
|
|
227,241,246,36,150,88,44,112,56,36,245,249,86,225,102,24,68,17,165,118,155,186,125,239,231,221,198,19,144,93,200,201,174,58,96,52,136,104,101,54,67,118,58,113,185,184,200,111,123,21,159,107,19,17,9,135, |
|
|
|
|
36,161,149,217,140,82,187,13,165,118,251,109,215,211,216,234,51,213,254,181,90,85,215,19,55,147,112,112,8,42,17,53,21,76,82,69,13,185,126,242,124,188,111,78,158,56,142,167,250,63,139,18,235,21,228,230, |
|
|
|
|
100,227,114,113,17,30,247,244,100,157,59,119,6,0,240,248,19,61,240,167,78,93,161,211,235,17,30,110,198,190,189,187,160,40,10,142,28,58,128,78,93,186,34,55,39,27,130,160,197,229,226,34,60,245,244,179,136, |
|
|
|
|
136,136,66,230,242,21,234,54,244,122,93,189,253,168,28,142,50,252,177,125,82,192,243,109,34,163,48,229,207,169,176,90,45,40,177,88,208,171,111,63,228,102,103,67,81,92,16,4,45,68,113,172,26,196,165,206, |
|
|
|
|
72,135,65,12,69,137,245,10,218,253,57,21,239,188,53,29,151,139,139,208,38,34,18,25,139,151,226,200,161,3,136,136,136,130,65,20,213,245,15,124,110,8,58,117,238,130,130,252,60,140,127,115,50,166,79,157, |
|
|
|
|
236,23,48,1,64,167,206,93,145,252,244,179,184,84,144,135,176,48,35,182,124,190,9,151,139,139,144,58,35,29,0,32,203,78,68,199,196,98,204,200,225,0,128,140,197,75,81,144,159,135,203,197,69,104,215,126,44, |
|
|
|
|
206,157,61,131,181,171,86,162,83,231,174,232,217,167,47,46,23,23,33,44,204,136,21,31,44,243,11,18,239,119,125,214,106,181,104,222,188,57,130,130,56,136,173,46,5,5,5,65,16,132,26,107,223,152,5,145,136, |
|
|
|
|
160,211,233,208,169,75,55,60,28,29,131,45,159,111,130,162,184,240,84,255,103,33,104,133,128,95,58,137,136,154,170,75,249,121,152,242,231,84,56,28,73,56,114,248,32,74,44,22,204,249,75,6,20,151,130,140, |
|
|
|
|
191,204,133,78,167,195,184,55,39,99,208,211,253,160,40,138,223,176,195,29,219,183,98,250,140,119,96,16,69,236,248,114,43,0,160,32,63,15,165,118,155,26,156,212,203,239,7,189,30,195,71,142,2,0,244,234,221, |
|
|
|
|
15,75,23,47,168,116,185,48,163,9,35,94,28,2,69,81,160,211,235,33,8,2,230,190,55,19,0,176,125,207,1,232,116,58,8,130,22,209,49,177,24,246,252,0,0,192,133,206,57,120,234,233,103,177,224,47,115,209,171,79, |
|
|
|
|
95,172,248,96,25,246,237,217,5,0,216,123,232,24,0,247,125,104,195,71,142,66,255,62,61,160,40,10,74,75,237,232,213,167,31,214,174,90,233,183,253,63,182,79,66,137,245,10,182,124,246,41,100,89,6,224,238, |
|
|
|
|
201,10,55,155,213,160,43,125,214,28,60,18,159,128,11,57,217,16,197,80,172,93,181,18,151,139,139,112,228,208,65,188,243,238,28,172,93,181,18,127,234,220,5,37,22,75,192,250,235,139,216,216,88,24,12,6,6, |
|
|
|
|
96,247,33,0,11,9,9,193,183,246,146,26,89,31,3,48,162,70,172,83,231,174,56,121,226,216,109,151,123,252,137,39,241,112,116,12,246,237,221,141,82,187,13,233,239,206,193,133,156,28,20,228,231,177,16,137,136, |
|
|
|
|
60,20,69,129,213,106,65,92,124,162,223,143,83,58,189,30,37,86,139,250,11,121,175,62,253,32,8,90,68,68,70,226,220,89,119,207,88,169,221,14,151,162,160,87,239,126,24,241,226,96,0,192,229,226,34,8,90,1,169, |
|
|
|
|
51,210,241,215,195,7,209,38,50,10,251,118,239,186,179,30,151,58,146,155,147,125,203,160,228,114,113,33,20,69,1,0,56,28,18,28,210,205,99,80,92,238,160,44,58,38,214,239,123,165,184,184,16,163,95,31,11,0, |
|
|
|
|
136,139,79,196,190,61,187,111,174,175,168,80,13,236,0,32,99,209,82,191,247,85,180,226,131,165,24,250,194,203,88,243,201,38,236,219,187,11,107,87,173,68,187,164,14,8,51,154,252,122,24,141,70,19,46,32,27, |
|
|
|
|
78,159,225,133,138,226,130,78,231,190,223,108,233,226,5,24,62,114,20,54,124,246,5,142,28,62,88,239,2,177,144,160,235,112,254,240,29,79,198,6,142,1,24,81,3,34,8,2,30,142,137,245,124,153,219,224,144,36, |
|
|
|
|
180,137,136,82,199,215,235,116,58,132,25,77,234,208,150,63,117,238,10,167,236,196,229,162,66,200,178,172,142,107,7,160,142,163,215,233,116,232,213,167,47,78,158,56,14,217,233,132,65,20,209,174,125,7,236, |
|
|
|
|
252,114,43,28,142,178,26,219,119,239,61,2,178,211,137,86,102,51,46,229,231,65,81,20,117,204,191,247,177,151,119,188,191,239,61,2,222,253,175,236,158,2,34,162,186,176,116,241,2,245,98,29,0,230,188,59,83, |
|
|
|
|
13,188,20,69,193,152,145,47,163,83,231,110,112,56,202,48,229,205,113,126,137,36,22,252,101,14,116,58,189,218,67,3,0,227,95,31,237,254,17,44,38,22,151,139,138,32,203,206,122,117,188,178,211,89,173,32,68, |
|
|
|
|
113,41,1,193,106,69,86,139,5,67,95,120,89,125,28,30,110,86,3,178,226,162,66,24,61,223,95,190,129,87,137,213,2,217,233,196,148,137,227,42,93,167,186,159,178,140,21,31,46,195,218,213,43,49,251,253,5,120, |
|
|
|
|
234,233,103,113,238,236,105,200,78,103,165,61,140,178,211,89,229,122,150,46,94,136,181,186,149,72,127,119,46,30,127,162,7,142,28,58,200,138,79,12,192,136,154,170,204,15,86,64,146,36,92,46,46,66,169,221, |
|
|
|
|
132,220,156,243,120,231,221,57,24,244,76,63,119,208,18,25,133,17,175,140,194,244,169,147,241,199,246,73,16,69,17,113,241,9,40,181,219,32,8,90,100,126,176,2,185,57,217,208,233,244,24,241,202,40,140,127, |
|
|
|
|
99,52,58,117,233,6,131,33,20,173,90,133,195,33,73,8,51,26,161,213,106,241,112,76,44,92,138,18,48,206,254,110,181,137,140,194,152,215,199,66,16,180,56,121,226,24,46,228,100,163,83,231,174,24,250,226,75, |
|
|
|
|
56,119,246,12,198,191,57,25,25,239,207,197,165,130,60,204,126,63,3,37,22,11,148,171,10,122,245,238,139,185,239,205,132,193,32,34,107,213,58,156,59,123,26,58,157,222,239,158,2,34,162,186,226,110,19,111, |
|
|
|
|
182,139,37,86,75,192,235,91,62,255,212,239,130,190,170,247,122,3,21,239,176,187,198,174,196,106,129,36,73,72,157,145,142,203,197,197,232,213,167,47,50,61,67,26,247,237,221,173,14,209,172,152,126,254,200, |
|
|
|
|
161,3,200,88,180,20,251,246,238,86,131,167,138,163,59,220,189,142,2,28,146,4,163,209,232,25,222,105,135,213,106,65,234,140,116,252,159,19,199,17,102,116,127,111,222,42,177,198,208,23,95,134,236,116,66, |
|
|
|
|
150,157,16,69,17,185,217,217,172,244,84,123,1,24,239,57,39,186,191,110,119,14,62,28,29,11,135,36,97,198,212,41,234,115,222,116,192,154,10,235,248,73,150,113,234,196,113,252,103,92,60,214,121,126,185,28, |
|
|
|
|
248,220,16,252,213,103,56,197,146,229,43,16,29,29,139,253,123,118,161,87,239,190,216,191,119,183,218,43,54,98,228,104,245,125,154,26,60,190,86,225,173,241,220,211,125,33,203,50,52,0,158,122,250,89,164, |
|
|
|
|
253,121,10,28,14,9,151,242,243,240,212,211,207,224,191,139,11,17,29,19,139,117,158,177,249,222,247,246,238,219,15,251,61,195,74,188,251,31,17,17,121,199,25,170,170,115,76,108,15,169,62,181,5,154,38,118, |
|
|
|
|
188,77,189,60,234,147,239,37,9,51,223,154,126,219,50,255,239,162,66,44,93,188,64,93,110,255,158,93,80,92,138,250,120,230,91,211,241,189,36,225,170,162,96,198,212,201,248,99,251,14,136,136,140,196,204, |
|
|
|
|
183,166,163,196,106,129,6,192,223,114,178,241,218,200,151,241,248,19,79,98,231,151,91,241,233,250,117,144,157,78,104,0,172,252,112,25,254,216,62,9,209,49,177,40,181,219,113,185,184,48,96,159,46,229,231, |
|
|
|
|
161,77,100,36,68,81,68,218,212,41,234,122,103,189,53,29,127,234,210,21,17,145,145,176,90,45,248,135,221,6,141,103,159,52,149,28,231,127,157,57,141,136,200,40,232,117,122,247,126,59,164,59,170,115,172, |
|
|
|
|
207,84,157,207,151,105,232,137,234,137,219,157,129,143,36,36,160,184,184,200,111,185,242,91,252,91,241,185,71,219,39,97,227,250,117,234,227,220,220,108,60,146,144,128,2,207,80,190,242,10,251,80,94,11, |
|
|
|
|
199,119,238,204,105,56,61,191,6,123,39,248,76,127,119,142,186,140,36,73,112,41,10,166,255,121,10,94,30,57,10,70,163,9,153,139,23,224,66,78,54,254,51,46,33,96,255,255,152,212,1,197,119,17,128,49,13,61, |
|
|
|
|
213,235,182,32,32,77,117,211,57,222,234,165,237,166,186,226,82,20,245,59,226,86,156,178,12,167,79,91,108,175,48,114,194,119,29,46,69,193,201,19,199,42,189,63,89,114,72,216,236,211,123,232,235,220,217, |
|
|
|
|
51,234,253,116,149,177,90,45,176,86,232,141,244,110,175,178,33,132,21,247,201,251,184,184,184,232,174,190,87,26,67,125,246,222,230,112,187,97,254,190,183,67,120,121,111,117,240,187,110,137,79,168,244, |
|
|
|
|
121,175,244,89,115,176,116,241,130,26,187,231,177,93,251,36,180,137,140,194,198,79,214,213,219,246,60,32,0,35,162,250,173,32,63,15,3,159,27,236,247,156,236,116,250,221,95,96,244,140,153,7,160,166,255, |
|
|
|
|
245,42,177,94,65,68,68,148,218,203,213,170,149,25,59,182,111,173,211,99,80,20,151,207,255,21,148,88,45,152,243,222,59,1,195,28,47,21,228,33,109,234,20,180,10,55,35,107,213,58,12,122,186,47,28,82,153,223, |
|
|
|
|
254,183,137,136,196,198,79,62,174,23,159,205,169,83,23,184,13,110,131,136,168,65,51,136,34,50,22,45,197,165,252,60,232,244,122,72,146,132,5,127,153,19,240,29,237,187,156,87,230,226,5,184,92,92,4,157,78, |
|
|
|
|
135,212,183,222,129,40,138,80,92,10,12,162,136,130,252,60,53,35,166,175,232,152,88,8,90,161,6,247,223,125,59,69,67,192,0,140,168,129,184,148,159,7,241,245,177,24,247,230,36,148,88,173,176,90,45,184,144, |
|
|
|
|
147,141,203,69,133,24,253,218,88,56,28,14,116,234,220,69,93,62,55,59,27,227,222,156,140,78,157,187,162,32,63,15,251,246,236,198,59,239,206,129,160,21,96,48,24,16,110,54,223,114,66,203,186,176,227,203, |
|
|
|
|
173,152,243,254,2,236,248,114,43,100,217,9,217,233,68,113,81,17,134,190,248,18,46,228,228,32,204,104,66,169,221,6,89,150,177,229,243,77,234,254,135,133,25,97,52,154,152,136,131,136,136,168,6,85,156,120, |
|
|
|
|
123,224,115,131,43,157,142,198,119,57,95,153,31,172,196,142,47,183,170,83,45,220,137,135,163,221,189,106,222,239,246,54,17,145,234,53,0,224,78,196,229,205,56,170,211,233,208,38,50,42,96,18,237,134,130, |
|
|
|
|
1,24,81,3,225,206,174,53,28,237,218,39,169,129,9,0,76,153,56,14,157,186,116,133,32,104,49,125,234,100,53,115,148,195,33,97,202,155,238,215,138,139,11,113,185,184,8,83,38,142,67,187,246,29,2,178,90,101, |
|
|
|
|
46,94,160,174,15,0,198,189,62,170,198,247,255,114,81,33,54,74,82,64,0,86,92,84,132,118,73,238,137,61,11,242,243,32,203,78,156,60,113,28,209,49,177,40,177,88,48,222,179,47,151,139,139,48,125,234,20,196, |
|
|
|
|
197,39,224,178,211,137,21,31,44,101,165,32,34,34,170,173,96,172,138,137,183,171,210,38,34,18,178,211,121,87,193,215,184,55,39,169,215,54,83,166,166,98,204,200,151,241,120,247,30,144,127,146,213,33,133, |
|
|
|
|
227,222,156,140,191,30,62,8,217,233,68,230,7,43,112,238,236,105,132,25,77,40,177,88,176,226,195,101,12,192,136,232,206,133,253,86,68,233,119,183,31,7,93,113,12,188,82,97,124,187,111,82,138,203,197,69, |
|
|
|
|
126,143,75,237,246,74,27,198,138,137,44,106,163,103,76,150,229,74,199,129,95,42,200,11,232,201,186,144,147,93,233,62,148,88,45,1,25,199,238,166,156,137,136,136,40,80,117,39,222,54,136,162,223,252,106, |
|
|
|
|
227,223,24,141,232,152,88,191,251,240,122,245,233,135,48,163,17,178,83,246,203,12,26,240,189,108,52,162,83,231,110,106,70,231,209,175,141,197,227,79,60,137,29,219,183,34,99,209,82,108,252,100,29,116,58, |
|
|
|
|
29,162,99,98,49,247,189,119,220,175,125,185,13,91,62,255,20,130,32,96,195,103,91,177,118,245,202,6,85,206,12,192,136,136,136,136,136,72,117,187,137,183,43,27,130,232,144,36,196,61,151,160,62,46,46,42, |
|
|
|
|
132,221,110,195,244,25,239,220,50,0,11,15,55,67,208,10,126,1,157,252,147,140,82,187,29,14,73,194,195,209,177,136,136,140,196,201,19,71,161,40,10,254,216,46,9,225,102,179,122,219,69,169,221,230,55,55,31, |
|
|
|
|
3,48,34,186,35,213,237,5,163,187,47,95,34,34,34,170,92,117,39,222,174,76,65,126,30,194,140,38,180,10,55,163,196,106,169,246,52,49,146,36,65,113,41,149,222,83,182,99,251,86,60,254,196,19,136,136,136,66, |
|
|
|
|
198,95,230,2,0,46,21,228,163,164,196,114,215,251,89,175,2,48,166,93,38,170,31,30,10,53,0,0,254,193,64,172,230,202,212,19,120,85,55,229,60,219,67,186,159,2,234,95,35,175,143,119,60,45,4,207,79,98,125,174, |
|
|
|
|
173,157,175,222,62,149,151,187,135,42,190,114,243,126,241,125,123,118,162,212,110,199,220,119,223,113,79,154,189,103,23,46,229,231,221,76,87,95,213,58,203,203,113,185,168,16,197,69,133,152,61,47,3,127, |
|
|
|
|
61,124,16,58,157,30,86,235,21,92,200,201,198,201,99,71,49,250,181,113,112,72,101,40,177,92,1,0,28,57,184,31,89,171,63,134,16,34,224,66,78,54,218,68,70,186,239,19,171,238,254,223,207,246,188,98,0,70,68, |
|
|
|
|
245,51,104,32,34,186,157,54,17,145,232,213,167,234,251,53,238,70,171,112,51,74,237,54,40,138,226,247,188,193,32,98,220,196,201,152,249,214,116,22,60,81,35,226,144,36,188,243,86,106,181,150,155,254,231, |
|
|
|
|
73,126,207,201,78,167,59,56,58,116,0,5,249,23,17,23,159,136,135,99,98,33,203,206,42,215,249,206,91,169,112,120,146,115,165,77,157,140,199,159,120,82,237,61,43,177,88,0,184,239,115,159,254,231,73,144,101, |
|
|
|
|
231,205,237,59,36,140,121,229,37,60,222,227,73,60,28,19,139,115,103,79,3,112,207,53,90,144,223,48,178,35,51,0,35,34,34,106,224,116,122,61,34,34,163,106,116,157,189,250,244,195,190,61,187,80,98,181,160, |
|
|
|
|
93,251,14,40,200,191,8,89,150,33,104,5,68,199,180,101,161,19,53,50,138,162,248,205,237,117,171,229,110,149,172,171,212,110,199,190,61,187,110,187,158,138,219,58,114,232,64,165,203,85,54,148,209,225,144, |
|
|
|
|
176,229,179,79,3,158,171,169,73,157,235,48,0,211,176,230,17,17,221,69,123,216,177,227,35,247,180,181,234,76,234,203,109,52,165,109,104,110,249,216,59,255,141,236,116,250,92,152,104,252,254,53,24,68,180, |
|
|
|
|
50,155,225,144,36,245,151,105,239,133,73,171,112,51,12,162,232,247,126,157,78,7,131,24,10,135,84,134,54,145,81,184,148,159,135,35,135,14,194,33,73,48,24,66,49,110,226,100,172,93,181,18,86,139,69,253,37, |
|
|
|
|
218,96,8,69,43,179,217,111,30,30,131,65,132,160,21,160,211,233,221,243,245,120,150,127,56,38,182,194,254,222,201,249,166,185,167,243,147,168,126,125,127,176,62,179,62,176,7,140,136,136,168,65,153,60,117, |
|
|
|
|
58,74,172,22,132,25,141,0,128,185,239,206,244,123,221,96,16,145,181,122,157,58,71,142,94,167,195,142,47,183,97,223,158,93,104,215,62,9,147,167,78,199,145,67,7,16,23,159,128,115,103,207,96,237,170,149, |
|
|
|
|
104,19,25,133,17,158,212,211,185,158,9,222,199,79,156,140,53,171,86,194,104,52,193,32,134,226,225,232,24,8,130,22,185,57,231,161,211,235,49,121,106,42,46,23,23,161,93,251,177,56,114,248,16,182,124,246, |
|
|
|
|
41,218,37,117,192,192,231,7,171,129,90,92,124,2,138,139,138,32,203,78,132,25,77,112,72,101,1,251,75,68,212,212,48,0,163,58,197,196,18,116,63,240,126,58,106,76,124,239,189,218,252,101,224,48,159,118,73, |
|
|
|
|
29,112,242,248,81,44,93,188,16,0,144,181,106,173,250,218,128,231,135,96,206,187,239,224,66,78,182,123,254,156,207,183,170,147,156,62,28,19,139,254,189,123,4,204,215,183,111,207,46,12,31,57,10,91,62,223, |
|
|
|
|
132,82,187,29,97,70,35,244,122,61,214,174,90,137,203,197,69,56,114,232,32,166,191,149,174,14,7,210,233,244,234,62,102,173,90,139,18,171,59,91,153,78,167,195,230,237,187,25,128,17,17,3,48,22,1,49,240,162, |
|
|
|
|
166,82,255,24,136,81,67,103,48,136,24,253,198,88,0,128,209,104,130,209,100,10,88,230,225,152,24,252,151,207,132,237,185,62,247,106,196,197,39,32,229,205,113,0,220,247,113,148,218,109,104,227,185,119,236, |
|
|
|
|
114,81,97,165,147,165,87,198,233,51,156,80,81,92,48,136,161,234,107,190,55,193,251,222,83,34,203,50,244,122,61,63,68,34,98,0,230,253,15,211,46,19,131,47,106,236,74,191,45,11,8,194,152,134,158,234,155, |
|
|
|
|
138,245,207,247,241,128,231,6,163,196,106,193,134,143,215,193,32,138,216,185,239,144,251,245,242,114,148,123,150,45,46,42,66,155,136,72,156,56,118,20,128,251,158,47,171,213,130,242,242,114,56,36,9,191, |
|
|
|
|
143,136,192,229,34,119,240,20,102,52,161,184,240,107,68,199,196,194,165,40,254,41,180,221,27,87,159,43,247,252,191,188,188,28,178,211,233,247,188,250,58,202,161,184,92,55,159,3,224,242,121,124,187,227, |
|
|
|
|
171,206,249,200,243,147,26,202,249,203,250,76,76,67,79,68,68,212,192,125,239,144,240,216,19,61,96,181,88,208,169,115,87,72,101,101,1,203,156,59,115,10,75,63,252,8,118,187,13,173,90,153,17,29,19,139,147, |
|
|
|
|
39,142,1,0,214,172,90,129,180,183,102,98,223,158,93,120,36,62,1,231,206,156,10,72,51,95,153,220,236,243,24,248,252,16,236,219,179,75,77,234,65,68,68,119,71,13,192,52,76,194,66,181,224,31,223,73,172,91, |
|
|
|
|
84,175,124,91,38,221,118,40,34,235,44,221,79,21,235,159,239,227,45,159,127,138,210,82,27,194,205,102,172,93,189,2,91,62,255,20,26,13,112,185,184,16,75,23,101,64,163,1,254,81,106,199,248,215,95,69,175, |
|
|
|
|
62,201,248,91,110,54,52,26,224,170,162,64,163,1,246,123,210,202,199,197,39,224,175,135,15,226,200,161,3,1,239,247,90,186,40,3,165,118,27,52,26,96,233,226,12,116,234,210,13,102,115,107,156,60,126,20,239, |
|
|
|
|
188,149,170,46,251,189,67,82,31,255,215,153,211,184,148,159,167,190,230,187,14,0,24,247,218,171,183,60,190,59,45,15,162,250,126,254,178,62,179,62,220,50,0,35,34,34,162,250,239,228,241,99,62,143,220,233, |
|
|
|
|
223,101,89,246,75,41,47,8,90,172,93,181,2,97,70,35,38,79,157,238,55,95,206,165,252,188,128,249,119,124,223,239,229,251,88,150,101,191,121,125,46,85,113,159,87,197,121,120,42,174,243,86,115,7,17,17,53, |
|
|
|
|
21,12,192,136,136,136,26,17,157,94,143,113,19,39,67,43,104,225,116,58,177,118,213,138,6,51,57,41,17,17,3,48,34,34,34,106,80,74,237,118,53,211,33,17,17,213,227,0,140,89,88,168,54,176,94,81,125,175,151, |
|
|
|
|
204,130,72,245,189,221,108,236,245,145,89,227,136,245,153,154,218,117,112,16,139,134,136,136,136,136,136,168,110,112,8,34,17,209,61,58,117,234,2,183,193,109,16,17,17,85,11,123,192,136,136,136,136,136, |
|
|
|
|
136,24,128,17,17,17,17,17,17,49,0,35,34,34,34,34,34,34,6,96,68,68,68,68,68,68,245,23,211,208,83,173,98,189,162,250,94,47,153,134,158,234,123,187,201,52,244,76,219,77,172,207,212,184,174,131,217,3,70,68, |
|
|
|
|
68,68,68,68,84,71,24,128,17,17,17,17,17,17,49,0,35,34,34,34,34,34,106,92,56,17,51,17,209,61,234,216,241,145,123,122,127,117,38,245,229,54,154,222,54,136,136,168,113,98,15,24,17,17,17,17,17,17,3,48,34, |
|
|
|
|
34,34,34,34,162,198,133,105,232,137,168,201,97,26,122,106,40,245,147,231,35,207,71,98,125,166,198,215,158,179,7,140,136,136,136,232,46,180,75,234,128,97,47,13,103,65,16,209,29,97,0,70,68,68,68,116,23, |
|
|
|
|
68,49,20,173,194,205,53,18,200,245,238,155,124,203,101,122,247,77,70,187,164,14,247,229,56,5,65,64,92,124,34,162,99,98,3,94,107,21,110,174,244,121,131,40,34,46,62,17,130,32,0,0,34,34,163,16,23,159,88, |
|
|
|
|
35,229,117,171,253,140,136,140,242,123,78,167,211,35,46,62,17,58,157,62,96,249,184,248,68,132,25,77,126,251,27,23,159,200,138,77,181,78,29,130,168,209,104,88,26,68,212,36,220,174,189,99,123,72,245,185, |
|
|
|
|
126,242,124,188,53,131,40,34,60,188,53,100,217,137,226,162,66,8,130,128,112,115,107,72,82,153,223,243,190,23,232,17,145,81,176,219,109,40,181,219,252,46,230,163,99,218,66,146,202,80,98,181,4,44,175,40, |
|
|
|
|
174,26,13,228,188,129,64,85,110,247,122,109,50,136,161,88,144,185,28,5,249,23,161,211,233,225,144,36,204,159,55,27,165,118,27,134,189,52,28,221,123,244,196,144,129,79,251,149,223,176,23,135,163,255,179, |
|
|
|
|
3,213,231,199,79,154,2,65,208,66,81,92,136,79,120,20,103,79,159,194,146,133,243,253,202,246,94,117,239,209,19,83,166,165,161,231,99,157,160,40,138,26,248,45,200,92,142,13,31,175,197,154,143,178,212,101, |
|
|
|
|
43,62,223,62,169,35,70,188,58,26,118,187,13,225,225,243,0,0,75,22,205,199,145,131,7,248,253,66,53,222,190,49,13,61,17,17,17,53,10,113,241,137,24,49,106,52,114,179,179,17,102,52,98,203,103,159,194,233, |
|
|
|
|
116,98,193,146,229,40,46,42,68,65,126,30,122,247,237,135,53,31,173,192,222,221,59,97,16,69,44,203,90,133,179,167,79,193,104,50,193,106,177,32,107,121,38,4,65,192,138,53,159,160,32,63,15,130,32,64,43,104, |
|
|
|
|
145,62,99,26,0,96,65,230,114,56,164,50,56,157,78,24,77,38,216,109,182,187,218,215,91,5,114,222,32,178,184,168,16,178,236,172,244,253,17,145,81,208,233,244,234,50,222,0,205,27,4,121,123,131,10,242,243, |
|
|
|
|
106,164,108,29,82,25,198,141,121,21,0,48,104,240,80,12,122,126,8,50,23,101,0,0,206,157,57,133,222,125,147,213,0,71,16,4,196,37,36,250,5,186,0,144,158,54,13,165,118,27,116,58,61,122,247,75,198,188,140, |
|
|
|
|
69,120,121,232,115,106,176,116,175,6,62,63,4,123,119,239,68,239,190,201,216,190,237,11,245,249,220,236,243,232,222,227,73,191,0,172,87,159,126,56,119,230,148,223,251,247,238,222,165,46,19,23,159,136,180, |
|
|
|
|
244,153,112,148,73,200,205,57,207,147,139,106,20,135,32,18,17,17,81,227,8,192,18,18,97,183,217,176,230,163,44,204,153,149,174,6,0,98,104,40,210,211,166,97,205,71,89,72,77,153,132,94,125,251,1,0,218,39, |
|
|
|
|
117,196,246,109,95,32,115,81,6,82,83,38,161,123,143,39,213,158,175,220,236,243,200,152,55,27,115,102,165,35,34,42,10,6,81,84,3,166,212,148,73,152,51,43,253,174,131,47,65,16,176,110,227,103,232,213,183, |
|
|
|
|
31,6,61,63,20,3,159,31,226,23,88,45,88,178,28,113,9,137,152,57,123,94,165,67,19,219,37,117,192,83,207,12,64,92,66,34,214,109,252,12,17,145,81,48,26,77,152,59,127,161,186,76,167,174,221,48,232,249,161, |
|
|
|
|
181,82,206,146,84,134,112,115,107,245,241,225,67,7,208,219,83,166,238,253,235,136,115,103,78,87,249,126,89,118,98,243,166,141,112,58,157,136,75,168,153,33,127,17,145,81,112,72,18,54,111,218,136,167,158, |
|
|
|
|
25,16,176,191,86,203,21,117,8,167,55,64,188,213,62,230,230,156,199,134,143,215,162,127,133,117,17,213,132,42,123,192,190,220,247,87,150,14,85,219,211,189,30,99,33,16,17,209,125,181,225,227,53,24,246,210, |
|
|
|
|
8,124,186,229,75,156,61,125,10,89,203,51,221,23,224,101,101,106,79,82,113,81,33,162,99,218,186,3,133,246,29,208,202,108,70,167,46,93,1,192,61,252,204,220,26,237,146,58,160,125,135,142,136,136,138,82,47, |
|
|
|
|
224,69,49,20,113,9,137,200,205,206,86,183,119,33,39,27,143,196,39,220,241,126,70,199,180,69,113,81,33,230,204,74,7,0,76,127,123,166,250,218,227,79,60,137,53,31,173,192,201,227,71,97,16,69,44,88,178,28, |
|
|
|
|
123,119,239,244,123,255,185,51,167,213,224,65,150,157,104,151,212,1,27,62,94,171,6,34,197,69,133,232,221,39,89,125,174,38,232,244,122,140,120,117,12,0,160,119,223,126,88,178,48,67,125,205,81,38,161,32, |
|
|
|
|
47,15,237,146,58,224,220,153,211,232,255,204,0,204,159,55,27,221,123,60,121,203,117,90,45,87,32,138,161,53,178,127,79,61,51,0,123,247,236,68,137,213,2,69,81,212,114,240,218,190,237,11,244,238,147,140, |
|
|
|
|
115,103,78,163,83,215,110,56,121,252,24,12,183,217,182,213,98,193,227,183,57,6,162,123,10,192,42,75,147,216,66,171,69,80,16,59,201,168,106,65,65,65,104,217,178,37,211,170,82,131,194,52,193,212,80,234, |
|
|
|
|
39,207,199,59,43,15,69,81,176,230,163,44,108,248,120,13,166,76,75,195,160,193,67,113,248,224,1,136,161,161,208,233,244,144,101,167,223,133,121,65,65,30,172,86,139,223,208,52,192,125,191,149,65,20,213, |
|
|
|
|
0,73,13,66,116,122,12,26,124,179,183,234,110,19,74,68,199,198,162,184,168,72,125,124,41,63,79,13,6,186,247,120,18,113,9,137,234,118,42,27,130,216,46,169,3,30,127,226,73,136,98,40,140,38,19,14,123,238, |
|
|
|
|
83,218,177,237,11,244,234,211,207,211,67,101,174,149,161,115,185,217,231,3,202,11,0,246,238,217,137,254,207,12,112,223,119,167,21,252,238,7,171,74,184,185,53,142,28,58,112,207,251,164,211,233,209,187, |
|
|
|
|
111,50,34,34,163,208,255,153,1,16,69,17,79,61,51,0,25,243,102,251,5,173,41,211,210,96,16,69,244,238,147,140,249,243,102,223,54,241,73,184,217,12,71,153,196,239,23,170,241,246,188,202,30,176,102,26,13, |
|
|
|
|
180,90,45,130,131,121,155,24,85,77,227,169,39,68,68,68,247,91,239,190,201,208,233,245,176,219,220,61,89,91,62,251,20,0,224,114,185,48,115,246,60,156,59,123,26,189,250,244,83,47,250,15,31,220,143,149,107, |
|
|
|
|
62,129,78,167,195,201,227,199,16,29,27,139,13,31,175,197,185,51,167,240,218,216,241,152,50,45,13,71,14,30,64,187,164,14,200,90,158,137,220,156,243,72,73,77,195,152,55,198,67,81,20,116,238,218,13,249,121, |
|
|
|
|
23,239,120,63,173,22,11,186,63,241,164,95,32,39,203,50,0,32,39,251,60,206,157,61,93,101,242,7,65,16,144,50,45,13,163,70,188,8,135,36,169,189,82,0,176,119,247,78,52,182,36,3,0,0,30,252,73,68,65,84,172, |
|
|
|
|
219,248,57,74,172,22,191,123,160,106,130,236,116,86,26,120,85,12,112,70,188,58,166,90,219,142,142,137,133,209,104,66,65,222,189,223,163,214,187,95,50,182,111,221,162,222,147,38,8,2,118,238,63,140,204, |
|
|
|
|
133,243,253,150,59,124,240,0,134,189,232,158,54,224,118,1,162,32,8,120,234,153,1,216,240,201,218,122,95,239,135,189,52,28,253,159,25,128,1,79,245,169,181,109,132,25,77,120,237,141,241,104,101,54,171,129, |
|
|
|
|
184,183,188,107,67,171,112,51,94,27,59,30,58,189,30,130,160,69,113,81,161,95,64,93,155,250,63,51,0,41,169,51,208,241,209,71,106,109,27,140,174,136,136,238,209,169,83,23,184,13,110,131,234,129,252,188, |
|
|
|
|
139,136,136,138,130,209,100,66,198,188,217,40,46,42,68,152,209,4,135,84,134,37,11,231,163,123,143,158,234,240,62,0,112,72,18,70,141,120,17,221,123,244,244,220,19,228,78,202,160,40,10,70,13,127,81,237, |
|
|
|
|
141,242,237,73,26,50,240,105,117,88,218,168,225,47,194,32,138,119,188,159,222,0,207,27,60,181,239,208,209,175,23,43,45,125,22,140,70,119,82,16,163,201,132,205,155,54,170,239,85,20,197,29,252,117,233,6, |
|
|
|
|
65,171,69,167,46,93,113,242,248,49,245,181,179,167,79,97,196,171,99,240,242,176,231,234,188,252,15,31,60,128,254,207,14,8,8,124,188,6,61,63,4,178,44,195,32,138,136,79,72,68,106,202,196,42,147,140,220, |
|
|
|
|
137,94,125,250,249,245,86,42,138,130,195,7,15,160,119,223,100,88,45,22,191,0,117,211,23,219,241,118,218,212,74,215,19,151,144,128,17,112,127,38,221,123,60,137,195,7,15,220,113,22,196,186,54,119,254,194, |
|
|
|
|
26,75,180,114,187,0,124,251,182,47,212,115,97,237,134,207,16,23,159,88,107,9,74,28,146,132,15,151,101,170,89,50,231,206,95,136,78,93,186,169,231,110,109,6,126,189,250,38,195,110,251,166,86,183,195,0,140, |
|
|
|
|
136,136,136,26,133,18,171,165,202,180,230,37,149,12,53,244,94,232,249,6,56,234,5,167,236,172,178,39,199,247,162,252,110,2,8,69,81,240,242,208,231,208,189,71,79,184,20,23,70,13,127,17,58,189,123,158,170, |
|
|
|
|
130,252,60,76,155,50,17,157,187,118,67,184,217,172,222,235,181,119,247,78,53,99,226,164,241,111,160,115,215,110,144,164,50,140,30,241,162,223,189,76,231,206,158,134,209,100,130,67,146,106,172,92,29,82, |
|
|
|
|
25,210,211,166,85,250,218,134,143,215,170,219,218,240,241,90,28,57,116,64,205,106,152,158,54,13,14,169,12,0,144,185,48,195,111,46,174,204,133,243,107,36,251,161,32,8,106,176,237,107,205,71,89,106,202, |
|
|
|
|
124,233,227,50,181,14,140,26,254,130,186,172,239,189,117,103,207,156,242,75,170,178,119,247,206,106,13,163,188,223,150,44,204,64,169,221,86,235,201,66,100,217,233,23,108,149,88,44,136,136,138,170,181, |
|
|
|
|
0,76,150,157,126,231,86,152,209,84,163,83,63,84,85,151,210,210,103,97,246,204,183,177,44,107,21,3,48,34,34,34,162,187,161,40,174,26,25,230,86,243,251,165,248,5,0,190,23,155,37,86,75,64,2,13,223,96,160, |
|
|
|
|
212,110,243,11,26,253,230,223,122,105,56,214,172,92,81,227,251,90,85,47,139,111,192,91,113,142,53,223,247,84,12,144,106,123,223,28,146,164,6,134,190,101,235,187,172,111,185,249,46,223,144,220,143,32,49, |
|
|
|
|
204,104,66,116,108,44,150,44,154,95,171,219,137,136,140,194,83,207,12,64,124,66,162,103,104,240,233,90,221,222,136,87,199,224,200,161,3,40,177,90,32,134,134,214,234,182,152,97,131,234,133,136,200,40,12, |
|
|
|
|
123,105,120,141,174,115,252,196,41,119,53,52,132,136,136,26,15,135,36,169,115,120,53,102,189,251,38,99,105,214,71,56,119,230,52,231,173,162,90,13,190,22,102,46,199,252,121,179,107,61,96,149,164,50,28, |
|
|
|
|
57,120,0,135,15,30,112,79,187,16,159,88,107,219,138,139,79,68,184,217,92,105,111,56,3,48,106,180,116,58,253,93,103,147,170,50,168,139,138,130,32,212,94,130,16,239,36,151,85,125,17,86,149,93,105,230,123, |
|
|
|
|
243,96,16,69,24,68,17,51,223,155,119,79,65,43,3,76,34,34,2,220,67,230,198,141,121,181,70,83,207,19,85,22,124,45,89,56,191,214,123,163,0,247,143,39,185,57,238,172,155,39,143,31,173,213,97,150,227,39,77, |
|
|
|
|
65,152,209,132,165,89,31,97,105,214,71,0,128,165,89,31,213,218,117,214,45,211,208,19,85,87,85,245,167,186,245,170,28,229,126,203,235,116,122,68,68,69,193,106,185,2,135,36,65,167,211,195,104,50,249,13, |
|
|
|
|
97,136,142,137,133,213,98,129,44,59,17,110,54,195,32,134,34,55,251,188,239,74,81,94,94,94,107,117,251,65,157,14,3,159,31,130,217,51,223,174,164,145,50,86,121,252,209,177,177,8,9,17,212,255,223,233,254, |
|
|
|
|
245,238,155,140,97,47,143,128,163,204,61,166,93,81,92,152,52,254,13,86,194,187,172,175,76,19,76,245,189,61,109,236,245,241,78,207,71,158,159,196,250,124,103,215,98,53,21,124,45,200,92,142,197,11,230,171, |
|
|
|
|
201,106,106,83,184,217,172,38,80,17,4,1,113,241,9,176,90,44,181,118,140,47,15,245,79,90,115,250,252,223,48,118,244,200,90,251,76,120,15,24,213,59,6,81,196,194,204,15,112,246,204,41,12,26,60,20,151,242, |
|
|
|
|
243,240,249,167,27,176,48,243,3,12,30,208,31,178,236,132,65,20,49,47,99,49,158,77,238,165,246,54,229,230,156,199,132,73,41,72,79,155,234,151,245,232,78,233,116,122,232,244,122,104,181,2,12,98,40,236,54, |
|
|
|
|
27,74,237,54,196,37,36,66,113,185,212,241,227,178,211,233,215,85,109,16,69,132,155,91,67,118,6,222,144,29,17,25,5,157,94,15,171,229,74,149,219,21,4,1,209,177,109,225,144,202,170,220,255,206,93,187,97, |
|
|
|
|
208,224,161,24,245,242,11,53,146,57,234,78,143,217,43,46,193,61,12,160,184,176,80,221,143,112,179,25,82,153,132,112,179,25,130,86,235,31,12,251,148,129,119,221,68,68,68,212,48,188,50,106,12,204,230,214, |
|
|
|
|
88,180,244,3,245,185,156,243,95,97,236,152,145,181,178,189,206,93,31,195,176,151,134,195,110,179,33,50,234,15,216,179,107,7,86,175,204,106,52,229,201,0,140,234,157,23,94,26,129,189,187,119,98,243,166, |
|
|
|
|
141,16,4,1,235,62,221,140,207,63,221,128,195,7,247,163,251,147,61,177,125,235,22,116,239,209,19,135,15,238,135,162,40,24,52,120,40,198,142,30,9,89,118,66,146,36,116,239,209,243,158,78,210,136,168,40,164, |
|
|
|
|
164,206,64,113,225,215,112,72,18,58,119,237,134,156,236,243,80,92,46,53,75,85,122,218,52,24,196,80,76,152,148,130,177,99,70,194,32,138,216,244,197,118,156,56,118,212,61,52,49,234,15,56,114,112,63,0,160, |
|
|
|
|
93,82,71,204,72,159,133,61,187,119,224,181,177,19,170,220,238,188,140,69,106,6,38,67,104,40,82,167,76,12,88,198,155,130,181,38,131,175,59,57,102,0,152,57,123,30,244,158,64,42,37,117,6,210,167,79,69,113, |
|
|
|
|
81,33,134,189,52,2,162,40,66,146,36,40,46,23,102,164,207,194,179,201,189,1,0,131,6,15,69,255,103,7,226,196,177,191,226,9,207,231,227,123,243,57,17,17,17,221,61,239,247,109,109,153,61,243,237,74,71,252, |
|
|
|
|
212,150,245,235,214,96,253,186,53,247,173,60,59,36,254,39,3,48,106,90,194,76,38,196,37,36,162,115,151,110,0,0,71,89,25,116,122,61,246,238,222,137,148,212,25,106,0,54,123,230,91,8,51,154,16,110,110,141, |
|
|
|
|
121,25,139,212,247,215,68,166,37,81,20,49,196,19,112,24,68,17,178,211,137,37,11,231,67,16,4,108,221,185,47,96,249,246,73,29,113,226,216,81,181,113,242,77,95,218,255,217,1,120,59,109,42,114,179,207,35, |
|
|
|
|
204,104,194,182,93,129,239,143,142,137,133,211,233,196,124,207,36,131,43,215,174,71,152,209,20,208,83,20,29,219,182,214,110,16,173,206,49,27,68,17,70,211,239,48,106,248,11,0,110,222,235,182,196,51,231, |
|
|
|
|
139,36,73,106,25,44,204,92,142,232,152,88,20,228,231,161,255,179,3,213,94,187,125,187,119,34,45,253,93,6,96,68,68,68,212,36,49,0,163,122,231,82,126,30,46,229,231,5,252,242,225,144,36,8,130,128,206,93, |
|
|
|
|
187,65,113,185,212,97,122,14,169,12,111,167,77,173,209,108,60,57,62,195,231,20,69,81,131,58,247,4,152,174,74,3,40,223,33,119,249,249,23,213,255,199,39,36,98,246,59,238,160,164,212,110,171,116,114,191, |
|
|
|
|
246,29,58,34,38,182,173,26,184,41,46,23,194,205,173,3,2,176,82,219,55,106,143,84,77,171,206,49,199,39,60,138,130,188,139,126,239,25,246,242,8,192,19,128,249,14,85,148,36,9,130,86,139,112,179,25,138,203, |
|
|
|
|
165,246,218,89,45,22,132,155,205,208,233,244,53,222,147,119,191,116,236,248,200,61,189,191,58,147,250,114,27,77,111,27,68,68,196,0,140,168,78,28,58,176,31,11,151,126,128,7,117,58,228,102,103,35,50,42, |
|
|
|
|
74,13,198,182,111,251,2,19,38,165,224,195,101,153,234,242,159,111,218,136,89,179,223,87,123,84,100,217,137,19,199,238,109,166,244,202,238,227,186,21,171,213,130,86,102,179,250,56,220,220,26,151,61,1,76, |
|
|
|
|
113,97,161,154,64,68,16,4,191,9,51,125,3,153,232,152,216,219,38,211,40,42,42,68,231,46,221,2,238,175,170,9,213,57,102,73,42,243,203,252,24,25,21,133,220,243,95,221,12,220,92,129,193,169,221,102,131,209, |
|
|
|
|
100,130,32,8,80,20,5,6,207,48,197,198,18,124,17,17,17,17,213,72,0,166,213,106,209,188,121,115,4,5,49,83,61,85,45,40,40,8,130,32,220,243,122,138,11,11,177,65,114,7,89,165,118,27,38,141,123,29,157,187,118, |
|
|
|
|
67,76,108,44,206,158,190,153,109,103,239,174,29,176,90,174,248,245,194,108,222,180,17,197,69,133,136,79,72,132,36,73,40,242,4,39,75,22,206,135,67,42,171,147,114,56,113,236,40,22,46,253,0,63,201,50,12, |
|
|
|
|
6,17,145,145,81,106,0,230,29,58,121,248,224,126,68,199,196,86,218,131,150,155,125,30,175,141,157,128,148,105,105,56,113,252,24,98,98,99,241,229,214,45,1,189,122,155,55,109,196,178,21,171,177,181,107,55, |
|
|
|
|
28,58,184,31,87,61,61,85,247,26,112,86,87,65,222,69,56,101,39,82,166,165,193,106,181,160,255,179,3,49,251,157,183,110,249,30,69,81,176,121,211,70,204,156,243,62,206,157,57,141,238,79,60,137,237,91,183, |
|
|
|
|
240,228,33,34,34,162,166,29,128,85,76,147,24,27,27,11,131,193,192,0,140,110,27,128,133,132,132,224,218,191,190,175,244,245,234,166,11,117,58,127,132,211,249,163,250,216,110,251,6,159,127,186,33,96,57, |
|
|
|
|
151,203,133,28,159,30,23,175,156,243,95,5,60,95,84,248,245,93,29,83,209,215,95,67,42,251,78,221,247,245,235,86,195,233,116,170,143,223,154,62,21,229,229,229,144,202,190,195,226,5,127,65,121,121,57,236, |
|
|
|
|
182,111,240,234,75,195,240,196,147,61,81,244,245,215,248,100,221,106,8,130,22,229,229,229,216,179,107,7,178,207,127,133,46,221,30,195,234,149,31,98,253,186,53,144,202,190,243,91,23,0,76,28,251,26,58,119, |
|
|
|
|
123,12,209,49,177,40,42,252,26,206,31,127,12,40,63,169,172,12,47,13,30,136,248,132,71,17,29,219,22,138,226,130,229,202,255,220,115,90,214,234,30,179,203,229,194,123,233,111,33,62,49,17,225,230,214,152, |
|
|
|
|
54,121,130,58,20,180,226,123,214,175,91,13,169,76,66,121,121,57,86,173,248,16,113,9,137,136,79,120,20,171,86,126,88,43,61,120,119,130,105,232,169,62,99,26,250,166,93,30,196,250,76,141,183,61,15,8,192, |
|
|
|
|
42,122,232,55,15,0,229,191,0,215,89,120,116,11,215,129,107,87,171,126,249,223,66,13,248,182,204,209,160,14,73,150,157,126,195,227,42,166,132,247,246,190,249,222,39,229,125,223,151,85,244,236,148,218,109, |
|
|
|
|
149,6,148,190,61,121,178,236,196,222,93,59,110,187,127,138,162,224,236,153,83,56,91,131,243,112,84,247,152,189,203,186,123,220,252,123,221,42,190,167,226,227,220,236,243,247,61,240,242,214,73,34,34,34, |
|
|
|
|
162,251,133,221,91,68,68,68,68,68,68,12,192,168,177,96,143,3,177,46,18,17,17,17,185,169,67,16,53,26,22,6,213,158,135,126,235,190,240,109,104,195,17,169,105,6,94,108,15,233,126,170,88,255,26,123,125,188, |
|
|
|
|
221,241,53,181,242,32,214,103,106,252,245,129,105,232,169,94,95,8,19,17,17,17,17,53,38,28,130,72,68,68,68,68,68,196,0,140,136,136,136,136,136,136,1,24,17,17,17,17,17,17,221,5,222,3,70,68,116,143,78,157, |
|
|
|
|
186,192,109,112,27,68,68,68,119,26,128,49,13,11,17,17,219,67,170,127,245,79,211,196,207,55,13,207,79,98,125,166,70,85,31,216,3,70,181,106,199,129,99,44,132,70,228,169,39,187,178,16,136,136,136,136,238, |
|
|
|
|
1,3,48,170,117,45,180,90,4,5,241,118,195,134,44,40,40,8,45,91,182,100,65,16,17,17,17,49,0,163,250,172,153,70,3,173,86,139,224,96,86,181,134,76,227,249,28,137,168,254,8,51,154,208,255,217,1,184,170,40, |
|
|
|
|
88,189,50,235,158,214,213,187,111,50,0,96,239,238,157,152,48,41,5,123,119,239,68,113,81,225,61,173,115,194,164,20,172,255,120,13,28,146,196,15,139,136,136,1,24,17,17,81,195,246,231,212,52,156,56,126,12, |
|
|
|
|
5,121,23,239,121,93,70,147,73,253,127,68,100,20,116,122,253,61,175,51,34,50,10,130,192,31,110,136,136,42,226,184,48,34,34,162,6,38,204,104,66,68,228,31,96,181,92,129,36,149,1,0,12,162,136,184,132,68,24, |
|
|
|
|
68,209,111,89,157,78,143,184,132,68,132,25,77,126,207,123,151,143,136,140,170,116,27,113,9,137,136,75,72,132,32,8,149,62,95,89,192,85,213,250,12,162,88,229,118,136,136,154,26,246,128,17,17,17,53,48,125, |
|
|
|
|
250,37,67,208,10,136,79,72,132,236,116,66,175,215,99,230,236,247,113,246,204,41,188,242,234,24,28,62,116,0,219,183,110,129,65,20,177,108,197,106,156,59,125,10,97,38,19,172,150,43,200,90,150,9,65,16,240, |
|
|
|
|
209,218,245,200,201,62,15,65,16,16,110,110,141,147,199,143,170,235,127,225,165,225,176,219,108,208,233,245,120,109,236,4,140,26,254,2,0,247,176,66,89,118,34,68,16,144,146,58,3,67,6,244,7,0,188,50,106, |
|
|
|
|
12,30,239,209,19,71,14,238,71,136,32,248,13,95,12,51,154,48,47,99,17,102,207,124,155,31,28,17,17,3,48,34,34,162,134,103,245,202,44,244,238,155,172,222,251,149,150,62,11,155,55,109,196,222,221,59,161,211, |
|
|
|
|
233,177,114,221,122,108,223,186,5,237,147,58,98,251,214,45,216,188,105,35,4,65,192,166,47,182,99,205,202,44,180,239,208,17,57,217,231,213,160,104,89,214,42,191,245,231,230,100,99,253,186,53,234,107,17, |
|
|
|
|
145,81,40,46,42,196,146,133,243,213,101,226,19,30,85,159,239,221,55,25,131,7,244,135,162,40,126,235,49,154,76,152,48,41,5,179,103,190,125,207,247,148,17,17,49,0,35,34,34,162,122,33,220,220,26,225,230, |
|
|
|
|
214,106,50,13,71,89,25,12,162,136,118,73,29,16,110,110,141,206,93,186,1,128,218,171,21,23,159,136,220,236,243,62,1,215,121,191,245,73,101,101,234,255,139,139,10,17,151,144,136,226,162,66,140,25,59,30, |
|
|
|
|
162,24,10,163,209,132,112,179,25,58,189,30,209,49,177,176,219,108,1,193,23,224,238,49,83,20,5,86,203,21,126,72,68,68,12,192,136,136,136,26,135,156,236,175,80,98,177,96,239,238,157,126,207,23,228,231,161, |
|
|
|
|
196,106,9,200,146,88,92,84,232,119,79,86,171,112,51,74,172,22,245,177,111,82,142,112,179,25,135,15,238,71,187,164,142,136,140,140,194,164,241,111,0,0,62,253,98,187,59,168,179,219,16,17,85,249,253,93,179, |
|
|
|
|
103,190,141,222,125,147,241,218,216,9,126,189,103,68,68,12,192,136,136,136,168,193,58,114,240,0,230,101,44,130,209,100,66,126,94,30,98,98,99,177,122,101,22,14,31,220,143,143,214,174,71,136,32,224,220, |
|
|
|
|
153,211,136,137,109,139,245,235,214,224,196,177,163,120,101,212,24,56,28,18,12,6,17,49,177,109,253,2,176,78,93,186,193,233,116,194,104,52,193,32,134,162,32,63,15,17,145,81,8,51,253,14,157,187,118,67,92, |
|
|
|
|
252,205,36,28,14,73,194,137,99,71,49,55,99,17,206,157,57,13,65,16,176,121,211,70,0,128,211,233,196,135,203,150,96,217,138,213,232,220,181,27,78,28,59,202,15,139,136,154,60,53,11,162,134,127,252,171,133, |
|
|
|
|
63,106,92,154,74,61,101,61,166,134,112,158,165,79,159,170,254,255,114,81,33,198,142,30,9,69,81,16,25,21,133,115,167,79,65,3,224,123,73,194,168,225,47,224,123,73,66,124,66,34,114,207,127,5,13,128,159,100, |
|
|
|
|
39,134,12,232,15,71,89,25,114,115,206,99,212,240,23,176,119,215,78,104,0,100,46,156,143,113,163,71,226,39,167,19,165,118,27,198,141,30,169,110,227,157,233,83,17,17,25,133,35,7,247,99,242,184,215,113,185, |
|
|
|
|
176,16,26,0,115,102,190,141,172,101,75,32,138,34,46,229,93,84,215,243,189,84,134,171,138,130,212,41,111,162,212,102,171,145,243,177,58,127,90,65,64,76,76,108,192,243,70,163,9,241,9,137,234,95,197,101, |
|
|
|
|
68,81,68,124,66,34,180,130,112,203,245,207,154,61,175,201,126,175,71,70,70,33,50,50,170,202,215,227,19,18,171,124,45,38,38,182,202,178,237,211,55,25,237,147,58,54,185,239,23,254,53,205,235,98,246,128, |
|
|
|
|
17,17,17,53,64,5,249,121,126,143,75,237,54,108,240,36,206,240,229,144,36,181,71,202,151,162,40,1,67,22,1,168,201,50,170,122,173,170,100,26,37,22,11,214,248,12,117,244,93,206,33,73,117,58,33,179,65,12, |
|
|
|
|
197,204,57,239,99,64,114,111,191,231,123,247,75,70,239,190,201,176,219,108,158,253,42,67,122,218,52,132,25,77,152,57,231,125,132,155,205,40,46,44,68,124,226,163,88,191,110,53,178,150,101,86,186,254,232, |
|
|
|
|
216,182,77,174,190,197,37,36,98,230,236,247,33,203,78,79,25,139,152,61,243,109,156,244,244,106,246,238,155,140,94,158,123,16,197,212,80,172,94,153,133,35,7,247,3,0,198,79,74,65,156,39,99,167,78,175,199, |
|
|
|
|
145,67,7,2,234,106,152,201,196,147,154,154,12,6,96,68,68,183,161,213,106,209,188,121,115,4,5,113,234,68,170,61,65,65,65,1,115,110,81,205,219,187,123,167,95,160,8,0,19,38,167,224,220,153,83,24,55,250,21, |
|
|
|
|
40,138,2,131,40,98,230,236,247,209,255,217,129,216,190,117,203,45,215,215,202,108,134,226,82,80,106,183,65,16,4,68,199,182,133,36,149,161,196,98,81,3,23,223,132,39,173,204,102,200,78,103,64,64,170,211, |
|
|
|
|
233,17,17,21,5,197,229,66,65,126,30,162,99,98,97,181,88,252,2,30,157,94,15,197,165,64,81,92,16,197,80,232,244,122,20,228,93,244,75,128,210,202,108,134,40,134,2,128,223,118,239,133,32,8,152,57,251,125, |
|
|
|
|
164,167,77,85,215,25,29,19,139,5,75,63,192,144,188,254,112,72,18,198,140,157,128,151,135,14,10,56,174,241,147,82,96,52,153,48,124,232,115,119,180,189,232,216,182,234,182,188,199,228,61,86,239,156,118, |
|
|
|
|
165,118,155,186,124,68,100,84,192,143,18,192,205,137,197,189,137,96,116,122,189,250,217,120,143,195,123,79,164,213,98,65,68,84,148,223,231,231,187,63,0,96,181,92,169,211,31,19,136,1,24,17,81,147,20,27, |
|
|
|
|
27,11,131,193,192,0,140,106,61,0,11,9,9,193,141,159,127,96,97,212,33,157,78,143,206,93,31,195,146,5,243,213,64,198,33,73,56,121,252,40,122,245,77,190,101,0,214,46,169,35,70,140,26,131,201,227,94,7,0,204, |
|
|
|
|
205,88,164,246,174,137,161,161,72,157,50,17,35,94,29,131,205,250,141,106,79,209,188,140,197,152,54,229,77,191,139,248,136,200,40,76,73,157,129,115,103,78,193,96,16,161,211,183,68,187,164,14,112,56,36, |
|
|
|
|
181,167,104,194,164,20,156,56,126,12,225,102,51,218,37,117,68,169,237,27,72,146,132,153,179,223,199,144,1,253,33,203,78,180,75,234,136,180,244,89,216,187,123,7,116,186,192,224,236,110,181,235,208,17,178, |
|
|
|
|
236,244,11,232,10,242,243,80,144,119,17,221,123,244,196,230,77,27,97,183,219,16,151,240,168,218,235,229,213,185,107,183,59,154,3,78,16,4,204,205,88,132,35,7,15,32,215,167,140,207,157,57,133,49,99,39,32, |
|
|
|
|
107,217,18,0,192,176,151,134,99,178,39,33,76,167,174,143,161,115,151,174,72,79,155,230,183,174,185,25,139,96,181,92,129,162,40,232,213,55,25,89,203,150,96,97,230,7,24,226,153,50,161,149,217,140,180,119, |
|
|
|
|
222,197,144,1,253,177,96,233,7,200,205,62,15,171,229,10,162,99,218,162,32,255,162,58,103,222,138,181,235,81,106,183,161,184,168,16,6,49,52,224,24,137,24,128,17,17,213,48,163,225,65,0,46,224,6,203,130, |
|
|
|
|
106,209,13,224,198,53,22,67,109,235,221,55,89,77,34,114,238,236,105,228,158,255,10,118,219,55,106,111,138,26,96,228,93,196,160,193,67,171,21,124,201,178,19,209,49,177,144,157,78,100,204,155,13,0,88,177, |
|
|
|
|
118,61,194,140,38,108,254,108,35,122,247,77,198,201,99,71,17,29,19,11,169,204,191,119,197,27,128,41,46,23,182,111,221,162,6,102,118,251,55,88,152,249,1,54,172,91,3,157,78,143,232,216,182,152,61,243,109, |
|
|
|
|
132,191,60,2,138,203,165,6,27,130,32,160,93,135,142,56,114,112,63,6,13,30,130,201,227,95,175,241,57,215,194,205,173,145,115,254,171,128,231,115,115,178,209,42,220,12,0,72,157,242,38,82,82,103,224,181, |
|
|
|
|
177,227,241,225,178,76,28,57,184,95,237,181,171,110,79,156,160,213,170,193,151,119,8,236,160,193,67,144,62,125,42,74,237,54,20,228,229,161,87,223,100,204,153,249,54,82,82,103,32,204,104,66,169,221,134, |
|
|
|
|
222,125,251,97,195,199,107,3,214,23,29,211,22,155,55,109,244,15,28,243,46,162,93,135,142,56,121,236,40,122,251,4,216,122,125,75,117,89,239,4,230,89,203,50,209,189,71,79,148,218,109,72,157,50,177,73,156, |
|
|
|
|
31,222,222,62,111,79,236,237,150,243,85,92,88,168,246,216,122,197,37,36,86,250,60,3,48,47,222,105,78,68,183,163,225,113,18,177,62,214,241,241,105,238,162,60,52,85,47,155,147,125,30,251,60,23,247,146,84, |
|
|
|
|
6,89,118,194,104,250,29,116,122,189,223,69,98,120,235,214,112,58,157,149,174,67,167,215,35,37,53,13,39,142,29,133,252,147,123,153,118,29,58,34,58,182,45,150,174,112,79,106,173,40,46,132,183,110,141,147, |
|
|
|
|
199,143,98,194,164,20,24,66,69,244,234,151,140,125,123,118,6,172,115,239,158,157,48,132,134,98,217,138,213,200,201,254,10,89,203,50,81,98,181,160,184,168,16,237,58,116,132,209,104,194,137,99,71,161,92, |
|
|
|
|
117,247,102,21,228,95,84,215,225,112,72,208,106,5,64,3,196,37,60,138,226,226,194,26,175,51,118,187,13,237,146,58,4,172,87,157,190,64,227,222,143,212,148,137,104,21,110,70,74,234,12,232,245,122,108,223, |
|
|
|
|
182,5,130,160,173,246,254,12,26,60,20,58,157,30,243,231,205,6,52,238,139,252,184,132,71,145,246,206,44,117,25,71,89,25,160,1,182,111,219,130,254,207,14,192,230,207,54,34,220,220,218,61,151,93,133,237, |
|
|
|
|
164,166,188,137,65,207,15,197,248,73,41,200,90,158,137,115,103,78,97,195,39,107,49,226,213,49,56,121,252,40,186,247,232,137,81,35,94,80,223,231,45,87,135,67,114,15,7,214,184,239,77,171,108,221,117,90, |
|
|
|
|
159,235,144,33,52,20,11,50,63,64,65,254,69,232,116,122,56,164,50,204,159,55,59,224,7,10,223,229,188,50,23,206,71,113,81,33,116,58,61,210,210,103,193,32,134,170,195,101,243,243,46,98,206,172,183,239,105, |
|
|
|
|
223,30,239,209,179,225,245,62,106,110,23,128,17,17,17,17,53,114,165,118,91,192,196,211,69,133,95,35,46,33,17,39,143,223,76,147,255,72,133,201,170,125,41,46,5,47,15,125,14,75,179,86,161,83,151,110,56,121, |
|
|
|
|
252,40,114,179,207,35,58,38,22,147,39,188,17,176,252,246,109,95,160,123,143,158,104,159,212,17,153,85,204,135,182,225,227,53,216,240,241,26,140,121,99,60,70,188,58,6,153,139,230,99,239,238,157,232,212, |
|
|
|
|
165,43,194,205,173,253,222,87,213,176,194,130,252,139,136,136,140,170,241,30,176,220,236,175,144,246,246,44,232,116,55,131,84,65,16,208,185,107,55,140,27,51,210,111,217,18,171,5,251,118,239,196,35,241, |
|
|
|
|
137,216,190,109,11,206,157,57,133,254,207,12,196,246,109,91,110,187,157,237,219,182,64,118,58,49,115,246,251,24,55,198,125,63,158,123,40,224,146,128,222,152,189,187,118,98,229,218,245,144,101,25,219,183, |
|
|
|
|
125,81,69,121,228,33,125,134,59,201,202,202,53,235,49,100,96,127,117,24,225,227,61,122,162,184,168,208,111,40,104,101,229,42,203,78,180,137,136,106,82,231,136,67,42,83,63,215,65,131,135,98,208,243,67, |
|
|
|
|
145,185,104,254,45,151,243,181,52,107,21,118,108,251,162,90,159,121,116,76,172,122,207,163,36,73,40,181,219,96,16,69,132,135,183,118,223,139,231,153,30,163,93,82,71,12,123,113,56,28,101,101,176,90,221, |
|
|
|
|
247,225,233,116,122,68,68,70,193,110,183,5,4,136,245,29,3,48,34,34,34,106,116,116,122,61,70,188,58,230,230,5,123,37,89,29,189,50,230,189,135,153,179,223,87,47,6,59,117,233,134,112,115,107,140,27,243,74, |
|
|
|
|
229,1,152,226,130,44,59,145,154,50,17,203,178,86,161,184,168,16,185,57,231,49,102,236,4,76,153,150,134,147,199,143,33,58,38,22,219,183,185,135,20,238,221,189,3,43,215,172,199,217,51,167,42,189,200,247, |
|
|
|
|
110,207,155,12,194,27,80,156,60,126,20,195,94,26,1,0,213,10,170,246,237,222,137,41,211,102,96,199,182,45,8,51,154,176,230,163,172,26,186,32,151,144,185,112,62,86,174,93,143,237,219,182,64,113,41,234,253, |
|
|
|
|
113,222,125,238,213,39,25,151,139,11,161,211,235,49,232,249,161,248,112,185,59,131,228,135,203,150,96,89,214,106,244,234,155,140,115,103,78,169,199,85,217,241,200,78,39,246,122,130,183,49,111,76,64,230, |
|
|
|
|
162,249,216,188,105,163,231,152,190,128,83,118,66,43,8,216,187,123,39,100,217,137,156,236,175,48,232,249,161,120,121,216,160,74,247,123,252,196,20,20,20,228,65,175,211,195,110,183,169,193,227,142,109, |
|
|
|
|
91,48,97,98,10,102,87,163,71,230,240,193,253,232,213,39,25,227,39,166,160,196,106,129,213,114,37,32,128,111,204,36,73,66,187,246,29,170,189,124,68,100,20,100,217,89,173,224,11,0,102,206,126,31,103,61, |
|
|
|
|
245,226,200,193,3,112,72,101,152,48,49,5,86,171,197,29,92,217,108,200,92,52,31,143,63,241,36,244,122,189,59,155,166,231,115,156,59,127,49,10,242,46,66,20,69,72,146,84,105,144,200,0,140,136,136,136,168, |
|
|
|
|
14,56,164,178,128,123,118,188,23,247,149,41,200,207,195,168,17,47,32,46,225,81,247,60,103,135,14,168,193,66,101,210,211,166,2,112,247,166,77,26,255,186,250,252,228,241,175,163,115,215,110,106,102,61,217, |
|
|
|
|
233,84,3,24,73,146,176,163,138,158,26,111,48,18,110,54,35,107,121,166,95,112,98,181,92,193,37,159,222,159,138,199,176,119,247,78,40,138,75,253,255,217,51,167,208,189,71,207,91,222,191,115,55,182,111,219, |
|
|
|
|
130,156,236,175,208,190,67,71,8,90,1,25,243,222,83,247,211,110,179,225,228,241,163,158,12,130,18,94,30,250,156,122,145,92,98,181,96,200,192,254,104,215,161,35,194,195,205,144,101,39,36,169,44,96,253,190, |
|
|
|
|
199,145,49,239,61,68,199,180,85,131,53,135,84,134,118,73,29,1,0,57,217,55,239,69,203,205,201,134,40,134,86,153,149,208,187,79,118,155,13,147,125,62,167,28,79,207,166,239,103,60,118,244,43,149,126,198, |
|
|
|
|
14,73,194,240,97,207,161,93,146,123,40,168,189,129,245,180,220,235,143,23,189,251,38,99,73,21,189,182,6,49,20,75,179,86,169,143,199,141,25,137,232,152,182,106,198,73,239,251,195,140,38,200,178,179,210, |
|
|
|
|
233,48,0,224,114,81,145,95,192,150,62,195,125,127,163,78,167,199,202,181,235,145,185,104,62,246,237,222,9,163,233,230,143,10,35,94,117,39,102,241,62,254,98,199,94,100,45,95,82,35,73,103,24,128,17,17,17, |
|
|
|
|
17,221,33,69,81,42,237,165,184,85,34,0,135,36,85,251,254,18,223,224,198,59,68,202,187,254,202,130,188,184,248,68,200,206,31,171,236,197,42,173,98,8,85,152,103,226,232,140,121,239,249,45,91,241,189,21, |
|
|
|
|
143,163,170,11,221,123,85,98,181,248,29,175,239,113,231,230,156,175,178,103,72,150,157,183,45,91,223,227,168,248,249,21,228,231,5,4,148,130,32,184,135,198,45,252,75,149,235,172,106,159,70,188,58,38,160, |
|
|
|
|
119,176,226,114,21,183,119,171,128,188,177,202,205,62,127,203,94,212,202,134,32,74,82,25,6,37,12,245,251,113,193,110,179,33,45,125,86,149,245,210,55,168,54,136,34,198,188,49,1,0,96,52,153,170,156,154, |
|
|
|
|
35,60,220,140,136,168,63,32,46,193,157,80,199,110,183,169,189,200,12,192,136,136,136,136,106,80,80,80,16,110,220,104,56,41,73,151,102,173,130,163,172,172,90,195,221,124,141,159,152,130,112,179,25,233, |
|
|
|
|
105,83,27,204,175,250,117,197,59,233,243,142,109,91,238,168,167,47,34,50,10,227,39,165,160,184,176,176,218,67,228,154,98,125,150,157,206,187,30,190,90,144,127,17,97,70,147,154,160,165,58,1,145,111,253, |
|
|
|
|
30,246,226,8,92,46,46,196,230,77,27,17,17,25,133,185,243,23,121,150,113,249,7,196,103,79,195,41,223,204,58,218,208,4,3,40,119,255,49,237,23,17,221,78,163,110,39,202,111,254,203,246,144,120,222,221,231, |
|
|
|
|
227,171,242,124,20,66,66,240,139,171,225,4,36,227,198,188,122,87,159,101,230,162,140,38,84,7,238,204,222,221,187,176,119,247,174,59,46,155,226,162,34,159,207,163,230,203,52,36,36,184,17,212,103,77,53, |
|
|
|
|
203,71,227,25,170,248,154,207,231,178,19,165,118,27,102,207,122,27,11,51,63,192,222,221,187,80,144,127,81,29,78,90,245,58,53,234,107,178,44,35,46,62,81,189,247,204,233,116,2,208,160,184,168,8,225,225, |
|
|
|
|
173,241,120,143,158,200,205,62,143,195,7,15,96,216,75,35,48,126,98,10,78,30,63,134,78,93,186,86,56,103,238,191,91,213,7,111,0,198,217,109,168,86,104,181,90,52,111,222,156,19,216,54,112,65,65,65,85,14, |
|
|
|
|
3,104,36,174,123,218,65,13,219,67,170,111,254,45,212,128,111,203,28,141,246,216,238,244,124,12,105,96,1,24,53,29,66,72,72,131,175,207,14,169,44,96,66,235,170,150,75,157,50,201,239,57,239,61,143,71,14, |
|
|
|
|
30,64,65,94,30,226,19,18,17,29,211,22,178,236,172,114,157,233,105,211,224,240,185,39,112,195,199,107,208,169,107,55,136,98,40,178,150,103,66,167,211,3,112,247,146,141,29,51,18,157,187,118,67,177,78,15, |
|
|
|
|
135,36,97,236,152,145,232,222,163,167,39,131,233,177,134,82,31,110,120,3,176,235,0,56,245,35,213,138,216,216,88,24,12,6,6,96,141,32,0,11,9,9,193,141,95,254,217,88,15,241,134,183,81,100,123,72,84,191,207, |
|
|
|
|
199,22,205,181,248,197,229,194,213,171,60,85,169,254,104,214,44,8,15,180,104,222,224,235,179,59,245,127,94,181,150,187,85,54,200,82,187,237,150,153,71,189,42,110,75,81,20,28,57,120,192,39,208,187,153, |
|
|
|
|
96,165,196,106,241,155,112,187,54,239,119,172,197,250,112,29,192,141,96,79,101,80,190,249,198,246,195,239,126,103,250,53,79,33,170,73,70,81,7,64,185,217,249,78,13,211,117,224,198,245,198,121,104,54,155, |
|
|
|
|
237,26,0,23,128,171,158,47,72,23,219,67,170,111,26,99,47,88,101,189,95,213,61,31,245,15,62,136,31,101,25,215,174,93,103,229,160,122,113,177,221,82,175,131,70,163,97,125,166,219,213,7,5,192,245,32,79,197, |
|
|
|
|
248,233,135,31,127,252,111,22,25,17,53,185,216,242,70,249,255,3,240,51,128,95,60,255,178,61,164,122,27,176,84,49,100,175,209,28,71,117,207,199,224,224,102,48,252,250,87,120,240,129,22,8,14,110,198,202, |
|
|
|
|
65,247,69,112,179,102,120,160,69,115,24,126,253,43,132,4,7,179,62,179,62,84,183,62,40,193,158,74,225,12,17,154,231,219,109,182,4,147,201,196,18,36,162,166,19,128,93,191,241,127,1,252,19,192,79,112,255, |
|
|
|
|
66,249,35,219,67,170,207,30,106,4,65,88,77,157,143,186,7,90,64,247,64,11,86,10,98,125,166,134,82,31,156,0,126,105,6,64,11,32,228,59,199,15,223,182,8,105,246,232,245,107,215,126,163,215,235,89,74,68,212, |
|
|
|
|
232,253,237,98,222,119,87,190,249,54,227,250,245,27,223,0,248,1,238,17,1,154,239,28,63,252,131,237,33,17,207,71,34,214,103,170,169,250,240,63,223,252,35,227,250,245,27,127,7,224,104,6,119,42,122,13,0, |
|
|
|
|
77,243,22,15,148,94,83,126,249,195,245,107,215,126,229,116,58,193,138,65,68,141,145,205,102,195,255,92,177,124,231,186,161,89,242,253,63,157,23,1,124,11,64,246,124,65,222,96,123,72,196,243,145,136,245, |
|
|
|
|
153,106,161,62,124,7,192,169,1,208,28,192,131,0,126,3,224,33,0,198,72,243,239,134,221,184,118,53,94,113,253,242,239,44,58,34,106,76,66,4,193,30,28,162,205,191,98,251,246,19,69,185,90,2,224,31,0,28,0,254, |
|
|
|
|
5,247,16,145,22,108,15,137,120,62,18,177,62,83,45,213,7,89,3,119,15,152,0,224,1,0,122,79,197,248,53,128,150,158,231,4,0,205,192,89,0,137,168,225,42,135,59,245,171,2,247,13,176,78,184,135,132,124,15,224, |
|
|
|
|
71,207,151,163,203,179,44,219,67,34,158,143,68,172,207,84,107,245,193,59,245,116,51,0,33,112,223,15,214,194,243,215,220,243,56,24,128,119,18,39,86,10,34,106,168,13,226,13,120,166,221,192,205,140,84,222, |
|
|
|
|
236,84,87,113,115,158,22,182,135,68,60,31,137,88,159,169,214,234,195,255,7,0,115,200,35,166,99,238,206,0,0,0,0,73,69,78,68,174,66,96,130,0,0}; |
|
|
|
|
// JUCER_RESOURCE: globalEditor_864x144_png, 27571, "../Resources/ui/GlobalEditor_864x144.png"
|
|
|
|
|
static const unsigned char resource_GlobalEditor_globalEditor_864x144_png[] = { 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,3,96,0,0,0,144,8,6,0,0,0,110,232,8,32,0,0,0,6,98,75,71,68,0,255,0,255, |
|
|
|
|
0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,14,195,0,0,14,195,1,199,111,168,100,0,0,0,7,116,73,77,69,7,222,10,13,5,35,54,43,226,55,144,0,0,0,29,105,84,88,116,67,111,109,109,101,110,116,0,0,0,0,0,67, |
|
|
|
|
114,101,97,116,101,100,32,119,105,116,104,32,71,73,77,80,100,46,101,7,0,0,32,0,73,68,65,84,120,218,236,157,121,124,19,213,218,199,127,169,101,226,146,112,165,9,74,203,125,109,203,181,203,149,182,8,5,20, |
|
|
|
|
80,22,69,68,118,68,5,21,81,68,16,20,68,65,64,80,16,220,16,89,21,100,149,93,17,68,100,223,69,64,89,20,90,80,10,218,22,47,77,189,210,162,77,170,151,4,53,131,58,239,31,105,166,89,38,201,236,153,73,206,115, |
|
|
|
|
63,124,174,157,156,217,206,60,231,156,231,123,158,231,60,199,0,192,0,32,1,64,34,0,10,192,149,53,255,174,2,96,4,80,7,192,21,53,101,12,32,66,132,8,17,125,9,3,224,111,0,127,1,184,12,192,13,224,15,159,127, |
|
|
|
|
116,205,241,191,107,202,147,254,144,8,17,210,30,137,16,33,250,76,68,49,125,72,172,249,208,117,106,148,192,4,224,31,53,255,234,2,184,166,230,184,87,41,136,66,16,33,66,68,143,29,226,95,0,254,172,233,0,47, |
|
|
|
|
1,112,2,248,95,205,63,23,128,223,107,58,70,144,254,144,8,17,210,30,137,16,33,250,76,68,73,125,72,172,33,241,43,1,92,11,192,10,224,250,140,70,55,220,122,227,191,210,90,39,55,184,190,81,234,13,255,151,246, |
|
|
|
|
231,159,127,2,0,12,6,97,250,32,180,188,212,243,148,186,142,30,239,207,48,76,116,53,80,166,251,139,185,142,208,115,132,148,231,83,86,142,50,82,127,39,18,44,151,47,95,198,249,138,202,242,234,234,95,126, |
|
|
|
|
248,239,249,202,194,239,74,203,246,3,184,0,192,30,80,212,24,170,63,76,75,189,129,237,15,165,180,123,49,125,131,82,253,137,82,215,85,74,71,149,236,19,164,180,59,49,191,9,57,30,107,109,94,106,123,76,73, |
|
|
|
|
110,224,103,159,240,213,103,165,218,167,154,99,191,20,93,144,163,45,8,253,77,206,99,90,109,7,82,244,57,227,198,116,94,246,118,56,189,82,107,76,145,219,190,146,75,15,124,255,22,242,91,20,245,129,49,0,48, |
|
|
|
|
215,40,195,245,102,211,213,217,237,110,187,229,209,22,249,77,59,254,247,191,255,5,0,92,184,112,65,241,15,42,71,103,165,6,236,68,27,232,162,209,153,235,5,34,133,12,8,98,7,22,45,130,24,17,97,210,160,65, |
|
|
|
|
3,0,128,213,106,197,119,37,165,199,15,30,58,254,238,165,223,126,47,174,233,24,93,240,132,14,152,184,250,67,131,193,128,202,202,74,85,13,59,189,244,141,114,181,239,104,192,96,164,193,94,40,12,201,5,98, |
|
|
|
|
241,208,246,197,182,199,31,127,252,17,0,130,218,163,84,3,85,75,19,35,98,116,60,240,89,124,255,150,99,60,229,106,23,66,116,87,44,96,233,165,45,136,209,231,150,205,155,177,246,118,101,101,101,72,125,18, |
|
|
|
|
122,92,45,93,245,253,54,66,175,207,167,239,229,11,86,225,250,237,104,233,79,4,125,248,213,0,160,62,128,235,1,164,245,233,209,121,124,125,107,189,214,94,99,67,171,208,165,183,153,96,45,138,158,140,50,165, |
|
|
|
|
65,39,92,39,32,23,32,17,143,151,246,196,98,177,192,77,255,89,178,97,203,238,23,0,216,0,84,195,19,62,80,15,192,13,222,254,208,107,236,169,101,216,105,177,111,212,99,223,35,181,109,242,5,51,57,188,91,241, |
|
|
|
|
12,97,66,218,227,117,245,147,90,123,141,213,104,129,151,22,218,152,146,207,32,7,60,5,26,206,241,4,97,82,244,89,110,175,151,210,186,42,229,250,66,245,32,148,110,105,29,194,66,232,67,25,128,11,87,192,227, |
|
|
|
|
6,189,46,243,95,169,157,154,54,105,220,239,135,31,126,224,221,97,121,255,9,249,88,66,207,9,60,79,174,25,97,174,127,177,2,86,190,255,18,18,18,66,190,111,52,254,137,253,54,225,206,231,83,54,92,25,33,191, |
|
|
|
|
113,233,49,159,119,139,84,70,234,239,68,132,203,239,191,255,142,171,174,186,210,106,48,192,253,179,253,151,82,120,98,244,41,0,150,204,127,165,118,244,246,135,82,191,153,82,253,169,18,125,163,18,253,144, |
|
|
|
|
26,125,144,148,126,62,212,239,82,250,131,112,198,137,144,227,241,212,238,249,180,199,242,242,114,217,12,84,53,218,167,156,109,73,137,118,36,164,79,17,211,30,248,182,139,112,158,59,61,77,46,73,209,103, |
|
|
|
|
33,239,28,45,123,65,170,46,70,106,83,225,108,43,33,125,44,87,253,69,91,127,188,250,144,144,96,112,255,92,85,93,12,224,146,119,253,87,221,155,178,51,91,113,205,44,73,109,4,241,190,14,76,201,231,137,198, |
|
|
|
|
172,157,212,89,132,112,207,193,231,218,92,231,135,58,143,79,217,112,101,132,204,156,6,134,127,132,154,29,55,24,12,188,66,62,25,134,193,207,246,95,66,85,20,161,39,129,82,223,90,143,243,120,85,85,21,254, |
|
|
|
|
149,158,214,226,244,119,255,217,4,79,136,8,3,224,31,225,250,67,185,102,29,181,26,238,164,196,115,41,189,214,64,74,191,16,174,79,8,23,94,195,21,242,21,216,206,125,219,51,87,223,18,234,222,145,250,141,170, |
|
|
|
|
80,125,67,28,181,71,111,93,93,190,252,39,254,112,211,248,243,207,63,65,95,190,236,249,45,82,254,2,94,125,187,12,109,73,108,30,5,25,1,68,208,152,29,41,18,3,12,191,211,2,189,18,96,130,126,242,60,87,164, |
|
|
|
|
144,50,109,143,127,117,234,36,34,49,241,10,80,117,234,128,162,234,136,214,103,223,111,203,234,243,95,127,225,50,125,89,144,98,138,213,89,161,237,37,146,46,242,210,57,46,15,24,152,240,197,124,61,90,96, |
|
|
|
|
66,234,147,191,231,75,61,221,225,171,15,69,223,126,191,1,192,85,137,240,44,8,188,198,116,205,85,25,191,254,250,75,212,160,75,143,107,29,162,101,12,69,19,42,133,220,91,40,172,133,186,118,164,235,200,105, |
|
|
|
|
124,69,42,19,234,183,72,179,218,66,66,42,126,182,87,243,235,12,9,136,241,22,175,193,26,104,248,81,20,133,4,3,211,8,158,12,84,87,213,244,224,156,253,97,180,192,43,90,147,54,124,175,19,173,144,112,161,253, |
|
|
|
|
2,159,62,129,47,140,133,106,219,161,38,100,184,126,247,150,9,213,7,113,221,239,231,170,106,210,30,107,234,226,239,191,25,92,250,237,119,252,246,251,239,162,13,73,85,141,88,158,55,149,187,61,9,25,31,253, |
|
|
|
|
94,158,75,47,107,222,49,208,80,14,26,146,2,14,248,158,87,123,11,3,188,137,254,188,198,115,160,222,27,12,218,30,230,46,95,254,19,151,47,255,137,223,127,119,195,120,37,5,211,213,87,35,33,193,32,72,159,189, |
|
|
|
|
223,199,87,159,57,117,73,38,240,226,173,167,60,189,76,162,251,94,14,59,134,75,191,252,116,192,231,28,246,61,12,140,159,62,121,250,85,95,219,44,224,124,5,21,74,128,62,92,13,128,74,68,77,74,204,63,254,248, |
|
|
|
|
189,129,148,193,58,26,208,165,229,248,86,169,247,82,19,72,149,138,141,149,234,237,18,53,128,72,48,190,248,0,89,36,15,26,31,239,89,224,236,184,175,65,230,11,95,17,57,139,128,152,40,195,47,208,232,171,170, |
|
|
|
|
170,242,238,197,66,213,12,144,87,5,246,135,106,103,86,211,82,223,40,5,182,228,234,3,164,180,113,62,237,88,10,140,113,29,15,60,198,245,55,151,151,44,240,186,190,127,255,108,255,69,251,22,169,10,237,209, |
|
|
|
|
91,95,174,75,191,225,247,63,254,224,103,88,42,0,94,6,169,89,194,121,24,184,66,159,137,175,106,240,74,206,17,6,198,228,4,49,134,241,62,79,176,241,204,105,51,107,180,13,184,255,160,241,247,223,12,174,173, |
|
|
|
|
107,226,173,207,190,223,193,171,207,66,224,139,175,126,8,210,213,136,225,141,194,117,46,172,190,241,0,49,78,189,242,209,169,64,176,247,234,20,195,252,173,58,132,241,212,7,35,128,58,137,240,236,55,80,71, |
|
|
|
|
45,67,65,139,208,21,45,207,153,26,233,112,149,122,127,37,66,17,197,66,153,208,208,69,190,89,31,133,122,199,132,24,105,161,215,123,36,120,75,249,148,229,1,98,4,194,164,202,21,53,255,224,219,31,170,9,94, |
|
|
|
|
90,74,190,33,118,29,147,220,207,44,101,162,70,74,59,247,45,19,174,31,16,234,21,11,252,155,107,226,205,55,92,145,211,67,22,31,237,61,108,123,164,233,203,178,193,151,34,222,3,129,198,173,92,205,151,235, |
|
|
|
|
58,145,84,69,16,140,169,4,98,181,161,137,140,15,148,105,191,13,92,166,47,227,143,63,220,184,242,74,99,68,125,246,173,119,175,62,203,9,95,130,117,53,104,61,150,50,58,23,178,95,229,248,166,94,184,226,44, |
|
|
|
|
18,224,13,243,135,53,239,67,37,176,58,164,49,125,72,4,144,224,221,136,57,65,105,67,33,218,107,193,180,10,91,122,93,96,45,54,92,80,78,168,138,54,140,241,53,210,34,193,152,247,216,79,85,213,62,6,151,175, |
|
|
|
|
222,248,186,210,25,238,206,141,120,195,120,11,215,172,123,205,224,152,224,211,107,171,150,89,77,43,107,193,66,45,148,214,82,63,35,166,95,224,235,25,139,38,136,113,189,171,175,135,236,194,207,142,152,133, |
|
|
|
|
48,49,237,209,77,211,170,129,151,65,142,253,112,69,26,183,114,67,25,95,24,11,11,98,2,67,19,131,192,137,55,136,249,254,55,83,99,72,107,191,13,184,47,95,14,5,96,126,250,236,119,14,77,11,130,175,175,10,139, |
|
|
|
|
200,64,30,69,105,150,155,37,85,31,18,0,24,18,107,44,61,131,150,246,176,209,115,2,142,112,153,182,162,5,146,106,210,191,84,207,150,84,195,75,105,24,19,19,186,196,199,80,11,127,45,255,129,187,118,160,98, |
|
|
|
|
130,7,85,226,13,147,164,190,181,159,64,249,212,191,209,92,11,22,170,191,82,162,207,150,179,255,17,211,47,200,221,198,213,2,49,95,15,153,119,29,129,223,4,76,236,183,245,144,237,145,190,252,167,104,248, |
|
|
|
|
18,11,94,151,47,95,70,249,143,23,80,229,80,39,1,138,53,233,90,220,208,176,1,174,190,250,170,208,109,11,66,215,89,243,131,177,176,109,33,204,100,95,160,199,34,164,154,6,28,12,244,96,120,127,242,157,144, |
|
|
|
|
244,142,125,90,111,3,151,47,255,41,88,159,57,207,137,224,41,189,202,104,68,66,66,2,25,181,85,148,132,132,4,212,173,91,87,54,125,72,212,138,161,160,183,36,28,225,140,22,45,24,86,90,130,53,177,158,45,169, |
|
|
|
|
215,16,11,99,209,240,138,133,26,215,130,175,21,60,139,234,27,51,239,25,171,8,132,69,163,29,41,1,94,74,175,229,82,35,12,90,150,140,89,18,218,172,216,54,46,182,125,11,73,170,193,23,196,106,61,226,1,237, |
|
|
|
|
29,241,217,214,255,250,243,47,81,116,197,71,149,67,129,221,127,202,207,227,151,95,47,226,74,138,194,21,87,92,161,232,251,49,12,3,123,245,175,248,253,15,55,154,230,102,243,126,86,33,64,198,39,104,34,108, |
|
|
|
|
214,222,48,222,176,136,33,137,60,32,204,91,222,215,27,22,216,6,180,168,250,204,223,194,147,143,253,25,168,207,17,224,235,10,131,1,70,163,17,137,137,137,32,162,174,13,96,52,26,101,211,135,196,104,26,10, |
|
|
|
|
122,77,194,33,6,184,244,18,106,168,68,104,97,184,235,75,241,142,41,17,142,36,164,172,20,67,45,220,239,225,64,140,27,198,24,31,131,186,230,119,223,65,139,192,152,38,224,43,218,73,56,12,188,22,253,27,52, |
|
|
|
|
81,183,98,51,168,10,1,49,62,237,59,18,168,73,245,134,113,93,135,11,196,130,67,147,107,77,110,24,12,113,213,206,67,234,168,68,175,87,164,80,195,95,126,189,8,211,213,87,123,50,153,41,236,121,248,251,239, |
|
|
|
|
191,113,229,149,87,130,162,40,97,117,227,243,14,124,97,44,210,124,157,24,111,152,160,144,196,16,16,22,248,179,127,27,96,216,208,68,61,79,66,112,234,178,130,107,4,137,104,75,18,245,6,94,209,72,194,33,36, |
|
|
|
|
68,39,86,55,205,148,3,156,228,130,169,88,5,49,158,99,91,88,175,152,47,140,5,25,104,32,48,22,203,224,37,6,186,180,218,95,137,237,23,228,110,223,124,218,174,208,223,66,121,195,248,128,153,127,155,247,109, |
|
|
|
|
235,241,1,98,74,192,23,223,53,94,9,0,18,19,19,85,9,251,242,222,227,170,171,174,18,95,87,33,32,72,200,88,195,123,66,66,160,55,44,18,132,249,62,119,104,8,243,245,134,197,200,100,35,129,175,248,5,48,173, |
|
|
|
|
102,63,140,198,250,41,62,208,101,136,227,150,33,55,144,73,9,83,212,18,136,73,50,230,56,6,43,97,32,230,11,99,129,11,251,107,227,55,8,140,169,3,95,209,156,200,10,5,94,122,235,179,164,38,230,225,219,190, |
|
|
|
|
165,180,109,165,66,18,249,65,24,226,6,196,162,9,95,145,82,115,43,245,190,178,44,205,16,8,98,90,128,176,192,243,184,33,44,112,34,162,70,247,255,102,244,169,207,4,190,226,23,192,180,182,112,60,26,155,143, |
|
|
|
|
42,61,91,28,13,227,71,173,4,28,114,172,243,146,2,84,82,64,76,238,176,165,72,207,16,214,152,11,51,88,202,1,98,126,105,237,33,32,61,22,129,47,209,19,56,106,131,151,214,214,164,70,211,91,206,183,125,43,29, |
|
|
|
|
146,40,229,184,231,155,250,27,160,254,245,96,240,107,231,108,27,143,33,16,19,10,95,114,130,151,6,94,158,171,81,137,2,177,104,65,24,175,162,17,206,229,3,97,12,195,192,144,160,125,189,151,2,95,178,100,229, |
|
|
|
|
36,162,45,0,139,37,240,18,51,243,44,87,230,66,173,205,48,43,189,166,75,78,128,146,2,71,82,238,175,85,111,152,90,32,230,7,99,4,196,36,181,239,104,76,100,73,241,118,69,99,159,65,181,39,104,228,10,37,86, |
|
|
|
|
10,194,184,238,201,237,33,11,94,23,26,206,27,198,238,159,20,171,109,91,73,248,210,186,235,65,228,182,35,124,189,97,146,32,76,2,252,137,91,19,198,1,97,6,232,124,109,24,129,47,2,96,34,13,133,87,222,152, |
|
|
|
|
137,220,38,77,121,149,63,247,159,179,40,45,254,14,103,78,127,131,147,39,142,227,183,75,151,120,157,55,229,141,25,200,205,107,42,234,165,135,61,209,31,85,63,255,132,122,245,146,240,214,236,249,168,151, |
|
|
|
|
100,241,251,253,151,106,7,158,27,49,56,226,179,24,12,6,140,30,55,17,45,111,109,227,119,220,237,118,99,226,11,207,161,220,118,14,0,48,241,149,105,200,201,109,34,234,89,135,15,121,20,85,85,63,9,190,206, |
|
|
|
|
143,255,253,1,223,158,57,133,239,75,75,112,252,171,35,248,237,183,75,138,26,69,74,129,152,212,53,98,122,246,134,69,26,184,66,13,146,220,215,12,13,98,126,227,57,1,49,69,225,75,105,240,210,195,26,85,185, |
|
|
|
|
188,229,74,181,111,177,144,37,22,194,132,92,39,60,132,213,26,162,190,191,249,181,237,88,105,215,34,224,43,38,192,75,70,16,147,10,97,66,79,148,35,69,189,40,8,211,248,120,22,60,113,70,224,43,94,36,65,174, |
|
|
|
|
193,90,108,188,114,163,127,101,160,115,215,30,24,61,110,34,22,190,247,1,30,30,48,8,215,94,91,79,113,133,55,24,12,248,245,215,95,240,225,251,203,131,126,175,151,100,193,125,125,251,115,158,227,251,175, |
|
|
|
|
69,203,86,65,240,5,0,91,54,174,103,225,43,90,242,207,255,187,1,157,58,119,195,83,207,140,198,220,69,43,48,96,224,16,252,35,76,189,250,190,151,82,245,29,141,107,136,49,120,229,246,98,240,49,138,195,26, |
|
|
|
|
218,16,190,198,33,244,53,13,97,203,177,251,140,121,255,131,4,161,71,254,62,60,116,70,168,254,134,43,31,216,15,9,41,175,183,186,85,19,104,229,132,109,161,97,236,66,142,7,71,47,25,66,182,241,160,205,127, |
|
|
|
|
99,160,77,27,84,134,47,131,193,192,238,195,166,105,16,19,218,22,96,16,91,37,145,219,64,168,186,4,207,80,187,64,40,65,104,72,241,127,14,67,192,228,148,182,193,154,119,127,68,224,43,126,0,76,168,17,42,215, |
|
|
|
|
192,110,50,155,209,231,129,135,48,227,157,69,104,28,194,211,83,123,63,105,131,182,247,223,129,207,246,226,100,225,241,160,50,221,122,220,139,180,244,127,133,124,191,58,117,234,160,95,255,129,65,199,127, |
|
|
|
|
252,239,15,216,252,201,58,77,125,100,147,201,140,174,61,238,197,180,153,243,112,83,227,60,85,191,169,18,32,166,198,125,213,134,176,72,131,132,161,230,127,66,199,222,208,16,22,62,92,205,127,76,35,201,102, |
|
|
|
|
164,124,87,57,39,178,248,130,151,150,161,75,238,190,33,90,107,220,228,126,94,213,32,76,199,109,90,17,248,10,211,129,122,215,223,233,168,130,52,9,16,178,220,11,124,215,229,234,11,194,34,125,62,2,95,113, |
|
|
|
|
4,96,209,0,175,64,73,74,178,224,213,169,179,208,225,206,187,85,185,223,123,139,230,194,237,118,7,29,127,226,201,225,33,207,233,210,189,55,254,249,127,55,4,29,95,186,104,30,46,95,190,172,201,143,93,47, |
|
|
|
|
201,130,151,95,123,11,237,58,220,37,24,84,181,212,105,107,205,80,83,11,194,34,15,66,66,239,203,211,27,22,137,242,8,124,201,162,27,145,192,43,33,33,33,44,120,233,13,186,180,222,182,165,150,17,243,155,188, |
|
|
|
|
222,64,30,16,166,35,93,81,12,190,66,182,55,15,124,133,155,252,210,59,132,73,245,130,137,170,91,145,94,48,97,63,107,31,194,248,132,30,18,248,138,109,73,20,3,56,98,6,137,115,255,57,139,229,239,45,0,0,92, |
|
|
|
|
123,109,61,252,243,255,110,64,106,218,191,80,175,94,61,100,253,187,49,231,57,67,158,26,137,170,159,127,194,153,211,223,240,190,199,202,101,139,34,62,235,175,191,84,251,253,110,175,250,25,31,190,191,28, |
|
|
|
|
143,13,26,234,87,46,51,251,38,180,235,112,23,14,238,223,235,119,252,31,215,214,67,159,7,30,14,186,238,254,125,123,240,237,153,83,65,247,230,170,173,178,115,223,99,245,242,197,17,223,233,215,95,171,195, |
|
|
|
|
254,94,118,238,123,172,90,230,185,206,63,234,213,67,195,134,255,135,212,180,116,92,123,109,61,100,102,223,196,121,206,160,39,135,163,234,231,159,252,158,149,207,55,151,115,157,152,212,235,73,73,208,17, |
|
|
|
|
173,44,106,188,203,69,202,6,37,114,93,24,128,16,107,195,34,237,63,132,154,115,33,122,205,129,222,65,96,243,206,3,100,180,32,162,154,244,232,220,46,98,155,231,106,235,124,214,132,5,157,107,208,254,218, |
|
|
|
|
48,181,225,203,251,147,110,13,96,33,217,8,249,38,200,80,216,54,224,243,200,252,215,131,5,63,31,91,86,3,250,206,107,114,7,194,183,93,32,162,83,0,83,10,188,188,114,233,146,11,103,138,184,65,234,230,102, |
|
|
|
|
45,48,106,204,139,48,153,205,126,199,141,70,35,158,29,51,1,79,61,209,159,151,87,233,183,75,151,240,237,233,83,162,214,99,236,220,182,9,173,219,180,13,130,150,7,251,63,22,148,196,226,209,129,67,96,52,26, |
|
|
|
|
253,202,253,82,237,192,234,229,139,121,215,209,111,151,46,225,219,51,69,130,234,221,192,89,175,151,66,130,84,147,166,249,120,102,212,11,48,153,130,235,245,153,81,227,48,98,232,99,130,188,117,114,101,55, |
|
|
|
|
140,54,132,41,217,169,106,25,194,66,223,155,27,194,2,191,117,144,209,22,7,32,230,43,87,25,141,170,108,194,74,36,126,37,33,33,1,117,235,214,229,221,230,227,9,194,212,128,47,239,90,175,160,243,245,104,244, |
|
|
|
|
202,248,77,213,72,200,33,199,141,185,146,114,104,21,194,68,169,23,129,175,248,4,48,65,240,37,80,71,190,62,113,28,207,12,27,136,87,166,206,196,63,255,47,213,239,183,164,36,11,58,221,211,29,219,183,124, |
|
|
|
|
18,249,22,6,105,161,29,239,45,154,135,87,223,156,237,7,87,158,132,28,15,99,245,138,37,0,128,27,51,178,208,166,109,135,160,115,87,45,95,28,148,105,80,149,134,27,230,183,111,78,22,98,212,136,33,152,244, |
|
|
|
|
202,180,160,112,201,122,73,22,116,188,187,43,118,110,219,20,85,240,137,6,132,69,59,59,162,118,33,12,224,227,13,19,178,119,75,172,200,21,6,3,140,70,35,18,19,19,65,132,136,146,147,56,70,163,81,96,159,35, |
|
|
|
|
172,9,198,18,132,9,134,47,49,94,175,56,48,122,181,226,5,19,243,172,194,245,95,91,16,198,185,198,147,132,30,198,133,36,240,81,14,49,251,106,9,85,192,255,253,239,87,124,176,106,41,231,239,237,239,184,203, |
|
|
|
|
175,44,223,89,104,161,107,34,202,109,231,176,101,227,250,160,227,93,123,220,139,212,180,70,0,60,225,123,129,114,242,196,113,28,61,252,121,84,27,112,168,247,252,223,175,191,96,45,71,166,71,0,184,167,91, |
|
|
|
|
47,89,59,141,104,93,75,173,236,136,209,168,27,105,245,34,230,25,35,239,135,23,180,116,132,204,202,17,33,18,125,184,8,219,190,67,39,221,209,99,91,22,149,170,91,40,124,105,100,141,156,164,71,144,117,156, |
|
|
|
|
150,247,68,185,214,130,133,215,125,254,91,116,104,190,141,147,113,54,190,0,76,141,52,244,190,231,28,251,242,8,78,20,28,11,42,211,232,95,25,168,87,47,201,111,17,58,12,202,60,203,150,141,31,225,199,255, |
|
|
|
|
254,16,244,219,160,39,135,227,158,174,61,145,222,232,70,191,227,110,183,27,203,22,205,211,208,192,20,252,238,199,143,29,229,204,244,120,253,245,13,80,191,254,245,49,1,97,122,185,167,224,251,75,72,202, |
|
|
|
|
33,190,207,230,183,41,121,144,225,70,6,8,34,68,20,239,31,248,26,174,177,10,97,66,234,133,223,120,25,2,190,116,0,156,209,128,123,45,66,10,159,132,28,156,229,245,96,3,16,248,138,63,0,83,195,235,197,117, |
|
|
|
|
222,145,67,7,56,203,55,205,111,201,3,174,12,162,247,125,242,158,119,249,242,101,44,156,55,43,168,92,102,214,191,57,211,206,127,242,209,26,84,85,253,172,201,65,202,183,46,66,121,232,110,202,201,83,167, |
|
|
|
|
3,137,1,152,82,162,77,168,1,97,114,213,25,159,116,216,177,56,80,24,200,224,71,36,46,128,47,134,219,113,200,173,26,180,15,95,146,31,75,165,247,145,111,123,7,5,33,93,227,91,50,112,142,229,100,252,137,89, |
|
|
|
|
73,84,27,190,34,149,255,249,167,159,56,143,95,119,253,245,17,207,205,201,109,130,117,27,119,133,45,51,255,157,153,248,252,192,167,97,203,124,127,182,4,123,118,109,67,167,206,221,252,142,7,38,222,40,59, |
|
|
|
|
247,61,54,111,252,72,84,197,55,206,109,130,181,159,236,12,91,102,193,220,153,56,184,255,83,201,29,17,195,48,168,250,153,187,94,235,95,119,189,244,78,67,182,44,72,218,74,170,17,75,182,135,176,245,96,158, |
|
|
|
|
161,0,96,120,149,143,229,117,97,4,190,136,68,91,255,164,172,5,11,151,144,67,143,125,174,40,239,87,24,248,210,219,122,175,104,119,173,81,187,191,228,27,115,39,162,209,227,216,162,249,77,193,137,240,255, |
|
|
|
|
150,98,149,66,169,205,109,127,253,245,23,110,82,76,172,163,234,236,202,234,229,139,241,75,181,35,108,153,133,243,102,235,102,208,10,149,206,254,31,215,94,27,247,6,142,82,229,181,228,5,147,107,61,88,168, |
|
|
|
|
242,177,232,9,35,240,69,68,179,186,169,80,184,152,150,189,96,209,130,47,111,116,181,222,247,216,139,58,57,202,172,199,194,194,16,35,60,150,22,214,250,241,240,126,17,253,139,97,0,83,114,31,48,128,223,166, |
|
|
|
|
150,246,42,110,79,205,181,245,234,5,220,95,89,69,188,124,249,114,88,239,211,129,125,123,80,110,59,167,155,15,109,15,17,38,89,167,14,165,41,99,85,222,141,72,137,200,49,44,40,62,219,65,132,8,17,37,237,220, |
|
|
|
|
176,109,58,236,134,176,122,110,195,17,194,14,249,194,151,87,174,188,242,74,213,199,24,174,132,99,226,204,47,158,182,93,12,101,223,19,252,173,116,176,246,145,115,226,128,136,110,37,81,29,248,226,163,88, |
|
|
|
|
158,235,94,115,141,137,179,204,175,191,252,162,106,231,87,191,254,117,97,179,4,54,105,154,143,127,92,91,15,255,11,225,177,211,154,92,29,162,94,137,196,18,42,133,79,37,44,46,20,145,127,121,206,235,235, |
|
|
|
|
52,28,145,192,60,145,88,209,197,88,8,237,150,35,241,134,208,53,95,129,135,27,166,36,227,183,223,255,192,95,127,253,165,202,59,215,169,83,7,245,235,91,1,252,73,26,129,76,35,100,196,253,240,162,164,207, |
|
|
|
|
252,188,95,4,190,98,22,192,162,97,148,176,27,12,251,92,183,97,192,126,85,94,249,253,247,223,34,94,239,167,159,46,224,139,8,235,187,108,101,252,188,86,67,135,143,10,90,243,229,43,245,146,44,24,48,112,8, |
|
|
|
|
230,206,158,38,234,221,127,254,233,66,196,181,104,124,159,149,143,52,108,248,79,206,227,118,13,38,16,137,198,224,174,133,125,193,120,20,138,86,0,62,68,175,7,211,49,132,17,33,162,109,115,82,202,222,77, |
|
|
|
|
225,215,130,233,126,127,48,142,208,45,41,240,5,0,117,235,94,5,139,213,138,186,117,255,129,43,174,184,66,249,119,96,24,84,87,199,231,248,28,181,113,68,163,186,78,38,4,227,28,192,148,128,47,255,140,52,158, |
|
|
|
|
255,190,46,68,82,136,159,67,36,145,240,131,137,159,127,194,199,235,62,144,252,108,29,59,117,65,227,220,38,17,203,181,185,189,61,10,142,29,21,181,7,88,149,76,207,202,87,66,37,219,184,116,201,69,90,1,49, |
|
|
|
|
202,68,129,168,206,198,48,34,68,226,183,95,136,193,4,71,124,247,75,146,3,190,0,224,74,35,5,224,50,46,57,237,234,25,104,87,16,221,149,50,246,232,86,239,3,108,99,63,239,23,129,177,152,145,4,126,186,32,244, |
|
|
|
|
131,27,34,130,23,23,124,1,192,141,25,89,156,231,125,95,82,172,74,133,252,227,218,122,232,215,255,177,160,227,123,118,109,195,201,19,193,123,105,13,24,56,4,255,184,182,158,230,63,244,191,66,212,235,183, |
|
|
|
|
167,79,145,86,16,103,3,148,88,115,71,82,223,64,6,13,34,68,52,221,198,99,117,45,152,28,240,69,68,103,16,46,80,223,163,249,221,35,141,161,68,39,99,202,144,242,147,68,53,149,41,28,120,1,30,47,77,187,59,58, |
|
|
|
|
5,157,247,211,79,23,80,85,245,147,42,245,58,104,200,211,48,153,204,126,199,126,169,118,96,237,251,43,112,205,53,215,96,198,59,139,253,66,19,165,134,34,170,33,245,235,95,135,118,29,238,10,58,238,114,57, |
|
|
|
|
117,149,72,132,136,190,250,167,120,10,69,108,211,230,102,73,231,31,62,252,53,185,7,185,135,234,230,43,160,207,246,40,196,251,197,215,80,39,134,110,124,32,91,68,157,215,208,56,21,164,191,68,73,99,74,18, |
|
|
|
|
248,42,128,100,248,10,154,113,8,46,59,224,241,39,57,215,93,21,124,117,132,243,122,114,75,171,54,109,209,242,214,54,65,199,87,45,95,140,223,126,187,132,170,170,159,177,117,211,250,224,129,248,246,246,104, |
|
|
|
|
213,166,173,102,63,242,35,3,135,112,214,235,193,207,246,146,22,160,71,178,81,161,195,87,250,28,34,68,136,144,190,71,233,190,76,72,198,67,34,68,180,214,206,72,226,141,56,6,48,165,54,100,14,44,123,245,53, |
|
|
|
|
215,96,216,136,209,184,133,3,126,220,110,55,54,111,92,175,184,193,119,245,213,215,96,192,192,33,65,199,79,158,56,238,183,198,107,243,39,31,225,199,255,254,16,12,143,26,12,69,188,250,234,107,48,244,233, |
|
|
|
|
231,56,161,146,171,94,227,85,200,230,207,188,91,174,116,123,141,24,63,68,136,104,26,90,180,222,92,249,140,255,114,173,251,226,146,155,155,230,179,255,221,160,65,50,110,72,77,99,255,190,49,35,19,38,147, |
|
|
|
|
137,253,239,155,155,230,179,127,223,144,154,134,6,13,146,217,178,20,69,225,166,198,185,126,215,189,49,35,51,186,99,33,15,143,40,69,81,104,218,44,31,141,115,114,85,127,190,103,71,141,69,70,102,86,204,204, |
|
|
|
|
47,68,138,24,35,99,103,28,3,152,18,202,230,85,170,58,117,234,224,166,156,60,180,191,227,46,204,158,187,4,29,238,236,196,121,206,150,141,235,253,82,189,43,53,219,62,96,224,16,212,75,178,4,65,202,234,229, |
|
|
|
|
139,253,142,93,190,124,57,232,24,80,27,138,24,109,169,83,167,14,110,106,156,139,118,29,58,98,230,59,139,208,158,103,189,106,5,98,8,12,169,209,14,73,29,200,109,240,17,33,18,157,41,17,3,209,227,48,29,155, |
|
|
|
|
18,222,131,209,99,198,179,32,245,228,176,17,120,125,234,12,246,183,233,179,230,2,0,110,107,219,30,61,122,245,65,211,102,249,88,186,242,67,220,144,154,134,27,82,211,48,122,236,4,182,236,61,93,186,227,142, |
|
|
|
|
142,119,177,231,221,209,177,19,122,244,234,131,183,231,45,82,128,172,228,27,87,147,44,22,204,156,243,46,134,62,245,12,150,175,94,139,153,115,230,161,65,114,178,42,159,56,35,43,27,102,179,89,249,190,93, |
|
|
|
|
11,27,51,19,239,87,204,27,82,137,114,116,214,124,202,230,228,221,140,143,54,237,22,244,112,135,63,223,143,143,215,189,207,251,62,141,115,155,96,237,39,59,35,94,119,196,147,143,162,202,39,253,122,147,155, |
|
|
|
|
243,57,65,101,235,166,245,168,56,255,99,208,241,111,190,46,196,225,47,14,160,205,237,237,253,142,183,185,189,61,78,125,93,24,118,3,103,169,207,42,246,58,190,114,236,203,195,126,245,26,43,162,22,188,17, |
|
|
|
|
72,228,238,3,120,215,11,73,147,72,132,136,102,16,78,208,58,48,29,180,93,41,155,45,243,145,175,190,58,130,219,219,118,192,230,77,31,227,198,140,76,252,80,110,195,13,169,105,72,74,178,224,135,114,27,92, |
|
|
|
|
46,23,14,125,126,0,135,62,63,0,0,112,57,93,184,189,109,123,172,95,183,6,35,70,142,70,82,146,5,213,213,14,116,238,210,13,51,167,79,69,131,6,201,160,221,110,204,154,62,149,133,177,155,26,231,226,219,51, |
|
|
|
|
69,154,173,227,106,135,3,35,158,26,12,0,120,160,223,67,120,160,239,195,120,103,206,12,191,50,38,147,25,22,139,165,6,218,172,168,182,87,161,188,220,134,166,205,154,131,166,221,56,115,218,255,253,154,54, |
|
|
|
|
107,14,0,40,47,47,67,181,195,193,30,79,77,75,131,197,98,69,101,69,69,216,103,74,78,78,65,114,74,67,216,237,118,148,219,202,216,227,205,242,91,192,225,168,61,70,81,20,146,83,26,194,229,116,34,53,45,29, |
|
|
|
|
21,21,63,250,93,59,57,37,5,41,41,13,225,168,170,130,205,231,58,106,26,245,196,251,21,31,146,40,21,190,56,59,63,25,30,108,255,190,61,88,186,104,174,44,207,20,78,234,212,169,131,65,79,14,15,58,254,227,127, |
|
|
|
|
127,192,230,79,62,10,121,222,170,229,139,209,164,105,126,80,194,142,71,6,14,193,215,39,11,53,187,65,243,225,207,247,99,193,188,89,68,243,99,12,10,181,60,73,68,88,139,8,17,34,114,193,21,95,248,82,202,123, |
|
|
|
|
112,232,243,131,232,217,171,15,202,203,203,112,242,100,33,254,115,182,20,119,118,244,76,224,30,251,234,40,0,224,142,142,157,112,251,237,237,97,50,155,113,67,106,26,118,237,216,10,154,166,177,111,239,110, |
|
|
|
|
220,222,182,61,78,158,44,4,69,25,241,253,217,82,244,236,213,7,55,102,102,249,121,190,188,97,139,220,99,74,52,199,179,224,99,14,135,3,183,220,218,58,232,120,70,102,22,198,188,240,34,202,109,101,40,183, |
|
|
|
|
217,208,181,91,15,156,40,60,14,154,166,65,81,20,44,86,43,134,15,125,2,0,240,210,164,87,144,100,177,162,220,86,134,91,91,79,196,164,23,199,162,180,164,4,25,153,89,152,243,206,2,236,221,179,19,25,153,217, |
|
|
|
|
44,208,5,74,191,135,30,65,227,156,92,148,219,108,72,77,77,195,236,153,211,224,112,56,48,103,238,66,84,86,156,7,0,88,172,86,140,25,245,12,44,22,43,222,121,119,49,108,101,231,112,186,232,20,198,223,253, |
|
|
|
|
50,86,44,95,130,109,91,54,225,161,135,7,32,39,55,15,54,91,25,146,147,83,48,245,181,201,160,105,58,42,227,102,56,49,26,141,184,242,202,43,145,144,144,64,58,5,21,37,33,33,1,20,69,41,11,96,98,59,68,57,32, |
|
|
|
|
201,229,114,98,213,178,197,56,184,127,175,226,240,5,0,253,250,15,196,117,215,55,8,58,190,108,241,60,92,190,124,57,228,121,255,251,245,23,108,88,247,1,30,29,52,52,104,214,103,232,240,231,48,237,181,73, |
|
|
|
|
154,82,28,151,203,137,15,87,47,199,167,123,118,104,22,50,162,1,43,186,3,36,133,158,215,100,50,163,125,135,59,208,56,39,15,31,174,89,13,218,237,198,189,247,61,0,202,104,196,236,25,190,25,62,245,155,57, |
|
|
|
|
77,9,131,143,8,17,34,26,153,233,17,241,187,152,230,253,237,153,34,140,30,51,30,45,111,109,133,207,62,221,131,31,202,109,120,253,205,25,160,105,26,51,167,79,133,201,100,194,136,145,163,209,183,79,119,208, |
|
|
|
|
52,141,81,99,198,179,231,110,217,180,1,227,95,154,140,36,139,5,91,54,109,0,0,156,57,83,132,11,149,21,24,57,252,73,221,84,183,201,108,198,227,79,120,158,183,75,215,30,120,123,206,116,206,114,201,201,41, |
|
|
|
|
120,172,127,95,208,52,13,179,217,4,138,50,226,245,87,60,182,209,214,157,251,96,50,153,81,199,88,7,141,115,155,224,193,251,123,2,0,78,158,40,64,175,123,239,199,91,83,95,67,215,110,61,48,127,222,219,216, |
|
|
|
|
190,109,51,0,96,239,254,67,156,247,105,218,172,57,206,156,62,133,85,43,150,178,67,100,78,110,30,92,206,139,152,54,245,85,48,12,131,183,231,45,68,102,102,54,156,206,255,33,37,165,33,30,238,123,47,92,46, |
|
|
|
|
39,138,78,125,141,62,247,245,197,182,45,155,208,170,245,109,56,112,96,31,54,172,95,167,56,233,26,12,225,183,118,9,55,129,144,155,155,139,164,164,36,2,96,81,0,176,58,117,234,192,118,78,158,109,177,18,229, |
|
|
|
|
86,38,177,6,203,143,255,253,1,59,183,109,194,193,253,123,195,130,143,156,114,99,70,22,186,118,239,29,116,252,192,190,61,188,220,255,59,183,111,70,219,14,29,145,222,232,198,128,206,160,5,218,117,232,200, |
|
|
|
|
43,20,81,105,241,214,235,145,67,7,241,219,111,151,98,22,96,72,88,32,183,180,107,127,7,14,30,248,44,98,185,78,157,239,65,227,156,60,108,223,186,25,149,21,231,241,250,155,51,112,162,224,56,138,138,190,81, |
|
|
|
|
206,96,34,223,140,8,17,105,253,158,10,147,33,122,105,170,106,120,191,0,128,166,105,252,80,110,67,211,166,205,49,239,237,218,104,18,147,201,140,31,202,109,236,12,249,61,93,186,131,162,140,200,200,200,100, |
|
|
|
|
61,99,23,46,84,130,166,105,116,238,210,29,131,30,125,16,0,240,253,217,82,80,20,133,23,94,124,25,159,125,186,7,25,153,89,216,185,125,43,170,171,29,28,227,156,168,193,81,49,93,58,121,162,0,203,222,91,20, |
|
|
|
|
114,12,62,91,90,226,241,32,49,12,170,29,14,56,124,66,11,105,218,13,147,217,140,198,185,185,56,227,51,206,148,150,150,96,216,240,103,1,120,194,7,183,111,219,82,251,91,73,9,231,115,76,155,250,10,6,15,121, |
|
|
|
|
10,235,62,222,130,79,54,172,199,218,53,171,209,170,245,109,200,201,107,130,5,139,151,177,229,44,86,43,156,206,255,161,164,228,59,184,92,78,159,231,168,11,0,152,60,105,2,134,12,125,26,91,119,124,138,21, |
|
|
|
|
203,150,96,195,250,181,209,159,75,224,176,169,169,196,191,224,186,88,21,69,123,75,122,161,80,250,198,117,26,195,125,48,226,53,131,138,4,28,240,45,239,251,147,255,253,24,197,236,204,68,190,84,206,7,186, |
|
|
|
|
188,255,127,112,255,167,248,246,76,81,152,217,37,131,79,3,253,14,103,75,138,67,194,65,168,231,249,252,192,167,248,238,91,113,49,210,151,46,121,238,85,255,186,235,57,215,66,237,221,205,223,75,52,119,246, |
|
|
|
|
52,180,190,173,93,208,241,171,175,190,70,214,103,21,122,157,179,37,197,56,91,90,140,75,151,92,250,48,36,116,98,140,43,245,156,124,175,75,81,20,114,114,243,0,0,149,21,21,112,56,236,200,200,202,198,153, |
|
|
|
|
162,83,172,17,208,32,37,25,103,75,75,208,187,207,3,104,215,254,14,56,157,78,148,150,20,195,229,114,34,201,98,65,90,90,35,48,12,112,162,240,56,123,78,215,110,61,241,249,129,207,224,114,94,132,197,98,69, |
|
|
|
|
171,214,183,225,147,143,63,130,195,110,151,237,14,19,10,143,0,0,32,0,73,68,65,84,29,77,102,51,172,22,43,156,78,39,210,210,211,81,244,205,215,160,105,26,105,105,233,176,88,235,163,232,212,215,126,225,30, |
|
|
|
|
153,89,217,48,155,235,194,86,118,14,14,135,231,57,44,22,43,210,210,27,129,166,221,40,58,245,13,136,16,33,18,5,11,81,79,147,39,10,108,186,60,247,237,153,48,249,36,131,152,250,250,20,22,188,104,154,198, |
|
|
|
|
176,193,143,225,246,182,29,224,168,182,99,204,168,17,126,75,21,102,190,245,6,76,102,51,92,174,218,177,121,228,240,39,113,103,199,187,209,56,39,23,103,207,150,178,112,160,85,113,57,157,44,120,133,135,85, |
|
|
|
|
119,216,191,25,48,40,183,149,225,145,1,143,179,199,210,210,210,113,186,6,200,74,75,139,145,156,146,130,179,165,30,240,74,78,73,225,188,79,181,195,129,105,83,95,133,201,100,198,252,197,203,81,89,113,30, |
|
|
|
|
133,5,199,209,56,39,15,207,142,24,234,55,190,38,39,39,195,229,228,174,95,135,195,142,169,175,79,129,201,108,198,226,247,86,162,162,226,71,28,61,124,72,213,73,4,145,234,76,38,142,116,40,178,133,32,250, |
|
|
|
|
42,206,129,207,246,68,116,175,74,85,70,57,188,75,190,233,229,197,74,197,249,31,241,241,186,15,194,150,145,203,19,38,244,58,74,67,141,86,66,15,197,158,175,151,250,241,149,249,139,150,193,225,176,227,108, |
|
|
|
|
105,9,42,83,42,112,162,224,56,94,125,227,45,220,219,189,115,13,180,100,97,208,144,97,24,59,122,36,110,109,213,6,22,139,21,205,242,91,160,178,226,60,40,35,133,5,139,150,163,176,224,56,204,102,51,6,63,57, |
|
|
|
|
12,195,134,60,142,246,29,238,128,197,106,197,13,105,233,112,56,236,104,144,156,2,163,209,136,156,220,60,184,221,110,84,86,86,200,242,236,89,89,217,24,62,114,20,140,148,17,7,246,239,67,225,241,99,104,223, |
|
|
|
|
225,78,60,250,248,96,28,61,114,8,163,199,142,199,212,215,38,163,232,212,55,152,49,103,30,108,101,231,64,211,52,186,245,232,133,41,147,38,192,98,177,98,197,251,107,113,228,240,23,48,155,235,98,248,72,43, |
|
|
|
|
158,28,244,104,84,7,67,34,68,136,104,129,177,212,241,126,121,229,194,133,74,224,66,37,251,247,15,229,182,160,223,215,127,180,166,22,88,124,96,43,240,92,47,180,237,220,177,53,194,120,34,106,16,146,113, |
|
|
|
|
60,83,166,46,203,109,101,112,56,236,120,105,210,43,56,123,182,20,93,186,246,192,156,89,111,1,0,118,108,219,130,151,94,126,21,22,139,21,25,25,161,211,207,247,123,232,17,56,157,23,65,187,105,152,205,102, |
|
|
|
|
156,46,250,6,14,135,3,79,143,120,22,19,39,191,134,189,187,119,34,39,55,15,159,124,252,81,216,103,25,49,242,57,216,202,202,224,166,105,152,205,117,81,90,92,172,166,18,215,254,167,134,179,31,42,105,54,169, |
|
|
|
|
57,175,163,5,8,76,148,166,47,220,97,135,114,192,23,17,237,25,255,106,94,63,30,235,52,146,52,206,201,131,195,97,199,184,231,159,101,143,37,39,115,207,8,186,92,78,124,126,240,51,52,107,214,2,239,45,158, |
|
|
|
|
207,14,82,123,247,236,194,146,69,158,191,23,44,94,134,156,220,60,108,219,186,25,93,187,247,196,246,173,155,113,162,240,56,24,134,193,144,161,79,179,229,228,24,87,188,85,151,158,214,8,221,186,116,100,103, |
|
|
|
|
32,251,220,223,15,207,63,59,28,14,135,29,69,167,190,198,189,247,245,69,73,241,119,200,205,107,130,197,11,230,161,180,164,118,0,236,222,179,55,182,110,217,132,197,11,230,1,0,22,45,93,137,204,172,108,191, |
|
|
|
|
50,68,136,16,137,59,250,34,117,160,162,49,90,237,112,224,229,137,47,68,44,119,182,180,4,111,207,174,205,140,184,125,219,22,63,15,216,164,23,199,161,218,97,7,77,211,120,97,204,179,184,181,85,27,100,100, |
|
|
|
|
102,99,210,139,99,97,179,121,128,246,68,97,1,158,24,216,31,119,117,186,7,27,55,124,132,213,43,150,194,233,227,189,242,62,119,97,193,49,100,102,101,131,50,82,24,54,120,32,27,234,56,114,248,80,180,107,127, |
|
|
|
|
7,114,114,243,80,90,82,12,167,243,34,0,6,179,166,191,201,94,163,164,164,24,179,102,120,50,80,30,216,255,25,50,179,178,1,0,67,158,24,192,70,94,68,77,149,245,170,219,209,88,207,175,67,175,90,162,88,64,34, |
|
|
|
|
144,69,224,75,11,215,210,170,247,75,137,103,201,207,111,206,134,98,132,238,132,66,203,173,173,218,96,213,138,165,236,223,39,10,11,144,159,223,2,167,107,194,23,249,118,115,82,228,200,225,47,88,248,162, |
|
|
|
|
40,10,249,45,90,226,141,183,102,178,191,59,236,158,1,249,249,103,135,99,200,176,225,72,73,105,136,153,111,77,69,97,193,49,228,55,111,137,21,203,150,176,101,11,11,142,163,117,155,219,9,128,17,33,253,185, |
|
|
|
|
206,250,60,121,141,86,67,104,59,53,70,236,145,104,123,191,124,133,166,233,160,20,242,92,186,229,114,57,61,227,85,205,111,23,2,34,41,206,156,46,98,141,102,154,166,241,249,193,253,248,252,224,126,78,224, |
|
|
|
|
91,247,225,251,97,223,231,108,105,9,59,54,250,22,115,185,156,216,182,117,83,208,24,86,90,90,59,102,184,106,66,244,1,224,116,209,55,81,11,109,215,138,237,236,221,32,156,166,233,160,92,8,190,117,27,184, |
|
|
|
|
145,56,0,124,127,182,196,207,219,11,0,55,55,203,199,247,165,193,199,189,50,249,149,169,120,103,206,12,206,53,143,98,196,3,242,89,88,189,114,153,190,0,76,88,135,39,44,233,6,1,51,2,95,122,134,47,161,231, |
|
|
|
|
40,241,29,78,23,125,131,190,15,246,247,59,230,116,58,253,54,166,244,141,145,167,221,52,40,99,109,202,84,91,217,57,100,102,101,163,176,192,179,246,43,53,53,13,159,108,88,175,170,126,186,125,214,120,209, |
|
|
|
|
52,13,91,217,57,76,158,56,129,77,21,236,149,162,83,223,224,249,103,135,35,45,45,29,43,222,95,135,110,247,220,9,187,189,10,89,217,217,40,44,56,6,192,179,70,108,165,15,144,69,83,14,31,254,154,220,131,220, |
|
|
|
|
131,136,218,6,106,96,244,77,12,110,92,171,52,55,243,241,28,40,241,12,66,146,48,196,149,158,71,89,135,147,146,44,152,62,107,46,190,61,83,4,147,201,140,234,106,7,102,190,245,134,39,116,54,160,220,140,217, |
|
|
|
|
115,253,32,237,157,57,51,241,253,217,82,152,76,38,140,159,56,5,22,139,5,180,155,70,146,197,130,51,167,139,48,245,181,201,65,223,189,113,78,158,159,157,194,203,150,10,163,36,73,22,43,82,83,211,34,38,224, |
|
|
|
|
208,37,128,133,131,47,2,89,177,11,94,177,2,95,90,251,22,188,203,50,12,78,23,157,194,83,195,173,120,118,212,88,148,151,219,80,110,59,135,19,133,5,40,45,41,193,176,225,35,81,93,237,64,219,118,29,216,83, |
|
|
|
|
10,11,143,225,185,209,227,208,174,253,29,40,42,250,6,219,183,109,198,107,111,76,7,85,135,66,146,197,130,212,244,70,108,34,142,104,201,134,245,235,48,115,206,60,108,88,191,14,78,231,69,56,157,23,81,90, |
|
|
|
|
92,140,71,31,31,140,19,5,199,144,210,176,33,42,42,206,195,229,116,226,195,15,86,225,141,183,102,129,162,140,236,102,153,36,17,7,145,184,237,243,101,9,185,209,183,181,27,235,54,135,232,97,142,100,152,213, |
|
|
|
|
155,34,107,234,113,170,171,29,236,182,8,247,63,240,16,238,235,251,32,230,206,153,197,89,238,153,167,159,12,210,189,119,230,47,193,230,141,27,176,121,227,199,130,85,182,113,142,199,171,230,245,178,102, |
|
|
|
|
100,102,161,178,162,130,77,76,147,100,177,192,124,141,9,229,229,54,152,76,102,207,239,149,21,168,172,60,175,187,207,158,32,76,71,12,4,178,8,124,233,226,121,229,188,183,86,96,143,166,105,60,49,176,63,190, |
|
|
|
|
60,122,24,128,39,11,34,0,60,55,98,40,190,47,45,129,211,121,17,99,71,143,196,236,153,158,125,187,170,29,14,140,28,241,36,50,50,179,97,164,140,56,91,90,130,145,195,135,194,233,114,162,188,220,134,97,131, |
|
|
|
|
7,178,215,158,61,99,26,74,75,138,217,119,125,242,137,199,100,55,34,74,74,138,131,60,86,27,214,175,197,212,215,38,195,98,181,214,100,60,44,131,211,121,17,7,247,239,67,90,122,35,84,156,63,143,33,131,6,0, |
|
|
|
|
0,74,75,138,241,252,200,167,107,178,58,150,176,199,137,16,33,18,135,182,55,59,17,76,190,163,216,19,229,240,126,133,29,31,229,82,70,190,169,244,25,125,182,157,176,97,180,81,22,71,181,29,169,169,233,188, |
|
|
|
|
203,223,152,145,9,151,211,201,9,95,145,244,237,153,103,159,71,255,71,6,226,206,142,119,99,249,234,181,160,40,10,119,118,188,27,189,251,220,199,150,25,249,220,24,164,166,165,35,201,98,193,226,229,171,209, |
|
|
|
|
182,93,7,140,28,53,6,195,158,30,169,232,119,87,194,14,76,148,162,48,225,254,38,18,27,224,165,69,248,138,149,208,195,192,178,13,174,179,224,194,207,145,227,160,189,0,230,11,102,123,247,236,98,59,55,223, |
|
|
|
|
117,98,190,177,241,0,80,89,89,193,153,9,170,52,96,109,153,18,158,49,151,211,201,153,254,183,232,84,112,220,125,97,193,49,54,212,208,87,108,182,50,216,108,101,146,158,163,190,181,30,233,60,136,144,62,62, |
|
|
|
|
214,120,44,134,194,15,201,103,151,7,30,137,136,19,147,201,140,129,131,134,0,0,58,119,233,142,185,115,102,114,150,75,74,178,224,157,119,107,183,35,120,230,169,33,104,156,147,135,242,242,218,49,250,158, |
|
|
|
|
174,221,209,32,57,5,46,167,19,31,133,201,24,222,32,57,25,109,219,117,192,125,189,187,2,0,134,62,53,2,119,222,117,55,54,109,252,24,179,222,126,23,171,87,46,135,201,100,70,78,78,46,94,159,50,17,29,59,117, |
|
|
|
|
198,166,79,214,227,163,15,63,64,29,170,14,214,174,223,140,165,75,22,232,170,158,121,3,152,152,117,95,4,206,244,63,40,199,51,124,197,218,104,44,253,50,100,192,35,66,132,72,244,198,61,95,91,66,170,93,193, |
|
|
|
|
48,218,244,158,73,234,167,117,226,253,34,235,191,244,97,31,159,60,81,136,101,239,45,14,249,59,87,8,98,181,195,142,166,125,31,100,255,62,91,90,130,202,202,10,76,120,105,74,72,0,99,24,32,53,53,29,148,145, |
|
|
|
|
194,220,249,181,81,50,46,151,19,23,42,43,80,237,176,163,113,78,46,50,50,179,240,249,129,253,160,105,26,183,220,218,26,169,105,233,236,178,139,202,202,10,191,189,249,228,177,49,149,85,200,68,190,10,18, |
|
|
|
|
13,37,9,236,112,201,0,196,232,246,94,209,132,47,181,238,39,199,218,175,32,47,24,223,208,11,68,183,126,245,2,184,196,251,69,36,22,250,123,161,6,172,180,182,173,73,171,213,247,255,194,150,209,215,55,215, |
|
|
|
|
14,124,17,155,41,126,197,229,114,98,249,210,197,194,244,177,166,240,153,211,69,104,144,156,130,27,82,211,240,67,185,13,223,159,45,229,117,122,181,195,14,218,77,99,196,83,131,131,190,223,166,79,62,70,199, |
|
|
|
|
187,238,70,70,102,22,166,79,125,205,115,159,51,69,248,161,220,134,165,75,22,6,233,51,19,161,109,104,69,255,19,229,0,30,37,33,137,64,152,246,193,67,235,240,165,245,208,67,46,8,3,192,43,28,145,8,1,47,34, |
|
|
|
|
68,68,246,140,177,62,112,234,10,194,212,130,47,185,46,41,58,26,69,168,222,201,250,110,12,255,119,80,201,238,50,8,220,128,89,75,106,237,27,170,8,0,59,183,111,193,133,202,74,76,125,109,50,102,204,158,135, |
|
|
|
|
157,59,182,226,219,211,69,184,41,39,55,226,181,206,158,45,197,217,210,18,76,157,54,11,159,126,186,27,38,147,9,229,54,27,78,158,40,192,231,7,247,99,216,211,207,192,225,112,160,188,102,211,243,79,247,236, |
|
|
|
|
194,146,101,171,81,135,162,112,242,68,129,110,82,207,135,4,176,80,202,33,167,219,159,64,88,252,128,23,129,47,105,114,125,253,36,217,238,31,169,140,82,191,135,157,197,39,179,147,68,136,200,102,192,102, |
|
|
|
|
100,102,161,107,183,158,152,61,243,45,217,250,203,180,180,116,156,63,127,30,180,207,246,17,96,24,88,44,86,140,30,59,30,19,198,141,142,74,29,200,101,15,104,193,152,149,220,13,10,29,175,212,72,59,47,106, |
|
|
|
|
220,149,246,14,122,30,78,180,100,222,86,87,59,48,101,210,132,136,245,89,93,237,240,105,255,158,194,222,53,222,251,246,238,198,153,211,167,208,180,89,115,220,148,147,11,151,243,34,38,135,216,188,251,229, |
|
|
|
|
137,47,160,186,102,227,236,241,227,70,225,206,187,238,70,106,106,26,202,109,101,236,90,50,154,166,241,194,216,81,112,94,188,88,123,127,135,3,131,31,127,4,29,59,117,70,227,156,60,118,109,252,151,71,15, |
|
|
|
|
225,116,145,62,178,35,39,170,211,193,48,50,196,107,199,7,132,69,203,40,213,162,215,75,15,240,165,135,122,214,219,59,105,169,45,146,16,104,34,122,233,143,77,166,186,200,204,202,150,181,125,118,235,209, |
|
|
|
|
11,91,55,111,130,205,86,134,86,109,110,67,209,169,111,224,186,120,17,148,209,136,220,188,38,186,134,47,45,64,152,218,93,167,92,161,87,250,244,126,197,82,255,160,156,206,114,109,180,29,170,220,215,39,11, |
|
|
|
|
67,126,163,11,149,149,216,185,125,107,196,239,30,120,175,125,123,119,115,234,152,239,166,222,190,16,182,238,195,247,253,142,57,236,14,56,236,14,93,168,88,98,56,163,67,107,198,71,172,26,68,122,75,203,174, |
|
|
|
|
198,53,163,177,79,152,210,231,40,85,86,233,186,214,170,142,104,73,218,180,185,89,210,249,124,54,245,37,247,136,191,123,132,134,45,51,50,179,178,225,116,94,244,203,114,234,43,22,139,5,169,105,141,96,183, |
|
|
|
|
87,177,51,211,14,135,29,0,144,154,150,14,139,197,2,151,211,137,210,210,98,246,154,22,139,5,118,135,29,89,89,217,40,58,245,13,246,236,222,9,187,195,238,241,120,141,25,143,197,11,223,133,237,220,127,224, |
|
|
|
|
172,185,158,197,98,245,108,23,81,113,158,221,76,221,98,177,130,50,26,97,54,155,107,182,150,56,7,167,243,34,114,243,110,246,236,243,87,82,28,87,6,173,98,70,159,2,158,47,62,151,101,34,23,208,4,136,234,97, |
|
|
|
|
140,209,158,141,173,46,244,43,177,102,53,210,77,194,63,143,186,155,146,39,234,79,65,24,77,62,151,222,58,7,45,27,213,4,190,24,217,202,69,211,251,21,43,144,69,188,96,68,52,51,110,212,24,15,227,38,76,68, |
|
|
|
|
185,205,134,228,228,20,0,192,171,83,94,10,130,175,165,43,215,224,232,225,67,72,78,73,129,217,92,23,159,124,252,17,182,109,221,132,86,173,111,195,11,47,78,194,158,93,59,144,223,188,37,142,30,57,132,37, |
|
|
|
|
139,222,69,102,86,22,6,63,57,28,0,112,162,240,24,74,74,138,49,234,249,241,88,188,112,30,82,82,26,194,106,177,34,39,55,15,70,138,66,193,241,99,48,155,235,98,252,196,201,40,45,41,198,240,214,183,97,239, |
|
|
|
|
238,29,88,243,254,42,180,190,237,118,60,248,240,0,22,188,242,91,220,130,210,226,239,224,116,94,68,74,202,63,97,183,87,97,202,164,9,113,9,97,178,117,137,81,130,47,41,23,144,205,251,38,58,252,144,81,231, |
|
|
|
|
219,232,84,95,69,189,127,164,201,91,48,138,62,160,178,201,52,24,197,109,153,68,33,70,135,20,67,68,110,239,149,111,133,232,193,64,210,138,49,170,212,115,240,189,110,229,79,85,138,117,130,162,223,77,12, |
|
|
|
|
124,129,81,230,22,50,103,61,148,190,144,90,188,119,44,236,165,85,110,15,98,147,112,144,48,68,34,90,148,137,19,198,178,255,189,113,235,238,160,230,212,170,245,109,56,184,127,31,102,205,240,108,202,190, |
|
|
|
|
108,229,26,246,183,126,15,245,199,148,73,19,112,162,240,56,40,138,194,250,141,219,177,114,185,39,245,115,110,94,19,220,221,241,246,160,253,250,182,110,217,132,33,67,135,227,195,15,86,161,242,252,121,36, |
|
|
|
|
167,52,132,185,110,93,44,94,48,15,165,37,197,216,179,115,59,94,126,117,42,214,188,191,10,0,96,54,155,217,245,33,203,87,175,133,205,86,134,197,11,230,193,100,54,99,219,206,125,234,1,152,64,43,213,91,143, |
|
|
|
|
114,55,121,121,243,72,196,90,196,76,116,222,83,11,147,224,90,217,74,65,9,248,18,123,122,60,173,13,79,212,155,194,233,5,198,180,166,68,177,12,94,241,6,95,58,24,167,53,247,96,85,246,95,68,129,24,129,47, |
|
|
|
|
34,154,105,54,53,253,78,146,197,130,167,135,63,7,0,72,78,73,65,74,74,195,160,178,190,139,210,1,248,109,106,158,223,188,37,70,14,247,236,221,67,211,52,42,43,206,179,107,199,74,75,190,227,220,44,157,107, |
|
|
|
|
62,198,121,177,54,156,208,77,211,176,90,173,236,111,190,27,171,211,180,27,69,167,60,225,150,46,167,19,230,186,117,69,215,129,90,237,81,14,16,83,164,155,83,112,188,82,50,244,80,109,239,23,35,221,160,208, |
|
|
|
|
206,88,25,65,9,165,64,152,232,215,228,19,125,3,70,190,251,242,244,126,5,21,99,180,237,245,76,136,53,216,96,24,198,239,159,154,247,82,235,190,98,158,145,192,151,198,225,75,230,103,224,115,223,168,121,191, |
|
|
|
|
162,40,94,16,35,66,68,143,240,5,0,253,30,124,4,229,229,101,120,117,202,75,120,105,194,24,206,242,103,207,150,32,35,51,139,253,59,45,189,17,251,223,14,135,29,153,153,181,201,58,146,83,26,162,164,248,59, |
|
|
|
|
15,72,185,105,222,109,216,233,188,24,242,55,183,219,237,247,55,237,115,93,169,34,24,194,36,238,129,22,248,143,79,153,88,131,47,165,65,87,249,7,210,222,128,196,165,199,98,65,85,136,206,73,214,81,5,149, |
|
|
|
|
69,113,155,93,225,144,72,161,146,24,78,49,148,242,86,169,57,171,28,143,169,174,245,146,245,78,142,203,196,12,124,201,24,122,40,15,124,105,167,222,181,54,72,18,33,18,77,169,174,118,160,227,93,157,81,110, |
|
|
|
|
43,67,219,118,119,192,110,183,7,149,57,122,248,16,22,44,89,142,202,138,10,164,166,165,33,39,55,15,7,247,127,6,0,88,178,240,93,76,122,229,117,108,223,178,9,205,154,183,192,209,195,95,248,167,153,15,33, |
|
|
|
|
5,5,199,240,224,195,3,176,109,203,70,54,9,71,92,194,48,163,143,27,202,9,95,90,245,126,201,53,126,69,107,88,82,34,163,167,22,116,81,105,239,151,18,239,30,13,86,72,20,162,16,114,193,19,89,87,17,63,224,21, |
|
|
|
|
202,251,21,213,198,18,195,240,37,227,215,214,143,129,34,80,170,236,191,144,141,153,137,232,182,95,95,187,102,53,42,43,206,35,53,45,29,75,22,205,199,218,53,171,1,0,165,37,197,152,93,179,230,171,162,226, |
|
|
|
|
60,134,62,241,24,186,245,232,133,19,133,5,0,60,161,128,0,131,109,91,55,193,102,59,135,252,230,45,177,119,247,78,236,217,189,19,0,80,82,82,140,89,51,166,250,221,107,230,244,169,168,168,201,110,56,243,173, |
|
|
|
|
55,208,225,142,142,72,75,111,132,3,159,125,234,183,7,152,195,94,197,254,125,228,208,23,40,250,166,54,195,227,204,183,106,175,1,0,67,30,31,160,136,177,202,128,9,189,145,173,206,54,101,142,7,248,146,195, |
|
|
|
|
251,165,72,248,161,22,117,64,11,186,171,176,157,34,40,81,25,24,201,207,27,254,103,238,4,28,114,171,86,162,124,223,70,24,84,197,74,54,195,88,135,46,185,239,17,235,94,175,104,195,151,166,67,15,201,158,46, |
|
|
|
|
68,136,200,34,7,15,124,198,54,167,202,74,207,255,187,92,78,148,214,164,164,55,153,204,160,140,70,44,89,52,31,201,201,41,120,225,197,73,88,187,166,118,191,156,211,69,167,112,186,232,148,95,123,118,57,157, |
|
|
|
|
236,154,46,239,181,125,83,198,187,156,78,108,221,188,145,253,219,127,157,23,205,254,237,112,216,217,116,247,129,215,0,252,215,163,197,165,33,171,1,240,82,3,190,228,60,77,218,228,163,54,247,30,211,149, |
|
|
|
|
237,43,147,157,162,148,247,75,121,29,82,70,18,229,253,70,194,61,91,196,27,166,77,232,82,226,62,196,235,165,7,248,210,134,238,105,65,72,191,68,68,143,125,61,195,48,48,155,205,24,245,252,56,24,141,70,56, |
|
|
|
|
157,78,44,89,56,31,14,71,21,169,80,2,95,170,49,134,40,131,87,5,239,151,86,194,15,117,51,121,160,2,124,73,245,126,233,49,252,48,34,128,169,5,71,196,27,166,45,5,97,52,152,141,143,192,151,90,240,165,80,232, |
|
|
|
|
33,241,126,17,33,34,91,159,23,169,57,85,86,86,96,228,240,161,162,238,193,121,109,141,37,150,10,215,95,134,12,67,244,125,15,45,218,26,82,146,133,40,0,95,90,9,61,84,213,251,21,5,93,14,180,123,35,234,176, |
|
|
|
|
78,116,82,114,123,150,209,230,11,212,33,190,225,135,74,215,139,31,128,241,1,160,72,80,38,5,218,8,136,69,143,200,149,218,152,89,111,94,47,2,95,218,209,73,34,68,136,200,213,95,50,49,250,190,34,89,74,75, |
|
|
|
|
225,136,82,163,18,52,6,95,209,170,50,49,222,47,173,188,23,47,117,84,83,103,101,222,232,91,174,106,85,194,251,197,87,95,148,184,79,162,82,15,45,117,211,102,33,80,72,128,75,123,224,21,245,107,232,120,189, |
|
|
|
|
151,30,225,139,120,191,136,16,81,167,15,21,190,129,41,195,187,188,86,189,95,66,67,148,120,121,16,116,16,214,37,231,120,165,22,124,105,199,251,165,202,103,208,201,140,131,54,225,75,13,239,151,86,109,111, |
|
|
|
|
63,0,19,212,193,241,0,44,57,51,38,198,34,140,49,49,182,155,189,156,215,213,131,215,139,192,87,108,195,151,80,29,60,124,248,107,197,159,137,220,35,254,238,65,230,50,196,195,9,111,8,171,53,48,116,243,241, |
|
|
|
|
98,10,190,4,94,139,191,247,75,187,141,197,187,63,107,40,155,54,98,70,79,37,244,85,129,73,107,185,214,125,133,186,23,47,27,72,238,240,67,37,0,76,40,72,241,133,48,57,193,73,175,48,166,149,208,45,2,94,81, |
|
|
|
|
0,47,157,195,151,164,231,32,214,34,17,34,170,216,71,177,236,253,226,83,47,92,230,128,224,181,52,74,24,182,114,175,167,86,112,188,138,26,124,49,234,36,15,137,152,124,67,111,227,149,92,222,48,133,108,39, |
|
|
|
|
57,55,122,230,173,247,50,122,191,66,134,31,202,168,39,137,234,232,9,163,192,134,115,220,149,16,45,48,211,234,250,24,173,67,151,44,215,34,240,165,24,124,73,73,4,16,27,70,47,201,210,74,68,251,58,26,11,99, |
|
|
|
|
149,102,218,37,87,253,68,186,151,210,123,112,42,60,86,41,9,95,98,174,43,108,93,155,190,188,95,124,121,138,215,4,130,216,73,3,133,19,190,68,86,39,233,161,135,242,123,191,212,151,68,62,157,155,20,47,88, |
|
|
|
|
96,133,43,109,204,144,68,1,202,214,1,1,175,232,129,151,150,224,75,201,14,158,8,17,34,114,52,39,137,253,138,142,218,176,108,94,48,13,246,103,81,135,47,165,170,142,145,30,70,201,23,190,244,234,253,18,21, |
|
|
|
|
74,171,49,93,148,170,111,188,67,15,37,215,129,250,58,144,40,22,168,196,158,67,50,29,234,19,58,99,1,188,8,124,201,7,95,36,244,144,8,145,232,247,239,114,132,30,234,173,46,4,219,40,53,117,161,153,212,222, |
|
|
|
|
10,27,187,178,133,28,242,188,152,156,235,190,228,50,242,137,253,22,61,125,20,189,238,75,225,112,221,192,203,71,59,252,48,8,192,196,118,124,98,193,141,128,88,252,64,87,92,128,151,66,240,37,235,128,74,224, |
|
|
|
|
139,8,17,2,95,145,154,172,46,214,126,5,70,234,132,143,196,210,212,254,74,81,4,47,77,192,151,192,208,195,120,241,126,113,233,112,180,245,86,174,73,98,49,240,21,203,222,175,176,0,198,185,65,92,4,8,19,3, |
|
|
|
|
84,4,196,180,53,75,162,201,180,244,42,131,151,168,91,202,156,186,149,192,151,118,12,60,18,214,76,68,63,240,37,67,183,165,225,245,204,145,19,127,69,134,48,64,123,222,48,70,201,100,72,49,8,95,90,179,155, |
|
|
|
|
212,208,143,104,232,172,220,118,138,28,250,32,230,185,197,122,191,162,6,96,98,59,65,177,139,99,227,113,239,47,45,117,26,74,121,187,162,185,142,72,207,94,47,2,95,68,136,144,49,64,120,59,141,205,208,195, |
|
|
|
|
80,239,194,61,81,204,35,103,134,6,188,97,242,172,167,81,96,156,143,2,124,9,45,46,54,241,134,86,189,95,190,122,172,248,122,198,40,216,41,114,237,247,165,246,132,145,146,225,135,156,0,230,175,8,226,146, |
|
|
|
|
111,72,245,106,5,126,172,88,6,178,88,219,15,76,150,107,70,1,188,68,221,86,33,175,23,129,47,34,68,136,40,13,95,122,243,126,9,237,154,249,64,24,107,99,104,208,176,85,29,188,162,8,95,74,100,61,100,116,24, |
|
|
|
|
70,27,73,127,149,246,224,42,177,191,28,35,211,254,98,124,251,43,225,222,47,141,108,196,44,36,236,48,90,155,49,235,21,202,180,208,25,104,62,37,189,94,192,75,224,73,209,3,47,2,95,106,233,116,155,54,55,75, |
|
|
|
|
186,31,159,77,125,201,61,226,239,30,66,122,191,88,133,47,185,141,88,53,97,76,238,132,18,162,146,90,232,20,190,248,175,251,18,249,122,81,158,252,150,98,31,203,9,98,74,218,77,114,173,251,82,171,189,169, |
|
|
|
|
149,124,35,8,192,194,117,104,90,218,140,153,207,135,141,6,156,197,219,62,96,4,188,180,14,95,242,164,153,143,119,207,23,217,7,140,136,246,251,114,25,224,75,111,237,49,128,174,228,128,48,190,125,182,215, |
|
|
|
|
232,85,51,91,159,162,224,197,227,6,146,54,221,149,9,190,132,140,117,17,19,111,232,96,172,81,210,139,43,9,114,228,176,83,228,88,7,40,194,126,209,146,247,43,36,128,41,97,160,168,185,198,43,158,23,205,43, |
|
|
|
|
191,167,7,35,231,197,8,120,65,137,61,91,8,124,17,248,34,18,207,240,165,118,95,172,229,246,40,6,194,148,50,94,213,250,44,106,121,189,36,61,163,64,248,146,53,244,80,83,153,15,25,89,116,87,13,189,148,37, |
|
|
|
|
228,80,33,248,146,211,251,21,21,0,243,245,86,241,245,130,5,158,39,228,69,137,113,163,15,216,212,18,116,169,14,94,26,129,47,205,132,28,198,9,124,69,187,99,38,66,68,10,124,197,67,232,33,95,47,152,239,43, |
|
|
|
|
234,197,228,80,28,188,212,130,47,153,50,30,202,26,122,168,179,73,6,185,39,16,148,172,67,177,240,165,196,183,147,226,253,82,35,252,16,0,18,132,84,166,55,110,85,46,67,197,123,61,98,224,136,171,51,165,195, |
|
|
|
|
11,101,189,7,195,200,226,241,18,155,217,80,180,215,75,224,90,47,33,105,91,9,124,17,240,34,66,68,110,29,140,117,248,242,123,63,14,27,69,225,97,40,72,110,185,181,53,250,15,24,40,219,16,41,54,220,80,144, |
|
|
|
|
215,75,131,240,37,199,4,132,158,188,95,126,223,44,32,179,167,150,30,89,13,248,18,164,19,34,18,111,104,117,172,79,136,244,48,220,202,192,200,211,17,68,1,44,244,12,91,106,132,23,202,121,31,70,202,136,18, |
|
|
|
|
0,53,177,2,94,66,59,52,254,33,135,140,228,107,17,248,34,16,70,68,47,186,23,63,235,190,132,142,77,124,195,171,229,170,147,36,139,5,55,220,144,38,25,186,110,185,181,53,186,116,237,30,182,124,151,174,221, |
|
|
|
|
113,203,173,173,197,219,91,60,203,114,141,103,20,69,161,105,179,230,104,156,147,23,116,153,212,180,52,52,206,201,11,170,220,36,139,5,205,242,155,131,162,40,0,192,141,153,153,104,150,223,2,169,105,233, |
|
|
|
|
18,117,52,180,93,74,81,20,50,179,178,253,174,105,50,155,145,223,188,5,76,38,83,208,121,249,205,91,34,57,165,33,0,192,98,177,34,191,121,75,228,55,111,169,193,54,160,110,59,150,117,146,88,174,117,128,34, |
|
|
|
|
67,15,181,232,253,242,3,176,112,251,54,9,133,48,41,32,22,143,64,198,5,90,106,133,22,42,1,93,114,92,79,44,116,105,29,188,180,232,245,34,240,69,192,139,72,28,194,151,206,116,220,111,98,24,76,216,247,168, |
|
|
|
|
151,148,132,166,205,242,145,145,145,201,26,229,25,25,153,72,74,178,248,29,247,246,201,215,92,99,66,211,102,249,104,144,156,204,1,29,249,184,33,213,31,176,76,38,79,249,198,141,115,69,3,87,224,99,91,44, |
|
|
|
|
22,52,72,78,9,123,126,131,228,20,88,44,22,113,224,197,211,235,21,106,76,75,178,88,49,251,157,5,24,246,244,72,172,250,224,35,204,126,103,62,146,107,158,247,145,71,31,199,252,69,75,145,220,192,191,254,6, |
|
|
|
|
60,58,8,179,231,46,132,197,98,5,3,6,207,141,30,135,167,134,63,139,113,227,39,226,171,194,211,152,51,119,33,82,211,210,101,93,247,213,169,115,23,44,95,181,22,117,234,80,236,177,172,172,108,204,157,191, |
|
|
|
|
4,15,245,127,212,239,188,204,172,108,204,93,176,4,221,123,246,6,0,180,190,237,118,76,126,245,13,12,25,246,52,118,127,246,5,118,127,246,5,58,117,238,162,78,251,142,224,248,80,163,217,10,157,51,231,165, |
|
|
|
|
135,42,195,151,208,208,195,104,142,245,146,214,128,169,153,5,49,84,37,233,101,29,25,163,33,183,183,86,175,43,125,17,165,122,39,70,55,201,6,63,240,226,55,81,66,192,139,64,24,17,157,104,164,96,93,141,21, |
|
|
|
|
248,226,213,201,214,216,2,77,155,53,199,160,193,79,226,228,137,66,52,104,144,140,245,235,214,192,233,114,98,230,219,239,226,108,105,9,206,156,46,66,151,174,61,176,236,189,133,216,177,125,43,146,146,44, |
|
|
|
|
152,183,96,9,190,60,122,4,201,201,41,40,47,47,195,194,249,115,97,52,82,88,244,222,42,156,57,125,10,20,101,4,69,81,152,60,105,60,0,96,198,156,119,81,237,112,192,229,116,162,65,114,10,46,84,86,136,170,98, |
|
|
|
|
147,201,132,140,204,44,208,52,29,12,60,73,22,164,166,165,225,108,105,9,92,46,23,167,22,100,100,102,193,100,50,215,148,113,178,0,231,125,30,47,120,158,57,93,36,125,76,99,0,135,195,142,167,135,14,2,0,244, |
|
|
|
|
125,176,63,250,62,248,48,230,204,154,14,0,248,242,200,33,116,237,222,19,239,45,94,192,222,187,89,243,22,56,91,82,236,119,237,137,19,198,160,178,178,2,38,147,25,221,122,244,194,91,51,222,70,255,7,239,11, |
|
|
|
|
170,3,177,155,45,63,248,208,0,108,221,188,17,221,123,246,198,134,245,235,216,227,133,199,143,161,83,231,46,88,188,96,30,123,172,91,143,222,56,114,248,11,191,243,183,110,217,196,150,201,111,222,18,147, |
|
|
|
|
95,125,3,14,187,29,133,5,199,100,31,95,188,182,118,184,223,35,53,95,169,38,176,162,235,13,21,207,128,41,111,183,166,166,247,11,136,16,130,200,240,136,175,22,18,22,160,132,103,39,148,247,72,13,111,18,223, |
|
|
|
|
123,51,26,216,111,66,233,186,151,10,94,82,211,162,170,225,241,18,243,172,209,130,47,18,114,72,132,8,129,175,88,107,215,190,253,90,80,63,92,115,188,89,126,115,84,86,84,96,233,146,133,120,253,213,151,81, |
|
|
|
|
90,90,2,192,19,94,246,242,75,47,96,217,123,139,48,126,236,115,184,167,107,15,0,192,173,173,90,99,211,198,143,241,206,156,25,24,63,110,20,58,222,213,25,20,69,225,166,198,185,56,81,88,128,233,211,222,192, |
|
|
|
|
235,175,190,140,140,204,44,212,171,103,193,141,55,102,130,118,211,24,63,118,20,94,127,245,101,84,86,86,120,130,192,25,97,30,4,138,162,176,98,245,58,220,211,181,7,30,232,251,16,238,239,247,112,45,88,101, |
|
|
|
|
100,98,230,219,239,162,105,179,230,152,242,218,155,184,167,107,247,160,239,124,75,171,214,232,213,251,62,52,203,111,142,149,239,175,69,70,102,22,146,147,83,240,230,91,179,216,250,104,219,174,3,30,240, |
|
|
|
|
185,174,216,49,141,235,125,170,29,246,218,80,66,6,248,116,207,46,116,233,222,147,253,253,214,214,183,225,232,145,67,33,175,236,114,57,241,225,7,171,225,116,58,145,223,188,133,232,201,47,223,178,153,89, |
|
|
|
|
217,112,56,236,248,240,131,85,232,115,95,95,191,230,99,183,87,193,86,118,14,173,218,220,198,214,127,243,22,45,113,244,240,161,144,215,46,44,56,134,21,203,222,67,159,251,251,42,170,203,161,42,90,72,56, |
|
|
|
|
45,95,189,19,90,94,172,205,47,43,124,41,20,122,24,114,223,47,149,36,228,62,96,91,118,29,36,99,30,17,222,210,187,235,29,130,65,38,26,179,54,98,79,86,98,135,120,37,192,75,72,167,77,224,139,95,93,146,108, |
|
|
|
|
173,68,162,173,131,4,190,66,247,203,126,251,31,49,12,86,175,92,134,71,30,125,28,107,62,218,136,175,142,30,198,130,119,223,1,195,0,14,187,157,245,36,157,61,91,138,198,57,158,240,193,91,110,109,141,27,210, |
|
|
|
|
210,113,123,219,14,0,128,202,202,10,164,166,166,225,150,91,91,227,214,86,173,145,145,185,4,0,224,112,56,96,177,88,208,52,191,57,78,158,40,96,111,249,245,137,2,220,220,172,185,224,103,111,156,147,139,179, |
|
|
|
|
165,37,120,227,213,151,1,0,19,38,78,97,127,187,243,174,187,177,108,201,66,124,126,112,63,146,44,22,204,154,243,46,118,108,219,226,119,254,87,71,143,224,171,163,71,0,0,78,167,19,183,182,106,141,213,43, |
|
|
|
|
151,179,0,119,182,180,4,93,186,118,103,143,137,29,215,124,85,198,108,54,227,137,33,195,0,0,93,186,245,192,156,89,111,177,5,28,14,59,78,23,157,194,173,173,218,224,203,163,135,209,187,207,253,152,246,198, |
|
|
|
|
43,184,235,238,123,194,94,215,102,43,131,197,98,229,161,239,145,151,194,220,123,95,95,108,221,178,9,54,91,25,220,180,27,153,89,217,40,45,254,142,253,125,195,250,181,232,222,163,55,142,30,62,132,246,119, |
|
|
|
|
116,196,129,253,251,96,177,90,195,190,191,173,236,28,58,117,190,71,93,61,150,48,6,41,27,162,40,61,201,137,82,240,21,57,244,80,192,239,42,245,147,97,247,1,187,202,104,68,66,66,2,25,1,137,132,148,132,132, |
|
|
|
|
4,212,173,91,151,128,151,162,224,197,15,190,100,1,47,2,95,18,191,19,17,34,4,190,148,158,16,241,77,205,29,104,188,210,110,55,150,46,89,136,213,43,151,97,204,184,23,209,247,193,135,177,119,207,110,88,172, |
|
|
|
|
86,92,115,141,9,46,151,19,153,153,89,56,91,227,25,59,115,166,8,229,229,54,44,123,111,145,223,189,26,164,164,32,201,98,101,1,201,43,38,179,25,15,244,173,245,42,5,174,15,227,15,96,121,56,123,182,132,253, |
|
|
|
|
251,219,211,69,72,170,89,223,213,241,174,187,209,180,89,115,60,208,239,33,0,30,111,81,160,220,210,170,53,58,118,188,27,22,139,21,13,82,82,176,111,207,46,128,97,176,233,147,143,209,165,107,15,172,118,44, |
|
|
|
|
67,106,90,186,31,44,10,29,215,66,169,204,137,194,227,158,80,195,128,2,59,182,110,70,239,62,247,163,180,180,24,20,69,161,146,35,52,51,240,186,105,105,233,248,116,207,78,201,240,101,50,155,209,189,71,111, |
|
|
|
|
100,102,101,163,207,125,125,97,181,212,71,159,251,250,98,234,107,147,217,50,71,15,31,194,132,151,38,195,98,177,162,123,143,222,120,227,181,201,236,250,175,80,146,150,222,8,14,187,93,77,37,15,138,43,140, |
|
|
|
|
246,214,77,114,237,43,167,22,124,9,181,161,162,213,53,134,4,176,43,12,6,24,141,70,36,38,38,130,8,145,80,98,168,209,19,37,161,75,82,3,17,121,162,158,192,75,54,248,34,160,65,0,140,8,129,47,141,214,69,224, |
|
|
|
|
154,153,80,251,35,117,233,214,3,38,179,25,23,42,43,145,154,150,142,143,214,173,1,0,184,221,110,188,242,218,155,248,242,203,35,232,210,181,59,246,125,186,27,12,195,224,211,61,187,177,120,233,42,152,76, |
|
|
|
|
102,124,241,249,126,52,206,201,195,251,171,150,227,171,163,71,48,236,169,103,240,252,184,9,216,183,119,55,110,185,181,53,22,206,159,139,147,39,10,49,102,220,139,24,250,212,8,208,52,141,182,237,58,224, |
|
|
|
|
52,143,53,86,129,82,94,94,134,142,29,239,102,223,231,134,212,84,214,67,119,162,176,0,95,125,121,4,159,238,221,205,121,46,108,59,115,146,0,0,32,0,73,68,65,84,69,81,24,59,238,69,12,30,52,0,213,118,59,6, |
|
|
|
|
13,30,90,11,65,219,54,99,197,7,31,161,188,220,134,77,159,124,44,106,108,11,165,46,78,167,147,19,188,188,242,229,209,195,24,59,97,34,158,24,50,12,27,55,172,143,120,237,156,220,60,36,167,52,68,209,169,83, |
|
|
|
|
146,211,205,119,239,222,27,31,175,95,139,89,211,223,100,235,104,207,190,47,48,243,173,55,252,202,237,222,181,3,143,62,62,24,0,80,89,113,62,108,61,80,20,133,62,247,247,197,138,101,75,20,111,227,126,19, |
|
|
|
|
9,33,148,59,156,55,172,255,128,129,232,213,251,62,220,215,187,171,98,125,80,131,228,20,12,123,250,25,164,214,76,58,156,60,81,128,183,103,207,144,180,173,65,184,62,43,53,45,29,79,13,31,9,147,185,46,140, |
|
|
|
|
20,133,210,210,98,76,155,250,170,136,190,83,64,104,103,205,111,125,238,239,135,9,19,39,35,63,47,91,121,0,243,141,235,36,33,55,68,228,106,184,82,215,118,169,125,178,146,224,37,204,152,87,17,188,8,124,133, |
|
|
|
|
53,248,248,200,225,195,95,43,254,76,228,30,241,115,15,2,95,161,223,157,171,77,250,26,175,103,138,78,33,35,43,27,13,146,147,49,253,205,215,112,246,108,41,26,36,167,160,218,97,199,219,179,167,163,99,167, |
|
|
|
|
206,88,246,222,34,124,126,112,63,0,79,232,220,224,65,143,160,227,93,157,209,180,89,115,124,245,165,39,172,143,166,105,12,25,52,128,61,126,242,68,33,123,191,135,250,222,139,59,239,186,27,0,48,100,208,0, |
|
|
|
|
36,89,172,130,191,237,151,71,14,99,232,83,207,176,240,116,75,171,54,216,87,3,92,155,54,126,140,23,39,189,130,228,148,20,148,219,108,104,144,156,130,143,214,126,192,94,131,166,105,184,105,26,109,219,118, |
|
|
|
|
0,101,164,112,123,187,14,248,162,230,125,104,154,198,87,71,14,99,208,224,161,120,180,255,3,130,199,54,169,19,117,123,119,239,196,189,247,61,128,217,51,167,113,254,222,239,161,254,112,185,92,72,74,178, |
|
|
|
|
32,191,121,11,140,29,253,12,156,206,139,146,224,139,97,128,110,61,122,97,242,164,9,181,117,228,118,99,247,174,237,232,222,243,94,216,202,206,177,199,183,109,222,136,13,91,118,98,252,216,81,156,119,204, |
|
|
|
|
111,222,2,67,134,13,7,224,201,168,184,103,215,14,236,217,181,67,25,251,40,220,24,19,6,194,2,237,244,169,211,102,225,204,153,34,197,251,30,151,211,137,77,159,124,204,122,85,87,172,94,139,166,77,243,57, |
|
|
|
|
189,172,124,244,46,82,159,229,176,219,49,127,222,219,40,183,149,1,0,222,156,49,7,237,218,223,129,131,7,62,11,121,13,161,161,135,92,197,211,210,210,209,173,71,47,84,156,255,81,209,254,44,81,154,145,72, |
|
|
|
|
132,136,188,58,35,249,50,4,188,100,29,76,137,94,147,53,96,68,180,223,207,198,77,182,67,248,236,47,25,34,20,177,188,220,134,242,114,27,231,185,229,229,54,44,93,178,48,232,120,181,195,225,7,56,94,113,58, |
|
|
|
|
157,216,180,241,99,206,107,237,243,241,78,249,102,41,228,219,71,211,52,141,199,250,247,69,199,78,157,65,187,221,24,242,248,0,152,204,102,15,68,158,46,194,248,49,207,161,109,251,14,72,77,75,195,151,53, |
|
|
|
|
107,189,182,111,219,2,218,253,7,192,48,24,245,204,83,104,219,190,3,170,29,14,12,121,252,17,63,8,252,242,203,35,104,144,146,130,106,135,67,54,240,114,56,236,152,56,97,44,231,111,171,87,46,131,221,94,5, |
|
|
|
|
6,12,86,173,88,138,189,123,118,178,89,13,39,78,24,3,187,221,14,134,1,102,207,152,6,147,185,118,201,194,236,153,211,224,118,187,37,195,23,69,81,152,250,218,20,148,150,20,251,189,204,226,5,239,194,108,54, |
|
|
|
|
195,238,176,195,177,172,10,128,103,205,217,99,253,251,162,164,102,109,216,214,205,27,217,107,29,57,244,5,42,206,215,122,197,182,110,222,24,209,75,38,117,108,241,76,246,121,244,152,107,77,35,12,134,136, |
|
|
|
|
125,193,219,115,166,227,66,101,37,122,245,190,79,81,251,205,229,114,214,194,22,195,160,220,86,134,140,172,172,144,0,38,5,190,188,247,243,134,223,50,96,144,146,210,208,79,95,164,134,30,114,221,155,162, |
|
|
|
|
40,188,252,234,84,76,153,56,30,139,150,173,82,31,192,136,16,81,119,64,213,7,116,41,11,94,242,194,23,241,122,105,111,114,129,8,17,37,116,48,158,224,139,171,46,194,173,7,99,97,199,253,7,78,23,157,210,92, |
|
|
|
|
251,167,105,218,47,185,134,239,90,175,242,114,91,109,2,141,154,103,184,224,3,3,23,42,43,240,209,135,31,248,253,237,149,71,30,29,136,247,22,47,144,213,235,69,187,221,56,19,162,14,109,182,115,126,239,224, |
|
|
|
|
93,95,7,0,69,167,106,207,41,245,57,30,190,110,133,237,61,75,211,52,138,138,190,9,122,25,135,195,14,135,195,179,126,203,229,116,250,60,211,55,236,127,251,2,150,111,121,181,116,57,104,123,39,1,16,86,251, |
|
|
|
|
14,21,181,103,135,137,100,147,77,151,25,6,13,146,83,144,147,155,135,183,103,79,87,4,190,188,146,145,153,133,222,125,238,71,179,252,22,88,181,114,41,190,60,122,56,228,53,132,134,30,114,165,157,31,50,108, |
|
|
|
|
56,246,238,222,1,155,173,12,86,107,125,69,191,63,201,176,65,36,170,224,229,109,0,25,153,89,24,240,216,227,226,47,192,33,207,142,26,139,36,139,133,179,99,16,227,241,18,186,206,75,152,215,75,190,212,242, |
|
|
|
|
188,188,94,4,42,136,16,33,240,165,87,232,2,19,176,113,109,248,254,189,218,225,192,203,47,189,160,175,190,79,68,174,240,46,221,122,96,222,194,247,240,229,209,195,97,195,194,4,143,23,97,71,47,113,201,13, |
|
|
|
|
228,128,175,88,82,243,64,29,150,58,102,43,178,29,82,205,115,52,72,78,193,172,119,230,227,173,55,95,71,181,195,33,200,190,18,218,103,217,29,85,216,187,103,23,246,238,217,133,222,247,62,128,102,249,45,228, |
|
|
|
|
135,175,26,201,111,222,18,105,233,141,176,230,253,85,170,124,243,4,53,102,121,136,16,9,28,79,2,213,205,108,54,243,203,38,37,96,80,202,200,202,134,145,50,42,6,94,20,69,33,51,51,139,179,211,235,214,189, |
|
|
|
|
23,186,117,239,197,121,222,107,83,167,195,98,177,194,98,177,224,181,169,211,69,131,87,102,86,118,64,250,94,129,189,60,17,81,70,47,17,34,4,190,162,91,23,236,127,134,217,199,39,108,95,47,101,35,36,141,65, |
|
|
|
|
151,239,251,110,223,182,25,79,15,29,132,213,43,151,201,3,94,122,131,47,157,232,190,191,46,215,214,115,88,8,139,214,251,5,232,164,23,190,222,158,53,29,95,213,120,163,120,181,57,17,125,22,3,6,213,14,71, |
|
|
|
|
77,214,205,249,248,252,224,103,232,125,239,253,242,143,215,53,231,143,30,59,30,41,41,13,177,104,233,74,44,90,186,18,0,176,104,233,74,63,59,75,78,73,36,70,7,17,181,102,117,132,136,201,100,70,102,86,22, |
|
|
|
|
108,182,50,84,219,237,48,153,204,72,78,73,241,11,109,104,156,155,135,242,178,50,184,92,78,164,166,165,195,98,177,224,68,97,129,160,217,24,41,207,109,54,155,209,247,161,71,240,234,228,151,130,218,78,114, |
|
|
|
|
74,74,200,243,114,243,154,128,162,234,176,255,45,116,144,234,214,163,23,30,27,56,24,246,154,212,184,180,219,141,17,79,15,33,224,165,208,32,73,214,128,17,209,18,124,133,109,202,49,222,206,125,67,182,216, |
|
|
|
|
80,45,159,16,173,192,104,45,111,223,31,106,143,165,160,58,83,187,173,203,240,189,132,140,111,252,131,50,24,73,247,12,117,122,120,27,51,62,224,43,80,151,153,8,27,22,7,233,174,183,188,210,186,202,241,92, |
|
|
|
|
161,224,75,52,120,69,128,175,212,180,116,54,1,7,69,81,104,150,223,194,47,161,74,104,29,17,30,122,8,0,15,61,224,191,37,65,225,169,98,60,57,232,81,197,170,152,172,1,35,162,154,225,192,87,146,44,22,204,121, |
|
|
|
|
103,1,142,30,57,132,190,253,30,198,153,211,69,88,187,102,53,230,204,93,136,190,125,122,192,229,114,34,201,98,193,91,51,222,70,239,238,119,163,107,247,158,232,210,173,39,78,22,30,199,179,163,199,97,226, |
|
|
|
|
132,177,53,49,233,226,18,107,152,76,102,152,205,102,80,70,35,44,22,43,42,43,206,163,178,178,2,205,242,91,128,166,221,236,90,2,167,211,137,181,31,172,102,223,215,98,177,34,53,45,221,47,214,220,43,153,153, |
|
|
|
|
217,48,153,77,108,103,194,37,20,69,33,39,183,9,28,246,42,216,66,148,107,223,225,78,60,248,208,0,60,54,160,31,156,23,157,178,141,184,38,179,25,230,154,84,175,22,107,125,84,84,156,71,101,197,121,228,55, |
|
|
|
|
111,9,154,118,251,197,204,3,30,87,61,0,148,148,124,199,190,111,90,90,58,236,14,59,210,211,27,129,162,140,40,44,56,230,95,7,89,217,48,155,235,178,215,142,23,125,38,66,132,192,151,188,117,227,169,31,3,96, |
|
|
|
|
8,54,80,185,150,204,132,219,232,54,98,29,202,97,232,202,252,109,20,75,26,37,33,157,120,164,211,9,124,133,129,48,48,48,48,8,74,44,19,86,119,149,152,56,136,80,143,131,6,15,69,90,90,58,102,191,51,159,61, |
|
|
|
|
118,162,240,56,158,30,58,72,118,248,2,128,118,237,239,192,128,199,6,161,178,162,2,153,89,217,216,186,101,19,150,44,90,16,81,67,121,195,87,148,133,0,24,17,237,24,169,140,167,117,12,24,240,56,182,111,219, |
|
|
|
|
140,117,107,222,7,69,81,88,181,102,61,214,174,89,141,189,187,119,226,174,187,239,193,198,13,31,225,174,187,239,193,222,221,158,76,75,125,31,236,143,167,134,60,14,167,235,34,236,14,59,58,118,234,140,247, |
|
|
|
|
22,207,23,221,231,100,102,101,227,133,9,19,81,90,82,12,135,195,142,118,29,238,68,97,193,113,208,110,55,204,102,51,152,7,129,151,198,143,65,82,146,5,163,198,140,195,208,193,3,97,177,88,177,126,227,86,28, |
|
|
|
|
216,191,15,20,101,68,86,86,54,246,236,246,108,46,217,170,117,27,76,154,242,58,182,109,217,132,225,207,140,10,249,28,211,103,205,69,69,13,152,88,45,86,60,63,106,68,80,153,118,237,239,196,129,253,251,34, |
|
|
|
|
195,151,192,239,145,149,245,111,140,159,56,25,165,197,223,193,110,183,163,195,29,119,162,224,248,49,208,180,27,102,115,93,60,248,48,48,97,220,104,0,192,27,211,102,214,128,212,143,24,63,113,50,38,140,29, |
|
|
|
|
133,210,146,98,60,250,248,96,88,173,245,97,183,87,129,166,221,152,252,234,27,232,126,79,71,207,204,82,255,1,184,247,254,126,56,240,217,167,184,187,115,23,44,94,248,174,95,246,41,34,68,136,136,108,210, |
|
|
|
|
113,58,65,224,151,192,32,192,106,13,5,97,0,248,129,152,6,235,87,209,164,81,18,193,75,60,124,49,210,39,32,98,98,143,187,26,125,229,200,238,201,107,2,193,187,119,85,207,46,252,129,76,68,189,189,254,202, |
|
|
|
|
36,188,254,202,36,222,250,40,5,190,0,96,213,138,165,88,181,98,105,200,226,146,215,125,69,168,3,37,247,0,243,3,48,50,203,75,36,170,86,133,143,254,37,167,164,160,89,243,22,104,219,238,14,0,128,195,225,128, |
|
|
|
|
201,108,198,246,109,155,49,110,252,68,15,128,221,213,25,175,78,153,136,6,201,201,72,77,75,199,180,153,115,216,243,217,84,180,18,250,30,139,213,138,151,250,120,82,238,90,44,86,184,156,23,49,107,198,52, |
|
|
|
|
80,20,133,205,219,247,4,149,111,213,250,54,28,216,191,15,175,188,252,18,0,96,225,146,229,108,135,112,239,125,15,224,197,23,158,199,137,194,227,72,78,78,193,150,29,159,6,117,18,57,185,77,224,116,94,196, |
|
|
|
|
155,175,79,1,0,44,95,245,33,146,83,82,124,178,27,121,158,57,39,175,9,214,124,176,74,17,131,193,106,177,226,190,26,200,178,90,173,112,58,157,152,53,125,42,40,138,194,214,93,251,216,186,72,78,105,136,129, |
|
|
|
|
143,244,3,0,116,239,217,27,221,122,244,198,172,233,83,1,0,118,123,21,166,212,236,197,50,119,254,18,228,230,53,65,209,169,111,112,239,253,253,240,88,255,190,112,57,157,216,182,121,35,94,126,117,170,166, |
|
|
|
|
1,140,244,135,68,8,124,105,205,72,229,200,24,199,160,214,11,198,3,194,2,13,60,193,48,166,3,232,18,172,22,4,190,162,62,190,48,12,3,198,224,175,143,162,194,105,85,168,23,201,224,197,19,190,34,21,143,4,95, |
|
|
|
|
122,152,88,225,92,3,70,214,60,16,137,142,53,225,145,51,167,139,112,230,116,17,59,243,225,149,106,135,3,148,209,136,182,237,59,192,77,187,217,212,183,14,135,29,47,77,24,19,148,141,71,74,155,43,44,56,206, |
|
|
|
|
254,183,155,118,163,180,196,179,246,140,166,105,118,127,19,95,201,201,205,195,137,130,2,182,35,240,13,217,203,111,222,18,83,38,189,8,0,168,172,172,96,189,92,158,76,94,158,50,173,219,220,134,220,220,155, |
|
|
|
|
177,112,137,103,225,167,219,77,35,45,173,17,11,96,222,231,174,60,127,30,230,154,189,98,228,238,80,10,124,66,6,221,110,55,206,150,22,215,190,115,205,222,27,249,45,90,250,189,91,193,241,99,120,244,241,193, |
|
|
|
|
44,128,249,166,122,182,219,171,64,81,70,164,165,165,131,118,187,217,80,69,155,173,12,233,233,141,96,50,155,57,195,53,181,52,72,242,237,11,219,180,185,89,210,189,248,108,234,75,238,17,127,247,96,24,70, |
|
|
|
|
211,6,68,180,219,164,95,8,87,8,8,243,216,52,225,141,73,45,129,152,88,232,210,15,120,197,55,124,69,28,95,194,172,105,244,126,19,181,245,85,182,117,134,17,214,187,137,135,47,62,144,171,61,29,32,27,49,19, |
|
|
|
|
209,4,116,249,202,222,221,59,49,123,238,2,92,99,50,225,100,97,1,50,179,178,177,114,197,123,0,128,79,54,124,132,103,71,143,195,252,185,181,30,175,117,31,190,143,215,222,152,142,237,219,54,3,240,236,247, |
|
|
|
|
17,110,167,116,62,226,116,94,20,212,14,202,109,231,144,154,150,198,14,44,105,233,233,44,180,149,150,20,35,37,165,33,74,75,139,65,81,20,44,22,107,80,103,83,88,112,12,57,185,77,240,76,64,50,141,192,71,40, |
|
|
|
|
41,249,142,13,137,148,187,103,113,94,188,24,177,140,195,110,71,86,118,173,91,62,43,43,27,133,199,191,98,255,166,233,224,77,53,43,42,206,35,37,165,33,40,138,2,77,211,176,88,172,176,59,236,154,134,47,210, |
|
|
|
|
23,18,209,172,238,197,185,78,122,234,165,102,13,152,143,145,234,7,97,1,212,197,23,196,188,162,150,129,43,5,182,68,171,131,12,224,165,22,124,197,186,231,215,47,169,76,8,111,110,184,112,90,37,117,85,246, |
|
|
|
|
117,134,138,194,151,188,161,135,81,5,48,0,48,26,141,184,242,202,43,145,144,64,182,10,35,18,90,18,18,18,64,81,84,232,70,194,83,209,75,75,74,224,112,120,82,231,86,86,86,224,185,17,195,208,182,195,29,104, |
|
|
|
|
156,155,135,47,143,30,98,203,109,223,186,9,229,182,50,156,46,170,245,194,172,93,179,26,165,37,197,104,150,223,2,14,135,29,165,37,199,193,48,192,236,25,211,216,76,129,66,58,68,225,70,55,131,3,251,247,225, |
|
|
|
|
157,119,23,215,36,8,177,34,51,235,223,44,128,109,219,178,9,47,188,248,50,246,236,222,129,156,220,60,214,155,228,15,96,199,49,252,153,81,120,225,197,151,113,112,255,62,228,228,54,193,134,245,235,130,54, |
|
|
|
|
133,252,240,131,213,88,180,116,37,58,116,232,136,221,187,182,131,166,105,148,22,127,135,3,251,247,169,242,189,139,78,125,13,167,211,137,241,47,189,140,114,91,25,238,189,191,31,166,76,28,31,246,28,154, |
|
|
|
|
166,177,230,131,85,120,227,173,89,56,122,248,16,58,117,190,7,159,172,95,75,26,15,17,34,4,190,36,212,135,7,194,188,9,57,252,32,44,132,229,202,99,79,219,176,6,161,24,99,87,14,200,146,69,13,120,158,36,41, |
|
|
|
|
163,29,132,135,28,198,43,124,5,190,123,56,111,110,56,189,149,19,198,20,89,103,40,19,120,197,26,124,249,1,88,224,67,231,230,230,34,41,41,137,0,24,145,136,0,86,167,78,29,252,249,199,47,146,174,227,114,57, |
|
|
|
|
225,114,57,217,6,89,81,121,30,107,215,172,230,52,230,79,20,30,15,58,126,162,240,184,191,87,8,64,169,79,202,122,33,3,70,105,73,49,86,46,175,5,159,149,203,151,250,121,107,94,124,225,121,0,12,28,142,42,204, |
|
|
|
|
154,254,38,11,141,3,7,60,136,78,157,187,160,180,164,24,171,150,191,199,130,233,214,45,27,81,80,240,21,218,119,232,136,37,11,223,197,202,229,239,193,81,3,134,19,94,24,205,94,119,248,83,67,208,161,195,157, |
|
|
|
|
200,201,109,130,210,146,98,56,157,193,30,41,135,195,142,135,238,239,133,252,22,45,145,155,119,51,104,183,59,40,45,171,24,41,41,249,14,142,101,85,181,239,188,108,9,156,62,239,236,77,192,65,211,52,38,79, |
|
|
|
|
28,143,230,53,27,22,62,63,242,105,54,99,99,224,57,43,151,45,129,189,6,32,23,47,152,135,252,230,45,145,223,162,37,22,47,120,55,40,67,162,110,12,96,34,68,162,167,148,113,15,165,193,33,91,190,251,39,241, |
|
|
|
|
135,48,214,96,21,154,143,3,140,190,62,191,128,147,148,3,175,208,240,37,56,219,103,12,121,190,184,39,19,2,116,50,0,194,34,233,44,159,137,3,185,116,88,234,190,163,241,14,95,126,0,22,248,240,150,127,80,192, |
|
|
|
|
95,46,48,127,69,190,136,193,96,96,59,198,192,14,50,220,26,10,161,107,205,200,218,52,237,24,144,236,245,255,2,254,12,163,35,215,95,103,193,79,63,59,20,27,212,196,190,102,184,250,241,194,160,87,106,83,199, |
|
|
|
|
123,206,241,122,223,104,154,70,105,105,177,223,121,159,124,188,142,243,30,149,21,21,248,144,35,121,198,233,162,111,216,119,112,57,157,216,186,101,83,196,151,165,105,26,71,15,31,194,209,195,135,100,251, |
|
|
|
|
158,46,167,211,15,50,3,211,224,251,174,251,114,57,157,30,143,91,128,215,45,240,156,192,191,11,11,142,105,2,188,234,91,235,9,210,17,210,239,16,137,122,95,78,38,4,34,244,219,254,6,108,16,132,133,176,92, |
|
|
|
|
213,218,82,73,117,230,150,17,188,52,1,95,49,168,255,193,19,10,12,59,145,224,183,189,130,192,117,141,74,79,28,72,5,47,181,224,75,15,146,200,167,65,69,50,64,184,50,20,213,198,181,134,54,98,132,220,35,84, |
|
|
|
|
5,199,179,113,164,150,194,49,81,222,195,68,206,190,88,220,187,48,138,92,95,206,20,193,68,244,223,206,136,16,33,186,39,214,120,5,24,230,111,24,12,9,220,16,198,19,196,106,237,10,157,1,151,142,192,139,192, |
|
|
|
|
87,120,8,99,215,54,242,244,228,170,161,171,106,108,224,45,55,124,105,221,251,21,22,192,196,128,146,47,108,5,130,87,164,217,100,161,48,198,167,3,208,59,156,69,107,240,149,251,190,215,213,79,194,79,85,14, |
|
|
|
|
117,58,128,40,64,23,1,47,253,8,95,239,23,17,34,4,188,180,93,31,92,54,5,187,142,198,7,194,0,240,6,177,112,93,175,156,230,132,172,159,87,224,197,148,7,175,208,227,103,188,134,28,10,169,75,134,249,27,64, |
|
|
|
|
2,175,112,90,37,65,76,238,228,46,66,225,139,239,90,66,189,194,151,31,128,133,218,103,67,40,40,249,94,39,28,136,241,133,49,41,32,37,100,16,83,26,214,180,56,160,42,245,76,92,215,189,190,190,5,0,4,129,88, |
|
|
|
|
92,66,23,1,47,77,128,23,223,254,144,8,17,34,234,142,87,193,158,47,223,227,222,77,109,253,215,211,112,166,238,22,104,185,106,170,91,86,0,186,248,94,86,21,175,87,140,143,131,92,251,128,5,219,201,6,81,225, |
|
|
|
|
180,98,38,13,148,12,117,149,207,235,21,91,240,229,7,96,124,1,139,47,40,241,241,128,9,245,172,41,9,75,177,62,227,168,228,251,9,185,182,23,196,148,120,70,49,231,43,125,14,223,178,100,198,59,254,218,13,17, |
|
|
|
|
34,68,228,107,147,181,54,6,66,66,24,128,208,32,38,196,98,213,56,112,169,15,94,161,225,43,220,121,241,22,114,24,88,47,92,147,9,222,137,132,144,107,26,5,76,30,40,86,149,10,238,33,199,39,228,48,22,224,139, |
|
|
|
|
19,192,164,128,79,32,80,113,1,86,164,89,44,49,224,167,36,152,17,99,81,185,123,68,3,184,180,4,93,196,192,39,66,132,8,17,241,246,31,247,62,182,76,72,8,11,11,98,90,130,49,9,227,130,108,155,230,74,4,175,240, |
|
|
|
|
176,172,54,49,232,199,102,171,13,163,13,14,167,149,234,197,85,75,39,197,120,189,226,13,190,252,0,76,232,206,210,124,33,41,82,114,142,72,48,38,4,172,200,122,48,109,223,83,142,235,105,21,186,8,120,145,201, |
|
|
|
|
12,34,68,136,40,215,30,185,61,6,220,246,39,23,132,5,150,11,11,98,161,12,184,168,47,180,145,14,93,209,4,47,2,95,220,245,19,52,73,192,110,54,158,16,121,77,163,146,19,7,50,135,186,74,13,57,140,37,248,242, |
|
|
|
|
3,48,177,128,197,167,124,184,44,137,190,215,82,114,77,24,89,15,166,254,51,69,19,184,8,116,17,145,75,247,200,58,48,34,68,180,61,78,113,2,86,0,132,113,25,186,188,64,76,163,134,157,18,208,37,21,188,248,124, |
|
|
|
|
163,120,6,175,224,73,130,72,233,229,5,172,105,12,85,159,10,47,4,147,154,212,37,94,225,43,8,192,164,64,143,152,228,26,129,229,249,222,83,233,116,244,76,28,45,254,212,226,181,99,9,186,8,120,197,71,155,57, |
|
|
|
|
124,248,107,197,159,131,220,35,254,238,65,36,130,69,23,193,35,230,11,97,94,59,33,164,215,204,199,224,227,5,99,26,7,46,173,128,23,129,47,254,16,22,56,73,16,42,28,81,208,196,129,82,201,214,84,4,175,88,132, |
|
|
|
|
47,63,0,139,212,248,228,78,206,225,251,155,82,235,194,226,113,230,90,143,123,131,169,13,92,106,128,26,129,46,210,142,136,16,33,162,112,123,140,0,98,94,131,206,243,179,193,207,224,13,187,142,44,192,8,84, |
|
|
|
|
27,200,212,220,43,147,95,95,71,194,13,149,210,103,118,163,245,144,222,48,198,79,119,67,173,105,84,67,79,229,74,234,66,224,43,0,192,164,116,134,98,147,102,132,2,177,72,48,198,23,174,248,222,151,24,133, |
|
|
|
|
202,221,115,219,158,47,136,245,16,67,114,119,135,91,73,37,16,33,66,68,107,131,99,72,154,242,252,228,15,97,190,99,63,159,229,51,161,12,79,41,6,175,84,200,138,38,116,241,185,6,129,47,17,31,144,115,34,33, |
|
|
|
|
120,2,65,45,47,174,220,97,174,66,183,48,224,5,94,58,214,169,68,121,244,70,60,28,137,73,210,33,246,158,90,129,154,120,131,187,171,140,70,36,36,36,144,74,214,177,36,36,36,160,110,221,186,164,34,136,16,33, |
|
|
|
|
162,59,16,11,52,100,125,199,188,200,235,112,212,131,40,165,128,75,78,240,138,116,29,2,94,242,234,175,199,65,198,192,99,66,137,247,226,70,83,23,197,236,29,23,235,240,37,27,128,73,133,163,80,25,142,132, |
|
|
|
|
172,13,35,169,233,163,15,155,92,215,191,194,96,128,209,104,68,98,98,34,249,0,58,22,67,205,119,36,66,132,136,118,36,57,165,33,250,220,223,23,52,77,99,241,130,121,146,174,213,189,103,111,0,192,214,205,27, |
|
|
|
|
49,106,204,120,108,219,178,17,165,37,197,146,174,57,106,204,120,172,92,182,4,14,135,61,122,116,226,103,172,50,62,198,106,100,16,11,184,132,38,108,115,229,198,125,133,192,139,192,151,76,32,198,29,74,43, |
|
|
|
|
102,226,64,45,125,148,115,211,238,88,220,51,46,81,157,15,197,111,125,22,159,125,196,184,202,137,85,128,88,131,51,53,189,121,196,115,72,132,8,17,34,209,149,9,47,77,198,129,253,251,80,116,74,122,66,144, |
|
|
|
|
228,148,134,236,127,103,101,103,227,224,126,233,30,239,172,236,108,80,209,158,184,241,177,78,107,33,204,224,99,0,134,223,163,52,148,157,167,148,249,32,199,208,42,108,124,86,40,212,144,128,151,60,202,192, |
|
|
|
|
57,129,96,136,56,113,16,205,29,19,228,222,180,59,22,214,123,69,13,192,132,64,89,40,111,23,31,24,19,10,86,90,74,77,175,85,192,33,160,69,132,8,17,34,218,147,228,148,134,200,204,206,198,138,101,75,224,176, |
|
|
|
|
123,60,76,22,139,21,105,233,141,96,43,59,231,231,117,50,153,205,200,202,250,55,42,42,206,163,178,226,60,123,220,91,222,233,188,200,121,143,252,230,45,1,0,69,167,190,6,77,211,65,199,11,11,142,249,149,207, |
|
|
|
|
204,202,134,217,92,23,78,231,197,32,239,153,197,98,133,197,106,149,236,85,147,106,65,50,158,237,149,124,198,117,134,133,176,112,182,134,150,217,66,248,56,205,72,190,38,1,175,104,78,32,68,158,56,144,226, |
|
|
|
|
197,85,206,219,74,188,94,154,0,176,72,31,192,87,169,188,138,37,118,125,152,28,0,69,82,211,147,58,35,66,132,8,17,173,72,247,158,189,97,164,140,200,111,209,18,78,231,69,152,205,102,188,241,214,44,28,57, |
|
|
|
|
252,5,134,12,123,26,123,118,237,196,134,245,107,97,177,88,177,104,217,42,28,57,244,5,82,26,54,132,173,236,28,230,189,61,11,20,69,97,197,251,107,81,112,252,24,140,70,35,210,210,27,225,192,254,125,236,245, |
|
|
|
|
31,123,124,48,42,42,126,132,217,92,23,195,71,142,194,192,71,250,1,240,132,21,186,92,78,80,20,133,241,19,39,227,190,158,93,0,0,67,134,13,71,167,206,93,176,103,215,14,80,20,229,7,90,201,41,13,49,115,206, |
|
|
|
|
60,76,158,56,94,27,99,222,223,94,207,66,160,55,12,162,96,76,31,99,54,35,203,181,9,120,69,23,196,24,24,192,55,148,86,141,79,163,84,22,205,88,135,47,205,1,88,168,143,35,117,125,88,36,37,137,245,117,98,106, |
|
|
|
|
128,16,129,45,34,68,136,16,81,79,22,47,152,135,238,61,122,177,107,191,94,126,229,13,124,248,193,42,108,221,188,17,38,179,25,43,222,95,135,13,235,215,162,245,109,183,227,147,245,107,177,230,253,85,160, |
|
|
|
|
40,10,27,54,239,192,226,5,243,208,186,205,237,40,56,126,12,83,38,77,0,0,44,90,186,210,239,250,133,5,199,176,98,217,18,246,183,204,172,108,148,150,20,99,214,244,169,108,153,252,230,45,217,227,221,123,244, |
|
|
|
|
66,159,158,93,252,60,101,0,144,146,210,16,163,199,142,199,228,137,227,163,231,253,10,97,225,121,141,89,127,59,128,9,2,177,80,99,156,210,182,131,244,113,149,145,237,62,4,188,180,167,183,82,60,184,234,232, |
|
|
|
|
37,1,47,93,3,88,36,16,11,84,50,49,157,164,150,67,17,181,6,59,4,180,136,16,33,66,68,123,146,150,222,8,105,233,141,208,173,71,47,0,128,195,94,5,139,197,138,86,173,111,67,90,122,35,180,235,112,39,0,160,162, |
|
|
|
|
226,60,204,230,186,104,214,188,37,78,20,30,247,1,174,227,126,215,243,13,97,44,41,46,70,243,22,45,81,90,82,140,225,35,71,193,98,177,34,165,97,67,164,167,55,130,217,92,23,185,121,77,80,81,113,62,8,190,0, |
|
|
|
|
96,244,216,241,112,187,221,176,149,157,211,176,49,139,48,32,22,12,99,66,199,195,72,54,138,140,47,36,251,120,78,192,75,47,16,22,121,210,64,140,253,42,119,120,171,224,68,46,49,172,99,137,250,211,59,225, |
|
|
|
|
123,123,201,57,115,21,15,0,66,32,139,8,17,34,68,244,37,133,5,199,80,110,43,195,214,205,27,253,142,159,46,250,6,54,91,89,80,150,196,179,165,197,200,200,204,174,5,184,180,116,216,108,101,236,223,190,73, |
|
|
|
|
57,210,211,27,97,239,238,29,104,213,230,54,100,101,253,27,35,158,26,12,0,248,120,243,14,15,212,157,63,143,172,172,127,115,62,215,228,137,227,209,173,71,111,12,31,57,218,207,123,166,37,99,214,99,54,26, |
|
|
|
|
96,48,132,10,229,138,12,99,209,25,83,25,69,158,37,242,82,30,98,35,104,9,194,106,245,149,145,101,194,64,9,93,36,91,23,196,0,128,69,250,152,225,18,121,8,81,196,88,13,75,140,70,42,122,34,68,136,16,33,162, |
|
|
|
|
172,236,217,181,3,51,231,204,67,114,74,67,20,157,250,26,185,121,55,99,241,130,121,216,189,115,7,86,188,191,22,20,69,225,232,225,67,200,205,107,130,21,203,150,96,255,103,159,98,200,208,167,81,237,176,35, |
|
|
|
|
201,98,69,110,94,19,63,0,107,223,225,78,184,156,23,209,32,185,33,44,86,43,138,78,125,131,204,172,108,36,55,108,136,246,29,238,68,179,154,68,28,128,199,91,182,255,179,79,49,99,206,60,28,61,124,8,70,35, |
|
|
|
|
133,53,239,175,2,0,56,157,78,204,123,123,38,22,45,93,133,246,29,238,244,91,103,166,77,131,22,126,32,22,30,198,196,67,153,210,160,37,102,76,38,224,165,79,8,243,234,171,16,239,173,90,58,73,192,43,180,36, |
|
|
|
|
196,134,14,50,156,255,194,253,46,246,154,66,175,19,173,119,87,250,121,181,90,31,68,136,16,33,18,47,50,97,220,104,246,191,75,75,138,49,100,208,163,160,221,110,100,101,253,27,71,15,127,193,194,209,99,253, |
|
|
|
|
251,161,218,97,71,126,139,150,108,230,66,151,211,137,62,61,187,192,225,176,227,68,193,49,60,214,191,31,235,61,155,249,214,84,12,25,52,0,78,167,19,23,42,207,99,200,160,1,236,61,38,140,29,133,204,236,127, |
|
|
|
|
99,239,238,29,24,49,108,48,74,74,190,3,0,76,153,52,1,243,230,204,100,97,205,123,29,135,189,10,52,77,227,249,103,135,163,194,39,3,163,210,66,81,20,114,243,154,4,29,79,78,105,136,252,230,45,217,127,126, |
|
|
|
|
101,24,6,150,36,11,154,229,183,64,157,58,20,231,120,231,149,215,166,206,8,48,70,149,252,39,126,124,230,3,93,222,127,17,11,213,72,102,86,54,50,179,178,67,22,207,247,129,243,64,201,205,107,2,138,162,56, |
|
|
|
|
127,235,222,179,55,90,181,185,141,52,108,161,16,198,212,110,216,28,252,205,165,235,147,208,107,68,210,191,144,250,22,81,17,99,75,18,99,79,23,249,37,219,144,107,227,102,146,29,145,8,145,255,111,239,236, |
|
|
|
|
131,162,56,243,60,254,225,109,192,72,115,134,153,220,149,144,171,204,248,135,96,85,6,45,17,111,69,172,85,99,197,132,85,163,149,151,141,47,133,41,179,98,18,241,146,5,53,59,102,77,200,198,64,98,2,27,35, |
|
|
|
|
217,92,100,141,134,179,18,56,196,247,53,198,10,193,212,26,173,32,100,5,172,146,113,235,132,189,219,25,178,161,199,23,122,146,203,180,2,247,199,204,180,51,204,12,162,17,29,224,249,84,89,74,219,244,76,119, |
|
|
|
|
255,158,167,159,111,255,222,4,2,193,157,192,43,116,188,116,216,109,90,225,12,95,28,14,89,243,72,249,162,170,106,64,200,162,87,104,1,33,255,47,84,49,141,190,161,142,190,251,57,28,242,109,109,200,172,55, |
|
|
|
|
220,67,209,155,37,204,127,120,78,192,34,127,254,130,133,154,24,116,200,50,45,205,5,140,77,74,166,232,205,18,76,166,113,88,173,103,153,146,241,111,236,216,190,141,178,119,127,239,87,194,219,251,92,52,155, |
|
|
|
|
39,14,217,231,244,192,10,215,245,6,21,86,69,155,75,80,20,5,0,131,222,64,225,70,139,230,213,156,255,200,34,45,7,81,111,40,100,219,251,101,28,61,226,14,83,205,95,103,97,138,86,177,51,129,163,71,14,7,216, |
|
|
|
|
170,111,216,171,224,6,111,168,167,76,125,255,222,91,95,65,117,251,237,112,164,123,188,134,189,0,11,101,16,193,66,19,131,25,231,72,8,77,20,85,17,5,130,27,35,54,54,150,184,184,56,34,35,35,197,197,16,12, |
|
|
|
|
26,145,145,145,33,189,3,130,91,199,193,3,251,2,114,226,10,214,91,56,121,226,56,171,158,206,65,85,85,244,122,3,69,155,75,120,244,177,95,82,179,187,202,103,13,16,248,156,51,26,77,184,84,23,29,118,187,199, |
|
|
|
|
243,54,9,135,67,230,111,158,144,206,201,233,25,126,5,79,238,51,154,112,42,74,128,32,141,143,151,24,159,146,138,170,186,56,211,210,204,253,230,52,218,219,218,112,58,21,122,123,123,209,235,13,72,146,132, |
|
|
|
|
75,117,161,186,84,244,6,247,207,45,205,77,126,5,80,140,70,19,122,131,1,112,23,87,25,120,209,186,208,59,234,116,58,138,54,151,176,97,125,129,230,69,53,167,77,100,235,31,202,53,79,106,222,243,249,44,121, |
|
|
|
|
124,81,192,121,229,175,179,144,148,156,204,146,39,22,13,248,30,121,175,163,247,179,220,231,116,143,214,147,206,43,214,188,125,237,116,58,29,41,169,19,2,94,74,192,181,254,116,222,66,48,146,36,249,133,219, |
|
|
|
|
154,211,38,98,109,61,75,74,234,4,218,218,206,147,146,50,1,135,220,233,183,143,247,251,0,1,125,246,194,70,132,129,95,24,109,176,117,112,216,136,174,17,44,188,70,132,0,235,207,80,66,149,177,191,158,145, |
|
|
|
|
222,172,176,184,19,134,47,68,150,64,112,107,48,155,205,36,38,38,10,1,38,24,116,1,22,19,19,195,247,151,191,21,23,227,54,18,47,73,204,154,61,135,146,205,197,154,144,113,56,100,190,172,171,101,222,130,133, |
|
|
|
|
212,84,87,106,234,171,239,99,111,90,102,22,185,207,172,102,205,234,92,0,222,254,125,153,230,93,51,232,13,172,205,95,195,202,85,171,169,252,184,66,243,20,189,93,186,149,181,191,206,67,150,59,253,68,130, |
|
|
|
|
229,165,87,56,121,226,56,137,122,3,241,241,18,211,50,179,184,224,112,176,115,71,185,71,200,252,134,47,235,190,192,104,50,49,45,51,11,187,221,134,67,150,121,253,141,18,30,91,244,11,156,138,194,180,204, |
|
|
|
|
44,94,249,93,17,7,247,239,69,146,18,104,110,106,10,90,157,242,70,23,193,153,211,103,160,40,138,95,243,237,150,230,38,90,154,155,152,251,112,54,31,239,170,192,110,179,145,158,49,85,243,122,121,153,53,251, |
|
|
|
|
1,10,55,110,184,33,241,85,242,206,123,28,253,236,48,141,13,48,109,122,22,185,207,228,113,242,196,113,242,158,207,167,108,75,41,224,238,85,231,45,8,51,115,246,28,102,206,122,128,150,230,2,191,99,189,253, |
|
|
|
|
78,25,237,109,231,81,85,149,121,11,22,82,182,165,148,173,239,151,107,45,19,140,70,19,175,188,86,204,99,143,100,179,245,15,229,52,52,212,211,222,118,30,115,218,68,90,154,155,124,122,230,85,97,183,219,56, |
|
|
|
|
103,109,69,111,48,4,156,99,88,9,49,31,59,13,246,194,224,70,215,166,183,220,203,42,214,142,35,75,128,13,84,144,93,207,216,70,82,245,68,33,176,4,2,55,99,226,163,232,81,47,211,19,198,223,177,191,185,105, |
|
|
|
|
40,120,238,127,202,124,51,156,230,42,85,12,183,65,103,254,130,133,164,79,201,0,224,228,87,199,105,108,168,199,110,251,187,230,77,241,21,24,139,151,230,4,46,28,61,227,233,103,153,89,172,124,102,53,121, |
|
|
|
|
207,229,226,84,20,204,230,137,40,74,23,111,188,254,42,0,59,42,62,97,108,82,18,149,31,87,48,111,254,66,142,213,213,114,191,121,34,178,44,251,121,87,188,2,204,229,82,169,169,174,210,188,43,29,118,27,239, |
|
|
|
|
190,87,206,206,29,229,196,75,18,102,243,36,94,125,121,3,79,153,86,226,114,169,188,244,155,181,244,246,130,78,23,203,180,204,25,28,61,114,152,197,75,114,88,243,92,110,255,61,215,110,98,188,24,77,227,104, |
|
|
|
|
60,245,117,192,246,198,134,122,238,51,154,0,88,251,66,30,150,141,133,172,121,62,159,173,91,74,57,122,228,176,199,107,151,224,39,220,250,23,95,177,154,248,242,134,192,46,89,186,156,13,47,22,208,97,183, |
|
|
|
|
209,210,124,154,121,11,22,242,234,203,27,176,108,44,100,108,82,50,29,118,27,243,23,44,10,26,126,107,78,155,200,39,187,42,2,132,99,230,244,25,28,171,171,101,222,35,139,216,227,17,216,82,66,130,182,175, |
|
|
|
|
183,129,121,217,150,82,230,62,252,11,236,118,27,107,95,200,27,42,139,183,160,47,12,130,61,6,130,205,157,222,252,73,151,75,229,76,75,83,191,66,217,155,67,233,61,140,213,218,138,211,19,162,234,37,125,74, |
|
|
|
|
134,123,123,87,151,152,124,132,0,27,215,70,187,129,0,0,10,243,73,68,65,84,248,3,252,70,67,20,195,125,193,115,187,22,42,66,188,9,4,119,118,108,15,246,75,165,59,57,39,136,249,69,240,83,104,56,85,207,161, |
|
|
|
|
3,251,0,119,191,52,69,81,72,74,190,151,120,73,242,91,60,26,77,227,180,124,167,190,11,92,73,146,216,240,210,43,212,125,81,171,253,206,180,233,89,152,205,147,248,143,114,119,83,107,151,75,229,62,227,56, |
|
|
|
|
234,190,168,37,127,173,5,189,222,192,188,5,11,57,116,48,48,183,238,208,129,125,24,244,247,240,193,31,63,162,161,161,158,178,119,75,105,111,111,195,106,61,203,207,50,179,72,74,74,166,174,238,115,92,46, |
|
|
|
|
149,222,94,104,105,62,173,45,122,29,14,153,88,79,232,106,186,167,95,219,79,21,92,125,177,219,109,65,11,100,220,103,52,105,161,150,14,135,204,218,23,242,48,26,77,88,54,22,34,73,9,212,84,87,162,139,141, |
|
|
|
|
29,240,231,44,94,150,131,36,73,20,109,42,212,22,249,233,25,83,41,124,173,72,219,199,33,187,5,234,158,234,74,30,125,252,151,124,178,171,2,163,201,20,84,228,173,125,33,143,197,75,115,40,88,111,97,235,150, |
|
|
|
|
18,78,126,117,156,157,31,150,147,251,108,30,199,234,106,153,251,80,54,79,45,123,210,71,156,157,14,184,166,99,147,146,249,102,128,2,50,92,133,88,48,51,8,53,245,235,13,6,222,125,175,156,150,230,38,36,73, |
|
|
|
|
194,225,144,41,126,189,144,14,187,221,239,208,137,250,107,251,121,41,121,171,152,115,214,86,226,37,137,194,223,21,161,215,27,80,85,151,59,124,180,233,180,214,248,253,102,121,240,161,236,240,245,62,10, |
|
|
|
|
1,118,103,132,217,72,91,32,136,5,144,64,48,116,5,217,80,25,203,98,158,17,12,6,29,29,246,128,197,186,181,245,44,83,166,76,245,43,147,63,57,61,131,134,83,193,23,222,46,213,197,226,39,22,177,109,123,5,51, |
|
|
|
|
103,206,230,88,93,45,141,167,234,49,155,39,106,225,136,190,212,236,174,226,193,185,217,100,102,206,160,100,115,113,80,77,180,227,195,114,118,124,88,78,222,191,255,154,149,171,86,83,250,214,27,28,58,176, |
|
|
|
|
143,153,51,31,192,104,26,71,137,79,31,181,80,97,133,45,205,167,25,63,62,165,127,15,216,77,208,120,170,158,194,215,138,253,68,170,78,167,99,214,236,57,90,149,76,47,237,237,109,28,58,176,143,201,233,25, |
|
|
|
|
212,84,87,114,226,171,63,243,232,227,79,94,11,229,236,135,61,213,149,40,138,66,209,155,37,90,62,94,75,243,105,202,182,148,6,228,119,29,216,191,151,157,187,170,112,42,10,53,213,85,33,174,71,147,86,100, |
|
|
|
|
101,231,174,74,30,125,36,219,29,70,168,55,240,224,67,217,88,173,173,126,249,92,193,174,171,83,233,242,235,153,55,100,133,88,31,213,21,106,122,237,237,117,139,220,85,191,90,14,192,146,165,57,60,185,36, |
|
|
|
|
135,210,183,222,8,216,215,119,63,223,3,108,251,227,71,212,84,87,13,232,158,123,195,61,205,105,110,239,112,135,221,134,94,111,192,104,26,231,151,139,55,109,122,22,79,173,88,137,67,150,181,60,188,120,73, |
|
|
|
|
34,37,101,2,118,187,45,192,131,45,4,216,8,21,32,67,181,88,135,88,240,8,4,35,107,206,186,211,115,149,152,115,4,131,133,36,37,144,251,236,181,176,177,96,85,29,189,20,111,42,164,232,205,18,238,79,155,200, |
|
|
|
|
153,230,38,126,62,203,45,122,86,245,17,23,218,66,221,229,194,169,40,20,188,144,199,182,237,31,97,181,182,210,216,80,79,222,243,249,88,94,122,153,99,117,181,152,211,38,81,243,95,149,56,28,50,7,247,239, |
|
|
|
|
101,231,127,186,197,72,176,69,254,76,207,231,89,173,103,73,73,153,160,21,254,56,86,87,203,242,21,191,2,184,190,103,171,183,151,67,7,246,97,249,109,33,123,118,87,49,54,41,57,160,216,200,205,226,112,200, |
|
|
|
|
148,108,46,102,231,174,42,246,84,87,226,114,185,115,170,118,87,87,114,206,218,202,248,148,84,230,45,88,196,95,207,181,34,73,18,139,151,230,176,213,147,171,85,246,78,9,31,124,88,193,188,5,11,57,121,226, |
|
|
|
|
184,251,188,190,248,60,168,72,84,20,133,131,251,247,50,57,61,67,107,222,253,201,174,10,44,191,45,164,166,186,10,69,233,34,54,54,150,131,251,247,226,84,20,26,79,125,205,226,101,57,44,121,60,120,129,143, |
|
|
|
|
252,117,22,206,180,52,33,73,9,216,109,54,77,60,238,217,93,69,193,122,11,133,27,45,215,61,247,207,62,61,204,188,5,139,200,95,103,225,111,237,109,180,183,157,31,112,72,229,80,17,99,253,33,59,100,166,101, |
|
|
|
|
102,13,236,152,184,195,105,21,165,107,64,226,11,160,232,205,18,78,120,218,102,28,61,242,41,14,185,147,130,245,22,218,219,219,24,159,146,138,221,102,163,244,173,98,30,156,155,141,36,73,164,123,170,105, |
|
|
|
|
130,59,199,175,165,185,9,131,193,128,44,203,225,217,236,93,8,176,225,177,168,8,85,205,81,32,16,8,110,247,92,37,230,35,65,184,226,144,59,41,232,147,179,163,40,93,33,69,88,75,115,19,79,45,123,146,244,140, |
|
|
|
|
169,140,79,157,192,209,207,14,115,242,171,227,33,143,239,237,193,214,97,183,177,230,217,149,218,246,53,207,173,100,214,236,57,152,211,38,113,174,245,172,182,80,116,200,157,200,114,167,123,81,26,100,204, |
|
|
|
|
88,91,207,66,111,47,38,163,137,173,91,74,252,196,73,251,249,243,156,105,105,214,126,175,239,57,28,220,191,23,213,229,210,254,125,226,248,159,153,251,112,182,22,78,119,171,168,169,174,164,241,212,215,100, |
|
|
|
|
102,205,32,54,86,71,241,166,66,237,123,218,237,54,190,172,171,37,37,53,21,89,150,89,252,196,34,77,236,180,183,183,241,232,35,217,100,78,159,129,209,52,14,167,210,165,133,17,134,58,143,226,77,133,90,213, |
|
|
|
|
193,99,117,181,56,28,50,211,166,207,0,240,203,69,107,108,56,133,222,112,79,200,170,132,222,239,100,183,217,180,130,29,128,230,217,244,189,199,185,43,114,130,222,99,135,67,102,201,19,238,30,101,73,73,247, |
|
|
|
|
222,214,126,118,183,77,140,249,109,119,87,138,204,125,102,53,224,206,153,44,217,92,28,68,240,187,195,21,63,216,254,145,182,105,213,211,203,49,167,77,210,42,78,130,187,61,193,216,164,100,156,74,87,208, |
|
|
|
|
118,24,238,151,11,86,63,193,230,189,246,241,146,196,206,93,85,148,190,85,204,161,3,251,72,74,190,246,82,33,247,89,119,97,22,239,207,7,63,253,156,178,45,37,253,23,157,17,2,76,16,110,194,78,32,16,8,196, |
|
|
|
|
124,36,24,46,168,170,26,212,75,225,12,150,211,229,21,109,14,121,192,249,37,190,225,112,190,5,53,156,30,15,78,95,210,167,76,197,169,40,33,67,3,59,66,132,80,141,77,74,102,74,198,84,138,55,21,250,237,219, |
|
|
|
|
247,119,251,158,71,168,133,238,79,165,189,189,45,160,128,136,247,188,27,27,234,67,122,134,156,138,114,221,107,235,123,30,125,239,159,183,226,162,47,58,157,142,197,75,115,250,245,122,132,250,78,185,207, |
|
|
|
|
172,102,219,251,239,5,236,27,234,30,247,21,107,35,133,198,83,245,253,122,81,29,114,39,171,158,94,30,176,45,125,89,142,223,203,5,187,205,70,225,107,69,33,237,210,87,84,235,245,6,242,158,207,7,32,41,57, |
|
|
|
|
89,203,197,235,139,209,104,98,124,234,4,173,160,142,221,110,195,104,26,119,203,195,111,133,0,19,8,4,2,129,64,48,226,137,140,138,164,167,187,103,200,124,223,15,182,127,132,67,150,7,20,238,230,75,254,58, |
|
|
|
|
11,38,211,56,54,188,88,48,100,222,234,223,46,188,77,159,247,236,174,10,218,251,43,20,227,83,82,41,88,111,193,218,218,58,224,16,185,27,34,98,120,216,179,162,116,221,116,248,106,75,115,19,73,73,201,24,141, |
|
|
|
|
38,218,219,219,6,36,136,92,62,246,189,124,197,74,254,122,174,149,143,119,85,48,62,37,149,146,119,202,60,162,220,229,47,136,79,28,71,81,186,40,222,244,106,248,26,106,68,255,2,172,151,193,104,139,45,16, |
|
|
|
|
8,4,67,139,222,62,127,11,4,130,48,28,143,49,49,209,184,186,135,142,32,233,235,33,24,40,67,41,159,229,118,115,112,255,222,126,115,250,66,113,206,218,122,211,247,99,32,196,68,71,15,123,123,246,37,88,158, |
|
|
|
|
101,135,221,70,225,70,11,91,223,47,231,224,129,125,180,52,159,214,194,73,7,130,211,169,48,121,202,84,100,217,157,123,230,173,68,106,109,61,139,209,52,142,7,31,202,166,241,84,61,159,125,250,39,150,175, |
|
|
|
|
88,73,254,58,11,95,214,213,242,243,89,15,132,221,152,233,207,30,188,2,172,71,12,103,193,96,16,27,27,75,92,92,156,104,96,59,196,137,140,140,68,23,34,12,96,152,208,237,153,7,35,196,124,40,8,55,238,49,220, |
|
|
|
|
77,167,124,113,216,158,219,141,142,71,93,116,52,46,209,49,77,16,134,196,196,68,15,121,123,118,200,157,90,14,214,245,246,11,150,103,9,112,244,200,97,90,154,155,152,146,49,21,115,218,36,156,74,87,200,99, |
|
|
|
|
110,120,177,0,135,79,83,242,157,219,183,49,115,246,28,12,6,3,101,91,74,145,36,9,112,135,165,174,90,145,195,204,217,115,56,231,41,143,191,106,69,14,115,31,206,38,61,99,42,95,250,84,48,13,115,123,232,241, |
|
|
|
|
10,176,110,224,170,24,54,130,193,192,108,54,147,152,152,40,4,216,48,16,96,49,49,49,124,127,249,219,225,122,138,61,222,73,81,204,135,2,65,120,143,199,184,184,88,126,116,169,92,185,34,134,170,32,124,136, |
|
|
|
|
138,138,226,174,81,113,67,222,158,221,165,255,155,6,180,95,127,213,32,59,236,182,1,121,41,251,126,150,170,170,126,249,130,190,5,86,218,219,219,252,26,110,15,102,190,227,32,218,67,55,208,19,237,49,6,213, |
|
|
|
|
102,179,95,50,24,244,99,196,16,18,220,74,198,196,71,209,163,94,22,46,133,97,192,112,125,223,220,209,209,113,21,112,1,87,60,15,72,151,152,15,5,225,198,112,244,130,5,243,126,13,116,60,198,199,223,133,162, |
|
|
|
|
252,192,213,171,66,132,9,194,99,177,157,32,221,21,208,214,67,216,179,176,135,32,246,160,2,221,145,30,195,248,254,226,165,203,255,29,21,21,37,174,154,64,32,24,57,162,82,85,137,136,140,250,95,224,255,128, |
|
|
|
|
31,61,127,139,249,80,16,182,130,37,68,200,222,176,56,143,27,25,143,209,81,81,220,61,70,98,244,232,81,68,71,139,122,98,130,59,67,116,116,20,163,70,197,113,247,24,41,192,14,133,61,11,123,232,199,30,212, |
|
|
|
|
104,143,81,40,81,49,186,51,157,157,157,233,137,137,137,226,10,10,4,130,17,67,47,145,103,129,203,192,247,184,223,80,118,137,249,80,16,238,2,70,140,71,55,119,141,138,11,21,230,35,16,8,123,22,132,163,61, |
|
|
|
|
40,192,143,81,64,44,16,115,225,98,215,119,177,49,17,25,221,221,87,239,30,61,122,180,184,74,2,129,96,216,243,205,55,127,233,236,188,244,195,219,61,61,61,54,224,18,238,136,128,136,11,23,187,254,33,230,67, |
|
|
|
|
129,64,140,71,129,64,216,179,224,86,217,195,119,23,191,127,187,167,167,231,239,192,133,40,220,165,232,35,128,8,157,46,246,219,238,171,106,106,79,119,247,63,93,186,116,137,132,132,4,113,197,4,2,193,176, |
|
|
|
|
195,102,179,97,181,158,235,140,142,139,223,162,56,127,104,6,190,3,156,158,7,100,143,152,15,5,2,49,30,5,2,97,207,130,65,176,135,78,64,137,0,226,128,209,192,221,192,191,0,99,141,247,254,243,178,238,171, |
|
|
|
|
234,228,43,170,235,95,175,92,185,34,174,158,64,32,24,54,68,69,199,116,196,232,98,207,124,119,193,89,113,229,202,213,255,1,254,1,92,0,126,192,29,34,50,74,204,135,2,129,24,143,2,129,176,103,193,32,217,131, |
|
|
|
|
51,2,183,7,76,7,220,5,72,30,195,24,3,36,120,182,233,128,40,110,170,191,183,64,32,16,132,5,189,184,75,191,170,184,19,96,21,220,33,33,23,129,46,207,195,209,229,217,87,204,135,2,129,24,143,2,129,176,103, |
|
|
|
|
193,160,217,67,132,231,70,71,1,49,184,243,193,70,121,254,196,121,126,142,6,188,77,156,132,81,8,4,130,161,58,33,246,224,105,187,193,181,138,84,222,234,84,87,184,214,167,69,204,135,2,129,24,143,2,129,176, |
|
|
|
|
103,193,160,217,195,255,3,131,90,39,61,40,12,10,116,0,0,0,0,73,69,78,68,174,66,96,130,0,0}; |
|
|
|
|
|
|
|
|
|
const char* GlobalEditor::globalEditor_864x144_png = (const char*) resource_GlobalEditor_globalEditor_864x144_png; |
|
|
|
|
const int GlobalEditor::globalEditor_864x144_pngSize = 16274; |
|
|
|
|
const int GlobalEditor::globalEditor_864x144_pngSize = 27571; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//[EndFile] You can add extra defines here...
|
|
|
|
|