-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvis_simpleWeatherForecast.m
117 lines (101 loc) · 137 KB
/
vis_simpleWeatherForecast.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
% A very simple algorithm to perform local weather forecast. It is based on
% the readings of pressure and relative humidity.
% Source (in italian): https://www.meteogiuliacci.it/meteo/articoli/analisi/prevedere-il-tempo-mediante-la-pressione
% Channel ID to read data from
ChannelID = 000000; % replace 000000 with your public Channel ID
% Pressure and humidity field ID
pressureID = 3;
humidityID = 2;
% Channel Read API Key
% If your channel is private, then enter the read API
% Key between the '' below:
readAPIKey = 'myReadAPIkey'; % replace myReadAPIkey with yours
% Channel Write API. Used later to REACT only at pressure change
writeAPIKey = 'myWriteAPIkey'; % replace myWriteAPIkey with yours
% Read pressure data in the last 3 hours
pressureData = thingSpeakRead(ChannelID,'Fields',pressureID, ...
'NumMinutes', 180, 'ReadKey', readAPIKey);
avgPressure = mean(pressureData,'omitnan');
% Read pressure data in the last 3 hours
humidityData = thingSpeakRead(ChannelID,'Fields',humidityID, ...
'NumMinutes', 180, 'ReadKey', readAPIKey);
avgHumidity = mean(humidityData,'omitnan');
% We are only interested in pressure difference
% pressureChange = pressureData(end) - pressureData(1);
% linear regression
x = (1:numel(pressureData))';
X = [ones(numel(x),1) , x];
y = pressureData;
b = X\y;
array = X*b;
pressureChange = array(end) - array(1);
% Check if day or night
if hour(datetime('now')) > 6 && hour(datetime('now')) < 18
dayFlag = 1;
else
dayFlag = 0;
end
%% Define icons
sun = [1,220;1,219;1,218;1,217;1,216;1,215;1,214;1,213;1,212;2,211;2,210;3,209;3,208;4,207;4,206;5,205;6,204;7,203;8,203;9,202;10,201;11,201;12,201;13,200;14,200;15,200;16,200;17,200;18,200;19,200;20,200;21,200;22,200;23,200;24,200;25,200;26,200;27,200;28,200;29,200;30,200;31,200;32,200;33,200;34,200;35,200;36,200;37,200;38,200;39,200;40,200;41,200;42,200;43,200;44,200;45,200;46,200;47,200;48,200;49,200;50,200;51,200;52,200;53,200;54,200;55,200;56,201;57,201;58,202;59,202;60,203;61,204;62,205;63,206;64,207;65,208;65,209;65,210;66,211;66,212;66,213;66,214;67,215;67,216;67,217;66,218;66,219;66,220;66,221;65,222;65,223;65,224;64,225;63,226;62,227;61,228;60,229;59,230;58,230;57,231;56,231;55,232;54,232;53,232;52,232;51,232;50,232;49,232;48,232;47,232;46,232;45,232;44,232;43,232;42,232;41,232;40,232;39,232;38,232;37,232;36,232;35,232;34,232;33,232;32,232;31,232;30,232;29,232;28,232;27,232;26,232;25,232;24,232;23,232;22,232;21,232;20,232;19,232;18,232;17,232;16,232;15,232;14,232;13,232;12,231;11,231;10,231;9,230;8,229;7,229;6,228;5,227;4,226;4,225;3,224;3,223;2,222;2,221;60,362;60,361;60,360;60,359;60,358;60,357;60,356;60,355;60,354;60,353;60,352;61,351;61,350;62,349;62,348;63,347;64,346;65,345;66,344;67,343;68,342;69,341;70,340;71,339;72,338;73,337;74,336;75,335;76,334;77,333;78,332;79,331;80,330;81,329;82,328;83,327;84,326;85,325;86,324;87,323;88,322;89,321;90,320;91,320;92,319;93,319;94,318;95,318;96,318;97,318;98,318;99,318;100,318;101,318;102,318;103,318;104,318;105,319;106,319;107,320;108,320;109,321;110,322;111,323;112,324;113,325;113,326;114,327;114,328;115,329;115,330;115,331;115,332;115,333;115,334;115,335;115,336;115,337;115,338;115,339;114,340;114,341;113,342;113,343;112,344;111,345;110,346;109,347;108,348;107,349;106,350;105,351;104,352;103,353;102,354;101,355;100,356;99,357;98,358;97,359;96,360;95,361;94,362;93,363;92,364;91,365;90,366;89,367;88,368;87,369;86,370;85,371;84,371;83,372;82,372;81,373;80,373;79,373;78,373;77,373;76,373;75,373;74,373;73,373;72,373;71,373;70,372;69,372;68,372;67,371;66,370;65,370;64,369;63,368;63,367;62,366;61,365;61,364;61,363;60,80;60,79;60,78;60,77;60,76;60,75;60,74;60,73;60,72;60,71;60,70;61,69;61,68;61,67;62,66;63,65;63,64;64,63;65,62;66,62;67,61;68,60;69,60;70,60;71,59;72,59;73,59;74,59;75,59;76,59;77,59;78,59;79,59;80,59;81,59;82,60;83,60;84,61;85,61;86,62;87,63;88,64;89,65;90,66;91,67;92,68;93,69;94,70;95,71;96,72;97,73;98,74;99,75;100,76;101,77;102,78;103,79;104,80;105,81;106,82;107,83;108,84;109,85;110,86;111,87;112,88;113,89;113,90;114,91;114,92;115,93;115,94;115,95;115,96;115,97;115,98;115,99;115,100;115,101;115,102;115,103;114,104;114,105;113,106;113,107;112,108;111,109;111,110;110,110;109,111;108,112;107,112;106,113;105,113;104,114;103,114;102,114;101,114;100,114;99,114;98,114;97,114;96,114;95,114;94,114;93,113;92,113;91,112;90,112;89,111;88,110;87,109;86,108;85,107;84,106;83,105;82,104;81,103;80,102;79,101;78,100;77,99;76,98;75,97;74,96;73,95;72,94;71,93;70,92;69,91;68,90;67,89;66,88;65,87;64,86;63,85;62,84;62,83;61,82;61,81;101,227;101,226;101,225;101,224;101,223;101,222;101,221;101,220;101,219;101,218;101,217;101,216;101,215;101,214;101,213;101,212;101,211;101,210;101,209;101,208;101,207;101,206;101,205;102,204;102,203;102,202;102,201;102,200;102,199;102,198;102,197;103,196;103,195;103,194;103,193;103,192;104,191;104,190;104,189;104,188;105,187;105,186;105,185;105,184;106,183;106,182;106,181;107,180;107,179;107,178;108,177;108,176;108,175;109,174;109,173;110,172;110,171;110,170;111,169;111,168;112,167;112,166;113,165;113,164;114,163;114,162;115,161;115,160;116,159;116,158;117,157;118,156;118,155;119,154;119,153;120,152;121,151;121,150;122,149;123,148;124,147;124,146;125,145;126,144;127,143;127,142;128,141;129,140;130,139;131,138;132,137;133,136;134,135;135,134;136,133;137,132;138,131;139,130;140,129;141,128;142,127;143,126;144,126;145,125;146,124;147,123;148,123;149,122;150,121;151,120;152,120;153,119;154,119;155,118;156,117;157,117;158,116;159,115;160,115;161,114;162,114;163,113;164,113;165,112;166,112;167,111;168,111;169,110;170,110;171,109;172,109;173,109;174,108;175,108;176,107;177,107;178,107;179,106;180,106;181,106;182,105;183,105;184,105;185,104;186,104;187,104;188,104;189,103;190,103;191,103;192,103;193,102;194,102;195,102;196,102;197,102;198,102;199,101;200,101;201,101;202,101;203,101;204,101;205,101;206,100;207,100;208,100;209,100;210,100;211,100;212,100;213,100;214,100;215,100;216,100;217,100;218,100;219,100;220,100;221,100;222,100;223,100;224,100;225,100;226,100;227,100;228,100;229,101;230,101;231,101;232,101;233,101;234,101;235,101;236,102;237,102;238,102;239,102;240,102;241,102;242,103;243,103;244,103;245,103;246,104;247,104;248,104;249,104;250,105;251,105;252,105;253,106;254,106;255,106;256,107;257,107;258,107;259,108;260,108;261,109;262,109;263,109;264,110;265,110;266,111;267,111;268,112;269,112;270,113;271,113;272,114;273,114;274,115;275,115;276,116;277,117;278,117;279,118;280,118;281,119;282,120;283,120;284,121;285,122;286,123;287,123;288,124;289,125;290,126;291,127;292,127;293,128;294,129;295,130;296,131;297,132;298,133;299,134;300,135;301,136;302,137;303,138;304,139;305,140;306,141;306,142;307,143;308,144;309,145;310,146;310,147;311,148;312,149;313,150;313,151;314,152;314,153;315,154;316,155;316,156;317,157;318,158;318,159;319,160;319,161;320,162;320,163;321,164;321,165;322,166;322,167;323,168;323,169;324,170;324,171;324,172;325,173;325,174;326,175;326,176;326,177;327,178;327,179;327,180;328,181;328,182;328,183;329,184;329,185;329,186;329,187;330,188;330,189;330,190;330,191;331,192;331,193;331,194;331,195;331,196;331,197;332,198;332,199;332,200;332,201;332,202;332,203;332,204;333,205;333,206;333,207;333,208;333,209;333,210;333,211;333,212;333,213;333,214;333,215;333,216;333,217;333,218;333,219;333,220;333,221;333,222;333,223;333,224;333,225;333,226;333,227;332,228;332,229;332,230;332,231;332,232;332,233;332,234;331,235;331,236;331,237;331,238;331,239;331,240;330,241;330,242;330,243;330,244;329,245;329,246;329,247;329,248;328,249;328,250;328,251;327,252;327,253;327,254;326,255;326,256;326,257;325,258;325,259;324,260;324,261;324,262;323,263;323,264;322,265;322,266;321,267;321,268;320,269;320,270;319,271;319,272;318,273;318,274;317,275;316,276;316,277;315,278;315,279;314,280;313,281;313,282;312,283;311,284;310,285;310,286;309,287;308,288;307,289;307,290;306,291;305,292;304,293;303,294;302,295;301,296;300,297;299,298;298,299;297,300;296,301;295,302;294,303;293,304;292,305;291,306;290,306;289,307;288,308;287,309;286,309;285,310;284,311;283,312;282,312;281,313;280,314;279,314;278,315;277,315;276,316;275,317;274,317;273,318;272,318;271,319;270,319;269,320;268,320;267,321;266,321;265,322;264,322;263,323;262,323;261,323;260,324;259,324;258,325;257,325;256,325;255,326;254,326;253,326;252,327;251,327;250,327;249,328;248,328;247,328;246,328;245,329;244,329;243,329;242,329;241,330;240,330;239,330;238,330;237,330;236,331;235,331;234,331;233,331;232,331;231,331;230,331;229,331;228,332;227,332;226,332;225,332;224,332;223,332;222,332;221,332;220,332;219,332;218,332;217,332;216,332;215,332;214,332;213,332;212,332;211,332;210,332;209,332;208,332;207,332;206,332;205,331;204,331;203,331;202,331;201,331;200,331;199,331;198,331;197,330;196,330;195,330;194,330;193,330;192,329;191,329;190,329;189,329;188,328;187,328;186,328;185,328;184,327;183,327;182,327;181,326;180,326;179,326;178,325;177,325;176,325;175,324;174,324;173,323;172,323;171,323;170,322;169,322;168,321;167,321;166,320;165,320;164,319;163,319;162,318;161,318;160,317;159,317;158,316;157,315;156,315;155,314;154,313;153,313;152,312;151,312;150,311;149,310;148,309;147,309;146,308;145,307;144,306;143,306;142,305;141,304;140,303;139,302;138,301;137,300;136,299;135,298;134,297;133,296;132,295;131,294;130,293;129,292;128,291;127,290;127,289;126,288;125,287;124,286;124,285;123,284;122,283;121,282;121,281;120,280;119,279;119,278;118,277;118,276;117,275;116,274;116,273;115,272;115,271;114,270;114,269;113,268;113,267;112,266;112,265;111,264;111,263;110,262;110,261;110,260;109,259;109,258;108,257;108,256;108,255;107,254;107,253;107,252;106,251;106,250;106,249;105,248;105,247;105,246;105,245;104,244;104,243;104,242;104,241;103,240;103,239;103,238;103,237;103,236;102,235;102,234;102,233;102,232;102,231;102,230;102,229;102,228;133,222;134,223;134,224;134,225;134,226;134,227;134,228;134,229;134,230;135,231;135,232;135,233;135,234;135,235;136,236;136,237;136,238;136,239;137,240;137,241;137,242;138,243;138,244;138,245;139,246;139,247;140,248;140,249;140,250;141,251;141,252;142,253;142,254;143,255;143,256;144,257;145,258;145,259;146,260;146,261;147,262;148,263;148,264;149,265;150,266;151,267;151,268;152,269;153,270;154,271;155,272;156,273;157,274;158,275;159,276;160,277;161,278;162,279;163,280;164,281;165,282;166,282;167,283;168,284;169,284;170,285;171,286;172,287;173,287;174,288;175,288;176,289;177,290;178,290;179,291;180,291;181,292;182,292;183,292;184,293;185,293;186,294;187,294;188,295;189,295;190,295;191,296;192,296;193,296;194,297;195,297;196,297;197,297;198,298;199,298;200,298;201,298;202,298;203,299;204,299;205,299;206,299;207,299;208,299;209,299;210,299;211,300;212,300;213,300;214,300;215,300;216,300;217,300;218,300;219,300;220,300;221,300;222,300;223,300;224,299;225,299;226,299;227,299;228,299;229,299;230,299;231,299;232,298;233,298;234,298;235,298;236,298;237,297;238,297;239,297;240,297;241,296;242,296;243,296;244,295;245,295;246,295;247,294;248,294;249,293;250,293;251,293;252,292;253,292;254,291;255,291;256,290;257,290;258,289;259,288;260,288;261,287;262,287;263,286;264,285;265,285;266,284;267,283;268,282;269,282;270,281;271,280;272,279;273,278;274,277;275,276;276,275;277,274;278,273;279,272;280,271;281,270;282,269;283,268;283,267;284,266;285,265;286,264;286,263;287,262;288,261;288,260;289,259;289,258;290,257;291,256;291,255;292,254;292,253;293,252;293,251;294,250;294,249;294,248;295,247;295,246;296,245;296,244;296,243;297,242;297,241;297,240;298,239;298,238;298,237;298,236;299,235;299,234;299,233;299,232;299,231;300,230;300,229;300,228;300,227;300,226;300,225;300,224;300,223;301,222;301,221;301,220;301,219;301,218;301,217;301,216;301,215;301,214;301,213;301,212;301,211;301,210;300,209;300,208;300,207;300,206;300,205;300,204;300,203;300,202;299,201;299,200;299,199;299,198;299,197;298,196;298,195;298,194;298,193;297,192;297,191;297,190;296,189;296,188;296,187;295,186;295,185;294,184;294,183;293,182;293,181;293,180;292,179;292,178;291,177;291,176;290,175;289,174;289,173;288,172;288,171;287,170;286,169;286,168;285,167;284,166;283,165;282,164;282,163;281,162;280,161;279,160;278,159;277,158;276,157;275,156;274,155;273,154;272,153;271,152;270,151;269,150;268,150;267,149;266,148;265,147;264,147;263,146;262,145;261,145;260,144;259,144;258,143;257,142;256,142;255,141;254,141;253,140;252,140;251,139;250,139;249,139;248,138;247,138;246,137;245,137;244,137;243,136;242,136;241,136;240,135;239,135;238,135;237,135;236,134;235,134;234,134;233,134;232,134;231,133;230,133;229,133;228,133;227,133;226,133;225,133;224,133;223,132;222,132;221,132;220,132;219,132;218,132;217,132;216,132;215,132;214,132;213,132;212,132;211,132;210,133;209,133;208,133;207,133;206,133;205,133;204,133;203,133;202,134;201,134;200,134;199,134;198,134;197,135;196,135;195,135;194,136;193,136;192,136;191,136;190,137;189,137;188,137;187,138;186,138;185,139;184,139;183,140;182,140;181,140;180,141;179,141;178,142;177,142;176,143;175,144;174,144;173,145;172,145;171,146;170,147;169,148;168,148;167,149;166,150;165,150;164,151;163,152;162,153;161,154;160,155;159,156;158,157;157,158;156,159;155,160;154,161;153,162;152,163;151,164;151,165;150,166;149,167;148,168;148,169;147,170;146,171;146,172;145,173;145,174;144,175;143,176;143,177;142,178;142,179;141,180;141,181;140,182;140,183;140,184;139,185;139,186;138,187;138,188;138,189;137,190;137,191;137,192;136,193;136,194;136,195;136,196;135,197;135,198;135,199;135,200;135,201;134,202;134,203;134,204;134,205;134,206;134,207;134,208;134,209;133,210;133,211;133,212;133,213;133,214;133,215;133,216;133,217;133,218;133,219;133,220;133,221;201,420;201,419;201,418;201,417;201,416;201,415;201,414;201,413;201,412;201,411;201,410;201,409;201,408;201,407;201,406;201,405;201,404;201,403;201,402;201,401;201,400;201,399;201,398;201,397;201,396;201,395;201,394;201,393;201,392;201,391;201,390;201,389;201,388;201,387;201,386;201,385;201,384;201,383;201,382;201,381;201,380;201,379;201,378;202,377;202,376;203,375;203,374;204,373;205,372;206,371;207,370;208,369;209,368;210,368;211,368;212,367;213,367;214,367;215,367;216,366;217,366;218,366;219,367;220,367;221,367;222,367;223,368;224,368;225,368;226,369;227,370;228,371;229,372;230,373;231,374;231,375;232,376;232,377;233,378;233,379;233,380;233,381;233,382;233,383;233,384;233,385;233,386;233,387;233,388;233,389;233,390;233,391;233,392;233,393;233,394;233,395;233,396;233,397;233,398;233,399;233,400;233,401;233,402;233,403;233,404;233,405;233,406;233,407;233,408;233,409;233,410;233,411;233,412;233,413;233,414;233,415;233,416;233,417;233,418;233,419;233,420;232,421;232,422;232,423;231,424;230,425;230,426;229,427;228,428;227,429;226,429;225,430;224,430;223,431;222,431;221,432;220,432;219,432;218,432;217,432;216,432;215,432;214,432;213,432;212,431;211,431;210,430;209,430;208,429;207,429;206,428;205,427;204,426;204,425;203,424;202,423;202,422;202,421;201,54;201,53;201,52;201,51;201,50;201,49;201,48;201,47;201,46;201,45;201,44;201,43;201,42;201,41;201,40;201,39;201,38;201,37;201,36;201,35;201,34;201,33;201,32;201,31;201,30;201,29;201,28;201,27;201,26;201,25;201,24;201,23;201,22;201,21;201,20;201,19;201,18;201,17;201,16;201,15;201,14;201,13;201,12;202,11;202,10;202,9;203,8;204,7;204,6;205,5;206,4;207,3;208,3;209,2;210,2;211,1;212,1;213,1;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,1;222,1;223,1;224,2;225,2;226,3;227,3;228,4;229,5;230,6;230,7;231,8;232,9;232,10;232,11;233,12;233,13;233,14;233,15;233,16;233,17;233,18;233,19;233,20;233,21;233,22;233,23;233,24;233,25;233,26;233,27;233,28;233,29;233,30;233,31;233,32;233,33;233,34;233,35;233,36;233,37;233,38;233,39;233,40;233,41;233,42;233,43;233,44;233,45;233,46;233,47;233,48;233,49;233,50;233,51;233,52;233,53;233,54;232,55;232,56;231,57;231,58;230,59;229,60;228,61;227,62;226,63;225,64;224,64;223,64;222,65;221,65;220,65;219,65;218,66;217,66;216,66;215,65;214,65;213,65;212,65;211,64;210,64;209,64;208,63;207,62;206,61;205,60;204,59;203,58;203,57;202,56;202,55;319,339;319,338;319,337;319,336;319,335;319,334;319,333;319,332;319,331;319,330;319,329;320,328;320,327;321,326;321,325;322,324;323,323;323,322;324,322;325,321;326,320;327,320;328,319;329,319;330,318;331,318;332,318;333,318;334,318;335,318;336,318;337,318;338,318;339,318;340,318;341,319;342,319;343,320;344,320;345,321;346,322;347,323;348,324;349,325;350,326;351,327;352,328;353,329;354,330;355,331;356,332;357,333;358,334;359,335;360,336;361,337;362,338;363,339;364,340;365,341;366,342;367,343;368,344;369,345;370,346;371,347;372,348;372,349;373,350;373,351;374,352;374,353;374,354;374,355;374,356;374,357;374,358;374,359;374,360;374,361;374,362;373,363;373,364;373,365;372,366;371,367;371,368;370,369;369,370;368,370;367,371;366,372;365,372;364,372;363,373;362,373;361,373;360,373;359,373;358,373;357,373;356,373;355,373;354,373;353,373;352,372;351,372;350,371;349,371;348,370;347,369;346,368;345,367;344,366;343,365;342,364;341,363;340,362;339,361;338,360;337,359;336,358;335,357;334,356;333,355;332,354;331,353;330,352;329,351;328,350;327,349;326,348;325,347;324,346;323,345;322,344;321,343;321,342;320,341;320,340;319,103;319,102;319,101;319,100;319,99;319,98;319,97;319,96;319,95;319,94;319,93;320,92;320,91;321,90;321,89;322,88;323,87;324,86;325,85;326,84;327,83;328,82;329,81;330,80;331,79;332,78;333,77;334,76;335,75;336,74;337,73;338,72;339,71;340,70;341,69;342,68;343,67;344,66;345,65;346,64;347,63;348,62;349,61;350,61;351,60;352,60;353,59;354,59;355,59;356,59;357,59;358,59;359,59;360,59;361,59;362,59;363,59;364,60;365,60;366,60;367,61;368,62;369,62;370,63;371,64;371,65;372,66;373,67;373,68;373,69;374,70;374,71;374,72;374,73;374,74;374,75;374,76;374,77;374,78;374,79;374,80;373,81;373,82;372,83;372,84;371,85;370,86;369,87;368,88;367,89;366,90;365,91;364,92;363,93;362,94;361,95;360,96;359,97;358,98;357,99;356,100;355,101;354,102;353,103;352,104;351,105;350,106;349,107;348,108;347,109;346,110;345,111;344,112;343,112;342,113;341,113;340,114;339,114;338,114;337,114;336,114;335,114;334,114;333,114;332,114;331,114;330,114;329,113;328,113;327,112;326,112;325,111;324,110;323,110;323,109;322,108;321,107;321,106;320,105;320,104;367,217;367,216;367,215;368,214;368,213;368,212;368,211;369,210;369,209;369,208;370,207;371,206;372,205;373,204;374,203;375,202;376,202;377,201;378,201;379,200;380,200;381,200;382,200;383,200;384,200;385,200;386,200;387,200;388,200;389,200;390,200;391,200;392,200;393,200;394,200;395,200;396,200;397,200;398,200;399,200;400,200;401,200;402,200;403,200;404,200;405,200;406,200;407,200;408,200;409,200;410,200;411,200;412,200;413,200;414,200;415,200;416,200;417,200;418,200;419,200;420,200;421,200;422,201;423,201;424,201;425,202;426,203;427,203;428,204;429,205;430,206;430,207;431,208;431,209;432,210;432,211;432,212;433,213;433,214;433,215;433,216;433,217;433,218;433,219;432,220;432,221;432,222;431,223;431,224;430,225;430,226;429,227;428,228;427,229;426,229;425,230;424,231;423,231;422,231;421,232;420,232;419,232;418,232;417,232;416,232;415,232;414,232;413,232;412,232;411,232;410,232;409,232;408,232;407,232;406,232;405,232;404,232;403,232;402,232;401,232;400,232;399,232;398,232;397,232;396,232;395,232;394,232;393,232;392,232;391,232;390,232;389,232;388,232;387,232;386,232;385,232;384,232;383,232;382,232;381,232;380,232;379,232;378,231;377,231;376,230;375,230;374,229;373,228;372,227;371,226;370,225;369,224;369,223;369,222;368,221;368,220;368,219;368,218];
moon = [138,277;138,276;138,275;138,274;138,273;138,272;138,271;138,270;138,269;138,268;138,267;138,266;138,265;138,264;139,263;139,262;139,261;139,260;139,259;139,258;139,257;139,256;139,255;139,254;139,253;140,252;140,251;140,250;140,249;140,248;140,247;140,246;141,245;141,244;141,243;141,242;142,241;142,240;142,239;142,238;142,237;143,236;143,235;143,234;144,233;144,232;144,231;144,230;145,229;145,228;145,227;146,226;146,225;146,224;147,223;147,222;148,221;148,220;148,219;149,218;149,217;150,216;150,215;151,214;151,213;152,212;152,211;153,210;153,209;154,208;154,207;155,206;155,205;156,204;156,203;157,202;158,201;158,200;159,199;159,198;160,197;161,196;161,195;162,194;163,193;163,192;164,191;165,190;166,189;167,188;167,187;168,186;169,185;170,184;171,183;171,182;172,181;173,180;174,179;175,178;176,177;177,176;178,175;179,174;180,173;181,172;182,171;183,170;184,170;185,169;186,168;187,167;188,166;189,166;190,165;191,164;192,163;193,163;194,162;195,161;196,160;197,160;198,159;199,158;200,158;201,157;202,157;203,156;204,155;205,155;206,154;207,154;208,153;209,153;210,152;211,152;212,151;213,151;214,150;215,150;216,149;217,149;218,148;219,148;220,147;221,147;222,147;223,146;224,146;225,146;226,145;227,145;228,144;229,144;230,144;231,143;232,143;233,143;234,143;235,142;236,142;237,142;238,141;239,141;240,141;241,141;242,141;243,140;244,140;245,140;246,140;247,140;248,139;249,139;250,139;251,139;252,139;253,139;254,138;255,138;256,138;257,138;258,138;259,138;260,138;261,138;262,138;263,138;264,138;265,137;266,137;267,137;268,137;269,137;270,137;271,137;272,137;273,137;274,137;275,137;276,137;277,137;278,138;279,138;280,138;281,138;282,138;283,138;284,138;285,138;286,138;287,138;288,138;289,139;290,139;291,139;292,139;293,139;294,139;295,140;296,140;297,140;298,140;299,140;300,140;301,141;302,141;303,141;304,141;305,142;306,142;307,142;308,143;309,143;310,143;311,143;312,144;313,144;314,144;315,145;316,145;317,145;318,146;319,146;320,147;321,147;322,147;323,148;324,148;325,149;326,149;327,150;328,150;329,151;330,151;331,152;332,152;333,153;334,153;335,154;336,154;337,155;338,155;339,156;340,156;341,157;342,158;343,158;344,159;345,160;346,160;347,161;348,162;349,162;350,163;351,164;352,165;353,165;354,166;355,167;356,168;357,169;358,170;359,171;360,171;361,172;362,173;363,174;364,175;365,176;366,177;367,178;368,179;369,180;370,181;370,182;371,183;372,184;373,185;374,186;375,187;375,188;376,189;377,190;378,191;378,192;379,193;380,194;380,195;381,196;382,197;382,198;383,199;384,200;384,201;385,202;385,203;386,204;387,205;387,206;388,207;388,208;389,209;389,210;390,211;390,212;391,213;391,214;391,215;392,216;392,217;393,218;393,219;394,220;394,221;394,222;395,223;395,224;396,225;396,226;396,227;396,228;396,229;397,230;397,231;397,232;397,233;396,234;396,235;396,236;396,237;395,238;395,239;394,240;393,241;393,242;392,243;391,244;390,244;389,245;388,245;387,246;386,246;385,247;384,247;383,247;382,247;381,247;380,247;379,247;378,247;377,247;376,247;375,246;374,246;373,246;372,245;371,245;370,245;369,244;368,244;367,244;366,244;365,243;364,243;363,243;362,243;361,242;360,242;359,242;358,242;357,242;356,242;355,241;354,241;353,241;352,241;351,241;350,241;349,241;348,241;347,241;346,241;345,241;344,241;343,241;342,240;341,240;340,240;339,240;338,241;337,241;336,241;335,241;334,241;333,241;332,241;331,241;330,241;329,241;328,241;327,241;326,242;325,242;324,242;323,242;322,242;321,242;320,243;319,243;318,243;317,243;316,244;315,244;314,244;313,244;312,245;311,245;310,245;309,246;308,246;307,246;306,247;305,247;304,248;303,248;302,249;301,249;300,249;299,250;298,250;297,251;296,251;295,252;294,252;293,253;292,254;291,254;290,255;289,255;288,256;287,256;286,257;285,258;284,259;283,259;282,260;281,261;280,262;279,262;278,263;277,264;276,265;275,266;274,267;273,268;272,269;271,269;270,270;270,271;269,272;268,273;267,274;266,275;265,276;264,277;263,278;263,279;262,280;261,281;260,282;260,283;259,284;258,285;257,286;257,287;256,288;256,289;255,290;254,291;254,292;253,293;253,294;252,295;252,296;251,297;251,298;250,299;250,300;249,301;249,302;249,303;248,304;248,305;247,306;247,307;247,308;246,309;246,310;246,311;245,312;245,313;245,314;245,315;244,316;244,317;244,318;244,319;243,320;243,321;243,322;243,323;243,324;243,325;242,326;242,327;242,328;242,329;242,330;242,331;242,332;242,333;242,334;242,335;242,336;241,337;241,338;241,339;241,340;241,341;241,342;242,343;242,344;242,345;242,346;242,347;242,348;242,349;242,350;242,351;242,352;242,353;242,354;243,355;243,356;243,357;243,358;243,359;243,360;244,361;244,362;244,363;244,364;245,365;245,366;245,367;245,368;246,369;246,370;246,371;247,372;247,373;247,374;248,375;248,376;248,377;248,378;248,379;248,380;248,381;248,382;248,383;248,384;247,385;247,386;246,387;246,388;245,389;245,390;244,391;243,392;242,392;241,393;240,394;239,394;238,395;237,395;236,395;235,395;234,396;233,396;232,396;231,396;230,396;229,395;228,395;227,395;226,395;225,394;224,394;223,393;222,393;221,393;220,392;219,392;218,391;217,391;216,390;215,390;214,390;213,389;212,389;211,388;210,388;209,387;208,387;207,386;206,386;205,385;204,384;203,384;202,383;201,383;200,382;199,381;198,381;197,380;196,379;195,379;194,378;193,377;192,377;191,376;190,375;189,374;188,374;187,373;186,372;185,371;184,370;183,369;182,369;181,368;180,367;179,366;178,365;177,364;176,363;175,362;174,361;173,360;172,359;171,358;171,357;170,356;169,355;168,354;167,353;167,352;166,351;165,350;164,349;163,348;163,347;162,346;161,345;161,344;160,343;159,342;159,341;158,340;158,339;157,338;156,337;156,336;155,335;155,334;154,333;154,332;153,331;153,330;152,329;152,328;151,327;151,326;150,325;150,324;149,323;149,322;148,321;148,320;148,319;147,318;147,317;146,316;146,315;146,314;145,313;145,312;145,311;144,310;144,309;144,308;144,307;143,306;143,305;143,304;142,303;142,302;142,301;142,300;142,299;141,298;141,297;141,296;141,295;140,294;140,293;140,292;140,291;140,290;140,289;140,288;139,287;139,286;139,285;139,284;139,283;139,282;139,281;139,280;139,279;139,278;171,283;172,284;172,285;172,286;172,287;172,288;172,289;173,290;173,291;173,292;173,293;174,294;174,295;174,296;174,297;175,298;175,299;175,300;176,301;176,302;176,303;177,304;177,305;177,306;178,307;178,308;179,309;179,310;179,311;180,312;180,313;181,314;181,315;182,316;182,317;183,318;183,319;184,320;185,321;185,322;186,323;186,324;187,325;188,326;188,327;189,328;190,329;191,330;191,331;192,332;193,333;194,334;195,335;195,336;196,337;197,338;198,339;199,340;200,341;201,342;202,343;203,344;204,345;205,345;206,346;207,347;208,348;209,347;209,346;209,345;209,344;209,343;209,342;209,341;209,340;209,339;209,338;209,337;209,336;209,335;209,334;209,333;209,332;209,331;209,330;210,329;210,328;210,327;210,326;210,325;210,324;210,323;210,322;210,321;211,320;211,319;211,318;211,317;211,316;211,315;212,314;212,313;212,312;212,311;213,310;213,309;213,308;213,307;213,306;214,305;214,304;214,303;215,302;215,301;215,300;216,299;216,298;216,297;217,296;217,295;217,294;218,293;218,292;218,291;219,290;219,289;220,288;220,287;221,286;221,285;222,284;222,283;222,282;223,281;223,280;224,279;225,278;225,277;226,276;226,275;227,274;227,273;228,272;229,271;229,270;230,269;230,268;231,267;232,266;232,265;233,264;234,263;235,262;235,261;236,260;237,259;238,258;238,257;239,256;240,255;241,254;242,253;243,252;244,251;245,250;246,249;246,248;247,247;248,246;249,245;250,245;251,244;252,243;253,242;254,241;255,240;256,239;257,238;258,237;259,237;260,236;261,235;262,234;263,234;264,233;265,232;266,232;267,231;268,230;269,229;270,229;271,228;272,228;273,227;274,226;275,226;276,225;277,225;278,224;279,224;280,223;281,222;282,222;283,222;284,221;285,221;286,220;287,220;288,219;289,219;290,218;291,218;292,218;293,217;294,217;295,216;296,216;297,216;298,215;299,215;300,215;301,214;302,214;303,214;304,213;305,213;306,213;307,213;308,212;309,212;310,212;311,212;312,211;313,211;314,211;315,211;316,210;317,210;318,210;319,210;320,210;321,210;322,209;323,209;324,209;325,209;326,209;327,209;328,209;329,209;330,209;331,208;332,208;333,208;334,208;335,208;336,208;337,208;338,208;339,208;340,208;341,208;342,208;343,208;344,208;345,208;346,208;347,208;348,208;349,207;348,206;347,205;347,204;346,203;345,202;344,201;343,200;342,199;341,198;340,197;339,196;338,195;337,194;336,194;335,193;334,192;333,191;332,190;331,190;330,189;329,188;328,187;327,187;326,186;325,185;324,185;323,184;322,184;321,183;320,182;319,182;318,181;317,181;316,180;315,180;314,179;313,179;312,178;311,178;310,178;309,177;308,177;307,176;306,176;305,176;304,175;303,175;302,175;301,174;300,174;299,174;298,174;297,173;296,173;295,173;294,173;293,172;292,172;291,172;290,172;289,172;288,171;287,171;286,171;285,171;284,171;283,171;282,170;281,170;280,170;279,170;278,170;277,170;276,170;275,170;274,170;273,170;272,170;271,170;270,170;269,170;268,170;267,170;266,170;265,170;264,170;263,170;262,170;261,170;260,171;259,171;258,171;257,171;256,171;255,171;254,171;253,172;252,172;251,172;250,172;249,172;248,173;247,173;246,173;245,173;244,174;243,174;242,174;241,174;240,175;239,175;238,175;237,176;236,176;235,176;234,177;233,177;232,178;231,178;230,179;229,179;228,180;227,180;226,180;225,181;224,181;223,182;222,182;221,183;220,184;219,184;218,185;217,185;216,186;215,187;214,188;213,188;212,189;211,190;210,190;209,191;208,192;207,193;206,194;205,195;204,195;203,196;202,197;201,198;200,199;199,200;198,201;197,202;196,203;195,204;195,205;194,206;193,207;192,208;191,209;191,210;190,211;189,212;188,213;188,214;187,215;186,216;186,217;185,218;185,219;184,220;183,221;183,222;182,223;182,224;181,225;181,226;180,227;180,228;179,229;179,230;179,231;178,232;178,233;177,234;177,235;177,236;176,237;176,238;176,239;175,240;175,241;175,242;174,243;174,244;174,245;174,246;173,247;173,248;173,249;173,250;172,251;172,252;172,253;172,254;172,255;172,256;171,257;171,258;171,259;171,260;171,261;171,262;171,263;171,264;171,265;171,266;171,267;171,268;171,269;171,270;171,271;171,272;171,273;171,274;171,275;171,276;171,277;171,278;171,279;171,280;171,281;171,282];
sunCloud = [1,319;1,318;1,317;1,316;1,315;1,314;1,313;1,312;2,311;2,310;3,309;3,308;4,307;4,306;5,305;6,304;7,303;8,303;9,302;10,301;11,301;12,301;13,300;14,300;15,300;16,300;17,300;18,300;19,300;20,300;21,300;22,300;23,300;24,300;25,300;26,300;27,300;28,300;29,300;30,300;31,300;32,300;33,300;34,300;35,300;36,300;37,300;38,300;39,300;40,300;41,300;42,300;43,300;44,300;45,300;46,300;47,300;48,300;49,300;50,300;51,300;52,300;53,300;54,300;55,300;56,301;57,301;58,302;59,302;60,303;61,304;62,304;62,305;63,306;64,307;65,308;65,309;65,310;66,311;66,312;66,313;66,314;67,315;67,316;67,317;66,318;66,319;66,320;66,321;65,322;65,323;65,324;64,325;63,326;62,327;61,328;60,329;59,330;58,330;57,331;56,331;55,331;54,332;53,332;52,332;51,332;50,332;49,332;48,332;47,332;46,332;45,332;44,332;43,332;42,332;41,332;40,332;39,332;38,332;37,332;36,332;35,332;34,332;33,332;32,332;31,332;30,332;29,332;28,332;27,332;26,332;25,332;24,332;23,332;22,332;21,332;20,332;19,332;18,332;17,332;16,332;15,332;14,332;13,332;12,331;11,331;10,330;9,330;8,329;7,329;6,328;5,327;4,326;4,325;3,324;3,323;2,322;2,321;2,320;1,160;1,159;1,158;1,157;1,156;1,155;1,154;1,153;1,152;1,151;1,150;1,149;1,148;1,147;1,146;1,145;1,144;1,143;1,142;1,141;1,140;1,139;2,138;2,137;2,136;2,135;2,134;2,133;2,132;2,131;3,130;3,129;3,128;3,127;3,126;4,125;4,124;4,123;4,122;5,121;5,120;5,119;5,118;6,117;6,116;6,115;7,114;7,113;7,112;8,111;8,110;8,109;9,108;9,107;9,106;10,105;10,104;11,103;11,102;12,101;12,100;12,99;13,98;13,97;14,96;15,95;15,94;16,93;16,92;17,91;17,90;18,89;19,88;19,87;20,86;20,85;21,84;22,83;23,82;23,81;24,80;25,79;26,78;26,77;27,76;28,75;29,74;30,73;31,72;31,71;32,70;33,69;34,68;35,67;36,66;37,65;38,64;39,63;40,63;41,62;42,61;43,60;44,59;45,58;46,58;47,57;48,56;49,55;50,55;51,54;52,53;53,53;54,52;55,51;56,51;57,50;58,49;59,49;60,48;61,48;62,47;63,47;64,46;65,46;66,45;67,45;68,44;69,44;70,43;71,43;72,42;73,42;74,42;75,41;76,41;77,40;78,40;79,40;80,39;81,39;82,39;83,38;84,38;85,38;86,38;87,37;88,37;89,37;90,37;91,36;92,36;93,36;94,36;95,35;96,35;97,35;98,35;99,35;100,35;101,34;102,34;103,34;104,34;105,34;106,34;107,34;108,34;109,34;110,34;111,33;112,33;113,33;114,33;115,33;116,33;117,33;118,33;119,33;120,33;121,33;122,33;123,33;124,34;125,34;126,34;127,34;128,34;129,34;130,34;131,34;132,34;133,34;134,35;135,35;136,35;137,35;138,35;139,35;140,36;141,36;142,36;143,36;144,36;145,37;146,37;147,37;148,38;149,38;150,38;151,38;152,39;153,39;154,39;155,40;156,40;157,40;158,41;159,40;160,40;161,39;162,38;163,37;164,36;165,36;166,35;167,34;168,33;169,32;170,32;171,31;172,30;173,30;174,29;175,28;176,28;177,27;178,26;179,26;180,25;181,24;182,24;183,23;184,23;185,22;186,21;187,21;188,20;189,20;190,19;191,19;192,18;193,18;194,17;195,17;196,16;197,16;198,15;199,15;200,14;201,14;202,13;203,13;204,13;205,12;206,12;207,11;208,11;209,11;210,10;211,10;212,10;213,9;214,9;215,8;216,8;217,8;218,8;219,7;220,7;221,7;222,6;223,6;224,6;225,6;226,5;227,5;228,5;229,4;230,4;231,4;232,4;233,4;234,3;235,3;236,3;237,3;238,3;239,2;240,2;241,2;242,2;243,2;244,2;245,1;246,1;247,1;248,1;249,1;250,1;251,1;252,1;253,1;254,1;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0;274,0;275,0;276,0;277,0;278,0;279,0;280,1;281,1;282,1;283,1;284,1;285,1;286,1;287,1;288,1;289,1;290,2;291,2;292,2;293,2;294,2;295,2;296,3;297,3;298,3;299,3;300,3;301,4;302,4;303,4;304,4;305,4;306,5;307,5;308,5;309,5;310,6;311,6;312,6;313,7;314,7;315,7;316,7;317,8;318,8;319,8;320,9;321,9;322,9;323,10;324,10;325,11;326,11;327,11;328,12;329,12;330,13;331,13;332,13;333,14;334,14;335,15;336,15;337,16;338,16;339,17;340,17;341,18;342,18;343,19;344,19;345,20;346,20;347,21;348,21;349,22;350,23;351,23;352,24;353,24;354,25;355,26;356,26;357,27;358,28;359,28;360,29;361,30;362,30;363,31;364,32;365,32;366,33;367,34;368,35;369,36;370,36;371,37;372,38;373,39;374,40;375,40;376,41;377,40;378,40;379,40;380,39;381,39;382,39;383,38;384,38;385,38;386,38;387,37;388,37;389,37;390,36;391,36;392,36;393,36;394,36;395,35;396,35;397,35;398,35;399,35;400,35;401,34;402,34;403,34;404,34;405,34;406,34;407,34;408,34;409,34;410,34;411,33;412,33;413,33;414,33;415,33;416,33;417,33;418,33;419,33;420,33;421,33;422,33;423,33;424,34;425,34;426,34;427,34;428,34;429,34;430,34;431,34;432,34;433,34;434,35;435,35;436,35;437,35;438,35;439,35;440,36;441,36;442,36;442,37;442,38;442,39;442,40;442,41;442,42;442,43;442,44;442,45;442,46;442,47;442,48;442,49;442,50;442,51;442,52;442,53;442,54;443,55;443,56;443,57;443,58;443,59;443,60;443,61;443,62;443,63;443,64;443,65;443,66;443,67;443,68;443,69;443,70;442,69;441,69;440,69;439,69;438,68;437,68;436,68;435,68;434,67;433,67;432,67;431,67;430,67;429,67;428,66;427,66;426,66;425,66;424,66;423,66;422,66;421,66;420,66;419,66;418,66;417,66;416,66;415,66;414,66;413,66;412,66;411,66;410,66;409,66;408,66;407,66;406,66;405,67;404,67;403,67;402,67;401,67;400,67;399,68;398,68;397,68;396,68;395,69;394,69;393,69;392,70;391,70;390,70;389,71;388,71;387,71;386,72;385,72;384,73;383,73;382,73;381,74;380,74;379,75;378,75;377,76;376,77;375,77;374,78;373,78;372,79;371,80;370,80;369,81;368,80;367,79;367,78;366,77;365,76;364,75;363,74;362,73;361,72;360,71;359,70;358,69;357,68;356,67;355,66;354,65;353,65;352,64;351,63;350,62;349,61;348,60;347,60;346,59;345,58;344,57;343,57;342,56;341,55;340,55;339,54;338,53;337,53;336,52;335,51;334,51;333,50;332,50;331,49;330,49;329,48;328,47;327,47;326,46;325,46;324,45;323,45;322,44;321,44;320,44;319,43;318,43;317,42;316,42;315,41;314,41;313,41;312,40;311,40;310,40;309,39;308,39;307,39;306,38;305,38;304,38;303,37;302,37;301,37;300,37;299,36;298,36;297,36;296,36;295,35;294,35;293,35;292,35;291,35;290,34;289,34;288,34;287,34;286,34;285,34;284,33;283,33;282,33;281,33;280,33;279,33;278,33;277,33;276,33;275,33;274,33;273,32;272,32;271,32;270,32;269,32;268,32;267,32;266,32;265,32;264,32;263,32;262,32;261,32;260,33;259,33;258,33;257,33;256,33;255,33;254,33;253,33;252,33;251,33;250,33;249,34;248,34;247,34;246,34;245,34;244,34;243,35;242,35;241,35;240,35;239,35;238,36;237,36;236,36;235,36;234,37;233,37;232,37;231,37;230,38;229,38;228,38;227,39;226,39;225,39;224,40;223,40;222,40;221,41;220,41;219,41;218,42;217,42;216,43;215,43;214,44;213,44;212,45;211,45;210,45;209,46;208,46;207,47;206,48;205,48;204,49;203,49;202,50;201,50;200,51;199,52;198,52;197,53;196,53;195,54;194,55;193,55;192,56;191,57;190,57;189,58;188,59;187,60;186,60;185,61;184,62;183,63;182,64;181,65;180,65;179,66;178,67;177,68;176,69;175,70;174,71;173,72;172,73;171,74;170,75;169,76;168,77;167,78;167,79;166,80;165,81;164,80;163,80;162,79;161,78;160,78;159,77;158,77;157,76;156,75;155,75;154,74;153,74;152,73;151,73;150,73;149,72;148,72;147,71;146,71;145,71;144,70;143,70;142,70;141,69;140,69;139,69;138,68;137,68;136,68;135,68;134,67;133,67;132,67;131,67;130,67;129,67;128,66;127,66;126,66;125,66;124,66;123,66;122,66;121,66;120,66;119,66;118,66;117,66;116,66;115,66;114,66;113,66;112,66;111,66;110,66;109,66;108,66;107,66;106,66;105,67;104,67;103,67;102,67;101,67;100,67;99,68;98,68;97,68;96,68;95,69;94,69;93,69;92,69;91,70;90,70;89,70;88,71;87,71;86,72;85,72;84,72;83,73;82,73;81,74;80,74;79,75;78,75;77,76;76,77;75,77;74,78;73,78;72,79;71,80;70,80;69,81;68,82;67,82;66,83;65,84;64,85;63,86;62,87;61,87;60,88;59,89;58,90;57,91;56,92;55,93;54,94;54,95;53,96;52,97;51,98;50,99;50,100;49,101;48,102;47,103;47,104;46,105;46,106;45,107;44,108;44,109;43,110;43,111;42,112;42,113;41,114;41,115;40,116;40,117;39,118;39,119;39,120;38,121;38,122;38,123;37,124;37,125;37,126;36,127;36,128;36,129;36,130;35,131;35,132;35,133;35,134;35,135;34,136;34,137;34,138;34,139;34,140;34,141;34,142;34,143;34,144;33,145;33,146;33,147;33,148;33,149;33,150;33,151;33,152;33,153;33,154;34,155;34,156;34,157;34,158;34,159;34,160;34,161;34,162;34,163;35,164;35,165;35,166;35,167;35,168;36,169;36,170;36,171;36,172;37,173;37,174;37,175;38,176;38,177;38,178;39,179;39,180;40,181;40,182;40,183;41,184;41,185;42,186;42,187;43,188;43,189;44,190;44,191;45,192;46,193;46,194;47,195;48,196;48,197;49,198;50,199;50,200;51,201;52,202;53,203;54,204;55,205;56,206;56,207;57,208;58,209;59,210;60,211;61,211;62,212;63,213;64,214;65,215;66,216;67,216;68,217;69,218;70,219;71,219;72,220;73,221;74,221;75,222;76,222;77,223;78,223;79,224;80,224;81,225;82,225;83,226;84,226;85,227;86,227;87,228;88,228;89,228;90,229;91,229;92,229;93,230;94,230;95,230;96,230;97,231;98,231;99,231;100,231;101,232;102,232;103,232;104,232;105,232;106,232;107,233;108,233;109,233;110,233;111,233;112,233;113,233;114,233;115,233;116,233;117,233;118,233;119,233;120,233;121,233;122,233;123,233;124,233;125,233;126,233;127,232;128,232;129,232;130,232;131,232;132,232;133,231;134,231;135,231;136,231;137,230;138,230;139,230;140,230;141,229;142,229;143,229;144,228;145,228;146,228;147,228;148,227;149,227;149,228;150,229;150,230;151,231;151,232;152,233;153,234;153,235;154,236;155,237;155,238;156,239;156,240;157,241;158,242;159,243;159,244;160,245;161,246;162,247;162,248;163,249;164,250;165,251;166,252;167,253;167,254;168,255;169,256;170,257;171,258;172,259;173,260;174,261;175,262;176,263;177,264;178,265;179,266;180,267;181,267;182,268;183,269;184,270;185,271;186,272;187,272;188,273;189,274;190,275;191,275;192,276;193,277;194,277;195,278;196,279;197,279;198,280;199,281;200,281;201,282;202,282;203,283;204,284;205,284;206,285;207,285;208,286;209,286;210,287;211,287;212,288;213,288;214,288;215,289;216,289;217,290;218,290;219,291;220,291;221,291;222,292;223,292;224,293;225,293;226,293;227,294;228,294;229,294;230,294;231,295;232,295;233,295;234,296;235,296;236,296;237,296;238,297;239,297;240,297;241,297;242,297;243,298;244,298;245,298;246,298;247,298;248,298;249,299;250,299;251,299;252,299;253,299;254,299;255,299;256,299;257,299;258,299;259,300;260,300;261,300;262,300;263,300;264,300;265,300;266,300;267,300;268,300;269,300;270,300;271,300;272,300;273,300;274,300;275,300;276,299;277,299;278,299;279,299;280,299;281,299;282,299;283,299;284,299;285,298;286,298;287,298;288,298;289,298;290,298;291,297;292,297;293,297;294,297;295,296;296,296;297,296;298,296;299,296;300,295;301,295;302,295;303,294;304,294;305,294;306,294;307,293;308,293;309,293;310,292;311,292;312,292;313,291;314,291;315,290;316,290;317,290;318,289;319,289;320,288;321,288;322,287;323,287;324,286;325,286;326,285;327,285;328,284;329,284;330,283;331,283;332,282;333,282;334,281;335,280;336,280;337,279;338,279;339,278;340,277;341,277;342,276;343,275;344,275;345,274;346,273;347,272;348,272;349,271;350,270;351,269;352,268;353,268;354,267;355,266;356,265;357,264;358,263;359,262;360,261;361,260;362,259;363,258;364,257;365,256;366,255;367,254;368,253;369,252;369,251;370,250;371,249;372,248;373,247;373,246;374,245;375,244;376,243;376,242;377,241;378,240;378,239;379,238;380,237;380,236;381,235;381,234;382,233;383,232;383,231;384,230;384,229;385,228;385,227;386,227;387,228;388,228;389,228;390,229;391,229;392,229;393,230;394,230;395,230;396,230;397,231;398,231;399,231;400,231;401,232;402,232;403,232;404,232;405,232;406,232;407,233;408,233;409,233;410,233;411,233;412,233;413,233;414,233;415,233;416,233;417,233;418,233;419,233;420,233;421,233;422,233;423,233;424,233;425,233;426,233;427,233;428,232;429,232;430,232;431,232;432,232;433,232;434,231;435,231;436,231;437,231;438,230;439,230;440,230;441,230;442,229;443,229;443,230;443,231;443,232;443,233;443,234;443,235;443,236;443,237;443,238;443,239;443,240;443,241;443,242;443,243;443,244;443,245;443,246;443,247;443,248;443,249;443,250;443,251;443,252;443,253;443,254;443,255;443,256;443,257;443,258;443,259;443,260;443,261;443,262;443,263;442,263;441,263;440,263;439,263;438,264;437,264;436,264;435,264;434,264;433,264;432,264;431,265;430,265;429,265;428,265;427,265;426,265;425,265;424,265;423,265;422,265;421,265;420,265;419,265;418,265;417,265;416,265;415,265;414,265;413,265;412,265;411,265;410,265;409,265;408,265;407,265;406,265;405,265;404,265;403,265;402,264;401,264;400,265;399,266;398,267;398,268;397,269;396,270;395,271;394,272;394,273;393,274;392,275;391,276;390,277;389,278;388,279;387,280;386,281;385,282;384,283;383,284;382,285;381,286;380,287;379,288;378,289;377,290;376,291;375,292;374,293;373,293;372,294;371,295;370,296;369,297;368,297;367,298;366,299;365,300;364,300;363,301;362,302;361,303;360,303;359,304;358,305;357,305;356,306;355,306;354,307;353,308;352,308;351,309;350,309;349,310;348,311;347,311;346,312;345,312;344,313;343,313;342,314;341,314;340,315;339,315;338,316;337,316;336,317;335,317;334,318;333,319;333,320;333,321;333,322;333,323;333,324;333,325;332,326;332,327;332,328;332,329;332,330;332,331;332,332;332,333;331,334;331,335;331,336;331,337;331,338;331,339;330,340;330,341;330,342;330,343;329,344;329,345;329,346;329,347;328,348;328,349;328,350;327,351;327,352;327,353;326,354;326,355;326,356;325,357;325,358;325,359;324,360;324,361;323,362;323,363;323,364;322,365;322,366;321,367;321,368;320,369;320,370;319,371;319,372;318,373;317,374;317,375;316,376;316,377;315,378;314,379;314,380;313,381;312,382;312,383;311,384;310,385;309,386;309,387;308,388;307,389;306,390;306,391;305,392;304,393;303,394;302,395;301,396;300,397;299,398;298,399;297,400;296,401;295,402;294,403;293,404;292,405;291,405;290,406;289,407;288,408;287,409;286,409;285,410;284,411;283,411;282,412;281,413;280,414;279,414;278,415;277,415;276,416;275,417;274,417;273,418;272,418;271,419;270,419;269,420;268,420;267,421;266,421;265,422;264,422;263,423;262,423;261,423;260,424;259,424;258,425;257,425;256,425;255,426;254,426;253,426;252,427;251,427;250,427;249,428;248,428;247,428;246,428;245,429;244,429;243,429;242,429;241,430;240,430;239,430;238,430;237,430;236,430;235,431;234,431;233,431;232,431;231,431;230,431;229,431;228,432;227,432;226,432;225,432;224,432;223,432;222,432;221,432;220,432;219,432;218,432;217,432;216,432;215,432;214,432;213,432;212,432;211,432;210,432;209,432;208,432;207,432;206,432;205,431;204,431;203,431;202,431;201,431;200,431;199,431;198,430;197,430;196,430;195,430;194,430;193,430;192,429;191,429;190,429;189,429;188,428;187,428;186,428;185,428;184,427;183,427;182,427;181,426;180,426;179,426;178,425;177,425;176,425;175,424;174,424;173,423;172,423;171,423;170,422;169,422;168,421;167,421;166,420;165,420;164,419;163,419;162,418;161,418;160,417;159,417;158,416;157,415;156,415;155,414;154,413;153,413;152,412;151,411;150,411;149,410;148,409;147,409;146,408;145,407;144,406;143,405;142,405;141,404;140,403;139,402;138,401;137,400;136,399;135,398;134,397;133,396;132,395;131,394;130,393;129,392;128,391;128,390;127,389;126,388;125,387;124,386;124,385;123,384;122,383;122,382;121,381;120,380;120,379;119,378;118,377;118,376;117,375;116,374;116,373;115,372;115,371;114,370;114,369;113,368;113,367;112,366;112,365;111,364;111,363;110,362;110,361;110,360;109,359;109,358;108,357;108,356;108,355;107,354;107,353;107,352;106,351;106,350;106,349;105,348;105,347;105,346;105,345;104,344;104,343;104,342;104,341;103,340;103,339;103,338;103,337;103,336;103,335;102,334;102,333;102,332;102,331;102,330;102,329;102,328;101,327;101,326;101,325;101,324;101,323;101,322;101,321;101,320;101,319;101,318;101,317;101,316;101,315;101,314;101,313;101,312;101,311;101,310;101,309;101,308;101,307;101,306;102,305;102,304;102,303;102,302;102,301;102,300;102,299;102,298;103,297;103,296;103,295;103,294;103,293;104,292;104,291;104,290;104,289;105,288;105,287;105,286;105,285;106,284;106,283;106,282;107,281;107,280;107,279;108,278;108,277;108,276;109,275;109,274;110,273;110,272;110,271;111,270;111,269;112,268;112,267;113,266;112,265;111,265;110,265;109,265;108,265;107,265;106,265;105,264;104,264;103,264;102,264;101,264;100,264;99,264;98,264;97,263;96,263;95,263;94,263;93,263;92,262;91,262;90,262;89,262;88,261;87,261;86,261;85,261;84,260;83,260;82,260;81,259;80,259;79,259;78,258;77,258;76,258;75,257;74,257;73,256;72,256;71,256;70,255;69,255;68,254;67,254;66,253;65,253;64,252;63,252;62,251;61,251;60,250;59,250;58,249;57,248;56,248;55,247;54,247;53,246;52,245;51,245;50,244;49,243;48,242;47,242;46,241;45,240;44,239;43,239;42,238;41,237;40,236;39,235;38,234;37,233;36,232;35,231;34,230;33,229;32,228;31,227;30,226;29,225;28,224;27,223;27,222;26,221;25,220;24,219;24,218;23,217;22,216;21,215;21,214;20,213;19,212;19,211;18,210;18,209;17,208;16,207;16,206;15,205;15,204;14,203;14,202;13,201;13,200;12,199;12,198;11,197;11,196;10,195;10,194;10,193;9,192;9,191;8,190;8,189;8,188;7,187;7,186;7,185;6,184;6,183;6,182;5,181;5,180;5,179;5,178;4,177;4,176;4,175;4,174;3,173;3,172;3,171;3,170;3,169;2,168;2,167;2,166;2,165;2,164;2,163;2,162;2,161;60,462;60,461;60,460;60,459;60,458;60,457;60,456;60,455;60,454;60,453;60,452;61,451;61,450;62,449;62,448;63,447;64,446;65,445;66,444;67,443;68,442;69,441;70,440;71,439;72,438;73,437;74,436;75,435;76,434;77,433;78,432;79,431;80,430;81,429;82,428;83,427;84,426;85,425;86,424;87,423;88,422;89,421;90,420;91,420;92,419;93,419;94,418;95,418;96,418;97,418;98,418;99,418;100,418;101,418;102,418;103,418;104,418;105,419;106,419;107,420;108,420;109,421;110,422;111,422;111,423;112,424;113,425;113,426;114,427;114,428;115,429;115,430;115,431;115,432;115,433;115,434;115,435;115,436;115,437;115,438;115,439;114,440;114,441;113,442;113,443;112,444;111,445;110,446;109,447;108,448;107,449;106,450;105,451;104,452;103,453;102,454;101,455;100,456;99,457;98,458;97,459;96,460;95,461;94,462;93,463;92,464;91,465;90,466;89,467;88,468;87,469;86,470;85,471;84,471;83,472;82,472;81,473;80,473;79,473;78,473;77,473;76,473;75,473;74,473;73,473;72,473;71,473;70,472;69,472;68,472;67,471;66,470;65,470;64,469;63,468;63,467;62,466;61,465;61,464;61,463;133,322;134,323;134,324;134,325;134,326;134,327;134,328;134,329;134,330;135,331;135,332;135,333;135,334;135,335;136,336;136,337;136,338;136,339;137,340;137,341;137,342;138,343;138,344;138,345;139,346;139,347;140,348;140,349;141,350;141,351;141,352;142,353;142,354;143,355;143,356;144,357;145,358;145,359;146,360;146,361;147,362;148,363;149,364;149,365;150,366;151,367;152,368;152,369;153,370;154,371;155,372;156,373;157,374;158,375;159,376;160,377;161,378;162,379;163,380;164,381;165,381;166,382;167,383;168,384;169,384;170,385;171,386;172,387;173,387;174,388;175,388;176,389;177,390;178,390;179,391;180,391;181,392;182,392;183,392;184,393;185,393;186,394;187,394;188,395;189,395;190,395;191,396;192,396;193,396;194,397;195,397;196,397;197,397;198,398;199,398;200,398;201,398;202,398;203,399;204,399;205,399;206,399;207,399;208,399;209,399;210,399;211,400;212,400;213,400;214,400;215,400;216,400;217,400;218,400;219,400;220,400;221,400;222,400;223,400;224,399;225,399;226,399;227,399;228,399;229,399;230,399;231,399;232,398;233,398;234,398;235,398;236,398;237,397;238,397;239,397;240,397;241,396;242,396;243,396;244,395;245,395;246,395;247,394;248,394;249,393;250,393;251,392;252,392;253,392;254,391;255,391;256,390;257,389;258,389;259,388;260,388;261,387;262,386;263,386;264,385;265,384;266,384;267,383;268,382;269,381;270,381;271,380;272,379;273,378;274,377;275,376;276,375;277,374;278,373;279,372;280,371;281,370;281,369;282,368;283,367;284,366;285,365;285,364;286,363;287,362;287,361;288,360;289,359;289,358;290,357;290,356;291,355;291,354;292,353;292,352;293,351;293,350;294,349;294,348;295,347;295,346;295,345;296,344;296,343;296,342;297,341;297,340;297,339;298,338;298,337;298,336;298,335;299,334;299,333;299,332;299,331;299,330;298,329;297,329;296,329;295,329;294,330;293,330;292,330;291,330;290,330;289,330;288,331;287,331;286,331;285,331;284,331;283,331;282,331;281,331;280,331;279,332;278,332;277,332;276,332;275,332;274,332;273,332;272,332;271,332;270,332;269,332;268,332;267,332;266,332;265,332;264,332;263,332;262,332;261,332;260,332;259,332;258,332;257,332;256,332;255,332;254,332;253,331;252,331;251,331;250,331;249,331;248,331;247,331;246,331;245,331;244,330;243,330;242,330;241,330;240,330;239,330;238,330;237,329;236,329;235,329;234,329;233,329;232,328;231,328;230,328;229,328;228,327;227,327;226,327;225,327;224,326;223,326;222,326;221,326;220,325;219,325;218,325;217,324;216,324;215,324;214,323;213,323;212,323;211,322;210,322;209,322;208,321;207,321;206,320;205,320;204,320;203,319;202,319;201,318;200,318;199,317;198,317;197,316;196,316;195,315;194,315;193,314;192,314;191,314;190,313;189,312;188,312;187,311;186,311;185,310;184,310;183,309;182,308;181,308;180,307;179,307;178,306;177,305;176,305;175,304;174,303;173,303;172,302;171,301;170,300;169,300;168,299;167,298;166,297;165,297;164,296;163,295;162,294;161,293;160,293;159,292;158,291;157,290;156,289;155,288;154,287;153,286;152,285;151,284;150,283;149,282;148,281;147,280;146,279;145,278;144,277;143,278;142,279;142,280;141,281;141,282;140,283;140,284;140,285;139,286;139,287;138,288;138,289;138,290;137,291;137,292;137,293;136,294;136,295;136,296;136,297;135,298;135,299;135,300;135,301;135,302;134,303;134,304;134,305;134,306;134,307;134,308;134,309;133,310;133,311;133,312;133,313;133,314;133,315;133,316;133,317;133,318;133,319;133,320;133,321;201,520;201,519;201,518;201,517;201,516;201,515;201,514;201,513;201,512;201,511;201,510;201,509;201,508;201,507;201,506;201,505;201,504;201,503;201,502;201,501;201,500;201,499;201,498;201,497;201,496;201,495;201,494;201,493;201,492;201,491;201,490;201,489;201,488;201,487;201,486;201,485;201,484;201,483;201,482;201,481;201,480;201,479;202,478;202,477;202,476;203,475;203,474;204,473;205,472;206,471;207,470;208,469;209,468;210,468;211,468;212,467;213,467;214,467;215,467;216,466;217,466;218,466;219,467;220,467;221,467;222,467;223,468;224,468;225,468;226,469;227,470;228,471;229,471;229,472;230,473;231,474;231,475;232,476;232,477;233,478;233,479;233,480;233,481;233,482;233,483;233,484;233,485;233,486;233,487;233,488;233,489;233,490;233,491;233,492;233,493;233,494;233,495;233,496;233,497;233,498;233,499;233,500;233,501;233,502;233,503;233,504;233,505;233,506;233,507;233,508;233,509;233,510;233,511;233,512;233,513;233,514;233,515;233,516;233,517;233,518;233,519;233,520;232,521;232,522;232,523;231,524;230,525;230,526;229,527;228,528;227,529;226,529;225,530;224,530;223,531;222,531;221,532;220,532;219,532;218,532;217,532;216,532;215,532;214,532;213,531;212,531;211,531;210,530;209,530;208,529;207,529;206,528;205,527;204,526;204,525;203,524;202,523;202,522;202,521;319,439;319,438;319,437;319,436;319,435;319,434;319,433;319,432;319,431;319,430;319,429;320,428;320,427;321,426;321,425;322,424;323,423;324,422;325,421;326,420;327,420;328,419;329,419;330,418;331,418;332,418;333,418;334,418;335,418;336,418;337,418;338,418;339,418;340,418;341,419;342,419;343,420;344,420;345,421;346,422;347,423;348,424;349,425;350,426;351,427;352,428;353,429;354,430;355,431;356,432;357,433;358,434;359,435;360,436;361,437;362,438;363,439;364,440;365,441;366,442;367,443;368,444;369,445;370,446;371,447;372,448;372,449;373,450;373,451;374,452;374,453;374,454;374,455;374,456;374,457;374,458;374,459;374,460;374,461;374,462;373,463;373,464;373,465;372,466;371,467;371,468;370,469;369,470;368,470;367,471;366,472;365,472;364,472;363,473;362,473;361,473;360,473;359,473;358,473;357,473;356,473;355,473;354,473;353,473;352,472;351,472;350,471;349,471;348,470;347,469;346,468;345,467;344,466;343,465;342,464;341,463;340,462;339,461;338,460;337,459;336,458;335,457;334,456;333,455;332,454;331,453;330,452;329,451;328,450;327,449;326,448;325,447;324,446;323,445;322,444;321,443;321,442;320,441;320,440;367,317;367,316;367,315;368,314;368,313;368,312;368,311;369,310;369,309;369,308;370,307;371,306;372,305;373,304;374,303;375,302;376,302;377,301;378,301;379,300;380,300;381,300;382,300;383,300;384,300;385,300;386,300;387,300;388,300;389,300;390,300;391,300;392,300;393,300;394,300;395,300;396,300;397,300;398,300;399,300;400,300;401,300;402,300;403,300;404,300;405,300;406,300;407,300;408,300;409,300;410,300;411,300;412,300;413,300;414,300;415,300;416,300;417,300;418,300;419,300;420,300;421,300;422,301;423,301;424,301;425,302;426,303;427,303;428,304;429,305;430,306;430,307;431,308;432,309;432,310;432,311;433,312;433,313;433,314;433,315;433,316;433,317;433,318;433,319;433,320;432,321;432,322;431,323;431,324;430,325;430,326;429,327;428,328;427,329;426,329;425,330;424,331;423,331;422,331;421,332;420,332;419,332;418,332;417,332;416,332;415,332;414,332;413,332;412,332;411,332;410,332;409,332;408,332;407,332;406,332;405,332;404,332;403,332;402,332;401,332;400,332;399,332;398,332;397,332;396,332;395,332;394,332;393,332;392,332;391,332;390,332;389,332;388,332;387,332;386,332;385,332;384,332;383,332;382,332;381,332;380,332;379,331;378,331;377,331;376,330;375,330;374,329;373,328;372,327;371,326;370,325;370,324;369,323;369,322;368,321;368,320;368,319;368,318];
clouds = [1,160;1,159;1,158;1,157;1,156;1,155;1,154;1,153;1,152;1,151;1,150;1,149;1,148;1,147;1,146;1,145;1,144;1,143;1,142;1,141;1,140;1,139;2,138;2,137;2,136;2,135;2,134;2,133;2,132;2,131;3,130;3,129;3,128;3,127;3,126;4,125;4,124;4,123;4,122;5,121;5,120;5,119;5,118;6,117;6,116;6,115;7,114;7,113;7,112;8,111;8,110;8,109;9,108;9,107;9,106;10,105;10,104;11,103;11,102;12,101;12,100;13,99;13,98;14,97;14,96;15,95;15,94;16,93;16,92;17,91;17,90;18,89;19,88;19,87;20,86;21,85;21,84;22,83;23,82;23,81;24,80;25,79;26,78;26,77;27,76;28,75;29,74;30,73;31,72;31,71;32,70;33,69;34,68;35,67;36,66;37,65;38,64;39,63;40,63;41,62;42,61;43,60;44,59;45,58;46,58;47,57;48,56;49,55;50,55;51,54;52,53;53,53;54,52;55,51;56,51;57,50;58,50;59,49;60,48;61,48;62,47;63,47;64,46;65,46;66,45;67,45;68,44;69,44;70,43;71,43;72,42;73,42;74,42;75,41;76,41;77,40;78,40;79,40;80,39;81,39;82,39;83,38;84,38;85,38;86,38;87,37;88,37;89,37;90,37;91,36;92,36;93,36;94,36;95,35;96,35;97,35;98,35;99,35;100,35;101,34;102,34;103,34;104,34;105,34;106,34;107,34;108,34;109,34;110,34;111,34;112,33;113,33;114,33;115,33;116,33;117,33;118,33;119,33;120,33;121,33;122,33;123,34;124,34;125,34;126,34;127,34;128,34;129,34;130,34;131,34;132,34;133,34;134,35;135,35;136,35;137,35;138,35;139,35;140,36;141,36;142,36;143,36;144,37;145,37;146,37;147,37;148,38;149,38;150,38;151,38;152,39;153,39;154,39;155,40;156,40;157,40;158,41;159,41;160,40;161,39;162,38;163,37;164,36;165,36;166,35;167,34;168,33;169,33;170,32;171,31;172,30;173,30;174,29;175,28;176,28;177,27;178,26;179,26;180,25;181,24;182,24;183,23;184,23;185,22;186,21;187,21;188,20;189,20;190,19;191,19;192,18;193,18;194,17;195,17;196,16;197,16;198,15;199,15;200,14;201,14;202,13;203,13;204,13;205,12;206,12;207,11;208,11;209,11;210,10;211,10;212,10;213,9;214,9;215,9;216,8;217,8;218,8;219,7;220,7;221,7;222,6;223,6;224,6;225,6;226,5;227,5;228,5;229,5;230,4;231,4;232,4;233,4;234,3;235,3;236,3;237,3;238,3;239,2;240,2;241,2;242,2;243,2;244,2;245,1;246,1;247,1;248,1;249,1;250,1;251,1;252,1;253,1;254,1;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0;274,0;275,0;276,0;277,0;278,0;279,0;280,1;281,1;282,1;283,1;284,1;285,1;286,1;287,1;288,1;289,1;290,2;291,2;292,2;293,2;294,2;295,2;296,3;297,3;298,3;299,3;300,3;301,4;302,4;303,4;304,4;305,5;306,5;307,5;308,5;309,5;310,6;311,6;312,6;313,7;314,7;315,7;316,7;317,8;318,8;319,9;320,9;321,9;322,10;323,10;324,10;325,11;326,11;327,11;328,12;329,12;330,13;331,13;332,13;333,14;334,14;335,15;336,15;337,16;338,16;339,17;340,17;341,18;342,18;343,19;344,19;345,20;346,20;347,21;348,21;349,22;350,23;351,23;352,24;353,24;354,25;355,26;356,26;357,27;358,28;359,28;360,29;361,30;362,30;363,31;364,32;365,32;366,33;367,34;368,35;369,36;370,36;371,37;372,38;373,39;374,40;375,41;376,41;377,40;378,40;379,40;380,39;381,39;382,39;383,38;384,38;385,38;386,38;387,37;388,37;389,37;390,37;391,36;392,36;393,36;394,36;395,35;396,35;397,35;398,35;399,35;400,35;401,34;402,34;403,34;404,34;405,34;406,34;407,34;408,34;409,34;410,34;411,34;412,33;413,33;414,33;415,33;416,33;417,33;418,33;419,33;420,33;421,33;422,33;423,34;424,34;425,34;426,34;427,34;428,34;429,34;430,34;431,34;432,34;433,34;434,35;435,35;436,35;437,35;438,35;439,35;440,36;441,36;442,36;443,36;444,37;445,37;446,37;447,37;448,38;449,38;450,38;451,38;452,39;453,39;454,39;455,40;456,40;457,40;458,41;459,41;460,42;461,42;462,42;463,43;464,43;465,44;466,44;467,45;468,45;469,46;470,46;471,47;472,47;473,48;474,48;475,49;476,50;477,50;478,51;479,51;480,52;481,53;482,53;483,54;484,55;485,55;486,56;487,57;488,58;489,58;490,59;491,60;492,61;493,62;494,63;495,64;496,64;497,65;498,66;499,67;500,68;501,69;502,70;503,71;503,72;504,73;505,74;506,75;506,76;506,77;506,78;506,79;506,80;506,81;506,82;506,83;506,84;506,85;506,86;506,87;506,88;506,89;506,90;506,91;506,92;506,93;506,94;506,95;506,96;506,97;506,98;506,99;506,100;506,101;506,102;506,103;506,104;506,105;506,106;506,107;506,108;506,109;506,110;506,111;506,112;506,113;506,114;506,115;506,116;506,117;506,118;506,119;506,120;506,121;506,122;506,123;506,124;506,125;506,126;506,127;506,128;506,129;506,130;506,131;506,132;506,133;506,134;506,135;506,136;506,137;506,138;506,139;506,140;506,141;506,142;506,143;506,144;506,145;506,146;506,147;506,148;506,149;506,150;506,151;506,152;506,153;506,154;506,155;506,156;506,157;506,158;506,159;506,160;506,161;506,162;506,163;506,164;506,165;506,166;506,167;506,168;506,169;506,170;506,171;506,172;506,173;506,174;506,175;506,176;506,177;506,178;506,179;506,180;506,181;506,182;506,183;506,184;506,185;506,186;506,187;506,188;506,189;506,190;506,191;506,192;506,193;506,194;506,195;506,196;506,197;506,198;506,199;506,200;506,201;506,202;506,203;506,204;506,205;506,206;506,207;506,208;506,209;506,210;506,211;506,212;506,213;506,214;506,215;506,216;506,217;506,218;506,219;506,220;506,221;506,222;506,223;506,224;506,225;506,226;506,227;506,228;506,229;506,230;506,231;506,232;506,233;506,234;506,235;506,236;506,237;506,238;506,239;506,240;506,241;506,242;506,243;506,244;506,245;506,246;506,247;506,248;506,249;506,250;506,251;506,252;506,253;506,254;506,255;506,256;506,257;506,258;506,259;506,260;506,261;506,262;506,263;506,264;506,265;506,266;506,267;506,268;506,269;506,270;506,271;506,272;506,273;506,274;506,275;506,276;506,277;506,278;506,279;506,280;506,281;506,282;506,283;506,284;506,285;506,286;506,287;506,288;506,289;506,290;506,291;506,292;506,293;506,294;506,295;506,296;506,297;506,298;506,299;506,300;506,301;506,302;506,303;506,304;506,305;506,306;506,307;506,308;506,309;506,310;506,311;506,312;506,313;506,314;506,315;506,316;506,317;506,318;506,319;506,320;506,321;506,322;506,323;506,324;507,325;507,326;507,327;507,328;507,329;507,330;507,331;507,332;507,333;507,334;507,335;507,336;507,337;507,338;507,339;507,340;507,341;507,342;507,343;507,344;507,345;507,346;507,347;506,348;505,349;504,350;503,351;502,352;501,353;500,354;499,355;498,356;497,356;496,357;495,358;494,358;493,359;492,360;491,361;490,361;489,362;488,362;487,363;486,364;485,364;484,365;483,365;482,366;481,366;480,367;479,367;478,368;477,368;476,368;475,369;474,369;473,370;472,370;471,370;470,371;469,371;468,371;467,372;466,372;465,372;464,372;463,373;462,373;461,373;460,373;459,374;458,374;457,374;456,374;455,374;454,374;453,375;452,375;451,375;450,375;449,375;448,375;447,375;446,375;445,375;444,375;443,375;442,375;441,375;440,375;439,375;438,375;437,375;436,375;435,375;434,375;433,375;432,376;432,377;431,378;430,379;429,380;428,381;427,382;426,383;425,384;424,385;423,386;422,387;421,388;420,389;419,390;418,391;417,392;416,393;415,394;414,394;413,395;412,396;411,397;410,398;409,398;408,399;407,400;406,400;405,401;404,402;403,402;402,403;401,404;400,404;399,405;398,406;397,406;396,407;395,407;394,408;393,408;392,409;391,409;390,410;389,410;388,411;387,411;386,412;385,412;384,413;383,413;382,413;381,414;380,414;379,415;378,415;377,415;376,416;375,416;374,416;373,417;372,417;371,417;370,418;369,418;368,418;367,419;366,419;365,419;364,419;363,420;362,420;361,420;360,420;359,420;358,421;357,421;356,421;355,421;354,421;353,421;352,422;351,422;350,422;349,422;348,422;347,422;346,422;345,422;344,423;343,423;342,423;341,423;340,423;339,423;338,423;337,423;336,423;335,423;334,423;333,423;332,423;331,423;330,423;329,423;328,423;327,423;326,423;325,423;324,423;323,423;322,422;321,422;320,422;319,422;318,422;317,422;316,422;315,422;314,421;313,421;312,421;311,421;310,421;309,421;308,420;307,420;306,420;305,420;304,420;303,419;302,419;301,419;300,418;299,418;298,418;297,418;296,417;295,417;294,417;293,416;292,416;291,416;290,415;289,415;288,415;287,414;286,414;285,413;284,413;283,413;282,412;281,412;280,411;279,411;278,410;277,410;276,409;275,409;274,408;273,408;272,407;271,407;270,406;269,405;268,405;267,404;266,404;265,403;264,402;263,402;262,401;261,400;260,400;259,399;258,398;257,397;256,397;255,396;254,395;253,394;252,393;251,393;250,392;249,391;248,390;247,389;246,388;245,387;244,386;243,385;242,384;241,383;240,382;239,381;238,380;237,379;237,378;236,377;235,376;234,375;233,375;232,375;231,375;230,375;229,375;228,375;227,375;226,375;225,375;224,375;223,375;222,375;221,375;220,375;219,375;218,375;217,375;216,375;215,375;214,375;213,374;212,374;211,374;210,374;209,374;208,374;207,373;206,373;205,373;204,373;203,372;202,372;201,372;200,372;199,371;198,371;197,371;196,370;195,370;194,369;193,369;192,369;191,368;190,368;189,367;188,367;187,367;186,366;185,366;184,365;183,365;182,364;181,363;180,363;179,362;178,362;177,361;176,360;175,360;174,359;173,358;172,358;171,357;170,356;169,355;168,355;167,354;166,353;165,352;164,351;163,350;162,349;161,348;160,347;159,346;158,345;157,344;156,343;155,342;155,341;154,340;153,339;152,338;152,337;151,336;150,335;150,334;149,333;148,332;148,331;147,330;146,329;146,328;145,327;145,326;144,325;144,324;143,323;143,322;142,321;142,320;142,319;141,318;141,317;140,316;140,315;140,314;139,313;139,312;139,311;138,310;138,309;138,308;137,307;137,306;137,305;137,304;136,303;136,302;136,301;136,300;136,299;135,298;135,297;135,296;135,295;135,294;135,293;135,292;135,291;135,290;134,289;134,288;134,287;134,286;134,285;134,284;134,283;134,282;134,281;134,280;134,279;134,278;135,277;135,276;135,275;135,274;135,273;135,272;135,271;135,270;136,269;136,268;136,267;135,266;134,265;133,265;132,265;131,265;130,265;129,265;128,265;127,265;126,265;125,266;124,266;123,266;122,266;121,266;120,266;119,266;118,266;117,266;116,266;115,266;114,266;113,266;112,266;111,266;110,266;109,265;108,265;107,265;106,265;105,265;104,265;103,265;102,265;101,265;100,265;99,264;98,264;97,264;96,264;95,264;94,263;93,263;92,263;91,263;90,263;89,262;88,262;87,262;86,262;85,261;84,261;83,261;82,260;81,260;80,260;79,259;78,259;77,259;76,258;75,258;74,257;73,257;72,257;71,256;70,256;69,255;68,255;67,254;66,254;65,253;64,253;63,252;62,252;61,251;60,251;59,250;58,250;57,249;56,248;55,248;54,247;53,246;52,246;51,245;50,244;49,244;48,243;47,242;46,242;45,241;44,240;43,239;42,238;41,237;40,237;39,236;38,235;37,234;36,233;35,232;34,231;33,230;32,229;31,228;30,227;30,226;29,225;28,224;27,223;26,222;25,221;25,220;24,219;23,218;23,217;22,216;21,215;20,214;20,213;19,212;18,211;18,210;17,209;17,208;16,207;16,206;15,205;14,204;14,203;13,202;13,201;12,200;12,199;12,198;11,197;11,196;10,195;10,194;9,193;9,192;9,191;8,190;8,189;8,188;7,187;7,186;6,185;6,184;6,183;6,182;5,181;5,180;5,179;5,178;4,177;4,176;4,175;4,174;3,173;3,172;3,171;3,170;3,169;2,168;2,167;2,166;2,165;2,164;2,163;2,162;2,161;33,154;34,155;34,156;34,157;34,158;34,159;34,160;34,161;34,162;34,163;35,164;35,165;35,166;35,167;35,168;36,169;36,170;36,171;36,172;37,173;37,174;37,175;38,176;38,177;38,178;39,179;39,180;39,181;40,182;40,183;41,184;41,185;42,186;42,187;43,188;43,189;44,190;44,191;45,192;45,193;46,194;47,195;47,196;48,197;49,198;50,199;50,200;51,201;52,202;53,203;54,204;54,205;55,206;56,207;57,208;58,209;59,210;60,211;61,212;62,213;63,213;64,214;65,215;66,216;67,217;68,217;69,218;70,219;71,220;72,220;73,221;74,221;75,222;76,223;77,223;78,224;79,224;80,225;81,225;82,226;83,226;84,227;85,227;86,227;87,228;88,228;89,229;90,229;91,229;92,230;93,230;94,230;95,230;96,231;97,231;98,231;99,231;100,232;101,232;102,232;103,232;104,232;105,233;106,233;107,233;108,233;109,233;110,233;111,233;112,233;113,233;114,233;115,233;116,233;117,233;118,233;119,233;120,233;121,233;122,233;123,233;124,233;125,233;126,233;127,233;128,233;129,233;130,232;131,232;132,232;133,232;134,232;135,231;136,231;137,231;138,231;139,230;140,230;141,230;142,230;143,229;144,229;145,229;146,228;147,228;148,227;149,228;150,229;150,230;151,231;151,232;152,233;153,234;153,235;154,236;154,237;155,238;156,239;156,240;157,241;158,242;158,243;159,244;160,245;161,246;161,247;162,248;163,249;164,250;165,251;165,252;166,253;167,254;168,255;169,256;170,257;171,258;172,259;173,260;174,261;175,262;176,263;177,264;178,265;179,266;180,267;181,268;182,269;183,270;184,270;185,271;186,272;187,273;188,274;189,274;190,275;191,276;192,276;193,277;194,278;195,278;196,279;197,280;198,280;199,281;200,282;201,282;202,283;203,283;204,284;205,284;206,285;207,285;208,286;209,287;210,287;211,288;212,288;213,288;214,289;215,289;216,290;217,290;218,291;219,291;220,291;221,292;222,292;223,292;224,293;225,293;226,294;227,294;228,294;229,294;230,295;231,295;232,295;233,296;234,296;235,296;236,296;237,297;238,297;239,297;240,297;241,298;242,298;243,298;244,298;245,298;246,298;247,299;248,299;249,299;250,299;251,299;252,299;253,299;254,299;255,300;256,300;257,300;258,300;259,300;260,300;261,300;262,300;263,300;264,300;265,300;266,300;267,300;268,300;269,300;270,300;271,300;272,300;273,300;274,300;275,300;276,300;277,300;278,300;279,300;280,300;281,299;282,299;283,299;284,299;285,299;286,299;287,299;288,298;289,298;290,298;291,298;292,298;293,298;294,297;295,297;296,297;297,297;298,296;299,296;300,296;301,296;302,295;303,295;304,295;305,295;306,294;307,294;308,294;309,293;310,293;311,293;312,292;313,292;314,291;315,291;316,291;317,290;318,290;319,289;320,289;321,289;322,288;323,288;324,287;325,287;326,286;327,286;328,285;329,285;330,284;331,284;332,283;333,282;334,282;335,281;336,281;337,280;338,279;339,279;340,278;341,277;342,277;343,276;344,275;345,274;346,274;347,273;348,272;349,271;350,271;351,270;352,269;353,268;354,267;355,266;356,265;357,265;358,264;359,263;360,262;361,261;362,260;363,259;364,258;364,257;365,256;366,255;367,254;368,253;369,252;370,251;371,250;371,249;372,248;373,247;374,246;374,245;375,244;376,243;377,242;377,241;378,240;379,239;379,238;380,237;380,236;381,235;382,234;382,233;383,232;383,231;384,230;384,229;385,228;386,227;387,228;388,228;389,229;390,229;391,229;392,229;393,230;394,230;395,230;396,231;397,231;398,231;399,231;400,231;401,232;402,232;403,232;404,232;405,232;406,232;407,232;408,233;409,233;410,233;411,233;412,233;413,233;414,233;415,233;416,233;417,233;418,233;419,233;420,233;421,233;422,233;423,233;424,233;425,233;426,233;427,233;428,233;429,232;430,232;431,232;432,232;433,232;434,232;435,231;436,231;437,231;438,231;439,230;440,230;441,230;442,229;443,229;444,229;445,228;446,228;447,228;448,227;449,227;450,226;451,226;452,225;453,225;454,224;455,224;456,223;457,223;458,222;459,222;460,221;461,220;462,220;463,219;464,218;465,218;466,217;467,216;468,215;469,215;470,214;471,213;472,212;473,211;474,210;475,209;476,208;477,207;478,206;479,205;480,204;481,203;482,202;482,201;483,200;484,199;485,198;485,197;486,196;487,195;487,194;488,193;489,192;489,191;490,190;490,189;491,188;491,187;492,186;492,185;493,184;493,183;494,182;494,181;495,180;495,179;495,178;496,177;496,176;497,175;497,174;497,173;497,172;498,171;498,170;498,169;498,168;499,167;499,166;499,165;499,164;500,163;500,162;500,161;500,160;500,159;500,158;500,157;500,156;500,155;501,154;501,153;501,152;501,151;501,150;501,149;501,148;501,147;501,146;501,145;500,144;500,143;500,142;500,141;500,140;500,139;500,138;500,137;500,136;499,135;499,134;499,133;499,132;499,131;498,130;498,129;498,128;498,127;497,126;497,125;497,124;496,123;496,122;496,121;495,120;495,119;494,118;494,117;494,116;493,115;493,114;492,113;492,112;491,111;491,110;490,109;490,108;489,107;488,106;488,105;487,104;486,103;486,102;485,101;484,100;484,99;483,98;482,97;481,96;480,95;479,94;479,93;478,92;477,91;476,90;475,89;474,88;473,87;472,87;471,86;470,85;469,84;468,83;467,82;466,82;465,81;464,80;463,80;462,79;461,78;460,78;459,77;458,77;457,76;456,75;455,75;454,74;453,74;452,73;451,73;450,73;449,72;448,72;447,71;446,71;445,71;444,70;443,70;442,70;441,69;440,69;439,69;438,68;437,68;436,68;435,68;434,67;433,67;432,67;431,67;430,67;429,67;428,66;427,66;426,66;425,66;424,66;423,66;422,66;421,66;420,66;419,66;418,66;417,66;416,66;415,66;414,66;413,66;412,66;411,66;410,66;409,66;408,66;407,66;406,66;405,67;404,67;403,67;402,67;401,67;400,68;399,68;398,68;397,68;396,68;395,69;394,69;393,69;392,70;391,70;390,70;389,71;388,71;387,71;386,72;385,72;384,73;383,73;382,74;381,74;380,74;379,75;378,76;377,76;376,77;375,77;374,78;373,78;372,79;371,80;370,80;369,81;368,80;367,79;367,78;366,77;365,76;364,75;363,74;362,73;361,72;360,71;359,70;358,69;357,68;356,67;355,66;354,65;353,65;352,64;351,63;350,62;349,61;348,60;347,60;346,59;345,58;344,57;343,57;342,56;341,55;340,55;339,54;338,53;337,53;336,52;335,52;334,51;333,50;332,50;331,49;330,49;329,48;328,48;327,47;326,46;325,46;324,45;323,45;322,45;321,44;320,44;319,43;318,43;317,42;316,42;315,42;314,41;313,41;312,40;311,40;310,40;309,39;308,39;307,39;306,38;305,38;304,38;303,37;302,37;301,37;300,37;299,36;298,36;297,36;296,36;295,35;294,35;293,35;292,35;291,35;290,34;289,34;288,34;287,34;286,34;285,34;284,33;283,33;282,33;281,33;280,33;279,33;278,33;277,33;276,33;275,33;274,33;273,33;272,32;271,32;270,32;269,32;268,32;267,32;266,32;265,32;264,32;263,32;262,32;261,33;260,33;259,33;258,33;257,33;256,33;255,33;254,33;253,33;252,33;251,33;250,33;249,34;248,34;247,34;246,34;245,34;244,34;243,35;242,35;241,35;240,35;239,35;238,36;237,36;236,36;235,36;234,37;233,37;232,37;231,37;230,38;229,38;228,38;227,39;226,39;225,39;224,40;223,40;222,40;221,41;220,41;219,42;218,42;217,42;216,43;215,43;214,44;213,44;212,45;211,45;210,45;209,46;208,46;207,47;206,48;205,48;204,49;203,49;202,50;201,50;200,51;199,52;198,52;197,53;196,53;195,54;194,55;193,55;192,56;191,57;190,58;189,58;188,59;187,60;186,60;185,61;184,62;183,63;182,64;181,65;180,65;179,66;178,67;177,68;176,69;175,70;174,71;173,72;172,73;171,74;170,75;169,76;168,77;167,78;167,79;166,80;165,81;164,80;163,80;162,79;161,78;160,78;159,77;158,77;157,76;156,76;155,75;154,74;153,74;152,74;151,73;150,73;149,72;148,72;147,71;146,71;145,71;144,70;143,70;142,70;141,69;140,69;139,69;138,68;137,68;136,68;135,68;134,68;133,67;132,67;131,67;130,67;129,67;128,66;127,66;126,66;125,66;124,66;123,66;122,66;121,66;120,66;119,66;118,66;117,66;116,66;115,66;114,66;113,66;112,66;111,66;110,66;109,66;108,66;107,66;106,66;105,67;104,67;103,67;102,67;101,67;100,67;99,68;98,68;97,68;96,68;95,69;94,69;93,69;92,70;91,70;90,70;89,71;88,71;87,71;86,72;85,72;84,73;83,73;82,73;81,74;80,74;79,75;78,75;77,76;76,77;75,77;74,78;73,78;72,79;71,80;70,80;69,81;68,82;67,82;66,83;65,84;64,85;63,86;62,87;61,87;60,88;59,89;58,90;57,91;56,92;55,93;55,94;54,95;53,96;52,97;51,98;50,99;50,100;49,101;48,102;48,103;47,104;46,105;46,106;45,107;44,108;44,109;43,110;43,111;42,112;42,113;41,114;41,115;40,116;40,117;40,118;39,119;39,120;38,121;38,122;38,123;37,124;37,125;37,126;36,127;36,128;36,129;36,130;35,131;35,132;35,133;35,134;35,135;34,136;34,137;34,138;34,139;34,140;34,141;34,142;34,143;34,144;33,145;33,146;33,147;33,148;33,149;33,150;33,151;33,152;33,153;170,303;171,304;171,305;171,306;172,307;172,308;173,309;173,310;174,311;174,312;175,313;176,314;176,315;177,316;178,317;178,318;179,319;180,320;181,321;181,322;182,323;183,324;184,325;185,326;186,327;187,328;188,329;189,329;190,330;191,331;192,332;193,332;194,333;195,334;196,334;197,335;198,336;199,336;200,337;201,337;202,338;203,338;204,339;205,339;206,339;207,340;208,340;209,340;210,341;211,341;212,341;213,341;214,342;215,342;216,342;217,342;218,342;219,343;220,343;221,343;222,343;223,343;224,343;225,343;226,343;227,343;228,343;229,343;230,343;231,343;232,343;233,343;234,343;235,342;236,342;237,342;238,342;239,342;240,341;241,341;242,341;243,341;244,340;245,340;246,340;247,339;248,339;249,339;250,340;250,341;251,342;251,343;252,344;253,345;253,346;254,347;255,348;255,349;256,350;257,351;257,352;258,353;259,354;260,355;261,356;261,357;262,358;263,359;264,360;265,361;266,362;267,363;268,364;269,365;270,366;271,367;272,368;273,368;274,369;275,370;276,371;277,372;278,372;279,373;280,374;281,374;282,375;283,376;284,376;285,377;286,378;287,378;288,379;289,379;290,380;291,380;292,381;293,381;294,382;295,382;296,383;297,383;298,384;299,384;300,384;301,385;302,385;303,385;304,386;305,386;306,386;307,387;308,387;309,387;310,388;311,388;312,388;313,388;314,389;315,389;316,389;317,389;318,389;319,389;320,390;321,390;322,390;323,390;324,390;325,390;326,390;327,390;328,390;329,390;330,391;331,391;332,391;333,391;334,391;335,391;336,391;337,391;338,390;339,390;340,390;341,390;342,390;343,390;344,390;345,390;346,390;347,390;348,390;349,389;350,389;351,389;352,389;353,389;354,388;355,388;356,388;357,388;358,387;359,387;360,387;361,387;362,386;363,386;364,386;365,385;366,385;367,385;368,384;369,384;370,383;371,383;372,382;373,382;374,381;375,381;376,381;377,380;378,380;379,379;380,378;381,378;382,377;383,377;384,376;385,375;386,375;387,374;388,373;389,373;390,372;391,371;392,370;393,369;394,369;395,368;396,367;397,366;398,365;399,364;400,363;401,362;402,361;403,360;404,359;405,358;406,357;407,356;407,355;408,354;409,353;410,352;410,351;411,350;412,349;413,348;413,347;414,346;415,345;415,344;416,343;416,342;417,341;417,340;418,339;419,339;420,339;421,340;422,340;423,340;424,341;425,341;426,341;427,341;428,342;429,342;430,342;431,342;432,342;433,342;434,343;435,343;436,343;437,343;438,343;439,343;440,343;441,343;442,343;443,343;444,343;445,343;446,343;447,343;448,343;449,342;450,342;451,342;452,342;453,342;454,341;455,341;456,341;457,341;458,340;459,340;460,340;461,339;462,339;463,339;464,338;465,338;466,337;467,337;468,336;469,336;470,335;471,335;472,334;473,333;474,333;475,332;476,331;477,331;478,330;479,329;480,328;481,327;482,326;483,325;484,324;485,323;486,322;487,321;488,320;488,319;489,318;490,317;491,316;491,315;492,314;493,313;493,312;494,311;494,310;495,309;495,308;496,307;496,306;496,305;497,304;497,303;498,302;498,301;498,300;498,299;499,298;499,297;499,296;499,295;500,294;500,293;500,292;500,291;500,290;500,289;500,288;501,287;501,286;501,285;501,284;501,283;501,282;501,281;501,280;500,279;500,278;500,277;500,276;500,275;500,274;500,273;500,272;499,271;499,270;499,269;499,268;498,267;498,266;498,265;497,264;497,263;497,262;496,261;496,260;495,259;495,258;495,257;494,256;493,255;493,254;492,253;492,252;491,251;490,250;490,249;489,248;488,247;487,246;487,245;486,244;485,243;484,244;483,245;482,245;481,246;480,247;479,247;478,248;477,249;476,249;475,250;474,250;473,251;472,252;471,252;470,253;469,253;468,254;467,254;466,255;465,255;464,256;463,256;462,256;461,257;460,257;459,258;458,258;457,259;456,259;455,259;454,260;453,260;452,260;451,261;450,261;449,261;448,261;447,262;446,262;445,262;444,263;443,263;442,263;441,263;440,263;439,264;438,264;437,264;436,264;435,264;434,264;433,265;432,265;431,265;430,265;429,265;428,265;427,265;426,265;425,265;424,266;423,266;422,266;421,266;420,266;419,266;418,266;417,266;416,266;415,266;414,266;413,266;412,266;411,266;410,266;409,266;408,265;407,265;406,265;405,265;404,265;403,265;402,265;401,265;400,265;399,266;399,267;398,268;397,269;396,270;395,271;395,272;394,273;393,274;392,275;391,276;390,277;389,278;389,279;388,280;387,281;386,282;385,283;384,284;383,285;382,286;381,287;380,288;379,289;378,290;377,290;376,291;375,292;374,293;373,294;372,295;371,296;370,296;369,297;368,298;367,299;366,300;365,300;364,301;363,302;362,302;361,303;360,304;359,304;358,305;357,306;356,306;355,307;354,308;353,308;352,309;351,310;350,310;349,311;348,311;347,312;346,312;345,313;344,313;343,314;342,314;341,315;340,315;339,316;338,316;337,317;336,317;335,318;334,318;333,319;332,319;331,320;330,320;329,320;328,321;327,321;326,322;325,322;324,322;323,323;322,323;321,323;320,324;319,324;318,324;317,325;316,325;315,325;314,326;313,326;312,326;311,326;310,327;309,327;308,327;307,328;306,328;305,328;304,328;303,328;302,329;301,329;300,329;299,329;298,330;297,330;296,330;295,330;294,330;293,330;292,331;291,331;290,331;289,331;288,331;287,331;286,331;285,331;284,332;283,332;282,332;281,332;280,332;279,332;278,332;277,332;276,332;275,332;274,332;273,332;272,332;271,332;270,332;269,332;268,332;267,332;266,332;265,332;264,332;263,332;262,332;261,332;260,332;259,332;258,332;257,332;256,332;255,332;254,332;253,332;252,332;251,332;250,332;249,331;248,331;247,331;246,331;245,331;244,331;243,331;242,331;241,330;240,330;239,330;238,330;237,330;236,330;235,329;234,329;233,329;232,329;231,328;230,328;229,328;228,328;227,328;226,327;225,327;224,327;223,326;222,326;221,326;220,326;219,325;218,325;217,325;216,324;215,324;214,324;213,323;212,323;211,323;210,322;209,322;208,321;207,321;206,321;205,320;204,320;203,319;202,319;201,319;200,318;199,318;198,317;197,317;196,316;195,316;194,315;193,315;192,314;191,314;190,313;189,313;188,312;187,312;186,311;185,310;184,310;183,309;182,309;181,308;180,307;179,307;178,306;177,306;176,305;175,304;174,303;173,303;172,302;171,301;170,302];
moonCloud = [1,160;1,159;1,158;1,157;1,156;1,155;1,154;1,153;1,152;1,151;1,150;1,149;1,148;1,147;1,146;1,145;1,144;1,143;1,142;1,141;1,140;1,139;2,138;2,137;2,136;2,135;2,134;2,133;2,132;2,131;3,130;3,129;3,128;3,127;3,126;4,125;4,124;4,123;4,122;5,121;5,120;5,119;5,118;6,117;6,116;6,115;7,114;7,113;7,112;8,111;8,110;8,109;9,108;9,107;9,106;10,105;10,104;11,103;11,102;12,101;12,100;13,99;13,98;14,97;14,96;15,95;15,94;16,93;16,92;17,91;17,90;18,89;19,88;19,87;20,86;21,85;21,84;22,83;23,82;23,81;24,80;25,79;26,78;26,77;27,76;28,75;29,74;30,73;31,72;31,71;32,70;33,69;34,68;35,67;36,66;37,65;38,64;39,63;40,63;41,62;42,61;43,60;44,59;45,58;46,58;47,57;48,56;49,55;50,55;51,54;52,53;53,53;54,52;55,51;56,51;57,50;58,50;59,49;60,48;61,48;62,47;63,47;64,46;65,46;66,45;67,45;68,44;69,44;70,43;71,43;72,42;73,42;74,42;75,41;76,41;77,40;78,40;79,40;80,39;81,39;82,39;83,38;84,38;85,38;86,38;87,37;88,37;89,37;90,37;91,36;92,36;93,36;94,36;95,35;96,35;97,35;98,35;99,35;100,35;101,34;102,34;103,34;104,34;105,34;106,34;107,34;108,34;109,34;110,34;111,34;112,33;113,33;114,33;115,33;116,33;117,33;118,33;119,33;120,33;121,33;122,33;123,34;124,34;125,34;126,34;127,34;128,34;129,34;130,34;131,34;132,34;133,34;134,35;135,35;136,35;137,35;138,35;139,35;140,36;141,36;142,36;143,36;144,37;145,37;146,37;147,37;148,38;149,38;150,38;151,38;152,39;153,39;154,39;155,40;156,40;157,40;158,41;159,41;160,40;161,39;162,38;163,37;164,36;165,36;166,35;167,34;168,33;169,33;170,32;171,31;172,30;173,30;174,29;175,28;176,28;177,27;178,26;179,26;180,25;181,24;182,24;183,23;184,23;185,22;186,21;187,21;188,20;189,20;190,19;191,19;192,18;193,18;194,17;195,17;196,16;197,16;198,15;199,15;200,14;201,14;202,13;203,13;204,13;205,12;206,12;207,11;208,11;209,11;210,10;211,10;212,10;213,9;214,9;215,9;216,8;217,8;218,8;219,7;220,7;221,7;222,6;223,6;224,6;225,6;226,5;227,5;228,5;229,4;230,4;231,4;232,4;233,4;234,3;235,3;236,3;237,3;238,3;239,2;240,2;241,2;242,2;243,2;244,2;245,1;246,1;247,1;248,1;249,1;250,1;251,1;252,1;253,1;254,1;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0;274,0;275,0;276,0;277,0;278,0;279,0;280,1;281,1;282,1;283,1;284,1;285,1;286,1;287,1;288,1;289,1;290,2;291,2;292,2;293,2;294,2;295,2;296,3;297,3;298,3;299,3;300,3;301,4;302,4;303,4;304,4;305,4;306,5;307,5;308,5;309,5;310,6;311,6;312,6;313,7;314,7;315,7;316,7;317,8;318,8;319,9;320,9;321,9;322,10;323,10;324,10;325,11;326,11;327,11;328,12;329,12;330,13;331,13;332,13;333,14;334,14;335,15;336,15;337,16;338,16;339,17;340,17;341,18;342,18;343,19;344,19;345,20;346,20;347,21;348,21;349,22;350,23;351,23;352,24;353,24;354,25;355,26;356,26;357,27;358,28;359,28;360,29;361,30;362,30;363,31;364,32;365,32;366,33;367,34;368,35;369,36;370,36;371,37;372,38;373,39;374,40;375,41;376,41;377,40;378,40;379,40;380,39;381,39;382,39;383,38;384,38;385,38;386,38;387,37;388,37;389,37;390,37;391,36;392,36;393,36;394,36;395,35;396,35;397,35;398,35;399,35;400,35;401,34;402,34;403,34;404,34;405,34;406,34;407,34;408,34;409,34;410,34;411,34;412,33;413,33;414,33;415,33;416,33;417,33;418,33;419,33;420,33;421,33;422,33;423,34;424,34;425,34;426,34;427,34;428,34;429,34;430,34;431,34;432,34;433,34;434,35;435,35;436,35;437,35;438,35;439,35;440,36;441,36;442,36;443,36;444,37;445,37;446,37;447,37;448,38;449,38;450,38;451,38;452,39;453,39;454,39;455,40;456,40;457,40;458,41;459,41;460,42;461,42;462,42;463,43;464,43;465,44;466,44;467,45;468,45;469,46;470,46;471,47;472,47;473,48;474,48;475,49;476,50;477,50;478,51;479,51;480,52;481,53;482,53;483,54;484,55;485,55;486,56;487,57;488,58;489,58;490,59;491,60;492,61;493,62;494,63;495,63;496,64;497,65;498,66;499,67;500,68;501,69;502,70;503,71;503,72;504,73;505,74;506,75;507,76;508,77;508,78;509,79;510,80;511,81;511,82;512,83;513,84;513,85;514,86;515,87;515,88;516,89;517,90;517,91;518,92;518,93;519,94;519,95;520,96;520,97;521,98;521,99;522,100;522,101;523,102;523,103;524,104;524,105;525,106;525,107;525,108;526,109;526,110;526,111;527,112;527,113;527,114;528,115;528,116;528,117;529,118;529,119;529,120;529,121;530,122;530,123;530,124;530,125;531,126;531,127;531,128;531,129;531,130;532,131;532,132;532,133;532,134;532,135;532,136;532,137;532,138;532,139;533,140;533,141;533,142;533,143;533,144;533,145;533,146;533,147;533,148;533,149;533,150;533,151;533,152;533,153;533,154;533,155;533,156;533,157;533,158;533,159;533,160;532,161;532,162;532,163;532,164;532,165;532,166;532,167;532,168;531,169;531,170;531,171;531,172;531,173;530,174;530,175;530,176;530,177;529,178;529,179;529,180;529,181;528,182;528,183;528,184;527,185;527,186;527,187;526,188;526,189;526,190;525,191;525,192;524,193;524,194;524,195;523,196;523,197;522,198;522,199;521,200;521,201;520,202;520,203;519,204;519,205;518,206;518,207;517,208;516,209;516,210;515,211;515,212;514,213;513,214;513,215;512,216;511,217;510,218;510,219;509,220;508,221;507,222;507,223;506,224;505,225;504,226;503,227;502,228;501,229;500,230;499,231;498,232;497,233;496,234;495,235;494,236;493,237;492,238;491,239;490,239;489,240;488,241;487,242;486,242;485,243;484,244;483,245;482,245;481,246;480,247;479,247;478,248;477,248;476,249;475,250;474,250;473,251;472,251;471,252;470,252;469,253;468,253;467,254;466,254;465,255;464,255;463,256;462,256;461,256;460,257;459,257;458,258;457,258;456,258;455,259;454,259;453,260;454,261;455,261;456,262;457,263;458,264;459,265;460,265;461,266;462,267;463,268;464,268;465,269;466,270;467,271;468,272;469,273;470,274;471,275;472,276;473,277;473,278;474,279;475,280;476,281;477,282;478,283;478,284;479,285;480,286;481,287;481,288;482,289;483,290;483,291;484,292;485,293;485,294;486,295;487,296;487,297;488,298;488,299;489,300;489,301;490,302;491,303;491,304;492,305;492,306;493,307;493,308;494,309;494,310;494,311;495,312;495,313;496,314;496,315;497,316;497,317;497,318;498,319;498,320;498,321;499,322;499,323;499,324;499,325;500,326;500,327;500,328;500,329;499,330;499,331;499,332;499,333;498,334;498,335;497,336;497,337;496,338;495,339;494,340;493,340;492,341;491,342;490,342;489,343;488,343;487,343;486,343;485,343;484,343;483,343;482,343;481,343;480,343;479,343;478,343;477,342;476,342;475,342;474,341;473,341;472,341;471,340;470,340;469,340;468,340;467,339;466,339;465,339;464,339;463,338;462,338;461,338;460,338;459,338;458,338;457,337;456,337;455,337;454,337;453,337;452,337;451,337;450,337;449,337;448,337;447,337;446,337;445,337;444,337;443,337;442,337;441,337;440,337;439,337;438,337;437,337;436,337;435,337;434,337;433,337;432,337;431,338;430,338;429,338;428,338;427,338;426,338;425,338;424,339;423,339;422,339;421,339;420,340;419,340;418,340;417,340;416,341;415,341;414,341;413,342;412,342;411,342;410,343;409,343;408,343;407,344;406,344;405,345;404,345;403,346;402,346;401,347;400,347;399,347;398,348;397,348;396,349;395,350;394,350;393,351;392,352;391,352;390,353;389,353;388,354;387,355;386,356;385,356;384,357;383,358;382,359;381,359;380,360;379,361;378,362;377,363;376,364;375,365;374,366;373,367;372,368;371,369;370,370;369,371;368,372;367,373;367,374;366,375;365,376;364,377;363,378;363,379;362,380;361,381;361,382;360,383;359,384;359,385;358,386;358,387;357,388;356,389;356,390;355,391;355,392;354,393;354,394;353,395;353,396;353,397;352,398;352,399;351,400;351,401;351,402;350,403;350,404;350,405;349,406;349,407;349,408;348,409;348,410;348,411;347,412;347,413;347,414;347,415;347,416;346,417;346,418;346,419;346,420;346,421;345,422;345,423;345,424;345,425;345,426;345,427;345,428;345,429;345,430;345,431;345,432;345,433;344,434;344,435;344,436;344,437;344,438;345,439;345,440;345,441;345,442;345,443;345,444;345,445;345,446;345,447;345,448;345,449;345,450;346,451;346,452;346,453;346,454;346,455;346,456;347,457;347,458;347,459;347,460;348,461;348,462;348,463;348,464;349,465;349,466;349,467;350,468;350,469;350,470;351,471;351,472;351,473;351,474;351,475;351,476;351,477;351,478;351,479;351,480;350,481;350,482;350,483;349,484;348,485;348,486;347,487;346,488;345,489;344,489;343,490;342,490;341,491;340,491;339,492;338,492;337,492;336,492;335,492;334,492;333,492;332,492;331,491;330,491;329,491;328,490;327,490;326,490;325,489;324,489;323,489;322,488;321,488;320,487;319,487;318,486;317,486;316,485;315,485;314,484;313,484;312,483;311,483;310,482;309,482;308,481;307,481;306,480;305,480;304,479;303,478;302,478;301,477;300,476;299,476;298,475;297,474;296,474;295,473;294,472;293,471;292,471;291,470;290,469;289,468;288,467;287,467;286,466;285,465;284,464;283,463;282,462;281,461;280,460;279,459;278,458;277,457;276,456;275,455;274,454;273,453;273,452;272,451;271,450;270,449;269,448;269,447;268,446;267,445;266,444;266,443;265,442;264,441;264,440;263,439;262,438;262,437;261,436;260,435;260,434;259,433;259,432;258,431;258,430;257,429;257,428;256,427;256,426;255,425;255,424;254,423;254,422;253,421;253,420;252,419;252,418;251,417;251,416;251,415;250,414;250,413;250,412;249,411;249,410;249,409;248,408;248,407;248,406;247,405;247,404;247,403;246,402;246,401;246,400;246,399;245,398;245,397;245,396;245,395;245,394;244,393;244,392;244,391;244,390;244,389;243,388;243,387;243,386;243,385;243,384;243,383;243,382;243,381;242,380;242,379;242,378;242,377;242,376;242,375;242,374;242,373;242,372;242,371;242,370;242,369;242,368;242,367;242,366;242,365;242,364;242,363;242,362;242,361;242,360;242,359;242,358;242,357;242,356;242,355;242,354;243,353;243,352;243,351;243,350;243,349;243,348;243,347;243,346;244,345;244,344;244,343;244,342;244,341;244,340;245,339;245,338;245,337;245,336;246,335;246,334;246,333;246,332;245,331;244,331;243,331;242,330;241,330;240,330;239,330;238,330;237,330;236,329;235,329;234,329;233,329;232,329;231,328;230,328;229,328;228,328;227,327;226,327;225,327;224,327;223,326;222,326;221,326;220,326;219,325;218,325;217,325;216,324;215,324;214,324;213,323;212,323;211,323;210,322;209,322;208,321;207,321;206,321;205,320;204,320;203,319;202,319;201,319;200,318;199,318;198,317;197,317;196,316;195,316;194,315;193,315;192,314;191,314;190,313;189,313;188,312;187,312;186,311;185,311;184,310;183,309;182,309;181,308;180,308;179,307;178,306;177,306;176,305;175,304;174,304;173,303;172,302;171,302;170,301;169,300;168,299;167,299;166,298;165,297;164,296;163,296;162,295;161,294;160,293;159,292;158,291;157,290;156,289;155,289;154,288;153,287;152,286;151,285;150,284;149,283;148,282;147,281;146,280;145,279;145,278;144,277;143,276;142,275;141,274;140,273;139,272;139,271;138,270;137,269;136,268;136,267;135,266;134,265;133,265;132,265;131,265;130,265;129,265;128,265;127,265;126,265;125,265;124,265;123,266;122,266;121,266;120,266;119,266;118,266;117,266;116,266;115,266;114,266;113,266;112,266;111,266;110,265;109,265;108,265;107,265;106,265;105,265;104,265;103,265;102,265;101,265;100,264;99,264;98,264;97,264;96,264;95,264;94,263;93,263;92,263;91,263;90,263;89,262;88,262;87,262;86,261;85,261;84,261;83,261;82,260;81,260;80,260;79,259;78,259;77,259;76,258;75,258;74,257;73,257;72,257;71,256;70,256;69,255;68,255;67,254;66,254;65,253;64,253;63,252;62,252;61,251;60,251;59,250;58,250;57,249;56,248;55,248;54,247;53,246;52,246;51,245;50,244;49,244;48,243;47,242;46,241;45,241;44,240;43,239;42,238;41,237;40,236;39,236;38,235;37,234;36,233;35,232;34,231;33,230;32,229;31,228;31,227;30,226;29,225;28,224;27,223;26,222;26,221;25,220;24,219;23,218;23,217;22,216;21,215;20,214;20,213;19,212;19,211;18,210;17,209;17,208;16,207;16,206;15,205;15,204;14,203;13,202;13,201;12,200;12,199;12,198;11,197;11,196;10,195;10,194;9,193;9,192;9,191;8,190;8,189;8,188;7,187;7,186;7,185;6,184;6,183;6,182;5,181;5,180;5,179;5,178;4,177;4,176;4,175;4,174;3,173;3,172;3,171;3,170;3,169;2,168;2,167;2,166;2,165;2,164;2,163;2,162;2,161;33,154;34,155;34,156;34,157;34,158;34,159;34,160;34,161;34,162;34,163;35,164;35,165;35,166;35,167;35,168;36,169;36,170;36,171;36,172;37,173;37,174;37,175;38,176;38,177;38,178;39,179;39,180;39,181;40,182;40,183;41,184;41,185;42,186;42,187;43,188;43,189;44,190;44,191;45,192;46,193;46,194;47,195;47,196;48,197;49,198;50,199;50,200;51,201;52,202;53,203;54,204;54,205;55,206;56,207;57,208;58,209;59,210;60,211;61,212;62,212;63,213;64,214;65,215;66,216;67,217;68,217;69,218;70,219;71,219;72,220;73,221;74,221;75,222;76,223;77,223;78,224;79,224;80,225;81,225;82,226;83,226;84,227;85,227;86,227;87,228;88,228;89,229;90,229;91,229;92,230;93,230;94,230;95,230;96,231;97,231;98,231;99,231;100,232;101,232;102,232;103,232;104,232;105,232;106,233;107,233;108,233;109,233;110,233;111,233;112,233;113,233;114,233;115,233;116,233;117,233;118,233;119,233;120,233;121,233;122,233;123,233;124,233;125,233;126,233;127,233;128,233;129,233;130,232;131,232;132,232;133,232;134,232;135,231;136,231;137,231;138,231;139,230;140,230;141,230;142,230;143,229;144,229;145,229;146,228;147,228;148,227;149,228;150,229;150,230;151,231;151,232;152,233;152,234;153,235;154,236;154,237;155,238;156,239;156,240;157,241;158,242;158,243;159,244;160,245;160,246;161,247;162,248;163,249;164,250;164,251;165,252;166,253;167,254;168,255;169,256;170,257;171,258;172,259;173,260;174,261;175,262;176,263;177,264;178,265;179,266;180,267;181,268;182,269;183,270;184,270;185,271;186,272;187,273;188,273;189,274;190,275;191,276;192,276;193,277;194,278;195,278;196,279;197,280;198,280;199,281;200,281;201,282;202,283;203,283;204,284;205,284;206,285;207,285;208,286;209,286;210,287;211,287;212,288;213,288;214,289;215,289;216,290;217,290;218,290;219,291;220,291;221,291;222,292;223,292;224,293;225,293;226,293;227,293;228,294;229,294;230,294;231,295;232,295;233,295;234,296;235,296;236,296;237,296;238,297;239,297;240,297;241,297;242,297;243,298;244,298;245,298;246,298;247,298;248,298;249,298;250,299;251,299;252,299;253,299;254,299;255,299;256,299;257,299;258,299;259,299;260,300;261,300;262,300;263,300;264,300;265,300;266,300;267,300;268,300;269,300;270,300;271,300;272,300;273,300;274,300;275,300;276,300;277,300;278,300;279,299;280,299;281,299;282,299;283,299;284,299;285,299;286,299;287,298;288,298;289,298;290,298;291,298;292,298;293,297;294,297;295,297;296,297;297,297;298,296;299,296;300,296;301,296;302,295;303,295;304,295;305,294;306,294;307,294;308,293;309,293;310,293;311,292;312,292;313,292;314,291;315,291;316,290;317,290;318,290;319,289;320,289;321,288;322,288;323,287;324,287;325,286;326,286;327,285;328,285;329,284;330,284;331,283;332,283;333,282;334,282;335,281;336,280;337,280;338,279;339,278;340,278;341,277;342,276;343,276;344,275;345,274;346,273;347,273;348,272;349,271;350,270;351,270;352,269;353,268;354,267;355,266;356,265;357,264;358,263;359,262;360,261;361,260;362,259;363,258;364,257;365,256;366,255;367,254;368,253;369,252;369,251;370,250;371,249;372,248;372,247;373,246;374,245;375,244;375,243;376,242;377,241;377,240;378,239;379,238;379,237;380,236;381,235;381,234;382,233;382,232;383,231;384,230;384,229;385,228;385,227;386,227;387,228;388,228;389,229;390,229;391,229;392,230;393,230;394,230;395,230;396,231;397,231;398,231;399,231;400,232;401,232;402,232;403,232;404,232;405,233;406,233;407,233;408,233;409,233;410,233;411,233;412,233;413,233;414,233;415,233;416,233;417,233;418,233;419,233;420,233;421,233;422,233;423,233;424,233;425,233;426,233;427,233;428,233;429,232;430,232;431,232;432,232;433,232;434,232;435,231;436,231;437,231;438,231;439,230;440,230;441,230;442,230;443,229;444,229;445,229;446,228;447,228;448,227;449,227;450,227;451,226;452,226;453,225;454,225;455,224;456,224;457,223;458,223;459,222;460,221;461,221;462,220;463,219;464,219;465,218;466,217;467,217;468,216;469,215;470,214;471,213;472,213;473,212;474,211;475,210;476,209;477,208;478,207;479,206;480,205;480,204;481,203;482,202;483,201;484,200;484,199;485,198;486,197;487,196;487,195;488,194;488,193;489,192;490,191;490,190;491,189;491,188;492,187;492,186;493,185;493,184;494,183;494,182;495,181;495,180;495,179;496,178;496,177;496,176;497,175;497,174;497,173;498,172;498,171;498,170;498,169;499,168;499,167;499,166;499,165;499,164;500,163;500,162;500,161;500,160;500,159;500,158;500,157;500,156;500,155;501,154;501,153;501,152;501,151;501,150;501,149;501,148;501,147;501,146;501,145;500,144;500,143;500,142;500,141;500,140;500,139;500,138;500,137;500,136;499,135;499,134;499,133;499,132;499,131;498,130;498,129;498,128;498,127;497,126;497,125;497,124;496,123;496,122;496,121;495,120;495,119;494,118;494,117;494,116;493,115;493,114;492,113;492,112;491,111;491,110;490,109;490,108;489,107;488,106;488,105;487,104;486,103;486,102;485,101;484,100;484,99;483,98;482,97;481,96;480,95;479,94;479,93;478,92;477,91;476,90;475,89;474,88;473,87;472,87;471,86;470,85;469,84;468,83;467,82;466,82;465,81;464,80;463,80;462,79;461,78;460,78;459,77;458,77;457,76;456,75;455,75;454,74;453,74;452,73;451,73;450,73;449,72;448,72;447,71;446,71;445,71;444,70;443,70;442,70;441,69;440,69;439,69;438,68;437,68;436,68;435,68;434,67;433,67;432,67;431,67;430,67;429,67;428,66;427,66;426,66;425,66;424,66;423,66;422,66;421,66;420,66;419,66;418,66;417,66;416,66;415,66;414,66;413,66;412,66;411,66;410,66;409,66;408,66;407,66;406,66;405,67;404,67;403,67;402,67;401,67;400,67;399,68;398,68;397,68;396,68;395,69;394,69;393,69;392,70;391,70;390,70;389,71;388,71;387,71;386,72;385,72;384,73;383,73;382,74;381,74;380,74;379,75;378,76;377,76;376,77;375,77;374,78;373,78;372,79;371,80;370,80;369,81;368,80;367,79;367,78;366,77;365,76;364,75;363,74;362,73;361,72;360,71;359,70;358,69;357,68;356,67;355,66;354,65;353,65;352,64;351,63;350,62;349,61;348,60;347,60;346,59;345,58;344,57;343,57;342,56;341,55;340,55;339,54;338,53;337,53;336,52;335,51;334,51;333,50;332,50;331,49;330,49;329,48;328,47;327,47;326,46;325,46;324,45;323,45;322,45;321,44;320,44;319,43;318,43;317,42;316,42;315,42;314,41;313,41;312,40;311,40;310,40;309,39;308,39;307,39;306,38;305,38;304,38;303,37;302,37;301,37;300,37;299,36;298,36;297,36;296,36;295,35;294,35;293,35;292,35;291,35;290,34;289,34;288,34;287,34;286,34;285,34;284,33;283,33;282,33;281,33;280,33;279,33;278,33;277,33;276,33;275,33;274,33;273,33;272,32;271,32;270,32;269,32;268,32;267,32;266,32;265,32;264,32;263,32;262,32;261,33;260,33;259,33;258,33;257,33;256,33;255,33;254,33;253,33;252,33;251,33;250,33;249,34;248,34;247,34;246,34;245,34;244,34;243,35;242,35;241,35;240,35;239,35;238,36;237,36;236,36;235,36;234,37;233,37;232,37;231,37;230,38;229,38;228,38;227,39;226,39;225,39;224,40;223,40;222,40;221,41;220,41;219,42;218,42;217,42;216,43;215,43;214,44;213,44;212,45;211,45;210,45;209,46;208,46;207,47;206,48;205,48;204,49;203,49;202,50;201,50;200,51;199,52;198,52;197,53;196,53;195,54;194,55;193,55;192,56;191,57;190,58;189,58;188,59;187,60;186,60;185,61;184,62;183,63;182,64;181,65;180,65;179,66;178,67;177,68;176,69;175,70;174,71;173,72;172,73;171,74;170,75;169,76;168,77;167,78;167,79;166,80;165,81;164,80;163,80;162,79;161,78;160,78;159,77;158,77;157,76;156,76;155,75;154,74;153,74;152,74;151,73;150,73;149,72;148,72;147,71;146,71;145,71;144,70;143,70;142,70;141,69;140,69;139,69;138,68;137,68;136,68;135,68;134,67;133,67;132,67;131,67;130,67;129,67;128,66;127,66;126,66;125,66;124,66;123,66;122,66;121,66;120,66;119,66;118,66;117,66;116,66;115,66;114,66;113,66;112,66;111,66;110,66;109,66;108,66;107,66;106,66;105,67;104,67;103,67;102,67;101,67;100,67;99,68;98,68;97,68;96,68;95,69;94,69;93,69;92,70;91,70;90,70;89,71;88,71;87,71;86,72;85,72;84,73;83,73;82,73;81,74;80,74;79,75;78,75;77,76;76,77;75,77;74,78;73,78;72,79;71,80;70,80;69,81;68,82;67,82;66,83;65,84;64,85;63,86;62,87;61,87;60,88;59,89;58,90;57,91;56,92;55,93;54,94;54,95;53,96;52,97;51,98;50,99;50,100;49,101;48,102;47,103;47,104;46,105;46,106;45,107;44,108;44,109;43,110;43,111;42,112;42,113;41,114;41,115;40,116;40,117;39,118;39,119;39,120;38,121;38,122;38,123;37,124;37,125;37,126;36,127;36,128;36,129;36,130;35,131;35,132;35,133;35,134;35,135;34,136;34,137;34,138;34,139;34,140;34,141;34,142;34,143;34,144;33,145;33,146;33,147;33,148;33,149;33,150;33,151;33,152;33,153;274,377;275,378;275,379;275,380;275,381;275,382;275,383;275,384;276,385;276,386;276,387;276,388;276,389;277,390;277,391;277,392;277,393;278,394;278,395;278,396;279,397;279,398;279,399;280,400;280,401;280,402;281,403;281,404;282,405;282,406;282,407;283,408;283,409;284,410;284,411;285,412;285,413;286,414;286,415;287,416;288,417;288,418;289,419;289,420;290,421;291,422;291,423;292,424;293,425;293,426;294,427;295,428;296,429;297,430;297,431;298,432;299,433;300,434;301,435;302,436;303,437;304,438;305,439;306,440;307,441;308,442;309,443;310,443;311,444;312,443;312,442;312,441;312,440;312,439;312,438;312,437;312,436;312,435;312,434;312,433;312,432;312,431;312,430;312,429;312,428;312,427;312,426;313,425;313,424;313,423;313,422;313,421;313,420;313,419;313,418;313,417;314,416;314,415;314,414;314,413;314,412;314,411;315,410;315,409;315,408;315,407;316,406;316,405;316,404;316,403;317,402;317,401;317,400;317,399;318,398;318,397;318,396;319,395;319,394;319,393;320,392;320,391;320,390;321,389;321,388;322,387;322,386;322,385;323,384;323,383;324,382;324,381;325,380;325,379;326,378;326,377;327,376;327,375;328,374;328,373;329,372;329,371;330,370;330,369;331,368;332,367;332,366;333,365;334,364;334,363;335,362;336,361;336,360;337,359;338,358;339,357;339,356;340,355;341,354;342,353;342,352;343,351;344,350;345,349;346,348;347,347;348,346;349,345;350,344;351,343;352,342;353,341;354,340;355,339;356,338;357,337;358,336;359,335;360,334;361,334;362,333;363,332;364,331;365,331;366,330;367,329;368,328;369,328;370,327;371,326;372,326;373,325;374,324;375,324;376,323;377,323;378,322;379,321;380,321;381,320;382,320;383,319;384,319;385,318;386,318;387,317;388,317;389,316;390,316;391,315;392,315;393,314;394,314;395,314;396,313;397,313;398,312;399,312;400,312;401,311;402,311;403,311;404,310;405,310;406,310;407,310;408,309;409,309;410,309;411,308;412,308;413,308;414,308;415,307;416,307;417,307;418,307;419,307;420,306;421,306;422,306;423,306;424,306;425,306;426,305;427,305;428,305;429,305;430,305;431,305;432,305;433,305;434,305;435,305;436,304;437,304;438,304;439,304;440,304;441,304;442,304;443,304;444,304;445,304;446,304;447,304;448,304;449,304;450,304;451,304;452,303;451,302;450,301;449,300;449,299;448,298;447,297;446,296;445,295;444,294;443,293;442,292;441,291;440,291;439,290;438,289;437,288;436,287;435,287;434,286;433,285;432,284;431,284;430,283;429,282;428,282;427,281;426,280;425,280;424,279;423,279;422,278;421,278;420,277;419,277;418,276;417,276;416,275;415,275;414,274;413,274;412,274;411,273;410,273;409,272;408,272;407,272;406,271;405,271;404,271;403,270;402,270;401,270;400,270;399,269;398,269;397,269;396,270;395,271;394,272;393,273;393,274;392,275;391,276;390,277;389,278;388,279;387,280;386,281;385,282;384,283;383,284;382,285;381,286;380,287;379,288;378,289;377,290;376,291;375,292;374,293;373,294;372,294;371,295;370,296;369,297;368,298;367,298;366,299;365,300;364,301;363,301;362,302;361,303;360,303;359,304;358,305;357,305;356,306;355,307;354,307;353,308;352,309;351,309;350,310;349,310;348,311;347,311;346,312;345,313;344,313;343,314;342,314;341,315;340,315;339,316;338,316;337,317;336,317;335,317;334,318;333,318;332,319;331,319;330,320;329,320;328,320;327,321;326,321;325,322;324,322;323,322;322,323;321,323;320,323;319,324;318,324;317,324;316,325;315,325;314,325;313,326;312,326;311,326;310,326;309,327;308,327;307,327;306,327;305,328;304,328;303,328;302,328;301,329;300,329;299,329;298,329;297,329;296,330;295,330;294,330;293,330;292,330;291,330;290,331;289,331;288,331;287,331;286,331;285,331;284,331;283,331;282,331;281,332;280,333;279,334;279,335;279,336;278,337;278,338;278,339;277,340;277,341;277,342;277,343;276,344;276,345;276,346;276,347;276,348;275,349;275,350;275,351;275,352;275,353;275,354;275,355;274,356;274,357;274,358;274,359;274,360;274,361;274,362;274,363;274,364;274,365;274,366;274,367;274,368;274,369;274,370;274,371;274,372;274,373;274,374;274,375;274,376];
rain = [1,359;1,358;1,357;1,356;1,355;1,354;1,353;1,352;1,351;1,350;1,349;1,348;1,347;1,346;1,345;1,344;1,343;1,342;1,341;1,340;1,339;2,337;2,336;2,335;2,334;2,333;2,332;2,331;3,329;3,328;3,327;3,326;4,324;4,323;4,322;4,321;5,319;5,318;6,316;6,315;6,314;7,312;7,311;8,309;9,307;9,306;10,304;11,302;12,300;12,299;13,297;14,295;15,294;16,292;17,290;18,288;19,287;20,285;21,284;22,282;23,281;24,280;25,278;26,277;27,276;28,275;29,274;30,272;31,271;32,270;33,269;34,268;35,267;36,266;37,265;38,264;39,263;40,262;42,261;43,260;44,259;45,258;46,257;48,256;49,255;51,254;52,253;53,252;55,251;57,250;58,249;60,248;62,247;64,246;66,245;68,244;70,243;72,242;73,242;75,241;77,240;78,240;80,239;81,239;83,238;84,238;86,237;87,237;88,237;90,236;91,236;92,236;94,235;95,235;96,235;97,235;98,235;100,234;101,234;102,234;103,234;104,234;105,234;106,234;107,234;108,234;110,233;111,233;112,233;113,233;114,233;115,233;116,233;117,233;118,233;119,233;120,233;121,233;122,233;123,233;124,233;125,233;127,234;128,234;129,234;130,234;131,234;132,234;133,234;134,234;136,235;137,235;138,235;139,235;141,236;142,236;143,236;144,236;146,237;147,237;148,237;150,238;151,238;153,239;154,239;156,240;157,240;159,240;161,239;162,238;163,237;164,236;165,235;167,234;168,233;169,232;171,231;172,230;174,229;175,228;176,227;178,226;180,225;181,224;183,223;184,222;186,221;188,220;190,219;192,218;194,217;196,216;198,215;200,214;202,213;203,213;205,212;207,211;209,210;210,210;212,209;213,209;215,208;216,208;218,207;219,207;220,207;222,206;223,206;225,205;226,205;227,205;229,204;230,204;231,204;233,203;234,203;235,203;236,203;238,202;239,202;240,202;241,202;242,202;243,202;245,201;246,201;247,201;248,201;249,201;250,201;251,201;253,200;254,200;255,200;256,200;257,200;258,200;259,200;260,200;261,200;262,200;263,200;264,200;265,200;266,200;267,200;268,200;269,200;270,200;271,200;272,200;273,200;274,200;275,200;276,200;277,200;278,200;279,200;280,200;281,200;283,201;284,201;285,201;286,201;287,201;288,201;289,201;291,202;292,202;293,202;294,202;295,202;296,202;298,203;299,203;300,203;301,203;303,204;304,204;305,204;307,205;308,205;309,205;311,206;312,206;313,206;315,207;316,207;318,208;319,208;321,209;322,209;324,210;325,210;327,211;329,212;330,212;332,213;334,214;336,215;338,216;340,217;342,218;344,219;346,220;348,221;350,222;351,223;353,224;355,225;356,226;358,227;359,228;361,229;362,230;363,231;365,232;366,233;367,234;369,235;370,236;371,237;372,238;373,239;375,240;377,240;378,240;380,239;381,239;383,238;384,238;386,237;387,237;388,237;390,236;391,236;392,236;393,236;395,235;396,235;397,235;398,235;400,234;401,234;402,234;403,234;404,234;405,234;406,234;407,234;409,233;410,233;411,233;412,233;413,233;414,233;415,233;416,233;417,233;418,233;419,233;420,233;421,233;422,233;423,233;424,233;426,234;427,234;428,234;429,234;430,234;431,234;432,234;433,234;434,234;436,235;437,235;438,235;439,235;441,236;442,236;443,236;444,236;446,237;447,237;448,237;450,238;451,238;453,239;454,239;456,240;457,240;459,241;460,241;462,242;464,243;466,244;468,245;469,245;470,246;472,247;474,248;476,249;477,250;479,251;481,252;482,253;484,254;485,255;486,256;488,257;489,258;490,259;491,260;492,261;494,262;495,263;496,264;497,265;498,266;499,267;500,268;501,269;502,270;503,271;504,272;505,274;506,275;507,276;508,277;509,278;510,280;511,281;512,282;513,284;514,285;515,287;516,288;517,290;518,292;519,294;520,295;521,297;522,299;522,300;523,302;524,304;525,306;525,307;526,309;526,310;527,312;528,314;528,315;528,316;529,318;529,319;530,321;530,322;530,323;530,324;531,326;531,327;531,328;531,329;532,331;532,332;532,333;532,334;532,335;532,336;532,337;533,339;533,340;533,341;533,342;533,343;533,344;533,345;533,346;533,347;533,348;533,349;533,350;533,351;533,352;533,353;533,354;533,355;533,356;533,357;533,358;533,359;532,361;532,362;532,363;532,364;532,365;532,366;532,367;531,369;531,370;531,371;531,372;531,373;530,375;530,376;530,377;529,379;529,380;529,381;528,383;528,384;527,386;527,387;526,389;526,390;525,392;524,394;524,395;523,397;522,399;521,401;520,403;519,405;518,407;517,408;516,410;515,412;514,413;513,415;512,416;511,418;510,419;509,420;508,421;507,423;506,424;505,425;504,426;503,427;502,428;501,429;500,430;499,431;498,432;497,433;496,434;495,435;494,436;493,437;492,438;491,439;490,440;488,441;487,442;486,443;484,444;483,445;481,446;480,447;478,448;477,449;475,450;473,451;472,452;470,453;468,454;466,455;465,455;463,456;461,457;459,458;458,458;456,459;455,459;453,460;452,460;450,461;449,461;448,461;446,462;445,462;444,462;442,463;441,463;440,463;439,463;437,464;436,464;435,464;434,464;433,464;432,464;430,465;429,465;428,465;427,465;426,465;425,465;424,465;423,465;422,465;421,465;420,465;419,465;418,465;417,465;416,465;415,465;414,465;413,465;412,465;411,465;410,465;409,465;408,465;407,465;406,465;405,465;404,465;402,464;400,465;399,466;398,467;397,469;396,470;395,471;394,472;393,474;392,475;391,476;390,477;389,478;388,479;387,480;386,481;385,482;384,483;383,484;382,485;381,486;380,487;379,488;378,489;377,490;376,491;375,492;374,493;372,494;371,495;370,496;369,497;367,498;366,499;365,500;364,501;362,502;361,503;359,504;358,505;356,506;355,507;353,508;351,509;350,510;348,511;346,512;344,513;343,514;341,515;339,516;338,516;336,517;334,518;332,519;330,520;329,520;327,521;325,522;324,522;322,523;321,523;319,524;318,524;316,525;315,525;314,525;312,526;311,526;309,527;308,527;307,527;305,528;304,528;303,528;302,528;300,529;299,529;298,529;297,529;295,530;294,530;293,530;292,530;291,530;290,530;288,531;287,531;286,531;285,531;284,531;283,531;282,531;281,531;279,532;278,532;277,532;276,532;275,532;274,532;273,532;272,532;271,532;270,532;269,532;268,532;267,532;266,532;265,532;264,532;263,532;262,532;261,532;260,532;259,532;258,532;257,532;256,532;255,532;253,531;252,531;251,531;250,531;249,531;248,531;247,531;246,531;244,530;243,530;242,530;241,530;240,530;239,530;237,529;236,529;235,529;234,529;232,528;231,528;230,528;229,528;227,527;226,527;225,527;223,526;222,526;220,525;219,525;218,525;216,524;215,524;213,523;212,523;210,522;209,522;207,521;205,520;203,519;202,519;200,518;198,517;196,516;194,515;192,514;190,513;188,512;186,511;184,510;183,509;181,508;179,507;178,506;176,505;175,504;173,503;172,502;171,501;169,500;168,499;167,498;165,497;164,496;163,495;162,494;160,493;159,492;158,491;157,490;156,489;155,488;154,487;153,486;152,485;151,484;150,483;149,482;148,481;147,480;146,479;145,478;144,477;143,476;142,475;141,474;140,472;139,471;138,470;137,469;136,467;135,466;134,465;132,464;130,465;129,465;128,465;127,465;126,465;125,465;124,465;123,465;122,465;121,465;120,465;119,465;118,465;117,465;116,465;115,465;114,465;113,465;112,465;111,465;110,465;109,465;108,465;107,465;106,465;105,465;104,465;102,464;101,464;100,464;99,464;98,464;97,464;95,463;94,463;93,463;92,463;90,462;89,462;88,462;86,461;85,461;84,461;82,460;81,460;79,459;78,459;76,458;74,457;73,457;71,456;69,455;67,454;66,454;64,453;62,452;61,451;59,450;57,449;56,448;54,447;53,446;51,445;50,444;48,443;47,442;46,441;44,440;43,439;42,438;41,437;40,436;39,435;38,434;37,433;36,432;35,431;34,430;33,429;32,428;31,427;30,426;29,425;28,424;27,423;26,421;25,420;24,419;23,418;22,416;21,415;20,413;19,412;18,410;17,409;16,407;15,405;14,403;13,401;12,399;11,397;10,395;10,394;9,392;8,390;8,389;7,387;7,386;6,384;6,383;5,381;5,380;5,379;4,377;4,376;4,375;3,373;3,372;3,371;3,370;3,369;2,367;2,366;2,365;2,364;2,363;2,362;2,361;33,353;34,355;34,356;34,357;34,358;34,359;34,360;34,361;34,362;35,364;35,365;35,366;35,367;36,369;36,370;36,371;37,373;37,374;38,376;38,377;39,379;40,381;40,382;41,384;42,386;43,388;44,390;45,391;46,393;47,395;48,396;49,398;50,399;51,400;52,402;53,403;54,404;55,405;56,406;57,407;58,408;59,409;60,410;61,411;62,412;63,413;64,414;65,415;67,416;68,417;70,418;71,419;73,420;74,421;76,422;78,423;80,424;82,425;84,426;86,427;87,427;89,428;91,429;92,429;94,430;95,430;96,430;98,431;99,431;100,431;101,431;103,432;104,432;105,432;106,432;107,432;109,433;110,433;111,433;112,433;113,433;114,433;115,433;116,433;117,433;118,433;119,433;120,433;121,433;122,433;123,433;124,433;125,433;127,432;128,432;129,432;130,432;131,432;133,431;134,431;135,431;136,431;138,430;139,430;140,430;142,429;143,429;145,428;147,427;148,427;149,427;150,429;151,431;152,433;153,434;154,436;155,437;156,439;157,441;158,442;159,443;160,445;161,446;162,448;163,449;164,450;165,451;166,453;167,454;168,455;169,456;170,457;171,458;172,459;173,460;174,461;175,462;176,463;177,464;178,465;179,466;180,467;181,468;183,469;184,470;185,471;186,472;188,473;189,474;191,475;192,476;193,477;195,478;196,479;198,480;200,481;202,482;203,483;205,484;207,485;209,486;211,487;213,488;215,489;216,489;218,490;220,491;221,491;223,492;224,492;226,493;227,493;229,494;230,494;232,495;233,495;235,496;236,496;237,496;238,496;240,497;241,497;242,497;244,498;245,498;246,498;247,498;248,498;249,498;251,499;252,499;253,499;254,499;255,499;256,499;257,499;258,499;259,499;260,499;262,500;263,500;264,500;265,500;266,500;267,500;268,500;269,500;270,500;271,500;272,500;274,499;275,499;276,499;277,499;278,499;279,499;280,499;281,499;282,499;283,499;285,498;286,498;287,498;288,498;289,498;290,498;292,497;293,497;294,497;296,496;297,496;298,496;299,496;301,495;302,495;304,494;305,494;307,493;308,493;310,492;311,492;313,491;314,491;316,490;318,489;319,489;321,488;323,487;325,486;327,485;329,484;331,483;333,482;334,481;336,480;338,479;339,478;341,477;342,476;344,475;345,474;346,473;348,472;349,471;350,470;351,469;353,468;354,467;355,466;356,465;357,464;358,463;359,462;360,461;361,460;362,459;363,458;364,457;365,456;366,455;367,454;368,453;369,451;370,450;371,449;372,447;373,446;374,445;375,443;376,442;377,441;378,439;379,437;380,436;381,434;382,432;383,431;384,429;385,427;386,427;387,427;389,428;391,429;392,429;394,430;395,430;396,430;398,431;399,431;400,431;401,431;403,432;404,432;405,432;406,432;407,432;409,433;410,433;411,433;412,433;413,433;414,433;415,433;416,433;417,433;418,433;419,433;420,433;421,433;422,433;423,433;424,433;425,433;427,432;428,432;429,432;430,432;431,432;433,431;434,431;435,431;436,431;438,430;439,430;440,430;442,429;443,429;445,428;447,427;448,427;450,426;452,425;454,424;456,423;458,422;460,421;461,420;463,419;464,418;466,417;467,416;469,415;470,414;471,413;472,412;473,411;474,410;475,409;476,408;477,407;478,406;479,405;480,404;481,403;482,402;483,400;484,399;485,398;486,396;487,395;488,393;489,391;490,390;491,388;492,386;493,384;494,382;494,381;495,379;496,377;496,376;497,374;497,373;498,371;498,370;498,369;499,367;499,366;499,365;499,364;500,362;500,361;500,360;500,359;500,358;500,357;500,356;500,355;501,353;501,352;501,351;501,350;501,349;501,348;501,347;501,346;500,344;500,343;500,342;500,341;500,340;500,339;500,338;500,337;499,335;499,334;499,333;499,332;498,330;498,329;498,328;497,326;497,325;496,323;496,322;495,320;495,319;494,317;493,315;492,313;491,311;490,309;489,307;488,305;487,304;486,302;485,301;484,299;483,298;482,297;481,296;480,294;479,293;478,292;477,291;476,290;475,289;474,288;473,287;472,286;470,285;469,284;468,283;466,282;465,281;464,280;462,279;460,278;459,277;457,276;455,275;453,274;451,273;449,272;448,272;446,271;444,270;443,270;441,269;440,269;438,268;437,268;436,268;434,267;433,267;432,267;431,267;430,267;428,266;427,266;426,266;425,266;424,266;423,266;422,266;421,266;420,266;419,266;418,266;417,266;416,266;415,266;414,266;413,266;412,266;411,266;410,266;409,266;408,266;407,266;406,266;404,267;403,267;402,267;401,267;399,268;398,268;397,268;395,269;394,269;393,269;391,270;390,270;388,271;386,272;385,272;383,273;381,274;379,275;377,276;375,277;374,278;372,279;371,280;369,281;368,280;367,278;366,277;365,276;364,275;363,274;362,273;361,272;360,271;359,270;358,269;357,268;356,267;355,266;354,265;352,264;351,263;350,262;349,261;347,260;346,259;345,258;343,257;342,256;341,255;339,254;337,253;336,252;334,251;332,250;331,249;329,248;327,247;325,246;323,245;321,244;319,243;318,243;316,242;314,241;313,241;311,240;309,239;308,239;307,239;305,238;304,238;302,237;301,237;299,236;298,236;297,236;295,235;294,235;293,235;292,235;290,234;289,234;288,234;287,234;286,234;284,233;283,233;282,233;281,233;280,233;279,233;278,233;277,233;276,233;274,232;273,232;272,232;271,232;270,232;269,232;268,232;267,232;266,232;265,232;264,232;263,232;262,232;261,232;260,232;258,233;257,233;256,233;255,233;254,233;253,233;252,233;251,233;250,233;248,234;247,234;246,234;245,234;244,234;242,235;241,235;240,235;239,235;237,236;236,236;235,236;233,237;232,237;230,238;229,238;228,238;226,239;225,239;223,240;221,241;220,241;218,242;216,243;215,243;213,244;211,245;209,246;207,247;205,248;203,249;202,250;200,251;198,252;197,253;195,254;194,255;192,256;191,257;189,258;188,259;187,260;185,261;184,262;183,263;182,264;180,265;179,266;178,267;177,268;176,269;175,270;174,271;173,272;172,273;171,274;170,275;169,276;168,277;167,278;166,280;165,281;163,280;162,279;160,278;159,277;157,276;155,275;153,274;151,273;149,272;148,272;146,271;144,270;143,270;141,269;140,269;139,269;137,268;136,268;135,268;133,267;132,267;131,267;130,267;128,266;127,266;126,266;125,266;124,266;123,266;122,266;121,266;120,266;119,266;118,266;117,266;116,266;115,266;114,266;113,266;112,266;111,266;110,266;109,266;108,266;107,266;106,266;104,267;103,267;102,267;101,267;100,267;98,268;97,268;96,268;94,269;93,269;91,270;90,270;88,271;86,272;85,272;83,273;81,274;79,275;77,276;75,277;74,278;72,279;70,280;69,281;68,282;66,283;65,284;64,285;63,286;61,287;60,288;59,289;58,290;57,291;56,292;55,293;54,294;53,296;52,297;51,298;50,299;49,301;48,302;47,304;46,305;45,307;44,309;43,311;42,313;41,315;40,317;39,319;39,320;38,322;38,323;37,325;37,326;36,328;36,329;36,330;35,332;35,333;35,334;35,335;34,337;34,338;34,339;34,340;34,341;34,342;34,343;33,345;33,346;33,347;33,348;33,349;33,350;33,351;33,352;101,137;101,136;101,135;101,134;101,133;101,132;101,131;101,130;101,129;101,128;101,127;102,125;102,124;102,123;103,121;103,120;104,118;105,116;106,115;107,113;108,112;109,111;110,110;111,109;112,108;113,107;114,106;116,105;117,104;119,103;121,102;122,102;124,101;125,101;126,101;128,100;129,100;130,100;131,100;132,100;133,100;134,100;135,100;136,100;137,100;138,100;139,100;141,101;142,101;143,101;145,102;146,102;148,103;150,104;152,105;153,106;154,107;156,108;157,109;158,110;159,112;160,113;161,114;162,116;163,117;164,119;164,120;165,122;165,123;166,125;166,126;166,127;166,128;166,129;166,130;167,132;167,133;166,135;166,136;166,137;166,138;166,139;165,141;165,142;164,144;164,145;163,147;163,148;162,150;161,152;160,154;159,156;159,157;158,158;157,160;156,162;155,164;154,166;153,168;152,170;151,171;150,173;149,175;148,176;147,178;146,180;145,181;144,183;143,185;142,186;141,188;140,189;139,191;138,192;137,194;136,195;135,197;134,198;133,198;132,196;131,195;130,193;129,192;128,190;127,189;126,187;125,185;124,184;123,182;122,181;121,179;120,177;119,176;118,174;117,172;116,171;115,169;114,167;113,165;112,163;111,161;110,160;109,158;108,156;108,155;107,153;106,151;105,149;105,148;104,146;103,144;103,143;102,141;102,140;102,139;235,35;235,34;235,33;235,32;235,31;235,30;235,29;236,27;236,26;236,25;236,24;237,22;237,21;238,19;239,17;240,15;241,14;242,13;243,11;244,10;245,9;246,8;247,7;249,6;250,5;252,4;254,3;256,2;257,2;259,1;260,1;261,1;263,0;264,0;265,0;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0;275,1;276,1;277,1;279,2;280,2;282,3;284,4;286,5;287,6;289,7;290,8;291,9;292,10;293,11;294,12;295,14;296,15;297,17;298,19;299,21;299,22;300,24;300,25;300,26;300,27;301,29;301,30;301,31;301,32;301,33;301,34;301,35;301,36;300,38;300,39;300,40;299,42;299,43;298,45;298,46;297,48;296,50;296,51;295,53;294,55;293,57;292,59;291,61;290,63;289,65;288,67;287,68;286,70;285,72;284,74;283,75;282,77;281,79;280,80;279,82;278,84;277,85;276,87;275,88;274,90;273,91;272,93;271,94;270,96;269,97;268,99;267,97;266,96;265,94;264,93;263,91;262,90;261,88;260,87;259,85;258,84;257,82;256,80;255,79;254,77;253,75;252,74;251,72;250,70;249,68;248,66;247,65;246,63;245,61;244,59;243,57;242,55;241,53;240,51;240,50;239,48;238,46;238,45;237,43;237,42;236,40;236,39;236,38;236,37;367,67;367,66;367,65;368,63;368,62;368,61;368,60;368,59;368,58;369,56;369,55;370,53;371,51;372,49;373,47;374,46;375,45;376,44;377,43;378,42;379,41;380,40;381,39;383,38;385,37;387,36;389,35;390,35;392,34;393,34;394,34;395,34;397,33;398,33;399,33;400,33;401,33;402,33;403,33;405,34;406,34;407,34;408,34;410,35;411,35;412,35;414,36;416,37;418,38;419,39;420,40;422,41;423,42;424,43;425,44;426,46;427,47;428,48;429,50;430,52;431,54;431,55;432,57;432,58;432,59;433,61;433,62;433,63;433,64;433,65;433,66;433,67;433,68;433,69;433,70;432,72;432,73;432,74;431,76;431,77;430,79;430,80;429,82;428,84;428,85;427,87;426,89;425,91;424,93;423,95;422,97;421,98;420,100;419,102;418,104;417,106;416,107;415,109;414,111;413,112;412,114;411,116;410,117;409,119;408,120;407,122;406,124;405,125;404,127;403,128;402,130;401,131;400,132;399,130;398,129;397,127;396,126;395,124;394,123;393,121;392,120;391,118;390,116;389,115;388,113;387,112;386,110;385,108;384,107;383,105;382,103;381,101;380,99;379,98;378,96;377,94;376,92;375,90;374,88;373,86;373,85;372,83;371,81;370,79;370,78;369,76;369,75;369,74;368,72;368,71;368,70;368,69];
thunderstorm = [1,269;1,268;1,267;1,266;1,265;1,264;1,263;1,262;1,261;1,260;1,259;1,258;1,257;1,256;1,255;1,254;1,253;1,252;1,251;1,250;1,249;2,247;2,246;2,245;2,244;2,243;2,242;2,241;3,239;3,238;3,237;3,236;3,235;4,233;4,232;4,231;5,229;5,228;5,227;6,225;6,224;7,222;7,221;8,219;8,218;9,216;10,214;10,213;11,211;12,209;13,207;14,205;15,203;16,201;17,200;18,198;19,196;20,195;21,193;22,192;23,191;24,189;25,188;26,187;27,185;28,184;29,183;30,182;31,181;32,180;33,179;34,178;35,177;36,176;37,175;38,174;39,173;40,172;41,171;42,170;43,169;45,168;46,167;47,166;49,165;50,164;51,163;53,162;54,161;56,160;58,159;59,158;61,157;63,156;65,155;67,154;69,153;71,152;72,152;74,151;76,150;77,150;79,149;80,149;82,148;83,148;85,147;86,147;88,146;89,146;90,146;91,146;93,145;94,145;95,145;96,145;98,144;99,144;100,144;101,144;102,144;103,144;105,143;106,143;107,143;108,143;109,143;110,143;111,143;112,143;113,143;114,143;115,143;116,143;117,143;118,143;119,143;120,143;121,143;122,143;123,143;124,143;125,143;126,143;127,143;128,143;129,143;131,144;132,144;133,144;134,144;135,144;136,144;138,145;139,145;140,145;141,145;143,146;144,146;145,146;146,146;148,147;149,147;151,148;152,148;154,149;155,149;157,150;158,150;160,149;162,148;163,148;164,149;166,150;167,151;169,152;170,153;172,154;173,155;175,156;176,157;178,158;179,159;181,160;182,161;184,162;185,163;187,164;188,165;190,166;191,167;190,168;188,169;187,170;186,171;184,172;183,173;182,174;181,175;179,176;178,177;177,178;176,179;175,180;174,181;173,182;172,183;171,184;170,185;169,186;168,187;167,188;166,189;165,190;164,190;163,189;161,188;159,187;158,186;156,185;154,184;152,183;150,182;149,182;147,181;145,180;144,180;142,179;141,179;139,178;138,178;137,178;135,177;134,177;133,177;132,177;130,176;129,176;128,176;127,176;126,176;125,176;123,175;122,175;121,175;120,175;119,175;118,175;117,175;116,175;115,175;114,175;113,175;112,175;111,175;109,176;108,176;107,176;106,176;105,176;104,176;103,176;101,177;100,177;99,177;97,178;96,178;95,178;93,179;92,179;90,180;89,180;87,181;85,182;84,182;82,183;80,184;78,185;76,186;75,187;73,188;71,189;70,190;68,191;67,192;66,193;64,194;63,195;62,196;61,197;60,198;59,199;58,200;57,201;56,202;55,203;54,204;53,205;52,206;51,208;50,209;49,210;48,212;47,213;46,215;45,217;44,218;43,220;42,222;41,224;41,225;40,227;39,229;38,231;38,232;37,234;37,235;37,236;36,238;36,239;35,241;35,242;35,243;35,244;34,246;34,247;34,248;34,249;34,250;34,251;34,252;34,253;33,255;33,256;33,257;33,258;33,259;33,260;33,261;33,262;33,263;34,265;34,266;34,267;34,268;34,269;34,270;34,271;35,273;35,274;35,275;35,276;36,278;36,279;36,280;37,282;37,283;38,285;38,286;39,288;39,289;40,291;41,293;42,295;43,297;44,299;45,301;46,303;47,304;48,306;49,307;50,309;51,310;52,311;53,313;54,314;55,315;56,316;57,317;58,318;59,319;60,320;61,321;62,322;63,323;65,324;66,325;67,326;69,327;70,328;72,329;73,330;75,331;77,332;79,333;81,334;83,335;85,336;87,337;88,337;90,338;91,338;93,339;94,339;96,340;97,340;98,340;100,341;101,341;102,341;103,341;105,342;106,342;107,342;108,342;109,342;110,342;111,342;113,343;114,343;115,343;116,343;117,343;118,343;119,343;120,343;121,343;123,342;124,342;125,342;126,342;127,342;128,342;129,342;131,341;132,341;133,341;134,341;136,340;137,340;138,340;140,339;141,339;143,338;144,338;146,337;147,337;148,337;149,337;150,338;151,340;152,342;153,344;154,345;155,347;156,348;157,350;158,351;159,353;160,354;161,356;162,357;163,358;164,359;165,361;166,362;167,363;168,364;169,365;170,366;171,367;172,368;174,370;175,371;176,372;177,373;178,374;179,375;180,376;181,377;182,378;183,379;185,380;186,381;187,382;189,383;190,384;191,385;193,386;194,387;196,388;197,389;199,390;201,391;202,392;204,393;206,394;208,395;210,396;212,397;214,398;215,398;217,399;219,400;221,401;222,401;224,402;225,402;227,403;228,403;230,404;231,404;233,405;234,405;235,405;237,406;238,406;239,406;240,406;242,407;243,407;244,407;245,407;247,408;248,408;249,408;250,408;251,408;252,408;254,409;255,409;256,409;257,409;258,409;259,409;260,409;261,409;262,409;263,409;264,409;265,409;266,409;267,409;268,409;269,409;270,409;271,409;272,409;273,409;274,409;275,409;276,409;277,409;278,409;279,409;280,409;282,408;283,408;284,408;285,408;286,408;287,408;289,407;290,407;291,407;292,407;293,407;295,406;296,406;297,406;299,405;300,405;301,405;303,404;304,404;306,403;307,403;309,402;310,402;312,401;313,401;315,400;317,399;318,399;320,398;322,397;324,396;326,395;328,394;330,393;332,392;334,391;335,390;337,389;338,388;340,387;342,386;343,385;344,384;346,383;347,382;348,381;350,380;351,379;352,378;353,377;354,376;356,375;357,374;358,373;359,372;360,371;361,370;362,369;363,368;364,367;365,366;366,364;367,363;368,362;369,361;370,360;371,358;372,357;373,356;374,354;375,353;376,352;377,350;378,349;379,347;380,345;381,344;382,342;383,340;384,338;385,337;386,337;387,337;388,337;390,338;391,338;393,339;394,339;396,340;397,340;398,340;399,340;401,341;402,341;403,341;404,341;405,341;407,342;408,342;409,342;410,342;411,342;412,342;413,342;414,342;415,342;417,343;418,343;419,343;420,343;422,342;423,342;424,342;425,342;426,342;427,342;428,342;429,342;431,341;432,341;433,341;434,341;436,340;437,340;439,339;440,339;441,339;443,338;444,338;446,337;448,336;449,336;451,335;453,334;455,333;457,332;458,331;460,330;462,329;463,328;465,327;466,326;468,325;469,324;470,323;471,322;472,321;473,320;475,319;476,318;477,316;478,315;479,314;480,313;481,312;482,311;483,309;484,308;485,307;486,305;487,304;488,302;489,300;490,299;491,297;492,295;493,293;494,291;494,290;495,288;495,289;495,290;495,291;495,292;495,293;495,294;495,295;495,296;495,297;495,298;495,299;495,300;495,301;495,302;495,303;495,304;495,305;495,306;495,307;495,308;495,309;495,310;495,311;495,312;495,313;495,314;495,315;495,316;495,317;495,318;495,319;495,320;495,321;495,322;495,323;495,324;495,325;495,326;495,327;495,328;495,329;495,330;495,331;495,332;495,333;495,334;495,335;495,336;495,337;495,338;495,339;495,340;495,341;495,342;495,343;495,344;495,345;495,346;495,347;495,348;495,349;495,350;495,351;495,352;495,353;495,354;495,355;495,356;495,357;495,358;495,359;495,360;495,361;495,362;495,363;495,364;495,365;495,366;495,367;495,368;494,366;493,364;492,362;491,360;490,359;489,357;488,356;487,355;486,354;483,354;482,355;480,356;479,357;477,358;475,359;474,360;472,361;470,362;468,363;466,364;464,365;462,366;460,367;459,367;457,368;456,368;454,369;453,369;451,370;450,370;448,371;447,371;446,371;444,372;443,372;442,372;440,373;439,373;438,373;437,373;435,374;434,374;433,374;432,374;431,374;430,374;429,374;427,375;426,375;425,375;424,375;423,375;422,375;421,375;420,375;419,375;418,375;417,375;416,375;415,375;414,375;413,375;412,375;411,375;410,375;409,375;408,375;407,375;405,374;404,374;403,374;402,374;401,374;399,376;398,377;397,378;396,380;395,381;394,382;393,383;392,384;391,385;390,387;389,388;388,389;387,390;386,391;385,392;384,393;383,394;382,395;381,396;380,397;379,398;378,399;377,400;375,401;374,402;373,403;372,404;371,405;369,406;368,407;367,408;366,409;364,410;363,411;362,412;360,413;359,414;357,415;356,416;354,417;352,418;351,419;349,420;347,421;345,422;344,423;342,424;340,425;338,426;337,426;335,427;333,428;331,429;330,429;328,430;326,431;325,431;323,432;321,433;320,433;318,434;317,434;316,434;314,435;313,435;311,436;310,436;309,436;307,437;306,437;305,437;303,438;302,438;301,438;300,438;298,439;297,439;296,439;295,439;294,439;292,440;291,440;290,440;289,440;288,440;286,441;285,441;284,441;283,441;282,441;281,441;280,441;279,441;278,441;277,441;276,441;275,441;274,441;273,441;272,441;270,442;269,442;268,442;267,442;266,442;265,442;264,442;263,442;262,442;260,441;259,441;258,441;257,441;256,441;255,441;254,441;253,441;252,441;251,441;250,441;249,441;247,440;246,440;245,440;244,440;243,440;242,440;241,440;239,439;238,439;237,439;236,439;234,438;233,438;232,438;231,438;229,437;228,437;227,437;225,436;224,436;223,436;221,435;220,435;218,434;217,434;215,433;214,433;212,432;211,432;209,431;208,431;206,430;204,429;203,429;201,428;199,427;197,426;195,425;193,424;191,423;189,422;187,421;185,420;184,419;182,418;180,417;179,416;177,415;176,414;174,413;171,414;172,416;173,418;174,420;175,422;176,424;177,425;178,427;179,428;180,429;181,431;182,432;183,433;184,434;185,435;186,436;187,437;188,438;190,439;191,440;192,441;194,442;195,443;197,444;199,445;201,446;203,447;205,448;206,448;208,449;209,449;211,450;212,450;214,451;215,451;216,451;217,451;218,451;220,452;221,452;222,452;223,452;224,452;225,452;226,452;227,452;228,452;229,452;230,452;231,452;232,452;233,452;235,451;236,451;237,451;238,451;240,450;241,450;242,450;244,449;245,449;247,448;248,448;249,448;250,449;251,451;252,453;253,454;254,456;255,457;256,459;257,460;258,462;259,463;260,464;261,465;262,467;263,468;264,469;265,470;266,471;267,472;268,473;269,474;270,475;271,476;272,477;274,478;275,479;276,480;278,481;279,482;280,483;282,484;283,485;285,486;287,487;289,488;291,489;293,490;295,491;297,492;299,493;300,493;302,494;303,494;305,495;307,496;308,496;309,496;311,497;312,497;313,497;315,498;316,498;317,498;318,498;320,499;321,499;322,499;323,499;324,499;325,499;326,499;327,499;328,499;330,500;331,500;332,500;333,500;334,500;335,500;336,500;337,500;339,499;340,499;341,499;342,499;343,499;344,499;345,499;346,499;347,499;349,498;350,498;351,498;352,498;354,497;355,497;356,497;358,496;359,496;360,496;362,495;363,495;365,494;366,494;368,493;370,492;372,491;373,491;375,490;377,489;379,488;380,487;382,486;384,485;385,484;387,483;388,482;390,481;391,480;392,479;394,478;395,477;396,476;397,475;398,474;399,473;400,472;401,471;402,470;403,469;404,468;405,467;406,466;407,464;408,463;409,462;410,461;411,459;412,458;413,456;414,455;415,453;416,451;417,449;418,448;419,448;420,448;422,449;423,449;425,450;426,450;427,450;429,451;430,451;431,451;432,451;434,452;435,452;436,452;437,452;438,452;439,452;440,452;441,452;442,452;443,452;444,452;445,452;446,452;447,452;448,452;450,451;451,451;452,451;453,451;455,450;456,450;457,450;459,449;461,448;462,448;464,447;466,446;468,445;470,444;472,443;474,442;475,441;476,440;478,439;479,438;480,437;481,436;482,435;483,434;484,433;485,432;486,431;487,430;488,429;489,427;490,426;491,424;492,423;493,421;494,419;495,417;495,418;495,419;495,420;495,421;496,423;496,424;496,425;496,426;496,427;496,428;496,429;496,430;496,431;496,432;496,433;496,434;496,435;496,436;496,437;496,438;496,439;496,440;496,441;496,442;496,443;496,444;496,445;496,446;496,447;496,448;496,449;496,450;496,451;496,452;496,453;496,454;496,455;496,456;496,457;496,458;496,459;496,460;496,461;496,462;496,463;496,464;496,465;496,466;495,467;494,468;492,469;491,470;489,471;487,472;486,473;484,474;482,475;480,476;478,477;477,477;475,478;473,479;472,479;470,480;469,480;467,481;466,481;465,481;463,482;462,482;461,482;459,483;458,483;457,483;456,483;455,483;453,484;452,484;451,484;450,484;449,484;448,484;447,484;446,484;445,484;444,484;443,484;442,484;441,484;440,484;439,484;438,484;437,484;436,484;435,484;434,484;432,486;431,487;430,488;429,489;428,490;427,491;426,492;425,493;424,494;423,495;422,496;421,497;420,498;419,499;418,500;417,501;416,502;415,503;414,504;412,505;411,506;410,507;408,508;407,509;405,510;404,511;402,512;401,513;399,514;398,515;396,516;394,517;392,518;390,519;388,520;386,521;384,522;383,522;381,523;379,524;378,524;376,525;375,525;373,526;372,526;370,527;369,527;367,528;366,528;365,528;363,529;362,529;361,529;360,529;358,530;357,530;356,530;355,530;354,530;352,531;351,531;350,531;349,531;348,531;347,531;346,531;344,532;343,532;342,532;341,532;340,532;339,532;338,532;337,532;336,532;335,532;334,532;333,532;332,532;331,532;330,532;329,532;328,532;327,532;326,532;325,532;324,532;323,532;321,531;320,531;319,531;318,531;317,531;316,531;315,531;313,530;312,530;311,530;310,530;309,530;307,529;306,529;305,529;304,529;302,528;301,528;299,527;298,527;297,527;295,526;294,526;292,525;291,525;289,524;288,524;286,523;284,522;283,522;281,521;279,520;277,519;275,518;273,517;271,516;270,515;268,514;266,513;265,512;263,511;262,510;260,509;259,508;258,507;256,506;255,505;254,504;253,503;251,502;250,501;249,500;248,499;247,498;246,497;245,496;244,495;243,494;242,493;241,492;240,491;239,490;238,489;237,488;236,486;235,485;233,484;232,484;231,484;230,484;229,484;228,484;227,484;226,484;225,484;224,484;223,484;222,484;221,484;220,484;219,484;218,484;217,484;216,484;215,484;214,484;212,483;211,483;210,483;209,483;208,483;206,482;205,482;204,482;202,481;201,481;200,481;198,480;197,480;195,479;194,479;192,478;190,477;188,476;187,476;185,475;183,474;182,473;180,472;178,471;177,470;175,469;174,468;172,467;171,466;170,465;168,464;167,463;166,462;165,461;164,460;163,459;162,458;161,457;160,456;159,455;158,454;157,453;156,452;155,451;154,449;153,448;152,447;151,445;150,444;149,443;148,441;147,439;146,438;145,436;144,434;143,432;142,430;141,428;141,427;140,425;140,424;139,422;139,421;138,419;138,418;137,416;137,415;137,414;136,412;136,411;136,410;136,409;135,407;135,406;135,405;135,404;135,403;135,402;135,401;135,400;134,398;134,397;134,396;134,395;134,394;134,393;134,392;134,391;134,390;134,389;134,388;134,387;135,385;135,384;135,383;135,382;135,381;135,380;135,379;135,376;133,374;132,374;131,374;130,374;129,374;127,375;126,375;125,375;124,375;123,375;122,375;121,375;120,375;119,375;118,375;117,375;116,375;115,375;114,375;113,375;112,375;111,375;110,375;109,375;108,375;107,375;105,374;104,374;103,374;102,374;101,374;100,374;99,374;97,373;96,373;95,373;94,373;92,372;91,372;90,372;89,372;87,371;86,371;84,370;83,370;82,370;80,369;79,369;77,368;75,367;74,367;72,366;70,365;69,365;67,364;65,363;63,362;61,361;60,360;58,359;56,358;55,357;53,356;52,355;50,354;49,353;48,352;46,351;45,350;44,349;43,348;41,347;40,346;39,345;38,344;37,343;36,342;35,341;34,340;33,339;32,338;31,337;30,336;29,335;28,333;27,332;26,331;25,330;24,329;23,327;22,326;21,324;20,323;19,321;18,320;17,318;16,316;15,315;14,313;13,311;12,309;11,307;11,306;10,304;9,302;9,301;8,299;7,297;7,296;6,294;6,293;6,292;5,290;5,289;4,287;4,286;4,285;4,284;3,282;3,281;3,280;3,279;2,277;2,276;2,275;2,274;2,273;2,272;2,271;201,133;202,132;203,131;204,130;205,129;206,128;207,127;208,126;209,125;210,124;211,123;212,122;213,121;214,120;215,119;216,118;217,117;218,116;219,115;220,114;221,113;222,112;223,111;224,110;225,109;226,108;227,107;228,106;229,105;230,104;231,103;232,102;233,101;234,99;233,97;233,96;232,94;232,93;231,91;231,90;230,88;230,87;229,85;229,84;228,82;228,81;227,79;227,78;226,76;226,75;225,73;225,72;224,70;224,69;223,67;223,66;222,64;222,63;221,61;221,60;220,58;220,57;219,55;219,54;218,52;218,51;217,49;217,48;216,46;216,45;215,43;215,42;214,40;214,39;213,37;213,36;212,34;212,33;211,31;211,30;210,28;210,27;209,25;209,24;208,22;208,21;207,19;207,18;206,16;206,15;205,13;205,12;204,10;204,9;203,7;203,6;202,4;202,3;201,1;202,2;203,3;204,4;205,5;206,6;207,7;208,8;209,9;210,10;211,11;212,12;213,13;214,14;215,15;216,16;217,17;218,18;219,19;220,20;221,21;222,22;223,23;224,24;225,25;226,26;227,27;228,28;229,29;230,30;231,31;232,32;233,33;234,34;235,35;236,36;237,37;238,38;239,39;240,40;241,41;242,42;243,43;244,44;245,45;246,46;247,47;248,48;249,49;250,50;251,51;252,52;253,53;254,54;255,55;256,56;257,57;258,58;259,59;260,60;261,61;262,62;263,63;264,64;265,65;266,66;267,67;268,68;269,69;270,70;271,71;272,72;273,73;274,74;275,75;276,76;277,77;278,78;279,79;280,80;281,81;282,82;283,83;284,84;285,85;286,86;287,87;288,88;289,89;290,90;291,91;292,92;293,93;294,94;295,95;296,96;297,97;298,98;299,99;299,100;298,101;297,102;296,103;295,104;294,105;293,106;292,107;291,108;290,109;289,110;288,111;287,112;286,113;285,114;284,115;283,116;282,117;281,118;280,119;279,120;278,121;277,122;276,123;275,124;274,125;273,126;272,127;271,128;270,129;269,130;268,131;267,133;268,135;269,137;270,139;271,141;272,143;273,145;274,147;275,149;276,151;277,153;278,155;279,157;280,159;281,161;282,163;283,165;284,167;285,169;286,171;287,173;288,175;289,177;290,179;291,181;292,183;293,185;294,187;295,189;296,191;297,193;298,195;299,197;299,198;297,197;296,196;294,195;293,194;291,193;290,192;288,191;287,190;285,189;284,188;282,187;281,186;279,185;278,184;276,183;275,182;273,181;272,180;270,179;269,178;267,177;266,176;264,175;263,174;261,173;260,172;258,171;257,170;255,169;254,168;252,167;251,166;249,165;248,164;246,163;245,162;243,161;242,160;240,159;239,158;237,157;236,156;234,155;233,154;231,153;230,152;228,151;227,150;225,149;224,148;222,147;221,146;219,145;218,144;216,143;215,142;213,141;212,140;210,139;209,138;207,137;206,136;204,135;203,134;308,140;308,139;309,138;310,137;311,136;312,135;313,134;314,133;315,132;316,131;317,130;318,129;319,128;320,127;321,126;322,125;323,124;324,123;325,122;326,121;327,121;328,121;330,122;332,123;334,124;335,124;337,125;339,126;341,127;343,128;345,129;347,130;348,131;350,132;352,133;353,134;355,135;357,136;358,137;360,138;361,139;362,140;364,141;365,142;366,143;368,144;369,145;370,146;372,147;373,148;374,149;376,150;377,150;379,149;380,149;382,148;383,148;385,147;386,147;388,146;389,146;390,146;391,146;393,145;394,145;395,145;396,145;398,144;399,144;400,144;401,144;402,144;403,144;405,143;406,143;407,143;408,143;409,143;410,143;411,143;412,143;413,143;414,143;415,143;416,143;417,143;418,143;419,143;420,143;421,143;422,143;423,143;424,143;425,143;426,143;427,143;428,143;429,143;431,144;432,144;433,144;434,144;435,144;436,144;438,145;439,145;440,145;441,145;443,146;444,146;445,146;446,146;448,147;449,147;451,148;452,148;454,149;455,149;457,150;458,150;460,151;461,151;463,152;465,153;467,154;469,155;471,156;473,157;475,158;476,159;478,160;480,161;481,162;483,163;484,164;485,165;487,166;488,167;489,168;491,169;492,170;493,171;494,172;495,173;495,174;495,175;495,176;495,177;495,178;495,179;495,180;495,181;495,182;495,183;495,184;495,185;495,186;495,187;495,188;495,189;495,190;495,191;495,192;495,193;495,194;495,195;495,196;495,197;495,198;495,199;495,200;495,201;495,202;495,203;495,204;495,205;495,206;495,207;495,208;495,209;495,210;495,211;495,212;495,213;495,214;495,215;495,216;495,217;495,218;495,219;495,220;495,221;495,222;495,223;495,224;495,225;495,226;495,227;495,228;495,229;494,227;493,225;493,224;492,222;491,220;490,218;489,217;488,215;487,213;486,212;485,210;484,209;483,208;482,206;481,205;480,204;479,203;478,202;477,201;476,200;475,199;474,198;473,197;472,196;471,195;470,194;468,193;467,192;466,191;464,190;463,189;461,188;459,187;458,186;456,185;454,184;452,183;450,182;449,182;447,181;445,180;444,180;442,179;441,179;439,178;438,178;437,178;435,177;434,177;433,177;432,177;430,176;429,176;428,176;427,176;426,176;425,176;423,175;422,175;421,175;420,175;419,175;418,175;417,175;416,175;415,175;414,175;413,175;412,175;411,175;409,176;408,176;407,176;406,176;405,176;404,176;402,177;401,177;400,177;399,177;397,178;396,178;395,178;393,179;392,179;390,180;389,180;387,181;385,182;383,183;382,183;380,184;378,185;376,186;375,187;373,188;371,189;370,190;369,190;368,189;367,188;366,187;365,186;364,185;363,184;362,183;361,182;360,181;359,180;358,179;357,178;356,177;355,176;354,175;353,174;351,173;350,172;349,171;347,170;346,169;345,168;343,167;342,166;340,165;339,164;337,163;335,162;334,161;332,160;330,159;328,158;326,157;324,156;322,155;320,154;318,153;317,153;315,152;314,151;313,150;312,148;311,146;310,144;309,142];
%% Perform weather forecast. Pressure readings in mbar (or hPa)
if pressureChange < -6
% conditionNumber = 1;
% message = 'a thuderstorm is coming (or worsening)';
scatter(thunderstorm(:,1), thunderstorm(:,2),'.');
axis equal
set(gca, 'Visible','off')
elseif pressureChange >= -6 && pressureChange < -2
% conditionNumber = 2;
% message = 'weather worsen in next hours';
scatter(rain(:,1), rain(:,2),'.');
axis equal
set(gca, 'Visible','off')
elseif pressureChange > 2
% conditionNumber = 3;
% message = 'weather gets better';
if dayFlag
scatter(sunCloud(:,1), sunCloud(:,2),'.');
else
scatter(moonCloud(:,1), moonCloud(:,2),'.');
end
axis equal
set(gca, 'Visible','off')
elseif avgPressure <= 1000 && avgHumidity >= 70
% conditionNumber = 4;
% message = 'probably bad weather';
scatter(clouds(:,1), clouds(:,2),'.');
axis equal
set(gca, 'Visible','off')
elseif avgPressure >= 1025 && avgHumidity <= 60
% conditionNumber = 5;
% message = 'probably good weather';
if dayFlag
scatter(sun(:,1), sun(:,2),'.');
else
scatter(moon(:,1), moon(:,2),'.');
end
axis equal
set(gca, 'Visible','off')
elseif avgHumidity >= 85
% conditionNumber = 6;
% message = 'probably rainy';
scatter(rain(:,1), rain(:,2),'.');
axis equal
set(gca, 'Visible','off')
else
% conditionNumber = 7;
% message = 'probably variable weather';
if dayFlag
scatter(sunCloud(:,1), sunCloud(:,2),'.');
else
scatter(moonCloud(:,1), moonCloud(:,2),'.');
end
axis equal
set(gca, 'Visible','off')
end