wjomlex commited on
Commit
ab396f0
1 Parent(s): 7acee6b

2018 Problems

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. 2018/finals/293195401822038.jpg +3 -0
  3. 2018/finals/923060468192530.jpg +3 -0
  4. 2018/finals/citylights.cpp +243 -0
  5. 2018/finals/citylights.html +76 -0
  6. 2018/finals/citylights.in +0 -0
  7. 2018/finals/citylights.md +74 -0
  8. 2018/finals/citylights.out +150 -0
  9. 2018/finals/claw.cpp +202 -0
  10. 2018/finals/claw.html +74 -0
  11. 2018/finals/claw.in +3 -0
  12. 2018/finals/claw.md +80 -0
  13. 2018/finals/claw.out +100 -0
  14. 2018/finals/contest.cpp +134 -0
  15. 2018/finals/contest.html +78 -0
  16. 2018/finals/contest.in +0 -0
  17. 2018/finals/contest.md +68 -0
  18. 2018/finals/contest.out +200 -0
  19. 2018/finals/ethan.cpp +211 -0
  20. 2018/finals/ethan.html +109 -0
  21. 2018/finals/ethan.in +241 -0
  22. 2018/finals/ethan.md +89 -0
  23. 2018/finals/ethan.out +80 -0
  24. 2018/finals/personal.cpp +202 -0
  25. 2018/finals/personal.html +82 -0
  26. 2018/finals/personal.in +3 -0
  27. 2018/finals/personal.md +73 -0
  28. 2018/finals/personal.out +90 -0
  29. 2018/finals/stockholm.cpp +146 -0
  30. 2018/finals/stockholm.html +76 -0
  31. 2018/finals/stockholm.in +2001 -0
  32. 2018/finals/stockholm.md +67 -0
  33. 2018/finals/stockholm.out +2000 -0
  34. 2018/quals/ethanstring.cpp +117 -0
  35. 2018/quals/ethanstring.html +79 -0
  36. 2018/quals/ethanstring.in +0 -0
  37. 2018/quals/ethanstring.md +66 -0
  38. 2018/quals/ethanstring.out +0 -0
  39. 2018/quals/interception.cpp +112 -0
  40. 2018/quals/interception.html +61 -0
  41. 2018/quals/interception.in +8327 -0
  42. 2018/quals/interception.md +48 -0
  43. 2018/quals/interception.out +462 -0
  44. 2018/quals/tourist.cpp +119 -0
  45. 2018/quals/tourist.html +57 -0
  46. 2018/quals/tourist.in +3871 -0
  47. 2018/quals/tourist.md +52 -0
  48. 2018/quals/tourist.out +156 -0
  49. 2018/round1/273247077253892.jpg +3 -0
  50. 2018/round1/2796578177295687.jpg +3 -0
.gitattributes CHANGED
@@ -72,3 +72,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
72
  2017/finals/poles.in filter=lfs diff=lfs merge=lfs -text
73
  2017/finals/strolls.in filter=lfs diff=lfs merge=lfs -text
74
  2017/finals/tolls.in filter=lfs diff=lfs merge=lfs -text
 
 
 
72
  2017/finals/poles.in filter=lfs diff=lfs merge=lfs -text
73
  2017/finals/strolls.in filter=lfs diff=lfs merge=lfs -text
74
  2017/finals/tolls.in filter=lfs diff=lfs merge=lfs -text
75
+ 2018/finals/claw.in filter=lfs diff=lfs merge=lfs -text
76
+ 2018/finals/personal.in filter=lfs diff=lfs merge=lfs -text
2018/finals/293195401822038.jpg ADDED

Git LFS Details

  • SHA256: 0d6effb61be9b3565a187efabade675959b481b05a4889920592ea33fef5a383
  • Pointer size: 130 Bytes
  • Size of remote file: 40.4 kB
2018/finals/923060468192530.jpg ADDED

Git LFS Details

  • SHA256: 76e8795743c102d61b8461243209e10165fcab065b5719b9c300e818d99e0653
  • Pointer size: 130 Bytes
  • Size of remote file: 31.9 kB
2018/finals/citylights.cpp ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // City Lights
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ #define LIM 135
89
+ #define MOD 1000000007
90
+
91
+ int W,S,K,NH;
92
+ PR PW[LIM],PS[LIM];
93
+ int H[LIM];
94
+ vector<int> ch[LIM],wh[LIM];
95
+ LL dyn[LIM][LIM][LIM]; // dyn[i][h][b] = # of combinations in i's subtree requiring b buildings, with height h still required
96
+ LL dynS[LIM][LIM][LIM]; // dynS[i][h][b] = sum of dyn[i][0..(h-1)][b]
97
+ LL tmp[LIM][LIM];
98
+
99
+ void CompSums(int i)
100
+ {
101
+ int h,b;
102
+ Fox(h,NH)
103
+ Fox(b,W+1)
104
+ dynS[i][h+1][b]=(dynS[i][h][b]+dyn[i][h][b])%MOD;
105
+ }
106
+
107
+ void Add(LL &a,LL b)
108
+ {
109
+ a=(a+b)%MOD;
110
+ }
111
+
112
+ void rec(int i)
113
+ {
114
+ int j,c,h,b,h2,b2,nw;
115
+ LL pw;
116
+ // iterate over children
117
+ dyn[i][0][0]=1;
118
+ Fox(j,Sz(ch[i]))
119
+ {
120
+ rec(c=ch[i][j]);
121
+ // combine DP values
122
+ CompSums(i),CompSums(c);
123
+ Fill(tmp,0);
124
+ Fox(h,NH)
125
+ Fox(b,W+1)
126
+ Fox(b2,W-b+1)
127
+ Add(tmp[h][b+b2],dyn[i][h][b]*dynS[c][h+1][b2] + dynS[i][h][b]*dyn[c][h][b2]);
128
+ memcpy(dyn[i],tmp,sizeof(tmp));
129
+ }
130
+ // consider all possible subsets of windows coming into play here
131
+ nw=Sz(wh[i]);
132
+ sort(All(wh[i]));
133
+ reverse(All(wh[i]));
134
+ Fill(tmp,0);
135
+ Fox(j,nw+1)
136
+ {
137
+ h2=(j==nw ? 0 : wh[i][j]);
138
+ pw=(1LL<<(nw-min(nw,j+1)))%MOD;
139
+ Fox(h,NH)
140
+ Fox(b,W+1)
141
+ Add(tmp[max(h,h2)][b],pw*dyn[i][h][b]);
142
+ }
143
+ memcpy(dyn[i],tmp,sizeof(tmp));
144
+ // place a building here when necessary
145
+ FoxI(h,H[i],NH-1)
146
+ Fox(b,W+1)
147
+ {
148
+ Add(dyn[i][0][b+1],dyn[i][h][b]);
149
+ dyn[i][h][b]=0;
150
+ }
151
+ CompSums(i);
152
+ }
153
+
154
+ int main()
155
+ {
156
+ if (DEBUG)
157
+ freopen("in.txt","r",stdin);
158
+ // vars
159
+ int T,t;
160
+ int i,x,y,z,a,b,c;
161
+ LL ans;
162
+ vector<int> cy;
163
+ set<pair<PR,int> > SI;
164
+ set<pair<PR,int> >::iterator I;
165
+ map<int,int> MS;
166
+ // testcase loop
167
+ Read(T);
168
+ Fox1(t,T)
169
+ {
170
+ // input, and compress y-coordinates
171
+ Read(W),Read(S);
172
+ cy.clear(),cy.pb(0);
173
+ Fox(i,W)
174
+ Read(PW[i].y),Read(PW[i].x),cy.pb(PW[i].x);
175
+ Fox(i,S)
176
+ Read(PS[i].y),Read(PS[i].x),cy.pb(PS[i].x);
177
+ sort(All(cy));
178
+ cy.resize(unique(All(cy))-cy.begin());
179
+ NH=Sz(cy);
180
+ Fox(i,W)
181
+ PW[i].x=lower_bound(All(cy),PW[i].x)-cy.begin();
182
+ Fox(i,S)
183
+ PS[i].x=lower_bound(All(cy),PS[i].x)-cy.begin();
184
+ // init tree
185
+ Fill(H,60);
186
+ Fox(i,K)
187
+ ch[i].clear(),wh[i].clear();
188
+ K=0;
189
+ // iterate over stars in non-decreasing order of Y
190
+ sort(PS,PS+S);
191
+ SI.clear();
192
+ H[0]=1,SI.insert(mp(mp(0,INF+1),K++));
193
+ MS.clear();
194
+ Fox(i,S)
195
+ {
196
+ x=PS[i].y;
197
+ y=PS[i].x;
198
+ // find containing interval (if any)
199
+ I=SI.lower_bound(mp(mp(x,INF+2),0)),I--;
200
+ a=I->x.x;
201
+ b=I->x.y;
202
+ c=I->y;
203
+ if ((a<=x) && (b>=x))
204
+ {
205
+ // split interval at this X-coordinate
206
+ if (a<x)
207
+ {
208
+ ch[c].pb(K);
209
+ H[K]=y,SI.insert(mp(mp(a,x-1),K++));
210
+ }
211
+ if (b>x)
212
+ {
213
+ ch[c].pb(K);
214
+ H[K]=y,SI.insert(mp(mp(x+1,b),K++));
215
+ }
216
+ SI.erase(I);
217
+ MS[x]=c;
218
+ }
219
+ }
220
+ // associate windows with nodes
221
+ Fox(i,W)
222
+ {
223
+ x=PW[i].y;
224
+ if (MS.count(x))
225
+ c=MS[x];
226
+ else
227
+ {
228
+ I=SI.lower_bound(mp(mp(x,INF+2),0)),I--;
229
+ c=I->y;
230
+ }
231
+ wh[c].pb(PW[i].x);
232
+ }
233
+ // DP
234
+ Fill(dyn,0);
235
+ rec(0);
236
+ ans=0;
237
+ Fox1(i,W)
238
+ Add(ans,i*dyn[0][0][i]);
239
+ // output
240
+ printf("Case #%d: %lld\n",t,ans);
241
+ }
242
+ return(0);
243
+ }
2018/finals/citylights.html ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ Dahlia is taking a roadtrip across all of Canada! Along the way, she's spending a night in one of the country's hallmark cities, Toronto.
3
+ </p>
4
+
5
+ <p>
6
+ Toronto's nighttime skyline can be represented as a 2D plane, with the ground forming a horizontal line with y-coordinate 0.
7
+ There are <strong>W</strong> building windows, with the <em>i</em>th one at coordinates (<strong>XW<sub>i</sub></strong>, <strong>YW<sub>i</sub></strong>).
8
+ There are also <strong>S</strong> visible stars, with the <em>i</em>th one at coordinates (<strong>XS<sub>i</sub></strong>, <strong>YS<sub>i</sub></strong>).
9
+ It's guaranteed that all <strong>W</strong> + <strong>S</strong> of these points are distinct, and that no star is directly below a window (having the same x-coordinate but a smaller y-coordinate).
10
+ </p>
11
+
12
+ <p>
13
+ At night, it's impossible to see any given window unless there's light coming from it. On any given night, each window is independently either lit up or not with equal probability.
14
+ As such, there are 2<sup><strong>W</strong></sup> equally-likely subsets of windows which might be visible. Dahlia finds herself looking at Toronto's skyline on one such random night.
15
+ </p>
16
+
17
+ <p>
18
+ Dahlia knows that Toronto consists of 0 or more buildings, each of which covers a rectangular portion of the sky with some bottom-left corner (<strong>x<sub>1</sub></strong>, 0)
19
+ and some top-right corner (<strong>x<sub>2</sub></strong>, <strong>h</strong>),
20
+ for some real values of <strong>x<sub>1</sub></strong>, <strong>x<sub>2</sub></strong>, and <strong>h</strong>
21
+ (such that <strong>x<sub>1</sub></strong> &lt; <strong>x<sub>2</sub></strong> and <strong>h</strong> &gt; 0).
22
+ The buildings might overlap with one another. Based on Dahlia's view of the stars and lit-up windows, she can infer some things about the set of buildings present.
23
+ In particular, for each lit-up window <em>i</em>, Dahlia realizes that there must be at least one building whose rectangle inclusively covers the point
24
+ (<strong>XW<sub>i</sub></strong>, <strong>YW<sub>i</sub></strong>). Furthermore, for each star <em>i</em>,
25
+ Dahlia realizes that there must be no buildings whose rectangles inclusively cover the point (<strong>XS<sub>i</sub></strong>, <strong>YS<sub>i</sub></strong>).
26
+ </p>
27
+
28
+ <p>
29
+ Dahlia is going to assume that Toronto consists of as few buildings as possible which are consistent with her observations on that night.
30
+ What's the expected number of buildings which she'll assume exist?
31
+ In order to avoid floating-point arithmetic and large integers, output this expected number multiplied by 2<sup><strong>W</strong></sup> (which is guaranteed to result in an integer) and then taken modulo 1,000,000,007.
32
+ </p>
33
+
34
+
35
+ <h3>Input</h3>
36
+
37
+ <p>
38
+ Input begins with an integer <strong>T</strong>, the number of skylines.
39
+ For each skyline, there is first a line containing the space-separated integers <strong>W</strong> and <strong>S</strong>.
40
+ Then, <strong>W</strong> lines follow, the <em>i</em>th of which contains the space-separated integers <strong>XW<sub>i</sub></strong> and <strong>YW<sub>i</sub></strong>.
41
+ Then, <strong>S</strong> lines follow, the <em>i</em>th of which contains the space-separated integers <strong>XS<sub>i</sub></strong> and <strong>YS<sub>i</sub></strong>.
42
+ </p>
43
+
44
+
45
+ <h3>Output</h3>
46
+
47
+ <p>
48
+ For the <em>i</em>th universe, output a line containing "Case #<em>i</em>: " the expected number of buildings which Dahlia will assume exist, multiplied by 2<sup><strong>W</strong></sup> and then taken modulo 1,000,000,007.
49
+ </p>
50
+
51
+
52
+ <h3>Constraints</h3>
53
+
54
+ <p>
55
+ 1 &le; <strong>T</strong> &le; 150 <br />
56
+ 1 &le; <strong>W</strong> &le; 80 <br />
57
+ 1 &le; <strong>S</strong> &le; 50 <br />
58
+ 1 &le; <strong>XW<sub>i</sub></strong>, <strong>YW<sub>i</sub></strong>, <strong>XS<sub>i</sub></strong>, <strong>YS<sub>i</sub></strong> &le; 1,000,000,000 <br />
59
+ </p>
60
+
61
+
62
+ <h3>Explanation of Sample</h3>
63
+
64
+ <p>
65
+ In the first case, there's a 50% chance that the single window will be visible, in which case Dahlia will assume that Toronto has 1 building.
66
+ There's also a 50% chance that it won't be visible, in which case she'll assume that there are 0 buildings. As such, the expected number of buildings which she'll assume exist is (1 + 0) / 2 = 1/2.
67
+ This should then be multiplied by 2<sup>1</sup> and taken modulo 1,000,000,007 to produce a final answer of 1.
68
+ </p>
69
+
70
+ <p>
71
+ In the second case, however many windows are visible, Dahlia will assume Toronto has that many buildings. For example, if both windows are visible, then there must be at least 2 buildings, as a single building can't account for both windows without also covering the single visible star. This results in a final answer of ((0 + 1 + 1 + 2) / 4 * 2<sup>2</sup>) modulo 1,000,000,007 = 4.
72
+ </p>
73
+
74
+ <p>
75
+ In the third case, the final answer is ((0 + 1 + 1 + 1 + 1 + 1 + 2 + 2) / 8 * 2<sup>3</sup>) modulo 1,000,000,007 = 9.
76
+ </p>
2018/finals/citylights.in ADDED
The diff for this file is too large to render. See raw diff
 
2018/finals/citylights.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Dahlia is taking a roadtrip across all of Canada! Along the way, she's
2
+ spending a night in one of the country's hallmark cities, Toronto.
3
+
4
+ Toronto's nighttime skyline can be represented as a 2D plane, with the ground
5
+ forming a horizontal line with y-coordinate 0. There are **W** building
6
+ windows, with the _i_th one at coordinates (**XWi**, **YWi**). There are also
7
+ **S** visible stars, with the _i_th one at coordinates (**XSi**, **YSi**).
8
+ It's guaranteed that all **W** \+ **S** of these points are distinct, and that
9
+ no star is directly below a window (having the same x-coordinate but a smaller
10
+ y-coordinate).
11
+
12
+ At night, it's impossible to see any given window unless there's light coming
13
+ from it. On any given night, each window is independently either lit up or not
14
+ with equal probability. As such, there are 2**W** equally-likely subsets of
15
+ windows which might be visible. Dahlia finds herself looking at Toronto's
16
+ skyline on one such random night.
17
+
18
+ Dahlia knows that Toronto consists of 0 or more buildings, each of which
19
+ covers a rectangular portion of the sky with some bottom-left corner (**x1**,
20
+ 0) and some top-right corner (**x2**, **h**), for some real values of **x1**,
21
+ **x2**, and **h** (such that **x1** < **x2** and **h** > 0). The buildings
22
+ might overlap with one another. Based on Dahlia's view of the stars and lit-up
23
+ windows, she can infer some things about the set of buildings present. In
24
+ particular, for each lit-up window _i_, Dahlia realizes that there must be at
25
+ least one building whose rectangle inclusively covers the point (**XWi**,
26
+ **YWi**). Furthermore, for each star _i_, Dahlia realizes that there must be
27
+ no buildings whose rectangles inclusively cover the point (**XSi**, **YSi**).
28
+
29
+ Dahlia is going to assume that Toronto consists of as few buildings as
30
+ possible which are consistent with her observations on that night. What's the
31
+ expected number of buildings which she'll assume exist? In order to avoid
32
+ floating-point arithmetic and large integers, output this expected number
33
+ multiplied by 2**W** (which is guaranteed to result in an integer) and then
34
+ taken modulo 1,000,000,007.
35
+
36
+ ### Input
37
+
38
+ Input begins with an integer **T**, the number of skylines. For each skyline,
39
+ there is first a line containing the space-separated integers **W** and **S**.
40
+ Then, **W** lines follow, the _i_th of which contains the space-separated
41
+ integers **XWi** and **YWi**. Then, **S** lines follow, the _i_th of which
42
+ contains the space-separated integers **XSi** and **YSi**.
43
+
44
+ ### Output
45
+
46
+ For the _i_th universe, output a line containing "Case #_i_: " the expected
47
+ number of buildings which Dahlia will assume exist, multiplied by 2**W** and
48
+ then taken modulo 1,000,000,007.
49
+
50
+ ### Constraints
51
+
52
+ 1 ≤ **T** ≤ 150
53
+ 1 ≤ **W** ≤ 80
54
+ 1 ≤ **S** ≤ 50
55
+ 1 ≤ **XWi**, **YWi**, **XSi**, **YSi** ≤ 1,000,000,000
56
+
57
+ ### Explanation of Sample
58
+
59
+ In the first case, there's a 50% chance that the single window will be
60
+ visible, in which case Dahlia will assume that Toronto has 1 building. There's
61
+ also a 50% chance that it won't be visible, in which case she'll assume that
62
+ there are 0 buildings. As such, the expected number of buildings which she'll
63
+ assume exist is (1 + 0) / 2 = 1/2. This should then be multiplied by 21 and
64
+ taken modulo 1,000,000,007 to produce a final answer of 1.
65
+
66
+ In the second case, however many windows are visible, Dahlia will assume
67
+ Toronto has that many buildings. For example, if both windows are visible,
68
+ then there must be at least 2 buildings, as a single building can't account
69
+ for both windows without also covering the single visible star. This results
70
+ in a final answer of ((0 + 1 + 1 + 2) / 4 * 22) modulo 1,000,000,007 = 4.
71
+
72
+ In the third case, the final answer is ((0 + 1 + 1 + 1 + 1 + 1 + 2 + 2) / 8 *
73
+ 23) modulo 1,000,000,007 = 9.
74
+
2018/finals/citylights.out ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: 1
2
+ Case #2: 4
3
+ Case #3: 9
4
+ Case #4: 684
5
+ Case #5: 6602752
6
+ Case #6: 1183
7
+ Case #7: 395395372
8
+ Case #8: 476192687
9
+ Case #9: 307412416
10
+ Case #10: 208183264
11
+ Case #11: 179460552
12
+ Case #12: 123720748
13
+ Case #13: 2176
14
+ Case #14: 251187805
15
+ Case #15: 1
16
+ Case #16: 24814920
17
+ Case #17: 12
18
+ Case #18: 950052158
19
+ Case #19: 476192687
20
+ Case #20: 37251179
21
+ Case #21: 524338575
22
+ Case #22: 84436692
23
+ Case #23: 522842261
24
+ Case #24: 960
25
+ Case #25: 149016192
26
+ Case #26: 401766512
27
+ Case #27: 740220421
28
+ Case #28: 806643165
29
+ Case #29: 410108367
30
+ Case #30: 476192687
31
+ Case #31: 346263277
32
+ Case #32: 511828703
33
+ Case #33: 352768
34
+ Case #34: 754620958
35
+ Case #35: 24189841
36
+ Case #36: 150357497
37
+ Case #37: 27957735
38
+ Case #38: 138609019
39
+ Case #39: 938380288
40
+ Case #40: 591
41
+ Case #41: 476192687
42
+ Case #42: 10327963
43
+ Case #43: 1585152
44
+ Case #44: 942892176
45
+ Case #45: 733184
46
+ Case #46: 963717906
47
+ Case #47: 999149394
48
+ Case #48: 336
49
+ Case #49: 648770070
50
+ Case #50: 41107
51
+ Case #51: 358323
52
+ Case #52: 476192687
53
+ Case #53: 920603109
54
+ Case #54: 583365539
55
+ Case #55: 923455993
56
+ Case #56: 32
57
+ Case #57: 570359644
58
+ Case #58: 576939345
59
+ Case #59: 185078453
60
+ Case #60: 87826432
61
+ Case #61: 220714433
62
+ Case #62: 779380393
63
+ Case #63: 476192687
64
+ Case #64: 454912501
65
+ Case #65: 36175872
66
+ Case #66: 61920862
67
+ Case #67: 739035260
68
+ Case #68: 241408
69
+ Case #69: 72
70
+ Case #70: 181137826
71
+ Case #71: 12
72
+ Case #72: 790528
73
+ Case #73: 568
74
+ Case #74: 476192687
75
+ Case #75: 209894768
76
+ Case #76: 409600
77
+ Case #77: 9660075
78
+ Case #78: 729659780
79
+ Case #79: 987366468
80
+ Case #80: 783255800
81
+ Case #81: 150336261
82
+ Case #82: 217745735
83
+ Case #83: 14493184
84
+ Case #84: 552983984
85
+ Case #85: 476192687
86
+ Case #86: 357205618
87
+ Case #87: 650
88
+ Case #88: 951990308
89
+ Case #89: 51203491
90
+ Case #90: 12525492
91
+ Case #91: 203097080
92
+ Case #92: 668435283
93
+ Case #93: 285106003
94
+ Case #94: 725943043
95
+ Case #95: 311477996
96
+ Case #96: 476192687
97
+ Case #97: 808401215
98
+ Case #98: 740898081
99
+ Case #99: 723241603
100
+ Case #100: 138936320
101
+ Case #101: 9472
102
+ Case #102: 80
103
+ Case #103: 973081087
104
+ Case #104: 3981312
105
+ Case #105: 8196096
106
+ Case #106: 232
107
+ Case #107: 476192687
108
+ Case #108: 451694354
109
+ Case #109: 665349106
110
+ Case #110: 939116400
111
+ Case #111: 779208225
112
+ Case #112: 665406988
113
+ Case #113: 3
114
+ Case #114: 7487488
115
+ Case #115: 2048
116
+ Case #116: 32
117
+ Case #117: 386899298
118
+ Case #118: 476192687
119
+ Case #119: 426894991
120
+ Case #120: 1616
121
+ Case #121: 334418389
122
+ Case #122: 882072248
123
+ Case #123: 535159372
124
+ Case #124: 1488
125
+ Case #125: 878057472
126
+ Case #126: 1555456
127
+ Case #127: 487568093
128
+ Case #128: 235337205
129
+ Case #129: 476192687
130
+ Case #130: 711001842
131
+ Case #131: 895412998
132
+ Case #132: 995550330
133
+ Case #133: 442754895
134
+ Case #134: 1
135
+ Case #135: 3968
136
+ Case #136: 192308626
137
+ Case #137: 379881151
138
+ Case #138: 569768760
139
+ Case #139: 736443811
140
+ Case #140: 476192687
141
+ Case #141: 963356576
142
+ Case #142: 874170611
143
+ Case #143: 761856
144
+ Case #144: 966256023
145
+ Case #145: 14439824
146
+ Case #146: 518979345
147
+ Case #147: 574630397
148
+ Case #148: 433417305
149
+ Case #149: 902458354
150
+ Case #150: 727041482
2018/finals/claw.cpp ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // The Claw
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ #define LIM 2100000
89
+
90
+ PR P[LIM],R[LIM],S[LIM];
91
+ vector<int> YP[LIM];
92
+ vector<PR> YR[LIM];
93
+ int sz;
94
+ int tree[LIM],lazy[LIM];
95
+
96
+ void Prop(int i)
97
+ {
98
+ tree[i]+=lazy[i];
99
+ if (i<sz)
100
+ {
101
+ lazy[i<<1]+=lazy[i];
102
+ lazy[(i<<1)+1]+=lazy[i];
103
+ }
104
+ lazy[i]=0;
105
+ }
106
+
107
+ void Update(int i,int r1,int r2,int a,int b,int v)
108
+ {
109
+ Prop(i);
110
+ if ((a<=r1) && (r2<=b))
111
+ {
112
+ lazy[i]+=v;
113
+ Prop(i);
114
+ return;
115
+ }
116
+ int c=i<<1,m=(r1+r2)>>1;
117
+ if (a<=m)
118
+ Update(c,r1,m,a,b,v);
119
+ if (b>m)
120
+ Update(c+1,m+1,r2,a,b,v);
121
+ Prop(c),Prop(c+1);
122
+ tree[i]=max(tree[c],tree[c+1]);
123
+ }
124
+
125
+ int main()
126
+ {
127
+ if (DEBUG)
128
+ freopen("in.txt","r",stdin);
129
+ // vars
130
+ int T,t;
131
+ int N,M,K;
132
+ int i,j,k,s,y,a,b,p,d;
133
+ LL ans;
134
+ // testcase loop
135
+ Read(T);
136
+ Fox1(t,T)
137
+ {
138
+ // init
139
+ Fox(i,LIM)
140
+ YP[i].clear(),YR[i].clear();
141
+ // input
142
+ Read(N),Read(M);
143
+ ans=M;
144
+ Fox(i,N)
145
+ {
146
+ Read(P[i].x),Read(P[i].y);
147
+ ans-=P[i].y;
148
+ YP[P[i].y].pb(P[i].x);
149
+ if (i)
150
+ R[i-1]=mp(max(P[i-1].x,P[i].x),min(P[i-1].x,P[i].x));
151
+ }
152
+ // associate intervals with their max contained heights
153
+ sort(P,P+N);
154
+ sort(R,R+N-1);
155
+ j=s=0;
156
+ Fox(i,N-1)
157
+ {
158
+ a=R[i].y,b=R[i].x;
159
+ // maintain convex hull of max heights so far
160
+ while ((j<N) && (P[j].x<=b))
161
+ {
162
+ while ((s) && (S[s-1].y<=P[j].y))
163
+ s--;
164
+ S[s++]=P[j++];
165
+ }
166
+ // binary search for max height no earlier than the start of this interval
167
+ k=lower_bound(S,S+s,mp(a,0))-S;
168
+ ans+=(y=S[k].y)+1;
169
+ YR[y].pb(R[i]);
170
+ }
171
+ // process set of targets at each height
172
+ Fox(i,LIM)
173
+ if (K=Sz(YP[i]))
174
+ {
175
+ // sort targets/intervals at this height
176
+ sort(All(YP[i]));
177
+ sort(All(YR[i]));
178
+ // segment-tree-assisted DP
179
+ for(sz=1;sz<K+1;sz<<=1);
180
+ memset(tree,0,sizeof(int)*sz*2);
181
+ memset(lazy,0,sizeof(int)*sz*2);
182
+ k=0,d=-1;
183
+ Fox(j,K+1)
184
+ {
185
+ // update prior DP values for intervals ending at this target
186
+ p=j==K ? INF : YP[i][j];
187
+ while ((k<Sz(YR[i])) && (YR[i][k].x<p))
188
+ {
189
+ a=lower_bound(All(YP[i]),YR[i][k++].y)-YP[i].begin();
190
+ Update(1,0,sz-1,0,a,1);
191
+ }
192
+ // compute DP value
193
+ d=max(d+1,tree[1]);
194
+ Update(1,0,sz-1,j,j,d);
195
+ }
196
+ ans-=d;
197
+ }
198
+ // output
199
+ printf("Case #%d: %lld\n",t,ans*2);
200
+ }
201
+ return(0);
202
+ }
2018/finals/claw.html ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ Oh boy, Sid's family has taken him to Pizza Planet today! Pizza Planet is a fun family restaurant with lots of arcade games, but the highlight for Sid is Space Crane,
3
+ a crane game with cool toy prizes. He'd love to win some to add to his collection!
4
+ </p>
5
+
6
+ <p>
7
+ Looking at Space Crane from the front, it can be represented as a 2D plane.
8
+ At the top, there's a horizontal crane track, a line segment running from (0, <strong>M</strong>) to (1,000,000, <strong>M</strong>).
9
+ There's a claw attached to this track by an extendible wire. The claw is initially located at coordinates (0, <strong>M</strong>) and may be moved anywhere within the inclusive range of
10
+ x-coordinates [0, 1,000,000] and the inclusive range of y-coordinates [0, <strong>M</strong>].
11
+ At all points in time, the connecting wire runs vertically upwards from the claw's position to the track.
12
+ That is, when the claw is at some point (<strong>x</strong>, <strong>y</strong>), the wire forms a line segment from
13
+ (<strong>x</strong>, <strong>y</strong>) to (<strong>x</strong>, <strong>M</strong>).
14
+ </p>
15
+
16
+ <p>
17
+ Space Crane works differently than most crane games &mdash; rather than using the claw to directly pick up prizes, the player's objective is to navigate the claw to a series of targets.
18
+ There are <strong>N</strong> targets, all with distinct x-coordinates, with the <em>i</em>th target at coordinates (<strong>X<sub>i</sub></strong>, <strong>Y<sub>i</sub></strong>).
19
+ If Sid manages to move the claw to touch the <strong>N</strong> targets in order from 1 to <strong>N</strong>, and then return the claw to its original position at (0, <strong>M</strong>),
20
+ he'll win a prize! Targets are not collected along the way (they're only touched by the claw), meaning that all <strong>N</strong> targets will remain in place for the duration of the game.
21
+ </p>
22
+
23
+ <p>
24
+ The claw may never be anywhere directly underneath a target (at the same x-coordinate but with a strictly smaller y-coordinate), as it would interfere with the crane's wire.
25
+ However, the claw may occupy exactly the same position as a target, including passing directly through targets which Sid is not currently trying to touch.
26
+ </p>
27
+
28
+ <p>
29
+ Before the game starts, Sid is given an opportunity to adjust each of the <strong>N</strong> targets.
30
+ There are two possible choices for each target: it may either be left in its original position, or its y-coordinate may be increased by exactly 1 unit.
31
+ These adjustments may only be performed in advance, and the targets must then all remain in their chosen positions for the duration of the game.
32
+ </p>
33
+
34
+ <p>
35
+ Completing the game normally isn't much of a challenge for Sid, but he's heard a rumour that Space Crane awards double prizes if completed as efficiently as possible! The game measures efficiency based on how much the claw's wire expands and contracts. As such, Sid would like to adjust the targets and then move the claw around such that the total amount of vertical movement (changes in y-coordinate) performed by the claw is minimized. Note that the claw's horizontal movement (changes in x-coordinate) is ignored. Help Sid determine the minimum total amount of vertical claw movement which might be required!
36
+ </p>
37
+
38
+
39
+ <h3>Input</h3>
40
+
41
+ <p>
42
+ Input begins with an integer <strong>T</strong>, the number of times Sid plays Space Crane.
43
+ For each game, there is first a line containing the space-separated integers <strong>N</strong> and <strong>M</strong>.
44
+ Then <strong>N</strong> lines follow, the <em>i</em>th of which contains the space-separated integers <strong>X<sub>i</sub></strong> and <strong>Y<sub>i</sub></strong>.
45
+ </p>
46
+
47
+
48
+ <h3>Output</h3>
49
+
50
+ <p>
51
+ For the <em>i</em>th game, output a line containing "Case #<em>i</em>: " followed by the the minimum total amount of vertical claw movement, in units.
52
+ </p>
53
+
54
+
55
+ <h3>Constraints</h3>
56
+
57
+ <p>
58
+ 1 &le; <strong>T</strong> &le; 100 <br />
59
+ 1 &le; <strong>N</strong> &le; 1,000,000 <br />
60
+ 3 &le; <strong>M</strong> &le; 1,000,000 <br />
61
+ 0 &le; <strong>X<sub>i</sub></strong> &le; 1,000,000 <br />
62
+ 1 &le; <strong>Y<sub>i</sub></strong> &le; <strong>M</strong> - 2 <br />
63
+ </p>
64
+
65
+
66
+ <h3>Explanation of Sample</h3>
67
+
68
+ <p>
69
+ In the first case, the single target's height should be increased from 1 to 2. Then, aside from moving right and left by 1,000,000 units, the crane will need to move downwards by 8 units to reach the target and upwards by 8 units to return to its original position, for a total of 16 units of vertical movement.
70
+ </p>
71
+
72
+ <p>
73
+ In the second case, if the targets are all left at their original heights, 10 units of vertical movement will be required. If their heights are all increased by 1, 8 units will be required. However, if just the first two targets are raised, then only 6 units will be required, which is the minimum achievable amount.
74
+ </p>
2018/finals/claw.in ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac5b14d1a848b20f48f7ab7a0779d108032bb5304399097d932fd447e44bc69f
3
+ size 42254566
2018/finals/claw.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Oh boy, Sid's family has taken him to Pizza Planet today! Pizza Planet is a
2
+ fun family restaurant with lots of arcade games, but the highlight for Sid is
3
+ Space Crane, a crane game with cool toy prizes. He'd love to win some to add
4
+ to his collection!
5
+
6
+ Looking at Space Crane from the front, it can be represented as a 2D plane. At
7
+ the top, there's a horizontal crane track, a line segment running from (0,
8
+ **M**) to (1,000,000, **M**). There's a claw attached to this track by an
9
+ extendible wire. The claw is initially located at coordinates (0, **M**) and
10
+ may be moved anywhere within the inclusive range of x-coordinates [0,
11
+ 1,000,000] and the inclusive range of y-coordinates [0, **M**]. At all points
12
+ in time, the connecting wire runs vertically upwards from the claw's position
13
+ to the track. That is, when the claw is at some point (**x**, **y**), the wire
14
+ forms a line segment from (**x**, **y**) to (**x**, **M**).
15
+
16
+ Space Crane works differently than most crane games — rather than using the
17
+ claw to directly pick up prizes, the player's objective is to navigate the
18
+ claw to a series of targets. There are **N** targets, all with distinct
19
+ x-coordinates, with the _i_th target at coordinates (**Xi**, **Yi**). If Sid
20
+ manages to move the claw to touch the **N** targets in order from 1 to **N**,
21
+ and then return the claw to its original position at (0, **M**), he'll win a
22
+ prize! Targets are not collected along the way (they're only touched by the
23
+ claw), meaning that all **N** targets will remain in place for the duration of
24
+ the game.
25
+
26
+ The claw may never be anywhere directly underneath a target (at the same
27
+ x-coordinate but with a strictly smaller y-coordinate), as it would interfere
28
+ with the crane's wire. However, the claw may occupy exactly the same position
29
+ as a target, including passing directly through targets which Sid is not
30
+ currently trying to touch.
31
+
32
+ Before the game starts, Sid is given an opportunity to adjust each of the
33
+ **N** targets. There are two possible choices for each target: it may either
34
+ be left in its original position, or its y-coordinate may be increased by
35
+ exactly 1 unit. These adjustments may only be performed in advance, and the
36
+ targets must then all remain in their chosen positions for the duration of the
37
+ game.
38
+
39
+ Completing the game normally isn't much of a challenge for Sid, but he's heard
40
+ a rumour that Space Crane awards double prizes if completed as efficiently as
41
+ possible! The game measures efficiency based on how much the claw's wire
42
+ expands and contracts. As such, Sid would like to adjust the targets and then
43
+ move the claw around such that the total amount of vertical movement (changes
44
+ in y-coordinate) performed by the claw is minimized. Note that the claw's
45
+ horizontal movement (changes in x-coordinate) is ignored. Help Sid determine
46
+ the minimum total amount of vertical claw movement which might be required!
47
+
48
+ ### Input
49
+
50
+ Input begins with an integer **T**, the number of times Sid plays Space Crane.
51
+ For each game, there is first a line containing the space-separated integers
52
+ **N** and **M**. Then **N** lines follow, the _i_th of which contains the
53
+ space-separated integers **Xi** and **Yi**.
54
+
55
+ ### Output
56
+
57
+ For the _i_th game, output a line containing "Case #_i_: " followed by the the
58
+ minimum total amount of vertical claw movement, in units.
59
+
60
+ ### Constraints
61
+
62
+ 1 ≤ **T** ≤ 100
63
+ 1 ≤ **N** ≤ 1,000,000
64
+ 3 ≤ **M** ≤ 1,000,000
65
+ 0 ≤ **Xi** ≤ 1,000,000
66
+ 1 ≤ **Yi** ≤ **M** \- 2
67
+
68
+ ### Explanation of Sample
69
+
70
+ In the first case, the single target's height should be increased from 1 to 2.
71
+ Then, aside from moving right and left by 1,000,000 units, the crane will need
72
+ to move downwards by 8 units to reach the target and upwards by 8 units to
73
+ return to its original position, for a total of 16 units of vertical movement.
74
+
75
+ In the second case, if the targets are all left at their original heights, 10
76
+ units of vertical movement will be required. If their heights are all
77
+ increased by 1, 8 units will be required. However, if just the first two
78
+ targets are raised, then only 6 units will be required, which is the minimum
79
+ achievable amount.
80
+
2018/finals/claw.out ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: 16
2
+ Case #2: 6
3
+ Case #3: 14
4
+ Case #4: 260
5
+ Case #5: 568
6
+ Case #6: 1961626
7
+ Case #7: 3358
8
+ Case #8: 56024
9
+ Case #9: 10
10
+ Case #10: 178
11
+ Case #11: 27323538
12
+ Case #12: 8
13
+ Case #13: 389736310
14
+ Case #14: 591888518830
15
+ Case #15: 60904108418
16
+ Case #16: 220823790
17
+ Case #17: 564095206
18
+ Case #18: 37755430
19
+ Case #19: 359556674
20
+ Case #20: 185529394
21
+ Case #21: 38921840
22
+ Case #22: 685817766
23
+ Case #23: 363038914
24
+ Case #24: 352961076
25
+ Case #25: 225139120
26
+ Case #26: 117585226
27
+ Case #27: 7278150
28
+ Case #28: 104035988
29
+ Case #29: 67748422
30
+ Case #30: 844110702
31
+ Case #31: 3523240
32
+ Case #32: 343124806
33
+ Case #33: 519026666
34
+ Case #34: 320791480
35
+ Case #35: 747964022
36
+ Case #36: 466336844
37
+ Case #37: 289981034
38
+ Case #38: 15480402
39
+ Case #39: 502793796
40
+ Case #40: 1166910
41
+ Case #41: 55345112
42
+ Case #42: 110388890
43
+ Case #43: 338556834
44
+ Case #44: 435648088
45
+ Case #45: 122741824
46
+ Case #46: 297415336
47
+ Case #47: 802859232
48
+ Case #48: 28714256
49
+ Case #49: 48366920
50
+ Case #50: 107031646
51
+ Case #51: 9686820
52
+ Case #52: 237967738
53
+ Case #53: 9088030
54
+ Case #54: 372367388
55
+ Case #55: 574725682
56
+ Case #56: 76237660
57
+ Case #57: 112384476
58
+ Case #58: 58139852
59
+ Case #59: 8805864
60
+ Case #60: 171273912
61
+ Case #61: 18464040
62
+ Case #62: 320947738
63
+ Case #63: 243050858
64
+ Case #64: 501792574
65
+ Case #65: 329135850
66
+ Case #66: 216258438
67
+ Case #67: 688019958
68
+ Case #68: 239053688
69
+ Case #69: 212823646
70
+ Case #70: 117076682
71
+ Case #71: 241045050
72
+ Case #72: 90322022
73
+ Case #73: 35474604
74
+ Case #74: 528050404
75
+ Case #75: 276667476
76
+ Case #76: 466168544
77
+ Case #77: 47753808
78
+ Case #78: 10379782
79
+ Case #79: 355000736
80
+ Case #80: 288329662
81
+ Case #81: 49497314
82
+ Case #82: 121461146
83
+ Case #83: 190014096
84
+ Case #84: 33004856
85
+ Case #85: 352105234
86
+ Case #86: 43100142
87
+ Case #87: 154193324
88
+ Case #88: 430526288
89
+ Case #89: 18058864
90
+ Case #90: 309148716
91
+ Case #91: 10742020
92
+ Case #92: 17545340
93
+ Case #93: 34545122
94
+ Case #94: 76756074
95
+ Case #95: 198464136
96
+ Case #96: 157858174
97
+ Case #97: 182626224
98
+ Case #98: 585908516
99
+ Case #99: 457182524
100
+ Case #100: 7596382
2018/finals/contest.cpp ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Contest Environment
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ #define LIM 2002
89
+
90
+ int main()
91
+ {
92
+ if (DEBUG)
93
+ freopen("in.txt","r",stdin);
94
+ // vars
95
+ int T,t;
96
+ int N;
97
+ int i,b,c;
98
+ bool ans;
99
+ char A[LIM],B[LIM];
100
+ // testcase loop
101
+ Read(T);
102
+ Fox1(t,T)
103
+ {
104
+ printf("Case #%d: ",t);
105
+ // input
106
+ scanf("%s%s",&A,&B);
107
+ N=strlen(A);
108
+ // bottom blocked?
109
+ Fox(i,N)
110
+ if (B[i]=='#')
111
+ goto Imp;
112
+ // count blanks
113
+ b=0;
114
+ Fox(i,N)
115
+ b+=(A[i]=='.')+(B[i]=='.');
116
+ // find sequences of blocked top-row cells
117
+ c=0;
118
+ Fox(i,N)
119
+ if (A[i]=='#')
120
+ c++;
121
+ else
122
+ {
123
+ if (b<c+3)
124
+ goto Imp;
125
+ c=0;
126
+ }
127
+ // output
128
+ printf("Possible\n");
129
+ continue;
130
+ Imp:;
131
+ printf("Impossible\n");
132
+ }
133
+ return(0);
134
+ }
2018/finals/contest.html ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ The 2018 Hacker Cup finals are underway! The contest is being held in a room with 2 rows of <strong>N</strong> desks each, with finalists sitting at some of them.
3
+ </p>
4
+
5
+ <p>
6
+ One of the finalists, Alex, is sitting at the leftmost desk in the front row. Another finalist, Borys, is sitting at the rightmost desk in the front row.
7
+ Unfortunately, both of them find themselves distracted by the contest room's environment &mdash; Alex is a bit too hot on his side of the room, while Borys is a bit too cold.
8
+ If only they could switch places! Unfortunately, this would be against the rules, but if they work together with some other contestants, perhaps they can manage it without the
9
+ contest organizers noticing...
10
+ </p>
11
+
12
+ <p>
13
+ The initial state of each row of desks can be represented by a string of <strong>N</strong> characters, with the <em>i</em>th character corresponding to the <em>i</em>th desk from
14
+ the left in that row. Each character is one of the following:
15
+ </p>
16
+
17
+ <ul>
18
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <code>A</code> - Alex's desk (guaranteed to appear exactly once, as the leftmost desk in the front row) </li>
19
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <code>B</code> - Borys's desk (guaranteed to appear exactly once, as the rightmost desk in the front row) </li>
20
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <code>*</code> - A cooperative finalist's desk </li>
21
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <code>#</code> - An uncooperative finalist's desk </li>
22
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <code>.</code> - An unoccupied desk </li>
23
+ </ul>
24
+
25
+ <p>
26
+ At any point, a single finalist may move from their current desk to an adjacent, currently-unoccupied desk.
27
+ Two desks are considered adjacent if either they're in the same column, or they're directly side-by-side in the same row.
28
+ However, the finalists won't be foolish enough to move sideways between two desks in the front row, as that would surely attract the contest organizers' attention.
29
+ </p>
30
+
31
+ <p>
32
+ Alex, Borys, and any cooperative finalists may all move between desks in this fashion.
33
+ On the other hand, uncooperative finalists are too busy actually competing, and will never move from their original desks.
34
+ </p>
35
+
36
+ <p>
37
+ Assuming that Alex, Borys, and the cooperative finalists all work together, is it possible for Alex and Borys to switch seats (in other words, for Alex to occupy the front row's rightmost desk while Borys simultaneously occupies its leftmost desk) without the contest organizers noticing?
38
+ </p>
39
+
40
+
41
+ <h3>Input</h3>
42
+
43
+ <p>
44
+ Input begins with an integer <strong>T</strong>, the number of parallel universes in which the 2018 Hacker Cup is occurring.
45
+ For each universe, there are two lines of <strong>N</strong> characters each, as described above. The first line is the front row of desks, and the second line is the back row of desks.
46
+ </p>
47
+
48
+
49
+ <h3>Output</h3>
50
+
51
+ <p>
52
+ For the <em>i</em>th universe, output a line containing "Case #<em>i</em>: " followed by the string "Possible" if Alex and Borys can successfully switch seats,
53
+ or "Impossible" otherwise.
54
+ </p>
55
+
56
+
57
+ <h3>Constraints</h3>
58
+
59
+ <p>
60
+ 1 &le; <strong>T</strong> &le; 200 <br />
61
+ 2 &le; <strong>N</strong> &le; 2,000 <br />
62
+ </p>
63
+
64
+
65
+ <h3>Explanation of Sample</h3>
66
+
67
+ <p>
68
+ In the first case, the contest room looks as follows (with grey lines indicating adjacent desks which finalists may potentially move between).
69
+ The blue circle denotes a cooperative finalist, and the gray square denotes an uncooperative finalist. A and B denote Alex and Borys respectively.
70
+ </p>
71
+
72
+ <p>
73
+ One possible sequence of moves resulting in Alex and Borys switching places is as follows (with some moves omitted):
74
+ </p>
75
+
76
+ <p>
77
+ In the second case, Alex and Borys are unable to get past one another and switch seats.
78
+ </p>
2018/finals/contest.in ADDED
The diff for this file is too large to render. See raw diff
 
2018/finals/contest.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The 2018 Hacker Cup finals are underway! The contest is being held in a room
2
+ with 2 rows of **N** desks each, with finalists sitting at some of them.
3
+
4
+ One of the finalists, Alex, is sitting at the leftmost desk in the front row.
5
+ Another finalist, Borys, is sitting at the rightmost desk in the front row.
6
+ Unfortunately, both of them find themselves distracted by the contest room's
7
+ environment — Alex is a bit too hot on his side of the room, while Borys is a
8
+ bit too cold. If only they could switch places! Unfortunately, this would be
9
+ against the rules, but if they work together with some other contestants,
10
+ perhaps they can manage it without the contest organizers noticing...
11
+
12
+ The initial state of each row of desks can be represented by a string of **N**
13
+ characters, with the _i_th character corresponding to the _i_th desk from the
14
+ left in that row. Each character is one of the following:
15
+
16
+ * `A` \- Alex's desk (guaranteed to appear exactly once, as the leftmost desk in the front row)
17
+ * `B` \- Borys's desk (guaranteed to appear exactly once, as the rightmost desk in the front row)
18
+ * `*` \- A cooperative finalist's desk
19
+ * `#` \- An uncooperative finalist's desk
20
+ * `.` \- An unoccupied desk
21
+
22
+ At any point, a single finalist may move from their current desk to an
23
+ adjacent, currently-unoccupied desk. Two desks are considered adjacent if
24
+ either they're in the same column, or they're directly side-by-side in the
25
+ same row. However, the finalists won't be foolish enough to move sideways
26
+ between two desks in the front row, as that would surely attract the contest
27
+ organizers' attention.
28
+
29
+ Alex, Borys, and any cooperative finalists may all move between desks in this
30
+ fashion. On the other hand, uncooperative finalists are too busy actually
31
+ competing, and will never move from their original desks.
32
+
33
+ Assuming that Alex, Borys, and the cooperative finalists all work together, is
34
+ it possible for Alex and Borys to switch seats (in other words, for Alex to
35
+ occupy the front row's rightmost desk while Borys simultaneously occupies its
36
+ leftmost desk) without the contest organizers noticing?
37
+
38
+ ### Input
39
+
40
+ Input begins with an integer **T**, the number of parallel universes in which
41
+ the 2018 Hacker Cup is occurring. For each universe, there are two lines of
42
+ **N** characters each, as described above. The first line is the front row of
43
+ desks, and the second line is the back row of desks.
44
+
45
+ ### Output
46
+
47
+ For the _i_th universe, output a line containing "Case #_i_: " followed by the
48
+ string "Possible" if Alex and Borys can successfully switch seats, or
49
+ "Impossible" otherwise.
50
+
51
+ ### Constraints
52
+
53
+ 1 ≤ **T** ≤ 200
54
+ 2 ≤ **N** ≤ 2,000
55
+
56
+ ### Explanation of Sample
57
+
58
+ In the first case, the contest room looks as follows (with grey lines
59
+ indicating adjacent desks which finalists may potentially move between). The
60
+ blue circle denotes a cooperative finalist, and the gray square denotes an
61
+ uncooperative finalist. A and B denote Alex and Borys respectively.
62
+
63
+ One possible sequence of moves resulting in Alex and Borys switching places is
64
+ as follows (with some moves omitted):
65
+
66
+ In the second case, Alex and Borys are unable to get past one another and
67
+ switch seats.
68
+
2018/finals/contest.out ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: Possible
2
+ Case #2: Impossible
3
+ Case #3: Possible
4
+ Case #4: Impossible
5
+ Case #5: Possible
6
+ Case #6: Impossible
7
+ Case #7: Possible
8
+ Case #8: Impossible
9
+ Case #9: Possible
10
+ Case #10: Impossible
11
+ Case #11: Impossible
12
+ Case #12: Possible
13
+ Case #13: Impossible
14
+ Case #14: Possible
15
+ Case #15: Impossible
16
+ Case #16: Possible
17
+ Case #17: Impossible
18
+ Case #18: Possible
19
+ Case #19: Possible
20
+ Case #20: Possible
21
+ Case #21: Impossible
22
+ Case #22: Impossible
23
+ Case #23: Possible
24
+ Case #24: Possible
25
+ Case #25: Impossible
26
+ Case #26: Possible
27
+ Case #27: Possible
28
+ Case #28: Possible
29
+ Case #29: Impossible
30
+ Case #30: Possible
31
+ Case #31: Impossible
32
+ Case #32: Possible
33
+ Case #33: Impossible
34
+ Case #34: Possible
35
+ Case #35: Possible
36
+ Case #36: Possible
37
+ Case #37: Possible
38
+ Case #38: Possible
39
+ Case #39: Impossible
40
+ Case #40: Possible
41
+ Case #41: Impossible
42
+ Case #42: Impossible
43
+ Case #43: Impossible
44
+ Case #44: Possible
45
+ Case #45: Impossible
46
+ Case #46: Possible
47
+ Case #47: Possible
48
+ Case #48: Possible
49
+ Case #49: Impossible
50
+ Case #50: Possible
51
+ Case #51: Impossible
52
+ Case #52: Possible
53
+ Case #53: Impossible
54
+ Case #54: Possible
55
+ Case #55: Impossible
56
+ Case #56: Possible
57
+ Case #57: Impossible
58
+ Case #58: Possible
59
+ Case #59: Possible
60
+ Case #60: Possible
61
+ Case #61: Impossible
62
+ Case #62: Possible
63
+ Case #63: Possible
64
+ Case #64: Possible
65
+ Case #65: Impossible
66
+ Case #66: Possible
67
+ Case #67: Impossible
68
+ Case #68: Possible
69
+ Case #69: Impossible
70
+ Case #70: Possible
71
+ Case #71: Possible
72
+ Case #72: Possible
73
+ Case #73: Possible
74
+ Case #74: Impossible
75
+ Case #75: Impossible
76
+ Case #76: Impossible
77
+ Case #77: Possible
78
+ Case #78: Impossible
79
+ Case #79: Possible
80
+ Case #80: Possible
81
+ Case #81: Impossible
82
+ Case #82: Possible
83
+ Case #83: Impossible
84
+ Case #84: Impossible
85
+ Case #85: Possible
86
+ Case #86: Possible
87
+ Case #87: Possible
88
+ Case #88: Impossible
89
+ Case #89: Possible
90
+ Case #90: Impossible
91
+ Case #91: Possible
92
+ Case #92: Possible
93
+ Case #93: Impossible
94
+ Case #94: Possible
95
+ Case #95: Impossible
96
+ Case #96: Possible
97
+ Case #97: Possible
98
+ Case #98: Possible
99
+ Case #99: Possible
100
+ Case #100: Possible
101
+ Case #101: Possible
102
+ Case #102: Possible
103
+ Case #103: Possible
104
+ Case #104: Possible
105
+ Case #105: Possible
106
+ Case #106: Possible
107
+ Case #107: Impossible
108
+ Case #108: Impossible
109
+ Case #109: Impossible
110
+ Case #110: Possible
111
+ Case #111: Possible
112
+ Case #112: Possible
113
+ Case #113: Possible
114
+ Case #114: Possible
115
+ Case #115: Impossible
116
+ Case #116: Possible
117
+ Case #117: Impossible
118
+ Case #118: Possible
119
+ Case #119: Impossible
120
+ Case #120: Impossible
121
+ Case #121: Impossible
122
+ Case #122: Possible
123
+ Case #123: Impossible
124
+ Case #124: Possible
125
+ Case #125: Impossible
126
+ Case #126: Possible
127
+ Case #127: Possible
128
+ Case #128: Impossible
129
+ Case #129: Possible
130
+ Case #130: Impossible
131
+ Case #131: Impossible
132
+ Case #132: Possible
133
+ Case #133: Impossible
134
+ Case #134: Impossible
135
+ Case #135: Possible
136
+ Case #136: Possible
137
+ Case #137: Possible
138
+ Case #138: Possible
139
+ Case #139: Impossible
140
+ Case #140: Possible
141
+ Case #141: Possible
142
+ Case #142: Possible
143
+ Case #143: Impossible
144
+ Case #144: Possible
145
+ Case #145: Possible
146
+ Case #146: Possible
147
+ Case #147: Possible
148
+ Case #148: Impossible
149
+ Case #149: Impossible
150
+ Case #150: Impossible
151
+ Case #151: Impossible
152
+ Case #152: Impossible
153
+ Case #153: Impossible
154
+ Case #154: Possible
155
+ Case #155: Possible
156
+ Case #156: Possible
157
+ Case #157: Impossible
158
+ Case #158: Possible
159
+ Case #159: Possible
160
+ Case #160: Impossible
161
+ Case #161: Impossible
162
+ Case #162: Impossible
163
+ Case #163: Impossible
164
+ Case #164: Impossible
165
+ Case #165: Possible
166
+ Case #166: Impossible
167
+ Case #167: Impossible
168
+ Case #168: Possible
169
+ Case #169: Impossible
170
+ Case #170: Possible
171
+ Case #171: Possible
172
+ Case #172: Possible
173
+ Case #173: Possible
174
+ Case #174: Possible
175
+ Case #175: Impossible
176
+ Case #176: Impossible
177
+ Case #177: Impossible
178
+ Case #178: Possible
179
+ Case #179: Possible
180
+ Case #180: Possible
181
+ Case #181: Impossible
182
+ Case #182: Impossible
183
+ Case #183: Possible
184
+ Case #184: Possible
185
+ Case #185: Possible
186
+ Case #186: Possible
187
+ Case #187: Impossible
188
+ Case #188: Possible
189
+ Case #189: Impossible
190
+ Case #190: Possible
191
+ Case #191: Possible
192
+ Case #192: Impossible
193
+ Case #193: Possible
194
+ Case #194: Possible
195
+ Case #195: Impossible
196
+ Case #196: Possible
197
+ Case #197: Impossible
198
+ Case #198: Impossible
199
+ Case #199: Possible
200
+ Case #200: Possible
2018/finals/ethan.cpp ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Ethan Sums Shortest Distances
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ #define LIM 51
89
+
90
+ int R[2][LIM],sum[2][LIM];
91
+ LL dyn[LIM][3][LIM];
92
+ // dyn[i][r][p] = min. cost such that:
93
+ // - you're ending at a vertical edge in column i (its cost is exluded)
94
+ // - you previously had a partial horizontal section in row r (r=2 indicates both rows)
95
+ // - the partial horizontal section started in column p
96
+
97
+ int main()
98
+ {
99
+ if (DEBUG)
100
+ freopen("in.txt","r",stdin);
101
+ // vars
102
+ int T,t;
103
+ int N;
104
+ LL S;
105
+ int i,i2,j,k,r,r2,p,p2,s;
106
+ LL ans,cur,cur2;
107
+ // testcase loop
108
+ Read(T);
109
+ Fox1(t,T)
110
+ {
111
+ // input, and compute each row's prefix sums
112
+ Read(N);
113
+ Fox(i,2)
114
+ Fox(j,N)
115
+ {
116
+ Read(R[i][j]);
117
+ sum[i][j+1]=sum[i][j]+R[i][j];
118
+ }
119
+ S=sum[0][N]+sum[1][N];
120
+ // initial DP step (before first vertical edge)
121
+ Fill(dyn,60);
122
+ Fox(i,N)
123
+ {
124
+ cur=0;
125
+ // compute horizontal section costs for both rows' prefixes
126
+ Fox(j,2)
127
+ {
128
+ s=0;
129
+ Fox(k,i)
130
+ {
131
+ s+=R[j][k];
132
+ cur+=s*(S-s);
133
+ }
134
+ }
135
+ dyn[i][2][0]=cur;
136
+ }
137
+ // main DP
138
+ Fox(i,N)
139
+ FoxI(i2,i+1,N-1)
140
+ Fox(r2,2)
141
+ FoxI(p2,i+1,i2)
142
+ {
143
+ cur=0;
144
+ // compute full horizontal section cost
145
+ s=sum[r2][p2]+sum[1-r2][i+1];
146
+ FoxI(j,i,i2-1)
147
+ {
148
+ cur+=s*(S-s);
149
+ s+=R[1-r2][j+1];
150
+ }
151
+ // compute left partial horizontal section cost
152
+ s=0;
153
+ FoxRI(j,i+1,p2-1)
154
+ {
155
+ s+=R[r2][j];
156
+ cur+=s*(S-s);
157
+ }
158
+ // compute right partial horizontal section cost
159
+ s=0;
160
+ FoxI(j,p2,i2-1)
161
+ {
162
+ s+=R[r2][j];
163
+ cur+=s*(S-s);
164
+ }
165
+ // consider all previous states
166
+ Fox(r,3)
167
+ Fox(p,i+1)
168
+ {
169
+ cur2=dyn[i][r][p]+cur;
170
+ // compute vertical edge cost
171
+ if (r==2)
172
+ s=sum[r2][p2];
173
+ else
174
+ if (r==r2)
175
+ s=sum[r2][p2]-sum[r2][p];
176
+ else
177
+ s=sum[r2][p2]+sum[1-r2][p];
178
+ cur2+=s*(S-s);
179
+ Min(dyn[i2][r2][p2],cur2);
180
+ }
181
+ }
182
+ // final DP step (after last vertical edge)
183
+ ans=(LL)INF*INF;
184
+ Fox(i,N)
185
+ Fox(r,3)
186
+ Fox(p,i+1)
187
+ {
188
+ cur=dyn[i][r][p];
189
+ // compute horizontal section costs for both rows' suffixes
190
+ Fox(j,2)
191
+ {
192
+ s=0;
193
+ FoxRI(k,i+1,N-1)
194
+ {
195
+ s+=R[j][k];
196
+ cur+=s*(S-s);
197
+ }
198
+ }
199
+ // compute vertical edge cost
200
+ if (r==2)
201
+ s=sum[0][N];
202
+ else
203
+ s=sum[r][N]-sum[r][p];
204
+ cur+=s*(S-s);
205
+ Min(ans,cur);
206
+ }
207
+ // output
208
+ printf("Case #%d: %lld\n",t,ans);
209
+ }
210
+ return(0);
211
+ }
2018/finals/ethan.html ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ The final exam is here, and it's now or never for Ethan.
3
+ His current grade is abysmal so he needs a strong showing on this exam to have any chance of passing his introductory computer science class.
4
+ </p>
5
+
6
+ <p>
7
+ The exam has only one question: devise an algorithm to compute the compactness of a grid tree.
8
+ </p>
9
+
10
+ <p>
11
+ Ethan recalls that a "grid tree" is simply an unweighted tree with 2<strong>N</strong> nodes that you can imagine being embedded within a 2x<strong>N</strong> grid.
12
+ The top row of the grid contains the nodes 1 ... <strong>N</strong> from left to right,
13
+ and the bottom row of the grid contains the nodes (<strong>N</strong> + 1) ... 2<strong>N</strong> from left to right.
14
+ Every edge in a grid tree connects a pair of nodes which are adjacent in the 2x<strong>N</strong> grid.
15
+ Two nodes are considered adjacent if either they're in the same column, or they're directly side-by-side in the same row.
16
+ There must be exactly 2<strong>N</strong>-1 edges that connect the 2<strong>N</strong> nodes to form a single tree.
17
+ Additionally, the <em>i</em>th node in the grid tree is labelled with an integer <strong>A<sub>i</sub></strong>.
18
+ </p>
19
+
20
+ <p>
21
+ What was "compactness" again? After some intense thought, Ethan comes up with the following pseudocode to compute the compactness, <strong>c</strong>, of a grid tree:
22
+ </p>
23
+
24
+ <ul>
25
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1. Set <strong>c</strong> to be equal to 0.
26
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2. Iterate <em>i</em> upwards from 1 to 2<strong>N</strong> - 1:
27
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2a. Iterate <em>j</em> upwards from <em>i</em>+1 to 2<strong>N</strong>:
28
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2b. Increase <strong>c</strong> by <strong>A<sub>i</sub></strong> * <strong>A<sub>j</sub></strong> * <code>ShortestDistance(i, j)</code>
29
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3. Output <strong>c</strong>.
30
+ </ul>
31
+
32
+ <p>
33
+ <code>ShortestDistance(i, j)</code> is a function which returns the number of edges on the shortest path from node <em>i</em> to node <em>j</em> in the tree,
34
+ which Ethan has implemented correctly. In fact, his whole algorithm is quite correct for once. This is exactly how you compute compactness!
35
+ </p>
36
+
37
+ <p>
38
+ There's just one issue &mdash; in his code, Ethan has chosen to store <strong>c</strong> using a rather small integer type,
39
+ which is at risk of overflowing if <strong>c</strong> becomes too large!
40
+ </p>
41
+
42
+ <p>
43
+ Ethan is so close! Feeling sorry for him, you'd like to make some last-minute changes to the tree in order to minimize the final value of <strong>c</strong>,
44
+ and thus minimize the probability that it will overflow in Ethan's program and cost him much-needed marks.
45
+ You can't change any of the node labels <strong>A<sub>1..2N</sub></strong>,
46
+ but you may choose your own set of 2<strong>N</strong> - 1 edges to connect them into a grid tree.
47
+ </p>
48
+
49
+ <p>
50
+ For example, if <strong>A</strong> = [1, 3, 2, 2, 4, 5], then the grid of nodes looks like this:
51
+ </p>
52
+
53
+ <p>
54
+ You'd like to determine the minimum possible compactness which Ethan's program can produce given a valid tree of your choice.
55
+ For example, one optimal tree for the above grid of nodes (which results in the minimum possible compactness of 198) is as follows:
56
+ </p>
57
+
58
+
59
+
60
+ <h3>Input</h3>
61
+
62
+ <p>
63
+ Input begins with an integer <strong>T</strong>, the number of trees. For each tree, there are three lines. The first line contains the single integer <strong>N</strong>.
64
+ The second line contains the <strong>N</strong> space-separated integers <strong>A<sub>1..N</sub></strong>.
65
+ The third line contains the <strong>N</strong> space-separated integers <strong>A<sub>N+1..2N</sub></strong>.
66
+ </p>
67
+
68
+
69
+ <h3>Output</h3>
70
+
71
+ <p>
72
+ For the <em>i</em>th tree, output a line containing "Case #<em>i</em>: " followed by the minimum possible output of Ethan's program.
73
+ </p>
74
+
75
+
76
+ <h3>Constraints</h3>
77
+
78
+ <p>
79
+ 1 &le; <strong>T</strong> &le; 80 <br />
80
+ 1 &le; <strong>N</strong> &le; 50 <br />
81
+ 1 &le; <strong>A<sub>i</sub></strong> &le; 1,000,000 <br />
82
+ </p>
83
+
84
+
85
+ <h3>Explanation of Sample</h3>
86
+
87
+ <p>
88
+ One optimal tree for the first case is given above. For that tree, Ethan's program would compute <strong>c</strong> as the sum of the following values (with some values omitted):
89
+ </p>
90
+
91
+ <ul>
92
+ <li> <strong>A<sub>1</sub></strong> * <strong>A<sub>2</sub></strong> * <code>ShortestDistance(1, 2)</code> = 1 * 3 * 1 = 3
93
+ <li> <strong>A<sub>1</sub></strong> * <strong>A<sub>3</sub></strong> * <code>ShortestDistance(1, 3)</code> = 1 * 2 * 4 = 8
94
+ <li> ...
95
+ <li> <strong>A<sub>1</sub></strong> * <strong>A<sub>6</sub></strong> * <code>ShortestDistance(1, 6)</code> = 1 * 5 * 3 = 15
96
+ <li> <strong>A<sub>2</sub></strong> * <strong>A<sub>3</sub></strong> * <code>ShortestDistance(2, 3)</code> = 3 * 2 * 3 = 18
97
+ <li> ...
98
+ <li> <strong>A<sub>4</sub></strong> * <strong>A<sub>6</sub></strong> * <code>ShortestDistance(4, 6)</code> = 2 * 5 * 2 = 20
99
+ <li> <strong>A<sub>5</sub></strong> * <strong>A<sub>6</sub></strong> * <code>ShortestDistance(5, 6)</code> = 4 * 5 * 1 = 20
100
+ </ul>
101
+
102
+ <p>
103
+ In the second case, there's only one possible tree, for which <strong>c</strong> = 2 * 3 * 1 = 6.
104
+ </p>
105
+
106
+ <p>
107
+ In the third case, two of the four possible trees are optimal (the ones omitting either the topmost or leftmost potential edge).
108
+ </p>
109
+
2018/finals/ethan.in ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 80
2
+ 3
3
+ 1 3 2
4
+ 2 4 5
5
+ 1
6
+ 2
7
+ 3
8
+ 2
9
+ 1 1
10
+ 1 2
11
+ 5
12
+ 1 5 10 6 5
13
+ 2 3 5 8 10
14
+ 8
15
+ 11 60 25 38 49 84 96 42
16
+ 3 51 92 37 75 21 97 22
17
+ 12
18
+ 1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 999999 1000000 1000000
19
+ 1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 999999 1000000
20
+ 1
21
+ 776520
22
+ 203533
23
+ 2
24
+ 183061 311640
25
+ 76467 755581
26
+ 3
27
+ 345476 207099 495660
28
+ 933523 762745 935070
29
+ 4
30
+ 929687 177950 980988 760656
31
+ 647963 108914 505044 187998
32
+ 5
33
+ 729104 380128 346918 703252 458644
34
+ 299659 574966 38048 693336 406032
35
+ 6
36
+ 57488 815320 798768 970637 789981 300916
37
+ 812559 908119 498122 275 166636 383663
38
+ 7
39
+ 111267 125820 151702 161385 823231 606241 922837
40
+ 174034 67818 918284 79 996797 232248 459692
41
+ 8
42
+ 417466 565516 686737 624066 413567 184060 425442 332446
43
+ 424177 976081 305527 952831 552850 814442 515860 941746
44
+ 9
45
+ 753215 454339 664425 754758 685443 557965 158895 412441 285987
46
+ 104404 126583 597713 161388 486672 861325 793226 887049 467236
47
+ 10
48
+ 340630 743657 169820 714419 35656 111679 361286 667495 870880 872931
49
+ 137514 914618 976974 494230 968295 534671 420453 870371 68779 927152
50
+ 11
51
+ 714016 140110 532321 448389 811092 224908 35090 969027 478003 143133 329517
52
+ 234057 787780 555251 873360 394070 227235 154895 399445 960550 790499 626241
53
+ 12
54
+ 914360 681803 132858 110346 259514 594945 182159 784090 838098 763525 93388 300690
55
+ 64587 909972 529011 415297 852314 48236 880272 34693 421133 160943 489914 628281
56
+ 13
57
+ 572833 165224 562187 115674 267148 275821 475499 697465 165507 879953 368735 593657 78787
58
+ 489998 448371 559148 336309 31076 212238 549529 858256 299545 286945 126723 577435 486097
59
+ 14
60
+ 681748 744720 894405 324979 723622 718172 329507 571854 923502 532291 519426 242395 299782 398433
61
+ 590336 696338 39254 573259 802491 626879 538014 127060 856424 411353 322082 157995 505171 383539
62
+ 15
63
+ 89762 712435 952651 856724 785225 362281 524416 727760 651577 872021 679585 103000 98349 776341 397409
64
+ 494547 516746 378012 287526 958085 906495 238250 451840 606556 954119 691693 94519 275098 892811 31220
65
+ 16
66
+ 548825 892005 215180 483138 350976 705600 118649 689447 306561 98075 352467 49226 964299 918444 414266 603072
67
+ 181267 524705 386103 903840 673851 515137 868912 270844 504092 16690 449479 60075 680565 933587 96529 774338
68
+ 17
69
+ 820809 879982 138081 887820 727064 946314 931817 590316 380135 355759 18379 34940 690022 347012 65404 614843 974155
70
+ 319654 284804 745322 508407 365729 498870 296656 696440 752842 599674 361383 389927 463997 683974 655334 175410 255791
71
+ 18
72
+ 380140 876852 246447 855628 400838 948416 950590 801001 536221 177021 35207 132761 279103 782187 571644 174102 939848 702532
73
+ 586191 143346 781485 285565 207690 898408 904292 754859 670348 519054 465075 855683 550625 494054 732564 419194 263036 395667
74
+ 19
75
+ 873419 436563 340648 830116 292439 187800 357724 146578 928806 102287 258906 779848 269259 228048 620149 422310 291942 540315 292985
76
+ 328737 164484 115027 537692 116426 120289 538969 631828 276857 189517 925510 301250 726806 137963 82116 507147 232643 486870 866570
77
+ 20
78
+ 680809 939935 264370 142803 756958 772978 808888 628162 139056 88983 989073 907760 993105 547092 684645 822710 154334 99183 31403 443193
79
+ 523854 769936 240672 582237 139316 890565 765476 542040 477680 413792 258737 21345 192184 119611 479992 199175 151870 821916 392986 314781
80
+ 21
81
+ 626227 142976 279635 924200 723712 105751 628512 244516 893521 484779 51419 679430 84329 851871 600553 403600 434237 318983 331089 769246 64344
82
+ 467042 281772 354546 632926 928759 974520 521821 657005 29258 114443 61702 197215 1723 713636 769626 947180 996668 967261 876304 848173 913005
83
+ 22
84
+ 280791 351035 212886 738345 507679 594422 867648 343803 745857 597089 837104 951147 140748 338155 472897 923178 761069 838472 969181 616462 71738 490110
85
+ 966296 790887 885979 941692 582249 725232 257237 91492 487429 711586 891125 4202 830937 966370 723733 51284 230820 530842 386190 55521 884016 671140
86
+ 23
87
+ 953286 626539 371875 829028 321043 14054 916588 744399 859125 18281 58210 337375 831828 558640 953056 337448 84188 117703 422862 169298 358298 222525 668887
88
+ 410406 920316 638216 306673 310455 395003 658101 725531 647855 488084 310986 586725 116789 241329 289402 317993 611768 329639 960579 739287 676955 121113 653672
89
+ 24
90
+ 444029 566265 75078 753735 481571 339374 356630 434187 413061 133778 541758 973765 637554 332050 324371 520722 643744 10553 105072 651829 964948 446662 566956 32327
91
+ 760938 340473 265082 307340 24258 945581 886306 11232 725063 833183 465368 497744 633629 959500 810742 905413 771110 462905 741787 781082 139826 535756 181151 692815
92
+ 25
93
+ 129880 281522 581143 205365 317878 981072 811980 186265 285262 916323 563011 507336 991349 38069 60857 621883 89968 587727 898412 464755 759831 996019 178758 114495 497557
94
+ 641779 456820 502634 157900 245229 164822 568773 362837 338403 529359 952333 398949 874491 386171 283448 562059 443856 861184 33441 687190 627314 470653 987469 618195 848769
95
+ 26
96
+ 13273 578611 29857 843732 661570 299339 817434 244631 365201 90742 956047 215977 823905 249365 349273 883232 483086 157047 907712 89881 168764 683667 499669 104649 260929 962994
97
+ 775343 182833 560112 406442 176960 336560 158595 353220 677587 989042 357092 273791 99812 512198 466264 210670 315611 468494 991816 737148 292071 386511 236910 196624 526644 714857
98
+ 27
99
+ 830795 977160 272224 612316 897710 673471 593880 821593 659033 25057 21983 867237 18222 974301 817829 931736 938068 620005 928711 21940 833176 696485 17224 416368 995245 680353 661664
100
+ 485344 22164 948586 324527 217986 851479 256892 164682 808679 867759 647607 134326 243323 735557 709304 811827 751923 699093 366740 777583 363347 38511 367856 502108 822874 539224 699968
101
+ 28
102
+ 9418 267789 689626 346967 539223 738599 637302 101679 998572 768730 575685 848651 26964 35863 503658 153232 629580 583122 631001 180590 849122 387486 117067 881174 96201 981939 32347 414153
103
+ 530877 729298 871680 229964 117645 803903 102375 401464 175882 463917 747373 94637 867402 283512 391670 605735 160409 987532 535853 652969 38013 984931 24152 122837 742373 814059 95894 862685
104
+ 29
105
+ 682245 552248 100820 564048 261418 827066 156766 386603 409448 166429 286918 250346 450506 123042 250926 590545 302294 905380 194081 956585 93488 619667 459525 928069 268892 199945 603244 289584 515425
106
+ 484362 622473 320501 302473 399389 581439 795849 555204 521729 936149 821721 846060 370126 703174 716012 533155 717290 192821 920309 780056 60452 680574 552888 536105 680240 759464 599254 996066 997183
107
+ 30
108
+ 794231 418788 316411 605149 447826 699617 441372 196687 908060 361668 931690 991926 617611 466477 647183 167804 25541 834842 16344 567815 891818 300449 347528 454658 177082 94489 49177 843478 464869 429273
109
+ 918864 921529 747822 202456 831995 786909 631163 928436 282186 882760 910523 64462 41992 443715 347828 344338 851188 181868 39336 184724 15232 690023 395683 873302 891557 361841 343396 495462 294945 59988
110
+ 31
111
+ 112356 154574 511351 983561 657698 768608 112141 994786 898916 404283 83310 896540 581446 16303 622530 406601 829565 274257 272665 536265 859317 551607 272856 441557 920218 891343 567887 213672 719411 556125 262758
112
+ 821004 647848 838095 598772 466685 310116 529150 735602 29371 576405 566531 34052 965041 895824 871092 114807 647485 343506 500730 589897 428188 552226 837776 936289 665075 124690 956954 477279 355964 224867 53919
113
+ 32
114
+ 380171 585288 510949 886774 914236 591427 91880 33998 921148 400812 742006 168783 796656 475025 199978 821988 535621 566966 108803 829758 609429 183421 220192 289027 623795 823137 701274 382374 831699 578908 885502 623314
115
+ 367321 671465 468325 447808 633276 238052 960242 906792 475543 666701 991528 61587 560076 515371 468070 934095 267989 253517 870719 326908 346536 773547 653498 334340 107590 358572 164003 748584 516769 137089 414860 865717
116
+ 33
117
+ 433326 278244 827413 639472 207401 338417 977217 671488 122459 844333 875988 308793 74499 872827 16955 87136 566522 735492 441673 917450 386705 49202 483495 983331 909782 653321 99433 365658 612854 813661 160955 575661 286332
118
+ 699444 117754 26828 370039 248632 500767 293869 628474 24 284886 289899 382397 709501 497069 366683 394273 826533 951591 725550 7441 175389 663921 988604 766788 870943 668460 876787 82015 395845 333801 35419 557238 125353
119
+ 34
120
+ 552389 686835 939612 141189 647568 968975 250239 577308 743255 138302 335809 194727 570170 352360 254517 999836 310279 453521 463759 394724 412550 728985 807675 585590 500894 491167 520473 890049 749991 836097 139353 902659 570189 194687
121
+ 785840 101111 931421 206526 459956 72427 580015 535272 157530 385583 916273 698736 297993 884458 87372 870067 400410 629894 405620 786042 85871 797643 668881 633884 190189 753674 292549 373505 47063 173551 598426 26305 412552 923962
122
+ 35
123
+ 157482 62861 302151 67881 139808 696989 714249 368307 386975 111797 371797 698222 645021 856660 216026 627387 470539 72400 105071 893503 434617 897812 890437 563048 774361 323703 421052 235870 558683 278841 232273 490056 24568 322012 533684
124
+ 912056 113611 198813 381623 944564 581273 188750 79651 23458 356913 872785 764901 425167 9711 340402 900134 457820 380250 586786 814520 123013 704173 332812 123691 842319 726451 100950 300800 413838 601355 300790 897141 277520 224971 285870
125
+ 36
126
+ 156714 793281 832806 57558 707548 791125 578020 264490 546915 665290 934250 955891 595740 775715 277996 916198 45648 989986 247468 715459 855712 12972 570164 722635 358158 568456 82799 598415 854181 718662 603429 650084 30663 480700 418193 665779
127
+ 92881 955755 367265 915501 705068 323393 565066 498395 390131 951032 424901 737939 88508 603036 308265 345607 520454 57257 623462 720823 862909 459730 538523 508166 183468 975454 226069 969579 575615 784045 660005 102334 305140 2457 344861 673650
128
+ 37
129
+ 337912 962279 362402 515862 488637 418689 457092 348798 134142 832856 222842 252403 324176 845248 422151 968015 589390 635278 934174 93207 546489 340243 596246 286536 241529 638069 712379 591545 826754 992363 370302 471277 525842 802900 750412 765815 885782
130
+ 272693 578619 757578 569068 464142 645473 316956 521284 872791 260095 664567 845343 999580 384283 8412 42681 173234 675243 323732 609412 446741 978349 163220 56970 488927 153300 703628 30579 215079 336860 552652 590055 456820 89150 56595 171083 268125
131
+ 38
132
+ 758262 595304 194366 372644 620330 279914 604569 767424 690478 620996 393990 888494 562327 111408 434456 161625 192313 657236 550030 473464 816559 755393 310323 230359 931912 600788 525715 239313 581326 565375 972314 101658 92468 893474 722186 161977 856027 566803
133
+ 906072 232402 983105 234557 113188 929825 737095 375332 618260 337539 509469 919110 559052 940334 443276 181213 453515 928258 797087 894530 700709 212535 624751 930667 668249 639413 186698 453589 208974 783618 565183 902589 842095 26517 372169 668935 904223 541258
134
+ 39
135
+ 831490 335259 918383 874290 616323 446123 109115 968213 820013 947141 96542 563333 449107 441726 29684 58281 974452 72813 277843 32876 393509 700959 797443 113674 127308 379056 279373 166778 924040 841676 15788 9848 151150 840130 602464 364398 482735 827138 267682
136
+ 395262 921685 904243 276658 474095 91756 325811 340172 951665 433661 704620 994297 609166 527478 638287 395329 502960 805925 503216 970046 10633 996643 175166 163211 960035 277581 270365 392924 919236 951534 824610 540327 361277 430969 633706 64832 912719 880433 464664
137
+ 40
138
+ 515451 908011 782697 627178 603557 532843 540917 529023 13028 143340 111684 270379 818344 812284 537034 324204 63944 497155 590273 944485 35176 152228 214113 89679 938564 165179 697919 571149 853339 341895 359615 930270 107834 186081 458487 974444 421283 794538 309218 327233
139
+ 956187 729476 414014 555289 689229 237686 72835 847442 141982 972211 320959 979968 66318 652532 154451 635357 582663 725634 933700 900189 800390 308368 484926 866784 498659 420420 639340 996289 858174 930774 626412 831180 996104 666961 331507 821900 893227 595383 916349 131329
140
+ 41
141
+ 444802 732718 616496 611178 974404 439626 358229 967228 662576 760078 427764 900100 61937 668265 416781 132394 795384 341530 151278 25129 349331 557479 52066 61344 77945 759927 775687 474550 938722 293069 63358 199848 336787 888801 245115 668593 887671 138333 448444 251604 792041
142
+ 253105 99222 540617 528463 937875 457706 746370 11296 602070 287607 200152 550469 151782 863369 373207 862685 346270 227344 221795 567451 164422 540427 914821 635274 733356 705635 265046 445105 271581 875540 948102 380690 671040 556550 509641 811916 232336 914554 504352 908512 756532
143
+ 42
144
+ 153536 9488 791229 567877 617120 517155 743419 836521 641316 532614 984124 935854 969569 978189 285474 694765 269452 311447 557728 220579 189252 417166 746577 156233 287865 327309 740533 291457 903607 646173 471880 672492 498707 675096 927681 979416 97520 38895 280740 519127 297071 382023
145
+ 799044 581931 644785 139645 557273 789597 941001 350219 934010 377517 882179 751426 749559 914019 383564 757687 326229 409860 680956 184379 112614 298528 614343 276354 794821 113928 134395 957284 596204 234206 735478 698818 272882 780932 200360 264513 94435 286134 886465 857330 923453 734836
146
+ 43
147
+ 869650 611077 922200 188533 577004 262725 193222 655843 451869 182050 544448 494030 918384 313053 427929 959669 33831 782566 983425 613231 44123 309080 766271 112956 888315 109974 783998 914086 830448 33024 742782 456979 857249 72785 79339 973290 331666 52119 207371 892512 6439 358544 786512
148
+ 101790 748295 485214 568205 724433 923356 913319 641093 57293 594678 694668 675744 19934 771727 436676 808183 296941 688937 95252 477198 285772 873556 413933 710753 919966 684172 489250 83863 799206 544382 410628 474067 753258 426219 632476 701610 136835 86949 566340 29487 227844 380791 794274
149
+ 44
150
+ 118405 553122 843842 922278 769355 996865 255567 105321 782421 389454 916206 181310 680006 535549 293880 378862 291754 549830 772497 318095 68134 888576 473897 454195 759873 247593 374479 275648 15305 441282 879533 252384 688867 666647 754468 747918 678067 800093 674181 282769 437092 681971 611944 882630
151
+ 133076 942603 602029 765973 83487 498786 63821 355014 784775 178091 46172 914092 678205 966730 377629 446207 907598 709563 894209 33032 426797 463891 490238 959349 186585 286559 69896 485196 448554 575465 482735 49084 507262 728408 443797 533776 137658 850231 139082 660285 244159 16974 48774 563866
152
+ 45
153
+ 247148 950786 529071 253129 980231 305651 460709 742230 379066 720740 347741 150641 256876 847663 303837 924766 825297 457751 628070 282230 175050 47621 162593 442415 755432 695710 166199 703300 414158 62013 407424 214145 485748 213458 529619 916013 730696 104534 835388 56595 101551 924138 697099 144943 721896
154
+ 166155 643017 839730 911634 117172 848262 486386 187588 680081 944334 653938 678234 829979 613114 867081 433936 26964 189922 491505 641926 302497 44592 843374 866723 694719 234768 132952 242902 215587 762627 579271 441400 556402 365203 586587 312205 456986 940257 227941 827690 344843 394138 709302 60592 733462
155
+ 46
156
+ 700482 678518 212768 485188 248879 984773 642626 15882 802880 741244 513153 422501 534297 723796 121701 577033 482222 73406 382328 387071 483212 348713 260765 522490 103620 769439 435402 574281 372911 251919 271843 463718 393827 252133 962164 556011 75249 957781 211211 700388 156247 900856 507184 866623 533513 942861
157
+ 624642 924704 374295 166496 48560 157713 677819 799623 500112 41431 873985 386441 828703 242592 105491 26 187926 60440 837344 537154 858981 598298 160553 106011 218959 48707 580968 883577 858273 159075 53276 247204 766736 980301 841333 893568 402990 169614 654233 282830 891145 105978 532753 113931 350816 462177
158
+ 47
159
+ 336694 252419 860385 987117 549871 739270 758101 461387 735227 784865 299884 729893 580772 628519 480020 704776 315645 492001 311444 615550 563204 370247 335417 653533 888352 963290 130856 544617 278665 265249 453907 567015 730502 555261 173639 354815 330322 542635 950753 170316 953624 510742 854176 773636 650334 6423 561366
160
+ 856383 65662 531850 431353 4070 388814 910734 750294 982777 933729 800472 488677 673276 14503 67893 975607 381695 863215 613914 943052 937865 140685 72617 452865 524960 641751 115395 878246 495288 592137 573572 178734 670326 669256 560415 166527 596127 969988 112471 32682 469026 583926 712856 36404 781758 965897 337328
161
+ 48
162
+ 105681 706133 753005 734581 207999 665030 80915 910905 84219 641499 870266 868225 718901 293003 719618 528159 718368 125250 328628 737900 63070 195144 92151 952503 251403 110275 195436 470619 772003 44371 408102 34410 534097 638235 300937 959173 507541 435871 293374 57229 729808 971401 709200 199924 806639 717574 463718 262061
163
+ 696306 776973 649693 9858 622552 660160 643458 154116 103977 948523 333545 769756 562143 587369 517612 457536 361202 217125 927044 2626 569471 360190 661693 326338 69524 228292 74265 284100 907931 617760 456963 828188 553952 848 363310 485446 497408 90063 47434 584978 743856 912274 815331 785276 170343 988335 906774 492250
164
+ 49
165
+ 253401 893808 201454 994289 890502 138660 145883 663931 498929 919337 192501 440811 453499 940334 82289 272989 873069 536827 51195 300362 858456 179173 149863 88339 205533 5614 952511 803630 343625 263479 901114 671402 407000 998690 530510 170784 295387 711816 742364 654776 7027 482452 339914 645397 168573 883642 556591 93022 843656
166
+ 226904 370023 119082 411905 940071 489029 915527 139696 241181 313960 602343 825371 250659 683430 853800 86984 332910 332838 349823 673184 313468 7114 184128 688495 183213 251465 467660 726792 949180 34714 385495 35782 27160 507404 723284 275693 692067 47347 251968 616942 442182 982396 840520 365513 697263 776674 947928 905997 729832
167
+ 50
168
+ 514881 999739 185365 942376 182534 149257 870730 156980 515332 699458 316230 913207 877691 585162 110929 401839 890429 29952 730029 169266 353073 769020 690235 432767 298244 418615 70062 62641 498350 856394 644772 582413 536412 853903 439846 167674 562367 838692 614845 448592 860465 802510 297583 705992 171775 892153 59989 274260 402519 867165
169
+ 723418 517448 25039 395133 442770 815669 155344 421385 26612 838359 906525 237284 593590 339492 508484 307904 206468 908164 133023 801892 298844 285536 816007 164815 620680 433555 64855 626487 155705 561598 612440 570986 130685 131704 703054 169686 230429 34210 958942 141668 634582 460888 326106 525246 55410 328579 885611 881009 426049 239499
170
+ 16
171
+ 549422 468025 578538 657147 127915 278760 56924 516918 128359 586961 887410 681395 625482 615659 615366 543969
172
+ 903850 154226 907849 661412 429802 417511 169464 266329 192189 515883 482733 899974 207112 681140 102098 253283
173
+ 42
174
+ 750825 219504 800319 998917 366752 443558 681425 398637 473329 262324 483996 647585 469367 674551 20541 773214 702243 517871 183124 957568 838012 983420 710733 983236 876471 520424 648010 380072 706606 219101 998575 576047 601216 76343 377929 112833 519878 312628 387547 99886 870445 66824
175
+ 988231 113491 33845 104974 497430 631957 882437 156184 143716 941259 254568 195687 172907 461880 36968 969206 620906 718645 67461 718321 720753 387757 711762 814851 336140 233602 402413 581389 234122 211918 139673 198450 48360 277444 484218 131663 792415 580532 224044 70216 85447 721517
176
+ 14
177
+ 40190 104038 695036 876755 551772 159194 503507 804237 108817 571934 554438 133491 871256 895676
178
+ 199150 217386 919858 200656 567344 169161 419573 476468 933528 390745 941502 621261 299743 611436
179
+ 21
180
+ 766961 941771 755863 438467 688436 656309 827533 349150 63822 3046 311001 157697 465194 516251 615479 931705 986637 35944 331856 59433 739233
181
+ 74361 90001 549463 559646 853491 410215 790688 609556 56568 888473 495180 530903 485322 648385 469244 703431 220103 942888 391680 131322 954898
182
+ 39
183
+ 376261 939592 146003 102194 980651 628084 284884 341364 793461 965234 433996 262020 144346 986649 67577 757303 854072 769959 58150 942470 375784 323691 560076 942355 786412 505619 390293 10297 59845 165586 434363 873166 569890 41390 770319 581368 692658 281635 698582
184
+ 348073 313498 459767 348366 303736 636226 573019 886798 485149 361994 931963 863051 427849 686747 592931 90999 103712 825368 826765 603395 159956 233010 44555 531397 195743 899163 414221 504566 926108 171090 84432 699026 96323 786589 843876 870562 359231 25109 977432
185
+ 44
186
+ 898734 151963 637059 755147 518452 665384 451442 129389 961852 23171 565225 913462 516045 476939 296216 61653 343044 586484 823708 388585 702004 350351 88814 337452 387287 104705 258796 245549 409199 382805 151106 653109 842877 769454 502773 43980 783197 135957 333388 217044 640764 761649 321627 55250
187
+ 312120 364756 213165 987981 134866 133937 407373 97807 354002 810412 381361 818376 318328 875210 519876 278226 884314 942856 778446 273936 992223 401799 633858 491247 155798 631012 171749 669134 898356 324326 609942 938170 630696 320337 763902 392338 305693 572183 522516 677194 489099 254894 241357 107594
188
+ 14
189
+ 877821 627487 290614 191957 132847 130609 226633 244775 295786 887905 16602 446068 308826 198705
190
+ 779265 386870 59943 165647 116627 574259 78789 886079 739912 499895 351401 574119 497726 571508
191
+ 17
192
+ 564150 686102 808434 886492 566066 89852 676084 62033 681374 979013 470249 106460 253508 594993 977996 474171 816420
193
+ 623119 837849 592502 511033 109376 27755 832885 896612 79187 146743 165163 636920 235728 935647 12336 520161 740817
194
+ 22
195
+ 121325 747569 41673 425035 951345 135945 901096 263866 631520 50144 466007 769392 797066 476275 104414 749934 270618 101257 695270 368870 800357 152930
196
+ 50584 335662 30818 475771 976611 473249 972729 282561 566621 406226 228916 37392 540225 512494 84114 450982 556695 349293 607738 789673 920305 354677
197
+ 7
198
+ 792017 632145 354059 114324 145779 541672 220726
199
+ 509848 190827 929145 727922 688337 811110 472284
200
+ 38
201
+ 677558 88713 437919 875299 49331 228482 779591 602737 182841 104041 383604 692695 245807 794130 77922 600174 954182 916082 138252 179587 452138 625002 391019 799536 671252 721013 410395 762902 321084 80811 941215 27897 564204 886639 691515 516024 140464 97916
202
+ 241791 989031 241258 772486 53284 429451 958018 475152 80143 744305 683258 346058 79410 381483 186399 916900 998290 206568 52123 331187 397539 351727 45992 414462 538511 699384 236319 249831 664533 103 89006 460721 551886 512678 396904 458034 571980 985629
203
+ 11
204
+ 467798 789595 332177 337068 477965 910057 184790 134391 200594 724738 216946
205
+ 36594 46809 48179 185616 242007 620373 368656 226718 320082 426147 523538
206
+ 4
207
+ 513394 355222 631320 366144
208
+ 709945 922656 257550 881314
209
+ 16
210
+ 844249 485675 924129 7458 524271 506836 475673 63159 339115 202654 208994 255773 982939 887793 727822 295119
211
+ 221474 651912 558526 409163 589656 817876 609953 853374 643871 538496 293195 851679 504707 425040 473966 858904
212
+ 49
213
+ 617250 247735 51230 178725 449815 222343 767394 571809 336267 943244 253471 436526 568255 820284 370964 831001 466072 321262 415052 906427 407872 515285 851544 745599 320171 705817 928223 409937 235380 154707 745484 162277 354469 541989 783461 162273 967702 362676 808316 849449 824620 580100 805182 520709 340291 261294 349288 766384 190950
214
+ 120064 522458 25279 764411 651697 403268 816363 870204 198143 599421 768254 481760 550055 291570 253270 263256 377665 966907 613913 543605 38069 910089 266422 922470 998110 854140 370387 72863 743161 753297 133721 364694 866569 164536 95064 479847 514763 452 93911 864536 911761 783868 583612 539126 791038 263822 627860 458782 120797
215
+ 27
216
+ 166400 733848 941150 919118 201021 919389 801837 388062 660878 921081 662768 291794 183176 340939 908190 505068 141498 248426 805239 511006 174390 252578 879779 691873 162240 87836 107883
217
+ 806629 747923 201755 552206 289763 514058 294498 329857 937230 585522 660660 212103 161895 377705 704563 226728 396208 553202 488618 315153 5880 3225 25318 395079 232021 289661 759423
218
+ 23
219
+ 575344 335871 65844 622914 84154 413446 424628 868520 965117 665452 808377 737140 17741 949768 819087 645822 197725 899480 352563 527540 305005 367435 447318
220
+ 870903 435809 529321 687873 637970 598766 810784 9874 477143 93037 97900 9508 436312 177170 633441 413197 519103 67894 106392 234241 314315 68112 914676
221
+ 17
222
+ 112807 712450 168400 994140 881640 888271 122311 539764 834723 513963 917791 293725 857385 232811 72338 532480 148897
223
+ 7196 550907 524815 361024 656367 707546 221897 391783 149649 131460 956444 968152 250073 590058 215396 367574 338971
224
+ 3
225
+ 245905 687513 274394
226
+ 558169 821608 342315
227
+ 16
228
+ 864557 357472 244578 227730 873864 516204 575354 560960 881568 49112 983247 828695 482147 375309 769075 504340
229
+ 282083 658671 66226 200815 422365 301797 812704 127980 151783 79416 382170 184208 673910 641172 545890 156913
230
+ 31
231
+ 920429 581265 28647 916598 447099 332408 990942 65167 455845 953815 143821 464369 172540 764025 550529 724200 410718 837866 104467 881346 276603 189911 555832 637807 788020 564864 361591 306897 934623 6684 907957
232
+ 504486 377319 143305 360044 950031 915857 584877 884090 48445 851673 474351 855382 496119 441338 879372 140509 797898 350413 441494 715467 145677 925577 120783 731269 826255 311337 800926 966226 889120 482027 663468
233
+ 40
234
+ 541753 128756 527198 616615 173896 854417 412655 702424 276508 569432 530665 809653 736938 764269 79039 243820 637434 676704 858378 166810 111153 86516 206302 444693 135803 815803 298505 546470 703188 931548 216999 84180 824628 670519 173925 622491 29845 361695 958992 988540
235
+ 599970 196870 419033 423598 919486 638262 597415 492274 734317 270587 158425 148420 914211 471775 204951 677933 138023 312717 43411 621557 347300 784535 476002 791030 933196 377811 815601 664204 634089 670944 233957 771689 526146 441478 954323 404805 168550 818812 162841 295602
236
+ 2
237
+ 45443 821335
238
+ 615693 745303
239
+ 33
240
+ 122446 858449 799048 663173 741459 778501 634626 599680 668143 120406 491830 209966 103126 728511 148793 477304 831234 367204 464944 194622 970988 79039 772567 786848 409831 40625 340909 23322 880729 639226 726656 601031 445462
241
+ 926852 612624 809798 571738 411034 832483 190778 228899 767542 790373 691883 673001 464887 376185 956042 627131 598513 769760 46225 473208 426974 969604 629193 352678 122675 315234 558885 25522 301070 465427 497036 352389 894155
2018/finals/ethan.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The final exam is here, and it's now or never for Ethan. His current grade is
2
+ abysmal so he needs a strong showing on this exam to have any chance of
3
+ passing his introductory computer science class.
4
+
5
+ The exam has only one question: devise an algorithm to compute the compactness
6
+ of a grid tree.
7
+
8
+ Ethan recalls that a "grid tree" is simply an unweighted tree with 2**N**
9
+ nodes that you can imagine being embedded within a 2x**N** grid. The top row
10
+ of the grid contains the nodes 1 ... **N** from left to right, and the bottom
11
+ row of the grid contains the nodes (**N** \+ 1) ... 2**N** from left to right.
12
+ Every edge in a grid tree connects a pair of nodes which are adjacent in the
13
+ 2x**N** grid. Two nodes are considered adjacent if either they're in the same
14
+ column, or they're directly side-by-side in the same row. There must be
15
+ exactly 2**N**-1 edges that connect the 2**N** nodes to form a single tree.
16
+ Additionally, the _i_th node in the grid tree is labelled with an integer
17
+ **Ai**.
18
+
19
+ What was "compactness" again? After some intense thought, Ethan comes up with
20
+ the following pseudocode to compute the compactness, **c**, of a grid tree:
21
+
22
+ * 1\. Set **c** to be equal to 0.
23
+ * 2\. Iterate _i_ upwards from 1 to 2**N** \- 1:
24
+ * 2a. Iterate _j_ upwards from _i_+1 to 2**N**:
25
+ * 2b. Increase **c** by **Ai** * **Aj** * `ShortestDistance(i, j)`
26
+ * 3\. Output **c**.
27
+
28
+ `ShortestDistance(i, j)` is a function which returns the number of edges on
29
+ the shortest path from node _i_ to node _j_ in the tree, which Ethan has
30
+ implemented correctly. In fact, his whole algorithm is quite correct for once.
31
+ This is exactly how you compute compactness!
32
+
33
+ There's just one issue — in his code, Ethan has chosen to store **c** using a
34
+ rather small integer type, which is at risk of overflowing if **c** becomes
35
+ too large!
36
+
37
+ Ethan is so close! Feeling sorry for him, you'd like to make some last-minute
38
+ changes to the tree in order to minimize the final value of **c**, and thus
39
+ minimize the probability that it will overflow in Ethan's program and cost him
40
+ much-needed marks. You can't change any of the node labels **A1..2N**, but you
41
+ may choose your own set of 2**N** \- 1 edges to connect them into a grid tree.
42
+
43
+ For example, if **A** = [1, 3, 2, 2, 4, 5], then the grid of nodes looks like
44
+ this:
45
+
46
+ You'd like to determine the minimum possible compactness which Ethan's program
47
+ can produce given a valid tree of your choice. For example, one optimal tree
48
+ for the above grid of nodes (which results in the minimum possible compactness
49
+ of 198) is as follows:
50
+
51
+ ### Input
52
+
53
+ Input begins with an integer **T**, the number of trees. For each tree, there
54
+ are three lines. The first line contains the single integer **N**. The second
55
+ line contains the **N** space-separated integers **A1..N**. The third line
56
+ contains the **N** space-separated integers **AN+1..2N**.
57
+
58
+ ### Output
59
+
60
+ For the _i_th tree, output a line containing "Case #_i_: " followed by the
61
+ minimum possible output of Ethan's program.
62
+
63
+ ### Constraints
64
+
65
+ 1 ≤ **T** ≤ 80
66
+ 1 ≤ **N** ≤ 50
67
+ 1 ≤ **Ai** ≤ 1,000,000
68
+
69
+ ### Explanation of Sample
70
+
71
+ One optimal tree for the first case is given above. For that tree, Ethan's
72
+ program would compute **c** as the sum of the following values (with some
73
+ values omitted):
74
+
75
+ * **A1** * **A2** * `ShortestDistance(1, 2)` = 1 * 3 * 1 = 3
76
+ * **A1** * **A3** * `ShortestDistance(1, 3)` = 1 * 2 * 4 = 8
77
+ * ...
78
+ * **A1** * **A6** * `ShortestDistance(1, 6)` = 1 * 5 * 3 = 15
79
+ * **A2** * **A3** * `ShortestDistance(2, 3)` = 3 * 2 * 3 = 18
80
+ * ...
81
+ * **A4** * **A6** * `ShortestDistance(4, 6)` = 2 * 5 * 2 = 20
82
+ * **A5** * **A6** * `ShortestDistance(5, 6)` = 4 * 5 * 1 = 20
83
+
84
+ In the second case, there's only one possible tree, for which **c** = 2 * 3 *
85
+ 1 = 6.
86
+
87
+ In the third case, two of the four possible trees are optimal (the ones
88
+ omitting either the topmost or leftmost potential edge).
89
+
2018/finals/ethan.out ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: 198
2
+ Case #2: 6
3
+ Case #3: 14
4
+ Case #4: 3226
5
+ Case #5: 1019144
6
+ Case #6: 1419999746000002
7
+ Case #7: 158047445160
8
+ Case #8: 716584960310
9
+ Case #9: 9736953596494
10
+ Case #10: 17523029121283
11
+ Case #11: 25624979577048
12
+ Case #12: 51879052453960
13
+ Case #13: 44952771515198
14
+ Case #14: 138921477249744
15
+ Case #15: 154557212444750
16
+ Case #16: 263813905787586
17
+ Case #17: 265190693651962
18
+ Case #18: 304235644843682
19
+ Case #19: 288437821749958
20
+ Case #20: 562183410188758
21
+ Case #21: 730850210619340
22
+ Case #22: 784962166425329
23
+ Case #23: 994997514960940
24
+ Case #24: 1319450452295692
25
+ Case #25: 885545596906968
26
+ Case #26: 1335512841639492
27
+ Case #27: 1927337493116390
28
+ Case #28: 2640681901892200
29
+ Case #29: 2186376337606200
30
+ Case #30: 2509006065539666
31
+ Case #31: 2856785766675934
32
+ Case #32: 2563828545385840
33
+ Case #33: 4746997236964980
34
+ Case #34: 3586716468471062
35
+ Case #35: 4879373984024024
36
+ Case #36: 4752078018709930
37
+ Case #37: 6034532623161728
38
+ Case #38: 6771827331269718
39
+ Case #39: 5591295909858493
40
+ Case #40: 7298784754791768
41
+ Case #41: 5486666474630682
42
+ Case #42: 9332642369782525
43
+ Case #43: 8733013396037280
44
+ Case #44: 12130181851078450
45
+ Case #45: 11589165888666834
46
+ Case #46: 14122677415946934
47
+ Case #47: 12954763484697562
48
+ Case #48: 15352025783178374
49
+ Case #49: 14359370522693684
50
+ Case #50: 15119666116137528
51
+ Case #51: 16101306160199630
52
+ Case #52: 15766082855660810
53
+ Case #53: 21493653492400564
54
+ Case #54: 19581131155672756
55
+ Case #55: 19934745199996134
56
+ Case #56: 20144645528868781
57
+ Case #57: 740243073201006
58
+ Case #58: 11092025848656242
59
+ Case #59: 513652289219673
60
+ Case #60: 1852667838189955
61
+ Case #61: 10850691549893895
62
+ Case #62: 13132395681767488
63
+ Case #63: 358576712869924
64
+ Case #64: 1076503999130657
65
+ Case #65: 1622500695602593
66
+ Case #66: 76228256147076
67
+ Case #67: 8351115399776566
68
+ Case #68: 130602948089283
69
+ Case #69: 21480789947800
70
+ Case #70: 924026532280304
71
+ Case #71: 20915671700496984
72
+ Case #72: 2907389607114549
73
+ Case #73: 1905642433632046
74
+ Case #74: 776641589472030
75
+ Case #75: 5678227649489
76
+ Case #76: 662315938181662
77
+ Case #77: 6741975663260179
78
+ Case #78: 11384965678113728
79
+ Case #79: 2271400045654
80
+ Case #80: 7256804525346519
2018/finals/personal.cpp ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Personal Space
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ #define LIM 8000001
89
+
90
+ int K1,K2;
91
+ pair<PR,int> E1[LIM];
92
+ pair<PR,PR> E2[LIM];
93
+ int dyn[LIM];
94
+ set<int> S1;
95
+ set<PR> S2;
96
+ set<int>::iterator I1;
97
+ set<PR>::iterator I2,J2;
98
+
99
+ void AddRect(int x1,int y1,int x2,int y2)
100
+ {
101
+ if ((x2<0) || (y1>INF))
102
+ return;
103
+ int i=K2+1;
104
+ E2[K2++]=mp(mp(y1,1),mp(x1,i));
105
+ E2[K2++]=mp(mp(y2,0),mp(x2,i));
106
+ }
107
+
108
+ void AddRects(int x)
109
+ {
110
+ int i;
111
+ int X[7];
112
+ I1=S1.lower_bound(x);
113
+ Fox(i,3)
114
+ I1--;
115
+ Fox(i,7)
116
+ X[i]=*I1,I1++;
117
+ Fox(i,4)
118
+ AddRect(X[i],X[i+1],X[i+2],X[i+3]);
119
+ }
120
+
121
+ int Query(int x)
122
+ {
123
+ I2=S2.lower_bound(mp(x+1,0));
124
+ I2--;
125
+ return(I2->y);
126
+ }
127
+
128
+ void Update(int x,int v)
129
+ {
130
+ I2=S2.lower_bound(mp(x+1,0));
131
+ I2--;
132
+ if (v<=I2->y)
133
+ return;
134
+ if (I2->x<x)
135
+ I2++;
136
+ while ((I2!=S2.end()) && (v>=I2->y))
137
+ {
138
+ J2=I2,I2++;
139
+ S2.erase(J2);
140
+ }
141
+ S2.insert(mp(x,v));
142
+ }
143
+
144
+ int main()
145
+ {
146
+ if (DEBUG)
147
+ freopen("in.txt","r",stdin);
148
+ // vars
149
+ int T,t;
150
+ int N;
151
+ int i,j,k,x,a,b,ans;
152
+ // testcase loop
153
+ Read(T);
154
+ Fox1(t,T)
155
+ {
156
+ // input
157
+ Read(N);
158
+ K1=0;
159
+ Fox(i,N)
160
+ {
161
+ Read(x),Read(a),Read(b);
162
+ E1[K1++]=mp(mp(a,x),1);
163
+ E1[K1++]=mp(mp(b+1,x),-1);
164
+ }
165
+ // bottom-up line sweep to generate all possible fish placement "rectangles"
166
+ sort(E1,E1+K1);
167
+ S1.clear();
168
+ Fox1(i,4)
169
+ S1.insert(-i),S1.insert(INF+i);
170
+ K2=0;
171
+ Fox(i,K1)
172
+ {
173
+ j=i;
174
+ while ((j+1<K1) && (E1[j+1].x.x==E1[i].x.x))
175
+ j++;
176
+ FoxI(k,i,j)
177
+ if (E1[k].y>0)
178
+ S1.insert(E1[k].x.y);
179
+ else
180
+ S1.erase(E1[k].x.y);
181
+ FoxI(k,i,j)
182
+ AddRects(E1[k].x.y);
183
+ i=j;
184
+ }
185
+ // bottom-up line sweep DP on rectangles
186
+ sort(E2,E2+K2);
187
+ S2.clear();
188
+ S2.insert(mp(-INF,0));
189
+ ans=0;
190
+ Fox(i,K2)
191
+ {
192
+ x=E2[i].y.x,j=E2[i].y.y;
193
+ if (E2[i].x.y)
194
+ Max(ans,dyn[j]=Query(x)+1);
195
+ else
196
+ Update(x,dyn[j]);
197
+ }
198
+ // output
199
+ printf("Case #%d: %d\n",t,ans);
200
+ }
201
+ return(0);
202
+ }
2018/finals/personal.html ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ Phineas is the proud owner of an enormous new fish tank! Looking at the fish tank from the side, it can be represented as an infinite 2D plane.
3
+ Phineas has installed <strong>N</strong> vertical dividers into the tank, the <em>i</em>th of which is a line segment connecting points
4
+ (<strong>X<sub>i</sub></strong>, <strong>A<sub>i</sub></strong>) and (<strong>X<sub>i</sub></strong>, <strong>B<sub>i</sub></strong>).
5
+ No two dividers overlap at any point (including at their endpoints).
6
+ </p>
7
+
8
+ <p>
9
+ Unfortunately, Phineas's fish tank is lacking in fish, but he'll soon rectify that! He's going to place one or more fish into the tank, with each one initially occupying any point of his choice
10
+ (each coordinate may be non-integral and arbitrarily small or large). No fish's location may overlap with any of the dividers (including their endpoints), but multiple fish may be placed at the same coordinates.
11
+ </p>
12
+
13
+ <p>
14
+ After the fish have been placed, each one may swim left and right freely (continuously decreasing or increasing its x-coordinate), as long as it never touches a divider (including its endpoints). Fish do not block one another from swimming, so multiple fish are able to occupy the same coordinates. However, no fish is able to change its y-coordinate.
15
+ </p>
16
+
17
+ <p>
18
+ At any given moment, each fish feels that its personal space is violated if any other fish is currently at the same x-coordinate as it
19
+ (either at its current y-coordinate, or arbitrarily far above or below it). As such, if two fish ever occupy the same x-coordinate as one another, they both become unhappy.
20
+ </p>
21
+
22
+ <p>
23
+ Phineas suspects that someone's planning on stealing one of his dividers soon after he places fish into the tank!
24
+ </p>
25
+
26
+ <p>
27
+ And he wants to ensure that none of his fish have any chance of becoming unhappy!
28
+ </p>
29
+
30
+ <p>
31
+ But he still wants to have as many fish as possible!
32
+ </p>
33
+
34
+ <p>
35
+ As such, he'd like to determine the maximum number of fish which he can place into the tank such that, no matter which single one of the <strong>N</strong> dividers is subsequently removed,
36
+ and no matter how the fish then decide to swim around, none of the fish can ever become unhappy.
37
+ </p>
38
+
39
+
40
+ <h3>Input</h3>
41
+
42
+ <p>
43
+ Input begins with an integer <strong>T</strong>, the number of fish tanks.
44
+ For each fish tank, there is first a line containing the single integer <strong>N</strong>.
45
+ Then, <strong>N</strong> lines follow, the <em>i</em>th of which contains the 3 space-separated integers
46
+ <strong>X<sub>i</sub></strong>, <strong>A<sub>i</sub></strong>, and <strong>B<sub>i</sub></strong>.
47
+ </p>
48
+
49
+
50
+ <h3>Output</h3>
51
+
52
+ <p>
53
+ For the <em>i</em>th fish tank, output a line containing "Case #<em>i</em>: " followed by the maximum number of fish which Phineas can place into the tank with no risk of unhappiness.
54
+ </p>
55
+
56
+
57
+ <h3>Constraints</h3>
58
+
59
+ <p>
60
+ 1 &le; <strong>T</strong> &le; 90<br />
61
+ 1 &le; <strong>N</strong> &le; 500,000 <br />
62
+ 0 &le; <strong>X<sub>i</sub></strong> &le; 1,000,000,000 <br />
63
+ 0 &le; <strong>A<sub>i</sub></strong> &lt; <strong>B<sub>i</sub></strong> &le; 1,000,000,000 <br />
64
+ </p>
65
+
66
+
67
+ <h3>Explanation of Sample</h3>
68
+
69
+ <p>
70
+ In the first case, Phineas could, for example, place a fish at coordinates (5, 5). If he placed another fish anywhere else in the tank (for example at coordinates (-1, 2)),
71
+ then if the single divider were removed, both fish would be able to swim freely and might come to occupy the same x-coordinate as one another.
72
+ </p>
73
+
74
+ <p>
75
+ In the second case, Phineas can place one fish at coordinates (-5, 5) and another at coordinates (15, 5).
76
+ </p>
77
+
78
+ <p>
79
+ In the third case, no matter where Phineas might place two fish in the tank, at least one choice of removed divider would result in them potentially becoming unhappy.
80
+ </p>
81
+
82
+
2018/finals/personal.in ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02fe0e1530fd3d2688cf32df245f9976557d582ef811dfe918e22396b3fecd7c
3
+ size 42711476
2018/finals/personal.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Phineas is the proud owner of an enormous new fish tank! Looking at the fish
2
+ tank from the side, it can be represented as an infinite 2D plane. Phineas has
3
+ installed **N** vertical dividers into the tank, the _i_th of which is a line
4
+ segment connecting points (**Xi**, **Ai**) and (**Xi**, **Bi**). No two
5
+ dividers overlap at any point (including at their endpoints).
6
+
7
+ Unfortunately, Phineas's fish tank is lacking in fish, but he'll soon rectify
8
+ that! He's going to place one or more fish into the tank, with each one
9
+ initially occupying any point of his choice (each coordinate may be non-
10
+ integral and arbitrarily small or large). No fish's location may overlap with
11
+ any of the dividers (including their endpoints), but multiple fish may be
12
+ placed at the same coordinates.
13
+
14
+ After the fish have been placed, each one may swim left and right freely
15
+ (continuously decreasing or increasing its x-coordinate), as long as it never
16
+ touches a divider (including its endpoints). Fish do not block one another
17
+ from swimming, so multiple fish are able to occupy the same coordinates.
18
+ However, no fish is able to change its y-coordinate.
19
+
20
+ At any given moment, each fish feels that its personal space is violated if
21
+ any other fish is currently at the same x-coordinate as it (either at its
22
+ current y-coordinate, or arbitrarily far above or below it). As such, if two
23
+ fish ever occupy the same x-coordinate as one another, they both become
24
+ unhappy.
25
+
26
+ Phineas suspects that someone's planning on stealing one of his dividers soon
27
+ after he places fish into the tank!
28
+
29
+ And he wants to ensure that none of his fish have any chance of becoming
30
+ unhappy!
31
+
32
+ But he still wants to have as many fish as possible!
33
+
34
+ As such, he'd like to determine the maximum number of fish which he can place
35
+ into the tank such that, no matter which single one of the **N** dividers is
36
+ subsequently removed, and no matter how the fish then decide to swim around,
37
+ none of the fish can ever become unhappy.
38
+
39
+ ### Input
40
+
41
+ Input begins with an integer **T**, the number of fish tanks. For each fish
42
+ tank, there is first a line containing the single integer **N**. Then, **N**
43
+ lines follow, the _i_th of which contains the 3 space-separated integers
44
+ **Xi**, **Ai**, and **Bi**.
45
+
46
+ ### Output
47
+
48
+ For the _i_th fish tank, output a line containing "Case #_i_: " followed by
49
+ the maximum number of fish which Phineas can place into the tank with no risk
50
+ of unhappiness.
51
+
52
+ ### Constraints
53
+
54
+ 1 ≤ **T** ≤ 90
55
+ 1 ≤ **N** ≤ 500,000
56
+ 0 ≤ **Xi** ≤ 1,000,000,000
57
+ 0 ≤ **Ai** < **Bi** ≤ 1,000,000,000
58
+
59
+ ### Explanation of Sample
60
+
61
+ In the first case, Phineas could, for example, place a fish at coordinates (5,
62
+ 5). If he placed another fish anywhere else in the tank (for example at
63
+ coordinates (-1, 2)), then if the single divider were removed, both fish would
64
+ be able to swim freely and might come to occupy the same x-coordinate as one
65
+ another.
66
+
67
+ In the second case, Phineas can place one fish at coordinates (-5, 5) and
68
+ another at coordinates (15, 5).
69
+
70
+ In the third case, no matter where Phineas might place two fish in the tank,
71
+ at least one choice of removed divider would result in them potentially
72
+ becoming unhappy.
73
+
2018/finals/personal.out ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: 1
2
+ Case #2: 2
3
+ Case #3: 1
4
+ Case #4: 3
5
+ Case #5: 12
6
+ Case #6: 250001
7
+ Case #7: 163168
8
+ Case #8: 166585
9
+ Case #9: 164528
10
+ Case #10: 1637
11
+ Case #11: 38
12
+ Case #12: 663
13
+ Case #13: 945
14
+ Case #14: 539
15
+ Case #15: 427
16
+ Case #16: 9
17
+ Case #17: 197
18
+ Case #18: 1371
19
+ Case #19: 327
20
+ Case #20: 8
21
+ Case #21: 1063
22
+ Case #22: 1079
23
+ Case #23: 1549
24
+ Case #24: 9
25
+ Case #25: 18
26
+ Case #26: 675
27
+ Case #27: 507
28
+ Case #28: 1067
29
+ Case #29: 1248
30
+ Case #30: 5
31
+ Case #31: 769
32
+ Case #32: 246
33
+ Case #33: 310
34
+ Case #34: 1350
35
+ Case #35: 1702
36
+ Case #36: 445
37
+ Case #37: 610
38
+ Case #38: 946
39
+ Case #39: 1109
40
+ Case #40: 1553
41
+ Case #41: 6
42
+ Case #42: 881
43
+ Case #43: 653
44
+ Case #44: 389
45
+ Case #45: 5
46
+ Case #46: 1689
47
+ Case #47: 49
48
+ Case #48: 1365
49
+ Case #49: 8
50
+ Case #50: 779
51
+ Case #51: 8
52
+ Case #52: 971
53
+ Case #53: 779
54
+ Case #54: 491
55
+ Case #55: 59
56
+ Case #56: 684
57
+ Case #57: 561
58
+ Case #58: 929
59
+ Case #59: 1547
60
+ Case #60: 21
61
+ Case #61: 7
62
+ Case #62: 608
63
+ Case #63: 857
64
+ Case #64: 6
65
+ Case #65: 872
66
+ Case #66: 570
67
+ Case #67: 253
68
+ Case #68: 782
69
+ Case #69: 504
70
+ Case #70: 6
71
+ Case #71: 7
72
+ Case #72: 611
73
+ Case #73: 1634
74
+ Case #74: 722
75
+ Case #75: 7
76
+ Case #76: 1487
77
+ Case #77: 1179
78
+ Case #78: 955
79
+ Case #79: 1486
80
+ Case #80: 735
81
+ Case #81: 1355
82
+ Case #82: 1090
83
+ Case #83: 1481
84
+ Case #84: 232
85
+ Case #85: 8
86
+ Case #86: 508
87
+ Case #87: 63
88
+ Case #88: 1368
89
+ Case #89: 7
90
+ Case #90: 391
2018/finals/stockholm.cpp ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Stockholm
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ pair<int,bool> Cost(string s)
89
+ {
90
+ if (!Sz(s))
91
+ return(mp(0,0));
92
+ int i=Sz(s)-1;
93
+ // delete equal digits from the end
94
+ while ((i) && (s[i]==s[i-1]))
95
+ i--;
96
+ // delete one more digit from the end
97
+ if (i)
98
+ i--;
99
+ // now empty?
100
+ if (!i)
101
+ return(mp(0,Sz(s)>=2 && s[0]==s[Sz(s)-1]));
102
+ pair<int,bool> c=Cost(s.substr(0,i));
103
+ c.x++;
104
+ return(c);
105
+ }
106
+
107
+ int main()
108
+ {
109
+ if (DEBUG)
110
+ freopen("in.txt","r",stdin);
111
+ // vars
112
+ int T,t;
113
+ LL A,B;
114
+ string X,Y;
115
+ int p,ans;
116
+ pair<int,bool> c1,c2;
117
+ // testcase loop
118
+ Read(T);
119
+ Fox1(t,T)
120
+ {
121
+ // input
122
+ scanf("%lld%lld",&A,&B);
123
+ // convert nodes to binary
124
+ A++,B++;
125
+ X=Y="";
126
+ while (A)
127
+ X=char(A%2+'0')+X,A/=2;
128
+ while (B)
129
+ Y=char(B%2+'0')+Y,B/=2;
130
+ // find LCA
131
+ Fox(p,min(Sz(X),Sz(Y)))
132
+ if (X[p]!=Y[p])
133
+ break;
134
+ // compute costs to LCA
135
+ X=X.substr(p);
136
+ Y=Y.substr(p);
137
+ c1=Cost(X),c2=Cost(Y);
138
+ ans=c1.x+c2.x;
139
+ // at least one node is coming from the outside, and neither is the LCA?
140
+ if ((Sz(X)) && (Sz(Y)) && (c1.y || c2.y))
141
+ ans++;
142
+ // output
143
+ printf("Case #%d: %d\n",t,ans);
144
+ }
145
+ return(0);
146
+ }
2018/finals/stockholm.html ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ Melody is visiting the beautiful city of Stockholm, Sweden! Stockholm has a number of waterways flowing through it, dividing the city up into a number of islands.
3
+ Like most visitors, Melody was surprised to learn that there are in fact an infinite number of waterways and an infinite number of islands!
4
+ </p>
5
+
6
+ <p>
7
+ The waterways flow between an infinite number of junctions, which are numbered with non-negative integers starting from 0.
8
+ There's an infinitely-long waterway flowing into junction 0, and then for each junction <em>j</em>,
9
+ there are two waterways flowing out of it into junctions 2<em>j</em>+1 and 2<em>j</em>+2. This results in each junction having exactly three incident waterways.
10
+ </p>
11
+
12
+ <p>
13
+ An island is a connected region of land. Each waterway is adjacent to two different islands (one on each side of it), and has a bridge connecting those two islands together.
14
+ Each junction is adjacent to three different islands (the distinct islands adjacent to its incident waterways).
15
+ </p>
16
+
17
+ <p>
18
+ A portion of Stockholm (including junctions 0 to 14) is illustrated below, with islands represented as contiguous regions filled with various shades of grey, and bridges between them represented as brown curves:
19
+ </p>
20
+
21
+ <img width="500px" src="{{PHOTO_ID:923060468192530}}" />
22
+
23
+ <p>
24
+ Melody is currently aboard a friend's boat parked at some junction <strong>A</strong>, but she wants to visit another friend's boat which is parked at a different junction <strong>B</strong>.
25
+ She'll begin by getting out of the first boat onto any of the three islands of her choice which are adjacent to junction <strong>A</strong>.
26
+ She'll then walk on land until she arrives at any of the three islands which are adjacent to junction <strong>B</strong>,
27
+ potentially crossing some bridges between islands along the way. Finally, she'll board the second boat from that island.
28
+ </p>
29
+
30
+ <p>
31
+ Melody's not a big fan of walking on Stockholm's rather unevenly cobbled bridges, so she'd like to cross as few of them as possible along the way.
32
+ Help her determine the minimum number of bridges which she must cross to walk from junction <strong>A</strong> to junction <strong>B</strong>!
33
+ </p>
34
+
35
+ <p>
36
+ For example, the following illustration indicates the only optimal path from junction 8 to junction 5 in red (crossing only 1 bridge),
37
+ and one of the optimal paths from junction 12 to junction 3 in yellow (crossing only 2 bridges):
38
+ </p>
39
+
40
+ <img width="500px" src="{{PHOTO_ID:293195401822038}}" />
41
+
42
+ <h3>Input</h3>
43
+
44
+ <p>
45
+ Input begins with an integer <strong>T</strong>, the number of times Melody needs to travel between two junctions.
46
+ For each trip, there is a single line containing the space-separated integers <strong>A</strong> and <strong>B</strong>.
47
+ </p>
48
+
49
+
50
+ <h3>Output</h3>
51
+
52
+ <p>
53
+ For the <em>i</em>th trip, output a line containing "Case #<em>i</em>: " followed by the minimum number of bridges which Melody must cross to walk from junction
54
+ <strong>A</strong> to junction <strong>B</strong>.
55
+ </p>
56
+
57
+
58
+ <h3>Constraints</h3>
59
+
60
+ <p>
61
+ 1 &le; <strong>T</strong> &le; 2,000 <br />
62
+ 0 &le; <strong>A</strong>, <strong>B</strong> &le; 10<sup>18</sup> <br />
63
+ <strong>A</strong> &ne; <strong>B</strong>
64
+ </p>
65
+
66
+
67
+ <h3>Explanation of Sample</h3>
68
+
69
+ <p>
70
+ The first two cases are described above.
71
+ </p>
72
+
73
+ <p>
74
+ In the third and fourth cases, it's unnecessary for Melody to cross any bridges.
75
+ </p>
76
+
2018/finals/stockholm.in ADDED
@@ -0,0 +1,2001 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2000
2
+ 8 5
3
+ 12 3
4
+ 0 1
5
+ 2 10
6
+ 7 14
7
+ 420 69
8
+ 80149 312
9
+ 123456 654321
10
+ 672525845223757474 339224993515259183
11
+ 0 1000000000000000000
12
+ 0 1
13
+ 0 2
14
+ 0 3
15
+ 0 4
16
+ 0 5
17
+ 0 6
18
+ 0 7
19
+ 0 8
20
+ 0 9
21
+ 0 10
22
+ 0 11
23
+ 0 12
24
+ 0 13
25
+ 0 14
26
+ 0 15
27
+ 0 16
28
+ 0 17
29
+ 0 18
30
+ 0 19
31
+ 0 20
32
+ 0 21
33
+ 0 22
34
+ 0 23
35
+ 0 24
36
+ 0 25
37
+ 0 26
38
+ 0 27
39
+ 0 28
40
+ 0 29
41
+ 0 30
42
+ 0 31
43
+ 0 32
44
+ 1 0
45
+ 1 2
46
+ 1 3
47
+ 1 4
48
+ 1 5
49
+ 1 6
50
+ 1 7
51
+ 1 8
52
+ 1 9
53
+ 1 10
54
+ 1 11
55
+ 1 12
56
+ 1 13
57
+ 1 14
58
+ 1 15
59
+ 1 16
60
+ 1 17
61
+ 1 18
62
+ 1 19
63
+ 1 20
64
+ 1 21
65
+ 1 22
66
+ 1 23
67
+ 1 24
68
+ 1 25
69
+ 1 26
70
+ 1 27
71
+ 1 28
72
+ 1 29
73
+ 1 30
74
+ 1 31
75
+ 1 32
76
+ 2 0
77
+ 2 1
78
+ 2 3
79
+ 2 4
80
+ 2 5
81
+ 2 6
82
+ 2 7
83
+ 2 8
84
+ 2 9
85
+ 2 10
86
+ 2 11
87
+ 2 12
88
+ 2 13
89
+ 2 14
90
+ 2 15
91
+ 2 16
92
+ 2 17
93
+ 2 18
94
+ 2 19
95
+ 2 20
96
+ 2 21
97
+ 2 22
98
+ 2 23
99
+ 2 24
100
+ 2 25
101
+ 2 26
102
+ 2 27
103
+ 2 28
104
+ 2 29
105
+ 2 30
106
+ 2 31
107
+ 2 32
108
+ 3 0
109
+ 3 1
110
+ 3 2
111
+ 3 4
112
+ 3 5
113
+ 3 6
114
+ 3 7
115
+ 3 8
116
+ 3 9
117
+ 3 10
118
+ 3 11
119
+ 3 12
120
+ 3 13
121
+ 3 14
122
+ 3 15
123
+ 3 16
124
+ 3 17
125
+ 3 18
126
+ 3 19
127
+ 3 20
128
+ 3 21
129
+ 3 22
130
+ 3 23
131
+ 3 24
132
+ 3 25
133
+ 3 26
134
+ 3 27
135
+ 3 28
136
+ 3 29
137
+ 3 30
138
+ 3 31
139
+ 3 32
140
+ 4 0
141
+ 4 1
142
+ 4 2
143
+ 4 3
144
+ 4 5
145
+ 4 6
146
+ 4 7
147
+ 4 8
148
+ 4 9
149
+ 4 10
150
+ 4 11
151
+ 4 12
152
+ 4 13
153
+ 4 14
154
+ 4 15
155
+ 4 16
156
+ 4 17
157
+ 4 18
158
+ 4 19
159
+ 4 20
160
+ 4 21
161
+ 4 22
162
+ 4 23
163
+ 4 24
164
+ 4 25
165
+ 4 26
166
+ 4 27
167
+ 4 28
168
+ 4 29
169
+ 4 30
170
+ 4 31
171
+ 4 32
172
+ 5 0
173
+ 5 1
174
+ 5 2
175
+ 5 3
176
+ 5 4
177
+ 5 6
178
+ 5 7
179
+ 5 8
180
+ 5 9
181
+ 5 10
182
+ 5 11
183
+ 5 12
184
+ 5 13
185
+ 5 14
186
+ 5 15
187
+ 5 16
188
+ 5 17
189
+ 5 18
190
+ 5 19
191
+ 5 20
192
+ 5 21
193
+ 5 22
194
+ 5 23
195
+ 5 24
196
+ 5 25
197
+ 5 26
198
+ 5 27
199
+ 5 28
200
+ 5 29
201
+ 5 30
202
+ 5 31
203
+ 5 32
204
+ 6 0
205
+ 6 1
206
+ 6 2
207
+ 6 3
208
+ 6 4
209
+ 6 5
210
+ 6 7
211
+ 6 8
212
+ 6 9
213
+ 6 10
214
+ 6 11
215
+ 6 12
216
+ 6 13
217
+ 6 14
218
+ 6 15
219
+ 6 16
220
+ 6 17
221
+ 6 18
222
+ 6 19
223
+ 6 20
224
+ 6 21
225
+ 6 22
226
+ 6 23
227
+ 6 24
228
+ 6 25
229
+ 6 26
230
+ 6 27
231
+ 6 28
232
+ 6 29
233
+ 6 30
234
+ 6 31
235
+ 6 32
236
+ 7 0
237
+ 7 1
238
+ 7 2
239
+ 7 3
240
+ 7 4
241
+ 7 5
242
+ 7 6
243
+ 7 8
244
+ 7 9
245
+ 7 10
246
+ 7 11
247
+ 7 12
248
+ 7 13
249
+ 7 14
250
+ 7 15
251
+ 7 16
252
+ 7 17
253
+ 7 18
254
+ 7 19
255
+ 7 20
256
+ 7 21
257
+ 7 22
258
+ 7 23
259
+ 7 24
260
+ 7 25
261
+ 7 26
262
+ 7 27
263
+ 7 28
264
+ 7 29
265
+ 7 30
266
+ 7 31
267
+ 7 32
268
+ 8 0
269
+ 8 1
270
+ 8 2
271
+ 8 3
272
+ 8 4
273
+ 8 5
274
+ 8 6
275
+ 8 7
276
+ 8 9
277
+ 8 10
278
+ 8 11
279
+ 8 12
280
+ 8 13
281
+ 8 14
282
+ 8 15
283
+ 8 16
284
+ 8 17
285
+ 8 18
286
+ 8 19
287
+ 8 20
288
+ 8 21
289
+ 8 22
290
+ 8 23
291
+ 8 24
292
+ 8 25
293
+ 8 26
294
+ 8 27
295
+ 8 28
296
+ 8 29
297
+ 8 30
298
+ 8 31
299
+ 8 32
300
+ 9 0
301
+ 9 1
302
+ 9 2
303
+ 9 3
304
+ 9 4
305
+ 9 5
306
+ 9 6
307
+ 9 7
308
+ 9 8
309
+ 9 10
310
+ 9 11
311
+ 9 12
312
+ 9 13
313
+ 9 14
314
+ 9 15
315
+ 9 16
316
+ 9 17
317
+ 9 18
318
+ 9 19
319
+ 9 20
320
+ 9 21
321
+ 9 22
322
+ 9 23
323
+ 9 24
324
+ 9 25
325
+ 9 26
326
+ 9 27
327
+ 9 28
328
+ 9 29
329
+ 9 30
330
+ 9 31
331
+ 9 32
332
+ 10 0
333
+ 10 1
334
+ 10 2
335
+ 10 3
336
+ 10 4
337
+ 10 5
338
+ 10 6
339
+ 10 7
340
+ 10 8
341
+ 10 9
342
+ 10 11
343
+ 10 12
344
+ 10 13
345
+ 10 14
346
+ 10 15
347
+ 10 16
348
+ 10 17
349
+ 10 18
350
+ 10 19
351
+ 10 20
352
+ 10 21
353
+ 10 22
354
+ 10 23
355
+ 10 24
356
+ 10 25
357
+ 10 26
358
+ 10 27
359
+ 10 28
360
+ 10 29
361
+ 10 30
362
+ 10 31
363
+ 10 32
364
+ 11 0
365
+ 11 1
366
+ 11 2
367
+ 11 3
368
+ 11 4
369
+ 11 5
370
+ 11 6
371
+ 11 7
372
+ 11 8
373
+ 11 9
374
+ 11 10
375
+ 11 12
376
+ 11 13
377
+ 11 14
378
+ 11 15
379
+ 11 16
380
+ 11 17
381
+ 11 18
382
+ 11 19
383
+ 11 20
384
+ 11 21
385
+ 11 22
386
+ 11 23
387
+ 11 24
388
+ 11 25
389
+ 11 26
390
+ 11 27
391
+ 11 28
392
+ 11 29
393
+ 11 30
394
+ 11 31
395
+ 11 32
396
+ 12 0
397
+ 12 1
398
+ 12 2
399
+ 12 3
400
+ 12 4
401
+ 12 5
402
+ 12 6
403
+ 12 7
404
+ 12 8
405
+ 12 9
406
+ 12 10
407
+ 12 11
408
+ 12 13
409
+ 12 14
410
+ 12 15
411
+ 12 16
412
+ 12 17
413
+ 12 18
414
+ 12 19
415
+ 12 20
416
+ 12 21
417
+ 12 22
418
+ 12 23
419
+ 12 24
420
+ 12 25
421
+ 12 26
422
+ 12 27
423
+ 12 28
424
+ 12 29
425
+ 12 30
426
+ 12 31
427
+ 12 32
428
+ 13 0
429
+ 13 1
430
+ 13 2
431
+ 13 3
432
+ 13 4
433
+ 13 5
434
+ 13 6
435
+ 13 7
436
+ 13 8
437
+ 13 9
438
+ 13 10
439
+ 13 11
440
+ 13 12
441
+ 13 14
442
+ 13 15
443
+ 13 16
444
+ 13 17
445
+ 13 18
446
+ 13 19
447
+ 13 20
448
+ 13 21
449
+ 13 22
450
+ 13 23
451
+ 13 24
452
+ 13 25
453
+ 13 26
454
+ 13 27
455
+ 13 28
456
+ 13 29
457
+ 13 30
458
+ 13 31
459
+ 13 32
460
+ 14 0
461
+ 14 1
462
+ 14 2
463
+ 14 3
464
+ 14 4
465
+ 14 5
466
+ 14 6
467
+ 14 7
468
+ 14 8
469
+ 14 9
470
+ 14 10
471
+ 14 11
472
+ 14 12
473
+ 14 13
474
+ 14 15
475
+ 14 16
476
+ 14 17
477
+ 14 18
478
+ 14 19
479
+ 14 20
480
+ 14 21
481
+ 14 22
482
+ 14 23
483
+ 14 24
484
+ 14 25
485
+ 14 26
486
+ 14 27
487
+ 14 28
488
+ 14 29
489
+ 14 30
490
+ 14 31
491
+ 14 32
492
+ 15 0
493
+ 15 1
494
+ 15 2
495
+ 15 3
496
+ 15 4
497
+ 15 5
498
+ 15 6
499
+ 15 7
500
+ 15 8
501
+ 15 9
502
+ 15 10
503
+ 15 11
504
+ 15 12
505
+ 15 13
506
+ 15 14
507
+ 15 16
508
+ 15 17
509
+ 15 18
510
+ 15 19
511
+ 15 20
512
+ 15 21
513
+ 15 22
514
+ 15 23
515
+ 15 24
516
+ 15 25
517
+ 15 26
518
+ 15 27
519
+ 15 28
520
+ 15 29
521
+ 15 30
522
+ 15 31
523
+ 15 32
524
+ 16 0
525
+ 16 1
526
+ 16 2
527
+ 16 3
528
+ 16 4
529
+ 16 5
530
+ 16 6
531
+ 16 7
532
+ 16 8
533
+ 16 9
534
+ 16 10
535
+ 16 11
536
+ 16 12
537
+ 16 13
538
+ 16 14
539
+ 16 15
540
+ 16 17
541
+ 16 18
542
+ 16 19
543
+ 16 20
544
+ 16 21
545
+ 16 22
546
+ 16 23
547
+ 16 24
548
+ 16 25
549
+ 16 26
550
+ 16 27
551
+ 16 28
552
+ 16 29
553
+ 16 30
554
+ 16 31
555
+ 16 32
556
+ 17 0
557
+ 17 1
558
+ 17 2
559
+ 17 3
560
+ 17 4
561
+ 17 5
562
+ 17 6
563
+ 17 7
564
+ 17 8
565
+ 17 9
566
+ 17 10
567
+ 17 11
568
+ 17 12
569
+ 17 13
570
+ 17 14
571
+ 17 15
572
+ 17 16
573
+ 17 18
574
+ 17 19
575
+ 17 20
576
+ 17 21
577
+ 17 22
578
+ 17 23
579
+ 17 24
580
+ 17 25
581
+ 17 26
582
+ 17 27
583
+ 17 28
584
+ 17 29
585
+ 17 30
586
+ 17 31
587
+ 17 32
588
+ 18 0
589
+ 18 1
590
+ 18 2
591
+ 18 3
592
+ 18 4
593
+ 18 5
594
+ 18 6
595
+ 18 7
596
+ 18 8
597
+ 18 9
598
+ 18 10
599
+ 18 11
600
+ 18 12
601
+ 18 13
602
+ 18 14
603
+ 18 15
604
+ 18 16
605
+ 18 17
606
+ 18 19
607
+ 18 20
608
+ 18 21
609
+ 18 22
610
+ 18 23
611
+ 18 24
612
+ 18 25
613
+ 18 26
614
+ 18 27
615
+ 18 28
616
+ 18 29
617
+ 18 30
618
+ 18 31
619
+ 18 32
620
+ 19 0
621
+ 19 1
622
+ 19 2
623
+ 19 3
624
+ 19 4
625
+ 19 5
626
+ 19 6
627
+ 19 7
628
+ 19 8
629
+ 19 9
630
+ 19 10
631
+ 19 11
632
+ 19 12
633
+ 19 13
634
+ 19 14
635
+ 19 15
636
+ 19 16
637
+ 19 17
638
+ 19 18
639
+ 19 20
640
+ 19 21
641
+ 19 22
642
+ 19 23
643
+ 19 24
644
+ 19 25
645
+ 19 26
646
+ 19 27
647
+ 19 28
648
+ 19 29
649
+ 19 30
650
+ 19 31
651
+ 19 32
652
+ 20 0
653
+ 20 1
654
+ 20 2
655
+ 20 3
656
+ 20 4
657
+ 20 5
658
+ 20 6
659
+ 20 7
660
+ 20 8
661
+ 20 9
662
+ 20 10
663
+ 20 11
664
+ 20 12
665
+ 20 13
666
+ 20 14
667
+ 20 15
668
+ 20 16
669
+ 20 17
670
+ 20 18
671
+ 20 19
672
+ 20 21
673
+ 20 22
674
+ 20 23
675
+ 20 24
676
+ 20 25
677
+ 20 26
678
+ 20 27
679
+ 20 28
680
+ 20 29
681
+ 20 30
682
+ 20 31
683
+ 20 32
684
+ 21 0
685
+ 21 1
686
+ 21 2
687
+ 21 3
688
+ 21 4
689
+ 21 5
690
+ 21 6
691
+ 21 7
692
+ 21 8
693
+ 21 9
694
+ 21 10
695
+ 21 11
696
+ 21 12
697
+ 21 13
698
+ 21 14
699
+ 21 15
700
+ 21 16
701
+ 21 17
702
+ 21 18
703
+ 21 19
704
+ 21 20
705
+ 21 22
706
+ 21 23
707
+ 21 24
708
+ 21 25
709
+ 21 26
710
+ 21 27
711
+ 21 28
712
+ 21 29
713
+ 21 30
714
+ 21 31
715
+ 21 32
716
+ 22 0
717
+ 22 1
718
+ 22 2
719
+ 22 3
720
+ 22 4
721
+ 22 5
722
+ 22 6
723
+ 22 7
724
+ 22 8
725
+ 22 9
726
+ 22 10
727
+ 22 11
728
+ 22 12
729
+ 22 13
730
+ 22 14
731
+ 22 15
732
+ 22 16
733
+ 22 17
734
+ 22 18
735
+ 22 19
736
+ 22 20
737
+ 22 21
738
+ 22 23
739
+ 22 24
740
+ 22 25
741
+ 22 26
742
+ 22 27
743
+ 22 28
744
+ 22 29
745
+ 22 30
746
+ 22 31
747
+ 22 32
748
+ 23 0
749
+ 23 1
750
+ 23 2
751
+ 23 3
752
+ 23 4
753
+ 23 5
754
+ 23 6
755
+ 23 7
756
+ 23 8
757
+ 23 9
758
+ 23 10
759
+ 23 11
760
+ 23 12
761
+ 23 13
762
+ 23 14
763
+ 23 15
764
+ 23 16
765
+ 23 17
766
+ 23 18
767
+ 23 19
768
+ 23 20
769
+ 23 21
770
+ 23 22
771
+ 23 24
772
+ 23 25
773
+ 23 26
774
+ 23 27
775
+ 23 28
776
+ 23 29
777
+ 23 30
778
+ 23 31
779
+ 23 32
780
+ 24 0
781
+ 24 1
782
+ 24 2
783
+ 24 3
784
+ 24 4
785
+ 24 5
786
+ 24 6
787
+ 24 7
788
+ 24 8
789
+ 24 9
790
+ 24 10
791
+ 24 11
792
+ 24 12
793
+ 24 13
794
+ 24 14
795
+ 24 15
796
+ 24 16
797
+ 24 17
798
+ 24 18
799
+ 24 19
800
+ 24 20
801
+ 24 21
802
+ 24 22
803
+ 24 23
804
+ 24 25
805
+ 24 26
806
+ 24 27
807
+ 24 28
808
+ 24 29
809
+ 24 30
810
+ 24 31
811
+ 24 32
812
+ 25 0
813
+ 25 1
814
+ 25 2
815
+ 25 3
816
+ 25 4
817
+ 25 5
818
+ 25 6
819
+ 25 7
820
+ 25 8
821
+ 25 9
822
+ 25 10
823
+ 25 11
824
+ 25 12
825
+ 25 13
826
+ 25 14
827
+ 25 15
828
+ 25 16
829
+ 25 17
830
+ 25 18
831
+ 25 19
832
+ 25 20
833
+ 25 21
834
+ 25 22
835
+ 25 23
836
+ 25 24
837
+ 25 26
838
+ 25 27
839
+ 25 28
840
+ 25 29
841
+ 25 30
842
+ 25 31
843
+ 25 32
844
+ 26 0
845
+ 26 1
846
+ 26 2
847
+ 26 3
848
+ 26 4
849
+ 26 5
850
+ 26 6
851
+ 26 7
852
+ 26 8
853
+ 26 9
854
+ 26 10
855
+ 26 11
856
+ 26 12
857
+ 26 13
858
+ 26 14
859
+ 26 15
860
+ 26 16
861
+ 26 17
862
+ 26 18
863
+ 26 19
864
+ 26 20
865
+ 26 21
866
+ 26 22
867
+ 26 23
868
+ 26 24
869
+ 26 25
870
+ 26 27
871
+ 26 28
872
+ 26 29
873
+ 26 30
874
+ 26 31
875
+ 26 32
876
+ 27 0
877
+ 27 1
878
+ 27 2
879
+ 27 3
880
+ 27 4
881
+ 27 5
882
+ 27 6
883
+ 27 7
884
+ 27 8
885
+ 27 9
886
+ 27 10
887
+ 27 11
888
+ 27 12
889
+ 27 13
890
+ 27 14
891
+ 27 15
892
+ 27 16
893
+ 27 17
894
+ 27 18
895
+ 27 19
896
+ 27 20
897
+ 27 21
898
+ 27 22
899
+ 27 23
900
+ 27 24
901
+ 27 25
902
+ 27 26
903
+ 27 28
904
+ 27 29
905
+ 27 30
906
+ 27 31
907
+ 27 32
908
+ 28 0
909
+ 28 1
910
+ 28 2
911
+ 28 3
912
+ 28 4
913
+ 28 5
914
+ 28 6
915
+ 28 7
916
+ 28 8
917
+ 28 9
918
+ 28 10
919
+ 28 11
920
+ 28 12
921
+ 28 13
922
+ 28 14
923
+ 28 15
924
+ 28 16
925
+ 28 17
926
+ 28 18
927
+ 28 19
928
+ 28 20
929
+ 28 21
930
+ 28 22
931
+ 28 23
932
+ 28 24
933
+ 28 25
934
+ 28 26
935
+ 28 27
936
+ 28 29
937
+ 28 30
938
+ 28 31
939
+ 28 32
940
+ 29 0
941
+ 29 1
942
+ 29 2
943
+ 29 3
944
+ 29 4
945
+ 29 5
946
+ 29 6
947
+ 29 7
948
+ 29 8
949
+ 29 9
950
+ 29 10
951
+ 29 11
952
+ 29 12
953
+ 29 13
954
+ 29 14
955
+ 29 15
956
+ 29 16
957
+ 29 17
958
+ 29 18
959
+ 29 19
960
+ 29 20
961
+ 29 21
962
+ 29 22
963
+ 29 23
964
+ 29 24
965
+ 29 25
966
+ 29 26
967
+ 29 27
968
+ 29 28
969
+ 29 30
970
+ 29 31
971
+ 29 32
972
+ 30 0
973
+ 30 1
974
+ 30 2
975
+ 30 3
976
+ 30 4
977
+ 30 5
978
+ 30 6
979
+ 30 7
980
+ 30 8
981
+ 30 9
982
+ 30 10
983
+ 30 11
984
+ 30 12
985
+ 30 13
986
+ 30 14
987
+ 30 15
988
+ 30 16
989
+ 30 17
990
+ 30 18
991
+ 30 19
992
+ 30 20
993
+ 30 21
994
+ 30 22
995
+ 30 23
996
+ 30 24
997
+ 30 25
998
+ 30 26
999
+ 30 27
1000
+ 30 28
1001
+ 30 29
1002
+ 30 31
1003
+ 30 32
1004
+ 31 0
1005
+ 31 1
1006
+ 31 2
1007
+ 31 3
1008
+ 31 4
1009
+ 31 5
1010
+ 31 6
1011
+ 31 7
1012
+ 31 8
1013
+ 31 9
1014
+ 31 10
1015
+ 31 11
1016
+ 31 12
1017
+ 31 13
1018
+ 31 14
1019
+ 31 15
1020
+ 31 16
1021
+ 31 17
1022
+ 31 18
1023
+ 31 19
1024
+ 31 20
1025
+ 31 21
1026
+ 31 22
1027
+ 31 23
1028
+ 31 24
1029
+ 31 25
1030
+ 31 26
1031
+ 31 27
1032
+ 31 28
1033
+ 31 29
1034
+ 31 30
1035
+ 31 32
1036
+ 32 0
1037
+ 32 1
1038
+ 32 2
1039
+ 32 3
1040
+ 32 4
1041
+ 32 5
1042
+ 32 6
1043
+ 32 7
1044
+ 32 8
1045
+ 32 9
1046
+ 32 10
1047
+ 32 11
1048
+ 32 12
1049
+ 32 13
1050
+ 32 14
1051
+ 32 15
1052
+ 32 16
1053
+ 32 17
1054
+ 32 18
1055
+ 32 19
1056
+ 32 20
1057
+ 32 21
1058
+ 32 22
1059
+ 32 23
1060
+ 32 24
1061
+ 32 25
1062
+ 32 26
1063
+ 32 27
1064
+ 32 28
1065
+ 32 29
1066
+ 32 30
1067
+ 32 31
1068
+ 1000000000000000000 349368581324689411
1069
+ 1000000000000000000 873228117969035833
1070
+ 1000000000000000000 169142095521673988
1071
+ 1000000000000000000 666856927867095542
1072
+ 1000000000000000000 437076515102200491
1073
+ 1000000000000000000 402845560977542596
1074
+ 1000000000000000000 596610676664024382
1075
+ 1000000000000000000 752005285958182812
1076
+ 1000000000000000000 876906826618681779
1077
+ 1000000000000000000 139629349197703953
1078
+ 1000000000000000000 633209192711064843
1079
+ 1000000000000000000 680927180308137058
1080
+ 1000000000000000000 130794385213253593
1081
+ 1000000000000000000 458259862060591548
1082
+ 1000000000000000000 512854540967187894
1083
+ 1000000000000000000 414671234563849541
1084
+ 1000000000000000000 987533369580103705
1085
+ 1000000000000000000 575511015701993146
1086
+ 1000000000000000000 338124771244293705
1087
+ 1000000000000000000 403028318078949997
1088
+ 1000000000000000000 287571106036912447
1089
+ 1000000000000000000 621005699048032068
1090
+ 1000000000000000000 488240945934164534
1091
+ 1000000000000000000 377180077995415006
1092
+ 1000000000000000000 96644672823152622
1093
+ 1000000000000000000 967814155663292728
1094
+ 1000000000000000000 189384998373724110
1095
+ 1000000000000000000 430439463577276250
1096
+ 1000000000000000000 751616795795074669
1097
+ 1000000000000000000 776529889808835094
1098
+ 191622369476078419 1000000000000000000
1099
+ 429652220417903343 1000000000000000000
1100
+ 971778509028413663 1000000000000000000
1101
+ 829800607389256533 1000000000000000000
1102
+ 729784273778069419 1000000000000000000
1103
+ 809447912160554855 1000000000000000000
1104
+ 773216715503372457 1000000000000000000
1105
+ 926481567087878956 1000000000000000000
1106
+ 622779086577025699 1000000000000000000
1107
+ 449140783369468367 1000000000000000000
1108
+ 370670709399417772 1000000000000000000
1109
+ 363360021573058003 1000000000000000000
1110
+ 927561503416378385 1000000000000000000
1111
+ 9218322662581885 1000000000000000000
1112
+ 582310917023697115 1000000000000000000
1113
+ 379716336646308969 1000000000000000000
1114
+ 169984850674136617 1000000000000000000
1115
+ 641090393265617683 1000000000000000000
1116
+ 464334009954651839 1000000000000000000
1117
+ 280621687791532812 1000000000000000000
1118
+ 857735417850571251 1000000000000000000
1119
+ 35769551687973860 1000000000000000000
1120
+ 269471442274513506 1000000000000000000
1121
+ 694254293417199139 1000000000000000000
1122
+ 514791239589124229 1000000000000000000
1123
+ 488290409354496687 1000000000000000000
1124
+ 6815675656276037 1000000000000000000
1125
+ 104922485709893063 1000000000000000000
1126
+ 817446449856405639 1000000000000000000
1127
+ 671312550006618693 1000000000000000000
1128
+ 960767920505705813 768614336404564650
1129
+ 960767920505705812 768614336404564649
1130
+ 960767920505705811 768614336404564648
1131
+ 960767920505705810 768614336404564647
1132
+ 960767920505705809 768614336404564646
1133
+ 960767920505705808 768614336404564645
1134
+ 960767920505705807 768614336404564644
1135
+ 960767920505705806 768614336404564643
1136
+ 960767920505705805 768614336404564642
1137
+ 960767920505705804 768614336404564641
1138
+ 960767920505705803 768614336404564640
1139
+ 960767920505705802 768614336404564639
1140
+ 960767920505705801 768614336404564638
1141
+ 960767920505705800 768614336404564637
1142
+ 960767920505705799 768614336404564636
1143
+ 960767920505705798 768614336404564635
1144
+ 960767920505705797 768614336404564634
1145
+ 960767920505705796 768614336404564633
1146
+ 960767920505705795 768614336404564632
1147
+ 960767920505705794 768614336404564631
1148
+ 960767920505705793 768614336404564630
1149
+ 960767920505705792 768614336404564629
1150
+ 960767920505705791 768614336404564628
1151
+ 960767920505705790 768614336404564627
1152
+ 960767920505705789 768614336404564626
1153
+ 960767920505705788 768614336404564625
1154
+ 960767920505705787 768614336404564624
1155
+ 960767920505705786 768614336404564623
1156
+ 960767920505705785 768614336404564622
1157
+ 960767920505705784 768614336404564621
1158
+ 794166570432100569 419900850602941191
1159
+ 306013813044626610 172927150405552409
1160
+ 189967430241517578 650460549643338036
1161
+ 203153722279522907 372935830368030611
1162
+ 504035899974979624 853716678178098225
1163
+ 337788650745541908 571002739536411920
1164
+ 306403202187076146 617762083950056770
1165
+ 450598865959589838 61325509479851408
1166
+ 129297737636248692 566716868259487933
1167
+ 766195690777452002 26174737244452035
1168
+ 54970198227727135 811849928627027856
1169
+ 263509925049119874 520596419025702741
1170
+ 597323318399719900 890409495863776732
1171
+ 621021294750778258 962412889025077961
1172
+ 972571917650657791 518336367017684385
1173
+ 914394857753122690 401421106486521724
1174
+ 965040761819515262 418454634066700131
1175
+ 458492993446679218 325187876309802725
1176
+ 389840295203236826 885042709156379053
1177
+ 811000964496220611 855028818568975990
1178
+ 965649840784485596 994223045663219278
1179
+ 929027456316148728 131087980778456928
1180
+ 466670005981357111 412495137501326050
1181
+ 445890263705118341 332893655201332726
1182
+ 397455527115636248 862763696745618618
1183
+ 8740812823738431 908372960157883083
1184
+ 414003650586117564 424016742453543210
1185
+ 482470129170996287 353962746042200922
1186
+ 897144807042080277 314968416577618488
1187
+ 350335743935700243 825589226041569007
1188
+ 954077214865082320 192685708936682160
1189
+ 11497225932185536 202159468640756225
1190
+ 198416768011359584 145767871602428220
1191
+ 908025217352253782 981083625566711645
1192
+ 969317008857914961 652811879228099333
1193
+ 810455808137401004 784565805678743939
1194
+ 872298966935518339 495854247117423989
1195
+ 888346233901939124 777843890863319719
1196
+ 907515251735276591 317565283846499172
1197
+ 930942993830603262 897334342185383440
1198
+ 966296390671741642 962173451040938106
1199
+ 155772391479828441 783572775176534707
1200
+ 817087845979005663 91314035020668813
1201
+ 285342034272697653 647813228318627687
1202
+ 113395914728588794 663577512115004968
1203
+ 723195004257114196 254174279125644632
1204
+ 264978900743361286 521732055437810936
1205
+ 699914743620870590 337859554572659145
1206
+ 965914108712037974 552102752769712805
1207
+ 757353028898636493 912757599530718487
1208
+ 568709646169722871 552403934348852962
1209
+ 570089865916360517 352959028388579101
1210
+ 639894353943113761 923601272023703945
1211
+ 853255176391578480 945799580327535761
1212
+ 581952938041120325 351649969703978340
1213
+ 662770185222220537 790597521643499758
1214
+ 38805401916780756 72736471110477345
1215
+ 459490424407311441 255743110554558092
1216
+ 289647168584117100 288629315880947780
1217
+ 464479874150374583 516466838586346969
1218
+ 342843195384828585 974391520676149672
1219
+ 498495696547208589 445136163031238588
1220
+ 548984431971260156 837585054694579035
1221
+ 474596998613564826 171428842803279445
1222
+ 193461471096090662 542990992330670844
1223
+ 662979024749456564 33861734548181166
1224
+ 258009037205548895 455553370203599566
1225
+ 928154547454469625 28279396026507065
1226
+ 295164354732070053 170684168395773163
1227
+ 180882417206862278 639271368039003768
1228
+ 748876021204224781 595406364401125772
1229
+ 958614170330564301 743126342234366752
1230
+ 385394463744526368 79379874176280536
1231
+ 82015154330052900 443608738042266988
1232
+ 162417643393344959 79199378456325117
1233
+ 639567367439011667 764781159762423004
1234
+ 96969035872950284 936276450577865045
1235
+ 793810120203111440 669920877874881165
1236
+ 909126052529472082 99435511120885179
1237
+ 181965599094841594 165209172415557811
1238
+ 362995182574267500 495383944241729579
1239
+ 670171484181718693 295151426586982061
1240
+ 636258906497806456 655031801139304103
1241
+ 630231850742755059 88064930307260832
1242
+ 666967972163924704 114082827115542661
1243
+ 167246372259322471 768969943019794210
1244
+ 970398481661233361 393595670168670380
1245
+ 831427338824496231 145558656494977914
1246
+ 100346286322743375 847951316338043144
1247
+ 110515578804943798 251711460165176214
1248
+ 439061321662376961 393713397321725323
1249
+ 786162762254603979 335298346659656755
1250
+ 914988245284133033 696401039601469987
1251
+ 644248585229606413 627890776792265196
1252
+ 551913228694133025 964157889053327538
1253
+ 42847225455577402 499665366384451883
1254
+ 436368321299048926 602769094261637531
1255
+ 19755989001992805 67532008532213801
1256
+ 518960370908588773 893474897897067049
1257
+ 897084817620190736 809085085732341972
1258
+ 602796227597536445 308515815250249687
1259
+ 772978324903722120 97814763347886749
1260
+ 936018551069804285 164249363279958966
1261
+ 685651160186603494 296679793427658442
1262
+ 950981009573811243 862238662472845507
1263
+ 609317820906356025 44611717239512483
1264
+ 375596847732307306 324317842464478388
1265
+ 45259211338353795 435063768454143842
1266
+ 646922327186689043 220191226452002370
1267
+ 656463240818771400 58543269940853858
1268
+ 405300333574069281 690429107304086543
1269
+ 667619061836663837 750553045587007822
1270
+ 98256650754068722 423319182602949153
1271
+ 749468968215288675 270155784356615931
1272
+ 501525209990600955 242662862481025096
1273
+ 909934272184742635 19321138637593622
1274
+ 916643476626054531 486976206201532369
1275
+ 711879351139804861 741811382980191271
1276
+ 452291959155696628 34529084901328650
1277
+ 138848736403329202 8659038067892180
1278
+ 336601659506827942 636471760790110596
1279
+ 631074856053502132 861721506357757223
1280
+ 807594895733595729 100483542981677314
1281
+ 723770081153251786 757417259230761588
1282
+ 467585283184417484 975621797638756173
1283
+ 240686953094020413 911448634507689925
1284
+ 665853579305802465 963284831120146478
1285
+ 606031396156466294 526331717596905367
1286
+ 208038940940133939 26925585449940051
1287
+ 850978943426266882 631703152276406047
1288
+ 292637206685493166 604952080266116044
1289
+ 108287259046763309 578417508312051461
1290
+ 682592332494031954 372700282734798906
1291
+ 93982125486339344 509075348100559279
1292
+ 667537267407499146 87233564398183406
1293
+ 180060638656756270 270563907816892437
1294
+ 132382397834199844 39773255601798829
1295
+ 515340190324277233 247951771663652923
1296
+ 684704583551861388 637027880422106225
1297
+ 437039864759760014 77241547907063505
1298
+ 346266140042695329 590473752035294632
1299
+ 162918844391747955 988115989424423227
1300
+ 136262919492478643 629080887194806458
1301
+ 145680835893120489 183253636166403454
1302
+ 266691122053456646 188379078842473561
1303
+ 353404710634472858 723021494795911179
1304
+ 624394788209056951 358607411216878321
1305
+ 48212531116713204 101591839898527559
1306
+ 326022285405596887 107948029284752453
1307
+ 294910376803795789 690055676621470898
1308
+ 686817475603079207 54315262100984552
1309
+ 667974949778098631 141850214968776946
1310
+ 520751364635143055 254337930685562281
1311
+ 896226347140858670 977752203562185465
1312
+ 920702944886401028 224593634851449072
1313
+ 434376886866396824 699854871133061448
1314
+ 545187842884815307 846396228144255714
1315
+ 698894884242001921 112942629354138959
1316
+ 673383966262101403 583613480044347910
1317
+ 976299388473485440 776482651425442905
1318
+ 506729001657340281 291122324101249117
1319
+ 549002738973843975 162846714276166961
1320
+ 33133918534584994 285583421003126192
1321
+ 977255910613797825 422449167815847026
1322
+ 811557520877064386 810828977780282101
1323
+ 516192745705144816 843386787408829868
1324
+ 616535270750866180 591057008095542415
1325
+ 736620686818759110 109847151440510320
1326
+ 171779590105616461 994073729771440925
1327
+ 830960543277886492 651993384369479872
1328
+ 216071682967883292 571978105391711597
1329
+ 437897665679381808 45684522588939035
1330
+ 958639036058581634 148528834888274518
1331
+ 980585277943321637 799008310261720432
1332
+ 827663128305517355 182574100921408405
1333
+ 470899284806737847 394122134346180918
1334
+ 675806477097120338 116113602384740519
1335
+ 405372136571002869 145433780861331568
1336
+ 643527584847216678 457617711126655641
1337
+ 127241420126964343 824698615781909443
1338
+ 912201721512435230 57290394715870867
1339
+ 735154270638459114 238454036033690152
1340
+ 241862255120976501 143826614735305309
1341
+ 665237135344571877 434512930111297946
1342
+ 475337442266784862 84443507815363671
1343
+ 378736192665981960 252540793274038319
1344
+ 705076293432953784 657549601834134172
1345
+ 499103365019404093 167723764031655253
1346
+ 911367389019213898 387486390492465217
1347
+ 712554491728938286 566126358405711489
1348
+ 142045445172353030 342453907207540119
1349
+ 138886783322824022 994286298106309959
1350
+ 988737544433396315 961035205343035922
1351
+ 365347745925905169 209277860151116308
1352
+ 174066967018696652 894027336889967900
1353
+ 653499296599784171 292630876633321262
1354
+ 592884815197518714 272479805421989469
1355
+ 513142258608664911 42414394687652906
1356
+ 743815341368336462 211300311947198859
1357
+ 202477012422572608 726751537793340940
1358
+ 816036284723894025 519184143518398252
1359
+ 865730625721541998 85748532887877479
1360
+ 516439910251489547 52663764628709175
1361
+ 208789288835734539 407355558872538256
1362
+ 64517475695502244 272218500159537616
1363
+ 858665052690741831 575065160690629888
1364
+ 465124475169083490 244349648868705962
1365
+ 797865750408706512 489574178961605202
1366
+ 82692063778516904 263196818543243424
1367
+ 774553595108782492 171998421860476949
1368
+ 9520891104048816 938154136984445704
1369
+ 657734082340350680 983030755509011336
1370
+ 461445572030503725 49891168844531075
1371
+ 130600416996527252 156329322064570720
1372
+ 312982765867393549 213777800577375056
1373
+ 225453400269461486 379914355860342459
1374
+ 861639327768457100 811917442661248669
1375
+ 25966655813330696 419821308638812222
1376
+ 321545653277636422 737356730746647807
1377
+ 745139104245733952 314133729221949807
1378
+ 155123626897751038 833007891077426958
1379
+ 497322223427098873 924974570647741842
1380
+ 785561267686573947 238812637421369450
1381
+ 985470920406268465 50937152876955539
1382
+ 653666080714608320 358425975950423759
1383
+ 282476984122582597 146954677935846461
1384
+ 579970091306133639 982559712159068820
1385
+ 39283041094111164 4102545870729980
1386
+ 959884388639540980 192675639952084105
1387
+ 461239635978292058 706114901982778735
1388
+ 476522198101535741 764821816502605394
1389
+ 339410527541871142 87324736166583522
1390
+ 215238999150574630 5270422732794315
1391
+ 613231526560745195 501366111794609917
1392
+ 574207306749037329 147404038628888474
1393
+ 423635652606065445 633740656456948477
1394
+ 55865649996278140 701156099069773190
1395
+ 396806141283093043 890965753494051960
1396
+ 446205699048401802 266685823055272170
1397
+ 128918691502667812 589115756090748628
1398
+ 910465307770550331 528053252824218110
1399
+ 673051240406967887 796028513239484266
1400
+ 364864755988318958 923649644714002217
1401
+ 349779819761521957 406062600321848794
1402
+ 953024387544440911 807819200878989536
1403
+ 750729158590728948 630257023597691038
1404
+ 744059685955468744 3882611066427213
1405
+ 952538937096408152 63390894581481868
1406
+ 259093897472018355 752255116601841864
1407
+ 610091440061984841 634739187372720365
1408
+ 319838253701821934 46051628154805050
1409
+ 614626759585011198 240765273092162605
1410
+ 179290011577301915 947904146495242398
1411
+ 73151428881246738 619781024279525864
1412
+ 118594213424294748 916127573638953793
1413
+ 126338262905426822 100341803407241128
1414
+ 12972950539511207 204276227213498967
1415
+ 726556198053770497 731159223899893195
1416
+ 85020846059397778 487297173698156299
1417
+ 208078978271981185 946957118200896063
1418
+ 717440334648776508 431912377274132575
1419
+ 79142519813324336 733845412122261886
1420
+ 495674016528092196 795643269393327533
1421
+ 860885321708139582 545562765737326737
1422
+ 130083428845429151 603200373430995228
1423
+ 638483687059827222 618259515173331471
1424
+ 62386927111677313 884821667909457208
1425
+ 310465062589111394 614658002671843789
1426
+ 453746247670671490 898077846924083704
1427
+ 929894772059555099 196361331665648789
1428
+ 255698823605782280 849339436323701641
1429
+ 513657303038863646 778710591331164751
1430
+ 364670458382215884 181244915909947766
1431
+ 93866454553508866 259168325201426372
1432
+ 20904221672860707 737589497442678647
1433
+ 414253671043196441 42967105929667494
1434
+ 257457130176468354 155401481588668359
1435
+ 896412120537849096 30622685063655242
1436
+ 772868694724099534 37130360322589538
1437
+ 645339412011003398 281405418050503907
1438
+ 740241567780166500 157894726817995997
1439
+ 926102986522776634 692430976709493495
1440
+ 951700405750856976 445217263788786361
1441
+ 647319485608599853 251550883132484721
1442
+ 835837414210690718 932657674742137204
1443
+ 569450963330952038 683375359375826735
1444
+ 746772953515968424 482191868804227317
1445
+ 37659474331229957 235002340278794646
1446
+ 585485266914405491 677335790942571087
1447
+ 848003198850716497 885808618574629858
1448
+ 304929312412276492 495731106731190094
1449
+ 918717529194705767 629254747154738678
1450
+ 122002282699147131 62410422250958427
1451
+ 474782953429820228 710294844424822299
1452
+ 45892783906374846 678871941563734186
1453
+ 738232136948487603 523394967252210474
1454
+ 405497960396035284 611930163800488187
1455
+ 947024377207956207 487734732544557002
1456
+ 163035270521905650 782180812764904647
1457
+ 434081257157470540 305619711587998453
1458
+ 932022847813431978 342031094787942678
1459
+ 372590158021110354 494328882809107021
1460
+ 19267217860843114 726665377380000370
1461
+ 236098598050750752 543006903088207593
1462
+ 653727687312970316 215937006619860063
1463
+ 467134345865956092 710137418368882743
1464
+ 946573694157299823 279214067180700924
1465
+ 835714292046887941 748811137904810841
1466
+ 403173755909948928 868871118567303766
1467
+ 733030790086154615 957065660865237195
1468
+ 238867602639164278 402260657598940903
1469
+ 717596686183816504 839773197272115977
1470
+ 67477245646492879 856357526085353772
1471
+ 935616383467046981 852959050648117529
1472
+ 606239828135158168 76597166528831614
1473
+ 724765424209852885 665791146680784253
1474
+ 529714787681105775 595749481212258355
1475
+ 149697289595861276 520269870422315899
1476
+ 88819445679164946 599661919879781935
1477
+ 554242118639987619 289541082508120189
1478
+ 468172179884740980 228629786808932431
1479
+ 66683211210448531 938279193649982384
1480
+ 364954348583895520 161586368062329458
1481
+ 747382228696841132 824679217041545193
1482
+ 628635583088990384 899662317158608671
1483
+ 977868736332262097 631412309035466803
1484
+ 415427535029048976 399044363802192958
1485
+ 313432361740508105 241739125444290131
1486
+ 859561842731499855 193641834104923407
1487
+ 821230336868658076 18024876809340004
1488
+ 202785538571895080 555647325704772654
1489
+ 790934523479693907 987780604878987990
1490
+ 100152571349883677 119109004212378707
1491
+ 371004480120996703 733887775087018396
1492
+ 630778292463380470 485562288080603118
1493
+ 988794190142148739 366466684259114607
1494
+ 107663753585727280 498481573906311833
1495
+ 827357888141672887 671612708428516873
1496
+ 978485909797220625 617602962948188287
1497
+ 874893002116258886 365132179728774147
1498
+ 752864703250807263 962003235970852488
1499
+ 375637386281131502 77375319088086698
1500
+ 854531363947400512 540476805111111539
1501
+ 287461535954202303 381481968768547946
1502
+ 224272538638555512 394678996742525296
1503
+ 426023159092142746 550049259908910451
1504
+ 209028412074179367 19458416519859963
1505
+ 141416295062028572 762303337152390979
1506
+ 88772556072957448 119065087350538226
1507
+ 288013208152910203 98252404784370269
1508
+ 763687867367681184 188439328796824817
1509
+ 826188913693037572 12049159255795657
1510
+ 541261676603866485 969732883362561120
1511
+ 577926304455927301 509984498443584608
1512
+ 278806442973050414 717780878300610457
1513
+ 2631134411716623 90408741653867789
1514
+ 587726059870194645 79998214225941288
1515
+ 70669869629764149 111541991188813581
1516
+ 989312789412369675 330504266059528984
1517
+ 882460718369533984 130858620509200850
1518
+ 431089906427815679 901715494778200949
1519
+ 288146707189782162 69082298812548846
1520
+ 648035455581816376 793616865581887442
1521
+ 213539181689834881 311898336555954451
1522
+ 920504711771121779 937352214400431455
1523
+ 350917699195729015 947653794348273941
1524
+ 306477027163799073 604144612160572459
1525
+ 73357461132336592 736664200660064353
1526
+ 760370950890652046 894428070803964016
1527
+ 851275363605633523 543682923688849014
1528
+ 545189250114399463 302547905762562895
1529
+ 407885691450030549 379653597646961539
1530
+ 506614895950911526 189477867188840068
1531
+ 694909956967425133 281194110407067971
1532
+ 99967149211465954 169602551964597439
1533
+ 951980977576164377 286828859105041366
1534
+ 491480220898581749 81245241165052009
1535
+ 250381745034396234 227955711133298655
1536
+ 181990212996667281 435394774963923936
1537
+ 312881887537400492 909679188506805839
1538
+ 640609684515077639 490944363769730972
1539
+ 383136784974611962 795802875659008238
1540
+ 785757833934225924 742623618658184940
1541
+ 560730291933835174 47503342973597479
1542
+ 942884331823102174 93851539049325607
1543
+ 44354935124007998 662385464529973264
1544
+ 281044709395238057 938645324644016624
1545
+ 34397327056914090 247194934219803560
1546
+ 236581952149045617 637560266104862325
1547
+ 12707825595364203 625200855236612635
1548
+ 859332780180044413 182354397303412909
1549
+ 711398290614642140 177376732857772795
1550
+ 283250936193832844 42805831952346520
1551
+ 992925611533123954 263407896463595142
1552
+ 95862356220131352 852551165970731905
1553
+ 487737079604105982 129164464082632853
1554
+ 261499543481314404 654185276004454130
1555
+ 156176871435880027 660565352815065713
1556
+ 853543862428488596 686569321901345819
1557
+ 251520881183556002 542042060018521022
1558
+ 892631966332997553 232641074050444282
1559
+ 124322849874451831 234124727893557042
1560
+ 158539270109603450 943688250464718276
1561
+ 406720310843053900 166177917240456677
1562
+ 894343671329023754 55800329324373755
1563
+ 896963076130875796 743450545095269881
1564
+ 390403909347134287 735977443746229739
1565
+ 215776971784994150 584401135833831402
1566
+ 768894168687270704 934939977578884381
1567
+ 689384691635560829 681293555677011831
1568
+ 304382934346909383 431880037541375322
1569
+ 469784163383311846 511241803429695593
1570
+ 285827379418791789 558855611018672680
1571
+ 597531554496508345 683234056674200265
1572
+ 514615606323606281 100765508348864290
1573
+ 833677738791463879 395592022949628823
1574
+ 724838629125460403 81440021508577726
1575
+ 232452707464080828 597726412442257140
1576
+ 941841901171681460 734655549125280426
1577
+ 534923869698382332 475516653312335150
1578
+ 848402572716069894 282219414477190706
1579
+ 161679409889974583 849662678336942207
1580
+ 651418083793871730 401426077904770642
1581
+ 53525855238263086 239647993702050756
1582
+ 941952599033983961 68392336840529707
1583
+ 597817033841560773 545513802831237392
1584
+ 432351341241363632 259978763904290248
1585
+ 739997511396280814 305759902667001009
1586
+ 582245725229662005 276618925992262411
1587
+ 324005763299619589 928578796441169008
1588
+ 845702482582672818 531345238290261745
1589
+ 729007671064599567 437693328097041615
1590
+ 921498535724911801 541552489263230931
1591
+ 553412720822893053 445134723269321802
1592
+ 824870699407282279 851507211579291624
1593
+ 747003811063383704 357116834802210402
1594
+ 15762214852838081 907784788416759537
1595
+ 738819562099417521 265952093276836310
1596
+ 660933449187181773 536426701361969704
1597
+ 18043337464304593 209110610750865479
1598
+ 227833030025047376 198262588336027192
1599
+ 964009405341220803 504017027738514684
1600
+ 314585876644417338 178196770612131155
1601
+ 947508163657125400 201967641046929904
1602
+ 939995352217040520 830962113023960902
1603
+ 2242408741728256 116504428346604964
1604
+ 806773376577556182 496454018827979926
1605
+ 637574830840663325 636240591873600370
1606
+ 993151257629529262 343244646841113273
1607
+ 260812376756476140 770092702832031000
1608
+ 833819198946770149 384884224321301513
1609
+ 50018611871925110 308171540976375877
1610
+ 398237898547639892 900204742531826104
1611
+ 170399599963197250 202807416773396430
1612
+ 326159126587060629 987305084985650914
1613
+ 52567271351573391 123829527760758718
1614
+ 774751594416103229 939380871141863408
1615
+ 742510774220758043 106513394187952682
1616
+ 461657323656891160 894215890525848112
1617
+ 348936272400535291 208211416356193389
1618
+ 236006246523035177 506902666525284313
1619
+ 174160211203952374 213522769823745594
1620
+ 710400521781897460 604935632094826623
1621
+ 46950157442195267 769323431657551584
1622
+ 199871630401738057 6698973822173363
1623
+ 439256468302299355 251263787835523522
1624
+ 45175625223798955 406595872579803583
1625
+ 183646188485269327 660057445609810789
1626
+ 135342302095927018 892834075488028974
1627
+ 34348506875378041 877190240447587755
1628
+ 190253890215462844 509437937702925699
1629
+ 468709268588487358 113680105885128458
1630
+ 400805883415748611 11327144209801597
1631
+ 380784642808010318 636147407127391704
1632
+ 229085795524821772 95361895166294868
1633
+ 759134974179796064 811997473665419648
1634
+ 959811045600721356 407904696555288571
1635
+ 275873684517675384 549220467842787276
1636
+ 866752574674943523 985439942793449054
1637
+ 571761218735209379 396072728307765275
1638
+ 344948669730729498 996398496790157987
1639
+ 643040057411945320 945234601866870658
1640
+ 919842086709063028 342894954745601177
1641
+ 376581782249493451 929088962760809828
1642
+ 896955860440602895 379319992529589228
1643
+ 442005810189686785 266788061616166628
1644
+ 469577308752276966 464077093295287126
1645
+ 744750785788815849 730600569604838651
1646
+ 545988553176075946 616127211240235222
1647
+ 71873794541538530 85239257583532634
1648
+ 70367480610166759 680501651040288701
1649
+ 586797067277584318 67837746320689777
1650
+ 216574350337399454 363360541465475306
1651
+ 79486244212102522 72965579192391997
1652
+ 832597067057228588 677412007906913620
1653
+ 129427214377554494 631504652023048908
1654
+ 978607070947692373 317656683820117116
1655
+ 362887739757649564 335190849467429389
1656
+ 952683911051186010 693473359083598059
1657
+ 285384871377431531 751518234023495654
1658
+ 979301444821384672 667954260890165784
1659
+ 816287095572758559 847770366826430344
1660
+ 833374006109767748 535854814962299205
1661
+ 585181988727287507 216235686909773566
1662
+ 500719435809366419 351265323817759891
1663
+ 149151619283792506 360073354681568330
1664
+ 264840550461671087 536885449779728922
1665
+ 286290438455779828 63248068064592339
1666
+ 834186855247735521 667814119609979480
1667
+ 79383071320948754 994359606161960976
1668
+ 887987510188072650 821611133877240025
1669
+ 400583219165348706 266902963807045087
1670
+ 951384679031829606 913434078919073011
1671
+ 247537674310321838 465344704486344352
1672
+ 167941551993939211 224430880582224361
1673
+ 956179520788717634 216922025706486026
1674
+ 22156449137348728 710906126322364679
1675
+ 204002119729158865 179407894332840311
1676
+ 769944302975678960 677482781012733370
1677
+ 959444587078025721 428630035115669815
1678
+ 130086604897714596 799215910943742909
1679
+ 738287886180580979 614437392764860939
1680
+ 909703680825190394 789809771413828748
1681
+ 517831280973953547 23770488697328569
1682
+ 973166596681317522 146872188105490382
1683
+ 310997196759717188 116048768395384146
1684
+ 778544351460467950 180284511291311906
1685
+ 773294204904157147 412262743239388488
1686
+ 238885319685234604 944782377729057064
1687
+ 337701926469486749 928419776931968363
1688
+ 442025500918743931 763617697570396548
1689
+ 687337231327888707 789768319903264734
1690
+ 802232100102392921 491671534519145124
1691
+ 866189638926657377 69187376987366188
1692
+ 5571910407908286 715979052467098625
1693
+ 597166109334850469 635157884092370827
1694
+ 421389388616410077 802133669843242333
1695
+ 962979940255520098 225211931298524578
1696
+ 745676001069187353 843430406426744498
1697
+ 8726611133026671 933474854170807444
1698
+ 767627826545173751 461109779724951452
1699
+ 550275802473345797 715660383596852883
1700
+ 487420847502693537 979374499577675772
1701
+ 376700991938810405 577438065171575980
1702
+ 845996579707628843 770956146906927806
1703
+ 179216799578469011 792063005190138758
1704
+ 85489990497766396 324216918567514270
1705
+ 895233142780705628 356270764015448972
1706
+ 336267116933010691 666129003793555716
1707
+ 24198397511969789 363460029930352428
1708
+ 166082376005018968 36629573217043712
1709
+ 37230317438312008 262998025896215225
1710
+ 309744228520212463 99672055028251054
1711
+ 907920569924796026 109663724802547242
1712
+ 903234257020141444 431789611660477230
1713
+ 82288545842696816 901419591059929752
1714
+ 892926211104814597 25566259681893311
1715
+ 369235754488875558 75369253098505319
1716
+ 65943856358099933 219098667596503489
1717
+ 982140078955384723 507185193374738902
1718
+ 693409103818393453 784480796885321967
1719
+ 179610651722469105 367655211835720815
1720
+ 1251591219410220 807827337672969496
1721
+ 440279623623671957 755186593587186857
1722
+ 279954423193336757 296192211608159742
1723
+ 573433063030066085 100751455454049938
1724
+ 68955055000178454 180486499115678416
1725
+ 947518389208199443 461957503047424861
1726
+ 689319728117840423 158561283351247229
1727
+ 942892443259915224 106058423020558228
1728
+ 41347412690842724 808091064227234903
1729
+ 597424365251890440 889864416956292988
1730
+ 730998255046222174 290040680577686882
1731
+ 878172891308010774 637225692542097644
1732
+ 747571326924836554 229743158782065137
1733
+ 805901936725401397 344523703952775563
1734
+ 543343852673185081 13786051062188258
1735
+ 263174651104914264 361390884629230754
1736
+ 735292716691407916 268680013766577507
1737
+ 354875491413281458 690153300215212198
1738
+ 735542250822950825 739094474052180232
1739
+ 785854323022324388 538505790799625068
1740
+ 350425869383996779 721342559893951769
1741
+ 484315495345560388 367048832105845224
1742
+ 932053827787943713 516913014913884709
1743
+ 565057247538090038 934170442349872194
1744
+ 44165168679802166 178631364040329738
1745
+ 834958850136919245 263303625300114671
1746
+ 89316625452362 708509517843968895
1747
+ 861305524950152279 698109686941131765
1748
+ 556695746972849379 537744975473068524
1749
+ 44571300488310560 280280997651499823
1750
+ 731136918725988520 292175490476280747
1751
+ 334289547521452219 879372227899233414
1752
+ 851822804383315619 643101528718806088
1753
+ 274208620784998968 184968088538825271
1754
+ 663290078616173631 989045442517415379
1755
+ 902901870275066117 513309459062606908
1756
+ 800032715090722779 189920199191613208
1757
+ 349159986264968389 847599802469411042
1758
+ 948116533300290383 130534395543864987
1759
+ 943450270577228205 897546207524172143
1760
+ 254139855618335091 444336177868380423
1761
+ 480955211816760301 165759111255582314
1762
+ 716343629989913628 760943024385339280
1763
+ 914407574437856841 133374853147690053
1764
+ 892121944018594415 957187382361764318
1765
+ 876052851408844942 121236700484570477
1766
+ 748958897686904152 416418818202931139
1767
+ 293385498495831762 135722719509287015
1768
+ 185921672731414086 987932777288362330
1769
+ 378523873662701143 925627576509470605
1770
+ 657056223256762290 496899044897664794
1771
+ 698206163716621683 147948314204065702
1772
+ 322109812660395911 359183172967867055
1773
+ 222719287012085234 92047740513075206
1774
+ 679741877671166479 177583647402166754
1775
+ 85919575679997942 593477137283212958
1776
+ 534861814338331252 1101386050241805
1777
+ 63350849652614120 242559901197533363
1778
+ 946554535650996445 256528651294328409
1779
+ 688141947311222644 886529330598751812
1780
+ 199058381462609697 191741863679803241
1781
+ 288597637311974986 328460968849093990
1782
+ 470551760945760149 934173453739190071
1783
+ 603000368364945297 974237783367610832
1784
+ 914050501658385803 760099199723531045
1785
+ 575914497336268377 398714444300265888
1786
+ 739589706124373631 422388410069668054
1787
+ 762607130437344866 315252384518051303
1788
+ 185455584855012215 76463776691826279
1789
+ 234527182693696939 175400769403808877
1790
+ 219821448388328136 252914604084150731
1791
+ 706566760755154928 742166528361218647
1792
+ 326914668761282373 270232914012564840
1793
+ 777354685328979883 72466244917745245
1794
+ 566858460849030821 16046912154077271
1795
+ 576486251162991196 928934738011111686
1796
+ 651682198535094206 39362720652506785
1797
+ 597541404629714627 234867078222423279
1798
+ 476623614343336786 865715587238038722
1799
+ 555138852796165529 188762373566586468
1800
+ 960987047008978228 526123434849112026
1801
+ 570615169802791109 276023619094686735
1802
+ 880016219519655799 958759595053939683
1803
+ 519523703187451010 467042276066231129
1804
+ 11629884276273286 845589138910469555
1805
+ 165036902070498423 995877245497036375
1806
+ 674214703813192913 224648232254651257
1807
+ 413404409328322864 554638413233119424
1808
+ 486400547365803102 315409585465104867
1809
+ 938266463378187772 524581468534948003
1810
+ 961452127998550602 702992267373794720
1811
+ 926801021665050111 799906554372550620
1812
+ 107568897149815720 880249020909505134
1813
+ 707720830200703908 402384366694274390
1814
+ 269214399636789599 899454070299992380
1815
+ 77025546872344140 928832682143373404
1816
+ 419414852658826143 559792042351623367
1817
+ 991258922109128298 768095393128781487
1818
+ 978420313889063496 440307879156371836
1819
+ 371812834787197973 747043736339374404
1820
+ 989601008560576139 214895433287788820
1821
+ 924803149287048353 576521685601857504
1822
+ 644494333076180350 507300117467868164
1823
+ 779688712638034969 245473069084087670
1824
+ 945303151537177155 128639627299746226
1825
+ 353198175482918731 270108002526355441
1826
+ 342520869889789950 148396017189538604
1827
+ 86088681510233258 597471272027228834
1828
+ 635835849752254423 456049574301488917
1829
+ 45374269981148663 27679718005614588
1830
+ 113097008588329433 791161071336591725
1831
+ 608800053737038140 193638436826214797
1832
+ 56109069118203736 801428504714000994
1833
+ 15158294041610742 606140940161472711
1834
+ 523550801423029436 713893126158241400
1835
+ 325612046940064906 409727821235007798
1836
+ 99389169519174903 880268676474043189
1837
+ 647160306344338305 170285367534163586
1838
+ 963137442515957191 240810732476049612
1839
+ 722113564454794513 66769739244807107
1840
+ 207420287463276839 333059200677328592
1841
+ 399315780344664977 114423415548541414
1842
+ 777690057775817637 750824497918228242
1843
+ 339108560826309118 518439210841814566
1844
+ 201770108633515664 549126692692855817
1845
+ 648645613365314888 715481013016058671
1846
+ 854908783343188249 320225674742430017
1847
+ 371272734951496587 260336418942331879
1848
+ 320020050815058908 119942470851692988
1849
+ 464677029350314049 456593190658948704
1850
+ 543682978569444170 90868498838584235
1851
+ 415468555552450915 58702033529732606
1852
+ 758184391237452406 305593762579031478
1853
+ 481302374375556526 893220300720641466
1854
+ 274796627733413860 875460916063805333
1855
+ 355751137839213979 302329949381246785
1856
+ 744451843708789825 699149936533730432
1857
+ 971860477431535322 757955264028415545
1858
+ 71910901131112923 883303141276844634
1859
+ 166687619667070082 134121490414582216
1860
+ 235919944546072527 369629570924485345
1861
+ 322125753001328930 612999185885670570
1862
+ 390560762031408242 803110119679994010
1863
+ 420165349294470695 203816271917928194
1864
+ 239183145908884117 642013606150044183
1865
+ 569133967152090390 811177326184309662
1866
+ 49181784060803267 841119874436690738
1867
+ 5200067286324943 779790692374133045
1868
+ 123609259676552320 215800498654031441
1869
+ 499841612847777994 888530872807371178
1870
+ 276474918847659401 896751134844488610
1871
+ 864953082152393818 628005570888003400
1872
+ 189977585885527319 26628513293071454
1873
+ 750729948223447534 211238638427933701
1874
+ 319814294187177758 516402501761541127
1875
+ 130598278514402041 602934465028901441
1876
+ 996730248882263177 536962475136431180
1877
+ 398745559552392754 888280319244857212
1878
+ 394763422148107040 51800196854766024
1879
+ 515197626134583239 536328959381540507
1880
+ 731444901900433480 222779848620406646
1881
+ 997840836540050338 83339475101395006
1882
+ 982162418641731660 16230961017766288
1883
+ 237891029735395616 316705711196729019
1884
+ 194746956457248995 769923740819790686
1885
+ 469626116434359409 733477289183899807
1886
+ 735799850279831433 879548648143727109
1887
+ 214975290473054771 147821559765580787
1888
+ 559347958432174282 585679414636373954
1889
+ 120434803193560746 125569331485288826
1890
+ 877328717606717302 889294119997075756
1891
+ 762007803652854534 541863322216477678
1892
+ 562931005370798572 405795873878611378
1893
+ 898014882190480711 858307206730206033
1894
+ 253230474748822693 455909448250872384
1895
+ 707986557274959350 864675545611176151
1896
+ 825118731329238246 438507392328698191
1897
+ 557456346569899555 59662875458727673
1898
+ 373021621106105200 809171239384408228
1899
+ 739307764210172066 336057531642707391
1900
+ 910835243081851839 281797194169632512
1901
+ 62839752147917686 402460396264964557
1902
+ 57857852633646498 871996789096542353
1903
+ 233608549340959530 293229301256199535
1904
+ 449212871520985324 992170895475800863
1905
+ 408567880373984647 909358014692850233
1906
+ 672005688967779186 478729662478869827
1907
+ 988053593334431128 157632689911992478
1908
+ 879684597809517684 793544383352583373
1909
+ 833105174269806942 674268185986238990
1910
+ 76101314820043078 576852578630374245
1911
+ 850283384665075205 447056068155939602
1912
+ 469648157877241048 113837496887508445
1913
+ 157862487090940651 241601193811288011
1914
+ 726681558260302201 321977555867469263
1915
+ 291460618214979795 168377675595889057
1916
+ 53929508699704169 840998600941593758
1917
+ 112319717095254327 929866698347871292
1918
+ 47135377903621582 205967064603625512
1919
+ 145492483720948477 561890018843607038
1920
+ 782738650889650717 970873284591994532
1921
+ 616825041453936630 517222123229839172
1922
+ 710402093351373649 256231442819665892
1923
+ 390960463870516251 231072294805600675
1924
+ 785412969255358771 651278920132026002
1925
+ 928988369476353264 591285036745036129
1926
+ 519286674154199855 266355060406073263
1927
+ 832285732829387277 152234410255528217
1928
+ 986641290350927888 865118889316326057
1929
+ 180697100477884126 705600480706214407
1930
+ 515783871609112314 159215338910487044
1931
+ 644109740312502698 225886413502473810
1932
+ 60481696267255545 446822092661071958
1933
+ 206387344804901849 590714089659695894
1934
+ 707087270237724256 439202811314409037
1935
+ 266221036225662515 335025511401765524
1936
+ 508425472657160318 562303717216620513
1937
+ 14297381658366835 527670952016833462
1938
+ 955116142613853175 401644972677253817
1939
+ 94974203380173171 487237284723995684
1940
+ 657585216173570273 723690245388366376
1941
+ 103405607335827528 201688565227953232
1942
+ 335938514655799905 204921483902462091
1943
+ 284208685821161134 519022327563110584
1944
+ 884738183241342506 632005219369962962
1945
+ 19426133115055659 848215379773285406
1946
+ 536105420571848311 189369150099661290
1947
+ 906591266996479538 87774081055198310
1948
+ 435095643068072781 459256703833749532
1949
+ 756878912524227725 587712738150595695
1950
+ 382453811960735232 333859434032699531
1951
+ 785834317026147930 732603371217365139
1952
+ 25348505439511358 388686544036671824
1953
+ 974941713824887436 151627378264396264
1954
+ 79965720245154197 242196101830784657
1955
+ 882852159730062367 480728301789396063
1956
+ 308672436367860613 634358073769936445
1957
+ 811015495398089723 490456000247302394
1958
+ 795522330332513264 221656187414470629
1959
+ 752472460061352108 871185423648660196
1960
+ 183034968927705154 688910304219926877
1961
+ 965668605481404937 69309316472705233
1962
+ 48098085387532185 522216883072847295
1963
+ 690204542321099027 559950095939747293
1964
+ 706539124186606640 59303970823127423
1965
+ 537326079219823751 777649011067934058
1966
+ 311489958267603137 573016818083132813
1967
+ 670479869162559677 599446103118894075
1968
+ 986577478486404611 204073356377630709
1969
+ 765346340744588759 942023442384921465
1970
+ 68160334237857317 492501251049272660
1971
+ 342563604110217259 476556448245768795
1972
+ 690035216268822353 851557854937547162
1973
+ 298282867827233939 113675179487785506
1974
+ 833573071385574639 78504738735136610
1975
+ 965903834751057886 735464399046970824
1976
+ 773485047078940954 708279115065429323
1977
+ 266848349615948929 434643065873608485
1978
+ 55633126391792146 896125019461637279
1979
+ 133432182105133588 184991378220185860
1980
+ 291210246522419541 282041200087048375
1981
+ 100187980913656720 271798715819605857
1982
+ 518832649280195048 506396161425483586
1983
+ 182025454852744595 933223849021977900
1984
+ 201761934744901919 315969663981288343
1985
+ 575003796169340654 318187773543804022
1986
+ 406282254385266557 986393065794150714
1987
+ 290700061212073582 324750071880976752
1988
+ 116486347246509666 324342580260460163
1989
+ 387619626010799426 749571851588689984
1990
+ 915009725782610094 277186067420203290
1991
+ 937487149996341655 904850122167126149
1992
+ 420718777091830897 154203435453064344
1993
+ 268737352357198427 142453752156546333
1994
+ 616573986530285378 783275285339812574
1995
+ 345841112670292358 231887646120600413
1996
+ 237471121856852811 764155017905040202
1997
+ 855522396880625641 773552258942355916
1998
+ 634007562688912953 87090585626053419
1999
+ 194429106224005400 334734583104343866
2000
+ 912118148829529020 830832593481795678
2001
+ 489424308235292033 989837779089179088
2018/finals/stockholm.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Melody is visiting the beautiful city of Stockholm, Sweden! Stockholm has a
2
+ number of waterways flowing through it, dividing the city up into a number of
3
+ islands. Like most visitors, Melody was surprised to learn that there are in
4
+ fact an infinite number of waterways and an infinite number of islands!
5
+
6
+ The waterways flow between an infinite number of junctions, which are numbered
7
+ with non-negative integers starting from 0. There's an infinitely-long
8
+ waterway flowing into junction 0, and then for each junction _j_, there are
9
+ two waterways flowing out of it into junctions 2_j_+1 and 2_j_+2. This results
10
+ in each junction having exactly three incident waterways.
11
+
12
+ An island is a connected region of land. Each waterway is adjacent to two
13
+ different islands (one on each side of it), and has a bridge connecting those
14
+ two islands together. Each junction is adjacent to three different islands
15
+ (the distinct islands adjacent to its incident waterways).
16
+
17
+ A portion of Stockholm (including junctions 0 to 14) is illustrated below,
18
+ with islands represented as contiguous regions filled with various shades of
19
+ grey, and bridges between them represented as brown curves:
20
+
21
+ ![]({{PHOTO_ID:923060468192530}})
22
+
23
+ Melody is currently aboard a friend's boat parked at some junction **A**, but
24
+ she wants to visit another friend's boat which is parked at a different
25
+ junction **B**. She'll begin by getting out of the first boat onto any of the
26
+ three islands of her choice which are adjacent to junction **A**. She'll then
27
+ walk on land until she arrives at any of the three islands which are adjacent
28
+ to junction **B**, potentially crossing some bridges between islands along the
29
+ way. Finally, she'll board the second boat from that island.
30
+
31
+ Melody's not a big fan of walking on Stockholm's rather unevenly cobbled
32
+ bridges, so she'd like to cross as few of them as possible along the way. Help
33
+ her determine the minimum number of bridges which she must cross to walk from
34
+ junction **A** to junction **B**!
35
+
36
+ For example, the following illustration indicates the only optimal path from
37
+ junction 8 to junction 5 in red (crossing only 1 bridge), and one of the
38
+ optimal paths from junction 12 to junction 3 in yellow (crossing only 2
39
+ bridges):
40
+
41
+ ![]({{PHOTO_ID:293195401822038}})
42
+
43
+ ### Input
44
+
45
+ Input begins with an integer **T**, the number of times Melody needs to travel
46
+ between two junctions. For each trip, there is a single line containing the
47
+ space-separated integers **A** and **B**.
48
+
49
+ ### Output
50
+
51
+ For the _i_th trip, output a line containing "Case #_i_: " followed by the
52
+ minimum number of bridges which Melody must cross to walk from junction **A**
53
+ to junction **B**.
54
+
55
+ ### Constraints
56
+
57
+ 1 ≤ **T** ≤ 2,000
58
+ 0 ≤ **A**, **B** ≤ 1018
59
+ **A** ≠ **B**
60
+
61
+ ### Explanation of Sample
62
+
63
+ The first two cases are described above.
64
+
65
+ In the third and fourth cases, it's unnecessary for Melody to cross any
66
+ bridges.
67
+
2018/finals/stockholm.out ADDED
@@ -0,0 +1,2000 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: 1
2
+ Case #2: 2
3
+ Case #3: 0
4
+ Case #4: 0
5
+ Case #5: 1
6
+ Case #6: 6
7
+ Case #7: 3
8
+ Case #8: 9
9
+ Case #9: 46
10
+ Case #10: 16
11
+ Case #11: 0
12
+ Case #12: 0
13
+ Case #13: 0
14
+ Case #14: 0
15
+ Case #15: 0
16
+ Case #16: 0
17
+ Case #17: 0
18
+ Case #18: 1
19
+ Case #19: 1
20
+ Case #20: 0
21
+ Case #21: 0
22
+ Case #22: 1
23
+ Case #23: 1
24
+ Case #24: 0
25
+ Case #25: 0
26
+ Case #26: 1
27
+ Case #27: 1
28
+ Case #28: 1
29
+ Case #29: 1
30
+ Case #30: 1
31
+ Case #31: 1
32
+ Case #32: 0
33
+ Case #33: 0
34
+ Case #34: 1
35
+ Case #35: 1
36
+ Case #36: 1
37
+ Case #37: 1
38
+ Case #38: 1
39
+ Case #39: 1
40
+ Case #40: 0
41
+ Case #41: 0
42
+ Case #42: 1
43
+ Case #43: 0
44
+ Case #44: 0
45
+ Case #45: 0
46
+ Case #46: 0
47
+ Case #47: 0
48
+ Case #48: 1
49
+ Case #49: 0
50
+ Case #50: 0
51
+ Case #51: 0
52
+ Case #52: 0
53
+ Case #53: 0
54
+ Case #54: 1
55
+ Case #55: 1
56
+ Case #56: 1
57
+ Case #57: 0
58
+ Case #58: 1
59
+ Case #59: 1
60
+ Case #60: 0
61
+ Case #61: 0
62
+ Case #62: 1
63
+ Case #63: 1
64
+ Case #64: 0
65
+ Case #65: 0
66
+ Case #66: 1
67
+ Case #67: 1
68
+ Case #68: 1
69
+ Case #69: 1
70
+ Case #70: 2
71
+ Case #71: 2
72
+ Case #72: 1
73
+ Case #73: 0
74
+ Case #74: 1
75
+ Case #75: 0
76
+ Case #76: 0
77
+ Case #77: 1
78
+ Case #78: 0
79
+ Case #79: 0
80
+ Case #80: 0
81
+ Case #81: 1
82
+ Case #82: 1
83
+ Case #83: 1
84
+ Case #84: 0
85
+ Case #85: 0
86
+ Case #86: 0
87
+ Case #87: 0
88
+ Case #88: 0
89
+ Case #89: 1
90
+ Case #90: 2
91
+ Case #91: 2
92
+ Case #92: 1
93
+ Case #93: 1
94
+ Case #94: 1
95
+ Case #95: 1
96
+ Case #96: 0
97
+ Case #97: 0
98
+ Case #98: 1
99
+ Case #99: 1
100
+ Case #100: 0
101
+ Case #101: 0
102
+ Case #102: 1
103
+ Case #103: 1
104
+ Case #104: 0
105
+ Case #105: 1
106
+ Case #106: 2
107
+ Case #107: 0
108
+ Case #108: 0
109
+ Case #109: 1
110
+ Case #110: 0
111
+ Case #111: 1
112
+ Case #112: 1
113
+ Case #113: 0
114
+ Case #114: 0
115
+ Case #115: 0
116
+ Case #116: 1
117
+ Case #117: 1
118
+ Case #118: 2
119
+ Case #119: 2
120
+ Case #120: 1
121
+ Case #121: 0
122
+ Case #122: 0
123
+ Case #123: 0
124
+ Case #124: 0
125
+ Case #125: 0
126
+ Case #126: 1
127
+ Case #127: 1
128
+ Case #128: 1
129
+ Case #129: 1
130
+ Case #130: 2
131
+ Case #131: 2
132
+ Case #132: 2
133
+ Case #133: 2
134
+ Case #134: 2
135
+ Case #135: 2
136
+ Case #136: 1
137
+ Case #137: 0
138
+ Case #138: 1
139
+ Case #139: 0
140
+ Case #140: 0
141
+ Case #141: 0
142
+ Case #142: 0
143
+ Case #143: 0
144
+ Case #144: 1
145
+ Case #145: 1
146
+ Case #146: 0
147
+ Case #147: 0
148
+ Case #148: 0
149
+ Case #149: 0
150
+ Case #150: 1
151
+ Case #151: 1
152
+ Case #152: 1
153
+ Case #153: 1
154
+ Case #154: 1
155
+ Case #155: 1
156
+ Case #156: 0
157
+ Case #157: 0
158
+ Case #158: 0
159
+ Case #159: 0
160
+ Case #160: 0
161
+ Case #161: 0
162
+ Case #162: 1
163
+ Case #163: 1
164
+ Case #164: 1
165
+ Case #165: 1
166
+ Case #166: 2
167
+ Case #167: 2
168
+ Case #168: 1
169
+ Case #169: 1
170
+ Case #170: 2
171
+ Case #171: 0
172
+ Case #172: 0
173
+ Case #173: 0
174
+ Case #174: 1
175
+ Case #175: 0
176
+ Case #176: 0
177
+ Case #177: 1
178
+ Case #178: 1
179
+ Case #179: 1
180
+ Case #180: 0
181
+ Case #181: 0
182
+ Case #182: 0
183
+ Case #183: 0
184
+ Case #184: 1
185
+ Case #185: 1
186
+ Case #186: 2
187
+ Case #187: 2
188
+ Case #188: 1
189
+ Case #189: 1
190
+ Case #190: 1
191
+ Case #191: 1
192
+ Case #192: 0
193
+ Case #193: 0
194
+ Case #194: 0
195
+ Case #195: 0
196
+ Case #196: 0
197
+ Case #197: 0
198
+ Case #198: 1
199
+ Case #199: 1
200
+ Case #200: 1
201
+ Case #201: 1
202
+ Case #202: 2
203
+ Case #203: 0
204
+ Case #204: 1
205
+ Case #205: 0
206
+ Case #206: 1
207
+ Case #207: 1
208
+ Case #208: 0
209
+ Case #209: 1
210
+ Case #210: 2
211
+ Case #211: 2
212
+ Case #212: 1
213
+ Case #213: 1
214
+ Case #214: 0
215
+ Case #215: 0
216
+ Case #216: 0
217
+ Case #217: 1
218
+ Case #218: 2
219
+ Case #219: 2
220
+ Case #220: 2
221
+ Case #221: 2
222
+ Case #222: 2
223
+ Case #223: 2
224
+ Case #224: 1
225
+ Case #225: 1
226
+ Case #226: 1
227
+ Case #227: 1
228
+ Case #228: 0
229
+ Case #229: 0
230
+ Case #230: 0
231
+ Case #231: 0
232
+ Case #232: 0
233
+ Case #233: 1
234
+ Case #234: 2
235
+ Case #235: 0
236
+ Case #236: 0
237
+ Case #237: 1
238
+ Case #238: 0
239
+ Case #239: 1
240
+ Case #240: 1
241
+ Case #241: 1
242
+ Case #242: 0
243
+ Case #243: 1
244
+ Case #244: 1
245
+ Case #245: 1
246
+ Case #246: 2
247
+ Case #247: 2
248
+ Case #248: 1
249
+ Case #249: 0
250
+ Case #250: 0
251
+ Case #251: 0
252
+ Case #252: 1
253
+ Case #253: 1
254
+ Case #254: 2
255
+ Case #255: 2
256
+ Case #256: 1
257
+ Case #257: 1
258
+ Case #258: 2
259
+ Case #259: 2
260
+ Case #260: 2
261
+ Case #261: 2
262
+ Case #262: 2
263
+ Case #263: 2
264
+ Case #264: 1
265
+ Case #265: 0
266
+ Case #266: 0
267
+ Case #267: 1
268
+ Case #268: 0
269
+ Case #269: 1
270
+ Case #270: 0
271
+ Case #271: 0
272
+ Case #272: 1
273
+ Case #273: 2
274
+ Case #274: 0
275
+ Case #275: 0
276
+ Case #276: 1
277
+ Case #277: 1
278
+ Case #278: 2
279
+ Case #279: 2
280
+ Case #280: 2
281
+ Case #281: 1
282
+ Case #282: 0
283
+ Case #283: 0
284
+ Case #284: 0
285
+ Case #285: 0
286
+ Case #286: 1
287
+ Case #287: 1
288
+ Case #288: 1
289
+ Case #289: 1
290
+ Case #290: 2
291
+ Case #291: 2
292
+ Case #292: 2
293
+ Case #293: 2
294
+ Case #294: 3
295
+ Case #295: 3
296
+ Case #296: 2
297
+ Case #297: 1
298
+ Case #298: 1
299
+ Case #299: 1
300
+ Case #300: 0
301
+ Case #301: 1
302
+ Case #302: 0
303
+ Case #303: 0
304
+ Case #304: 1
305
+ Case #305: 2
306
+ Case #306: 1
307
+ Case #307: 0
308
+ Case #308: 0
309
+ Case #309: 1
310
+ Case #310: 2
311
+ Case #311: 2
312
+ Case #312: 2
313
+ Case #313: 1
314
+ Case #314: 1
315
+ Case #315: 1
316
+ Case #316: 0
317
+ Case #317: 0
318
+ Case #318: 0
319
+ Case #319: 0
320
+ Case #320: 1
321
+ Case #321: 1
322
+ Case #322: 2
323
+ Case #323: 2
324
+ Case #324: 2
325
+ Case #325: 2
326
+ Case #326: 3
327
+ Case #327: 3
328
+ Case #328: 2
329
+ Case #329: 1
330
+ Case #330: 2
331
+ Case #331: 0
332
+ Case #332: 0
333
+ Case #333: 0
334
+ Case #334: 1
335
+ Case #335: 0
336
+ Case #336: 0
337
+ Case #337: 1
338
+ Case #338: 1
339
+ Case #339: 1
340
+ Case #340: 0
341
+ Case #341: 0
342
+ Case #342: 1
343
+ Case #343: 1
344
+ Case #344: 1
345
+ Case #345: 1
346
+ Case #346: 2
347
+ Case #347: 2
348
+ Case #348: 1
349
+ Case #349: 1
350
+ Case #350: 0
351
+ Case #351: 0
352
+ Case #352: 0
353
+ Case #353: 0
354
+ Case #354: 1
355
+ Case #355: 1
356
+ Case #356: 1
357
+ Case #357: 1
358
+ Case #358: 2
359
+ Case #359: 2
360
+ Case #360: 1
361
+ Case #361: 1
362
+ Case #362: 2
363
+ Case #363: 0
364
+ Case #364: 0
365
+ Case #365: 0
366
+ Case #366: 1
367
+ Case #367: 0
368
+ Case #368: 0
369
+ Case #369: 1
370
+ Case #370: 1
371
+ Case #371: 1
372
+ Case #372: 1
373
+ Case #373: 0
374
+ Case #374: 0
375
+ Case #375: 1
376
+ Case #376: 1
377
+ Case #377: 1
378
+ Case #378: 2
379
+ Case #379: 2
380
+ Case #380: 1
381
+ Case #381: 1
382
+ Case #382: 1
383
+ Case #383: 1
384
+ Case #384: 0
385
+ Case #385: 0
386
+ Case #386: 0
387
+ Case #387: 0
388
+ Case #388: 1
389
+ Case #389: 1
390
+ Case #390: 2
391
+ Case #391: 2
392
+ Case #392: 1
393
+ Case #393: 1
394
+ Case #394: 2
395
+ Case #395: 1
396
+ Case #396: 1
397
+ Case #397: 0
398
+ Case #398: 2
399
+ Case #399: 1
400
+ Case #400: 0
401
+ Case #401: 0
402
+ Case #402: 2
403
+ Case #403: 2
404
+ Case #404: 2
405
+ Case #405: 1
406
+ Case #406: 0
407
+ Case #407: 0
408
+ Case #408: 1
409
+ Case #409: 2
410
+ Case #410: 3
411
+ Case #411: 3
412
+ Case #412: 2
413
+ Case #413: 2
414
+ Case #414: 2
415
+ Case #415: 2
416
+ Case #416: 1
417
+ Case #417: 1
418
+ Case #418: 0
419
+ Case #419: 0
420
+ Case #420: 0
421
+ Case #421: 0
422
+ Case #422: 1
423
+ Case #423: 1
424
+ Case #424: 1
425
+ Case #425: 2
426
+ Case #426: 3
427
+ Case #427: 1
428
+ Case #428: 1
429
+ Case #429: 0
430
+ Case #430: 2
431
+ Case #431: 1
432
+ Case #432: 0
433
+ Case #433: 0
434
+ Case #434: 2
435
+ Case #435: 2
436
+ Case #436: 2
437
+ Case #437: 1
438
+ Case #438: 1
439
+ Case #439: 0
440
+ Case #440: 0
441
+ Case #441: 2
442
+ Case #442: 3
443
+ Case #443: 3
444
+ Case #444: 2
445
+ Case #445: 2
446
+ Case #446: 2
447
+ Case #447: 2
448
+ Case #448: 1
449
+ Case #449: 1
450
+ Case #450: 1
451
+ Case #451: 1
452
+ Case #452: 0
453
+ Case #453: 0
454
+ Case #454: 0
455
+ Case #455: 0
456
+ Case #456: 1
457
+ Case #457: 2
458
+ Case #458: 3
459
+ Case #459: 0
460
+ Case #460: 1
461
+ Case #461: 0
462
+ Case #462: 1
463
+ Case #463: 1
464
+ Case #464: 1
465
+ Case #465: 0
466
+ Case #466: 1
467
+ Case #467: 2
468
+ Case #468: 2
469
+ Case #469: 1
470
+ Case #470: 1
471
+ Case #471: 1
472
+ Case #472: 0
473
+ Case #473: 1
474
+ Case #474: 2
475
+ Case #475: 2
476
+ Case #476: 2
477
+ Case #477: 2
478
+ Case #478: 2
479
+ Case #479: 2
480
+ Case #480: 1
481
+ Case #481: 1
482
+ Case #482: 2
483
+ Case #483: 2
484
+ Case #484: 1
485
+ Case #485: 1
486
+ Case #486: 0
487
+ Case #487: 0
488
+ Case #488: 0
489
+ Case #489: 1
490
+ Case #490: 2
491
+ Case #491: 0
492
+ Case #492: 0
493
+ Case #493: 1
494
+ Case #494: 0
495
+ Case #495: 1
496
+ Case #496: 1
497
+ Case #497: 1
498
+ Case #498: 0
499
+ Case #499: 1
500
+ Case #500: 1
501
+ Case #501: 1
502
+ Case #502: 1
503
+ Case #503: 2
504
+ Case #504: 2
505
+ Case #505: 1
506
+ Case #506: 0
507
+ Case #507: 1
508
+ Case #508: 1
509
+ Case #509: 1
510
+ Case #510: 2
511
+ Case #511: 2
512
+ Case #512: 1
513
+ Case #513: 1
514
+ Case #514: 2
515
+ Case #515: 2
516
+ Case #516: 2
517
+ Case #517: 2
518
+ Case #518: 2
519
+ Case #519: 2
520
+ Case #520: 1
521
+ Case #521: 0
522
+ Case #522: 0
523
+ Case #523: 1
524
+ Case #524: 1
525
+ Case #525: 2
526
+ Case #526: 0
527
+ Case #527: 1
528
+ Case #528: 2
529
+ Case #529: 2
530
+ Case #530: 0
531
+ Case #531: 0
532
+ Case #532: 1
533
+ Case #533: 2
534
+ Case #534: 2
535
+ Case #535: 3
536
+ Case #536: 3
537
+ Case #537: 2
538
+ Case #538: 0
539
+ Case #539: 0
540
+ Case #540: 1
541
+ Case #541: 1
542
+ Case #542: 2
543
+ Case #543: 2
544
+ Case #544: 2
545
+ Case #545: 2
546
+ Case #546: 3
547
+ Case #547: 3
548
+ Case #548: 3
549
+ Case #549: 3
550
+ Case #550: 3
551
+ Case #551: 3
552
+ Case #552: 2
553
+ Case #553: 1
554
+ Case #554: 0
555
+ Case #555: 1
556
+ Case #556: 1
557
+ Case #557: 2
558
+ Case #558: 0
559
+ Case #559: 1
560
+ Case #560: 2
561
+ Case #561: 2
562
+ Case #562: 0
563
+ Case #563: 0
564
+ Case #564: 1
565
+ Case #565: 2
566
+ Case #566: 2
567
+ Case #567: 3
568
+ Case #568: 3
569
+ Case #569: 2
570
+ Case #570: 1
571
+ Case #571: 0
572
+ Case #572: 0
573
+ Case #573: 1
574
+ Case #574: 2
575
+ Case #575: 2
576
+ Case #576: 2
577
+ Case #577: 2
578
+ Case #578: 3
579
+ Case #579: 3
580
+ Case #580: 3
581
+ Case #581: 3
582
+ Case #582: 3
583
+ Case #583: 3
584
+ Case #584: 2
585
+ Case #585: 1
586
+ Case #586: 1
587
+ Case #587: 1
588
+ Case #588: 0
589
+ Case #589: 1
590
+ Case #590: 0
591
+ Case #591: 0
592
+ Case #592: 1
593
+ Case #593: 2
594
+ Case #594: 1
595
+ Case #595: 0
596
+ Case #596: 0
597
+ Case #597: 1
598
+ Case #598: 1
599
+ Case #599: 2
600
+ Case #600: 2
601
+ Case #601: 2
602
+ Case #602: 1
603
+ Case #603: 1
604
+ Case #604: 0
605
+ Case #605: 0
606
+ Case #606: 1
607
+ Case #607: 1
608
+ Case #608: 1
609
+ Case #609: 1
610
+ Case #610: 2
611
+ Case #611: 2
612
+ Case #612: 2
613
+ Case #613: 2
614
+ Case #614: 3
615
+ Case #615: 3
616
+ Case #616: 2
617
+ Case #617: 1
618
+ Case #618: 2
619
+ Case #619: 1
620
+ Case #620: 0
621
+ Case #621: 1
622
+ Case #622: 0
623
+ Case #623: 0
624
+ Case #624: 1
625
+ Case #625: 2
626
+ Case #626: 1
627
+ Case #627: 0
628
+ Case #628: 0
629
+ Case #629: 1
630
+ Case #630: 1
631
+ Case #631: 2
632
+ Case #632: 2
633
+ Case #633: 2
634
+ Case #634: 1
635
+ Case #635: 1
636
+ Case #636: 1
637
+ Case #637: 0
638
+ Case #638: 0
639
+ Case #639: 1
640
+ Case #640: 1
641
+ Case #641: 1
642
+ Case #642: 2
643
+ Case #643: 2
644
+ Case #644: 2
645
+ Case #645: 2
646
+ Case #646: 3
647
+ Case #647: 3
648
+ Case #648: 2
649
+ Case #649: 1
650
+ Case #650: 2
651
+ Case #651: 1
652
+ Case #652: 1
653
+ Case #653: 1
654
+ Case #654: 1
655
+ Case #655: 0
656
+ Case #656: 1
657
+ Case #657: 2
658
+ Case #658: 2
659
+ Case #659: 1
660
+ Case #660: 0
661
+ Case #661: 0
662
+ Case #662: 1
663
+ Case #663: 2
664
+ Case #664: 2
665
+ Case #665: 2
666
+ Case #666: 2
667
+ Case #667: 2
668
+ Case #668: 2
669
+ Case #669: 1
670
+ Case #670: 0
671
+ Case #671: 0
672
+ Case #672: 1
673
+ Case #673: 1
674
+ Case #674: 2
675
+ Case #675: 2
676
+ Case #676: 2
677
+ Case #677: 2
678
+ Case #678: 3
679
+ Case #679: 3
680
+ Case #680: 2
681
+ Case #681: 2
682
+ Case #682: 3
683
+ Case #683: 1
684
+ Case #684: 1
685
+ Case #685: 1
686
+ Case #686: 1
687
+ Case #687: 0
688
+ Case #688: 1
689
+ Case #689: 2
690
+ Case #690: 2
691
+ Case #691: 1
692
+ Case #692: 0
693
+ Case #693: 0
694
+ Case #694: 1
695
+ Case #695: 2
696
+ Case #696: 2
697
+ Case #697: 2
698
+ Case #698: 2
699
+ Case #699: 2
700
+ Case #700: 2
701
+ Case #701: 1
702
+ Case #702: 1
703
+ Case #703: 0
704
+ Case #704: 0
705
+ Case #705: 1
706
+ Case #706: 2
707
+ Case #707: 2
708
+ Case #708: 2
709
+ Case #709: 2
710
+ Case #710: 3
711
+ Case #711: 3
712
+ Case #712: 2
713
+ Case #713: 2
714
+ Case #714: 3
715
+ Case #715: 0
716
+ Case #716: 0
717
+ Case #717: 0
718
+ Case #718: 1
719
+ Case #719: 0
720
+ Case #720: 0
721
+ Case #721: 1
722
+ Case #722: 1
723
+ Case #723: 1
724
+ Case #724: 1
725
+ Case #725: 0
726
+ Case #726: 0
727
+ Case #727: 1
728
+ Case #728: 1
729
+ Case #729: 1
730
+ Case #730: 1
731
+ Case #731: 2
732
+ Case #732: 2
733
+ Case #733: 1
734
+ Case #734: 1
735
+ Case #735: 1
736
+ Case #736: 0
737
+ Case #737: 0
738
+ Case #738: 1
739
+ Case #739: 1
740
+ Case #740: 1
741
+ Case #741: 1
742
+ Case #742: 2
743
+ Case #743: 2
744
+ Case #744: 1
745
+ Case #745: 1
746
+ Case #746: 2
747
+ Case #747: 0
748
+ Case #748: 0
749
+ Case #749: 0
750
+ Case #750: 1
751
+ Case #751: 0
752
+ Case #752: 0
753
+ Case #753: 1
754
+ Case #754: 1
755
+ Case #755: 1
756
+ Case #756: 1
757
+ Case #757: 0
758
+ Case #758: 0
759
+ Case #759: 1
760
+ Case #760: 1
761
+ Case #761: 1
762
+ Case #762: 1
763
+ Case #763: 2
764
+ Case #764: 2
765
+ Case #765: 1
766
+ Case #766: 1
767
+ Case #767: 1
768
+ Case #768: 1
769
+ Case #769: 0
770
+ Case #770: 0
771
+ Case #771: 1
772
+ Case #772: 1
773
+ Case #773: 1
774
+ Case #774: 2
775
+ Case #775: 2
776
+ Case #776: 1
777
+ Case #777: 1
778
+ Case #778: 2
779
+ Case #779: 1
780
+ Case #780: 1
781
+ Case #781: 1
782
+ Case #782: 2
783
+ Case #783: 1
784
+ Case #784: 0
785
+ Case #785: 1
786
+ Case #786: 2
787
+ Case #787: 2
788
+ Case #788: 2
789
+ Case #789: 1
790
+ Case #790: 0
791
+ Case #791: 0
792
+ Case #792: 1
793
+ Case #793: 2
794
+ Case #794: 2
795
+ Case #795: 3
796
+ Case #796: 3
797
+ Case #797: 2
798
+ Case #798: 2
799
+ Case #799: 2
800
+ Case #800: 2
801
+ Case #801: 1
802
+ Case #802: 0
803
+ Case #803: 0
804
+ Case #804: 1
805
+ Case #805: 1
806
+ Case #806: 2
807
+ Case #807: 2
808
+ Case #808: 2
809
+ Case #809: 2
810
+ Case #810: 3
811
+ Case #811: 1
812
+ Case #812: 1
813
+ Case #813: 1
814
+ Case #814: 2
815
+ Case #815: 1
816
+ Case #816: 0
817
+ Case #817: 1
818
+ Case #818: 2
819
+ Case #819: 2
820
+ Case #820: 2
821
+ Case #821: 1
822
+ Case #822: 0
823
+ Case #823: 0
824
+ Case #824: 1
825
+ Case #825: 2
826
+ Case #826: 2
827
+ Case #827: 3
828
+ Case #828: 3
829
+ Case #829: 2
830
+ Case #830: 2
831
+ Case #831: 2
832
+ Case #832: 2
833
+ Case #833: 1
834
+ Case #834: 1
835
+ Case #835: 0
836
+ Case #836: 0
837
+ Case #837: 1
838
+ Case #838: 2
839
+ Case #839: 2
840
+ Case #840: 2
841
+ Case #841: 2
842
+ Case #842: 3
843
+ Case #843: 1
844
+ Case #844: 1
845
+ Case #845: 0
846
+ Case #846: 2
847
+ Case #847: 1
848
+ Case #848: 0
849
+ Case #849: 0
850
+ Case #850: 2
851
+ Case #851: 2
852
+ Case #852: 2
853
+ Case #853: 1
854
+ Case #854: 1
855
+ Case #855: 0
856
+ Case #856: 0
857
+ Case #857: 1
858
+ Case #858: 2
859
+ Case #859: 3
860
+ Case #860: 3
861
+ Case #861: 2
862
+ Case #862: 2
863
+ Case #863: 2
864
+ Case #864: 2
865
+ Case #865: 1
866
+ Case #866: 1
867
+ Case #867: 1
868
+ Case #868: 0
869
+ Case #869: 0
870
+ Case #870: 1
871
+ Case #871: 1
872
+ Case #872: 1
873
+ Case #873: 2
874
+ Case #874: 3
875
+ Case #875: 1
876
+ Case #876: 1
877
+ Case #877: 0
878
+ Case #878: 2
879
+ Case #879: 1
880
+ Case #880: 0
881
+ Case #881: 0
882
+ Case #882: 2
883
+ Case #883: 2
884
+ Case #884: 2
885
+ Case #885: 1
886
+ Case #886: 1
887
+ Case #887: 0
888
+ Case #888: 0
889
+ Case #889: 1
890
+ Case #890: 2
891
+ Case #891: 3
892
+ Case #892: 3
893
+ Case #893: 2
894
+ Case #894: 2
895
+ Case #895: 2
896
+ Case #896: 2
897
+ Case #897: 1
898
+ Case #898: 1
899
+ Case #899: 1
900
+ Case #900: 1
901
+ Case #901: 0
902
+ Case #902: 0
903
+ Case #903: 1
904
+ Case #904: 1
905
+ Case #905: 2
906
+ Case #906: 3
907
+ Case #907: 1
908
+ Case #908: 2
909
+ Case #909: 1
910
+ Case #910: 2
911
+ Case #911: 2
912
+ Case #912: 1
913
+ Case #913: 0
914
+ Case #914: 2
915
+ Case #915: 3
916
+ Case #916: 3
917
+ Case #917: 2
918
+ Case #918: 2
919
+ Case #919: 1
920
+ Case #920: 0
921
+ Case #921: 0
922
+ Case #922: 2
923
+ Case #923: 3
924
+ Case #924: 3
925
+ Case #925: 3
926
+ Case #926: 3
927
+ Case #927: 3
928
+ Case #928: 3
929
+ Case #929: 2
930
+ Case #930: 2
931
+ Case #931: 2
932
+ Case #932: 2
933
+ Case #933: 1
934
+ Case #934: 0
935
+ Case #935: 0
936
+ Case #936: 1
937
+ Case #937: 2
938
+ Case #938: 3
939
+ Case #939: 1
940
+ Case #940: 2
941
+ Case #941: 1
942
+ Case #942: 2
943
+ Case #943: 2
944
+ Case #944: 1
945
+ Case #945: 0
946
+ Case #946: 2
947
+ Case #947: 3
948
+ Case #948: 3
949
+ Case #949: 2
950
+ Case #950: 2
951
+ Case #951: 1
952
+ Case #952: 0
953
+ Case #953: 0
954
+ Case #954: 2
955
+ Case #955: 3
956
+ Case #956: 3
957
+ Case #957: 3
958
+ Case #958: 3
959
+ Case #959: 3
960
+ Case #960: 3
961
+ Case #961: 2
962
+ Case #962: 2
963
+ Case #963: 2
964
+ Case #964: 2
965
+ Case #965: 1
966
+ Case #966: 1
967
+ Case #967: 0
968
+ Case #968: 0
969
+ Case #969: 2
970
+ Case #970: 3
971
+ Case #971: 0
972
+ Case #972: 1
973
+ Case #973: 0
974
+ Case #974: 1
975
+ Case #975: 1
976
+ Case #976: 1
977
+ Case #977: 0
978
+ Case #978: 1
979
+ Case #979: 2
980
+ Case #980: 2
981
+ Case #981: 1
982
+ Case #982: 1
983
+ Case #983: 1
984
+ Case #984: 1
985
+ Case #985: 0
986
+ Case #986: 1
987
+ Case #987: 2
988
+ Case #988: 2
989
+ Case #989: 2
990
+ Case #990: 2
991
+ Case #991: 2
992
+ Case #992: 2
993
+ Case #993: 1
994
+ Case #994: 1
995
+ Case #995: 2
996
+ Case #996: 2
997
+ Case #997: 1
998
+ Case #998: 1
999
+ Case #999: 1
1000
+ Case #1000: 0
1001
+ Case #1001: 1
1002
+ Case #1002: 2
1003
+ Case #1003: 0
1004
+ Case #1004: 0
1005
+ Case #1005: 1
1006
+ Case #1006: 0
1007
+ Case #1007: 1
1008
+ Case #1008: 1
1009
+ Case #1009: 1
1010
+ Case #1010: 0
1011
+ Case #1011: 1
1012
+ Case #1012: 1
1013
+ Case #1013: 1
1014
+ Case #1014: 1
1015
+ Case #1015: 2
1016
+ Case #1016: 2
1017
+ Case #1017: 1
1018
+ Case #1018: 0
1019
+ Case #1019: 1
1020
+ Case #1020: 1
1021
+ Case #1021: 1
1022
+ Case #1022: 1
1023
+ Case #1023: 2
1024
+ Case #1024: 2
1025
+ Case #1025: 1
1026
+ Case #1026: 1
1027
+ Case #1027: 2
1028
+ Case #1028: 2
1029
+ Case #1029: 2
1030
+ Case #1030: 2
1031
+ Case #1031: 2
1032
+ Case #1032: 2
1033
+ Case #1033: 1
1034
+ Case #1034: 0
1035
+ Case #1035: 1
1036
+ Case #1036: 1
1037
+ Case #1037: 2
1038
+ Case #1038: 1
1039
+ Case #1039: 2
1040
+ Case #1040: 2
1041
+ Case #1041: 2
1042
+ Case #1042: 0
1043
+ Case #1043: 1
1044
+ Case #1044: 2
1045
+ Case #1045: 2
1046
+ Case #1046: 2
1047
+ Case #1047: 3
1048
+ Case #1048: 3
1049
+ Case #1049: 2
1050
+ Case #1050: 0
1051
+ Case #1051: 0
1052
+ Case #1052: 1
1053
+ Case #1053: 2
1054
+ Case #1054: 2
1055
+ Case #1055: 3
1056
+ Case #1056: 3
1057
+ Case #1057: 2
1058
+ Case #1058: 2
1059
+ Case #1059: 3
1060
+ Case #1060: 3
1061
+ Case #1061: 3
1062
+ Case #1062: 3
1063
+ Case #1063: 3
1064
+ Case #1064: 3
1065
+ Case #1065: 2
1066
+ Case #1066: 0
1067
+ Case #1067: 35
1068
+ Case #1068: 36
1069
+ Case #1069: 35
1070
+ Case #1070: 34
1071
+ Case #1071: 38
1072
+ Case #1072: 38
1073
+ Case #1073: 32
1074
+ Case #1074: 37
1075
+ Case #1075: 37
1076
+ Case #1076: 31
1077
+ Case #1077: 36
1078
+ Case #1078: 39
1079
+ Case #1079: 35
1080
+ Case #1080: 34
1081
+ Case #1081: 32
1082
+ Case #1082: 36
1083
+ Case #1083: 35
1084
+ Case #1084: 31
1085
+ Case #1085: 34
1086
+ Case #1086: 35
1087
+ Case #1087: 31
1088
+ Case #1088: 35
1089
+ Case #1089: 36
1090
+ Case #1090: 35
1091
+ Case #1091: 33
1092
+ Case #1092: 36
1093
+ Case #1093: 35
1094
+ Case #1094: 37
1095
+ Case #1095: 37
1096
+ Case #1096: 34
1097
+ Case #1097: 35
1098
+ Case #1098: 33
1099
+ Case #1099: 30
1100
+ Case #1100: 35
1101
+ Case #1101: 36
1102
+ Case #1102: 35
1103
+ Case #1103: 33
1104
+ Case #1104: 36
1105
+ Case #1105: 36
1106
+ Case #1106: 35
1107
+ Case #1107: 37
1108
+ Case #1108: 35
1109
+ Case #1109: 32
1110
+ Case #1110: 29
1111
+ Case #1111: 35
1112
+ Case #1112: 34
1113
+ Case #1113: 36
1114
+ Case #1114: 37
1115
+ Case #1115: 35
1116
+ Case #1116: 32
1117
+ Case #1117: 35
1118
+ Case #1118: 30
1119
+ Case #1119: 36
1120
+ Case #1120: 33
1121
+ Case #1121: 35
1122
+ Case #1122: 35
1123
+ Case #1123: 34
1124
+ Case #1124: 33
1125
+ Case #1125: 34
1126
+ Case #1126: 37
1127
+ Case #1127: 57
1128
+ Case #1128: 58
1129
+ Case #1129: 57
1130
+ Case #1130: 56
1131
+ Case #1131: 56
1132
+ Case #1132: 57
1133
+ Case #1133: 56
1134
+ Case #1134: 55
1135
+ Case #1135: 56
1136
+ Case #1136: 56
1137
+ Case #1137: 56
1138
+ Case #1138: 55
1139
+ Case #1139: 55
1140
+ Case #1140: 56
1141
+ Case #1141: 55
1142
+ Case #1142: 55
1143
+ Case #1143: 56
1144
+ Case #1144: 57
1145
+ Case #1145: 56
1146
+ Case #1146: 55
1147
+ Case #1147: 55
1148
+ Case #1148: 56
1149
+ Case #1149: 55
1150
+ Case #1150: 54
1151
+ Case #1151: 55
1152
+ Case #1152: 55
1153
+ Case #1153: 55
1154
+ Case #1154: 54
1155
+ Case #1155: 55
1156
+ Case #1156: 56
1157
+ Case #1157: 39
1158
+ Case #1158: 37
1159
+ Case #1159: 36
1160
+ Case #1160: 37
1161
+ Case #1161: 35
1162
+ Case #1162: 35
1163
+ Case #1163: 36
1164
+ Case #1164: 33
1165
+ Case #1165: 36
1166
+ Case #1166: 36
1167
+ Case #1167: 39
1168
+ Case #1168: 36
1169
+ Case #1169: 40
1170
+ Case #1170: 45
1171
+ Case #1171: 32
1172
+ Case #1172: 40
1173
+ Case #1173: 40
1174
+ Case #1174: 47
1175
+ Case #1175: 38
1176
+ Case #1176: 37
1177
+ Case #1177: 39
1178
+ Case #1178: 34
1179
+ Case #1179: 37
1180
+ Case #1180: 35
1181
+ Case #1181: 34
1182
+ Case #1182: 34
1183
+ Case #1183: 33
1184
+ Case #1184: 35
1185
+ Case #1185: 40
1186
+ Case #1186: 37
1187
+ Case #1187: 38
1188
+ Case #1188: 33
1189
+ Case #1189: 35
1190
+ Case #1190: 35
1191
+ Case #1191: 40
1192
+ Case #1192: 41
1193
+ Case #1193: 35
1194
+ Case #1194: 43
1195
+ Case #1195: 38
1196
+ Case #1196: 34
1197
+ Case #1197: 40
1198
+ Case #1198: 37
1199
+ Case #1199: 37
1200
+ Case #1200: 36
1201
+ Case #1201: 37
1202
+ Case #1202: 39
1203
+ Case #1203: 31
1204
+ Case #1204: 37
1205
+ Case #1205: 45
1206
+ Case #1206: 41
1207
+ Case #1207: 34
1208
+ Case #1208: 40
1209
+ Case #1209: 42
1210
+ Case #1210: 36
1211
+ Case #1211: 38
1212
+ Case #1212: 35
1213
+ Case #1213: 39
1214
+ Case #1214: 34
1215
+ Case #1215: 36
1216
+ Case #1216: 38
1217
+ Case #1217: 39
1218
+ Case #1218: 36
1219
+ Case #1219: 40
1220
+ Case #1220: 39
1221
+ Case #1221: 36
1222
+ Case #1222: 38
1223
+ Case #1223: 39
1224
+ Case #1224: 33
1225
+ Case #1225: 43
1226
+ Case #1226: 36
1227
+ Case #1227: 40
1228
+ Case #1228: 40
1229
+ Case #1229: 38
1230
+ Case #1230: 37
1231
+ Case #1231: 32
1232
+ Case #1232: 41
1233
+ Case #1233: 36
1234
+ Case #1234: 40
1235
+ Case #1235: 34
1236
+ Case #1236: 34
1237
+ Case #1237: 34
1238
+ Case #1238: 44
1239
+ Case #1239: 34
1240
+ Case #1240: 36
1241
+ Case #1241: 41
1242
+ Case #1242: 38
1243
+ Case #1243: 40
1244
+ Case #1244: 40
1245
+ Case #1245: 35
1246
+ Case #1246: 37
1247
+ Case #1247: 32
1248
+ Case #1248: 40
1249
+ Case #1249: 44
1250
+ Case #1250: 41
1251
+ Case #1251: 37
1252
+ Case #1252: 36
1253
+ Case #1253: 39
1254
+ Case #1254: 30
1255
+ Case #1255: 40
1256
+ Case #1256: 40
1257
+ Case #1257: 33
1258
+ Case #1258: 32
1259
+ Case #1259: 34
1260
+ Case #1260: 38
1261
+ Case #1261: 36
1262
+ Case #1262: 38
1263
+ Case #1263: 39
1264
+ Case #1264: 37
1265
+ Case #1265: 39
1266
+ Case #1266: 39
1267
+ Case #1267: 36
1268
+ Case #1268: 34
1269
+ Case #1269: 32
1270
+ Case #1270: 39
1271
+ Case #1271: 39
1272
+ Case #1272: 40
1273
+ Case #1273: 37
1274
+ Case #1274: 33
1275
+ Case #1275: 32
1276
+ Case #1276: 34
1277
+ Case #1277: 40
1278
+ Case #1278: 36
1279
+ Case #1279: 31
1280
+ Case #1280: 37
1281
+ Case #1281: 43
1282
+ Case #1282: 36
1283
+ Case #1283: 39
1284
+ Case #1284: 38
1285
+ Case #1285: 38
1286
+ Case #1286: 35
1287
+ Case #1287: 37
1288
+ Case #1288: 38
1289
+ Case #1289: 35
1290
+ Case #1290: 38
1291
+ Case #1291: 35
1292
+ Case #1292: 38
1293
+ Case #1293: 42
1294
+ Case #1294: 36
1295
+ Case #1295: 38
1296
+ Case #1296: 38
1297
+ Case #1297: 36
1298
+ Case #1298: 39
1299
+ Case #1299: 36
1300
+ Case #1300: 33
1301
+ Case #1301: 42
1302
+ Case #1302: 31
1303
+ Case #1303: 38
1304
+ Case #1304: 36
1305
+ Case #1305: 36
1306
+ Case #1306: 37
1307
+ Case #1307: 35
1308
+ Case #1308: 33
1309
+ Case #1309: 36
1310
+ Case #1310: 38
1311
+ Case #1311: 34
1312
+ Case #1312: 38
1313
+ Case #1313: 39
1314
+ Case #1314: 37
1315
+ Case #1315: 40
1316
+ Case #1316: 38
1317
+ Case #1317: 39
1318
+ Case #1318: 40
1319
+ Case #1319: 38
1320
+ Case #1320: 42
1321
+ Case #1321: 36
1322
+ Case #1322: 35
1323
+ Case #1323: 36
1324
+ Case #1324: 36
1325
+ Case #1325: 39
1326
+ Case #1326: 37
1327
+ Case #1327: 35
1328
+ Case #1328: 45
1329
+ Case #1329: 37
1330
+ Case #1330: 43
1331
+ Case #1331: 42
1332
+ Case #1332: 32
1333
+ Case #1333: 37
1334
+ Case #1334: 35
1335
+ Case #1335: 38
1336
+ Case #1336: 33
1337
+ Case #1337: 32
1338
+ Case #1338: 39
1339
+ Case #1339: 36
1340
+ Case #1340: 47
1341
+ Case #1341: 36
1342
+ Case #1342: 34
1343
+ Case #1343: 37
1344
+ Case #1344: 34
1345
+ Case #1345: 38
1346
+ Case #1346: 37
1347
+ Case #1347: 37
1348
+ Case #1348: 41
1349
+ Case #1349: 36
1350
+ Case #1350: 37
1351
+ Case #1351: 36
1352
+ Case #1352: 36
1353
+ Case #1353: 40
1354
+ Case #1354: 38
1355
+ Case #1355: 35
1356
+ Case #1356: 35
1357
+ Case #1357: 43
1358
+ Case #1358: 38
1359
+ Case #1359: 41
1360
+ Case #1360: 30
1361
+ Case #1361: 41
1362
+ Case #1362: 38
1363
+ Case #1363: 35
1364
+ Case #1364: 41
1365
+ Case #1365: 38
1366
+ Case #1366: 34
1367
+ Case #1367: 39
1368
+ Case #1368: 42
1369
+ Case #1369: 35
1370
+ Case #1370: 44
1371
+ Case #1371: 37
1372
+ Case #1372: 32
1373
+ Case #1373: 39
1374
+ Case #1374: 28
1375
+ Case #1375: 37
1376
+ Case #1376: 35
1377
+ Case #1377: 32
1378
+ Case #1378: 41
1379
+ Case #1379: 34
1380
+ Case #1380: 42
1381
+ Case #1381: 39
1382
+ Case #1382: 36
1383
+ Case #1383: 41
1384
+ Case #1384: 35
1385
+ Case #1385: 38
1386
+ Case #1386: 41
1387
+ Case #1387: 43
1388
+ Case #1388: 36
1389
+ Case #1389: 38
1390
+ Case #1390: 37
1391
+ Case #1391: 35
1392
+ Case #1392: 37
1393
+ Case #1393: 36
1394
+ Case #1394: 37
1395
+ Case #1395: 38
1396
+ Case #1396: 38
1397
+ Case #1397: 33
1398
+ Case #1398: 36
1399
+ Case #1399: 35
1400
+ Case #1400: 40
1401
+ Case #1401: 36
1402
+ Case #1402: 34
1403
+ Case #1403: 42
1404
+ Case #1404: 37
1405
+ Case #1405: 38
1406
+ Case #1406: 34
1407
+ Case #1407: 36
1408
+ Case #1408: 33
1409
+ Case #1409: 35
1410
+ Case #1410: 39
1411
+ Case #1411: 40
1412
+ Case #1412: 33
1413
+ Case #1413: 37
1414
+ Case #1414: 39
1415
+ Case #1415: 38
1416
+ Case #1416: 35
1417
+ Case #1417: 36
1418
+ Case #1418: 38
1419
+ Case #1419: 40
1420
+ Case #1420: 37
1421
+ Case #1421: 36
1422
+ Case #1422: 35
1423
+ Case #1423: 40
1424
+ Case #1424: 39
1425
+ Case #1425: 36
1426
+ Case #1426: 42
1427
+ Case #1427: 37
1428
+ Case #1428: 36
1429
+ Case #1429: 35
1430
+ Case #1430: 31
1431
+ Case #1431: 32
1432
+ Case #1432: 38
1433
+ Case #1433: 40
1434
+ Case #1434: 38
1435
+ Case #1435: 36
1436
+ Case #1436: 40
1437
+ Case #1437: 36
1438
+ Case #1438: 33
1439
+ Case #1439: 33
1440
+ Case #1440: 34
1441
+ Case #1441: 35
1442
+ Case #1442: 39
1443
+ Case #1443: 41
1444
+ Case #1444: 39
1445
+ Case #1445: 37
1446
+ Case #1446: 40
1447
+ Case #1447: 39
1448
+ Case #1448: 38
1449
+ Case #1449: 32
1450
+ Case #1450: 41
1451
+ Case #1451: 38
1452
+ Case #1452: 42
1453
+ Case #1453: 37
1454
+ Case #1454: 34
1455
+ Case #1455: 38
1456
+ Case #1456: 38
1457
+ Case #1457: 37
1458
+ Case #1458: 40
1459
+ Case #1459: 38
1460
+ Case #1460: 40
1461
+ Case #1461: 32
1462
+ Case #1462: 39
1463
+ Case #1463: 32
1464
+ Case #1464: 37
1465
+ Case #1465: 40
1466
+ Case #1466: 41
1467
+ Case #1467: 38
1468
+ Case #1468: 41
1469
+ Case #1469: 37
1470
+ Case #1470: 39
1471
+ Case #1471: 34
1472
+ Case #1472: 34
1473
+ Case #1473: 35
1474
+ Case #1474: 40
1475
+ Case #1475: 40
1476
+ Case #1476: 37
1477
+ Case #1477: 29
1478
+ Case #1478: 39
1479
+ Case #1479: 33
1480
+ Case #1480: 41
1481
+ Case #1481: 38
1482
+ Case #1482: 43
1483
+ Case #1483: 36
1484
+ Case #1484: 45
1485
+ Case #1485: 32
1486
+ Case #1486: 40
1487
+ Case #1487: 33
1488
+ Case #1488: 43
1489
+ Case #1489: 36
1490
+ Case #1490: 34
1491
+ Case #1491: 34
1492
+ Case #1492: 35
1493
+ Case #1493: 42
1494
+ Case #1494: 39
1495
+ Case #1495: 36
1496
+ Case #1496: 37
1497
+ Case #1497: 44
1498
+ Case #1498: 38
1499
+ Case #1499: 33
1500
+ Case #1500: 40
1501
+ Case #1501: 43
1502
+ Case #1502: 43
1503
+ Case #1503: 38
1504
+ Case #1504: 34
1505
+ Case #1505: 32
1506
+ Case #1506: 35
1507
+ Case #1507: 38
1508
+ Case #1508: 35
1509
+ Case #1509: 37
1510
+ Case #1510: 41
1511
+ Case #1511: 34
1512
+ Case #1512: 29
1513
+ Case #1513: 39
1514
+ Case #1514: 40
1515
+ Case #1515: 40
1516
+ Case #1516: 36
1517
+ Case #1517: 34
1518
+ Case #1518: 33
1519
+ Case #1519: 34
1520
+ Case #1520: 34
1521
+ Case #1521: 35
1522
+ Case #1522: 39
1523
+ Case #1523: 36
1524
+ Case #1524: 35
1525
+ Case #1525: 42
1526
+ Case #1526: 40
1527
+ Case #1527: 37
1528
+ Case #1528: 33
1529
+ Case #1529: 37
1530
+ Case #1530: 36
1531
+ Case #1531: 38
1532
+ Case #1532: 38
1533
+ Case #1533: 43
1534
+ Case #1534: 33
1535
+ Case #1535: 40
1536
+ Case #1536: 41
1537
+ Case #1537: 40
1538
+ Case #1538: 31
1539
+ Case #1539: 34
1540
+ Case #1540: 37
1541
+ Case #1541: 38
1542
+ Case #1542: 31
1543
+ Case #1543: 42
1544
+ Case #1544: 40
1545
+ Case #1545: 36
1546
+ Case #1546: 42
1547
+ Case #1547: 36
1548
+ Case #1548: 35
1549
+ Case #1549: 40
1550
+ Case #1550: 35
1551
+ Case #1551: 39
1552
+ Case #1552: 38
1553
+ Case #1553: 38
1554
+ Case #1554: 38
1555
+ Case #1555: 39
1556
+ Case #1556: 35
1557
+ Case #1557: 34
1558
+ Case #1558: 34
1559
+ Case #1559: 42
1560
+ Case #1560: 38
1561
+ Case #1561: 36
1562
+ Case #1562: 43
1563
+ Case #1563: 37
1564
+ Case #1564: 34
1565
+ Case #1565: 45
1566
+ Case #1566: 32
1567
+ Case #1567: 39
1568
+ Case #1568: 34
1569
+ Case #1569: 34
1570
+ Case #1570: 39
1571
+ Case #1571: 39
1572
+ Case #1572: 36
1573
+ Case #1573: 33
1574
+ Case #1574: 38
1575
+ Case #1575: 39
1576
+ Case #1576: 36
1577
+ Case #1577: 39
1578
+ Case #1578: 37
1579
+ Case #1579: 42
1580
+ Case #1580: 37
1581
+ Case #1581: 41
1582
+ Case #1582: 40
1583
+ Case #1583: 34
1584
+ Case #1584: 35
1585
+ Case #1585: 38
1586
+ Case #1586: 41
1587
+ Case #1587: 38
1588
+ Case #1588: 35
1589
+ Case #1589: 39
1590
+ Case #1590: 35
1591
+ Case #1591: 33
1592
+ Case #1592: 37
1593
+ Case #1593: 39
1594
+ Case #1594: 36
1595
+ Case #1595: 40
1596
+ Case #1596: 30
1597
+ Case #1597: 37
1598
+ Case #1598: 34
1599
+ Case #1599: 39
1600
+ Case #1600: 39
1601
+ Case #1601: 41
1602
+ Case #1602: 28
1603
+ Case #1603: 39
1604
+ Case #1604: 33
1605
+ Case #1605: 39
1606
+ Case #1606: 42
1607
+ Case #1607: 38
1608
+ Case #1608: 38
1609
+ Case #1609: 37
1610
+ Case #1610: 36
1611
+ Case #1611: 37
1612
+ Case #1612: 33
1613
+ Case #1613: 39
1614
+ Case #1614: 38
1615
+ Case #1615: 39
1616
+ Case #1616: 37
1617
+ Case #1617: 35
1618
+ Case #1618: 39
1619
+ Case #1619: 34
1620
+ Case #1620: 38
1621
+ Case #1621: 38
1622
+ Case #1622: 37
1623
+ Case #1623: 31
1624
+ Case #1624: 36
1625
+ Case #1625: 36
1626
+ Case #1626: 37
1627
+ Case #1627: 33
1628
+ Case #1628: 34
1629
+ Case #1629: 28
1630
+ Case #1630: 41
1631
+ Case #1631: 39
1632
+ Case #1632: 37
1633
+ Case #1633: 36
1634
+ Case #1634: 34
1635
+ Case #1635: 37
1636
+ Case #1636: 32
1637
+ Case #1637: 41
1638
+ Case #1638: 40
1639
+ Case #1639: 36
1640
+ Case #1640: 41
1641
+ Case #1641: 36
1642
+ Case #1642: 36
1643
+ Case #1643: 36
1644
+ Case #1644: 37
1645
+ Case #1645: 40
1646
+ Case #1646: 42
1647
+ Case #1647: 37
1648
+ Case #1648: 35
1649
+ Case #1649: 40
1650
+ Case #1650: 40
1651
+ Case #1651: 42
1652
+ Case #1652: 40
1653
+ Case #1653: 41
1654
+ Case #1654: 40
1655
+ Case #1655: 36
1656
+ Case #1656: 37
1657
+ Case #1657: 41
1658
+ Case #1658: 34
1659
+ Case #1659: 36
1660
+ Case #1660: 30
1661
+ Case #1661: 36
1662
+ Case #1662: 36
1663
+ Case #1663: 38
1664
+ Case #1664: 34
1665
+ Case #1665: 42
1666
+ Case #1666: 36
1667
+ Case #1667: 36
1668
+ Case #1668: 39
1669
+ Case #1669: 40
1670
+ Case #1670: 36
1671
+ Case #1671: 43
1672
+ Case #1672: 36
1673
+ Case #1673: 31
1674
+ Case #1674: 36
1675
+ Case #1675: 36
1676
+ Case #1676: 35
1677
+ Case #1677: 38
1678
+ Case #1678: 35
1679
+ Case #1679: 35
1680
+ Case #1680: 38
1681
+ Case #1681: 38
1682
+ Case #1682: 38
1683
+ Case #1683: 30
1684
+ Case #1684: 39
1685
+ Case #1685: 34
1686
+ Case #1686: 39
1687
+ Case #1687: 35
1688
+ Case #1688: 36
1689
+ Case #1689: 43
1690
+ Case #1690: 40
1691
+ Case #1691: 28
1692
+ Case #1692: 42
1693
+ Case #1693: 41
1694
+ Case #1694: 38
1695
+ Case #1695: 42
1696
+ Case #1696: 39
1697
+ Case #1697: 38
1698
+ Case #1698: 40
1699
+ Case #1699: 33
1700
+ Case #1700: 42
1701
+ Case #1701: 42
1702
+ Case #1702: 38
1703
+ Case #1703: 31
1704
+ Case #1704: 40
1705
+ Case #1705: 38
1706
+ Case #1706: 34
1707
+ Case #1707: 34
1708
+ Case #1708: 42
1709
+ Case #1709: 35
1710
+ Case #1710: 42
1711
+ Case #1711: 37
1712
+ Case #1712: 39
1713
+ Case #1713: 36
1714
+ Case #1714: 33
1715
+ Case #1715: 39
1716
+ Case #1716: 36
1717
+ Case #1717: 30
1718
+ Case #1718: 36
1719
+ Case #1719: 38
1720
+ Case #1720: 37
1721
+ Case #1721: 33
1722
+ Case #1722: 40
1723
+ Case #1723: 36
1724
+ Case #1724: 37
1725
+ Case #1725: 36
1726
+ Case #1726: 42
1727
+ Case #1727: 42
1728
+ Case #1728: 34
1729
+ Case #1729: 35
1730
+ Case #1730: 42
1731
+ Case #1731: 36
1732
+ Case #1732: 38
1733
+ Case #1733: 41
1734
+ Case #1734: 36
1735
+ Case #1735: 43
1736
+ Case #1736: 40
1737
+ Case #1737: 37
1738
+ Case #1738: 40
1739
+ Case #1739: 39
1740
+ Case #1740: 37
1741
+ Case #1741: 36
1742
+ Case #1742: 33
1743
+ Case #1743: 32
1744
+ Case #1744: 38
1745
+ Case #1745: 36
1746
+ Case #1746: 32
1747
+ Case #1747: 42
1748
+ Case #1748: 40
1749
+ Case #1749: 35
1750
+ Case #1750: 39
1751
+ Case #1751: 41
1752
+ Case #1752: 37
1753
+ Case #1753: 37
1754
+ Case #1754: 32
1755
+ Case #1755: 34
1756
+ Case #1756: 40
1757
+ Case #1757: 39
1758
+ Case #1758: 36
1759
+ Case #1759: 45
1760
+ Case #1760: 42
1761
+ Case #1761: 40
1762
+ Case #1762: 37
1763
+ Case #1763: 40
1764
+ Case #1764: 35
1765
+ Case #1765: 36
1766
+ Case #1766: 36
1767
+ Case #1767: 40
1768
+ Case #1768: 40
1769
+ Case #1769: 43
1770
+ Case #1770: 37
1771
+ Case #1771: 36
1772
+ Case #1772: 32
1773
+ Case #1773: 36
1774
+ Case #1774: 34
1775
+ Case #1775: 32
1776
+ Case #1776: 32
1777
+ Case #1777: 38
1778
+ Case #1778: 42
1779
+ Case #1779: 40
1780
+ Case #1780: 39
1781
+ Case #1781: 39
1782
+ Case #1782: 39
1783
+ Case #1783: 44
1784
+ Case #1784: 43
1785
+ Case #1785: 36
1786
+ Case #1786: 38
1787
+ Case #1787: 39
1788
+ Case #1788: 40
1789
+ Case #1789: 36
1790
+ Case #1790: 38
1791
+ Case #1791: 40
1792
+ Case #1792: 37
1793
+ Case #1793: 39
1794
+ Case #1794: 35
1795
+ Case #1795: 31
1796
+ Case #1796: 40
1797
+ Case #1797: 40
1798
+ Case #1798: 40
1799
+ Case #1799: 40
1800
+ Case #1800: 37
1801
+ Case #1801: 36
1802
+ Case #1802: 34
1803
+ Case #1803: 33
1804
+ Case #1804: 37
1805
+ Case #1805: 42
1806
+ Case #1806: 40
1807
+ Case #1807: 40
1808
+ Case #1808: 34
1809
+ Case #1809: 41
1810
+ Case #1810: 35
1811
+ Case #1811: 38
1812
+ Case #1812: 41
1813
+ Case #1813: 34
1814
+ Case #1814: 40
1815
+ Case #1815: 36
1816
+ Case #1816: 42
1817
+ Case #1817: 37
1818
+ Case #1818: 31
1819
+ Case #1819: 35
1820
+ Case #1820: 34
1821
+ Case #1821: 37
1822
+ Case #1822: 40
1823
+ Case #1823: 36
1824
+ Case #1824: 37
1825
+ Case #1825: 37
1826
+ Case #1826: 44
1827
+ Case #1827: 41
1828
+ Case #1828: 36
1829
+ Case #1829: 38
1830
+ Case #1830: 35
1831
+ Case #1831: 39
1832
+ Case #1832: 37
1833
+ Case #1833: 35
1834
+ Case #1834: 42
1835
+ Case #1835: 34
1836
+ Case #1836: 38
1837
+ Case #1837: 33
1838
+ Case #1838: 40
1839
+ Case #1839: 38
1840
+ Case #1840: 37
1841
+ Case #1841: 38
1842
+ Case #1842: 36
1843
+ Case #1843: 41
1844
+ Case #1844: 35
1845
+ Case #1845: 35
1846
+ Case #1846: 41
1847
+ Case #1847: 37
1848
+ Case #1848: 37
1849
+ Case #1849: 40
1850
+ Case #1850: 32
1851
+ Case #1851: 35
1852
+ Case #1852: 39
1853
+ Case #1853: 37
1854
+ Case #1854: 38
1855
+ Case #1855: 37
1856
+ Case #1856: 38
1857
+ Case #1857: 37
1858
+ Case #1858: 35
1859
+ Case #1859: 35
1860
+ Case #1860: 37
1861
+ Case #1861: 38
1862
+ Case #1862: 35
1863
+ Case #1863: 38
1864
+ Case #1864: 36
1865
+ Case #1865: 37
1866
+ Case #1866: 36
1867
+ Case #1867: 31
1868
+ Case #1868: 39
1869
+ Case #1869: 40
1870
+ Case #1870: 35
1871
+ Case #1871: 34
1872
+ Case #1872: 37
1873
+ Case #1873: 37
1874
+ Case #1874: 37
1875
+ Case #1875: 42
1876
+ Case #1876: 34
1877
+ Case #1877: 36
1878
+ Case #1878: 41
1879
+ Case #1879: 38
1880
+ Case #1880: 38
1881
+ Case #1881: 34
1882
+ Case #1882: 41
1883
+ Case #1883: 33
1884
+ Case #1884: 37
1885
+ Case #1885: 37
1886
+ Case #1886: 32
1887
+ Case #1887: 36
1888
+ Case #1888: 33
1889
+ Case #1889: 37
1890
+ Case #1890: 41
1891
+ Case #1891: 38
1892
+ Case #1892: 39
1893
+ Case #1893: 40
1894
+ Case #1894: 32
1895
+ Case #1895: 42
1896
+ Case #1896: 30
1897
+ Case #1897: 35
1898
+ Case #1898: 37
1899
+ Case #1899: 36
1900
+ Case #1900: 36
1901
+ Case #1901: 38
1902
+ Case #1902: 35
1903
+ Case #1903: 37
1904
+ Case #1904: 36
1905
+ Case #1905: 42
1906
+ Case #1906: 38
1907
+ Case #1907: 43
1908
+ Case #1908: 35
1909
+ Case #1909: 36
1910
+ Case #1910: 34
1911
+ Case #1911: 36
1912
+ Case #1912: 42
1913
+ Case #1913: 34
1914
+ Case #1914: 40
1915
+ Case #1915: 39
1916
+ Case #1916: 32
1917
+ Case #1917: 32
1918
+ Case #1918: 30
1919
+ Case #1919: 36
1920
+ Case #1920: 39
1921
+ Case #1921: 39
1922
+ Case #1922: 37
1923
+ Case #1923: 44
1924
+ Case #1924: 36
1925
+ Case #1925: 34
1926
+ Case #1926: 37
1927
+ Case #1927: 36
1928
+ Case #1928: 35
1929
+ Case #1929: 39
1930
+ Case #1930: 40
1931
+ Case #1931: 33
1932
+ Case #1932: 39
1933
+ Case #1933: 32
1934
+ Case #1934: 39
1935
+ Case #1935: 32
1936
+ Case #1936: 38
1937
+ Case #1937: 32
1938
+ Case #1938: 44
1939
+ Case #1939: 36
1940
+ Case #1940: 37
1941
+ Case #1941: 37
1942
+ Case #1942: 38
1943
+ Case #1943: 46
1944
+ Case #1944: 36
1945
+ Case #1945: 38
1946
+ Case #1946: 36
1947
+ Case #1947: 37
1948
+ Case #1948: 33
1949
+ Case #1949: 39
1950
+ Case #1950: 40
1951
+ Case #1951: 37
1952
+ Case #1952: 39
1953
+ Case #1953: 40
1954
+ Case #1954: 35
1955
+ Case #1955: 36
1956
+ Case #1956: 39
1957
+ Case #1957: 35
1958
+ Case #1958: 41
1959
+ Case #1959: 37
1960
+ Case #1960: 36
1961
+ Case #1961: 37
1962
+ Case #1962: 37
1963
+ Case #1963: 39
1964
+ Case #1964: 41
1965
+ Case #1965: 38
1966
+ Case #1966: 36
1967
+ Case #1967: 37
1968
+ Case #1968: 40
1969
+ Case #1969: 37
1970
+ Case #1970: 34
1971
+ Case #1971: 37
1972
+ Case #1972: 38
1973
+ Case #1973: 38
1974
+ Case #1974: 39
1975
+ Case #1975: 37
1976
+ Case #1976: 32
1977
+ Case #1977: 33
1978
+ Case #1978: 40
1979
+ Case #1979: 41
1980
+ Case #1980: 33
1981
+ Case #1981: 38
1982
+ Case #1982: 41
1983
+ Case #1983: 41
1984
+ Case #1984: 37
1985
+ Case #1985: 38
1986
+ Case #1986: 35
1987
+ Case #1987: 37
1988
+ Case #1988: 32
1989
+ Case #1989: 41
1990
+ Case #1990: 38
1991
+ Case #1991: 42
1992
+ Case #1992: 39
1993
+ Case #1993: 38
1994
+ Case #1994: 41
1995
+ Case #1995: 44
1996
+ Case #1996: 40
1997
+ Case #1997: 40
1998
+ Case #1998: 35
1999
+ Case #1999: 33
2000
+ Case #2000: 37
2018/quals/ethanstring.cpp ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Ethan Searches for a String
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ int main()
89
+ {
90
+ if (DEBUG)
91
+ freopen("in.txt","r",stdin);
92
+ // vars
93
+ int T,t;
94
+ string A,B;
95
+ int i,j;
96
+ // testcase loop
97
+ Read(T);
98
+ Fox1(t,T)
99
+ {
100
+ // input
101
+ cin >> A;
102
+ // check for a valid prefix to repeat
103
+ B="Impossible";
104
+ Fox1(i,Sz(A)-1)
105
+ if (A[i]==A[0])
106
+ {
107
+ Fox(j,Sz(A))
108
+ if (A[j]!=A[j%i])
109
+ B=A.substr(0,i)+A;
110
+ break;
111
+ }
112
+ // output
113
+ printf("Case #%d: ",t);
114
+ cout << B << endl;
115
+ }
116
+ return(0);
117
+ }
2018/quals/ethanstring.html ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ Ethan's doing his very first programming assignment: implementing a <code>contains()</code> function. This function takes two strings, <strong>A</strong> and <strong>B</strong>,
3
+ and returns <code>true</code> if <strong>A</strong> is a substring of <strong>B</strong>, and <code>false</code> otherwise.
4
+ </p>
5
+
6
+ <p>
7
+ Here's the algorithm that Ethan has come up with. Note that |<strong>A</strong>| denotes the length of <strong>A</strong>, and the individual characters of the strings are 1-indexed.
8
+ </p>
9
+
10
+ <ol>
11
+ <li>Set <em>i</em> and <em>j</em> to each be equal to 1.</li>
12
+ <li>If <em>i</em> &gt; |<strong>A</strong>|, return <code>true</code>.</li>
13
+ <li>If <em>j</em> &gt; |<strong>B</strong>|, return <code>false</code>.</li>
14
+ <li>If <strong>A<sub>i</sub></strong> = <strong>B<sub>j</sub></strong>, increment <em>i</em> and <em>j</em> by 1 each, and return to Step 2.</li>
15
+ <li>If <em>i</em> = 1, increment <em>j</em> by 1, and return to Step 2.</li>
16
+ <li>Set <em>i</em> to be equal to 1, and return to Step 2.</li>
17
+ </ol>
18
+
19
+ <p>
20
+ As the TA in charge of grading Ethan's assignment, this doesn't look quite right to you. To make sure Ethan doesn't get any more credit than he deserves, you'd like to find some inputs
21
+ for which his algorithm returns <code>false</code> even though it should return <code>true</code>.
22
+ </p>
23
+
24
+ <p>
25
+ The professor teaching this class has provided you with a half-written list of test cases. In particular, it's a list of inputs for the <strong>A</strong> parameter, and you're free to come up with
26
+ your own inputs for the <strong>B</strong> parameter. For each given string <strong>A</strong>, you want to find a string <strong>B</strong> that will cause Ethan's algorithm to return the
27
+ wrong output (<code>false</code> instead of <code>true</code>), if possible. <strong>A</strong> will only contain uppercase alphabetic characters, and <strong>B</strong> must follow the same constraint. The test cases shouldn't be too
28
+ large, so <strong>B</strong> must also contain at most 10,000 characters.
29
+ </p>
30
+
31
+ <h3>Input</h3>
32
+
33
+ <p>
34
+ Input begins with an integer <strong>T</strong>, the number of given strings.
35
+ Then, <strong>T</strong> lines follow. Each line contains a single string, <strong>A</strong>.
36
+ </p>
37
+
38
+
39
+ <h3>Output</h3>
40
+
41
+ <p>
42
+ For the <em>i</em>th given string, print a line containing "Case #<em>i</em>: "
43
+ followed by any valid string <strong>B</strong> that will cause Ethan's algorithm to return the wrong value, or "Impossible" if no such string exists.
44
+ </p>
45
+
46
+
47
+ <h3>Constraints</h3>
48
+
49
+ <p>
50
+ 1 &le; <strong>T</strong> &le; 100 <br />
51
+ 1 &le; |<strong>A</strong>| &le; 2,000 <br />
52
+ </p>
53
+
54
+
55
+ <h3>Explanation of Sample</h3>
56
+
57
+ <p>
58
+ In the first case, <em>i</em> and <em>j</em> will have these values in order the first 10 times the algorithm is at Step 2:
59
+ </p>
60
+
61
+ <pre>
62
+ i j
63
+ ---
64
+ 1 1
65
+ 2 2
66
+ 1 2
67
+ 1 3
68
+ 1 4
69
+ 1 5
70
+ 2 6
71
+ 3 7
72
+ 4 8
73
+ 1 8
74
+ </pre>
75
+
76
+ <p>
77
+ Please note that other outputs for example cases 1 and 3 would also be accepted.
78
+ </p>
79
+
2018/quals/ethanstring.in ADDED
The diff for this file is too large to render. See raw diff
 
2018/quals/ethanstring.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Ethan's doing his very first programming assignment: implementing a
2
+ `contains()` function. This function takes two strings, **A** and **B**, and
3
+ returns `true` if **A** is a substring of **B**, and `false` otherwise.
4
+
5
+ Here's the algorithm that Ethan has come up with. Note that |**A**| denotes
6
+ the length of **A**, and the individual characters of the strings are
7
+ 1-indexed.
8
+
9
+ 1. Set _i_ and _j_ to each be equal to 1.
10
+ 2. If _i_ > |**A**|, return `true`.
11
+ 3. If _j_ > |**B**|, return `false`.
12
+ 4. If **Ai** = **Bj**, increment _i_ and _j_ by 1 each, and return to Step 2.
13
+ 5. If _i_ = 1, increment _j_ by 1, and return to Step 2.
14
+ 6. Set _i_ to be equal to 1, and return to Step 2.
15
+
16
+ As the TA in charge of grading Ethan's assignment, this doesn't look quite
17
+ right to you. To make sure Ethan doesn't get any more credit than he deserves,
18
+ you'd like to find some inputs for which his algorithm returns `false` even
19
+ though it should return `true`.
20
+
21
+ The professor teaching this class has provided you with a half-written list of
22
+ test cases. In particular, it's a list of inputs for the **A** parameter, and
23
+ you're free to come up with your own inputs for the **B** parameter. For each
24
+ given string **A**, you want to find a string **B** that will cause Ethan's
25
+ algorithm to return the wrong output (`false` instead of `true`), if possible.
26
+ **A** will only contain uppercase alphabetic characters, and **B** must follow
27
+ the same constraint. The test cases shouldn't be too large, so **B** must also
28
+ contain at most 10,000 characters.
29
+
30
+ ### Input
31
+
32
+ Input begins with an integer **T**, the number of given strings. Then, **T**
33
+ lines follow. Each line contains a single string, **A**.
34
+
35
+ ### Output
36
+
37
+ For the _i_th given string, print a line containing "Case #_i_: " followed by
38
+ any valid string **B** that will cause Ethan's algorithm to return the wrong
39
+ value, or "Impossible" if no such string exists.
40
+
41
+ ### Constraints
42
+
43
+ 1 ≤ **T** ≤ 100
44
+ 1 ≤ |**A**| ≤ 2,000
45
+
46
+ ### Explanation of Sample
47
+
48
+ In the first case, _i_ and _j_ will have these values in order the first 10
49
+ times the algorithm is at Step 2:
50
+
51
+ i j
52
+ ---
53
+ 1 1
54
+ 2 2
55
+ 1 2
56
+ 1 3
57
+ 1 4
58
+ 1 5
59
+ 2 6
60
+ 3 7
61
+ 4 8
62
+ 1 8
63
+
64
+ Please note that other outputs for example cases 1 and 3 would also be
65
+ accepted.
66
+
2018/quals/ethanstring.out ADDED
The diff for this file is too large to render. See raw diff
 
2018/quals/interception.cpp ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Interception
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ int main()
89
+ {
90
+ if (DEBUG)
91
+ freopen("in.txt","r",stdin);
92
+ // vars
93
+ int T,t;
94
+ int N;
95
+ int i,p;
96
+ // testcase loop
97
+ Read(T);
98
+ Fox1(t,T)
99
+ {
100
+ // input
101
+ Read(N);
102
+ Fox(i,N+1)
103
+ Read(p);
104
+ // output
105
+ printf("Case #%d: ",t);
106
+ if (N%2==0)
107
+ printf("0\n");
108
+ else
109
+ printf("1\n0\n");
110
+ }
111
+ return(0);
112
+ }
2018/quals/interception.html ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ Consider an N-degree polynomial, expressed as follows:
3
+ </p>
4
+
5
+ <p>
6
+ <b>P</b><sub>N</sub> * x<sup>N</sup> + <b>P</b><sub>N-1</sub> * x<sup>N-1</sup> + ... + <b>P</b><sub>1</sub> * x<sup>1</sup> + <b>P</b><sub>0</sub> * x<sup>0</sup>
7
+ </p>
8
+
9
+ <p>
10
+ You'd like to find all of the polynomial's x-intercepts &mdash; in other words, all distinct real values of x for which the expression evaluates to 0.
11
+ </p>
12
+
13
+ <p>
14
+ Unfortunately, the order of operations has been reversed:
15
+ Addition (<strong>+</strong>) now has the highest precedence, followed by multiplication (<strong>*</strong>), followed by exponentiation (<strong>^</strong>).
16
+ In other words, an expression like a<sup>b</sup> + c * d should be evaluated as a<sup>((b+c)*d)</sup>.
17
+ For our purposes, exponentiation is right-associative (in other words, a<sup>b<sup>c</sup></sup> = a<sup>(b<sup>c</sup>)</sup>),
18
+ and 0<sup>0</sup> = 1.
19
+ The unary negation operator still has the highest precedence, so the expression -2<sup>-3</sup> * -1 + -2 evaluates to -2<sup>(-3 * (-1 + -2))</sup> = -2<sup>9</sup> = -512.
20
+ </p>
21
+
22
+ <h3>Input</h3>
23
+
24
+ <p>
25
+ Input begins with an integer <strong>T</strong>, the number of polynomials.
26
+ For each polynomial, there is first a line containing the integer <strong>N</strong>, the degree of the polynomial.
27
+ Then, <strong>N</strong>+1 lines follow. The <em>i</em>th of these lines contains the integer <strong>P<sub>i-1</sub></strong>.
28
+ </p>
29
+
30
+ <h3>Output</h3>
31
+
32
+ <p>
33
+ For the <em>i</em>th polynomial, print a line containing "Case #<em>i</em>: <strong>K</strong>",
34
+ where <strong>K</strong> is the number of distinct real values of <strong>x</strong> for which the polynomial evaluates to 0.
35
+ Then print <strong>K</strong> lines, each containing such a value of <strong>x</strong>, in increasing order.
36
+ </p>
37
+
38
+ <p>
39
+ Absolute and relative errors of up to 10<sup>-6</sup> will be ignored in the x-intercepts you output. However, <strong>K</strong> must be exactly correct.
40
+ </p>
41
+
42
+
43
+ <h3>Constraints</h3>
44
+
45
+ <p>
46
+ 1 &le; <strong>T</strong> &le; 200 <br />
47
+ 0 &le; <strong>N</strong> &le; 50 <br />
48
+ -50 &le; <strong>P<sub>i</sub></strong> &le; 50 <br />
49
+ <strong>P<sub>N</sub></strong> &ne; 0 <br />
50
+ </p>
51
+
52
+
53
+ <h3>Explanation of Sample</h3>
54
+
55
+ <p>
56
+ In the first case, the polynomial is 1 * x<sup>1</sup> + 1 * x<sup>0</sup>. With the order of operations reversed, this is evaluated as (1 * x)<sup>(((1 + 1) * x)<sup>0</sup>)</sup>, which is equal to 0 only when x = 0.
57
+ </p>
58
+
59
+ <p>
60
+ In the second case, the polynomial does not evaluate to 0 for any real value x.
61
+ </p>
2018/quals/interception.in ADDED
@@ -0,0 +1,8327 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 302
2
+ 13
3
+ -4
4
+ 47
5
+ 20
6
+ -16
7
+ 3
8
+ -3
9
+ 14
10
+ -7
11
+ 29
12
+ -17
13
+ -48
14
+ -36
15
+ 44
16
+ 25
17
+ 14
18
+ 18
19
+ 24
20
+ -22
21
+ 32
22
+ 12
23
+ -23
24
+ -40
25
+ -15
26
+ 29
27
+ -3
28
+ -12
29
+ -19
30
+ -24
31
+ -37
32
+ 11
33
+ 24
34
+ -19
35
+ 30
36
+ -44
37
+ -50
38
+ -21
39
+ 49
40
+ 13
41
+ -15
42
+ -46
43
+ -12
44
+ 13
45
+ -14
46
+ 44
47
+ -21
48
+ -27
49
+ 16
50
+ -43
51
+ 48
52
+ -48
53
+ 43
54
+ 6
55
+ 6
56
+ 50
57
+ 48
58
+ -43
59
+ 19
60
+ -44
61
+ -44
62
+ 32
63
+ 26
64
+ -43
65
+ -2
66
+ 17
67
+ -41
68
+ -44
69
+ 8
70
+ 22
71
+ -11
72
+ 1
73
+ 41
74
+ 7
75
+ 13
76
+ 8
77
+ 8
78
+ 3
79
+ -34
80
+ 25
81
+ 37
82
+ -40
83
+ 32
84
+ -30
85
+ 39
86
+ -6
87
+ -34
88
+ -45
89
+ 21
90
+ 15
91
+ -7
92
+ -9
93
+ -6
94
+ 45
95
+ -26
96
+ -8
97
+ -11
98
+ 3
99
+ 5
100
+ -47
101
+ -45
102
+ -42
103
+ 13
104
+ 20
105
+ 47
106
+ -47
107
+ 39
108
+ 49
109
+ -32
110
+ 22
111
+ 39
112
+ -25
113
+ -25
114
+ -13
115
+ -33
116
+ 49
117
+ -29
118
+ -39
119
+ 10
120
+ 19
121
+ 45
122
+ 39
123
+ 38
124
+ -33
125
+ -33
126
+ -48
127
+ -23
128
+ -19
129
+ -2
130
+ -9
131
+ -13
132
+ 32
133
+ -36
134
+ -5
135
+ -35
136
+ -24
137
+ -45
138
+ 3
139
+ 13
140
+ -47
141
+ 10
142
+ 5
143
+ 22
144
+ -21
145
+ -15
146
+ 18
147
+ 46
148
+ 26
149
+ 37
150
+ -9
151
+ 4
152
+ 18
153
+ -38
154
+ 22
155
+ 14
156
+ 5
157
+ -20
158
+ 47
159
+ 8
160
+ 7
161
+ 27
162
+ -18
163
+ 42
164
+ -38
165
+ 31
166
+ 37
167
+ -47
168
+ 50
169
+ -40
170
+ -48
171
+ 34
172
+ -49
173
+ -36
174
+ -3
175
+ -49
176
+ 21
177
+ -44
178
+ 18
179
+ 47
180
+ -42
181
+ -2
182
+ -46
183
+ 28
184
+ -1
185
+ -2
186
+ 50
187
+ -20
188
+ 24
189
+ 50
190
+ 48
191
+ 34
192
+ 22
193
+ 31
194
+ 31
195
+ -19
196
+ 20
197
+ 19
198
+ 38
199
+ 21
200
+ -3
201
+ 5
202
+ 44
203
+ 16
204
+ -45
205
+ 16
206
+ 29
207
+ -18
208
+ 22
209
+ -43
210
+ 25
211
+ -18
212
+ 28
213
+ 41
214
+ -41
215
+ 33
216
+ 50
217
+ 31
218
+ -15
219
+ -36
220
+ 34
221
+ -4
222
+ 7
223
+ 24
224
+ 36
225
+ -32
226
+ -29
227
+ 0
228
+ 1
229
+ 42
230
+ -34
231
+ 35
232
+ 32
233
+ 16
234
+ -36
235
+ -23
236
+ -47
237
+ -25
238
+ -1
239
+ -35
240
+ 19
241
+ 25
242
+ -6
243
+ -33
244
+ 8
245
+ -32
246
+ 9
247
+ 35
248
+ -4
249
+ -5
250
+ 1
251
+ 16
252
+ -11
253
+ -8
254
+ 40
255
+ -27
256
+ 43
257
+ 33
258
+ 13
259
+ 33
260
+ -13
261
+ -29
262
+ -26
263
+ 49
264
+ -43
265
+ 25
266
+ -38
267
+ -28
268
+ 31
269
+ -24
270
+ -32
271
+ -48
272
+ 50
273
+ -29
274
+ 28
275
+ 18
276
+ -39
277
+ -37
278
+ -40
279
+ -45
280
+ 7
281
+ 42
282
+ 42
283
+ 45
284
+ -44
285
+ 25
286
+ 16
287
+ -50
288
+ -35
289
+ -41
290
+ -12
291
+ 19
292
+ 47
293
+ 15
294
+ 4
295
+ 14
296
+ 39
297
+ -11
298
+ -32
299
+ -35
300
+ 13
301
+ 43
302
+ 2
303
+ -15
304
+ 43
305
+ -36
306
+ 46
307
+ 24
308
+ 34
309
+ 11
310
+ -44
311
+ -35
312
+ -42
313
+ -11
314
+ 16
315
+ -16
316
+ -33
317
+ -10
318
+ -4
319
+ -9
320
+ -48
321
+ 45
322
+ -3
323
+ 12
324
+ 10
325
+ -31
326
+ -23
327
+ -17
328
+ 16
329
+ 6
330
+ 25
331
+ -23
332
+ -19
333
+ -37
334
+ -14
335
+ 18
336
+ 0
337
+ -14
338
+ -43
339
+ -6
340
+ 47
341
+ -20
342
+ 17
343
+ -9
344
+ 26
345
+ -34
346
+ 46
347
+ 21
348
+ 46
349
+ -3
350
+ -35
351
+ -15
352
+ 17
353
+ -8
354
+ -2
355
+ 4
356
+ 9
357
+ -11
358
+ -21
359
+ -8
360
+ -26
361
+ -8
362
+ -46
363
+ -43
364
+ -36
365
+ -38
366
+ 48
367
+ -46
368
+ 43
369
+ 19
370
+ 18
371
+ -18
372
+ -11
373
+ 39
374
+ -6
375
+ -24
376
+ -19
377
+ -6
378
+ -5
379
+ -23
380
+ 12
381
+ 44
382
+ -4
383
+ 48
384
+ -13
385
+ -8
386
+ 9
387
+ 9
388
+ 46
389
+ -6
390
+ 45
391
+ -7
392
+ 9
393
+ -16
394
+ 16
395
+ 31
396
+ -28
397
+ -30
398
+ -6
399
+ -7
400
+ -32
401
+ 35
402
+ -39
403
+ -39
404
+ -28
405
+ 32
406
+ 28
407
+ 36
408
+ -8
409
+ -21
410
+ -8
411
+ -10
412
+ 39
413
+ -10
414
+ 16
415
+ 19
416
+ 50
417
+ -47
418
+ 9
419
+ 32
420
+ -31
421
+ 21
422
+ 4
423
+ 13
424
+ 22
425
+ -3
426
+ 9
427
+ -31
428
+ 26
429
+ 46
430
+ 50
431
+ -32
432
+ 32
433
+ 1
434
+ 36
435
+ -12
436
+ 36
437
+ 29
438
+ -10
439
+ 9
440
+ 30
441
+ -2
442
+ 44
443
+ -23
444
+ -48
445
+ 1
446
+ -42
447
+ -43
448
+ 33
449
+ -16
450
+ 36
451
+ -35
452
+ -11
453
+ 22
454
+ -27
455
+ -12
456
+ 27
457
+ -6
458
+ 15
459
+ -23
460
+ 42
461
+ 10
462
+ 10
463
+ -40
464
+ -1
465
+ -18
466
+ 16
467
+ 12
468
+ 15
469
+ -23
470
+ -9
471
+ 14
472
+ -15
473
+ -11
474
+ 31
475
+ 21
476
+ 24
477
+ 31
478
+ -25
479
+ 19
480
+ -33
481
+ 22
482
+ -20
483
+ -5
484
+ -50
485
+ 9
486
+ 9
487
+ -9
488
+ 4
489
+ -12
490
+ 41
491
+ 25
492
+ -49
493
+ -42
494
+ 40
495
+ -21
496
+ -17
497
+ 23
498
+ -34
499
+ 46
500
+ 43
501
+ 27
502
+ -33
503
+ -43
504
+ -18
505
+ -30
506
+ 41
507
+ 47
508
+ 11
509
+ -13
510
+ 32
511
+ -2
512
+ -50
513
+ 12
514
+ 37
515
+ 18
516
+ 36
517
+ 40
518
+ -43
519
+ 40
520
+ -24
521
+ 48
522
+ -20
523
+ 10
524
+ 26
525
+ -29
526
+ 6
527
+ -21
528
+ 27
529
+ 22
530
+ 17
531
+ 25
532
+ 39
533
+ 33
534
+ -29
535
+ -28
536
+ -20
537
+ 48
538
+ -20
539
+ -16
540
+ -38
541
+ -18
542
+ 32
543
+ -37
544
+ 28
545
+ -31
546
+ -16
547
+ -26
548
+ -37
549
+ -29
550
+ -46
551
+ 38
552
+ -13
553
+ -9
554
+ 26
555
+ -5
556
+ -49
557
+ 17
558
+ 36
559
+ 49
560
+ 33
561
+ -15
562
+ 15
563
+ 18
564
+ -14
565
+ -22
566
+ -42
567
+ 43
568
+ -19
569
+ -9
570
+ 39
571
+ -46
572
+ -17
573
+ -42
574
+ 41
575
+ -12
576
+ 12
577
+ -44
578
+ -39
579
+ 3
580
+ -28
581
+ -40
582
+ -2
583
+ -27
584
+ -8
585
+ -22
586
+ -26
587
+ 35
588
+ 1
589
+ -43
590
+ 17
591
+ -35
592
+ -17
593
+ -24
594
+ -22
595
+ -22
596
+ 7
597
+ 34
598
+ 28
599
+ 13
600
+ 7
601
+ 0
602
+ -42
603
+ 47
604
+ 10
605
+ 9
606
+ 12
607
+ 20
608
+ 0
609
+ 35
610
+ 21
611
+ 20
612
+ 43
613
+ 10
614
+ 5
615
+ -9
616
+ -14
617
+ 35
618
+ -1
619
+ 26
620
+ 19
621
+ 31
622
+ 30
623
+ 17
624
+ 21
625
+ -16
626
+ -30
627
+ -36
628
+ -11
629
+ 46
630
+ -40
631
+ 2
632
+ 10
633
+ 22
634
+ -13
635
+ -50
636
+ 50
637
+ -39
638
+ 41
639
+ 18
640
+ -20
641
+ 30
642
+ 40
643
+ 37
644
+ 9
645
+ -47
646
+ -14
647
+ -30
648
+ 48
649
+ 48
650
+ 33
651
+ -18
652
+ -25
653
+ -46
654
+ 39
655
+ -28
656
+ -12
657
+ -48
658
+ -4
659
+ 1
660
+ 36
661
+ 12
662
+ -17
663
+ 8
664
+ -28
665
+ -48
666
+ 9
667
+ 16
668
+ 36
669
+ 25
670
+ 21
671
+ -30
672
+ 9
673
+ 18
674
+ -19
675
+ 0
676
+ 31
677
+ 3
678
+ -22
679
+ 14
680
+ 12
681
+ -46
682
+ -7
683
+ 3
684
+ 42
685
+ 1
686
+ 37
687
+ -1
688
+ 49
689
+ -50
690
+ 39
691
+ -29
692
+ 19
693
+ 2
694
+ -39
695
+ 17
696
+ 5
697
+ 20
698
+ -6
699
+ -50
700
+ -23
701
+ 16
702
+ 49
703
+ -41
704
+ 43
705
+ -18
706
+ 5
707
+ 2
708
+ -43
709
+ 44
710
+ -11
711
+ -39
712
+ 39
713
+ 42
714
+ 40
715
+ -6
716
+ -24
717
+ 27
718
+ -8
719
+ 41
720
+ 34
721
+ 21
722
+ -38
723
+ 40
724
+ -39
725
+ -16
726
+ 27
727
+ 5
728
+ 1
729
+ -1
730
+ 47
731
+ 23
732
+ -13
733
+ -28
734
+ 47
735
+ -24
736
+ 27
737
+ 11
738
+ 7
739
+ -24
740
+ 26
741
+ -26
742
+ -39
743
+ 21
744
+ -19
745
+ -43
746
+ 47
747
+ -20
748
+ 29
749
+ -33
750
+ -2
751
+ -5
752
+ -45
753
+ -17
754
+ 37
755
+ -8
756
+ 13
757
+ 20
758
+ -25
759
+ 36
760
+ -12
761
+ -24
762
+ -30
763
+ 10
764
+ -23
765
+ -14
766
+ -12
767
+ -15
768
+ 12
769
+ 29
770
+ 29
771
+ 14
772
+ 6
773
+ 26
774
+ -26
775
+ 23
776
+ -28
777
+ 1
778
+ -27
779
+ -8
780
+ 8
781
+ 23
782
+ -14
783
+ 1
784
+ -47
785
+ -32
786
+ 3
787
+ 7
788
+ 28
789
+ -14
790
+ 9
791
+ -31
792
+ 28
793
+ 37
794
+ -5
795
+ -12
796
+ 7
797
+ -49
798
+ 26
799
+ -34
800
+ -47
801
+ 24
802
+ -25
803
+ -31
804
+ -42
805
+ 22
806
+ 11
807
+ 14
808
+ -42
809
+ -3
810
+ 5
811
+ 16
812
+ -48
813
+ 14
814
+ -19
815
+ 24
816
+ 9
817
+ 12
818
+ -24
819
+ -18
820
+ 44
821
+ 2
822
+ 40
823
+ -23
824
+ -16
825
+ -27
826
+ -36
827
+ -6
828
+ -14
829
+ 14
830
+ 45
831
+ -2
832
+ -23
833
+ 7
834
+ -5
835
+ -37
836
+ 1
837
+ -23
838
+ 18
839
+ -26
840
+ 8
841
+ -17
842
+ -21
843
+ -31
844
+ 50
845
+ 17
846
+ -50
847
+ -36
848
+ -37
849
+ 3
850
+ -22
851
+ 1
852
+ 50
853
+ -27
854
+ -34
855
+ 48
856
+ 45
857
+ 19
858
+ 14
859
+ -22
860
+ -15
861
+ -16
862
+ 46
863
+ -1
864
+ 49
865
+ -20
866
+ -29
867
+ -35
868
+ -49
869
+ 7
870
+ 47
871
+ -4
872
+ 41
873
+ -40
874
+ -26
875
+ 22
876
+ -5
877
+ -14
878
+ -39
879
+ -6
880
+ -39
881
+ -2
882
+ -34
883
+ 27
884
+ -37
885
+ -49
886
+ -15
887
+ -28
888
+ -27
889
+ -50
890
+ -18
891
+ 28
892
+ -28
893
+ 46
894
+ -32
895
+ -29
896
+ -48
897
+ 2
898
+ -13
899
+ -33
900
+ 12
901
+ 2
902
+ 27
903
+ -47
904
+ -5
905
+ 33
906
+ 19
907
+ 2
908
+ 19
909
+ 20
910
+ 29
911
+ -13
912
+ 34
913
+ -26
914
+ -49
915
+ 8
916
+ -38
917
+ -43
918
+ -4
919
+ -21
920
+ -18
921
+ -4
922
+ 28
923
+ -25
924
+ -31
925
+ 40
926
+ -48
927
+ -23
928
+ 11
929
+ 47
930
+ -3
931
+ 31
932
+ -35
933
+ 42
934
+ 46
935
+ -40
936
+ -45
937
+ -5
938
+ 43
939
+ 8
940
+ 27
941
+ -35
942
+ 31
943
+ 12
944
+ -42
945
+ 14
946
+ 16
947
+ 23
948
+ 0
949
+ 20
950
+ -26
951
+ 42
952
+ -17
953
+ 44
954
+ 44
955
+ -21
956
+ 24
957
+ -50
958
+ 30
959
+ -32
960
+ -3
961
+ 24
962
+ 14
963
+ -39
964
+ -7
965
+ 37
966
+ -45
967
+ 45
968
+ 44
969
+ 3
970
+ 18
971
+ 17
972
+ 20
973
+ -16
974
+ -48
975
+ -39
976
+ 14
977
+ -15
978
+ 33
979
+ 15
980
+ -6
981
+ 33
982
+ -28
983
+ -2
984
+ 1
985
+ -48
986
+ -16
987
+ -32
988
+ -17
989
+ 40
990
+ 44
991
+ -39
992
+ -47
993
+ 43
994
+ 24
995
+ 1
996
+ 31
997
+ -34
998
+ -8
999
+ 8
1000
+ 7
1001
+ -43
1002
+ 37
1003
+ 34
1004
+ 36
1005
+ -24
1006
+ 10
1007
+ -6
1008
+ -12
1009
+ 5
1010
+ -42
1011
+ 28
1012
+ 13
1013
+ 44
1014
+ 36
1015
+ 2
1016
+ -24
1017
+ 43
1018
+ -16
1019
+ -1
1020
+ 35
1021
+ 43
1022
+ -7
1023
+ 23
1024
+ -24
1025
+ -39
1026
+ -29
1027
+ -39
1028
+ 4
1029
+ 11
1030
+ 44
1031
+ -33
1032
+ -23
1033
+ 0
1034
+ -10
1035
+ 10
1036
+ 26
1037
+ -9
1038
+ 30
1039
+ -36
1040
+ -34
1041
+ -12
1042
+ 38
1043
+ -38
1044
+ 48
1045
+ -7
1046
+ -2
1047
+ 49
1048
+ 31
1049
+ -20
1050
+ 40
1051
+ 8
1052
+ 6
1053
+ -38
1054
+ -50
1055
+ 45
1056
+ 21
1057
+ 19
1058
+ -43
1059
+ 7
1060
+ 1
1061
+ 1
1062
+ 1
1063
+ 49
1064
+ 41
1065
+ -22
1066
+ 0
1067
+ 18
1068
+ -11
1069
+ 26
1070
+ 40
1071
+ -26
1072
+ -38
1073
+ -9
1074
+ 2
1075
+ 32
1076
+ -25
1077
+ -8
1078
+ 28
1079
+ -23
1080
+ -15
1081
+ 3
1082
+ -11
1083
+ 33
1084
+ -3
1085
+ -6
1086
+ -37
1087
+ -7
1088
+ -32
1089
+ 23
1090
+ -37
1091
+ 36
1092
+ -15
1093
+ 37
1094
+ -8
1095
+ 12
1096
+ 27
1097
+ -24
1098
+ 3
1099
+ 48
1100
+ -36
1101
+ -6
1102
+ 9
1103
+ -1
1104
+ -20
1105
+ -45
1106
+ -29
1107
+ 38
1108
+ -7
1109
+ 14
1110
+ 42
1111
+ -36
1112
+ 18
1113
+ 2
1114
+ 38
1115
+ -22
1116
+ -27
1117
+ -41
1118
+ -48
1119
+ -30
1120
+ 35
1121
+ -7
1122
+ -8
1123
+ -9
1124
+ 8
1125
+ -29
1126
+ 41
1127
+ -22
1128
+ -24
1129
+ -43
1130
+ 40
1131
+ -12
1132
+ -37
1133
+ 33
1134
+ -5
1135
+ -31
1136
+ -37
1137
+ -37
1138
+ -2
1139
+ 5
1140
+ -23
1141
+ 1
1142
+ 38
1143
+ 46
1144
+ 25
1145
+ 0
1146
+ -10
1147
+ -39
1148
+ -4
1149
+ 26
1150
+ -47
1151
+ 21
1152
+ 19
1153
+ 2
1154
+ 44
1155
+ -8
1156
+ 47
1157
+ 14
1158
+ 26
1159
+ 36
1160
+ -49
1161
+ 13
1162
+ 50
1163
+ 4
1164
+ 12
1165
+ 43
1166
+ -29
1167
+ 21
1168
+ -26
1169
+ -21
1170
+ 2
1171
+ -9
1172
+ -43
1173
+ 50
1174
+ -32
1175
+ 37
1176
+ -46
1177
+ -10
1178
+ 22
1179
+ 21
1180
+ 20
1181
+ 26
1182
+ 7
1183
+ -5
1184
+ 30
1185
+ -26
1186
+ 48
1187
+ -15
1188
+ -26
1189
+ -30
1190
+ 22
1191
+ -36
1192
+ 11
1193
+ -46
1194
+ 13
1195
+ -19
1196
+ 5
1197
+ -34
1198
+ 4
1199
+ -25
1200
+ 21
1201
+ 49
1202
+ -25
1203
+ -39
1204
+ -13
1205
+ -11
1206
+ 17
1207
+ 40
1208
+ -38
1209
+ -43
1210
+ 29
1211
+ -20
1212
+ 30
1213
+ -47
1214
+ 29
1215
+ 16
1216
+ -45
1217
+ -32
1218
+ 20
1219
+ -50
1220
+ -10
1221
+ -46
1222
+ 20
1223
+ 47
1224
+ -48
1225
+ 33
1226
+ -2
1227
+ 43
1228
+ -21
1229
+ -32
1230
+ 14
1231
+ 32
1232
+ 25
1233
+ 45
1234
+ 17
1235
+ 23
1236
+ 35
1237
+ 32
1238
+ -19
1239
+ -39
1240
+ 50
1241
+ -20
1242
+ -23
1243
+ 4
1244
+ -45
1245
+ -12
1246
+ -40
1247
+ 31
1248
+ 19
1249
+ 8
1250
+ -37
1251
+ 16
1252
+ -46
1253
+ -50
1254
+ -13
1255
+ -16
1256
+ 7
1257
+ -23
1258
+ 8
1259
+ -33
1260
+ 8
1261
+ -36
1262
+ -10
1263
+ -17
1264
+ 23
1265
+ -48
1266
+ -18
1267
+ -17
1268
+ 4
1269
+ 45
1270
+ 2
1271
+ -21
1272
+ 5
1273
+ 9
1274
+ -40
1275
+ -25
1276
+ 6
1277
+ -35
1278
+ 19
1279
+ 6
1280
+ -9
1281
+ -24
1282
+ -8
1283
+ 49
1284
+ -19
1285
+ 25
1286
+ -23
1287
+ 43
1288
+ -43
1289
+ 1
1290
+ 16
1291
+ -45
1292
+ -43
1293
+ 50
1294
+ -46
1295
+ -33
1296
+ 25
1297
+ 2
1298
+ -50
1299
+ -7
1300
+ -30
1301
+ 5
1302
+ 40
1303
+ 30
1304
+ 43
1305
+ -50
1306
+ 26
1307
+ 11
1308
+ 11
1309
+ -28
1310
+ -28
1311
+ -49
1312
+ 44
1313
+ 43
1314
+ -3
1315
+ 16
1316
+ 30
1317
+ -33
1318
+ 10
1319
+ -10
1320
+ -48
1321
+ 34
1322
+ -8
1323
+ 32
1324
+ 9
1325
+ -49
1326
+ 23
1327
+ -14
1328
+ 48
1329
+ -26
1330
+ 6
1331
+ 15
1332
+ 1
1333
+ -29
1334
+ 14
1335
+ 30
1336
+ -6
1337
+ -14
1338
+ 13
1339
+ 19
1340
+ 34
1341
+ 32
1342
+ 41
1343
+ 12
1344
+ 41
1345
+ -25
1346
+ -39
1347
+ -37
1348
+ 40
1349
+ 42
1350
+ -13
1351
+ 10
1352
+ 0
1353
+ 48
1354
+ 34
1355
+ 25
1356
+ 11
1357
+ -8
1358
+ -4
1359
+ 40
1360
+ -22
1361
+ 18
1362
+ -14
1363
+ 33
1364
+ -24
1365
+ 38
1366
+ -40
1367
+ 34
1368
+ 6
1369
+ -33
1370
+ -32
1371
+ -1
1372
+ -44
1373
+ 13
1374
+ -1
1375
+ 22
1376
+ -29
1377
+ -28
1378
+ -18
1379
+ -33
1380
+ 43
1381
+ -16
1382
+ 6
1383
+ 47
1384
+ 5
1385
+ 0
1386
+ 41
1387
+ 12
1388
+ -4
1389
+ 4
1390
+ 2
1391
+ 24
1392
+ 3
1393
+ 25
1394
+ 29
1395
+ -37
1396
+ -30
1397
+ -36
1398
+ 10
1399
+ 15
1400
+ 42
1401
+ 28
1402
+ 49
1403
+ 8
1404
+ -47
1405
+ -30
1406
+ -21
1407
+ -18
1408
+ 33
1409
+ -19
1410
+ -50
1411
+ 37
1412
+ -10
1413
+ 47
1414
+ -11
1415
+ -27
1416
+ -38
1417
+ 26
1418
+ -25
1419
+ 35
1420
+ 9
1421
+ 30
1422
+ -11
1423
+ -45
1424
+ -36
1425
+ 43
1426
+ -41
1427
+ 42
1428
+ -13
1429
+ -34
1430
+ -7
1431
+ -9
1432
+ 44
1433
+ 27
1434
+ 44
1435
+ -28
1436
+ 11
1437
+ -9
1438
+ 30
1439
+ 45
1440
+ 8
1441
+ -43
1442
+ 13
1443
+ 29
1444
+ -50
1445
+ -19
1446
+ 5
1447
+ -47
1448
+ 34
1449
+ 7
1450
+ -42
1451
+ 9
1452
+ 12
1453
+ -26
1454
+ -3
1455
+ 15
1456
+ 41
1457
+ -23
1458
+ -41
1459
+ 12
1460
+ -47
1461
+ 16
1462
+ 16
1463
+ 45
1464
+ 46
1465
+ -14
1466
+ 3
1467
+ -22
1468
+ -37
1469
+ 10
1470
+ -8
1471
+ 9
1472
+ 19
1473
+ -16
1474
+ -33
1475
+ 48
1476
+ -44
1477
+ -3
1478
+ -36
1479
+ -27
1480
+ 45
1481
+ -48
1482
+ 25
1483
+ -50
1484
+ -38
1485
+ -29
1486
+ 9
1487
+ -29
1488
+ -38
1489
+ -5
1490
+ 36
1491
+ -44
1492
+ -18
1493
+ -5
1494
+ -38
1495
+ -48
1496
+ 34
1497
+ -38
1498
+ 39
1499
+ 41
1500
+ 3
1501
+ 10
1502
+ -46
1503
+ 45
1504
+ 26
1505
+ 11
1506
+ -38
1507
+ -4
1508
+ -35
1509
+ -20
1510
+ 12
1511
+ 38
1512
+ -8
1513
+ 19
1514
+ -29
1515
+ 27
1516
+ -21
1517
+ 34
1518
+ -50
1519
+ -5
1520
+ -1
1521
+ 30
1522
+ 18
1523
+ 48
1524
+ -37
1525
+ -18
1526
+ -41
1527
+ 5
1528
+ 27
1529
+ 43
1530
+ 36
1531
+ -41
1532
+ -32
1533
+ -29
1534
+ 34
1535
+ 40
1536
+ -31
1537
+ -40
1538
+ -30
1539
+ -29
1540
+ -10
1541
+ -7
1542
+ -39
1543
+ 7
1544
+ 6
1545
+ -46
1546
+ -29
1547
+ -41
1548
+ -33
1549
+ 46
1550
+ -50
1551
+ 18
1552
+ 12
1553
+ 17
1554
+ 5
1555
+ -21
1556
+ 34
1557
+ 45
1558
+ -2
1559
+ 50
1560
+ 42
1561
+ 0
1562
+ -17
1563
+ -24
1564
+ 13
1565
+ -12
1566
+ -37
1567
+ -20
1568
+ -50
1569
+ 35
1570
+ 20
1571
+ -39
1572
+ -50
1573
+ 23
1574
+ -17
1575
+ -41
1576
+ 4
1577
+ 17
1578
+ -32
1579
+ -37
1580
+ 18
1581
+ 12
1582
+ -47
1583
+ 43
1584
+ -37
1585
+ -27
1586
+ 43
1587
+ 1
1588
+ -46
1589
+ 27
1590
+ -35
1591
+ 42
1592
+ 26
1593
+ -46
1594
+ 14
1595
+ 41
1596
+ 33
1597
+ 15
1598
+ 8
1599
+ 32
1600
+ 42
1601
+ 40
1602
+ -45
1603
+ 8
1604
+ -41
1605
+ 23
1606
+ -9
1607
+ -6
1608
+ 27
1609
+ 2
1610
+ -1
1611
+ -38
1612
+ 23
1613
+ 33
1614
+ -38
1615
+ -27
1616
+ -28
1617
+ 28
1618
+ 25
1619
+ -29
1620
+ 10
1621
+ 2
1622
+ 47
1623
+ 50
1624
+ -34
1625
+ 6
1626
+ -30
1627
+ -20
1628
+ -34
1629
+ 8
1630
+ -46
1631
+ -16
1632
+ 3
1633
+ 5
1634
+ 38
1635
+ -29
1636
+ 25
1637
+ 45
1638
+ 26
1639
+ 32
1640
+ -11
1641
+ -17
1642
+ 21
1643
+ -37
1644
+ 33
1645
+ 37
1646
+ 5
1647
+ 31
1648
+ -11
1649
+ 20
1650
+ 36
1651
+ -13
1652
+ -33
1653
+ -27
1654
+ 9
1655
+ 15
1656
+ -17
1657
+ -13
1658
+ -25
1659
+ 7
1660
+ -31
1661
+ 18
1662
+ -26
1663
+ 31
1664
+ 45
1665
+ 8
1666
+ -26
1667
+ -44
1668
+ -2
1669
+ -45
1670
+ -48
1671
+ -26
1672
+ -10
1673
+ 2
1674
+ -22
1675
+ 15
1676
+ 29
1677
+ -49
1678
+ -10
1679
+ 31
1680
+ 22
1681
+ -31
1682
+ -6
1683
+ 7
1684
+ 46
1685
+ -26
1686
+ -5
1687
+ -34
1688
+ -1
1689
+ -8
1690
+ 39
1691
+ -39
1692
+ 39
1693
+ 34
1694
+ 6
1695
+ -1
1696
+ 16
1697
+ 14
1698
+ 46
1699
+ 39
1700
+ 10
1701
+ -41
1702
+ -14
1703
+ 10
1704
+ 0
1705
+ -34
1706
+ 9
1707
+ 35
1708
+ 21
1709
+ -48
1710
+ 9
1711
+ 9
1712
+ -4
1713
+ -49
1714
+ 37
1715
+ -49
1716
+ -12
1717
+ -12
1718
+ -44
1719
+ 2
1720
+ 10
1721
+ 6
1722
+ -49
1723
+ 21
1724
+ 21
1725
+ 32
1726
+ 47
1727
+ -37
1728
+ 3
1729
+ 2
1730
+ -13
1731
+ 12
1732
+ 18
1733
+ -1
1734
+ -32
1735
+ 24
1736
+ 48
1737
+ 28
1738
+ 7
1739
+ 17
1740
+ 38
1741
+ 30
1742
+ 30
1743
+ -29
1744
+ -44
1745
+ -35
1746
+ -40
1747
+ 44
1748
+ 4
1749
+ 38
1750
+ 17
1751
+ -44
1752
+ 24
1753
+ -1
1754
+ -24
1755
+ 39
1756
+ 40
1757
+ -46
1758
+ 20
1759
+ -22
1760
+ 4
1761
+ -23
1762
+ -27
1763
+ -30
1764
+ -19
1765
+ -44
1766
+ -50
1767
+ 10
1768
+ 5
1769
+ 11
1770
+ -43
1771
+ -5
1772
+ -18
1773
+ -47
1774
+ -16
1775
+ -37
1776
+ 28
1777
+ -21
1778
+ 21
1779
+ 27
1780
+ 10
1781
+ 5
1782
+ 42
1783
+ -4
1784
+ 35
1785
+ -33
1786
+ -20
1787
+ -22
1788
+ -11
1789
+ -16
1790
+ 36
1791
+ 0
1792
+ -25
1793
+ 43
1794
+ -20
1795
+ 29
1796
+ -34
1797
+ 15
1798
+ -30
1799
+ -29
1800
+ 48
1801
+ 46
1802
+ 31
1803
+ -48
1804
+ 16
1805
+ -49
1806
+ -3
1807
+ 7
1808
+ -50
1809
+ -25
1810
+ 41
1811
+ 30
1812
+ -30
1813
+ -17
1814
+ 25
1815
+ -8
1816
+ -11
1817
+ -25
1818
+ 14
1819
+ -18
1820
+ -26
1821
+ 16
1822
+ -49
1823
+ 10
1824
+ 44
1825
+ -6
1826
+ -31
1827
+ 27
1828
+ -18
1829
+ -36
1830
+ 14
1831
+ -42
1832
+ 46
1833
+ -17
1834
+ -43
1835
+ 20
1836
+ 37
1837
+ -32
1838
+ 8
1839
+ -23
1840
+ 40
1841
+ 31
1842
+ -39
1843
+ -8
1844
+ 50
1845
+ -50
1846
+ 28
1847
+ -6
1848
+ 1
1849
+ 9
1850
+ 5
1851
+ 18
1852
+ 19
1853
+ -42
1854
+ -38
1855
+ -47
1856
+ -19
1857
+ -23
1858
+ 5
1859
+ 33
1860
+ 49
1861
+ -22
1862
+ 47
1863
+ 37
1864
+ 7
1865
+ -20
1866
+ 16
1867
+ -38
1868
+ -39
1869
+ 9
1870
+ -31
1871
+ 15
1872
+ 34
1873
+ -18
1874
+ -26
1875
+ -31
1876
+ 26
1877
+ -1
1878
+ 28
1879
+ 41
1880
+ 45
1881
+ -20
1882
+ -27
1883
+ 23
1884
+ 6
1885
+ -37
1886
+ -42
1887
+ -23
1888
+ 11
1889
+ -32
1890
+ -3
1891
+ -4
1892
+ 18
1893
+ 48
1894
+ -13
1895
+ 2
1896
+ 15
1897
+ -7
1898
+ 19
1899
+ -24
1900
+ -34
1901
+ 31
1902
+ -31
1903
+ -29
1904
+ 22
1905
+ -42
1906
+ -14
1907
+ -22
1908
+ 5
1909
+ 0
1910
+ -5
1911
+ 3
1912
+ 10
1913
+ -34
1914
+ -49
1915
+ -7
1916
+ 17
1917
+ -2
1918
+ 34
1919
+ 9
1920
+ 42
1921
+ -30
1922
+ 37
1923
+ -29
1924
+ -32
1925
+ 0
1926
+ -22
1927
+ -24
1928
+ -22
1929
+ 4
1930
+ -17
1931
+ -34
1932
+ -43
1933
+ -23
1934
+ 28
1935
+ 1
1936
+ 41
1937
+ -21
1938
+ 46
1939
+ 29
1940
+ -30
1941
+ 39
1942
+ -43
1943
+ -39
1944
+ -22
1945
+ -18
1946
+ -49
1947
+ -27
1948
+ 26
1949
+ -9
1950
+ -45
1951
+ 18
1952
+ 22
1953
+ 14
1954
+ 38
1955
+ 38
1956
+ -24
1957
+ -15
1958
+ 4
1959
+ 31
1960
+ 23
1961
+ 48
1962
+ 46
1963
+ 5
1964
+ 41
1965
+ 33
1966
+ 43
1967
+ -8
1968
+ -13
1969
+ -45
1970
+ 17
1971
+ -22
1972
+ -11
1973
+ -17
1974
+ 47
1975
+ -11
1976
+ 46
1977
+ 13
1978
+ -32
1979
+ 25
1980
+ -41
1981
+ 15
1982
+ -40
1983
+ 36
1984
+ -7
1985
+ -2
1986
+ 25
1987
+ -44
1988
+ -21
1989
+ -29
1990
+ -14
1991
+ 26
1992
+ -13
1993
+ 44
1994
+ 5
1995
+ -7
1996
+ -23
1997
+ -47
1998
+ 26
1999
+ 43
2000
+ -36
2001
+ 50
2002
+ -9
2003
+ -32
2004
+ 50
2005
+ -6
2006
+ 17
2007
+ 41
2008
+ 42
2009
+ 46
2010
+ -27
2011
+ 22
2012
+ -8
2013
+ 38
2014
+ -3
2015
+ 27
2016
+ -49
2017
+ 33
2018
+ -19
2019
+ -21
2020
+ -31
2021
+ 13
2022
+ -47
2023
+ 42
2024
+ 1
2025
+ 10
2026
+ 47
2027
+ -24
2028
+ -42
2029
+ 11
2030
+ 1
2031
+ 35
2032
+ 28
2033
+ -46
2034
+ 42
2035
+ -33
2036
+ -30
2037
+ 31
2038
+ -50
2039
+ -30
2040
+ 35
2041
+ 30
2042
+ -2
2043
+ 36
2044
+ 4
2045
+ -26
2046
+ 48
2047
+ 13
2048
+ 21
2049
+ 0
2050
+ -25
2051
+ 37
2052
+ -12
2053
+ 21
2054
+ 28
2055
+ -32
2056
+ 18
2057
+ 23
2058
+ -37
2059
+ -24
2060
+ -25
2061
+ 38
2062
+ -19
2063
+ -3
2064
+ 27
2065
+ -11
2066
+ 19
2067
+ 15
2068
+ -14
2069
+ 6
2070
+ -33
2071
+ 44
2072
+ 32
2073
+ 3
2074
+ 1
2075
+ 25
2076
+ 25
2077
+ 3
2078
+ 29
2079
+ -35
2080
+ -49
2081
+ -8
2082
+ -19
2083
+ 12
2084
+ 8
2085
+ -17
2086
+ 31
2087
+ -34
2088
+ -26
2089
+ 14
2090
+ -13
2091
+ -9
2092
+ -2
2093
+ 29
2094
+ 48
2095
+ 21
2096
+ 42
2097
+ 48
2098
+ -5
2099
+ 26
2100
+ -16
2101
+ -39
2102
+ 44
2103
+ 39
2104
+ 39
2105
+ 3
2106
+ 3
2107
+ -35
2108
+ -30
2109
+ 11
2110
+ -29
2111
+ 10
2112
+ 22
2113
+ 6
2114
+ 14
2115
+ -15
2116
+ 20
2117
+ 48
2118
+ -10
2119
+ -13
2120
+ 21
2121
+ 7
2122
+ -10
2123
+ -3
2124
+ 23
2125
+ -37
2126
+ 27
2127
+ 44
2128
+ 39
2129
+ 10
2130
+ -41
2131
+ -18
2132
+ 50
2133
+ 45
2134
+ 8
2135
+ -30
2136
+ 5
2137
+ -39
2138
+ -48
2139
+ 41
2140
+ -32
2141
+ -4
2142
+ -4
2143
+ 21
2144
+ 43
2145
+ -27
2146
+ 30
2147
+ -6
2148
+ -38
2149
+ 34
2150
+ 6
2151
+ 20
2152
+ 28
2153
+ 15
2154
+ -15
2155
+ 40
2156
+ 35
2157
+ 16
2158
+ -9
2159
+ -33
2160
+ -24
2161
+ 15
2162
+ 46
2163
+ -25
2164
+ -30
2165
+ -44
2166
+ 43
2167
+ -9
2168
+ -16
2169
+ -14
2170
+ -7
2171
+ -3
2172
+ 2
2173
+ 31
2174
+ -18
2175
+ -31
2176
+ -33
2177
+ 14
2178
+ 49
2179
+ -8
2180
+ 21
2181
+ 14
2182
+ 18
2183
+ 38
2184
+ -32
2185
+ -35
2186
+ 42
2187
+ 33
2188
+ 45
2189
+ 8
2190
+ 18
2191
+ -1
2192
+ 42
2193
+ 13
2194
+ -20
2195
+ 41
2196
+ 15
2197
+ 16
2198
+ 17
2199
+ 30
2200
+ 42
2201
+ -9
2202
+ -47
2203
+ -11
2204
+ 31
2205
+ -29
2206
+ 31
2207
+ 30
2208
+ -28
2209
+ 5
2210
+ -15
2211
+ 3
2212
+ -43
2213
+ 10
2214
+ 44
2215
+ 27
2216
+ -41
2217
+ 18
2218
+ -20
2219
+ 46
2220
+ -5
2221
+ 14
2222
+ -18
2223
+ 6
2224
+ 27
2225
+ -49
2226
+ -23
2227
+ -50
2228
+ -19
2229
+ 29
2230
+ 5
2231
+ 16
2232
+ 47
2233
+ 23
2234
+ 29
2235
+ -9
2236
+ -13
2237
+ -16
2238
+ 39
2239
+ 22
2240
+ 44
2241
+ -5
2242
+ 38
2243
+ -11
2244
+ -34
2245
+ 1
2246
+ 37
2247
+ -42
2248
+ -15
2249
+ 35
2250
+ 21
2251
+ -21
2252
+ -41
2253
+ 18
2254
+ -16
2255
+ 29
2256
+ -49
2257
+ -25
2258
+ -2
2259
+ -19
2260
+ -31
2261
+ 15
2262
+ -36
2263
+ -31
2264
+ 26
2265
+ 25
2266
+ -28
2267
+ 20
2268
+ -4
2269
+ 15
2270
+ 15
2271
+ -36
2272
+ 1
2273
+ -1
2274
+ -25
2275
+ 26
2276
+ -8
2277
+ -37
2278
+ -18
2279
+ 41
2280
+ 48
2281
+ 16
2282
+ 36
2283
+ 36
2284
+ -4
2285
+ -42
2286
+ 39
2287
+ -44
2288
+ -32
2289
+ -34
2290
+ -14
2291
+ 23
2292
+ 4
2293
+ -24
2294
+ -17
2295
+ -12
2296
+ -37
2297
+ -36
2298
+ 22
2299
+ -15
2300
+ 35
2301
+ 45
2302
+ 13
2303
+ -20
2304
+ 31
2305
+ -9
2306
+ 24
2307
+ 44
2308
+ -39
2309
+ -18
2310
+ 38
2311
+ -25
2312
+ 27
2313
+ 7
2314
+ 48
2315
+ 38
2316
+ 14
2317
+ 25
2318
+ 15
2319
+ 11
2320
+ 33
2321
+ -43
2322
+ -21
2323
+ 15
2324
+ -44
2325
+ -17
2326
+ -45
2327
+ 23
2328
+ 4
2329
+ -45
2330
+ 7
2331
+ -33
2332
+ -11
2333
+ -16
2334
+ -47
2335
+ 16
2336
+ 0
2337
+ 18
2338
+ -17
2339
+ -23
2340
+ -6
2341
+ -9
2342
+ 6
2343
+ 18
2344
+ 28
2345
+ -27
2346
+ 30
2347
+ -49
2348
+ 49
2349
+ -4
2350
+ 12
2351
+ 48
2352
+ 2
2353
+ 37
2354
+ -32
2355
+ -4
2356
+ 9
2357
+ -28
2358
+ 33
2359
+ 38
2360
+ 22
2361
+ -44
2362
+ 43
2363
+ 12
2364
+ 48
2365
+ 40
2366
+ 32
2367
+ 45
2368
+ -2
2369
+ 0
2370
+ 12
2371
+ 47
2372
+ -17
2373
+ 46
2374
+ -2
2375
+ 48
2376
+ -18
2377
+ -39
2378
+ -29
2379
+ -40
2380
+ -25
2381
+ -28
2382
+ -45
2383
+ 23
2384
+ -2
2385
+ -4
2386
+ 42
2387
+ -3
2388
+ 6
2389
+ 10
2390
+ -2
2391
+ 24
2392
+ -50
2393
+ -38
2394
+ -10
2395
+ -29
2396
+ -37
2397
+ -20
2398
+ -30
2399
+ -18
2400
+ 40
2401
+ -20
2402
+ 36
2403
+ -25
2404
+ 17
2405
+ 47
2406
+ 48
2407
+ 14
2408
+ 39
2409
+ -17
2410
+ 30
2411
+ -26
2412
+ 43
2413
+ 40
2414
+ 11
2415
+ -35
2416
+ -1
2417
+ 29
2418
+ 11
2419
+ 26
2420
+ 2
2421
+ -20
2422
+ 37
2423
+ -34
2424
+ 25
2425
+ 39
2426
+ 50
2427
+ 15
2428
+ 4
2429
+ -13
2430
+ 11
2431
+ -8
2432
+ -49
2433
+ 3
2434
+ 48
2435
+ -35
2436
+ -37
2437
+ -29
2438
+ 12
2439
+ -23
2440
+ -39
2441
+ 18
2442
+ 25
2443
+ 28
2444
+ 30
2445
+ -12
2446
+ 2
2447
+ -18
2448
+ 19
2449
+ 3
2450
+ 23
2451
+ -10
2452
+ 4
2453
+ 3
2454
+ 50
2455
+ 49
2456
+ 5
2457
+ 16
2458
+ -1
2459
+ -16
2460
+ 44
2461
+ -19
2462
+ -49
2463
+ -33
2464
+ -50
2465
+ 7
2466
+ -30
2467
+ -38
2468
+ 14
2469
+ 40
2470
+ 46
2471
+ -15
2472
+ 45
2473
+ 43
2474
+ 44
2475
+ 24
2476
+ 23
2477
+ -48
2478
+ -43
2479
+ -1
2480
+ -33
2481
+ -32
2482
+ 11
2483
+ 15
2484
+ 23
2485
+ 25
2486
+ 19
2487
+ -3
2488
+ -21
2489
+ -19
2490
+ 23
2491
+ -13
2492
+ 26
2493
+ -33
2494
+ -16
2495
+ 20
2496
+ 47
2497
+ 1
2498
+ -29
2499
+ -27
2500
+ -42
2501
+ 24
2502
+ -3
2503
+ -30
2504
+ 37
2505
+ 3
2506
+ 43
2507
+ 6
2508
+ -40
2509
+ -32
2510
+ 32
2511
+ 31
2512
+ -43
2513
+ -27
2514
+ 33
2515
+ 24
2516
+ 5
2517
+ -47
2518
+ -49
2519
+ -44
2520
+ -42
2521
+ 37
2522
+ -44
2523
+ 48
2524
+ -16
2525
+ 26
2526
+ -37
2527
+ 49
2528
+ -27
2529
+ 32
2530
+ 45
2531
+ -32
2532
+ 37
2533
+ 27
2534
+ -19
2535
+ -46
2536
+ 50
2537
+ 47
2538
+ 12
2539
+ -38
2540
+ -14
2541
+ -30
2542
+ 21
2543
+ 36
2544
+ -22
2545
+ -30
2546
+ -18
2547
+ -22
2548
+ 41
2549
+ 37
2550
+ -17
2551
+ 4
2552
+ 14
2553
+ -42
2554
+ -15
2555
+ 18
2556
+ 32
2557
+ -30
2558
+ 29
2559
+ -22
2560
+ 6
2561
+ -36
2562
+ 42
2563
+ 11
2564
+ -13
2565
+ -9
2566
+ -25
2567
+ 4
2568
+ 4
2569
+ 50
2570
+ -44
2571
+ -15
2572
+ -14
2573
+ 8
2574
+ 35
2575
+ 1
2576
+ 38
2577
+ -4
2578
+ 27
2579
+ -17
2580
+ 49
2581
+ 31
2582
+ -37
2583
+ 43
2584
+ -47
2585
+ 13
2586
+ -1
2587
+ -4
2588
+ 40
2589
+ 6
2590
+ -48
2591
+ -3
2592
+ 39
2593
+ -13
2594
+ 20
2595
+ 28
2596
+ 47
2597
+ 28
2598
+ -48
2599
+ -49
2600
+ 25
2601
+ -3
2602
+ 31
2603
+ -3
2604
+ 47
2605
+ -3
2606
+ 11
2607
+ 29
2608
+ 28
2609
+ 21
2610
+ -8
2611
+ -8
2612
+ -31
2613
+ -31
2614
+ 32
2615
+ -7
2616
+ -23
2617
+ 14
2618
+ -16
2619
+ -31
2620
+ -39
2621
+ -23
2622
+ -46
2623
+ -49
2624
+ 5
2625
+ -39
2626
+ -13
2627
+ -11
2628
+ -13
2629
+ 2
2630
+ -8
2631
+ -2
2632
+ 3
2633
+ -43
2634
+ -27
2635
+ 4
2636
+ -19
2637
+ -29
2638
+ 21
2639
+ 14
2640
+ -21
2641
+ -1
2642
+ -7
2643
+ -3
2644
+ 24
2645
+ -25
2646
+ -19
2647
+ 25
2648
+ 40
2649
+ -38
2650
+ 42
2651
+ 1
2652
+ 23
2653
+ 6
2654
+ 20
2655
+ -25
2656
+ -14
2657
+ -30
2658
+ 27
2659
+ -50
2660
+ -16
2661
+ 27
2662
+ -35
2663
+ -36
2664
+ -4
2665
+ -50
2666
+ 9
2667
+ -34
2668
+ -23
2669
+ -7
2670
+ -20
2671
+ -10
2672
+ -17
2673
+ -1
2674
+ 49
2675
+ -20
2676
+ -38
2677
+ -46
2678
+ -32
2679
+ -15
2680
+ 23
2681
+ -5
2682
+ -37
2683
+ 19
2684
+ 5
2685
+ -31
2686
+ -33
2687
+ -43
2688
+ 9
2689
+ 19
2690
+ 11
2691
+ 41
2692
+ 38
2693
+ -2
2694
+ 43
2695
+ -45
2696
+ -19
2697
+ 1
2698
+ -21
2699
+ 38
2700
+ 31
2701
+ 42
2702
+ -3
2703
+ 7
2704
+ -50
2705
+ -48
2706
+ -35
2707
+ -18
2708
+ -18
2709
+ 5
2710
+ 46
2711
+ 15
2712
+ 37
2713
+ -27
2714
+ 2
2715
+ -44
2716
+ 12
2717
+ 30
2718
+ -33
2719
+ -26
2720
+ 4
2721
+ 2
2722
+ 46
2723
+ 24
2724
+ 44
2725
+ 31
2726
+ -13
2727
+ 43
2728
+ -49
2729
+ -29
2730
+ 37
2731
+ -17
2732
+ 37
2733
+ -15
2734
+ -38
2735
+ 45
2736
+ -9
2737
+ 19
2738
+ -2
2739
+ -47
2740
+ 16
2741
+ 39
2742
+ 27
2743
+ 29
2744
+ 38
2745
+ 17
2746
+ -25
2747
+ 1
2748
+ -14
2749
+ 4
2750
+ 12
2751
+ 15
2752
+ 38
2753
+ -46
2754
+ -46
2755
+ 9
2756
+ -27
2757
+ 23
2758
+ 39
2759
+ -12
2760
+ -43
2761
+ -39
2762
+ 7
2763
+ -32
2764
+ 7
2765
+ -15
2766
+ -47
2767
+ 38
2768
+ 29
2769
+ 6
2770
+ 20
2771
+ -43
2772
+ 3
2773
+ 33
2774
+ -44
2775
+ -3
2776
+ -46
2777
+ 8
2778
+ 50
2779
+ 25
2780
+ 8
2781
+ -36
2782
+ -46
2783
+ 24
2784
+ -1
2785
+ -31
2786
+ 44
2787
+ -41
2788
+ -31
2789
+ 26
2790
+ -2
2791
+ -24
2792
+ 20
2793
+ 28
2794
+ -23
2795
+ 13
2796
+ -14
2797
+ -50
2798
+ -34
2799
+ 27
2800
+ -41
2801
+ 2
2802
+ -21
2803
+ -6
2804
+ 11
2805
+ 47
2806
+ 23
2807
+ -11
2808
+ -26
2809
+ 3
2810
+ -3
2811
+ -7
2812
+ 18
2813
+ 11
2814
+ -35
2815
+ 15
2816
+ 24
2817
+ 41
2818
+ -25
2819
+ -38
2820
+ -2
2821
+ -1
2822
+ 32
2823
+ -50
2824
+ 38
2825
+ -34
2826
+ 45
2827
+ 19
2828
+ 33
2829
+ -37
2830
+ -19
2831
+ 42
2832
+ -24
2833
+ 36
2834
+ 47
2835
+ -41
2836
+ 31
2837
+ -46
2838
+ 49
2839
+ -47
2840
+ 25
2841
+ -9
2842
+ -43
2843
+ -18
2844
+ -34
2845
+ -45
2846
+ -18
2847
+ -10
2848
+ -6
2849
+ -41
2850
+ 49
2851
+ -27
2852
+ -11
2853
+ 8
2854
+ -38
2855
+ 24
2856
+ 38
2857
+ 5
2858
+ -11
2859
+ 12
2860
+ 47
2861
+ 13
2862
+ -4
2863
+ 18
2864
+ 41
2865
+ -8
2866
+ 14
2867
+ -25
2868
+ -42
2869
+ 41
2870
+ -22
2871
+ -3
2872
+ 11
2873
+ 16
2874
+ -42
2875
+ -39
2876
+ -33
2877
+ -23
2878
+ 43
2879
+ 1
2880
+ 9
2881
+ -13
2882
+ -22
2883
+ 45
2884
+ -47
2885
+ -41
2886
+ -3
2887
+ -32
2888
+ 3
2889
+ 23
2890
+ 41
2891
+ 6
2892
+ -28
2893
+ 15
2894
+ -38
2895
+ 35
2896
+ -28
2897
+ -14
2898
+ 38
2899
+ -20
2900
+ 12
2901
+ 13
2902
+ 43
2903
+ 50
2904
+ -25
2905
+ -1
2906
+ 29
2907
+ -33
2908
+ -44
2909
+ 9
2910
+ -3
2911
+ 35
2912
+ -46
2913
+ 20
2914
+ -37
2915
+ 47
2916
+ -36
2917
+ -10
2918
+ -26
2919
+ 12
2920
+ -9
2921
+ 38
2922
+ -28
2923
+ -12
2924
+ -22
2925
+ -40
2926
+ -13
2927
+ 24
2928
+ 48
2929
+ -42
2930
+ 16
2931
+ 17
2932
+ 32
2933
+ -41
2934
+ 32
2935
+ -45
2936
+ 24
2937
+ -23
2938
+ 14
2939
+ -13
2940
+ -48
2941
+ -28
2942
+ -23
2943
+ -33
2944
+ 12
2945
+ 44
2946
+ -37
2947
+ -43
2948
+ 29
2949
+ 25
2950
+ 25
2951
+ 15
2952
+ 45
2953
+ -9
2954
+ 15
2955
+ 4
2956
+ 43
2957
+ -20
2958
+ -45
2959
+ -43
2960
+ -5
2961
+ -35
2962
+ -18
2963
+ 40
2964
+ -23
2965
+ -26
2966
+ 36
2967
+ 25
2968
+ 20
2969
+ 47
2970
+ -9
2971
+ -28
2972
+ 49
2973
+ -9
2974
+ -44
2975
+ -29
2976
+ 45
2977
+ -44
2978
+ -30
2979
+ 25
2980
+ -42
2981
+ 7
2982
+ -32
2983
+ -40
2984
+ 36
2985
+ 44
2986
+ 50
2987
+ 2
2988
+ 33
2989
+ -9
2990
+ 3
2991
+ -17
2992
+ -31
2993
+ 43
2994
+ 23
2995
+ 2
2996
+ -19
2997
+ 11
2998
+ 15
2999
+ -25
3000
+ -17
3001
+ -42
3002
+ -20
3003
+ -27
3004
+ 12
3005
+ -15
3006
+ 30
3007
+ 26
3008
+ 1
3009
+ 23
3010
+ -27
3011
+ -5
3012
+ 29
3013
+ -28
3014
+ -7
3015
+ -8
3016
+ -13
3017
+ 46
3018
+ -47
3019
+ 38
3020
+ 49
3021
+ 2
3022
+ 0
3023
+ 9
3024
+ 29
3025
+ 43
3026
+ 5
3027
+ 29
3028
+ 37
3029
+ 30
3030
+ 40
3031
+ 21
3032
+ 24
3033
+ -45
3034
+ -3
3035
+ -8
3036
+ -30
3037
+ -19
3038
+ 2
3039
+ -3
3040
+ -36
3041
+ 16
3042
+ 14
3043
+ -26
3044
+ -16
3045
+ 13
3046
+ -29
3047
+ 16
3048
+ -25
3049
+ 32
3050
+ 21
3051
+ -44
3052
+ 44
3053
+ -47
3054
+ 21
3055
+ -24
3056
+ 46
3057
+ 20
3058
+ 34
3059
+ 25
3060
+ 21
3061
+ -3
3062
+ 38
3063
+ 3
3064
+ 4
3065
+ -9
3066
+ -4
3067
+ 3
3068
+ -1
3069
+ -10
3070
+ 42
3071
+ 18
3072
+ -43
3073
+ -20
3074
+ -29
3075
+ 13
3076
+ 28
3077
+ -43
3078
+ 27
3079
+ -13
3080
+ -8
3081
+ -38
3082
+ -14
3083
+ 5
3084
+ -26
3085
+ -50
3086
+ 3
3087
+ 36
3088
+ -17
3089
+ -21
3090
+ 30
3091
+ 14
3092
+ -41
3093
+ 16
3094
+ 2
3095
+ -44
3096
+ 36
3097
+ 46
3098
+ 24
3099
+ -13
3100
+ -38
3101
+ -24
3102
+ -44
3103
+ 36
3104
+ -24
3105
+ -15
3106
+ -46
3107
+ -43
3108
+ -22
3109
+ 16
3110
+ -36
3111
+ 46
3112
+ 18
3113
+ 3
3114
+ 44
3115
+ 3
3116
+ -40
3117
+ -2
3118
+ -6
3119
+ -24
3120
+ -29
3121
+ 38
3122
+ 4
3123
+ -24
3124
+ 6
3125
+ -30
3126
+ 6
3127
+ 8
3128
+ 16
3129
+ 50
3130
+ 40
3131
+ 40
3132
+ 22
3133
+ -48
3134
+ 20
3135
+ -14
3136
+ 15
3137
+ 0
3138
+ 40
3139
+ -30
3140
+ -32
3141
+ -41
3142
+ -15
3143
+ -41
3144
+ -41
3145
+ -50
3146
+ -4
3147
+ -46
3148
+ -38
3149
+ 12
3150
+ 2
3151
+ -35
3152
+ -48
3153
+ 30
3154
+ 26
3155
+ 2
3156
+ 2
3157
+ 9
3158
+ 14
3159
+ -27
3160
+ 19
3161
+ -2
3162
+ -19
3163
+ -37
3164
+ 5
3165
+ 2
3166
+ -34
3167
+ 38
3168
+ 12
3169
+ -43
3170
+ -26
3171
+ -27
3172
+ -25
3173
+ 38
3174
+ -5
3175
+ 7
3176
+ 29
3177
+ 5
3178
+ 38
3179
+ -8
3180
+ 38
3181
+ 49
3182
+ 36
3183
+ -27
3184
+ -34
3185
+ 42
3186
+ 12
3187
+ -9
3188
+ -35
3189
+ -48
3190
+ 38
3191
+ 10
3192
+ 13
3193
+ 41
3194
+ 3
3195
+ 42
3196
+ 17
3197
+ 44
3198
+ 38
3199
+ -48
3200
+ 47
3201
+ 11
3202
+ -40
3203
+ -50
3204
+ 7
3205
+ 42
3206
+ -40
3207
+ 27
3208
+ -7
3209
+ -10
3210
+ -11
3211
+ 42
3212
+ -6
3213
+ 47
3214
+ 29
3215
+ -38
3216
+ 34
3217
+ 50
3218
+ -35
3219
+ 10
3220
+ -46
3221
+ -23
3222
+ -12
3223
+ -1
3224
+ 46
3225
+ -35
3226
+ -27
3227
+ 15
3228
+ 36
3229
+ 36
3230
+ -8
3231
+ -3
3232
+ 44
3233
+ -8
3234
+ -29
3235
+ -11
3236
+ -42
3237
+ -17
3238
+ -41
3239
+ 34
3240
+ 39
3241
+ -3
3242
+ 42
3243
+ -20
3244
+ -26
3245
+ -27
3246
+ 22
3247
+ 21
3248
+ 26
3249
+ -47
3250
+ 19
3251
+ 39
3252
+ 40
3253
+ 45
3254
+ 16
3255
+ 32
3256
+ -47
3257
+ 33
3258
+ 38
3259
+ -30
3260
+ 15
3261
+ -45
3262
+ -7
3263
+ -44
3264
+ -24
3265
+ 20
3266
+ 31
3267
+ 11
3268
+ 43
3269
+ 11
3270
+ 35
3271
+ -22
3272
+ 24
3273
+ -15
3274
+ 19
3275
+ 2
3276
+ 12
3277
+ 31
3278
+ 10
3279
+ 11
3280
+ -45
3281
+ 1
3282
+ -17
3283
+ 28
3284
+ 37
3285
+ -21
3286
+ -18
3287
+ 9
3288
+ 5
3289
+ 36
3290
+ 11
3291
+ -21
3292
+ 38
3293
+ 18
3294
+ -23
3295
+ -16
3296
+ 7
3297
+ 17
3298
+ 30
3299
+ -41
3300
+ 32
3301
+ -16
3302
+ -17
3303
+ 43
3304
+ 43
3305
+ -34
3306
+ 41
3307
+ 46
3308
+ -3
3309
+ -4
3310
+ -7
3311
+ -5
3312
+ -34
3313
+ 48
3314
+ 39
3315
+ -30
3316
+ -12
3317
+ -26
3318
+ -50
3319
+ -27
3320
+ 42
3321
+ -23
3322
+ 23
3323
+ -32
3324
+ 42
3325
+ 0
3326
+ 23
3327
+ 17
3328
+ -40
3329
+ -12
3330
+ -47
3331
+ -38
3332
+ 34
3333
+ 43
3334
+ -2
3335
+ -36
3336
+ 39
3337
+ 1
3338
+ 9
3339
+ 18
3340
+ 25
3341
+ 5
3342
+ -36
3343
+ -38
3344
+ 34
3345
+ -31
3346
+ -5
3347
+ 3
3348
+ 38
3349
+ 40
3350
+ -3
3351
+ 24
3352
+ -43
3353
+ 36
3354
+ 37
3355
+ -24
3356
+ 34
3357
+ 26
3358
+ 23
3359
+ 19
3360
+ -46
3361
+ -41
3362
+ 8
3363
+ 38
3364
+ -21
3365
+ -28
3366
+ -13
3367
+ 22
3368
+ 6
3369
+ -28
3370
+ 22
3371
+ -7
3372
+ -32
3373
+ 3
3374
+ 25
3375
+ -27
3376
+ 48
3377
+ -14
3378
+ -16
3379
+ -25
3380
+ 17
3381
+ 5
3382
+ 43
3383
+ 17
3384
+ -33
3385
+ -26
3386
+ 46
3387
+ -31
3388
+ 19
3389
+ -38
3390
+ 38
3391
+ -41
3392
+ -47
3393
+ 25
3394
+ -48
3395
+ 38
3396
+ 30
3397
+ -48
3398
+ -25
3399
+ 49
3400
+ 39
3401
+ 29
3402
+ -20
3403
+ 35
3404
+ -45
3405
+ 50
3406
+ 0
3407
+ 19
3408
+ 2
3409
+ 36
3410
+ -5
3411
+ -2
3412
+ 25
3413
+ 50
3414
+ -4
3415
+ -34
3416
+ 26
3417
+ -3
3418
+ -7
3419
+ 38
3420
+ 8
3421
+ 26
3422
+ 10
3423
+ -24
3424
+ 47
3425
+ 24
3426
+ 12
3427
+ -50
3428
+ 9
3429
+ 25
3430
+ -16
3431
+ -36
3432
+ 10
3433
+ -20
3434
+ -12
3435
+ -18
3436
+ 50
3437
+ -21
3438
+ 23
3439
+ 49
3440
+ -40
3441
+ 34
3442
+ 13
3443
+ -1
3444
+ -48
3445
+ -23
3446
+ 42
3447
+ 46
3448
+ -14
3449
+ 16
3450
+ -43
3451
+ 9
3452
+ 32
3453
+ 39
3454
+ 7
3455
+ -43
3456
+ -15
3457
+ 10
3458
+ -10
3459
+ 31
3460
+ -15
3461
+ -32
3462
+ 19
3463
+ 31
3464
+ -18
3465
+ 8
3466
+ -1
3467
+ 16
3468
+ -13
3469
+ 37
3470
+ -23
3471
+ -25
3472
+ -50
3473
+ 40
3474
+ 30
3475
+ 41
3476
+ 46
3477
+ -10
3478
+ -46
3479
+ 10
3480
+ 20
3481
+ -7
3482
+ -1
3483
+ 50
3484
+ -45
3485
+ -28
3486
+ 25
3487
+ -8
3488
+ 15
3489
+ -11
3490
+ 25
3491
+ 34
3492
+ 38
3493
+ 13
3494
+ 45
3495
+ 28
3496
+ -18
3497
+ 30
3498
+ -20
3499
+ -15
3500
+ -8
3501
+ 13
3502
+ 22
3503
+ 41
3504
+ 32
3505
+ 3
3506
+ -15
3507
+ 11
3508
+ 19
3509
+ 50
3510
+ 39
3511
+ -6
3512
+ -46
3513
+ 43
3514
+ -36
3515
+ 47
3516
+ -14
3517
+ 12
3518
+ 27
3519
+ -6
3520
+ -45
3521
+ 18
3522
+ -49
3523
+ -27
3524
+ 37
3525
+ 49
3526
+ 37
3527
+ 21
3528
+ 29
3529
+ -3
3530
+ 42
3531
+ -27
3532
+ 7
3533
+ 29
3534
+ -32
3535
+ -48
3536
+ 26
3537
+ -40
3538
+ -22
3539
+ 16
3540
+ 47
3541
+ 44
3542
+ 27
3543
+ -35
3544
+ 10
3545
+ -24
3546
+ -16
3547
+ 6
3548
+ -31
3549
+ 7
3550
+ -49
3551
+ -33
3552
+ 13
3553
+ -9
3554
+ -42
3555
+ 6
3556
+ 25
3557
+ -28
3558
+ 39
3559
+ 9
3560
+ -36
3561
+ 8
3562
+ -14
3563
+ -2
3564
+ -30
3565
+ 17
3566
+ -21
3567
+ 10
3568
+ 19
3569
+ -4
3570
+ 18
3571
+ -32
3572
+ 33
3573
+ 24
3574
+ -12
3575
+ 31
3576
+ 5
3577
+ -7
3578
+ -42
3579
+ 30
3580
+ -12
3581
+ -22
3582
+ 8
3583
+ 13
3584
+ 45
3585
+ -27
3586
+ -24
3587
+ -44
3588
+ 18
3589
+ 6
3590
+ -4
3591
+ 26
3592
+ 21
3593
+ 14
3594
+ -44
3595
+ -34
3596
+ 43
3597
+ 31
3598
+ 29
3599
+ 10
3600
+ 43
3601
+ -13
3602
+ 19
3603
+ 38
3604
+ 15
3605
+ -22
3606
+ -12
3607
+ 45
3608
+ -49
3609
+ -2
3610
+ -37
3611
+ 3
3612
+ 25
3613
+ -28
3614
+ 21
3615
+ -25
3616
+ 13
3617
+ 49
3618
+ 21
3619
+ -23
3620
+ -31
3621
+ 35
3622
+ -41
3623
+ -3
3624
+ -29
3625
+ -13
3626
+ 25
3627
+ -30
3628
+ -43
3629
+ 38
3630
+ 29
3631
+ -41
3632
+ 5
3633
+ -21
3634
+ -17
3635
+ -24
3636
+ 22
3637
+ 15
3638
+ -27
3639
+ -24
3640
+ -44
3641
+ 39
3642
+ -42
3643
+ 25
3644
+ 14
3645
+ 19
3646
+ -50
3647
+ -39
3648
+ 2
3649
+ 44
3650
+ 20
3651
+ 10
3652
+ -48
3653
+ -4
3654
+ 41
3655
+ 8
3656
+ -21
3657
+ -30
3658
+ -34
3659
+ -11
3660
+ 29
3661
+ -36
3662
+ 27
3663
+ 50
3664
+ 11
3665
+ 10
3666
+ 16
3667
+ -14
3668
+ -37
3669
+ 46
3670
+ 33
3671
+ 36
3672
+ 13
3673
+ 24
3674
+ 2
3675
+ 37
3676
+ -2
3677
+ -50
3678
+ -49
3679
+ 41
3680
+ 18
3681
+ -20
3682
+ 36
3683
+ 43
3684
+ 29
3685
+ -12
3686
+ 4
3687
+ 25
3688
+ -17
3689
+ 37
3690
+ -29
3691
+ -31
3692
+ -37
3693
+ 8
3694
+ 4
3695
+ -23
3696
+ 28
3697
+ 41
3698
+ -9
3699
+ 27
3700
+ -47
3701
+ 7
3702
+ -48
3703
+ 49
3704
+ -25
3705
+ -44
3706
+ 25
3707
+ 10
3708
+ 11
3709
+ 2
3710
+ 35
3711
+ 1
3712
+ 7
3713
+ -40
3714
+ 15
3715
+ -11
3716
+ -3
3717
+ 30
3718
+ 35
3719
+ -34
3720
+ 18
3721
+ 26
3722
+ 35
3723
+ -41
3724
+ -6
3725
+ -24
3726
+ 8
3727
+ 24
3728
+ -3
3729
+ -41
3730
+ -37
3731
+ -12
3732
+ -46
3733
+ -33
3734
+ -34
3735
+ 1
3736
+ -28
3737
+ -27
3738
+ -37
3739
+ 21
3740
+ -36
3741
+ -5
3742
+ -6
3743
+ 33
3744
+ 14
3745
+ 45
3746
+ -18
3747
+ 20
3748
+ -31
3749
+ 39
3750
+ 7
3751
+ -44
3752
+ -9
3753
+ 15
3754
+ -10
3755
+ 39
3756
+ -7
3757
+ 11
3758
+ -6
3759
+ -29
3760
+ 3
3761
+ 19
3762
+ -29
3763
+ 39
3764
+ -27
3765
+ -14
3766
+ 13
3767
+ 29
3768
+ 50
3769
+ -41
3770
+ -42
3771
+ 16
3772
+ 19
3773
+ -17
3774
+ 14
3775
+ -8
3776
+ 8
3777
+ -26
3778
+ -37
3779
+ -37
3780
+ -22
3781
+ -24
3782
+ -1
3783
+ -17
3784
+ 29
3785
+ -36
3786
+ -39
3787
+ 13
3788
+ -42
3789
+ -46
3790
+ 28
3791
+ -46
3792
+ 0
3793
+ 19
3794
+ -13
3795
+ -39
3796
+ -23
3797
+ 44
3798
+ 15
3799
+ -26
3800
+ 50
3801
+ -41
3802
+ 26
3803
+ 36
3804
+ -36
3805
+ 9
3806
+ -44
3807
+ -42
3808
+ 23
3809
+ -42
3810
+ -25
3811
+ 2
3812
+ 34
3813
+ -9
3814
+ 21
3815
+ -8
3816
+ 25
3817
+ -18
3818
+ -15
3819
+ -12
3820
+ 20
3821
+ 13
3822
+ 26
3823
+ -29
3824
+ -4
3825
+ 6
3826
+ -3
3827
+ -8
3828
+ 30
3829
+ -50
3830
+ -36
3831
+ 17
3832
+ -48
3833
+ -34
3834
+ -20
3835
+ 10
3836
+ -27
3837
+ 41
3838
+ 20
3839
+ -25
3840
+ -42
3841
+ 42
3842
+ 33
3843
+ 48
3844
+ -24
3845
+ -21
3846
+ -22
3847
+ -26
3848
+ -17
3849
+ -12
3850
+ 14
3851
+ 17
3852
+ 33
3853
+ -50
3854
+ 21
3855
+ 37
3856
+ 42
3857
+ 34
3858
+ -16
3859
+ -18
3860
+ 28
3861
+ 11
3862
+ -46
3863
+ -13
3864
+ 14
3865
+ -35
3866
+ 12
3867
+ -22
3868
+ -38
3869
+ 15
3870
+ 8
3871
+ -7
3872
+ -41
3873
+ 33
3874
+ -2
3875
+ -26
3876
+ -42
3877
+ 5
3878
+ 4
3879
+ 29
3880
+ -16
3881
+ -8
3882
+ 42
3883
+ 6
3884
+ 14
3885
+ -2
3886
+ -39
3887
+ 28
3888
+ -3
3889
+ 18
3890
+ -18
3891
+ 42
3892
+ 4
3893
+ -49
3894
+ -13
3895
+ -8
3896
+ -37
3897
+ 23
3898
+ -20
3899
+ 46
3900
+ 9
3901
+ 48
3902
+ 44
3903
+ -1
3904
+ -44
3905
+ 0
3906
+ 12
3907
+ -20
3908
+ -24
3909
+ -31
3910
+ 43
3911
+ 4
3912
+ 29
3913
+ -47
3914
+ 21
3915
+ 41
3916
+ -22
3917
+ 32
3918
+ 8
3919
+ -45
3920
+ 4
3921
+ -9
3922
+ -35
3923
+ -38
3924
+ 38
3925
+ -7
3926
+ -35
3927
+ 1
3928
+ 12
3929
+ 18
3930
+ 47
3931
+ -42
3932
+ 8
3933
+ -48
3934
+ -15
3935
+ -49
3936
+ 8
3937
+ 12
3938
+ -38
3939
+ -15
3940
+ 16
3941
+ 39
3942
+ -15
3943
+ 3
3944
+ 5
3945
+ 46
3946
+ -1
3947
+ 21
3948
+ 35
3949
+ 9
3950
+ 36
3951
+ 46
3952
+ -12
3953
+ 44
3954
+ 35
3955
+ -36
3956
+ -24
3957
+ -11
3958
+ -26
3959
+ 21
3960
+ 3
3961
+ -35
3962
+ 9
3963
+ -48
3964
+ 47
3965
+ -26
3966
+ 24
3967
+ -25
3968
+ -40
3969
+ -37
3970
+ 30
3971
+ 12
3972
+ 18
3973
+ -35
3974
+ 29
3975
+ 16
3976
+ -41
3977
+ -11
3978
+ -9
3979
+ 11
3980
+ -46
3981
+ -49
3982
+ 4
3983
+ -24
3984
+ -10
3985
+ -23
3986
+ 32
3987
+ -39
3988
+ 4
3989
+ -50
3990
+ -24
3991
+ 2
3992
+ -21
3993
+ -39
3994
+ -13
3995
+ -13
3996
+ -18
3997
+ -50
3998
+ -15
3999
+ 2
4000
+ 23
4001
+ -32
4002
+ -5
4003
+ 45
4004
+ -20
4005
+ 46
4006
+ 13
4007
+ -10
4008
+ 25
4009
+ 32
4010
+ -48
4011
+ -35
4012
+ -14
4013
+ -16
4014
+ -1
4015
+ -49
4016
+ -20
4017
+ -10
4018
+ 32
4019
+ 43
4020
+ -37
4021
+ -29
4022
+ 50
4023
+ -18
4024
+ -1
4025
+ 31
4026
+ 36
4027
+ 44
4028
+ 8
4029
+ -9
4030
+ 25
4031
+ 11
4032
+ -25
4033
+ -31
4034
+ 23
4035
+ -18
4036
+ 4
4037
+ -18
4038
+ -3
4039
+ -27
4040
+ 40
4041
+ -16
4042
+ -48
4043
+ 43
4044
+ -41
4045
+ -9
4046
+ 43
4047
+ -38
4048
+ -18
4049
+ -4
4050
+ 24
4051
+ 37
4052
+ -26
4053
+ -50
4054
+ -45
4055
+ 43
4056
+ 28
4057
+ 1
4058
+ 42
4059
+ -13
4060
+ -41
4061
+ 21
4062
+ 22
4063
+ -17
4064
+ -23
4065
+ 37
4066
+ 46
4067
+ -46
4068
+ -37
4069
+ -44
4070
+ -36
4071
+ -24
4072
+ -4
4073
+ 44
4074
+ -17
4075
+ -43
4076
+ 23
4077
+ 16
4078
+ 20
4079
+ -47
4080
+ 33
4081
+ -8
4082
+ -44
4083
+ 12
4084
+ -22
4085
+ -49
4086
+ -11
4087
+ -47
4088
+ 48
4089
+ -40
4090
+ 41
4091
+ -29
4092
+ 45
4093
+ 26
4094
+ 33
4095
+ -10
4096
+ 19
4097
+ -25
4098
+ 18
4099
+ 23
4100
+ -27
4101
+ 41
4102
+ -39
4103
+ 36
4104
+ -5
4105
+ -48
4106
+ -19
4107
+ -11
4108
+ 15
4109
+ -16
4110
+ 41
4111
+ 7
4112
+ -39
4113
+ -27
4114
+ -14
4115
+ -44
4116
+ -24
4117
+ -9
4118
+ -16
4119
+ -49
4120
+ -25
4121
+ 14
4122
+ 10
4123
+ -35
4124
+ 44
4125
+ 32
4126
+ -47
4127
+ 18
4128
+ 26
4129
+ 18
4130
+ 38
4131
+ -45
4132
+ -11
4133
+ 50
4134
+ -24
4135
+ 37
4136
+ -7
4137
+ -3
4138
+ 3
4139
+ -33
4140
+ -44
4141
+ 45
4142
+ 19
4143
+ 7
4144
+ 39
4145
+ -40
4146
+ 17
4147
+ 16
4148
+ 11
4149
+ -33
4150
+ 39
4151
+ -38
4152
+ -31
4153
+ -21
4154
+ 17
4155
+ -27
4156
+ 41
4157
+ 37
4158
+ 49
4159
+ -14
4160
+ -40
4161
+ -19
4162
+ -21
4163
+ -7
4164
+ -2
4165
+ 8
4166
+ -7
4167
+ 18
4168
+ 4
4169
+ 36
4170
+ -1
4171
+ 2
4172
+ 27
4173
+ 9
4174
+ -2
4175
+ 5
4176
+ -42
4177
+ -36
4178
+ -9
4179
+ 30
4180
+ 26
4181
+ -12
4182
+ 8
4183
+ 33
4184
+ -36
4185
+ 34
4186
+ 26
4187
+ -41
4188
+ -34
4189
+ 45
4190
+ -33
4191
+ -50
4192
+ -26
4193
+ -46
4194
+ -37
4195
+ 48
4196
+ -39
4197
+ -33
4198
+ -11
4199
+ -11
4200
+ 9
4201
+ -15
4202
+ 2
4203
+ -32
4204
+ -19
4205
+ 13
4206
+ -15
4207
+ 35
4208
+ 45
4209
+ -20
4210
+ 19
4211
+ -21
4212
+ 31
4213
+ -18
4214
+ -44
4215
+ 42
4216
+ 5
4217
+ 49
4218
+ 39
4219
+ 1
4220
+ -48
4221
+ 15
4222
+ 17
4223
+ -19
4224
+ -4
4225
+ -36
4226
+ 22
4227
+ -17
4228
+ -42
4229
+ -35
4230
+ -13
4231
+ 38
4232
+ 35
4233
+ -11
4234
+ 15
4235
+ 2
4236
+ 1
4237
+ 5
4238
+ 11
4239
+ -5
4240
+ -35
4241
+ 20
4242
+ -8
4243
+ 7
4244
+ -30
4245
+ 43
4246
+ 30
4247
+ -13
4248
+ -12
4249
+ -1
4250
+ -44
4251
+ 39
4252
+ -4
4253
+ -31
4254
+ -21
4255
+ 12
4256
+ 3
4257
+ -13
4258
+ 41
4259
+ 9
4260
+ -3
4261
+ -50
4262
+ -50
4263
+ 39
4264
+ 10
4265
+ -41
4266
+ 1
4267
+ -23
4268
+ 41
4269
+ 25
4270
+ 42
4271
+ 36
4272
+ 48
4273
+ 36
4274
+ 33
4275
+ -18
4276
+ -46
4277
+ 41
4278
+ -41
4279
+ 12
4280
+ 5
4281
+ -27
4282
+ 48
4283
+ -22
4284
+ 26
4285
+ -43
4286
+ 35
4287
+ 11
4288
+ 17
4289
+ 25
4290
+ -23
4291
+ -25
4292
+ 19
4293
+ -1
4294
+ -5
4295
+ 1
4296
+ 25
4297
+ -1
4298
+ 13
4299
+ -43
4300
+ -33
4301
+ -44
4302
+ -28
4303
+ 5
4304
+ 20
4305
+ 20
4306
+ -8
4307
+ 14
4308
+ 8
4309
+ 37
4310
+ 11
4311
+ 21
4312
+ 29
4313
+ 45
4314
+ 22
4315
+ -29
4316
+ -5
4317
+ 29
4318
+ 10
4319
+ -37
4320
+ 31
4321
+ 27
4322
+ 29
4323
+ 19
4324
+ -50
4325
+ -45
4326
+ 9
4327
+ 1
4328
+ 37
4329
+ -24
4330
+ -42
4331
+ -43
4332
+ -15
4333
+ 42
4334
+ -20
4335
+ 2
4336
+ -9
4337
+ -48
4338
+ -29
4339
+ -10
4340
+ -8
4341
+ -15
4342
+ -8
4343
+ 1
4344
+ 3
4345
+ 30
4346
+ 20
4347
+ -45
4348
+ 37
4349
+ 48
4350
+ -22
4351
+ 43
4352
+ 6
4353
+ 6
4354
+ -4
4355
+ 14
4356
+ -49
4357
+ 43
4358
+ 46
4359
+ -35
4360
+ 26
4361
+ 18
4362
+ -21
4363
+ 16
4364
+ -37
4365
+ 5
4366
+ -19
4367
+ 40
4368
+ -5
4369
+ -4
4370
+ -24
4371
+ -9
4372
+ -23
4373
+ 32
4374
+ 15
4375
+ -44
4376
+ 35
4377
+ 22
4378
+ -47
4379
+ -16
4380
+ -42
4381
+ 38
4382
+ 27
4383
+ -7
4384
+ -4
4385
+ -29
4386
+ 17
4387
+ 46
4388
+ 50
4389
+ 50
4390
+ -46
4391
+ 21
4392
+ -7
4393
+ -32
4394
+ -1
4395
+ 40
4396
+ 18
4397
+ 6
4398
+ -39
4399
+ 49
4400
+ 21
4401
+ -47
4402
+ -21
4403
+ -6
4404
+ 47
4405
+ 28
4406
+ 7
4407
+ -3
4408
+ 17
4409
+ -48
4410
+ -19
4411
+ -30
4412
+ -43
4413
+ 9
4414
+ -16
4415
+ -9
4416
+ 13
4417
+ -6
4418
+ -11
4419
+ 5
4420
+ -14
4421
+ 49
4422
+ 43
4423
+ -26
4424
+ -24
4425
+ 12
4426
+ 12
4427
+ -11
4428
+ -21
4429
+ -37
4430
+ -16
4431
+ 38
4432
+ 2
4433
+ -16
4434
+ 37
4435
+ -30
4436
+ 35
4437
+ 35
4438
+ 15
4439
+ 9
4440
+ 24
4441
+ -2
4442
+ 23
4443
+ -7
4444
+ -11
4445
+ -47
4446
+ -29
4447
+ -22
4448
+ 50
4449
+ -4
4450
+ -9
4451
+ -16
4452
+ 24
4453
+ 2
4454
+ 3
4455
+ 42
4456
+ 33
4457
+ -19
4458
+ 0
4459
+ 11
4460
+ -33
4461
+ 19
4462
+ -38
4463
+ 2
4464
+ -18
4465
+ -47
4466
+ 19
4467
+ -23
4468
+ 4
4469
+ 33
4470
+ -40
4471
+ 34
4472
+ 27
4473
+ -10
4474
+ -43
4475
+ -21
4476
+ -30
4477
+ 31
4478
+ -10
4479
+ 35
4480
+ 50
4481
+ 18
4482
+ -50
4483
+ -44
4484
+ 22
4485
+ 44
4486
+ -4
4487
+ 4
4488
+ 9
4489
+ 0
4490
+ -6
4491
+ 2
4492
+ -2
4493
+ 28
4494
+ -1
4495
+ -38
4496
+ -26
4497
+ 11
4498
+ 21
4499
+ -45
4500
+ 24
4501
+ -47
4502
+ 46
4503
+ -41
4504
+ -17
4505
+ 34
4506
+ -12
4507
+ 50
4508
+ 18
4509
+ 35
4510
+ -42
4511
+ 25
4512
+ 19
4513
+ -19
4514
+ -2
4515
+ -14
4516
+ -5
4517
+ 50
4518
+ 32
4519
+ 18
4520
+ 50
4521
+ -24
4522
+ -7
4523
+ 35
4524
+ -23
4525
+ -22
4526
+ 9
4527
+ 18
4528
+ 24
4529
+ -35
4530
+ -46
4531
+ -32
4532
+ -22
4533
+ -11
4534
+ 18
4535
+ 37
4536
+ -8
4537
+ -2
4538
+ 49
4539
+ -47
4540
+ 8
4541
+ -30
4542
+ -14
4543
+ 24
4544
+ 20
4545
+ 6
4546
+ 8
4547
+ 47
4548
+ -45
4549
+ -50
4550
+ 6
4551
+ -11
4552
+ -5
4553
+ 44
4554
+ -41
4555
+ -50
4556
+ 9
4557
+ -43
4558
+ -42
4559
+ 38
4560
+ 12
4561
+ 36
4562
+ -17
4563
+ -37
4564
+ 3
4565
+ 12
4566
+ 25
4567
+ 12
4568
+ 21
4569
+ -47
4570
+ 28
4571
+ -43
4572
+ 35
4573
+ 29
4574
+ 29
4575
+ -31
4576
+ 36
4577
+ 0
4578
+ -8
4579
+ 28
4580
+ -12
4581
+ 18
4582
+ -45
4583
+ -32
4584
+ -23
4585
+ 50
4586
+ -34
4587
+ -38
4588
+ 25
4589
+ 25
4590
+ -49
4591
+ -24
4592
+ -6
4593
+ -32
4594
+ 5
4595
+ 33
4596
+ 28
4597
+ 0
4598
+ 39
4599
+ -2
4600
+ -1
4601
+ -30
4602
+ 15
4603
+ 35
4604
+ -50
4605
+ 48
4606
+ -19
4607
+ -41
4608
+ -15
4609
+ -36
4610
+ 21
4611
+ -15
4612
+ -29
4613
+ 45
4614
+ -11
4615
+ -16
4616
+ 40
4617
+ 18
4618
+ -50
4619
+ 7
4620
+ 30
4621
+ 49
4622
+ 26
4623
+ -12
4624
+ -12
4625
+ -16
4626
+ 44
4627
+ 2
4628
+ -34
4629
+ 36
4630
+ 25
4631
+ -25
4632
+ -48
4633
+ 47
4634
+ -14
4635
+ 28
4636
+ -38
4637
+ 26
4638
+ -2
4639
+ -29
4640
+ -44
4641
+ -17
4642
+ 18
4643
+ -31
4644
+ 12
4645
+ -21
4646
+ 49
4647
+ -11
4648
+ -25
4649
+ 28
4650
+ 45
4651
+ -47
4652
+ -34
4653
+ 38
4654
+ 41
4655
+ 47
4656
+ -45
4657
+ -34
4658
+ -9
4659
+ -33
4660
+ 48
4661
+ -20
4662
+ -33
4663
+ 0
4664
+ 45
4665
+ 9
4666
+ -47
4667
+ 22
4668
+ 35
4669
+ -42
4670
+ 0
4671
+ -25
4672
+ -49
4673
+ -40
4674
+ -18
4675
+ 11
4676
+ -23
4677
+ 5
4678
+ 3
4679
+ -45
4680
+ 27
4681
+ -21
4682
+ 43
4683
+ -23
4684
+ 8
4685
+ -42
4686
+ 15
4687
+ -11
4688
+ 10
4689
+ -38
4690
+ -21
4691
+ -43
4692
+ -48
4693
+ 3
4694
+ -31
4695
+ 22
4696
+ -22
4697
+ 5
4698
+ 41
4699
+ 7
4700
+ 10
4701
+ 0
4702
+ -5
4703
+ 38
4704
+ 12
4705
+ -21
4706
+ 19
4707
+ 40
4708
+ -24
4709
+ -26
4710
+ -44
4711
+ -44
4712
+ -43
4713
+ -21
4714
+ -13
4715
+ -18
4716
+ 6
4717
+ 21
4718
+ 15
4719
+ 35
4720
+ -1
4721
+ 15
4722
+ -45
4723
+ 21
4724
+ -3
4725
+ 3
4726
+ -43
4727
+ 44
4728
+ -49
4729
+ 8
4730
+ 21
4731
+ 28
4732
+ -49
4733
+ -39
4734
+ -37
4735
+ 50
4736
+ 26
4737
+ 0
4738
+ 23
4739
+ 49
4740
+ -30
4741
+ 38
4742
+ -19
4743
+ -38
4744
+ -33
4745
+ 42
4746
+ -24
4747
+ 33
4748
+ 48
4749
+ 10
4750
+ -9
4751
+ 0
4752
+ -40
4753
+ 8
4754
+ -38
4755
+ -18
4756
+ -24
4757
+ -43
4758
+ 48
4759
+ 39
4760
+ 19
4761
+ 18
4762
+ 41
4763
+ -33
4764
+ 5
4765
+ -24
4766
+ -43
4767
+ -5
4768
+ -41
4769
+ -9
4770
+ 15
4771
+ 23
4772
+ -22
4773
+ 36
4774
+ -6
4775
+ 32
4776
+ -27
4777
+ 36
4778
+ 0
4779
+ -30
4780
+ 37
4781
+ -13
4782
+ -10
4783
+ 35
4784
+ -37
4785
+ -8
4786
+ 28
4787
+ 47
4788
+ -24
4789
+ 31
4790
+ 9
4791
+ -10
4792
+ -29
4793
+ 43
4794
+ -45
4795
+ -26
4796
+ -18
4797
+ -33
4798
+ 23
4799
+ -39
4800
+ -38
4801
+ 42
4802
+ -27
4803
+ 32
4804
+ -37
4805
+ 38
4806
+ -29
4807
+ -40
4808
+ -2
4809
+ 34
4810
+ 36
4811
+ -43
4812
+ 12
4813
+ -28
4814
+ 11
4815
+ 42
4816
+ 4
4817
+ -33
4818
+ 20
4819
+ -45
4820
+ -26
4821
+ -37
4822
+ 5
4823
+ -12
4824
+ -1
4825
+ 37
4826
+ -43
4827
+ -7
4828
+ -25
4829
+ 3
4830
+ 1
4831
+ -9
4832
+ 27
4833
+ 6
4834
+ 10
4835
+ -13
4836
+ 31
4837
+ 38
4838
+ -12
4839
+ -37
4840
+ -2
4841
+ 27
4842
+ 26
4843
+ -25
4844
+ 27
4845
+ 29
4846
+ -45
4847
+ 6
4848
+ -46
4849
+ -19
4850
+ -18
4851
+ -11
4852
+ 47
4853
+ 18
4854
+ 14
4855
+ 14
4856
+ 15
4857
+ 35
4858
+ -19
4859
+ -33
4860
+ 13
4861
+ 40
4862
+ -24
4863
+ -50
4864
+ -11
4865
+ 48
4866
+ -5
4867
+ 39
4868
+ -11
4869
+ 31
4870
+ -38
4871
+ 39
4872
+ -44
4873
+ 12
4874
+ -19
4875
+ 3
4876
+ -36
4877
+ 47
4878
+ 34
4879
+ -23
4880
+ 16
4881
+ -42
4882
+ -13
4883
+ 26
4884
+ 28
4885
+ 20
4886
+ 6
4887
+ 12
4888
+ -46
4889
+ 0
4890
+ 13
4891
+ -49
4892
+ -31
4893
+ -23
4894
+ -3
4895
+ 22
4896
+ 40
4897
+ -9
4898
+ -44
4899
+ 15
4900
+ 34
4901
+ 38
4902
+ 45
4903
+ 2
4904
+ 34
4905
+ 15
4906
+ -27
4907
+ -27
4908
+ -40
4909
+ -39
4910
+ 49
4911
+ 14
4912
+ -24
4913
+ 38
4914
+ -8
4915
+ 35
4916
+ 9
4917
+ 46
4918
+ -29
4919
+ 15
4920
+ -17
4921
+ 3
4922
+ 46
4923
+ 28
4924
+ -11
4925
+ 15
4926
+ -18
4927
+ 13
4928
+ -11
4929
+ -48
4930
+ 18
4931
+ -35
4932
+ -23
4933
+ -14
4934
+ -30
4935
+ -32
4936
+ 17
4937
+ -28
4938
+ 5
4939
+ 25
4940
+ 10
4941
+ 8
4942
+ 45
4943
+ 23
4944
+ 47
4945
+ 25
4946
+ 30
4947
+ 12
4948
+ -36
4949
+ 31
4950
+ 5
4951
+ -27
4952
+ -47
4953
+ 1
4954
+ -39
4955
+ -34
4956
+ -37
4957
+ 45
4958
+ -15
4959
+ 30
4960
+ -10
4961
+ -49
4962
+ -50
4963
+ 24
4964
+ -42
4965
+ 30
4966
+ -46
4967
+ -5
4968
+ 26
4969
+ -35
4970
+ -12
4971
+ 33
4972
+ -26
4973
+ -7
4974
+ 28
4975
+ 14
4976
+ -4
4977
+ 1
4978
+ 46
4979
+ -16
4980
+ 36
4981
+ 8
4982
+ 24
4983
+ 6
4984
+ -41
4985
+ -7
4986
+ -6
4987
+ -18
4988
+ 36
4989
+ 43
4990
+ 34
4991
+ -31
4992
+ -26
4993
+ 36
4994
+ -16
4995
+ 7
4996
+ 1
4997
+ -36
4998
+ 34
4999
+ 35
5000
+ -24
5001
+ 49
5002
+ 34
5003
+ 36
5004
+ 6
5005
+ 15
5006
+ 38
5007
+ 37
5008
+ 17
5009
+ -32
5010
+ 17
5011
+ -6
5012
+ 22
5013
+ 32
5014
+ 29
5015
+ -33
5016
+ 8
5017
+ -40
5018
+ 22
5019
+ -45
5020
+ 31
5021
+ 49
5022
+ 42
5023
+ 19
5024
+ 30
5025
+ -35
5026
+ 11
5027
+ 24
5028
+ -30
5029
+ -45
5030
+ 6
5031
+ 30
5032
+ 36
5033
+ -44
5034
+ 12
5035
+ -47
5036
+ -39
5037
+ -22
5038
+ -48
5039
+ -32
5040
+ -47
5041
+ 16
5042
+ -36
5043
+ 35
5044
+ 2
5045
+ 1
5046
+ 1
5047
+ -45
5048
+ 38
5049
+ 19
5050
+ 1
5051
+ 41
5052
+ 39
5053
+ 15
5054
+ 50
5055
+ 45
5056
+ 48
5057
+ 24
5058
+ 25
5059
+ -11
5060
+ 15
5061
+ 40
5062
+ -4
5063
+ 25
5064
+ 41
5065
+ -11
5066
+ -39
5067
+ -3
5068
+ -1
5069
+ -26
5070
+ 22
5071
+ 20
5072
+ -1
5073
+ 22
5074
+ 37
5075
+ -5
5076
+ -11
5077
+ -37
5078
+ 9
5079
+ -18
5080
+ 27
5081
+ 37
5082
+ 47
5083
+ 0
5084
+ -38
5085
+ -1
5086
+ -19
5087
+ -10
5088
+ -9
5089
+ -12
5090
+ 16
5091
+ 49
5092
+ 26
5093
+ 3
5094
+ 12
5095
+ -5
5096
+ -32
5097
+ 46
5098
+ 27
5099
+ 13
5100
+ 9
5101
+ 30
5102
+ 33
5103
+ -5
5104
+ -4
5105
+ -17
5106
+ -7
5107
+ -7
5108
+ 32
5109
+ -44
5110
+ -10
5111
+ 35
5112
+ 40
5113
+ -35
5114
+ -9
5115
+ 49
5116
+ -41
5117
+ 2
5118
+ -2
5119
+ 18
5120
+ -31
5121
+ 25
5122
+ -10
5123
+ 12
5124
+ 34
5125
+ -42
5126
+ 30
5127
+ -35
5128
+ -8
5129
+ -28
5130
+ 19
5131
+ -39
5132
+ -18
5133
+ 46
5134
+ -5
5135
+ -7
5136
+ -46
5137
+ -21
5138
+ -35
5139
+ 25
5140
+ -32
5141
+ 32
5142
+ 22
5143
+ -23
5144
+ -50
5145
+ 35
5146
+ -48
5147
+ -14
5148
+ 44
5149
+ -38
5150
+ -23
5151
+ 35
5152
+ 15
5153
+ -48
5154
+ 14
5155
+ 3
5156
+ -21
5157
+ 23
5158
+ 16
5159
+ -39
5160
+ -25
5161
+ -26
5162
+ -38
5163
+ 12
5164
+ -25
5165
+ -45
5166
+ 14
5167
+ -6
5168
+ -13
5169
+ 11
5170
+ -50
5171
+ -5
5172
+ -36
5173
+ -35
5174
+ 24
5175
+ -36
5176
+ -31
5177
+ 42
5178
+ 20
5179
+ -15
5180
+ -36
5181
+ -11
5182
+ 41
5183
+ -23
5184
+ 27
5185
+ -25
5186
+ -16
5187
+ -7
5188
+ -10
5189
+ 25
5190
+ -5
5191
+ -45
5192
+ -3
5193
+ -20
5194
+ 18
5195
+ -29
5196
+ -44
5197
+ -18
5198
+ -16
5199
+ -31
5200
+ -14
5201
+ -15
5202
+ -34
5203
+ 7
5204
+ -28
5205
+ 17
5206
+ -18
5207
+ -33
5208
+ 40
5209
+ -15
5210
+ -7
5211
+ -46
5212
+ -33
5213
+ -48
5214
+ -23
5215
+ -2
5216
+ 20
5217
+ -49
5218
+ 22
5219
+ 28
5220
+ -42
5221
+ -45
5222
+ -7
5223
+ 24
5224
+ 39
5225
+ 25
5226
+ 1
5227
+ 29
5228
+ 50
5229
+ -15
5230
+ -5
5231
+ -9
5232
+ 17
5233
+ -29
5234
+ -42
5235
+ 29
5236
+ -5
5237
+ -11
5238
+ -30
5239
+ 39
5240
+ 21
5241
+ -2
5242
+ -8
5243
+ 33
5244
+ -3
5245
+ -40
5246
+ 46
5247
+ -1
5248
+ 46
5249
+ -7
5250
+ -15
5251
+ -8
5252
+ 15
5253
+ -12
5254
+ -30
5255
+ 44
5256
+ -12
5257
+ 36
5258
+ -12
5259
+ 39
5260
+ 6
5261
+ 26
5262
+ 49
5263
+ -18
5264
+ -33
5265
+ -20
5266
+ -42
5267
+ -21
5268
+ -28
5269
+ 3
5270
+ 35
5271
+ -31
5272
+ 29
5273
+ 29
5274
+ 32
5275
+ 21
5276
+ -34
5277
+ -44
5278
+ -19
5279
+ 40
5280
+ 27
5281
+ -41
5282
+ 38
5283
+ -50
5284
+ 45
5285
+ -27
5286
+ -17
5287
+ 10
5288
+ 27
5289
+ 10
5290
+ 50
5291
+ -37
5292
+ 11
5293
+ -14
5294
+ 6
5295
+ 19
5296
+ -4
5297
+ 45
5298
+ -1
5299
+ 34
5300
+ -7
5301
+ -34
5302
+ 10
5303
+ 16
5304
+ -19
5305
+ 11
5306
+ 29
5307
+ 17
5308
+ 42
5309
+ 38
5310
+ -13
5311
+ 30
5312
+ 9
5313
+ 19
5314
+ -12
5315
+ -47
5316
+ 3
5317
+ 4
5318
+ 10
5319
+ 16
5320
+ -13
5321
+ 17
5322
+ 9
5323
+ 35
5324
+ 15
5325
+ -30
5326
+ 48
5327
+ -47
5328
+ -31
5329
+ 40
5330
+ -25
5331
+ 29
5332
+ 2
5333
+ -26
5334
+ 26
5335
+ -6
5336
+ -5
5337
+ -47
5338
+ 31
5339
+ -21
5340
+ 37
5341
+ -11
5342
+ -19
5343
+ 11
5344
+ 25
5345
+ 2
5346
+ 20
5347
+ 22
5348
+ 16
5349
+ 24
5350
+ 47
5351
+ 24
5352
+ 20
5353
+ 8
5354
+ 43
5355
+ -26
5356
+ 48
5357
+ 2
5358
+ 12
5359
+ 15
5360
+ 20
5361
+ -9
5362
+ 35
5363
+ 42
5364
+ -29
5365
+ 37
5366
+ 10
5367
+ 25
5368
+ 15
5369
+ 48
5370
+ 46
5371
+ 25
5372
+ -14
5373
+ -37
5374
+ 33
5375
+ -40
5376
+ -15
5377
+ -41
5378
+ -30
5379
+ 18
5380
+ 8
5381
+ 0
5382
+ -16
5383
+ -15
5384
+ 25
5385
+ 7
5386
+ 13
5387
+ -21
5388
+ 11
5389
+ -30
5390
+ 26
5391
+ 45
5392
+ -17
5393
+ -41
5394
+ 26
5395
+ 21
5396
+ -25
5397
+ 22
5398
+ -12
5399
+ 47
5400
+ -37
5401
+ -17
5402
+ -23
5403
+ -22
5404
+ -4
5405
+ -4
5406
+ -8
5407
+ -27
5408
+ 5
5409
+ 18
5410
+ -45
5411
+ -48
5412
+ -27
5413
+ -24
5414
+ 29
5415
+ -44
5416
+ 38
5417
+ -28
5418
+ -21
5419
+ 22
5420
+ 45
5421
+ 37
5422
+ -44
5423
+ 38
5424
+ 3
5425
+ 48
5426
+ 38
5427
+ -25
5428
+ 49
5429
+ 33
5430
+ -48
5431
+ 33
5432
+ -1
5433
+ 12
5434
+ 15
5435
+ 8
5436
+ 32
5437
+ -9
5438
+ 9
5439
+ -3
5440
+ 33
5441
+ -27
5442
+ 28
5443
+ 15
5444
+ 19
5445
+ -38
5446
+ 5
5447
+ 35
5448
+ 44
5449
+ 18
5450
+ 45
5451
+ 50
5452
+ -13
5453
+ -49
5454
+ 46
5455
+ 25
5456
+ -38
5457
+ 42
5458
+ -44
5459
+ -4
5460
+ -38
5461
+ -46
5462
+ -25
5463
+ -44
5464
+ 30
5465
+ 35
5466
+ -23
5467
+ 43
5468
+ -35
5469
+ 6
5470
+ -11
5471
+ -28
5472
+ 11
5473
+ 4
5474
+ -36
5475
+ 25
5476
+ 16
5477
+ -10
5478
+ 17
5479
+ 25
5480
+ -20
5481
+ 40
5482
+ 1
5483
+ 49
5484
+ 34
5485
+ 4
5486
+ 48
5487
+ -40
5488
+ 9
5489
+ -5
5490
+ 30
5491
+ -10
5492
+ -45
5493
+ -26
5494
+ 29
5495
+ 7
5496
+ 13
5497
+ 39
5498
+ -21
5499
+ -10
5500
+ 40
5501
+ -17
5502
+ 29
5503
+ -8
5504
+ -23
5505
+ 31
5506
+ 9
5507
+ 7
5508
+ -47
5509
+ -15
5510
+ -28
5511
+ 26
5512
+ 39
5513
+ 13
5514
+ 13
5515
+ 5
5516
+ 15
5517
+ -46
5518
+ 0
5519
+ 29
5520
+ -7
5521
+ 46
5522
+ 29
5523
+ 34
5524
+ -9
5525
+ -47
5526
+ 36
5527
+ 50
5528
+ -34
5529
+ 0
5530
+ -29
5531
+ 13
5532
+ -43
5533
+ 11
5534
+ 20
5535
+ -29
5536
+ 45
5537
+ -17
5538
+ -39
5539
+ 20
5540
+ 48
5541
+ 19
5542
+ -16
5543
+ -27
5544
+ -48
5545
+ -3
5546
+ 47
5547
+ -27
5548
+ 7
5549
+ -12
5550
+ 41
5551
+ -1
5552
+ 11
5553
+ -16
5554
+ -34
5555
+ -32
5556
+ 14
5557
+ 49
5558
+ 33
5559
+ -34
5560
+ -1
5561
+ 37
5562
+ 35
5563
+ 18
5564
+ -6
5565
+ -31
5566
+ 22
5567
+ 16
5568
+ -4
5569
+ 41
5570
+ 13
5571
+ 50
5572
+ 32
5573
+ 15
5574
+ -24
5575
+ -13
5576
+ -7
5577
+ 11
5578
+ -24
5579
+ -48
5580
+ 50
5581
+ -5
5582
+ 35
5583
+ -35
5584
+ 44
5585
+ 2
5586
+ 27
5587
+ -44
5588
+ -2
5589
+ 39
5590
+ -23
5591
+ 11
5592
+ 40
5593
+ -19
5594
+ -26
5595
+ -16
5596
+ 5
5597
+ 6
5598
+ -48
5599
+ 31
5600
+ 4
5601
+ -49
5602
+ 20
5603
+ 14
5604
+ 39
5605
+ 31
5606
+ 1
5607
+ 15
5608
+ -50
5609
+ 27
5610
+ 40
5611
+ -25
5612
+ -19
5613
+ 39
5614
+ 11
5615
+ -43
5616
+ 38
5617
+ -5
5618
+ 37
5619
+ -23
5620
+ 12
5621
+ 3
5622
+ -23
5623
+ -18
5624
+ -11
5625
+ -10
5626
+ -1
5627
+ 44
5628
+ 17
5629
+ -42
5630
+ 31
5631
+ 24
5632
+ -49
5633
+ -18
5634
+ 5
5635
+ 10
5636
+ 18
5637
+ 12
5638
+ 14
5639
+ -47
5640
+ -11
5641
+ 41
5642
+ -24
5643
+ -14
5644
+ 50
5645
+ 32
5646
+ 18
5647
+ -46
5648
+ 15
5649
+ -45
5650
+ -14
5651
+ -48
5652
+ -6
5653
+ 28
5654
+ 27
5655
+ 37
5656
+ 49
5657
+ -6
5658
+ -39
5659
+ 29
5660
+ 9
5661
+ 15
5662
+ 13
5663
+ -25
5664
+ 32
5665
+ -6
5666
+ -33
5667
+ 49
5668
+ -22
5669
+ -6
5670
+ 47
5671
+ 19
5672
+ -32
5673
+ 43
5674
+ -22
5675
+ -1
5676
+ -12
5677
+ -19
5678
+ -11
5679
+ 36
5680
+ -35
5681
+ 1
5682
+ 32
5683
+ 48
5684
+ -27
5685
+ 3
5686
+ -6
5687
+ 36
5688
+ 50
5689
+ -36
5690
+ -12
5691
+ -46
5692
+ -35
5693
+ -16
5694
+ 3
5695
+ 28
5696
+ -11
5697
+ -38
5698
+ 26
5699
+ 23
5700
+ 35
5701
+ 15
5702
+ -13
5703
+ -6
5704
+ 29
5705
+ 8
5706
+ -31
5707
+ 15
5708
+ -8
5709
+ 10
5710
+ 42
5711
+ -17
5712
+ -12
5713
+ 39
5714
+ -20
5715
+ -32
5716
+ -6
5717
+ -37
5718
+ -20
5719
+ -26
5720
+ 36
5721
+ -17
5722
+ -22
5723
+ 2
5724
+ 15
5725
+ 4
5726
+ 38
5727
+ 45
5728
+ 34
5729
+ -3
5730
+ -19
5731
+ -18
5732
+ -27
5733
+ 10
5734
+ -22
5735
+ -12
5736
+ -29
5737
+ -31
5738
+ -33
5739
+ -3
5740
+ 30
5741
+ 46
5742
+ -22
5743
+ -49
5744
+ -28
5745
+ 1
5746
+ -13
5747
+ 37
5748
+ 2
5749
+ 8
5750
+ 21
5751
+ 42
5752
+ 44
5753
+ -50
5754
+ -22
5755
+ -2
5756
+ -6
5757
+ -5
5758
+ -4
5759
+ -45
5760
+ 44
5761
+ -8
5762
+ 36
5763
+ -40
5764
+ 40
5765
+ 44
5766
+ 14
5767
+ -33
5768
+ -6
5769
+ -31
5770
+ -15
5771
+ 11
5772
+ 19
5773
+ -13
5774
+ 39
5775
+ -49
5776
+ 39
5777
+ -45
5778
+ 7
5779
+ -12
5780
+ 28
5781
+ -22
5782
+ -27
5783
+ 31
5784
+ 36
5785
+ 13
5786
+ 7
5787
+ 15
5788
+ -15
5789
+ -14
5790
+ 9
5791
+ 44
5792
+ 22
5793
+ -1
5794
+ -23
5795
+ 13
5796
+ -26
5797
+ 2
5798
+ 41
5799
+ 0
5800
+ 13
5801
+ 8
5802
+ -20
5803
+ -23
5804
+ -36
5805
+ -15
5806
+ 37
5807
+ 50
5808
+ 32
5809
+ 11
5810
+ 28
5811
+ 15
5812
+ 17
5813
+ -13
5814
+ 27
5815
+ 15
5816
+ 15
5817
+ -12
5818
+ -47
5819
+ -6
5820
+ 42
5821
+ 18
5822
+ 2
5823
+ 36
5824
+ 21
5825
+ -26
5826
+ 36
5827
+ -1
5828
+ -43
5829
+ 28
5830
+ 46
5831
+ -4
5832
+ 29
5833
+ 8
5834
+ -34
5835
+ 10
5836
+ -24
5837
+ 16
5838
+ -40
5839
+ 2
5840
+ 6
5841
+ 2
5842
+ 49
5843
+ 8
5844
+ -49
5845
+ 25
5846
+ -39
5847
+ -26
5848
+ 4
5849
+ -2
5850
+ 39
5851
+ 15
5852
+ 33
5853
+ -43
5854
+ -30
5855
+ -47
5856
+ 46
5857
+ 19
5858
+ -29
5859
+ -9
5860
+ 17
5861
+ 2
5862
+ 4
5863
+ 36
5864
+ -27
5865
+ 31
5866
+ 44
5867
+ 39
5868
+ 34
5869
+ 44
5870
+ 26
5871
+ -31
5872
+ 23
5873
+ 2
5874
+ 6
5875
+ 19
5876
+ 24
5877
+ 9
5878
+ -48
5879
+ -31
5880
+ 4
5881
+ -5
5882
+ 23
5883
+ 50
5884
+ -33
5885
+ -27
5886
+ -7
5887
+ 48
5888
+ 20
5889
+ 1
5890
+ -39
5891
+ 9
5892
+ 48
5893
+ -17
5894
+ -20
5895
+ -18
5896
+ 30
5897
+ 45
5898
+ -15
5899
+ -15
5900
+ 6
5901
+ -37
5902
+ -32
5903
+ -16
5904
+ 20
5905
+ -11
5906
+ 8
5907
+ 24
5908
+ 4
5909
+ 46
5910
+ 17
5911
+ -24
5912
+ 50
5913
+ -12
5914
+ 5
5915
+ -31
5916
+ 40
5917
+ 40
5918
+ -35
5919
+ -11
5920
+ 39
5921
+ -12
5922
+ 10
5923
+ 8
5924
+ 23
5925
+ -48
5926
+ -11
5927
+ 26
5928
+ 25
5929
+ -6
5930
+ -24
5931
+ -33
5932
+ -49
5933
+ -48
5934
+ -14
5935
+ -9
5936
+ 25
5937
+ -21
5938
+ 34
5939
+ 16
5940
+ -16
5941
+ 39
5942
+ -31
5943
+ 7
5944
+ 10
5945
+ -30
5946
+ -46
5947
+ 2
5948
+ 42
5949
+ -45
5950
+ -18
5951
+ -46
5952
+ -19
5953
+ -40
5954
+ 15
5955
+ 30
5956
+ 13
5957
+ -49
5958
+ 12
5959
+ 12
5960
+ -12
5961
+ -16
5962
+ 18
5963
+ -22
5964
+ 48
5965
+ 22
5966
+ 34
5967
+ -23
5968
+ -48
5969
+ -45
5970
+ 40
5971
+ 36
5972
+ 13
5973
+ 37
5974
+ 43
5975
+ -2
5976
+ -31
5977
+ -47
5978
+ 32
5979
+ -3
5980
+ -2
5981
+ -3
5982
+ -19
5983
+ 33
5984
+ -33
5985
+ -45
5986
+ 27
5987
+ -49
5988
+ -11
5989
+ -3
5990
+ -39
5991
+ 28
5992
+ 1
5993
+ -47
5994
+ 17
5995
+ 29
5996
+ -43
5997
+ -40
5998
+ -2
5999
+ -16
6000
+ 5
6001
+ 27
6002
+ 43
6003
+ 34
6004
+ 24
6005
+ 25
6006
+ -3
6007
+ -33
6008
+ 24
6009
+ 28
6010
+ -5
6011
+ 10
6012
+ -8
6013
+ 7
6014
+ -2
6015
+ 49
6016
+ -12
6017
+ -37
6018
+ 33
6019
+ 41
6020
+ -44
6021
+ 11
6022
+ -10
6023
+ 44
6024
+ 44
6025
+ -3
6026
+ 17
6027
+ -41
6028
+ -21
6029
+ -9
6030
+ 17
6031
+ 39
6032
+ 44
6033
+ 36
6034
+ -1
6035
+ -34
6036
+ -2
6037
+ -28
6038
+ -3
6039
+ 37
6040
+ -20
6041
+ -2
6042
+ -34
6043
+ 31
6044
+ 35
6045
+ -34
6046
+ 11
6047
+ -11
6048
+ 31
6049
+ 28
6050
+ -15
6051
+ 7
6052
+ 37
6053
+ 35
6054
+ 10
6055
+ 38
6056
+ 44
6057
+ 45
6058
+ -7
6059
+ 30
6060
+ -20
6061
+ -50
6062
+ 14
6063
+ -14
6064
+ -21
6065
+ 21
6066
+ 32
6067
+ -36
6068
+ -7
6069
+ 18
6070
+ 6
6071
+ 41
6072
+ -34
6073
+ -20
6074
+ 40
6075
+ -14
6076
+ -20
6077
+ -29
6078
+ 44
6079
+ -38
6080
+ 5
6081
+ -1
6082
+ -3
6083
+ -7
6084
+ -16
6085
+ -36
6086
+ -30
6087
+ 25
6088
+ -39
6089
+ 45
6090
+ 13
6091
+ -41
6092
+ 3
6093
+ -46
6094
+ -34
6095
+ -18
6096
+ -22
6097
+ -17
6098
+ -12
6099
+ -6
6100
+ 38
6101
+ -46
6102
+ 42
6103
+ -2
6104
+ 20
6105
+ -37
6106
+ 35
6107
+ -29
6108
+ 10
6109
+ 40
6110
+ 27
6111
+ -45
6112
+ -21
6113
+ -47
6114
+ -23
6115
+ -34
6116
+ 25
6117
+ -50
6118
+ -48
6119
+ 31
6120
+ 32
6121
+ -19
6122
+ -4
6123
+ 49
6124
+ 4
6125
+ 7
6126
+ 36
6127
+ -4
6128
+ 47
6129
+ -12
6130
+ 14
6131
+ 22
6132
+ 10
6133
+ 4
6134
+ -16
6135
+ -7
6136
+ -9
6137
+ -12
6138
+ -42
6139
+ 39
6140
+ 33
6141
+ 14
6142
+ 1
6143
+ -38
6144
+ 25
6145
+ -50
6146
+ 46
6147
+ -26
6148
+ -36
6149
+ -2
6150
+ -42
6151
+ -41
6152
+ 15
6153
+ 43
6154
+ -28
6155
+ 7
6156
+ 43
6157
+ 26
6158
+ 48
6159
+ -5
6160
+ 34
6161
+ 8
6162
+ 41
6163
+ -31
6164
+ 7
6165
+ -20
6166
+ -49
6167
+ -24
6168
+ 37
6169
+ -35
6170
+ 38
6171
+ 1
6172
+ 44
6173
+ 24
6174
+ 2
6175
+ -12
6176
+ -26
6177
+ -43
6178
+ 32
6179
+ -17
6180
+ 47
6181
+ 17
6182
+ 37
6183
+ 47
6184
+ 39
6185
+ -23
6186
+ -42
6187
+ 31
6188
+ 6
6189
+ -25
6190
+ -28
6191
+ 16
6192
+ 20
6193
+ 12
6194
+ 42
6195
+ -24
6196
+ 22
6197
+ -20
6198
+ 33
6199
+ -11
6200
+ -44
6201
+ 32
6202
+ 31
6203
+ 46
6204
+ -21
6205
+ 23
6206
+ -9
6207
+ -33
6208
+ -8
6209
+ -4
6210
+ -41
6211
+ 33
6212
+ -11
6213
+ -14
6214
+ -16
6215
+ -2
6216
+ 31
6217
+ 8
6218
+ 18
6219
+ 29
6220
+ 47
6221
+ 16
6222
+ 38
6223
+ -38
6224
+ 39
6225
+ -24
6226
+ -2
6227
+ 33
6228
+ 5
6229
+ 17
6230
+ -15
6231
+ 16
6232
+ -34
6233
+ 28
6234
+ -6
6235
+ -10
6236
+ 25
6237
+ 26
6238
+ 27
6239
+ -32
6240
+ -27
6241
+ -7
6242
+ 41
6243
+ 5
6244
+ 29
6245
+ -44
6246
+ 29
6247
+ -6
6248
+ 36
6249
+ -9
6250
+ -3
6251
+ 10
6252
+ 37
6253
+ -46
6254
+ -22
6255
+ 45
6256
+ 33
6257
+ 5
6258
+ -27
6259
+ -18
6260
+ -16
6261
+ -24
6262
+ 43
6263
+ 42
6264
+ -22
6265
+ -11
6266
+ -40
6267
+ 47
6268
+ -9
6269
+ -43
6270
+ -35
6271
+ -27
6272
+ 15
6273
+ -23
6274
+ -10
6275
+ -3
6276
+ 44
6277
+ -12
6278
+ -38
6279
+ 18
6280
+ -8
6281
+ 40
6282
+ 22
6283
+ -45
6284
+ -31
6285
+ -25
6286
+ -43
6287
+ 32
6288
+ 27
6289
+ 19
6290
+ 43
6291
+ -46
6292
+ 44
6293
+ 38
6294
+ -46
6295
+ -10
6296
+ 5
6297
+ 5
6298
+ 17
6299
+ -7
6300
+ 48
6301
+ -43
6302
+ -6
6303
+ -49
6304
+ 38
6305
+ -30
6306
+ 33
6307
+ 12
6308
+ -44
6309
+ 7
6310
+ 22
6311
+ 4
6312
+ 33
6313
+ 3
6314
+ 27
6315
+ -44
6316
+ 38
6317
+ 1
6318
+ -9
6319
+ -42
6320
+ 7
6321
+ 18
6322
+ 40
6323
+ -35
6324
+ -49
6325
+ 28
6326
+ -13
6327
+ 8
6328
+ 43
6329
+ 33
6330
+ -23
6331
+ -17
6332
+ 19
6333
+ 12
6334
+ 26
6335
+ 12
6336
+ 24
6337
+ 3
6338
+ -6
6339
+ -17
6340
+ -7
6341
+ -13
6342
+ 9
6343
+ -11
6344
+ -23
6345
+ -25
6346
+ 48
6347
+ 14
6348
+ 28
6349
+ -26
6350
+ -43
6351
+ 32
6352
+ -48
6353
+ 33
6354
+ -30
6355
+ -30
6356
+ 34
6357
+ -22
6358
+ -3
6359
+ -36
6360
+ -13
6361
+ -17
6362
+ 40
6363
+ -46
6364
+ -43
6365
+ -3
6366
+ -29
6367
+ 33
6368
+ 3
6369
+ -15
6370
+ -8
6371
+ 48
6372
+ -28
6373
+ -39
6374
+ -16
6375
+ -37
6376
+ 34
6377
+ -19
6378
+ -18
6379
+ 3
6380
+ -20
6381
+ -3
6382
+ 34
6383
+ -14
6384
+ 16
6385
+ -27
6386
+ 6
6387
+ 7
6388
+ 33
6389
+ -14
6390
+ -13
6391
+ 29
6392
+ 50
6393
+ 14
6394
+ 2
6395
+ -15
6396
+ 49
6397
+ -25
6398
+ 24
6399
+ -38
6400
+ 48
6401
+ -23
6402
+ -35
6403
+ -22
6404
+ 27
6405
+ 31
6406
+ 43
6407
+ 1
6408
+ 37
6409
+ -14
6410
+ 30
6411
+ -30
6412
+ 4
6413
+ -18
6414
+ -32
6415
+ -12
6416
+ -24
6417
+ -15
6418
+ 40
6419
+ -33
6420
+ 40
6421
+ 23
6422
+ -35
6423
+ -16
6424
+ 39
6425
+ 9
6426
+ -23
6427
+ 4
6428
+ -25
6429
+ -22
6430
+ 21
6431
+ 6
6432
+ -33
6433
+ -18
6434
+ 0
6435
+ -32
6436
+ 35
6437
+ 45
6438
+ 26
6439
+ -37
6440
+ -48
6441
+ 43
6442
+ 8
6443
+ 46
6444
+ 1
6445
+ 36
6446
+ 23
6447
+ 47
6448
+ 46
6449
+ 50
6450
+ 14
6451
+ 32
6452
+ -35
6453
+ 38
6454
+ -2
6455
+ -4
6456
+ 7
6457
+ -41
6458
+ 1
6459
+ 45
6460
+ -33
6461
+ -32
6462
+ -30
6463
+ -9
6464
+ -15
6465
+ 33
6466
+ -26
6467
+ -48
6468
+ -24
6469
+ -10
6470
+ -21
6471
+ -46
6472
+ -20
6473
+ 5
6474
+ 21
6475
+ -32
6476
+ 50
6477
+ 16
6478
+ -35
6479
+ 49
6480
+ -22
6481
+ 26
6482
+ -50
6483
+ -7
6484
+ 36
6485
+ 36
6486
+ -29
6487
+ 28
6488
+ -12
6489
+ 15
6490
+ 50
6491
+ -13
6492
+ -2
6493
+ 3
6494
+ 35
6495
+ 44
6496
+ 37
6497
+ -41
6498
+ -29
6499
+ -50
6500
+ 2
6501
+ 17
6502
+ 46
6503
+ 0
6504
+ 25
6505
+ -8
6506
+ 44
6507
+ 47
6508
+ -14
6509
+ 0
6510
+ -14
6511
+ -16
6512
+ 25
6513
+ 11
6514
+ 12
6515
+ 30
6516
+ 33
6517
+ 48
6518
+ -19
6519
+ -44
6520
+ 12
6521
+ 39
6522
+ -4
6523
+ 11
6524
+ 42
6525
+ -42
6526
+ -47
6527
+ 26
6528
+ 29
6529
+ -32
6530
+ 25
6531
+ 38
6532
+ -30
6533
+ 35
6534
+ 16
6535
+ 22
6536
+ 15
6537
+ 23
6538
+ 3
6539
+ 42
6540
+ 7
6541
+ 9
6542
+ -12
6543
+ 46
6544
+ 3
6545
+ -48
6546
+ -1
6547
+ 24
6548
+ -47
6549
+ 3
6550
+ -4
6551
+ -35
6552
+ -2
6553
+ 6
6554
+ 11
6555
+ -48
6556
+ 14
6557
+ 45
6558
+ -45
6559
+ 17
6560
+ -9
6561
+ 36
6562
+ -48
6563
+ -31
6564
+ 22
6565
+ 20
6566
+ -16
6567
+ -44
6568
+ -40
6569
+ -5
6570
+ 15
6571
+ 7
6572
+ -21
6573
+ 5
6574
+ 50
6575
+ -15
6576
+ -18
6577
+ -26
6578
+ 29
6579
+ 9
6580
+ -32
6581
+ -2
6582
+ -24
6583
+ -1
6584
+ 35
6585
+ -31
6586
+ -16
6587
+ -32
6588
+ 4
6589
+ 0
6590
+ -30
6591
+ -6
6592
+ -13
6593
+ -26
6594
+ -3
6595
+ -41
6596
+ 35
6597
+ -5
6598
+ -13
6599
+ -7
6600
+ -17
6601
+ -4
6602
+ 15
6603
+ -5
6604
+ -30
6605
+ 14
6606
+ -10
6607
+ 9
6608
+ -42
6609
+ 37
6610
+ 21
6611
+ 4
6612
+ -32
6613
+ -48
6614
+ 5
6615
+ 42
6616
+ -2
6617
+ 40
6618
+ 10
6619
+ 0
6620
+ -42
6621
+ 31
6622
+ -15
6623
+ 33
6624
+ -10
6625
+ -36
6626
+ -39
6627
+ 23
6628
+ 50
6629
+ -46
6630
+ -44
6631
+ 3
6632
+ -50
6633
+ 29
6634
+ -13
6635
+ -12
6636
+ 39
6637
+ -33
6638
+ -31
6639
+ 34
6640
+ 45
6641
+ -31
6642
+ -35
6643
+ 35
6644
+ 31
6645
+ -49
6646
+ 41
6647
+ -23
6648
+ 7
6649
+ 28
6650
+ -4
6651
+ 3
6652
+ -45
6653
+ -19
6654
+ 19
6655
+ -30
6656
+ 46
6657
+ 31
6658
+ -4
6659
+ -16
6660
+ -48
6661
+ -40
6662
+ 33
6663
+ -49
6664
+ 6
6665
+ -17
6666
+ -23
6667
+ -11
6668
+ -33
6669
+ 48
6670
+ 18
6671
+ 35
6672
+ 43
6673
+ -16
6674
+ -16
6675
+ -25
6676
+ 41
6677
+ 42
6678
+ 11
6679
+ 0
6680
+ 48
6681
+ -28
6682
+ -44
6683
+ -23
6684
+ -4
6685
+ -38
6686
+ -40
6687
+ -3
6688
+ -41
6689
+ -46
6690
+ 3
6691
+ -30
6692
+ -49
6693
+ 39
6694
+ -3
6695
+ 22
6696
+ -34
6697
+ -22
6698
+ -26
6699
+ 19
6700
+ 24
6701
+ 44
6702
+ -48
6703
+ 11
6704
+ 47
6705
+ 3
6706
+ 47
6707
+ -21
6708
+ 43
6709
+ 11
6710
+ 36
6711
+ 48
6712
+ 12
6713
+ -25
6714
+ 43
6715
+ 49
6716
+ -49
6717
+ -12
6718
+ -35
6719
+ 32
6720
+ -23
6721
+ -47
6722
+ -16
6723
+ 2
6724
+ -12
6725
+ 27
6726
+ 12
6727
+ 20
6728
+ 8
6729
+ -34
6730
+ -45
6731
+ -50
6732
+ 12
6733
+ 18
6734
+ 2
6735
+ 29
6736
+ 2
6737
+ 7
6738
+ 34
6739
+ -34
6740
+ -24
6741
+ -43
6742
+ -13
6743
+ -6
6744
+ -43
6745
+ -46
6746
+ -11
6747
+ -23
6748
+ -26
6749
+ 44
6750
+ -13
6751
+ -35
6752
+ 26
6753
+ 24
6754
+ 39
6755
+ -18
6756
+ -26
6757
+ 45
6758
+ -35
6759
+ 8
6760
+ -30
6761
+ 28
6762
+ -22
6763
+ -45
6764
+ 49
6765
+ 37
6766
+ -1
6767
+ -30
6768
+ 30
6769
+ -17
6770
+ 44
6771
+ -17
6772
+ 15
6773
+ -25
6774
+ 14
6775
+ 26
6776
+ -18
6777
+ -10
6778
+ -20
6779
+ 25
6780
+ 1
6781
+ -3
6782
+ -23
6783
+ -23
6784
+ -28
6785
+ -1
6786
+ -16
6787
+ 25
6788
+ 36
6789
+ -11
6790
+ 29
6791
+ -28
6792
+ -40
6793
+ 25
6794
+ 47
6795
+ -9
6796
+ 32
6797
+ 40
6798
+ 34
6799
+ -38
6800
+ -2
6801
+ -37
6802
+ -15
6803
+ -5
6804
+ -23
6805
+ 10
6806
+ 14
6807
+ 28
6808
+ 33
6809
+ 30
6810
+ 1
6811
+ -9
6812
+ -5
6813
+ 19
6814
+ 45
6815
+ 22
6816
+ -10
6817
+ 9
6818
+ 22
6819
+ 31
6820
+ 47
6821
+ 14
6822
+ 15
6823
+ -34
6824
+ -21
6825
+ -45
6826
+ -18
6827
+ -47
6828
+ 39
6829
+ -31
6830
+ -39
6831
+ 21
6832
+ 45
6833
+ 1
6834
+ 0
6835
+ 7
6836
+ -17
6837
+ 33
6838
+ 39
6839
+ 46
6840
+ 27
6841
+ -37
6842
+ 20
6843
+ 2
6844
+ 5
6845
+ -22
6846
+ -35
6847
+ -9
6848
+ -7
6849
+ 34
6850
+ -11
6851
+ 30
6852
+ -11
6853
+ -35
6854
+ -30
6855
+ -48
6856
+ -11
6857
+ -27
6858
+ 3
6859
+ 50
6860
+ 42
6861
+ 44
6862
+ -34
6863
+ 27
6864
+ 33
6865
+ -6
6866
+ -17
6867
+ 40
6868
+ -12
6869
+ -44
6870
+ 14
6871
+ -27
6872
+ 42
6873
+ 33
6874
+ -35
6875
+ -24
6876
+ -30
6877
+ 27
6878
+ -46
6879
+ 0
6880
+ 50
6881
+ 28
6882
+ 46
6883
+ -42
6884
+ -21
6885
+ -9
6886
+ -21
6887
+ 42
6888
+ 17
6889
+ 38
6890
+ 0
6891
+ -44
6892
+ -4
6893
+ 12
6894
+ -32
6895
+ 11
6896
+ 21
6897
+ 36
6898
+ 13
6899
+ 24
6900
+ -11
6901
+ -5
6902
+ 27
6903
+ -27
6904
+ -47
6905
+ -50
6906
+ -3
6907
+ -44
6908
+ -18
6909
+ 50
6910
+ -19
6911
+ 29
6912
+ 2
6913
+ -37
6914
+ -30
6915
+ -18
6916
+ -33
6917
+ 19
6918
+ -5
6919
+ -12
6920
+ -43
6921
+ -35
6922
+ -23
6923
+ 38
6924
+ 6
6925
+ 38
6926
+ 30
6927
+ 40
6928
+ 20
6929
+ -42
6930
+ -5
6931
+ 34
6932
+ -2
6933
+ -45
6934
+ 47
6935
+ -38
6936
+ 33
6937
+ -43
6938
+ 30
6939
+ 5
6940
+ -27
6941
+ -11
6942
+ 0
6943
+ -47
6944
+ 19
6945
+ 21
6946
+ 19
6947
+ -4
6948
+ 8
6949
+ 12
6950
+ -39
6951
+ 8
6952
+ -25
6953
+ 30
6954
+ 27
6955
+ -17
6956
+ -44
6957
+ 36
6958
+ -40
6959
+ -35
6960
+ 49
6961
+ 1
6962
+ -33
6963
+ -32
6964
+ -3
6965
+ 23
6966
+ 36
6967
+ 23
6968
+ -35
6969
+ -21
6970
+ -44
6971
+ 33
6972
+ -1
6973
+ 46
6974
+ -41
6975
+ -40
6976
+ 44
6977
+ 8
6978
+ -30
6979
+ -28
6980
+ 27
6981
+ 36
6982
+ -10
6983
+ -1
6984
+ -39
6985
+ -10
6986
+ 46
6987
+ 21
6988
+ -43
6989
+ -43
6990
+ 39
6991
+ 45
6992
+ 50
6993
+ 41
6994
+ -35
6995
+ -31
6996
+ 19
6997
+ -12
6998
+ 19
6999
+ -11
7000
+ -28
7001
+ 43
7002
+ -25
7003
+ 34
7004
+ 35
7005
+ 37
7006
+ -26
7007
+ -16
7008
+ -11
7009
+ 2
7010
+ 48
7011
+ -38
7012
+ 49
7013
+ -34
7014
+ 5
7015
+ -40
7016
+ 29
7017
+ -27
7018
+ 25
7019
+ 26
7020
+ 7
7021
+ -37
7022
+ -6
7023
+ 46
7024
+ -37
7025
+ -47
7026
+ -6
7027
+ 21
7028
+ -43
7029
+ 38
7030
+ 42
7031
+ -2
7032
+ 40
7033
+ 11
7034
+ 40
7035
+ -25
7036
+ 4
7037
+ -28
7038
+ 2
7039
+ 41
7040
+ -47
7041
+ -9
7042
+ 29
7043
+ -48
7044
+ 20
7045
+ -39
7046
+ 8
7047
+ -48
7048
+ -28
7049
+ 15
7050
+ 0
7051
+ -20
7052
+ -45
7053
+ -37
7054
+ 0
7055
+ 12
7056
+ -21
7057
+ -45
7058
+ 34
7059
+ -34
7060
+ 39
7061
+ -16
7062
+ -10
7063
+ 10
7064
+ 28
7065
+ -20
7066
+ 3
7067
+ -38
7068
+ 21
7069
+ 46
7070
+ -43
7071
+ 35
7072
+ -18
7073
+ -23
7074
+ -23
7075
+ -42
7076
+ 28
7077
+ 3
7078
+ -8
7079
+ -9
7080
+ -49
7081
+ 30
7082
+ -47
7083
+ 35
7084
+ -36
7085
+ 18
7086
+ 7
7087
+ -12
7088
+ 1
7089
+ 42
7090
+ 6
7091
+ -45
7092
+ 41
7093
+ -49
7094
+ -39
7095
+ -31
7096
+ -5
7097
+ -11
7098
+ -18
7099
+ 35
7100
+ -30
7101
+ -33
7102
+ 8
7103
+ -2
7104
+ -39
7105
+ -31
7106
+ 8
7107
+ 18
7108
+ 17
7109
+ 41
7110
+ 32
7111
+ -34
7112
+ -6
7113
+ -31
7114
+ -49
7115
+ -18
7116
+ -43
7117
+ -36
7118
+ 14
7119
+ 30
7120
+ -18
7121
+ 15
7122
+ -27
7123
+ 38
7124
+ 5
7125
+ -47
7126
+ 30
7127
+ 37
7128
+ 1
7129
+ 33
7130
+ 17
7131
+ 7
7132
+ 0
7133
+ 8
7134
+ 23
7135
+ -7
7136
+ 46
7137
+ 9
7138
+ 0
7139
+ -2
7140
+ 30
7141
+ -36
7142
+ -4
7143
+ 0
7144
+ 27
7145
+ 26
7146
+ 2
7147
+ 42
7148
+ 31
7149
+ 22
7150
+ 6
7151
+ 25
7152
+ 22
7153
+ -38
7154
+ 42
7155
+ 35
7156
+ 46
7157
+ 15
7158
+ -6
7159
+ -23
7160
+ -14
7161
+ 23
7162
+ 44
7163
+ 46
7164
+ 37
7165
+ -26
7166
+ 29
7167
+ -31
7168
+ -27
7169
+ -20
7170
+ 8
7171
+ -29
7172
+ 36
7173
+ 19
7174
+ -22
7175
+ 12
7176
+ -42
7177
+ -44
7178
+ 0
7179
+ 6
7180
+ -46
7181
+ -34
7182
+ 12
7183
+ -50
7184
+ -17
7185
+ 42
7186
+ -14
7187
+ -27
7188
+ 49
7189
+ -23
7190
+ -20
7191
+ -11
7192
+ 36
7193
+ 22
7194
+ -37
7195
+ 46
7196
+ 37
7197
+ 12
7198
+ -46
7199
+ 22
7200
+ 6
7201
+ -25
7202
+ 47
7203
+ 46
7204
+ -45
7205
+ -9
7206
+ -2
7207
+ -11
7208
+ -7
7209
+ 18
7210
+ -19
7211
+ 48
7212
+ 28
7213
+ 48
7214
+ -14
7215
+ -17
7216
+ 37
7217
+ -33
7218
+ -32
7219
+ 7
7220
+ -35
7221
+ -11
7222
+ 39
7223
+ 31
7224
+ 26
7225
+ 28
7226
+ 7
7227
+ -4
7228
+ 1
7229
+ -5
7230
+ 40
7231
+ -1
7232
+ -44
7233
+ -33
7234
+ 34
7235
+ 31
7236
+ 12
7237
+ -3
7238
+ 37
7239
+ -11
7240
+ 37
7241
+ -2
7242
+ -31
7243
+ -35
7244
+ -50
7245
+ 17
7246
+ -39
7247
+ 39
7248
+ 7
7249
+ -32
7250
+ -49
7251
+ 16
7252
+ -47
7253
+ -47
7254
+ -23
7255
+ -6
7256
+ 17
7257
+ 49
7258
+ 29
7259
+ 34
7260
+ -29
7261
+ 30
7262
+ 21
7263
+ -12
7264
+ -19
7265
+ -24
7266
+ -39
7267
+ -15
7268
+ 9
7269
+ -34
7270
+ -32
7271
+ 5
7272
+ -21
7273
+ 38
7274
+ -34
7275
+ -17
7276
+ 14
7277
+ 17
7278
+ -13
7279
+ 10
7280
+ 15
7281
+ -14
7282
+ -11
7283
+ 49
7284
+ 27
7285
+ -14
7286
+ 32
7287
+ 50
7288
+ 13
7289
+ -6
7290
+ -44
7291
+ -13
7292
+ 4
7293
+ 15
7294
+ -45
7295
+ -24
7296
+ -3
7297
+ -21
7298
+ -49
7299
+ -35
7300
+ 21
7301
+ 28
7302
+ -42
7303
+ -38
7304
+ 15
7305
+ 12
7306
+ -23
7307
+ 48
7308
+ -14
7309
+ -44
7310
+ 37
7311
+ 20
7312
+ -35
7313
+ -10
7314
+ -40
7315
+ 9
7316
+ -30
7317
+ -27
7318
+ -7
7319
+ 16
7320
+ 22
7321
+ -14
7322
+ 50
7323
+ -25
7324
+ -34
7325
+ 34
7326
+ -11
7327
+ 28
7328
+ -32
7329
+ -46
7330
+ 32
7331
+ -16
7332
+ -2
7333
+ 38
7334
+ 31
7335
+ 17
7336
+ 7
7337
+ 8
7338
+ -32
7339
+ -32
7340
+ 42
7341
+ -5
7342
+ 18
7343
+ -13
7344
+ 19
7345
+ 49
7346
+ 37
7347
+ -35
7348
+ -3
7349
+ 11
7350
+ -25
7351
+ 20
7352
+ 13
7353
+ 16
7354
+ 23
7355
+ 14
7356
+ -40
7357
+ 2
7358
+ -33
7359
+ 7
7360
+ 23
7361
+ -27
7362
+ 23
7363
+ -1
7364
+ 13
7365
+ 46
7366
+ -10
7367
+ 39
7368
+ 12
7369
+ 46
7370
+ -46
7371
+ 23
7372
+ -12
7373
+ -48
7374
+ -44
7375
+ 16
7376
+ -22
7377
+ -4
7378
+ 43
7379
+ 22
7380
+ 19
7381
+ 26
7382
+ 19
7383
+ 49
7384
+ 4
7385
+ -11
7386
+ 39
7387
+ 27
7388
+ 6
7389
+ 2
7390
+ -26
7391
+ -40
7392
+ -46
7393
+ -5
7394
+ -2
7395
+ 19
7396
+ 14
7397
+ 50
7398
+ -10
7399
+ -33
7400
+ 21
7401
+ -23
7402
+ 23
7403
+ 18
7404
+ 22
7405
+ 43
7406
+ 16
7407
+ -1
7408
+ -5
7409
+ -29
7410
+ 15
7411
+ 14
7412
+ -36
7413
+ -31
7414
+ 16
7415
+ -14
7416
+ 16
7417
+ -34
7418
+ -23
7419
+ -24
7420
+ -40
7421
+ 50
7422
+ 40
7423
+ -24
7424
+ 25
7425
+ -23
7426
+ 24
7427
+ -14
7428
+ -33
7429
+ 21
7430
+ 43
7431
+ 36
7432
+ -49
7433
+ -48
7434
+ 12
7435
+ 19
7436
+ -7
7437
+ -6
7438
+ -6
7439
+ 40
7440
+ 37
7441
+ 28
7442
+ -8
7443
+ -37
7444
+ 13
7445
+ -50
7446
+ -31
7447
+ 38
7448
+ 38
7449
+ -39
7450
+ -40
7451
+ 20
7452
+ 1
7453
+ -20
7454
+ 7
7455
+ -15
7456
+ 12
7457
+ 36
7458
+ 13
7459
+ 46
7460
+ 10
7461
+ 12
7462
+ -20
7463
+ 6
7464
+ 44
7465
+ -10
7466
+ -50
7467
+ -44
7468
+ -18
7469
+ -13
7470
+ -10
7471
+ 11
7472
+ 26
7473
+ -17
7474
+ -40
7475
+ 13
7476
+ 7
7477
+ 4
7478
+ 35
7479
+ 12
7480
+ 41
7481
+ 10
7482
+ -23
7483
+ 22
7484
+ 6
7485
+ -49
7486
+ 42
7487
+ -50
7488
+ 19
7489
+ -36
7490
+ 7
7491
+ 7
7492
+ -37
7493
+ 49
7494
+ -7
7495
+ 32
7496
+ -30
7497
+ -20
7498
+ 15
7499
+ -22
7500
+ 11
7501
+ 11
7502
+ 8
7503
+ -50
7504
+ 48
7505
+ 45
7506
+ 20
7507
+ -9
7508
+ -28
7509
+ 42
7510
+ 49
7511
+ -47
7512
+ 50
7513
+ 26
7514
+ -46
7515
+ -34
7516
+ 19
7517
+ 38
7518
+ 2
7519
+ 45
7520
+ 19
7521
+ -6
7522
+ -35
7523
+ -46
7524
+ 40
7525
+ -42
7526
+ -5
7527
+ -44
7528
+ 28
7529
+ -41
7530
+ 32
7531
+ 48
7532
+ 43
7533
+ 32
7534
+ -18
7535
+ 36
7536
+ -26
7537
+ -20
7538
+ -48
7539
+ -26
7540
+ 35
7541
+ 45
7542
+ 17
7543
+ 17
7544
+ -9
7545
+ 12
7546
+ -6
7547
+ -21
7548
+ -14
7549
+ 9
7550
+ -31
7551
+ -14
7552
+ 13
7553
+ 33
7554
+ 19
7555
+ -7
7556
+ 50
7557
+ 34
7558
+ -8
7559
+ -13
7560
+ 14
7561
+ -11
7562
+ -39
7563
+ -44
7564
+ 47
7565
+ -32
7566
+ 12
7567
+ -10
7568
+ -6
7569
+ 15
7570
+ -48
7571
+ 15
7572
+ -33
7573
+ 3
7574
+ -25
7575
+ 46
7576
+ -15
7577
+ 2
7578
+ -1
7579
+ 33
7580
+ -26
7581
+ -40
7582
+ 22
7583
+ -45
7584
+ -42
7585
+ -26
7586
+ -32
7587
+ -35
7588
+ 45
7589
+ -46
7590
+ -20
7591
+ -3
7592
+ -5
7593
+ 46
7594
+ 3
7595
+ -48
7596
+ 43
7597
+ -8
7598
+ -36
7599
+ -6
7600
+ -47
7601
+ 35
7602
+ 31
7603
+ 10
7604
+ -19
7605
+ -33
7606
+ 17
7607
+ -2
7608
+ -48
7609
+ 11
7610
+ 38
7611
+ 9
7612
+ 22
7613
+ 41
7614
+ -31
7615
+ 32
7616
+ -9
7617
+ 2
7618
+ -16
7619
+ 6
7620
+ 44
7621
+ 45
7622
+ -36
7623
+ -1
7624
+ -49
7625
+ 15
7626
+ 47
7627
+ 16
7628
+ -9
7629
+ 17
7630
+ -37
7631
+ 38
7632
+ -39
7633
+ -36
7634
+ -46
7635
+ 12
7636
+ 48
7637
+ -48
7638
+ 32
7639
+ -23
7640
+ -36
7641
+ 33
7642
+ -14
7643
+ -47
7644
+ 9
7645
+ -12
7646
+ 9
7647
+ 16
7648
+ -14
7649
+ 25
7650
+ 33
7651
+ -30
7652
+ -34
7653
+ 32
7654
+ -43
7655
+ -38
7656
+ 19
7657
+ -29
7658
+ -18
7659
+ 3
7660
+ -24
7661
+ -9
7662
+ 45
7663
+ -47
7664
+ 41
7665
+ 33
7666
+ -15
7667
+ -18
7668
+ -44
7669
+ 1
7670
+ -50
7671
+ 40
7672
+ -36
7673
+ -25
7674
+ -13
7675
+ 9
7676
+ 23
7677
+ 0
7678
+ -24
7679
+ -30
7680
+ 10
7681
+ 23
7682
+ 0
7683
+ -9
7684
+ -45
7685
+ -22
7686
+ -42
7687
+ 8
7688
+ -17
7689
+ -36
7690
+ 12
7691
+ -21
7692
+ 1
7693
+ 44
7694
+ 43
7695
+ 9
7696
+ -9
7697
+ -30
7698
+ -22
7699
+ 3
7700
+ 36
7701
+ 34
7702
+ 33
7703
+ 43
7704
+ -8
7705
+ -33
7706
+ -16
7707
+ -21
7708
+ -38
7709
+ -13
7710
+ -45
7711
+ 47
7712
+ -44
7713
+ -4
7714
+ -18
7715
+ 46
7716
+ 29
7717
+ 19
7718
+ 12
7719
+ 33
7720
+ -4
7721
+ -32
7722
+ -37
7723
+ -12
7724
+ 45
7725
+ 42
7726
+ 7
7727
+ -20
7728
+ 41
7729
+ -30
7730
+ 17
7731
+ 44
7732
+ -32
7733
+ 23
7734
+ -21
7735
+ -11
7736
+ 1
7737
+ 15
7738
+ -19
7739
+ 26
7740
+ -11
7741
+ 22
7742
+ 11
7743
+ 20
7744
+ 26
7745
+ 47
7746
+ 48
7747
+ -2
7748
+ 7
7749
+ -36
7750
+ -31
7751
+ 31
7752
+ 13
7753
+ 38
7754
+ 38
7755
+ 23
7756
+ -4
7757
+ 47
7758
+ 9
7759
+ 24
7760
+ 7
7761
+ -48
7762
+ 31
7763
+ 34
7764
+ -34
7765
+ 14
7766
+ 20
7767
+ 24
7768
+ -3
7769
+ 32
7770
+ 20
7771
+ 16
7772
+ -14
7773
+ -17
7774
+ -10
7775
+ 6
7776
+ -1
7777
+ 3
7778
+ -4
7779
+ -32
7780
+ 26
7781
+ -35
7782
+ -5
7783
+ -23
7784
+ -1
7785
+ -45
7786
+ 48
7787
+ -24
7788
+ 48
7789
+ 14
7790
+ -46
7791
+ 12
7792
+ 23
7793
+ -3
7794
+ 4
7795
+ 14
7796
+ 7
7797
+ 17
7798
+ 15
7799
+ 50
7800
+ 10
7801
+ 19
7802
+ -18
7803
+ -32
7804
+ -23
7805
+ 35
7806
+ -43
7807
+ -32
7808
+ -47
7809
+ -10
7810
+ -19
7811
+ -9
7812
+ 17
7813
+ 21
7814
+ 2
7815
+ -50
7816
+ -5
7817
+ -49
7818
+ -22
7819
+ -14
7820
+ 40
7821
+ -26
7822
+ -44
7823
+ -26
7824
+ 14
7825
+ -19
7826
+ -13
7827
+ -24
7828
+ -45
7829
+ 18
7830
+ 11
7831
+ 2
7832
+ -5
7833
+ 47
7834
+ -15
7835
+ 1
7836
+ -6
7837
+ 24
7838
+ 3
7839
+ -23
7840
+ -2
7841
+ 43
7842
+ 20
7843
+ 36
7844
+ -18
7845
+ 18
7846
+ -39
7847
+ 28
7848
+ -43
7849
+ 16
7850
+ 14
7851
+ 30
7852
+ 35
7853
+ -32
7854
+ 19
7855
+ 31
7856
+ 26
7857
+ 43
7858
+ 47
7859
+ 41
7860
+ 2
7861
+ 18
7862
+ -27
7863
+ 33
7864
+ -11
7865
+ -16
7866
+ -36
7867
+ 11
7868
+ -20
7869
+ -13
7870
+ -21
7871
+ -35
7872
+ 48
7873
+ 30
7874
+ -19
7875
+ -16
7876
+ 50
7877
+ 37
7878
+ -11
7879
+ -20
7880
+ -40
7881
+ 29
7882
+ 15
7883
+ -24
7884
+ -42
7885
+ -41
7886
+ 36
7887
+ 16
7888
+ 38
7889
+ 46
7890
+ 46
7891
+ 46
7892
+ -6
7893
+ 13
7894
+ -26
7895
+ 14
7896
+ -45
7897
+ 13
7898
+ 9
7899
+ 4
7900
+ -17
7901
+ -31
7902
+ 34
7903
+ -17
7904
+ -9
7905
+ 18
7906
+ 46
7907
+ 40
7908
+ -12
7909
+ -5
7910
+ -5
7911
+ 21
7912
+ 24
7913
+ 41
7914
+ -27
7915
+ -41
7916
+ 7
7917
+ -47
7918
+ -30
7919
+ -24
7920
+ -35
7921
+ 16
7922
+ 26
7923
+ -11
7924
+ 21
7925
+ 8
7926
+ 36
7927
+ 13
7928
+ -34
7929
+ 45
7930
+ 18
7931
+ -50
7932
+ -1
7933
+ 48
7934
+ -2
7935
+ 47
7936
+ -16
7937
+ -7
7938
+ 28
7939
+ 4
7940
+ -33
7941
+ -27
7942
+ -22
7943
+ 14
7944
+ 30
7945
+ 38
7946
+ -46
7947
+ -32
7948
+ -19
7949
+ -45
7950
+ 29
7951
+ 32
7952
+ 18
7953
+ -40
7954
+ 34
7955
+ -30
7956
+ -47
7957
+ -44
7958
+ 38
7959
+ -20
7960
+ -3
7961
+ -7
7962
+ 39
7963
+ 41
7964
+ 2
7965
+ -15
7966
+ 39
7967
+ 32
7968
+ 29
7969
+ -5
7970
+ -25
7971
+ 26
7972
+ 15
7973
+ 24
7974
+ 2
7975
+ -6
7976
+ -17
7977
+ 47
7978
+ 21
7979
+ -29
7980
+ 45
7981
+ 33
7982
+ -35
7983
+ 42
7984
+ -2
7985
+ 17
7986
+ -32
7987
+ -26
7988
+ -44
7989
+ -20
7990
+ -32
7991
+ 22
7992
+ -26
7993
+ -19
7994
+ -32
7995
+ 38
7996
+ -29
7997
+ -38
7998
+ -29
7999
+ 28
8000
+ -14
8001
+ -18
8002
+ -1
8003
+ -27
8004
+ -3
8005
+ 2
8006
+ 48
8007
+ -23
8008
+ 30
8009
+ -33
8010
+ 40
8011
+ -43
8012
+ -24
8013
+ -23
8014
+ -7
8015
+ -12
8016
+ 48
8017
+ -38
8018
+ -28
8019
+ 50
8020
+ -7
8021
+ -17
8022
+ -18
8023
+ -16
8024
+ -10
8025
+ 29
8026
+ 11
8027
+ -14
8028
+ 10
8029
+ 15
8030
+ -38
8031
+ -3
8032
+ 16
8033
+ 25
8034
+ -7
8035
+ -8
8036
+ -44
8037
+ -36
8038
+ -39
8039
+ 30
8040
+ -25
8041
+ -2
8042
+ -32
8043
+ -46
8044
+ -8
8045
+ 49
8046
+ 49
8047
+ 1
8048
+ -3
8049
+ 44
8050
+ 8
8051
+ -15
8052
+ -7
8053
+ -41
8054
+ 13
8055
+ 0
8056
+ -16
8057
+ -17
8058
+ -44
8059
+ 11
8060
+ 43
8061
+ -4
8062
+ 39
8063
+ 46
8064
+ -1
8065
+ -19
8066
+ 5
8067
+ 1
8068
+ -38
8069
+ 15
8070
+ 26
8071
+ 24
8072
+ -47
8073
+ -20
8074
+ -27
8075
+ -17
8076
+ 21
8077
+ -6
8078
+ -37
8079
+ 29
8080
+ -35
8081
+ -44
8082
+ -21
8083
+ 10
8084
+ 31
8085
+ 10
8086
+ 34
8087
+ 38
8088
+ 49
8089
+ 15
8090
+ -47
8091
+ 45
8092
+ 40
8093
+ -33
8094
+ 32
8095
+ 39
8096
+ -49
8097
+ 2
8098
+ -13
8099
+ -28
8100
+ -35
8101
+ 49
8102
+ -20
8103
+ -19
8104
+ -46
8105
+ 12
8106
+ 41
8107
+ 14
8108
+ 16
8109
+ 37
8110
+ 16
8111
+ 50
8112
+ 50
8113
+ 15
8114
+ -24
8115
+ -49
8116
+ -20
8117
+ -42
8118
+ -40
8119
+ 23
8120
+ -34
8121
+ 49
8122
+ 22
8123
+ 26
8124
+ -48
8125
+ 46
8126
+ -10
8127
+ -8
8128
+ 2
8129
+ -29
8130
+ 32
8131
+ 10
8132
+ 31
8133
+ 44
8134
+ -19
8135
+ 29
8136
+ 30
8137
+ -31
8138
+ 48
8139
+ 38
8140
+ -48
8141
+ 17
8142
+ -3
8143
+ 36
8144
+ -16
8145
+ -18
8146
+ 8
8147
+ 14
8148
+ 24
8149
+ 26
8150
+ 4
8151
+ 34
8152
+ 45
8153
+ 22
8154
+ -30
8155
+ -38
8156
+ 11
8157
+ -37
8158
+ 45
8159
+ -18
8160
+ -21
8161
+ -25
8162
+ 30
8163
+ -45
8164
+ -16
8165
+ -49
8166
+ -3
8167
+ 31
8168
+ 25
8169
+ 3
8170
+ -22
8171
+ 20
8172
+ 50
8173
+ 32
8174
+ -47
8175
+ -41
8176
+ 46
8177
+ -2
8178
+ -23
8179
+ -3
8180
+ -28
8181
+ 28
8182
+ 38
8183
+ 38
8184
+ 21
8185
+ 0
8186
+ 6
8187
+ -20
8188
+ -49
8189
+ 13
8190
+ 17
8191
+ 35
8192
+ 23
8193
+ -19
8194
+ -45
8195
+ 45
8196
+ 5
8197
+ -26
8198
+ -34
8199
+ 32
8200
+ -41
8201
+ -45
8202
+ 6
8203
+ 9
8204
+ -23
8205
+ 10
8206
+ 11
8207
+ -38
8208
+ 0
8209
+ 31
8210
+ -4
8211
+ -3
8212
+ -28
8213
+ 26
8214
+ 13
8215
+ -12
8216
+ 41
8217
+ -10
8218
+ -17
8219
+ 19
8220
+ -7
8221
+ -8
8222
+ 25
8223
+ -50
8224
+ -32
8225
+ -30
8226
+ -42
8227
+ -39
8228
+ -1
8229
+ -30
8230
+ -2
8231
+ -37
8232
+ -25
8233
+ 16
8234
+ -27
8235
+ -16
8236
+ -13
8237
+ -43
8238
+ -36
8239
+ -14
8240
+ 45
8241
+ -37
8242
+ -50
8243
+ -30
8244
+ 22
8245
+ -6
8246
+ -6
8247
+ -10
8248
+ -11
8249
+ -31
8250
+ -5
8251
+ 30
8252
+ -31
8253
+ 25
8254
+ -43
8255
+ 33
8256
+ 46
8257
+ 3
8258
+ -13
8259
+ 32
8260
+ -34
8261
+ -10
8262
+ -19
8263
+ -45
8264
+ -3
8265
+ 27
8266
+ 13
8267
+ -35
8268
+ -50
8269
+ 30
8270
+ -27
8271
+ -38
8272
+ 11
8273
+ -43
8274
+ 7
8275
+ -23
8276
+ 40
8277
+ -1
8278
+ -13
8279
+ -3
8280
+ -40
8281
+ 1
8282
+ -38
8283
+ 16
8284
+ 22
8285
+ 1
8286
+ -18
8287
+ 17
8288
+ 26
8289
+ 2
8290
+ 35
8291
+ -23
8292
+ -32
8293
+ 48
8294
+ 17
8295
+ -49
8296
+ -3
8297
+ -40
8298
+ 34
8299
+ 9
8300
+ 11
8301
+ 3
8302
+ 8
8303
+ 5
8304
+ 11
8305
+ -47
8306
+ 20
8307
+ 4
8308
+ 28
8309
+ -20
8310
+ 13
8311
+ 32
8312
+ -41
8313
+ 3
8314
+ 33
8315
+ 41
8316
+ 32
8317
+ 23
8318
+ -28
8319
+ -31
8320
+ -1
8321
+ 10
8322
+ 13
8323
+ 24
8324
+ -12
8325
+ -2
8326
+ 30
8327
+ -9
2018/quals/interception.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Consider an N-degree polynomial, expressed as follows:
2
+
3
+ **P**N * xN \+ **P**N-1 * xN-1 \+ ... + **P**1 * x1 \+ **P**0 * x0
4
+
5
+ You'd like to find all of the polynomial's x-intercepts — in other words, all
6
+ distinct real values of x for which the expression evaluates to 0.
7
+
8
+ Unfortunately, the order of operations has been reversed: Addition (**+**) now
9
+ has the highest precedence, followed by multiplication (*****), followed by
10
+ exponentiation (**^**). In other words, an expression like ab \+ c * d should
11
+ be evaluated as a((b+c)*d). For our purposes, exponentiation is right-
12
+ associative (in other words, abc = a(bc)), and 00 = 1. The unary negation
13
+ operator still has the highest precedence, so the expression -2-3 * -1 + -2
14
+ evaluates to -2(-3 * (-1 + -2)) = -29 = -512.
15
+
16
+ ### Input
17
+
18
+ Input begins with an integer **T**, the number of polynomials. For each
19
+ polynomial, there is first a line containing the integer **N**, the degree of
20
+ the polynomial. Then, **N**+1 lines follow. The _i_th of these lines contains
21
+ the integer **Pi-1**.
22
+
23
+ ### Output
24
+
25
+ For the _i_th polynomial, print a line containing "Case #_i_: **K**", where
26
+ **K** is the number of distinct real values of **x** for which the polynomial
27
+ evaluates to 0. Then print **K** lines, each containing such a value of **x**,
28
+ in increasing order.
29
+
30
+ Absolute and relative errors of up to 10-6 will be ignored in the x-intercepts
31
+ you output. However, **K** must be exactly correct.
32
+
33
+ ### Constraints
34
+
35
+ 1 ≤ **T** ≤ 200
36
+ 0 ≤ **N** ≤ 50
37
+ -50 ≤ **Pi** ≤ 50
38
+ **PN** ≠ 0
39
+
40
+ ### Explanation of Sample
41
+
42
+ In the first case, the polynomial is 1 * x1 \+ 1 * x0. With the order of
43
+ operations reversed, this is evaluated as (1 * x)(((1 + 1) * x)0), which is
44
+ equal to 0 only when x = 0.
45
+
46
+ In the second case, the polynomial does not evaluate to 0 for any real value
47
+ x.
48
+
2018/quals/interception.out ADDED
@@ -0,0 +1,462 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: 1
2
+ 0
3
+ Case #2: 0
4
+ Case #3: 0
5
+ Case #4: 1
6
+ 0
7
+ Case #5: 1
8
+ 0
9
+ Case #6: 1
10
+ 0
11
+ Case #7: 0
12
+ Case #8: 1
13
+ 0
14
+ Case #9: 1
15
+ 0
16
+ Case #10: 1
17
+ 0
18
+ Case #11: 1
19
+ 0
20
+ Case #12: 1
21
+ 0
22
+ Case #13: 1
23
+ 0
24
+ Case #14: 0
25
+ Case #15: 0
26
+ Case #16: 1
27
+ 0
28
+ Case #17: 0
29
+ Case #18: 1
30
+ 0
31
+ Case #19: 0
32
+ Case #20: 0
33
+ Case #21: 1
34
+ 0
35
+ Case #22: 1
36
+ 0
37
+ Case #23: 1
38
+ 0
39
+ Case #24: 1
40
+ 0
41
+ Case #25: 0
42
+ Case #26: 1
43
+ 0
44
+ Case #27: 0
45
+ Case #28: 1
46
+ 0
47
+ Case #29: 1
48
+ 0
49
+ Case #30: 0
50
+ Case #31: 0
51
+ Case #32: 1
52
+ 0
53
+ Case #33: 1
54
+ 0
55
+ Case #34: 0
56
+ Case #35: 0
57
+ Case #36: 1
58
+ 0
59
+ Case #37: 0
60
+ Case #38: 0
61
+ Case #39: 1
62
+ 0.0
63
+ Case #40: 1
64
+ 0
65
+ Case #41: 0
66
+ Case #42: 0
67
+ Case #43: 1
68
+ 0
69
+ Case #44: 1
70
+ 0
71
+ Case #45: 1
72
+ 0
73
+ Case #46: 0
74
+ Case #47: 1
75
+ 0
76
+ Case #48: 1
77
+ 0
78
+ Case #49: 0
79
+ Case #50: 0
80
+ Case #51: 0
81
+ Case #52: 1
82
+ 0
83
+ Case #53: 0
84
+ Case #54: 1
85
+ 0
86
+ Case #55: 1
87
+ 0
88
+ Case #56: 0
89
+ Case #57: 0
90
+ Case #58: 0
91
+ Case #59: 0
92
+ Case #60: 1
93
+ 0
94
+ Case #61: 1
95
+ 0
96
+ Case #62: 0
97
+ Case #63: 0
98
+ Case #64: 0
99
+ Case #65: 1
100
+ 0
101
+ Case #66: 0
102
+ Case #67: 1
103
+ 0
104
+ Case #68: 1
105
+ 0
106
+ Case #69: 1
107
+ 0
108
+ Case #70: 1
109
+ 0
110
+ Case #71: 1
111
+ 0
112
+ Case #72: 0
113
+ Case #73: 1
114
+ 0
115
+ Case #74: 0
116
+ Case #75: 1
117
+ 0
118
+ Case #76: 1
119
+ 0
120
+ Case #77: 1
121
+ 0
122
+ Case #78: 1
123
+ 0
124
+ Case #79: 0
125
+ Case #80: 0
126
+ Case #81: 0
127
+ Case #82: 1
128
+ 0
129
+ Case #83: 1
130
+ 0
131
+ Case #84: 1
132
+ 0
133
+ Case #85: 0
134
+ Case #86: 1
135
+ 0
136
+ Case #87: 1
137
+ 0
138
+ Case #88: 1
139
+ 0
140
+ Case #89: 1
141
+ 0
142
+ Case #90: 0
143
+ Case #91: 1
144
+ 0
145
+ Case #92: 0
146
+ Case #93: 1
147
+ 0
148
+ Case #94: 1
149
+ 0
150
+ Case #95: 1
151
+ 0
152
+ Case #96: 1
153
+ 0
154
+ Case #97: 1
155
+ 0
156
+ Case #98: 1
157
+ 0
158
+ Case #99: 1
159
+ 0
160
+ Case #100: 1
161
+ 0
162
+ Case #101: 1
163
+ 0
164
+ Case #102: 1
165
+ 0
166
+ Case #103: 1
167
+ 0
168
+ Case #104: 1
169
+ 0
170
+ Case #105: 0
171
+ Case #106: 1
172
+ 0
173
+ Case #107: 0
174
+ Case #108: 1
175
+ 0
176
+ Case #109: 1
177
+ 0
178
+ Case #110: 0
179
+ Case #111: 0
180
+ Case #112: 0
181
+ Case #113: 0
182
+ Case #114: 0
183
+ Case #115: 0
184
+ Case #116: 0
185
+ Case #117: 0
186
+ Case #118: 0
187
+ Case #119: 1
188
+ 0
189
+ Case #120: 1
190
+ 0
191
+ Case #121: 0
192
+ Case #122: 0
193
+ Case #123: 1
194
+ 0
195
+ Case #124: 1
196
+ 0
197
+ Case #125: 0
198
+ Case #126: 1
199
+ 0
200
+ Case #127: 0
201
+ Case #128: 0
202
+ Case #129: 0
203
+ Case #130: 1
204
+ 0
205
+ Case #131: 1
206
+ 0
207
+ Case #132: 1
208
+ 0
209
+ Case #133: 1
210
+ 0
211
+ Case #134: 0
212
+ Case #135: 0
213
+ Case #136: 0
214
+ Case #137: 1
215
+ 0
216
+ Case #138: 0
217
+ Case #139: 0
218
+ Case #140: 1
219
+ 0
220
+ Case #141: 1
221
+ 0
222
+ Case #142: 0
223
+ Case #143: 1
224
+ 0
225
+ Case #144: 0
226
+ Case #145: 0
227
+ Case #146: 0
228
+ Case #147: 0
229
+ Case #148: 1
230
+ 0
231
+ Case #149: 0
232
+ Case #150: 1
233
+ 0
234
+ Case #151: 1
235
+ 0
236
+ Case #152: 1
237
+ 0
238
+ Case #153: 0
239
+ Case #154: 1
240
+ 0
241
+ Case #155: 1
242
+ 0
243
+ Case #156: 1
244
+ 0
245
+ Case #157: 1
246
+ 0
247
+ Case #158: 1
248
+ 0
249
+ Case #159: 0
250
+ Case #160: 0
251
+ Case #161: 0
252
+ Case #162: 1
253
+ 0
254
+ Case #163: 0
255
+ Case #164: 0
256
+ Case #165: 1
257
+ 0
258
+ Case #166: 0
259
+ Case #167: 1
260
+ 0
261
+ Case #168: 0
262
+ Case #169: 1
263
+ 0
264
+ Case #170: 0
265
+ Case #171: 1
266
+ 0
267
+ Case #172: 0
268
+ Case #173: 1
269
+ 0
270
+ Case #174: 1
271
+ 0
272
+ Case #175: 1
273
+ 0
274
+ Case #176: 1
275
+ 0
276
+ Case #177: 1
277
+ 0
278
+ Case #178: 0
279
+ Case #179: 1
280
+ 0
281
+ Case #180: 0
282
+ Case #181: 1
283
+ 0
284
+ Case #182: 0
285
+ Case #183: 0
286
+ Case #184: 0
287
+ Case #185: 0
288
+ Case #186: 0
289
+ Case #187: 1
290
+ 0
291
+ Case #188: 1
292
+ 0
293
+ Case #189: 1
294
+ 0
295
+ Case #190: 1
296
+ 0
297
+ Case #191: 0
298
+ Case #192: 0
299
+ Case #193: 0
300
+ Case #194: 1
301
+ 0
302
+ Case #195: 0
303
+ Case #196: 1
304
+ 0
305
+ Case #197: 0
306
+ Case #198: 1
307
+ 0
308
+ Case #199: 0
309
+ Case #200: 0
310
+ Case #201: 1
311
+ 0
312
+ Case #202: 0
313
+ Case #203: 1
314
+ 0
315
+ Case #204: 1
316
+ 0
317
+ Case #205: 0
318
+ Case #206: 1
319
+ 0
320
+ Case #207: 0
321
+ Case #208: 0
322
+ Case #209: 1
323
+ 0
324
+ Case #210: 0
325
+ Case #211: 0
326
+ Case #212: 1
327
+ 0
328
+ Case #213: 0
329
+ Case #214: 1
330
+ 0
331
+ Case #215: 1
332
+ 0
333
+ Case #216: 1
334
+ 0
335
+ Case #217: 0
336
+ Case #218: 1
337
+ 0
338
+ Case #219: 0
339
+ Case #220: 0
340
+ Case #221: 1
341
+ 0
342
+ Case #222: 0
343
+ Case #223: 0
344
+ Case #224: 0
345
+ Case #225: 0
346
+ Case #226: 0
347
+ Case #227: 1
348
+ 0
349
+ Case #228: 1
350
+ 0
351
+ Case #229: 0
352
+ Case #230: 0
353
+ Case #231: 0
354
+ Case #232: 1
355
+ 0
356
+ Case #233: 1
357
+ 0
358
+ Case #234: 1
359
+ 0
360
+ Case #235: 0
361
+ Case #236: 1
362
+ 0
363
+ Case #237: 1
364
+ 0
365
+ Case #238: 1
366
+ 0
367
+ Case #239: 1
368
+ 0
369
+ Case #240: 1
370
+ 0
371
+ Case #241: 1
372
+ 0
373
+ Case #242: 0
374
+ Case #243: 0
375
+ Case #244: 0
376
+ Case #245: 1
377
+ 0
378
+ Case #246: 0
379
+ Case #247: 1
380
+ 0
381
+ Case #248: 0
382
+ Case #249: 0
383
+ Case #250: 0
384
+ Case #251: 1
385
+ 0
386
+ Case #252: 0
387
+ Case #253: 0
388
+ Case #254: 1
389
+ 0
390
+ Case #255: 1
391
+ 0
392
+ Case #256: 1
393
+ 0
394
+ Case #257: 1
395
+ 0
396
+ Case #258: 1
397
+ 0
398
+ Case #259: 0
399
+ Case #260: 0
400
+ Case #261: 0
401
+ Case #262: 1
402
+ 0
403
+ Case #263: 1
404
+ 0
405
+ Case #264: 1
406
+ 0
407
+ Case #265: 1
408
+ 0
409
+ Case #266: 1
410
+ 0
411
+ Case #267: 0
412
+ Case #268: 0
413
+ Case #269: 0
414
+ Case #270: 1
415
+ 0
416
+ Case #271: 0
417
+ Case #272: 1
418
+ 0
419
+ Case #273: 1
420
+ 0
421
+ Case #274: 0
422
+ Case #275: 1
423
+ 0
424
+ Case #276: 1
425
+ 0
426
+ Case #277: 0
427
+ Case #278: 1
428
+ 0
429
+ Case #279: 0
430
+ Case #280: 0
431
+ Case #281: 0
432
+ Case #282: 1
433
+ 0
434
+ Case #283: 0
435
+ Case #284: 1
436
+ 0
437
+ Case #285: 1
438
+ 0
439
+ Case #286: 0
440
+ Case #287: 1
441
+ 0
442
+ Case #288: 0
443
+ Case #289: 0
444
+ Case #290: 1
445
+ 0
446
+ Case #291: 0
447
+ Case #292: 1
448
+ 0
449
+ Case #293: 1
450
+ 0
451
+ Case #294: 0
452
+ Case #295: 1
453
+ 0
454
+ Case #296: 1
455
+ 0
456
+ Case #297: 0
457
+ Case #298: 0
458
+ Case #299: 0
459
+ Case #300: 0
460
+ Case #301: 1
461
+ 0
462
+ Case #302: 0
2018/quals/tourist.cpp ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Tourist
2
+ // Solution by Jacob Plachta
3
+
4
+ #define DEBUG 0
5
+
6
+ #include <algorithm>
7
+ #include <functional>
8
+ #include <numeric>
9
+ #include <iostream>
10
+ #include <iomanip>
11
+ #include <cstdio>
12
+ #include <cmath>
13
+ #include <complex>
14
+ #include <cstdlib>
15
+ #include <ctime>
16
+ #include <cstring>
17
+ #include <cassert>
18
+ #include <string>
19
+ #include <vector>
20
+ #include <list>
21
+ #include <map>
22
+ #include <set>
23
+ #include <deque>
24
+ #include <queue>
25
+ #include <stack>
26
+ #include <bitset>
27
+ #include <sstream>
28
+ using namespace std;
29
+
30
+ #define LL long long
31
+ #define LD long double
32
+ #define PR pair<int,int>
33
+
34
+ #define Fox(i,n) for (i=0; i<n; i++)
35
+ #define Fox1(i,n) for (i=1; i<=n; i++)
36
+ #define FoxI(i,a,b) for (i=a; i<=b; i++)
37
+ #define FoxR(i,n) for (i=(n)-1; i>=0; i--)
38
+ #define FoxR1(i,n) for (i=n; i>0; i--)
39
+ #define FoxRI(i,a,b) for (i=b; i>=a; i--)
40
+ #define Foxen(i,s) for (i=s.begin(); i!=s.end(); i++)
41
+ #define Min(a,b) a=min(a,b)
42
+ #define Max(a,b) a=max(a,b)
43
+ #define Sz(s) int((s).size())
44
+ #define All(s) (s).begin(),(s).end()
45
+ #define Fill(s,v) memset(s,v,sizeof(s))
46
+ #define pb push_back
47
+ #define mp make_pair
48
+ #define x first
49
+ #define y second
50
+
51
+ template<typename T> T Abs(T x) { return(x<0 ? -x : x); }
52
+ template<typename T> T Sqr(T x) { return(x*x); }
53
+ string plural(string s) { return(Sz(s) && s[Sz(s)-1]=='x' ? s+"en" : s+"s"); }
54
+
55
+ const int INF = (int)1e9;
56
+ const LD EPS = 1e-12;
57
+ const LD PI = acos(-1.0);
58
+
59
+ #if DEBUG
60
+ #define GETCHAR getchar
61
+ #else
62
+ #define GETCHAR getchar_unlocked
63
+ #endif
64
+
65
+ bool Read(int &x)
66
+ {
67
+ char c,r=0,n=0;
68
+ x=0;
69
+ for(;;)
70
+ {
71
+ c=GETCHAR();
72
+ if ((c<0) && (!r))
73
+ return(0);
74
+ if ((c=='-') && (!r))
75
+ n=1;
76
+ else
77
+ if ((c>='0') && (c<='9'))
78
+ x=x*10+c-'0',r=1;
79
+ else
80
+ if (r)
81
+ break;
82
+ }
83
+ if (n)
84
+ x=-x;
85
+ return(1);
86
+ }
87
+
88
+ int main()
89
+ {
90
+ if (DEBUG)
91
+ freopen("in.txt","r",stdin);
92
+ // vars
93
+ int T,t;
94
+ int N,K;
95
+ LL V;
96
+ int i,j;
97
+ char A[50][21];
98
+ int vis[50];
99
+ // testcase loop
100
+ Read(T);
101
+ Fox1(t,T)
102
+ {
103
+ // input
104
+ scanf("%d%d%lld",&N,&K,&V);
105
+ Fox(i,N)
106
+ scanf("%s",&A[i]);
107
+ // find visited attractions
108
+ i=K*(V-1)%N;
109
+ Fox(j,K)
110
+ vis[j]=(i+j)%N;
111
+ sort(vis,vis+K);
112
+ // output
113
+ printf("Case #%d:",t);
114
+ Fox(i,K)
115
+ printf(" %s",A[vis[i]]);
116
+ printf("\n");
117
+ }
118
+ return(0);
119
+ }
2018/quals/tourist.html ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>
2
+ The Facebook campus has <strong>N</strong> different attractions, numbered from 1 to <strong>N</strong> in decreasing order of popularity.
3
+ The name of the <em>i</em>th attraction is <strong>A<sub>i</sub></strong>, a unique, non-empty string consisting of at most 20 characters. Each character is either a lowercase letter ("a".."z"), uppercase letter ("A".."Z"), or digit ("0".."9").
4
+ </p>
5
+
6
+ <p>
7
+ Alex enjoys visiting the campus repeatedly for tours (including the free food!). Each time he visits, he has time to see exactly <strong>K</strong> of the attractions.
8
+ To decide which <strong>K</strong> he'll see, he sorts the <strong>N</strong> attractions in non-decreasing order of how many times he's already seen them before,
9
+ breaking ties in decreasing order of popularity, and then chooses the first <strong>K</strong> attractions in the sorted list.
10
+ In other words, he prioritizes seeing attractions which he's seen the fewest number of times previously,
11
+ but also opts to see the most popular attractions out of the ones he's seen an equal number of times.
12
+ </p>
13
+
14
+ <p>
15
+ Alex has visited the Facebook campus <strong>V</strong>-1 separate times already, and is about to go for his <strong>V</strong>th visit.
16
+ Given that he's always followed the rules stated above, and that he'll continue to, he'd like to determine which <strong>K</strong> attractions he'll see on his <strong>V</strong>th visit.
17
+ He'd like to list them in decreasing order of popularity (in other words, in the same relative order as they appear in the given list of all <strong>N</strong> attractions).
18
+ </p>
19
+
20
+
21
+ <h3>Input</h3>
22
+
23
+ <p>
24
+ Input begins with an integer <strong>T</strong>, the number of campuses.
25
+ For each campus, there is first a line containing the space-separated integers <strong>N</strong>, <strong>K</strong>, and <strong>V</strong>.
26
+ Then, <strong>N</strong> lines follow. The <em>i</em>th of these lines contains the string <strong>A<sub>i</sub></strong>.
27
+ </p>
28
+
29
+
30
+ <h3>Output</h3>
31
+
32
+ <p>
33
+ For the <em>i</em>th campus, print a line containing "Case #<em>i</em>: "
34
+ followed by <strong>K</strong> space-separated strings, the names of the attractions that Alex sees on his <strong>V</strong>th visit,
35
+ in decreasing order of popularity.
36
+ </p>
37
+
38
+
39
+ <h3>Constraints</h3>
40
+
41
+ <p>
42
+ 1 &le; <strong>T</strong> &le; 80 <br />
43
+ 1 &le; <strong>K</strong> &le; <strong>N</strong> &le; 50 <br />
44
+ 1 &le; <strong>V</strong> &le; 10<sup>12</sup> <br />
45
+ </p>
46
+
47
+
48
+ <h3>Explanation of Sample</h3>
49
+
50
+ <p>
51
+ In the first case, Alex saw the LikeSign on his first visit and the Arcade on his second visit. On his third visit he sees the SweetStop as its the most popular of the attractions he hasn't yet seen.
52
+ </p>
53
+
54
+ <p>
55
+ In the third and fourth cases, Alex sees {LikeSign, Arcade, SweetStop} on his first visit, then {LikeSign, Arcade, SwagStore}, then {LikeSign, SweetStop, SwagStore}.
56
+ </p>
57
+
2018/quals/tourist.in ADDED
@@ -0,0 +1,3871 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 156
2
+ 49 47 350138265919
3
+ HotfixBar
4
+ RainbowStairs
5
+ Sol
6
+ SweetStop
7
+ CafeEpic
8
+ LivingTheDream
9
+ ZucksOffice
10
+ TuringInDominoes
11
+ OculusDemoLab
12
+ LightningBolts
13
+ NailPolishRoomBlock
14
+ DentalOffice
15
+ Nanokitchen
16
+ PhilzCoffee
17
+ SwagStore
18
+ BahnAppetit
19
+ FreshOrangeJuice
20
+ FoxGazebo
21
+ VerveCoffee
22
+ HackerSquare
23
+ Ballpit
24
+ ShuttlePlatform
25
+ FakeCrosswalk
26
+ BurgerShack
27
+ TransportationHub
28
+ FukiSushiInOldenDays
29
+ ColdBrewMachine
30
+ PopUpShop
31
+ SonOfPingAndPong
32
+ Harvest
33
+ BlueBottle
34
+ ZucksOldOffice
35
+ MPK20Roof
36
+ ChosHawkerCenter
37
+ TechVendingMachine
38
+ SugarShack
39
+ WoodenSculpture
40
+ FoxPainting
41
+ Arcade
42
+ Helpdesk
43
+ BridgeClub
44
+ ConstitutionDeli
45
+ Microkitchen
46
+ SaintFrank
47
+ HalalTruck
48
+ LateHarvest
49
+ LikeSign
50
+ MamaPennys
51
+ WallOfPhones
52
+ 36 3 225802032479
53
+ LateHarvest
54
+ WallOfPhones
55
+ TransportationHub
56
+ BurgerShack
57
+ Sol
58
+ MamaPennys
59
+ Ballpit
60
+ TechVendingMachine
61
+ ZucksOffice
62
+ HalalTruck
63
+ Arcade
64
+ OculusDemoLab
65
+ BahnAppetit
66
+ HackerSquare
67
+ FoxGazebo
68
+ ShuttlePlatform
69
+ ConstitutionDeli
70
+ Harvest
71
+ LikeSign
72
+ SugarShack
73
+ SwagStore
74
+ PopUpShop
75
+ FukiSushiInOldenDays
76
+ RainbowStairs
77
+ ChosHawkerCenter
78
+ FoxPainting
79
+ WoodenSculpture
80
+ TuringInDominoes
81
+ BlueBottle
82
+ FullCircle
83
+ CafeEpic
84
+ SonOfPingAndPong
85
+ SweetStop
86
+ FakeCrosswalk
87
+ BridgeClub
88
+ LivingTheDream
89
+ 32 5 244436814629
90
+ BurgerShack
91
+ HalalTruck
92
+ BlueBottle
93
+ ColdBrewMachine
94
+ FoxPainting
95
+ SugarShack
96
+ HotfixBar
97
+ SweetStop
98
+ Helpdesk
99
+ ZucksOffice
100
+ BridgeClub
101
+ FukiSushiInOldenDays
102
+ LateHarvest
103
+ ZucksOldOffice
104
+ ChosHawkerCenter
105
+ ShuttlePlatform
106
+ BahnAppetit
107
+ Harvest
108
+ Nanokitchen
109
+ Arcade
110
+ LightningBolts
111
+ Ballpit
112
+ PopUpShop
113
+ TuringInDominoes
114
+ VerveCoffee
115
+ MPK20Roof
116
+ ConstitutionDeli
117
+ LikeSign
118
+ CafeEpic
119
+ OculusDemoLab
120
+ FoxGazebo
121
+ PhilzCoffee
122
+ 42 41 468608570600
123
+ RainbowStairs
124
+ WallOfPhones
125
+ FoxGazebo
126
+ Helpdesk
127
+ Arcade
128
+ Harvest
129
+ NailPolishRoomBlock
130
+ FullCircle
131
+ PopUpShop
132
+ OculusDemoLab
133
+ SaintFrank
134
+ MamaPennys
135
+ Sol
136
+ FoxPainting
137
+ HalalTruck
138
+ LateHarvest
139
+ FakeCrosswalk
140
+ SugarShack
141
+ BlueBottle
142
+ SweetStop
143
+ TuringInDominoes
144
+ CafeEpic
145
+ LivingTheDream
146
+ DentalOffice
147
+ ZucksOffice
148
+ SonOfPingAndPong
149
+ Nanokitchen
150
+ ColdBrewMachine
151
+ MPK20Roof
152
+ WoodenSculpture
153
+ PhilzCoffee
154
+ BahnAppetit
155
+ SwagStore
156
+ FreshOrangeJuice
157
+ ConstitutionDeli
158
+ ShuttlePlatform
159
+ LightningBolts
160
+ ZucksOldOffice
161
+ LikeSign
162
+ TechVendingMachine
163
+ BurgerShack
164
+ Ballpit
165
+ 20 5 829891652384
166
+ PhilzCoffee
167
+ VerveCoffee
168
+ Sol
169
+ PopUpShop
170
+ Arcade
171
+ MPK20Roof
172
+ HackerSquare
173
+ FoxGazebo
174
+ ConstitutionDeli
175
+ RainbowStairs
176
+ FakeCrosswalk
177
+ LikeSign
178
+ ChosHawkerCenter
179
+ TechVendingMachine
180
+ TransportationHub
181
+ FullCircle
182
+ FukiSushiInOldenDays
183
+ WallOfPhones
184
+ NailPolishRoomBlock
185
+ Ballpit
186
+ 13 4 18421069720
187
+ WoodenSculpture
188
+ MPK20Roof
189
+ Harvest
190
+ Nanokitchen
191
+ Arcade
192
+ ColdBrewMachine
193
+ Helpdesk
194
+ RainbowStairs
195
+ ChosHawkerCenter
196
+ LivingTheDream
197
+ VerveCoffee
198
+ FukiSushiInOldenDays
199
+ WallOfPhones
200
+ 9 1 323147012697
201
+ OculusDemoLab
202
+ FoxGazebo
203
+ ChosHawkerCenter
204
+ ConstitutionDeli
205
+ ShuttlePlatform
206
+ Microkitchen
207
+ Harvest
208
+ NailPolishRoomBlock
209
+ PopUpShop
210
+ 18 4 716739244704
211
+ MPK20Roof
212
+ FoxPainting
213
+ LivingTheDream
214
+ SaintFrank
215
+ TransportationHub
216
+ ShuttlePlatform
217
+ RainbowStairs
218
+ FullCircle
219
+ PhilzCoffee
220
+ OculusDemoLab
221
+ HackerSquare
222
+ Nanokitchen
223
+ Sol
224
+ FakeCrosswalk
225
+ VerveCoffee
226
+ LightningBolts
227
+ BlueBottle
228
+ SwagStore
229
+ 50 1 2639726622
230
+ FakeCrosswalk
231
+ ZucksOffice
232
+ DentalOffice
233
+ BurgerShack
234
+ Ballpit
235
+ NailPolishRoomBlock
236
+ Helpdesk
237
+ WallOfPhones
238
+ TransportationHub
239
+ PopUpShop
240
+ FreshOrangeJuice
241
+ SaintFrank
242
+ MamaPennys
243
+ SonOfPingAndPong
244
+ SweetStop
245
+ VerveCoffee
246
+ HalalTruck
247
+ Nanokitchen
248
+ LightningBolts
249
+ ZucksOldOffice
250
+ TuringInDominoes
251
+ ShuttlePlatform
252
+ BlueBottle
253
+ BahnAppetit
254
+ LivingTheDream
255
+ Arcade
256
+ ConstitutionDeli
257
+ BridgeClub
258
+ OculusDemoLab
259
+ FoxPainting
260
+ FoxGazebo
261
+ HotfixBar
262
+ Microkitchen
263
+ FullCircle
264
+ RainbowStairs
265
+ ChosHawkerCenter
266
+ WoodenSculpture
267
+ Harvest
268
+ Sol
269
+ LikeSign
270
+ TechVendingMachine
271
+ SwagStore
272
+ PhilzCoffee
273
+ LateHarvest
274
+ FukiSushiInOldenDays
275
+ MPK20Roof
276
+ SugarShack
277
+ HackerSquare
278
+ ColdBrewMachine
279
+ CafeEpic
280
+ 8 6 814135220453
281
+ FoxPainting
282
+ BahnAppetit
283
+ SweetStop
284
+ LightningBolts
285
+ ChosHawkerCenter
286
+ ZucksOldOffice
287
+ TransportationHub
288
+ CafeEpic
289
+ 22 16 898110720203
290
+ SugarShack
291
+ FreshOrangeJuice
292
+ RainbowStairs
293
+ Ballpit
294
+ MamaPennys
295
+ SwagStore
296
+ LightningBolts
297
+ FullCircle
298
+ PhilzCoffee
299
+ Harvest
300
+ HackerSquare
301
+ TransportationHub
302
+ ShuttlePlatform
303
+ FoxGazebo
304
+ NailPolishRoomBlock
305
+ WallOfPhones
306
+ BlueBottle
307
+ PopUpShop
308
+ LikeSign
309
+ HotfixBar
310
+ WoodenSculpture
311
+ Helpdesk
312
+ 15 6 312735529061
313
+ FullCircle
314
+ Sol
315
+ MPK20Roof
316
+ Arcade
317
+ FoxPainting
318
+ HotfixBar
319
+ TuringInDominoes
320
+ BurgerShack
321
+ ZucksOldOffice
322
+ BlueBottle
323
+ LightningBolts
324
+ WallOfPhones
325
+ SwagStore
326
+ FukiSushiInOldenDays
327
+ ColdBrewMachine
328
+ 30 20 69311636468
329
+ ShuttlePlatform
330
+ NailPolishRoomBlock
331
+ LightningBolts
332
+ MamaPennys
333
+ Microkitchen
334
+ HalalTruck
335
+ CafeEpic
336
+ BahnAppetit
337
+ PhilzCoffee
338
+ SaintFrank
339
+ BlueBottle
340
+ MPK20Roof
341
+ DentalOffice
342
+ TechVendingMachine
343
+ ChosHawkerCenter
344
+ FakeCrosswalk
345
+ LivingTheDream
346
+ Nanokitchen
347
+ ConstitutionDeli
348
+ ColdBrewMachine
349
+ BurgerShack
350
+ FoxPainting
351
+ HotfixBar
352
+ FoxGazebo
353
+ HackerSquare
354
+ SwagStore
355
+ LikeSign
356
+ FullCircle
357
+ Arcade
358
+ VerveCoffee
359
+ 37 26 480727048121
360
+ PopUpShop
361
+ Sol
362
+ FoxGazebo
363
+ SaintFrank
364
+ Microkitchen
365
+ FreshOrangeJuice
366
+ LightningBolts
367
+ TransportationHub
368
+ ConstitutionDeli
369
+ TuringInDominoes
370
+ Harvest
371
+ HackerSquare
372
+ NailPolishRoomBlock
373
+ Ballpit
374
+ BlueBottle
375
+ OculusDemoLab
376
+ Nanokitchen
377
+ TechVendingMachine
378
+ BahnAppetit
379
+ VerveCoffee
380
+ HalalTruck
381
+ LivingTheDream
382
+ SugarShack
383
+ FoxPainting
384
+ LateHarvest
385
+ SonOfPingAndPong
386
+ DentalOffice
387
+ HotfixBar
388
+ BridgeClub
389
+ LikeSign
390
+ MamaPennys
391
+ SwagStore
392
+ RainbowStairs
393
+ BurgerShack
394
+ PhilzCoffee
395
+ ChosHawkerCenter
396
+ ZucksOldOffice
397
+ 5 1 571675280016
398
+ LivingTheDream
399
+ Helpdesk
400
+ MPK20Roof
401
+ BurgerShack
402
+ TechVendingMachine
403
+ 11 5 264738177666
404
+ RainbowStairs
405
+ ConstitutionDeli
406
+ ShuttlePlatform
407
+ SaintFrank
408
+ OculusDemoLab
409
+ LikeSign
410
+ DentalOffice
411
+ FakeCrosswalk
412
+ HotfixBar
413
+ ColdBrewMachine
414
+ Ballpit
415
+ 11 3 437165262309
416
+ Microkitchen
417
+ FullCircle
418
+ FoxGazebo
419
+ MPK20Roof
420
+ MamaPennys
421
+ FukiSushiInOldenDays
422
+ FoxPainting
423
+ Arcade
424
+ ChosHawkerCenter
425
+ CafeEpic
426
+ HalalTruck
427
+ 4 3 3
428
+ LikeSign
429
+ Arcade
430
+ SweetStop
431
+ SwagStore
432
+ 46 19 402014839776
433
+ PhilzCoffee
434
+ BahnAppetit
435
+ ZucksOffice
436
+ DentalOffice
437
+ VerveCoffee
438
+ Harvest
439
+ SwagStore
440
+ SaintFrank
441
+ HotfixBar
442
+ Ballpit
443
+ MPK20Roof
444
+ PopUpShop
445
+ ChosHawkerCenter
446
+ HalalTruck
447
+ FoxPainting
448
+ Sol
449
+ LivingTheDream
450
+ SweetStop
451
+ WallOfPhones
452
+ HackerSquare
453
+ LateHarvest
454
+ TuringInDominoes
455
+ LightningBolts
456
+ ColdBrewMachine
457
+ BurgerShack
458
+ Nanokitchen
459
+ ZucksOldOffice
460
+ Arcade
461
+ TransportationHub
462
+ SonOfPingAndPong
463
+ WoodenSculpture
464
+ NailPolishRoomBlock
465
+ BlueBottle
466
+ FreshOrangeJuice
467
+ OculusDemoLab
468
+ SugarShack
469
+ FukiSushiInOldenDays
470
+ TechVendingMachine
471
+ Helpdesk
472
+ ShuttlePlatform
473
+ BridgeClub
474
+ ConstitutionDeli
475
+ FullCircle
476
+ MamaPennys
477
+ Microkitchen
478
+ RainbowStairs
479
+ 35 20 335952941184
480
+ MamaPennys
481
+ MPK20Roof
482
+ SweetStop
483
+ DentalOffice
484
+ TechVendingMachine
485
+ HalalTruck
486
+ WallOfPhones
487
+ WoodenSculpture
488
+ FullCircle
489
+ ShuttlePlatform
490
+ BridgeClub
491
+ ConstitutionDeli
492
+ Harvest
493
+ HotfixBar
494
+ FukiSushiInOldenDays
495
+ Nanokitchen
496
+ PhilzCoffee
497
+ SaintFrank
498
+ VerveCoffee
499
+ LivingTheDream
500
+ FakeCrosswalk
501
+ FoxGazebo
502
+ LikeSign
503
+ FreshOrangeJuice
504
+ BurgerShack
505
+ NailPolishRoomBlock
506
+ SonOfPingAndPong
507
+ FoxPainting
508
+ PopUpShop
509
+ RainbowStairs
510
+ TransportationHub
511
+ ColdBrewMachine
512
+ ZucksOffice
513
+ ZucksOldOffice
514
+ BahnAppetit
515
+ 31 30 320917029836
516
+ MamaPennys
517
+ FakeCrosswalk
518
+ DentalOffice
519
+ NailPolishRoomBlock
520
+ HotfixBar
521
+ Harvest
522
+ ShuttlePlatform
523
+ HackerSquare
524
+ ConstitutionDeli
525
+ BlueBottle
526
+ BridgeClub
527
+ LateHarvest
528
+ VerveCoffee
529
+ SweetStop
530
+ HalalTruck
531
+ SwagStore
532
+ FreshOrangeJuice
533
+ ZucksOldOffice
534
+ FukiSushiInOldenDays
535
+ CafeEpic
536
+ SaintFrank
537
+ Arcade
538
+ MPK20Roof
539
+ FoxPainting
540
+ SugarShack
541
+ ZucksOffice
542
+ FullCircle
543
+ LivingTheDream
544
+ Helpdesk
545
+ WallOfPhones
546
+ RainbowStairs
547
+ 46 21 345843064428
548
+ DentalOffice
549
+ ShuttlePlatform
550
+ ChosHawkerCenter
551
+ WoodenSculpture
552
+ FakeCrosswalk
553
+ VerveCoffee
554
+ Helpdesk
555
+ SwagStore
556
+ FreshOrangeJuice
557
+ HackerSquare
558
+ ZucksOffice
559
+ FoxGazebo
560
+ SaintFrank
561
+ PopUpShop
562
+ FoxPainting
563
+ NailPolishRoomBlock
564
+ LikeSign
565
+ Arcade
566
+ WallOfPhones
567
+ MPK20Roof
568
+ BridgeClub
569
+ FukiSushiInOldenDays
570
+ ConstitutionDeli
571
+ Sol
572
+ TransportationHub
573
+ BlueBottle
574
+ LivingTheDream
575
+ SugarShack
576
+ MamaPennys
577
+ BahnAppetit
578
+ Nanokitchen
579
+ HotfixBar
580
+ LateHarvest
581
+ Microkitchen
582
+ HalalTruck
583
+ BurgerShack
584
+ Ballpit
585
+ OculusDemoLab
586
+ LightningBolts
587
+ Harvest
588
+ FullCircle
589
+ PhilzCoffee
590
+ ZucksOldOffice
591
+ SonOfPingAndPong
592
+ CafeEpic
593
+ RainbowStairs
594
+ 32 17 511387771
595
+ DentalOffice
596
+ MamaPennys
597
+ Microkitchen
598
+ LightningBolts
599
+ ConstitutionDeli
600
+ Harvest
601
+ FakeCrosswalk
602
+ WoodenSculpture
603
+ VerveCoffee
604
+ PhilzCoffee
605
+ CafeEpic
606
+ FukiSushiInOldenDays
607
+ HalalTruck
608
+ ZucksOffice
609
+ RainbowStairs
610
+ FullCircle
611
+ SweetStop
612
+ Helpdesk
613
+ Nanokitchen
614
+ NailPolishRoomBlock
615
+ LikeSign
616
+ TuringInDominoes
617
+ ShuttlePlatform
618
+ BurgerShack
619
+ Sol
620
+ HotfixBar
621
+ SugarShack
622
+ FoxPainting
623
+ Arcade
624
+ LateHarvest
625
+ ColdBrewMachine
626
+ SonOfPingAndPong
627
+ 19 5 600782823432
628
+ Nanokitchen
629
+ HotfixBar
630
+ BridgeClub
631
+ Helpdesk
632
+ ChosHawkerCenter
633
+ SugarShack
634
+ BlueBottle
635
+ LivingTheDream
636
+ OculusDemoLab
637
+ WoodenSculpture
638
+ FakeCrosswalk
639
+ PhilzCoffee
640
+ WallOfPhones
641
+ RainbowStairs
642
+ Arcade
643
+ SwagStore
644
+ ConstitutionDeli
645
+ HackerSquare
646
+ MamaPennys
647
+ 17 11 622732836626
648
+ MPK20Roof
649
+ MamaPennys
650
+ SugarShack
651
+ FoxPainting
652
+ RainbowStairs
653
+ ColdBrewMachine
654
+ BridgeClub
655
+ CafeEpic
656
+ HalalTruck
657
+ VerveCoffee
658
+ ShuttlePlatform
659
+ SaintFrank
660
+ FukiSushiInOldenDays
661
+ PhilzCoffee
662
+ Ballpit
663
+ ZucksOldOffice
664
+ TechVendingMachine
665
+ 35 11 237085957926
666
+ VerveCoffee
667
+ Ballpit
668
+ OculusDemoLab
669
+ SaintFrank
670
+ LivingTheDream
671
+ MamaPennys
672
+ ZucksOldOffice
673
+ FakeCrosswalk
674
+ SweetStop
675
+ MPK20Roof
676
+ FullCircle
677
+ ZucksOffice
678
+ ConstitutionDeli
679
+ HalalTruck
680
+ PhilzCoffee
681
+ RainbowStairs
682
+ LateHarvest
683
+ TuringInDominoes
684
+ ChosHawkerCenter
685
+ Harvest
686
+ LightningBolts
687
+ HotfixBar
688
+ ShuttlePlatform
689
+ FukiSushiInOldenDays
690
+ TransportationHub
691
+ FoxGazebo
692
+ NailPolishRoomBlock
693
+ CafeEpic
694
+ BahnAppetit
695
+ ColdBrewMachine
696
+ SugarShack
697
+ SonOfPingAndPong
698
+ FreshOrangeJuice
699
+ SwagStore
700
+ TechVendingMachine
701
+ 14 2 78049813366
702
+ OculusDemoLab
703
+ ConstitutionDeli
704
+ Helpdesk
705
+ BridgeClub
706
+ WallOfPhones
707
+ ShuttlePlatform
708
+ Ballpit
709
+ BurgerShack
710
+ BlueBottle
711
+ PopUpShop
712
+ HalalTruck
713
+ FukiSushiInOldenDays
714
+ TransportationHub
715
+ SaintFrank
716
+ 2 2 935615485134
717
+ Harvest
718
+ TechVendingMachine
719
+ 46 45 357208609804
720
+ DentalOffice
721
+ Microkitchen
722
+ ZucksOffice
723
+ TechVendingMachine
724
+ Harvest
725
+ PopUpShop
726
+ SonOfPingAndPong
727
+ ConstitutionDeli
728
+ Helpdesk
729
+ TuringInDominoes
730
+ FoxPainting
731
+ ZucksOldOffice
732
+ SweetStop
733
+ MamaPennys
734
+ LikeSign
735
+ TransportationHub
736
+ BlueBottle
737
+ LivingTheDream
738
+ CafeEpic
739
+ WoodenSculpture
740
+ FukiSushiInOldenDays
741
+ FoxGazebo
742
+ SwagStore
743
+ Sol
744
+ SaintFrank
745
+ RainbowStairs
746
+ BurgerShack
747
+ ShuttlePlatform
748
+ BahnAppetit
749
+ Nanokitchen
750
+ LightningBolts
751
+ PhilzCoffee
752
+ Ballpit
753
+ HotfixBar
754
+ ColdBrewMachine
755
+ FakeCrosswalk
756
+ VerveCoffee
757
+ FreshOrangeJuice
758
+ OculusDemoLab
759
+ FullCircle
760
+ MPK20Roof
761
+ LateHarvest
762
+ SugarShack
763
+ WallOfPhones
764
+ ChosHawkerCenter
765
+ NailPolishRoomBlock
766
+ 10 10 212931659497
767
+ RainbowStairs
768
+ LateHarvest
769
+ CafeEpic
770
+ LightningBolts
771
+ SugarShack
772
+ BridgeClub
773
+ ShuttlePlatform
774
+ ChosHawkerCenter
775
+ TransportationHub
776
+ SonOfPingAndPong
777
+ 46 40 70305512031
778
+ OculusDemoLab
779
+ Nanokitchen
780
+ BridgeClub
781
+ FreshOrangeJuice
782
+ LikeSign
783
+ VerveCoffee
784
+ Ballpit
785
+ HotfixBar
786
+ MPK20Roof
787
+ CafeEpic
788
+ LivingTheDream
789
+ TuringInDominoes
790
+ BurgerShack
791
+ DentalOffice
792
+ NailPolishRoomBlock
793
+ Sol
794
+ Harvest
795
+ SonOfPingAndPong
796
+ SwagStore
797
+ FakeCrosswalk
798
+ FoxGazebo
799
+ TechVendingMachine
800
+ FullCircle
801
+ ZucksOldOffice
802
+ ConstitutionDeli
803
+ SugarShack
804
+ PopUpShop
805
+ FukiSushiInOldenDays
806
+ ZucksOffice
807
+ FoxPainting
808
+ BlueBottle
809
+ SweetStop
810
+ MamaPennys
811
+ RainbowStairs
812
+ WallOfPhones
813
+ LightningBolts
814
+ SaintFrank
815
+ ShuttlePlatform
816
+ ChosHawkerCenter
817
+ Arcade
818
+ TransportationHub
819
+ HackerSquare
820
+ WoodenSculpture
821
+ PhilzCoffee
822
+ Microkitchen
823
+ BahnAppetit
824
+ 8 1 311346878822
825
+ FoxPainting
826
+ Ballpit
827
+ BurgerShack
828
+ SaintFrank
829
+ Harvest
830
+ CafeEpic
831
+ SweetStop
832
+ TechVendingMachine
833
+ 47 2 905569989614
834
+ ColdBrewMachine
835
+ DentalOffice
836
+ BlueBottle
837
+ OculusDemoLab
838
+ ConstitutionDeli
839
+ CafeEpic
840
+ LivingTheDream
841
+ PhilzCoffee
842
+ WallOfPhones
843
+ LateHarvest
844
+ WoodenSculpture
845
+ Sol
846
+ HotfixBar
847
+ ShuttlePlatform
848
+ ZucksOffice
849
+ RainbowStairs
850
+ Microkitchen
851
+ Arcade
852
+ HackerSquare
853
+ LightningBolts
854
+ LikeSign
855
+ TransportationHub
856
+ ChosHawkerCenter
857
+ SonOfPingAndPong
858
+ TechVendingMachine
859
+ FoxGazebo
860
+ FullCircle
861
+ SaintFrank
862
+ FoxPainting
863
+ SwagStore
864
+ SweetStop
865
+ ZucksOldOffice
866
+ MamaPennys
867
+ Ballpit
868
+ BahnAppetit
869
+ FukiSushiInOldenDays
870
+ PopUpShop
871
+ Nanokitchen
872
+ Helpdesk
873
+ HalalTruck
874
+ SugarShack
875
+ BurgerShack
876
+ FreshOrangeJuice
877
+ BridgeClub
878
+ NailPolishRoomBlock
879
+ MPK20Roof
880
+ TuringInDominoes
881
+ 3 2 449376594352
882
+ ShuttlePlatform
883
+ BlueBottle
884
+ HalalTruck
885
+ 32 24 770821612839
886
+ ShuttlePlatform
887
+ TuringInDominoes
888
+ FukiSushiInOldenDays
889
+ WoodenSculpture
890
+ TechVendingMachine
891
+ ZucksOffice
892
+ LikeSign
893
+ ZucksOldOffice
894
+ BahnAppetit
895
+ HackerSquare
896
+ FoxGazebo
897
+ Microkitchen
898
+ CafeEpic
899
+ PhilzCoffee
900
+ BridgeClub
901
+ SonOfPingAndPong
902
+ HalalTruck
903
+ Sol
904
+ OculusDemoLab
905
+ RainbowStairs
906
+ LightningBolts
907
+ SugarShack
908
+ FakeCrosswalk
909
+ LateHarvest
910
+ WallOfPhones
911
+ ConstitutionDeli
912
+ HotfixBar
913
+ TransportationHub
914
+ MamaPennys
915
+ Arcade
916
+ Ballpit
917
+ FoxPainting
918
+ 13 7 712705165570
919
+ BridgeClub
920
+ ZucksOldOffice
921
+ FreshOrangeJuice
922
+ BurgerShack
923
+ VerveCoffee
924
+ PopUpShop
925
+ MPK20Roof
926
+ Ballpit
927
+ ConstitutionDeli
928
+ HackerSquare
929
+ Microkitchen
930
+ ColdBrewMachine
931
+ NailPolishRoomBlock
932
+ 34 21 764587011257
933
+ Nanokitchen
934
+ ConstitutionDeli
935
+ SaintFrank
936
+ DentalOffice
937
+ Ballpit
938
+ FullCircle
939
+ BlueBottle
940
+ FakeCrosswalk
941
+ OculusDemoLab
942
+ FoxPainting
943
+ Harvest
944
+ ZucksOldOffice
945
+ BurgerShack
946
+ FreshOrangeJuice
947
+ TransportationHub
948
+ Microkitchen
949
+ ShuttlePlatform
950
+ FukiSushiInOldenDays
951
+ LikeSign
952
+ BahnAppetit
953
+ Helpdesk
954
+ MPK20Roof
955
+ RainbowStairs
956
+ LivingTheDream
957
+ SwagStore
958
+ SugarShack
959
+ NailPolishRoomBlock
960
+ SweetStop
961
+ ColdBrewMachine
962
+ TechVendingMachine
963
+ WallOfPhones
964
+ ChosHawkerCenter
965
+ LateHarvest
966
+ BridgeClub
967
+ 33 11 30390095713
968
+ FukiSushiInOldenDays
969
+ ColdBrewMachine
970
+ FreshOrangeJuice
971
+ CafeEpic
972
+ SwagStore
973
+ Helpdesk
974
+ FullCircle
975
+ MamaPennys
976
+ BahnAppetit
977
+ LateHarvest
978
+ Harvest
979
+ HotfixBar
980
+ TuringInDominoes
981
+ NailPolishRoomBlock
982
+ SugarShack
983
+ ZucksOffice
984
+ TransportationHub
985
+ LightningBolts
986
+ ShuttlePlatform
987
+ SweetStop
988
+ MPK20Roof
989
+ FoxGazebo
990
+ Ballpit
991
+ ZucksOldOffice
992
+ OculusDemoLab
993
+ BurgerShack
994
+ FakeCrosswalk
995
+ RainbowStairs
996
+ FoxPainting
997
+ LivingTheDream
998
+ Sol
999
+ PopUpShop
1000
+ LikeSign
1001
+ 25 25 440194932222
1002
+ Helpdesk
1003
+ NailPolishRoomBlock
1004
+ HalalTruck
1005
+ ChosHawkerCenter
1006
+ BurgerShack
1007
+ LateHarvest
1008
+ SweetStop
1009
+ FukiSushiInOldenDays
1010
+ Nanokitchen
1011
+ SonOfPingAndPong
1012
+ MamaPennys
1013
+ Sol
1014
+ FullCircle
1015
+ PopUpShop
1016
+ VerveCoffee
1017
+ MPK20Roof
1018
+ ShuttlePlatform
1019
+ HackerSquare
1020
+ RainbowStairs
1021
+ SugarShack
1022
+ ColdBrewMachine
1023
+ LivingTheDream
1024
+ WallOfPhones
1025
+ ZucksOldOffice
1026
+ Ballpit
1027
+ 13 9 921550798132
1028
+ WoodenSculpture
1029
+ ColdBrewMachine
1030
+ Ballpit
1031
+ BurgerShack
1032
+ Microkitchen
1033
+ Harvest
1034
+ FukiSushiInOldenDays
1035
+ PopUpShop
1036
+ ShuttlePlatform
1037
+ BahnAppetit
1038
+ NailPolishRoomBlock
1039
+ SwagStore
1040
+ SugarShack
1041
+ 28 22 718708082830
1042
+ ColdBrewMachine
1043
+ ShuttlePlatform
1044
+ MPK20Roof
1045
+ FreshOrangeJuice
1046
+ LightningBolts
1047
+ BahnAppetit
1048
+ WoodenSculpture
1049
+ TransportationHub
1050
+ Helpdesk
1051
+ CafeEpic
1052
+ WallOfPhones
1053
+ Arcade
1054
+ FullCircle
1055
+ Microkitchen
1056
+ SugarShack
1057
+ Nanokitchen
1058
+ BurgerShack
1059
+ SweetStop
1060
+ ZucksOffice
1061
+ Sol
1062
+ SaintFrank
1063
+ DentalOffice
1064
+ BlueBottle
1065
+ VerveCoffee
1066
+ PopUpShop
1067
+ RainbowStairs
1068
+ Harvest
1069
+ LikeSign
1070
+ 5 4 241578563886
1071
+ Microkitchen
1072
+ VerveCoffee
1073
+ HackerSquare
1074
+ PopUpShop
1075
+ HalalTruck
1076
+ 2 1 165932609482
1077
+ ZucksOldOffice
1078
+ FullCircle
1079
+ 47 32 523633740513
1080
+ HalalTruck
1081
+ LikeSign
1082
+ Arcade
1083
+ Harvest
1084
+ LivingTheDream
1085
+ LightningBolts
1086
+ ChosHawkerCenter
1087
+ WoodenSculpture
1088
+ Helpdesk
1089
+ SwagStore
1090
+ NailPolishRoomBlock
1091
+ ColdBrewMachine
1092
+ CafeEpic
1093
+ BlueBottle
1094
+ ConstitutionDeli
1095
+ ZucksOldOffice
1096
+ FakeCrosswalk
1097
+ SugarShack
1098
+ WallOfPhones
1099
+ FukiSushiInOldenDays
1100
+ ZucksOffice
1101
+ TuringInDominoes
1102
+ Ballpit
1103
+ BahnAppetit
1104
+ OculusDemoLab
1105
+ FullCircle
1106
+ PhilzCoffee
1107
+ Sol
1108
+ HackerSquare
1109
+ MamaPennys
1110
+ LateHarvest
1111
+ BurgerShack
1112
+ FreshOrangeJuice
1113
+ SaintFrank
1114
+ VerveCoffee
1115
+ RainbowStairs
1116
+ SweetStop
1117
+ SonOfPingAndPong
1118
+ PopUpShop
1119
+ Microkitchen
1120
+ Nanokitchen
1121
+ DentalOffice
1122
+ BridgeClub
1123
+ ShuttlePlatform
1124
+ FoxPainting
1125
+ TransportationHub
1126
+ HotfixBar
1127
+ 18 9 137541311141
1128
+ DentalOffice
1129
+ BahnAppetit
1130
+ WoodenSculpture
1131
+ LateHarvest
1132
+ BurgerShack
1133
+ ConstitutionDeli
1134
+ FoxGazebo
1135
+ VerveCoffee
1136
+ SweetStop
1137
+ Arcade
1138
+ ZucksOffice
1139
+ FukiSushiInOldenDays
1140
+ BlueBottle
1141
+ ShuttlePlatform
1142
+ HotfixBar
1143
+ MamaPennys
1144
+ PopUpShop
1145
+ PhilzCoffee
1146
+ 23 1 340580517775
1147
+ ZucksOldOffice
1148
+ Microkitchen
1149
+ Nanokitchen
1150
+ MPK20Roof
1151
+ MamaPennys
1152
+ SweetStop
1153
+ HackerSquare
1154
+ WallOfPhones
1155
+ FullCircle
1156
+ Helpdesk
1157
+ LightningBolts
1158
+ PhilzCoffee
1159
+ FakeCrosswalk
1160
+ RainbowStairs
1161
+ HotfixBar
1162
+ PopUpShop
1163
+ FukiSushiInOldenDays
1164
+ BurgerShack
1165
+ FreshOrangeJuice
1166
+ FoxPainting
1167
+ LivingTheDream
1168
+ Sol
1169
+ TransportationHub
1170
+ 9 3 86855373278
1171
+ SwagStore
1172
+ MamaPennys
1173
+ LikeSign
1174
+ Arcade
1175
+ ConstitutionDeli
1176
+ HotfixBar
1177
+ PopUpShop
1178
+ ChosHawkerCenter
1179
+ Helpdesk
1180
+ 48 43 505143592782
1181
+ CafeEpic
1182
+ SonOfPingAndPong
1183
+ FoxPainting
1184
+ BlueBottle
1185
+ Arcade
1186
+ SwagStore
1187
+ Sol
1188
+ BurgerShack
1189
+ FoxGazebo
1190
+ HotfixBar
1191
+ HalalTruck
1192
+ BridgeClub
1193
+ OculusDemoLab
1194
+ MPK20Roof
1195
+ Nanokitchen
1196
+ SugarShack
1197
+ ZucksOldOffice
1198
+ HackerSquare
1199
+ SaintFrank
1200
+ FakeCrosswalk
1201
+ Helpdesk
1202
+ ZucksOffice
1203
+ FukiSushiInOldenDays
1204
+ NailPolishRoomBlock
1205
+ LivingTheDream
1206
+ DentalOffice
1207
+ Harvest
1208
+ BahnAppetit
1209
+ WoodenSculpture
1210
+ PopUpShop
1211
+ LightningBolts
1212
+ MamaPennys
1213
+ FullCircle
1214
+ ConstitutionDeli
1215
+ Microkitchen
1216
+ PhilzCoffee
1217
+ WallOfPhones
1218
+ RainbowStairs
1219
+ VerveCoffee
1220
+ FreshOrangeJuice
1221
+ TransportationHub
1222
+ SweetStop
1223
+ Ballpit
1224
+ ColdBrewMachine
1225
+ ChosHawkerCenter
1226
+ LikeSign
1227
+ TechVendingMachine
1228
+ TuringInDominoes
1229
+ 12 12 771890430823
1230
+ ZucksOffice
1231
+ TransportationHub
1232
+ OculusDemoLab
1233
+ ChosHawkerCenter
1234
+ DentalOffice
1235
+ Microkitchen
1236
+ ShuttlePlatform
1237
+ CafeEpic
1238
+ SugarShack
1239
+ TuringInDominoes
1240
+ LivingTheDream
1241
+ ConstitutionDeli
1242
+ 38 33 484379487433
1243
+ HackerSquare
1244
+ VerveCoffee
1245
+ HalalTruck
1246
+ ConstitutionDeli
1247
+ SugarShack
1248
+ PopUpShop
1249
+ Sol
1250
+ PhilzCoffee
1251
+ ShuttlePlatform
1252
+ BurgerShack
1253
+ LikeSign
1254
+ BlueBottle
1255
+ RainbowStairs
1256
+ LateHarvest
1257
+ Microkitchen
1258
+ ZucksOldOffice
1259
+ ZucksOffice
1260
+ SaintFrank
1261
+ TransportationHub
1262
+ FakeCrosswalk
1263
+ WallOfPhones
1264
+ SweetStop
1265
+ Harvest
1266
+ DentalOffice
1267
+ Ballpit
1268
+ LightningBolts
1269
+ FukiSushiInOldenDays
1270
+ ChosHawkerCenter
1271
+ TuringInDominoes
1272
+ SwagStore
1273
+ CafeEpic
1274
+ BridgeClub
1275
+ SonOfPingAndPong
1276
+ WoodenSculpture
1277
+ TechVendingMachine
1278
+ HotfixBar
1279
+ ColdBrewMachine
1280
+ FoxGazebo
1281
+ 2 2 973390208021
1282
+ ColdBrewMachine
1283
+ ZucksOldOffice
1284
+ 8 3 941392681921
1285
+ WallOfPhones
1286
+ Ballpit
1287
+ ZucksOldOffice
1288
+ HalalTruck
1289
+ TechVendingMachine
1290
+ Helpdesk
1291
+ BahnAppetit
1292
+ FoxPainting
1293
+ 11 11 641830682363
1294
+ ChosHawkerCenter
1295
+ Arcade
1296
+ FoxGazebo
1297
+ FukiSushiInOldenDays
1298
+ WallOfPhones
1299
+ HackerSquare
1300
+ VerveCoffee
1301
+ BurgerShack
1302
+ HotfixBar
1303
+ FreshOrangeJuice
1304
+ WoodenSculpture
1305
+ 3 1 40787840419
1306
+ WoodenSculpture
1307
+ BlueBottle
1308
+ MPK20Roof
1309
+ 41 30 14443145338
1310
+ SweetStop
1311
+ Harvest
1312
+ ZucksOffice
1313
+ OculusDemoLab
1314
+ HalalTruck
1315
+ Arcade
1316
+ BridgeClub
1317
+ MamaPennys
1318
+ SwagStore
1319
+ PhilzCoffee
1320
+ Sol
1321
+ CafeEpic
1322
+ LivingTheDream
1323
+ Microkitchen
1324
+ SugarShack
1325
+ Helpdesk
1326
+ DentalOffice
1327
+ LikeSign
1328
+ WoodenSculpture
1329
+ ShuttlePlatform
1330
+ WallOfPhones
1331
+ TuringInDominoes
1332
+ HackerSquare
1333
+ Ballpit
1334
+ HotfixBar
1335
+ LightningBolts
1336
+ NailPolishRoomBlock
1337
+ RainbowStairs
1338
+ BahnAppetit
1339
+ BlueBottle
1340
+ TransportationHub
1341
+ FullCircle
1342
+ ColdBrewMachine
1343
+ PopUpShop
1344
+ SaintFrank
1345
+ ChosHawkerCenter
1346
+ ZucksOldOffice
1347
+ Nanokitchen
1348
+ LateHarvest
1349
+ ConstitutionDeli
1350
+ FoxGazebo
1351
+ 34 5 695200013567
1352
+ PhilzCoffee
1353
+ SwagStore
1354
+ BridgeClub
1355
+ SugarShack
1356
+ Nanokitchen
1357
+ ShuttlePlatform
1358
+ DentalOffice
1359
+ Harvest
1360
+ TechVendingMachine
1361
+ ChosHawkerCenter
1362
+ Helpdesk
1363
+ FoxGazebo
1364
+ ConstitutionDeli
1365
+ FreshOrangeJuice
1366
+ Ballpit
1367
+ TuringInDominoes
1368
+ LightningBolts
1369
+ MPK20Roof
1370
+ CafeEpic
1371
+ HalalTruck
1372
+ RainbowStairs
1373
+ HackerSquare
1374
+ VerveCoffee
1375
+ PopUpShop
1376
+ OculusDemoLab
1377
+ ZucksOldOffice
1378
+ ZucksOffice
1379
+ ColdBrewMachine
1380
+ TransportationHub
1381
+ LateHarvest
1382
+ BlueBottle
1383
+ MamaPennys
1384
+ FukiSushiInOldenDays
1385
+ BurgerShack
1386
+ 29 28 318487256206
1387
+ BahnAppetit
1388
+ HackerSquare
1389
+ ZucksOffice
1390
+ Arcade
1391
+ FoxPainting
1392
+ NailPolishRoomBlock
1393
+ SonOfPingAndPong
1394
+ BlueBottle
1395
+ FreshOrangeJuice
1396
+ Helpdesk
1397
+ DentalOffice
1398
+ MamaPennys
1399
+ MPK20Roof
1400
+ Ballpit
1401
+ OculusDemoLab
1402
+ SweetStop
1403
+ TechVendingMachine
1404
+ ChosHawkerCenter
1405
+ LivingTheDream
1406
+ FullCircle
1407
+ SaintFrank
1408
+ CafeEpic
1409
+ PopUpShop
1410
+ ShuttlePlatform
1411
+ WoodenSculpture
1412
+ SugarShack
1413
+ TransportationHub
1414
+ PhilzCoffee
1415
+ LikeSign
1416
+ 4 3 10
1417
+ LikeSign
1418
+ Arcade
1419
+ SweetStop
1420
+ SwagStore
1421
+ 2 1 1000000000000
1422
+ RainbowStairs
1423
+ WallOfPhones
1424
+ 48 13 217357674580
1425
+ ZucksOffice
1426
+ Sol
1427
+ HalalTruck
1428
+ Nanokitchen
1429
+ SwagStore
1430
+ FakeCrosswalk
1431
+ FoxPainting
1432
+ TuringInDominoes
1433
+ PopUpShop
1434
+ SweetStop
1435
+ FreshOrangeJuice
1436
+ HackerSquare
1437
+ Helpdesk
1438
+ PhilzCoffee
1439
+ NailPolishRoomBlock
1440
+ TransportationHub
1441
+ ChosHawkerCenter
1442
+ LightningBolts
1443
+ Arcade
1444
+ ZucksOldOffice
1445
+ MPK20Roof
1446
+ LateHarvest
1447
+ SugarShack
1448
+ SonOfPingAndPong
1449
+ WoodenSculpture
1450
+ RainbowStairs
1451
+ Harvest
1452
+ HotfixBar
1453
+ LivingTheDream
1454
+ BridgeClub
1455
+ SaintFrank
1456
+ FullCircle
1457
+ MamaPennys
1458
+ WallOfPhones
1459
+ LikeSign
1460
+ FukiSushiInOldenDays
1461
+ FoxGazebo
1462
+ VerveCoffee
1463
+ BahnAppetit
1464
+ ConstitutionDeli
1465
+ TechVendingMachine
1466
+ ShuttlePlatform
1467
+ ColdBrewMachine
1468
+ BurgerShack
1469
+ Microkitchen
1470
+ Ballpit
1471
+ DentalOffice
1472
+ OculusDemoLab
1473
+ 14 2 315552028247
1474
+ TransportationHub
1475
+ SonOfPingAndPong
1476
+ DentalOffice
1477
+ Microkitchen
1478
+ Arcade
1479
+ OculusDemoLab
1480
+ BahnAppetit
1481
+ Helpdesk
1482
+ LikeSign
1483
+ TechVendingMachine
1484
+ CafeEpic
1485
+ HackerSquare
1486
+ WoodenSculpture
1487
+ FukiSushiInOldenDays
1488
+ 10 6 696106531221
1489
+ SaintFrank
1490
+ BlueBottle
1491
+ TransportationHub
1492
+ DentalOffice
1493
+ ColdBrewMachine
1494
+ MamaPennys
1495
+ OculusDemoLab
1496
+ PhilzCoffee
1497
+ Nanokitchen
1498
+ FreshOrangeJuice
1499
+ 40 3 668851835136
1500
+ VerveCoffee
1501
+ Arcade
1502
+ LateHarvest
1503
+ MPK20Roof
1504
+ SaintFrank
1505
+ NailPolishRoomBlock
1506
+ SonOfPingAndPong
1507
+ Helpdesk
1508
+ TransportationHub
1509
+ HotfixBar
1510
+ RainbowStairs
1511
+ FukiSushiInOldenDays
1512
+ SwagStore
1513
+ Ballpit
1514
+ ZucksOldOffice
1515
+ ConstitutionDeli
1516
+ ShuttlePlatform
1517
+ BridgeClub
1518
+ Nanokitchen
1519
+ CafeEpic
1520
+ PopUpShop
1521
+ ChosHawkerCenter
1522
+ OculusDemoLab
1523
+ MamaPennys
1524
+ Microkitchen
1525
+ HalalTruck
1526
+ DentalOffice
1527
+ PhilzCoffee
1528
+ FoxPainting
1529
+ WoodenSculpture
1530
+ BahnAppetit
1531
+ FullCircle
1532
+ LivingTheDream
1533
+ HackerSquare
1534
+ BurgerShack
1535
+ WallOfPhones
1536
+ ZucksOffice
1537
+ LightningBolts
1538
+ LikeSign
1539
+ Sol
1540
+ 7 4 284522672933
1541
+ LivingTheDream
1542
+ WoodenSculpture
1543
+ Arcade
1544
+ Helpdesk
1545
+ Harvest
1546
+ PhilzCoffee
1547
+ MamaPennys
1548
+ 45 9 495603762301
1549
+ FakeCrosswalk
1550
+ FreshOrangeJuice
1551
+ LightningBolts
1552
+ TuringInDominoes
1553
+ Sol
1554
+ SonOfPingAndPong
1555
+ ColdBrewMachine
1556
+ SaintFrank
1557
+ BahnAppetit
1558
+ Arcade
1559
+ ConstitutionDeli
1560
+ PhilzCoffee
1561
+ FoxPainting
1562
+ CafeEpic
1563
+ NailPolishRoomBlock
1564
+ WallOfPhones
1565
+ ChosHawkerCenter
1566
+ SwagStore
1567
+ BurgerShack
1568
+ ZucksOldOffice
1569
+ LivingTheDream
1570
+ Ballpit
1571
+ Nanokitchen
1572
+ HotfixBar
1573
+ Helpdesk
1574
+ FullCircle
1575
+ VerveCoffee
1576
+ LateHarvest
1577
+ HackerSquare
1578
+ FukiSushiInOldenDays
1579
+ BlueBottle
1580
+ TransportationHub
1581
+ ZucksOffice
1582
+ SweetStop
1583
+ SugarShack
1584
+ PopUpShop
1585
+ LikeSign
1586
+ FoxGazebo
1587
+ TechVendingMachine
1588
+ WoodenSculpture
1589
+ MPK20Roof
1590
+ Microkitchen
1591
+ BridgeClub
1592
+ MamaPennys
1593
+ ShuttlePlatform
1594
+ 40 23 21557313193
1595
+ Harvest
1596
+ FakeCrosswalk
1597
+ Microkitchen
1598
+ ShuttlePlatform
1599
+ CafeEpic
1600
+ SwagStore
1601
+ TechVendingMachine
1602
+ DentalOffice
1603
+ VerveCoffee
1604
+ Helpdesk
1605
+ HalalTruck
1606
+ FoxPainting
1607
+ NailPolishRoomBlock
1608
+ HotfixBar
1609
+ ZucksOldOffice
1610
+ PopUpShop
1611
+ ZucksOffice
1612
+ ChosHawkerCenter
1613
+ LivingTheDream
1614
+ FullCircle
1615
+ SaintFrank
1616
+ RainbowStairs
1617
+ MamaPennys
1618
+ ConstitutionDeli
1619
+ SugarShack
1620
+ TuringInDominoes
1621
+ MPK20Roof
1622
+ BridgeClub
1623
+ LightningBolts
1624
+ WallOfPhones
1625
+ FreshOrangeJuice
1626
+ SweetStop
1627
+ Nanokitchen
1628
+ Ballpit
1629
+ Sol
1630
+ LikeSign
1631
+ TransportationHub
1632
+ SonOfPingAndPong
1633
+ OculusDemoLab
1634
+ BlueBottle
1635
+ 29 27 498340048551
1636
+ LateHarvest
1637
+ HalalTruck
1638
+ LightningBolts
1639
+ MamaPennys
1640
+ Harvest
1641
+ Helpdesk
1642
+ DentalOffice
1643
+ ColdBrewMachine
1644
+ TransportationHub
1645
+ SonOfPingAndPong
1646
+ RainbowStairs
1647
+ LikeSign
1648
+ FakeCrosswalk
1649
+ Ballpit
1650
+ FukiSushiInOldenDays
1651
+ FullCircle
1652
+ SugarShack
1653
+ VerveCoffee
1654
+ Arcade
1655
+ CafeEpic
1656
+ FreshOrangeJuice
1657
+ ShuttlePlatform
1658
+ Nanokitchen
1659
+ TuringInDominoes
1660
+ NailPolishRoomBlock
1661
+ MPK20Roof
1662
+ BurgerShack
1663
+ SaintFrank
1664
+ HackerSquare
1665
+ 24 23 540488404986
1666
+ TuringInDominoes
1667
+ VerveCoffee
1668
+ FukiSushiInOldenDays
1669
+ ShuttlePlatform
1670
+ TechVendingMachine
1671
+ ColdBrewMachine
1672
+ TransportationHub
1673
+ LightningBolts
1674
+ BridgeClub
1675
+ HotfixBar
1676
+ OculusDemoLab
1677
+ CafeEpic
1678
+ FakeCrosswalk
1679
+ SonOfPingAndPong
1680
+ FullCircle
1681
+ ZucksOffice
1682
+ Arcade
1683
+ SugarShack
1684
+ FoxGazebo
1685
+ MPK20Roof
1686
+ ConstitutionDeli
1687
+ WallOfPhones
1688
+ ChosHawkerCenter
1689
+ WoodenSculpture
1690
+ 27 16 852242388515
1691
+ ColdBrewMachine
1692
+ WoodenSculpture
1693
+ LightningBolts
1694
+ SweetStop
1695
+ BahnAppetit
1696
+ FukiSushiInOldenDays
1697
+ BurgerShack
1698
+ ConstitutionDeli
1699
+ ChosHawkerCenter
1700
+ ShuttlePlatform
1701
+ LikeSign
1702
+ BlueBottle
1703
+ SonOfPingAndPong
1704
+ Nanokitchen
1705
+ Microkitchen
1706
+ MamaPennys
1707
+ OculusDemoLab
1708
+ CafeEpic
1709
+ FoxPainting
1710
+ FakeCrosswalk
1711
+ Harvest
1712
+ BridgeClub
1713
+ MPK20Roof
1714
+ Ballpit
1715
+ Sol
1716
+ TechVendingMachine
1717
+ NailPolishRoomBlock
1718
+ 27 24 706711141843
1719
+ MPK20Roof
1720
+ DentalOffice
1721
+ LateHarvest
1722
+ Arcade
1723
+ SonOfPingAndPong
1724
+ FakeCrosswalk
1725
+ TuringInDominoes
1726
+ ColdBrewMachine
1727
+ TechVendingMachine
1728
+ BurgerShack
1729
+ HackerSquare
1730
+ FoxGazebo
1731
+ Helpdesk
1732
+ ZucksOldOffice
1733
+ ZucksOffice
1734
+ LivingTheDream
1735
+ SwagStore
1736
+ WallOfPhones
1737
+ LikeSign
1738
+ ChosHawkerCenter
1739
+ BahnAppetit
1740
+ NailPolishRoomBlock
1741
+ Ballpit
1742
+ ShuttlePlatform
1743
+ HotfixBar
1744
+ SweetStop
1745
+ MamaPennys
1746
+ 18 12 803626416519
1747
+ SweetStop
1748
+ Nanokitchen
1749
+ FoxGazebo
1750
+ ChosHawkerCenter
1751
+ SonOfPingAndPong
1752
+ RainbowStairs
1753
+ MPK20Roof
1754
+ ShuttlePlatform
1755
+ Sol
1756
+ TuringInDominoes
1757
+ FoxPainting
1758
+ WoodenSculpture
1759
+ Harvest
1760
+ Microkitchen
1761
+ SwagStore
1762
+ ZucksOffice
1763
+ BurgerShack
1764
+ Arcade
1765
+ 28 2 17672138641
1766
+ ConstitutionDeli
1767
+ HackerSquare
1768
+ SugarShack
1769
+ ShuttlePlatform
1770
+ TuringInDominoes
1771
+ SonOfPingAndPong
1772
+ Ballpit
1773
+ VerveCoffee
1774
+ FoxGazebo
1775
+ Arcade
1776
+ LightningBolts
1777
+ ColdBrewMachine
1778
+ HotfixBar
1779
+ ZucksOffice
1780
+ RainbowStairs
1781
+ OculusDemoLab
1782
+ BahnAppetit
1783
+ Sol
1784
+ MPK20Roof
1785
+ WoodenSculpture
1786
+ ChosHawkerCenter
1787
+ Helpdesk
1788
+ FullCircle
1789
+ MamaPennys
1790
+ WallOfPhones
1791
+ DentalOffice
1792
+ CafeEpic
1793
+ TechVendingMachine
1794
+ 18 8 616421329431
1795
+ BlueBottle
1796
+ Microkitchen
1797
+ Helpdesk
1798
+ Sol
1799
+ WoodenSculpture
1800
+ WallOfPhones
1801
+ OculusDemoLab
1802
+ HalalTruck
1803
+ FreshOrangeJuice
1804
+ LivingTheDream
1805
+ MamaPennys
1806
+ Arcade
1807
+ ZucksOffice
1808
+ Ballpit
1809
+ DentalOffice
1810
+ HotfixBar
1811
+ HackerSquare
1812
+ Harvest
1813
+ 44 34 441765249055
1814
+ FoxGazebo
1815
+ Helpdesk
1816
+ SonOfPingAndPong
1817
+ TuringInDominoes
1818
+ LikeSign
1819
+ SaintFrank
1820
+ Ballpit
1821
+ MamaPennys
1822
+ BlueBottle
1823
+ NailPolishRoomBlock
1824
+ HackerSquare
1825
+ WallOfPhones
1826
+ LateHarvest
1827
+ BridgeClub
1828
+ Harvest
1829
+ Microkitchen
1830
+ WoodenSculpture
1831
+ ConstitutionDeli
1832
+ LightningBolts
1833
+ DentalOffice
1834
+ FullCircle
1835
+ SugarShack
1836
+ LivingTheDream
1837
+ PopUpShop
1838
+ RainbowStairs
1839
+ ChosHawkerCenter
1840
+ HotfixBar
1841
+ PhilzCoffee
1842
+ ColdBrewMachine
1843
+ ShuttlePlatform
1844
+ MPK20Roof
1845
+ Arcade
1846
+ CafeEpic
1847
+ SweetStop
1848
+ VerveCoffee
1849
+ SwagStore
1850
+ ZucksOffice
1851
+ FukiSushiInOldenDays
1852
+ TransportationHub
1853
+ HalalTruck
1854
+ Sol
1855
+ TechVendingMachine
1856
+ BahnAppetit
1857
+ ZucksOldOffice
1858
+ 3 2 947628239202
1859
+ ConstitutionDeli
1860
+ LightningBolts
1861
+ VerveCoffee
1862
+ 12 4 947550278270
1863
+ ColdBrewMachine
1864
+ BahnAppetit
1865
+ HotfixBar
1866
+ WallOfPhones
1867
+ CafeEpic
1868
+ Sol
1869
+ TransportationHub
1870
+ TuringInDominoes
1871
+ Helpdesk
1872
+ FakeCrosswalk
1873
+ MPK20Roof
1874
+ PhilzCoffee
1875
+ 6 5 4543419543
1876
+ ZucksOldOffice
1877
+ FullCircle
1878
+ TransportationHub
1879
+ BurgerShack
1880
+ Helpdesk
1881
+ LivingTheDream
1882
+ 44 19 894601244369
1883
+ NailPolishRoomBlock
1884
+ FreshOrangeJuice
1885
+ ZucksOffice
1886
+ BlueBottle
1887
+ TechVendingMachine
1888
+ BahnAppetit
1889
+ HalalTruck
1890
+ LateHarvest
1891
+ ColdBrewMachine
1892
+ WallOfPhones
1893
+ VerveCoffee
1894
+ PopUpShop
1895
+ HackerSquare
1896
+ SugarShack
1897
+ Harvest
1898
+ ConstitutionDeli
1899
+ BurgerShack
1900
+ WoodenSculpture
1901
+ FukiSushiInOldenDays
1902
+ TuringInDominoes
1903
+ ShuttlePlatform
1904
+ Sol
1905
+ SweetStop
1906
+ BridgeClub
1907
+ SonOfPingAndPong
1908
+ TransportationHub
1909
+ Helpdesk
1910
+ ZucksOldOffice
1911
+ Microkitchen
1912
+ FoxGazebo
1913
+ FullCircle
1914
+ LikeSign
1915
+ Nanokitchen
1916
+ LivingTheDream
1917
+ RainbowStairs
1918
+ ChosHawkerCenter
1919
+ OculusDemoLab
1920
+ HotfixBar
1921
+ PhilzCoffee
1922
+ MPK20Roof
1923
+ LightningBolts
1924
+ DentalOffice
1925
+ CafeEpic
1926
+ FoxPainting
1927
+ 38 9 351663152454
1928
+ Ballpit
1929
+ ColdBrewMachine
1930
+ SaintFrank
1931
+ BridgeClub
1932
+ MamaPennys
1933
+ ShuttlePlatform
1934
+ FakeCrosswalk
1935
+ PhilzCoffee
1936
+ BlueBottle
1937
+ TransportationHub
1938
+ Nanokitchen
1939
+ ConstitutionDeli
1940
+ SwagStore
1941
+ TuringInDominoes
1942
+ LateHarvest
1943
+ PopUpShop
1944
+ WallOfPhones
1945
+ Helpdesk
1946
+ SonOfPingAndPong
1947
+ MPK20Roof
1948
+ WoodenSculpture
1949
+ CafeEpic
1950
+ LivingTheDream
1951
+ HalalTruck
1952
+ FukiSushiInOldenDays
1953
+ OculusDemoLab
1954
+ HotfixBar
1955
+ NailPolishRoomBlock
1956
+ VerveCoffee
1957
+ ZucksOffice
1958
+ LikeSign
1959
+ FreshOrangeJuice
1960
+ ChosHawkerCenter
1961
+ Sol
1962
+ Microkitchen
1963
+ SugarShack
1964
+ FoxPainting
1965
+ FoxGazebo
1966
+ 36 7 994438372544
1967
+ RainbowStairs
1968
+ FoxPainting
1969
+ BridgeClub
1970
+ HackerSquare
1971
+ LikeSign
1972
+ ChosHawkerCenter
1973
+ PhilzCoffee
1974
+ DentalOffice
1975
+ ConstitutionDeli
1976
+ FoxGazebo
1977
+ BahnAppetit
1978
+ TuringInDominoes
1979
+ BurgerShack
1980
+ SaintFrank
1981
+ SonOfPingAndPong
1982
+ WallOfPhones
1983
+ SweetStop
1984
+ VerveCoffee
1985
+ WoodenSculpture
1986
+ Nanokitchen
1987
+ Microkitchen
1988
+ ZucksOffice
1989
+ BlueBottle
1990
+ MamaPennys
1991
+ TechVendingMachine
1992
+ OculusDemoLab
1993
+ FreshOrangeJuice
1994
+ PopUpShop
1995
+ Sol
1996
+ Ballpit
1997
+ Arcade
1998
+ ColdBrewMachine
1999
+ ZucksOldOffice
2000
+ NailPolishRoomBlock
2001
+ FakeCrosswalk
2002
+ MPK20Roof
2003
+ 12 1 402549246702
2004
+ BlueBottle
2005
+ LateHarvest
2006
+ FullCircle
2007
+ NailPolishRoomBlock
2008
+ HalalTruck
2009
+ SonOfPingAndPong
2010
+ ZucksOffice
2011
+ Ballpit
2012
+ SwagStore
2013
+ ZucksOldOffice
2014
+ SweetStop
2015
+ BridgeClub
2016
+ 11 4 558586406299
2017
+ ColdBrewMachine
2018
+ ConstitutionDeli
2019
+ Harvest
2020
+ PhilzCoffee
2021
+ SaintFrank
2022
+ Nanokitchen
2023
+ TransportationHub
2024
+ ZucksOffice
2025
+ Helpdesk
2026
+ TuringInDominoes
2027
+ MamaPennys
2028
+ 36 23 758762939410
2029
+ ShuttlePlatform
2030
+ Helpdesk
2031
+ LivingTheDream
2032
+ LateHarvest
2033
+ ZucksOldOffice
2034
+ CafeEpic
2035
+ MPK20Roof
2036
+ SwagStore
2037
+ Microkitchen
2038
+ NailPolishRoomBlock
2039
+ FullCircle
2040
+ TuringInDominoes
2041
+ FukiSushiInOldenDays
2042
+ Harvest
2043
+ WoodenSculpture
2044
+ Arcade
2045
+ FoxGazebo
2046
+ WallOfPhones
2047
+ LikeSign
2048
+ ZucksOffice
2049
+ BridgeClub
2050
+ HackerSquare
2051
+ Nanokitchen
2052
+ BurgerShack
2053
+ FakeCrosswalk
2054
+ ConstitutionDeli
2055
+ VerveCoffee
2056
+ HalalTruck
2057
+ Ballpit
2058
+ RainbowStairs
2059
+ Sol
2060
+ BlueBottle
2061
+ TechVendingMachine
2062
+ BahnAppetit
2063
+ TransportationHub
2064
+ HotfixBar
2065
+ 9 8 150209489166
2066
+ MamaPennys
2067
+ TechVendingMachine
2068
+ LikeSign
2069
+ Arcade
2070
+ BurgerShack
2071
+ NailPolishRoomBlock
2072
+ FoxPainting
2073
+ FukiSushiInOldenDays
2074
+ TuringInDominoes
2075
+ 8 7 655548397431
2076
+ OculusDemoLab
2077
+ NailPolishRoomBlock
2078
+ VerveCoffee
2079
+ ZucksOffice
2080
+ BahnAppetit
2081
+ HalalTruck
2082
+ MPK20Roof
2083
+ FakeCrosswalk
2084
+ 4 3 1
2085
+ LikeSign
2086
+ Arcade
2087
+ SweetStop
2088
+ SwagStore
2089
+ 5 4 554139894399
2090
+ ZucksOffice
2091
+ PopUpShop
2092
+ HackerSquare
2093
+ Helpdesk
2094
+ SugarShack
2095
+ 44 26 976597307176
2096
+ HotfixBar
2097
+ LikeSign
2098
+ OculusDemoLab
2099
+ Ballpit
2100
+ ZucksOffice
2101
+ VerveCoffee
2102
+ SugarShack
2103
+ SaintFrank
2104
+ FoxGazebo
2105
+ RainbowStairs
2106
+ Nanokitchen
2107
+ TransportationHub
2108
+ LightningBolts
2109
+ BlueBottle
2110
+ BurgerShack
2111
+ WallOfPhones
2112
+ ConstitutionDeli
2113
+ MPK20Roof
2114
+ ChosHawkerCenter
2115
+ HalalTruck
2116
+ WoodenSculpture
2117
+ MamaPennys
2118
+ PopUpShop
2119
+ CafeEpic
2120
+ LivingTheDream
2121
+ LateHarvest
2122
+ FukiSushiInOldenDays
2123
+ FoxPainting
2124
+ ZucksOldOffice
2125
+ SwagStore
2126
+ SweetStop
2127
+ TechVendingMachine
2128
+ ColdBrewMachine
2129
+ Microkitchen
2130
+ FullCircle
2131
+ NailPolishRoomBlock
2132
+ DentalOffice
2133
+ Arcade
2134
+ SonOfPingAndPong
2135
+ PhilzCoffee
2136
+ Sol
2137
+ HackerSquare
2138
+ BridgeClub
2139
+ FakeCrosswalk
2140
+ 13 9 83526846676
2141
+ BlueBottle
2142
+ FoxPainting
2143
+ PhilzCoffee
2144
+ SwagStore
2145
+ ChosHawkerCenter
2146
+ FukiSushiInOldenDays
2147
+ HalalTruck
2148
+ TransportationHub
2149
+ LivingTheDream
2150
+ RainbowStairs
2151
+ ColdBrewMachine
2152
+ TechVendingMachine
2153
+ SugarShack
2154
+ 48 36 305203898677
2155
+ Ballpit
2156
+ Helpdesk
2157
+ NailPolishRoomBlock
2158
+ MPK20Roof
2159
+ FullCircle
2160
+ TuringInDominoes
2161
+ BlueBottle
2162
+ OculusDemoLab
2163
+ HackerSquare
2164
+ LivingTheDream
2165
+ FakeCrosswalk
2166
+ FreshOrangeJuice
2167
+ PhilzCoffee
2168
+ FukiSushiInOldenDays
2169
+ Nanokitchen
2170
+ BridgeClub
2171
+ WallOfPhones
2172
+ LateHarvest
2173
+ ConstitutionDeli
2174
+ LikeSign
2175
+ VerveCoffee
2176
+ Microkitchen
2177
+ DentalOffice
2178
+ Sol
2179
+ ChosHawkerCenter
2180
+ TransportationHub
2181
+ ZucksOffice
2182
+ RainbowStairs
2183
+ HotfixBar
2184
+ SonOfPingAndPong
2185
+ BurgerShack
2186
+ PopUpShop
2187
+ Harvest
2188
+ LightningBolts
2189
+ TechVendingMachine
2190
+ HalalTruck
2191
+ CafeEpic
2192
+ SugarShack
2193
+ ColdBrewMachine
2194
+ SwagStore
2195
+ FoxPainting
2196
+ BahnAppetit
2197
+ Arcade
2198
+ ShuttlePlatform
2199
+ SaintFrank
2200
+ ZucksOldOffice
2201
+ SweetStop
2202
+ FoxGazebo
2203
+ 5 4 592162969171
2204
+ BridgeClub
2205
+ LivingTheDream
2206
+ SaintFrank
2207
+ ZucksOldOffice
2208
+ Arcade
2209
+ 3 2 79823859886
2210
+ ZucksOffice
2211
+ SweetStop
2212
+ Microkitchen
2213
+ 5 5 329158867552
2214
+ BahnAppetit
2215
+ SaintFrank
2216
+ PopUpShop
2217
+ ColdBrewMachine
2218
+ BridgeClub
2219
+ 11 11 356784840036
2220
+ PopUpShop
2221
+ FoxPainting
2222
+ LateHarvest
2223
+ TuringInDominoes
2224
+ BurgerShack
2225
+ LivingTheDream
2226
+ ChosHawkerCenter
2227
+ SugarShack
2228
+ BahnAppetit
2229
+ ColdBrewMachine
2230
+ Ballpit
2231
+ 27 22 859188929778
2232
+ Sol
2233
+ LikeSign
2234
+ Helpdesk
2235
+ SugarShack
2236
+ HotfixBar
2237
+ WallOfPhones
2238
+ RainbowStairs
2239
+ HackerSquare
2240
+ NailPolishRoomBlock
2241
+ DentalOffice
2242
+ ConstitutionDeli
2243
+ Harvest
2244
+ LivingTheDream
2245
+ BridgeClub
2246
+ Nanokitchen
2247
+ HalalTruck
2248
+ LightningBolts
2249
+ BurgerShack
2250
+ SonOfPingAndPong
2251
+ OculusDemoLab
2252
+ VerveCoffee
2253
+ ShuttlePlatform
2254
+ ZucksOffice
2255
+ TechVendingMachine
2256
+ TuringInDominoes
2257
+ LateHarvest
2258
+ Microkitchen
2259
+ 11 9 907740051648
2260
+ TransportationHub
2261
+ BahnAppetit
2262
+ MamaPennys
2263
+ BlueBottle
2264
+ FreshOrangeJuice
2265
+ Microkitchen
2266
+ BurgerShack
2267
+ CafeEpic
2268
+ ShuttlePlatform
2269
+ ChosHawkerCenter
2270
+ MPK20Roof
2271
+ 17 16 260218176675
2272
+ WallOfPhones
2273
+ ConstitutionDeli
2274
+ BridgeClub
2275
+ TuringInDominoes
2276
+ BahnAppetit
2277
+ ZucksOffice
2278
+ OculusDemoLab
2279
+ Microkitchen
2280
+ Arcade
2281
+ ShuttlePlatform
2282
+ NailPolishRoomBlock
2283
+ SweetStop
2284
+ SwagStore
2285
+ HackerSquare
2286
+ TechVendingMachine
2287
+ DentalOffice
2288
+ SonOfPingAndPong
2289
+ 34 25 430194626587
2290
+ SaintFrank
2291
+ PhilzCoffee
2292
+ Nanokitchen
2293
+ Arcade
2294
+ Ballpit
2295
+ SwagStore
2296
+ FreshOrangeJuice
2297
+ ShuttlePlatform
2298
+ LikeSign
2299
+ HotfixBar
2300
+ LivingTheDream
2301
+ RainbowStairs
2302
+ FoxPainting
2303
+ Harvest
2304
+ BahnAppetit
2305
+ VerveCoffee
2306
+ TransportationHub
2307
+ ConstitutionDeli
2308
+ CafeEpic
2309
+ SweetStop
2310
+ Helpdesk
2311
+ Sol
2312
+ FakeCrosswalk
2313
+ BurgerShack
2314
+ Microkitchen
2315
+ ColdBrewMachine
2316
+ MamaPennys
2317
+ ZucksOffice
2318
+ DentalOffice
2319
+ TechVendingMachine
2320
+ HalalTruck
2321
+ BlueBottle
2322
+ LightningBolts
2323
+ OculusDemoLab
2324
+ 14 7 875537103983
2325
+ ZucksOldOffice
2326
+ Harvest
2327
+ PopUpShop
2328
+ SonOfPingAndPong
2329
+ LikeSign
2330
+ SwagStore
2331
+ PhilzCoffee
2332
+ ZucksOffice
2333
+ Ballpit
2334
+ TuringInDominoes
2335
+ FreshOrangeJuice
2336
+ MamaPennys
2337
+ Sol
2338
+ Helpdesk
2339
+ 4 1 3
2340
+ LikeSign
2341
+ Arcade
2342
+ SweetStop
2343
+ SwagStore
2344
+ 19 14 463364656214
2345
+ PopUpShop
2346
+ PhilzCoffee
2347
+ MPK20Roof
2348
+ LightningBolts
2349
+ ChosHawkerCenter
2350
+ SugarShack
2351
+ ZucksOldOffice
2352
+ BurgerShack
2353
+ FoxGazebo
2354
+ FreshOrangeJuice
2355
+ Microkitchen
2356
+ CafeEpic
2357
+ BlueBottle
2358
+ ZucksOffice
2359
+ BridgeClub
2360
+ Ballpit
2361
+ VerveCoffee
2362
+ ColdBrewMachine
2363
+ WoodenSculpture
2364
+ 50 32 147682398306
2365
+ TechVendingMachine
2366
+ PhilzCoffee
2367
+ HalalTruck
2368
+ FukiSushiInOldenDays
2369
+ FreshOrangeJuice
2370
+ WallOfPhones
2371
+ SugarShack
2372
+ FoxPainting
2373
+ MPK20Roof
2374
+ TuringInDominoes
2375
+ HackerSquare
2376
+ OculusDemoLab
2377
+ ZucksOldOffice
2378
+ FakeCrosswalk
2379
+ BridgeClub
2380
+ Harvest
2381
+ LateHarvest
2382
+ WoodenSculpture
2383
+ ZucksOffice
2384
+ Microkitchen
2385
+ LightningBolts
2386
+ Sol
2387
+ BlueBottle
2388
+ FullCircle
2389
+ SaintFrank
2390
+ SonOfPingAndPong
2391
+ PopUpShop
2392
+ LivingTheDream
2393
+ TransportationHub
2394
+ LikeSign
2395
+ Arcade
2396
+ BurgerShack
2397
+ ConstitutionDeli
2398
+ Nanokitchen
2399
+ ChosHawkerCenter
2400
+ SweetStop
2401
+ CafeEpic
2402
+ DentalOffice
2403
+ MamaPennys
2404
+ RainbowStairs
2405
+ FoxGazebo
2406
+ NailPolishRoomBlock
2407
+ HotfixBar
2408
+ ShuttlePlatform
2409
+ Ballpit
2410
+ BahnAppetit
2411
+ ColdBrewMachine
2412
+ SwagStore
2413
+ VerveCoffee
2414
+ Helpdesk
2415
+ 21 12 827064354934
2416
+ SaintFrank
2417
+ Helpdesk
2418
+ ConstitutionDeli
2419
+ SweetStop
2420
+ Microkitchen
2421
+ LateHarvest
2422
+ MamaPennys
2423
+ PhilzCoffee
2424
+ Sol
2425
+ FakeCrosswalk
2426
+ TechVendingMachine
2427
+ FoxGazebo
2428
+ FreshOrangeJuice
2429
+ WallOfPhones
2430
+ MPK20Roof
2431
+ ShuttlePlatform
2432
+ HalalTruck
2433
+ PopUpShop
2434
+ BlueBottle
2435
+ SonOfPingAndPong
2436
+ FullCircle
2437
+ 4 4 100
2438
+ FoxGazebo
2439
+ MPK20Roof
2440
+ WoodenSculpture
2441
+ Biryani
2442
+ 46 7 316582400538
2443
+ Harvest
2444
+ DentalOffice
2445
+ BlueBottle
2446
+ BurgerShack
2447
+ LateHarvest
2448
+ SonOfPingAndPong
2449
+ VerveCoffee
2450
+ ZucksOffice
2451
+ ColdBrewMachine
2452
+ LivingTheDream
2453
+ MamaPennys
2454
+ OculusDemoLab
2455
+ Helpdesk
2456
+ ChosHawkerCenter
2457
+ ConstitutionDeli
2458
+ Arcade
2459
+ MPK20Roof
2460
+ BahnAppetit
2461
+ WoodenSculpture
2462
+ SwagStore
2463
+ CafeEpic
2464
+ FreshOrangeJuice
2465
+ FullCircle
2466
+ WallOfPhones
2467
+ TuringInDominoes
2468
+ HalalTruck
2469
+ Ballpit
2470
+ Sol
2471
+ LightningBolts
2472
+ LikeSign
2473
+ FakeCrosswalk
2474
+ FoxGazebo
2475
+ NailPolishRoomBlock
2476
+ SugarShack
2477
+ ShuttlePlatform
2478
+ TransportationHub
2479
+ FukiSushiInOldenDays
2480
+ HotfixBar
2481
+ HackerSquare
2482
+ TechVendingMachine
2483
+ SaintFrank
2484
+ SweetStop
2485
+ RainbowStairs
2486
+ Nanokitchen
2487
+ BridgeClub
2488
+ Microkitchen
2489
+ 39 22 100087915586
2490
+ SwagStore
2491
+ ShuttlePlatform
2492
+ Arcade
2493
+ MPK20Roof
2494
+ ColdBrewMachine
2495
+ BridgeClub
2496
+ VerveCoffee
2497
+ ConstitutionDeli
2498
+ LikeSign
2499
+ FoxGazebo
2500
+ BlueBottle
2501
+ BurgerShack
2502
+ Microkitchen
2503
+ TransportationHub
2504
+ TuringInDominoes
2505
+ SugarShack
2506
+ ZucksOldOffice
2507
+ HotfixBar
2508
+ LateHarvest
2509
+ LightningBolts
2510
+ NailPolishRoomBlock
2511
+ LivingTheDream
2512
+ FullCircle
2513
+ ZucksOffice
2514
+ CafeEpic
2515
+ SaintFrank
2516
+ SonOfPingAndPong
2517
+ OculusDemoLab
2518
+ Nanokitchen
2519
+ FoxPainting
2520
+ Harvest
2521
+ FreshOrangeJuice
2522
+ WallOfPhones
2523
+ Sol
2524
+ HalalTruck
2525
+ FukiSushiInOldenDays
2526
+ PhilzCoffee
2527
+ BahnAppetit
2528
+ WoodenSculpture
2529
+ 19 9 463266001946
2530
+ ConstitutionDeli
2531
+ VerveCoffee
2532
+ WoodenSculpture
2533
+ MPK20Roof
2534
+ LikeSign
2535
+ ZucksOffice
2536
+ Sol
2537
+ ZucksOldOffice
2538
+ MamaPennys
2539
+ ColdBrewMachine
2540
+ LightningBolts
2541
+ PhilzCoffee
2542
+ SugarShack
2543
+ Nanokitchen
2544
+ PopUpShop
2545
+ TransportationHub
2546
+ TuringInDominoes
2547
+ ChosHawkerCenter
2548
+ BridgeClub
2549
+ 45 42 98186003110
2550
+ PhilzCoffee
2551
+ CafeEpic
2552
+ FukiSushiInOldenDays
2553
+ Microkitchen
2554
+ RainbowStairs
2555
+ LivingTheDream
2556
+ WoodenSculpture
2557
+ FoxGazebo
2558
+ FoxPainting
2559
+ OculusDemoLab
2560
+ Sol
2561
+ SaintFrank
2562
+ FullCircle
2563
+ SweetStop
2564
+ ChosHawkerCenter
2565
+ SwagStore
2566
+ SonOfPingAndPong
2567
+ MPK20Roof
2568
+ ColdBrewMachine
2569
+ BahnAppetit
2570
+ Ballpit
2571
+ VerveCoffee
2572
+ TechVendingMachine
2573
+ PopUpShop
2574
+ TransportationHub
2575
+ ConstitutionDeli
2576
+ WallOfPhones
2577
+ FakeCrosswalk
2578
+ ZucksOldOffice
2579
+ MamaPennys
2580
+ NailPolishRoomBlock
2581
+ Helpdesk
2582
+ LikeSign
2583
+ HotfixBar
2584
+ LateHarvest
2585
+ Harvest
2586
+ Nanokitchen
2587
+ BridgeClub
2588
+ ZucksOffice
2589
+ BurgerShack
2590
+ DentalOffice
2591
+ Arcade
2592
+ ShuttlePlatform
2593
+ FreshOrangeJuice
2594
+ BlueBottle
2595
+ 39 4 999994991323
2596
+ TransportationHub
2597
+ WoodenSculpture
2598
+ MPK20Roof
2599
+ VerveCoffee
2600
+ FukiSushiInOldenDays
2601
+ RainbowStairs
2602
+ Harvest
2603
+ FakeCrosswalk
2604
+ Ballpit
2605
+ FoxPainting
2606
+ CafeEpic
2607
+ SonOfPingAndPong
2608
+ BlueBottle
2609
+ HalalTruck
2610
+ NailPolishRoomBlock
2611
+ OculusDemoLab
2612
+ HackerSquare
2613
+ Arcade
2614
+ TechVendingMachine
2615
+ Sol
2616
+ BahnAppetit
2617
+ TuringInDominoes
2618
+ Microkitchen
2619
+ BridgeClub
2620
+ FreshOrangeJuice
2621
+ SugarShack
2622
+ WallOfPhones
2623
+ SweetStop
2624
+ ConstitutionDeli
2625
+ MamaPennys
2626
+ PopUpShop
2627
+ BurgerShack
2628
+ ShuttlePlatform
2629
+ Nanokitchen
2630
+ DentalOffice
2631
+ LivingTheDream
2632
+ ZucksOldOffice
2633
+ LikeSign
2634
+ LightningBolts
2635
+ 14 6 491818947162
2636
+ FullCircle
2637
+ ShuttlePlatform
2638
+ Harvest
2639
+ ZucksOffice
2640
+ Microkitchen
2641
+ BurgerShack
2642
+ FukiSushiInOldenDays
2643
+ Nanokitchen
2644
+ HackerSquare
2645
+ Helpdesk
2646
+ TechVendingMachine
2647
+ HotfixBar
2648
+ PopUpShop
2649
+ MamaPennys
2650
+ 41 25 792728705329
2651
+ FreshOrangeJuice
2652
+ Microkitchen
2653
+ PhilzCoffee
2654
+ LikeSign
2655
+ HalalTruck
2656
+ NailPolishRoomBlock
2657
+ SwagStore
2658
+ HackerSquare
2659
+ Sol
2660
+ LateHarvest
2661
+ BridgeClub
2662
+ LivingTheDream
2663
+ Arcade
2664
+ CafeEpic
2665
+ BurgerShack
2666
+ SugarShack
2667
+ SweetStop
2668
+ ConstitutionDeli
2669
+ BlueBottle
2670
+ TransportationHub
2671
+ Helpdesk
2672
+ SonOfPingAndPong
2673
+ FakeCrosswalk
2674
+ FoxGazebo
2675
+ MamaPennys
2676
+ TechVendingMachine
2677
+ VerveCoffee
2678
+ LightningBolts
2679
+ Nanokitchen
2680
+ FukiSushiInOldenDays
2681
+ OculusDemoLab
2682
+ PopUpShop
2683
+ Harvest
2684
+ Ballpit
2685
+ MPK20Roof
2686
+ RainbowStairs
2687
+ TuringInDominoes
2688
+ ChosHawkerCenter
2689
+ DentalOffice
2690
+ FoxPainting
2691
+ ZucksOldOffice
2692
+ 35 27 262129581945
2693
+ TransportationHub
2694
+ ZucksOldOffice
2695
+ MamaPennys
2696
+ SugarShack
2697
+ ChosHawkerCenter
2698
+ WoodenSculpture
2699
+ HalalTruck
2700
+ Ballpit
2701
+ ShuttlePlatform
2702
+ BridgeClub
2703
+ Microkitchen
2704
+ BlueBottle
2705
+ LightningBolts
2706
+ OculusDemoLab
2707
+ NailPolishRoomBlock
2708
+ SweetStop
2709
+ LikeSign
2710
+ ZucksOffice
2711
+ FullCircle
2712
+ HotfixBar
2713
+ SaintFrank
2714
+ LivingTheDream
2715
+ Helpdesk
2716
+ MPK20Roof
2717
+ Arcade
2718
+ ColdBrewMachine
2719
+ Sol
2720
+ WallOfPhones
2721
+ FoxPainting
2722
+ RainbowStairs
2723
+ DentalOffice
2724
+ FakeCrosswalk
2725
+ PhilzCoffee
2726
+ TuringInDominoes
2727
+ PopUpShop
2728
+ 39 5 960501104801
2729
+ LikeSign
2730
+ MamaPennys
2731
+ PhilzCoffee
2732
+ HalalTruck
2733
+ Microkitchen
2734
+ MPK20Roof
2735
+ ColdBrewMachine
2736
+ BridgeClub
2737
+ WallOfPhones
2738
+ FreshOrangeJuice
2739
+ LivingTheDream
2740
+ TechVendingMachine
2741
+ Helpdesk
2742
+ PopUpShop
2743
+ HotfixBar
2744
+ BahnAppetit
2745
+ NailPolishRoomBlock
2746
+ TransportationHub
2747
+ ZucksOffice
2748
+ Nanokitchen
2749
+ FakeCrosswalk
2750
+ FoxGazebo
2751
+ Sol
2752
+ BlueBottle
2753
+ Arcade
2754
+ OculusDemoLab
2755
+ FullCircle
2756
+ ChosHawkerCenter
2757
+ VerveCoffee
2758
+ ZucksOldOffice
2759
+ SaintFrank
2760
+ LateHarvest
2761
+ FoxPainting
2762
+ Ballpit
2763
+ WoodenSculpture
2764
+ LightningBolts
2765
+ BurgerShack
2766
+ CafeEpic
2767
+ Harvest
2768
+ 5 2 162180901354
2769
+ DentalOffice
2770
+ HalalTruck
2771
+ FreshOrangeJuice
2772
+ CafeEpic
2773
+ Arcade
2774
+ 11 1 357996235490
2775
+ SaintFrank
2776
+ MamaPennys
2777
+ ColdBrewMachine
2778
+ Arcade
2779
+ FakeCrosswalk
2780
+ PopUpShop
2781
+ ChosHawkerCenter
2782
+ SugarShack
2783
+ BridgeClub
2784
+ ConstitutionDeli
2785
+ WoodenSculpture
2786
+ 49 11 559988008853
2787
+ FreshOrangeJuice
2788
+ ColdBrewMachine
2789
+ OculusDemoLab
2790
+ ZucksOffice
2791
+ FoxPainting
2792
+ Ballpit
2793
+ WoodenSculpture
2794
+ HalalTruck
2795
+ TransportationHub
2796
+ FullCircle
2797
+ BahnAppetit
2798
+ SugarShack
2799
+ BridgeClub
2800
+ Nanokitchen
2801
+ FukiSushiInOldenDays
2802
+ RainbowStairs
2803
+ NailPolishRoomBlock
2804
+ ChosHawkerCenter
2805
+ ZucksOldOffice
2806
+ Helpdesk
2807
+ MPK20Roof
2808
+ Sol
2809
+ TuringInDominoes
2810
+ SaintFrank
2811
+ FakeCrosswalk
2812
+ CafeEpic
2813
+ TechVendingMachine
2814
+ BurgerShack
2815
+ LateHarvest
2816
+ SwagStore
2817
+ PopUpShop
2818
+ DentalOffice
2819
+ HotfixBar
2820
+ LivingTheDream
2821
+ SonOfPingAndPong
2822
+ Harvest
2823
+ FoxGazebo
2824
+ Arcade
2825
+ PhilzCoffee
2826
+ LightningBolts
2827
+ ConstitutionDeli
2828
+ ShuttlePlatform
2829
+ WallOfPhones
2830
+ MamaPennys
2831
+ Microkitchen
2832
+ VerveCoffee
2833
+ BlueBottle
2834
+ HackerSquare
2835
+ LikeSign
2836
+ 40 5 356921810765
2837
+ TransportationHub
2838
+ PhilzCoffee
2839
+ BahnAppetit
2840
+ LivingTheDream
2841
+ Helpdesk
2842
+ FakeCrosswalk
2843
+ CafeEpic
2844
+ ShuttlePlatform
2845
+ SonOfPingAndPong
2846
+ WoodenSculpture
2847
+ BridgeClub
2848
+ ConstitutionDeli
2849
+ SugarShack
2850
+ Ballpit
2851
+ SweetStop
2852
+ ZucksOffice
2853
+ BlueBottle
2854
+ TuringInDominoes
2855
+ MamaPennys
2856
+ OculusDemoLab
2857
+ Harvest
2858
+ FukiSushiInOldenDays
2859
+ ZucksOldOffice
2860
+ NailPolishRoomBlock
2861
+ MPK20Roof
2862
+ WallOfPhones
2863
+ BurgerShack
2864
+ FullCircle
2865
+ FoxGazebo
2866
+ FreshOrangeJuice
2867
+ TechVendingMachine
2868
+ FoxPainting
2869
+ LateHarvest
2870
+ LightningBolts
2871
+ DentalOffice
2872
+ SaintFrank
2873
+ LikeSign
2874
+ Sol
2875
+ Arcade
2876
+ PopUpShop
2877
+ 13 5 349818476536
2878
+ WallOfPhones
2879
+ HackerSquare
2880
+ FukiSushiInOldenDays
2881
+ BlueBottle
2882
+ ConstitutionDeli
2883
+ FoxGazebo
2884
+ ZucksOffice
2885
+ Sol
2886
+ HotfixBar
2887
+ FreshOrangeJuice
2888
+ Arcade
2889
+ Ballpit
2890
+ RainbowStairs
2891
+ 25 17 588825702677
2892
+ ZucksOldOffice
2893
+ ChosHawkerCenter
2894
+ Harvest
2895
+ SonOfPingAndPong
2896
+ Nanokitchen
2897
+ TuringInDominoes
2898
+ HotfixBar
2899
+ MPK20Roof
2900
+ FoxGazebo
2901
+ LightningBolts
2902
+ VerveCoffee
2903
+ BlueBottle
2904
+ FullCircle
2905
+ BridgeClub
2906
+ OculusDemoLab
2907
+ NailPolishRoomBlock
2908
+ RainbowStairs
2909
+ Arcade
2910
+ HackerSquare
2911
+ Ballpit
2912
+ FukiSushiInOldenDays
2913
+ SugarShack
2914
+ CafeEpic
2915
+ Helpdesk
2916
+ ColdBrewMachine
2917
+ 46 41 493293410525
2918
+ SwagStore
2919
+ BahnAppetit
2920
+ Harvest
2921
+ BridgeClub
2922
+ ZucksOffice
2923
+ WallOfPhones
2924
+ TechVendingMachine
2925
+ LateHarvest
2926
+ Microkitchen
2927
+ Nanokitchen
2928
+ ZucksOldOffice
2929
+ NailPolishRoomBlock
2930
+ DentalOffice
2931
+ FoxPainting
2932
+ Arcade
2933
+ VerveCoffee
2934
+ BlueBottle
2935
+ ShuttlePlatform
2936
+ Sol
2937
+ SugarShack
2938
+ LightningBolts
2939
+ TuringInDominoes
2940
+ MPK20Roof
2941
+ WoodenSculpture
2942
+ FakeCrosswalk
2943
+ HotfixBar
2944
+ BurgerShack
2945
+ FreshOrangeJuice
2946
+ FoxGazebo
2947
+ LikeSign
2948
+ ChosHawkerCenter
2949
+ MamaPennys
2950
+ LivingTheDream
2951
+ PopUpShop
2952
+ FullCircle
2953
+ TransportationHub
2954
+ SweetStop
2955
+ RainbowStairs
2956
+ PhilzCoffee
2957
+ SaintFrank
2958
+ HackerSquare
2959
+ HalalTruck
2960
+ ColdBrewMachine
2961
+ FukiSushiInOldenDays
2962
+ SonOfPingAndPong
2963
+ OculusDemoLab
2964
+ 45 31 666916490300
2965
+ FukiSushiInOldenDays
2966
+ FoxPainting
2967
+ LivingTheDream
2968
+ Helpdesk
2969
+ Arcade
2970
+ SweetStop
2971
+ RainbowStairs
2972
+ ConstitutionDeli
2973
+ Harvest
2974
+ VerveCoffee
2975
+ TechVendingMachine
2976
+ BlueBottle
2977
+ NailPolishRoomBlock
2978
+ Microkitchen
2979
+ CafeEpic
2980
+ Ballpit
2981
+ DentalOffice
2982
+ FreshOrangeJuice
2983
+ Sol
2984
+ FullCircle
2985
+ MamaPennys
2986
+ BahnAppetit
2987
+ ZucksOffice
2988
+ TransportationHub
2989
+ ZucksOldOffice
2990
+ SwagStore
2991
+ MPK20Roof
2992
+ WoodenSculpture
2993
+ ChosHawkerCenter
2994
+ OculusDemoLab
2995
+ BurgerShack
2996
+ ColdBrewMachine
2997
+ SugarShack
2998
+ HalalTruck
2999
+ Nanokitchen
3000
+ SaintFrank
3001
+ PopUpShop
3002
+ LikeSign
3003
+ HackerSquare
3004
+ FoxGazebo
3005
+ LightningBolts
3006
+ SonOfPingAndPong
3007
+ PhilzCoffee
3008
+ WallOfPhones
3009
+ FakeCrosswalk
3010
+ 25 23 64019391484
3011
+ Nanokitchen
3012
+ MPK20Roof
3013
+ BlueBottle
3014
+ Microkitchen
3015
+ BridgeClub
3016
+ ConstitutionDeli
3017
+ TechVendingMachine
3018
+ WoodenSculpture
3019
+ HalalTruck
3020
+ FukiSushiInOldenDays
3021
+ WallOfPhones
3022
+ SweetStop
3023
+ BurgerShack
3024
+ LikeSign
3025
+ Helpdesk
3026
+ OculusDemoLab
3027
+ HackerSquare
3028
+ MamaPennys
3029
+ PopUpShop
3030
+ ZucksOldOffice
3031
+ PhilzCoffee
3032
+ FullCircle
3033
+ NailPolishRoomBlock
3034
+ ChosHawkerCenter
3035
+ SwagStore
3036
+ 13 1 212806725134
3037
+ LivingTheDream
3038
+ Nanokitchen
3039
+ HotfixBar
3040
+ TechVendingMachine
3041
+ WallOfPhones
3042
+ NailPolishRoomBlock
3043
+ ColdBrewMachine
3044
+ Arcade
3045
+ OculusDemoLab
3046
+ Helpdesk
3047
+ MPK20Roof
3048
+ LikeSign
3049
+ FoxGazebo
3050
+ 24 4 265420743131
3051
+ BlueBottle
3052
+ FreshOrangeJuice
3053
+ SaintFrank
3054
+ TechVendingMachine
3055
+ FukiSushiInOldenDays
3056
+ ShuttlePlatform
3057
+ TuringInDominoes
3058
+ LightningBolts
3059
+ BahnAppetit
3060
+ WoodenSculpture
3061
+ FullCircle
3062
+ MPK20Roof
3063
+ Ballpit
3064
+ FakeCrosswalk
3065
+ BridgeClub
3066
+ Nanokitchen
3067
+ WallOfPhones
3068
+ HalalTruck
3069
+ SugarShack
3070
+ BurgerShack
3071
+ SwagStore
3072
+ TransportationHub
3073
+ DentalOffice
3074
+ ChosHawkerCenter
3075
+ 23 9 713781479313
3076
+ LivingTheDream
3077
+ SaintFrank
3078
+ VerveCoffee
3079
+ FoxPainting
3080
+ CafeEpic
3081
+ LikeSign
3082
+ BridgeClub
3083
+ Sol
3084
+ BahnAppetit
3085
+ ColdBrewMachine
3086
+ SonOfPingAndPong
3087
+ Ballpit
3088
+ HotfixBar
3089
+ MamaPennys
3090
+ SweetStop
3091
+ SwagStore
3092
+ Microkitchen
3093
+ FullCircle
3094
+ ZucksOldOffice
3095
+ ConstitutionDeli
3096
+ FoxGazebo
3097
+ TuringInDominoes
3098
+ HackerSquare
3099
+ 31 27 60293259887
3100
+ ChosHawkerCenter
3101
+ BlueBottle
3102
+ FukiSushiInOldenDays
3103
+ ZucksOldOffice
3104
+ LateHarvest
3105
+ WallOfPhones
3106
+ VerveCoffee
3107
+ ConstitutionDeli
3108
+ PopUpShop
3109
+ TechVendingMachine
3110
+ ZucksOffice
3111
+ ShuttlePlatform
3112
+ RainbowStairs
3113
+ FoxPainting
3114
+ MPK20Roof
3115
+ SwagStore
3116
+ Microkitchen
3117
+ BridgeClub
3118
+ ColdBrewMachine
3119
+ WoodenSculpture
3120
+ OculusDemoLab
3121
+ Harvest
3122
+ TransportationHub
3123
+ Ballpit
3124
+ Helpdesk
3125
+ CafeEpic
3126
+ HackerSquare
3127
+ Sol
3128
+ SugarShack
3129
+ BurgerShack
3130
+ FreshOrangeJuice
3131
+ 31 24 84720585902
3132
+ HalalTruck
3133
+ FreshOrangeJuice
3134
+ FakeCrosswalk
3135
+ BlueBottle
3136
+ SwagStore
3137
+ CafeEpic
3138
+ FullCircle
3139
+ WoodenSculpture
3140
+ Microkitchen
3141
+ VerveCoffee
3142
+ ZucksOffice
3143
+ PhilzCoffee
3144
+ SweetStop
3145
+ ColdBrewMachine
3146
+ SonOfPingAndPong
3147
+ HotfixBar
3148
+ SaintFrank
3149
+ BahnAppetit
3150
+ DentalOffice
3151
+ Ballpit
3152
+ Helpdesk
3153
+ ZucksOldOffice
3154
+ PopUpShop
3155
+ FoxPainting
3156
+ Nanokitchen
3157
+ LikeSign
3158
+ BridgeClub
3159
+ SugarShack
3160
+ MPK20Roof
3161
+ BurgerShack
3162
+ ConstitutionDeli
3163
+ 47 13 365979937144
3164
+ ZucksOldOffice
3165
+ OculusDemoLab
3166
+ PopUpShop
3167
+ CafeEpic
3168
+ TechVendingMachine
3169
+ LateHarvest
3170
+ FoxPainting
3171
+ TransportationHub
3172
+ Microkitchen
3173
+ WoodenSculpture
3174
+ Helpdesk
3175
+ SaintFrank
3176
+ SugarShack
3177
+ HotfixBar
3178
+ RainbowStairs
3179
+ PhilzCoffee
3180
+ HalalTruck
3181
+ Ballpit
3182
+ LivingTheDream
3183
+ SweetStop
3184
+ BridgeClub
3185
+ Nanokitchen
3186
+ SwagStore
3187
+ WallOfPhones
3188
+ SonOfPingAndPong
3189
+ Arcade
3190
+ ZucksOffice
3191
+ FakeCrosswalk
3192
+ HackerSquare
3193
+ LightningBolts
3194
+ MamaPennys
3195
+ BlueBottle
3196
+ DentalOffice
3197
+ VerveCoffee
3198
+ TuringInDominoes
3199
+ LikeSign
3200
+ BahnAppetit
3201
+ ChosHawkerCenter
3202
+ ColdBrewMachine
3203
+ ConstitutionDeli
3204
+ Sol
3205
+ FukiSushiInOldenDays
3206
+ Harvest
3207
+ BurgerShack
3208
+ ShuttlePlatform
3209
+ NailPolishRoomBlock
3210
+ MPK20Roof
3211
+ 8 6 439006129803
3212
+ TransportationHub
3213
+ Ballpit
3214
+ BlueBottle
3215
+ LateHarvest
3216
+ RainbowStairs
3217
+ SwagStore
3218
+ BridgeClub
3219
+ ZucksOffice
3220
+ 1 1 486654453489
3221
+ Arcade
3222
+ 10 3 752375272319
3223
+ FukiSushiInOldenDays
3224
+ Arcade
3225
+ HalalTruck
3226
+ LightningBolts
3227
+ Ballpit
3228
+ Harvest
3229
+ TransportationHub
3230
+ OculusDemoLab
3231
+ LivingTheDream
3232
+ ConstitutionDeli
3233
+ 48 11 851958278152
3234
+ ShuttlePlatform
3235
+ NailPolishRoomBlock
3236
+ TechVendingMachine
3237
+ PopUpShop
3238
+ FukiSushiInOldenDays
3239
+ ChosHawkerCenter
3240
+ Arcade
3241
+ BridgeClub
3242
+ VerveCoffee
3243
+ ConstitutionDeli
3244
+ TransportationHub
3245
+ Microkitchen
3246
+ BlueBottle
3247
+ RainbowStairs
3248
+ Ballpit
3249
+ FoxPainting
3250
+ WoodenSculpture
3251
+ Sol
3252
+ BahnAppetit
3253
+ FreshOrangeJuice
3254
+ BurgerShack
3255
+ SwagStore
3256
+ TuringInDominoes
3257
+ FoxGazebo
3258
+ DentalOffice
3259
+ LikeSign
3260
+ SweetStop
3261
+ FakeCrosswalk
3262
+ Helpdesk
3263
+ LivingTheDream
3264
+ WallOfPhones
3265
+ HalalTruck
3266
+ ZucksOldOffice
3267
+ Harvest
3268
+ MamaPennys
3269
+ SonOfPingAndPong
3270
+ CafeEpic
3271
+ ColdBrewMachine
3272
+ SaintFrank
3273
+ OculusDemoLab
3274
+ SugarShack
3275
+ FullCircle
3276
+ Nanokitchen
3277
+ PhilzCoffee
3278
+ LateHarvest
3279
+ LightningBolts
3280
+ HotfixBar
3281
+ MPK20Roof
3282
+ 42 3 444872591241
3283
+ VerveCoffee
3284
+ FullCircle
3285
+ LikeSign
3286
+ NailPolishRoomBlock
3287
+ FoxGazebo
3288
+ LightningBolts
3289
+ Harvest
3290
+ PhilzCoffee
3291
+ BahnAppetit
3292
+ ConstitutionDeli
3293
+ SugarShack
3294
+ SweetStop
3295
+ BurgerShack
3296
+ SaintFrank
3297
+ BlueBottle
3298
+ FreshOrangeJuice
3299
+ HalalTruck
3300
+ RainbowStairs
3301
+ ZucksOffice
3302
+ Arcade
3303
+ ChosHawkerCenter
3304
+ ZucksOldOffice
3305
+ BridgeClub
3306
+ LivingTheDream
3307
+ TuringInDominoes
3308
+ OculusDemoLab
3309
+ HotfixBar
3310
+ Sol
3311
+ SonOfPingAndPong
3312
+ WallOfPhones
3313
+ CafeEpic
3314
+ HackerSquare
3315
+ LateHarvest
3316
+ SwagStore
3317
+ ColdBrewMachine
3318
+ Helpdesk
3319
+ ShuttlePlatform
3320
+ MPK20Roof
3321
+ Nanokitchen
3322
+ Microkitchen
3323
+ FoxPainting
3324
+ FakeCrosswalk
3325
+ 18 7 599732144159
3326
+ LivingTheDream
3327
+ MPK20Roof
3328
+ BlueBottle
3329
+ BridgeClub
3330
+ VerveCoffee
3331
+ TuringInDominoes
3332
+ TechVendingMachine
3333
+ Arcade
3334
+ CafeEpic
3335
+ PopUpShop
3336
+ ZucksOldOffice
3337
+ Harvest
3338
+ FakeCrosswalk
3339
+ WallOfPhones
3340
+ LateHarvest
3341
+ HotfixBar
3342
+ Helpdesk
3343
+ Microkitchen
3344
+ 29 15 519355497822
3345
+ ChosHawkerCenter
3346
+ LateHarvest
3347
+ DentalOffice
3348
+ ConstitutionDeli
3349
+ Microkitchen
3350
+ SonOfPingAndPong
3351
+ SaintFrank
3352
+ TransportationHub
3353
+ BurgerShack
3354
+ ShuttlePlatform
3355
+ BahnAppetit
3356
+ LightningBolts
3357
+ FakeCrosswalk
3358
+ SwagStore
3359
+ HotfixBar
3360
+ VerveCoffee
3361
+ FukiSushiInOldenDays
3362
+ ColdBrewMachine
3363
+ PopUpShop
3364
+ LikeSign
3365
+ WallOfPhones
3366
+ BlueBottle
3367
+ TechVendingMachine
3368
+ FullCircle
3369
+ Arcade
3370
+ MPK20Roof
3371
+ MamaPennys
3372
+ LivingTheDream
3373
+ TuringInDominoes
3374
+ 22 4 559337753206
3375
+ ZucksOldOffice
3376
+ ZucksOffice
3377
+ BlueBottle
3378
+ TransportationHub
3379
+ HackerSquare
3380
+ MPK20Roof
3381
+ DentalOffice
3382
+ HotfixBar
3383
+ ShuttlePlatform
3384
+ PhilzCoffee
3385
+ FakeCrosswalk
3386
+ Nanokitchen
3387
+ WallOfPhones
3388
+ PopUpShop
3389
+ LikeSign
3390
+ ColdBrewMachine
3391
+ VerveCoffee
3392
+ SaintFrank
3393
+ FullCircle
3394
+ FukiSushiInOldenDays
3395
+ OculusDemoLab
3396
+ BahnAppetit
3397
+ 40 38 197929926597
3398
+ PhilzCoffee
3399
+ TransportationHub
3400
+ ShuttlePlatform
3401
+ FreshOrangeJuice
3402
+ FakeCrosswalk
3403
+ Sol
3404
+ Arcade
3405
+ NailPolishRoomBlock
3406
+ OculusDemoLab
3407
+ Harvest
3408
+ BlueBottle
3409
+ LikeSign
3410
+ LateHarvest
3411
+ ZucksOffice
3412
+ WoodenSculpture
3413
+ FukiSushiInOldenDays
3414
+ TechVendingMachine
3415
+ VerveCoffee
3416
+ ChosHawkerCenter
3417
+ ColdBrewMachine
3418
+ Helpdesk
3419
+ FoxPainting
3420
+ PopUpShop
3421
+ BahnAppetit
3422
+ ConstitutionDeli
3423
+ TuringInDominoes
3424
+ SugarShack
3425
+ HalalTruck
3426
+ ZucksOldOffice
3427
+ LightningBolts
3428
+ RainbowStairs
3429
+ FoxGazebo
3430
+ Nanokitchen
3431
+ HackerSquare
3432
+ LivingTheDream
3433
+ Microkitchen
3434
+ MamaPennys
3435
+ BurgerShack
3436
+ DentalOffice
3437
+ BridgeClub
3438
+ 12 4 987137677832
3439
+ SweetStop
3440
+ BurgerShack
3441
+ FreshOrangeJuice
3442
+ PopUpShop
3443
+ PhilzCoffee
3444
+ NailPolishRoomBlock
3445
+ FukiSushiInOldenDays
3446
+ ColdBrewMachine
3447
+ CafeEpic
3448
+ LightningBolts
3449
+ TransportationHub
3450
+ OculusDemoLab
3451
+ 45 33 810647356970
3452
+ Sol
3453
+ Helpdesk
3454
+ PhilzCoffee
3455
+ OculusDemoLab
3456
+ VerveCoffee
3457
+ LateHarvest
3458
+ Ballpit
3459
+ SweetStop
3460
+ DentalOffice
3461
+ NailPolishRoomBlock
3462
+ SwagStore
3463
+ BurgerShack
3464
+ SonOfPingAndPong
3465
+ MamaPennys
3466
+ ColdBrewMachine
3467
+ ConstitutionDeli
3468
+ FullCircle
3469
+ Nanokitchen
3470
+ ShuttlePlatform
3471
+ CafeEpic
3472
+ Microkitchen
3473
+ TuringInDominoes
3474
+ MPK20Roof
3475
+ SaintFrank
3476
+ Harvest
3477
+ LikeSign
3478
+ ZucksOffice
3479
+ ChosHawkerCenter
3480
+ WoodenSculpture
3481
+ SugarShack
3482
+ PopUpShop
3483
+ BridgeClub
3484
+ FukiSushiInOldenDays
3485
+ BlueBottle
3486
+ HalalTruck
3487
+ FreshOrangeJuice
3488
+ FakeCrosswalk
3489
+ ZucksOldOffice
3490
+ TechVendingMachine
3491
+ BahnAppetit
3492
+ LivingTheDream
3493
+ RainbowStairs
3494
+ WallOfPhones
3495
+ HotfixBar
3496
+ FoxPainting
3497
+ 36 10 621473889520
3498
+ Ballpit
3499
+ BahnAppetit
3500
+ BurgerShack
3501
+ TuringInDominoes
3502
+ SugarShack
3503
+ WoodenSculpture
3504
+ ConstitutionDeli
3505
+ LikeSign
3506
+ Helpdesk
3507
+ ShuttlePlatform
3508
+ LateHarvest
3509
+ FullCircle
3510
+ ZucksOffice
3511
+ PhilzCoffee
3512
+ Sol
3513
+ FoxPainting
3514
+ FreshOrangeJuice
3515
+ FakeCrosswalk
3516
+ Nanokitchen
3517
+ DentalOffice
3518
+ SwagStore
3519
+ BlueBottle
3520
+ FoxGazebo
3521
+ SonOfPingAndPong
3522
+ VerveCoffee
3523
+ ChosHawkerCenter
3524
+ NailPolishRoomBlock
3525
+ Microkitchen
3526
+ SaintFrank
3527
+ Arcade
3528
+ BridgeClub
3529
+ SweetStop
3530
+ HalalTruck
3531
+ PopUpShop
3532
+ Harvest
3533
+ HotfixBar
3534
+ 8 5 505722691450
3535
+ WallOfPhones
3536
+ Nanokitchen
3537
+ LikeSign
3538
+ FoxPainting
3539
+ SugarShack
3540
+ MamaPennys
3541
+ HalalTruck
3542
+ TransportationHub
3543
+ 8 4 934299450996
3544
+ SwagStore
3545
+ SonOfPingAndPong
3546
+ FoxPainting
3547
+ FakeCrosswalk
3548
+ TuringInDominoes
3549
+ LivingTheDream
3550
+ HackerSquare
3551
+ WoodenSculpture
3552
+ 17 11 909009538183
3553
+ LikeSign
3554
+ BridgeClub
3555
+ WoodenSculpture
3556
+ DentalOffice
3557
+ FukiSushiInOldenDays
3558
+ BahnAppetit
3559
+ Nanokitchen
3560
+ LivingTheDream
3561
+ TuringInDominoes
3562
+ ShuttlePlatform
3563
+ ZucksOffice
3564
+ TechVendingMachine
3565
+ Microkitchen
3566
+ WallOfPhones
3567
+ HackerSquare
3568
+ Harvest
3569
+ NailPolishRoomBlock
3570
+ 35 15 478556306862
3571
+ BridgeClub
3572
+ TransportationHub
3573
+ SonOfPingAndPong
3574
+ BlueBottle
3575
+ Harvest
3576
+ LivingTheDream
3577
+ LikeSign
3578
+ ZucksOffice
3579
+ Ballpit
3580
+ MamaPennys
3581
+ Sol
3582
+ FoxGazebo
3583
+ HotfixBar
3584
+ PhilzCoffee
3585
+ NailPolishRoomBlock
3586
+ SaintFrank
3587
+ WoodenSculpture
3588
+ CafeEpic
3589
+ WallOfPhones
3590
+ HackerSquare
3591
+ BurgerShack
3592
+ DentalOffice
3593
+ ZucksOldOffice
3594
+ Nanokitchen
3595
+ ShuttlePlatform
3596
+ OculusDemoLab
3597
+ VerveCoffee
3598
+ TechVendingMachine
3599
+ TuringInDominoes
3600
+ BahnAppetit
3601
+ ColdBrewMachine
3602
+ FreshOrangeJuice
3603
+ ChosHawkerCenter
3604
+ LateHarvest
3605
+ SwagStore
3606
+ 11 2 550451907030
3607
+ SugarShack
3608
+ BurgerShack
3609
+ LikeSign
3610
+ FoxPainting
3611
+ WallOfPhones
3612
+ CafeEpic
3613
+ SweetStop
3614
+ VerveCoffee
3615
+ PhilzCoffee
3616
+ TransportationHub
3617
+ SaintFrank
3618
+ 37 31 195387721186
3619
+ PhilzCoffee
3620
+ SonOfPingAndPong
3621
+ LikeSign
3622
+ ChosHawkerCenter
3623
+ Sol
3624
+ ConstitutionDeli
3625
+ Arcade
3626
+ SugarShack
3627
+ LateHarvest
3628
+ DentalOffice
3629
+ TransportationHub
3630
+ LightningBolts
3631
+ Helpdesk
3632
+ VerveCoffee
3633
+ FukiSushiInOldenDays
3634
+ WallOfPhones
3635
+ BridgeClub
3636
+ WoodenSculpture
3637
+ BurgerShack
3638
+ TuringInDominoes
3639
+ NailPolishRoomBlock
3640
+ MamaPennys
3641
+ FoxGazebo
3642
+ PopUpShop
3643
+ LivingTheDream
3644
+ FakeCrosswalk
3645
+ HalalTruck
3646
+ CafeEpic
3647
+ TechVendingMachine
3648
+ ZucksOldOffice
3649
+ FoxPainting
3650
+ BlueBottle
3651
+ ShuttlePlatform
3652
+ SweetStop
3653
+ Ballpit
3654
+ ZucksOffice
3655
+ FreshOrangeJuice
3656
+ 13 12 288611636879
3657
+ Nanokitchen
3658
+ Arcade
3659
+ Helpdesk
3660
+ PopUpShop
3661
+ OculusDemoLab
3662
+ HalalTruck
3663
+ FakeCrosswalk
3664
+ LikeSign
3665
+ HotfixBar
3666
+ BahnAppetit
3667
+ BridgeClub
3668
+ FoxPainting
3669
+ TechVendingMachine
3670
+ 42 8 825873191774
3671
+ LightningBolts
3672
+ LateHarvest
3673
+ CafeEpic
3674
+ FoxPainting
3675
+ NailPolishRoomBlock
3676
+ BlueBottle
3677
+ WallOfPhones
3678
+ ShuttlePlatform
3679
+ Harvest
3680
+ FullCircle
3681
+ RainbowStairs
3682
+ LikeSign
3683
+ ZucksOffice
3684
+ TuringInDominoes
3685
+ WoodenSculpture
3686
+ SwagStore
3687
+ HotfixBar
3688
+ HalalTruck
3689
+ MPK20Roof
3690
+ MamaPennys
3691
+ SugarShack
3692
+ ConstitutionDeli
3693
+ FakeCrosswalk
3694
+ PhilzCoffee
3695
+ Nanokitchen
3696
+ TechVendingMachine
3697
+ FreshOrangeJuice
3698
+ ZucksOldOffice
3699
+ DentalOffice
3700
+ FoxGazebo
3701
+ Microkitchen
3702
+ ChosHawkerCenter
3703
+ ColdBrewMachine
3704
+ Sol
3705
+ Ballpit
3706
+ BahnAppetit
3707
+ LivingTheDream
3708
+ SonOfPingAndPong
3709
+ SweetStop
3710
+ PopUpShop
3711
+ OculusDemoLab
3712
+ VerveCoffee
3713
+ 13 11 36591483009
3714
+ LivingTheDream
3715
+ ZucksOldOffice
3716
+ LightningBolts
3717
+ FukiSushiInOldenDays
3718
+ FreshOrangeJuice
3719
+ ZucksOffice
3720
+ FullCircle
3721
+ LikeSign
3722
+ ChosHawkerCenter
3723
+ TechVendingMachine
3724
+ TransportationHub
3725
+ WallOfPhones
3726
+ MamaPennys
3727
+ 2 2 844764780508
3728
+ TechVendingMachine
3729
+ Arcade
3730
+ 8 6 10658812981
3731
+ Harvest
3732
+ TechVendingMachine
3733
+ FreshOrangeJuice
3734
+ LightningBolts
3735
+ Sol
3736
+ DentalOffice
3737
+ BlueBottle
3738
+ ZucksOldOffice
3739
+ 21 9 634654833041
3740
+ NailPolishRoomBlock
3741
+ LightningBolts
3742
+ BlueBottle
3743
+ OculusDemoLab
3744
+ FullCircle
3745
+ Microkitchen
3746
+ TechVendingMachine
3747
+ ShuttlePlatform
3748
+ WallOfPhones
3749
+ LivingTheDream
3750
+ Ballpit
3751
+ MPK20Roof
3752
+ FreshOrangeJuice
3753
+ ConstitutionDeli
3754
+ ZucksOffice
3755
+ RainbowStairs
3756
+ ChosHawkerCenter
3757
+ MamaPennys
3758
+ Helpdesk
3759
+ Arcade
3760
+ SonOfPingAndPong
3761
+ 28 5 927739165937
3762
+ PhilzCoffee
3763
+ CafeEpic
3764
+ LightningBolts
3765
+ Harvest
3766
+ LateHarvest
3767
+ OculusDemoLab
3768
+ Arcade
3769
+ MamaPennys
3770
+ LikeSign
3771
+ Helpdesk
3772
+ SweetStop
3773
+ SwagStore
3774
+ RainbowStairs
3775
+ WoodenSculpture
3776
+ FakeCrosswalk
3777
+ ConstitutionDeli
3778
+ SugarShack
3779
+ ZucksOldOffice
3780
+ SaintFrank
3781
+ FoxPainting
3782
+ FreshOrangeJuice
3783
+ HotfixBar
3784
+ TechVendingMachine
3785
+ Microkitchen
3786
+ ZucksOffice
3787
+ BlueBottle
3788
+ HackerSquare
3789
+ ChosHawkerCenter
3790
+ 41 3 603270301156
3791
+ TechVendingMachine
3792
+ HalalTruck
3793
+ ShuttlePlatform
3794
+ WallOfPhones
3795
+ MPK20Roof
3796
+ LikeSign
3797
+ DentalOffice
3798
+ FukiSushiInOldenDays
3799
+ TransportationHub
3800
+ CafeEpic
3801
+ RainbowStairs
3802
+ FakeCrosswalk
3803
+ ZucksOffice
3804
+ BurgerShack
3805
+ Nanokitchen
3806
+ Harvest
3807
+ Arcade
3808
+ SwagStore
3809
+ Sol
3810
+ HackerSquare
3811
+ LightningBolts
3812
+ HotfixBar
3813
+ LateHarvest
3814
+ ConstitutionDeli
3815
+ SweetStop
3816
+ BridgeClub
3817
+ TuringInDominoes
3818
+ BahnAppetit
3819
+ NailPolishRoomBlock
3820
+ Helpdesk
3821
+ SaintFrank
3822
+ PhilzCoffee
3823
+ VerveCoffee
3824
+ FoxPainting
3825
+ Microkitchen
3826
+ FreshOrangeJuice
3827
+ ZucksOldOffice
3828
+ Ballpit
3829
+ SugarShack
3830
+ FoxGazebo
3831
+ BlueBottle
3832
+ 25 1 543645657850
3833
+ OculusDemoLab
3834
+ FakeCrosswalk
3835
+ LivingTheDream
3836
+ SwagStore
3837
+ Harvest
3838
+ ZucksOldOffice
3839
+ LikeSign
3840
+ MamaPennys
3841
+ ConstitutionDeli
3842
+ LightningBolts
3843
+ HotfixBar
3844
+ FreshOrangeJuice
3845
+ SaintFrank
3846
+ ChosHawkerCenter
3847
+ BurgerShack
3848
+ TransportationHub
3849
+ ZucksOffice
3850
+ WallOfPhones
3851
+ BridgeClub
3852
+ Ballpit
3853
+ RainbowStairs
3854
+ HalalTruck
3855
+ SweetStop
3856
+ Helpdesk
3857
+ TechVendingMachine
3858
+ 13 11 666195881624
3859
+ Sol
3860
+ WoodenSculpture
3861
+ ShuttlePlatform
3862
+ TechVendingMachine
3863
+ CafeEpic
3864
+ ConstitutionDeli
3865
+ MPK20Roof
3866
+ BlueBottle
3867
+ TuringInDominoes
3868
+ FukiSushiInOldenDays
3869
+ Nanokitchen
3870
+ LightningBolts
3871
+ FreshOrangeJuice
2018/quals/tourist.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The Facebook campus has **N** different attractions, numbered from 1 to **N**
2
+ in decreasing order of popularity. The name of the _i_th attraction is **Ai**,
3
+ a unique, non-empty string consisting of at most 20 characters. Each character
4
+ is either a lowercase letter ("a".."z"), uppercase letter ("A".."Z"), or digit
5
+ ("0".."9").
6
+
7
+ Alex enjoys visiting the campus repeatedly for tours (including the free
8
+ food!). Each time he visits, he has time to see exactly **K** of the
9
+ attractions. To decide which **K** he'll see, he sorts the **N** attractions
10
+ in non-decreasing order of how many times he's already seen them before,
11
+ breaking ties in decreasing order of popularity, and then chooses the first
12
+ **K** attractions in the sorted list. In other words, he prioritizes seeing
13
+ attractions which he's seen the fewest number of times previously, but also
14
+ opts to see the most popular attractions out of the ones he's seen an equal
15
+ number of times.
16
+
17
+ Alex has visited the Facebook campus **V**-1 separate times already, and is
18
+ about to go for his **V**th visit. Given that he's always followed the rules
19
+ stated above, and that he'll continue to, he'd like to determine which **K**
20
+ attractions he'll see on his **V**th visit. He'd like to list them in
21
+ decreasing order of popularity (in other words, in the same relative order as
22
+ they appear in the given list of all **N** attractions).
23
+
24
+ ### Input
25
+
26
+ Input begins with an integer **T**, the number of campuses. For each campus,
27
+ there is first a line containing the space-separated integers **N**, **K**,
28
+ and **V**. Then, **N** lines follow. The _i_th of these lines contains the
29
+ string **Ai**.
30
+
31
+ ### Output
32
+
33
+ For the _i_th campus, print a line containing "Case #_i_: " followed by **K**
34
+ space-separated strings, the names of the attractions that Alex sees on his
35
+ **V**th visit, in decreasing order of popularity.
36
+
37
+ ### Constraints
38
+
39
+ 1 ≤ **T** ≤ 80
40
+ 1 ≤ **K** ≤ **N** ≤ 50
41
+ 1 ≤ **V** ≤ 1012
42
+
43
+ ### Explanation of Sample
44
+
45
+ In the first case, Alex saw the LikeSign on his first visit and the Arcade on
46
+ his second visit. On his third visit he sees the SweetStop as its the most
47
+ popular of the attractions he hasn't yet seen.
48
+
49
+ In the third and fourth cases, Alex sees {LikeSign, Arcade, SweetStop} on his
50
+ first visit, then {LikeSign, Arcade, SwagStore}, then {LikeSign, SweetStop,
51
+ SwagStore}.
52
+
2018/quals/tourist.out ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Case #1: HotfixBar RainbowStairs Sol SweetStop CafeEpic LivingTheDream ZucksOffice TuringInDominoes OculusDemoLab LightningBolts NailPolishRoomBlock DentalOffice Nanokitchen PhilzCoffee SwagStore BahnAppetit FreshOrangeJuice FoxGazebo VerveCoffee ShuttlePlatform FakeCrosswalk BurgerShack TransportationHub FukiSushiInOldenDays ColdBrewMachine PopUpShop SonOfPingAndPong Harvest BlueBottle ZucksOldOffice MPK20Roof ChosHawkerCenter TechVendingMachine SugarShack WoodenSculpture FoxPainting Arcade Helpdesk BridgeClub ConstitutionDeli Microkitchen SaintFrank HalalTruck LateHarvest LikeSign MamaPennys WallOfPhones
2
+ Case #2: CafeEpic SonOfPingAndPong SweetStop
3
+ Case #3: LightningBolts Ballpit PopUpShop TuringInDominoes VerveCoffee
4
+ Case #4: RainbowStairs WallOfPhones FoxGazebo Helpdesk Arcade Harvest NailPolishRoomBlock FullCircle PopUpShop OculusDemoLab SaintFrank MamaPennys Sol FoxPainting HalalTruck LateHarvest FakeCrosswalk SugarShack BlueBottle SweetStop TuringInDominoes CafeEpic LivingTheDream DentalOffice ZucksOffice SonOfPingAndPong Nanokitchen ColdBrewMachine MPK20Roof WoodenSculpture PhilzCoffee BahnAppetit SwagStore FreshOrangeJuice ConstitutionDeli ShuttlePlatform LightningBolts ZucksOldOffice LikeSign TechVendingMachine Ballpit
5
+ Case #5: FullCircle FukiSushiInOldenDays WallOfPhones NailPolishRoomBlock Ballpit
6
+ Case #6: WoodenSculpture MPK20Roof Harvest Nanokitchen
7
+ Case #7: PopUpShop
8
+ Case #8: VerveCoffee LightningBolts BlueBottle SwagStore
9
+ Case #9: ShuttlePlatform
10
+ Case #10: FoxPainting BahnAppetit SweetStop LightningBolts ChosHawkerCenter ZucksOldOffice
11
+ Case #11: MamaPennys SwagStore LightningBolts FullCircle PhilzCoffee Harvest HackerSquare TransportationHub ShuttlePlatform FoxGazebo NailPolishRoomBlock WallOfPhones BlueBottle PopUpShop LikeSign HotfixBar
12
+ Case #12: FullCircle Sol MPK20Roof Arcade FoxPainting HotfixBar
13
+ Case #13: ShuttlePlatform NailPolishRoomBlock LightningBolts MamaPennys Microkitchen HalalTruck CafeEpic BahnAppetit PhilzCoffee SaintFrank BurgerShack FoxPainting HotfixBar FoxGazebo HackerSquare SwagStore LikeSign FullCircle Arcade VerveCoffee
14
+ Case #14: ConstitutionDeli TuringInDominoes Harvest HackerSquare NailPolishRoomBlock Ballpit BlueBottle OculusDemoLab Nanokitchen TechVendingMachine BahnAppetit VerveCoffee HalalTruck LivingTheDream SugarShack FoxPainting LateHarvest SonOfPingAndPong DentalOffice HotfixBar BridgeClub LikeSign MamaPennys SwagStore RainbowStairs BurgerShack
15
+ Case #15: LivingTheDream
16
+ Case #16: SaintFrank OculusDemoLab LikeSign DentalOffice FakeCrosswalk
17
+ Case #17: MamaPennys FukiSushiInOldenDays FoxPainting
18
+ Case #18: LikeSign SweetStop SwagStore
19
+ Case #19: SaintFrank HotfixBar Ballpit MPK20Roof PopUpShop ChosHawkerCenter HalalTruck FoxPainting Sol LivingTheDream SweetStop WallOfPhones HackerSquare LateHarvest TuringInDominoes LightningBolts ColdBrewMachine BurgerShack Nanokitchen
20
+ Case #20: Nanokitchen PhilzCoffee SaintFrank VerveCoffee LivingTheDream FakeCrosswalk FoxGazebo LikeSign FreshOrangeJuice BurgerShack NailPolishRoomBlock SonOfPingAndPong FoxPainting PopUpShop RainbowStairs TransportationHub ColdBrewMachine ZucksOffice ZucksOldOffice BahnAppetit
21
+ Case #21: MamaPennys FakeCrosswalk DentalOffice NailPolishRoomBlock HotfixBar Harvest ShuttlePlatform ConstitutionDeli BlueBottle BridgeClub LateHarvest VerveCoffee SweetStop HalalTruck SwagStore FreshOrangeJuice ZucksOldOffice FukiSushiInOldenDays CafeEpic SaintFrank Arcade MPK20Roof FoxPainting SugarShack ZucksOffice FullCircle LivingTheDream Helpdesk WallOfPhones RainbowStairs
22
+ Case #22: MPK20Roof BridgeClub FukiSushiInOldenDays ConstitutionDeli Sol TransportationHub BlueBottle LivingTheDream SugarShack MamaPennys BahnAppetit Nanokitchen HotfixBar LateHarvest Microkitchen HalalTruck BurgerShack Ballpit OculusDemoLab LightningBolts Harvest
23
+ Case #23: DentalOffice MamaPennys Microkitchen LightningBolts ConstitutionDeli Harvest FakeCrosswalk WoodenSculpture VerveCoffee PhilzCoffee CafeEpic SugarShack FoxPainting Arcade LateHarvest ColdBrewMachine SonOfPingAndPong
24
+ Case #24: Helpdesk ChosHawkerCenter SugarShack BlueBottle LivingTheDream
25
+ Case #25: MPK20Roof MamaPennys SugarShack FoxPainting RainbowStairs ColdBrewMachine FukiSushiInOldenDays PhilzCoffee Ballpit ZucksOldOffice TechVendingMachine
26
+ Case #26: LightningBolts HotfixBar ShuttlePlatform FukiSushiInOldenDays TransportationHub FoxGazebo NailPolishRoomBlock CafeEpic BahnAppetit ColdBrewMachine SugarShack
27
+ Case #27: TransportationHub SaintFrank
28
+ Case #28: Harvest TechVendingMachine
29
+ Case #29: DentalOffice Microkitchen TechVendingMachine Harvest PopUpShop SonOfPingAndPong ConstitutionDeli Helpdesk TuringInDominoes FoxPainting ZucksOldOffice SweetStop MamaPennys LikeSign TransportationHub BlueBottle LivingTheDream CafeEpic WoodenSculpture FukiSushiInOldenDays FoxGazebo SwagStore Sol SaintFrank RainbowStairs BurgerShack ShuttlePlatform BahnAppetit Nanokitchen LightningBolts PhilzCoffee Ballpit HotfixBar ColdBrewMachine FakeCrosswalk VerveCoffee FreshOrangeJuice OculusDemoLab FullCircle MPK20Roof LateHarvest SugarShack WallOfPhones ChosHawkerCenter NailPolishRoomBlock
30
+ Case #30: RainbowStairs LateHarvest CafeEpic LightningBolts SugarShack BridgeClub ShuttlePlatform ChosHawkerCenter TransportationHub SonOfPingAndPong
31
+ Case #31: OculusDemoLab Nanokitchen MPK20Roof CafeEpic LivingTheDream TuringInDominoes BurgerShack DentalOffice NailPolishRoomBlock Sol Harvest SonOfPingAndPong SwagStore FakeCrosswalk FoxGazebo TechVendingMachine FullCircle ZucksOldOffice ConstitutionDeli SugarShack PopUpShop FukiSushiInOldenDays ZucksOffice FoxPainting BlueBottle SweetStop MamaPennys RainbowStairs WallOfPhones LightningBolts SaintFrank ShuttlePlatform ChosHawkerCenter Arcade TransportationHub HackerSquare WoodenSculpture PhilzCoffee Microkitchen BahnAppetit
32
+ Case #32: CafeEpic
33
+ Case #33: DentalOffice BlueBottle
34
+ Case #34: ShuttlePlatform BlueBottle
35
+ Case #35: ShuttlePlatform TuringInDominoes FukiSushiInOldenDays WoodenSculpture TechVendingMachine ZucksOffice LikeSign ZucksOldOffice HalalTruck Sol OculusDemoLab RainbowStairs LightningBolts SugarShack FakeCrosswalk LateHarvest WallOfPhones ConstitutionDeli HotfixBar TransportationHub MamaPennys Arcade Ballpit FoxPainting
36
+ Case #36: BridgeClub ZucksOldOffice FreshOrangeJuice BurgerShack Microkitchen ColdBrewMachine NailPolishRoomBlock
37
+ Case #37: Nanokitchen ConstitutionDeli SaintFrank DentalOffice Ballpit FullCircle BlueBottle FakeCrosswalk OculusDemoLab FoxPainting Harvest ZucksOldOffice BurgerShack FreshOrangeJuice TransportationHub Microkitchen ShuttlePlatform FukiSushiInOldenDays LikeSign LateHarvest BridgeClub
38
+ Case #38: FukiSushiInOldenDays ColdBrewMachine FreshOrangeJuice CafeEpic SwagStore Helpdesk FullCircle MamaPennys BahnAppetit LateHarvest Harvest
39
+ Case #39: Helpdesk NailPolishRoomBlock HalalTruck ChosHawkerCenter BurgerShack LateHarvest SweetStop FukiSushiInOldenDays Nanokitchen SonOfPingAndPong MamaPennys Sol FullCircle PopUpShop VerveCoffee MPK20Roof ShuttlePlatform HackerSquare RainbowStairs SugarShack ColdBrewMachine LivingTheDream WallOfPhones ZucksOldOffice Ballpit
40
+ Case #40: WoodenSculpture Harvest FukiSushiInOldenDays PopUpShop ShuttlePlatform BahnAppetit NailPolishRoomBlock SwagStore SugarShack
41
+ Case #41: MPK20Roof FreshOrangeJuice LightningBolts BahnAppetit WoodenSculpture TransportationHub Helpdesk CafeEpic WallOfPhones Arcade FullCircle Microkitchen SugarShack Nanokitchen BurgerShack SweetStop ZucksOffice Sol SaintFrank DentalOffice BlueBottle VerveCoffee
42
+ Case #42: Microkitchen VerveCoffee HackerSquare PopUpShop
43
+ Case #43: FullCircle
44
+ Case #44: HalalTruck LikeSign Arcade Harvest LivingTheDream LightningBolts ChosHawkerCenter WoodenSculpture Helpdesk SwagStore NailPolishRoomBlock ColdBrewMachine CafeEpic BlueBottle ConstitutionDeli ZucksOldOffice FakeCrosswalk SugarShack WallOfPhones FukiSushiInOldenDays ZucksOffice SweetStop SonOfPingAndPong PopUpShop Microkitchen Nanokitchen DentalOffice BridgeClub ShuttlePlatform FoxPainting TransportationHub HotfixBar
45
+ Case #45: DentalOffice BahnAppetit WoodenSculpture LateHarvest BurgerShack ConstitutionDeli FoxGazebo VerveCoffee SweetStop
46
+ Case #46: LivingTheDream
47
+ Case #47: Arcade ConstitutionDeli HotfixBar
48
+ Case #48: CafeEpic SonOfPingAndPong FoxPainting BlueBottle Arcade SwagStore Sol BurgerShack FoxGazebo HotfixBar HalalTruck BridgeClub OculusDemoLab MPK20Roof Nanokitchen SugarShack ZucksOldOffice HackerSquare SaintFrank FakeCrosswalk Helpdesk ZucksOffice FukiSushiInOldenDays NailPolishRoomBlock LivingTheDream DentalOffice Harvest BahnAppetit WoodenSculpture PopUpShop LightningBolts MamaPennys FullCircle ConstitutionDeli Microkitchen PhilzCoffee WallOfPhones RainbowStairs VerveCoffee FreshOrangeJuice TransportationHub SweetStop TuringInDominoes
49
+ Case #49: ZucksOffice TransportationHub OculusDemoLab ChosHawkerCenter DentalOffice Microkitchen ShuttlePlatform CafeEpic SugarShack TuringInDominoes LivingTheDream ConstitutionDeli
50
+ Case #50: HackerSquare VerveCoffee HalalTruck ConstitutionDeli SugarShack PopUpShop Sol PhilzCoffee ShuttlePlatform BurgerShack LikeSign BlueBottle RainbowStairs LateHarvest Microkitchen ZucksOldOffice ZucksOffice SaintFrank TransportationHub FakeCrosswalk WallOfPhones SweetStop Harvest DentalOffice Ballpit LightningBolts FukiSushiInOldenDays SonOfPingAndPong WoodenSculpture TechVendingMachine HotfixBar ColdBrewMachine FoxGazebo
51
+ Case #51: ColdBrewMachine ZucksOldOffice
52
+ Case #52: WallOfPhones Ballpit ZucksOldOffice
53
+ Case #53: ChosHawkerCenter Arcade FoxGazebo FukiSushiInOldenDays WallOfPhones HackerSquare VerveCoffee BurgerShack HotfixBar FreshOrangeJuice WoodenSculpture
54
+ Case #54: WoodenSculpture
55
+ Case #55: SweetStop Harvest ZucksOffice OculusDemoLab HalalTruck Arcade BridgeClub MamaPennys SwagStore PhilzCoffee Sol CafeEpic LivingTheDream Microkitchen SugarShack NailPolishRoomBlock RainbowStairs BahnAppetit BlueBottle TransportationHub FullCircle ColdBrewMachine PopUpShop SaintFrank ChosHawkerCenter ZucksOldOffice Nanokitchen LateHarvest ConstitutionDeli FoxGazebo
56
+ Case #56: VerveCoffee PopUpShop OculusDemoLab ZucksOldOffice ZucksOffice
57
+ Case #57: BahnAppetit HackerSquare ZucksOffice Arcade FoxPainting NailPolishRoomBlock SonOfPingAndPong BlueBottle FreshOrangeJuice Helpdesk DentalOffice MamaPennys MPK20Roof Ballpit SweetStop TechVendingMachine ChosHawkerCenter LivingTheDream FullCircle SaintFrank CafeEpic PopUpShop ShuttlePlatform WoodenSculpture SugarShack TransportationHub PhilzCoffee LikeSign
58
+ Case #58: LikeSign Arcade SwagStore
59
+ Case #59: WallOfPhones
60
+ Case #60: ZucksOffice Sol HalalTruck Nanokitchen ConstitutionDeli TechVendingMachine ShuttlePlatform ColdBrewMachine BurgerShack Microkitchen Ballpit DentalOffice OculusDemoLab
61
+ Case #61: TransportationHub SonOfPingAndPong
62
+ Case #62: SaintFrank BlueBottle TransportationHub DentalOffice ColdBrewMachine MamaPennys
63
+ Case #63: NailPolishRoomBlock SonOfPingAndPong Helpdesk
64
+ Case #64: LivingTheDream Harvest PhilzCoffee MamaPennys
65
+ Case #65: FakeCrosswalk FreshOrangeJuice LightningBolts TuringInDominoes Sol SonOfPingAndPong ColdBrewMachine SaintFrank BahnAppetit
66
+ Case #66: ZucksOffice ChosHawkerCenter LivingTheDream FullCircle SaintFrank RainbowStairs MamaPennys ConstitutionDeli SugarShack TuringInDominoes MPK20Roof BridgeClub LightningBolts WallOfPhones FreshOrangeJuice SweetStop Nanokitchen Ballpit Sol LikeSign TransportationHub SonOfPingAndPong OculusDemoLab
67
+ Case #67: LateHarvest HalalTruck LightningBolts MamaPennys Harvest Helpdesk DentalOffice ColdBrewMachine TransportationHub SonOfPingAndPong RainbowStairs LikeSign FakeCrosswalk Ballpit FukiSushiInOldenDays FullCircle SugarShack CafeEpic FreshOrangeJuice ShuttlePlatform Nanokitchen TuringInDominoes NailPolishRoomBlock MPK20Roof BurgerShack SaintFrank HackerSquare
68
+ Case #68: TuringInDominoes VerveCoffee FukiSushiInOldenDays ShuttlePlatform TechVendingMachine ColdBrewMachine LightningBolts BridgeClub HotfixBar OculusDemoLab CafeEpic FakeCrosswalk SonOfPingAndPong FullCircle ZucksOffice Arcade SugarShack FoxGazebo MPK20Roof ConstitutionDeli WallOfPhones ChosHawkerCenter WoodenSculpture
69
+ Case #69: ColdBrewMachine WoodenSculpture LightningBolts SweetStop BahnAppetit FukiSushiInOldenDays BurgerShack ConstitutionDeli ChosHawkerCenter ShuttlePlatform LikeSign MPK20Roof Ballpit Sol TechVendingMachine NailPolishRoomBlock
70
+ Case #70: MPK20Roof DentalOffice LateHarvest Arcade SonOfPingAndPong FakeCrosswalk BurgerShack HackerSquare FoxGazebo Helpdesk ZucksOldOffice ZucksOffice LivingTheDream SwagStore WallOfPhones LikeSign ChosHawkerCenter BahnAppetit NailPolishRoomBlock Ballpit ShuttlePlatform HotfixBar SweetStop MamaPennys
71
+ Case #71: MPK20Roof ShuttlePlatform Sol TuringInDominoes FoxPainting WoodenSculpture Harvest Microkitchen SwagStore ZucksOffice BurgerShack Arcade
72
+ Case #72: TuringInDominoes SonOfPingAndPong
73
+ Case #73: WoodenSculpture WallOfPhones OculusDemoLab HalalTruck FreshOrangeJuice LivingTheDream MamaPennys Arcade
74
+ Case #74: BlueBottle NailPolishRoomBlock HackerSquare WallOfPhones LateHarvest BridgeClub Harvest Microkitchen WoodenSculpture ConstitutionDeli LightningBolts DentalOffice FullCircle SugarShack LivingTheDream PopUpShop RainbowStairs ChosHawkerCenter HotfixBar PhilzCoffee ColdBrewMachine ShuttlePlatform MPK20Roof Arcade CafeEpic SweetStop VerveCoffee SwagStore ZucksOffice FukiSushiInOldenDays TransportationHub HalalTruck Sol TechVendingMachine
75
+ Case #75: LightningBolts VerveCoffee
76
+ Case #76: CafeEpic Sol TransportationHub TuringInDominoes
77
+ Case #77: ZucksOldOffice FullCircle TransportationHub Helpdesk LivingTheDream
78
+ Case #78: HackerSquare SugarShack Harvest ConstitutionDeli BurgerShack WoodenSculpture FukiSushiInOldenDays TuringInDominoes ShuttlePlatform Sol SweetStop BridgeClub SonOfPingAndPong TransportationHub Helpdesk ZucksOldOffice Microkitchen FoxGazebo FullCircle
79
+ Case #79: Helpdesk SonOfPingAndPong MPK20Roof WoodenSculpture CafeEpic LivingTheDream HalalTruck FukiSushiInOldenDays OculusDemoLab
80
+ Case #80: SaintFrank SonOfPingAndPong WallOfPhones SweetStop VerveCoffee WoodenSculpture Nanokitchen
81
+ Case #81: SonOfPingAndPong
82
+ Case #82: ColdBrewMachine ConstitutionDeli Harvest MamaPennys
83
+ Case #83: LateHarvest ZucksOldOffice CafeEpic MPK20Roof SwagStore Microkitchen NailPolishRoomBlock FullCircle TuringInDominoes FukiSushiInOldenDays Harvest WoodenSculpture Arcade FoxGazebo WallOfPhones LikeSign ZucksOffice BridgeClub HackerSquare Nanokitchen BurgerShack FakeCrosswalk ConstitutionDeli
84
+ Case #84: MamaPennys TechVendingMachine LikeSign BurgerShack NailPolishRoomBlock FoxPainting FukiSushiInOldenDays TuringInDominoes
85
+ Case #85: OculusDemoLab VerveCoffee ZucksOffice BahnAppetit HalalTruck MPK20Roof FakeCrosswalk
86
+ Case #86: LikeSign Arcade SweetStop
87
+ Case #87: ZucksOffice HackerSquare Helpdesk SugarShack
88
+ Case #88: OculusDemoLab Ballpit ZucksOffice VerveCoffee SugarShack SaintFrank FoxGazebo RainbowStairs Nanokitchen TransportationHub LightningBolts BlueBottle BurgerShack WallOfPhones ConstitutionDeli MPK20Roof ChosHawkerCenter HalalTruck WoodenSculpture MamaPennys PopUpShop CafeEpic LivingTheDream LateHarvest FukiSushiInOldenDays FoxPainting
89
+ Case #89: ChosHawkerCenter FukiSushiInOldenDays HalalTruck TransportationHub LivingTheDream RainbowStairs ColdBrewMachine TechVendingMachine SugarShack
90
+ Case #90: Ballpit Helpdesk NailPolishRoomBlock MPK20Roof FullCircle TuringInDominoes BlueBottle OculusDemoLab HackerSquare LivingTheDream FakeCrosswalk FreshOrangeJuice PhilzCoffee FukiSushiInOldenDays Nanokitchen BridgeClub WallOfPhones LateHarvest ConstitutionDeli LikeSign VerveCoffee Microkitchen DentalOffice Sol ChosHawkerCenter TransportationHub ZucksOffice RainbowStairs HotfixBar SonOfPingAndPong BurgerShack PopUpShop Harvest LightningBolts TechVendingMachine HalalTruck
91
+ Case #91: BridgeClub LivingTheDream SaintFrank ZucksOldOffice
92
+ Case #92: ZucksOffice SweetStop
93
+ Case #93: BahnAppetit SaintFrank PopUpShop ColdBrewMachine BridgeClub
94
+ Case #94: PopUpShop FoxPainting LateHarvest TuringInDominoes BurgerShack LivingTheDream ChosHawkerCenter SugarShack BahnAppetit ColdBrewMachine Ballpit
95
+ Case #95: WallOfPhones RainbowStairs HackerSquare NailPolishRoomBlock DentalOffice ConstitutionDeli Harvest LivingTheDream BridgeClub Nanokitchen HalalTruck LightningBolts BurgerShack SonOfPingAndPong OculusDemoLab VerveCoffee ShuttlePlatform ZucksOffice TechVendingMachine TuringInDominoes LateHarvest Microkitchen
96
+ Case #96: TransportationHub BahnAppetit MamaPennys BlueBottle FreshOrangeJuice Microkitchen BurgerShack CafeEpic ShuttlePlatform
97
+ Case #97: WallOfPhones ConstitutionDeli BridgeClub TuringInDominoes BahnAppetit ZucksOffice OculusDemoLab Microkitchen Arcade ShuttlePlatform NailPolishRoomBlock SweetStop SwagStore HackerSquare TechVendingMachine SonOfPingAndPong
98
+ Case #98: Nanokitchen Arcade Ballpit SwagStore FreshOrangeJuice ShuttlePlatform LikeSign HotfixBar LivingTheDream RainbowStairs FoxPainting Harvest BahnAppetit VerveCoffee TransportationHub ConstitutionDeli CafeEpic SweetStop Helpdesk Sol FakeCrosswalk BurgerShack Microkitchen ColdBrewMachine MamaPennys
99
+ Case #99: ZucksOldOffice Harvest PopUpShop SonOfPingAndPong LikeSign SwagStore PhilzCoffee
100
+ Case #100: SweetStop
101
+ Case #101: PopUpShop PhilzCoffee MPK20Roof LightningBolts ChosHawkerCenter Microkitchen CafeEpic BlueBottle ZucksOffice BridgeClub Ballpit VerveCoffee ColdBrewMachine WoodenSculpture
102
+ Case #102: HackerSquare OculusDemoLab ZucksOldOffice FakeCrosswalk BridgeClub Harvest LateHarvest WoodenSculpture ZucksOffice Microkitchen LightningBolts Sol BlueBottle FullCircle SaintFrank SonOfPingAndPong PopUpShop LivingTheDream TransportationHub LikeSign Arcade BurgerShack ConstitutionDeli Nanokitchen ChosHawkerCenter SweetStop CafeEpic DentalOffice MamaPennys RainbowStairs FoxGazebo NailPolishRoomBlock
103
+ Case #103: SaintFrank Helpdesk ConstitutionDeli SweetStop Microkitchen LateHarvest MamaPennys PhilzCoffee Sol BlueBottle SonOfPingAndPong FullCircle
104
+ Case #104: FoxGazebo MPK20Roof WoodenSculpture Biryani
105
+ Case #105: SwagStore CafeEpic FreshOrangeJuice FullCircle WallOfPhones TuringInDominoes HalalTruck
106
+ Case #106: ConstitutionDeli LikeSign FoxGazebo BlueBottle BurgerShack Microkitchen TransportationHub TuringInDominoes SugarShack ZucksOldOffice HotfixBar LateHarvest LightningBolts NailPolishRoomBlock LivingTheDream FullCircle ZucksOffice CafeEpic SaintFrank SonOfPingAndPong OculusDemoLab Nanokitchen
107
+ Case #107: ConstitutionDeli VerveCoffee WoodenSculpture MPK20Roof LikeSign ZucksOffice Sol ZucksOldOffice MamaPennys
108
+ Case #108: PhilzCoffee CafeEpic FukiSushiInOldenDays Microkitchen RainbowStairs LivingTheDream WoodenSculpture FoxGazebo FoxPainting OculusDemoLab Sol SaintFrank FullCircle SweetStop ChosHawkerCenter ColdBrewMachine BahnAppetit Ballpit VerveCoffee TechVendingMachine PopUpShop TransportationHub ConstitutionDeli WallOfPhones FakeCrosswalk ZucksOldOffice MamaPennys NailPolishRoomBlock Helpdesk LikeSign HotfixBar LateHarvest Harvest Nanokitchen BridgeClub ZucksOffice BurgerShack DentalOffice Arcade ShuttlePlatform FreshOrangeJuice BlueBottle
109
+ Case #109: TuringInDominoes Microkitchen BridgeClub FreshOrangeJuice
110
+ Case #110: Microkitchen BurgerShack FukiSushiInOldenDays Nanokitchen HackerSquare Helpdesk
111
+ Case #111: SugarShack SweetStop ConstitutionDeli BlueBottle TransportationHub Helpdesk SonOfPingAndPong FakeCrosswalk FoxGazebo MamaPennys TechVendingMachine VerveCoffee LightningBolts Nanokitchen FukiSushiInOldenDays OculusDemoLab PopUpShop Harvest Ballpit MPK20Roof RainbowStairs TuringInDominoes ChosHawkerCenter DentalOffice FoxPainting
112
+ Case #112: ShuttlePlatform BridgeClub Microkitchen BlueBottle LightningBolts OculusDemoLab NailPolishRoomBlock SweetStop LikeSign ZucksOffice FullCircle HotfixBar SaintFrank LivingTheDream Helpdesk MPK20Roof Arcade ColdBrewMachine Sol WallOfPhones FoxPainting RainbowStairs DentalOffice FakeCrosswalk PhilzCoffee TuringInDominoes PopUpShop
113
+ Case #113: PhilzCoffee HalalTruck Microkitchen MPK20Roof ColdBrewMachine
114
+ Case #114: HalalTruck FreshOrangeJuice
115
+ Case #115: ColdBrewMachine
116
+ Case #116: FreshOrangeJuice ColdBrewMachine OculusDemoLab ZucksOffice FoxPainting Ballpit WoodenSculpture VerveCoffee BlueBottle HackerSquare LikeSign
117
+ Case #117: Harvest FukiSushiInOldenDays ZucksOldOffice NailPolishRoomBlock MPK20Roof
118
+ Case #118: HackerSquare FukiSushiInOldenDays BlueBottle ConstitutionDeli FoxGazebo
119
+ Case #119: ZucksOldOffice ChosHawkerCenter Harvest SonOfPingAndPong Nanokitchen TuringInDominoes HotfixBar MPK20Roof FoxGazebo Arcade HackerSquare Ballpit FukiSushiInOldenDays SugarShack CafeEpic Helpdesk ColdBrewMachine
120
+ Case #120: SwagStore BahnAppetit Harvest BridgeClub ZucksOffice WallOfPhones TechVendingMachine LateHarvest Microkitchen Nanokitchen ZucksOldOffice NailPolishRoomBlock DentalOffice FoxPainting Arcade VerveCoffee BlueBottle ShuttlePlatform Sol SugarShack LightningBolts TuringInDominoes MPK20Roof WoodenSculpture FakeCrosswalk HotfixBar BurgerShack FreshOrangeJuice FoxGazebo LikeSign ChosHawkerCenter MamaPennys LivingTheDream PopUpShop FullCircle TransportationHub SweetStop RainbowStairs PhilzCoffee SaintFrank HackerSquare
121
+ Case #121: FukiSushiInOldenDays FoxPainting LivingTheDream Helpdesk Arcade SweetStop RainbowStairs ConstitutionDeli Harvest VerveCoffee TechVendingMachine BlueBottle NailPolishRoomBlock Microkitchen CafeEpic Ballpit DentalOffice FreshOrangeJuice Sol FullCircle Nanokitchen SaintFrank PopUpShop LikeSign HackerSquare FoxGazebo LightningBolts SonOfPingAndPong PhilzCoffee WallOfPhones FakeCrosswalk
122
+ Case #122: Nanokitchen MPK20Roof BlueBottle Microkitchen BridgeClub ConstitutionDeli TechVendingMachine FukiSushiInOldenDays WallOfPhones SweetStop BurgerShack LikeSign Helpdesk OculusDemoLab HackerSquare MamaPennys PopUpShop ZucksOldOffice PhilzCoffee FullCircle NailPolishRoomBlock ChosHawkerCenter SwagStore
123
+ Case #123: HotfixBar
124
+ Case #124: WallOfPhones HalalTruck SugarShack BurgerShack
125
+ Case #125: HotfixBar MamaPennys SweetStop SwagStore Microkitchen FullCircle ZucksOldOffice ConstitutionDeli FoxGazebo
126
+ Case #126: ChosHawkerCenter BlueBottle FukiSushiInOldenDays ZucksOldOffice LateHarvest WallOfPhones VerveCoffee ConstitutionDeli PopUpShop TechVendingMachine ZucksOffice ShuttlePlatform RainbowStairs FoxPainting MPK20Roof SwagStore Microkitchen BridgeClub ColdBrewMachine WoodenSculpture OculusDemoLab Harvest HackerSquare Sol SugarShack BurgerShack FreshOrangeJuice
127
+ Case #127: SwagStore CafeEpic FullCircle WoodenSculpture Microkitchen VerveCoffee ZucksOffice PhilzCoffee SweetStop ColdBrewMachine SonOfPingAndPong HotfixBar SaintFrank BahnAppetit DentalOffice Ballpit Helpdesk ZucksOldOffice PopUpShop FoxPainting Nanokitchen LikeSign BridgeClub SugarShack
128
+ Case #128: PhilzCoffee HalalTruck Ballpit LivingTheDream SweetStop BridgeClub Nanokitchen SwagStore WallOfPhones SonOfPingAndPong Arcade ZucksOffice FakeCrosswalk
129
+ Case #129: TransportationHub Ballpit RainbowStairs SwagStore BridgeClub ZucksOffice
130
+ Case #130: Arcade
131
+ Case #131: Ballpit Harvest TransportationHub
132
+ Case #132: ShuttlePlatform NailPolishRoomBlock TechVendingMachine PopUpShop FukiSushiInOldenDays ChosHawkerCenter Arcade BridgeClub LightningBolts HotfixBar MPK20Roof
133
+ Case #133: VerveCoffee FullCircle LikeSign
134
+ Case #134: ZucksOldOffice Harvest FakeCrosswalk WallOfPhones LateHarvest HotfixBar Helpdesk
135
+ Case #135: BahnAppetit LightningBolts FakeCrosswalk SwagStore HotfixBar VerveCoffee FukiSushiInOldenDays ColdBrewMachine PopUpShop LikeSign WallOfPhones BlueBottle TechVendingMachine FullCircle Arcade
136
+ Case #136: ZucksOldOffice ZucksOffice BlueBottle TransportationHub
137
+ Case #137: PhilzCoffee TransportationHub ShuttlePlatform FreshOrangeJuice FakeCrosswalk Sol OculusDemoLab Harvest BlueBottle LikeSign LateHarvest ZucksOffice WoodenSculpture FukiSushiInOldenDays TechVendingMachine VerveCoffee ChosHawkerCenter ColdBrewMachine Helpdesk FoxPainting PopUpShop BahnAppetit ConstitutionDeli TuringInDominoes SugarShack HalalTruck ZucksOldOffice LightningBolts RainbowStairs FoxGazebo Nanokitchen HackerSquare LivingTheDream Microkitchen MamaPennys BurgerShack DentalOffice BridgeClub
138
+ Case #138: PhilzCoffee NailPolishRoomBlock FukiSushiInOldenDays ColdBrewMachine
139
+ Case #139: Sol Helpdesk PhilzCoffee OculusDemoLab VerveCoffee LateHarvest Ballpit SweetStop DentalOffice NailPolishRoomBlock SwagStore BurgerShack SonOfPingAndPong MamaPennys ColdBrewMachine ConstitutionDeli FullCircle Nanokitchen ShuttlePlatform CafeEpic Microkitchen TuringInDominoes MPK20Roof SaintFrank Harvest LikeSign ZucksOffice ChosHawkerCenter WoodenSculpture SugarShack WallOfPhones HotfixBar FoxPainting
140
+ Case #140: Nanokitchen DentalOffice SwagStore BlueBottle FoxGazebo SonOfPingAndPong VerveCoffee ChosHawkerCenter NailPolishRoomBlock Microkitchen
141
+ Case #141: WallOfPhones Nanokitchen MamaPennys HalalTruck TransportationHub
142
+ Case #142: TuringInDominoes LivingTheDream HackerSquare WoodenSculpture
143
+ Case #143: BridgeClub WoodenSculpture DentalOffice FukiSushiInOldenDays BahnAppetit Nanokitchen LivingTheDream TuringInDominoes ShuttlePlatform ZucksOffice TechVendingMachine
144
+ Case #144: Sol FoxGazebo HotfixBar PhilzCoffee NailPolishRoomBlock SaintFrank WoodenSculpture CafeEpic WallOfPhones HackerSquare BurgerShack DentalOffice ZucksOldOffice Nanokitchen ShuttlePlatform
145
+ Case #145: WallOfPhones CafeEpic
146
+ Case #146: PhilzCoffee SonOfPingAndPong LikeSign ChosHawkerCenter Sol ConstitutionDeli Arcade SugarShack LateHarvest DentalOffice TransportationHub LightningBolts Helpdesk VerveCoffee FukiSushiInOldenDays WallOfPhones BridgeClub WoodenSculpture BurgerShack TuringInDominoes HalalTruck CafeEpic TechVendingMachine ZucksOldOffice FoxPainting BlueBottle ShuttlePlatform SweetStop Ballpit ZucksOffice FreshOrangeJuice
147
+ Case #147: Nanokitchen Arcade Helpdesk PopUpShop OculusDemoLab HalalTruck LikeSign HotfixBar BahnAppetit BridgeClub FoxPainting TechVendingMachine
148
+ Case #148: WoodenSculpture SwagStore HotfixBar HalalTruck MPK20Roof MamaPennys SugarShack ConstitutionDeli
149
+ Case #149: LivingTheDream ZucksOldOffice LightningBolts FukiSushiInOldenDays FreshOrangeJuice ZucksOffice FullCircle TechVendingMachine TransportationHub WallOfPhones MamaPennys
150
+ Case #150: TechVendingMachine Arcade
151
+ Case #151: Harvest TechVendingMachine FreshOrangeJuice LightningBolts Sol DentalOffice
152
+ Case #152: NailPolishRoomBlock LightningBolts BlueBottle RainbowStairs ChosHawkerCenter MamaPennys Helpdesk Arcade SonOfPingAndPong
153
+ Case #153: PhilzCoffee ZucksOffice BlueBottle HackerSquare ChosHawkerCenter
154
+ Case #154: FoxPainting Microkitchen FreshOrangeJuice
155
+ Case #155: TechVendingMachine
156
+ Case #156: ShuttlePlatform TechVendingMachine CafeEpic ConstitutionDeli MPK20Roof BlueBottle TuringInDominoes FukiSushiInOldenDays Nanokitchen LightningBolts FreshOrangeJuice
2018/round1/273247077253892.jpg ADDED

Git LFS Details

  • SHA256: c9363a031a59d7a295eab98fe7edb55f1a03e20192197c4b389d776d5f8b31f2
  • Pointer size: 130 Bytes
  • Size of remote file: 12.4 kB
2018/round1/2796578177295687.jpg ADDED

Git LFS Details

  • SHA256: a6018eb730ab1c6450e8c2d534b8eca4deb16746f451c3f0850e4d22e57fd4b2
  • Pointer size: 129 Bytes
  • Size of remote file: 7.47 kB