Problem Statement
There is a group of n people. The people are numbered 0 through n-1. Person number 0 is the principal witness. Exactly one of people 1 through n-1 is the killer. In addition to the n people there is a single detective who wants to find the killer.
Whenever the detective talks to a person, he can determine with absolute certainty whether the person is the killer or not. Thus, all he needs to do is to talk to all the people in some order and he will certainly find the killer. However, the time needed to find the killer depends on the order in which the detective talks to the suspects.
During the investigation the detective maintains a list of his suspicion levels: for each person between 0 and n-1, inclusive, the suspicion level of that person is an integer between 0 and 9, inclusive. (The larger the number, the more the detective currently suspects the person.) Initially, the suspicion levels of all n suspects are equal to 0. At the beginning of investigation, the detective will interview the principal witness (person 0) and he will use the information he receives to update his suspicion levels. (The way this works is explained in detail below.)
The investigation then proceeds in rounds. Each round of investigation looks as follows: First, the detective must choose whom to interview next. Then, the detective interviews the chosen person. If that person is the killer, the investigation is over. Otherwise, the detective will receive new information from the witness and he will use it to update his suspicion levels.
When choosing whom to interview next, the detective decides as follows:- He must choose a person he did not interview yet.
- Among those, he must choose a person with the highest suspicion level.
- Among those, he may choose any person.
You are given a
For each k between 1 and n-1, we are now going to solve the following problem: Assume person k is the killer. What is the smallest number of rounds of interviewing (NOT counting the initial interview with person 0) the detective needs to interview in order to find the killer? Let's denote the answer to this question as ans[k]. In other words, ans[k] is the smallest value X such that there is a valid sequence of X people the detective could interview after person 0 (according to the above rules) that ends with person k.
Compute the value ans[k] for each valid k. Return the sum of k*ans[k] over all valid k. (For example, if n=4, return the value 1*ans[1] + 2*ans[2] + 3*ans[3].)
Definition
- Class:
- Tdetective
- Method:
- reveal
- Parameters:
- String[]
- Returns:
- int
- Method signature:
- int reveal(String[] s)
- (be sure your method is public)
Constraints
- s will contain n elements.
- n will be between 2 and 50, inclusive.
- Each element in s will contain exactly n characters.
- Each character in s will be between '0' and '9', inclusive.
- s will be symmetric, so s[i][j] will be equal to s[j][i].
- Diagonal characters are not significant, so s[i][i] will be equal to '0'.
Examples
{"000","000","000"}
Returns: 3
Nobody knows anything about anybody else. If the killer is person 1, the smallest number of rounds is ans[1]=1: after the initial interview of person 0 there will be a single round in which the detective interviews person 1. If the killer is person 2, the smallest number of rounds is again ans[1]=1: after interviewing person 0 both other people have the same suspicion level, so the detective can also choose person 2 in the first round. The correct return value is 1*1 + 2*1 = 3.
{"0224","2011","2104","4140"}
Returns: 10
After the initial interview the detective will always choose person 3 in the first round. If person 3 is not the killer, the detective will receive new information that will increase the suspicion level of person 2. Therefore, in the second round the detective will interview person 2. If person 2 is also not the killer, there will be a third round in which the detective interviews the last remaining person: person 1. Hence, the answers are ans[1]=3, ans[2]=2, and ans[3]=1. Therefore, the correct return value is 1*3 + 2*2 + 3*1 = 10.
{"0886","8086","8801","6610"}
Returns: 12
{"064675511","603525154","430262731","652030511","726302420","552020464","517544052","153126500","141104200"}
Returns: 170
{"0313131","3030020","1301132","3010031","1010003","3233003","1021330"}
Returns: 37
{"0553164125202450","5025652200266624","5205234115644213","3550560154033525","1625015646623311","6536104445565352","4240540235536143","1211642020366065","2015443204430524","5054655040513324","2260655345014065","0643263631100116","2643356603400646","4625331053016015","5212154622614103","0435123544566530"}
Returns: 531
{"010333212203120031","103313121220212022","030130000323221322","331031311320331322","313303033111002332","330130231111022032","210302012230310201","120133102001232332","210131220032033200","223311200001133002","022211303000200310","303011012100300331","122300320123000303","212302133300003131","021122023300030012","003330232033310032","322233030013031302","122222120201312220"}
Returns: 308
{"0556668877113063","5004114778403636","5006016381667278","6460127061421737","6101031607186602","6112300160522864","8467100651160577","8730616063030886","7786065608076864","7811701380154457","1464151001000143","1062826375000513","3371620064000000","0627685884150003","6373067865410005","3687247647330350"}
Returns: 710
{"01","10"}
Returns: 1
{"0131344","1032004","3302321","1220200","3032032","4020301","4410210"}
Returns: 55
{"03","30"}
Returns: 1
{"05365053452625","50353320304650","33033065415630","65304305434453","53340520164614","03035066124030","52602601302514","30550610246626","43441132031223","50136204306243","24544426160351","66646056223036","25351312245300","50034046331600"}
Returns: 406
{"0589","5056","8509","9690"}
Returns: 10
{"02","20"}
Returns: 1
{"003211023320010","000102333022113","300122011213031","211031033003103","102302020203333","122120201323311","030002013013032","231320102030311","331301320202202","302023002013100","221002130103000","023333302330330","010133032103021","113031310003200","031331212000100"}
Returns: 238
{"08622871","80324203","63043378","22405572","24350747","82357043","70774403","13827330"}
Returns: 84
{"0620403760353","6034303640633","2303671722644","0430154415356","4361043737352","0075400107754","3314300051005","7674710064430","6421305606514","0025771460677","3663370456003","5345550317002","3346245047320"}
Returns: 373
{"013210120001031","100210322302102","300330011121213","223030300230031","113300013103003","000000331323333","130303023231321","221013200101332","021031300101212","031213211021313","002302300200122","121033111100111","012003332311012","301303231121101","123133122321210"}
Returns: 253
{"01","10"}
Returns: 1
{"045520","401332","510111","531052","231505","021250"}
Returns: 33
{"034223172","305223606","450402523","224040145","220407447","332070114","165141053","702441500","263574300"}
Returns: 139
{"0211222100","2000112010","1002202101","1020211012","2122001120","2101001222","2221110200","1010122022","0101220200","0012020200"}
Returns: 74
{"03033130000","30121313310","01033133201","32302002223","31320032330","13100001121","31303003010","03322130230","03223102010","01023213103","00130100030"}
Returns: 96
{"0010","0013","1102","0320"}
Returns: 11
{"05","50"}
Returns: 1
{"0216033","2014025","1106010","6460412","0004023","3211201","3502310"}
Returns: 76
{"0351445","3031443","5303221","1130523","4425044","4422404","5313440"}
Returns: 51
{"041042224241","403404004321","130002300313","040041214312","400401111440","242110041200","203210014412","200114101331","440411410400","233342434044","421140130401","113200210410"}
Returns: 145
{"011002222112","102200111200","120022211202","020000022121","002002111021","202020210010","212012022011","211211200100","211210200100","122100011000","100221100002","202110100020"}
Returns: 105
{"011100101011","101011001110","110000101011","100010100111","010101010010","010010100011","101101001111","000010001011","111000110111","010100101001","111111111001","101101111110"}
Returns: 91
{"043817202736","406570501888","360348315032","853004334785","174006276270","708460326454","253323030882","001372305618","215466050405","780724864070","383875810705","682504285050"}
Returns: 337
{"010440","102430","020111","441042","431400","001200"}
Returns: 37
{"0019161","0032796","1306025","9260801","1708015","6920103","1651530"}
Returns: 74
{"0665253105","6053007335","6505331541","5350066450","2030044646","5036407450","3716470416","1354644047","0345451403","5510606730"}
Returns: 209
{"01000000111","10111001111","01010000000","01100110000","01000100011","00011000100","00010001001","01000010000","11000100001","11001000000","11001010100"}
Returns: 82
{"00010110010","00010010000","00010101011","11100011100","00000100011","10101001010","11010000011","00110100111","00010001001","10101111001","00101011110"}
Returns: 87
{"033","306","360"}
Returns: 3
{"01712234","10405032","74074854","10704878","25440228","20882050","33572503","42488030"}
Returns: 112
{"00512415231","00055303130","50055534102","15505544422","25550312002","43553052154","10341503555","53442230522","21140155035","33020552305","10222452550"}
Returns: 127
{"0023300310332","0010441102420","2104031424402","3040042430111","3400030113320","0434303432011","0112030324401","3144143042312","1023132400410","0240324200302","3441304343003","3201210110003","2021011202330"}
Returns: 130
{"0416503552568","4061762233327","1603001434440","6130654862112","5706062702300","0605608218878","3214280585663","5248725045228","5336018400607","2342285500566","5341386265082","6241076206805","8702083876250"}
Returns: 270
{"0377344513","3032757205","7304344275","7240071633","3730035550","4547302475","4741520045","5226540065","1073574602","3553055520"}
Returns: 192
{"011","101","110"}
Returns: 3
{"00330124023424","00303240242422","33014032101132","30101044224030","03410332320424","12003013212034","24343104341142","40242340344010","02123233032141","24022144302021","32140214220213","44104010102030","22332341421304","42204420113040"}
Returns: 161
{"00320032102123","00113232133103","31021222012130","21201212312031","03110300301000","02223010300302","33210100300232","22220000220111","11033332023023","03110002202231","23221000320112","11100321021031","20330031231301","33010221312110"}
Returns: 280
{"00","00"}
Returns: 1
{"01551847355","10567710872","55040474546","56406681538","17060805436","87468064231","41780600381","70415400468","38554234000","57433386006","52686118060"}
Returns: 221
{"0653828","6042234","5402656","3220685","8266012","2358102","8465220"}
Returns: 48
{"066745076","608352074","680814426","738026050","451207482","524670645","004046068","772584600","646025800"}
Returns: 138
{"0103122326302335","1011563543411505","0103661036520111","3130226506025653","1562015121602260","2662105511354602","2316550151110446","3505151015062410","2430215100055423","6366111500421250","3450631004015304","0122051652101164","2105240251510402","3516264442314046","3015604125060401","5513026030442610"}
Returns: 640
{"006452432240604235","001321142502141564","610120021321506006","431055632041366636","522501434426156026","210510343121625443","410643035201262020","342334300524214045","221243500220045132","253041252055150651","402422022502324260","021161140520144503","615316220131016040","040652614524103010","416665245044630536","250604001625005014","360324243560413105","546663052103006450"}
Returns: 878
{"0787480959325","7013292764797","8104809639905","7340335010267","4283082492665","8903800995001","0295200647577","9760496038606","5631994308569","9490257880976","3792605659062","2906607067600","5757517696200"}
Returns: 239
{"03212020","30023200","20020332","12203112","23030032","02310020","20313203","00222030"}
Returns: 97
{"01222010212221","10000200110201","20001220022111","20002002222221","20120002001111","02200002110120","10200001110001","00022210220001","21020112021111","11220112200220","20221000100011","22121100120002","20121200121002","11111011101220"}
Returns: 132
{"0001010111","0010101101","0101010011","1010000000","0100011011","1010101010","0100110001","1100000010","1010110101","1110101010"}
Returns: 58
{"003024234034432","002310421104041","320441214423041","034013234300422","214102214044412","401320401032300","242224041203433","321310401342100","414441110340122","014300233020102","302043044204211","443042320040201","400443411122002","344210302010003","211220302211230"}
Returns: 371
{"042672776042","407730111631","270125211782","671034807510","732300468478","205400085377","712840061546","711068602846","611785120750","067543587066","438177445604","212087660640"}
Returns: 140
{"030200","301211","010320","223000","012001","010010"}
Returns: 54
{"0010121200111","0020001221022","1202112021002","0020112220120","1011021002200","2011202210020","1122120121002","2202021001122","0222012001222","0110201110222","1001200122020","1202020222201","1220002222010"}
Returns: 173
{"047421550141236000","402164657155002641","720646675321017163","416010775401754127","264100203354366661","146000400677615410","566724063101330676","557700602552775224","075530320440427720","113436154044660124","452057054401777600","151147120410741776","200736374677057455","301561372674503117","627465057071730526","061164627167415051","046261722207512500","013710640406576100"}
Returns: 690
{"001101","000011","100100","101011","010100","110100"}
Returns: 20
{"0020","0022","2200","0200"}
Returns: 13
{"0120","1073","2707","0370"}
Returns: 10
{"0011","0000","1001","1010"}
Returns: 8
{"01301213330223","10121023302132","31001010211133","02000322321010","11100120003300","20031002001031","12122000201311","33020200222133","33230022030311","30120002300230","02113112000131","21103031321030","23310313133303","32300113101030"}
Returns: 168
{"0010001101100111","0010111111000100","1101011010010000","0010101110001001","0101001111001000","0110000101111101","1111100000111000","1101110010010111","0111100101110001","1100110010011110","1000011010010111","0010011111101011","0001111001010111","1100010101101000","1000000101111000","1001010110111000"}
Returns: 164
{"000111110100001101","001000110111010011","010000110011101011","100010011110001100","100101011111111000","100010001001001111","111000011101111110","111110100000011100","000111100001100001","110110100011111001","011110000100010101","011011101100011001","001010101100000011","010010110111001111","101111110101010010","100101110010010011","011001100000111101","111001001111110110"}
Returns: 226
{"001222112120212211","001201000222112201","110020211220200012","220010222022202012","202100002201211010","210000221002112202","102202022112120211","101202202000002101","201221220200000220","122020102022000102","222200100200220102","020212200200001102","212221100020002222","110011200020002011","220212020001220112","220002212111201021","101110102000211200","112202110222212100"}
Returns: 235
{"011011001101010111","101100001011111001","110000111111011111","010011001000000100","100100100001010101","100100100000110111","001011010100100011","001000101110001111","111100010011000100","101000110001000001","011000011001001101","111010001110111010","010001100001000101","111011000001000000","011000010011000101","101111011010101000","101001110001000000","111011110110101000"}
Returns: 205
{"0011020101022222","0002212220211211","1002020111221000","1220000120020202","0200011022222020","2120102212201012","0200120212000220","1211022002101200","0212211000210202","1010222200210021","0220220122002101","2122200011001010","2110210100210122","2202002220101001","2100212002012001","2102020021102110"}
Returns: 170
{"02110110220202001","20010200011010100","10021201120212101","11201000102022021","00110010201000222","12200001210101012","10001002221120202","00100120021121001","20112220012112221","21200122102001010","01021011220011020","20200111100020221","01120022101201220","20220101211010002","01102020200220012","00022100212220100","10112221100102200"}
Returns: 230
{"000111000011100001","000101101101101011","000010111010110010","110000011110011011","101000001011111110","110000000100101110","011000011001001011","001100100100010100","011110100001111111","010101010000100001","101110000001000000","110010101010111110","111011001101000110","001110011001001000","010111101001010000","000011011001100011","011111101001100100","110100101100000100"}
Returns: 244
{"0110111011001111","1000011101011110","1000000110001111","0000010000110111","1000011011010101","1101101001110110","1100110100101001","0110001000011101","1010100000101101","1100110000111100","0001011011011110","0101110101100110","1110001111100101","1111110111111001","1111010000110001","1011101110001110"}
Returns: 151
{"001222111011112","002111121201112","120210212112222","212011002120111","211100012101011","210100102220100","112001011212022","121010101112110","112222110102011","021112211012212","101202110101111","112010222210121","112101010211001","112110211112001","222110201211110"}
Returns: 227
{"02020110222001011","20111110220001212","01012102212201200","21100020110200020","01200020202212111","11100002212020101","11022000211021100","00200200001020011","22212220011012212","22110110100121010","20202211100021120","00222000010020111","00001222122201111","11102010211010210","02201110201112021","11021001112111202","12001101200110120"}
Returns: 248
{"00100100111110010","00100100110100110","11000101010100011","00000110101100001","00000110110111010","11111010001110110","00011101011110101","00100010110111111","11011001010100011","11101011100101100","10010110000000110","11111111110001001","10001111000000100","00001001010100010","01000111011010001","11101101101001001","00110011100100110"}
Returns: 200
{"002210210101202","001211020121020","210100011100201","221000220112221","110002111010200","010020201111022","200212010221000","121210100010221","001011000012200","111101200000012","020111211000221","110201102000010","202220022020002","020202020121002","201102010210220"}
Returns: 173
{"010100100101101","101000000100001","010001111000001","100011011110111","000100101001111","001100010000101","101010011001110","001101100010001","001110100011111","110100000011101","000100011100110","100010101100111","100111101111010","000110101011100","111111011101000"}
Returns: 154
{"00121211011220211","00121001122200112","11011220200220112","22101221121200112","11110122012210211","20221011001220220","10222101221101111","11012110222001110","01210022020101210","12021022202200020","12012112020102110","22222210121021100","20201200000202110","00000011102120001","21112211201110001","11111211121010001","12221010000001110"}
Returns: 244
{"00011111011001011","00011101101011100","00010111110000110","11101101000000010","11010110111001000","11111011101011010","10101101010001101","11110110001100000","01101100011100110","10101010100001001","11001101100101101","00000001101000110","01000100000000010","11001110011000111","01100010101101010","10110100100111100","10000010011001000"}
Returns: 184
{"0101100100100101","1010000111010000","0100111101110011","1000011101100110","1010011101101100","0011100111110001","0011100010101010","1111110001010010","0100011001011010","0111110110001100","1011111000010100","0110010110101011","0000101011010000","1001100001100000","0011001110010000","1010010000010000"}
Returns: 187
{"0011220202001102","0011022021201120","1102200022222120","1120001102202021","2020020221201221","2200201012102020","0201010112101022","2001201000020200","0220211002001000","2122122020211012","0222211002022121","0020000201201110","1122121011210020","1110200200110022","0222222001212201","2001102002100210"}
Returns: 200
{"010011011101111001","101010100001011011","010101011101001010","001011111100010100","110101000110000000","101110110101110010","010101010100100111","101101101110100011","101100010011010101","101111110001101011","000010011000100101","111001001100110100","100001110111000100","110101001001000110","111000000100000101","000100101011111010","011001110100010100","110000111110001000"}
Returns: 205
{"001100000101110","001011001010101","110100111000111","101011110001100","010101110100110","010110101011110","001111011100110","001110101110010","011001110010111","100010110000111","010001011001111","100101000010101","111111101111010","101011111110100","011000001111000"}
Returns: 160
{"0000001010000101","0010100110011100","0101110111100011","0010001000111010","0110001011100110","0010001010100011","1001110110101100","0110001010100101","1110111101111111","0010100010110110","0011111111001000","0101000011001001","0101001010110111","1100101111001010","0011110011001100","1010010110011000"}
Returns: 198
{"000111111001110110","000101111100100001","000111000100101110","111000010011101010","101001001010011001","111010011110100101","110000011011110001","110101100010100010","110011100110111011","011001001000111000","000111111001101000","100100100010101001","111101111111000001","100010101100000110","001110001111000101","101001000000011001","101100011000010001","010011101001101110"}
Returns: 206
{"0011101100111011","0001011000000010","1000110111001100","1100011101110011","1010011011000110","0111100010000000","1101100110010000","1011001000101010","0010111000100001","0011100000101110","1001000111010101","1001001000100100","1010000101000101","0010100001111011","1101100101000100","1001000010101100"}
Returns: 156
{"0221002001020202","2001010111210010","2002022222100110","1120102000001011","0001000211000200","0120000211012202","2022000112200200","0120221010121100","0120111101202111","1120112010022101","0210002120020210","2100010202202010","0001020122020011","2010222111200010","0111000010111101","2001020011001010"}
Returns: 374
{"0100100110110101","1001001101111000","0000100110101111","0100111110101001","1011011010011000","0001101110101110","0101110000110101","1111010000011101","1011110000101001","0100000000111110","1111011011010001","1100101101100111","0111110111000111","1010011101011010","0010010001011100","1011001110111000"}
Returns: 171
{"001100110010011","001001101111111","110001100000011","100011111101011","000101011010001","011110000110101","111100001010000","100110000010011","010110100111110","010101001000111","110011111000111","010100001000100","010001001111010","111100011110100","111111010110000"}
Returns: 155
{"0110110111110011","1001000111010111","1001011110010010","0110010010000010","1000010000111110","1011101001011001","0010010011111011","1110000001000001","1111001001111111","1100011110111100","1000101011010100","1110111011101001","0000111011010100","0100100011101011","1111101010000100","1100011110010100"}
Returns: 154
{"01100200002122201","10010020011122102","10020222212121202","01201211010111102","00010111201121221","20221002002101010","02211000021200021","00211200221212200","00202002000100022","01110022001022112","21201211010200120","11111122102020100","22212001020201000","22111102020010220","21212002011102012","00002120212002100","12221010220000200"}
Returns: 232
{"002222200210110","002102120201020","220200122120202","212011202000111","200100110221102","220100121012221","211211022222120","022012202220020","002201220000001","221020220002112","102021220001221","010012200210120","102112100121022","120102220122200","002121001210200"}
Returns: 181
{"00101011110101100","00010001101011111","10010001010001000","01100011011000110","10000101000111101","00001010101010000","10010101010000010","11111010001011110","11000100000101110","10110010000010000","01010101000010111","10001000100011001","01001101011100111","11101001100100100","11011001101011000","01010011101010001","01001000001110010"}
Returns: 198
{"011111011011001010","101001111111110110","110001100001111101","100001000101001111","100000110101011101","111100111010001001","011011011010110111","110011100111101100","110001100000011111","010110010010101010","110001110100111110","111110010000000011","011000110110001110","011010101010000011","101111011110100000","011110111010100010","110100101111110100","001111101001010000"}
Returns: 225
{"001111110110001","000101001011010","100011011110000","110001000101111","101000000111101","111100001000000","100000010101001","101000101101001","011001010101010","101110111001110","111010000000011","010110111100011","000110000100001","010100001111000","100110110011100"}
Returns: 150
{"011001010001100110","101101110001100011","110101001110111110","011010110110110101","000101011110000111","111010101010001110","010101000011111110","110110000010110011","001011000001000110","001110000001010001","001111110000111010","110000101100010001","111100110010011100","001100110111100101","001001100010100010","101111101000110011","111011111010001100","010110010101010100"}
Returns: 237
{"001001111011101011","000000101101001000","100111111110010100","001001011111110110","001001111010010001","101110111101100011","111011000010100010","101111000011010101","111111000110110001","011101001001101011","101110111001000011","110101010110000010","100101101100011001","001110011000100011","110000000100100101","001100010000001011","100101100111010100","100011011110111100"}
Returns: 198
{"00110110111120111","00101011000222100","11000111120211110","10001022202022220","01010100022202101","10101010220012111","11120100200000121","01120000002010210","10120220022101102","10202200200200221","10022002200201101","12202000122020220","22120101000200122","02122200101000111","11121112121211011","10120121020221101","10001110211021110"}
Returns: 343
{"000220100212221111","000111021211110200","000221002111202110","212001101002220201","212001202010012110","011110110011102000","100121021100210000","020001202110122011","012120120101010122","221000111011112211","111011010100111100","211201001100110001","212201210111012112","210210121111100012","102022020210200001","121210001210100000","101010012100110001","100100012101221010"}
Returns: 425
{"0220222222220212","2010100222200200","2101122021102022","0010201102212221","2112022100202221","2020201221000020","2021210221002221","2201122000100011","2220022001121211","2212011010121222","2212200111011022","2001000022102022","0022202011120111","2202202022001010","1022222112221100","2021101112221000"}
Returns: 149
{"002102112110210","000202200011002","200010201012111","120001011222202","001001112012001","220110001200212","122010002211211","100110000121011","201121200212012","100202212001202","111210121002001","012220112120001","201202200200002","101001111000001","021212112211210"}
Returns: 363
{"0010220112021002","0011111001212020","1101220110011120","0110122200210111","2121011002122102","2122102110012020","0102120012221001","1012010010101000","1010011101010022","2100202010221010","0202102102010121","2111212012100021","1210221101000212","0011100000102001","0221020021221001","2001201020112110"}
Returns: 217
{"0220201010210000","2000000012102212","2002012000101020","0020100120110110","2001001002000210","0010002211120211","1020120201101101","0001022002121110","1102010001012020","0200211210220000","2111011102021212","1001020212201012","0210001120110010","0201221100200012","0121110120111102","0200011000220220"}
Returns: 243
{"010220122102200","100022002221121","000222221101011","202020212221111","222202212001111","022020011001211","102220010012001","202111100000222","221221000122111","121200001012120","020200102102011","211111202220112","210112021101022","021111021211202","011111121012220"}
Returns: 165
{"002201212220010022111022110012202101011110200222","000201001021100221000001001222010012001022211200","200210220110010112121200120021200101212112001110","222022011102201222111120111100200102021210201011","001200000011112201001012000222022111022011220110","110200010120012222122102022221200221202112200201","202000012001000121220202002012111002201111010021","102101100112220101022020222222221101010121002201","210100200211211212102211002212111000120222200001","201101012001200101010212012202122100200201112121","221012011000020112102211002101221120021012121000","010210121100221001121212210111221012011002200020","010210022202010002102000100211221011200202011021","101011021022102220120200221202110112210101120222","000122001001020122200011010022021120021221211222","021222112110021020100012122020020220220100211220","221202201010022201102001111220021011101021120200","212212112121202010011021002102201121221211100211","101101201011112110010221220021100020222100221202","102102220102020001100222221101200102000222222022","101112022021200021000101201220122121210122201221","002101202222020000221002002111101112010222011220","200210021111001102220000111021122200202020122022","210022201212001211121200120220001202120101000210","101100020002120110222011012101022222102122221011","102102020101021210220012102120011220010221210001","010102222220010212011210220100200121012002222122","020122022211220021012102111000121011022110111012","122022121001102220202122020001011020011220000111","221021222211122002110110100010210101012012111020","202202121122210002121110002102012222222002101021","010020121222212220002020210211101200202210212202","200020111211101011002121210110210201101001101002","101112010110011201011122221001222020212110100022","010012000021112212202100222120200202112222120010","121211210002120011021202201101201020112022110202","002002201200220212202021100000221211010200211010","101220012021012202201102011211200111101120220112","112122100011001011200020202212221222010000200220","101201112200212102121201120120020120210011000010","121111122010002021022220220121010122020100202221","022012112122211011022201212002201022000100200011","220222002112012211222010222101121111222022011011","010020100120121120220120212101010021120000101212","011100020210101100121120102101121000100020110120","221012020100022222202202001010020002012020021010","201110200202222201022221102112200210112121112101","200101111100122001221020112210122202020011120010"}
Returns: 1869
{"00100020022220200210222111202001111121222001102212","00002110210001110101202010020210121020121111120200","10002001022100010211202100122120011001012211220001","00002111020120102102110111112221021011001220221210","02220111112220221000221110110220211201210212202202","01011021211210221021211110112201000211212000100101","21011201021122010112120002110212220110000100022000","00111110012022021111102022210021012221112012211202","02001200012111220021201021202020220100201220201010","21221121101100201002000211120210122112212202200221","20202112210101211110211211210211020210121010210201","20112210111022212100110121221221211111002211212010","20022122100201212201012012200122100210220112100101","01000022101210201002102111221000201111011101021112","21012200222222010221110111220122120122101202011220","01102212201110100110111210001200110211020202200100","00021101011221000112022111011000121020110111020012","21210011001120211022012112100020000000002210122121","10100211201000211201202211012111112101021212100000","01120121120012102210002110102000121212020021110212","22212211202101110020020112201010112111221021000122","20012120001110112100201011102111001102020200202011","22201102101022012222010010110220001202101201011202","10111100022101121121100020112000102202220020010010","11011102211211111111111200020220222020101222202211","10010022111121101210210000011021212200101200222012","20111112212222200101211100020120102201201201101202","02211111021202201010001121200101111222200012000020","20220200200101011022120201000222011021000002002002","02122220022210120010012020112020110012110202200020","01222012211220200210112022202200221101100212212122","10010121001120200010010001012000222222012022022120","11002020210212111011100122110122010222000011210101","12121021222100212012100021011122102101112102201012","11111002020101001021211222211012020002212100120101","10002212112121120012112202220012210001010020120002","22010112011111212001100020022102200001022012100012","10111101020101210012122200121212212110011002201200","21002201221020101000201211220110012000011021002020","22101101012021021022220200000101011121102222101101","21210202121201100210101011100002022021120110112210","01222010220211221220022022200220011000021010000101","01121001201110001112200220010012100210221100100121","11102002020121221021101020122222120022120000000211","11222102222210020111020022100220221112011010010100","02220021001102102201001102000012102200001000100112","20012021100201100200021022102022010001212000000220","22022102022011210102102020200011101002012112112002","10010000120101201201210111020222010010201021012002","20102102011012002102212012202020121220010111020220"}
Returns: 1959
{"02011121110010100012000011010122121011002221122212","20010020121211002202020201201200210102102010102012","00011201221020012120222020122022121110102022012212","11101011100122211020211221022220021021221210120102","10110121101120211202021212020121210100100022101221","10201020222211102011201000002002000101201111201101","22012202111101000202100002212100102221212202010211","10111020001101112110021112211212211221200110221201","11211210012112022121001101010220020221012000202011","12200210101011111021010102112001010011212100220202","01101211210001221122001120222220210102220201221020","02011211100010221100211222020010102122111010002200","11222100110101121000012221112101111110112222012200","01020111211010211002022100002001200102210210220211","10022101012212000012021012002010110121010222112101","00111001212221000221200012212222220211010201211102","02211202211111000101201001022112201221001011021102","02102021101100021010022022200202111010012212221021","10220101222000120102021101101201202222020121011122","22002120112002211020001102210021101020110210102211","00220210000200022000001110020212020102021102121222","02212002010112200220002020022012221002021120001102","00211101101122101211120021102102020011120102002211","02022001111221000011100011002021110202202101120111","10221001002220110200122100220211010220200121010200","11012022120210221212001100201002001212112202020012","02100022012010020212001022021020222201001221122101","10222011112210012001220020200000111000020001121011","01220221022022222010022201100221211111212022201201","12021012202010021220201020002002212212011112121101","20222001202100121002110210202002222111000212212100","20201202010011022211222112001220112012122112121201","12102012002112122121020100212221001212122201212101","21221001211010120100222110211121001111200002020000","10110021000210001121010001211222110122002012200010","01101122201111122020100222201210211012020201002122","10120022210210212122001021001111112101021021022000","12010111112202111020221202101212212210002001120221","01121222022112000001001221002001120000010020111011","00020010112111110121222001021102200220101220102012","22210120220120001200110202102102202012010012012020","20020121012022220212111112200121200200020012211112","21212101000121201121020020202111001020221100102122","10202120001020211210202112112222122111002200211221","11011202222002120201100100112121202001110212002121","20120012022012112210200212220212120022101101002001","22201101201220211112112000211121200220122121220022","20212122020222111012212120102112100102000112100012","11102010102001000221201101010000001202112122202102","22221111120001122121221102111101100201120221112220"}
Returns: 2020
{"010000000001111110010100010110010101100011000000","101110001110001101011000101111110000111110011010","010101111110010001101111001111101101000001000111","011010101001110110101100110011100001011001010000","010100101001110010100101110000010000011111000001","001000111001111111010011010111001001111101000110","001111011000111001010100001110000001001011010010","001001100101100000011101001010000010101011001101","011111100111100110010010010000110101011010000011","011000011011000111011100110101101000010010000110","011000001101101101001010101100010111000100011111","100111011110101100001110101110001100101011001111","100111111011010111000010101001100001101110011001","101111100000100101011100111111111011110100101111","110001100011000011101110011111001001111110101110","110101001111110011000010111101110000000110110010","100111001100101100100110001100000010011110000011","011001100110111100010110010011111011110101111000","001110000000001010010010100110011000110000011101","110001111100010001101101011000001000110101011010","011100010111011000010000101111001100001000100000","101110110101011011010011101011111011101011000110","001001001011101111100100011111011000001111000100","001011010000000000010100110101101011010011010111","010110000111110100101101011001100110011110111001","100111001100011101010011101100010100111000111001","011000110011111110011110110000000010101000001010","111001100111011110101011010001010101011000010100","111101110001011001101110000000100011010011100111","011101000100111101001111100100001001101000101000","011100001100110101000101100010011010011110011101","110010001010010101100110010100101111110101100001","001001000101011001111111000001110010000011111100","101000001011000000001000110100010010100100111110","000000010010010011000101101010111100011001111010","101101101010111001000101000111010000101011111110","110001010001111001110100011001010101000011011101","010111001100011011110001110110110010001110001000","010111111001101010001110111101100011010001101101","010011000010111111010010100000110100010011000011","110010111101101110000111100010101001110100110101","101111110001000001010111000010011011101100011001","000000000000011101001000110011011111001010010000","010100100010100101110001110100101111100011101100","010000010011111001110000111001101111111001010110","001001010111011000100111000110101101101010011000","011001101111011110010101001010000111000100001000","001010011011110010100001110010110000101111000000"}
Returns: 1838
{"00111101211100212112100002121021110112100000102000","00002222021212001110021112121010010211102002111220","10011022001221121022002102202020221002201201020120","10101111110112110121020000220221000220110110001000","12110011021202021221220101221101001122021001200000","12010000120002211200021120221220102100202200200022","02211001211022221011221102021010021021120012112120","12211010211222222101022211221221010021222100100110","20010122020002012220000200010122121000111221021200","12012211200200012101121010020002011211101000221110","11101011000002212021020201200010021010101101010102","12212002020010210012110000001200102000011010022112","01210022000101202120101111102222122022210121010201","02122222202010021121202011211122212110101022201221","20110222002220021021202120002211222101222020101012","10212122111102202122000022212202220012010122202220","21101112222021120112020102102210200021122212010121","11012201210011011021122202212221202022202120121222","11222010202122221202001221002002020020221021111212","20211011011201122120022002211122001220202112010011","10002020010112200100001011110120210002102202121220","02022222022100002202001222010001212111012001211120","01200112010012200212110211010000102020222212021002","01101112202010101220022000211120101021201202212010","01000201010011220020121001212112011122122120011111","22201021001011022212121010211212002010212121000011","11222202002012021202100222020021211220012200002120","22022222120001010101111111202222010011101022011022","11201111000121222221000121020212120020010120000200","00021202100221222201100112022022200220001001211002","21220212201022101202200211221200100212221110011222","10011001220022120122010022122200101112111201021220","10200100100112222200221100201211021000120221200210","11200021212021220020110010112000202212020210022220","00101210111222200201022112100001120211101000010120","12021100020001100002010010200221022002002100020010","11022022011021012222012221212211011001221202111102","21202011010020121200210120010022021210102221222100","11210212111021201222102212010021101021022212101020","00012022100110212020012021101021220020201121021222","02101202111101202212222122210111001212210112011102","00210201201010012101202211201012220122211022211122","00010010200122221221001022022010210002121202110022","02101020101012022012212201020101100021212220111210","11002211020002120110120200000200200012100211000222","01200010221210001211212110010112021212021111001002","21010020110201120110111210210111020012111101010121","02100011211122021220210010102022221011021102201020","02200221010102122211220111220022122100220221202202","00000200002211201221002011020220000020022220221020"}
Returns: 2228
{"0001200100111102100222021102220221210000021100002","0010210101122000022121021021210111212011111102001","0100121022000201111020000121211101101100011211100","1000020021121220122211220210100011021101211001102","2210010102210220012121112211122022220122100222011","0122101211200112022102011001020122001212202200221","0010010110212220100211012002210210220202100202220","1100121012210021212202121220100002022200100000002","0022011100221111111110201010111200110200021121210","0121210200200102011012122100221221211202022200121","1101222222021212202222121221212121010112120220110","1202101120202112221000122012211010011210200222100","1201002010120201210002221102000021101002002200011","1022212011212022121011022222201220100211100212002","0002212210110200111110102202200022020112002012121","2010020112221200020222110021111012100222120121102","1011001210222110022120222112122001220202101211200","0212120111021212200112200112220011221000101211022","0212220211210110200201021202211221100112211111112","2102112210200012112020222012022002120122122212220","2221201011200112210200121211002221200112212112021","2101121202202102021000200112121002021122010012200","0002100121112011220212010210102002201011022022210","2202111202222201202220100222012020100001101210121","1100212112121220201210000211111100021202221110202","1012200201201220112021222011211020011000212002102","0221100210210202110111121102202010101210220102212","2110112000122221222212021120122020021110202010111","2221102112220221122001101221002012101212112101022","2110221012110001221202011102000200121222010002222","0010200011210101201221221122200121201121020212010","2110012022100200002020001000021020210112110121112","2101221002212221012020020212102201000000221122212","1111220201101022111212200000201010201200221022022","2210202012001101221120210010112202002120120111221","1102202211110020220202002102020100000102020001212","0211010201011000010001101111111001200002012000102","0011122222120212201111002021221102110021000001111","0100210000110112001212100011122100200200001111122","0101222002202122202222112000221200022100211020001","0102121100120101112120012222100122100002021000011","2111000022200002001211202120112122221001200002102","1111020012002020111220211202200011002011100002012","1120222012222201221210021010102110100010000010122","0010200020220112111111211001001222100012000101101","0211202010020221111222200220122122110110022010112","0011022021110011201202212121020120221110010111010","0000122012101020021220120011221112210120101201100","2102110201001212022010012221220222122121122212000"}
Returns: 1980
{"010011111110100111001000010011011010100110011","101110000000111010000000010011010011011011111","010001001000100110010000011111110011110000111","010001010010111010001010010010010100010111101","110000100110101100111001110001101010100110100","101100111100001011001101000001101111011010000","100011010011011101111011010100110100111111110","100101101110111010011001001001011110100010100","101001010010110110100001000100001011011111010","100011010000110010101111000111110001001000011","100110111001001110110000011001100111010110011","000000100010111010010011000101010100010101111","111110011101001000010110111011011111101100111","010100111101000010011011110000001010010111011","010111110011100010101101010101100110010110110","101010101010000001000111111110001001111111011","111101011111011000100010000110111111111011100","100001100000000100111011110011001011111111000","000010101110001011010110000001010101110100011","001010110011110001101000010101110111010010100","100111110100011001010100101110110000011010001","000001000100101100101000011010010110001100011","000100100101110111100000001011100110000001010","000011111101011101000000000111110001011011101","000010000000110101001000011010101010011110100","111110100010111101010100100001011011000110110","001000010010100100001110100110110000000111101","001000101101001110011001001010010111101110010","111100000100100111001111101100110101110111111","111011010111101001110011010000111100110111100","001011100110001010011011101011010001011111101","111100110101100010111101011111100100101001010","100011011000110111000000110001000100100110001","000101110011101010110110000111011010100011101","111011011010111011010110110100000101011001110","011001001110100111110001010110100010001000101","101010110000100111100000000111011100010100100","011101101011011111111001100011100010100010001","010001101100100111001101100100110011000011111","100110101011111101100100111111101000100000000","110111111010011111011001111111101100011001100","010100101001010111000011001011110110001010110","011110110001101010010001111011100111101011001","111000101111111100100110010110010010001001000","111100000111110100101101001010101101011000100"}
Returns: 1469
{"0101110100110110111001111100100110100110011011","1001100010110011101001100100000110110101001110","0001000101011110000100010111010000111100000000","1110000000011100001100110010011011011110010011","1100000011101101011111111110100010010110111100","1000000001010111000111101011111001100011101100","0000000011011111011011100000110010111000101001","1010000001110101000111011000011000000000100001","0100101001000100001110001011111010110101001000","0010111110100111111100011001001010011100110011","1100100101000010001011100101100100101100010100","1111011100001001101100101110100100011100110001","0011101000010111001011110011010011110101111100","1011111111001000111111011101011001110010011000","1110011001101000010111111101110100101001010110","0100111101011000111101101011001101001011111011","1100000001010101011100110110000010101111011110","1000101001000111100110001100001010100111010100","1101101011111101100101001100000100011111110100","0011110111010111111011110001010100110101101001","0000111110101110010101010111111111110000110110","1100111100101111001110101100111010111100011001","1101111000111011100101001101110011110001100000","1011100101001110100110001001010000110010001001","1000110111010111011001110011011010111100101010","1110100000110110111011100001001010111010111101","0011110010011001100010001000101101111111100100","0010010011101111000110111100011101111010011011","1000111010110010000011100010010110001001111010","0011011110001110000111111001100000111001111100","0001010111000101010011001111000001001011100100","1100000000110011001110000011100001111001000000","1101101011001000110011101100100001111011111110","0001010000001101000010100011001110100011010000","1110011010101110110111111111010111011001111011","0111101011011100001111111111010110100000001011","0011001001110011101001001111111110100111111000","1111100011111000111101001010000000001001010111","1001110000000101111000010111001011001000010011","0100010010001011111100100010111111101100010010","0000111101011001001110101110111010101000011101","1001100001111111111011000101110011101111100000","1100111010001101100101011101110010111000100001","0100110000101010111010000110011010000100100001","1101000001000011100010001001100010110111000000","1001001101010001000101010101000000110110101100"}
Returns: 1464
{"0101110010110110011001010111110000000110001010000","1000110111111001001001100011110111110111000110101","0000011011100000001010101110011000100100000111111","1000010111010001000100011010011111010110001110101","1100000100100110000100110111101101010001010111110","1111001000100110001001001000111010010101101010110","0010010110011111111001110000000101010010000111001","0101101000010110101000111110101010001100101010111","1111001001001011101111100001111000100001010111010","0111000010110111011101101010000010101110001111100","1110110001010110100100010011010100010001100010000","1101001101101010101101110010100111000000010011101","0100001010010100010111011010110000000101101100100","1000111101101010100000001001100011100111101101000","1000111111110100111110010100000011010010100101101","0101001011000000011011101111001011111110010011010","0000001110110110001011000011101011000100111100111","1000001001001011000001110010001111101101101111101","1110011111010011100100010001110111111010101010001","0001100011111010001011011000001011011000101000001","0010000010001011100100111111010010110111000101110","1100011011011001110100011111010000111001010101011","0110101111010001010010011111100000111111000011001","1001101100111010011111100000110010100010010010001","0011010101001101000111100011000100011010110101110","1010100100000011000011100001000010100110001000100","1111100101111001110011101000100100001011011000000","1100100010100101101011101100011101011101111101111","1100110110011100101000110010010100110110101110101","1111010010101000001011010001101101001001110101111","0011110110000001110100000001010011001010111110101","0101101000110000011000001011110011110010101010000","0101010101010111111110010100001100001010100111000","0101101000010111111100000001011100000110000110110","0110000011000101011011110100100100001100010010100","0101111000100011001111101001100100001011110100101","0000000101000001011101101011011010110001001011101","1111010101001101110010100101100001100010011010110","1101001001000111001010111110101111010100110110101","0100110010101100010011100011010000011000111000100","0000010100101110111100001001111110010011011111010","0000100010010001100001011011011000110111100010010","1001010101001100111100000111101100001101100111010","0111101011001110110011001001111011010010101010001","1111111111110001011000110000101111101110111101000","0010101011010111010011101001010010001000101010000","0111110101011010110010001101111001111111000000001","0010110110000001100011001001010001000100111000001","0111001100010010111101110001111000011010000100110"}
Returns: 1908
{"010100111110011001101001010001100101000101100000","100000111000001110110111110011110101110001100111","000111001111000101000011010111001100000110001001","101000001100100001111101010000001110110011000001","001000010011001110000001101010110101100111001100","001000000000110111110110010111011101100001001111","110000011100110001101110010111010101100001000011","110010100100100010100100001010100100010011101000","111100100010001010100101110010010110110000000111","101100110000001101100100100110110110101011011001","101010001000011011010011101000001010110000000110","001010000000110000011101111000011111100101101100","000101110001001111101001011000010100100110100000","100001100011001000010001111010100100111110011110","110010001110110111000001001100101110101111110111","011011000100101010011110110001100100111011111000","010011011010101100010110011100100100000101001111","101101100110101000111011000011111011000110101110","110101111100100001011111001101010011000000011000","010101000011010111101010100100000111111110100101","100100100001100101110101100000111101111100010110","010101111101000110101000011010111001001000110101","011001100010000111110000101010101101000110001001","111110001011111001101000101001001111011001111001","010010001111010100011011010000010011000101111100","111101101001110110000100100011100111110110110010","000010010011111010100111000110011101000011110010","001001100100001010110000001001001111110011101110","011011111100010001000110011000101110101011100100","111001100000000101100001010100110001100001100100","110010010100011111001110010011001001111111010011","010011101101100001101100101001000000010000110101","001101000011001001001111001110100011001100101101","111111111101111110011011011110000010100110010111","000100001111001001110001110110001101101010000100","110011100001000001111111111101101010101001001011","010111101111111100011000010111100111011101100011","010100011010010100011001010100110000101110010100","000000000100011100011101000010101011110101011011","101010000001111011011010110000101100111000110001","001110010100111101010010011110100110010001000001","110111110101001110000001101111100001101010110011","110000010001101101010101111111011000100101011100","000000000100011100101101111000110100011101100010","001011010101010111100011100100001001001000100010","010011001011011011011100100111011110010000100000","010001101010011011001000011100100101101001011001","011101101100001010010111000000111101101111000010"}
Returns: 1833
{"01000101010000101001001111101000111011111011001","10011010100000011010100011011111100011110001001","00000010000111010101000110101110000111110010001","01000110000000100100100111111001110101011011110","01000110101010000100000111100101111000111110010","10011001100101100010010001111001010100011110100","01111001010101110010110111111011110001100011101","10000110101001100010000111111100100111111011110","01001101011101101001001100101111001011000010111","10000010101111000010010110111110100100110011000","00001001110110111101111111110010000101010010011","00100110111010111001011000011001011010111011101","00101000011101000111101000011111110100000110110","00100111110010000001100100010111100000100100011","10010111101100001101001001011111110111000011000","01100010001100001010101100000110010010101001011","11000000101100110010000111110101111000111100111","00111000001010100010011011010100000100101101011","01000111010010011101110010100110001011001000111","10100000101111100010000110111100010001000110100","01010010001011010010010010000001101100010110100","00000110011100000110101110101010111010000101110","10000000101110110100010000110100111110100001010","10111011111001011001010011011110111100010101011","11111011011000001111110100011000111001011001010","11011111001000101100000100101110110101000111001","10111111111000001011011001011011000100111010000","01010111011111101101001110100000000011000011101","11110111110110100001010111100111100000100100110","01101001110011111111001101001010111001011001111","01100010111011110010010101101100011000101010101","01011110100111101000100000101000000111000101101","11011011010011101000111111001100011100000110001","10011110000110111001011111000110100000111001001","10001000100100001010111110000110100110010010000","00110101011010100100101101100001101000000000011","11100001100100110010011000010001001000011110110","11110011101000100011000011010101000000101100010","11101011010101011100001000101010010001001111110","11111101011100001000100110100100011010001101101","10011101000100011110000010100110010011110001011","00001100000011001101110101001001100011110000111","10111111111110100001100001110010101010100000000","11010011010100110100011111010101010000111000110","00010111100110001011110000011111000010110101010","00011001101011011110011110001100000111101101100","11100010101101011110000101010111110100011100000"}
Returns: 1523
{"0110211001011112011210111021002202200121121000011","1021002200100201001220011010100202001002212201200","1200112211021210002121111102001102012100121212120","0100101020211020202202221210000121102000110121000","2011000121211111120212210002011112200200020012220","1010001202200011101010121200200120121122111012102","1221010002020100211112112120101112112020210111020","0220120000002020020200120211110011111120020212100","0012200000012022210012120200221211122010200202211","1010122000122100100120022210112210221000110021001","0102220001020221122220111221110221210201221210101","1021102012201221001112100022002101200102021102201","1011100222010012220102122002212121012012210210221","1220101001220021010222021110201102102221102222010","1012110220221202201102121020212102201000110201120","2100110020112120211202202212220000011111012110120","0002112021102022020022102102221210111220002210000","1000201210202101201002201200121120120202100102012","1122011000210011010202202021002111112022222011021","2212201201211212002001212010112222120202100212101","1220111012210200200000121001000022021202120221022","0012202020022222222100021211021020200200122101021","1012211110111012122210011211020122200111200001122","1112121222102220000122100111222020100211220120021","1111012002102112212211100020211010210020102002201","0012021222200102120002210012120012010001001212221","2101002101220121002101112100112111112112212111112","1020200100122002201011110200211012012111100212012","0100021121102222210100022112022011011112102101200","0000100121101012220102221211200010122112102000101","2010101012022120112201021021200011022201101011120","2211111022211110211200100010000022100100021001202","0002121111202000121222221111111202110121212222112","2221202110111220001220200212101220201002112211122","2001211112220120111102212010010112020010202102221","0010021122101001121220001111122010202010220111220","0122012121002211102010000022122001020001020201010","1010210100210201220222120011112110000011202021220","2000022210001201202000112011110020110102022102111","1200020000122101022220110121221012001120122000200","1211012021202110012111221021111021220201020220200","2121211201221011002022020010000211022022202112200","1210010000110202202002002120221122200222020100021","0221001220212221210221010212100022112010211010122","0012111102101201101120020111001021010200210100222","0121221221020210021211102212101121211120020000022","0210210120122011000100102210211211220212220120021","1020202010002122012022220211002012221210002222201","1000020011111000021121211122010222100010001222110"}
Returns: 2125
{"00212012222022001200021211121011001202122200102122","00021021111021200011220002120221012222212222110110","20010222201121222211011221202002011220100110221112","12101112122100212011001021022000100121021101211101","21010211100001002112001111101111222112202210100002","00212002010011211021211001202220111122121121200220","12211001000221112202210101200101000010000202221012","21221210011200021001201100111202201002202101122121","21211000020011010201200121020201210121222000212010","21020101202101100222102100121122112022001000000120","21120001020212000100212021210200211002211120112220","00110022012012222120222221222022111020111002110021","22200120101101212000222011112122012002211022012102","21101110112210011010020021022011010100002110202210","02220210010220012210111011212122122101100100122020","00210112100211101101112012101001020012122021100120","10222121000221210212121022102222111222010200021010","20201020221100212020221010001020200221211010202210","01111200020201101200220101021201022202012201200210","01112121120000012000222210001110110011210020000110","02000222212220111222020112121210002120101022212122","22100110001222112222202201210211120121000200112101","10111101022220121102020022200012121022011220022112","20201011110200000012120020120102001122022201001210","10221000202212112101102201210020222101011222221021","12111110101111122010212010011212010001121000000021","11201221012210211000122120010112112202022201021022","22020001221212100020210211102110201212201101002011","10221201010222212111100001020101221002012222212120","02001212212010102021220102111001010000021122000210","12001200020221202201111021110001201102011221222122","11201012120221212010012202201110121110112220221110","00012102212100101201011020122021010012012200011100","01102100111111221021022021102102100211001202120110","12102101021120201020201120211011000211001200010211","22211100100001102220110110220011022012022212011200","02221210220200012201222200010001111101201221110010","22012202122020122121012211222020211210011020212010","12102102202120110202100001020001000020001222002202","21020200201110021111001212201211100201001100102120","22012102211112020120101211212112211211110021022210","22112121001001102020022220212122222220210000120012","02101200002021020102202020002222000122202001210221","02010121000220010010200120112210020210201010201220","11221221201102110220210020002022010012010122022022","01210022101110202000112020201022121111002210202110","20110012202022201200222110122021100102222001220101","11110201012012010221111200001211112200212022011021","21100212122201221111201122212121011011021122210202","20212021000120000000212011210020001000200210201120"}
Returns: 1962
{"01001211100022212110002011212000211100102212110","10010200222100200011100101011102221112121221210","00012212212102112200120222211001221122211012022","01100111122021202000211010212110012110120101020","10200100211200002210002000121010221002221002012","22211000200201101200101212010121220110200200210","10110000020002220021021101202102010221110001201","10210000122110112122120201211202121120121020220","12212201020211122022021220212102022022022200020","02121022202002011102211212200202011211210222222","02221002020202201121200211001211110011022222210","01102201202012002101001021221000021200011221221","20020001100102210222021222200200012111000011101","20210120122220001102112221002222221010010210211","22120121102020011100202222222222001220101121011","10100021210010100200011001010212121202022102201","20222102211201100122111012222220001011120101021","10202201011121121021120001020101111211211121000","11001022202020002200212000212201002220022201002","01000012221122002100022200020012000121222010021","01120101022001201120022121222010101212121002222","00210022210021011212201101220120201221221202011","20012110110112211022210011221021010212021002111","01200212222022200002110000011002010011211121210","10210100211222201000201000000012002010121120101","11200211021121212100111000212121112210022211111","20221022220220202020222002001122102110212020020","11112101100200212212222101002110020120201100202","21121021201102202020201102120010222112121200221","01010112122022222120010001110022121101021210201","00011200001002212001122012211201120111102022202","02100122221002220112001221200210001212011001221","22202201001002010100120001102110010021220211122","12212212211212020100001101022220100012111210222","11121001210121111120110022202101000001202110002","11110121020210220221222002111112000000022222211","01210122211011201122121111121011210001201102111","02202010211010021101212100002112121010121211121","11212211020000101202120210221010212021000012120","02122012212101022122222122102201210202001100222","21101001202100120122111112211121012211010012212","22010200222202111120020112012200221212010001002","12100002022211200201000221200120111201101001200","21212010022110121110222101000021100221202110221","12000222022212020000201211022222120211122022011","11221102221201102002211101202002220112221002102","00202010020111111021211011021121222111022201120"}
Returns: 1870
{"0001110101100000101101111101011111011001101110","0000010000001111111101110011000111110011101100","0001111101010010100100001001101100110011011111","1010100100101000110011000000111100101101001100","1011011101110001100101110011000000101110100010","1110100100101011010011001101110100101100011110","0010100110010011101111101000100011010111100011","1011111011010010100101011101111110100100100111","0000001100100001111101111010110001000000001110","1010100100110011110110010111000100101110101111","1001110011011100010010111101100000100101001110","0010101101101101101111100100000100011010110000","0101010000110110111100001001010000111011111110","0100000000111010010100100100111101000111011110","0110011101001100000011010110101111011011101001","0100111011010000101111011101000100011010100011","1111101111011001000000010101011110100011001001","0101010011101100001101101110101100011100100110","1100001010011001010000000001100101100010101011","1110101111011101010010111000101001001011100000","0001011001110011000101000111010101000001101111","1101111110010011010010101101111111000001110110","1100101010110100010101001010110101001001110011","1100100111100011100100001100001100000010001100","1010011110101001010101110101000000111011011001","1000010101110111110011011010111110000101001001","0100100011000010010010100101001110111110101010","1110110101101001101011001010000011011100000011","0011011110100110011101100100010101100110010111","1001010110001100100011100100101111000000010101","1011000100000110110101010110010100100110110110","1111010101010111111011110110111001011111000000","1100001100000010100001000111010000111010111001","1100001010000110001111100001110100011011101000","0111110101101000101000001010101010011000100111","1110001000011011010000001011000111101100011110","1001110001011011010100101011000111110001110101","0001111101100100010000000111101100010010110010","0110101001011111101100011010101111000100111001","1111001000101110100111101100000101001000011100","1100101101011011011111100010001011101110000101","0010010000011100000001101000111010011111001000","1111010011101110101010011110000011010011010000","1111010111101100010011010000111000111001100000","1010111111101101011011100011101000110100000000","0010001101000011101010101101110010101010100000"}
Returns: 1403
{"01001110111000111111001100110011111010111110000111","10110110111001110000101001010110110011001100100011","01001101000010100110101011101111001110001010100111","01000101100111101111100101001010101101100111000010","10100010000011010111110000000010000010000111001111","11110001001101110100111111000111011101011001100010","11001000101110001000000001000001111101110000101101","00110100000111001010001010110101001001000100100000","11010010010000100100010000110010001001001110101011","11000000101110100100011100111011011010110100111001","11000110010011010101110011000111110101010011011111","00010111010011011100011001001011010001001000100100","00111011011100011100000111100011110010110101011001","01011101001100111111010110010110010111010010100011","11110100110001010000001000010001001101110101111110","11001100001111100111111001101111101111101011100100","10010011000111000010101101011101110111101010101010","10111100111111010000011101001110000100101101001011","10111001000001011000111111110101000110101111111100","10011000001001010000011110000010111001100101001000","01111100001000011010000000010010010011100100011111","00001100111101010111001010011000100001100111000000","11100101010100111111010101010000111100011011011001","10010100010011001111001001101000101001110000011001","00100101001011000011010001010001100001000011110100","01110110001110011110001110001011000010010111101011","10100001110010010010000100001000011101100001001001","11000001110001101010111010001000001010011111011101","00110000010100011100010101110110010000101100011110","01100101001001011110000000001001000001101010010001","11111100111111010101100001001000101111100011101001","10100111011110111010000011000100100111110111100101","11010010001010011001011110000011011101011000001011","11000110011111001001101000101000101111011000100111","10110111110000110001001100110010110000110010011000","00110110001001111110001000100011110001010010011101","11101000010011011010100001010011010001111001010111","01010111101101111001110110100111110110111110010110","10010010010010111111110100101111001011000101001100","10000110011011100000001101010001111111000010000010","11100100100100011110001000011100110011000011001001","11011001110010100111110001011001000001100011011001","10111000101001011010011011010111001101011101010101","00011100001010110111011011110011000010101110011011","01100111110101111010000011000011010000000000001100","00000000011010100010101110011100001111000111000110","00001010111010101111101101111010101100101101100001","10101010001100110010100010011001010111100010110001","11111100101001101100100001001000110011010001010000","11101010111011000100101101110111110110001111001100"}
Returns: 1670
{"0010000101110100001111111100110001100111001111101","0010101110001001101101011011000101100010111011100","1101101111110011111000010101010001000111010011100","0010111000001101101100101110001110111000111111100","0111001000111111011010110001100100010100010110110","0001001001001000100001010110001010101110001000100","0111110111001010110011100000011111110001101011000","1110001010101100000011111100100111100000001000011","0110001101101010010100001011100001101010100110000","1010011010001100000111111001000000111001101101100","1010100110000010101101101010011100000100111010100","1010100000000110100000110100010110010111001101111","0101111111000101000110110000011101100010001001001","1001100101011010111011100111100111001111011110111","0010101010110100011010011001010110110100100010110","0111100000001000000000100001011111100000110111011","0111011000110100010100000010000101110011101100001","0010101010000110100110010001000111100011000011010","1111100000100110000001111101010101011101111000001","1101000011101000110001001111010101100111111001100","1000101101001110010000100010111010111110101010110","1100011101100100001100110001000101101110010101011","1001101101111101001011010000001110111010111110111","1110110101011010011001100110000110010100111001111","1101000111100010001100000001001100001110110010011","1011010100010100001100010011001010001010011110110","0101010010100100100110010100111010001110101110111","0110100011000111011101001100011011001111111011010","1000100110000100000010000010001111010010010111100","1010001000111011001110000011000010111001101000000","0001011000101001000010101111100110100010010101101","0101101100111111111101111000101011111001101110110","0001011100010111010010110111111100111000001100001","1110001110001101111101000001100100011111101110111","1101011111001011110111100000011110011000000001110","0001101001010010101010110000110111100111111011011","0001010011000100001011101111010111100001011110101","1010110000110110001111011011000001010011111011000","1110010010011100110111101111101001010100011100100","1010001001010100111100000001010101011100101100100","0101001011100011101110111011010101010101010101001","0111100000100101001101111101101000011110100100110","1101011101111100101110110111010111011111000101100","1001100011010101100001100110101111001011111010001","1111101010100111010010101111100101011100000100110","1111001001011001010101010001101000110100101000011","1111110001110110000110110110101101101011011010000","0000100100010111010011111111000101110000010011001","1000000100011101101001111010001011011000100101010"}
Returns: 1622
{"02110111201101021102001110220202200000200121201122","20120011212021111001220011200022001212212120010121","11001010210101021220212010012120200212110012220201","12002211111212121001121220220022121102012102200022","00120121000101201202200222200100121001122102210102","10021001200220210210222101010212220110100101111202","11112000012120200101120220102220101012120102010110","11011100110210221010101101111012202001122120202101","22210201011211221112000002010002000221111110201010","01110011101200000020002101102012001101112011020122","12010020110121212200202210001002221221121222102010","10121212221022101001121121221010010002111220110222","02010221102201022101000201222110100021202011120212","11121000101210121200211221210021201201011222010101","01012222202101011110210012110001111020212211202222","21220102201022101100002110211000102011212121000011","11111001102121110211211111211021100221012111022112","10202210102012112010202201012202220210121121121221","00200101120000101101002001111011102120022002222221","21012010200110001010022000002212102200010112012212","02212211002102202200001202010221000101002212112221","02120220000201101002002221000122110021000010001110","10210201022101021222120022201021211121212100102020","10022121012122011200220021010220200202011000210120","11122020001202111000022201021110202202102211202002","01002101210111201110212110112202002011000000210102","22022011010222122010002001011222100110210002102102","20120101100221111110100121101221001212000121002001","00200021021120011212001012110000021212121211101220","20101220000010000202210212220012020101200211212120","02220121010112002011222210220102120021001000222001","22020202222001101212121002210220221110021121020022","20211212002012111211012220100012022102201020011211","00022200002100100200011000002222202222101111101101","01011012011001120022001022011001220200000220220121","02210100212002002212101220122101122002012211211010","01100110202020212120022001111021020001122211121220","02221021111211011000111221022110220210012112001020","22101111111120220100002010201200210010002102021022","01112022112101111221001100102002000121000122201221","02022002121121222120202120001011110222200022222201","11011111102202211101201020012201012221110021201020","22100002112212121201110010021102212111022201102120","10222120012012111122200010211101010112222110101101","20222102201110200120101222101220012210022211011202","01201110020121002221100101000122102120202000101001","10000102102000202122212020221220110111112121110122","11201211010221201222210101102100211020022011201002","22020010121210211221212200002202102122220220002002","21122201020221212112100022210012111000211001212220"}
Returns: 2041
{"010012010120001120011112102012112000011000122201","101220120102112011120100012220122212102022111010","010211012121010222211211201211121012112201011000","022012000021221002010200002200000101002212012002","121102102111212111211220110121120011212020200000","201220022002211201200202221021011011012011010010","010010022012021001120122220000111021212020221001","121002200022102211210221122120201100101010112222","002022200212212220202222211002200120002122020102","111010002000102111021020022212020201101002112112","202210121001112220000201110101101012221101010111","021112222010012102010122000022212122211120112111","010222012110011121202021221122010202011121121002","011211201011101200122210221012001011122021111112","120121122222110110222101001102101200212210220110","102012022121121001121121221001001211201202000212","212010012120201000021000011120111202120221220201","012211110102100100011102101010222012002202111221","012022122000212100002100022000002100101122112001","121110210201022221002220221022111112001200210202","101010002100222111220200201200110102220102201020","112222122021021101122021222202002110021001221220","101020222202210200020201120121222020121120010102","201002212012101102000110100000000100211210220110","102012212010220201022211022001021212211211100112","010012221210220210220220201121211112100002022020","221201021200111111211200210000122212102011122012","022210010210101010002210010010212102010220112020","121022020102210021020020020102200121120112121010","201011002212222100020210110020202110212210202001","111010122012001012011020021222010002000021111200","122021100201100012011020212100101212010201102121","221001110012011112210220112202010121201000021210","020100011201202220111101212111021021201212020100","011011202012010101010120111021012201022010101012","022111100122210122022000222210221110210102120001","011020210122012210102012211012002202012121101110","101011100021121020002221100121010021102011210012","122222212111122102110111102002001120220112022220","002200001011102222121012200212020201101000001112","020121212002221020200021101211200110211002221212","021201002210110212202100121020110202112020002011","110020210101112021122202101112110011120020010102","211101212111212021110212022120102202012020102121","211200120202110001201100022212121010102112020120","200000021111011222020211100000212100102120111001","010001020111011102002201121210021010112111022001","100200122211220211120020202001010021020221210110"}
Returns: 2003
{"0001000101000011110001101101111000101001100010010","0001100110110011111000011000110000110001111001100","0001100100010000010001101100010110000111010001110","1110100111001001011100001011000101101110111110000","0111011101000101110101100000000000001010110011011","0000100110011011101010111111011001110101101111001","0000100111010110001011010001101011111000011001010","1111111001110001001001011000000111000000110010110","0101011000111101110011000011011100111011010011101","1001101100111011101100110110111110110110010101101","0100000111001100010110110000000000011000101101111","0110011111001010011100001010100100000010100010110","0001010011110101100100011010010111111001010001100","0000101010101000101011011100010010010011110101000","1100011001010001110010010110001111110101011000111","1101110111001010001101010000010010110101110110110","1100110011001110010000101101011001110011111101111","1111100010110010101101001111011011100010101100000","0101011101010101010010001110010010000001111101111","0001100001111001010011111110001100111001100010010","0000011010100110001100101010000100100111100010111","1010101110000101010100000001101111011010010111100","1010110001100000100110011010001100001101110001101","0100011101101111000100101100000010010010111001111","1111010100011100111110110001100110001000001011000","1010010001000110111100010010111110000011110100110","0001010011011010011110100101010011110010111111101","1001011010000000110001001010101001111111001111000","1100001001010000000001001101010100011110111111101","1110010011001101111000000110100111111011100100111","1000011011000010110101100101000010111100111110101","0011000111011010000111101100110010000110001101001","0010001101001111011001011110011100111010001101111","0001011100001010110001000011010000001101001011111","1101011011001011110110000011011010001011111010101","0100011011101111100101010011111010000111010000111","1001101010101000000101101001111011100011000000001","0011010001000011000010100001101101010011000010101","0011100011010100110011010111110110111100110110001","1110010010001111101110100101010001111100110101011","1101110100110101111110110110111000100011001111011","0111101111001111101001110110101000110011001001010","0101011000100010111000011011101111100000110100100","0001010001100101111001000111111110000011101000110","1001110110010001000111001011101001100110100001010","0110111011101100101001111011100111000001110010111","0110000111111011101011110110111011110100001101010","1010101100110011101110010100010011010001110111100","0000110011100010101010110010111111111111100001000"}
Returns: 1825
{"010101111110111010110001000010000111000010000010","100011011110110001101001001000010111001100110001","000101100111010100100000011001101100010101010010","101000011001000011101001110110100000001101001100","010001110000011001110010010001000100000011110001","111010100110000111001110101001111001001100111101","101011001100101110011101010100101100000111000011","110110001001100111000101101010001001110111110011","110100110000001110111101111111111010010110000100","111001100001000100101110101001001100101001010010","111001000000000101001010010101110000011110101001","001100010100010100011110000000011101100100010001","110000110000011110111010010100010110010000010001","111010000001100001000110101111110100111101001101","100010101000100001000011011110010110001000110011","001001111111100000010010010001101100101001001101","100101111000100001001000001100100111100111100100","010111010010011010101011000101001111001001101101","111110001100100001011110100010000011010100110100","100010101001100100101000111010011000000011101100","010101101111100011110110001000000110000011101110","000001111101010000101011101010001000100001010111","000011000111111101101101101100010100110011101001","110100111000001001000110110100100110110111100101","000101011100010000110111001011010110011111100101","001110101010101100010001000011100100011101100001","011001011100011010011110100110110010100101011100","000100101010111011000011001000000110011110001000","100100011000011000110100111001110010011111001111","001011001110010101000000110010101001111101100011","001101101010010110000001011011001110110100011111","010001001011111000010010101010001011100111010110","001001111101000101010100000001110100011000011000","111010100101111111001011110100101011111111101000","110000001000101011101001101110110100011000100101","110001010001000011100000000001010100010011101101","000000010101010110000111001001110100001000110001","001000011010110000100011110111101111001011100011","010101000110011101000000110111001110110000100010","011101111011010010100001111111110100000001011001","100010111010000010011011100110010101010000101000","001110110100010111011111111011010101010100100110","010011010010001011111011110001000111111011010011","011011010101101000100100001000111000100100100000","000101000010010101011010001110101101000110000000","000101001000010111111101101010110011000001000010","101000110100001000001100000011110000011001100101","010011110011111101000111110011100011110100100010"}
Returns: 1876
{"0020012020000100121200120000101121101021012020200","0002112102001200000022211021001210001011200221222","2000201100212120200010020012120021010212020112022","0200022000121110001200100111120002112101011121122","0120021012211001002102201120102010110002210120202","1102202101210022101220002101101010111102202100211","2212120212022211101201022221000122010122101221201","0110012002000211011112210102001201200101121001021","2000101000110020222100220001021012112111022202000","0200212200212101222112001122210100221012100000221","0021220012012020002110110011011221222011220111202","0012112011101002100010111210122222201111111220110","0121102002210120111002210000100200120202020102021","1211002201001010001012000022221112222022222111201","0021021120202102002100111222010212200100020120022","0000121101020020112211012121221200202021201122111","1020011022011001012101100021102110010122200022101","2000000122001001102221100111221000001112212022101","1001211122201122220022001122012102020122201002012","2002122111100012120011101011121001212100000221111","0210020101110101022100122110201011022221111121212","0200201202002201112100200201210000021222110112102","1201200220112010110112011011110020000020120002020","2120002120111011000020101202000222210002000221220","0100122001010012001120110002100010101111211222002","0001112101020021011012020002120001012220020102002","0211202002110222212110100002212211100120011012221","0121011212100221112101122220000122000111100111112","1011110002011202120122101120010002211221211002002","0022000021120212021201100210100000221112200221202","1100210110120101212110000020000202121000212220201","1200001201222122101000020021002000100200020112110","2120112010220110100010221012000002120102121122210","1012002120120220002110020112202020201221100210010","1001110212221222000200021010221112020010010021021","0011111012202200102122010100122020201002120122010","1102010021210202010221001200111001010101220212020","0021011110012010111122001211210212001000000101222","2110002011110202212022201221210002100002110112102","1121222112112201222012021001120021021020221202221","0200221101210202222011102001222011012012021111122","1021100220212220010011201210101220122012200110001","2001021120010201021010001010102010000001100112002","0211112020121111000211022101022112012112111011000","2212202000120122220221022011022121221010111101210","0121001120102102222112212221210220122122102110112","2201222002210201110121020021022120000212100021021","0222010202012021001110220021000111212202200011200","0222211101201121112122002212221000100221212002100"}
Returns: 2075
{"00122012212120210100012112001212211120100111212","00121111112001210212011120120100202011011110010","11020021212111110001010010120010001122102210012","22200220211102212221211000222111101110112011021","21000100002122001211020101120000011202101122012","01021022100201120112001120101001220220000002212","11220202012101121122122112102200122121201201010","21100220000102120100201112121111222222121220020","21220100020221010011202021012210021212000221212","11110010202102121211020002201012220102202020120","22212020020102212111011221110022020211220211212","10111211211011001100001020020220120110000212220","20102000200102011122011101222111011102022111220","01122112122120022221100000122222120202202210120","22120111012000002000100020201012212000111210100","11110222121012001222210001201121001211121222221","00021010012112210021210000102000012112210012212","12022111021112020011020212022211020210220202112","01021120111022022102122120001201101020121210000","02111220111021021120120202100021200020111120020","00020012200001122011020120222222100122220102002","11112020021010011222200020010020120101020000011","21010121201110000020000001020022001202022022021","11001111002010000212100022001011110201211012022","12100211202200200120220200112202221211100111020","20001022121010010202001200100201220200122000012","01121111021021221001200011021211122011112200120","02222002101222000200212010201020210100110211211","10020121210022112210200120110111122002201000102","21010021200212010220200022201022201121210001201","10110001112212120102222100121202122201000121121","20010101022012210111202121101220012010210021001","22010212020101200012110122121210011201002212100","10001222222212101200020122212021102002022220002","12111022100010212010001010202122120201222210020","10112212212112021200112222010120202000200202221","21210222101100011122200010100201000002201101112","01202012221022012000212110102110121020022202120","10111021022002112211200211112202002220011100012","01010002002020121221222102110101022002101022122","01221011020022110011002102201000222012110211022","11201022202212220221100010220010222212102012111","11112002221111121012002110010022121000021100122","10012210101210022200202210010111200212021200202","20000200212221122100000000121210100211010112021","11121112121222021102012221210020002212122120200","20212200202000012200211202012111020120222122100"}
Returns: 1839
{"010112212100110222120011102201221120010111122","101022120000211211221102210202001201201120021","010201020220011212210020212211200011200022101","102021202211210122021012021022121120011201101","120201120110201111222110012001211012221100201","221110101222100210100110220012001111010111002","210211010200222020002021001111201010201122211","122020101001112100101202202000001211110202211","200201010221011220112022121100212110001101212","102212202000112102200100001220022210112121100","002112002002022021012200220112201111121011110","000102011020210210022102221201022212222202110","120221210102010120222222012120122112200211021","111100211121100001022010010212021120220210210","011010221220000000220002201112112211101121011","222112012102100020201001011201212211121201200","211211202021200201201102111221221011212100100","212210000210010010101101010202011101200102102","122021011200202221011111101110020100211222222","221220001012222000102011100220201211020210222","010120212022220111120011111100222112120112210","010011020121200011100000201002021121200010102","102111202000210000111001112021120211001010122","120200122002202121111010202211001011001220112","122002021022002010111212012101200202012000010","011212002022110111001010102220022200201002121","202120121101201110101122220211221002211112221","222000101212121222121002122021102010112202001","001201100210211020120021021200111020201110012","121212100021022112000211101100112111112210212","202120202020101220022010202111021012121012111","200210001202221121202220022011202112210200210","110111112212212211012101021212120120201001202","120101021212112201121120220001011021121022100","201211111111121110011211000121112202010012101","011021010012201111012111202001220120112022020","022020210112221122201200022121122101012201001","100121010122020210122000101101210211102201201","010110101212001120100011211212101102220112021","110211121102221211221002001212020000221002001","122001200210112000211112001011100212001002011","102101221112101102202000022200201222112220220","101120222111020211222111012002122110020002020","220000111011211000221021122011110002002012202","211112112000101002220222011122102010111110020"}
Returns: 1659
{"001010101111110011011110000111101110111101000001","001000011000100101011001011000011000010100010101","110000101101101011101000111100100000001000000001","000000011101001110010011011101110010000111010100","100000000010000101011001011000010001110011110111","000000011010100100100101000101011010101111111101","101000011111100111111011001101001101010010101110","010101101111001111011111000110110111100001100001","111101110100011010010101110100011010001101000101","101100111000011000000110101011101000011110001010","100011110001010110111000110000000011110001000010","101100110010000100101011111011010110110010100001","111001100000011101001010101100010000111101010010","100000001110101101100110001000100101111111101100","001100011100110000100101101011001100001101010010","010111110011110010011000101001001000000001111000","101100111010000100101111100100001100011100011110","111010110000110000010101100011011101010000111110","001001100011011010010001111111000011010011101110","110110111010000101101101001110101100101101010100","111010110011100110010100011011101111011000010000","100001011100011011011011111111011101110100011110","100100110101110010000101110101111010010010111111","010111111001001011110110001010110000011010011000","001000001111101111100110001011000100001011010100","011110001011000000101110000111010100100100101111","011110100101111100111101100100010011001001000111","101101111000100010110110011000110100111110111101","100000010101001001111101110001011000001111000101","100101100101001101101110110010110000101001101010","101100010100010000011011000101010110011001011011","010111011001100001000111011111100100100101011001","110001101100001111011110000010000110111111111101","100000110001011011011100110100111001110101110110","100101011011000000101010001000101001110010100101","000010110010010001101100001000000110001100010110","100011010011110000010100010101011110010110011010","110010100111110011101111000100101110101101101111","101001001100111010011001101111101001010010101100","110101001100111010010100010110011101110010001101","000111100101010000100011100110001010101100010011","100111011010111100110000101011111100010000111010","000011110001010101100010010101001110011001000110","010111000000101111011111100100111101100011000000","000001100100010111100111010101111000111101000111","010111101000010011110110111110001111011100101011","000010100110101011100110011001100101110011101100","111011011001000000000010011110111010010110001100"}
Returns: 1615
{"0110100101011010011000001101111100010010001011","1011011110011110110111110010010110100110000010","1100101011101110101110101101101010110111011110","0100011101100100010100010011011110001001000000","1010000110011010000110001010010011110100111111","0101001010101101011001010101110011000010010011","0111010101010001101001110110101010110100001100","1101101000111110011100110111110100011010100110","0110110000011100001011101110101010000011101110","1011001000010101101000111100111100001001010010","0011010100011000111001100101011000110111110011","1100101111101000101111000000101111100101000000","1110110110110110100011101000001011110100000000","0111010111001011111001110001001010111111010001","1110100100001100100100000000101011000011001110","0000011001000100110011001110111010111100111100","0110001001111111010111100100100110010010101101","1101010100100101100100000011100110101001100011","1010011111110100000010111010100000100001011010","0111100100010010110010100100110111100100100111","0110100010011001101100000100011000000011110100","0100011010111101100000010011111010000011110001","0110001111101100101100011101111110010110111101","0101011101000100001001101111010101101000100001","1010100011001001001000110010100000101100011111","1010011111100001100110110000101001100110100100","0101101110000001011001011001100111100011101010","1011010100100100010001110010011011001101111101","1010011111010011111101101110010101110111110010","1101110101100001000111110001101110100000001001","1011001011111111000011100101010011000000111110","1101000101010000110100110010110010000100000011","0111111010011111110101100011011101011000011000","0000110000011010000100010111101010001000010111","0110101000111101011100011110110000010010001110","1010101100101101100000100000100010101101100110","0001000101000101010000011001000011010110111010","0110101000111101000100101101100100011000001101","1110010110100110100011100110100000101001111010","0011000011110110011011000011100000010010100110","0000100110100001110111110111101000011011001111","0010110001100101001011101001101011001010000000","1010101010000011101000101011011010101110100111","0010101110000011100110101101001001110101101011","1110110111100010011100001010101101111011101100","1000110000100100110101111001010101000100101100"}
Returns: 1577
{"001000000111101111101001100110000010001100010","001001001110110111111101000000111000010001000","110011110000101101010000110011011011110011100","000010100100110000011110110101010001100000111","001100110001100111111100000100101111001111111","011000110001001111010111010111110111111011011","001111010011000001010100000111101100010011010","001011101111110011110110111000010110001101110","010000010100011101111101011011101101000111101","110100011000110010110101001110101010000010001","110000110001001001010100100111100110011000010","100011110010101000101110011101100111010000000","111110010101001101011000101011000101101100001","010100011100000111101000101000110111011101010","101001001011100110000111111010000101011110101","111011001000111000001000000000001011101010111","110011010100011000100000011110100000011110111","111011111010110000110100000001110000010010110","110010011101010011001100010111010011001101110","011111111110100001000001111100110010001000111","110110001001110100100110100100010100011000011","010111111111001001101010110100010100000001110","000101010001001000001101101101101110101101010","110001001100001000010010110100101101000100001","101100010010111000011111001010101111101101001","001101011001001010110101001110100100100000111","000000011101111010010010110111101000110000011","100111100111000010111111011011101111100011010","101001101110101010100000111101001100101001101","001101101011100001100010001110010111101011000","010011101111010011010011111100010100000010101","011101010000010001111100000001101110011000010","011010101100000100000011101110010101100111000","000011111011111000001111110111111010111010111","101011010111010100110010100101010100110010100","001111001001111100100001100101001000000111001","001101000000100100000010111111001110001001110","011001100011011011001000001000010110000001011","100011010010111110111010100011010100100110001","100010011000111010100011100000001001001010100","001011101100001111000000000101101111001101001","011011111000010000100110100111001001110010111","001110011000001111110100010010100110100101001","100111110010010111111110011100010100110001000","000111001100101110011001111010100101011011100"}
Returns: 1580
{"0212000010222211202221201200210222120200122220000","2020121201001201201222222012011211220111000012000","1201212011202002212122100220120220210001011001221","2010000200102022200211222211101222101021020022010","0120001202110012221100222112111100020221011220221","0210002110002010021010021111121110202222111200012","0120120110120110222012010022122012200222111011012","0202211022200110012110211220101000202022002000010","1010011201010211210002001222212210202121202202011","0110200210202110002012121001021020222012000021111","2021101202001010202021212101110211020220111212201","2000102010000122112110210200102110122122001022100","2122020002100222120121020221210000210120120200120","2200001121012020010022001212201201111120002200121","1002111111122200202022001012212222210112102200102","1122200010022000222020110211012101021021110022222","2222202020211022012100010210002202220222201001112","0010222110012102100121120002122012022120001102021","2120112202220022200002120211021002002120000100202","2212100100011000110022112221110002112202200222101","2221011101212222020201222201110210221211012220021","1221002022101220012210220101222012222211110221011","2212200201220001011122022102202221222220012122202","0202221102112001122122200210212111002002112102121","1202210111200110000220200220021221002201111102002","2022110220122202202221122022221202021122211012011","0121112220002111101200012202110202220201112201001","0201212021101221021111200220110212110020022002221","2011111120112220010112220211001022020021011022021","1120122012101011022112012211001110002221221010012","0101112121020122221002221100110210100211120102110","2222110020210221200020212222012020022000010002121","2122011012110020010011212001211200001222111210100","2102002000100121222202111222200000210012220121210","1221022222012120200122200021001002000011022221101","2210200002221112220122200221200201001011101011120","0001020222020101022212222100020210010111111211000","2100222010211110211222202120022020001020212111200","0102222221222212222011200202221021111202112012020","0111122212020021200211021210111022111020002010021","1000011020101011200201011210021012011210021221010","2012111000102001000011111112122112201110200021212","2010111220110220110020221122110010211222100220011","2000220020202220011222111020001021202100202000200","2102201002120002000222200100210012211111222002000","0212001021220002120201222212202201111120110020211","0020200001211112102100210002001112110200020202001","0021211111002202120021020102211201020022111001001","0010122011100122212111212111120100100001021001110"}
Returns: 1816
{"0011001001110101101011000111110001101111010100100","0000111111000111001101111111111100000000100010010","1000101010011111011000000010100101011000010101110","1000110111000111110010110001011011001000110101100","0111000100001100111010000000100010111010101011101","0101001001010111000100111011101101110110110011101","1110010001010111110000100000000111101100001000100","0101100011010000100011110111010111010010100110000","0111000101100110101101110101010100001000101010111","1101011110101100100100111111011101100011011011011","1000000011011000101000100000001101011010011111110","1010011100100111000110001000111011111011011101000","0010100001100111100111100010101110100110111101110","1111111011011010001011100000010110110111000101110","0111011010011101000000000011001001001101101111010","1111011000011010010111101011101101111000011001110","1001101111101000010101010011010000111111111011110","0011101000000001100000000001011111010111011110110","1110100010100100000111111111110011100100111101101","0100010011011001101000101110111011101110101011001","1001100100011101001000101100101000001011110111011","1100000110001101101000010111000100011101011110001","0101011111101101001110011110000001001010110000011","0101010111000000101001101010101000101011110110011","0100010001010001001110110110110011010111111000111","1100000111000000001111101011111100010111111111111","1110010101001011101101111101010110001100110111000","1101010111000011111001000110100110011010101100110","1110110000011001001110011101011110001011011010000","1101000111010100111100001110101111100011010001010","0101010001111011010110010100110110100010110101001","0110011111101101010001000111111000100010110001011","0001101100011100011100001011111000001100011100101","1011011101110011011100101000010000001001011100001","1000111001011101101100010000011100010110011110000","0010110100110101110001001101000000101101101110010","1011101010110011100111110011100011010011110010011","1000011000001110111101001110000010110010101110000","1000110101111100110110111101111100101100010010000","1000000001010110110011011100110001011000111010101","0101110110001010101110111111001100011101000101000","1011010001111001111011111110111111101011001011011","0000101011111011111101001101100011110101010100101","1011000100111110011011010111001011110100101010101","0100110111100010110111010110100000111111010100010","0011110001111111101110000110011100000000110000110","1011111010101101111000001101000010000001001101001","0110000011101111110010111101010100011000010011001","0000110011000000001111111100001111001001011100110"}
Returns: 1726
{"010111020121001000220011000022202112021111000221","101200211022110210001111111222012022020212122210","010010200011201022121111021002112102002200110022","120012100220220020221222201211120101100122200111","101101201222201000212011220110220102221001002011","100210212102021012102210200220002010221102011021","022122022022210011101000012011111020002200000222","210001200111021201121120012021012122120101212102","010012200002120110212222120221110101110212011001","100221010021200220222022120100210102222121111002","221220210201020000200012212000110202021221110122","121022212110011212110020000211212001020002021200","012220201200011122022222202120220021020000010221","010202122021100200102000012102212212012122210010","101011010001100220201202110010122002210112002202","020000021202122001002021122010021011102200212202","012201101201202002200120211021100212221011212020","002002110002200120121012201121121011012020122112","201221112221012021001012200120020000210021121020","202210021201200002001211210010222211010020002021","011122112200221201110201002110022002022102000221","011202012000202010022000002101000101000021101220","111211022212200221110001001121011220020212221102","111210002220202102211010011101212122101221212020","010222001120201122220000012111101210012102012112","012020112210011210010001100202121021000001011100","011100220020220211002211200202101201102020011200","020212002102110001101111122001201111012010002111","220112122001201122211020100000111012120111102200","222100111001020011000111122100212202011122121211","201120101212221011020002111212002112112201111002","011220111111212202222011020011002120011011202202","222002120002022101022012111112220200211022000212","101110011120020020020121202102112010220021001101","120001220000210111010022120110120100010201112100","222120021221122121012102011122200000001112000222","000122011200002120200001001010102200010220102112","220022021222211021112020100121111210100012002102","102011200210020212002001202201211001000012101012","122101212120011200001022100011200021200022202220","110200001220021012220212002112012201211201000012","120212012112022010102121210012112112022210002122","011200020110020221100122000011120010101200011121","021001011112110112200021111002100010000000101010","020021021101002222120112211221120120221202110000","220100210012202201002210112122022112110201100020","212112200020210021222202100101001002101212210202","102111221220102202011020200101222102222022100020"}
Returns: 1920
{"011111111111111101000111100011101110001011101","100011000100111001010010110000110111100011010","100100000001010101111101111100100100011101001","101001001111000111100011101111001000000100111","110000000100101000101011101101111101000101010","110100100011101110011000110100011110001010100","100001000110010010101110101010111110110001110","100000001111110000011100001100111000100101101","100100010101000000001000110010101101010000101","110110111011010000101001010011011100110010101","100101110101001001001101110010000010001000110","101101011110010011000011101100100011101000010","110011010000001001001101100011101011111000000","111000110101001010101111010110001011011000101","110011000010110110011100111011101010011001110","101101000000001001000010111011110111011111001","000101100001011000010001010001110100000000101","111100000011100100001111111100011010110100111","001110100100010000001011001001110010011001010","011001010000001010001101101100101111100010100","001011111110111001110011111011011100111001101","101000110010111001010010011010011001100111001","110110100001010101101101011111000011010110111","101110000111110011111010100010011100101100101","111111101011101101011001001100000100001111011","011001001110011111001110001011011000111011011","001110110001001101111110110000100101100000000","001111010001010001010010100001111001001100010","100100101110111100001111010000111111110111100","100110000100101110101010010100111110001010101","111010111001101110110000001111001011000010101","010011110100000111101101010111000111101101110","100111111100111001011101010111100100111011110","111011101100000110011001101011011011011101101","110001100011111101110010000011110100000101000","010010001001110100010110001110110100010011111","010000110101100001011101011010011000000000000","001000101100111101101010010010001101001100001","101001000011111100101001110101011100010110010","001110010000000101000111100110010110011011101","110001000100000100010110110011101001001101110","111010110000001100101100110010011111000110100","100101111110011011011011000011111101000111000","010110100011001001100010110100011001001010000","101100011100010111001111110001100101010100000"}
Returns: 1362
{"000001101000000011010100000001011000010011100001","000010010001101011111101011011110101001101001111","000110010001101100111000110110111001110010000111","001010111100101101100110110001101110011010110111","011100011001010111101010111011000011000101101101","100000101100010011111011010000111001011011011000","100101011111000000011100101010011101100111101011","011110100000111100101100011010001000101001001100","100111100001000101100001001001010000010110001101","000101100010011111000011111110011011000000001101","000000100100001010001101000010101110001000100001","011010101000110110001000000010101001110011000011","011100010001010011100101001011110110001000011000","000011010101101101011001110101000001011111111100","011100010110010001110011011011010111110110011100","001110011101010000100100110011110010011111000111","110011000111100000100101101110011111110010011100","110111001100111000010010001110101000111011001101","011111011000101110010010100111101000010111010001","111001100000011001100101101010010011000101011100","011011110011010000000111101000001110111001010010","110100110010100110011000110000000001010111000001","000111000100001001101001000001110011000000011101","010001001110111010011010010100010001100111011110","001110100100010110111100011111001011110100101100","011111010100011100000101101100001011000000100000","010010111100101011011000110100110111110110001100","001000000100010011100001111011000010000100000100","011010110111101111110000100101100100000110000000","110110001000111100100010100110010100011111001010","011101000011100101100010001010000110110001111110","111001101100101110010011001001000000111011011000","101101110111000011101000110000000010101110000110","010100100010101010001000001011100011011101100100","000110000110101110011010111100101101110000000111","011011100101011010010111111000000110100001101101","001000110001001011001001101000111011001110100110","101101001001011111101100101001110110001000001001","010101010010110101001000000001011100110001000001","010010101000011100110101101111001100100011000110","101101101001011111100101001011011000100101110110","110011110001010101111101000001110101001110100110","100110100010010000000000110000100101100011000100","000101000000111010111011000000110000000010000111","010011111100111011010011101001110001010000000101","011110011100011111010011101100101111100111111001","011100100001000100001001000001101010100111010000","111110101111000101100110000000000011011000011100"}
Returns: 1865
{"01100122212000012011212010112012122120020201020220","10101212211122012200221101200000111202121120001110","11021002100010000012000120121112222011210112110010","00200210211212012020200102200101211012021010012122","01100001112000101220000210202102020002111120010121","12020020100102201210101112020222112001010202220102","21010202100121111222222102111221122111000022111221","22201020012201102022021010221212012200211010110210","22121110000102200012120100221222212120102221112201","11011001002010112102211012100012000200002101022122","21012002020011021000021221200202111021212101212211","01020112100022011001022201221202121102212200210100","02110020011202002101120001012212012201211121221200","02020211201220001112122022112110011102211221002120","00001211210000021200120100021120112120102101022220","11010010012100200112011212212220000001220112100102","22021112021121100212222212210220100110022112121121","02002220010011212001110111121120201121120210020101","10122122100001011002101210000011020102202121201121","10200022220112022120122022111102020200120222200100","22020120120011102111020011010202122200122010000022","12000022212222212102200002221122012221110000212011","21000121011202012012000002220100111021010210022021","01112110102200122120000022001222002201220022202221","10201101012002011112100201100021120110200001121022","01020220021112022102122210011120012002010121100001","12122012212201022101022010002112011010211010021002","10200212200211211201122001000101112002221010110010","20102011100122120101010101200101222220101011112112","00111222202221122101211201111010210112211220101001","10100221210011222210020222100101010022220210100011","20212212222220000012220210211010201101220210001110","11220110201100101200101010012202020101110221101200","21212121101211100022211021112110201110001011021001","21210222201121200100221202122001010211002022221120","12000012120121101112220210002101112010202120201001","20110010202000201200022010102120011102202220201220","02122110001212010120011102020221101020200122120202","01201002102222120121110220221222100222011011211100","22121101001111022202211201120122100000100001110201","01011001222211202020200000111100012220100120212021","21101200211212111212002001000222200121001000010012","02112021200022011122101202111211212222102002221211","10200220111011122012000211001000112002110020111222","00100211102220011022020211011110102221212021000210","20111211121120202200012020211000022002111121001001","01020010222012201010022210102101111110102011010220","21011122212121211111000200001001201022120022202020","21122021021002202020212220011011002020002112102202","00021210121000021110211121202110010102011212010020"}
Returns: 1979
{"00001100101100000101101010110110000010100111111","00111100100000100101000100011100110100110011000","01000111110111011010100101011101001111111100100","01001100010010111011101011100010001011110111010","11010100100001101101010001000010110011001010010","11111000111011100010001101110010010100011000001","00100001001101111100001001000010111100001000100","00100010000101000010000001110101110110001110111","11101100000101101111100011110100010111100101000","00110100001111101101000101001100110010010111001","10000110010110011111001001111110000010000011010","10100011111001000010101000110010010111011000100","00110100011001010111111010010111101001101111100","00101111110110010110100111011100001100101100111","01011110110000010010010111010101110011010001000","00110010001011100110101011100010110011110100110","00111010111000000111111000110000010110001110001","11001010111011011011011000101111011110110100100","00110101101111111100101110111011100111111111100","11011000111010001100110110111001011000010010101","10110000100111011011011001001111011100011001011","00001000000010101101100100010111000111100001111","10010110001110011110100110110010010110000100101","01100100010001100011011010101000101010111001001","10010000100011110011001100100101011110110100110","00111111111001110000100000110000101001111100100","10010101101100011111001111011101111011110110001","11100101101111101011011001100100111100010110000","01100000011001000111100100100110000101110010001","11100001111011100100110010111011111101011101000","10011110001110010110111000001100011110100110110","00100001000010100111110010100100101110011110110","01001011010010110010000101110101001100010110000","01001111110100111101101010110110001011010010111","00110010000011000101100111110111110010101011011","01100111100101001110111010011111100000101010001","10111001111100111110011110100011011001001001011","00111000100110110010010001101100010010010101110","11110000100011010110010111101010001100010101000","01110100010100110111100111111101110001101100110","00101111000111001010100101000101001110010101100","10110001110011011110001011110111100001111001100","11011001011010001011000000111011111100000000000","11010000111010100010110100000100001011101100010","10100011000111010111011011000011010001011100000","10011001001001010000110010000011011011010001001","10000101010001001001111100101000011110000000010"}
Returns: 1575
{"00220210002011012110000120022001221002010210201211","00120000011120210010021120001100210010212202101102","21021020122101022200112210112111112112111211222001","22200110121000011002102221112010202011212221121001","00100212222202222111121010222000221200210110200210","20012002122020111210111020222020020000101011010011","10211000201211211212121101222102102122211022101211","00002200002220010001011120011111110102220011220111","00112120022002212112210210220112121220001111100110","01222200200020000021120110000111021110121221211021","21212212200120202120120221102110102210222120221112","01102022001022010011220001110110202000021001111012","12000212022202002111211202100112120012001100202220","10102010200220220122221121002202211220111001111222","02002120202002001120022010021021011112000211200202","11212111100102002100001011020022002220100112011202","20212110202020120021010100221112220212122101022201","10201220101011110012202110022001011220021211221020","11001110122112202100111021101121010012222102211110","00021021210112001200100121202021001110000020210222","00111110211222000211010212100100122111222022020212","02102121122212201010102120102011121112202220102000","01221111000011210210020212122000200111210121002010","11220011212021001101212010100010001110000111111012","22121202112002110122121102211222020001102011101002","00010010001121010011202020100110101101021201200202","00112220201110002012111121021100200020022111122111","20112221200100222200002010201021120220120020220022","21222221002002101212022010110210210121011022022001","01100011111112001010100021102000111221001201012220","00110201111110221022010121021002122001122210200021","10100021210022122111010020010020001010211110022121","22122011101212002000112001212110011100022112121001","21102201220021102110220020021120102212212002201001","10221020112201120101210101000121120121022110001020","00102011212002122201111101021200121001220210102202","01110020211012121211111100222201012002121210221222","20210022000020202020121011001110021120221000010112","02122122012001011020222010010012020212011202111012","11111012022201002220201002221021212222101222202002","02120110112111002120220021201121222011110001212111","22221000121010211210021102100221101220220010102212","10121121122000110102222110122011101110020102111110","02110121110101121120201111102100220000221020112112","21212012122121200222010112120020120120122111010000","00220102012101012211200100222102200021101011100101","11210010011121012110022110202202111210122212000211","21002021101022222012200002100201000221001211012001","10001111121122000212101100120222002021101111001000","12110111012202221002200222121011110222221202011100"}
Returns: 2101
{"00101000110010000001111000010000011110101110011111","00110111010101011100011010000110100011001000101110","11011111000110010101100001110001101110111111100001","01100101000000000110111101011111100101001101010100","10100110110101110011000000100001100010100000001010","01111010010010010101001111011011000011111100010110","01101101111011110100111011011100001100100011000001","01110010100011100111010110011100101101101100010100","10001011010011000001010000010111001101000111001010","11001110100111011001100000010100001110101000000001","00000010000100100001010001100011110110110011111101","01101000011011010111110001101001110111111011001100","10100111110101000011010010101011010111111110000000","01001011110110000001011000010101011010100011101000","00001011001000000001011000011101110110011010101001","01101110010100000001001001110110111100000111001011","01000000010000000011011100011001111010110000010001","01110111000100000001101100001000110001010100011101","00011001000110001001110111110101001111110010001111","10101101111111111110100110101001001101001110001111","10110010010100000111010100110111000100000010011010","11010011101111101010101010111111101000010000010110","11010110000001111100010111110001010010110100010100","00010101000000001111101011011000101111000011011101","01000111000010000011011101001001111100100001010001","00110110001100010010001110101100100001100100111110","00101000001110010011111001010100010100110001111001","10110111110001111010111100101010111010001101000010","00010111000110101101010111010011000000100110000110","01010011110001110010110001100000001111010011000001","01010100101010010000110000011000000100011111010011","00111100101111101011111010001000100010101001101111","01111001001100111100010111010001001001000110101111","10000000001111111100001010110000001011110101111011","10100011110001011011010110010100110011111101011001","10110011111110110011100110100110000000001000110101","11101100011111101010001100010101011000011001001100","01010101100110000111000101000100111000010001011000","10101111011111001010001011101001011000000101000101","00100100001110101110011000100110011011000101010101","11110101010110100001000000010011001110000100011100","10110101100010010101001001011010111000111011000011","10100010101111110011100100001110100000000100011110","00110010101101010000000110110111011011110100110101","01100000001001100000000001100001110100000001010110","10010101001000001100111111100010011101011011101001","11001000101101110111100101100001111011001010010110","11010101001100000111011101001001100110111011101010","11001100100000010011110001011011110000000110101100","10100010011000111111000110100111111100110101010000"}
Returns: 1772
{"00002020102110202202022010020211000201022122221","00002200200202111012001000011101121222222000012","00011002001022020001222002122020012110211122221","00100010112210222002202101012012001122021111001","22100000021010102111002121011122101220211101102","02000011020120112000121220221211110102211010120","20010102200101112010212112110001102122002122101","00200120220020020002201022201220101000100022201","12010022011221002022210001011021121210011121212","00012202101121112102112011002221202102100120120","20121000110200012211220000110201022111010022211","12020110212022110112222100202011221210021120210","10211202220200212121011220211100101112101122100","02200010110200100002121110001000111212111112012","21021110010121012120210022201100221001001200022","01220112011110101022212001201112011112020120012","21022220222020210121102012200210022110102122102","20001000012110101012011022212121212100211202110","01001010201120222101202210210002000122001012001","22121002221212021210122202102021020110002000011","00220122212201221021012012102022110222212101111","20200210112212110102101220120011020110000111111","21222121020211022122210200021221202000120211021","00011210000121000022022021121121021002221221200","10002212010021201210120200002202022211202120222","00211022110000212202200100121202221001212021210","00100212001220222221110101022020200112011021000","21211210101010000110022202201221110100222220201","01221101120211110202201121210011210121010012210","21001202022010112100002122020011210121021102022","10212102220100011202212200221100220120011200220","11022110111100020121211122011100120100222001112","01001111120211200200102002212221022012101111222","02100100202201212102120222011122201211011221121","01211021122111112200002121000000210202122200010","22112110211212011111210020111111022021201021121","02122020101111011021210010102220110202222201121","12020220021022120020200211201100212120012010211","02202201010011001200201222020002101220020111122","22121100101201020100102201121212012021201220011","22111120100111102112200122120112112122010200001","10111010110111211200112210020120122020122020001","20210122222221022010011222221000120201120201212","20211022102022002220111101102201110110100010221","20201112212210001100110222022021210112100022010","21200200121101210101112021001221221221210012102","12112011201002222011111020010202210111211121020"}
Returns: 1689
{"0212122212211021110210112101210122021120211110122","2020222200210120202120120021020002221211121222001","1202102222211011122100101001102110010111210211100","2020122211021221001222112120010012120201012121201","1211011200212022011110212022001110201120120220022","2202102201012110011222110111200001022200122001112","2222120122212001000022021001210222002122220112222","2222221020100220111021012020212100122012100010122","1021002202211202221100022001012121201102200100122","2021012020000012221022021101102101002010102111120","2220202120001102101022102102021222201221202210202","1112111010001222121110222000020110120220111121202","1011222010110020120120001120112212021100010021111","0102010220120000102002102212002112022122210122220","2212210201022002110110020111120110222021211212110","1011201022220020210120020202002001120000000210210","1210000122111112022221220222002001220010112222210","1020110122022011200220021211221012011210211111210","0221110111110200200011112001212210110201020012000","2112120010011011220021121220101211221002122121100","1202122202212012221201112121001002022012111222022","0002022102200200101110110202121112111200211000212","1111210000120100201111020121202112101101000011112","1201112122020022221211200102222000112000211001011","2012201221221200012120000101222021110200101211221","1001010001101212220212111002112120020220201020220","0202210200002110210220200002200011200012110010112","1110211011200212211012121220112110102101121111212","2010022201001010022101222121022100021211111101100","1201001110221020021002022101200021101020102200222","0020100222102202212111222202200011112122012220102","1010102111212110002201100101100021121212122120111","2011102020211110011101102211021201221210102201020","2202012011202201120122201010011110010200120102121","0201200120210021201201111021011120012000020120001","2212020200022222211221011200201221102022210002020","1100122212101220010121120002112110220111101000122","1212121010221100022002102201201222001012010012212","2110202101220220110010000210122110021100222020122","0111002220100210001220100021102200021200000121002","2120112121210220120112021211110111021020010100020","1211222000011110112211010012101202210120101101121","1102020002210010210211011101122220001020010101100","1221201011210122210120002001122121100001111022122","1212201101122211211220101211002200200122000202222","0211012001011220212120111001100012020201011220122","1012012111221212220102102212121101001210011121021","2000212222001211110021112211020122022120220222200","2101222220221000000022211022022101102222010222100"}
Returns: 1953
{"001011002111200012121102110021011110012002112220","001102212100221000212202121012212111210102220121","110201001221111021121112001102002220201122202121","012020100112100111100221101002120110021022012201","100200121112020021001010211122112212211111200021","121000102212102020220102122120112200202111011211","020111012221211202000222122022221112102200122120","010020101222002120221211222201121101012202110110","221012210000210220211101001201020212211020212102","112112220000211211021212011122210212121011202202","102111220000210112002001010001101111111001111211","101222120000112200012220110002122202120002212011","221101202221011000121101111022112112201102100121","021020101111101101021220121210201112220002220022","011002120102110201220220202220211022000122210121","000100212212012020102122111222210221220022211210","102122022110000201122202111110110200021110001201","201110200120011010221100202022212020102222221021","121102022000102112000202211200121122120002110200","212002021201222022001210020022122021022111202212","121010011122110221010110212110102220220112212011","121201221202122121221012210120000122122202211010","001210210102022200011101211001000201100022000211","222102211210100220200210222101122002012122101001","110121120001112112202222020122212120102002101111","120012220111120110121112201010111102010220212110","011112221100112112102012010002010222202110012120","001011022100022210201101100021101120121010202101","210022200200212212021200210201200022011022210022","122220211212200202020011202110022110201200002122","020111210211122212111001210120002022222012220221","110211222102101111220002111002000100012212210011","122022110012211002122002210102200012011201211200","112122112212110220102120112101010010221101112200","112110101110112202222200202221201102020012200110","010020212212222100210212022020202020110121221210","022022102111220201102110102102200201010211202110","110210011212020220222201010210211221101200022220","201112221110100012020202202111221100010222112121","011011220000101012011201021002022101222022100211","002211002100002212011022021120110012102202201120","222211020112222202212222200020221121102220120200","122020112212122202122201120220222122201121012100","120101211011021102101100011010211102021002100121","202201202212000111022101122202001201222010200101","211202111220101220220020111101202212121212111010","222021210011222102011110112022210011122120020102","011111002211121011021011100122110000001100011020"}
Returns: 1935
{"022002101121012121222002201102220011210021111111","200100201020202210222221120112112201021011001021","200222210110210220102021112011022201201220220221","012011110000002000221221020202100201221111211000","002101112212112210021010202111222210201022111122","202110221210220111020012221211022111022102112002","122112020021112000110010011220211122212020001000","001112200100220112200212200100212212012000222022","110021000212202102020012210011100022002120112000","101022012010201210021101212120111000101001110000","221011201102210120222010101020210010220022202011","100020102020121211022011110102001111021202120011","022012122221022122012000022022201011010102201210","101012120012201200120011220112002100112122100022","220220202101210020120112112120220100120212220022","122021011212120010221221210010122011022002112000","212011010121202101021202122012111100122212020101","100001022001200010122222221122001111222120201011","221200120020011201002200222000221121201022202220","220222102222122222001022112121120022201220101202","222110000122200112210001201210101101100002021200","020200020100001222200001221012210100120101120211","022211111011011202020001022111120122002121221021","211102022101012122021110121111122222210022022002","211022022211021212212201021102012010222112202200","021202101101221122210222201101220100120021100112","102021100210202021221121110211221211202120212001","110212210101011001012011112012200010020000101010","011011201220212112021111001100020010002122021221","221211001002220022010211211200001120010111111111","210120221120202110211211022200012111220202212010","212022110110002210220122122020101220221112102120","022022120101120211101002201001210100201201121201","022221120001011011101112012001121001001120000220","100011212011100101220022101112120002021200010111","111101222001100101121022001000100120011211111222","202220200120011012221102212000222000000011010200","120202110022112222000201220201220021002212221212","011112222101020222110020202020011111020122120121","002101001002112021020110101011212122021012021200","212120202020021012220022122021010201112101100120","110122000122222220202112210021221001122210002200","102211021121212102210120212101211001021010010010","102111021102002120002222001021102011122200101210","110112122020100201211012202111221001010102010001","102010000000200010222200210021012212221212020021","122020020011122001200120010121120212012020110201","111022020011022011020112021011001012021000001110"}
Returns: 1938
{"022012101010012202202222001000211102011111211","200222001220211220101002112222002022222222102","200021121001002222000022200011100111100121000","020001000121102211002210221100101011001002010","122001220100010200122212001100210110001222211","221110222200210001110011210021202101101112000","101022001111111122221001001121112002210120120","002022001121012121000121200012112111211211111","111002110100002101120121000211211201111111102","020112111020011021020210220100002122112012101","120200120202220001000110212001221100220022122","001100110020220110112100202011211100122112222","020102100022010100221110211212211201101002002","110011110122102202122122221011010212220012022","212200122100020120020022220101020222020211212","222220111001121021201001120201211222021101201","022100220201002202120120012022202110112121211","202101211110020120112102200022222212100100211","210011201001210211001001121222122210222102012","000021202201222021002200101010122120000020000","210220100002120102120001100012210010020211000","200220011211110011020012011010220112220220110","202111022110122020000100201210022201102010020","222021111000022102101200111122122001001200220","012202020222222102111021021222120012120212002","010201000210122210200101201201102012122122011","120110100022110020110111110120111222221200001","020110102100201200200021221020120222012110201","021002211001110022211112202201102211200010221","021001121011211122202002210010101110111021110","201122112022200222112201111111010011200122100","100010111021112102221222201200102102020212102","120102221211100122220022021021020211000011111","101011012111222212210120002221012021200102011","021110010200012211121100112211101200102110011","221101211200122202000211222210121100002002221","021001221121120011200210112021200210001112010","120000111122022210202200222101020000001110012","120111011202100120200021021201000022110201022","121021121001002111102202212100120110112002012","122021211121011020021210120112211010110002200","121222011222221110201000220001221202201220221","210020111112002222000102000221111002000022020","100110210022021011100122010021001112112102201","120010012122222111200000211110021111022201010"}
Returns: 1715
{"02210012110220010220210210201112211110010212111","20020212122121211021112112101111112220002112001","20001110012211120111020101221211012020012210120","12000122000010201112010221100220200202202101001","00100202122212212112211021210120211022211100021","02112001211121212211211202100101202201112121010","11120001112201120120021012002010122201221201001","22022110110100211100120120122212221002110011202","11001211001212002211111120021001020121011100220","12102111001210210102012211101112211022012111202","02202120110111120001110020211011211010221112112","21202121221021012112202122002201022021211101121","22111200111200102210011200200102022020212021021","01102110201100221021200110010121120111012020121","02122212021012000020211222202112112201110201202","11201121012102001011000102001122022001121020102","01012201200221010012202102212021100012201102021","20111211210120000021120111012102201210121211210","22111120100112211200120011001120111121000110201","01122100121201012100220012120220112210211002222","21002201101202202112012200110111002001012212110","11211122111010100222102021001102010022220200102","02001110120210102000220021220001010221211200111","21120201120121211100200011211101120202011102001","11022012212201200111022100121221012120021212000","02111220010200222112011100012120211012220102001","21212101012020202001102210020211002102211222021","00201002201001001102102121202112221211010221120","11100022111200212210010112020221020111020121000","11221102010211110112110121212001010220212222220","11122011011002122022100022112001012011111101001","21100102121121221200121110121110221102100100100","21022212022001101211000102020002002111200000000","11101022211222120011011211022112002101210211122","12201221011220220112200021210021220200012120010","12020220100001200212002210121201112011112121202","12202000221221001121022021011210100101112021021","00022112120101112010121202211012110110222221002","00022121002220112102022002200211220112021212220","10101121112111120201121122112110011112202112100","02221210121122011101201110100210002222120101201","21211120111100201210222121221211021102211001222","11100201011022020110100010222200012222110001122","22010111012110102102200222211210010111221110001","10100002221101210222111000010201010200212210022","10202100201222002102101000220200021020200220202","11011012022111221012021101100010020212001221220"}
Returns: 1878
{"02212221200212021111121020222221112202021021121","20110210012200020112112212120111010220202001210","21001101222020102000111211000212020001102002112","11002100121212111010221020121102202221001001101","20120100011102110020002112121011221002221201122","22111000121012102201102010012002021022020120012","21000000022112022001021120010020100021022221122","10100000121010101020010122101200211101210222020","20210101021112020021102210212122220002212022221","01221222201111122202022011222211000021001010012","02211121110212220100021212111120201120210200211","22021010112010201212212200112002121101111121120","10210111111102111012120120100021211002200211022","20022220212020101120021020210112102101100010000","00111101012211020212102221022101210221100010000","22011020222010200100222120221011122102022101002","10210221020111000001202011021022112010020021121","11000200021201210021100210000101110010120201020","11012002200112100200020020101200101220222200002","12000110120220201100200210022201220100100101011","11120100100210122102021200122000100002000201221","21120021022122020020202121110000220020120102122","12112210221201222000120102101121101210201212000","02201011202210210202211021002102221000210101200","21121122111022221121020201202000111011201200202","02102002012000101000012110220011221022212110200","21011001221112020010111022020000212102012202111","22022110121101222002210002201111002211211200220","20011201221200211012201220010212121212112212102","21210002121001100122001100012001120220011121001","21101020212021012000002001011001120001002200101","11221200210212112101001201012110020001000210122","10022012202121211112121212201110001201122110221","11202201200210121102020212102222002220201102012","20021101001112022010001111221000120002121001202","22020001001101210021002000122200220020200002201","02020220022000201120021012011200020201011110202","20112211210121120000200012212011102010122112022","02102002202121100121012222021000121201001220001","20002221101100022220020101111100202012001020021","12211020210100020020001012212120211012110101022","00002122002120010221212121222122110011201012110","20000222210211102000001001001201100011220100202","11211012200110011101122100202100021202001200200","12111010202100001000210222121011202220000122010","21102122211220002201220000120002210002022100100","10212220121020021021120020102112122122112020000"}
Returns: 1680
{"000100200022222012111220121101001110121101021021","002020002221102002121001000002120200100222201100","020200202011002201011122102222012200222020110212","102002220122021102112020211212112021200111110102","020001221001011002211211011201201212012222001011","000210021202002020100020020010120201010000221111","202220020002210121200021020110122202000110021000","000222200111212122000022102001212212222202211220","022011000112222101022210211222011101022221122201","020102011000012202020002202020201001101202200211","221200011000212220201002121020102110010012000210","211212212000102120122221221110201200020101102200","210000222021001021012121121011011211110101010101","200210112110001100210101020112202220210121212001","222112022222110211211111000001221110000202010020","002100111221012022110102112210002120001211201211","100002220022201201202102112202202212001212120002","221220121200101210201020220122120202200022112211","110121200021022122020002212221212121010102222222","121110002202111100201012020001121200212001100020","111210002012201021010000121101112020211110011022","201020002002111110000000112022120001020211201020","202212221002201002010002111210121211021000012210","012010120221111220220020020101001112220221101110","101200012212100112201110010111202111220221010012","200112201022220112122112100201010022202102111112","102110021211100220201210000020200222000120022101","102220102001010221201021120002210202101200112112","002101102221110102200210102001000212201112000210","122210012000121022111201110210002120110020122212","010121120212022021211110202200022121221112112020","021102211000102002121220010100202111200111121021","102210221121121220212011200002220000002202022110","122022221012221122120021102221110010110220020200","100210010010121210202011122012210101010010110211","000121221100100022100112122220110010121020110211","112200020100120002022002220121220101020121112100","202011022012110000111222200001200112201222121020","102020022100000110021010020110102001010210222122","120120122201112220101202211210112200122002110210","022120102010020112001102202012110212221001200111","120120021221112122210101120020212000120210000120","021102021201020211210201010101110011112120022221","201102212000111021201010112102122211122100201000","110011112002020102201121012202212000212000210101","012101022222100202200021011122001222101211201020","201011020110002101222211110111221011022112200200","102211001100110121202000221202010011002010101000"}
Returns: 1979
{"0121201010021212022001120210220002002111220110122","1000202012122012120111120101000102002102110110211","2002010000112211021211202022100001020101222112202","1020201021201010120122101112120112122000200121020","2202000222122101022212221220010122210012212001122","0010000220120122011100101200120110210120202000011","1201000102220022011002002220211012221001220220221","0000221011111122122221200120020010221110121012212","1102220100101212222121200111102201100202200022110","0201202100000022021212221111121102220210201120001","0112112110022211112101011111002011212210120112012","2210222100201200020010210112121010122202212222122","1221200110210221001200002012222100120111120221122","2020110120222000210010122021021220200102120210001","1111022212102002020001112220201002220021120200001","2210122222101020212022212111000111220202210020011","0101000120100202011222101101212021120002100210120","2222211222120121102021010112102212122200220222100","2010211221201002120101011200120220202221211020220","0121210212102000201001221012012110100012212220002","0112100221010102220001021011002000210110000120221","1112202112100012211110011022112211102012200100202","1121210222020112100200011221211020211122212000001","2200200002110211011221101211000111211222110002000","0021112001102222101111110000000200111110100002112","2101222111110021112000220001120121101220000201112","1021202211111221010112210002110120012222020220201","0122000011122101120212110120220112001201221111000","2011012011012020211001200112002010202222010200011","2002121202022200102101100212001020220221121210220","0000001021212110220222100000210202200210020221121","0101110021001201022102012111002011112020111202000","0001211100110201212101210221120102221002210100112","2212202012100021120001010102002120210110111120121","0001222212211222112121221100222122010201200201210","0022112202122022220010111010020121100221222001102","2202001100220000022002111121200210000022121121002","1110010122221102022010121222222001220010222221111","1000120101101020002111221220221201022101000011122","1210201020021212201202220021210020112010220002002","2122222122121112122202211002010121221202002000011","2120102200212221021100110022122111022202000120011","0020220101020000001200200001010101021200200122001","1111002001122220220211000221222211201200011010211","1112002122122102122220000021012002002210022102221","0021100220221000020000022101001200111112002020002","1220102210011000112022001120021011210110000220000","2102212110122001202020001100122012100120110120002","2120211201222111000212102210101021022122111112020"}
Returns: 1922
{"00110201211010201220012100120202221100102201200","00221201011120012210110120202120020010201210221","12011201012011202012212022110221011100020211011","12102222200021220202020211120100202201001121102","01120212020000201101011120110122011210101120220","22222001122010200220022001120211211221120222211","00021002210012201201000022200011011120020122120","11122120020112110200110102110212000202000100220","20020120022122110000202002000001202020111022011","11102212202101011001100211221210202122201122100","11200200220021110110201210221010111210221101212","01000001110020020111221001102010220000012220011","12120111202201212021010121101211021222202012120","00110022211010020001012021122021002002220112022","20222221101020000220222201122221112101220212101","01020001111212002011120102022120221122210021101","12201010010020020210001200011200112112020221122","22021222001100202020210020020202100111201212120","21100200001120211201120011210102111000012112021","00221010010111010010202222002102010112010201010","01200001212200210212000021122102100120222112011","11121201000211220120000121012010000221100012221","20201200201102201002000220220220021210111021202","11021001022010212002012022001122220210021102211","02212020011022000212222201010201202210201021112","00210122210111120012110210012021101022200012220","12111121022111100020102000021112120120022200010","20121201022002221210212011200212020121111000001","02000000011212221002220102100200012102112211210","21211202020020212211102120122002120000001222010","02202111011112220000012202110000020102022122202","20102112100011100222200211220200100110202100221","20020200221200121110100221100101022211012101021","22101110001220121011002200221220200022102120120","10121110221012212010001021002000200112200110011","10122212012020111101122220111011201012020021212","01001220221020021101221112220001121102211021122","00010102020022122102010002012020122220200212210","12001100122022220200211022011002012022022212122","00200220102102212011201200211020100210201110100","21011000111220000120201110212122220010210001001","22211211011201202212100100202211111002210020121","01122220220211122110112021001220021221110200112","10110220221022211221221212001220100112201000121","22012212012010111100022212002022010212110111012","02102122101122002221120112101102221121200212102","01120100102102112010112120010021101220201121220"}
Returns: 1801
{"0011001000011001111011011101001100100100000011110","0011010110000011001101100111110000101011111011001","1100100111011100110001000000010100001010010001100","1100111110001100010110011111001100101011010110110","0011001010000101010111000101100000101001000101001","0101001100010110111001101111001010111011010000000","1001110001000111000011111100100010111010101011101","0111010000100111110010000110010011000101000010001","0111100001000110111111100101000000110010110110110","0010001010010001110101010010100100111101101011110","0000000100011010010010010100101000101010100111010","1010010001101111001111100101001100011111100101010","1011000000110010110010001000111101101100010110111","0011111110010001011110010101010111100110101111111","0100011110111000001000010011001100001110000110001","1100101101010100100011011110000001010010010000100","1010010111001001001010111100111110010110001100111","1011110111101100000101001010101111111011000100101","1100010010010110100010010110001010001110001000111","0101100011010100010001011011101011100101010110110","1001101110111101101000110110111010001111100010110","1110111011010001010100110010110111100100001011011","0100011010010000100011010110101101100001101000110","1001001001100111101111100100010000101101001110101","1001011000001001110100000010101010000111100010001","1101111110110101101010110010100100000000010100111","0101010101000011011111101100001111010001111000000","1101110010010110000100000000100011100010100011010","0100101001101000110111101101001010110100110100001","0110000100001100100011010000001110110110110100010","1001010000111010111110101010110011101100101111111","1011000001011110110001100110010010000010101100111","0000011100000100111111001011111101100011100011111","0000000100001101010101100011001010000010110100111","1101111011101100010101110001111010000100100101110","0000011011010001110000000010110000001100011100010","0111111001111010011010010000001000010110101101100","1000000101011110101111011000111000111001000101001","0111011010110111111010001001010111001001111110010","0101110101010000010110111010000010000110100001101","0100001011110100000010101011111111101011010101010","0111010010001001000100000110110001010010100011111","0100001001000100101001110010001100011010000001010","0001100010111110110100010100111101111110100001000","1101001111101110000111011001001010000010010001111","1110101001110100000001000001001010101101111110111","1011001011001101111110110100001111101001010011001","1001000011111100101111100101011111110010111011001","0100101100001110111001011100101111000101010011110"}
Returns: 1798
{"00001111011100000001001000100001011101101001001101","00100100101111101001010110001000001011010111000010","01011000110110100100101010001101111100011011001101","00101100111001010000001011001110010101110110100101","10110010011111111100110011110110101011010100100111","11010001000110010111010011110000100101110001110110","10001001100101100100100100100101001110000010111101","10000110001010010011110000000000001000001010001001","01110010001010110010010101010010110011101011000000","10111000001111000111000001000011001100100010101000","11011001110011110111001000001101101101011101111111","11101110010010111001000000010100000010001011110000","01101101111100100100000101001100001001111001010001","01011010011000000001000000111010000010101101011001","01101010101110000010001010010111101111101101011010","00011101101100001100001111011000010011011011100010","01001000000100010010110011011000011100101101101010","00101110011010010010000011001100110011101011001110","00000101111000101100111101011110000110110000011010","11000101011101000000001110010110111111000011111101","00101011000000001010011101111111000110000100001100","01001101100000001010100100111011001001000000011110","10110000001000110011100000111110001100010111000110","01000010100010010011110001000010110101011001101111","01111100000000111101000000011101110000010100111011","00011100110010011110100100111010101001110111010110","10001110000001000000111001010010111101101101110110","00001100100101111011111011101100010100110001010000","01110000001011011110111011010100010000000001101010","00111010001110100111101010011011001010111010101011","00011000110001100011111101100100100100110110001110","10100010011000100000110010000100000010000000100011","00101100101000100101000111100010011111011100010111","10110000100000011101000110111000101010100000101010","11101011011010101001011001100100110010110000010000","10110110011000101011101100110010100000011110011111","01001010100101110111100000000101111000011111010110","11011100101010110101010101100000100000110000110101","10010100110011101110000001110110011001010100001111","01111100001010010010001111010110101111100011000010","10100001101111111100000100100100100110000000111100","01011000001001101000101011100010100110100000101001","01110011110100010101001001000110000110010000000100","11100100101111111101001101111000000010010000010011","00011110011100011001000110101101010001001100010111","00000110001111100011010011110000101111001001101110","10100011011001101111110110001110010100101100010100","10111110001000000101111101100010100111101010111010","01001100001000111110011111101111110110110001110100","10111011001011000001000110000101100101100101100000"}
Returns: 1898
{"011102220222120012210101121211122001002202000210","101110202212002121101212121020112201101101010020","110120121020022021000111001102112011022201222210","111012011000210000222122010110221022221201002101","012100212220121001000222200112220101202102001221","200200201111110120200210010111221020220110211100","221022010220121001020021201200020221202111100101","202110101111102200102022111200002220020111121010","021121010222101112022000102021021101220000212010","220021212020000001200121201112212222202222020012","212021212201122222002002022021200210002010020020","220001012010110010200211011220210011120102221011","100211111011021100002120200021000022101000221101","202121200021200222120111121122211020000212211112","022010121020100112221110220222022200200202102210","010001021020121012122002221000100120012212010001","122002001021021100010102120110011211100011101111","211010102120022200022122011010210220102000221202","210202010202012100012120112110011120102011200220","100200202000022212102111212210121111021102210010","010200022020201202220000111221020201110202212022","121122000102111011110011120122110210121021211220","011221220201211002210100101202111212111200212102","121220120121010222010100112122020110222002210212","110020211200212210121111021002000210111011221212","220101010021022221111201202101122101020200122220","111000112121010101221012120010221002112002002221","201111220102012010122121010020222001011000121002","120111002122222011112202001202221211211102210111","102021001210122000001222210020010222102211120200","111222000222020102010110012220000021201011122210","211222202101012011122112022221002122120100010122","222101021200012010110010021210020201112021102111","020010221220002122112221210022012001022022010122","001202220211220212210111100012220002200221012011","111210101201200010011020012112121120210011122202","010222202201102011101112101021211022021101022221","002202022002000100021212121110021201200221000200","212120200220100202210112102112102200100120221221","212211110201022200012020020012010020121021020120","000001110210010110100200100001102221022202102201","211120110202022210122102102021101211110120011221","002002112002221012222222210121101001002010012021","012001021222210102011111220212210112202201102010","002211012001112011002120122100202022201021220120","202121100000112012200212222012211102222122001020","121020011121011010212201122010121210202202212200","000110100201120112002022201210021212101011100000"}
Returns: 1882
{"00000021102011000012011000000002121110122200100","00202120210112000111010021110122200012120220202","02012112120112110121100210012111110022211210212","00100220111021000122121101012201100212021222011","02200010220010222112112010221222010020201220010","01120021102220110120211021000221122211122001102","22121200011120011001011121012220021212012120222","10200100222111012210112101120201122002001012001","12112102011002102102221220102011212111000221211","01212012102111221111202201011120110220021100012","20010212120102000222000101212112000222211200220","01100211011010020202210100102210200000202212222","11121221010102221122201110202100110202022022022","12210001212020022011120012212202120110120222112","00102100120020001100020100120120112200121112212","00102111020222000022011002100200021112222221002","00002012210012100222012122012111001200100122101","01111102112210102021221222211120002201000102120","11221201012021022202112001100010002101200010101","21122010212221022120112210101221001210002110000","00111201220221000211011000011212220011102022222","11021111200102211211102112010002111120020020210","10012112120010012122120011021211010120020201212","00210011221110101202010011002222212202220022201","02101220200011002201011102112122102200020211021","01010111011002022210021120110021001112202102221","01002001102122110211000011010211020100221021101","01112012011001201100112011102200021010000012222","00221020212222002101101220020112001110201010001","01122222011212121102202210221022220211211100010","02102220121100201212101222101201022122120212222","22112101102002001001221221102210001001202220212","12110101210211100000210210000200011001200222212","20101222110012120000211100220220102222211202220","10000212200000211221010221011021120102210000120","10020220122021212212011221101210021011210122121","11212110122001010001122001011120020101121212110","02220122102020020110100202000121122110201221100","11202100002201121020100202202212222212001020202","22120210021022220000022220200120011120001201022","20111221011220120002200002101102010011110001100","22222010212202121101002021000122220122020012002","02122021200122122011220210211012200212200100111","00020102100222212200201212120020220221011200201","12200120202201201110222202120022221111201012000","00111020112221100200211022020121122210020010002","02210221120222221010202111121022200100220211020"}
Returns: 1943
{"000210000020101212221022221202111002000002101202","002210011100112021212010200222120200212210111220","020200110222111211122120100111222021001212221101","222012201102121211220222112010202021210210212101","110100220002000220000020210002022002200022220010","000200221200221001222021122000120202110000222000","001222002200111012210200012021021100110011010110","011022001001022000000212121210010000100211120121","010101210200211120112102102212122002022212111000","012102202010020002102120000002121101101201012212","202000000101002201120120220020101022220210022100","002220010010100211111011201022002221020100000022","111102102001012002202212022121012120110100221111","011202121200100022010221100020002110212222220102","121101121020200022211001110111021122001120000001","202220001022000001010012020100101101222020121110","121120102001022002000001012000212212120121200100","211101200211222120210012010210022102211111011012","221202201111202002010111200220221000000102202021","212202101021011101100200111210010210102221110120","122002002201201000000121001202120002102002111112","001200221110220000121000110021012220010011102020","212222010221120101102002201112022001012011202002","200201022001211212101020112111201200212022001022","221121011022011000210121022102121121212112111020","200112120020201211010101202100212201110112101110","100202212001200020011012220022101000011202212201","221000022000101102222011110002122222002012221022","021100211022221001210211002001210200222201112110","221020102202101000002121202210120021111221102002","112201001110000120201002121121002221212222001122","122022212200102012212120210212001112002222100112","102220102112221122100221121200210012101201120211","020002100102111121020202120220210022011121000100","002200000022212010010200200202211200002102000120","201122002121002122002010110201122200121101121000","020221110120120212011002210021201001001200022222","010101102022110221000111111021100102001022001020","021000002100021201022022201221221121110022002000","022200022221121011120000112022222111200001120021","011120111010022221020112110102220200022001111122","202020112100020011212112222211221121022110201112","112222011000220120211120112211011001000112000002","012122121120220201011000101210002002200210001202","111202001220100101201221112122100001212011010202","221100110210110110011000012010112110200011022021","020010120102100101221202210210211020220221000200","201100010202121002102022001202221000200122222100"}
Returns: 1856
{"0020020111200102112002112122010121200221220011","0002212122010200110022120210221101220022000011","2002202120011121100112100001222120210112002102","0220102000100012111020011220011202220120022100","0221011001102120021022002021012111012010102110","2100100201221011122101001011001021110002002102","0222100102110010111012200102201011001100020021","1110021011202200200011101100221102020210112100","1220000101020110110011112012021122200221220220","1200112110020001022220111222102120110212100222","2001121200010000221000200022111102101012211011","0110021022101122012220020020202211111120011112","0010210200010012002002111222101210112111211201","1210100210010002101212012021000002120002120012","0021211010021002000101020010100212001002122201","2012010001022220102122222211210101000212102110","1111011210200101000210211001210121002001210101","1101221012210000002010101221222220110221011211","2001121002122102020111220102200222000122221100","0010010002020211201020001212012120220110201011","0212201112020102111202101012022211211012000212","2220212110002212001020121121212011112221110012","1110002111201002212011021200222020120010111210","1201000011021122102002202102201102012102222221","2001210121001202110111120121010112212001011001","1202001102002002021201211011102001200112120210","2102210012222211020112002101112211021020021001","2010112022202101112221021110112110020221112200","0220002201121012222002220111022020202212022222","1221100220100001120121201011201012222112011111","0121211112121000020222210222210100101122111011","1112100111122021122120011021001010120102220222","2020121022011010222211201011210102102210120010","1102111220210221102011022110020020010112120120","2222010021111100010221102200221110022111112220","0212110201011200010211211022020201202010021102","0000201000112010200012022010221020220022201200","2011001222011002021102010102211121100000020112","2212100121121001022112100122112011112001100121","1220020012201222112021021201222202102010010020","2000100121202111202201120101001211102010012020","2002002120111220112001121221211222120201100022","0022220200111022011100121012211000211000200110","0011110122012021121020220202210201212110001001","1100102022110101010111120100211212200122221000","1120021002121210110122011010211200020210020100"}
Returns: 1700
{"00110220110000222202021111222100121222212100220","00210021221020021002222112200221020102110211102","12022121102210101222101122210111121021011120120","11200201020221000212102211002100200022010221220","00200120212011212012002210120100200121012111010","20121021222002122000002012221012220121200122022","22202200221100201212200012210211201020011220100","01110100221112102011120212011012011221121222020","12102222011212011022222221101002221022000012022","12021222101101201111111000112022022202110201020","01202211110000102211022011000220210011110011122","00220011210011010200010021112201111210101002210","02121001100102120210020021100121221201022110001","00011202210120002020020210210120201222100101102","20102121021010021102220021111000020020120101021","22001200100120202021221111002022022211012111012","21102212112002120112001121211022001201102021101","20220020012220101022020020021010022010020122001","00211011211012021201222111102112100002102200210","22222021211000212210102111122000101012110101100","02110021210000220021001210122200100010222110221","22000002212122220220001011101011022022001121200","12122200212000011022110011021022002100000211100","11122002200002011011200020220110120121010210212","11211111201221212211111202001011100201111202010","12210222101110111011011020120210002020201111121","22201220110112102011110201011000221120112121121","20102211010101101202202202101211020200211200122","20020101120200121122211010110010201201120011121","12111020002211000010200102020002121021002201102","02100111022022022110012111011001210002122000211","01100212220110022020012010010210020020010211011","10122220202122000011100110202120021101122100220","22200201221120220200020200220212201211022121211","10100011120111021201022002101100110002021201121","21001102020222022000001120122000120020110202201","20222222201102210101120202200202010200200212101","22121101221012011022020110001120112000012102102","21000201011101101011200012121010100120001012202","11111012011020210201200110112021222101000102021","20102011000120022020210011210220221002100101122","12121122020011110121112221120202112221011020211","01221222101010012200121101201001020010100200101","01011202211201111201011021101101011222221000100","21120010001201001021221201111120221211201211010","20221202222100210010200112222011212000022100101","02000200202012121100100201121211011112212110010"}
Returns: 1660
{"02110210202202012200110212221011010102100101010010","20210020001110201010002021201010001102012210100102","12021211120112221110021010221101002021111200101221","11200220011102011221012210211222222021101021100201","00100220210201001220011002210102210022111101002012","20222020010000110201012210202221102201012000010112","12122201101010022212020110111222021100101202210201","00100010120002122011222000201011221220200200121100","20102011011002212210020220100011021002201001022102","00211102100012100101110001120102012001120021121211","21010010100020121112010201222022022210210222000220","21112000000020212001212121100121212121002010100121","01100010012202010110212010011121220122200212210210","20221002220020221221210010122111101121210201001221","02200101211202001012100220220111001200102121012010","10210122102112002101211211110202002001011021210111","21111022201201120200200110212021000012022202011200","20122220211012012021010002111221100202201021110221","01122011101012100201220110120022212210202012012220","00010121012101210110010202210101022210102210221010","10000002010222122020020000011222221211222202220012","10211122211111010121202120011111101011001112012010","02121202000220010000020111210002000210021220122101","20020210202100221012011010001021022122200200022122","12110110200211211010021100012202111020010222120220","21002000011100010202001000120100112020011102202020","22222212112101212112002001002212000121110211021220","20211010022012211121111012002211120220120021010112","11110211002012002100110120220101102202001000012112","00121220010111120201210021221010102202200011210100","11020221102221102220210200110100112201212001022122","10122121122111121121212120211000112102221012120102","00022102000221000120210011011111001211112201010120","10021022212120000012200211020011000011200011002100","01220211122201120022110212002222100110110102220122","11000212002111200222202100122221201022022022011111","00222002001222001011111222220000111200012110000100","22112100210121012200110200102212110200001200200011","10111012212022100221200200110222121000001021020002","01101100021001012000202011120012101210002111220202","02111210100200212122211001001021200221120011102122","12201022002022102002212221200000201012010001012210","01020000022110220211012020120101010210211002020201","10011020112021112120220022110112112200111120010110","01110021010120020102201012000201002002021000022220","10000112220010111112212220211122102100220121202010","00102001210001201021022202102020020100002200220021","01220121122122012220001120211111111110021221200021","10201100012212110221110222211020202101002101212201","02112210210101010100201200022022002101222010001110"}
Returns: 2231
{"00101001100011011000001101100111111001011000110111","00111100010000111110011110101011100011111100101001","11000110111000101000001100101101011000000011010000","01001011110111100000110101100101001111001000001010","11010110011100101001111100111010100101001001111000","01101011110111011101101010111010010110111101111000","00111101101111101111001010101011001011101001011111","10010110101000000111010101001010010101011100000100","10110111011110010111111011000000000110011010100001","01111100101101111101110011110111010000011010110111","00101011110010100111010111010111000101010111101110","00011110110011000101101010100100101010000110101100","10010110101100000111101001110100000001111101101010","10010110010100111111010001001111001010000110111110","01111010011001011010011110111101011000000111001001","11000100110001101100110110000110101110001001101000","11101110010001110001011111010001111010010111000110","01000111111111010001110101110101111011011010010001","01000011101011100001110101000011001001100110001101","00001111111111001110110001100110000011100110011000","00011100110110010111000111100010010001101101110000","01011001111001111111000010011100111011100100010011","11101110100110101000000010000110110110100101011110","11111001001000111110100000001000011000010010011001","01000110111100111000111000011010010111101101101010","10010001111011001111100000100111110110010110000110","11111110010110100101100001000110101010100001011101","00001100011010101100010010001011000001000001000110","01101111000001100000010110010001011100111001010110","10110000011111110101011001100000000100110110001011","11001111011001010011101011110001010101110111111011","11110010011001101110000001011010100101100101010100","11001000000100011100011001100001011010101111101110","10100101010000101100111111001010100000100000010000","10110010000101111110010100101000100100111100110100","00011101101000010000001011001111001010110101110001","01010110100101011101011011100000100100001011001010","11011011001010000111110010010011000000001100000010","01000110000010000011111010101111111100001001111011","11000101111010001100000101001110001100000011000100","11011111110010010100100010001000101011100000000100","01000101001111101011111011000111101101000011000010","00100000111101101111000101000110100010010101111001","00101110001010111000101010111011100110110110110110","11001100111111010000100010000010101100100011001101","10101110010001000101111100101011011100100011000011","01011110001111110011001110100110100010100010100100","10000011011101001010001001111001101000011001101001","10010010011011001000011011011110100011100101010001","11000010110000100110010100100110000100100010110110"}
Returns: 1739
{"012112122222221211120012202122022210221222100","101110020020120012010201221210211212111020021","210221102210210012022210212121202110000120022","112012011122000012222211212202021122010000111","112102202022101021201012010112212211121220022","201220122111022010111002202100102210112210120","101021001222002202222222210222010000100210222","220102002200112202022211000001002011101222100","202122120022021211110120200200122111212020110","202101220011210001012002110011111221022122121","221221202101210121120211011110012211111001121","200221202110000020200201220001101000002102001","212010010220021110201020010000211010102110220","221002012110202012010122021010001112010002120","100012221000120100112220112121011002202212222","200000222010101020110020211210011000210212122","111121001022110200202220012101100010112120221","122210221110020000000212100110002222100020111","100221201012201120011022211222012010101102100","212201221120011100101110211020122110000200220","002211220200102020110111212121011211021201121","022200221022012022011012001022012202021221122","101110212010222221211100220000220210020111201","210122210211020002201200210120211210102100111","222202202102001201222022011212021022202100102","021110100112121110111021100121011122110220211","212202000010012120112100100011122200001122212","121211202010001211201001210001200102022201111","212010200110012101222202121001200222002001120","201220210101001010201200211110201001110110022","022021001101200010010022001222002111021220011","210210102110101100121121212000001202200012010","212122022121111102221201112001210121020010112","221122001220010002012222012120121010102102011","111211011210110012111011220020102101010122210","020210011110022002001200220221121010121212110","210011112010102211100001210001020101012101211","210121001210010110002220010201202012102222121","110012012212202020101102201220100201220112000","201022220101102210122211121201200112121002110","222021122200101122000210022001211021021002000","200000020212022200201110002110020222122220201","100101211110212121121121122110001021210102002","022122201220222221022201011122111111120100001","012120200111002211001211212102102100110001210"}
Returns: 1450
{"001000101101100001101011010111101011100100000100","001010111010001100011111110100001000011000010100","110110011111100111100101111100011001111100001010","001001011000100010101100100110000111100000001101","011000011100101111101010000100001001101011110010","000100011001110001101010110011000010111001000110","110000010111010101011000111100100100010001000111","011111100010000000001111111001011011010011000010","111111000100010010011111011111001110010010010001","101010101000111101001101010000111000011101010110","011000110000100101010100110101001110110100011010","101001100000110011000100100111000111100011011011","101111000111011011001101000000111100110111111011","000001101101100100010111000000111001000110010001","010010000100100100010010110101110001100010110000","011010100110011001100111101010000111011100000110","001110001001100000111100111111001011100110010001","101011100111100100001100110101111010100001011001","101111000000000110001001001001100111010111010001","010000101010011010000011001110100111110111101011","110111111100100011100101010111010101001111010011","011100011111110111001011010111101100111011110110","110011011000011100010101000111010010000001010010","111000011100110100111110110011101101000000111100","011101110011001111000001000000111100100100101010","111001111110001011001101000110001100111101111000","001000111000000110110000000010111111011111001000","111110101011001011011110010000010101100110110100","100101001001000110011111011001010101010110001111","100001011011001011101111000010111101101011011111","100000100100111001110101101001011011110011100110","001000010100111001001010101111100110100010110000","111010011110110011000101111001100000011000100011","000100101011100100111101111111010000011011100011","100101011011000111110010001000110001110101101111","101110010001011110111001001111100010101111100000","101111000011101011010100110101110011001100101000","011001111110100100110100011010101110001011000011","011011000100000100001100011001001101110111000000","101000000110110110111000111110000011101011000100","000010011001111010111100001111110101011101001101","000011110101100001111110011001100111011110111001","000010000000101000010101110100111111100001001100","010010001111111011101111010101010000000001001000","001100000011100001010001111011000010100011110000","110101100100000100000101000111100010000110100000","001011110111100100011110100011101110010000000000","000100101001110011111000000011001110010011000000"}
Returns: 1748
{"0011110111110010101110110011100001010111010011","0011010010100011011111011111011100101100111100","1101010011100101110000100001110001001001000000","1110011101011110110111101001011010111011011000","1000001001111010010111011100111111111010000100","1111000000101001001100100000011111100111110000","0001100000011000010001100100100100001000001011","1001000000100100100001010101100111001000110101","1110000000001111101110011101110111010111110000","1011100000100111110010110011011011101110111101","1110110101000110000011000010110111110011111001","1001101000001111011101111010100011010100000010","0001111010010100110110101001111010110000111010","0011000111111011110111000100000100011011110000","1101100011110101111011111100101111001101001100","0110010011010110111010000101110000100101101111","1011000111001111010011110111001010001101101111","0111101001011111101100011001010001110111001110","1100010010010011010110011001111001110110010111","1101110010011100011000100011000010110100011010","1101100011101111101001001010001011100000010001","0101101100110110100010111111001000101001011110","1011011001011010100101010111101010000101101010","1100100111010010111001101100111001010001010010","0101100010011010011011010001000100001110100100","0100101110000111100001110011110111000111010101","1100000001110000100111100101000000111100011011","1111000111001001111101101110110010001110101000","1010101110111011001000110101000000001001101111","0111110011101001011000010101000010000000000010","0101110001001010101011110000000100010010011101","0100111110100110000000001100001001101101111110","0001110111111010100110100101010000011011111101","1010110111110010011010010100000100101111111110","0101110001101001011111000010000101010101011011","1001100010111100011100010010001010101001110010","0111101101000110100001001011100111010111000011","1100010011010011111100101111000101101001110011","1001110011100100011000001101001011001001100000","1011010010100111110001110100100111111110111100","0100010111101101100000101001100111010111011000","1101010111101100001111010110001111110101101001","0101001001101011110101100011101111100001110111","0100100101000011111001001100101111000001001011","1000001000011001111101110010110101111100001101","1000001101100001101010000110101010101100011110"}
Returns: 1486
{"00000010011110111111100000000010111100010101110","00100000100100011110100010101110011100101100001","01000011010001110001111101110101001000010111100","00000101011111001000101101100001111101101110010","00000001010011101001011101000111101110101001110","00010000101110111101000100010001011100100111110","10100000000101110000111010000001000001101110010","00111000001001010101011110000010111110111111000","01000100000101101111110100000110010111010001101","10111000001111010000110101000000010101111010110","10010101010110100110000001101110100011010111001","11010110111000000001011010111000101011110100010","10011100011000010010010110000000001011110010010","00111011110000101111110000100001000111000010110","10101110101001000110010001110000100011100111011","11100111010010000001010100000110110000110001111","11011100100001000101101000010111000011100111001","11000101101001101011101100100110110111100100110","11000000101011100101010010101111110110111000100","10101101100101011110110001101001110010011101010","11110010110001001101010000010001111100000100001","00101011110111110011101101011101101110011101010","00111011000100001100010001110100001000011011010","00111101110010010100010001101110010011011100000","01000011000110000010000000001100000001001111000","00111000011000100001011100101110110111111100110","01110000001101100111001101010011010011100110010","00100100000100101000111000100000010010011010110","01000000001100000011010111000010011010111100011","01101000101000011110011111000001001100110010100","11001001101000011110000101101001111101001010101","00111110000001001011110000100110000011000000101","10011001001100110111110001000010010001111000111","11010101110000010111100101111010101011100101111","11111101000110000000111000001110010011011111011","11011101110001000110110001000110000010010101000","00001001101111101111010101111001011100101011000","00010010111111101100000111100011111000101010100","01011111010110111110000001101100110011011010000","10100001111110010011011101011100101100101100110","01011011010000000011011111011010101011110101111","11110111001100101101110111101000011100011000001","00110111011011101000001010110110001011100001010","10101101101000111001011010000000011110001010011","10101100110001010110000001010111110001011000001","10011110010111110101011001111000111000011011001","01000000101000111000100000001011111000001101110"}
Returns: 1619
{"00000201022012020011212120201121020221101221112","00222011201211222201112100022021001210212010212","02002000211112120110120020111120220020022212111","02002220201202111202220222120002012020120201012","02220011022200211221201012122021120222100102200","20020001221001122010112002021210210020100022212","01021002002000120102101120010212220220110100001","11001120202101112111101012021012102212112022121","02220202000121000002110201021021110100021211102","20102200002001022110002021100021101012021112111","21112122020200110101021201212122212022122022222","02122001102021121111122010001210120201010202000","11100000200202021211101002222200002002200020012","21220101110120021121200110121211020212012001221","02112111001100010210100120221200101022110200011","22211221021222102021110020020221102211210122102","02011202020111020211200001022202121112112102100","02122011011121202021021222011111222220202200021","10102101010112121201110102111010101011210000120","11021021201111011110100122110012200010022001100","21122111100112112011021212010101211120212102012","11220100102200010210202212000000220201122221112","22001211021210000100120021220220012121211100002","11020010202001100211220000210222120211102101122","20221021020101220202112001011101000101020010222","00022202111020001222221010010121202120002001100","20111000012021200011002200000212020212220002211","02122212201022222111102111001021221101012021110","12102101102121102110000010010201112202020210100","10100220001222222100102211202022200021100000111","22202111222101020111002202120201122110210222020","11021022112001012102100211211210112021210120101","00201221112100111212220102021211020011210100210","20212120101202002200121200221021201001010100221","01020002012020121210102002012022010221011010122","22002022100202021200121211212010002022122002201","21222221012001211211202102100212102202201202100","10002002022122212010011110212101111220212221221","12011111001020121220212100200122200122022022021","01220011222101111012121020212011111201201000112","12200002112002002202221202020000001212210011122","20221010210200211200121100002021110022000022021","21100202112020020000020010021022001002201201100","10212202122201022001210101210020000221201210101","12102201112002011011010121211101221212011011002","11110102012012100220110220110120122002212200000","22120211212021120100222220100101012101122101200"}
Returns: 1755