source
stringclasses
4 values
task_type
stringclasses
1 value
in_source_id
stringlengths
0
138
problem
stringlengths
219
13.2k
gold_standard_solution
stringlengths
0
413k
problem_id
stringlengths
5
10
metadata
dict
verification_info
dict
taco
verifiable_code
https://codeforces.com/problemset/problem/743/B
Solve the following coding problem using the programming language python: Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following algorithm of generating a sequence of integers. Initially we have a sequence consisting of a single element equal to 1. Then we perform (n - 1) steps. On each step we take the sequence we've got on the previous step, append it to the end of itself and insert in the middle the minimum positive integer we haven't used before. For example, we get the sequence [1, 2, 1] after the first step, the sequence [1, 2, 1, 3, 1, 2, 1] after the second step. The task is to find the value of the element with index k (the elements are numbered from 1) in the obtained sequence, i. e. after (n - 1) steps. Please help Chloe to solve the problem! -----Input----- The only line contains two integers n and k (1 ≤ n ≤ 50, 1 ≤ k ≤ 2^{n} - 1). -----Output----- Print single integer — the integer at the k-th position in the obtained sequence. -----Examples----- Input 3 2 Output 2 Input 4 8 Output 4 -----Note----- In the first sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1]. The number on the second position is 2. In the second sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1]. The number on the eighth position is 4. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, k) = [int(x) for x in input().split()] tmp = n + 1 lan = 2 ** (n + 1) - 1 while lan > 1: if k <= lan // 2: lan = lan // 2 tmp = tmp - 1 elif k >= lan // 2 + 2: k = lan // 2 - lan + k lan = lan // 2 tmp = tmp - 1 if k == lan // 2 + 1: break print(tmp) ```
vfc_138264
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/743/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 2\n", "output": "2", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 8\n", "output": "4", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 27\n", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 44\n", "output": "3", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/sherlock-and-permutations/problem
Solve the following coding problem using the programming language python: Watson asks Sherlock: Given a string S of N 0's and M 1's, how many unique permutations of this string start with 1? Help Sherlock by printing the answer modulo (10^{9}+7). Input Format First line contains T, the number of test cases. Each test case consists of N and M separated by a space. Output Format For each test case, print the answer modulo (10^{9}+7). Constraints 1 ≤ T ≤ 200 1 ≤ N,M ≤ 1000 Sample Input 2 1 1 2 3 Sample Output 1 6 Explanation Test1: Out of all unique permutations ie. 01 and 10, only second permutation satisfies. Hence, output is 1. Test2: Out of all unique permutations ie. 00111 01011 01101 01110 10011 10101 10110 11001 11010 11100, only 10011 10101 10110 11001 11010 11100 satisfy. Hence, output is 6. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python MOD = 1000000007 t = int(input()) def f(c0, c1): c1 -= 1 res = 1 for i in range(c0 + 1, c0 + c1 + 1): res = res * i // (i - c0) return res % MOD for _ in range(t): (c0, c1) = map(int, input().split()) print(f(c0, c1)) ```
vfc_138268
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/sherlock-and-permutations/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n1 1\n2 3\n", "output": "1\n6\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/quick-sort-on-linked-list/1
Solve the following coding problem using the programming language python: Sort the given Linked List using quicksort. which takes O(n^2) time in worst case and O(nLogn) in average and best cases, otherwise you may get TLE. Input: In this problem, method takes 1 argument: address of the head of the linked list. The function should not read any input from stdin/console. The struct Node has a data part which stores the data and a next pointer which points to the next element of the linked list. There are multiple test cases. For each test case, this method will be called individually. Output: Set *headRef to head of resultant linked list. User Task: The task is to complete the function quickSort() which should set the *headRef to head of the resultant linked list. Constraints: 1<=T<=100 1<=N<=200 Note: If you use "Test" or "Expected Output Button" use below example format Example: Input: 2 3 1 6 2 4 1 9 3 8 Output: 1 2 6 1 3 8 9 Explanation: Testcase 1: After sorting the nodes, we have 1, 2 and 6. Testcase 2: After sorting the nodes, we have 1, 3, 8 and 9. Write your solution by modifying this code: ```python #User function Template for python3 def quickSort(head): #return head after sorting ``` Your solution should implemented in the function "quickSort". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python class Node: def __init__(self, data): self.data = data self.next = None def quickSort(head): if head is None or head.next is None: return head pivot = head current = head.next less_than_pivot = None greater_than_pivot = None while current is not None: next_node = current.next if current.data < pivot.data: current.next = less_than_pivot less_than_pivot = current else: current.next = greater_than_pivot greater_than_pivot = current current = next_node less_than_pivot = quickSort(less_than_pivot) greater_than_pivot = quickSort(greater_than_pivot) pivot.next = greater_than_pivot if less_than_pivot is None: return pivot sorted_head = less_than_pivot while less_than_pivot.next is not None: less_than_pivot = less_than_pivot.next less_than_pivot.next = pivot return sorted_head ```
vfc_138277
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/quick-sort-on-linked-list/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "quickSort", "input": "2\r\n\n3\r\n\n1 6 2\r\n\n4\r\n\n1 9 3 8", "output": "1 2 6\r\n\n1 3 8 9", "type": "function_call" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Several drivers had lined up for the Drag Racing Competition at the Tokyo Drift Street. Dom had organized the competition, but he was not available during all the races and hence he did not know their results. In the drag race match, 2 drivers race against each other and one of them is the winner, and the loser gets eliminated - there were no ties. The competition takes place as a knockout tournament. There are a total of N rounds, and the number of players in the tournament are 2^N. Dom's friend Letty gave him the results of all the races in this format: A B - denoting: Match was between A and B, and the winner was A. Note: The results are not ordered. Input: First line contains a single positive integer N. 2^N - 1 lines follow - Each line contains details of a match. Output: Print the name of the driver who won the Drag Racing Competition. Constraints: 1 ≤ N ≤ 15 Names of drivers do not contain more than 15 characters. (Candidates solving the question in Python or C++ will be given preference) SAMPLE INPUT 2 a b a c c d SAMPLE OUTPUT a Explanation Consider [a, b, c, d] to be the drivers. c eliminates d. a eliminates c. a eliminates b. Hence, a is the winner. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python map = {} details = [] nTestCases = int(input()) for i in range(0,(2**nTestCases)-1): matches = input() details.append(matches) racer1,racer2 = ''.join(matches.split(" ")[0]),''.join(matches.split(" ")[1]) if racer1 in map: if map[racer1] == "false": map[racer1],map[racer2] = "false","false" else: map[racer1],map[racer2] = "true","false" else: map[racer1],map[racer2] = "true","false" for k in list(map.keys()): if map[k] == "true": print(k) ```
vfc_138279
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "9\nznejwgwpok wohkjjwlwn\nuwdszgerob pxutblrgio\ntnvpozvuib rmkroequbu\nxozaulqdsc wneolwstpl\ntnvpozvuib evrtybebba\nrfsijiyzzn ehbrqxwqft\nrphpmhvjxw luohdaqoyr\nrsdfhgmges chjthfleee\nqrjdszcwxt abzorlrlsh\ntgszjlyyra cdvenegwyc\nneigxtnilh mcizjrkuof\njyxkpozzlr iijjdgauzu\nvkzhdolaqo yldeohgpgi\nvtsnibclli ewwqmecpuz\nbbkdpwswsd vtfcbswyhf\nkrhddnaxfk rcxmteebgk\ndswggqhfgq mjqhdpgnnu\nqzgkdqwbpe asrkpewnex\nfogdrmyosd jwwqkgmubi\nyhgrobbtul qdqtptzhxy\nkhvpurvdzd mkfeypphbv\ntlgmuklsnc rajwqdgbwt\nytuuqjdmjh pidibbbnlq\nzqyprwkorh uoaiofffom\nkblhkdphza izeizfgqtw\nysevqiplfi vrqfyqdvkw\nywretmpafq wkvguyqjta\nhjhfrthgma ytuuqjdmjh\nwneolwstpl bagywztxjw\ngswytjikfe wupxevebhs\npxutblrgio mhlcamxnfj\ntoatbmtnwg mjfijbzrcf\nllayklhmjr igvegvqtdb\nurrvjcihfx mosetlylki\npywhbndfef xsylilkhol\nygaxotbplp gnxegsybsp\nafumkbrpto pyexmfwldu\niijjdgauzu zeoepqjxsu\noeotvpdunq iojqlebslf\nhrsyclhlvb gvvwoisdrh\nlgveokseki byojojcwcs\nabzorlrlsh eilpkozgka\nmcneszimyv kwkiwhqlpo\neasrbeylrh gfbykrvqiu\nzjlgxvpmtu csgtnvueqb\niypcmtmzac pfpmqvotay\nduzhtglnem urujebayib\ntjraucsfur fjqedneqwt\nevrtybebba mkcrgzisio\nrixywhcllu mawuqgahnz\nhjeferqylu gfflgfpbli\nhffzrlnyuz qabargjsno\nvevdbeskbr pilnotldcd\ncipipwlyol zbjmdtoiee\nybmjognphd raoopmmirs\npxvnefcmia esvigwhoxa\neabxwdenjq wdmcdmtmtt\nfpocgjvpxk fsotjgttjh\npacjyjkhfj itzmdrqmhn\niylnerhfob njaovpzihr\nvgtzwkcudi oeotvpdunq\nmkfeypphbv daikmzranb\nhjhfrthgma yvinhtynzp\ntjraucsfur ekaormkdhk\nympbwqvmnd xjnoawozne\njyxkpozzlr midzfgtwty\ncfekjregsa fboeomuxud\nnqajwecexu kthngpumdh\nypxydwwmvz avzzjfpqtu\nfjqedneqwt rwnrezltfw\nwupxevebhs kilxmhxabe\npxutblrgio khfthpueby\npilnotldcd fesgbvnpav\ntgszjlyyra atxaramael\nbezklpuvmp liwqztxhou\nigsdrhjben oiytaolwnr\nfogdrmyosd domkuqvudo\ntakdnweruu oxpegpcptk\nbezklpuvmp vynygwmuks\nsgkqyfmunk atkjzubhcf\nuuzkmlflaj diovjgpusr\nikzgugsrwu agbsnamfoi\nkthngpumdh iyzgyeadop\nqzgkdqwbpe ywodejjzuz\nbbkdpwswsd rdzhzppiwi\nvevdbeskbr qtvozywenq\nydyqavnwgb ntgashbmvz\nhrsyclhlvb udfgyrlzlw\nzjlgxvpmtu chwohycrac\nvtsnibclli ywretmpafq\nuwdszgerob sgkqyfmunk\nxzugfedcbi hyfrgchdnu\nrcxmteebgk dxuvfvsbcq\nwdmcdmtmtt hiukkighqb\nzeoepqjxsu pacjyjkhfj\nbmyctnzlqf tuzuylzoiy\nluohdaqoyr xgogbtqgup\nulwghmnepp bxnebtbpsc\nepsifweknh fogdrmyosd\neprcxhmabk fsbzykdxgr\nulwghmnepp sbrhdradkq\njyxkpozzlr duzhtglnem\nrdzhzppiwi bjwtonxodv\nsdqdsnidaq kblhkdphza\nyhycpvazvd crhgugccad\nsdqdsnidaq mvuuvrwbvj\ntgszjlyyra gfljopgmne\niiberzcokt grilztoibr\nmidzfgtwty syzukyibyf\neabxwdenjq deprupkfdx\nywodejjzuz yidalokwno\ntgszjlyyra ikzgugsrwu\naiiqazrzbj wxsyncnkmo\npxutblrgio epsifweknh\ngswytjikfe xcyulgsjdj\napdsicqcad dlgptwoxyn\ndbpwwgrlzp uiroqbyitw\npcntinggbo nqajwecexu\nmjqhdpgnnu guocapxvab\npcntinggbo takdnweruu\nwcvhlwcspt cfekjregsa\nnsoplmtedg libhrmhdiu\nikzgugsrwu nsgnjjnpiw\neuaffeydeo gyqpucqtmv\nnqajwecexu zvlpenvqrs\nuwdszgerob tgszjlyyra\nxleqqfiyty lipeggfqau\nalpwexrich nhbyzigkrl\npcntinggbo jipyxcxbpy\ndlgptwoxyn glyrdsxxlw\nrhdofjmcjx zqlreemosk\nzeoepqjxsu gqycjcjbfk\nzjlgxvpmtu iiberzcokt\nsbkfbxhmxw mnwjtyuqbu\nywretmpafq eejzsgqxpc\nimhjrhanek qjfhgtvofg\nvynygwmuks runjbodcdb\nywlyehefhq pywnaetkjt\ntlgmuklsnc ypxydwwmvz\ntcoedyerqq hzcyagphgu\nmcizjrkuof elnaotvqub\nsxlfdkujhe zejzyxgrzw\ntyzabiiqwy xfwvhlroxz\nlzwcljlocm mcdeuvowii\neasrbeylrh tavxlqnhhn\nuwdszgerob thfcrtsjrm\nijetrpnsjc vevdbeskbr\nxleqqfiyty arccqsnddb\nkspxdwligd ztdrirtoup\ntoatbmtnwg tpnpwzinsi\ngcqipxrpul hffzrlnyuz\nnsoplmtedg fpocgjvpxk\ntyzabiiqwy rsdfhgmges\nuuzkmlflaj laigxkcxvi\nfbigvckdtn kepblppgys\nydyqavnwgb yvscuugvok\nsgkqyfmunk imhjrhanek\nreduwswppg wrrobffykf\nagbsnamfoi ormfdlqygz\ntakdnweruu vhddbjeytd\nfwjfkfapsj mhdrdbmvsz\nznejwgwpok yhgrobbtul\nfdjavffqpk cclzzpkrii\nviattfhnlb yiezdgzjbq\npxutblrgio rfsijiyzzn\nkggstpqlfe cfgqjwqlpv\nbezklpuvmp neigxtnilh\nijetrpnsjc xnedwtyjfn\nyxrbahajkx xnibljfqle\ncooqncpuca jjolynyybb\nympbwqvmnd rhdofjmcjx\nfedvkjmmaq zqyprwkorh\naxsrbawcuy idlelpbvkj\nxiscpzdnsq opbvszxhpj\nmxipvybgjf dchoewlcsj\nntgashbmvz nyxaijlclu\nijetrpnsjc cqksxdbtxs\nuwdszgerob elsyhcqhxc\ncqhznmdmvl lmkhjfzuwt\nwkvguyqjta duyjgmymzz\nidlelpbvkj yifixftecz\nytuuqjdmjh amrbhfvwph\nepsifweknh pxvnefcmia\nelsyhcqhxc obiojecbrx\ndhohgoanil lgveokseki\nzyjwmilgbm ndrlapgknm\ngyissrdtfj rphpmhvjxw\nllayklhmjr kkuxowxdgl\ndiovjgpusr viattfhnlb\narccqsnddb inoijnuzvt\niylnerhfob tqvlnfkwoe\ngyhvwudbzn tygjlsuqoo\nqwwdrrzfso opceuwwafd\nfdjavffqpk lmpvjhocyi\nvtsnibclli nhobylorvz\nuuzkmlflaj umjyonhini\neprcxhmabk fedvkjmmaq\nwneolwstpl udnpgnbuoh\nayagsilncd gyhvwudbzn\nfsbzykdxgr uoyvhecmoc\numwrtyeakn dhohgoanil\nfppxioohqv yfjxtbgtzf\ndswggqhfgq ccprojzxlp\ntlgmuklsnc bsocbdsfja\nwgouioarax ikyxtgimml\nzvzlrxitki mgmbhmwwix\ncpfxiceqqo afumkbrpto\nijetrpnsjc xleqqfiyty\nbsocbdsfja mdqiyhpmgu\nwxsyncnkmo lafxasywnt\nwnultilfxn kggstpqlfe\nzjlgxvpmtu gyissrdtfj\nmhlcamxnfj wasgkfgbbo\nywodejjzuz vfgzbgzrfq\nfbivhiezzv xdbyxrwjdc\nffqzcsvdgn fkegddqkwm\nvevdbeskbr hjeferqylu\nvhddbjeytd iwjklfjzko\nijetrpnsjc jyxkpozzlr\nzsizoxcyuq ocnarhkccj\npilnotldcd xzugfedcbi\njjolynyybb xpjaoxezav\npcntinggbo sdqdsnidaq\nuwdszgerob dswggqhfgq\ncqksxdbtxs mpwnpwfqby\nxozaulqdsc odvmggegoq\nmnwjtyuqbu ffqzcsvdgn\nydyqavnwgb mivkhfbnga\naiiqazrzbj axsrbawcuy\njwwqkgmubi mqgjzczakm\nulyyqoeenx honsmrvlnw\nvtsnibclli rxtxltznba\nmjfijbzrcf flbofjgxaa\nqzgkdqwbpe rlhwzpzmlb\niwibtxsngk qtxbwedmvt\natxaramael vugqgbmwhe\nurujebayib ipwtonkwkc\ncipipwlyol auhftyfwvg\nrunjbodcdb guvyecyesb\nhjeferqylu bojtediwty\njyxkpozzlr oxdpeeqgfl\ndvlnhwdbnt ybmjognphd\nysevqiplfi opyzrmgjmp\nhjhfrthgma bhuavcazyk\ntpnpwzinsi ydyqavnwgb\nayagsilncd fzbmbhhtud\nvrqfyqdvkw hoevzvbtks\nsbkfbxhmxw partkjagnf\njeqfrutznv vhsxmolulr\ntoatbmtnwg cooqncpuca\nkukkjbohbg uxaavcbzag\ntlgmuklsnc jycfhohpzv\nmcneszimyv kzgcptbxvp\nllayklhmjr rixywhcllu\nmkfeypphbv ynrlxrvvva\njyxkpozzlr toatbmtnwg\nigvegvqtdb plbmosfjeh\njyxkpozzlr mxipvybgjf\ncrhgugccad ygcfklhcfn\naxsrbawcuy gwizyrbvty\ndaikmzranb gwigpyhesj\ntpnpwzinsi ysevqiplfi\nijetrpnsjc uwdszgerob\nmidzfgtwty tosklcfhgp\ndvlnhwdbnt zbsyjykjhi\nybmjognphd jeqfrutznv\nqzgkdqwbpe zunzikntij\ngrilztoibr cmuswnlypc\ntpnpwzinsi aurafzpkiq\nhznjsbgrml ivlrgrcwvq\ncclzzpkrii mtokspekgd\nrixywhcllu jrtuquhyri\nkrhddnaxfk pmxbpbwmjn\nzunzikntij eprcxhmabk\niijjdgauzu sdvtwrlegq\nctaxmpkrvd izxzcjkcpv\nzunzikntij tjraucsfur\nsgkqyfmunk uuzkmlflaj\nxozaulqdsc llayklhmjr\nymxqqdwgcc youzdrqdex\npfpmqvotay azmaateezc\nsgkqyfmunk tlgmuklsnc\ndupalbjzef gkosdednqe\nkthngpumdh kspxdwligd\npcntinggbo xiscpzdnsq\nppxsdzegbp qzhoywrotw\nxozaulqdsc krhddnaxfk\newwqmecpuz ovsznnrdko\ngyissrdtfj dsxrsufxfa\nnpqieatbfy reduwswppg\niiberzcokt kfmshvposl\nqzgkdqwbpe tyzabiiqwy\niuhsqotzlz qcvnodfwtw\nyifixftecz toqpswrbib\nmfhcvcytyw ywlyehefhq\nnpqieatbfy ribvgpzooh\ncsgtnvueqb lzwcljlocm\nnsoplmtedg ulwghmnepp\nmjqhdpgnnu hqkmphblqx\nlnvyhouasd tvzmybpltd\ninoijnuzvt iqoygyoaws\npcntinggbo zhyyxoaasv\nzyjwmilgbm ovxhzkjksm\nsocaiduchn depaqzilhy\niwswhlbjoo xkmqgmoxsm\ngacxczpxcg hznjsbgrml\narccqsnddb wqdqgnwbig\nneigxtnilh yxrbahajkx\nllayklhmjr socaiduchn\nzunzikntij iobdwsdish\ndadjeplaip zbcrldofdl\nwcvhlwcspt ygaxotbplp\ntakdnweruu hrsyclhlvb\nsbkfbxhmxw znejwgwpok\nndrlapgknm klpwfxybqj\nflbofjgxaa gfeqoerwec\nafibksgflt djjwyirzhb\nafibksgflt hpuinntism\ngfljopgmne ciewddpttm\npcntinggbo etsrsrdune\nqjfhgtvofg bzcesbwmzg\nuwdszgerob zyjwmilgbm\naiiqazrzbj gcqipxrpul\nffqzcsvdgn iwswhlbjoo\nsgkqyfmunk oocznuhmkj\nneigxtnilh cpbnwhxcnk\nfesgbvnpav gpkirlwdpw\ntakdnweruu aihesjmilw\naihesjmilw ymxqqdwgcc\nzhyyxoaasv buipejkoze\nepsifweknh ekpqkabsfb\nhpuinntism gqobwftvvy\ndhohgoanil iohgxfvmnq\ntyzabiiqwy yhycpvazvd\nnsoplmtedg wnultilfxn\nywodejjzuz khvpurvdzd\njipyxcxbpy dbpwwgrlzp\ngyissrdtfj jgahkdpwkn\nmfhcvcytyw tcoedyerqq\nzbsyjykjhi lxryurrhfh\nytuuqjdmjh zyymafbcgu\ncsgtnvueqb sspoikdwvh\nduzhtglnem qbjamrqyxm\nzjlgxvpmtu yxpinlynym\numwrtyeakn twdubxkzzo\njjolynyybb iuhsqotzlz\nbagywztxjw kcksvekuvf\nnqajwecexu dwvgwjlvxe\nduzhtglnem tnvpozvuib\nfedvkjmmaq fwecyuuwgu\nfesgbvnpav urrvjcihfx\nyhycpvazvd zguwnmiyrg\nrajwqdgbwt csabgetkbx\natxaramael rkglctuvdn\nqzgkdqwbpe pywhbndfef\nymxqqdwgcc cdgxihshok\nodvmggegoq naretkvxvc\nywodejjzuz mcneszimyv\nhjhfrthgma zsizoxcyuq\newwqmecpuz fivpjtybdk\nbezklpuvmp mfhcvcytyw\nwkvguyqjta rqnnfqiymb\natkjzubhcf kqyicykvie\nxleqqfiyty fppxioohqv\nfbigvckdtn zvzlrxitki\ncsabgetkbx huptnrtexh\nkukkjbohbg fwjfkfapsj\nbuipejkoze hjwtrmetae\nidlelpbvkj zyxkzjzcjc\nbsocbdsfja gthgdebsif\ncooqncpuca qxycwyiyvg\nmnwjtyuqbu dupalbjzef\nyxpinlynym hhgexhqmag\ntcoedyerqq buvpkicmrx\nyidalokwno enwbyijomm\nigvegvqtdb xuzhkyubej\nuwdszgerob pcntinggbo\nhetpfcxmol gaxpnavxfi\ngfflgfpbli ilnxgropmj\nytuuqjdmjh apdsicqcad\nrlhwzpzmlb yvglejyvql\ndwvgwjlvxe njwbluradt\nnhbyzigkrl imclcvquwn\nkzgcptbxvp pppzqpoyed\npywhbndfef ctaxmpkrvd\nmfhcvcytyw bmyctnzlqf\niobdwsdish igprikoguw\ndiovjgpusr vxwqvomuih\nhjhfrthgma wcvhlwcspt\nzyymafbcgu fbivhiezzv\ngacxczpxcg dfqlgagjtx\nzyymafbcgu abmptzryyk\nwnultilfxn cipipwlyol\nrkglctuvdn svgkvxskli\nehbrqxwqft ixckotmepr\nbfyyxjcjvf zpwdrqtvlp\njyxkpozzlr hjhfrthgma\nrajwqdgbwt gcwsbyjpga\naurafzpkiq bxnohaqoyc\nvogffwtyiz zmuhzwwmas\ncpfxiceqqo rwrtrythov\nduzhtglnem qrjdszcwxt\nzhyyxoaasv fbigvckdtn\nntgashbmvz ozttwouxcd\nzhyyxoaasv gswytjikfe\nhqkmphblqx lfmosyyrul\nvevdbeskbr sxlfdkujhe\ntavxlqnhhn fpslpcroyj\nijetrpnsjc qzgkdqwbpe\nbsocbdsfja cpfxiceqqo\nnjaovpzihr dadjeplaip\ncfekjregsa hetpfcxmol\ncsgtnvueqb ppxsdzegbp\napdsicqcad gtitetlcez\nyouzdrqdex lbpchtzruo\nzmfhqchwhw byxbzwznzu\ntgszjlyyra umwrtyeakn\ntakdnweruu xozaulqdsc\nigvegvqtdb vgtzwkcudi\nrphpmhvjxw ejwgysakhf\nsdqdsnidaq dvlnhwdbnt\nlaigxkcxvi qtclmgrsxo\nbmyctnzlqf npqieatbfy\nkhvpurvdzd cceagwnvhl\nmvuuvrwbvj hnsnpvkaop\nlzwcljlocm easrbeylrh\nyxrbahajkx igsdrhjben\ngcqipxrpul slkcafariq\nzvzlrxitki qwwdrrzfso\njrtuquhyri behrjrhlwj\niylnerhfob unxgddawpw\nsdqdsnidaq vtsnibclli\nqrjdszcwxt jqpsactqsg\niijjdgauzu ggwilvrwry\nplbmosfjeh vycacujdhd\ncooqncpuca lnvyhouasd\numwrtyeakn euaffeydeo\nayagsilncd iylnerhfob\nsdvtwrlegq hovcnjprax\niypcmtmzac bbkdpwswsd\nsyzukyibyf brhtaameve\nbuvpkicmrx zygmxgjevz\nzunzikntij deftlrijxp\nywretmpafq bfyyxjcjvf\natxaramael alpwexrich\ntoatbmtnwg hudjsthfyn\naxsrbawcuy jsoamnuyga\naiiqazrzbj odmvrtdwse\nkhvpurvdzd ulyyqoeenx\nvynygwmuks ucpuiasynm\ntoatbmtnwg zjlgxvpmtu\nrqnnfqiymb edoqwxvvsi\nijetrpnsjc bezklpuvmp\nbezklpuvmp bveeocgukt\ntpnpwzinsi gkjkoffnxe\nwcvhlwcspt ylghqzxolh\ngvvwoisdrh qwdfeuyrba\nmjfijbzrcf fdlbivwxbp\ntqvlnfkwoe aqfvqcbfkp\nrfsijiyzzn rsxzegsxmp\ndswggqhfgq qoozykdded\nnjaovpzihr ftrrhculcz\njipyxcxbpy shozsowwbv\nbxnebtbpsc hserhsency\npidibbbnlq ujyvgctpye\ntgszjlyyra nsoplmtedg\nbhuavcazyk wlmgqpyopx\ngthgdebsif awyeqjvfxp\nzsizoxcyuq iwibtxsngk\nyvscuugvok bskpczsacl\nayagsilncd ympbwqvmnd\nliwqztxhou wxrzmzrymo\nbmyctnzlqf cqhznmdmvl\nfbigvckdtn vkzhdolaqo\nimhjrhanek koqdivehnm\nkblhkdphza vogffwtyiz\neprcxhmabk dbsvwayojr\naihesjmilw wtkdnhbgjs\nccprojzxlp nprqzidcas\napdsicqcad fdjavffqpk\nmnwjtyuqbu vazultwfzs\njgahkdpwkn wftyqkkzkk\nnhobylorvz nboigytutf\nvgtzwkcudi gsozieguim\npilnotldcd ahlizziwzx\nkneabdpata afuzqdvlzw\nsbkfbxhmxw nppijxjhrf\niypcmtmzac ldzpodehqo\nnsoplmtedg aiiqazrzbj\nwneolwstpl afibksgflt\nqrjdszcwxt gacxczpxcg\njsoamnuyga osrrrrfbza\nijetrpnsjc eabxwdenjq\ntoatbmtnwg zmfhqchwhw\ntakdnweruu ayagsilncd\nmfhcvcytyw ygcsmwomlf\nxozaulqdsc ycqpbmrlen\nzunzikntij sbkfbxhmxw\ncsgtnvueqb kukkjbohbg\nauhftyfwvg vpnjqeaeec\nfivpjtybdk hgsqsleyju\numwrtyeakn iypcmtmzac\nzhyyxoaasv yddntmmvac\npartkjagnf bwreurmidq\nlzwcljlocm kneabdpata\nwnultilfxn sbyjpzhjwa\nnyxaijlclu qqmtuhvikp\ndvlnhwdbnt lkorwdnawi\naihesjmilw wgouioarax\nsdqdsnidaq swzizoziie\nalpwexrich cfeeinpxxm\n", "output": "pxrtqhmuoa\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\ntgajndqkfb ajqkigaifq\nrslcgyfdth zkejygxwap\nirisykfbex bdzqzqneaq\nfhrscbksog oyydvoqskp\nhztafgslxm ewcmqlgadd\nwxipvqzerr tzbuxqzosh\nfupzgoowdl bjmumvrvio\nhrgmwcmuis rxacqqrcno\nckaqlboaza gieakwbztk\numlwquftdv ssyveelioh\nxsqfvwsfns fnvxmonmlf\naimtajvdaf cbnmgveqdk\ndpjsnzluqk nsqjpxzzdm\nkcrbvbpzda ugyemvipfg\nhxcfxvmvnj dfcdxftswn\nlahozbpjif cdqndfpqdo\nwgdgziyxrl wkgjwauaaa\nwtcrfseosj gacbepccfk\nnvyrmusslf aciyahvtny\nvpswojizhn sbwmajeyel\nordolrbrxz dappjxmlzm\nbyyokazpmi wrdkdpptjr\njnyrmkphhw slkvwdxjkm\njtogctqkth ippdkqzqkf\ngrjjkrkida xwkuxqxtoz\nvuvfekkkrm fxvukvkxxo\nzwlvvzjqtc ntigibincj\nxrooensowx ultxeyoagx\nvgcqbgefhn fovuvlebes\nxwgdolzqur hunldqdhwn\nikilhxmbsd anwmxqvzbv\npzwviagyke ocrbwpocdj\ntgajndqkfb wgdgziyxrl\nrslcgyfdth wtcrfseosj\nirisykfbex nvyrmusslf\nfhrscbksog vpswojizhn\nhztafgslxm ordolrbrxz\nwxipvqzerr byyokazpmi\nfupzgoowdl jnyrmkphhw\nhrgmwcmuis jtogctqkth\nckaqlboaza grjjkrkida\numlwquftdv vuvfekkkrm\nxsqfvwsfns zwlvvzjqtc\naimtajvdaf xrooensowx\ndpjsnzluqk vgcqbgefhn\nkcrbvbpzda xwgdolzqur\nhxcfxvmvnj ikilhxmbsd\nlahozbpjif pzwviagyke\ntgajndqkfb ckaqlboaza\nrslcgyfdth umlwquftdv\nirisykfbex xsqfvwsfns\nfhrscbksog aimtajvdaf\nhztafgslxm dpjsnzluqk\nwxipvqzerr kcrbvbpzda\nfupzgoowdl hxcfxvmvnj\nhrgmwcmuis lahozbpjif\ntgajndqkfb hztafgslxm\nrslcgyfdth wxipvqzerr\nirisykfbex fupzgoowdl\nfhrscbksog hrgmwcmuis\ntgajndqkfb irisykfbex\nrslcgyfdth fhrscbksog\ntgajndqkfb rslcgyfdth\n", "output": "axtzpuwube\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/818/F
Solve the following coding problem using the programming language python: Ivan is developing his own computer game. Now he tries to create some levels for his game. But firstly for each level he needs to draw a graph representing the structure of the level. Ivan decided that there should be exactly n_{i} vertices in the graph representing level i, and the edges have to be bidirectional. When constructing the graph, Ivan is interested in special edges called bridges. An edge between two vertices u and v is called a bridge if this edge belongs to every path between u and v (and these vertices will belong to different connected components if we delete this edge). For each level Ivan wants to construct a graph where at least half of the edges are bridges. He also wants to maximize the number of edges in each constructed graph. So the task Ivan gave you is: given q numbers n_1, n_2, ..., n_{q}, for each i tell the maximum number of edges in a graph with n_{i} vertices, if at least half of the edges are bridges. Note that the graphs cannot contain multiple edges or self-loops. -----Input----- The first line of input file contains a positive integer q (1 ≤ q ≤ 100 000) — the number of graphs Ivan needs to construct. Then q lines follow, i-th line contains one positive integer n_{i} (1 ≤ n_{i} ≤ 2·10^9) — the number of vertices in i-th graph. Note that in hacks you have to use q = 1. -----Output----- Output q numbers, i-th of them must be equal to the maximum number of edges in i-th graph. -----Example----- Input 3 3 4 6 Output 2 3 6 -----Note----- In the first example it is possible to construct these graphs: 1 - 2, 1 - 3; 1 - 2, 1 - 3, 2 - 4; 1 - 2, 1 - 3, 2 - 3, 1 - 4, 2 - 5, 3 - 6. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def newest_approach(n): from math import floor, ceil, sqrt quad_solv = sqrt(2 * n + 1 / 4) - 1 / 2 x = floor(quad_solv) y = ceil(quad_solv) xed = int(x * (x - 1) / 2 + n - x) xbr = n - x ybr = n - y yed = 2 * ybr if xed > yed: print(xed) else: print(yed) return def main(): import sys data = [line.rstrip() for line in sys.stdin.readlines()] num_graphs = data[0] graph_sizes = [int(x) for x in data[1:]] for val in graph_sizes: newest_approach(val) def __starting_point(): main() __starting_point() ```
vfc_138283
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/818/F", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3\n4\n6\n", "output": "2\n3\n6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n", "output": "0\n1\n2\n3\n4\n6\n7\n8\n10\n12\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n212055293\n", "output": "424069398\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/distance-from-the-source-bellman-ford-algorithm/1
Solve the following coding problem using the programming language python: Given a weighted, directed and connected graph of V vertices and E edges, Find the shortest distance of all the vertex's from the source vertex S. Note: If the Graph contains a negative cycle then return an array consisting of only -1. Example 1: Input: E = [[0,1,9]] S = 0 Output: 0 9 Explanation: Shortest distance of all nodes from source is printed. Example 2: Input: E = [[0,1,5],[1,0,3],[1,2,-1],[2,0,1]] S = 2 Output: 1 6 0 Explanation: For nodes 2 to 0, we can follow the path- 2-0. This has a distance of 1. For nodes 2 to 1, we cam follow the path- 2-0-1, which has a distance of 1+5 = 6, Your Task: You don't need to read input or print anything. Your task is to complete the function bellman_ford( ) which takes a number of vertices V and an E-sized list of lists of three integers where the three integers are u,v, and w; denoting there's an edge from u to v, which has a weight of w and source node S as input parameters and returns a list of integers where the ith integer denotes the distance of an ith node from the source node. If some node isn't possible to visit, then its distance should be 100000000(1e8). Also, If the Graph contains a negative cycle then return an array consisting of only -1. Expected Time Complexity: O(V*E). Expected Auxiliary Space: O(V). Constraints: 1 ≤ V ≤ 500 1 ≤ E ≤ V*(V-1) -1000 ≤ adj[i][j] ≤ 1000 0 ≤ S < V Write your solution by modifying this code: ```python #User function Template for python3 class Solution: # Function to construct and return cost of MST for a graph # represented using adjacency matrix representation ''' V: nodes in graph edges: adjacency list for the graph S: Source ''' def bellman_ford(self, V, edges, S): #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math class Solution: def bellman_ford(self, V, edges, S): dis = [100000000 for i in range(V)] dis[S] = 0 for i in range(V - 1): for (m, n, o) in edges: if dis[m] != 100000000 and dis[m] + o < dis[n]: dis[n] = dis[m] + o for (m, n, o) in edges: if dis[m] != 100000000 and dis[m] + o < dis[n]: return [-1] return dis ```
vfc_138287
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/distance-from-the-source-bellman-ford-algorithm/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "E = [[0,1,9]]\nS = 0", "output": "0 9", "type": "stdin_stdout" }, { "fn_name": null, "input": "E = [[0,1,5],[1,0,3],[1,2,-1],[2,0,1]]\nS = 2", "output": "1 6 0", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/281/D
Solve the following coding problem using the programming language python: Bike loves looking for the second maximum element in the sequence. The second maximum element in the sequence of distinct numbers x1, x2, ..., xk (k > 1) is such maximum element xj, that the following inequality holds: <image>. The lucky number of the sequence of distinct positive integers x1, x2, ..., xk (k > 1) is the number that is equal to the bitwise excluding OR of the maximum element of the sequence and the second maximum element of the sequence. You've got a sequence of distinct positive integers s1, s2, ..., sn (n > 1). Let's denote sequence sl, sl + 1, ..., sr as s[l..r] (1 ≤ l < r ≤ n). Your task is to find the maximum number among all lucky numbers of sequences s[l..r]. Note that as all numbers in sequence s are distinct, all the given definitions make sence. Input The first line contains integer n (1 < n ≤ 105). The second line contains n distinct integers s1, s2, ..., sn (1 ≤ si ≤ 109). Output Print a single integer — the maximum lucky number among all lucky numbers of sequences s[l..r]. Examples Input 5 5 2 1 4 3 Output 7 Input 5 9 8 3 5 7 Output 15 Note For the first sample you can choose s[4..5] = {4, 3} and its lucky number is (4 xor 3) = 7. You can also choose s[1..2]. For the second sample you must choose s[2..5] = {8, 3, 5, 7}. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def empty(l): return len(l) == 0 def lucky_number(arr): st = [] l = 0 for d in arr: while not empty(st) and st[-1] < d: l = max(l, st.pop() ^ d) if not empty(st): l = max(l, st[-1] ^ d) st.append(d) d = 0 if not empty(st): d = st.pop() while not empty(st): l = max(l, d ^ st[-1]) d = st.pop() return l N = int(input()) arr = list(map(int, input().split())) print(lucky_number(arr)) ```
vfc_138288
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/281/D", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10\n4547989 39261040 94929326 38131456 26174500 7152864 71295827 77784626 89898294 68006331\n", "output": "134189790", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/HMAPPY2
Solve the following coding problem using the programming language python: Appy and Chef are participating in a contest. There are $N$ problems in this contest; each problem has a unique problem code between $1$ and $N$ inclusive. Appy and Chef decided to split the problems to solve between them ― Appy should solve the problems whose problem codes are divisible by $A$ but not divisible by $B$, and Chef should solve the problems whose problem codes are divisible by $B$ but not divisible by $A$ (they decided to not solve the problems whose codes are divisible by both $A$ and $B$). To win, it is necessary to solve at least $K$ problems. You have to tell Appy whether they are going to win or lose. -----Input----- - The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. - The first and only line of each test case contains four space-separated integers $N$, $A$, $B$ and $K$. -----Output----- For each test case, print a single line containing the string "Win" if they can solve at least $K$ problems or "Lose" otherwise (without quotes). -----Constraints----- - $1 \le T \le 15$ - $1 \le K \le N \le 10^{18}$ - $1 \le A, B \le 10^9$ -----Subtasks----- Subtask #1 (15 points): - $1 \le T \le 15$ - $1 \le K \le N \le 10^6$ - $1 \le A, B \le 10^3$ Subtask #2 (85 points): original constraints -----Example Input----- 1 6 2 3 3 -----Example Output----- Win -----Explanation----- Example case 1: Appy is solving the problems with codes $2$ and $4$, Chef is solving the problem with code $3$. Nobody is solving problem $6$, since $6$ is divisible by both $2$ and $3$. Therefore, they can solve $3$ problems and win. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math for i in range(int(input())): (z, a, b, k) = list(map(int, input().split())) n = 0 x1 = z // a x2 = z // b x3 = a * b // math.gcd(a, b) p1 = x1 - z // x3 p2 = x2 - z // x3 if p1 + p2 >= k: print('Win') else: print('Lose') ```
vfc_138292
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/HMAPPY2", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n6 2 3 3\n", "output": "Win\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1669/C
Solve the following coding problem using the programming language python: Given an array $a=[a_1,a_2,\dots,a_n]$ of $n$ positive integers, you can do operations of two types on it: Add $1$ to every element with an odd index. In other words change the array as follows: $a_1 := a_1 +1, a_3 := a_3 + 1, a_5 := a_5+1, \dots$. Add $1$ to every element with an even index. In other words change the array as follows: $a_2 := a_2 +1, a_4 := a_4 + 1, a_6 := a_6+1, \dots$. Determine if after any number of operations it is possible to make the final array contain only even numbers or only odd numbers. In other words, determine if you can make all elements of the array have the same parity after any number of operations. Note that you can do operations of both types any number of times (even none). Operations of different types can be performed a different number of times. -----Input----- The first line contains an integer $t$ ($1 \leq t \leq 100$) — the number of test cases. The first line of each test case contains an integer $n$ ($2 \leq n \leq 50$) — the length of the array. The second line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \leq a_i \leq 10^3$) — the elements of the array. Note that after the performed operations the elements in the array can become greater than $10^3$. -----Output----- Output $t$ lines, each of which contains the answer to the corresponding test case. As an answer, output "YES" if after any number of operations it is possible to make the final array contain only even numbers or only odd numbers, and "NO" otherwise. You can output the answer in any case (for example, the strings "yEs", "yes", "Yes" and "YES" will be recognized as a positive answer). -----Examples----- Input 4 3 1 2 1 4 2 2 2 3 4 2 2 2 2 5 1000 1 1000 1 1000 Output YES NO YES YES -----Note----- For the first test case, we can increment the elements with an even index, obtaining the array $[1, 3, 1]$, which contains only odd numbers, so the answer is "YES". For the second test case, we can show that after performing any number of operations we won't be able to make all elements have the same parity, so the answer is "NO". For the third test case, all elements already have the same parity so the answer is "YES". For the fourth test case, we can perform one operation and increase all elements at odd positions by $1$, thus obtaining the array $[1001, 1, 1001, 1, 1001]$, and all elements become odd so the answer is "YES". The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for _ in range(t): n = int(input()) a = list(map(int, input().split())) poss = True par = a[0] % 2 for i in range(2, n, 2): pari = a[i] % 2 if par != pari: poss = False par = a[1] % 2 for i in range(1, n, 2): pari = a[i] % 2 if par != pari: poss = False if poss: print('YES') else: print('NO') ```
vfc_138296
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1669/C", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n3\n1 2 1\n4\n2 2 2 3\n4\n2 2 2 2\n5\n1000 1 1000 1 1000\n", "output": "YES\nNO\nYES\nYES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2\n514 514\n", "output": "YES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/ZCOPRAC/problems/ZCO17001
Solve the following coding problem using the programming language python: In this problem you are given a sequence of $N$ positive integers $S[1],S[2],\dots,S[N]$. In addition you are given an integer $T$, and your aim is to find the number of quadruples $(i,j,k,l)$, such that $1 \le i < j < k < l \le N$, and $S[i] + S[j] + S[k] + S[l] = T$. That is, the number of ways of picking four numbers from the sequence summing up to $T$. -----Constraints:----- For all test cases, - $1 \le N \le 5000$ - $1 \le T \le 10^6$ - $1 \le S[i] \le 10^9$, for all $i$. Subtask $1:10\%$ It is guaranteed that $N \le 50$. Subtask $2:50\%$ It is guaranteed that $N \le 300$. Subtask $3:40\%$ No additional guarantees. -----Input Format:----- There is only one line of input with $N+2$ space separated integers. The first two integers are $N$ and $T$. The next $N$ integers are $S[1],S[2],\dots,S[N]$. -----Output Format:----- A single integer which is the number of valid quadruples. -----Sample Input 1:----- 6 20 3 1 1 2 5 10 -----Sample Output 1:----- 1 -----Explanation 1:----- The quadruple $(1,4,5,6)$ is valid because $S[1]+S[4]+S[5]+S[6]=3+2+5+10=20$. You can check that no other quadruple is valid and hence the answer is $1$. -----Sample Input 2:----- 6 13 1 2 3 4 5 4 -----Sample Output 2:----- 3 -----Explanation 2:----- You can verify that the only quadruples that are valid are $(2,3,4,6),(1,3,4,5)$ and $(1,3,5,6)$. Thus, the answer is $3$. -----Note:----- As the answer might be large, please use 64 bit integers (long long int in C/C++ and long in Java) instead of 32 bit int. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from itertools import combinations a = list(map(int, input().split())) n = a[0] t = a[1] q = list(combinations(a[2:], 4)) total = 0 for i in q: if sum(i) == t: total += 1 print(total) ```
vfc_138300
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/ZCOPRAC/problems/ZCO17001", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6 20 3 1 1 2 5 10\n", "output": "1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Wind Corridor is a covered passageway where strong wind is always blowing. It is a long corridor of width W, and there are several pillars in it. Each pillar is a right prism and its face is a polygon (not necessarily convex). In this problem, we consider two-dimensional space where the positive x-axis points the east and the positive y-axis points the north. The passageway spans from the south to the north, and its length is infinity. Specifically, it covers the area 0 ≤ x ≤ W. The outside of the passageway is filled with walls. Each pillar is expressed as a polygon, and all the pillars are located within the corridor without conflicting or touching each other. Wind blows from the south side of the corridor to the north. For each second, w unit volume of air can be flowed at most if the minimum width of the path of the wind is w. Note that the path may fork and merge, but never overlaps with pillars and walls. Your task in this problem is to write a program that calculates the maximum amount of air that can be flowed through the corridor per second. Input The input consists of multiple datasets. Each dataset has the following format: The first line of the input contains two integers W and N. W is the width of the corridor, and N is the number of pillars. W and N satisfy the following condition: 1 ≤ W ≤ 104 and 0 ≤ N ≤ 200. Then, N specifications of each pillar follow. Each specification starts with a line that contains a single integer M, which is the number of the vertices of a polygon (3 ≤ M ≤ 40). The following M lines describe the shape of the polygon. The i-th line (1 ≤ i ≤ M) contains two integers xi and yi that denote the coordinate of the i-th vertex (0 < xi < W, 0 < yi < 104). The last dataset is followed by a line containing two zeros. This line is not a part of any dataset and should not be processed. Output For each dataset, your program should print a line that contains the maximum amount of air flow per second, in unit volume. The output may contain arbitrary number of digits after the decimal point, but the absolute error must not exceed 10-6. Example Input 5 2 4 1 1 1 2 2 2 2 1 4 3 3 3 4 4 4 4 3 0 0 Output 3.41421356 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def solve(): from itertools import combinations from heapq import heappush, heappop def dot(c1, c2): return c1.real * c2.real + c1.imag * c2.imag def cross(c1, c2): return c1.real * c2.imag - c1.imag * c2.real def d_sp(sp1, sp2, p): a = sp2 - sp1 b = p - sp1 if dot(a, b) < 0: return abs(b) c = sp1 - sp2 d = p - sp2 if dot(c, d) < 0: return abs(d) return abs(cross(a, b) / a) def d_s(p1, p2, p3, p4): return min(d_sp(p1, p2, p3), d_sp(p1, p2, p4), d_sp(p3, p4, p1), d_sp(p3, p4, p2)) from sys import stdin file_input = stdin while True: (W, N) = map(int, file_input.readline().split()) if W == 0: break if N == 0: print(W) continue polygons = [] adj = [[] for i in range(N + 1)] adj_s = adj[0] goal = N + 1 for i in range(1, N + 1): M = int(file_input.readline()) p = [i] s_d = W g_d = W for j in range(M): (x, y) = map(int, file_input.readline().split()) p.append(x + y * 1j) s_d = min(s_d, x) g_d = min(g_d, W - x) adj_s.append((i, s_d)) adj[i].append((goal, g_d)) p.append(p[1]) polygons.append(p) for (p1, p2) in combinations(polygons, 2): i = p1[0] j = p2[0] d = [d_s(v1, v2, v3, v4) for (v3, v4) in zip(p2[1:], p2[2:]) for (v1, v2) in zip(p1[1:], p1[2:])] d = min(d) adj[i].append((j, d)) adj[j].append((i, d)) PQ = [(0, 0)] isVisited = [False] * (N + 2) distance = [W] * (N + 2) distance[0] = 0 while PQ: (u_cost, u) = heappop(PQ) if u == goal: print(u_cost) break if u_cost > distance[u]: continue isVisited[u] = True for (v, v_cost) in adj[u]: if isVisited[v]: continue t_cost = distance[u] + v_cost if t_cost < distance[v]: distance[v] = t_cost heappush(PQ, (t_cost, v)) solve() ```
vfc_138304
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "8.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 2\n4\n1 1\n1 2\n2 4\n2 1\n4\n3 3\n3 4\n4 4\n4 3\n0 0", "output": "3.00000000000000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 2\n4\n1 1\n2 2\n2 4\n2 1\n4\n3 3\n3 4\n0 4\n4 3\n0 0", "output": "1.00000000000000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 2\n4\n1 1\n1 2\n2 2\n2 1\n4\n3 3\n3 4\n3 4\n4 3\n0 0", "output": "3.41421356237309504876\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 2\n4\n1 1\n2 2\n2 4\n2 0\n4\n3 3\n3 4\n2 4\n4 3\n0 0", "output": "2.00000000000000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 2\n4\n2 1\n1 2\n2 2\n1 4\n4\n3 3\n3 4\n3 4\n4 3\n0 0", "output": "3.34164078649987381781\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/SNELECT
Solve the following coding problem using the programming language python: In Snakeland, there are some snakes and mongooses. They are lined up in a row. The information about how exactly they are lined up it is provided to you by a string of length n. If the i-th character of this string is 's', then it means that there is a snake at the i-th position, whereas the character 'm' denotes a mongoose. You might have heard about the age-old rivalry between hares and tortoises, but in Snakeland, the rivalry between snakes and mongooses is much more famous. The snakes and the mongooses want to hold a final poll in which the ultimate winner of this age-old battle will be decided. If the snakes get more votes than the mongooses, they will be the ultimate winners. Similarly, if the mongooses get more votes than snakes, they will be the ultimate winners. Obviously, each animal is loyal to their species, i.e. each snake will vote for the snakes to be the ultimate champions and each mongoose for the mongooses. Tomorrow's the election day. Before the elections, the mongooses decided to cheat. They planned that each mongoose will eat at most one of its neighbor snakes. Two animals are said to be neighbors of each other if they are consecutive to each other in the row. After this, the elections will be held. The mongooses planned in such a way that the number of snakes eaten is maximized. Can you find out who will win the final poll? Output "snakes", "mongooses" or "tie" correspondingly. -----Input----- First line of the input contains an integer T denoting the number of test cases. The description of T test cases follow. The only line of each test case contains a string consisting of characters 's' and 'm'. -----Output----- For each test case output a single line containing "snakes", "mongooses" or "tie" correspondingly (without quotes). -----Constraints----- - 1 ≤ T ≤ 100 - 1 ≤ |s| ≤ 100 -----Example----- Input 4 sm ssm sms ssmmmssss Output mongooses tie tie snakes -----Explanation----- Example 1. The mongoose will eat the snake. Only the mongoose will be left. So, on the election day, there is one mongoose and zero snakes. So mongooses will win. Example 2. The mongoose will eat the snake at position 2 (1-based indexing). One mongoose and one snake will be left. Hence, there will be a tie. Example 3. The mongoose can eat either the snake to its left or to the right. But, it can eat only one of them. Afterwards, there will be a single snake and mongoose. So, it will result in a tie. Example 4. The mongooses can eat at max two snakes. For example, s*mmm*sss, where * denotes the snakes that were eaten by mongooses. After this, we have four snakes and three mongooses. So, the snakes win. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): a = input() c = a.count('m') d = a.count('s') t = 0 while t < len(a) - 1: if a[t] == 'm' and a[t + 1] == 's' or (a[t] == 's' and a[t + 1] == 'm'): d = d - 1 t = t + 2 else: t = t + 1 if c > d: print('mongooses') elif d > c: print('snakes') else: print('tie') ```
vfc_138308
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/SNELECT", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\nsm\nssm\nsms\nssmmmssss\n", "output": "mongooses\ntie\ntie\nsnakes\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/count-pairs-in-array-divisible-by-k/1
Solve the following coding problem using the programming language python: Given an array A[] and positive integer K, the task is to count total number of pairs in the array whose sum is divisible by K. Example 1: Input : A[] = {2, 2, 1, 7, 5, 3}, K = 4 Output : 5 Explanation : There are five pairs possible whose sum is divisible by '4' i.e., (2, 2), (1, 7), (7, 5), (1, 3) and (5, 3) Example 2: Input : A[] = {5, 9, 36, 74, 52, 31, 42}, K = 3 Output : 7 Explanation : There are seven pairs whose sum is divisible by 3, i.e, (9, 36), (9,42), (74, 52), (36, 42), (74, 31), (31, 5) and (5, 52). Your task : You don't have to read input or print anything. Your task is to complete the function countKdivPairs() which takes the array, it's size and an integer K as input and returns the count of pairs whose sum is divisible by K. Expected Time Complexity : O(n) Expected Auxiliary Space : O(k) Constraints : 1 <= N <=10^6 1 <= A[i] <= 10^6 1 <= K <= 100 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def countKdivPairs(self, arr, n, k): #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def countKdivPairs(self, arr, n, k): ax = [0] * k for i in arr: ax[i % k] += 1 res = 0 for i in range(k // 2 + 1): if 2 * i == k or i == 0: res += ax[i] * (ax[i] - 1) // 2 else: res += ax[i] * ax[k - i] return res ```
vfc_138312
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/count-pairs-in-array-divisible-by-k/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "A[] = {2, 2, 1, 7, 5, 3}, K = 4", "output": "5", "type": "stdin_stdout" }, { "fn_name": null, "input": "A[] = {5, 9, 36, 74, 52, 31, 42}, K = 3", "output": "7", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Times Square in the capital city of NY has a rectangular shape with the size n × m meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size a × a. What is the least number of flagstones needed to pave the Square? It's allowed to cover the surface larger than the Times Square, but the Square has to be covered. It's not allowed to break the flagstones. The sides of flagstones should be parallel to the sides of the Square. Input The input contains three positive integer numbers in the first line: n,  m and a (1 ≤  n, m, a ≤ 109). Output Write the needed number of flagstones. SAMPLE INPUT 6 6 4 SAMPLE OUTPUT 4 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math n,m,a = list(map(eval, input().split())) lcount = 0 rcount = 0 while(n>0): n-=a lcount+=1 while(m>0): m-=a rcount+=1 print(lcount*rcount) ```
vfc_138313
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1001 1000 10", "output": "3015", "type": "stdin_stdout" }, { "fn_name": null, "input": "222 332 5", "output": "10100", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/AARA2018/problems/ARMBH1
Solve the following coding problem using the programming language python: Richik$Richik$ has just completed his engineering and has got a job in one of the firms at Sabrina$Sabrina$ which is ranked among the top seven islands in the world in terms of the pay scale. Since Richik$Richik$ has to travel a lot to reach the firm, the owner assigns him a number X$X$, and asks him to come to work only on the day which is a multiple of X$X$. Richik joins the firm on 1-st day but starts working from X-th day. Richik$Richik$ is paid exactly the same amount in Dollars as the day number. For example, if Richik$Richik$ has been assigned X=3$X = 3$, then he will be paid 3$3$ dollars and 6$6$ dollars on the 3rd$3rd$ and 6th$6th$ day on which he comes for work. On N−th$N-th$ day, the owner calls up Richik$Richik$ and asks him not to come to his firm anymore. Hence Richik$Richik$ demands his salary of all his working days together. Since it will take a lot of time to add, Richik$Richik$ asks help from people around him, let's see if you can help him out. -----Input:----- - First line will contain T$T$, number of testcases. Then the testcases follow. - Each testcase contains of a single line of input, two integers X,N$X, N$. -----Output:----- For each testcase, output in a single line which is the salary which Richik$Richik$ demands. -----Constraints----- - 1≤T≤1000$1 \leq T \leq 1000$ - 1≤X<=N≤107$1 \leq X<=N \leq 10^7$ -----Sample Input:----- 1 3 10 -----Sample Output:----- 18 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): (x, n) = [int(g) for g in input().split()] sal = 0 day = x while day < n: sal = sal + day day += x print(sal) ```
vfc_138318
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/AARA2018/problems/ARMBH1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n3 10\n", "output": "18\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/EMAILREM
Solve the following coding problem using the programming language python: MoEngage helps the Chef send email reminders about rated contests to the participants. There are a total of N participants on Chef’s platform, and U of them have told Chef not to send emails to them. If so, how many participants should MoEngage send the contest emails to? ------ Input Format ------ - The first and only line of input will contain a single line containing two space-separated integers N (the total number of users) and U (the number of users who don't want to receive contest reminders). ------ Output Format ------ Output in a single line, the number of users MoEngage has to send an email to. ------ Constraints ------ $1 ≤ U < N ≤ 10^{5}$ ----- Sample Input 1 ------ 100 7 ----- Sample Output 1 ------ 93 ----- explanation 1 ------ Out of $100$ users, $7$ do not want to receive reminders. Hence, MoEngage needs to send email to $93$ users. ----- Sample Input 2 ------ 4456 342 ----- Sample Output 2 ------ 4114 ----- explanation 2 ------ Out of $4456$ users, $342$ do not want to receive reminders. Hence MoEngage needs to send email to $4114$ users. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, u) = map(int, input().split()) print(n - u) ```
vfc_138322
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/EMAILREM", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "100 7", "output": "93", "type": "stdin_stdout" }, { "fn_name": null, "input": "4456 342", "output": "4114", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/and-product/problem
Solve the following coding problem using the programming language python: Consider two non-negative long integers, $a$ and $\boldsymbol{b}$, where $a\leq b$. The bitwise AND of all long integers in the inclusive range between $a$ and $\boldsymbol{b}$ can be expressed as $a\ \text{&}\ (a+1)\ \text{&}\ \ldots\ \text{&}\ (b-1)\ \text{&}\ b$, where $\text{&}$ is the bitwise AND operator. Given $n$ pairs of long integers, $a[i]$ and $b[i]$, compute and print the bitwise AND of all natural numbers in the inclusive range between $a[i]$ and $b[i]$. For example, if $\boldsymbol{a=10}$ and $b=14$, the calculation is $10\:\text{&}\:11\:\text{&}\:12\:\text{&}\:13\:\text{&}\:14=8$. Function Description Complete the andProduct in the editor below. It should return the computed value as an integer. andProduct has the following parameter(s): a: an integer b: an integer Input Format The first line contains a single integer $n$, the number of intervals to test. Each of the next $n$ lines contains two space-separated integers $a[i]$ and $b[i]$. Constraints $1\leq n\leq200$ $0\leq a[i]\leq b[i]<2^{32}$ Output Format For each pair of long integers, print the bitwise AND of all numbers in the inclusive range between $a[i]$ and $b[i]$ on a new line. Sample Input 0 3 12 15 2 3 8 13 Sample Output 0 12 2 8 Explanation 0 There are three pairs to compute results for: $\boldsymbol{a=12}$ and $\boldsymbol{b=15}$ $12~\text{&}~13~\text{&}~14~\text{&}~15~=12$, so we print $12$ on a new line. $\boldsymbol{a}=2$ and $b=3$ $2\&3=2$ $\boldsymbol{a}=8$ and $b=13$ $8\:\text{&}\:9\:\text{&}\:10\:\text{&}\:11\:\text{&}\:12\&\:13\:=8$ Sample Input 1 2 17 23 11 15 Sample Output 1 16 8 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python T = int(input()) for _ in range(T): (A, B) = (int(_) for _ in input().split()) (i, C) = (-1, A ^ B) while C > 0: C >>= 1 i += 1 print(A & 2 ** 32 - 2 ** i) ```
vfc_138326
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/and-product/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n12 15\n2 3\n8 13\n", "output": "12\n2\n8\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n17 23\n11 15\n", "output": "16\n8\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFYODA
Solve the following coding problem using the programming language python: Chef has arrived in Dagobah to meet with Yoda to study cooking. Yoda is a very busy cook and he doesn't want to spend time with losers. So he challenges the Chef to a series of games, and agrees to teach the Chef if Chef can win at least P of the games. The total number of games is K. The games will be played on a chessboard of size N*M. That is, it has N rows, each of which has M squares. At the beginning of the game, a coin is on square (1, 1), which corresponds to the top-left corner, and every other square is empty. At every step, Yoda and Chef have to move the coin on the chessboard. The player who cannot make a move loses. Chef makes the first move. They can't move the coin to a square where it had been placed sometime before in the game, and they can't move outside chessboard. In this game, there are two different sets of rules according to which the game can be played: -from (x, y) player can move coin to (x+1, y), (x-1, y), (x, y+1), (x, y-1) in his turn, if they are valid squares. -from (x, y) player can move coin to (x+1, y+1), (x-1, y-1), (x-1, y+1), (x+1, y-1) in his turn, if they are valid squares. Before every game, the Power of the kitchen chooses one among the two sets of rules with equal probability of 0.5, and the game will be played according to those rules. Chef and Yoda are very wise, therefore they play optimally. You have to calculate the probability that Yoda will teach Chef. -----Input----- Input begins with an integer T, the number of test cases Each test case begins with 4 integers N, M, P, K. -----Output----- For each test case, output a line containing the answer for task. The output must have an absolute error at most 0.000001 (10-6). -----Constraints and Subtasks----- - 1 ≤ T ≤ 50 - 1 ≤ K Subtask 1 : 10 points - 2 ≤ N, M ≤ 5 - 0 ≤ P ≤ K ≤ 5 Subtusk 2 : 10 points - 2 ≤ N, M ≤ 10 - 0 ≤ P ≤ K ≤ 10^3 Subtusk 3 : 20 points - 2 ≤ N, M ≤ 100 - 0 ≤ P ≤ K ≤ 10^3 Subtusk 4 : 60 points - 2 ≤ N, M ≤ 100 - 0 ≤ P ≤ K ≤ 10^6 -----Example----- Input: 2 2 3 2 3 2 2 5 5 Output: 0.500000 1.000000 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math dp = [] dp.append(0) for i in range(1, 1000005): dp.append(math.log(i) + dp[i - 1]) t = int(input()) for i in range(t): (n, m, p, k) = input().split() n = int(n) m = int(m) p = int(p) k = int(k) if p == 0 or (n % 2 == 0 and m % 2 == 0): ans = 1.0 print(ans) elif n % 2 == 1 and m % 2 == 1: ans = 0.0 print(ans) else: P = 0 kln2 = k * math.log(2) for i in range(p, k + 1): lnPi = dp[k] - dp[i] - dp[k - i] - kln2 Pi = pow(math.e, lnPi) P += Pi print(P) ```
vfc_138330
{ "difficulty": "hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFYODA", "time_limit": "1.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2 3 2 3\n2 2 5 5\n", "output": "0.500000\n1.000000\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1281/A
Solve the following coding problem using the programming language python: We just discovered a new data structure in our research group: a suffix three! It's very useful for natural language processing. Given three languages and three suffixes, a suffix three can determine which language a sentence is written in. It's super simple, 100% accurate, and doesn't involve advanced machine learning algorithms. Let us tell you how it works. If a sentence ends with "po" the language is Filipino. If a sentence ends with "desu" or "masu" the language is Japanese. If a sentence ends with "mnida" the language is Korean. Given this, we need you to implement a suffix three that can differentiate Filipino, Japanese, and Korean. Oh, did I say three suffixes? I meant four. -----Input----- The first line of input contains a single integer $t$ ($1 \leq t \leq 30$) denoting the number of test cases. The next lines contain descriptions of the test cases. Each test case consists of a single line containing a single string denoting the sentence. Spaces are represented as underscores (the symbol "_") for ease of reading. The sentence has at least $1$ and at most $1000$ characters, and consists only of lowercase English letters and underscores. The sentence has no leading or trailing underscores and no two consecutive underscores. It is guaranteed that the sentence ends with one of the four suffixes mentioned above. -----Output----- For each test case, print a single line containing either "FILIPINO", "JAPANESE", or "KOREAN" (all in uppercase, without quotes), depending on the detected language. -----Example----- Input 8 kamusta_po genki_desu ohayou_gozaimasu annyeong_hashimnida hajime_no_ippo bensamu_no_sentou_houhou_ga_okama_kenpo ang_halaman_doon_ay_sarisari_singkamasu si_roy_mustang_ay_namamasu Output FILIPINO JAPANESE JAPANESE KOREAN FILIPINO FILIPINO JAPANESE JAPANESE -----Note----- The first sentence ends with "po", so it is written in Filipino. The second and third sentences end with "desu" and "masu", so they are written in Japanese. The fourth sentence ends with "mnida", so it is written in Korean. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys t = int(input()) for i in range(t): a = sys.stdin.readline().strip() if a[-2:] == 'po': print('FILIPINO') elif a[-4:] in ['desu', 'masu']: print('JAPANESE') else: print('KOREAN') ```
vfc_138335
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1281/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "8\nkamusta_po\ngenki_desu\nohayou_gozaimasu\nannyeong_hashimnida\nhajime_no_ippo\nbensamu_no_sentou_houhou_ga_okama_kenpo\nang_halaman_doon_ay_sarisari_singkamasu\nsi_roy_mustang_ay_namamasu\n", "output": "FILIPINO\nJAPANESE\nJAPANESE\nKOREAN\nFILIPINO\nFILIPINO\nJAPANESE\nJAPANESE\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "30\nopo\np_po\npopo\ndesu\npo\nudesu\npodesu\ndesupo\nsddesu\nmumasu\nmmnida\nmmasu\nmasu\ndesu_po\npomnida\nmasumasu\npppo\nmnida\nmasu_po\ndesu_masu\na_masu\npo_po\nmasupo\nmasu_masu\nmnidamasu\npomasu\nmnida_po\nmnida_desu\nnakupo\npo_masu\n", "output": "FILIPINO\nFILIPINO\nFILIPINO\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nKOREAN\nJAPANESE\nJAPANESE\nFILIPINO\nKOREAN\nJAPANESE\nFILIPINO\nKOREAN\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\nFILIPINO\nJAPANESE\nJAPANESE\nJAPANESE\nFILIPINO\nJAPANESE\nFILIPINO\nJAPANESE\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "30\npo\nppo\nop_po\nmnida\nmasu\ndesu\npopo\nmsmasu\npomasu\npo_po\nusedpo\nmasu_po\nopmasu\nopo\nua_masu\nop_masu\nmnidapo\ndmnida\nopdesu\nadinmpo\npodesu\nnakupo\noppo\nmmasu\np_po\nadinm_po\nused_po\nusedmasu\nm_umasu\no_ppo\n", "output": "FILIPINO\nFILIPINO\nFILIPINO\nKOREAN\nJAPANESE\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\nFILIPINO\nFILIPINO\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\nKOREAN\nJAPANESE\nFILIPINO\nJAPANESE\nFILIPINO\nFILIPINO\nJAPANESE\nFILIPINO\nFILIPINO\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "30\nimamnida\nusamdesu\npomnida\ndesudesu\nop_desu\ndesumnida\npo_desu\npo_mnida\na_mnida\ndesu_po\nmnidamasu\nmasupo\ndesumasu\nudesu\ndesupo\ne_desu\npo_masu\nuudesu\nusedmnida\nusampo\nmasu_masu\nmnida_masu\nkamusta_po\nmasudesu\nu_masu\nds_desu\nu_edesu\ndesu_masu\nmasumasu\nmasu_mnida\n", "output": "KOREAN\nJAPANESE\nKOREAN\nJAPANESE\nJAPANESE\nKOREAN\nJAPANESE\nKOREAN\nKOREAN\nFILIPINO\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nJAPANESE\nKOREAN\nFILIPINO\nJAPANESE\nJAPANESE\nFILIPINO\nJAPANESE\nJAPANESE\nJAPANESE\nJAPANESE\nJAPANESE\nJAPANESE\nKOREAN\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "30\nmnidamnida\nopmnida\nadinm_masu\nusam_masu\nuseddesu\nadinmmasu\nmnida_po\ndnmnida\nmasumnida\nusam_po\nmnidadesu\nused_masu\nmnida_mnida\nadinm_mnida\nusammasu\nmasu_desu\nusammnida\ngenki_desu\nmm_mnida\nadinmmnida\nop_mnida\nadinm_desu\nused_desu\nusam_desu\nadinmdesu\nsaranghamnida\ndesu_desu\ntang_na_moo_po\nused_mnida\nusam_mnida\n", "output": "KOREAN\nKOREAN\nJAPANESE\nJAPANESE\nJAPANESE\nJAPANESE\nFILIPINO\nKOREAN\nKOREAN\nFILIPINO\nJAPANESE\nJAPANESE\nKOREAN\nKOREAN\nJAPANESE\nJAPANESE\nKOREAN\nJAPANESE\nKOREAN\nKOREAN\nKOREAN\nJAPANESE\nJAPANESE\nJAPANESE\nJAPANESE\nKOREAN\nJAPANESE\nFILIPINO\nKOREAN\nKOREAN\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Dark with his love for the prime numbers wanted to do some arithmetic so he decided to do some additions. He wants to generate all prime numbers between two given numbers and add them up and decide whether that addition of numbers is a prime number or not? Confused, Simply print "YES"(without quotes) if the sum of prime numbers between two numbers is a prime number and print "NO"(without quotes) if the sum of prime numbers between two numbers is a non-prime number. Note: If there are no prime numbers between two given numbers print "NO" (without quotes). Input: The first line contains T, the number of test cases. Followed by T lines each contain two numbers M and N Output: For every test case print the YES if sum is a prime number else print NO. If no prime number between M and N then print NO. Constraints 1 ≤ T ≤ 10000 1 ≤ M ≤ N ≤ 1000000 Note: 'M' & 'N' are inclusive. Author : Darshak Mehta SAMPLE INPUT 3 1 9 14 37 1 6 SAMPLE OUTPUT YES NO NO Explanation Test Case #1: Prime numbers between 1 to 9 are 2,3,5,7 and their sum is 17 which is a prime number. Test Case #3: Prime numbers between 1 to 6 are 2,3,5 and their sum is 10 which is non-prime number The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import bisect,math l =[] def primes_upto(limit): is_prime = [False] * 2 + [True] * (limit - 1) for n in range(int(limit**0.5 + 1.5)): # stop at ``sqrt(limit)`` if is_prime[n]: for i in range(n*n, limit+1, n): is_prime[i] = False return [i for i, prime in enumerate(is_prime) if prime] def iprimes_upto(limit): is_prime = [False] * 2 + [True] * (limit - 1) for n in range(int(limit**0.5 + 1.5)): # stop at ``sqrt(limit)`` if is_prime[n]: for i in range(n * n, limit + 1, n): # start at ``n`` squared is_prime[i] = False for i in range(limit + 1): if is_prime[i]: yield i def iprimes2(limit): yield 2 if limit < 3: return lmtbf = (limit - 3) // 2 buf = [True] * (lmtbf + 1) for i in range((int(limit ** 0.5) - 3) // 2 + 1): if buf[i]: p = i + i + 3 s = p * (i + 1) + i buf[s::p] = [False] * ((lmtbf - s) // p + 1) for i in range(lmtbf + 1): if buf[i]: yield (i + i + 3) def process(): global l # eratosthenes(1000000,l) l = list(iprimes2(1000001)) def is_prime(n): if n == 2: return "YES" if n%2 == 0 or n <= 1: return "NO" sqr = int(math.sqrt(n)) + 1 for divisor in range(3, sqr, 2): if n%divisor == 0: return "NO" return "YES" def solve(): global l length = len(l) [m,n] = [int(x) for x in input().split()] idx = bisect.bisect_left(l,m) s = 0 while idx<length and l[idx]<=n: s += l[idx] idx += 1 print(is_prime(s)) def main(): process() for _ in range(int(input())): solve() main() ```
vfc_138339
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000", "output": "YES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES", "type": "stdin_stdout" }, { "fn_name": null, "input": "90\n39 169\n25 69\n140 218\n214 226\n24 121\n152 233\n179 192\n187 189\n27 145\n155 208\n151 241\n125 185\n49 197\n95 255\n181 233\n163 168\n101 155\n182 224\n75 114\n14 202\n33 104\n62 288\n213 228\n93 100\n136 161\n125 185\n96 178\n119 185\n243 253\n130 154\n172 182\n187 228\n165 184\n182 196\n73 256\n87 219\n108 195\n268 272\n86 183\n234 252\n169 199\n157 164\n6 16\n89 122\n37 271\n138 140\n216 269\n241 254\n208 240\n90 231\n276 297\n188 202\n153 203\n97 119\n43 230\n29 45\n134 215\n151 203\n260 262\n127 193\n110 148\n71 77\n50 180\n163 201\n245 276\n92 122\n107 111\n146 261\n94 173\n59 68\n94 127\n109 167\n71 110\n240 272\n135 189\n56 130\n50 137\n141 142\n95 229\n106 118\n192 243\n167 189\n120 199\n168 171\n147 179\n248 266\n124 153\n156 161\n71 105\n95 288", "output": "YES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nYES\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nYES\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nYES\nNO\nNO\nYES\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nYES\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nYES\nYES\nNO\nYES\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO", "type": "stdin_stdout" }, { "fn_name": null, "input": "30\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 100000\n1 10000\n1 1000\n1 100\n1 10\n1 1\n10 100\n10 1000\n10 100000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000\n1 1000000", "output": "NO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES", "type": "stdin_stdout" }, { "fn_name": null, "input": "513\n384 887\n778 916\n387 493\n764 927\n173 737\n212 369\n68 136\n23 59\n70 168\n394 457\n12 43\n230 374\n422 920\n199 325\n316 371\n414 527\n92 981\n306 926\n85 328\n337 506\n314 858\n125 896\n44 751\n88 809\n404 652\n227 587\n95 540\n468 602\n98 903\n318 493\n653 757\n287 442\n445 620\n441 730\n32 118\n98 772\n482 676\n710 928\n568 857\n587 966\n307 684\n220 625\n529 872\n733 830\n271 369\n709 716\n380 489\n194 501\n35 765\n125 915\n228 366\n860 937\n433 552\n276 408\n30 238\n236 794\n444 764\n607 841\n129 689\n370 918\n918 997\n325 744\n491 500\n198 508\n356 805\n349 612\n623 829\n300 344\n341 423\n312 811\n606 802\n662 731\n321 737\n445 627\n63 625\n453 900\n380 551\n882 931\n200 982\n900 997\n85 341\n91 685\n377 543\n446 757\n180 419\n343 588\n207 302\n722 905\n128 151\n293 973\n673 851\n223 300\n525 591\n210 582\n380 770\n274 777\n580 885\n505 614\n203 507\n843 869\n873 909\n37 809\n304 334\n134 649\n568 747\n369 530\n789 798\n250 991\n364 498\n254 893\n153 997\n158 730\n437 461\n415 922\n51 749\n557 903\n501 682\n340 693\n505 630\n50 965\n286 430\n178 901\n239 972\n368 989\n293 796\n542 570\n24 762\n82 310\n191 426\n206 359\n313 387\n101 347\n727 995\n648 971\n52 81\n313 887\n215 356\n413 480\n611 970\n190 275\n356 642\n339 567\n218 519\n290 484\n472 730\n101 460\n26 389\n75 234\n158 682\n271 700\n418 840\n623 795\n174 848\n432 463\n293 792\n58 116\n948 952\n538 741\n99 326\n82 517\n339 581\n537 905\n177 484\n208 760\n500 912\n128 951\n237 561\n245 712\n806 935\n292 376\n590 769\n806 883\n823 983\n94 575\n127 594\n180 378\n763 776\n89 920\n711 733\n138 692\n154 944\n218 837\n91 859\n131 905\n572 662\n634 686\n605 852\n196 640\n597 982\n37 956\n212 343\n271 985\n173 428\n399 831\n64 348\n574 715\n60 523\n48 925\n83 436\n160 263\n263 684\n42 849\n155 336\n366 748\n172 777\n702 704\n654 934\n908 960\n729 807\n85 309\n335 699\n53 172\n190 560\n17 225\n110 540\n1 379\n82 115\n339 990\n148 224\n282 876\n814 858\n82 604\n297 826\n405 723\n135 182\n58 709\n596 1000\n484 777\n155 978\n310 588\n22 267\n564 861\n286 931\n315 477\n117 821\n529 840\n137 361\n619 644\n338 929\n583 622\n311 956\n438 854\n9 723\n394 578\n891 977\n200 553\n642 736\n185 196\n777 806\n267 429\n309 594\n556 673\n1 326\n383 422\n355 762\n763 973\n542 717\n155 174\n16 507\n38 538\n70 518\n301 507\n639 668\n365 490\n33 155\n105 876\n413 539\n171 957\n650 815\n327 887\n153 622\n394 791\n632 674\n265 736\n156 794\n172 359\n762 991\n101 955\n76 365\n43 625\n660 920\n290 845\n552 977\n134 344\n305 957\n193 730\n175 208\n184 378\n574 958\n63 126\n142 154\n486 949\n30 560\n642 903\n11 481\n709 724\n422 668\n181 744\n96 900\n25 89\n155 387\n434 664\n95 650\n340 465\n87 516\n350 916\n187 882\n12 635\n134 388\n520 743\n125 140\n734 800\n735 820\n316 436\n88 854\n488 803\n90 611\n206 961\n705 912\n558 830\n404 817\n523 606\n444 580\n362 529\n379 448\n354 427\n37 507\n418 665\n124 438\n157 609\n70 746\n172 296\n341 926\n528 567\n51 197\n125 334\n116 142\n343 640\n199 591\n514 632\n129 258\n347 684\n139 226\n496 541\n422 973\n227 635\n159 726\n357 953\n112 884\n604 662\n217 340\n175 345\n268 295\n14 758\n520 861\n833 877\n280 991\n296 599\n108 742\n585 802\n84 801\n493 610\n165 524\n252 350\n340 705\n166 987\n303 626\n80 592\n562 920\n495 820\n544 582\n124 769\n188 640\n321 681\n99 487\n19 753\n99 426\n473 979\n854 967\n878 901\n36 952\n108 499\n50 155\n862 907\n326 785\n429 798\n116 561\n186 898\n317 915\n586 776\n766 987\n367 516\n396 834\n429 777\n27 301\n63 787\n630 764\n101 509\n398 417\n776 983\n321 827\n519 566\n135 547\n63 304\n687 843\n433 535\n808 811\n835 870\n597 816\n325 383\n188 862\n603 982\n136 709\n163 943\n871 997\n164 467\n235 333\n291 951\n340 881\n214 855\n383 445\n739 752\n169 682\n500 978\n465 770\n73 392\n58 837\n282 621\n115 372\n372 419\n568 698\n434 491\n524 691\n336 423\n141 969\n44 256\n340 767\n26 937\n53 221\n288 984\n541 722\n827 998\n170 171\n228 799\n521 564\n222 661\n554 564\n609 863\n769 896\n199 661\n10 174\n504 888\n255 674\n58 482\n824 930\n13 210\n135 760\n282 743\n414 959\n485 756\n1 321\n1 943\n505 808\n526 895\n118 159\n561 627\n615 974\n5 834\n128 411\n369 632\n342 447\n375 459\n491 927\n700 706\n1 563\n458 833\n349 462\n18 808\n170 498\n129 140\n19 471\n281 543\n708 744\n401 551\n22 486\n635 648\n326 984\n462 695\n143 631\n143 493\n35 686\n645 803\n546 785\n493 549\n297 987\n531 841\n50 52\n513 957\n590 655\n449 873\n429 483\n140 695\n6 15\n524 870\n418 885\n725 755\n642 722\n112 570\n791 903\n675 979\n266 378\n567 977\n135 834", "output": "YES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES\nYES", "type": "stdin_stdout" }, { "fn_name": null, "input": "2403\n25 92\n64 108\n66 99\n19 88\n27 105\n11 23\n61 68\n42 101\n24 72\n25 115\n63 90\n44 50\n15 62\n91 98\n48 110\n98 125\n54 112\n104 121\n9 114\n21 78\n24 110\n80 102\n32 39\n71 114\n6 80\n94 109\n11 60\n94 114\n27 33\n83 115\n47 109\n26 84\n17 105\n56 70\n21 118\n11 98\n30 100\n59 114\n66 119\n43 52\n37 72\n92 106\n97 101\n16 84\n88 119\n16 83\n38 38\n63 72\n7 83\n16 82\n32 32\n58 113\n6 6\n27 66\n6 95\n17 98\n98 113\n88 99\n48 119\n11 94\n62 120\n103 122\n17 39\n15 71\n17 96\n44 83\n97 117\n19 54\n84 97\n90 124\n40 65\n56 98\n14 64\n24 60\n23 119\n52 103\n62 84\n66 67\n52 52\n40 52\n32 32\n45 98\n8 41\n10 96\n7 56\n104 105\n41 62\n35 68\n20 72\n90 101\n19 57\n73 90\n8 77\n40 106\n16 29\n11 43\n100 122\n9 69\n10 84\n15 84\n17 40\n54 122\n90 125\n76 122\n63 123\n52 122\n18 102\n21 32\n83 120\n7 47\n6 47\n46 70\n80 116\n83 94\n17 35\n14 34\n15 69\n101 117\n24 125\n35 96\n87 110\n28 66\n24 102\n11 90\n81 120\n54 77\n79 105\n62 70\n30 115\n15 66\n31 53\n21 90\n10 113\n16 114\n66 69\n65 107\n49 114\n19 79\n9 53\n64 84\n60 122\n80 103\n10 57\n55 114\n70 107\n116 123\n85 106\n31 85\n31 79\n61 82\n34 70\n23 78\n61 125\n35 119\n23 31\n16 120\n23 122\n98 104\n61 112\n121 122\n64 68\n24 36\n42 76\n9 68\n24 60\n85 95\n39 68\n22 88\n65 72\n55 65\n38 59\n44 102\n59 67\n48 85\n89 101\n19 93\n16 83\n8 87\n86 120\n51 106\n69 78\n26 26\n28 110\n100 103\n41 46\n90 93\n28 108\n33 103\n90 119\n28 53\n110 121\n23 76\n46 62\n47 55\n62 114\n22 108\n24 36\n20 72\n40 55\n43 54\n36 59\n34 80\n23 117\n103 119\n50 92\n16 108\n61 86\n47 92\n14 33\n27 94\n22 73\n19 30\n21 102\n7 52\n60 66\n121 123\n73 115\n9 95\n26 86\n25 26\n22 87\n14 73\n20 27\n77 93\n79 111\n92 120\n51 63\n32 75\n22 39\n59 123\n58 116\n15 61\n41 53\n25 28\n18 20\n70 88\n65 95\n86 91\n50 107\n58 101\n23 90\n110 123\n11 76\n30 96\n21 120\n56 88\n34 54\n28 83\n83 89\n42 49\n42 107\n27 74\n49 94\n112 123\n32 125\n10 85\n12 80\n54 100\n38 38\n41 77\n106 116\n24 40\n115 118\n25 53\n89 98\n51 100\n97 101\n39 94\n11 52\n67 69\n40 59\n104 105\n80 106\n35 104\n23 98\n76 79\n38 78\n51 72\n9 76\n53 82\n107 108\n49 56\n12 35\n34 37\n68 122\n19 62\n31 50\n9 32\n114 120\n42 81\n67 101\n26 77\n33 106\n17 20\n16 117\n92 93\n25 104\n7 15\n10 98\n62 62\n15 112\n88 98\n72 91\n103 119\n89 99\n61 86\n95 113\n81 89\n69 78\n53 61\n12 116\n69 119\n24 54\n60 81\n71 119\n62 95\n50 68\n6 43\n68 95\n8 26\n65 115\n29 92\n16 88\n21 31\n70 114\n100 120\n54 100\n46 102\n22 95\n113 124\n36 110\n59 66\n17 94\n75 79\n12 43\n20 79\n29 100\n21 114\n35 51\n38 125\n33 85\n41 113\n47 88\n39 77\n90 111\n35 125\n88 101\n33 110\n44 84\n74 122\n46 94\n38 38\n73 110\n46 50\n92 118\n60 111\n7 87\n15 28\n75 76\n19 123\n38 91\n66 90\n14 107\n20 43\n100 122\n84 93\n7 31\n60 94\n14 67\n30 71\n40 122\n12 108\n82 115\n90 93\n18 123\n76 119\n51 60\n31 55\n50 80\n64 64\n41 53\n33 71\n72 84\n19 81\n65 87\n39 117\n9 39\n45 73\n17 102\n18 94\n21 88\n15 79\n19 119\n19 110\n6 68\n25 32\n55 77\n7 87\n58 60\n28 58\n67 69\n25 84\n80 116\n105 122\n44 102\n12 19\n97 104\n57 58\n65 89\n87 99\n36 78\n83 98\n59 115\n12 48\n40 43\n65 121\n36 113\n10 38\n68 124\n19 29\n14 28\n46 88\n48 73\n85 98\n20 79\n21 90\n103 113\n10 21\n22 40\n29 76\n47 87\n115 119\n83 98\n68 77\n98 119\n36 112\n38 76\n56 88\n63 85\n21 71\n97 117\n15 60\n57 94\n97 113\n54 71\n19 30\n49 109\n40 57\n73 90\n47 93\n92 104\n30 33\n7 116\n32 67\n66 113\n46 76\n66 71\n7 40\n102 124\n61 100\n19 40\n82 98\n42 118\n57 105\n95 114\n67 115\n93 125\n26 101\n34 52\n56 103\n20 22\n47 61\n43 75\n7 49\n90 105\n7 63\n41 124\n14 24\n20 77\n113 121\n86 91\n91 93\n25 38\n15 70\n47 73\n11 70\n40 96\n40 74\n7 20\n64 67\n60 107\n54 103\n38 75\n26 86\n27 112\n14 67\n91 119\n23 73\n8 10\n7 39\n45 118\n49 121\n71 108\n34 64\n29 104\n102 116\n10 64\n23 61\n56 107\n32 69\n40 68\n64 112\n68 120\n104 125\n66 90\n52 111\n65 84\n26 64\n63 65\n10 22\n39 69\n33 122\n34 58\n9 99\n40 95\n20 68\n18 35\n34 85\n29 47\n51 62\n39 74\n20 71\n43 105\n39 51\n12 72\n17 33\n19 102\n33 84\n58 110\n88 118\n97 118\n28 93\n54 92\n58 93\n105 109\n30 80\n25 55\n93 111\n64 114\n67 109\n15 53\n9 119\n78 78\n10 29\n13 36\n40 48\n40 40\n91 115\n86 115\n54 76\n64 65\n113 113\n85 101\n15 79\n53 92\n38 66\n11 95\n14 39\n28 105\n10 77\n22 51\n37 100\n73 107\n24 82\n107 121\n79 88\n34 100\n107 122\n40 99\n77 113\n66 79\n75 79\n51 93\n39 97\n15 51\n34 86\n19 52\n28 48\n81 94\n16 17\n22 84\n17 125\n36 45\n16 32\n49 110\n114 114\n13 125\n16 106\n23 114\n32 36\n44 104\n32 63\n19 73\n19 55\n33 82\n24 69\n27 83\n6 13\n56 121\n51 67\n79 115\n27 90\n49 116\n66 85\n18 84\n125 125\n51 83\n75 115\n45 122\n69 106\n32 45\n50 123\n6 24\n43 49\n48 50\n27 51\n16 80\n21 109\n66 69\n38 45\n16 101\n45 90\n26 52\n44 120\n22 113\n48 56\n45 83\n47 74\n77 87\n84 119\n9 102\n12 110\n14 106\n31 96\n6 81\n38 76\n18 117\n30 102\n35 86\n61 115\n91 94\n68 91\n47 91\n61 61\n14 42\n29 101\n13 58\n81 81\n60 93\n61 61\n28 40\n8 37\n16 67\n87 111\n61 103\n69 94\n59 86\n57 110\n66 67\n54 69\n114 117\n66 112\n80 96\n76 114\n14 71\n19 118\n68 69\n28 57\n30 53\n42 67\n24 100\n11 73\n22 91\n54 77\n84 107\n23 51\n26 42\n95 113\n68 94\n44 114\n83 113\n49 100\n54 90\n19 123\n57 125\n99 123\n7 116\n6 38\n46 123\n83 91\n92 119\n62 116\n27 95\n36 95\n40 80\n44 77\n46 125\n8 49\n48 125\n38 90\n47 101\n37 83\n55 112\n52 95\n96 122\n55 83\n81 87\n87 121\n92 107\n75 111\n9 122\n82 113\n22 37\n12 48\n7 99\n8 94\n58 64\n74 123\n38 59\n100 113\n28 41\n8 77\n45 70\n6 68\n101 117\n74 97\n14 50\n13 76\n18 45\n27 98\n104 120\n15 63\n27 73\n76 106\n16 43\n23 96\n45 49\n89 106\n53 95\n23 107\n91 107\n87 91\n57 103\n66 76\n77 99\n68 110\n13 33\n14 25\n40 101\n22 84\n37 114\n105 107\n27 95\n32 92\n88 92\n37 46\n71 112\n53 68\n30 64\n55 109\n32 82\n64 93\n105 112\n61 122\n63 78\n35 84\n63 65\n6 12\n14 17\n85 103\n12 86\n46 104\n29 125\n61 108\n93 103\n115 115\n9 10\n21 111\n74 78\n13 24\n59 120\n42 109\n36 122\n19 109\n13 125\n25 57\n49 92\n18 61\n21 65\n62 68\n97 114\n124 124\n73 124\n30 93\n15 69\n47 77\n40 87\n54 123\n61 91\n77 106\n49 58\n55 105\n27 73\n43 119\n45 50\n34 122\n75 122\n104 125\n75 121\n37 122\n90 110\n55 73\n15 51\n58 103\n18 57\n56 77\n16 43\n63 109\n28 58\n115 122\n53 122\n73 93\n73 89\n21 37\n23 115\n93 118\n47 108\n68 90\n120 123\n59 63\n56 56\n39 66\n70 77\n20 110\n31 114\n35 78\n60 117\n67 69\n54 102\n81 125\n73 103\n16 83\n64 116\n41 113\n46 87\n45 54\n84 113\n38 95\n13 77\n34 104\n44 106\n98 99\n22 76\n70 74\n107 117\n81 97\n92 92\n21 53\n67 67\n43 119\n16 58\n52 116\n58 114\n66 69\n25 77\n23 99\n37 47\n102 119\n33 86\n28 47\n45 110\n59 86\n74 121\n85 101\n77 90\n14 113\n27 45\n33 115\n27 117\n11 13\n55 111\n34 77\n94 95\n17 26\n87 112\n20 107\n31 69\n61 96\n6 102\n36 85\n48 63\n7 74\n46 115\n44 55\n82 96\n103 104\n35 57\n21 82\n10 18\n93 119\n33 116\n27 68\n66 103\n49 57\n39 83\n34 94\n7 64\n7 72\n81 84\n29 122\n102 102\n50 88\n72 74\n48 92\n46 57\n19 38\n20 43\n11 88\n54 80\n36 49\n27 110\n95 107\n54 86\n41 69\n108 122\n54 117\n61 88\n79 123\n30 103\n75 115\n13 122\n10 101\n105 108\n13 73\n73 112\n38 94\n17 30\n6 16\n67 104\n9 116\n18 50\n64 75\n31 48\n19 78\n83 103\n97 106\n33 65\n18 26\n7 83\n45 81\n13 72\n6 41\n17 79\n75 90\n8 60\n98 106\n98 101\n19 22\n87 95\n41 120\n38 75\n33 112\n38 48\n58 63\n85 110\n14 17\n102 115\n7 75\n17 18\n7 113\n81 84\n24 79\n73 73\n19 103\n71 73\n66 86\n41 95\n11 32\n111 119\n30 83\n28 55\n94 123\n23 64\n14 105\n90 114\n68 113\n87 106\n23 86\n16 54\n30 40\n99 115\n17 98\n24 25\n16 40\n55 105\n80 88\n10 59\n16 89\n97 124\n61 97\n34 86\n8 21\n38 100\n76 123\n34 84\n52 125\n14 74\n8 29\n12 16\n31 95\n72 83\n83 103\n20 41\n64 106\n16 106\n39 113\n30 55\n65 66\n38 62\n22 87\n100 104\n65 70\n81 115\n55 87\n60 72\n15 120\n44 87\n108 115\n47 100\n8 53\n9 10\n15 39\n97 109\n23 118\n44 121\n6 12\n65 79\n9 49\n45 68\n81 101\n99 112\n19 35\n21 55\n11 117\n43 120\n113 123\n32 69\n49 86\n73 121\n16 99\n8 57\n92 106\n42 76\n22 52\n58 65\n16 69\n88 88\n23 23\n6 8\n70 106\n42 78\n17 100\n96 106\n35 50\n12 84\n21 27\n29 49\n7 70\n90 97\n28 54\n7 87\n34 60\n25 93\n22 53\n41 82\n72 103\n15 94\n75 120\n42 122\n53 92\n69 118\n33 124\n53 107\n101 102\n63 64\n48 75\n103 124\n32 38\n27 76\n56 89\n11 33\n17 80\n34 73\n26 111\n26 46\n42 92\n17 84\n37 117\n37 88\n14 47\n14 58\n70 78\n42 47\n30 50\n48 98\n90 105\n29 80\n17 77\n16 93\n92 120\n56 66\n18 25\n43 57\n39 101\n58 125\n64 102\n67 72\n42 93\n29 52\n90 111\n36 53\n25 42\n34 81\n39 40\n30 61\n115 116\n36 48\n59 119\n56 83\n41 52\n55 81\n68 83\n43 87\n25 99\n34 64\n74 88\n19 101\n64 110\n76 114\n105 123\n37 63\n18 62\n53 69\n44 47\n35 52\n90 95\n26 59\n59 75\n101 122\n113 121\n80 99\n115 117\n83 99\n9 82\n15 81\n99 104\n73 90\n11 38\n91 118\n22 108\n51 60\n25 120\n46 98\n16 30\n11 45\n12 119\n13 94\n46 91\n28 101\n21 85\n64 122\n29 72\n21 98\n47 69\n101 107\n45 113\n91 95\n47 80\n59 79\n29 72\n31 70\n17 20\n45 87\n99 125\n18 105\n30 39\n56 113\n60 87\n67 68\n75 93\n33 89\n30 74\n13 90\n52 65\n9 88\n61 74\n25 39\n6 125\n15 112\n54 102\n96 110\n34 82\n47 51\n51 96\n36 74\n46 60\n20 71\n20 120\n29 70\n57 117\n28 125\n65 115\n44 125\n109 114\n8 66\n41 97\n88 123\n40 95\n46 61\n16 43\n78 86\n88 115\n17 64\n36 78\n72 112\n99 119\n26 43\n9 15\n40 115\n9 32\n16 30\n28 60\n28 86\n91 92\n8 65\n79 113\n76 88\n80 96\n57 123\n18 119\n32 80\n55 60\n58 116\n72 116\n36 88\n88 99\n24 103\n66 73\n41 113\n91 94\n70 77\n111 123\n40 55\n21 68\n87 111\n28 59\n7 85\n119 124\n15 82\n36 78\n32 66\n30 54\n48 85\n106 121\n21 50\n45 83\n27 88\n9 32\n13 16\n11 102\n101 113\n64 124\n23 57\n19 66\n50 66\n65 118\n17 36\n15 110\n75 90\n9 113\n46 107\n31 85\n47 52\n15 100\n43 111\n13 19\n7 34\n9 73\n50 83\n60 68\n56 57\n33 73\n25 63\n28 100\n102 120\n98 104\n20 94\n16 75\n21 74\n51 67\n62 76\n20 82\n13 19\n6 117\n68 83\n7 31\n9 60\n60 90\n57 72\n91 102\n23 63\n62 102\n43 45\n43 92\n13 17\n29 106\n61 61\n39 94\n66 79\n58 67\n112 119\n18 93\n78 95\n88 108\n40 50\n16 52\n87 98\n82 103\n52 62\n86 121\n76 77\n49 58\n37 46\n25 32\n14 87\n12 36\n10 102\n16 108\n86 107\n6 41\n52 96\n34 72\n86 125\n28 86\n13 68\n37 107\n12 67\n65 90\n15 37\n98 113\n30 118\n74 101\n7 78\n105 113\n39 78\n86 86\n118 124\n14 97\n95 124\n78 103\n14 115\n13 87\n61 114\n28 107\n35 103\n113 125\n11 71\n13 46\n80 81\n95 96\n14 111\n28 113\n46 51\n9 19\n42 108\n16 111\n103 118\n25 104\n29 120\n55 75\n78 92\n21 104\n57 73\n24 33\n22 41\n8 74\n110 114\n80 125\n42 46\n41 101\n35 88\n102 104\n47 112\n76 95\n40 75\n36 112\n54 85\n7 108\n24 40\n48 107\n48 76\n84 112\n71 71\n67 92\n81 102\n75 94\n50 56\n18 74\n30 119\n18 75\n67 102\n71 81\n103 125\n16 64\n36 49\n14 88\n10 78\n37 38\n114 116\n33 124\n12 16\n80 96\n40 111\n37 52\n64 67\n8 112\n34 52\n34 109\n83 89\n31 70\n19 96\n26 26\n74 82\n18 112\n61 83\n119 120\n23 72\n37 86\n89 112\n59 60\n9 86\n20 73\n26 68\n78 78\n41 53\n91 92\n19 104\n93 124\n32 45\n38 57\n45 86\n41 56\n109 114\n60 116\n6 90\n35 118\n111 125\n59 107\n26 88\n10 29\n6 49\n12 82\n15 43\n77 87\n46 49\n14 29\n95 123\n66 87\n13 53\n51 104\n53 116\n82 114\n101 119\n12 67\n97 111\n76 107\n116 122\n56 62\n34 125\n41 121\n35 44\n72 74\n26 102\n71 72\n55 61\n22 35\n54 112\n22 123\n47 66\n31 121\n72 116\n16 94\n45 110\n82 106\n12 28\n17 113\n56 57\n29 69\n9 51\n65 94\n46 91\n19 60\n58 101\n41 51\n13 52\n41 76\n71 104\n67 108\n29 58\n32 104\n31 117\n46 51\n75 78\n20 114\n89 125\n30 79\n16 50\n60 110\n96 118\n101 106\n59 65\n64 108\n53 80\n38 57\n27 40\n19 45\n43 95\n98 98\n81 91\n36 118\n19 46\n61 118\n31 95\n49 100\n22 69\n12 100\n20 109\n51 119\n43 89\n13 125\n40 53\n30 65\n81 121\n18 95\n74 121\n110 120\n18 87\n47 113\n90 124\n31 122\n12 21\n61 84\n94 97\n48 89\n62 75\n11 94\n93 114\n33 106\n53 99\n71 82\n17 94\n50 70\n89 103\n7 119\n49 50\n19 88\n64 73\n75 106\n55 86\n58 70\n19 63\n11 59\n53 104\n84 119\n36 53\n58 125\n26 115\n108 109\n32 38\n54 99\n62 101\n48 100\n10 59\n83 85\n28 35\n21 78\n43 97\n84 98\n14 20\n76 80\n99 114\n12 41\n18 73\n31 93\n60 91\n73 101\n33 42\n76 124\n74 123\n19 89\n99 108\n77 107\n14 69\n104 115\n81 91\n17 58\n13 51\n32 124\n66 117\n52 59\n82 90\n61 87\n62 88\n66 81\n18 124\n83 124\n17 42\n72 118\n44 66\n24 87\n35 101\n13 44\n28 84\n61 102\n85 96\n12 45\n88 110\n67 89\n76 112\n76 102\n72 102\n67 95\n81 88\n40 100\n90 117\n57 88\n60 66\n32 43\n99 112\n87 111\n89 110\n24 125\n80 118\n39 87\n36 108\n49 95\n11 115\n84 124\n65 79\n71 86\n34 92\n35 116\n86 87\n60 68\n11 86\n10 59\n13 122\n10 20\n28 59\n65 96\n54 111\n48 113\n60 113\n10 88\n44 46\n34 40\n72 120\n80 102\n13 90\n111 115\n88 108\n32 49\n66 67\n65 94\n11 110\n10 48\n58 83\n12 14\n9 125\n31 92\n41 67\n60 84\n52 70\n30 61\n54 57\n96 99\n67 123\n36 41\n68 89\n9 97\n24 55\n31 55\n20 92\n14 57\n67 119\n95 117\n11 46\n27 77\n13 33\n14 91\n63 75\n11 41\n11 34\n46 58\n24 60\n33 49\n12 94\n64 90\n79 116\n87 114\n62 82\n8 49\n23 95\n13 59\n47 101\n80 117\n34 89\n48 75\n30 78\n30 110\n43 113\n6 25\n36 53\n34 40\n70 81\n47 53\n66 86\n10 70\n57 93\n70 123\n14 88\n10 45\n15 48\n31 40\n52 124\n47 120\n21 58\n117 124\n79 92\n71 104\n34 114\n95 108\n68 85\n86 118\n35 112\n18 50\n81 123\n12 107\n63 74\n62 75\n25 117\n38 102\n99 118\n29 105\n48 121\n9 70\n80 120\n35 44\n47 79\n14 94\n16 72\n37 104\n58 117\n55 101\n63 86\n100 104\n97 112\n84 95\n80 110\n38 76\n52 113\n14 25\n57 63\n91 102\n13 60\n103 123\n87 103\n11 62\n31 58\n10 110\n114 120\n6 11\n22 92\n32 50\n72 113\n31 34\n14 16\n9 58\n112 112\n52 114\n125 125\n8 54\n45 84\n39 71\n8 67\n23 44\n73 86\n47 117\n48 97\n57 99\n14 88\n63 109\n33 50\n40 114\n75 118\n92 98\n26 59\n67 112\n19 31\n88 121\n17 44\n65 84\n78 84\n54 89\n33 103\n13 107\n102 110\n6 122\n49 62\n41 61\n17 100\n18 23\n67 96\n66 74\n10 107\n26 88\n52 103\n16 61\n38 46\n83 103\n30 100\n68 115\n45 53\n117 121\n32 73\n25 109\n9 121\n19 99\n24 33\n61 105\n26 118\n66 89\n20 25\n23 56\n33 63\n13 76\n33 35\n37 75\n83 112\n27 96\n63 101\n70 109\n49 87\n79 96\n37 61\n8 14\n111 122\n20 69\n74 85\n23 80\n8 124\n73 124\n55 74\n21 44\n49 67\n17 17\n29 79\n97 103\n94 114\n83 108\n109 113\n76 117\n50 114\n40 77\n16 45\n12 24\n15 124\n7 10\n43 46\n37 65\n74 84\n58 93\n17 89\n23 45\n90 107\n27 30\n70 73\n90 103\n33 91\n17 88\n54 102\n56 125\n16 30\n32 105\n105 118\n68 86\n32 43\n25 117\n23 76\n48 48\n50 102\n52 96\n36 104\n22 90\n39 118\n97 105\n39 65\n59 65\n52 52\n20 123\n64 105\n36 45\n6 33\n53 121\n63 106\n6 68\n68 102\n25 70\n64 95\n48 104\n51 104\n40 95\n56 77\n31 122\n67 106\n42 109\n32 85\n85 86\n29 112\n13 114\n15 112\n28 109\n33 75\n77 91\n14 17\n38 48\n47 102\n37 111\n28 44\n48 90\n54 115\n99 108\n59 73\n28 118\n82 96\n80 98\n98 117\n68 84\n47 68\n86 112\n42 82\n99 106\n73 115\n16 120\n110 121\n8 122\n79 82\n57 76\n70 101\n12 49\n24 89\n20 58\n93 102\n46 100\n19 77\n73 106\n33 93\n113 119\n6 25\n111 117\n8 121\n29 67\n106 109\n12 116\n6 90\n105 110\n13 35\n29 96\n33 62\n7 12\n106 114\n20 117\n30 123\n57 89\n9 52\n97 125\n14 81\n86 95\n84 103\n42 106\n53 106\n10 102\n26 76\n89 112\n86 109\n6 39\n65 104\n97 109\n66 98\n9 25\n19 84\n27 39\n9 25\n83 99\n45 46\n26 35\n78 122\n71 110\n86 118\n6 23\n24 79\n98 125\n24 63\n19 44\n32 113\n33 101\n8 96\n11 96\n50 125\n47 118\n41 80\n31 65\n11 86\n95 102\n9 95\n61 116\n39 77\n75 80\n83 107\n39 113\n37 52\n20 100\n20 122\n45 101\n51 71\n98 117\n67 74\n32 95\n33 87\n25 45\n16 46\n28 55\n18 23\n28 97\n54 114\n51 93\n56 124\n55 76\n11 30\n81 87\n94 100\n65 77\n22 101\n85 124\n101 105\n60 90\n25 31\n38 47\n51 52\n35 73\n83 94\n49 86\n10 125\n11 92\n71 122\n14 17\n32 97\n40 95\n19 123\n56 77\n55 107\n29 84\n13 56\n16 83\n52 104\n56 106\n123 123\n53 110\n39 40\n60 90\n50 95\n26 31\n14 14\n58 73\n53 105\n35 113\n54 74\n6 71\n74 98\n57 102\n90 90\n9 82\n57 77\n45 118\n12 72\n82 125\n24 94\n69 71\n50 55\n44 52\n11 61\n39 102\n52 95\n31 42\n24 24\n32 102\n50 68\n35 122\n56 80\n58 113\n42 67\n48 93\n14 87\n66 98\n7 29\n64 70\n27 70\n58 111\n42 50\n44 75\n46 118\n50 56\n16 41\n63 81\n61 123\n79 121\n58 91\n35 63\n34 63\n107 110\n121 121\n41 117\n89 93\n22 107\n29 40\n45 96\n20 32\n15 119\n27 68\n105 108\n78 102\n29 91\n8 26\n77 87\n95 108\n50 65\n54 105\n90 111\n53 79\n56 76\n102 110\n37 56\n63 93\n45 78\n37 51\n21 109\n91 114\n103 109\n56 92\n51 67\n81 108\n11 105\n104 109\n74 90\n19 35\n71 103\n70 79\n100 107\n76 89\n84 108\n28 45\n31 98\n65 123\n79 96\n64 120\n9 107\n72 87\n43 104\n20 55\n18 47\n39 80\n51 96\n11 71\n9 38\n35 124\n28 35\n102 105\n12 113\n117 119\n12 87\n35 79\n15 78\n19 64\n20 114\n63 114\n37 120\n22 119\n54 57\n12 51\n23 47\n19 77\n9 42\n59 97\n15 87\n9 24\n13 36\n121 121\n30 43\n40 64\n27 41\n58 84\n48 77\n8 124\n45 47\n109 112\n33 99\n16 108\n49 49\n9 110\n13 65\n91 119\n20 33\n32 84\n52 60\n46 119\n8 99\n37 40\n13 39\n27 68\n53 113\n14 122\n121 125\n11 107\n24 105\n50 58\n8 70\n28 86\n18 80\n49 66\n7 81\n100 120\n10 103\n66 111\n68 72\n19 58\n23 29\n31 111\n77 121\n61 67\n6 44\n67 67\n43 124\n13 23\n97 124\n33 35\n27 73\n21 56\n9 114\n27 56\n20 20\n21 32\n55 108\n60 123\n35 82\n68 114\n14 101\n88 106\n110 123\n16 108\n55 83\n38 92\n16 114\n36 76\n80 99\n78 85\n62 124\n33 108\n77 105\n13 72\n35 101\n51 125\n32 57\n54 87\n54 101\n56 68\n72 109\n15 66\n9 96\n93 125\n69 97\n99 100\n78 111\n21 123\n97 111\n97 103\n30 44\n92 120\n14 15\n67 105\n25 48\n89 122\n12 54\n55 75\n99 119\n9 20\n28 117\n22 29\n73 98\n22 76\n45 49\n74 120\n45 103\n22 90\n100 123\n8 106\n20 72\n68 88\n45 67\n41 58\n13 31\n53 111\n44 88\n24 103\n84 100\n29 73\n34 91\n21 121\n6 6\n80 89\n57 124\n11 28\n31 99\n27 56\n30 86\n16 65\n22 107\n13 74\n75 84\n17 66\n11 36\n75 121\n18 97\n8 29\n34 81\n25 117\n7 42\n72 78\n31 50\n24 68\n78 94\n63 111\n32 59\n42 92\n13 84\n43 119\n49 98\n27 103\n30 112\n9 88\n37 122\n15 78\n22 39\n17 65\n21 100\n9 113\n82 85\n94 100\n35 104\n67 74\n65 122\n31 90\n111 120\n10 95\n39 84\n35 92\n17 61\n44 120\n29 66\n54 79\n54 92\n22 117\n50 107\n99 101\n98 125\n24 33\n19 85\n54 85\n34 107\n65 113\n76 96\n28 56\n19 81\n35 50", "output": "NO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nYES\nNO\nNO\nNO\nNO\nYES\nYES\nYES\nNO\nNO\nYES\nNO\nNO\nYES\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nNO\nYES\nNO\nYES\nNO\nNO\nYES", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/725/C
Solve the following coding problem using the programming language python: Let’s define a grid to be a set of tiles with 2 rows and 13 columns. Each tile has an English letter written in it. The letters don't have to be unique: there might be two or more tiles with the same letter written on them. Here is an example of a grid: ABCDEFGHIJKLM NOPQRSTUVWXYZ We say that two tiles are adjacent if they share a side or a corner. In the example grid above, the tile with the letter 'A' is adjacent only to the tiles with letters 'B', 'N', and 'O'. A tile is not adjacent to itself. A sequence of tiles is called a path if each tile in the sequence is adjacent to the tile which follows it (except for the last tile in the sequence, which of course has no successor). In this example, "ABC" is a path, and so is "KXWIHIJK". "MAB" is not a path because 'M' is not adjacent to 'A'. A single tile can be used more than once by a path (though the tile cannot occupy two consecutive places in the path because no tile is adjacent to itself). You’re given a string s which consists of 27 upper-case English letters. Each English letter occurs at least once in s. Find a grid that contains a path whose tiles, viewed in the order that the path visits them, form the string s. If there’s no solution, print "Impossible" (without the quotes). -----Input----- The only line of the input contains the string s, consisting of 27 upper-case English letters. Each English letter occurs at least once in s. -----Output----- Output two lines, each consisting of 13 upper-case English characters, representing the rows of the grid. If there are multiple solutions, print any of them. If there is no solution print "Impossible". -----Examples----- Input ABCDEFGHIJKLMNOPQRSGTUVWXYZ Output YXWVUTGHIJKLM ZABCDEFSRQPON Input BUVTYZFQSNRIWOXXGJLKACPEMDH Output Impossible The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python 3 s = input() n = len(s) (a, b) = (0, 0) d = dict() for i in range(len(s)): if s[i] in d: a = d[s[i]] b = i d[s[i]] = i if a == b - 1: print('Impossible') else: ans = [[' '] * 13 for i in range(2)] if (b - a) % 2 == 1: for i in range((b - a) // 2): ans[0][-(b - a) // 2 + i + 1] = s[a + i + 1] ans[1][-i - 1] = s[a + i + (b - a) // 2 + 1] x = -(b - a) // 2 y = 0 for i in range(b, n): ans[y][x] = s[i] if y == 0: x -= 1 else: x += 1 if x == -14: y = 1 x = 0 for i in range(a): ans[y][x] = s[i] if y == 0: x -= 1 else: x += 1 if x == -14: y = 1 x = 0 print(''.join(ans[0])) print(''.join(ans[1])) else: for i in range((b - a) // 2): ans[0][-(b - a) // 2 + i + 1] = s[a + i + 1] ans[1][-i - 1] = s[a + i + (b - a) // 2] x = -(b - a) // 2 y = 0 for i in range(b, n): ans[y][x] = s[i] if y == 0: x -= 1 else: x += 1 if x == -14: y = 1 x = 0 for i in range(a): ans[y][x] = s[i] if y == 0: x -= 1 else: x += 1 if x == -14: y = 1 x = 0 print(''.join(ans[0])) print(''.join(ans[1])) ```
vfc_138347
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/725/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "ABCDEFGHIJKLMNOPQRSGTUVWXYZ\n", "output": "YXWVUTGHIJKLM\nZABCDEFSRQPON\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "BUVTYZFQSNRIWOXXGJLKACPEMDH\n", "output": "Impossible\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/908/B
Solve the following coding problem using the programming language python: Bob programmed a robot to navigate through a 2d maze. The maze has some obstacles. Empty cells are denoted by the character '.', where obstacles are denoted by '#'. There is a single robot in the maze. Its start position is denoted with the character 'S'. This position has no obstacle in it. There is also a single exit in the maze. Its position is denoted with the character 'E'. This position has no obstacle in it. The robot can only move up, left, right, or down. When Bob programmed the robot, he wrote down a string of digits consisting of the digits 0 to 3, inclusive. He intended for each digit to correspond to a distinct direction, and the robot would follow the directions in order to reach the exit. Unfortunately, he forgot to actually assign the directions to digits. The robot will choose some random mapping of digits to distinct directions. The robot will map distinct digits to distinct directions. The robot will then follow the instructions according to the given string in order and chosen mapping. If an instruction would lead the robot to go off the edge of the maze or hit an obstacle, the robot will crash and break down. If the robot reaches the exit at any point, then the robot will stop following any further instructions. Bob is having trouble debugging his robot, so he would like to determine the number of mappings of digits to directions that would lead the robot to the exit. -----Input----- The first line of input will contain two integers n and m (2 ≤ n, m ≤ 50), denoting the dimensions of the maze. The next n lines will contain exactly m characters each, denoting the maze. Each character of the maze will be '.', '#', 'S', or 'E'. There will be exactly one 'S' and exactly one 'E' in the maze. The last line will contain a single string s (1 ≤ |s| ≤ 100) — the instructions given to the robot. Each character of s is a digit from 0 to 3. -----Output----- Print a single integer, the number of mappings of digits to directions that will lead the robot to the exit. -----Examples----- Input 5 6 .....# S....# .#.... .#.... ...E.. 333300012 Output 1 Input 6 6 ...... ...... ..SE.. ...... ...... ...... 01232123212302123021 Output 14 Input 5 3 ... .S. ### .E. ... 3 Output 0 -----Note----- For the first sample, the only valid mapping is $0 \rightarrow D, 1 \rightarrow L, 2 \rightarrow U, 3 \rightarrow R$, where D is down, L is left, U is up, R is right. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from itertools import permutations dirs = ((1, 0), (-1, 0), (0, 1), (0, -1)) per = permutations(dirs) (r, c) = map(int, input().split()) grid = [input() for _ in range(r)] path = input() pos_start = [i for (i, x) in enumerate(grid) if 'S' in x][0] start = (pos_start, grid[pos_start].index('S')) pos_end = [i for (i, x) in enumerate(grid) if 'E' in x][0] end = (pos_end, grid[pos_end].index('E')) total = 0 for p in per: (x, y) = start for move in path: (dir_x, dir_y) = p[int(move)] x += dir_x y += dir_y if x < 0 or y < 0 or x >= r or (y >= c) or (grid[x][y] == '#'): break if grid[x][y] == 'E': total += 1 break print(total) ```
vfc_138353
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/908/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 6\n.....#\nS....#\n.#....\n.#....\n...E..\n333300012\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6 6\n......\n......\n..SE..\n......\n......\n......\n01232123212302123021\n", "output": "14\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 3\n...\n.S.\n###\n.E.\n...\n3\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 10\n.#......#.\n#.........\n#.........\n....#.#..E\n.......#..\n....##....\n....S.....\n....#.....\n.........#\n...##...#.\n23323332313123221123020122221313323310313122323233\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "8 9\n.........\n.........\n.........\n.E.#.....\n.........\n.........\n...#.S...\n.........\n10001100111000010121100000110110110100000100000100\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "15 13\n.............\n.............\n.............\n.........#...\n..#..........\n.............\n..........E..\n.............\n.............\n.#...........\n.....#.......\n..........#..\n..........S..\n.............\n.........#...\n32222221111222312132110100022020202131222103103330\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Roman loved diamonds. Monica decided to give him a beautiful gift on Valentine's Day. Her idea of diamonds was different though. She lit up all the windows of her rectangular building with N floors and M windows on each floor, with 2 shapes - / or \ . According to her, a diamond was made when such a shape was created: / / Given the shape of lights in all the windows, help Roman count the number of diamonds formed. Note: The components of the diamond should be adjacent to each other. Input: First line contains T - the number of testcases. For each testcase, First line contains 2 space-separated positive integers - N and M - the no. of floors in the building and the no. of windows on each floor respectively. N lines follow - each line contains M space-separated characters. Every character is either or / . Output: Print a single integer - the total no. of diamonds formed. Constraints: 1 ≤ T ≤ 5 2 ≤ N, M ≤ 1000 SAMPLE INPUT 1 2 4 / \ / \ \ / \ / SAMPLE OUTPUT 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ''' # Read input from stdin and provide input before running code name = raw_input('What is your name?\n') print 'Hi, %s.' % name ''' #print 'Hello World!' test_cases=input() #print test_cases for _ in range(int(test_cases)): m,n=list(map(int,input().split(" "))) #print m,n diamonds=[] for i in range(m): d_line=input().split(" ") diamonds.append(d_line) count=0 #print diamonds #input taken for i in range(m-1): for j in range(n-1): #print 'before',i,j if diamonds[i][j]=='/' and diamonds[i+1][j]=='\\' \ and diamonds[i][j+1]=='\\' and diamonds[i+1][j+1]=='/': count+=1 #else: # print i,j print(count) ```
vfc_138357
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n10 5\n/ / \\ / \\\n\\ / / / \\\n/ / / / \\\n/ \\ / / /\n\\ / \\ \\ /\n/ \\ / \\ \\\n\\ \\ / \\ /\n/ \\ \\ \\ /\n/ / \\ / \\\n\\ / / / /\n9 3\n/ \\ /\n/ \\ /\n\\ / /\n/ \\ /\n\\ / \\\n\\ \\ /\n/ / \\\n/ \\ \\\n/ / \\\n9 8\n\\ \\ \\ \\ / / \\ /\n\\ / \\ / \\ / / \\\n/ \\ \\ \\ \\ / / \\\n\\ \\ / \\ \\ \\ / \\\n/ \\ / \\ / / / /\n\\ \\ \\ \\ \\ / / \\\n/ \\ \\ \\ / / / \\\n\\ / / / \\ / \\ \\\n\\ \\ \\ / \\ \\ / /\n", "output": "428\n375\n36\n128\n192\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n7 3\n\\ / \\\n\\ / \\\n\\ / \\\n/ \\ /\n/ \\ \\\n\\ \\ \\\n\\ \\ /\n3 6\n\\ / \\ / / /\n\\ / \\ / \\ /\n\\ / \\ / / \\\n8 2\n/ /\n\\ \\\n\\ \\\n\\ /\n\\ \\\n\\ /\n/ \\\n\\ /\n", "output": "67\n12\n334\n446\n484\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/min-distance-between-two-given-nodes-of-a-binary-tree/1
Solve the following coding problem using the programming language python: Given a binary tree and two node values your task is to find the minimum distance between them. The given two nodes are guaranteed to be in the binary tree and nodes are numbered from 1 to N. Please Note that a and b are not always leaf node. Example 1: Input: 1 / \ 2 3 a = 2, b = 3 Output: 2 Explanation: The tree formed is: 1 / \ 2 3 We need the distance between 2 and 3. Being at node 2, we need to take two steps ahead in order to reach node 3. The path followed will be: 2 -> 1 -> 3. Hence, the result is 2. Your Task: You don't need to read input or print anything. Your task is to complete the function findDist() which takes the root node of the Tree and the two node values a and b as input parameters and returns the minimum distance between the nodes represented by the two given node values. Expected Time Complexity: O(N). Expected Auxiliary Space: O(Height of the Tree). Constraints: 1 <= Number of nodes <= 10^{4} 1 <= Data of a node <= 10^{5} Write your solution by modifying this code: ```python #User function Template for python3 ''' # Node Class: class Node: def __init__(self,val): self.data = val self.left = None self.right = None ''' class Solution: def findDist(self,root,a,b): #return: minimum distance between a and b in a tree with given root #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def findDist(self, root, a, b): def LCA(root, path, tar): if root == None: return if root.data == tar: self.ans.append(path + [root.data]) LCA(root.left, path + [root.data], tar) LCA(root.right, path + [root.data], tar) self.ans = [] LCA(root, [], a) ans1 = self.ans[0] self.ans = [] LCA(root, [], b) ans2 = self.ans[0] for i in range(min(len(ans1), len(ans2))): if ans1[i] == ans2[i]: val = i + 1 else: return len(ans1) + len(ans2) - 2 * val return len(ans1) + len(ans2) - 2 * val ```
vfc_138361
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/min-distance-between-two-given-nodes-of-a-binary-tree/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\r\n / \\\r\n 2 3\r\na = 2, b = 3", "output": "2", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/TADELIVE
Solve the following coding problem using the programming language python: Read problems statements in Mandarin Chinese and Russian. Andy and Bob are the only two delivery men of Pizza-chef store. Today, the store received N orders. It's known that the amount of tips may be different when handled by different delivery man. More specifically, if Andy takes the i^{th} order, he would be tipped A_{i} dollars and if Bob takes this order, the tip would be B_{i} dollars. They decided that they would distribute the orders among themselves to maximize the total tip money. One order will be handled by only one person. Also, due to time constraints Andy cannot take more than X orders and Bob cannot take more than Y orders. It is guaranteed that X + Y is greater than or equal to N, which means that all the orders can be handled by either Andy or Bob. Please find out the maximum possible amount of total tip money after processing all the orders. ------ Input ------ The first line contains three integers N, X, Y. The second line contains N integers. The i^{th} integer represents A_{i}. The third line contains N integers. The i^{th} integer represents B_{i}. ------ Output ------ Print a single integer representing the maximum tip money they would receive. ------ Constraints ------ All test: $1 ≤ N ≤ 10^{5}$ $1 ≤ X, Y ≤ N; X + Y ≥ N $ $1 ≤ A_{i}, B_{i} ≤ 10^{4}$ 10 points: $1 ≤ N ≤ 20$ 30 points: $1 ≤ N ≤ 5000$ 60 points: $1 ≤ N ≤ 10^{5}$ ----- Sample Input 1 ------ 5 3 3 1 2 3 4 5 5 4 3 2 1 ----- Sample Output 1 ------ 21 ----- explanation 1 ------ Bob will take the first three orders (or the first two) and Andy will take the rest (of course). The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, x, y) = [int(j) for j in input().split()] a = [int(j) for j in input().split()] b = [int(j) for j in input().split()] c = [(abs(i - j), i, j) for (i, j) in zip(a, b)] c.sort(reverse=1) ans = 0 for (i, j, k) in c: if x > 0 and y > 0: if j < k: ans += k y -= 1 else: ans += j x -= 1 elif x <= 0: ans += k else: ans += j print(ans) ```
vfc_138362
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/TADELIVE", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 3 3\n1 2 3 4 5\n5 4 3 2 1", "output": "21", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 3 3\n1 2 3 4 5\n5 4 3 0 1", "output": "21\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 3 3\n1 0 3 5 5\n5 4 3 0 1", "output": "22\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 3 3\n1 2 3 4 5\n2 4 2 0 2", "output": "18\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 3 3\n1 1 3 4 5\n10 4 1 0 1", "output": "26\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: You are given three numbers. Is there a way to replace variables A, B and C with these numbers so the equality A + B = C is correct? Input: There are three numbers X1, X2 and X3 (1 ≤ Xi ≤ 10^100), each on a separate line of input. Output: Output either "YES", if there is a way to substitute variables A, B and C with given numbers so the equality is correct, or "NO" otherwise. Sample Input: 1 2 3 Output: YES Sample Input: 1 2 4 Output YES Sample Input: 1 3 5 Output NO SAMPLE INPUT 1 2 3 SAMPLE OUTPUT YES The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python a=int(input()) b=int(input()) c=int(input()) l=[a,b,c] def ckh(x,y,z): flag=0 if((x+y)==z): flag=1 return(flag) p=1 while(p): if(l[0]==2*l[2] or l[0]==2*l[1] or l[2]==2*l[1] or l[2]==2*l[0] or l[1]==2*l[2] or l[1]==2*l[0] ): print('YES') p=0 else: if(ckh(l[0],l[1],l[2])): print('YES') p=0 elif(ckh(l[1],l[2],l[0])): print('YES') p=0 elif(ckh(l[2],l[0],l[1])): print('YES') p=0 else: print("NO") p=0 ```
vfc_138367
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1000000000000000000000000000000000000000000000000000000000000000000000000000\n2000000000000000000000000000000000000000000000000000000000000000000000000000\n4000000000000000000000000000000000000000000000000000000000000000000000000000", "output": "YES", "type": "stdin_stdout" }, { "fn_name": null, "input": "3000000000000000000000000000000\n7000000000000000000000000000000\n2000000000000000000000000000000", "output": "NO", "type": "stdin_stdout" }, { "fn_name": null, "input": "200000000000000000000000000000000000000000000000000000000000000000000000000000\n100000000000000000000000000000000000000000000000000000000000000000000000000000\n300000000000000000000000000000000000000000000000000000000000000000000000000000", "output": "YES", "type": "stdin_stdout" }, { "fn_name": null, "input": "30000000000000\n20000000000000\n10000000000000", "output": "YES", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: C: Mod! Mod! story That's right! I'm looking for eyewitness testimony! A phantom thief has appeared in Aizu! Everyone's horse stick was stolen! Who is the culprit! ?? Unravel! Mod! Mod! Problem statement "Eyes" ... it's a miracle bud that swells in the hearts of the chosen ones ... You can steal anything with the special ability "Eyes". Aizu Maru, the biggest phantom thief in Aizu, decides to steal a "horse stick" from n detectives in order to fill the world with a mystery. Umauma sticks are just sweets that Maru loves, and each of the n detectives has several horse sticks. Also, because Aizumaru is greedy, when he steals a horse stick from each detective, he steals all the horse sticks that the detective has. Aizumaru, who is addicted to eating three horse sticks at the same time, when he has three or more horse sticks at hand, he keeps three horse sticks until he loses the temptation and has less than three horse sticks. I will eat it. However, Aizumaru loses his eyes in shock if he does not have a horse stick at hand, and he cannot steal any more horse sticks. In other words, in order to steal a horse horse stick, it is necessary to have one or more horse horse sticks on hand, and when it reaches 0, it becomes impossible to steal any more horse horse sticks. Aizuma, who wants to steal horse sticks from as many detectives as possible, noticed that the number of detectives who can steal horse sticks depends on which detective steals the horse sticks in order. However, I don't know how difficult it is to get together. "Hate?" Aizumaru's excellent subordinate, you decided to write a program to ask how many detectives you can steal a horse stick instead of Aizumaru. Since the number of detectives n and how many horse sticks to steal from each of n detectives are given, when stealing horse sticks from detectives in the optimum order, it is possible to steal horse sticks from up to how many detectives. Create a program that outputs what you can do. However, although the number of horse sticks on hand at the beginning is 0, it is assumed that the horse sticks can be stolen even if the number of horse sticks on hand is 0 only at the beginning. Input format The input consists of two lines and is given in the following format. n a_1 a_2… a_n The first line is given the integer n, which is the number of detectives stealing horse sticks. On the second line, n number of horse sticks to steal from each detective are given, separated by blanks. Constraint * 1 ≤ n ≤ 500 {,} 000 * 1 ≤ a_i ≤ 9 (1 ≤ i ≤ n) Output format When you steal a horse stick from a detective in the optimal order, print out in one line how many detectives you can steal a horse stick from. Input example 1 6 2 5 2 5 2 1 Output example 1 Five If you steal in the order of 2 5 1 2 5, you can steal from 5 people. No matter what order you steal, you cannot steal from six people. Input example 2 3 3 6 9 Output example 2 1 No matter which one you steal from, the number of horse sticks you have will be 0 and you will lose your eyes. Input example 3 6 1 2 3 4 5 6 Output example 3 6 Example Input 6 2 5 2 5 2 1 Output 5 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) a = list(map(int, input().split())) c = [0] * 3 for i in a: c[i % 3] += 1 if c[1] | c[2] == 0: ans = 1 else: (ans, n) = (c[0], n - c[0]) if n <= 3: ans += n else: t = max(-3, min(3, c[1] - c[2])) if t > 0: ans += 2 * c[2] + t else: ans += 2 * c[1] - t print(ans) ```
vfc_138373
{ "difficulty": "unknown_difficulty", "memory_limit": "268.435456 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n2 5 2 6 2 1", "output": "6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n1 25 1 10 1 3", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n0 5 0 11 2 2", "output": "5\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/helix/problem
Solve the following coding problem using the programming language python: Natural numbers from 1 to N have been placed in an increasing order over some helix ( a circular structure ). When the helix starts rotating, it is easy to find out The position of a given number The number located at a given position. The helix has numbers arranged in the following fashion: [1, 2, 3, ..., N] Due to some malfunction, the helix has started rotating in a weird manner. Right now, every possible contiguous interval can be rotated, and hence, locating a particular number or identifying the number at a given position is almost impossible. For example, if at some particular instant, the integer list is like this: [1, 2, 3, 4, 5, ..., N] rotating the interval [5...N] will leave the list like this: [1, 2, 3, 4, N, N - 1, N - 2, ..., 5] We need a software to handle this. Can you help us? Input Format The first line of the input consists of two space separated integers, N, Q. N signifies that initially our list contains numbers from 1 to N, placed in an increasing order. Q lines follow and contain input in one of the following formats: 1 A B indicating that the helix rotated circularly in the interval [A..B] ( both inclusive); 2 A indicating that we are interested in knowing the current position of the number A 3 A indicating that we are interested in knowing the number at position A. Output Format For each line in the input of the form 2 A output a line saying element A is at position x where A is the number we are interested in and x is its current position. For each line of the form 3 A output a line saying element at position A is x where A is the position we are interested in and x is the integer located at this position. Constraints 1 ≤ N, Q ≤ $10^{5}$ positions are 1-indexed. Sample Input 5 10 1 1 3 2 3 3 3 1 3 5 1 2 4 3 1 3 5 2 4 1 5 5 2 2 Sample Output element 3 is at position 1 element at position 3 is 1 element at position 1 is 3 element at position 5 is 1 element 4 is at position 2 element 2 is at position 4 Explanation Initially elements are placed like this: [1, 2, 3, 4, 5] after the first rotation, they are placed like this: [3, 2, 1, 4, 5] and that's how we get the first 2 results (first 2 lines in the output). After second rotation, they are placed like this: [3, 2, 5, 4, 1] and third one does this: [3, 4, 5, 2, 1] In the last rotation (1 5 5), it's easy to see that output matches the initial positions of the elements. Last rotation doesn't change the positions of the elements. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import defaultdict from dataclasses import dataclass from random import random def print_tree(tree, pfx=''): if tree is None: return print_tree(tree.left, pfx + ' ') print(f'{pfx}{tree.value}: {count(tree)}') print_tree(tree.right, pfx + ' ') @dataclass class Node: value: int count: int prior: float rev: bool left: 'Node' right: 'Node' parent: 'Node' def prior(node): if node is None: return 0 return node.prior def count(node): if not node: return 0 return node.count def update_count(node): if node: node.count = count(node.left) + count(node.right) + 1 def heapify(node): if node is None: return max_prior = node.prior max_node = None if prior(node.left) > max_prior: max_prior = prior(node.left) max_node = node.left if prior(node.right) > max_prior: max_prior = prior(node.right) max_node = node.right if max_node: max_node.prior = node.prior node.prior = max_prior heapify(max_node) def build(lookup, start, end): if start == end: return None middle = (start + end) // 2 node = Node(middle, 0, random(), False, build(lookup, start, middle), build(lookup, middle + 1, end), None) for child in (node.left, node.right): if child: child.parent = node lookup[middle] = node heapify(node) update_count(node) return node def push(t): if t is None: return if t.rev: t.rev = False (t.left, t.right) = (t.right, t.left) if t.left: t.left.rev ^= True if t.right: t.right.rev ^= True def set_parent(node, par): if node: node.parent = par def split(t, ix): if t is None: return (None, None) push(t) if count(t.left) < ix: (center, right) = split(t.right, ix - count(t.left) - 1) t.right = center set_parent(center, t) update_count(t) set_parent(t, None) set_parent(right, None) return (t, right) else: (left, center) = split(t.left, ix) t.left = center set_parent(center, t) update_count(t) set_parent(left, None) set_parent(t, None) return (left, t) def merge(left, right): if left is None: return right push(left) push(right) if prior(left) >= prior(right): left.right = merge(left.right, right) set_parent(left.right, left) update_count(left) return left else: right.left = merge(left, right.left) set_parent(right.left, right) update_count(right) return right def reverse(t, a, b): (left, not_left) = split(t, a) (center, right) = split(not_left, b - a + 1) if not center: return merge(left, right) center.rev = True not_right = merge(left, center) return merge(not_right, right) def value(t, ix): push(t) if ix < count(t.left): return value(t.left, ix) elif ix == count(t.left): return t.value else: return value(t.right, ix - count(t.left) - 1) return t.value def index_rec(t): if t.parent is None: return count(t.left) elif t.parent.left is t: return index_rec(t.parent) - count(t.right) - 1 else: return index_rec(t.parent) + count(t.left) + 1 def index(t): parents = [] p = t while p is not None: parents.append(p) p = p.parent while parents: push(parents.pop()) return index_rec(t) (N, Q) = (int(x) for x in input().split(' ')) node_lookup = [None for _ in range(N + 1)] treap = build(node_lookup, 1, N + 1) for _ in range(Q): (q, *args) = (int(x) for x in input().split(' ')) if q == 1: (a, b) = args reverse(treap, a - 1, b - 1) elif q == 2: elem = args[0] pos = index(node_lookup[elem]) + 1 print(f'element {elem} is at position {pos}') elif q == 3: pos = args[0] elem = value(treap, pos - 1) print(f'element at position {pos} is {elem}') else: raise ValueError(f"Unexpected argument: {q} {' '.join(args)}") ```
vfc_138378
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/helix/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 10\n1 1 3\n2 3\n3 3\n1 3 5\n1 2 4\n3 1\n3 5\n2 4\n1 5 5\n2 2\n", "output": "element 3 is at position 1\nelement at position 3 is 1\nelement at position 1 is 3\nelement at position 5 is 1\nelement 4 is at position 2\nelement 2 is at position 4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/394/B
Solve the following coding problem using the programming language python: Teacher thinks that we make a lot of progress. Now we are even allowed to use decimal notation instead of counting sticks. After the test the teacher promised to show us a "very beautiful number". But the problem is, he's left his paper with the number in the teachers' office. The teacher remembers that the "very beautiful number" was strictly positive, didn't contain any leading zeroes, had the length of exactly p decimal digits, and if we move the last digit of the number to the beginning, it grows exactly x times. Besides, the teacher is sure that among all such numbers the "very beautiful number" is minimal possible. The teachers' office isn't near and the teacher isn't young. But we've passed the test and we deserved the right to see the "very beautiful number". Help to restore the justice, find the "very beautiful number" for us! -----Input----- The single line contains integers p, x (1 ≤ p ≤ 10^6, 1 ≤ x ≤ 9). -----Output----- If the teacher's made a mistake and such number doesn't exist, then print on a single line "Impossible" (without the quotes). Otherwise, print the "very beautiful number" without leading zeroes. -----Examples----- Input 6 5 Output 142857 Input 1 2 Output Impossible Input 6 4 Output 102564 -----Note----- Sample 1: 142857·5 = 714285. Sample 2: The number that consists of a single digit cannot stay what it is when multiplied by 2, thus, the answer to the test sample is "Impossible". The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (p, k) = map(int, input().split()) u = 10 * k - 1 v = pow(10, p - 1, u) - k for y in range(k, 10): if y * v % u == 0: q = d = 9 * y while q % u: q = 10 * q + d q = str(q // u) print(q * (p // len(q))) break else: print('Impossible') ```
vfc_138383
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/394/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6 5\n", "output": "142857", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 2\n", "output": "Impossible\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6 4\n", "output": "102564", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Create a program that inputs the vertex information of two polygons inscribed in one circle and outputs the magnitude relationship of their areas. Assume that each vertex of the X-side is numbered counterclockwise from 1 to X (the figure shows an example when X = 4). However, the given polygon assumes that the center of the circle is contained inside, and the data on the position of vertex i is the angle v (1 ≤ v <180) of the central angle measured counterclockwise from vertex i to vertex i + 1. Integer). Regarding the magnitude relationship to be output, 1 (half-width number) when the area of ​​the first polygon is large, 2 (half-width number) when the area of ​​the second polygon is large, and when the areas are the same, Please output 0 (half-width number). <image> Input A sequence of multiple datasets is given as input. The end of the input is indicated by a single line of zeros. Each dataset is given in the following format: m v1 v2 :: vm −1 n v1 v2 :: vn − 1 The first line gives the number of vertices of the first polygon m (3 ≤ m ≤ 50), and the following m − 1 line gives the information vi (1 ≤ vi <180) of the vertices i of the first polygon. .. The following line gives the number of vertices n (3 ≤ n ≤ 50) of the second polygon, and the following n − 1 line gives the information vi (1 ≤ vi <180) for the vertices i of the second polygon. The number of datasets does not exceed 200. Output Outputs the magnitude relationship (half-width numbers) for each data set on one line. Example Input 4 30 125 75 4 30 125 75 5 30 125 75 65 4 30 125 75 4 30 125 75 6 30 50 50 25 75 0 Output 0 1 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math M = 0.008726646259971648 EPS = 1e-08 a = [0] * 2 s = [0.0] * 2 while True: eof = False for i in range(2): s[i] = a[i] = 0 n = int(input()) if n == 0: eof = True break for j in range(1, n): v = int(input()) a[i] += v s[i] += math.sin(M * v) * math.cos(M * v) v = 360 - a[i] s[i] += math.sin(M * v) * math.cos(M * v) if eof: break if abs(s[1] - s[0]) <= EPS: print(0) elif s[1] >= s[0]: print(2) else: print(1) ```
vfc_138387
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n30\n125\n75\n4\n30\n125\n75\n5\n30\n125\n75\n65\n4\n30\n125\n75\n4\n30\n125\n75\n6\n30\n50\n50\n29\n75\n0", "output": "0\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n30\n125\n75\n4\n30\n125\n75\n5\n30\n125\n75\n65\n4\n30\n125\n75\n4\n30\n125\n75\n6\n30\n50\n6\n29\n75\n0", "output": "0\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n30\n84\n75\n4\n30\n125\n75\n5\n30\n125\n75\n65\n4\n30\n125\n75\n4\n30\n125\n75\n6\n52\n50\n50\n25\n75\n0", "output": "2\n1\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n30\n125\n75\n4\n30\n125\n75\n5\n30\n125\n149\n65\n4\n30\n125\n75\n4\n30\n125\n75\n6\n52\n50\n50\n25\n75\n0", "output": "0\n2\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: problem Create a program that counts the number of consecutive JOI or IOI characters in a given character string. The character string consists only of uppercase letters of the alphabet. For example, the character string "JOIOIOI" in the figure below contains JOI in one place and IOI in two places. <image> input The input consists of multiple datasets. Each dataset is one line and consists of uppercase letters of the alphabet of 10,000 characters or less. Input ends with EOF. The number of datasets does not exceed 5. output For each dataset, output the number of JOIs found in the first line and the number of IOIs found in the second line. Examples Input JOIJOI JOIOIOIOI JOIOIJOINXNXJIOIOIOJ Output 2 0 1 3 2 3 Input None Output None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python while True: try: j = input() p = 0 q = 0 for i in range(len(j) - 2): if j[i:i + 3] == 'JOI': p += 1 elif j[i:i + 3] == 'IOI': q += 1 else: pass print(p) print(q) except EOFError: break ```
vfc_138391
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "JOIJOI\nJOIOIOIOI\nJOIOIOIJXNXNIOJIOIOJ", "output": "2\n0\n1\n3\n1\n3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "eonN", "output": "0\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "JOIJOI\nJOIOINIOI\nJOIOIOIJXNXNIOJIOIOJ", "output": "2\n0\n1\n2\n1\n3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "JOIJOI\nJOIOINIOI\nJOIOIJOINXNXJIOIOIOJ", "output": "2\n0\n1\n2\n2\n3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "JOIJOI\nJOIOINIOI\nJOIPIJOINXNXJIOIOIOJ", "output": "2\n0\n1\n2\n2\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "JOIJOH\nJOIOINIOI\nJOIPIJOINXNXJIOIOIOJ", "output": "1\n0\n1\n2\n2\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/cd4b48615a30999443b728a72de6cd5addbd0501/1
Solve the following coding problem using the programming language python: IPL 2021 knockouts are over, teams MI, CSK, DC, and RCB are qualified for the semis. Today is matchday 6 and it is between Delhi Capitals and Royal Challengers Banglore. Glenn Maxwell of RCB playing flawlessly. Rishabh Pant, the new captain of the team who is also a wicket-keeper wants to send a message to the bowler. But, he can't shout message directly as a batsman can hear. So, he decided to encrypt the message by putting '*'s in the message. And this is how the bowler decrypts the message. Bowler iterates over the message string from left to right, if he finds a '*', he removes it and adds all the letters read so far to the message. He keeps on doing this till he gets rid of all the '*'. Given a decrypted message in the form of the string, the task is to find the encrypted message. Note: If the string can be encrypted in multiple ways, find the encrypted string of smallest length. Example 1: Input: s = "ababcababcd" Output: ab*c*d Explanation: We can encrypt the string in following way : "ababcababcd" -> "ababc*d" -> "ab*c*d" Example 2: Input: s = "zzzzzzz" Output: z*z*z Explanation: The string can be encrypted in 2 ways: "z*z*z" and "z**zzz". Out of the two "z*z*z" is smaller in length. Your Task: You don't need to read input or print anything. Complete the function compress() which takes the message string s as input parameter and returns the shortest possible encrypted string. Constraints: 1 ≤ |s| ≤ 10^{5} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def compress(self, s): # Your code goes here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def fillarray(self, s, a): a[0] = 0 for i in range(1, len(s)): series = a[i - 1] while series: if s[series] == s[i]: a[i] = series + 1 break series = a[series - 1] if series == 0: a[i] = int(s[i] == s[0]) return a def compress(self, s): a = [0] * len(s) a = self.fillarray(s, a) shortened = [] n = len(s) i = n - 1 while i > 0: if i % 2 == 0: shortened.append(s[i]) i = i - 1 continue star_here = False suffix = a[i] substrlen = i + 1 if suffix * 2 >= substrlen: if substrlen % (substrlen - suffix) == 0: if substrlen / (substrlen - suffix) % 2 == 0: star_here = True if star_here == True: shortened.append('*') i = i // 2 + 1 else: shortened.append(s[i]) i = i - 1 ret = '' ret = ret + s[0] n = len(shortened) while n: ret = ret + shortened[n - 1] shortened.pop() n = n - 1 return ret ```
vfc_138401
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/cd4b48615a30999443b728a72de6cd5addbd0501/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "s = \"ababcababcd\"", "output": "ab*c*d", "type": "stdin_stdout" }, { "fn_name": null, "input": "s = \"zzzzzzz\"", "output": "z*z*z", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/big-numbers-series1913/1
Solve the following coding problem using the programming language python: Given a series of numbers 0 1 4 18 96 600 4320 …., and series starting from zeroth term. Given n, find the nth value of the series. Example 1: Input: n = 4 Output: 96 Example 2: Input: n = 2 Output: 4 Your Task: You don't need to read or print anything, Your task is to complete the function NthTerm() which takes n as input parameter and returns the nth value of the given series modulo 10^{9} + 7. Expected Time Complexity: O(n) Expected Space Complexity: O(1) Constraints: 1 <= n <= 10000 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def NthTerm(self, n): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def solve(self, n): ans = 1 for i in range(1, n + 1): ans = ans * i return ans def NthTerm(self, n): a = self.solve(n) return n * a % (10 ** 9 + 7) ```
vfc_138402
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/big-numbers-series1913/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "n = 4", "output": "96", "type": "stdin_stdout" }, { "fn_name": null, "input": "n = 2", "output": "4", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1463/B
Solve the following coding problem using the programming language python: You are given an array $[a_1, a_2, \dots, a_n]$ such that $1 \le a_i \le 10^9$. Let $S$ be the sum of all elements of the array $a$. Let's call an array $b$ of $n$ integers beautiful if: $1 \le b_i \le 10^9$ for each $i$ from $1$ to $n$; for every pair of adjacent integers from the array $(b_i, b_{i + 1})$, either $b_i$ divides $b_{i + 1}$, or $b_{i + 1}$ divides $b_i$ (or both); $2 \sum \limits_{i = 1}^{n} |a_i - b_i| \le S$. Your task is to find any beautiful array. It can be shown that at least one beautiful array always exists. -----Input----- The first line contains one integer $t$ ($1 \le t \le 1000$) — the number of test cases. Each test case consists of two lines. The first line contains one integer $n$ ($2 \le n \le 50$). The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 10^9$). -----Output----- For each test case, print the beautiful array $b_1, b_2, \dots, b_n$ ($1 \le b_i \le 10^9$) on a separate line. It can be shown that at least one beautiful array exists under these circumstances. If there are multiple answers, print any of them. -----Examples----- Input 4 5 1 2 3 4 5 2 4 6 2 1 1000000000 6 3 4 8 1 2 3 Output 3 3 3 3 3 3 6 1 1000000000 4 4 8 1 3 3 -----Note----- None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def func(n, arr): s = sum(arr) odds = [1 if i & 1 else arr[i] for i in range(n)] if sum(map(lambda i: abs(odds[i] - arr[i]), range(n))) << 1 <= s: return odds return [1 if i & 1 == 0 else arr[i] for i in range(n)] for _ in range(int(input())): print(*func(int(input()), list(map(int, input().split())))) ```
vfc_138403
{ "difficulty": "medium", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1463/B", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n5\n1 2 3 4 5\n2\n4 6\n2\n1 1000000000\n6\n3 4 8 1 2 3\n", "output": "1 2 1 4 1\n1 6\n1 1000000000\n1 4 1 1 1 3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2\n1 1\n", "output": "1 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n4\n943626088 522008337 473172060 441135889\n", "output": "943626088 1 473172060 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n10\n5 3 3 3 3 3 3 3 3 3\n", "output": "1 3 1 3 1 3 1 3 1 3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n4\n37 19 19 19\n", "output": "37 1 19 1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/950/C
Solve the following coding problem using the programming language python: Oleg writes down the history of the days he lived. For each day he decides if it was good or bad. Oleg calls a non-empty sequence of days a zebra, if it starts with a bad day, ends with a bad day, and good and bad days are alternating in it. Let us denote bad days as 0 and good days as 1. Then, for example, sequences of days 0, 010, 01010 are zebras, while sequences 1, 0110, 0101 are not. Oleg tells you the story of days he lived in chronological order in form of string consisting of 0 and 1. Now you are interested if it is possible to divide Oleg's life history into several subsequences, each of which is a zebra, and the way it can be done. Each day must belong to exactly one of the subsequences. For each of the subsequences, days forming it must be ordered chronologically. Note that subsequence does not have to be a group of consecutive days. Input In the only line of input data there is a non-empty string s consisting of characters 0 and 1, which describes the history of Oleg's life. Its length (denoted as |s|) does not exceed 200 000 characters. Output If there is a way to divide history into zebra subsequences, in the first line of output you should print an integer k (1 ≤ k ≤ |s|), the resulting number of subsequences. In the i-th of following k lines first print the integer li (1 ≤ li ≤ |s|), which is the length of the i-th subsequence, and then li indices of days forming the subsequence. Indices must follow in ascending order. Days are numbered starting from 1. Each index from 1 to n must belong to exactly one subsequence. If there is no way to divide day history into zebra subsequences, print -1. Subsequences may be printed in any order. If there are several solutions, you may print any of them. You do not have to minimize nor maximize the value of k. Examples Input 0010100 Output 3 3 1 3 4 3 2 5 6 1 7 Input 111 Output -1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python s = input() (arr, zero, one) = ([], [], []) for i in range(len(s)): if s[i] == '0': if one: idx = one.pop() arr[idx].append(i + 1) zero.append(idx) else: zero.append(len(arr)) arr.append([i + 1]) else: if not zero: break idx = zero.pop() one.append(idx) arr[idx].append(i + 1) if arr and zero and (not one): print(len(arr)) for x in zero: print(len(arr[x]), end=' ') print(*arr[x]) else: print(-1) ```
vfc_138408
{ "difficulty": "medium_hard", "memory_limit": "512.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/950/C", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0010101100\n", "output": "2\n3 1 8 9\n7 2 3 4 5 6 7 10\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0110100000\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0\n", "output": "1\n1 1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/the-celebrity-problem/1
Solve the following coding problem using the programming language python: A celebrity is a person who is known to all but does not know anyone at a party. If you go to a party of N people, find if there is a celebrity in the party or not. A square NxN matrix M[][] is used to represent people at the party such that if an element of row i and column j is set to 1 it means ith person knows jth person. Here M[i][i] will always be 0. Note: Follow 0 based indexing. Follow Up: Can you optimize it to O(N) Example 1: Input: N = 3 M[][] = {{0 1 0}, {0 0 0}, {0 1 0}} Output: 1 Explanation: 0th and 2nd person both know 1. Therefore, 1 is the celebrity. Example 2: Input: N = 2 M[][] = {{0 1}, {1 0}} Output: -1 Explanation: The two people at the party both know each other. None of them is a celebrity. Your Task: You don't need to read input or print anything. Complete the function celebrity() which takes the matrix M and its size N as input parameters and returns the index of the celebrity. If no such celebrity is present, return -1. Expected Time Complexity: O(N^2) Expected Auxiliary Space: O(1) Constraints: 2 <= N <= 3000 0 <= M[][] <= 1 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: #Function to find if there is a celebrity in the party or not. def celebrity(self, M, n): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def celebrity(self, M, n): i = 0 j = n - 1 while i < j: if M[i][j] == 1: i += 1 else: j -= 1 count = 0 count2 = 0 for j in range(n): if i != j: count += M[j][i] count2 += M[i][j] if count2 == 0 and count == n - 1: return i return -1 ```
vfc_138412
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/the-celebrity-problem/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 3\r\nM[][] = {{0 1 0},\r\n {0 0 0}, \r\n {0 1 0}}", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 2\r\nM[][] = {{0 1},\r\n {1 0}}", "output": "-1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/778/B
Solve the following coding problem using the programming language python: Bob recently read about bitwise operations used in computers: AND, OR and XOR. He have studied their properties and invented a new game. Initially, Bob chooses integer m, bit depth of the game, which means that all numbers in the game will consist of m bits. Then he asks Peter to choose some m-bit number. After that, Bob computes the values of n variables. Each variable is assigned either a constant m-bit number or result of bitwise operation. Operands of the operation may be either variables defined before, or the number, chosen by Peter. After that, Peter's score equals to the sum of all variable values. Bob wants to know, what number Peter needs to choose to get the minimum possible score, and what number he needs to choose to get the maximum possible score. In both cases, if there are several ways to get the same score, find the minimum number, which he can choose. -----Input----- The first line contains two integers n and m, the number of variables and bit depth, respectively (1 ≤ n ≤ 5000; 1 ≤ m ≤ 1000). The following n lines contain descriptions of the variables. Each line describes exactly one variable. Description has the following format: name of a new variable, space, sign ":=", space, followed by one of: Binary number of exactly m bits. The first operand, space, bitwise operation ("AND", "OR" or "XOR"), space, the second operand. Each operand is either the name of variable defined before or symbol '?', indicating the number chosen by Peter. Variable names are strings consisting of lowercase Latin letters with length at most 10. All variable names are different. -----Output----- In the first line output the minimum number that should be chosen by Peter, to make the sum of all variable values minimum possible, in the second line output the minimum number that should be chosen by Peter, to make the sum of all variable values maximum possible. Both numbers should be printed as m-bit binary numbers. -----Examples----- Input 3 3 a := 101 b := 011 c := ? XOR b Output 011 100 Input 5 1 a := 1 bb := 0 cx := ? OR a d := ? XOR ? e := d AND bb Output 0 0 -----Note----- In the first sample if Peter chooses a number 011_2, then a = 101_2, b = 011_2, c = 000_2, the sum of their values is 8. If he chooses the number 100_2, then a = 101_2, b = 011_2, c = 111_2, the sum of their values is 15. For the second test, the minimum and maximum sum of variables a, bb, cx, d and e is 2, and this sum doesn't depend on the number chosen by Peter, so the minimum Peter can choose is 0. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def OP(i, j, op): if op == 'AND': return i & j if op == 'OR': return i | j if op == 'XOR': return i ^ j return 0 def totbit(i, test): ans = 0 for j in range(0, len(ops)): a = ops[j][0] b = ops[j][1] op = ops[j][2] if a == '?': x = test elif a in M: x = int(M[a][i]) else: x = OL[OD[a]] if b == '?': y = test elif b in M: y = int(M[b][i]) else: y = OL[OD[b]] ans += OP(x, y, op) OL[j] = OP(x, y, op) return ans ops = [] [n, m] = list(map(int, input().split())) M = dict() OL = [] OD = dict() for i in range(0, n): inp = input().split() a = inp[0] if len(inp) == 3: b = inp[2] M[a] = b else: a = inp[2] b = inp[4] op = inp[3] OD[inp[0]] = len(OL) OL.append(0) ops.append([a, b, op]) mi = '' ma = '' for i in range(0, m): b0 = totbit(i, 0) b1 = totbit(i, 1) if b0 >= b1: ma += '0' else: ma += '1' if b0 <= b1: mi += '0' else: mi += '1' print(mi) print(ma) ```
vfc_138413
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/778/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 3\na := 101\nb := 011\nc := ? XOR b\n", "output": "011\n100\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 1\na := 1\nbb := 0\ncx := ? OR a\nd := ? XOR ?\ne := d AND bb\n", "output": "0\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 10\nb := 0100101101\na := ? XOR b\n", "output": "0100101101\n1011010010\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 10\na := 0110110011\n", "output": "0000000000\n0000000000\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 6\na := ? OR ?\n", "output": "000000\n111111\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "13 6\na := 111010\nb := 100100\nc := 001110\nd := b AND b\ne := c AND ?\nf := e OR c\ng := 011110\nh := d XOR ?\ni := 010111\nj := 000011\nk := d OR ?\nl := 011101\nm := b OR j\n", "output": "100000\n011011\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/product-is-even-or-odd3020/1
Solve the following coding problem using the programming language python: You are given two long numbers N1 and N2 in a string. You need to find out if the product of these numbers generate an even number or an odd number, If it is an even number print 1 else print 0. Example 1: Input: N1 = "12" N2 = "15" Output: 1 Explanation: 12 * 15 = 180 which is an even number. ​Example 2: Input: N1 = "123" N2 = "457" Output: 0 Explanation: 123*457 = 56211 which is an odd number. Your Task: You don't need to read input or print anything. Your task is to complete the function EvenOdd() which accepts two strings N1 and N2 as input parameter and returns 1 or 0 accordingly. Expected Time Complexity: O(1). Expected Auxiliary Space: O(1). Constraints: 1 ≤ N1, N2 ≤ 10^{99} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def EvenOdd(self, n1, n2): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def EvenOdd(self, n1, n2): a = int(n1) b = int(n2) if a * b % 2 == 0: return 1 else: return 0 ```
vfc_138418
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/product-is-even-or-odd3020/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N1 = \"12\"\nN2 = \"15\"", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "N1 = \"123\"\nN2 = \"457\"", "output": "0", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/SOPC2015/problems/SOPC1504
Solve the following coding problem using the programming language python: Han Solo and Chewbacca start a space journey to planet Naboo on the Millennium Falcon. During the journey they land at a mysterious planet with high gravity where they find n diamond stones scattered all around. All the stones are of same weight. Each stone has a value according to its purity which can be detected by a special device. They choose to divide the stones fairly among themselves in two halves so that they carry almost equal weights such that the difference between the value of two halves is as small as possible. If n is even, then sizes of two halves must be strictly n/2 and if n is odd, then size of one half must be (n-1)/2 and size of the other half must be (n+1)/2. Given the value of stones, help them to divide the stones among themselves. -----Input----- First line consists of an integer n which denotes the number of stones.Second line consists of n space separated integers denoting the value of the stones. -----Output----- First line consists of the values of the stones assigned to Han Solo.Second line consists of the values of the stones assigned to Chewbacca.Assume that the set containing the first value in the input is always assigned to Han Solo.Also the values in the output sets must follow the same ordering as the input. -----Constraints----- The number of stones can range from 2 to 99.The values of the stones vary from 1 to 10^4. -----Example----- Input: 7 1 2 3 4 5 6 7 Output: 1 2 4 7 3 5 6 -----Explanation----- These 7 values must be separated into 2 sets of sizes 3 and 4.In this case, it is possible to form two sets (1,2,4,7) & (3,5,6) of equal size.The set containing the first value (i.e.) 1 must be assigned to Han Solo and the elements of the output sets have the same order as the input. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (s, n, s1, lis, new1) = ([], [], [], [], []) import itertools q = int(input()) s.append(input().split(' ')) s1 = list([list(map(int, x)) for x in s]) sum1 = sum(s1[0]) if len(s1[0]) % 2 != 0: z = (len(s1[0]) + 1) // 2 n = list(itertools.combinations(s1[0], z)) for j in range(len(n)): x = sum(n[j]) if x == sum1 // 2: lis = n[j] break new1 = list(lis) sum2 = sum(new1) for j in range(len(lis)): y = lis[j] s1[0].remove(y) sum3 = sum(s1[0]) if sum3 > sum2: print(' '.join(map(str, s1[0]))) print(' '.join(map(str, new1))) else: print(' '.join(map(str, new1))) print(' '.join(map(str, s1[0]))) else: z = len(s1[0]) // 2 n = list(itertools.combinations(s1[0], z)) for j in range(len(n)): x = sum(n[j]) if x == sum1 // 2: lis = n[j] break new1 = list(lis) sum2 = sum(new1) for j in range(len(lis)): y = lis[j] s1[0].remove(y) sum3 = sum(s1[0]) if sum3 > sum2: print(' '.join(map(str, s1[0]))) print(' '.join(map(str, new1))) else: print(' '.join(map(str, new1))) print(' '.join(map(str, s1[0]))) ```
vfc_138419
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/SOPC2015/problems/SOPC1504", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7\n1 2 3 4 5 6 7\n", "output": "1 2 4 7\n3 5 6\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Today is the birthday of Mr. Bon Vivant, who is known as one of the greatest patissiers in the world. Those who are invited to his birthday party are gourmets from around the world. They are eager to see and eat his extremely creative cakes. Now a large box-shaped cake is being carried into the party. It is not beautifully decorated and looks rather simple, but it must be delicious beyond anyone's imagination. Let us cut it into pieces with a knife and serve them to the guests attending the party. The cake looks rectangular, viewing from above (Figure C-1). As exemplified in Figure C-2, the cake will iteratively be cut into pieces, where on each cut exactly a single piece is cut into two smaller pieces. Each cut surface must be orthogonal to the bottom face and must be orthogonal or parallel to a side face. So, every piece shall be rectangular looking from above and every side face vertical. <image> Figure C-1: The top view of the cake <image> Figure C-2: Cutting the cake into pieces Piece sizes in Figure C-2 vary significantly and it may look unfair, but you don't have to worry. Those guests who would like to eat as many sorts of cakes as possible often prefer smaller pieces. Of course, some prefer larger ones. Your mission of this problem is to write a computer program that simulates the cutting process of the cake and reports the size of each piece. Input The input is a sequence of datasets, each of which is of the following format. > n w d > p1 s1 > ... > pn sn > The first line starts with an integer n that is between 0 and 100 inclusive. It is the number of cuts to be performed. The following w and d in the same line are integers between 1 and 100 inclusive. They denote the width and depth of the cake, respectively. Assume in the sequel that the cake is placed so that w and d are the lengths in the east-west and north-south directions, respectively. Each of the following n lines specifies a single cut, cutting one and only one piece into two. pi is an integer between 1 and i inclusive and is the identification number of the piece that is the target of the i-th cut. Note that, just before the i-th cut, there exist exactly i pieces. Each piece in this stage has a unique identification number that is one of 1, 2, ..., i and is defined as follows: * The earlier a piece was born, the smaller its identification number is. * Of the two pieces born at a time by the same cut, the piece with the smaller area (looking from above) has the smaller identification number. If their areas are the same, you may define as you like the order between them, since your choice in this case has no influence on the final answer. Note that identification numbers are adjusted after each cut. si is an integer between 1 and 1000 inclusive and specifies the starting point of the i-th cut. From the northwest corner of the piece whose identification number is pi, you can reach the starting point by traveling si in the clockwise direction around the piece. You may assume that the starting point determined in this way cannot be any one of the four corners of the piece. The i-th cut surface is orthogonal to the side face on which the starting point exists. The end of the input is indicated by a line with three zeros. Output For each dataset, print in a line the areas looking from above of all the pieces that exist upon completion of the n cuts specified in the dataset. They should be in ascending order and separated by a space. When multiple pieces have the same area, print it as many times as the number of the pieces. Example Input 3 5 6 1 18 2 19 1 2 3 4 1 1 1 2 1 3 1 0 2 5 0 0 0 Output 4 4 6 16 1 1 1 1 10 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python while True: dic = {} (n, w, d) = map(int, input().split(' ')) if n == 0 and w == 0 and (d == 0): break dic[1] = (w, d) for i in range(n): (p, s) = map(int, input().split(' ')) (W, H) = dic[p] for j in range(p, i + 1): dic[j] = dic[j + 1] cycle = 2 * (H + W) s %= cycle if s < W or (H + W < s and s < W + H + W): if W < s: s -= H + W dic[i + 1] = (min(s, W - s), H) dic[i + 2] = (max(s, W - s), H) elif W < s and s < H + W or W + H + W < s: if s > H + W: s -= W + H + W else: s -= W dic[i + 1] = (W, min(s, H - s)) dic[i + 2] = (W, max(s, H - s)) sq = list(dic.values()) sq.sort(key=lambda x: x[0] * x[1]) for i in range(len(sq) - 1): print(sq[i][0] * sq[i][1], end=' ') print(sq[len(sq) - 1][0] * sq[len(sq) - 1][1]) ```
vfc_138423
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 5 6\n1 18\n2 31\n1 2\n3 4 1\n1 1\n2 1\n3 1\n0 2 5\n0 0 0", "output": "4 4 6 16\n1 1 1 1\n10\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/RECIPES
Solve the following coding problem using the programming language python: Read problems statements [Hindi] , [Vietnamese] , [Mandarin Chinese] , [Russian] and [Bengali] as well. Chef is making $N$ atomic soups numbered $1$ through $N$. Each soup is either a *base* atomic soup or a composition of other atomic soups. For each valid $i$, if soup $i$ is not a base soup, one unit of this soup is made by mixing together one unit of soup $c_{i, 1}$, one unit of soup $c_{i, 2}$, and so on to one unit of soup $c_{i, P_{i}}$. Note that these $P_{i}$ soup units are not necessarily from distinct soups and that we obtain only $1$ unit of soup by mixing $P_{i}$ units. Due to their structure, two units of the same base atomic soup always cancel out and vanish when mixed together. Therefore, we define the *base decomposition* of a soup as the set of all base atomic soups that need to be used an odd number of times when making the resulting soup (i.e. a base soup $b$ belongs to the base decomposition if we need to use an odd number of units of soup $b$ in total). The base decomposition of a sequence of atomic soups is the base decomposition of the soup created by mixing together one unit of each of these soups. You should answer $Q$ queries. In each query, you are given a sequence of Chef's soups $s_{1}, s_{2}, \dots, s_{K}$; you must decide whether it is possible to choose two disjoint subsequences (one of which may be empty) of this sequence which have the same base decomposition. Two subsequences are disjoint if there is no index $i$ such that each subsequence contains soup $s_{i}$. ------ Input ------ The first line of the input contains a single integer $N$. $N$ lines follow. For each $i$ ($1 ≤ i ≤ N$), the $i$-th of these lines contains an integer $P_{i}$; if $P_{i} \neq 0$, it is followed by a space and $P_{i}$ space-separated integers $c_{i, 1}, c_{i, 2}, \ldots, c_{i, P_{i}}$. The next line contains a single integer $Q$. The following $Q$ lines describe queries. Each of these lines contains an integer $K$ followed by a space and $K$ space-separated integers $s_{1}, s_{2}, \dots, s_{K}$. ------ Output ------ Print a single line containing a string with length $Q$. For each valid $i$, the $i$-th character of this string should be '1' if it is possible to choose required subsequences in the $i$-th query or '0' otherwise. ------ Constraints ------ $1 ≤ N, Q ≤ 2 \cdot 10^{4}$ $1 ≤ K ≤ 30$ $1 ≤ c_{i, j} < i$ for each valid $i, j$ $1 ≤ s_{i} ≤ N$ for each valid $i$ $P_{1} + P_{2} + \ldots + P_{N} ≤ 5 \cdot 10^{5}$ ------ Subtasks ------ Subtask #1 (13 points): $1 ≤ N ≤ 100$ $1 ≤ K ≤ 6$ Subtask #2 (22 points): $1 ≤ N ≤ 500$ Subtask #3 (65 points): original constraints ----- Sample Input 1 ------ 8 0 0 2 1 2 0 3 1 2 4 3 2 2 3 2 2 4 2 1 4 5 3 3 4 5 4 2 4 1 5 3 1 2 4 4 2 4 3 1 4 6 7 8 5 ----- Sample Output 1 ------ 11011 ----- explanation 1 ------ Soups $1$, $2$ and $4$ are base atomic soups. The base decompositions of the other soups are: - soup $3$: $\{1, 2\}$ - soup $5$: $\{1, 2, 4\}$ - soup $6$: $\{1, 2\}$ (two units of soup $2$ cancel out) - soup $7$: $\{2, 4\}$ - soup $8$: $\{1, 4\}$ For the first query, we can choose subsequences $[3, 4]$ and $[5]$. The base decomposition of subsequence $\{3, 4\}$ is $\{1, 2, 4\}$, which is the same as the base decomposition of soup $5$. For the last query, we can choose subsequences $[6, 8]$ and $[7]$. The base decomposition of each subsequence is $\{2, 4\}$, because two units of soup $1$ cancel out. You may notice that the chosen subsequences do not form a partition of all $K$ given soups, since soup $5$ was not used at all. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from sys import stdin def main(): N = int(stdin.readline().strip()) vectors = [0] * N d = 0 for i in range(N): recipe = list(map(int, stdin.readline().strip().split())) if recipe[0] == 0: vectors[i] = 1 << d d += 1 else: for j in recipe[1:]: vectors[i] ^= vectors[j - 1] Q = int(stdin.readline().strip()) answer = '' for _ in range(Q): query = list(map(int, stdin.readline().strip().split())) K = query[0] s = query[1:] vecs = [vectors[i - 1] for i in s] linear_dependence = False for i in range(K): for j in range(i): if vecs[i] ^ vecs[j] < vecs[i]: vecs[i] ^= vecs[j] if vecs[i] == 0: linear_dependence = True break answer += '1' if linear_dependence else '0' print(answer) main() ```
vfc_138427
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/RECIPES", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "8\n0\n0\n2 1 2\n0\n3 1 2 4\n3 2 2 3\n2 2 4\n2 1 4\n5\n3 3 4 5\n4 2 4 1 5\n3 1 2 4\n4 2 4 3 1\n4 6 7 8 5", "output": "11011", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Somnath is a Grammar Nazi. He keeps pointing out others’ grammatical mistakes. However, for a given sentence, he tries to remember all the unique words only so that he can be more efficient with his annoying habit. You wish to join his team to help him with his obsession for Queen’s Language. Given a sentence S, find the number of unique words present in it. S contains only English alphabets in lowercase and ends with a newline character (‘\n’). Input Format The first line comprises no. of test cases T. Each of the T lines that follow comprises a sentence containing one or more space-separated words. Output Format In each of the T lines, display an integer equal to the number of unique words present in the sentence. Constraints 1 ≤ T ≤ 10^5 1 ≤ |S| ≤ 1050 SAMPLE INPUT 3 perfection is achieved not when there is nothing more to add but when there is nothing left to take away you must be the change you wish to see in the world if the lessons of history teach us anything it is that nobody learns the lessons that history teaches us SAMPLE OUTPUT 14 10 14 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python #!/usr/bin/python from sys import stdin,stdout def main(): t = int(input()) for z in range(0,t): lines = stdin.readline() arr = set(lines.split()) i = 0 for letter in arr: i = i + 1 print(i) if __name__ == "__main__": main() ```
vfc_138431
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10 \nexamples examples static more syntax throws share examples java loop object how loop as can exception static string main for more grammar exception show java array writer any sa\nexamples examples static more syntax throws share examples java loop object how loop as can exception static string main for more grammar exception show java array writer any sapopulate writer object void examples somnath fish cat das dog string string java creating like array these as string throws examples creating work in declare args examples creating these object mouse a cat as cat can well perfection suvojit exception the share using array cat declare some bird more args syntax java just void just tutorial cow this including exception close suvojit through this work some fish saptasrhi show this java achieved java you suvojit string the sentence java array examples array print sentence tutorial dutta exception writer writer for through creating through the dutta examples bird in object java array because you can to can sentence can array rakshit cr\nexamples examples static more syntax throws share examples java loop object how loop as can exception static string main for more grammar exception show java array writer any sapopulate writer object void examples somnath fish cat das dog string string java creating like array these as string throws examples creating work in declare args examples creating these object mouse a cat as cat can well perfection suvojit exc\nexamples examples static more syntax throws share examples java loop object how loop as can exception static string main for more grammar exception show java array writer any sapopulate writer object void examples somnath fish cat das dog string string java creating like array these as string throws examples creating work in declare args examples creating these object mouse a cat as cat can well perfection suvojit excthe specifically java through creating like loop through creating declare well sentence susmita somnath a is public syntax well as work how some throws dog print mouse to array some in through syntax as fish as saptasrhi java some specific\nexamples examples static more syntax throws share examples java loop object how loop as can exception static string main for more grammar exception show java array writer any sapopulate writer object void examples somnath fish cat das dog string string java creating like array these as string throws examples creating work in declare args examples creating these object mouse a cat as cat can well perfection suvojit excthe specifically java through creating like loop through creating declare well sentence susmita somnath a is public sy\nexamples examples static more syntax throws share examples java loop object how loop as can exception static string main for more grammar exception show java array writer any sapopulate writer object void examples somnath fish cat das dog string \nexamples examples static more syntax throws share exam\nexamples examples static more syntax throws share examexamples show is dutta loop array the specifically examples java exception iterate and show array declare cow susmita examples loop share somnath this susmita saptasrhi because das args using fish as array each das cow for as cat this for exampl\nexamples examples static more syntax throws share examexamples show is dutta loop array the specifically examples java exception iterate and show array declare cow susmita examples loop share somnath this susmita saptasrhi because das args using fish as array each das cow for as cat this for examplthe string just using susmita for each \nexamples examples static more syntax throws share examexamples show is dutta loop array the specifically examples java exception iterate and show array declare cow susmita examples loop share somnath this susmita saptasrhi because das args using fish as array each das cow for as cat this fo", "output": "22\n61\n41\n52\n48\n28\n7\n34\n36\n34", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1725/D
Solve the following coding problem using the programming language python: Let's say Pak Chanek has an array $A$ consisting of $N$ positive integers. Pak Chanek will do a number of operations. In each operation, Pak Chanek will do the following: Choose an index $p$ ($1 \leq p \leq N$). Let $c$ be the number of operations that have been done on index $p$ before this operation. Decrease the value of $A_p$ by $2^c$. Multiply the value of $A_p$ by $2$. After each operation, all elements of $A$ must be positive integers. An array $A$ is said to be sortable if and only if Pak Chanek can do zero or more operations so that $A_1 < A_2 < A_3 < A_4 < \ldots < A_N$. Pak Chanek must find an array $A$ that is sortable with length $N$ such that $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ is the minimum possible. If there are more than one possibilities, Pak Chanek must choose the array that is lexicographically minimum among them. Pak Chanek must solve the following things: Pak Chanek must print the value of $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$ for that array. $Q$ questions will be given. For the $i$-th question, an integer $P_i$ is given. Pak Chanek must print the value of $A_{P_i}$. Help Pak Chanek solve the problem. Note: an array $B$ of size $N$ is said to be lexicographically smaller than an array $C$ that is also of size $N$ if and only if there exists an index $i$ such that $B_i < C_i$ and for each $j < i$, $B_j = C_j$. -----Input----- The first line contains two integers $N$ and $Q$ ($1 \leq N \leq 10^9$, $0 \leq Q \leq \min(N, 10^5)$) — the required length of array $A$ and the number of questions. The $i$-th of the next $Q$ lines contains a single integer $P_i$ ($1 \leq P_1 < P_2 < \ldots < P_Q \leq N$) — the index asked in the $i$-th question. -----Output----- Print $Q+1$ lines. The $1$-st line contains an integer representing $A_1 + A_2 + A_3 + A_4 + \ldots + A_N$. For each $1 \leq i \leq Q$, the $(i+1)$-th line contains an integer representing $A_{P_i}$. -----Examples----- Input 6 3 1 4 5 Output 17 1 3 4 Input 1 0 Output 1 -----Note----- In the first example, the array $A$ obtained is $[1, 2, 3, 3, 4, 4]$. We can see that the array is sortable by doing the following operations: Choose index $5$, then $A = [1, 2, 3, 3, 6, 4]$. Choose index $6$, then $A = [1, 2, 3, 3, 6, 6]$. Choose index $4$, then $A = [1, 2, 3, 4, 6, 6]$. Choose index $6$, then $A = [1, 2, 3, 4, 6, 8]$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def ev(x): k = 0 while x % 2 == 0: x //= 2 k += 1 return x + k (p, q) = [int(i) for i in input().split()] (t, s, sum) = (1, 1, 0) while True: ss = s + (t + 1) // 2 if ss > p: m = p - s + 1 sum += m * t break sum += t * ((t + 1) // 2) s = ss t += 1 mx = t - 2 * m + 1 print(sum) (mul, ded, turn) = (0, 0, 0) t -= 0 if mx == turn else 1 for i in range(q): x = int(input()) if x == 1: print(1) continue while True: if x - ded <= t: print(ev(x - ded) + mul) break ded += (t + 1) // 2 turn += 1 mul += 1 t -= 0 if mx == turn else 1 ```
vfc_138436
{ "difficulty": "very_hard", "memory_limit": "512 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1725/D", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6 3\n1\n4\n5\n", "output": "17\n1\n3\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 0\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1000000000 0\n", "output": "42163202144757\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/774/C
Solve the following coding problem using the programming language python: Stepan has the newest electronic device with a display. Different digits can be shown on it. Each digit is shown on a seven-section indicator like it is shown on the picture below. [Image] So, for example, to show the digit 3 on the display, 5 sections must be highlighted; and for the digit 6, 6 sections must be highlighted. The battery of the newest device allows to highlight at most n sections on the display. Stepan wants to know the maximum possible integer number which can be shown on the display of his newest device. Your task is to determine this number. Note that this number must not contain leading zeros. Assume that the size of the display is enough to show any integer. -----Input----- The first line contains the integer n (2 ≤ n ≤ 100 000) — the maximum number of sections which can be highlighted on the display. -----Output----- Print the maximum integer which can be shown on the display of Stepan's newest device. -----Examples----- Input 2 Output 1 Input 3 Output 7 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python sections = int(input()) ones = int(sections / 2) printSeven = False if sections % 2 != 0: ones = ones - 1 printSeven = True if printSeven: print('7', end='') print('1' * ones) ```
vfc_138440
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/774/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n", "output": "7\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/maximum-bipartite-matching/1
Solve the following coding problem using the programming language python: There are M job applicants and N jobs. Each applicant has a subset of jobs that he/she is interseted in. Each job opening can only accept one applicant and a job applicant can be appointed for only one job. Given a matrix G where G(i,j) denotes i^{th }applicant is interested in j^{th }job. Find an assignment of jobs to applicant in such that as many applicants as possible get jobs. Example 1: Input: G = {{1,1,0,1,1},{0,1,0,0,1}, {1,1,0,1,1}} Output: 3 Explanation: There is one of the possible assignment- First applicant gets the 1st job. Second applicant gets the 2nd job. Third applicant gets the 3rd job. Example 2: Input: G = {{1,1},{0,1},{0,1},{0,1}, {0,1},{1,0}} Output: 2 Explanation: There is one of the possible assignment- First applicant gets the 1st job. Second applicant gets the 2nd job. Your Task: You don't need to read to print anything. Your task is to complete the function maximumMatch() which takes matrix G as input parameter and returns the maximum number of applicants who can get the job. Expected Time Complexity: O(N^{3}) Expected Auxiliary Space: O(N) Constraints: 1 ≤ N, M ≤ 100 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def maximumMatch(self, G): #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import deque from copy import deepcopy class Solution: def BFS(self, G, parent, s, t): n = len(G) visited = [False for _ in range(n)] queue = deque() queue.append(s) visited[s] = True while queue: vertex = queue.popleft() for neighbour in range(n): if visited[neighbour] == False and G[vertex][neighbour] > 0: queue.append(neighbour) visited[neighbour] = True parent[neighbour] = vertex if neighbour == t: return True return False def augmentThePath(self, G, parent, vertex): bottleNeck = float('inf') helpVariable = vertex while parent[vertex] != None: bottleNeck = min(bottleNeck, G[parent[vertex]][vertex]) vertex = parent[vertex] vertex = helpVariable while parent[vertex] != None: G[parent[vertex]][vertex] -= bottleNeck G[vertex][parent[vertex]] += bottleNeck vertex = parent[vertex] return bottleNeck def FordFulkerson(self, M, s, t): n = len(M) maxFlow = 0 parent = [None for _ in range(n)] while self.BFS(M, parent, s, t): bottleNeck = self.augmentThePath(M, parent, t) maxFlow += bottleNeck return maxFlow def createVertices(self, Graph): n = len(Graph[0]) m = len(Graph) size = n + m + 2 G = [[0 for _ in range(n + m + 2)] for _ in range(n + m + 2)] for guy in range(m): G[size - 2][guy] = 1 for machine in range(n): if Graph[guy][machine] == 1: G[guy][m + machine] = 1 for machine in range(n): G[m + machine][size - 1] = 1 return self.FordFulkerson(G, size - 2, size - 1) def maximumMatch(self, G): return self.createVertices(G) ```
vfc_138444
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/maximum-bipartite-matching/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "G = {{1,1,0,1,1},{0,1,0,0,1},\n{1,1,0,1,1}}", "output": "3", "type": "stdin_stdout" }, { "fn_name": null, "input": "G = {{1,1},{0,1},{0,1},{0,1},\n{0,1},{1,0}}", "output": "2", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: In a mystical Land, a person's health and wealth is measured in terms of time(in seconds) left. Suppose a person there has 24x60x60 = 86400 seconds left, then he would live for another 1 day. A person dies when his time left becomes 0. Some time amount can be borrowed from other person, or time banks. Some time amount can also be lend to another person, or can be used to buy things. Our hero Deadpool, is in critical condition, has very less time left. Today's the inaugural day of a new time bank. So they are giving away free time amount worth 1000 years. Bank released N slips, A[1], A[2], .... A[N]. Each slip has a time amount(can be +ve as well as -ve). A person can pick any number of slips(even none, or all of them, or some of them) out of the N slips. But bank introduced a restriction, they announced one more number K. Restriction is that, if a person picks a slip A[i], then the next slip that he can choose to pick will be A[i+K+1]. It means there should be a difference of atleast K between the indices of slips picked. Now slip(s) should be picked in such a way that their sum results in maximum positive time amount sum possible with the given restriction. If you predict the maximum positive sum possible, then you win. Deadpool has asked for your help. Help him win the lottery, and make it quick! Input Format: First line of the test file contains single number T, the number of test cases to follow. Each test case consists of two lines. First line contains two numbers N and K , separated by a space. Second line contains the N numbers A[1], A[2] ..... A[N] separated by space. Output Format: For every test case, output in a single line the maximum positive sum possible, that is output for the case. Constraints: T ≤ 250 N ≤ 10000 -109 ≤ A[i] ≤ 109 0 ≤ K ≤ N-1 SAMPLE INPUT 2 10 1 1 2 -3 -5 4 6 -3 2 -1 2 10 2 1 2 -3 -5 4 6 -3 2 -1 2 SAMPLE OUTPUT 12 10 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n, k = list(map(int, input().split())) arr = list(map(int, input().split())) pre = [None]*n pre[0] = max(arr[0], 0) for i in range(1, n): if i <= k: pre[i] = max(pre[i - 1], arr[i]) else: pre[i] = max(pre[i - 1], arr[i] + pre[i - k - 1]) print(pre[n - 1]) ```
vfc_138454
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "30\n16 3\n-334 -500 -169 -724 -478 -358 -962 -464 -705 -145 -281 -827 -961 -491 -995 -942 \n22 2\n391 604 902 153 292 382 421 716 718 895 447 726 771 538 869 912 667 299 35 894 703 811 \n17 5\n-673 141 -253 -547 662 -37 723 -529 316 190 288 40 -264 446 -890 370 6 \n18 2\n-629 -84 756 966 -931 -944 -626 -537 118 929 833 -639 704 977 673 21 924 -270 \n22 19\n97 986 161 355 -655 31 350 -941 966 107 7 457 -753 -945 -209 -221 422 506 -413 900 762 -410 \n19 0\n-548 595 602 291 374 596 -348 -668 -281 -53 -418 -900 127 -728 -648 807 310 -813 309 \n20 0\n-600 519 -798 -224 -844 989 195 -93 523 -314 448 -458 580 798 -589 9 472 538 -38 190 \n23 0\n-815 156 -202 272 328 362 -875 869 844 -881 322 -21 557 -892 75 600 -3 -861 -401 -255 2 182 88 \n22 0\n832 -169 -721 -976 368 425 -434 441 145 -718 -139 279 -687 549 -866 193 297 286 488 -455 114 316 \n21 0\n313 -185 -912 832 313 -321 646 -481 196 129 535 173 -44 -292 -253 154 -745 -186 474 -168 787 \n23 1\n202 -477 -314 -334 -372 833 487 518 773 -763 192 102 213 -802 527 -543 23 61 3 -505 725 492 222 \n19 1\n187 -413 270 -235 711 896 285 -140 -695 19 -576 658 371 -678 -851 -18 119 800 60 \n15 1\n170 576 -43 -164 882 565 -577 625 -629 423 902 123 737 195 264 \n17 1\n30 11 411 153 -790 -188 940 -662 -900 -958 365 477 -58 303 -357 -477 113 \n16 1\n-460 -993 405 -111 835 72 823 556 626 526 337 869 896 617 717 585 \n18 17\n229 559 296 53 -584 654 -457 -532 -607 911 -67 -675 223 754 741 459 221 -626 \n20 19\n-850 279 -193 -637 -556 176 -962 881 413 855 142 611 -424 -752 -296 -40 875 818 17 112 \n24 23\n-40 685 -497 990 -353 651 -44 -335 192 264 -503 -775 292 549 561 467 129 -813 601 -215 213 824 -392 -670 \n22 21\n75 498 287 -604 -221 -706 10 489 164 -619 -591 818 750 -975 303 98 -584 -971 913 545 -546 769 \n24 23\n-289 865 -245 318 -601 132 152 -570 -901 423 -600 15 -28 -347 943 -409 49 588 608 -221 -954 146 -949 430 \n23 5\n783 226 -38 -629 -748 359 -766 -955 726 25 -1 -496 -515 342 913 -196 72 -606 -429 705 812 93 36 \n16 10\n256 -936 482 15 230 625 637 690 -662 -893 416 8 -233 -303 303 -148 \n22 5\n28 -80 858 155 -264 -676 909 -561 948 -653 220 923 -369 -259 619 3 -781 392 -313 589 938 410 \n19 5\n-959 -515 -937 58 -971 117 555 -330 -212 -82 85 -484 380 951 -115 -110 -73 977 -956 \n18 17\n-790 -363 -184 200 -885 -71 -867 -295 825 629 -598 693 80 249 -528 864 405 816 \n21 2\n-681 340 21 -721 309 -902 124 745 423 -806 318 907 481 136 -114 84 -290 996 54 -708 491 \n16 7\n958 704 -52 -479 -423 -866 498 196 -633 22 392 925 458 -807 830 -600 \n24 0\n882 315 762 336 418 828 816 449 -658 520 560 162 675 -361 398 714 -188 -638 75 521 -615 234 -905 557 \n16 5\n469 923 333 910 336 -278 -636 164 949 505 4 -623 -970 568 85 373 \n19 0\n396 249 -174 943 -941 419 805 216 -615 64 -893 509 -695 589 -172 358 268 510 -774", "output": "0\n19881\n19968\n19666\n19912\n3341650\n3745261\n3425709\n3861569\n3548984\n2657262\n2518951\n2180987\n2145430\n2381826\n9956\n9985\n9990\n9987\n9994\n39692\n57476\n76240\n38924\n29904\n39577\n355335\n38704\n29223\n29336\n39702\n128578\n100572\n48076\n28946\n31979\n38773\n104987\n1328164\n76270\n36905\n29830\n29537\n29695\n1147915\n46978\n47224\n162808\n29780\n29773\n115074\n39052\n28349\n29606\n48979\n77322\n76071\n747371\n27069\n27240\n19909\n46625\n39044\n228597\n28506\n29721\n47955\n35788\n59027\n56966\n29331\n29471\n58325\n58991\n29002\n94681\n77802\n38944\n48539\n173981\n49204\n47648\n67844\n67316\n67686\n104947\n66573\n29813\n29504\n49117\n29496\n1253932\n164504\n883508\n141426\n48680\n29503\n29603\n67241\n56403\n19909\n19954\n19878\n58501\n19860\n19842\n19950\n39280\n19322\n38939\n49417\n19900\n48899\n48130\n19839\n19646\n86819\n29401\n19661\n37629\n19552\n39446\n29701\n19886\n47664\n19900\n321436\n19956\n21723\n142083\n49265\n29789\n38952\n29532\n26185\n29409\n19909\n19634\n31808\n19911\n19967\n19897\n29705\n19969\n116918\n64580\n29706\n878873\n39693\n40885\n19718\n19931\n48024\n23279\n29538\n19690\n29701\n19864\n19803\n29416\n58996\n19925\n55330\n19902\n39366\n19960\n29922\n19695\n19906\n19843\n19739\n19894\n19966\n19804\n29957\n87932\n22039\n112510\n19697\n216072\n19729\n10367\n18234\n29263\n131010\n48573\n19939\n19844\n29633\n19857\n39388\n47530\n29520\n46201\n12782\n148336\n19911\n65801\n19783\n249384", "type": "stdin_stdout" }, { "fn_name": null, "input": "201\n30 5\n-467 -500 -724 358 464 145 827 491 942 436 604 153 382 -716 895 726 -538 912 299 -894 811 -333 664 -711 868 644 757 -859 -741 778\n741 44\n-500 -169 -724 -478 -358 -962 -464 -705 -145 -281 -827 -961 -491 -995 -942 -827 -436 -391 -604 -902 -153 -292 -382 -421 -716 -718 -895 -447 -726 -771 -538 -869 -912 -667 -299 -35 -894 -703 -811 -322 -333 -673 -664 -141 -711 -253 -868 -547 -644 -662 -757 -37 -859 -723 -741 -529 -778 -316 -35 -190 -842 -288 -106 -40 -942 -264 -648 -446 -805 -890 -729 -370 -350 -6 -101 -393 -548 -629 -623 -84 -954 -756 -840 -966 -376 -931 -308 -944 -439 -626 -323 -537 -538 -118 -82 -929 -541 -833 -115 -639 -658 -704 -930 -977 -306 -673 -386 -21 -745 -924 -72 -270 -829 -777 -573 -97 -512 -986 -290 -161 -636 -355 -767 -655 -574 -31 -52 -350 -150 -941 -724 -966 -430 -107 -191 -7 -337 -457 -287 -753 -383 -945 -909 -209 -758 -221 -588 -422 -946 -506 -30 -413 -168 -900 -591 -762 -655 -410 -359 -624 -537 -548 -483 -595 -41 -602 -350 -291 -836 -374 -20 -596 -21 -348 -199 -668 -484 -281 -734 -53 -999 -418 -938 -900 -788 -127 -467 -728 -893 -648 -483 -807 -421 -310 -617 -813 -514 -309 -616 -935 -451 -600 -249 -519 -556 -798 -303 -224 -8 -844 -609 -989 -702 -195 -485 -93 -343 -523 -587 -314 -503 -448 -200 -458 -618 -580 -796 -798 -281 -589 -798 -9 -157 -472 -622 -538 -292 -38 -179 -190 -657 -958 -191 -815 -888 -156 -511 -202 -634 -272 -55 -328 -646 -362 -886 -875 -433 -869 -142 -844 -416 -881 -998 -322 -651 -21 -699 -557 -476 -892 -389 -75 -712 -600 -510 -3 -869 -861 -688 -401 -789 -255 -423 -2 -585 -182 -285 -88 -426 -617 -757 -832 -932 -169 -154 -721 -189 -976 -329 -368 -692 -425 -555 -434 -549 -441 -512 -145 -60 -718 -753 -139 -423 -279 -996 -687 -529 -549 -437 -866 -949 -193 -195 -297 -416 -286 -105 -488 -282 -455 -734 -114 -701 -316 -671 -786 -263 -313 -355 -185 -53 -912 -808 -832 -945 -313 -756 -321 -558 -646 -982 -481 -144 -196 -222 -129 -161 -535 -450 -173 -466 -44 -659 -292 -439 -253 -24 -154 -510 -745 -649 -186 -313 -474 -22 -168 -18 -787 -905 -958 -391 -202 -625 -477 -414 -314 -824 -334 -874 -372 -159 -833 -70 -487 -297 -518 -177 -773 -270 -763 -668 -192 -985 -102 -480 -213 -627 -802 -99 -527 -625 -543 -924 -23 -972 -61 -181 -3 -432 -505 -593 -725 -31 -492 -142 -222 -286 -64 -900 -187 -360 -413 -974 -270 -170 -235 -833 -711 -760 -896 -667 -285 -550 -140 -694 -695 -624 -19 -125 -576 -694 -658 -302 -371 -466 -678 -593 -851 -484 -18 -464 -119 -152 -800 -87 -60 -926 -10 -757 -170 -315 -576 -227 -43 -758 -164 -109 -882 -86 -565 -487 -577 -474 -625 -627 -629 -928 -423 -520 -902 -962 -123 -596 -737 -261 -195 -525 -264 -260 -202 -116 -30 -326 -11 -771 -411 -547 -153 -520 -790 -924 -188 -763 -940 -851 -662 -829 -900 -713 -958 -578 -365 -7 -477 -200 -58 -439 -303 -760 -357 -324 -477 -108 -113 -887 -801 -850 -460 -428 -993 -384 -405 -540 -111 -704 -835 -356 -72 -350 -823 -485 -556 -216 -626 -357 -526 -357 -337 -271 -869 -361 -896 -22 -617 -112 -717 -696 -585 -41 -423 -129 -229 -565 -559 -932 -296 -855 -53 -962 -584 -734 -654 -972 -457 -369 -532 -963 -607 -483 -911 -635 -67 -848 -675 -938 -223 -142 -754 -511 -741 -175 -459 -825 -221 -870 -626 -934 -205 -783 -850 -398 -279 -701 -193 -734 -637 -534 -556 -993 -176 -705 -962 -548 -881 -300 -413 -641 -855 -855 -142 -462 -611 -877 -424 -678 -752 -443 -296 -673 -40 -313 -875 -72 -818 -610 -17 -932 -112 -695 -169 -831 -40 -488 -685 -90 -497 -589 -990 -145 -353 -314 -651 -740 -44 -258 -335 -759 -192 -605 -264 -181 -503 -829 -775 -608 -292 -997 -549 -556 -561 -627 -467 -541 -129 -240 -813 -174 -601 -77 -215 -683 -213 -992 -824 -601 -392 -759 -670 -428 -27 -84 -75 -786 -498 -970 -287 -847 -604 -503 -221 -663 -706 -363 -10 -171 -489 -240 -164 -542 -619 -913 -591 -704 -818 -232 -750 -205 -975 -539 -303 -422 -98 -247 -584 -648 -971 -864 -913 -75 -545 -712 \n846 77\n262 519 985 289 944 865 540 245 508 318 870 601 323 132 472 152 87 570 763 901 103 423 527 600 969 15 565 28 543 347 88 943 637 409 463 49 681 588 342 608 60 221 758 954 888 146 690 949 843 430 620 748 67 536 783 35 226 185 38 853 629 224 748 923 359 257 766 944 955 318 726 411 25 355 1 549 496 584 515 964 342 75 913 142 196 948 72 426 606 173 429 404 705 626 812 375 93 565 36 736 141 814 994 256 652 936 838 482 355 15 131 230 841 625 11 637 186 690 650 662 634 893 353 416 452 8 262 233 454 303 634 303 256 148 124 317 213 109 28 200 80 318 858 50 155 361 264 903 676 643 909 902 561 489 948 282 653 674 220 402 923 831 369 878 259 8 619 971 3 945 781 504 392 685 313 698 589 722 938 37 410 461 234 508 961 959 493 515 269 937 869 58 700 971 264 117 215 555 815 330 39 212 288 82 954 85 710 484 774 380 815 951 541 115 679 110 898 73 788 977 132 956 689 113 8 941 790 723 363 28 184 778 200 71 885 974 71 333 867 153 295 168 825 676 629 650 598 309 693 686 80 116 249 667 528 679 864 421 405 826 816 516 726 666 87 681 964 340 686 21 662 721 64 309 415 902 873 124 941 745 762 423 531 806 268 318 602 907 307 481 12 136 630 114 809 84 556 290 293 996 152 54 345 708 248 491 712 131 114 439 958 722 704 995 52 269 479 238 423 918 866 659 498 486 196 462 633 158 22 146 392 37 925 647 458 602 807 98 830 292 600 278 799 352 448 882 540 315 575 762 567 336 397 418 897 828 851 816 230 449 925 658 229 520 940 560 147 162 655 675 792 361 754 398 146 714 946 188 569 638 663 75 515 521 475 615 528 234 570 905 464 557 962 161 524 549 469 330 923 350 333 925 910 737 336 337 278 393 636 714 164 591 949 135 505 337 4 337 623 664 970 608 568 281 85 152 373 652 194 876 826 396 572 249 640 174 819 943 611 941 289 419 565 805 585 216 450 615 609 64 166 893 74 509 300 695 573 589 161 172 968 358 31 268 426 510 422 774 779 910 552 182 391 495 764 874 364 902 255 460 474 972 821 122 547 577 789 605 195 594 950 343 754 481 12 672 439 428 912 762 967 408 415 908 223 759 434 204 486 319 958 945 806 166 700 367 692 787 532 556 974 447 21 283 222 331 376 583 948 723 982 18 776 220 111 182 856 490 925 324 486 677 969 643 534 677 668 68 991 196 783 828 727 426 871 697 612 703 27 408 545 508 185 238 237 443 313 501 850 128 111 650 149 192 454 869 681 465 267 713 793 634 472 972 830 901 442 177 877 770 702 364 381 590 823 237 23 179 595 169 327 42 310 182 58 926 487 670 528 651 258 213 860 783 286 742 610 472 128 434 841 718 503 867 865 938 881 257 750 614 598 458 661 63 756 807 278 489 435 365 75 586 386 833 360 330 48 928 492 433 840 766 735 810 599 837 892 982 328 352 369 244 794 608 252 647 432 535 208 264 497 243 649 15 841 189 100 812 648 523 851 474 633 891 200 854 990 697 919 780 578 931 544 340 487 899 525 483 538 492 193 252 11 560 834 840 497 785 529 540 805 791 392 210 549 578 979 971 277 73 193 620 497 826 276 790 582 578 159 418 489 159 449 924 72 380 8 967 208 477 503 370 607 196 74 722 611 19 761 56 890 163 683 716 932 452 741 954 813 862 396 460 615 904 599 136 680 198 32 387 584 240 517 6 670 241 882 249 523 758 105 621 95 296 916 678 178 579 58 577 750 7 729 81 995 678 676 753 899 784 565 93 608 172 243 929 514 168 55 191 973 922 748 651 986 144 446 577 517 629 916 874 791 469 912 146 693 91 815 949 857 640 52 236 551 487 226 162 955 183 394 180 97 65 65 513 \n961 438\n878 611 445 -975 -750 333 214 7 896 522 810 231 -705 -321 351 208 -276 189 666 -455 614 253 -348 861 82 197 752 296 21 -947 318 -376 -859 -74 922 -643 153 747 -926 450 -961 -855 -716 561 -473 -550 181 699 643 -172 981 476 247 671 372 989 165 -658 -206 948 171 396 -20 -529 -109 -969 617 -626 168 928 118 199 -486 420 -271 415 318 331 -387 186 360 74 152 -268 885 -311 677 768 413 542 -38 -355 647 -93 987 493 501 447 -753 84 525 964 872 -656 593 -80 -411 968 -216 768 -531 -779 -259 936 -365 720 680 455 -71 559 602 905 375 885 80 797 508 340 -58 740 -474 97 335 400 955 -141 -481 315 -225 12 455 43 21 -512 -18 -717 650 -335 169 303 -979 105 661 -652 -33 987 -253 -420 -718 -63 -652 769 5 594 326 323 679 588 271 221 -183 -955 779 262 487 -33 -935 993 962 1 807 -669 671 998 -597 -838 -372 -28 -801 -490 601 197 -771 -301 721 421 610 741 812 15 -393 279 -608 822 -245 144 -339 -604 -225 724 -330 -223 130 987 805 -750 -338 135 209 -224 -737 920 293 734 56 184 -382 741 -684 -279 667 -125 -737 119 737 556 60 793 136 875 -184 719 476 -351 -290 72 189 -490 -893 63 903 -176 -695 -468 -83 515 993 -722 828 -399 -891 -943 -243 702 502 687 891 413 816 162 126 877 -260 -705 663 195 -360 588 245 425 189 63 502 -99 -226 48 570 458 456 531 819 556 -495 -591 388 -450 272 -383 775 569 -954 585 -333 -490 -750 722 611 338 258 -352 479 683 -2 422 -135 361 -194 -188 42 941 469 -380 964 61 -73 -462 -102 -154 -552 149 -244 -49 -65 -552 470 747 -869 -498 -352 -53 -522 -563 850 240 492 580 616 178 -615 -798 635 883 902 420 -22 841 888 717 698 749 389 619 3 28 589 630 864 -295 681 610 71 -459 -840 -37 -630 993 203 290 307 -151 890 -640 -566 -661 245 651 601 209 283 58 175 787 -287 -504 138 530 118 -540 459 398 98 -481 -567 596 -746 -670 476 917 760 -758 255 726 -34 -393 273 -193 -137 690 -694 -627 -989 879 149 669 -598 -436 -123 -731 -861 385 -816 704 -953 -223 792 -48 930 814 -427 -604 474 -506 -589 -809 447 -818 975 -89 66 840 676 641 -651 -187 85 250 755 128 277 424 872 -885 -646 -478 925 260 778 855 -927 134 675 334 737 974 356 80 145 -825 573 -37 905 717 539 -946 231 -839 829 -394 645 675 -72 -480 897 -608 277 134 78 169 -478 138 -426 677 724 700 862 448 684 137 -993 -944 -821 -643 -677 857 -891 623 -72 841 615 -957 700 93 -829 -227 -224 -274 -885 170 -629 -909 923 -400 193 412 767 -677 704 834 621 734 -542 -86 -621 597 -254 108 -493 366 438 -819 -290 339 808 -478 -787 74 -827 988 798 2 104 -56 -833 -761 -686 385 842 161 -343 -187 63 934 656 12 959 738 124 -7 951 -489 441 13 855 93 402 -543 266 -275 532 -469 729 892 953 -570 472 494 -440 -262 -607 360 -171 -947 -523 489 887 632 739 -522 -160 705 259 -687 42 45 388 154 833 919 738 -776 314 53 469 722 -7 260 793 -717 -376 626 334 171 -964 -866 664 0 100 -476 943 789 385 -434 -561 504 -888 157 -123 74 837 318 292 -832 461 461 -498 291 179 -317 595 936 -28 -909 -981 569 883 385 230 681 310 687 477 -764 671 115 311 -405 171 740 675 790 998 -604 -631 388 -718 259 -609 479 300 -853 -830 -806 854 -160 -54 -146 -471 559 -421 -366 685 329 -860 982 -506 979 -887 -469 540 -266 509 -317 53 -258 -843 466 -140 -937 512 551 817 292 -530 296 -389 809 744 -182 -120 292 214 -807 -705 -11 -693 203 762 -946 -48 624 954 -127 240 127 817 142 -400 -476 935 831 -537 922 29 -211 -880 293 -785 443 555 270 375 -640 40 -834 539 796 262 731 464 248 170 182 -293 -332 331 4 26 738 -623 441 -695 -659 -628 -88 -613 569 679 837 115 723 -448 -153 395 -508 -411 665 202 828 705 -23 -715 -805 478 -840 285 -968 633 348 32 910 982 306 860 527 -343 233 -171 942 -879 -512 530 -234 926 -191 188 -719 -224 -435 94 867 5 -686 540 -850 578 -677 42 811 143 16 804 368 -335 -325 23 618 -396 -86 -846 522 280 358 870 873 -413 896 450 641 -525 -824 -695 -594 67 -640 41 534 0 621 293 -717 -943 639 -925 -978 850 -444 -623 36 346 -61 238 886 299 728 -751 991 717 93 421 -867 444 -201 -942 -768 641 262 -244 -625 -584 -984 -149 -695 32 -537 363 219 -917 -918 252 -269 137 -424 -27 993 -271 893 -14 -484 495 293 798 299 -493 -549 -314 -69 -865 238 -252 -508 88 231 106 368 258 647 238 723 -706 156 -351 118 97 591 -510 651 -844 741 -578 -705 785 -624 356 227 102 -468 979 -489 490 410 89 \n950 172\n529 836 553 670 652 397 1 693 916 328 -125 -296 544 826 -758 21 108 -628 -947 280 128 -426 677 47 231 -684 -769 956 945 16 497 190 49 -886 -675 377 487 -482 0 -289 -215 310 799 -707 304 -485 -792 612 983 129 33 -864 -857 -710 708 732 -684 -701 583 692 87 810 -835 615 -677 -134 -533 -286 734 349 -984 -792 822 913 -473 160 53 822 337 6 197 236 599 898 -447 592 996 -828 -342 795 37 -767 793 -146 -924 -465 -206 -492 175 61 -618 727 -896 841 -90 915 523 344 37 -893 -971 777 200 285 -118 -6 8 225 980 -470 -747 -936 -700 364 40 -504 766 670 -506 256 266 -678 674 191 -832 996 290 -707 246 -402 426 -906 350 279 -822 301 -676 357 38 144 180 643 61 -939 290 -979 419 284 977 -613 371 339 621 -34 358 469 -504 202 238 65 -481 23 -771 382 -816 -319 -513 851 -283 38 -184 -501 -733 -714 595 541 377 565 138 967 -787 -222 -441 -804 368 -872 974 -137 241 18 974 846 524 -581 -240 296 27 18 641 191 259 217 -943 64 157 666 46 789 -145 152 -326 -184 350 346 970 -795 323 856 210 692 290 852 315 361 -984 534 82 -936 790 182 -116 425 610 982 -193 -754 895 638 420 883 -696 390 -189 183 -129 -679 600 145 -151 -963 -907 476 -211 264 531 698 155 -257 464 510 65 165 540 -42 -194 270 200 106 -696 611 415 -175 -448 -79 321 597 509 -71 -122 -997 899 320 984 -915 485 199 -208 169 -879 -207 -706 75 124 -774 128 145 -714 -168 -307 504 697 955 -343 -97 736 -633 930 -904 488 754 176 415 231 975 -514 657 438 447 618 631 219 -990 -672 302 928 898 945 222 794 -844 547 -485 723 -653 130 -466 512 318 142 506 -684 270 250 311 -195 520 -183 -892 784 187 -343 859 16 832 -683 15 -516 -39 205 -146 675 387 30 -735 373 73 786 785 -345 -85 935 883 -96 85 521 982 -688 236 -65 198 386 976 121 245 -564 572 370 -654 -80 391 510 -867 675 499 790 256 703 967 542 566 186 198 364 -665 340 -814 12 338 525 -249 -79 838 421 -991 -839 565 473 970 -53 508 429 -689 771 259 -572 -966 -170 199 -850 -936 406 -313 371 73 -173 102 -417 153 595 213 -370 305 -833 -852 519 793 465 444 271 -99 596 552 753 -590 357 809 -686 -259 -435 -101 869 -731 74 -843 -316 511 722 57 -174 -183 295 983 503 300 -480 505 -858 557 -120 -656 332 182 -320 74 -94 -364 714 390 -255 467 -231 -880 -128 -720 91 -587 126 -159 220 314 147 134 -751 -478 -589 -976 -90 -372 301 -844 -539 827 186 -827 -623 514 644 -669 -676 952 137 988 288 -74 915 656 -616 129 984 49 26 202 416 -552 755 -844 -443 999 -121 413 -793 60 74 501 208 26 -291 929 -977 -8 922 137 803 -912 -253 299 902 -369 -729 -438 -226 134 -348 503 -518 437 179 -144 961 576 645 -972 196 535 229 532 -158 620 724 526 983 574 -588 -664 -877 -942 623 625 -842 149 590 328 804 909 779 83 532 99 47 -290 -959 -139 580 778 -456 444 125 698 180 64 -472 593 5 333 587 638 -64 399 508 -438 638 -59 744 -769 518 -558 -61 190 -226 4 -768 347 566 665 0 173 668 -579 728 158 267 734 169 570 235 -711 750 545 754 217 -942 273 579 -388 886 809 -321 881 20 -454 984 999 829 457 -365 -49 592 119 -313 117 160 153 562 854 134 -50 945 747 -61 259 -885 718 -268 50 799 -735 792 -182 -316 -758 399 357 271 780 406 -686 -252 35 -428 960 -949 385 157 -841 593 -33 -768 -935 96 -561 -584 499 849 606 287 -769 588 83 158 -938 920 758 -23 298 470 -196 -988 946 -275 519 197 -654 -58 791 837 232 -736 958 -85 -284 727 426 536 -370 348 199 573 351 -617 571 529 44 467 528 -634 757 -581 941 -749 299 -99 245 -201 -83 -735 895 -170 717 -752 773 -255 -70 30 -765 -980 -358 8 667 928 99 870 412 64 84 911 -868 826 366 -988 865 947 659 771 110 666 670 -925 -874 -43 -536 -16 934 61 -815 -582 -82 900 337 -300 864 695 629 -788 744 75 -490 -819 -195 807 -374 156 432 222 553 -955 -625 -128 -527 -490 54 192 -618 56 -282 439 493 -269 33 592 26 80 961 907 245 121 782 491 615 -143 771 935 412 467 952 828 -429 -699 -151 -41 383 -144 -77 -202 -202 -249 575 -638 395 -205 123 41 -530 820 43 674 100 -775 -430 622 890 -452 -782 188 960 923 659 943 -584 -668 198 479 813 447 271 344 448 -353 -888 825 -190 46 -775 78 103 377 48 494 729 38 672 862 -667 -465 259 389 419 140 632 -822 161 141 432 361 313 645 -810 970 -596 -514 -210 552 -471 830 261 151 83 758 295 14 284 \n712 289\n575 525 167 783 793 -679 -274 629 460 511 824 16 -801 -309 67 225 -140 655 449 760 -836 -270 -725 809 -631 807 -301 -969 -164 -124 770 -997 511 265 379 28 432 -160 666 -48 -404 565 133 -241 147 954 -454 -721 688 116 -180 -537 -389 4 384 987 52 528 -472 -958 983 823 -96 -901 -520 472 -932 -824 57 732 167 -690 -926 -479 -703 -833 910 27 527 393 863 -565 -251 -81 -103 -238 464 572 922 867 -298 234 19 62 -811 405 651 898 -842 84 500 -155 -650 939 17 948 -495 -648 171 -695 -637 800 -134 177 -641 496 537 851 -565 -445 194 178 928 149 312 199 -692 795 -567 376 -742 103 -47 -965 -137 331 -53 -52 156 695 929 -278 -752 -958 54 208 171 503 -174 107 -599 261 435 732 -667 -367 54 -212 -129 -977 12 889 -647 -489 836 387 503 -482 27 952 -646 -597 32 945 224 -195 -632 -602 -282 -437 -35 654 399 132 293 649 204 -705 -750 228 668 -774 -651 37 189 -74 850 260 233 -161 546 263 -846 594 945 246 -254 760 419 -616 335 18 370 525 644 482 105 -201 306 593 -591 223 -700 322 762 -268 -152 -235 762 272 -200 519 370 -145 714 -79 282 119 193 -516 -888 425 769 814 970 598 398 -888 53 741 662 81 618 94 538 -445 243 718 -937 499 -554 31 429 -556 875 910 -132 -522 277 -348 -777 -175 -125 821 640 -81 547 907 110 -77 403 -540 -574 369 -485 48 -573 -816 373 -604 791 10 -364 -994 -23 657 285 23 828 549 -9 867 590 -369 604 212 -693 620 -662 -100 842 -89 642 486 964 -271 -466 -445 349 -954 281 757 114 -832 943 -232 -239 -589 209 795 -912 -935 479 -230 601 -43 412 623 983 686 257 439 -276 652 -35 316 367 221 520 565 -258 -531 782 -162 923 342 196 969 715 736 174 -154 882 769 301 -604 161 595 485 229 -718 -79 -662 574 475 343 -532 684 472 -266 -151 -233 -76 -604 -468 -417 -616 66 -873 510 941 -866 20 948 81 -825 -173 309 238 -739 448 54 490 -56 589 -536 -888 585 167 560 581 -606 -784 960 732 -843 923 740 443 -919 112 845 -556 -364 -508 -338 5 193 943 514 416 -339 236 -274 740 183 -828 -437 577 -722 659 368 848 290 458 106 -1 770 -507 730 -803 -194 -664 -48 280 -764 13 -170 -766 -416 377 -537 432 105 937 914 290 182 93 -846 -456 -714 41 -74 -344 749 -597 647 -43 592 269 139 481 -268 666 -806 -290 684 -759 606 93 583 557 12 869 -903 791 149 -118 388 711 -874 125 370 -727 336 221 -799 241 -712 -635 -830 -336 -32 339 670 868 728 537 124 -354 494 -865 700 -714 794 -463 -748 -351 3 280 -290 858 553 -262 649 55 -889 -552 640 46 44 -936 -154 756 -391 931 79 176 -269 429 2 -327 -760 42 393 928 284 -798 201 88 652 -750 -455 630 -531 165 -127 -440 389 -488 -320 -821 -3 722 854 -425 818 -120 488 -341 500 -222 552 516 486 737 -901 967 265 843 -508 -858 121 586 371 -972 -73 281 -996 451 804 -333 504 -453 333 -921 370 -88 297 923 343 731 -648 253 693 -451 599 -212 849 912 209 -180 535 365 817 763 606 443 -593 -442 833 502 -559 7 -543 751 -395 -541 220 -944 -658 -738 638 635 782 80 425 204 -412 45 -244 -994 -132 -316 -761 930 -532 -873 880 987 -589 560 -597 -163 621 -815 -334 137 -164 -511 -846 737 655 351 52 420 360 -273 133 -301 -387 500 709 61 -970 64 50 -791 443 -821 -298 933 709 -468 864 849 646 444 -459 885 768 606 -535 -364 351 -625 346 838 221 -624 -815 \n952 0\n70 -919 487 345 -44 162 115 502 -804 733 -811 -224 983 845 826 -897 371 662 584 418 719 218 959 -103 498 -345 430 -25 -821 235 393 -348 -692 -800 431 -695 753 192 819 71 561 52 523 956 61 523 828 953 682 -157 -292 776 842 660 638 620 -929 141 -834 270 0 364 99 -665 29 -254 -319 -110 417 125 -410 48 -969 -599 -155 -537 206 414 -293 587 -85 234 -15 384 648 555 781 427 -859 -799 701 -404 215 650 -83 -296 -778 -241 6 -670 -205 78 -984 -139 -973 815 41 63 66 583 565 982 235 812 -802 513 -497 -215 907 -418 424 183 -328 483 537 -349 883 -847 -786 -409 500 839 668 485 -22 -735 -827 61 135 -479 906 -245 836 -939 101 -195 84 355 133 -800 -688 -875 304 843 -857 -875 190 798 -346 -80 981 -719 -425 -770 510 232 618 -237 -709 544 541 344 141 -696 -683 640 -570 -535 -445 414 917 318 413 461 635 645 818 333 246 -788 8 835 675 50 -254 -390 979 754 -22 -267 410 -552 977 370 267 -617 65 655 -914 137 549 882 592 -930 -520 -688 -634 603 122 760 -930 423 -486 638 565 -362 -378 851 315 168 98 -531 339 -830 781 118 -700 606 -790 -399 -485 -455 -444 -800 -518 947 -299 -684 132 888 -297 140 545 727 82 99 730 304 805 -82 767 -676 -556 116 286 -433 -672 298 937 809 586 -441 -323 491 99 823 -671 993 -653 266 113 -745 488 -377 83 -805 -646 -441 98 66 -391 465 -806 -396 -262 726 -893 -569 -218 472 161 -825 494 195 549 -701 -561 -992 948 -613 639 561 410 -576 222 224 -849 -912 714 808 981 -298 145 -466 448 -531 -695 -450 951 598 675 -584 -100 567 9 -231 -898 -387 262 -729 324 -966 -927 849 -542 396 -411 48 -833 -688 -668 -425 844 960 922 700 630 430 -720 527 405 -425 -612 -192 938 866 171 964 26 -935 -251 76 159 596 807 27 805 837 -583 -137 341 621 278 434 -229 -930 -730 632 670 -63 -815 -509 741 408 748 778 171 401 -172 731 670 184 727 688 -197 -895 -951 373 -719 -915 883 859 -596 -583 -159 61 603 938 193 876 738 -780 78 868 -673 -757 419 -901 216 239 125 178 716 -287 738 605 -799 -407 413 -785 -348 799 606 -735 -671 -599 -847 914 507 327 -320 898 386 552 -524 -693 -688 -296 -346 737 568 825 221 643 -670 -546 252 20 476 525 99 774 677 -736 -896 -132 -788 4 -727 -519 174 361 966 313 -780 -728 713 223 731 231 632 382 644 457 -268 -773 419 -883 782 436 52 24 296 -773 305 358 281 570 253 359 -797 718 381 -152 371 -586 242 509 -662 -242 592 620 -229 -781 706 350 -458 905 -468 601 294 45 -39 -600 -444 525 -217 449 674 185 58 230 211 270 -591 661 696 -100 171 248 698 -758 145 438 473 493 -404 32 904 -221 -168 620 838 119 566 -262 831 694 -11 -642 834 -730 41 411 737 -15 117 999 -643 -782 887 912 -837 -91 718 -277 852 -230 1 -487 29 -987 -327 -477 846 82 -839 169 362 560 905 720 441 -339 124 5 989 -482 653 430 -606 787 327 622 407 714 949 810 -935 -785 -913 -476 177 922 529 627 -900 975 -757 96 92 251 -730 547 -255 -535 146 36 505 -278 281 299 -592 808 41 -576 -657 -946 -632 627 -441 637 -637 -750 540 -827 -46 838 898 221 -293 -206 693 -816 -238 675 421 683 99 609 -668 -395 -928 332 458 -463 431 360 449 -260 173 706 -474 346 820 -69 -927 -884 -767 30 191 -93 809 -40 222 150 262 969 1 305 -287 979 478 209 906 643 442 -983 817 -709 497 742 367 103 755 856 262 -650 65 127 -427 276 675 -781 -815 760 581 -533 -784 444 -374 535 935 -786 -320 944 -912 496 706 -216 133 976 665 -98 619 24 -850 495 -75 787 -762 508 682 495 -935 -559 138 373 60 -93 -406 268 -65 127 114 -750 728 977 25 -465 953 -626 165 127 431 183 723 -63 249 440 -291 -698 978 825 269 223 402 -82 55 -807 330 -111 344 689 -756 217 48 280 88 -67 -173 48 -576 598 616 980 661 -933 85 -891 -288 786 559 910 290 264 74 148 892 158 159 -839 448 250 -196 108 -437 323 41 -630 -400 -54 204 -124 -581 827 -502 38 834 205 732 636 -917 477 910 408 -889 -391 835 -39 -69 444 195 395 316 -22 -948 -772 790 47 86 906 814 467 -511 -653 826 929 527 -886 -47 470 -605 971 242 842 225 -718 351 857 975 351 -750 747 -290 -717 760 -92 199 -849 -343 444 486 364 332 -145 709 -747 -319 -136 244 490 -546 48 -962 -719 -982 287 -766 290 636 995 -463 620 133 955 421 501 -916 -738 -397 -588 -470 115 465 -874 337 -848 958 -671 682 65 820 204 197 643 978 624 473 678 -719 188 321 223 186 766 -268 876 946 -753 838 322 \n911 0\n387 -237 578 864 694 365 184 106 0 389 411 807 227 943 112 -677 206 435 959 -811 -90 597 -107 415 94 -355 -934 611 -403 200 -660 -723 -32 -787 -739 137 463 -801 913 -314 -998 598 -790 374 448 -184 926 235 977 205 920 -458 598 808 -66 -505 290 440 -402 -543 226 -57 646 668 386 -649 813 358 437 875 876 429 10 784 435 -840 529 633 -637 -445 994 734 275 925 -855 378 433 725 125 189 935 -719 -614 -313 26 -727 466 965 473 -750 -953 -509 600 -611 -763 568 -960 373 -360 385 -485 -946 -696 -894 -119 -627 461 -652 90 -965 284 953 110 497 112 256 -231 501 438 265 -469 386 802 471 925 -708 137 728 -831 -293 140 688 -559 530 676 638 860 -60 328 53 139 728 -304 396 -813 -391 -646 559 773 207 552 460 171 -720 88 -375 -612 649 628 -583 127 0 990 638 793 373 908 -300 827 -872 289 -693 -999 366 642 567 -854 992 -226 -45 -548 444 975 -847 98 594 -67 -991 268 512 -812 677 617 47 340 -484 -814 -500 682 -370 498 864 23 764 467 919 297 665 -888 -813 -244 850 605 -428 420 32 387 464 380 -702 -653 -227 954 -866 147 -137 312 320 555 86 -741 648 -667 -146 594 75 729 508 494 -506 -955 -444 778 31 303 -528 589 849 -788 400 514 44 -375 -106 -397 -159 415 -822 873 396 105 -387 -141 -388 277 752 682 -585 584 -868 999 522 712 -631 454 -490 458 -727 964 -905 207 -396 -341 -634 426 611 -869 411 804 503 608 40 937 -347 -91 160 425 330 888 638 984 655 502 761 -965 -501 -815 53 431 89 944 264 -627 755 -885 238 415 -56 19 -862 -779 731 251 -498 138 991 413 -451 286 142 355 -658 961 -374 -538 -656 373 31 -253 623 36 366 -546 303 -952 933 -482 -242 869 136 805 672 955 210 388 -868 413 726 85 829 188 -838 -915 -222 -468 143 28 -790 741 -347 81 489 -403 390 168 317 167 538 925 182 628 396 -341 -546 -27 724 986 -397 -616 -344 -163 15 843 217 17 -57 -536 700 274 -828 -958 427 921 89 -43 146 -828 218 943 27 -85 672 685 -66 354 643 150 -209 398 182 -685 -253 -621 111 -43 623 723 203 -117 469 -966 584 65 630 87 -945 621 -465 -158 766 -496 703 683 -714 -415 924 725 667 249 -218 -358 469 -475 246 517 71 501 -625 947 388 -243 184 -639 260 253 237 971 497 184 99 940 -106 -498 790 125 995 -578 -201 -413 546 478 918 -684 -356 458 730 826 -766 544 -102 -288 421 -635 199 -213 135 -562 -302 115 -263 -92 -881 -40 301 -702 896 901 -979 14 -673 -66 -985 764 -629 111 322 187 -497 -372 -613 348 550 -659 29 324 -321 -225 -409 -881 -107 -913 685 -393 794 -8 727 707 942 -650 819 483 573 -644 -375 -491 -752 224 463 -901 955 -596 251 10 153 891 -252 -726 -134 130 -667 17 11 908 -50 -215 670 711 680 569 535 92 49 -594 444 -259 -956 891 605 -757 28 920 -129 -89 -864 -472 408 663 -818 177 -678 464 -803 -626 991 -492 -30 375 493 162 537 -888 363 636 -519 106 -750 640 353 45 126 296 880 -484 194 -59 -556 296 729 42 -536 -94 306 379 635 516 173 -978 -681 232 632 531 361 -953 35 -537 533 396 -35 434 804 952 -331 808 731 -146 942 330 47 426 614 -705 365 44 57 -716 -131 -344 535 988 140 834 765 833 -528 363 5 131 705 918 -996 -833 703 460 690 646 445 145 13 -110 906 956 -479 254 113 -443 515 90 -569 148 204 836 230 -309 -30 932 102 -406 -579 210 -37 -818 712 -718 289 33 -989 544 503 -569 968 224 388 -296 586 832 -276 91 721 -109 383 587 -924 914 855 -706 643 612 692 -218 748 879 448 87 -879 583 187 288 395 320 767 354 446 879 -293 -309 -585 271 127 941 -793 157 -156 -466 288 764 -72 920 -202 -506 361 -784 585 392 -938 -101 -809 -774 -867 -456 -228 -709 -720 125 -7 -900 878 403 739 19 393 792 -237 539 -552 -442 -807 780 -783 -463 925 397 485 7 544 624 892 85 431 -786 491 617 889 -296 223 -48 291 261 941 443 -696 373 -650 828 -941 942 -388 -788 73 737 814 0 -411 917 128 -639 -699 -596 -76 -413 -591 964 298 540 464 815 989 749 -91 252 -740 835 489 -548 -858 81 407 670 863 463 598 331 -300 -41 644 -82 -667 816 -42 413 108 847 452 571 377 535 587 -84 -883 -932 582 -616 843 909 765 72 58 272 757 107 -257 971 -743 -802 298 252 457 293 -628 291 107 -332 292 227 91 183 270 -604 -114 -374 152 915 \n888 0\n177 -968 377 20 162 745 -432 -494 -94 -538 -505 -251 -847 479 145 -600 797 925 -199 -656 992 -474 -79 973 -64 67 826 675 734 -893 -940 -118 376 453 565 670 880 959 977 -274 781 987 568 714 -705 130 -614 139 762 -854 828 224 114 -960 -245 -643 -326 -544 970 -360 -898 584 -558 -130 -803 785 -651 -980 908 -660 243 65 474 -570 352 644 -72 694 709 826 204 789 778 571 104 -597 716 -28 930 -787 -114 -568 220 323 -778 698 900 -532 962 -596 541 -425 415 -524 -93 -569 -897 634 725 688 557 491 -988 -260 570 233 452 921 636 745 523 -342 -724 -851 -667 357 150 149 491 -414 210 -553 764 -213 524 154 940 -184 -628 963 287 -786 -438 120 897 -946 570 435 797 -317 230 -952 -297 -528 183 -913 -824 550 148 124 318 768 187 728 335 -600 754 75 937 461 47 -455 -838 811 16 312 -331 -608 69 -16 859 551 872 963 -901 889 188 539 -657 615 859 -645 -671 81 606 -386 240 -778 -673 -792 387 602 116 622 2 -899 -804 -283 -538 156 -200 -432 -47 9 556 -241 293 513 121 -896 -288 -415 -755 -658 525 689 794 944 775 324 466 959 443 654 -339 57 323 338 697 -402 687 120 949 523 848 -691 658 98 355 -409 448 304 916 198 157 -418 -704 -545 -695 -433 618 429 -932 546 -943 817 906 -39 730 337 -975 116 257 -643 450 978 -134 747 400 463 814 968 17 932 894 -292 536 -102 -417 752 -638 966 603 437 487 -209 273 372 -91 -392 -462 -415 535 25 -184 -22 -994 -404 -929 947 -928 415 15 662 -58 -331 -188 -946 980 500 487 261 -798 -573 409 308 467 -450 736 54 85 628 -215 244 -655 -881 948 631 -178 489 338 674 -465 650 -989 -883 -421 -437 384 22 193 22 122 179 271 -904 100 83 289 -391 -20 375 392 108 -998 -113 1 -516 -718 536 523 73 615 928 -619 248 544 104 337 -34 -217 -235 32 691 -146 -223 233 -990 124 489 984 535 -662 535 437 -575 -970 -460 -316 -147 -509 -112 934 381 634 862 919 370 -944 716 422 -826 39 214 432 684 535 -963 12 711 778 334 40 538 349 350 795 -621 675 -807 265 -373 185 655 394 716 651 242 971 95 301 727 140 830 -51 672 17 23 -578 -886 321 -100 509 -578 -953 368 617 253 586 -526 -273 825 895 946 531 -310 -808 -70 304 -454 -1 -119 -344 993 340 517 372 -706 955 -654 18 96 951 804 381 798 444 -914 -154 59 -386 115 540 339 566 931 713 -604 -158 -748 83 498 -153 522 184 -755 253 -903 434 331 870 64 680 778 382 87 -842 953 312 215 729 -201 84 667 -637 484 -326 -311 445 -681 -350 972 859 -756 649 -233 549 -404 495 -925 -125 644 699 198 234 34 -407 597 -189 -851 -973 855 797 725 486 6 -339 315 -71 -454 430 605 903 -584 888 534 867 331 -320 412 530 902 -878 355 -297 -78 -810 586 -504 -598 637 452 -995 875 894 833 250 -644 806 507 82 -808 -381 753 -418 -271 -43 -679 -798 744 -223 -939 975 234 812 98 -369 -882 -79 -769 467 739 714 333 -795 393 940 572 416 942 583 -345 -486 742 -464 -652 181 874 -347 959 -818 -552 604 690 293 9 895 352 -1 634 -865 -304 240 -51 637 685 -708 915 472 374 -406 643 61 -271 331 -470 465 -214 -330 616 -904 527 -920 683 727 824 332 859 479 445 667 740 145 -526 917 -415 700 852 -150 560 945 824 -262 -107 16 -804 -513 -594 247 735 848 -568 -970 149 711 218 934 581 -92 -873 997 -394 -686 -994 741 923 -444 -629 -353 258 -921 601 127 -352 639 -78 -144 616 313 -98 827 824 872 189 -418 443 183 852 955 -50 -422 450 336 526 298 570 -863 -295 -380 807 659 -16 206 -157 -474 241 577 917 -685 763 858 812 371 -544 688 316 271 945 -480 898 -669 773 785 -678 -696 89 -56 727 -567 898 669 748 67 781 -804 732 -987 688 501 367 568 150 -196 -722 129 -807 666 -639 865 -269 -58 -282 804 608 -797 190 -429 947 -431 406 595 69 639 -564 640 665 667 -214 888 -278 218 -788 336 600 -224 659 -732 -605 -325 533 992 185 -830 -854 -472 794 923 -72 504 -581 -279 865 237 -991 235 56 290 860 827 107 948 908 848 -692 -613 249 452 375 -733 -619 266 -918 756 -844 251 541 402 -956 777 494 272 -317 304 -46 236 536 552 -103 849 943 237 -532 84 -161 735 904 -480 154 778 -703 227 -376 775 634 -414 14 465 656 \n705 0\n-100 825 -8 -933 -942 595 208 880 657 998 737 -765 337 928 760 369 -469 0 934 792 985 250 -625 533 20 990 906 -605 -312 -697 661 877 84 -450 780 -607 -13 855 292 914 -456 902 606 335 154 -852 -911 956 -881 449 145 -861 800 762 743 750 -847 662 805 -50 504 322 102 -31 -915 581 -132 495 779 172 556 393 -655 743 -207 774 -586 -809 -490 -916 364 -508 46 -847 734 -828 -505 659 -234 927 787 -155 744 -100 -674 -893 218 368 -463 948 -105 -18 407 -293 -822 313 -722 -610 -442 984 383 402 430 -449 463 526 380 -343 45 662 475 -538 -692 -410 -32 871 689 809 0 -277 861 -702 702 714 173 -902 -675 -324 -649 -59 449 176 -96 948 -47 694 -674 -291 105 -587 813 -774 485 398 -745 686 -750 -395 380 811 348 -388 -959 -573 203 498 726 964 88 568 636 418 647 569 -516 -12 32 53 274 453 -500 -224 408 627 21 491 249 7 436 49 -522 705 809 -699 611 298 -86 -925 -627 304 244 294 713 -134 532 731 612 129 279 -413 4 404 704 535 582 237 764 953 660 710 -705 56 811 525 700 60 451 228 681 0 515 -361 247 525 -762 39 145 -311 807 220 142 -582 225 689 770 879 -400 5 -707 73 587 -586 -93 -560 95 846 567 702 -799 -331 3 276 -950 -728 49 -973 -46 278 -445 644 837 -587 285 -217 682 930 -372 -72 845 946 -529 -450 -484 -739 -449 18 535 -164 265 473 589 -191 148 -226 572 843 523 735 -749 217 -8 914 590 152 522 -125 502 209 797 243 -285 -460 759 372 425 -425 75 -341 210 591 266 605 -607 -777 597 169 174 300 852 217 368 -2 26 154 -570 218 287 194 -894 -150 -717 -902 168 -795 539 -439 633 -517 589 -985 -816 624 498 947 -556 208 445 114 -931 306 -140 517 -550 -464 612 -546 -898 937 -395 232 752 295 -420 251 862 -352 399 -708 -413 269 527 -94 -433 -374 898 -730 452 684 172 -843 -635 -917 108 579 559 -52 421 428 77 382 278 896 54 -806 -347 -265 -352 -146 250 778 756 323 735 -660 -222 801 -393 -802 999 -789 -410 366 158 878 859 -961 43 60 797 -447 -763 -704 -985 992 927 458 -17 -609 -701 345 621 -401 965 -399 519 -524 -29 -554 687 -395 -982 28 -640 234 -829 -475 -577 -377 35 938 700 172 -925 975 715 178 580 -411 870 562 893 -661 654 249 -35 -903 494 -981 552 823 -172 -358 104 -216 188 687 287 454 -134 -386 181 750 939 553 985 -115 284 -726 907 -210 195 -20 65 799 -647 -539 267 -325 428 -103 567 258 -857 -922 381 89 -73 46 -324 103 -714 -700 -747 942 473 -856 913 893 356 826 -886 477 -894 -31 -896 470 975 942 119 -536 -474 651 304 819 -829 935 286 -231 -620 -782 -348 -164 -190 879 -613 -812 646 -800 -596 764 -747 520 644 -294 -25 955 -986 -610 -702 -442 -198 -560 -862 232 -77 152 632 397 -834 611 -78 215 152 695 513 868 -577 -807 114 418 -307 32 658 695 158 -285 -27 -841 855 467 973 -943 960 -734 -746 -606 813 451 354 389 -961 -348 544 585 -143 903 787 -994 -521 -991 -990 892 165 -81 136 927 -786 992 653 584 -799 674 -547 -430 709 -849 662 -149 -361 595 4 -142 -219 -642 265 -213 113 612 -197 -201 -708 44 -465 -792 674 752 614 105 -274 -577 -110 -696 571 -14 336 806 438 241 224 86 111 -312 205 -504 544 845 338 802 702 799 613 -818 -554 799 115 301 -954 196 -906 -36 749 -583 917 609 770 -119 868 823 218 702 -434 23 -681 482 197 \n976 0\n721 158 -241 208 239 287 757 20 -324 935 132 452 277 717 -446 376 956 -634 -517 68 -613 -773 56 617 -505 -337 211 490 -998 834 -373 136 453 -700 840 135 595 -748 196 903 -897 -516 93 195 532 467 49 -165 -717 -43 -427 -736 -698 -841 427 709 -371 -169 -555 -95 374 -711 203 718 524 439 614 672 330 310 651 -411 305 222 -957 564 454 287 147 828 314 200 89 125 -243 106 -893 465 -809 534 -851 60 738 -377 -81 837 103 959 659 -289 -852 645 993 104 -964 886 300 278 931 559 789 -403 106 883 -22 -900 -615 -968 -446 640 -122 456 97 -763 937 -409 478 -958 508 -997 -224 308 186 578 638 -695 603 419 -82 370 -467 -357 942 780 -302 20 -434 339 -30 -676 -535 903 766 575 215 -963 667 -69 555 695 -677 136 -404 -201 -507 852 -226 -975 -404 421 344 22 183 601 -886 -535 564 153 77 340 321 -628 -919 471 350 380 205 268 -704 471 -782 514 394 344 -447 286 607 756 941 -424 -634 805 581 36 -118 593 53 322 -334 -908 -160 415 -238 610 742 249 -560 -742 681 -671 -281 575 -553 30 825 -205 -449 -573 -126 264 -888 603 170 633 -833 -595 -856 -487 27 183 -275 -828 434 -458 -615 485 300 756 -238 -918 -949 546 709 259 -339 708 60 -224 891 -845 -857 202 18 454 277 -123 60 -268 438 586 -473 773 828 73 875 -519 436 -38 -970 593 839 778 856 119 916 21 533 -163 -498 -216 868 343 975 -777 203 307 140 802 -607 237 215 579 206 900 655 -188 -468 -493 299 899 815 -814 -204 580 -938 534 214 204 -373 858 691 -917 628 -153 -504 813 -628 106 254 887 897 536 226 0 426 -453 198 -563 419 124 422 854 979 21 -787 -195 -580 13 -836 536 717 412 808 911 -35 -981 853 519 -395 409 -268 673 274 -348 826 539 182 7 120 -976 18 -612 -636 -766 990 -733 -662 647 548 -702 556 897 340 -54 935 -935 -801 682 580 -717 226 -930 444 -608 -930 10 -284 963 905 450 861 -355 168 934 -461 188 -993 319 53 -273 228 -56 841 -16 -867 -866 474 -804 -791 -192 327 -385 225 996 200 524 442 168 722 -729 643 822 -86 -474 694 -521 -194 -982 -514 -65 798 864 388 219 0 4 769 -847 -977 22 -252 -600 117 579 -574 -783 31 -565 1 -160 -411 371 364 316 234 -495 -731 -885 354 934 468 109 587 -524 642 -184 -730 589 437 -845 146 405 513 145 895 505 -379 620 353 332 719 -633 703 579 349 434 -969 -193 335 -691 -773 907 380 666 -259 509 -528 325 -344 652 114 92 999 458 820 147 -683 -989 127 449 -431 504 -252 -156 870 -352 796 -370 499 728 -946 -681 899 -222 395 177 -38 -692 429 868 -537 -152 653 669 -471 996 -39 -310 891 6 386 368 912 145 -713 679 -801 914 523 164 -185 -645 84 289 636 974 -578 856 228 327 113 189 -390 -968 600 -343 882 -755 -881 -491 -310 380 876 -784 828 935 525 -236 231 802 194 470 306 566 -422 -26 897 -946 -536 -609 -54 57 197 -278 61 831 274 426 401 -551 -978 625 -349 552 934 562 291 707 -264 778 -816 935 391 330 -686 573 15 789 -585 773 566 187 -355 -599 -215 513 168 618 219 918 578 657 -43 336 -30 113 279 109 101 -372 -658 -338 293 849 780 -167 -69 290 -767 -857 -148 236 -578 727 -587 -362 -553 885 102 -523 -523 668 583 -120 939 -560 -299 -503 -15 521 139 530 748 98 780 232 -176 21 -584 259 734 894 419 -969 334 -747 -590 67 -211 -2 480 -193 195 907 735 -444 146 385 411 314 -863 974 -204 94 -261 -396 -319 -621 779 549 -974 -874 -589 644 149 219 513 -617 53 -121 -339 -625 -692 356 -858 -483 -203 445 -528 284 543 754 390 332 -409 126 5 879 262 703 -638 -790 599 446 619 771 938 922 -876 856 815 13 -707 360 -356 -125 752 629 -538 860 -566 344 -717 -648 316 236 784 -76 -708 116 111 -782 -184 -168 435 -367 -728 556 2 326 -333 832 332 -613 930 -201 631 226 -269 191 908 -40 355 270 -879 -203 -745 -549 979 7 -411 289 524 10 -233 723 611 413 -741 894 173 296 414 834 213 179 -544 -524 597 -541 -882 403 633 185 375 916 -516 -244 629 -447 257 -368 841 -200 -236 692 -449 880 -102 745 560 65 204 -383 30 -229 -376 -582 -166 -319 951 261 -750 112 881 -415 -258 220 573 977 841 27 34 453 806 32 367 746 185 -141 804 906 243 965 926 219 942 769 -199 -78 -330 964 772 -803 577 -551 -205 -931 -716 269 -840 228 796 -696 575 712 -266 -586 957 247 335 468 925 56 693 -875 -324 -820 292 -590 -601 -540 422 682 220 -358 -755 -334 772 84 -846 303 959 -972 134 317 -759 209 -30 -813 -591 344 485 -133 -594 204 967 -922 996 -587 -146 981 191 991 -442 617 -375 -806 293 -927 670 -842 663 643 721 -497 40 301 -618 622 825 -744 76 -574 67 790 \n854 1\n-277 -968 -922 160 -767 647 541 -423 767 772 226 -702 -643 -46 -177 532 557 496 760 303 548 -384 -741 -800 17 227 334 996 394 127 -249 397 819 752 -236 -647 -760 555 -22 -371 660 -950 420 -744 213 22 -317 677 430 -591 -974 -728 -179 352 -583 570 609 660 -380 392 -339 -867 165 635 454 991 142 977 582 783 96 259 -7 359 -655 197 -245 -846 194 41 348 46 989 403 368 48 -386 574 -926 469 300 -614 330 566 578 -629 -494 -973 -306 -215 634 626 516 389 -598 999 -75 141 -618 756 807 176 -743 108 430 123 171 -190 -862 78 -184 845 892 -704 901 -960 913 -122 -332 -371 -8 -575 -699 460 881 -755 539 255 672 505 -828 -610 239 482 -967 105 0 293 -562 116 572 -498 -680 364 -879 246 -742 562 -441 -474 743 240 142 -195 -873 -349 -479 428 86 -661 -55 367 -452 951 719 -48 989 54 251 475 -367 545 -458 96 -861 754 290 278 156 -571 -354 429 423 716 222 523 -708 902 -446 864 109 -603 -215 -425 752 -100 865 41 927 282 191 539 25 813 618 522 -791 -56 311 922 -64 571 -156 -580 -613 623 143 157 837 182 767 135 -98 -313 -296 223 74 -599 -140 245 216 37 373 -48 360 -640 228 -271 -150 -229 -740 449 0 458 808 -206 -472 634 -953 -851 275 -101 -113 -234 228 709 755 -223 913 538 -160 -365 -741 415 35 175 -117 363 614 -527 771 849 -764 211 -886 816 812 131 312 -268 -548 900 654 651 468 696 451 -793 735 -739 -382 -924 -389 183 -936 665 500 -178 351 469 -954 787 333 876 948 712 793 -78 362 867 525 -965 441 824 -526 -745 968 -281 408 716 -460 -466 208 -150 -444 869 919 882 -469 232 502 526 111 698 132 119 710 -609 873 59 730 543 -887 14 527 -456 988 446 366 -525 -354 478 -74 -485 503 918 -788 743 893 -314 -567 361 162 -255 493 -524 385 305 -848 405 199 -191 570 -366 -559 -85 854 -778 591 362 -565 421 -929 -464 -569 954 -763 158 37 739 -975 -289 -963 509 307 -758 196 -449 -386 -242 317 -452 922 -755 460 464 -84 -468 551 -625 967 -557 317 -40 853 208 786 -723 332 574 -423 -875 367 55 280 -933 -226 989 -165 202 585 123 914 -791 -346 486 -287 581 622 834 896 978 -133 408 758 -838 767 328 484 951 707 556 -27 622 -419 -477 -455 -808 662 -284 -191 197 45 290 -825 -772 391 -664 859 78 182 -240 -555 438 -719 209 -641 656 694 592 39 254 999 578 -80 996 102 266 342 158 671 -129 522 700 447 937 849 -669 362 721 -65 -697 691 821 271 222 511 -107 -100 948 738 382 444 25 704 798 -966 702 997 55 879 159 462 -862 183 359 -622 -639 -402 -602 -178 474 480 801 -693 -169 477 697 140 395 890 556 387 -236 306 -879 399 -459 -382 522 -610 -554 -689 -836 626 -434 653 -436 482 589 820 841 143 -121 -992 -131 812 420 -684 311 623 -219 912 167 -49 1 385 208 114 414 942 -394 -755 861 708 364 -835 181 724 349 627 -129 520 740 177 944 409 -49 592 -862 556 -433 -358 -105 919 -622 213 981 289 -628 427 673 880 870 -171 991 -793 767 217 -360 876 -361 969 453 301 338 585 911 388 297 962 -704 837 278 363 -199 280 143 982 -793 -242 300 -65 -91 -275 -116 671 40 879 453 -445 -769 901 -352 -573 136 -115 987 -518 -300 967 6 -929 -697 -191 214 269 797 282 804 149 203 -157 -303 -677 -444 128 686 529 489 822 983 341 898 280 355 -886 -371 -994 -959 -48 313 -804 -381 421 49 899 689 861 -41 294 60 816 365 -489 333 990 -588 53 283 791 433 94 -228 651 -314 -36 17 204 500 -123 375 -327 765 707 -551 215 -280 -624 -303 1 -461 66 520 241 -511 383 -702 348 764 748 923 195 352 16 516 -895 274 417 602 511 717 69 738 -196 88 -98 29 -702 295 110 -41 -243 -200 -736 -103 295 -791 -61 -107 479 -363 828 310 93 878 -59 -255 -583 -577 -216 526 -568 829 -16 -704 269 -331 -251 406 -426 685 21 -270 450 -323 -823 -416 234 -743 901 -626 31 625 526 -229 451 724 -543 702 -773 479 -375 286 -590 565 764 -242 389 -693 821 659 315 -586 406 670 407 -204 464 150 -931 214 662 422 -197 -406 -688 615 -855 -985 708 32 904 780 \n992 1\n528 -409 731 730 -6 -705 222 384 682 609 -287 624 378 744 -373 -409 678 641 508 184 340 624 -483 780 20 40 -677 -107 -37 -568 -736 -243 -55 170 289 249 502 -290 -118 61 453 5 -226 -955 609 479 741 -796 154 -236 -242 -228 309 272 943 -186 613 -591 128 746 893 742 148 686 976 471 814 737 -849 297 -662 195 99 -278 693 -832 -195 -12 837 376 -953 972 -414 -168 410 -254 -562 368 713 -474 -586 179 857 713 271 -803 -324 994 267 994 -552 261 820 138 -829 -820 -591 997 888 -125 803 286 -531 722 946 230 570 832 -964 944 -256 -811 -148 878 104 457 -673 153 748 34 -686 205 -498 639 642 234 537 -408 745 -116 -521 -916 -937 44 192 -740 70 790 102 584 -390 609 258 33 293 929 658 566 307 -680 279 808 801 169 191 -965 560 139 -201 736 58 469 308 935 382 -788 161 -668 704 -838 236 -774 695 979 655 -261 654 38 463 -480 811 -944 798 378 187 838 -751 -161 388 126 180 -46 818 950 -619 585 -666 269 -45 -226 82 520 -750 744 -655 54 768 -461 -173 -60 776 -24 603 658 567 658 805 12 450 530 560 850 -219 -34 465 -73 670 343 934 -856 764 52 123 -291 -107 -224 127 915 -532 219 252 700 -772 173 555 -149 -4 480 693 -108 409 225 891 -888 444 706 519 -733 59 379 -249 -835 926 404 59 -295 852 -93 349 793 963 270 834 -44 475 -983 385 593 372 -522 581 693 -899 84 -45 -894 833 224 653 -746 4 708 -219 576 220 153 -43 -757 -215 847 715 -536 766 199 -783 798 61 -431 895 319 -319 -850 44 -951 272 493 -607 -142 -745 363 922 704 104 -962 908 -598 253 323 841 51 -742 -62 696 144 724 740 348 49 323 572 -108 -270 110 679 275 682 -801 -755 -8 -55 925 51 998 424 111 -925 461 -269 -713 -251 839 939 128 -235 -453 -698 -541 711 -624 269 -132 -382 56 542 -392 -537 -848 -303 -372 326 -296 441 499 65 169 -801 90 -462 637 -110 -209 960 -37 29 685 245 688 429 1 615 859 -547 584 -917 763 -543 197 640 725 149 723 207 671 189 445 -795 -340 347 23 124 -116 -256 659 90 353 543 -110 -820 563 953 -272 269 381 586 784 154 -30 -137 -405 -517 -713 636 -741 853 -413 338 890 -555 334 -727 512 775 426 459 -441 361 21 395 482 -305 317 -734 -675 639 439 242 -58 915 -576 -733 -48 151 541 564 699 -568 491 -80 -811 -969 55 451 -541 199 944 -855 474 -414 192 -272 -497 -194 807 -389 145 615 -896 451 -48 -410 -273 -194 7 838 -247 -886 -948 736 952 -455 566 347 792 417 -940 -29 -965 -197 367 -504 866 -86 -931 369 39 -381 698 628 -464 70 313 463 306 160 -81 490 561 633 -528 198 -229 351 -901 83 -983 904 -463 280 -401 -156 575 -271 964 830 785 790 -871 -326 -39 -31 775 34 726 -280 777 -264 383 476 -58 757 23 -105 136 577 943 952 150 577 173 120 780 180 937 -435 716 342 834 -335 79 -689 -718 790 542 967 613 919 -408 912 711 171 931 -290 -473 -529 875 788 437 -882 733 947 822 -29 247 709 -144 637 -276 -384 774 966 517 -84 905 -259 627 -805 616 -123 767 -434 947 943 986 185 -767 -854 957 793 -973 650 18 910 -243 408 329 728 33 899 644 332 453 562 195 977 152 -405 -512 -404 758 948 108 542 354 -705 953 241 -872 153 118 246 297 646 -911 746 -419 -40 -938 372 830 559 738 176 -32 -619 968 983 161 581 -61 -469 984 -371 1 26 -348 -287 407 642 444 -345 -639 -421 768 -416 -467 119 950 -557 -834 -393 -606 -641 24 -526 357 713 612 335 182 -753 -752 87 -548 -679 -397 -368 194 -603 541 -188 987 734 718 -509 666 -888 126 -774 52 975 698 695 49 15 189 373 -590 109 215 111 454 507 683 963 396 -616 -168 127 539 -484 161 64 390 240 406 -550 48 -300 640 -142 -325 695 -56 263 -535 -707 465 -93 579 -918 -786 313 225 -578 -101 183 -783 -238 -267 -247 647 -611 -997 837 620 168 900 433 193 350 218 -735 -986 964 286 0 985 52 -5 447 -250 -868 716 -789 200 -551 334 -221 -886 521 -28 -289 -166 47 -856 -155 101 -668 249 -733 461 45 379 681 -402 950 -684 -658 -6 74 -807 274 -917 -72 477 1 -929 392 -399 -164 495 522 173 963 361 -8 -699 354 -570 46 654 106 -828 -313 -563 797 789 -670 -160 -373 54 -646 -25 566 -275 -256 -693 -335 350 455 391 -484 -252 216 37 -599 646 22 -100 -851 -914 758 -394 56 423 -163 -290 442 -748 986 -244 666 -201 -23 -659 -467 -405 -534 141 486 -479 707 -790 734 716 427 109 372 -287 -537 -21 213 636 -802 437 -311 221 521 1 432 -262 684 -311 -136 672 -845 859 969 233 170 -908 -70 786 501 -692 153 528 596 956 379 164 386 -501 -624 91 636 832 608 -350 -165 983 -128 163 163 426 839 770 -832 627 913 841 -970 770 319 -57 35 346 829 246 314 298 795 \n907 1\n-480 37 -884 -84 -563 -242 138 786 -255 908 576 667 672 -731 -375 487 -625 114 826 -924 -968 -583 82 -691 431 -615 -466 280 789 -239 -948 366 419 -667 -410 201 -736 -19 -942 658 565 -65 -674 911 609 -988 265 -896 478 88 -548 -26 -507 356 822 544 -888 443 -153 653 77 731 550 604 347 -121 769 713 689 -59 -674 709 25 356 702 341 760 876 643 451 266 398 840 -612 83 944 923 -248 527 230 -361 774 923 -879 -393 -669 865 -206 145 508 648 947 -376 531 642 607 -786 -791 756 -156 -264 -226 -242 114 77 993 40 355 -849 124 778 -689 -410 202 -381 -402 958 -594 652 -115 106 90 -612 113 471 636 576 490 -976 781 -846 970 261 212 279 318 483 -865 -107 -213 -449 107 531 914 772 576 -893 868 36 258 4 -190 -301 -580 269 607 -999 -617 372 523 167 373 -196 -384 -156 -946 634 314 -434 540 -931 527 -954 -981 985 923 536 -691 819 -998 339 -693 138 -393 -65 249 924 861 385 985 -188 380 -871 -553 -56 773 83 186 178 -484 922 -715 472 384 212 683 -725 -44 172 952 597 662 -428 -547 -348 -763 814 449 -496 -457 900 -100 34 116 752 920 -825 -433 28 470 168 62 324 -701 -843 -328 455 -764 -485 755 -3 153 821 46 -781 85 316 -797 -116 453 521 829 200 -938 -605 -403 323 690 -288 509 895 -790 706 -735 631 -194 770 680 -532 -392 851 -922 -730 -468 162 -254 424 953 -641 533 388 147 -455 256 -861 628 -910 -529 15 -232 307 -528 -202 216 -586 967 -219 274 135 982 674 887 -558 792 978 156 -980 236 -837 -417 236 -933 -197 37 67 -706 771 913 108 -167 -804 992 668 -402 551 -206 911 679 545 638 666 -92 497 185 -191 -693 684 -158 716 -866 -578 -893 -163 572 727 243 44 -460 -739 153 -975 -604 123 340 3 -891 229 -599 169 869 520 60 473 249 -466 303 484 -642 935 -732 961 -95 -361 -875 -104 411 779 267 922 -485 -420 -324 -439 744 482 -260 -326 -676 373 83 -769 923 136 543 286 -78 -427 176 255 966 -204 -821 923 491 977 781 -659 256 535 -767 -389 829 -855 555 508 -179 547 -582 39 516 965 266 -198 -377 233 -860 -984 -585 382 892 239 913 577 -681 658 -310 906 874 738 -837 29 710 982 156 466 589 -111 46 829 524 -156 555 -911 -605 560 -845 803 -708 527 396 410 84 -789 -579 992 488 -142 353 -941 -34 407 -193 980 752 388 50 527 -786 -791 -632 -993 -453 -80 857 730 939 647 97 759 -936 795 750 744 -71 103 -445 72 -35 -432 -875 792 62 113 53 421 629 143 -944 229 122 172 -377 550 -585 -56 799 23 188 796 -516 -556 -703 517 504 -230 789 303 -374 521 961 -503 444 789 -837 152 -991 534 998 167 -885 -76 726 799 -570 -396 521 254 -676 76 728 -29 870 -570 -90 804 -433 870 790 588 614 -660 826 -947 781 876 623 740 -433 889 594 765 -74 29 -341 831 113 811 476 153 -632 259 248 -988 -312 -794 -559 384 392 511 242 79 -493 960 38 437 221 -611 836 174 -490 901 -305 623 325 -591 327 812 64 459 818 -689 -427 91 587 393 -840 -371 888 -138 392 -618 698 974 260 509 622 564 -483 -940 973 901 587 -139 636 -512 536 954 -428 -134 -863 85 -995 -342 510 941 201 882 840 757 308 25 -54 38 -325 859 777 11 -985 536 674 -958 216 217 -298 785 705 885 58 622 237 -341 -28 -120 375 281 872 -95 -931 -713 80 96 -363 -692 852 770 -211 237 -758 323 -687 177 511 -841 -296 338 353 873 -786 511 555 -555 -33 -594 -233 76 943 -753 -425 -923 463 757 -942 613 750 -334 -945 -665 989 -924 -67 148 -136 -696 796 149 -626 -561 -791 354 -999 -79 612 -26 640 -900 -765 849 -530 -158 -697 176 407 270 -196 450 -780 -596 805 -184 745 -657 -182 806 357 683 784 131 471 333 -573 -29 846 -892 123 -690 570 955 64 -720 -352 512 -601 990 218 125 -225 833 -917 -440 56 177 881 19 737 537 757 812 -811 -42 248 -950 41 -80 985 -871 -675 -588 184 0 650 584 778 216 431 -886 201 577 565 138 -473 745 -707 411 485 746 675 -430 -128 211 830 130 452 629 -389 77 383 550 697 910 224 730 964 721 23 517 -798 -999 346 -730 65 587 377 -471 613 198 -187 654 628 419 -646 782 943 -956 499 -664 192 -667 928 -619 6 162 -53 153 293 28 687 583 -763 -313 727 -376 259 94 708 -267 -550 -538 -77 248 -309 594 568 887 -104 695 654 -505 -643 187 892 613 267 -535 412 197 309 -15 \n886 1\n-662 -471 500 568 -852 301 114 162 -91 606 512 554 111 -349 195 837 733 -184 -443 796 447 316 819 164 -221 -63 -69 663 870 300 -116 288 -155 451 545 -403 949 423 23 51 57 -558 119 -938 211 460 540 477 376 -600 376 957 707 173 829 711 745 826 421 -548 101 -939 75 810 309 -846 -583 -994 -3 775 582 -304 660 261 207 166 132 -506 103 -896 793 991 822 553 -580 -789 704 189 571 -605 862 -430 897 -513 322 383 60 -953 366 412 -38 -895 397 -768 -245 723 -8 20 -611 -968 971 887 -39 541 -494 81 746 357 -709 871 538 599 -352 50 -954 462 603 760 120 682 -798 345 -694 630 462 -603 307 -568 371 -670 -999 -709 81 89 -90 122 951 -188 805 -219 -794 339 798 856 -395 -769 281 307 581 3 -426 27 -632 -633 692 -516 -385 657 -726 269 527 204 496 209 -287 -830 538 918 -137 -906 -901 801 -761 -635 424 808 -415 332 -269 486 768 -634 225 -667 3 501 -671 938 -692 859 -694 -985 556 20 -454 564 -63 -982 287 34 -381 -883 -635 -678 -25 -647 -799 -272 221 -98 998 521 828 716 917 131 -431 -20 -888 -662 457 -287 -627 -188 -227 -672 842 23 -496 874 -466 189 625 -615 918 579 -923 341 -995 678 700 812 324 852 42 -233 519 -561 -516 646 213 306 -207 103 -718 270 850 95 11 680 522 609 514 -487 431 -287 -350 -310 869 375 700 844 -429 832 327 -765 -537 786 -661 -255 547 219 136 174 -550 -923 78 704 -195 841 929 -17 998 -283 255 113 279 -394 -75 -833 665 -252 -683 202 526 -672 632 -934 361 357 -361 -356 -891 196 -64 -112 479 137 -971 -881 -573 -846 -180 898 395 768 898 169 959 -585 -694 955 262 92 631 566 -569 -155 -14 -646 411 -780 -18 -624 68 416 -717 -658 368 363 742 41 753 -127 501 -801 33 -625 34 -145 417 -122 -118 405 693 -167 -80 370 -213 794 -169 341 -429 39 417 508 -214 -335 504 195 -443 760 -117 809 813 -155 243 592 -616 493 335 609 748 423 179 -221 -140 598 -486 661 730 -715 106 771 617 -964 -420 -231 82 26 144 491 -848 -409 978 423 987 714 606 982 769 -932 161 279 128 983 -558 133 941 888 -618 -639 -81 -896 984 -145 718 309 45 241 807 943 -277 163 -573 236 52 277 122 -973 -942 604 658 -583 -953 -493 -885 986 85 716 975 925 -395 -121 1 -696 578 750 -629 -905 459 298 909 696 -159 -745 -460 91 452 842 -451 251 -220 168 -910 -236 301 -738 -732 161 674 395 -347 446 -657 2 -450 860 819 490 397 736 -911 -315 -756 972 -663 -623 36 901 -905 511 -821 716 -791 540 -226 69 647 -582 460 691 156 280 -703 -105 -20 402 932 -746 712 422 150 403 799 -51 869 612 43 565 -141 978 523 -290 231 152 623 199 927 105 583 513 781 304 -212 -797 -381 -640 325 449 407 868 -187 -216 -168 353 141 186 614 70 173 185 536 -251 -802 269 -764 31 300 241 -486 -753 -547 100 24 952 904 -289 796 706 722 495 612 49 -19 -162 347 -954 -568 -480 282 188 541 21 595 335 86 -223 -649 -602 559 683 758 571 -133 -830 -132 -596 682 181 981 -272 517 437 506 570 368 -931 736 190 865 78 -470 -421 553 456 544 622 -872 9 -736 -336 751 852 -912 433 548 271 -433 418 842 583 -654 993 -398 626 129 789 -243 812 -462 661 662 -43 468 610 931 -490 759 -960 39 634 -24 17 76 996 338 -666 -848 912 103 452 598 921 -617 373 -899 727 602 916 -338 475 -805 816 977 -519 642 442 -314 -276 -998 -278 -779 -721 593 -582 -886 443 -206 911 -778 88 470 -810 248 -770 -517 532 174 786 -268 846 -663 -978 661 -22 441 -498 -514 -757 -727 813 103 655 741 -745 -443 -814 -150 -210 -371 190 625 751 247 522 -239 859 459 -974 62 773 -15 556 146 225 79 -495 -607 429 -220 -779 504 253 833 19 651 863 -655 648 219 391 305 449 365 5 993 238 867 -226 89 -356 716 -199 883 404 793 -270 -418 604 338 -71 742 -580 903 596 564 218 623 549 -460 639 293 -468 329 711 -822 570 652 989 348 -833 -209 645 -670 -800 529 904 -534 19 -494 796 -649 336 754 617 331 762 521 -413 616 -194 -242 720 260 305 -914 -617 -972 783 321 655 -211 23 -539 497 -382 -857 527 -647 -144 -295 -668 671 943 984 471 -497 -276 216 79 914 279 -38 929 445 -553 612 -380 725 104 -595 -406 -269 -439 989 \n741 1\n-417 851 569 -768 -378 -15 234 -986 981 233 928 -566 140 843 877 -998 -956 -571 937 -906 213 523 255 -967 -445 961 878 -5 710 -560 -537 -569 523 301 984 -289 223 460 892 114 558 153 462 -789 386 55 -513 886 80 372 -900 -404 112 906 481 -996 800 599 -585 62 778 -22 397 -789 -321 501 534 283 160 -101 -710 796 619 254 733 510 -228 552 741 -967 215 -642 318 503 311 518 387 -938 -967 995 -282 135 -353 890 -376 652 -698 138 -803 255 -548 252 439 694 531 -632 -498 248 969 54 328 386 -210 261 663 -204 -592 864 451 881 736 -436 227 706 -932 379 435 -491 927 -748 -688 396 899 73 287 90 -510 839 438 -140 -833 -434 426 134 992 726 -559 -353 661 -527 771 761 749 434 -988 798 -697 -249 148 724 -359 19 -540 -978 806 -570 543 879 389 740 314 936 -124 -482 35 51 642 380 15 -416 534 -707 362 -203 565 -509 283 -891 914 -485 941 917 -498 488 23 -426 780 905 -109 -573 919 886 805 542 -603 -304 -307 -666 318 951 654 -776 -681 524 552 141 825 174 450 545 -463 -381 -925 489 0 -74 186 779 413 389 43 -604 -932 -373 -904 -941 -805 388 243 586 -638 320 716 -362 -120 -947 -822 433 88 715 208 -473 374 387 293 5 601 -81 996 -461 449 -646 -248 -717 -412 521 289 -270 954 372 994 -803 993 213 -593 324 -786 559 -803 783 993 -342 -661 466 297 -798 851 651 190 197 733 512 17 -221 -549 807 192 -427 -490 -47 891 -282 792 693 999 -744 -990 -128 -999 96 207 -277 335 415 761 -4 727 831 329 457 270 191 597 589 92 40 80 690 254 874 650 -410 70 453 326 480 -817 641 66 853 928 374 -130 -621 287 604 613 648 848 781 766 -378 961 518 -637 -962 -802 345 667 959 968 30 298 110 565 -141 59 309 -526 14 61 -500 355 130 589 -670 -107 503 168 573 -925 -328 659 979 -536 714 51 -594 891 -832 214 196 782 607 576 -51 -599 -755 911 403 54 -361 600 -683 986 483 -678 -361 737 -319 762 875 69 304 278 -910 113 931 -889 986 952 275 7 -763 294 542 -550 -450 -13 14 882 138 -249 793 921 100 -604 -865 111 -548 204 -876 884 -498 848 389 121 506 -966 242 351 331 -728 68 720 939 -490 850 -595 978 494 -326 356 739 272 38 650 367 146 -396 -752 705 -913 -151 868 2 -606 -648 -995 415 -446 -565 483 902 -347 754 176 -389 -969 395 240 -387 -881 411 -102 -117 970 208 -794 714 -395 277 -847 -151 -658 -431 668 332 912 528 -861 -741 -826 207 719 122 -553 493 -743 392 -715 729 163 813 -633 -910 -271 728 271 32 210 991 55 -859 -726 590 -846 692 388 583 -644 -93 525 365 993 -317 874 263 -939 62 13 76 793 949 358 9 -587 77 -863 716 -487 389 904 -429 678 -878 -404 647 -269 -526 978 931 68 -23 949 622 -682 968 380 518 16 619 123 -721 -953 374 -504 -342 -201 -19 263 305 315 -7 -502 876 664 918 978 489 335 373 -312 473 -832 383 708 696 -552 81 54 -158 376 -942 -128 223 797 100 129 -100 314 525 6 872 66 -231 475 -332 -102 948 158 -740 -69 826 -573 -615 -966 852 -995 387 568 -423 327 -375 531 -191 -468 631 541 -679 610 419 614 932 940 -408 -204 -323 752 -110 -623 -319 578 336 646 556 865 -455 -352 -262 -152 112 -156 219 15 -673 -74 908 664 72 -783 744 10 284 709 -265 -369 -521 41 -629 267 -977 -315 999 -717 134 -858 691 -140 -705 -21 294 373 -206 -283 -467 -782 245 -284 255 618 826 509 542 473 598 56 395 141 740 505 -877 182 13 115 572 -903 69 113 904 271 387 -853 778 -233 317 605 -625 213 -361 985 \n707 706\n-924 -557 550 241 759 345 -726 -579 -561 -904 677 945 737 -450 -38 775 -153 765 -436 18 209 -751 649 628 925 13 858 228 738 215 -921 556 949 -778 -890 -90 -781 197 -175 -687 -244 5 -484 563 554 137 -20 -191 562 158 2 -9 290 588 288 -675 791 -247 931 197 407 311 221 -446 -286 -616 130 255 -834 -139 -243 -209 958 419 775 74 875 73 381 -788 -842 -105 835 701 467 -610 34 832 257 -50 -95 -834 652 -839 628 -838 69 887 485 -218 62 -306 -387 784 -88 907 708 742 -322 -338 57 -686 -393 308 -111 303 -611 378 535 -697 -666 606 702 61 55 841 -502 -275 356 720 555 -146 993 -218 -446 -668 -401 307 365 679 906 -164 65 318 160 -89 855 869 -674 834 -824 952 -979 483 25 181 282 972 819 149 -819 -393 -324 288 772 -11 -876 -734 281 -381 209 -846 480 168 340 -803 5 688 242 145 -760 -76 -780 893 2 -98 950 114 148 272 -708 -5 -744 804 392 810 694 -670 750 -469 -496 505 17 -354 -54 813 970 109 -178 -423 296 419 53 511 -203 966 697 18 447 397 -85 166 912 234 805 -233 208 730 903 98 -290 281 -430 901 19 467 251 715 -588 588 -7 768 425 433 -426 4 205 -5 871 427 708 -717 910 -693 -791 612 289 574 907 -911 -927 815 570 -890 852 947 761 -530 311 339 512 441 506 -810 -422 -477 830 962 818 -921 253 357 931 -378 54 -509 321 835 636 109 -937 -138 679 -189 813 937 145 634 938 -269 626 -299 680 19 773 486 462 -294 369 -481 -459 -778 649 -529 6 300 -333 654 631 911 -366 733 667 41 917 -973 92 676 309 -338 630 798 901 -61 644 58 519 -418 801 940 -996 273 855 792 21 -206 -972 20 -179 553 -464 -233 920 -726 -312 406 -324 69 -862 981 265 52 766 381 -63 472 -570 -142 -377 312 383 -624 45 362 -959 -260 176 108 -181 -225 640 244 180 112 -817 216 -472 632 657 464 -962 -340 12 150 425 592 816 301 -12 -472 57 -487 233 -937 6 229 497 -861 -843 -267 -905 683 -917 -385 -755 940 -265 252 595 200 830 -827 851 -391 -166 858 -535 -929 552 858 -137 934 -193 415 -758 551 215 -201 119 427 828 868 -497 618 57 784 -86 -262 -17 729 586 -277 369 376 -366 392 -263 552 -176 -503 -280 377 265 -963 496 -953 982 -594 622 454 -624 -638 325 710 -996 31 261 95 -379 469 511 927 355 878 -420 -781 -197 -214 687 -222 45 -810 855 474 -333 676 62 36 -849 738 333 317 892 327 677 745 754 -377 -807 -360 765 873 -37 -975 -808 406 279 28 -951 -113 207 14 453 194 517 -379 355 -275 908 752 616 -808 299 732 188 637 77 773 -44 192 433 234 985 -330 34 919 -393 -338 320 -253 84 194 -206 383 -96 920 658 942 -37 -878 361 573 -458 -779 624 29 -159 -936 -867 211 984 396 -650 525 -401 -920 23 889 940 612 609 742 900 480 452 705 -286 -563 519 -626 -931 -688 669 588 -167 475 28 152 69 369 -473 -626 848 294 426 890 755 36 674 932 971 475 -289 97 -392 843 -562 509 -720 -619 955 -47 -971 54 696 267 -151 105 848 427 334 -534 -470 -202 988 804 42 368 -410 453 -45 945 781 -559 121 837 -631 539 -71 -865 708 -969 742 437 -175 178 387 933 435 724 -803 -800 218 345 587 739 442 232 464 -383 107 -331 -40 439 890 648 -15 99 73 673 -363 303 -716 -571 737 -645 -246 -946 140 -287 194 -308 -229 830 370 -633 862 654 564 730 -974 975 -439 -215 -713 -78 -363 \n775 774\n-269 401 558 -268 438 431 288 307 946 902 736 -561 -669 954 452 -449 79 229 53 79 25 -282 625 136 -772 -33 -687 -264 506 374 950 -523 -258 113 543 964 216 471 118 905 227 -288 -582 836 -838 -103 -386 820 223 326 -916 -746 651 39 -745 836 672 -131 -442 486 170 223 485 956 -279 986 -99 -713 162 337 288 475 587 571 -798 45 -357 357 -18 11 615 -295 221 -82 933 -493 196 133 108 927 -681 -809 -145 -674 -952 226 242 693 -450 -691 963 484 725 -515 419 832 -858 -234 -860 421 526 0 823 466 -386 -383 -677 -61 331 -484 127 -693 298 9 -719 854 949 430 909 448 669 -619 851 -288 510 600 425 534 -777 910 58 -613 933 75 101 783 -906 97 -613 542 189 887 -161 619 -271 247 333 -811 926 887 -191 157 978 -136 -979 -742 569 762 767 -61 492 654 584 407 -648 -978 19 572 197 289 548 -888 -122 -568 -795 979 -191 -298 506 673 18 693 616 -339 683 499 346 -988 -752 -577 -916 109 322 436 148 890 229 -767 64 -547 524 406 -211 -131 403 526 -692 196 339 322 678 -721 -673 -400 -97 363 775 -578 104 -485 218 542 -265 63 435 -606 616 534 550 -417 36 499 -534 512 -640 -992 -150 218 -668 310 305 864 -370 -850 260 -873 -393 -979 327 -863 21 374 815 -536 52 -386 -383 367 699 428 -938 984 192 140 491 -519 -565 734 869 -178 -923 746 -835 -315 20 340 994 -895 416 93 -793 -993 713 648 704 519 903 926 334 836 797 -507 -34 677 -866 798 43 28 25 309 -448 -328 738 7 -288 987 918 856 -707 98 462 456 15 224 949 916 -732 604 58 -916 841 -982 855 -627 628 87 244 -650 -223 -950 -517 517 389 -739 79 -53 -409 736 967 140 151 266 -908 -204 681 429 -648 937 59 -286 139 202 607 622 736 -260 130 -422 -965 -791 909 -117 847 543 582 -795 228 156 -556 642 -992 -626 158 264 -49 -90 -629 95 -274 551 533 -444 156 -786 648 259 688 727 331 738 446 397 -367 442 209 954 762 -569 -385 741 -475 98 -896 826 713 643 797 -17 853 630 748 287 -83 -273 -732 -747 669 478 -807 -499 640 -11 -326 797 781 -523 178 166 585 748 -364 78 293 -879 966 634 415 267 912 969 -888 -986 -837 984 788 650 339 -318 453 -245 -574 896 847 66 789 702 645 -42 715 979 19 100 599 593 -219 145 -645 -564 480 920 539 82 726 -340 -157 -402 -576 841 -137 345 936 -146 83 -158 594 342 -171 672 -841 294 -394 -578 489 -313 -137 326 147 -441 450 -47 -741 235 -741 877 439 410 -476 -149 527 -653 599 -830 670 684 -353 374 -440 199 960 -651 168 728 409 298 962 692 -410 699 55 157 -55 -827 717 995 -662 489 716 606 -946 -985 -570 -118 348 852 -591 -908 -709 710 -562 310 493 967 506 406 -335 787 -94 388 -3 -754 70 839 -283 336 472 -64 294 438 932 -880 -336 -519 -783 581 -392 644 -484 -88 -400 560 446 34 -489 565 -888 -10 -133 613 390 473 347 146 -401 -647 270 319 -990 227 -86 324 -775 -406 -493 -742 865 768 -587 589 52 -274 -755 860 -38 -811 516 4 193 -372 609 193 968 -99 722 915 942 355 72 439 104 -114 565 436 317 906 -721 -30 -125 793 -710 -614 311 969 789 -696 129 -697 831 -996 221 -938 493 -862 -566 339 96 486 903 357 -362 -976 564 511 339 141 15 787 405 -608 -260 -919 -848 106 966 -990 -599 774 -128 -437 232 870 84 -238 -592 -268 -607 111 517 130 947 964 427 827 -972 -49 -240 -959 476 2 776 -619 -583 955 -777 -526 799 839 -663 -949 -290 -853 209 -800 -815 487 99 747 -828 186 -418 807 515 568 -707 502 -776 -745 645 26 156 725 754 55 -21 -932 353 492 -516 334 -79 -926 326 -619 -866 116 60 981 356 716 -348 -17 614 253 501 -714 -723 667 -342 -997 80 95 360 -678 107 756 423 \n894 893\n-585 -235 -901 210 862 -791 -727 -95 385 530 853 -168 557 742 671 -141 538 -661 -883 792 145 601 -888 823 -459 -301 78 500 -683 -250 -715 237 328 835 -120 -820 -572 -250 -434 -487 -872 600 -74 881 -45 -473 453 247 236 -837 20 348 31 -433 13 -854 310 -396 -616 447 787 -378 979 405 358 292 495 -362 226 158 -473 853 -814 272 -753 -31 -477 -14 430 102 -910 671 424 774 284 210 -933 -107 -543 -284 965 624 -34 667 142 427 763 455 -193 -190 -919 219 -18 400 11 105 772 682 -731 243 723 163 375 -203 -688 -612 -961 828 785 980 920 950 430 54 192 -957 -285 950 -320 787 766 -271 131 -754 328 -488 -719 -579 -930 50 -465 266 371 -196 295 855 555 792 -733 -31 247 491 352 65 -233 609 414 241 -566 934 884 904 151 -726 -726 2 344 -22 275 254 -339 -664 790 -730 726 -891 -255 437 153 553 655 -19 689 -39 -368 845 -216 -545 -699 894 -603 492 463 38 -130 -985 185 -283 -324 128 -862 -307 800 507 363 204 -293 551 917 836 458 591 866 537 -327 -873 878 -194 67 967 -663 -676 -555 350 -914 270 409 170 602 69 -211 249 352 833 192 339 -62 638 -958 -97 -868 92 -831 -915 419 -480 527 391 -644 865 624 -897 610 195 -270 390 11 599 772 -480 -460 681 29 -438 -698 8 -779 -145 -545 298 -995 63 1 -398 783 -451 756 128 739 -379 345 -760 -345 209 156 -675 -909 -339 844 641 153 -804 388 358 -186 672 -3 929 977 451 -155 135 755 -907 669 25 -906 -209 -396 -145 -330 701 742 866 -837 -159 838 261 551 310 -188 -93 -338 804 -867 420 707 -544 218 -771 -51 243 853 718 -511 628 537 -397 -712 117 -11 -812 284 907 745 84 -20 849 503 944 124 798 -668 -569 30 370 -226 -571 535 725 -450 -862 -648 280 -445 461 382 -682 420 -786 794 949 425 488 666 95 116 168 270 305 687 -333 476 379 -754 535 -13 701 712 668 926 807 648 914 -264 547 -893 -166 -640 -374 -982 385 663 867 775 -989 227 583 -534 -252 -508 -630 543 -418 304 85 72 -374 223 150 422 413 -56 767 918 719 83 339 772 -784 405 -855 576 696 -911 646 -116 444 567 470 -527 90 341 848 302 577 383 -492 397 551 445 915 -370 896 950 -660 -979 990 601 336 275 116 -181 429 97 681 -282 -446 -352 -131 -134 -537 -240 586 -457 -832 -884 33 945 -97 586 912 -382 886 -118 589 783 694 399 54 -467 370 -976 576 -89 784 129 -612 905 -812 308 -716 -64 186 -432 954 464 -837 -521 698 534 11 878 -691 818 494 -681 810 347 -461 667 855 712 -121 605 734 400 689 336 143 523 -134 886 943 -38 664 551 636 51 -967 -133 29 -847 962 896 -735 -690 -860 923 265 282 -402 117 722 -985 886 -201 773 2 -599 -303 316 -728 -958 144 242 959 139 -589 -847 -57 -246 -953 -400 -730 -831 419 -277 549 -182 789 -577 149 -339 471 -829 548 -648 725 726 -632 -50 -460 554 -32 676 217 359 -739 859 459 -492 -706 -547 -900 573 -577 344 532 -164 563 -814 910 683 -587 -250 -64 -506 -283 167 519 -311 -176 962 89 665 -28 598 -930 725 283 -993 688 321 303 124 -206 156 -4 -847 245 395 52 -723 -766 437 -156 959 849 465 -989 427 9 -562 -140 640 158 -770 227 350 -954 -84 38 20 188 240 -70 -84 -792 -371 169 603 -181 -285 416 30 453 777 -496 -904 697 -264 546 -725 -538 430 -411 235 713 -212 -221 243 -576 868 604 -340 487 232 849 -448 -889 -132 154 957 580 -599 976 -165 220 558 400 679 792 -849 -219 -740 299 180 726 -587 956 111 522 901 -703 822 197 737 -730 434 -95 -321 649 894 -654 636 834 -419 667 -250 -161 484 43 491 6 315 -423 304 634 -298 -740 80 -166 -275 491 637 388 377 185 844 -212 -364 881 -728 840 33 982 520 -184 744 273 -484 759 644 681 -164 291 70 -654 98 969 282 188 -787 543 -129 103 609 305 277 -785 444 -77 160 661 -540 -846 -542 -832 337 -485 -886 731 988 -643 509 -258 139 984 211 -328 -416 -647 -851 961 858 904 -711 486 827 509 -187 596 401 85 -573 -45 14 668 563 -286 -199 -513 -613 360 -728 758 -167 799 -774 804 -680 477 -244 -861 -806 560 367 680 679 616 218 136 617 -603 499 -685 -740 720 252 -225 322 -503 835 -356 -774 792 522 737 554 -711 512 -855 -39 214 -341 185 -329 107 466 -919 73 622 -791 -10 1 868 371 100 -179 -295 280 -749 -427 \n831 830\n-356 791 832 115 873 -291 295 786 406 90 -767 -570 -692 813 222 -873 -225 -821 315 -247 -241 36 82 913 -800 778 492 -689 -201 393 -636 699 -258 -441 635 -497 598 -53 324 -432 -201 843 -889 -962 -591 856 900 -746 -798 -202 -679 -851 576 269 -525 801 418 -479 734 -509 39 924 -327 -686 654 778 183 491 199 501 -500 442 -954 -836 884 652 720 -971 700 -694 256 727 -356 410 -956 381 609 516 241 -116 505 214 -667 -958 -955 220 502 194 -557 32 494 -965 -756 -455 -872 173 -80 -522 911 500 36 -142 984 211 618 -53 157 661 -462 -427 902 -215 94 873 -340 799 432 381 452 -930 988 -904 218 460 717 799 -547 572 885 835 -74 405 710 -57 820 -855 890 -755 108 11 -132 980 952 923 100 712 -162 295 983 98 464 609 -860 -44 -956 314 -320 346 -420 -603 163 -775 -811 493 -673 863 918 705 -211 412 -816 -489 -747 -545 -487 765 -811 -802 157 215 982 450 -648 -239 -870 2 442 -776 652 657 82 -985 -323 839 33 493 -958 -761 -581 -195 237 232 209 -766 356 570 -60 654 -827 367 198 -478 423 -133 -270 -676 -864 716 494 709 186 139 973 822 -228 -674 572 -443 747 -173 730 -140 -776 344 -64 -899 -86 -189 533 -887 -205 -479 771 316 -146 459 905 929 844 -738 615 825 8 816 -917 834 -286 544 340 73 610 837 -899 972 -485 -490 540 791 985 852 460 -71 -544 -595 518 114 445 125 -49 -853 -657 -466 -390 -988 -824 865 -890 358 -594 -865 -938 -190 730 641 546 -508 -402 -265 -413 -729 181 -158 704 -271 364 -554 927 -175 -394 441 -814 -224 768 -990 785 -447 721 -308 -717 345 -94 134 277 523 908 -87 438 179 -185 -946 843 -156 955 91 282 -397 -801 812 636 347 -520 874 697 -899 -559 -709 386 -528 171 -323 605 899 348 765 -421 -110 558 -65 263 33 -874 359 606 357 970 252 -360 -443 376 -441 903 -398 663 197 41 116 960 -943 -928 250 -263 -933 611 -741 68 24 -818 -913 -18 310 -326 270 659 14 -631 238 738 -856 -420 88 -688 -434 599 480 -352 -643 -342 269 -122 861 995 938 -700 547 477 206 812 559 301 275 703 710 -778 706 814 274 -693 -854 -924 -503 -397 861 25 326 212 362 658 757 -713 829 -510 13 -324 841 802 -723 -493 -246 526 632 -13 -389 414 769 691 6 -762 880 184 877 38 177 -772 904 523 877 615 659 -877 234 880 957 -202 337 -498 -56 577 -103 -634 -733 305 -661 -322 -61 334 376 217 -753 775 -426 649 -595 -978 -478 711 515 935 624 599 139 81 -155 725 355 200 385 717 830 578 478 492 619 557 141 373 21 262 -34 661 611 -278 190 -247 -449 -24 855 -464 -69 628 557 500 -955 798 -214 208 -185 120 323 869 260 -508 -25 -740 241 -379 720 996 -76 -153 -631 -710 -397 -78 -998 754 190 70 -675 662 863 890 750 574 874 869 957 -207 -918 656 705 -155 56 991 -998 736 318 -481 199 641 187 36 -904 900 542 -831 130 330 -26 398 -922 858 -807 -321 890 230 512 -53 615 -684 947 426 -466 158 620 963 343 -922 -186 657 -689 -603 928 865 739 151 630 809 408 751 246 -671 -429 682 -663 -978 354 187 -405 726 197 -286 743 -661 390 614 -895 281 83 122 -566 -850 -222 331 493 -438 642 768 557 -436 346 -946 -752 633 179 384 342 692 -61 -317 169 881 701 -973 -697 -209 -181 107 -513 879 859 310 792 925 446 888 457 942 -501 437 676 -521 71 -690 834 716 772 -132 372 -519 -618 412 -573 -357 -673 625 820 -302 392 374 955 383 997 544 354 521 626 -954 781 174 818 929 -881 -719 792 375 699 665 424 404 666 -59 -484 40 -768 -682 808 -203 -197 789 654 -998 316 -961 -371 -31 819 270 -176 -361 -39 -552 -483 -697 -758 71 -635 -546 868 911 -735 138 983 833 728 -762 754 464 -418 -586 -374 901 -823 -947 -308 235 -308 363 -676 812 362 -789 425 -410 -463 -511 739 -231 -346 -594 244 198 922 812 -3 743 -808 913 916 -695 200 502 670 -254 300 573 331 143 -681 749 -492 11 64 535 -514 -167 182 -57 870 -241 52 831 -651 959 120 -597 486 776 331 518 -789 984 \n933 932\n-64 629 -544 404 77 98 540 48 -244 987 276 312 582 499 620 376 873 353 -292 -962 -649 -993 936 9 -738 -345 -65 217 -679 -989 90 -445 766 339 -156 -535 578 -472 -899 51 824 265 -470 756 690 -722 -955 -934 415 235 888 -202 -592 -558 795 -958 405 107 132 842 -422 52 621 148 954 809 553 13 -44 165 770 249 313 -46 769 659 843 145 738 -591 681 -716 222 518 285 -787 -47 -950 77 916 111 127 618 826 -570 -807 -124 430 583 774 59 809 -395 -51 151 -899 -734 669 570 807 156 3 -897 -845 -333 37 807 199 125 -817 -922 300 -757 -679 -755 616 -80 965 618 -674 246 -603 -360 -116 861 480 -699 543 -76 819 -86 -437 238 -675 830 -53 -877 -968 14 -234 772 -543 956 940 435 -954 706 805 607 86 -702 933 623 -435 -762 951 104 711 -628 850 123 988 687 609 938 957 401 156 894 205 987 180 652 961 -580 827 434 24 -262 -625 295 482 719 -680 945 54 -769 793 749 771 299 5 51 208 590 749 55 -123 680 586 -40 726 117 710 277 -821 273 641 891 -114 759 997 136 -850 -165 74 -60 -933 965 -507 731 65 150 -110 956 359 -321 -968 5 61 821 928 -892 890 180 111 -79 957 971 910 789 295 453 920 971 -732 152 819 969 319 -551 571 138 155 7 -887 15 -242 -330 -691 124 273 -127 76 569 442 -568 -287 -35 -353 154 -779 33 23 -753 778 95 362 641 75 518 -683 646 -83 442 679 -309 672 -555 -736 -448 260 829 881 -518 -616 -648 -740 -593 63 -344 -839 759 -774 -605 907 377 339 580 516 -511 -315 -405 -44 -218 -290 -732 200 -184 -415 -520 337 356 -101 -919 -156 299 980 -783 -530 -416 109 -982 401 497 -42 -179 -865 -199 -755 187 424 -258 930 -781 871 -83 -288 479 -587 537 990 -7 -997 -116 -325 578 218 157 -214 -248 939 44 -947 -149 -638 -304 644 738 507 243 -259 -291 632 227 160 -343 414 -514 558 235 170 726 -580 -422 -676 410 357 374 803 -860 520 234 944 -405 248 -822 534 -428 -957 419 -288 379 770 -884 835 -912 630 937 -144 -558 963 8 588 961 57 863 -327 -70 771 724 -568 -96 945 13 903 -508 -69 200 922 270 510 -740 281 97 520 574 -114 -659 -578 565 77 -951 -751 351 633 -298 373 274 -677 6 -297 195 16 170 689 -10 562 -279 81 -259 784 -845 -982 71 -708 -36 430 354 395 964 -630 307 686 45 -250 -734 -945 943 -97 981 143 820 -974 203 35 1 -801 264 -280 264 804 432 954 785 366 931 -411 685 499 -366 992 705 25 -929 217 577 941 15 853 490 -484 162 987 -655 763 316 -594 893 -480 431 -569 87 446 -229 184 -874 340 457 78 -682 111 -836 368 844 -924 -745 144 594 -455 130 996 -146 870 912 859 879 6 -719 115 -998 6 -319 22 58 -759 316 -304 -745 -666 399 -547 285 -34 372 835 492 29 -986 -251 600 504 933 -398 -735 440 -407 -790 636 897 211 -568 -389 -347 584 -382 -571 -952 437 300 413 23 663 276 -597 -652 732 322 145 734 268 -472 947 -720 130 -3 -698 65 -975 660 -759 243 -976 -608 217 783 -267 -777 -169 544 22 3 510 404 -464 104 -642 -734 526 676 -915 278 823 593 836 815 -40 -68 -394 697 561 734 927 -773 814 -740 554 -283 23 183 244 -975 -353 -165 -821 255 242 487 525 -663 -513 57 299 286 -500 549 618 886 -672 768 495 440 260 195 -972 -293 910 83 -552 126 -429 961 -341 765 789 -851 -744 570 214 497 -269 207 301 -545 -872 764 -530 892 -261 180 -808 -127 -593 -246 248 -771 -574 765 -831 141 -516 -280 -603 854 -618 -587 378 812 529 -260 -283 -359 978 751 -651 -837 898 338 993 559 -349 -562 458 -321 896 -220 -86 -878 30 764 993 -802 132 26 355 990 -853 -264 784 880 -807 622 -201 912 -676 -294 633 -244 722 -248 889 100 387 742 -173 -143 997 -313 485 548 555 715 -196 338 171 795 108 345 438 932 752 39 -131 30 104 -844 236 756 545 -230 -607 348 835 685 -190 354 193 232 567 -629 -773 -894 -213 728 -393 334 -86 171 -902 -48 -451 -648 713 889 363 550 -513 -763 144 -369 227 571 -128 -416 -526 865 494 -341 -839 380 967 121 -894 -483 -917 -997 383 -597 414 -586 394 -74 750 82 179 -647 289 557 -795 358 42 -53 437 -500 552 306 578 577 883 103 582 763 -635 891 -408 -660 497 329 582 -711 -76 -321 391 783 646 -524 279 912 540 579 470 -700 418 41 785 327 220 261 223 604 326 -353 510 174 165 661 -260 991 -403 -453 -558 717 375 110 781 -687 299 -413 827 668 -133 -297 -906 781 910 484 -262 983 630 438 310 -650 174 \n986 86\n-513 595 14 415 576 723 634 -781 -629 751 829 685 -454 372 602 29 -103 403 799 650 -688 624 29 -664 804 860 -290 835 -604 -708 7 114 178 504 -474 -887 -198 -781 -997 -552 349 964 61 121 461 408 452 215 -906 364 456 166 316 -202 -313 -741 311 269 167 285 569 -608 -705 717 -215 700 679 937 385 -614 -201 398 -801 775 846 -943 769 -467 214 -644 634 259 -224 -285 -45 842 101 -635 533 -739 91 -656 -35 -634 411 -659 825 574 924 -941 -536 662 901 -206 -818 -441 807 -856 872 84 945 66 982 -440 521 39 -466 -409 242 -732 496 -184 -648 -382 -921 514 374 346 -663 671 -49 355 203 211 -674 248 79 297 184 947 -885 411 11 619 -726 107 -450 -74 787 -686 502 960 -840 -899 733 670 -299 56 152 -108 930 845 118 788 786 471 -943 180 -185 367 -65 -616 -301 984 238 -518 -562 309 427 -960 -368 -1 731 165 587 564 394 -184 626 757 -459 -120 -512 642 971 463 -302 729 -516 -275 -350 219 922 -719 538 -956 -225 131 267 -549 -789 344 186 138 928 45 379 476 -296 -669 -436 -191 -158 -174 -379 -453 137 988 454 -962 -585 -420 -408 -342 380 425 -322 -862 -796 -978 -768 107 487 258 600 -961 -245 -215 239 314 486 -20 955 856 -194 -447 418 750 -759 -587 722 -688 190 887 38 375 -910 589 536 854 320 892 377 951 89 -119 50 -951 147 603 -39 838 396 -213 -487 560 -893 -498 597 230 -829 101 810 117 524 100 841 270 -368 -379 673 -701 -83 392 -790 -666 -547 -725 897 275 -249 58 -339 264 538 912 718 797 505 271 -37 364 259 520 735 -304 162 564 263 -667 -995 115 383 89 991 -310 16 -451 198 726 115 -645 -319 42 244 352 -345 -862 722 -145 358 -558 473 312 -42 -687 663 458 760 166 -906 -519 877 502 -392 20 -332 935 -750 -122 -224 921 66 694 973 -405 -545 551 -96 957 418 331 394 536 257 -82 321 591 612 97 -895 178 217 -697 488 -91 119 -181 240 -97 536 416 -195 727 190 -436 444 -75 882 -388 -991 175 646 699 479 995 661 835 856 -305 -518 -199 -989 24 -29 921 220 -354 521 805 -237 -550 -303 -611 -831 -175 613 -969 -115 -666 512 -311 -542 -180 95 210 -555 649 501 810 792 590 627 -819 852 -209 20 831 -775 612 -16 -347 -226 661 361 -213 930 681 545 77 218 108 -842 81 -182 714 68 -207 489 -290 50 -399 -119 517 645 -862 -675 -388 560 148 11 31 330 806 -263 -415 -872 -502 214 277 577 854 137 16 896 145 -190 675 253 -418 222 -324 -427 -378 -983 79 -587 -686 499 -833 96 -207 -399 933 -114 -337 717 -178 147 -212 482 -147 453 -550 -105 86 -546 31 998 -38 490 419 852 -81 -832 140 -911 114 -86 -197 283 -432 460 -32 563 789 93 -241 643 472 347 393 -455 556 997 564 273 167 584 419 -886 699 -699 707 90 968 154 691 -512 616 228 -218 67 -226 333 -191 976 -920 917 -672 409 361 -782 -780 699 -919 186 -144 -337 -953 651 373 -287 -939 -953 88 32 -313 128 426 312 -424 -879 422 -275 334 -82 -709 492 724 -81 397 71 131 -382 421 400 36 379 -387 217 526 2 270 -480 117 939 60 -622 293 106 -350 457 531 590 399 -483 -564 155 -153 -353 827 233 336 765 384 690 -52 -661 324 784 307 378 -118 -45 709 -897 745 -729 967 -725 699 -592 -624 -939 -7 529 55 -884 36 -616 547 -879 396 -333 -257 -12 871 -867 722 -666 813 -762 538 202 -807 -805 834 -50 951 12 999 -52 -707 939 489 900 -846 -713 -981 749 791 -682 -227 -844 752 566 313 -483 424 992 630 216 -153 519 328 923 291 -384 942 140 247 859 38 -931 877 881 104 870 -655 77 81 -806 716 -184 682 570 597 -123 39 698 331 -224 128 798 -911 -417 -539 -925 -417 112 944 -446 530 190 507 -74 -154 540 478 456 890 869 -948 328 -851 -570 15 296 -485 188 -355 -562 425 878 417 212 -736 663 -421 -206 -649 93 904 632 775 -845 -286 346 -329 -652 1 186 928 793 -21 505 -316 208 714 646 -888 489 29 594 -457 -343 -311 410 -659 -618 -605 616 300 -349 -502 746 646 -512 -336 922 578 567 683 -436 992 98 820 147 152 -11 883 325 588 -907 214 698 795 -469 244 728 864 -256 -339 922 600 -522 -499 -453 888 496 232 434 693 791 915 967 154 -950 -89 -213 14 578 -11 -187 827 937 -445 394 191 647 336 583 -615 403 255 -741 631 -403 -109 32 860 484 -470 58 387 -675 -473 690 -406 -903 581 -976 406 357 -969 474 619 -459 -642 355 246 421 -17 846 -96 803 834 303 -857 -632 -94 -683 610 548 -858 -659 -682 723 -982 597 -125 589 -39 627 984 948 477 810 975 -505 -806 331 711 255 -873 934 340 46 -475 994 356 697 902 -686 498 -145 -661 180 524 520 217 -64 998 -558 -983 974 -21 800 -640 -129 908 -420 623 996 954 158 -335 413 -994 110 658 813 594 775 -291 \n738 159\n-809 719 270 -983 492 910 970 392 279 109 461 -973 -183 559 622 611 738 719 983 360 310 241 45 352 -34 599 156 816 546 -101 857 -951 495 781 -109 -56 -781 -924 145 370 100 755 -108 159 680 -928 566 -216 337 26 417 904 -315 -857 979 613 463 371 166 -394 -728 -847 464 752 903 310 -371 624 864 829 493 66 346 -902 873 -569 -987 476 420 253 -842 -529 593 -520 -459 443 718 905 -590 75 701 12 456 629 468 304 -880 11 -637 -551 676 266 222 586 -810 -891 50 10 -287 91 103 304 292 355 -286 -263 -635 -369 -662 756 -702 -318 -17 669 337 222 213 79 659 899 -413 -318 305 794 -925 -881 -971 291 -857 979 381 -45 -151 35 -111 -249 -888 -269 661 851 292 -311 168 20 -755 517 131 90 428 469 87 -446 513 -20 991 52 41 -287 389 215 589 746 -451 691 484 -261 -571 569 -712 362 -896 719 -542 -633 -506 -789 -170 -788 -446 -313 224 -715 -395 668 908 905 287 -603 -163 -292 240 -694 695 809 67 532 175 182 632 293 149 -679 388 -727 -662 -98 86 82 -366 -402 -274 588 -97 440 434 -501 -715 69 432 -852 497 465 -620 377 238 -975 644 224 -143 847 -31 316 -743 811 265 -706 -283 234 427 -738 599 592 992 -458 -160 652 201 266 368 -761 -514 -57 -101 293 -706 -294 898 437 -983 504 924 687 727 -615 886 -894 -576 -640 -190 -954 433 445 509 -277 591 619 139 439 10 -362 753 307 -469 928 718 344 -593 327 507 -537 34 258 438 518 993 780 122 -216 -216 -362 13 -785 -321 811 -353 457 679 151 148 -346 628 109 -73 957 154 956 636 107 225 739 977 -701 -599 -992 990 772 483 -93 612 -986 697 622 538 871 762 757 234 -517 -17 -983 915 460 135 -444 909 -575 39 82 -832 917 -163 -714 141 272 861 826 267 498 -7 -145 363 -955 -684 -254 -628 508 740 -658 -409 -224 444 961 318 -557 -531 150 999 -639 -446 564 896 -725 349 981 -678 211 621 30 -805 662 -220 -913 71 563 687 474 68 841 391 970 516 962 256 248 87 725 897 -395 693 -247 -79 113 -502 406 113 -955 -420 -324 293 -494 756 -546 -162 -291 977 99 372 -880 -488 629 -4 230 -45 -267 525 921 333 741 464 -267 -194 646 560 -217 -10 -373 -399 900 -279 -573 -215 -185 961 350 258 257 -776 -1 251 226 -674 320 178 -196 -635 987 244 677 16 -228 -80 166 -851 -164 -59 52 90 268 -533 464 -88 -533 802 -527 -802 -120 778 170 244 791 218 575 257 906 -433 942 774 659 323 597 -784 658 745 645 -402 818 199 411 104 42 693 679 294 397 855 488 122 58 917 7 5 141 -555 -679 254 68 673 -155 103 -666 -220 -840 -366 -656 -540 639 661 703 917 469 259 -263 742 426 425 507 556 -725 -302 211 -944 -430 -139 105 925 371 -64 796 -883 -444 109 -544 311 -255 105 996 -464 -468 134 -531 67 482 -843 188 88 -968 466 -289 475 -741 -415 11 516 881 -271 -589 608 866 934 540 198 496 -432 142 -354 0 -497 536 597 765 637 934 -355 -626 601 615 828 -490 943 -86 795 888 614 275 210 487 944 648 964 300 35 -292 138 -918 560 995 191 693 -655 283 -172 -616 904 -393 -868 694 356 -802 136 -718 -74 -91 -549 207 970 -202 -913 993 -318 -954 -810 -353 -612 730 839 -633 134 -487 349 -725 -73 -94 -571 -191 -521 235 -310 325 548 -316 -342 838 154 -646 919 -816 -404 840 -665 525 -938 795 -505 393 67 -616 54 -14 640 386 668 -712 329 207 -724 -42 -223 244 538 79 769 110 -158 -345 -864 177 243 453 682 621 891 293 -426 -844 -865 405 415 -629 -918 -751 -721 76 141 815 455 784 -782 335 \n927 348\n609 576 80 -54 293 655 797 -80 -223 -265 44 -352 401 878 778 0 -314 -569 32 173 -796 345 363 -818 223 428 946 300 564 767 -755 51 -163 -287 -455 711 286 -827 -321 961 92 807 242 997 -374 -667 -296 -655 957 882 -795 -371 -90 363 -966 339 -645 -739 196 453 327 874 520 -563 -296 570 60 -609 -945 51 851 -930 -643 -857 327 499 -862 284 -876 -47 27 703 51 -25 -459 586 -248 997 -413 -928 644 344 60 -393 300 -290 -566 161 56 507 647 727 -292 180 764 -247 -251 -714 104 761 55 230 -275 960 154 -88 -166 372 -304 -639 840 248 202 18 123 -548 -589 714 384 -180 449 782 79 176 467 -750 -728 -426 884 -648 -885 979 -215 342 69 734 -71 358 859 699 -150 -801 -156 109 -167 -909 797 876 -733 395 75 596 634 728 -617 29 -817 832 958 -225 948 623 675 665 -430 903 393 -416 82 789 874 -158 651 563 -675 -766 450 -527 209 64 -923 579 816 296 616 187 253 -838 -164 235 -958 92 81 878 28 699 316 583 -616 -318 691 -716 -323 957 822 462 -629 -627 347 75 871 952 -271 828 400 17 788 -687 -292 235 182 381 384 395 6 269 648 -345 -175 904 -721 600 947 91 -775 -224 -759 577 328 717 306 62 143 -461 -738 -620 -770 109 -927 138 493 541 926 -80 741 47 56 37 85 484 161 769 -844 111 -49 483 877 168 -246 -676 6 906 855 -690 306 -430 -435 54 951 -542 656 -766 464 386 605 -291 452 647 257 -268 -813 -379 -41 -930 -970 474 349 -75 197 -380 -379 375 742 220 907 469 486 -779 554 -71 -421 -971 752 482 -661 -324 505 -55 -21 -411 175 204 -383 142 -735 -828 465 1 -280 971 848 -68 -175 -675 0 66 -757 -833 197 -812 207 537 438 -364 605 278 -925 755 -836 795 104 403 837 933 499 269 779 -214 315 388 424 -587 -164 -128 497 -423 -861 -701 -854 62 -799 754 587 395 -713 -74 225 298 15 229 -653 -319 974 840 -808 461 481 409 -558 -992 887 180 751 -260 795 -233 361 -155 19 532 724 -354 570 -907 -572 973 -270 -836 -3 303 -771 380 -397 587 518 553 -114 646 -266 289 607 450 -934 -536 309 708 -540 742 864 -719 -92 815 281 -223 640 193 125 519 -822 538 947 204 -649 759 -122 871 -776 758 90 191 -173 -325 846 -492 55 768 64 733 -280 -399 -788 348 776 190 356 -100 -752 452 819 362 392 916 -218 225 -26 767 -270 132 404 -519 -456 -952 906 245 811 871 1 37 834 287 582 29 -231 192 149 -449 325 266 802 -370 383 213 924 554 823 -510 -356 186 896 177 -139 285 -852 938 17 -930 887 26 143 421 -586 -936 94 -606 -209 717 909 697 -253 383 303 -21 162 400 746 957 386 -588 -249 -186 441 -662 -404 -423 999 -467 979 -875 -609 -941 462 314 904 -402 -616 724 584 307 -439 261 818 -269 -614 -324 115 403 731 476 683 66 697 318 -959 -164 471 -613 0 -549 343 728 129 289 -96 -795 -220 484 -564 -127 374 -960 899 477 318 -587 15 351 354 551 741 384 339 -240 -770 -214 660 873 -228 -687 343 40 813 985 -751 -357 -260 257 -119 -902 -971 -405 674 294 906 -138 665 850 -866 791 72 323 419 -263 665 487 462 -659 831 599 -716 -862 900 642 709 -527 92 281 90 778 -568 457 484 0 268 308 -154 650 -921 256 215 482 380 47 322 -851 -749 797 -380 820 913 997 -821 200 -392 -981 -200 849 223 349 570 288 383 868 671 807 253 387 725 271 -232 -87 -887 346 -238 435 395 -267 135 316 -749 481 496 -412 -50 688 922 528 141 831 528 466 -301 562 997 703 181 266 -643 993 -851 -641 661 -6 697 455 758 584 431 -247 -216 -571 -407 -810 486 -499 824 -387 978 907 -700 969 544 382 -570 529 -528 146 44 969 -304 -512 -610 -782 120 62 237 495 133 -437 -373 912 230 171 -348 -592 938 66 417 514 664 823 965 912 189 771 -441 500 -642 -302 446 661 -251 175 700 336 674 917 20 772 706 626 -246 996 -340 411 643 -225 828 73 -715 134 237 -130 641 -155 465 921 435 402 -690 585 651 -933 -581 -134 200 -94 233 389 -941 509 -973 -327 760 -854 319 898 53 -496 677 792 993 230 32 -838 511 -578 291 -198 918 -782 873 -102 841 993 -77 -622 110 160 327 -605 512 -242 -742 -637 709 -987 24 163 648 -570 460 184 904 99 -305 266 47 677 -204 660 -876 565 -238 266 50 -202 -835 254 -975 327 -404 614 93 428 277 35 268 980 0 579 190 -464 -465 56 -722 723 392 -423 802 333 355 -442 676 297 289 182 925 534 871 -30 257 -233 990 614 -965 369 619 \n849 165\n426 222 -448 213 44 -364 580 -411 605 313 593 391 -614 792 74 -172 348 429 525 -177 566 -690 539 -331 545 588 -388 239 212 -35 473 857 301 981 -408 791 746 -723 972 622 728 467 306 -701 -567 -597 366 -661 -883 430 771 111 917 144 -382 334 256 -951 716 -8 205 757 -639 194 240 -295 -446 -81 337 135 42 473 83 -80 -681 -818 -272 -837 -110 -254 595 -834 959 -300 -965 616 846 560 937 94 193 369 384 -355 523 -690 -717 805 768 -186 145 -13 620 -307 -857 40 -405 558 -539 -104 316 774 917 -705 488 809 462 716 652 -10 -427 863 164 -865 -979 -379 859 -594 -51 -301 432 826 115 -622 388 85 79 852 246 -122 23 -910 912 -893 -592 -795 607 780 -312 131 974 835 -254 188 -124 585 -72 -999 465 0 482 193 413 337 574 611 177 381 471 634 660 -557 -532 616 904 -899 51 -936 715 -743 -500 -702 766 267 26 381 184 -768 894 767 -76 -390 99 -504 535 -671 -466 -11 900 389 -64 660 -184 -296 723 -196 -222 697 41 113 827 609 161 883 435 227 -735 -904 75 573 -829 385 277 628 837 179 -7 933 352 935 388 916 -42 49 737 -153 867 -781 -873 -110 223 925 346 139 583 516 469 714 758 303 -674 475 573 -871 -802 192 784 -240 884 -842 942 181 -320 -459 -205 -74 -623 562 -924 112 553 274 -879 820 -285 11 -366 289 509 -112 318 41 711 95 -743 928 5 180 -180 97 910 734 566 -399 763 -288 -506 -86 -762 338 630 783 270 14 904 935 278 -987 -799 808 -42 957 791 663 529 675 802 -108 85 839 346 -773 141 330 -400 84 -162 -901 976 125 -691 145 -946 304 -417 0 -578 485 107 -210 249 -531 940 -97 170 863 624 -606 -366 812 395 266 -753 445 17 964 -770 -420 583 -105 -567 543 865 568 142 38 305 -754 797 534 639 745 468 529 227 837 598 -491 877 -128 667 -126 -901 939 721 136 -667 -358 390 136 705 -93 311 844 52 -38 644 -726 94 -948 74 -602 423 966 -360 258 -8 792 299 -706 -246 -865 554 -452 957 -724 722 -789 -994 848 819 647 -592 207 161 -685 -940 603 -724 962 -793 -636 72 522 -325 -403 678 558 305 730 881 588 845 826 -258 110 530 868 -844 -663 590 152 1 985 692 -641 -916 -801 834 463 804 256 -329 492 -71 508 128 967 557 654 224 -36 -104 602 -937 98 859 498 -973 -699 -560 163 432 -608 497 -30 302 202 -760 -312 -884 -666 694 -970 -710 35 -200 -930 -464 -186 749 -849 -21 -245 577 523 99 457 125 706 484 698 189 851 -575 703 785 814 637 619 493 258 165 -645 281 80 632 473 505 236 349 973 -390 -135 334 205 -59 -815 826 527 369 -901 417 264 -204 365 995 237 -659 986 993 698 300 -992 826 -983 -373 712 -335 -326 116 792 -184 -87 1 816 653 452 -391 558 998 549 -358 867 -507 573 691 268 516 234 830 -41 -50 401 748 17 172 -344 395 -380 516 -267 81 816 984 208 181 -349 849 139 99 913 -575 -378 -404 540 -339 25 -356 197 811 727 -627 -396 641 303 485 -989 892 777 618 -907 -182 583 294 907 -381 -96 986 341 946 -496 -25 727 437 -790 276 -473 879 333 -286 946 -6 971 -225 -81 213 -365 -847 645 -753 249 698 38 -493 -714 -269 49 -159 -896 784 248 49 445 928 696 313 641 284 -601 481 -591 -953 690 775 -534 952 978 294 625 -19 104 980 808 211 667 994 181 901 -75 951 903 -560 -375 181 218 184 364 -314 -940 198 -476 112 817 -446 453 -710 905 -520 -350 -101 581 -32 -405 571 118 -46 -772 844 422 -238 735 -772 -29 984 712 -446 -965 -250 -428 -168 542 97 -267 -356 339 468 -643 17 651 721 845 696 272 838 -903 216 -764 241 -944 -51 727 -408 -95 -22 -34 43 333 -100 224 36 -734 988 455 -446 525 950 403 875 -285 -522 260 -36 264 -761 -427 469 99 218 176 222 696 543 -767 -460 -907 949 831 638 693 16 842 -768 -445 -268 -304 -627 -186 477 107 -603 -90 432 -68 -24 718 -360 -84 646 651 498 404 -797 -154 96 -63 -521 -1 -722 -179 754 633 217 355 822 870 -122 95 874 -34 673 930 741 -778 571 27 -629 239 939 741 -632 -526 -358 -648 852 528 -639 821 -871 \n795 45\n744 223 771 668 -903 -462 329 509 685 -434 -243 330 261 -307 69 733 533 203 -814 -577 132 -169 -906 681 -58 -78 560 -231 -312 403 -405 765 275 305 -343 151 614 -992 995 686 149 -841 -824 343 811 947 -306 -218 -844 66 -640 740 -579 27 949 381 670 -730 883 915 749 284 -4 693 -327 197 351 256 -477 940 -953 -110 -85 -626 -185 -754 -496 934 -403 -813 28 515 -190 868 -899 105 558 544 770 584 242 389 707 360 -935 -227 699 548 3 768 -957 2 611 76 621 -301 166 907 414 -363 400 -375 76 -159 -168 403 979 -288 330 -657 214 344 -901 -421 937 -150 -126 -952 343 -157 428 782 -205 258 226 496 -341 458 456 299 -508 874 113 679 901 453 -591 400 627 618 -947 -825 243 794 -973 -932 111 22 890 67 -596 -672 64 546 -453 941 -436 -667 -374 145 126 -505 642 27 815 885 493 5 -857 532 803 -981 -7 -534 943 -175 -721 -457 981 -961 386 -156 -873 125 41 -693 317 362 -267 -499 303 -723 -96 253 760 -767 857 -233 998 807 520 389 547 -652 960 890 556 -270 257 -380 987 333 -158 420 46 -468 -799 470 798 753 -359 58 256 703 206 119 -959 653 976 116 175 -700 -980 877 52 516 638 380 938 551 845 237 882 -124 902 -441 -531 966 464 509 278 195 502 24 49 -214 144 831 950 93 290 308 169 -139 -19 587 125 -382 255 877 559 -803 -366 949 569 470 395 653 897 266 -246 58 -991 383 -802 -155 -347 534 -447 734 829 -647 537 -204 739 268 807 -192 190 371 877 331 45 264 83 283 -568 353 100 407 -631 -936 -736 981 553 -165 818 669 197 -25 338 787 -308 491 68 41 261 -775 359 746 56 754 487 384 99 -720 108 159 784 143 25 -136 765 -625 910 527 -962 237 654 325 495 -198 121 -103 -484 -954 619 748 -495 -269 612 -691 913 -420 -150 755 -345 642 938 578 272 55 -866 191 -251 131 360 95 -836 -215 102 -803 -57 181 -485 872 -300 -443 79 566 -585 741 -580 850 571 -175 312 317 256 -815 -987 226 -400 993 -168 -4 193 -104 63 397 942 28 -571 -168 -780 -487 -501 -208 -852 751 -415 -886 -292 -31 -433 -664 453 141 807 20 -686 477 -217 873 -456 -173 -626 -391 776 576 -378 834 -129 291 548 563 -479 -242 -857 -838 388 588 979 -485 -759 131 954 419 -136 357 618 -506 109 414 -275 -438 577 -732 248 88 567 -497 513 -652 -395 932 441 -52 50 961 -625 570 -701 -748 43 985 -978 114 543 325 -275 712 -810 -494 -148 -329 658 922 -817 653 499 -912 751 -365 61 485 -358 -568 -43 -315 -541 537 725 669 -270 638 -423 -164 93 -970 985 437 446 476 829 89 -276 543 12 -11 314 536 921 62 430 -363 -764 45 -785 126 457 880 385 -715 998 -942 191 586 -160 -413 -633 -310 215 428 -841 -307 509 -545 348 758 67 707 356 -901 -676 -354 790 523 448 498 524 222 -707 -428 -861 624 131 349 944 -769 837 508 973 -355 481 -888 732 -708 -833 -200 836 296 470 -698 77 349 75 756 166 -29 856 558 576 552 969 -254 -633 7 -428 770 -90 978 191 -306 -105 178 719 491 -848 -104 -98 -541 596 92 -718 -982 767 -631 -279 -85 -742 378 813 392 324 -196 -731 270 -749 -528 -346 -166 340 157 -572 350 942 -308 -714 292 460 -997 518 -441 868 467 921 481 561 -347 -366 308 87 521 -61 -712 232 619 -170 541 -642 932 420 111 -558 98 254 -264 474 -48 96 -731 -528 45 695 618 -741 -124 113 -730 -747 250 730 -241 152 490 426 -150 -452 668 -5 978 823 346 874 -335 456 746 -588 -824 -615 -159 -188 865 -93 519 -76 946 -454 614 173 -881 998 -706 451 853 -41 702 652 -723 -985 39 -180 -877 724 -282 12 -414 -363 -892 -542 423 -356 711 387 -901 345 -76 -725 -144 631 -644 -62 -470 -296 701 919 -190 -170 419 -329 -294 -910 581 -184 150 393 636 -290 842 990 712 237 68 -74 698 710 127 94 -218 627 85 -977 299 962 \n950 333\n201 440 999 -590 895 569 38 -800 -988 -365 429 160 687 157 165 -7 83 188 266 851 62 -20 487 -167 -485 103 -15 520 -358 679 -837 553 972 863 630 304 -503 879 546 383 801 -804 -534 484 -186 -150 -693 -217 965 712 562 348 881 -667 815 -752 594 451 -210 451 -13 -48 699 686 279 759 -807 -80 982 983 936 275 638 876 771 981 -797 327 -864 504 -711 108 -309 290 -172 203 284 110 61 -688 912 562 -619 555 932 -447 -256 640 516 -933 -476 -16 -970 348 113 574 834 379 143 539 -382 -452 -185 -82 148 886 270 -189 75 538 -929 766 -241 -775 457 471 432 -382 -961 -171 892 495 -49 498 -951 626 -996 41 37 790 -232 15 800 798 633 -721 -637 -495 663 -567 685 -251 923 -485 934 -393 -493 220 -175 -651 -833 94 -847 -550 78 797 -335 -214 -438 733 843 711 921 373 517 -125 617 730 186 789 151 899 -995 777 621 262 -645 568 -777 -842 290 796 -393 -843 286 -499 90 -666 730 -366 439 794 28 485 216 -308 -621 401 -920 731 -818 -128 222 -665 572 -333 213 -664 880 141 741 994 984 443 -79 929 -656 -821 997 8 825 -724 152 216 -825 376 -975 204 -281 746 871 894 942 185 -981 655 761 -981 46 -875 759 495 -431 482 -921 135 413 17 557 452 327 575 -691 -8 575 -608 777 729 973 -757 -280 -593 948 -74 116 318 611 583 128 -403 -541 -695 784 702 -817 964 541 -800 835 850 205 -640 993 -503 -320 -624 94 729 -348 502 67 352 -322 -61 785 -975 -214 -201 984 776 -787 -663 -276 77 845 -914 178 480 -741 -447 631 -859 736 18 753 313 -784 -830 477 -419 -82 -113 495 -452 191 118 -93 454 331 -194 -53 -410 537 439 977 284 677 -204 -946 452 264 -234 -475 -791 831 601 290 -604 772 961 874 -207 444 754 -883 673 55 -116 968 214 572 735 920 813 -490 565 -687 -36 936 723 706 -154 -934 475 654 75 -857 557 593 -432 891 809 287 -700 745 303 -238 479 235 256 -427 343 495 418 -539 930 447 -720 -131 134 126 543 889 -9 799 794 -840 225 -798 134 344 -629 -829 247 -99 122 -913 490 185 719 666 889 -797 -545 -278 914 -246 -856 -287 -736 -887 -992 -368 816 543 825 916 733 -321 136 -487 -965 69 -252 -195 994 -78 617 -28 426 962 392 132 751 558 909 -176 351 527 767 274 -757 145 -412 165 847 100 491 -332 222 538 320 139 833 682 -899 -675 -458 377 409 787 839 195 578 -802 -658 342 906 134 -634 952 224 824 152 484 113 -405 322 145 814 103 -500 10 -209 890 138 -175 861 111 127 -994 -875 500 377 892 -510 762 347 862 -856 406 890 -8 706 201 64 93 -360 593 -12 572 -218 509 263 409 548 188 128 -994 503 726 874 -315 6 -634 -233 -907 -802 646 937 748 -999 -938 791 31 5 54 -93 -550 -103 847 -370 735 -207 911 520 -560 0 633 -204 -133 579 825 722 108 178 962 518 250 -920 542 860 -946 -655 -985 161 -973 -833 646 151 581 144 673 -933 530 742 284 197 -597 845 -442 381 271 -991 -631 7 755 -384 -949 -496 -776 479 -616 468 88 -297 -724 744 939 518 626 -71 229 666 -726 -854 539 -325 756 304 578 980 -750 59 -937 -725 -983 521 26 231 676 280 261 712 -422 -498 884 244 946 829 880 237 256 -532 219 470 -743 -972 964 150 303 -769 174 683 -238 -487 -505 453 572 -136 -304 479 70 828 561 697 127 -533 968 969 -290 391 668 -317 954 -598 129 -738 611 -672 316 489 54 134 674 84 -272 -831 41 389 -3 -573 125 736 -212 -254 917 -668 -283 -309 819 -558 -319 254 -488 -470 983 950 -381 40 66 -24 -331 764 -751 -25 517 -231 838 573 920 207 -966 239 -338 763 -28 822 952 -8 -595 -642 -766 485 438 -627 -442 257 223 -418 322 -791 764 950 -290 17 989 985 -222 250 767 648 439 890 300 623 -245 398 600 -106 -442 414 77 -37 823 69 -673 333 252 620 475 684 -141 -560 441 -985 -392 -903 509 942 -464 959 -43 537 -508 575 229 363 696 403 -623 372 -475 -501 -435 309 -88 782 198 -580 -254 -889 850 579 -184 -529 986 818 685 230 209 905 296 949 499 -406 121 780 -825 181 995 -386 -642 731 -60 732 -453 194 -272 713 40 192 -166 8 380 248 641 -732 -670 983 601 655 -527 -800 624 804 -885 -273 -725 -643 777 -484 -988 -105 -119 -143 588 726 65 276 -775 565 372 146 326 303 481 58 323 120 -845 -170 956 217 130 637 -503 884 -35 1 312 915 -460 760 -981 -170 -368 720 531 712 825 -292 774 -426 220 -496 453 952 650 -152 955 -494 16 -914 951 340 -223 -343 605 -470 933 -143 -563 -733 -794 -650 -821 340 84 -727 513 540 900 -593 -668 536 991 -452 883 50 \n901 415\n-279 655 763 91 -450 887 261 -402 250 988 -628 655 598 889 -518 -887 496 819 -319 353 -899 -599 224 99 -748 -713 307 -549 326 30 937 644 -412 -676 -741 89 67 -565 670 304 -509 7 696 777 400 -198 -835 138 -228 945 963 162 -937 721 -799 576 -263 -677 -914 -714 643 729 213 -54 -129 -522 58 -533 -709 108 410 -267 112 172 449 833 865 -670 437 875 -745 177 699 650 -30 709 905 986 -450 -116 621 -557 321 942 404 335 390 851 316 448 -998 -918 747 597 579 -236 814 -639 -715 105 147 -730 -895 -595 783 960 460 -996 0 -523 789 -436 -780 86 503 894 -528 309 4 166 -962 -169 408 849 -560 -677 47 797 567 -163 285 917 -477 -416 444 431 -623 388 122 557 156 -531 841 -735 -127 694 -181 191 753 -650 -625 892 828 184 795 840 114 44 -571 -841 -404 -990 991 140 -252 -100 -242 997 243 -382 601 -289 -827 -736 85 652 -783 -388 -500 -59 629 413 599 299 -363 365 -629 440 519 -616 519 -272 -870 783 -938 189 678 -262 -288 -758 516 -238 -23 -702 783 -484 617 748 -714 560 986 105 -790 -807 -349 509 398 -665 -536 -123 41 -163 179 536 -892 662 -541 96 885 -535 735 -561 233 -101 -206 158 -15 734 149 965 578 -754 -249 553 -19 886 -916 561 149 723 219 -440 559 836 224 771 -14 292 904 277 312 397 -277 -102 802 34 45 936 -59 -598 10 97 -575 -59 816 244 -253 324 -491 -880 -448 27 -70 -327 -802 -172 404 728 164 791 979 533 -88 250 -836 230 944 717 357 164 -372 269 679 -87 823 -786 832 -401 506 712 882 -432 -744 -145 25 640 184 322 -625 7 655 593 567 511 419 574 875 407 -833 -679 804 587 256 -90 484 727 -828 791 288 400 -180 -955 281 411 868 -102 709 -780 435 821 -175 360 -646 514 -618 -11 667 999 -10 -947 495 831 -668 99 401 -557 -137 -194 941 618 95 929 -594 -875 728 -88 -36 -1 -361 602 -434 -592 -956 156 -681 -520 470 682 272 -775 10 -82 570 5 380 -214 -647 246 735 47 -898 -892 -480 -133 612 -682 416 -584 -312 562 -69 274 -214 632 490 -378 -689 -429 -75 322 360 533 490 -890 -312 113 -221 292 -912 118 989 -230 52 619 120 -467 555 -895 -920 -937 681 -889 842 884 -117 863 680 -394 748 208 231 117 -141 521 682 -69 363 -915 621 -611 270 283 -995 -767 -906 962 -241 771 822 -491 896 -37 -438 239 999 369 641 820 -46 189 252 673 -660 563 -206 -604 -202 -234 514 628 862 -533 640 -703 697 -603 580 158 -986 37 197 -756 -921 -923 -567 947 780 -816 -201 -655 -261 897 -512 24 -929 610 299 -796 -819 -313 405 779 -607 -337 -630 722 960 296 -42 136 883 -106 848 -132 417 -484 900 269 809 393 -294 904 -307 -736 457 614 990 524 244 -963 148 923 -292 -49 905 -151 161 -298 495 24 412 369 308 969 -792 -442 -194 990 886 541 -558 420 262 -720 394 609 629 -106 -412 720 -786 585 -421 -990 584 -964 -418 -720 -535 777 -630 -579 -427 -784 22 698 195 127 -443 99 -356 20 116 -370 907 870 -506 -965 958 -852 -146 -998 748 828 22 132 -768 -206 196 -171 210 -886 77 -903 -206 622 168 53 844 473 -205 314 -758 41 -722 794 572 -274 313 -706 987 -821 -760 -6 874 -406 952 -277 788 70 670 784 490 -969 -933 558 -486 -273 506 875 136 690 439 -60 -692 860 232 -628 -522 700 337 -50 -413 -291 -206 -545 989 718 58 39 365 -236 353 687 -829 987 909 951 -617 515 -644 -618 392 -833 -185 839 839 582 -887 -960 635 837 -481 133 10 -768 -821 798 -835 244 -108 -884 -674 1 -675 625 533 -283 333 -642 105 -971 879 660 -477 -342 867 541 565 925 774 -727 409 916 265 -937 -476 -300 20 -261 -6 616 950 355 -739 275 -686 492 289 585 -454 576 -301 -185 -586 225 710 274 61 -973 785 -763 -133 248 491 -393 594 64 -355 85 -675 119 -709 83 -353 452 -664 -356 -49 -34 -937 -469 830 544 -709 14 -525 151 -724 -68 960 256 864 815 -820 -227 378 501 -755 -33 805 477 434 -403 -305 -276 931 256 9 -924 -45 -147 398 664 -943 -722 914 -1 841 664 -837 -780 835 428 -252 -954 307 -217 -180 926 -652 444 140 -907 169 -297 769 -443 918 -461 -647 -505 -104 573 974 280 -120 -670 -419 770 524 371 915 850 646 -379 779 666 -451 -688 -163 206 37 -49 -287 191 529 833 692 449 698 149 -601 549 -276 -210 891 743 -74 333 344 -329 -488 497 -277 -103 202 380 895 57 491 \n826 13\n-536 332 -90 287 479 607 616 252 587 -683 783 -462 -968 374 5 582 712 898 -206 895 -720 653 -425 -315 857 474 297 580 904 526 230 692 135 292 538 302 66 -122 -972 106 -618 178 -888 429 62 714 -893 -271 669 68 277 -83 85 -278 553 -242 102 -731 539 -625 528 897 -929 -590 -913 473 969 -359 80 314 -511 419 277 694 889 -790 -590 267 628 -233 -204 451 44 560 628 349 80 -339 847 90 -395 934 -578 873 -164 97 -382 -339 287 -968 -273 199 -610 -324 20 -104 169 304 19 530 834 853 -255 -168 602 335 -295 73 574 933 739 -614 -443 -461 -712 -142 518 485 -135 -131 780 -27 -710 410 564 575 -685 -430 264 -811 658 -614 -752 826 -70 650 -199 -958 573 -42 -524 200 -42 -752 -873 772 897 241 656 -947 147 544 889 -583 -141 730 285 -306 -730 -11 791 -72 436 247 -5 -768 887 786 699 903 -175 697 264 -469 -404 -799 496 -518 21 321 -160 754 314 818 133 -765 -169 559 -533 39 994 636 -284 -462 666 310 -601 -911 724 6 815 -257 -355 629 -748 -450 -858 970 -805 32 -356 222 928 -562 -612 -649 952 852 239 146 221 910 -165 -410 361 -205 -579 -529 -396 104 516 432 409 492 291 278 -79 937 283 796 842 -732 -23 -96 -311 947 -402 -45 -635 -507 720 121 -876 -901 851 590 790 677 -952 -250 399 -810 47 31 964 -697 6 468 978 -410 -479 -722 565 -417 293 248 -741 29 -195 167 -852 -477 597 38 -410 918 -509 47 -953 -870 -247 736 1 -413 789 -388 341 -807 677 944 -780 427 -558 -350 321 -39 518 829 -499 -385 815 558 893 191 933 760 -351 -480 210 806 388 -929 778 -332 906 -378 759 237 21 446 326 -992 205 -934 -552 -823 -531 630 -203 911 -784 902 -542 -378 429 -163 -248 -304 76 956 410 201 710 309 -240 -765 -275 783 892 164 -869 550 363 590 589 490 110 973 -773 -143 770 -182 412 -389 969 -404 749 56 607 -836 416 -96 949 26 687 154 -945 -915 578 -398 972 -368 -596 208 -347 -794 884 575 -495 480 773 -377 421 643 815 268 -839 26 292 614 993 606 -211 806 52 -384 -472 -689 -590 742 209 -534 -472 738 -835 891 919 -346 963 -982 -124 945 574 -516 580 748 -41 -813 280 -558 -345 501 6 13 293 69 22 -531 295 -57 -254 894 407 -960 407 472 -296 -687 869 536 -777 -653 259 -511 901 360 981 -803 291 -447 -500 -392 47 -766 862 306 39 558 83 340 78 -482 865 -332 -797 754 713 156 845 68 -607 107 894 -686 782 -10 332 -326 746 -960 -380 -210 396 -302 987 768 929 -651 -744 487 -76 -834 821 -340 -735 -167 -617 150 -942 525 -961 -586 692 115 -571 -257 724 123 289 749 146 289 972 -759 711 218 -303 555 424 -298 -552 530 -687 -349 906 -623 329 895 261 -996 30 -164 740 250 -997 -1 142 692 733 680 887 45 69 944 652 -901 269 -147 818 -24 946 646 223 -670 526 -677 103 -940 -190 861 -200 522 530 807 -199 611 -848 124 -793 705 74 -363 -547 14 -251 228 315 524 350 -17 -668 453 -711 480 438 812 -280 923 795 50 -782 -559 59 -346 -841 -40 897 -142 119 924 396 -87 394 -235 -847 609 581 62 313 -204 547 -605 677 -740 88 -663 -723 -938 558 341 750 330 417 871 613 -931 -51 -830 -618 -929 369 -993 -901 -318 -725 977 -745 -861 562 -516 78 597 371 -301 982 165 -524 210 -225 954 -46 805 121 234 792 -756 949 125 561 530 922 446 -775 -771 -414 -190 947 419 -820 -722 82 -744 891 976 414 419 174 622 -619 -292 237 611 -818 -571 -138 -676 450 -327 846 160 690 106 826 -780 -592 83 118 416 92 243 -261 -992 878 281 950 764 -420 -351 621 -625 125 154 136 45 -865 277 723 879 855 79 925 653 -374 -144 656 635 227 -904 653 -555 41 745 414 88 604 -583 -73 -2 518 -639 -148 -837 -875 198 451 777 -492 -413 108 451 87 356 -892 67 629 -379 431 332 -11 290 -203 87 593 -907 -701 -577 -998 419 -692 112 683 -909 -425 538 -83 -671 629 174 922 -82 -211 -153 -307 422 674 -18 -159 -164 476 110 813 218 105 -37 861 -491 \n737 339\n-14 46 298 585 -892 494 406 158 -652 -443 154 -505 845 95 882 576 253 133 219 629 97 -440 342 544 286 306 345 -835 -123 878 149 389 -205 -94 -297 -904 321 -557 54 891 -622 -894 697 696 -560 52 437 535 -94 848 270 401 821 -462 254 -526 298 -176 556 248 -212 129 -984 -429 280 107 -624 -985 916 -491 870 186 860 -607 -16 290 432 -111 407 -360 -419 -841 529 -623 -525 -539 47 782 378 436 -855 30 938 -251 -611 560 -303 -576 367 228 -402 -294 607 563 526 -399 -64 -549 -51 -368 410 364 20 560 -276 -120 898 -933 664 -720 -111 -559 -618 871 619 -763 606 -52 -491 602 535 -489 -197 -656 -704 854 -701 -469 -943 123 -395 71 677 9 770 534 944 170 779 -454 -969 -668 0 472 142 146 -889 -874 625 -795 443 443 983 937 260 -576 -146 579 544 -401 -71 580 287 852 360 377 -692 209 -580 -671 320 829 906 571 933 -648 -34 312 299 406 -12 596 -839 202 415 659 7 742 -371 -571 -599 628 783 -566 -239 960 924 700 -194 -347 848 366 -129 -402 340 -684 -110 -13 54 743 250 265 -424 576 -511 831 455 591 -166 -922 365 117 -794 500 31 883 75 -794 752 288 -533 396 796 615 126 -902 214 -487 652 809 -347 665 524 42 668 -5 676 738 343 -822 618 -501 -567 49 442 -451 384 178 772 -66 844 607 115 882 321 -467 -616 -904 -624 236 -61 195 439 149 291 -410 936 309 -164 108 400 518 -394 550 -729 119 470 833 793 483 921 409 -816 504 198 -487 238 48 -54 136 -514 411 691 180 -940 -955 -334 423 37 223 426 -348 -633 -769 -838 -685 524 696 -654 -76 826 -982 498 837 901 675 422 274 -443 336 -512 942 517 269 -46 386 609 924 -285 -291 161 -172 -59 642 898 510 214 -210 -470 -531 922 -766 435 476 864 216 250 201 -809 387 984 227 911 -50 576 -521 -708 359 127 511 465 301 350 -658 744 -398 668 62 171 -278 705 456 355 102 -957 844 -457 -794 -327 80 -769 -123 -62 999 -90 -37 19 960 183 954 948 860 273 662 27 107 82 569 30 -127 -436 424 285 -760 112 668 574 886 -407 -433 516 -858 -789 928 420 246 737 630 558 -760 -590 715 -986 -891 493 -428 537 22 288 -258 992 27 889 -800 344 273 -969 664 -856 19 689 919 818 999 -45 -332 -258 -15 388 406 58 -483 897 35 769 517 -525 273 535 -60 659 -721 642 929 794 -175 -636 749 391 907 -523 42 360 347 -847 117 -794 -15 88 -898 -267 -859 462 72 993 -153 903 657 922 20 -597 723 945 -62 220 690 -32 467 -368 323 152 364 373 603 699 733 606 -142 -674 -503 879 -944 -679 -799 866 -551 845 229 150 455 -314 878 147 -437 444 2 -583 476 866 446 756 444 -182 -619 128 734 -993 -174 708 921 -711 246 374 512 311 -489 -751 -865 -573 -503 421 -367 24 365 -225 473 371 -180 -202 -377 640 -31 -9 15 792 105 -355 -619 -757 452 386 918 -312 -771 5 346 235 -737 675 573 -913 904 708 234 681 691 792 952 559 780 -933 -329 618 -759 110 -19 -143 -404 -238 291 580 665 -793 -446 -966 990 -820 110 140 272 120 -83 985 -671 155 815 70 -679 655 912 222 210 249 650 -217 12 731 -827 545 486 -114 165 -672 829 392 503 80 736 484 -548 -97 -437 -413 -723 -758 -196 -523 182 -128 1 238 -11 426 423 773 46 -628 -328 392 420 160 -166 -934 273 624 574 336 403 -446 151 43 -789 26 960 -803 670 119 255 187 559 870 714 581 520 -154 290 977 68 35 626 -997 -168 67 -645 266 -32 -180 -382 -87 610 168 534 164 -344 767 417 -80 -714 37 -240 675 -323 -465 -25 -645 328 -703 \n899 185\n-545 524 638 198 -449 -70 -981 691 551 529 -425 106 78 -772 687 50 126 -885 106 -828 858 401 701 -294 -505 551 867 802 759 989 551 639 801 2 140 -239 -748 514 367 -735 174 477 240 675 -51 385 -596 223 857 155 -614 839 -549 378 249 136 556 -244 783 -749 -643 662 614 -155 472 -777 598 501 814 968 428 545 -5 -939 -402 440 -183 -839 900 946 -940 771 -133 488 -679 572 -416 704 223 122 343 -165 599 -241 488 36 910 -889 834 528 -703 327 -997 519 802 -201 751 -195 -10 510 912 562 382 -428 215 -742 728 840 -458 590 -224 129 578 267 -585 293 445 -819 243 995 -594 481 -320 103 -824 -675 16 -401 744 43 -149 854 326 31 -270 510 28 -954 560 116 319 232 129 -826 136 117 -644 -234 -837 -655 -824 902 773 -135 720 -960 975 -644 636 -290 452 240 -134 784 224 -770 -151 -713 125 90 888 258 792 456 193 -691 50 629 -269 -632 -704 384 83 266 -580 650 -575 179 970 443 -576 -5 331 -659 -583 -755 533 201 110 -190 673 -504 343 -202 748 237 216 750 431 -634 502 -904 167 -390 70 895 909 -803 174 887 871 -470 -130 296 221 555 -32 -911 565 742 -925 -868 -760 395 637 570 515 -631 -686 -251 -79 581 301 -617 961 -746 -217 909 970 521 187 132 896 975 -676 301 -347 -568 95 477 -785 353 -683 -131 -19 -115 634 -300 733 615 708 216 -642 -764 13 -723 -742 371 106 653 890 -812 -904 811 180 -125 510 539 780 418 -310 -596 504 -376 -160 444 769 -401 814 -479 -427 -11 465 127 -617 -633 827 486 247 569 635 -14 646 -604 -764 434 171 937 542 147 -208 -746 -292 492 650 77 212 -421 -714 836 42 580 -540 262 829 311 419 252 553 -859 -130 492 155 32 132 673 288 -899 -470 274 534 -875 8 -575 -809 309 303 567 848 528 102 620 29 689 96 957 985 176 -544 299 149 -641 -361 213 330 -364 -558 -412 -915 -253 59 687 -397 93 -98 241 14 -503 160 806 -691 612 -405 641 408 512 504 537 804 -819 176 -608 194 784 595 883 209 -585 819 -364 -165 -393 540 43 660 -88 88 536 905 451 532 674 981 -674 176 -332 657 904 786 363 -238 182 811 -90 -413 320 -337 -574 991 583 124 457 478 830 -129 -123 465 -229 665 796 -868 680 115 668 -342 560 -814 812 106 801 888 -106 -623 595 866 345 80 434 -706 438 -492 -398 599 700 142 -227 424 -561 110 -266 670 -814 439 -30 -221 -363 -15 -968 639 -49 770 60 -65 126 -447 1 -836 517 689 -693 -973 548 144 455 758 252 830 331 643 -372 506 105 325 693 -232 -494 547 23 391 49 -820 -859 745 -384 494 96 -279 961 -370 207 -51 281 261 -286 996 792 424 -889 829 571 153 724 646 497 -704 922 -17 447 404 761 -710 -500 907 -515 512 -861 197 -375 838 -186 -266 94 -123 231 303 -494 -478 -68 -109 -307 811 229 170 -97 208 578 -263 907 -945 881 256 -535 -828 936 -838 64 -166 -963 -352 635 228 -4 638 242 715 -493 525 -324 -176 -88 -174 746 832 -664 -295 660 722 101 72 -138 -16 172 647 227 -522 -820 165 242 -955 11 -750 -236 -402 -823 517 -331 -786 869 -894 -78 754 -509 362 367 29 692 -743 660 99 -201 -125 486 615 312 274 -333 647 -539 54 401 -975 476 32 387 462 507 319 -194 -912 542 298 678 794 -372 33 481 -993 441 882 265 331 630 725 -207 -508 -910 -215 -195 -443 -18 827 -742 -707 214 -756 374 130 233 773 742 -53 313 9 427 194 -332 931 480 -860 -192 160 -723 -867 292 -96 -174 849 -957 168 311 -535 -411 883 152 -782 161 -564 943 -974 328 830 -575 -18 364 148 -478 305 197 185 -141 919 608 945 -667 466 940 78 410 870 -597 677 24 697 413 -310 63 144 405 -15 918 480 504 218 838 534 265 -218 -669 791 624 2 391 -376 433 -454 880 -272 709 592 251 489 287 -204 830 19 -408 741 -827 -425 -419 -750 -737 218 -554 -585 129 641 431 339 386 -701 -652 510 -238 985 100 54 762 813 583 13 721 -708 938 63 841 -508 92 -262 -413 105 290 559 -226 675 420 731 130 -299 663 784 -932 -2 705 221 -842 -953 -351 425 561 770 234 -29 -693 910 6 -181 554 -557 82 43 172 49 723 -852 -360 187 968 769 904 853 911 671 763 974 823 -960 747 801 -620 472 -678 -902 647 480 189 863 867 407 -312 636 841 636 -840 -968 -804 420 963 -474 606 498 -132 494 209 274 648 817 895 -6 \n914 432\n621 -584 -503 540 414 -182 -69 848 201 505 611 532 -635 840 -661 225 537 519 -21 -221 614 861 359 -617 800 -605 459 -340 91 -281 -478 -783 309 -826 225 560 -736 154 536 -727 699 731 -980 -803 697 -565 -730 -646 177 -443 690 -428 -549 -342 -721 409 459 233 -799 400 231 540 -202 501 22 137 17 147 -764 -610 -57 806 -279 65 260 -595 802 886 -397 251 364 44 -365 20 734 132 -713 584 768 -473 -34 764 -236 -883 148 18 362 597 -615 335 682 -758 -881 318 -405 611 514 35 693 643 -6 137 -120 826 439 61 -778 631 776 -336 -847 926 883 752 45 574 -316 624 848 596 300 612 523 -727 871 878 390 -929 -118 -940 -34 221 982 247 -159 -139 687 -389 -903 853 965 704 -737 270 219 -373 -511 726 -395 222 80 216 -575 776 702 -955 811 486 233 892 673 -740 34 994 -204 -445 273 721 -733 70 951 736 -489 -648 -93 -107 760 714 -804 -834 384 564 42 616 720 -781 19 -804 798 -526 -478 -523 -553 949 124 -116 400 -675 -636 459 353 -943 914 -63 634 208 419 884 380 -15 243 546 -971 -323 -871 -108 -472 962 355 249 847 463 -357 -462 -592 998 -280 659 -378 -34 -42 553 940 -536 398 235 842 -809 -371 434 798 132 764 358 -156 17 -550 -852 -645 -503 -277 651 54 -448 718 734 934 -168 630 77 867 233 202 892 501 225 -861 -266 -936 -26 -990 -203 -887 305 455 -151 -860 -552 447 161 441 -741 433 448 203 -945 490 -978 641 657 223 -676 -977 600 140 211 196 -307 910 -94 357 51 395 -793 133 855 21 -420 618 448 546 -194 443 -627 623 2 158 -106 -288 218 859 -979 -649 911 670 383 -801 862 -497 -621 538 502 391 157 626 -651 874 789 13 -45 582 375 216 -263 620 961 263 289 400 -164 808 94 -187 797 -422 318 -290 -143 -976 -581 -332 463 -815 -890 16 -71 339 378 365 963 367 290 -521 87 440 296 -251 463 618 -667 328 501 131 630 -1 928 -438 -354 27 359 609 -257 710 209 -735 -811 -751 64 271 884 -943 850 171 -268 -353 255 -122 838 -840 -934 639 -346 -190 584 720 467 -598 34 207 -857 763 -359 260 88 -22 -852 -905 896 -805 -331 613 -539 -862 537 362 10 616 -399 711 584 435 861 822 -917 -83 562 423 628 425 397 91 981 457 -856 -570 -732 509 303 782 697 -232 445 101 -790 228 800 259 -860 693 424 341 -542 -236 276 120 356 -789 900 -704 985 10 680 -369 -566 685 712 402 389 97 322 740 614 242 64 -159 469 -528 191 566 -82 -121 -849 -766 176 -596 667 -795 -255 -406 751 -875 331 33 931 -169 -530 944 873 628 177 -28 -286 237 -432 -122 -763 -60 -25 -99 -718 603 325 586 -810 -818 263 946 834 265 -359 -950 346 401 -72 790 583 468 -715 41 -666 -576 602 -693 185 648 -85 313 -734 691 57 195 6 539 -316 -322 131 783 498 -870 962 -329 -491 51 70 -129 930 194 -915 -697 808 -472 340 191 783 101 701 661 -824 -869 -249 324 -245 922 990 -229 -703 785 412 495 657 -569 -154 636 395 191 385 523 -849 308 -591 832 113 581 453 -263 920 -178 825 -653 -582 0 37 615 -189 -767 294 -841 -982 -205 478 705 -437 625 363 -985 -896 769 -445 896 -315 276 -659 1 -319 561 -719 202 902 398 934 -847 -144 -761 369 -69 -106 -67 -159 463 -266 272 928 781 380 240 -387 792 -968 -497 481 479 -506 -163 784 484 -264 522 769 104 -232 -920 787 -83 -143 825 -437 -109 59 -844 -439 -32 586 -753 586 475 416 997 180 857 973 544 -110 352 141 648 13 410 102 -194 12 -607 726 520 527 -353 -898 14 818 -239 496 -668 -840 867 54 -568 589 -620 -320 329 309 60 886 620 -98 979 164 259 10 522 441 385 -78 -41 424 -55 685 266 42 -2 935 115 17 795 754 904 -166 717 456 503 -557 587 -262 -202 -532 -359 -527 672 295 -676 -55 -949 199 357 145 -581 142 -68 866 509 -125 380 827 -778 71 95 883 232 571 889 91 956 901 -202 304 -466 -654 776 932 432 -479 963 -349 -969 682 920 844 -19 -153 183 -600 -226 549 820 457 579 257 522 85 -785 -764 -851 -14 499 50 -761 690 -116 75 504 -161 570 -203 497 403 712 -113 569 -120 -300 808 944 -262 -105 97 379 862 -94 255 946 599 885 857 755 898 -965 11 229 -452 337 -542 254 983 782 -875 109 649 921 -28 -112 299 -215 -844 208 -380 -291 937 -728 468 -675 897 -858 513 -235 -882 137 493 -873 -17 424 78 391 -644 -426 -477 -685 752 479 367 -724 -116 46 -863 -940 -611 \n950 387\n189 -653 878 -851 73 -951 -934 249 -130 897 446 -65 -147 -302 723 923 -180 438 -694 -359 -24 766 -622 948 253 677 -986 -757 -496 345 784 119 -430 584 449 -732 107 503 -874 -411 287 718 -381 446 -180 962 -774 -82 -369 794 735 2 -50 -794 -836 301 -142 75 591 -316 -487 825 589 405 -390 -244 111 434 -933 -119 690 138 315 884 544 -175 -291 -151 -396 375 165 958 -642 451 491 431 821 -979 725 58 671 64 -118 -3 333 -208 -789 -273 -128 638 -278 833 -885 735 878 820 -909 -414 618 685 806 49 -944 -836 873 809 732 -670 -506 14 396 474 163 353 21 -349 192 968 964 303 148 174 -950 597 -579 353 -792 -333 606 938 -216 924 -371 -736 770 411 -731 869 -307 -350 969 983 -162 788 617 384 906 185 959 -278 402 975 668 956 141 209 277 296 -490 -311 611 139 -989 -917 308 220 20 -587 208 965 602 999 141 -380 112 382 -971 -276 -407 -751 273 345 671 152 -103 -815 -964 -87 633 252 -19 562 -50 -330 -761 -559 447 -134 -989 117 608 -891 617 -457 99 319 20 722 8 997 235 -597 926 994 260 10 -485 -200 842 565 -617 990 348 -743 669 901 437 -130 542 493 589 -136 924 -982 -502 -484 -772 -295 -512 887 -665 -363 22 733 94 663 736 878 -926 406 -351 294 -884 965 -755 660 -59 -398 304 -527 656 697 -580 -396 459 262 -259 -689 -9 653 828 -646 725 -879 713 -942 802 714 -586 699 -226 112 451 607 939 713 -674 -203 733 -213 -34 260 -309 -762 -107 33 437 372 271 831 737 888 590 -309 -892 128 -939 -233 457 586 -381 33 -34 153 951 -922 669 154 -456 -948 49 120 683 995 -798 321 233 568 698 -31 -74 518 501 112 40 646 -718 -78 180 924 -619 103 606 360 613 974 578 37 42 593 229 13 -985 817 924 243 641 157 334 136 931 647 -285 -743 -531 53 801 737 -371 313 532 721 160 474 599 472 -844 873 140 907 482 -180 346 976 668 543 276 669 672 902 -706 -721 975 940 -438 -881 373 823 -881 44 636 338 244 -479 409 521 -311 314 757 -529 829 561 957 757 237 -492 -75 226 179 552 -875 -572 -494 227 -54 -551 -383 924 -722 919 136 953 -216 200 411 -134 5 222 614 -981 -2 542 758 953 892 708 -953 -601 -332 -410 154 19 -312 -568 456 -175 -241 734 -192 480 659 684 343 -695 663 -403 513 543 -740 -633 -693 417 610 -824 582 113 254 103 155 728 185 720 407 353 505 137 -43 -164 -990 363 -943 309 110 382 589 582 -146 299 414 177 -23 -960 -650 183 -461 672 -413 996 931 864 196 -144 993 -467 460 983 517 679 244 482 375 694 -942 252 389 -590 -650 382 -448 -321 595 588 644 -797 207 221 -820 69 -675 -399 428 526 -741 -273 -733 811 985 887 332 978 740 265 387 -365 -804 -836 -959 -802 -382 -176 41 -588 918 784 -13 -351 699 -861 870 311 945 -508 -399 -10 605 155 -531 761 268 -496 319 667 292 -498 331 330 297 669 -132 900 -794 -195 -173 -836 -97 318 153 678 -847 -47 339 311 950 122 814 -386 452 -215 133 -244 751 -322 -924 -761 -43 84 429 764 574 -744 -837 -612 -741 287 -316 881 -996 -661 -9 -755 -986 337 875 667 498 193 328 -576 -635 491 898 36 -721 -29 -517 -892 58 543 -755 156 633 -668 -153 -280 -231 -452 255 -692 861 -669 835 -637 836 213 46 61 -781 -985 446 115 49 641 803 529 314 130 -314 845 711 -475 764 376 -860 -201 776 -402 888 771 925 388 790 -278 -809 -300 733 466 197 -788 -144 219 287 -924 510 705 742 35 -122 520 913 250 532 -169 65 682 -23 951 786 -89 -721 -243 110 -937 262 576 -954 -336 -397 -808 -359 65 -778 926 355 -305 -218 -337 925 947 50 -479 532 125 200 992 -345 -945 -272 -910 576 837 585 948 -515 -155 -141 804 447 417 933 567 -949 186 491 290 -538 180 990 115 479 808 617 672 -538 869 476 464 443 653 -841 455 529 990 720 886 154 547 908 281 -78 136 -292 -920 229 -601 779 647 -340 -852 720 158 -381 10 31 609 -379 499 502 -953 -50 215 -649 -345 -37 45 -518 138 733 -695 658 -712 489 -700 810 194 849 606 915 878 -650 -241 -762 -810 525 330 44 -188 424 645 576 748 -539 350 928 652 180 -345 988 703 -804 570 -871 183 471 934 976 333 -304 -415 -394 -86 203 652 -548 -424 121 -463 -865 689 656 93 -841 215 832 466 599 905 423 154 217 661 533 -753 -179 936 201 -44 356 434 778 -326 -256 687 887 772 -356 -343 64 -649 781 6 907 -706 -825 -109 -536 283 660 479 76 -817 213 -13 242 982 295 -522 469 624 -672 904 0 -786 -229 -713 -975 -601 388 223 -563 -816 928 421 -393 37 441 563 339 442 497 -598 \n901 178\n-875 613 733 -542 -784 -258 -253 -199 -71 -456 -639 666 833 894 382 -123 115 -750 -41 852 -174 -767 637 -920 305 -972 -208 617 -758 -938 -935 -98 825 542 -512 -854 188 269 -769 702 589 538 768 151 511 131 544 258 -429 -940 243 739 -690 891 666 90 -260 -810 142 661 -251 -617 -875 -428 -871 -305 -856 27 64 -98 640 956 -564 853 -60 258 -820 715 191 223 -239 405 344 495 -678 529 -604 -659 502 139 -545 -615 42 154 284 516 910 415 300 175 -44 769 836 -352 987 780 453 660 -955 301 -618 -739 402 383 -610 890 426 970 914 978 449 -758 8 -344 -512 165 185 -811 756 766 532 -489 304 227 -12 -434 2 -4 730 643 953 393 -809 -677 -157 660 -920 843 -607 276 -372 480 -204 -84 -507 95 662 -578 450 -840 -76 336 -160 81 709 -30 -600 827 369 -671 291 -185 8 415 596 525 360 -939 3 891 -972 737 906 -748 719 380 -635 499 -573 241 -871 283 147 21 -568 912 202 356 -257 538 -464 -467 921 341 927 -104 196 -387 484 541 273 417 -425 184 -61 749 -27 -830 -366 -807 548 387 -321 -669 403 99 365 93 -879 997 -718 -727 48 770 19 -16 902 -883 904 984 383 168 -460 957 -254 -138 -764 -302 -615 234 294 880 668 559 -591 445 -122 932 -238 -48 453 895 567 634 32 804 -905 800 -973 24 -704 955 -531 142 211 431 -595 197 327 -604 -51 -472 394 736 931 757 321 907 -739 263 723 425 18 612 -308 -420 -408 407 443 135 -333 415 660 252 -552 -398 -255 607 -505 347 910 241 519 113 -27 238 723 294 -768 199 -763 756 -45 649 -288 555 62 -324 -552 805 -954 308 -557 -329 757 747 148 -257 470 406 351 724 826 -412 356 804 -400 -634 -275 -633 571 385 -164 156 -507 830 358 285 563 -274 -993 -605 -836 -528 301 -421 -289 929 -713 -653 -890 595 189 -310 -234 701 -744 345 104 -557 972 622 521 146 -684 590 -29 -698 173 744 -165 -510 106 -800 108 81 -374 731 243 901 -182 676 626 94 388 707 -214 540 789 385 -118 253 44 189 -261 -9 -526 802 451 -61 -595 -726 -604 425 -419 460 -703 945 735 -611 -448 -383 947 261 175 -903 3 434 158 282 -907 -490 799 588 -877 718 -276 423 199 -456 461 -181 570 406 998 793 309 -579 406 639 -655 870 -586 16 481 729 415 -711 -938 -91 -379 358 -432 774 357 578 702 138 -744 146 905 296 132 868 961 112 -85 -240 534 -764 850 140 97 -163 255 -518 -870 783 612 285 -945 430 804 -120 318 573 151 85 -903 -528 688 628 922 451 383 -617 -945 -485 752 542 472 472 -354 734 -866 226 -673 -995 356 974 877 -777 697 52 745 -1 -132 -533 389 -359 -713 -120 980 396 148 432 -54 4 -152 852 -431 321 -650 309 551 95 388 483 904 166 -795 9 243 723 712 476 -595 -583 594 -456 431 -31 515 995 -645 898 167 -600 -66 990 528 -157 -547 -123 445 269 223 -814 470 -207 162 672 -657 973 -52 44 896 534 -432 68 -737 -221 -486 -349 -309 -847 321 895 -105 1 258 686 -400 424 531 571 383 191 308 331 304 285 -281 -231 -568 -268 338 -739 -769 -747 -186 -40 48 396 -913 945 -943 526 -802 -601 780 997 -782 -52 -249 -598 39 -674 74 -531 821 935 930 -757 708 949 999 517 -444 728 1 713 632 697 -327 -397 -920 300 186 -496 -192 -778 -855 331 246 432 401 -469 -39 590 814 -434 -930 -65 541 -743 276 -313 38 -120 171 548 346 418 -467 -857 526 -489 868 45 -885 -835 -49 -106 379 667 -570 787 -106 983 -652 561 209 587 -652 545 712 -284 199 428 -694 165 861 349 -707 -765 -233 -487 -982 855 731 -428 40 -9 15 -879 -246 982 59 227 -156 700 612 -746 -21 -598 922 815 -99 35 311 780 -285 -357 780 669 -372 -203 -92 171 646 -527 103 82 803 -329 -577 779 506 938 936 715 29 -26 273 153 161 459 -756 -932 -279 500 -59 243 -821 247 -807 -659 -246 866 123 341 -318 922 -191 22 639 -795 143 -101 -358 -513 -737 -824 591 291 139 175 -853 779 322 -567 -675 103 276 768 -158 307 -439 88 -847 -508 719 582 -718 70 356 576 162 720 -505 757 -547 -603 687 -51 16 902 -560 819 777 245 -637 312 94 349 176 996 -766 -321 322 874 -81 -729 959 861 -646 -389 573 -528 -143 -566 536 -44 -271 -718 553 973 171 -419 274 -245 158 -233 636 71 -731 125 -593 -645 -503 -994 -186 -555 468 279 2 994 591 -679 434 -742 -195 -415 491 -640 -812 988 -559 317 -533 \n919 382\n-666 9 853 -709 350 -735 555 662 -12 552 -383 16 405 262 767 199 -364 -414 487 107 901 19 692 601 -515 756 -397 872 -711 105 -61 670 208 58 515 -625 -478 137 -354 -902 -773 -291 -505 877 473 114 131 819 -220 702 -464 759 697 751 131 293 797 917 -946 950 977 801 -129 414 161 -33 -55 549 520 -455 -968 815 98 19 81 -324 784 604 23 536 527 -971 -825 884 -569 1 161 587 -923 979 -926 238 -653 589 669 -808 550 525 -963 659 509 603 357 737 489 -40 -313 12 82 356 578 -167 -501 -469 480 -618 -972 -639 630 242 -52 671 730 -47 373 823 -312 324 318 974 575 514 94 -413 -98 85 -836 506 248 -749 496 912 -853 71 -975 -365 727 714 747 -155 306 98 32 -872 596 608 -457 702 538 280 -721 204 609 594 -538 563 382 -658 -106 -490 318 -424 1 434 286 -64 -468 -674 709 -75 -580 -956 -341 916 24 310 -150 540 -839 -579 675 382 -167 -423 403 -692 -490 -119 785 -640 -723 910 108 612 725 465 631 507 276 -28 186 -453 -81 -530 736 71 875 -330 -631 72 73 420 972 -485 217 224 -676 750 212 -528 267 831 -655 304 281 -201 -876 397 96 446 919 444 839 984 -706 -982 642 -787 745 195 -432 286 326 811 59 294 -278 46 764 866 354 854 405 -416 559 592 653 231 -119 775 967 -779 462 -320 427 189 -757 335 59 -208 250 248 -791 181 -918 255 -882 663 -374 -482 -387 984 -947 777 -390 962 938 844 888 895 -892 989 150 -17 655 674 -862 667 228 461 372 -558 783 988 334 605 -250 569 -305 762 -681 -738 -650 662 639 -362 798 653 -912 214 -339 695 862 585 -700 -593 -332 -905 672 -706 190 616 116 -214 -191 -756 300 790 -872 487 -574 982 -224 -872 504 846 -927 288 -589 -521 986 5 668 825 -466 723 289 -250 477 -494 770 674 -99 673 -907 167 402 50 546 817 490 595 787 -491 410 91 -285 863 226 155 340 -519 46 906 925 -325 602 -177 -437 -651 920 375 683 -92 795 -119 281 25 -264 981 -615 -453 656 -628 191 -914 -799 755 714 -657 -800 -107 -242 -446 598 683 -310 849 12 109 -353 -311 -647 798 -787 95 -735 -594 854 549 170 -45 -594 -10 768 -171 115 -418 -31 537 894 556 -297 745 -871 718 530 26 -869 -439 290 294 788 891 257 -162 146 -435 -990 122 395 114 734 818 726 488 -148 -422 805 395 899 27 545 505 -749 980 -419 -671 576 -6 804 518 -180 -660 950 -905 734 -716 -905 16 -784 39 -287 -176 -118 -333 168 736 -963 -271 127 13 810 -203 -235 -63 37 -644 231 -722 394 8 930 -358 808 -216 360 -784 679 626 -591 55 -189 370 -66 647 402 165 -626 -217 533 -149 -792 129 324 353 684 942 -192 -418 -498 -670 951 102 -911 152 920 -888 456 -504 538 142 -348 222 430 -218 349 751 -280 810 259 315 -258 177 -432 445 314 -451 997 471 95 364 796 699 -671 -210 -564 171 -107 -454 -760 -497 -681 663 -704 -272 578 376 903 -97 834 -381 -539 -494 459 553 528 52 106 323 -125 -825 -776 -932 85 -610 522 -867 320 839 114 306 -711 44 -324 206 572 338 89 -178 880 444 -223 373 -858 603 71 -399 407 -187 -574 944 -940 332 885 185 174 -353 161 529 995 -196 -835 754 -830 -272 -65 402 478 -405 -804 -418 -280 168 296 -130 689 -873 -878 914 317 635 -277 370 859 704 -685 36 -790 730 323 197 21 -898 712 -424 555 -461 -658 -34 337 -146 -177 431 719 726 979 -148 191 -152 817 -451 -122 -405 -624 810 520 501 592 84 -973 156 664 326 -982 754 408 627 944 -276 166 737 906 544 -282 -473 502 29 586 539 68 673 439 744 -303 584 -405 87 877 -668 103 -8 -451 200 921 220 -775 419 -132 755 133 -459 573 -524 -867 504 -110 953 12 -301 580 32 -480 -282 912 -843 -722 341 30 177 498 -764 -865 -107 33 44 212 31 -983 166 242 353 944 -212 480 565 978 8 -198 358 481 918 505 -738 -900 -981 556 -19 -325 -66 522 136 869 269 -910 826 678 490 579 64 -270 185 20 -811 283 -510 102 -339 385 -194 304 -792 -62 104 -826 -385 -719 -81 539 -857 280 929 826 -940 -328 976 886 -231 -962 -953 -374 -6 221 518 289 675 437 786 -807 246 -384 349 -966 279 -290 4 86 -622 409 351 414 555 -761 -553 -428 414 594 363 -58 769 845 770 99 625 -267 52 -794 104 846 783 -811 70 885 842 -176 692 781 841 517 639 130 869 348 467 -402 -874 -42 997 771 -456 72 504 368 -355 412 377 456 363 -429 875 -30 -933 714 676 650 -423 4 285 -535 \n892 27\n-329 838 406 -366 949 543 761 968 197 -422 818 48 -662 69 495 347 -753 -953 324 983 649 916 -982 -80 352 300 89 -326 291 97 396 861 330 -970 72 -419 801 433 324 109 937 987 804 891 399 33 253 239 -60 666 34 -514 -796 -774 274 584 -463 332 48 615 739 -549 874 -195 -200 495 -3 -13 587 139 -33 -399 -931 -631 552 -506 391 -69 781 504 -30 -130 -411 650 77 408 137 516 901 701 -450 -404 922 930 595 310 853 692 329 603 499 910 65 725 188 500 518 -445 -460 218 351 -589 -766 -51 238 -270 876 -955 170 652 632 510 -709 669 854 238 -255 -381 352 -993 -793 493 -185 -72 211 -287 98 354 -79 -876 280 438 387 95 756 53 755 871 729 -702 125 -688 474 175 859 2 -169 -323 468 -665 609 678 -291 -140 -69 571 -183 742 -671 567 689 48 -442 539 -394 700 104 838 978 -331 789 553 -602 169 394 -801 -83 380 347 -952 164 801 921 -180 -568 846 264 -270 5 289 -834 901 -959 -663 619 177 -259 -238 -531 -800 148 916 359 28 121 254 -208 -571 645 162 18 741 958 581 198 778 -519 -69 -729 114 -854 816 -59 -499 -110 972 865 926 22 -692 676 -642 -816 -737 55 32 -515 -23 -884 821 729 -788 -200 691 546 109 -506 -136 -888 -113 809 -197 57 -291 739 121 751 140 622 -980 -571 127 -259 220 -686 -291 -950 -83 -71 -636 471 967 368 -387 988 417 9 177 525 302 -571 -664 230 1 -790 603 417 -143 107 720 713 378 -179 757 -384 7 -310 -224 426 -87 621 -870 704 882 -209 933 -166 919 809 -194 -13 -941 312 -796 338 -853 845 718 485 94 -17 113 -43 312 269 416 -540 -393 393 802 21 564 149 -188 -399 980 -52 -484 831 -45 796 415 -420 100 -8 964 -92 -466 -398 -990 415 -117 474 102 -970 822 577 -783 598 316 254 368 -886 -952 560 134 757 -831 82 551 229 -564 666 712 41 -211 -402 704 -68 -166 10 691 -136 436 -316 88 -400 637 -759 -458 510 168 597 955 558 -237 -301 868 592 155 -561 727 762 91 497 646 -788 -786 622 -473 763 435 -624 -171 655 963 537 621 388 260 856 -658 148 651 -974 -673 187 -322 276 935 874 -518 139 219 -910 626 523 319 958 258 -949 -573 520 368 265 400 596 459 208 335 -910 -419 523 214 -769 623 -90 788 -543 -263 -470 -30 418 874 152 386 -535 -785 55 525 230 674 510 230 299 910 643 -497 -735 -67 -322 -549 487 -387 -496 806 708 323 -264 411 -313 -197 481 697 193 790 -478 439 423 569 -325 672 132 -698 49 980 676 -924 -784 -198 233 11 485 -663 326 -122 199 802 -453 -607 200 -575 498 642 -63 865 782 450 -919 967 -669 824 -646 246 -112 610 694 -509 147 353 -399 -392 -560 -972 923 694 -483 666 -137 -883 108 -716 451 391 -17 -504 -583 -76 849 -959 -122 484 -289 -89 248 657 -466 -843 -726 -659 289 -296 -512 46 -646 708 -475 -577 -398 -211 -733 880 930 968 -719 354 405 71 26 -260 -514 732 -887 -45 -147 -441 213 -928 339 444 503 349 829 -462 68 -512 -499 61 -133 560 -128 563 -491 9 -254 373 326 347 49 245 759 -960 209 873 -630 626 492 649 -237 931 794 -309 -307 651 344 181 -858 294 741 94 -738 347 -880 916 67 -102 -568 786 -975 631 250 780 533 105 751 -566 152 355 955 330 934 -227 743 -254 498 -254 328 700 -826 -513 150 -416 513 187 -942 -309 734 608 -744 912 219 88 -162 347 719 5 875 148 332 -673 784 -483 -234 918 -251 176 586 -228 591 579 -532 -135 -117 -786 66 -15 -754 -934 379 126 -735 142 -992 444 -552 466 -530 822 629 -801 -506 -939 612 -725 984 -798 461 -890 469 31 396 -298 385 282 651 347 621 -847 141 599 42 336 948 180 152 118 -572 42 872 -99 -982 95 787 129 918 54 -648 738 205 524 890 199 551 186 943 690 142 862 19 -851 774 497 611 838 567 882 634 -835 -526 362 -960 -301 -748 750 742 836 334 320 307 -299 -627 -662 977 -186 785 -954 -153 477 368 472 251 43 -477 -899 359 849 -232 256 -223 477 567 -562 162 -435 897 -564 787 34 876 58 191 584 -791 969 11 -298 -673 466 804 -381 952 939 925 128 -690 -533 -173 664 432 855 -157 306 -694 930 230 -428 244 259 -186 -549 640 -349 846 617 842 -956 -351 990 479 666 -73 521 -670 -638 -497 -353 702 -440 861 267 502 -222 -222 205 363 602 -533 -363 990 -634 891 893 \n743 128\n-845 482 992 -357 -397 -103 -335 -867 556 73 83 -909 400 184 -859 764 582 730 878 -487 124 -398 284 351 -629 737 -298 -635 -808 -170 754 -870 346 493 737 508 152 707 -471 832 -886 -79 -458 193 635 99 -788 193 -234 425 -696 188 226 875 305 -135 -143 796 443 814 567 173 -736 405 158 497 852 -992 442 528 930 475 175 -127 101 195 109 -975 -343 802 149 -986 109 616 320 -369 -993 764 -576 625 -551 959 724 -561 -161 913 -897 -486 803 842 -427 647 880 379 -56 921 -883 122 158 -372 -406 -658 904 132 774 456 -757 921 477 -551 -216 655 223 933 577 -87 869 -651 -331 836 366 633 348 63 873 512 240 315 -132 30 -734 -2 776 438 690 894 -426 13 433 -953 -964 119 736 -398 -442 519 -269 -653 85 -490 612 307 771 -629 60 88 -845 -226 360 -247 720 -896 -942 425 565 -440 851 459 -721 208 933 739 -350 780 423 751 -40 -120 97 246 880 -919 741 740 332 -175 -339 -490 813 -490 358 340 -208 -543 -733 586 38 647 811 624 396 344 687 470 843 -926 -717 992 -769 -981 203 -999 478 576 869 -894 976 -997 274 350 248 887 868 763 -3 179 211 812 378 587 -915 -343 338 342 -745 650 340 -333 139 19 -461 272 349 -433 952 -719 996 377 16 977 -871 -667 -934 921 369 -138 897 860 329 -815 849 -708 -354 414 -282 736 307 -472 816 930 -359 -343 -333 -240 982 685 988 451 275 950 914 843 524 521 40 408 -725 171 -530 330 -957 388 563 75 704 -256 655 984 -419 -975 -399 492 203 397 -752 517 -327 -274 -964 -564 -705 -452 984 -705 472 -144 885 317 -649 181 463 -646 281 241 -320 367 925 434 -654 85 -283 815 297 411 806 923 -934 655 -830 801 -799 395 -438 -411 -153 61 572 -153 636 767 4 -640 103 -247 405 -704 769 -416 594 134 705 -264 178 800 407 0 -225 355 712 519 -253 552 102 -199 706 -435 269 -254 -830 11 848 -958 38 637 -474 -493 -47 721 405 903 902 154 -543 -519 72 818 -704 881 -131 437 -837 -892 -507 -897 560 384 -429 748 493 -12 -872 -566 686 -474 79 643 -752 -825 777 850 -413 -658 -425 -681 -56 308 14 678 548 368 -811 -63 -909 -638 -352 -355 780 670 376 -495 -672 215 -937 -587 -472 -820 144 746 962 66 -850 -37 -519 -827 123 -280 748 934 435 35 683 85 708 -51 -376 309 -469 63 453 -698 162 899 966 -592 418 -616 -373 579 559 650 -279 -192 -834 -377 909 777 -805 -601 740 549 -151 698 238 -110 -339 760 839 770 617 -771 -184 722 -555 104 -223 -22 -785 -191 709 -951 807 676 -727 -259 -682 46 -78 -653 -198 979 -303 690 -594 -321 188 301 -378 238 -48 -804 -708 617 895 -848 -940 567 -372 697 432 -623 881 288 517 62 -714 244 -264 141 -674 -285 342 830 -557 580 581 178 661 -737 -880 613 837 811 270 -352 -961 -100 852 -199 -724 34 367 -145 439 95 -170 -131 -801 201 534 68 498 123 -965 -954 7 219 774 460 865 42 749 -934 190 271 448 -881 -302 348 139 456 743 -223 676 139 89 419 -95 -120 627 340 -827 -925 -893 463 644 -304 -771 -295 -759 207 697 761 41 96 -937 -121 537 186 526 850 -105 482 -973 -378 -369 303 -847 996 307 -582 984 -21 864 423 427 -519 570 -679 -891 -113 -200 308 -899 -52 -429 -611 64 -608 -681 173 -90 709 -134 -501 -879 -531 837 -484 183 946 135 990 281 146 748 -355 980 821 551 263 -719 592 -679 -338 66 693 200 376 -170 -364 408 361 65 -949 -459 -890 -3 488 -552 -451 -115 -702 825 -199 308 845 -431 664 817 584 315 -856 525 36 -630 185 939 -844 794 437 -471 173 631 351 -675 443 -999 408 812 -515 906 515 578 \n883 398\n802 405 17 -711 -44 -910 847 -118 635 -536 30 449 319 755 146 -290 -240 169 -68 -470 497 4 -424 144 408 62 518 -948 728 799 989 741 264 -243 -308 720 -353 25 775 -582 675 957 376 -302 616 -791 427 553 -39 -914 -393 68 843 -374 -335 633 922 462 -4 262 687 -698 22 148 376 -606 237 -873 -840 817 21 -711 -46 -647 57 492 748 88 -123 936 721 -271 773 409 855 955 84 -450 -46 -649 519 175 783 -593 -340 771 698 -996 -964 699 577 -453 258 -929 -634 205 327 641 417 677 305 -495 -36 399 792 447 565 -341 303 443 -860 881 745 969 146 404 905 859 407 768 497 573 556 949 772 42 714 79 -524 -455 177 -670 -589 -367 354 381 -112 -981 -390 739 241 -149 -60 30 209 75 287 435 829 -202 829 655 -461 23 618 241 541 -476 -171 333 367 790 731 563 -48 70 658 606 -855 -731 -128 -278 297 415 494 886 591 -774 -102 910 302 -818 606 546 398 658 986 578 620 -574 815 -952 497 -652 400 237 64 278 316 -388 452 -266 661 165 183 -241 859 859 956 -496 -568 -134 670 -498 -66 -642 934 4 268 662 682 224 764 -767 -632 -363 -886 723 -943 -511 312 654 -487 769 -325 991 -300 11 770 436 -447 523 580 -26 -428 -491 383 -830 77 -439 -456 744 -781 -770 -293 458 -878 930 -743 365 300 903 15 948 160 344 998 503 -126 -190 -155 257 128 518 650 -426 152 123 119 -846 985 490 623 989 -127 -637 -55 -625 722 441 442 195 -440 512 944 -966 -56 407 714 754 63 929 863 -882 911 298 674 23 -571 -108 -681 43 900 534 -760 -182 775 864 92 -717 269 -137 768 -326 -514 -705 931 717 606 63 -424 258 591 -692 -125 416 -860 -989 -628 -120 260 -541 397 -924 -749 -330 475 -260 398 -643 -522 -333 -773 104 959 253 -57 -538 -728 432 162 727 -624 -838 340 631 485 -650 -120 177 -409 405 -947 367 -444 -841 5 -22 224 -470 818 -551 620 153 572 352 33 624 -224 148 -704 -119 925 -503 -266 470 -560 979 175 -224 -754 -757 -528 -718 -208 217 -845 -530 826 -370 384 749 245 242 -807 545 153 969 230 167 780 821 610 -706 -941 575 -615 -514 114 -350 43 395 442 -778 113 979 308 -498 80 -112 -990 750 641 111 198 -294 589 422 621 425 332 -531 415 463 46 506 -948 511 318 179 -18 747 18 570 -945 902 677 29 285 -845 405 553 120 923 141 726 -886 131 -852 -151 -463 346 -581 -979 -128 826 765 446 -529 264 711 824 137 -783 -715 773 478 411 -347 19 -637 -967 533 -743 -224 -32 572 145 -131 559 407 412 550 203 -992 855 -839 -580 365 -70 349 169 675 657 -485 227 -598 876 -569 504 635 789 708 426 -255 -418 231 605 76 232 839 -772 -371 805 373 84 805 191 -316 247 368 306 759 -179 -9 -39 160 928 -212 -903 130 694 669 -28 456 468 515 160 612 250 -343 -76 369 577 18 11 497 997 804 868 480 730 -374 467 -959 -92 361 176 177 885 556 31 -457 411 962 807 -995 656 -337 243 -527 728 980 540 -857 -398 -2 164 948 -31 -462 -613 866 -317 133 -944 -533 630 531 430 -169 -715 -710 979 231 -937 872 814 516 -235 666 18 984 950 980 -944 896 811 366 -411 828 425 98 74 858 145 247 817 913 -592 -935 776 -615 416 -602 -691 -515 703 449 -121 -363 999 60 -221 -376 -908 -181 -920 925 473 227 117 -860 267 -880 -747 760 733 467 247 452 -466 -374 39 915 606 -616 888 686 758 285 -880 33 -963 -697 205 478 747 -809 789 -232 -959 -859 731 145 566 -664 -513 -957 -753 393 -544 -349 285 -727 962 -549 52 681 744 342 -996 -658 -468 333 -687 -369 241 682 -225 239 -414 25 693 -684 86 941 641 851 -635 -984 -493 545 -870 -652 768 562 369 -149 -603 -644 285 -861 235 -698 -36 759 883 786 145 228 488 160 115 -361 -484 -208 397 -583 -500 -64 -225 761 -553 292 -536 97 483 -296 772 964 -257 -201 -383 -74 370 -916 888 887 648 206 421 -277 527 178 292 679 -522 87 729 -327 231 703 -547 -57 526 849 471 -269 -382 -191 -227 857 -632 -201 60 -125 -450 440 17 -214 461 108 958 -835 487 55 961 35 -617 591 296 -509 74 856 -714 790 11 584 217 831 34 665 -479 844 495 107 -958 311 905 -783 190 546 882 748 -722 296 894 94 59 869 -961 -610 164 386 886 -460 -757 730 296 249 -704 135 \n957 209\n-904 183 -634 -295 -924 -445 -10 -301 -261 -325 -203 597 566 460 -625 350 -761 506 -64 836 -288 -702 -342 236 -492 -832 -924 -691 66 822 386 984 -153 288 512 941 150 628 45 -690 -73 530 -820 713 549 185 161 691 -843 -520 -289 890 503 838 -296 -357 -649 547 -512 199 509 148 521 -880 -132 163 -331 -314 -418 149 357 -518 -718 -979 -90 -877 293 513 -495 543 174 218 -806 199 -975 -113 -958 412 -15 -657 265 522 250 118 741 -791 -360 882 -811 415 -102 322 -523 793 660 686 214 567 -118 -5 914 626 931 -630 833 187 504 -32 -635 603 -14 138 -807 564 336 -716 294 630 438 901 -825 627 -964 74 806 603 -516 357 79 -649 728 300 626 -508 209 638 -666 199 275 -481 -244 977 918 119 -219 614 895 540 -581 388 884 290 -396 486 844 -21 -318 725 749 -776 -117 602 980 958 991 -445 -184 273 751 194 87 198 90 734 152 -111 356 -110 -207 808 617 745 836 -275 -396 -377 500 -556 -19 -782 743 645 -680 290 344 619 -682 238 185 -951 922 980 -124 838 326 691 754 938 530 -342 936 119 802 229 581 -695 -81 299 -310 -526 557 246 -194 -750 -505 -426 374 -76 57 -374 922 401 322 517 186 370 255 279 151 344 901 981 595 457 152 985 952 -238 556 404 -497 -859 -125 -509 719 258 174 641 310 -736 790 -189 -957 806 319 382 226 -449 566 778 -612 -226 -245 84 79 -655 300 -540 -3 744 843 460 -437 635 -370 -812 -549 489 -658 647 -470 -159 473 404 234 662 57 766 275 -347 793 156 330 559 955 786 -668 696 29 -806 -336 -438 -48 83 -891 783 -252 778 -532 -380 306 -308 96 985 -80 -353 79 385 369 -13 517 -648 626 -229 -578 935 342 911 -259 948 203 311 -238 623 195 -42 698 382 -420 415 900 -713 88 105 739 -7 -669 526 -670 239 934 547 -520 160 -600 894 -11 -634 798 363 898 -91 -374 968 -310 291 154 -488 -618 -128 64 579 502 658 -354 669 640 632 447 723 870 -105 -584 713 -701 468 636 -502 205 481 -100 -430 947 261 -407 -535 606 746 415 421 -27 -333 66 279 -801 -534 307 176 -117 652 -238 -198 87 14 999 -702 627 843 36 950 49 987 -407 -553 221 675 85 927 -960 -213 617 -994 149 -926 -153 138 181 278 296 -794 -644 -475 -251 -521 417 -383 244 -858 -482 -941 722 588 582 280 263 19 -849 932 -40 669 -427 531 -16 206 129 -753 206 -396 -107 905 -59 -467 308 894 77 -411 37 -706 998 605 -66 -731 -997 314 228 -568 828 500 341 248 288 -906 -608 156 717 209 -422 976 -184 446 -425 -887 -178 60 -813 316 924 -204 42 633 93 288 -564 99 -781 -711 -27 980 878 -516 131 224 -230 703 21 393 743 235 -940 -443 967 990 369 240 624 820 -16 -533 848 388 -608 -195 210 98 -775 319 379 211 636 -27 -806 276 -963 -75 -881 -667 -572 -232 -966 972 140 80 -51 190 786 668 -746 -76 852 -185 825 300 64 272 411 611 883 510 710 631 861 -533 -923 -531 -267 937 -873 863 -244 -515 874 885 165 201 -12 53 909 -956 514 74 409 601 912 123 -353 -897 -378 787 -456 -945 -310 -634 592 10 -853 489 789 -490 -991 433 173 161 -108 -893 7 269 115 900 -352 39 510 680 -927 652 -84 -497 803 -485 174 -435 -911 207 -867 36 -405 587 -677 -439 -192 103 -865 -139 -880 -779 -154 996 274 -829 703 -41 581 -469 473 373 727 130 -165 607 -358 -764 -16 -282 -47 -104 -686 37 954 -471 250 515 756 -758 -513 660 500 591 -655 -347 -958 575 -40 798 444 -415 984 -249 -279 211 364 788 346 918 431 -136 816 988 -918 -685 -513 -558 884 311 377 -521 334 -525 17 -903 96 945 204 589 -703 -946 -171 428 781 -557 906 688 -736 528 712 -444 634 189 -19 131 635 413 -505 -56 971 962 568 -912 -577 -108 -103 171 -886 174 467 566 186 342 -612 212 446 -624 -77 200 -25 163 -15 988 924 786 -70 886 989 804 -970 -862 823 525 992 761 408 707 -743 -1 978 802 891 -818 603 -992 -766 783 949 -466 -881 307 -519 413 -199 -584 746 -118 539 292 285 -754 333 951 -65 903 161 -286 77 233 840 851 547 -213 701 -274 -449 -522 481 845 -874 411 791 649 963 -847 -129 880 -166 993 609 701 -210 -616 -865 -683 8 -920 508 86 983 -215 378 792 314 944 -40 13 -837 171 -453 -183 -723 476 126 -19 411 952 -443 -138 631 907 -81 -386 -300 285 758 -802 -276 480 7 377 -143 795 493 280 -917 -610 -132 731 494 -332 67 732 314 988 -359 824 73 -64 7 8 669 901 -137 233 475 -345 284 -669 182 -871 860 -528 955 -503 -474 155 846 979 353 508 764 -476 554 -44 382 427 808 -624 773 -904 -997 -753 264 934 -347 212 40 -228 868 -795 116 766 810 \n753 37\n284 -482 -717 717 95 701 527 9 377 -517 221 675 357 922 571 834 920 790 -640 -938 -756 -455 376 789 -150 849 -50 -96 856 -194 579 218 79 -172 849 8 -238 47 -305 -587 441 -484 930 680 906 330 720 439 400 165 -161 45 539 34 435 -26 -498 -197 173 -444 965 -979 761 -634 203 712 225 -729 573 -619 -183 219 17 -869 -995 -659 168 661 -73 194 -560 166 752 693 235 407 -99 -69 910 323 -140 622 635 -303 85 0 455 519 -821 -897 869 881 -569 201 537 952 -488 188 702 474 -598 -724 392 170 578 556 266 -695 -504 -102 474 -395 -215 702 152 -149 -244 597 -555 160 998 143 972 145 -720 213 513 861 866 764 -987 -945 -951 340 577 400 656 689 210 -168 560 -765 430 733 279 -301 -422 117 16 160 -304 515 194 715 652 644 -274 -784 146 572 -663 729 -122 -866 333 -130 337 464 387 533 955 -20 -637 779 867 -810 59 722 -965 496 96 -273 421 384 -539 -478 757 -689 -25 824 715 -518 337 278 48 -950 863 638 -818 818 -322 142 843 218 -646 15 792 177 -203 -117 683 -348 260 600 -474 -183 -240 -678 285 -280 845 -167 652 906 -960 -520 631 219 277 -257 547 71 630 726 300 -187 724 425 -293 -770 975 254 -98 195 972 494 647 -713 -658 -949 -622 962 -756 957 -469 168 -218 416 -813 620 464 993 133 -214 325 572 -901 965 -781 418 -611 677 -488 822 881 -404 241 154 -45 -853 232 -539 999 966 168 488 599 -513 -417 311 693 942 623 472 870 -319 577 121 534 906 419 176 -65 67 -237 -52 -552 960 762 164 82 -171 -858 78 -801 -372 -336 210 -89 604 12 -932 -980 130 642 -238 -368 -146 169 195 311 585 85 -341 431 795 -870 -400 248 -229 847 -725 96 84 208 48 258 -412 -900 882 -603 953 307 -623 772 -977 -257 -913 387 768 501 236 121 355 380 400 797 -29 -883 98 -256 965 -888 651 807 -854 410 848 -756 630 652 -952 189 152 991 345 780 -426 821 -275 837 175 -126 531 539 -22 -982 690 403 858 -389 -603 480 0 -966 912 245 667 -441 958 526 259 697 -717 512 -18 902 673 100 502 -836 947 712 -210 443 -288 757 -476 493 -697 -570 448 419 146 440 -620 8 -324 900 -554 124 243 -952 146 -594 87 851 -373 -962 -871 444 915 656 706 155 862 236 -564 -816 220 360 63 305 -657 85 183 40 -659 -790 85 -571 -932 -435 -485 267 -987 215 592 -638 267 243 -979 141 227 -249 942 926 204 673 798 -674 -911 -183 971 464 -652 651 947 -569 636 240 781 -210 832 -734 -550 854 863 -353 -448 -153 828 663 -262 902 77 269 -665 401 -765 771 -46 605 587 -643 -62 -520 -754 230 124 162 383 439 379 -154 670 -998 917 945 -5 110 -413 597 -30 -832 526 823 -793 918 266 341 -848 -465 748 -569 -138 339 822 328 665 -85 484 107 420 778 -927 -586 478 818 219 924 -725 280 169 713 -307 -669 -270 384 552 -83 521 -657 -678 -771 729 372 -835 719 -589 128 707 -96 178 -541 348 569 161 -842 440 402 -703 24 -487 271 11 -701 866 478 67 -146 -913 500 287 341 -397 857 -892 -440 567 615 618 -8 583 759 511 519 686 741 -130 106 589 111 -769 -628 -139 569 619 -841 -371 -716 878 356 52 -754 875 769 695 739 -829 580 -372 -244 14 208 846 955 -97 409 266 -836 33 715 -572 151 129 -968 -146 352 -290 566 567 685 584 -574 761 116 -141 -238 179 354 980 216 -908 669 495 585 198 947 -10 499 -841 -784 990 -620 189 -652 -183 428 819 107 -934 155 -581 843 608 -280 -985 170 -629 587 -842 717 634 -924 -910 874 935 610 -961 -847 634 -462 -545 896 -898 621 -857 54 180 241 622 10 -850 272 693 494 -831 -571 514 -188 196 112 \n922 34\n-1 -850 -786 687 698 -629 962 -656 -502 -397 709 -94 195 810 635 -443 -521 52 423 171 206 339 -495 -749 -306 528 -359 966 44 -273 839 -862 723 672 624 536 222 -236 378 -742 -725 567 713 116 782 751 -876 192 -1 694 221 -136 460 401 -627 412 -287 -884 859 400 409 325 -403 -99 17 -564 93 -867 670 610 306 310 24 7 -4 -522 892 -697 -499 559 636 -196 314 935 -573 -333 671 837 703 158 782 -427 -240 806 294 -322 994 -357 538 -862 160 -204 793 -400 -61 723 639 442 894 513 570 758 730 -816 -6 944 -393 -14 -401 255 338 -317 912 136 -332 76 464 -243 454 732 382 555 -966 19 -40 434 278 -413 521 923 234 214 232 463 -508 193 145 -385 -81 404 675 282 129 -946 -809 -998 -322 -807 250 420 509 984 -201 -897 -208 744 93 -686 338 316 -706 -862 -282 200 -14 425 -809 -815 268 -636 -251 616 733 382 -627 -547 490 -333 772 360 -139 567 -728 -328 955 -689 388 450 -154 347 450 -360 98 -770 254 -719 -826 13 321 -323 990 456 297 144 733 -404 0 938 50 -845 -857 -406 -699 475 454 -63 221 113 396 290 502 921 972 90 985 543 980 -708 198 -745 -653 972 -847 685 -67 -870 -381 -347 800 86 -201 -391 -65 -305 651 624 -487 634 -958 -971 735 566 105 -369 418 -896 576 229 982 -646 505 759 -259 866 -224 -84 -255 986 -67 291 -731 112 343 441 108 266 -329 574 475 -107 974 214 525 432 -12 194 147 556 622 -724 555 -933 811 -806 213 261 -120 -796 -407 -138 802 469 578 214 -420 317 475 -576 -223 -502 450 -161 -461 -107 -38 727 653 -820 136 998 563 773 219 586 261 22 202 566 687 509 986 288 -439 -495 -508 746 -297 723 -877 979 669 271 525 628 -532 368 627 836 -846 -55 511 -996 -455 575 39 -3 614 928 603 731 925 135 -305 315 220 603 73 675 -221 513 -570 299 617 289 731 420 -610 799 -331 -597 -23 556 -18 -944 435 -106 766 434 550 891 103 166 986 666 58 947 -536 872 210 -354 289 161 -962 209 -405 885 717 138 271 -816 270 396 230 593 -16 153 326 -798 232 -46 -829 199 -541 -127 -871 943 -791 -296 -395 303 -237 -749 -979 -218 -614 835 288 538 -281 925 -243 -985 181 -536 669 -360 482 -247 32 -164 421 856 -364 -684 -376 716 731 725 -735 -859 885 974 556 446 157 -925 165 -851 298 272 769 381 -799 492 -718 -705 -155 -129 774 538 610 -99 165 726 682 -403 -677 959 566 -388 666 -979 15 887 719 412 -302 -600 -175 -849 -459 567 -748 -187 202 135 -619 -208 352 322 174 -419 -730 -883 -449 210 -695 491 -902 -959 529 925 -817 -384 -176 121 -428 768 -510 -485 516 -267 572 -983 330 405 724 -333 772 -196 845 749 505 -665 914 -181 872 171 163 -164 658 741 -619 943 731 723 608 677 701 -712 30 131 517 467 892 -465 -316 -717 93 419 447 -973 -297 -529 -279 204 -601 -503 -418 394 -767 94 -401 175 220 202 -872 -186 167 -402 241 -598 -957 -778 817 120 219 -340 -817 -186 886 43 998 227 292 -238 857 813 -80 747 -920 509 498 34 -435 -983 -868 542 -784 423 -862 527 -600 -161 771 -747 -208 -818 -274 552 633 261 294 -539 -696 495 726 301 -214 883 254 -425 -361 -534 804 119 753 -340 179 491 164 -394 -316 903 947 450 -336 509 98 -770 927 430 -644 -4 -893 94 661 696 952 221 -246 -726 715 -967 -341 -868 677 333 -426 966 -690 -890 -91 209 537 991 -832 -735 901 152 280 -799 132 916 -883 97 -643 -737 -397 134 632 -190 161 -966 831 887 76 -528 30 348 -142 -734 -16 498 -493 134 381 409 -425 834 793 -380 -161 881 225 572 -996 -372 -121 -654 561 -497 816 248 88 -915 -426 80 934 -145 -158 149 509 667 925 923 -218 -744 857 -388 46 -482 -492 282 -533 -304 -924 110 249 739 750 411 120 554 472 52 2 966 405 826 364 -502 205 -871 984 -869 802 -926 -427 -303 820 -776 -629 264 630 -328 804 -812 567 -88 522 32 -642 -427 -730 760 878 -640 -799 662 823 21 -733 -234 -699 34 638 -364 -182 114 198 387 278 -805 -192 146 -688 -609 767 462 873 220 613 698 -221 -35 -896 -883 4 -438 687 -627 584 178 257 -354 -785 -774 695 25 -681 -479 -462 29 -624 556 438 482 992 -826 -61 461 -946 65 404 -33 832 885 -736 611 361 -486 -563 942 744 960 -769 264 757 -76 228 -338 835 -397 -64 -804 328 796 919 -239 560 -68 246 401 -971 567 158 717 666 544 524 481 -685 -438 634 998 744 647 -788 979 761 -611 -691 -177 492 -860 933 -208 -16 605 803 -769 \n820 158\n911 -841 451 -198 794 724 -414 180 299 -310 -964 655 -99 -443 381 332 -837 483 104 -175 -762 380 270 590 3 -678 877 180 -330 -854 823 127 -849 -443 -184 442 -24 340 451 -700 -340 112 -301 -175 -363 956 488 218 673 745 201 -904 190 403 59 -135 686 -379 122 249 -304 982 -705 782 103 -972 421 337 628 697 183 926 249 344 -678 -114 -391 -651 786 -707 530 964 18 -924 376 608 -823 50 837 358 519 -890 -394 -12 260 984 409 586 922 489 3 -5 -500 51 858 262 415 -871 -216 832 101 782 566 -726 -508 265 -445 -90 180 416 -17 991 581 -228 -288 -440 -966 -908 -120 -295 599 124 934 551 -745 41 384 970 -984 -535 -180 652 800 811 95 230 -237 -577 607 -868 361 -463 96 -111 -506 -776 -291 843 -922 347 507 -722 677 313 590 -544 -342 90 890 421 -778 -808 317 -878 171 547 -276 292 -159 659 -685 -571 -751 273 -100 -628 576 -663 90 180 69 -779 -154 -179 -835 -584 -754 270 -99 -701 -360 -22 732 -244 -738 -430 -351 -588 -189 -880 609 -696 959 449 -348 542 669 608 222 -400 757 564 505 694 797 -755 65 10 827 939 -441 531 90 -957 238 314 708 -77 395 -456 226 579 3 -183 717 365 2 -348 -57 427 957 115 -749 721 -941 571 324 993 743 -814 -591 606 175 -82 -65 634 -769 803 105 -737 207 -982 468 -588 214 72 704 -567 248 -693 442 -683 979 -553 -601 -461 473 -202 936 -517 630 604 -216 944 -493 -780 116 -238 -412 182 659 -948 771 919 74 -955 657 395 279 -456 166 -120 -79 754 -802 377 -537 -279 -813 996 -288 103 637 604 -485 543 204 -128 691 176 407 -2 785 -93 -527 402 -588 185 -900 32 -418 742 525 861 608 -471 625 563 -93 751 58 -280 -348 912 -988 -655 798 309 730 -15 -622 632 610 970 212 -709 996 -415 706 -556 663 320 178 -827 172 -229 54 978 -961 -775 -725 374 -919 230 469 -415 364 516 -708 833 -649 247 358 -14 493 -171 818 -946 81 -558 -205 -38 515 -138 -69 191 643 222 -287 340 -240 990 -506 955 -724 638 386 772 -987 -491 614 788 -617 -946 -730 -275 -681 -7 -869 -110 534 -583 780 215 638 286 685 232 18 -386 869 -468 -512 -870 355 -222 185 681 -987 759 771 -340 -532 228 -208 151 -722 -286 645 -333 -476 -585 28 859 207 53 370 181 233 432 -66 -721 -903 -658 -440 393 112 287 -167 686 -240 1 -707 -672 -166 595 616 751 -630 -767 473 -85 672 673 850 137 950 602 -663 853 -74 -422 -402 769 -182 590 -305 455 698 110 613 61 -266 -40 940 -174 765 -712 880 -16 439 -590 -174 583 799 992 136 249 18 -61 851 720 415 -218 -258 -532 345 560 537 -798 184 268 851 366 -799 966 229 990 -496 251 192 -836 212 244 67 532 891 613 -406 483 106 -550 352 582 848 148 -786 321 -416 481 418 88 -26 -256 -129 545 -961 91 -950 808 -143 -37 -360 18 165 -832 -160 483 59 920 333 -672 758 -965 501 85 885 765 -451 -600 267 648 -379 68 -528 883 776 391 720 -37 -399 -5 874 741 809 915 -130 74 -309 372 -800 449 435 -335 671 -427 250 31 582 -164 636 450 690 741 700 98 -378 -643 -735 -311 962 814 -416 -35 473 955 346 333 556 842 986 -55 528 353 850 -304 851 135 936 -67 -916 -593 341 101 326 57 -814 459 -881 -882 870 402 -657 -581 -298 277 341 583 931 162 273 -625 -280 701 205 -399 866 -100 764 -137 742 993 -14 685 -182 -867 -198 275 232 -278 -260 559 -893 302 -924 579 420 184 29 450 -837 -673 500 526 198 -629 478 -275 -153 -321 -953 170 -236 -225 316 687 392 -212 178 155 922 -67 51 18 365 -341 -267 198 -542 365 -170 995 -22 -755 298 265 828 543 -844 -749 -697 -721 579 -280 138 796 182 231 121 982 -291 -913 -628 186 -479 -220 533 694 271 984 40 -813 -314 274 528 446 -653 -714 -411 -763 949 -206 937 667 -952 -437 249 -121 -589 797 835 875 711 77 -551 -915 311 276 -725 921 671 560 443 599 -631 -727 547 636 627 -362 801 226 -523 717 -393 144 2 224 287 0 \n828 397\n-204 -436 646 243 137 -342 -90 -397 -330 703 -266 417 -373 228 728 -722 445 97 70 524 512 -685 381 -712 79 -4 778 763 673 -605 956 671 -856 833 80 961 435 322 525 -273 -58 -882 -496 965 997 39 425 495 789 -198 244 442 280 293 -281 481 234 679 -260 201 -487 980 -246 266 -58 -630 -138 593 962 221 -417 9 -735 164 687 77 985 226 611 -487 -873 -458 723 -309 478 851 782 263 850 689 -240 -242 -490 -466 257 -472 602 594 198 -221 830 47 998 -923 562 262 391 -543 931 740 -231 963 843 837 -75 -162 409 25 772 -335 -783 -474 -228 870 -931 -976 -893 745 358 341 -715 4 536 -657 117 -417 -122 806 -848 541 274 -685 380 -802 299 912 485 355 226 630 -59 -58 -346 90 890 918 440 36 139 157 -816 407 833 -558 -423 57 -237 347 919 -278 611 -95 838 782 466 -804 919 874 752 -927 999 -98 68 641 697 -442 505 -368 803 -793 666 701 -847 176 545 44 755 105 742 -575 769 774 -919 611 832 597 -354 81 -1 67 -60 -462 650 -246 -301 979 -614 585 970 -590 651 -540 458 912 -475 -649 -457 773 -109 576 329 191 409 772 -92 115 -615 620 -218 665 760 683 -441 0 -714 505 720 49 -257 423 796 -264 769 190 651 550 -805 977 -563 -209 979 327 -380 130 422 -906 -370 -549 91 186 -620 973 -492 299 616 430 -880 -691 -829 977 400 -245 -647 524 20 736 -766 151 860 928 -7 664 -247 -596 -593 176 544 119 -306 -940 620 -16 -272 500 645 106 -384 719 682 -468 -50 -741 205 257 803 820 -187 857 170 708 -744 -119 243 -835 -640 777 -351 497 359 -43 138 693 410 -445 -500 663 516 -680 -393 -523 42 420 193 468 447 213 392 519 673 82 383 -524 -481 85 -185 33 -503 109 -119 -414 836 391 188 834 -286 425 482 -956 -320 -749 -747 579 31 212 913 -367 -54 321 -695 -605 -491 553 541 591 176 210 288 186 331 -217 -743 94 -326 -562 928 538 -687 -828 -313 797 -353 -354 327 541 -801 -427 250 100 -803 -331 -143 -143 -507 -800 -397 214 84 494 696 142 236 340 -457 -857 -797 732 676 -597 -973 606 169 217 -295 222 236 -915 657 -498 861 109 -84 -453 -712 883 272 -734 -86 -383 845 321 634 830 -714 101 -109 104 -833 -301 -674 -419 817 -96 379 328 747 -161 122 -53 518 703 553 57 443 206 -834 659 -650 652 360 -636 -947 228 477 560 109 -743 -929 154 939 214 -9 -29 810 17 885 163 -852 -131 553 993 688 12 982 -385 -40 262 -790 455 -193 160 123 732 30 598 -985 31 150 -655 535 -175 -162 -870 -850 -602 160 -705 785 -137 210 709 -714 89 87 472 188 987 -649 677 707 -637 -998 -92 -128 208 -583 431 -998 320 484 79 390 -487 6 213 -587 930 691 881 486 -514 734 -86 -404 612 -20 515 595 609 432 -124 -865 -887 616 55 742 54 477 112 276 356 -303 638 -342 -490 55 875 158 -653 -612 647 85 -174 -22 838 -39 682 -406 190 476 842 -932 122 -161 340 679 345 253 -112 -737 176 428 -452 -256 -572 623 273 -46 -337 882 564 -513 957 525 149 220 925 -723 803 -781 -464 -254 431 -541 111 641 212 -971 -875 -29 301 -233 239 213 -71 69 505 -850 467 794 925 -767 -838 836 915 134 320 927 156 -337 -632 -601 385 738 -502 804 -379 -435 336 -589 -172 823 230 687 -837 -7 526 -320 -678 -486 160 -35 -657 598 267 -405 703 88 486 -56 258 216 -136 -635 617 -814 801 111 -599 823 -695 -852 380 -769 354 -506 -586 267 -511 41 482 147 -521 121 -629 -382 -723 426 -963 -483 296 438 39 776 971 802 744 292 919 776 826 699 -657 856 795 390 512 946 -255 904 572 -574 -157 297 332 -253 87 439 -535 493 110 -496 -476 520 459 585 642 174 431 827 369 423 -196 345 670 153 794 819 395 -112 995 374 940 649 -327 -553 299 -550 -593 473 342 813 -784 -454 212 833 -95 60 267 -671 -261 459 741 594 -534 -424 334 -376 672 -810 608 -259 -806 53 392 -377 -233 378 974 212 -930 341 936 -442 -169 69 -767 358 370 536 -352 62 -898 -381 -549 219 -510 680 402 \n940 113\n666 400 584 834 -341 685 234 796 -615 7 761 -463 613 -431 517 114 -306 672 74 413 781 587 -155 654 912 -712 738 719 826 260 649 -670 -534 766 -933 -203 49 817 -557 -134 984 -429 -287 343 -320 894 276 683 -731 347 127 822 -554 -345 681 868 686 -853 576 174 358 485 -148 859 764 216 184 -565 -111 -273 -23 -168 282 816 492 966 -844 785 273 -117 831 700 889 -175 481 467 -566 562 -214 446 716 990 -323 842 916 593 -540 -494 818 -150 759 461 -391 794 791 240 -952 430 979 -841 133 408 -908 128 570 665 218 -553 297 -824 968 -756 -695 -686 -939 -260 3 592 -127 193 -234 112 538 406 -109 828 871 -387 161 910 668 -948 -630 -698 -492 416 457 -99 38 516 -211 662 268 893 895 934 573 281 376 422 708 -287 912 -682 -447 -979 -474 167 800 331 -929 38 703 308 390 981 654 965 527 901 364 723 -794 397 -283 123 854 254 978 -835 851 -269 -315 138 485 476 -798 972 -629 858 940 -759 -519 526 -261 808 189 168 -387 -326 298 880 -932 -854 -920 268 868 -557 259 782 520 466 628 236 133 -185 -967 495 -55 25 406 565 570 -975 -971 935 901 184 -417 -251 761 -668 748 -458 -398 277 76 899 -191 -228 343 575 185 100 -60 -739 -656 -557 -688 354 66 162 -717 104 50 -436 -550 744 -799 789 84 -142 538 -237 -396 213 803 905 -599 -995 -340 247 793 0 341 -51 810 115 838 461 200 -53 528 -24 -90 -372 893 -444 63 49 -283 358 -581 66 557 739 -219 -337 34 -104 -743 -179 -484 -109 376 -113 738 478 -998 315 -943 489 -597 -208 288 -866 206 648 -994 689 6 562 -994 11 -685 -934 42 421 -503 100 363 557 -614 -923 -478 465 -15 -283 978 -925 57 -675 385 617 129 588 -42 328 128 132 865 11 955 -612 258 -252 -18 -506 -602 219 -458 464 -446 -629 932 -83 -490 -40 707 333 812 88 801 611 734 205 -195 -272 -871 -203 0 104 98 328 -639 678 21 665 -358 390 -692 150 -371 -236 -788 233 567 -899 840 484 -142 -631 376 -512 -200 228 -101 462 507 28 774 129 655 461 -742 714 400 -88 -539 755 96 651 -688 -381 -683 -840 -44 -970 9 460 -1 291 87 -697 118 356 -837 708 822 979 -466 240 295 -132 -468 17 923 856 -200 554 290 873 -240 -128 46 696 -216 84 254 -55 360 -5 -756 344 -462 -972 175 -700 -145 622 545 500 318 141 898 84 271 -439 -387 -826 383 941 -300 524 183 349 -143 495 -412 393 306 -321 -343 622 -577 -904 267 -438 66 936 475 687 -303 849 929 578 -199 7 976 772 262 313 675 424 512 58 -932 459 666 331 -558 -110 -705 446 -827 320 -17 -85 -423 537 855 -377 -259 704 -511 771 547 87 -127 311 -111 -682 58 619 -654 -867 718 -213 647 448 991 603 -630 -123 -874 800 302 -185 778 149 -233 -253 830 718 -81 -394 -201 89 570 516 529 251 -125 -679 673 202 47 982 863 108 -568 230 110 -95 149 777 317 62 -870 459 -182 -211 313 -24 592 -967 -141 324 558 547 712 866 869 235 -313 -734 -850 134 -966 -866 -970 479 -856 -28 -96 975 90 726 458 833 22 -230 164 -532 -967 372 124 356 24 679 -612 -738 372 519 228 519 -820 -356 485 -333 -604 462 519 679 -518 523 -172 260 973 316 -34 -791 -91 -736 -813 762 116 432 794 126 -929 -793 245 -868 798 -941 837 744 476 211 -555 641 304 866 -766 -210 178 -705 -714 -884 -774 -435 468 306 103 835 295 627 759 492 -355 508 440 -620 793 299 -854 -516 -240 701 659 -113 -491 -977 -794 -558 -656 427 -148 -184 -178 -865 -782 -657 32 289 625 766 -468 -10 48 457 -405 -510 757 727 -902 239 -557 10 -669 -262 -968 961 -501 -413 418 99 748 -63 -517 24 173 -371 204 944 614 877 913 617 -731 -172 56 845 466 61 -697 66 606 46 2 273 -972 220 -779 -568 249 638 137 -736 -986 -7 -59 63 -922 416 328 567 -255 980 -839 861 709 -995 397 562 138 239 459 -206 552 -698 -973 304 846 -678 157 -63 -711 722 -61 -797 -394 460 704 599 33 938 -594 -718 74 200 356 -888 -32 205 377 -128 -403 -438 395 98 -76 786 -567 -720 -370 -196 780 -31 320 -123 384 226 917 309 924 7 -730 -720 827 205 111 984 -335 636 -326 221 -147 213 -631 737 938 310 290 286 -799 -519 -776 -646 946 599 -283 377 218 888 113 -522 -877 279 622 -394 -466 221 -254 -164 -32 -497 759 768 476 -571 -573 297 670 562 -763 790 301 -87 377 -52 799 -352 496 170 -521 494 392 988 573 559 -163 281 567 -573 544 957 15 173 649 -728 282 873 597 660 561 655 -142 -507 785 655 636 823 -169 184 240 112 407 372 \n882 146\n-103 -482 -657 -395 354 -114 107 -826 404 76 372 -672 16 -882 126 451 -786 -962 377 -306 -684 -606 167 -522 459 243 -992 -570 -527 -973 159 -263 38 -570 395 849 -330 -506 399 -52 574 -854 874 737 429 494 344 602 179 977 -535 -433 -970 89 851 593 -54 43 -786 235 305 100 592 843 192 -15 508 241 789 -624 -994 560 635 -340 615 138 -941 -607 632 -978 871 -981 148 537 -706 -241 -653 -682 861 505 -371 -365 391 -759 -849 -8 206 -794 -869 897 147 -299 772 765 707 456 -412 -381 912 -229 744 -244 462 606 -744 -906 734 550 879 163 -190 43 219 -193 567 384 -176 -78 -638 961 429 -763 -900 442 389 -4 63 -273 -928 -657 -86 520 120 -678 936 868 468 -908 -509 -888 608 494 -276 851 -490 101 -771 -861 671 -525 130 -494 524 398 697 -656 -190 -923 53 -176 -747 470 592 24 46 -178 893 -936 -615 64 336 -512 912 819 -892 808 -657 19 555 625 581 206 -473 217 875 282 569 -618 134 92 719 3 -533 781 -637 902 -964 23 318 -57 -561 -741 973 -61 640 896 735 410 343 98 85 25 -770 -56 844 336 817 207 397 626 -797 694 -412 140 871 861 -349 161 -161 342 274 -863 370 -459 958 -24 -326 -799 654 1 556 35 915 -566 183 -931 265 909 838 118 979 -895 603 298 405 426 423 -366 240 729 541 950 514 -138 -187 -354 283 39 356 823 576 310 -153 677 -748 297 219 -303 914 -679 506 -110 197 953 -665 -318 -817 245 -775 -104 903 383 392 207 868 -283 771 -179 -18 -828 730 -40 -46 984 908 791 368 721 -590 -724 47 934 541 127 546 16 638 -556 -920 670 -823 963 -312 282 -923 -161 90 -777 34 68 853 798 598 -979 -294 215 911 -692 -944 423 392 667 606 651 48 962 210 -149 634 -963 66 620 917 520 366 969 -885 708 243 -556 272 544 -163 -205 -962 247 866 884 937 -609 -26 369 874 -755 -617 420 -978 94 -454 -31 -613 -340 -295 399 -723 -662 38 71 718 -361 -79 -868 862 -972 -868 -386 973 68 -457 485 611 -928 -320 -913 898 -157 -486 -683 -435 -83 157 726 616 101 -960 159 -56 -198 458 665 479 -783 -431 346 98 874 576 132 399 586 -379 -364 635 -344 842 22 178 727 -8 264 -140 -873 -351 683 602 816 332 973 -580 782 832 -609 -302 254 281 5 895 -384 -976 -315 -857 -793 97 -17 -939 -473 294 -281 578 171 -588 369 -659 -24 -684 -196 915 901 -531 992 648 456 59 982 13 902 231 -13 10 256 -675 655 113 298 154 554 -994 -547 -230 656 576 344 -20 -824 714 -17 420 -715 979 690 62 288 155 643 112 -176 283 8 -497 618 357 626 -361 -561 -89 -860 14 705 -657 415 -49 269 38 -950 -710 604 177 643 -208 71 139 601 811 13 685 615 352 -200 -633 3 677 221 230 244 874 519 -249 319 989 581 702 308 839 -87 -443 310 -685 533 230 614 -311 177 -354 432 -52 472 -902 565 292 748 733 -863 -757 69 239 16 439 171 511 436 -8 -678 755 -74 0 927 888 -663 -118 52 979 -491 146 863 432 370 -368 584 391 764 755 62 409 -789 568 330 -216 925 -359 5 -645 586 150 340 288 177 853 -523 619 329 -803 752 -375 -984 207 -811 333 -980 -568 -421 814 -636 22 606 -797 755 -94 -21 767 876 -858 891 -266 -761 -111 64 691 2 -565 229 -502 780 147 73 -290 655 912 85 866 680 -3 -135 989 221 -451 -850 951 195 936 -4 -958 -387 9 87 142 569 203 961 206 -12 -688 12 -480 337 -942 607 676 -448 -524 -363 758 -36 408 31 116 175 252 492 -545 621 -76 -65 -932 -60 802 232 426 2 355 759 455 287 391 -225 953 239 -60 562 102 689 691 -479 -49 -467 -210 -259 241 539 320 307 634 695 349 -371 450 -414 775 -814 -116 437 -414 -571 681 596 993 -66 -634 -38 598 -995 -823 -92 678 880 235 538 142 662 -798 736 632 455 -122 -163 736 -635 190 354 -687 474 -366 865 308 -660 273 -17 430 889 618 742 -427 -649 -639 448 132 -94 357 -667 -326 621 602 807 -314 713 297 -224 -70 -791 914 -630 -75 -931 176 662 349 834 -705 784 718 429 153 -136 339 813 807 -469 -317 -337 142 -188 33 977 -85 174 -344 471 -832 -854 104 89 -533 -612 929 593 -928 821 2 -125 -368 512 561 -503 103 -226 -510 -229 -893 -484 -417 -674 630 752 -383 -115 64 111 81 811 -550 -717 -669 -696 \n976 251\n636 -177 711 -922 -17 665 455 -508 647 -619 102 728 833 695 -576 48 -608 -810 -961 402 695 -996 588 97 -806 -515 308 885 -871 -510 615 -447 460 314 30 126 -503 -921 -887 -213 -672 854 -515 -490 922 530 912 785 670 -322 280 -471 -759 343 -496 375 757 165 306 473 722 -172 451 -589 552 562 590 684 -545 423 -543 280 -173 71 -17 399 0 -340 736 -956 17 713 984 654 76 -112 -604 -263 -864 -381 200 246 690 497 416 -694 -272 784 6 445 399 387 239 837 606 999 87 398 185 -364 425 -18 895 -806 -880 224 -628 944 -153 618 -240 548 126 343 318 452 844 -713 -61 764 46 336 706 574 104 629 -508 212 517 -280 215 -530 -506 810 -242 274 392 532 713 789 998 -838 916 -201 -140 -745 301 621 -689 -678 278 -367 558 -973 -257 -430 721 319 -334 -209 555 219 -673 310 354 93 841 -939 96 154 546 289 610 -549 468 -492 -611 -54 -186 436 750 -238 667 839 -543 284 924 717 986 -651 -388 563 298 -777 -831 865 500 937 92 475 -417 210 -727 -627 -848 151 -464 -957 -593 789 -898 250 979 -423 53 278 384 653 732 651 947 985 -127 -3 -689 -129 274 -969 549 336 -548 705 394 741 705 -212 949 730 481 517 224 782 -215 -494 481 187 -410 -236 81 -241 319 758 501 369 -622 -106 824 603 273 16 -31 129 -840 -838 -987 -866 311 762 -235 -992 550 -171 792 -321 600 752 -671 -26 100 39 714 -663 -479 952 231 396 793 -367 -415 840 -412 478 89 -309 288 392 -5 -625 -225 -615 -481 -488 -783 -607 -431 471 61 -225 -653 122 -330 -705 -820 383 316 -296 -265 345 480 -595 791 -167 -195 49 715 714 -756 -577 -870 674 -583 -26 775 -922 444 826 431 519 -62 263 -843 -509 -693 865 -13 -714 -388 934 -419 -345 603 284 -199 760 974 -971 -53 -570 -333 216 -624 -286 -530 -868 590 -614 414 -514 695 -297 -380 -532 -346 370 -932 767 527 119 -337 699 358 -906 -467 780 -199 411 -254 867 632 484 -882 214 227 348 201 91 -780 501 -188 -673 -743 -558 -942 384 576 -201 871 -276 -978 446 -650 -733 129 390 63 274 271 -65 618 -282 -59 680 955 929 485 -132 508 -569 -587 -670 646 222 -480 436 60 -17 639 954 -254 -406 -132 159 735 -334 628 -844 391 -646 -744 280 -339 -838 -862 999 720 -499 -56 526 -819 -789 867 57 52 -698 -192 149 894 249 -719 -662 905 255 -839 -338 617 950 903 860 444 -321 -97 -467 999 -313 417 432 962 515 283 -339 -583 -624 -322 214 519 483 249 -832 757 47 -150 972 569 -606 866 680 -702 -107 -387 719 525 -178 658 951 104 330 253 587 311 417 -822 -690 863 24 346 614 310 651 475 -470 808 -227 350 452 -837 -556 -62 800 480 -719 -127 548 -322 177 -371 -141 5 665 745 152 -89 494 481 851 -875 -863 642 808 305 -817 -236 662 -127 757 190 215 -917 888 193 626 -126 -849 19 -91 139 894 -869 598 206 -943 653 272 -696 -953 221 -246 -451 -628 -66 500 0 518 -822 927 874 454 -86 364 401 930 -109 7 -129 -409 111 -12 664 57 95 -265 60 707 122 -402 146 -850 81 -612 808 192 859 10 276 -673 -136 868 -826 -749 607 10 802 -466 809 406 664 696 -68 287 738 779 377 167 302 -349 142 150 609 857 -485 -372 9 -505 875 275 628 -817 698 234 446 -762 472 -956 175 360 677 -903 219 389 705 -813 48 -251 196 -14 -52 341 -859 -972 -636 567 242 -798 270 -209 356 -614 -704 337 413 -627 510 -926 249 -383 264 861 -714 -962 -202 784 -150 -333 899 586 -878 832 -46 612 800 245 -627 -651 -310 778 423 255 -622 731 0 534 568 -798 -947 -55 890 557 -662 -600 767 431 -637 793 987 -743 977 742 905 332 636 -169 -342 424 -367 165 -731 585 -917 284 679 946 629 794 299 883 67 119 -964 893 -343 57 836 7 -165 -712 113 -556 -356 -65 836 -538 -327 636 244 885 -255 -549 929 874 351 14 385 964 622 -420 126 -330 32 702 654 959 -901 -633 305 1 -809 222 -807 -899 723 514 920 -395 470 557 -882 -84 843 860 478 149 173 319 -443 -568 323 28 -489 -44 -153 -234 -64 -636 544 807 175 181 -441 -850 -269 284 -150 433 483 462 -801 -789 -784 630 -531 305 -804 602 -215 150 -245 -230 -764 458 -373 8 359 301 378 -722 -398 979 293 324 622 44 -779 71 326 -319 239 -147 441 874 94 -745 104 940 -714 -202 158 -148 -496 271 826 559 449 822 192 870 164 635 905 861 -659 428 -454 -101 234 773 -321 -979 -283 778 125 -438 -37 40 -961 -437 400 140 136 31 50 393 -236 402 237 -239 -814 -757 -375 -174 192 853 657 -575 963 -164 449 52 57 141 560 532 -205 257 524 968 654 621 902 152 64 673 149 -382 -642 603 410 -393 -304 -162 578 220 -467 -204 -288 461 325 -297 -88 -886 374 -917 932 199 -953 -953 315 906 \n783 305\n-819 942 405 43 -40 -698 459 -416 -747 -802 -480 205 -986 908 83 379 -831 260 801 8 503 177 -826 -685 599 181 161 -431 -930 769 719 167 -180 566 432 418 170 61 540 905 -239 112 -896 210 97 943 -139 -557 2 308 33 -904 272 -679 763 220 -885 67 -693 389 -184 -702 -159 294 -362 285 116 -603 201 -15 430 277 -984 173 -104 626 45 -976 -371 162 19 883 42 -851 46 -940 790 -462 841 -375 994 239 3 44 -912 145 429 -908 410 -488 53 -144 401 -661 759 -274 -538 -589 999 537 996 266 672 753 668 625 169 -201 370 -963 434 820 -921 -236 -211 744 154 -751 -61 930 -577 344 -263 344 -110 496 491 853 941 -548 974 -537 687 -326 67 -303 440 459 -137 621 -351 891 248 31 -177 -557 784 676 213 -992 -91 623 -337 291 -750 967 364 446 -188 -432 746 102 834 504 427 181 -460 531 196 -896 294 -672 965 799 252 -721 82 224 11 -23 34 133 198 -483 722 -65 586 910 -51 487 -546 682 -696 -235 -132 815 353 55 489 591 698 -864 -905 978 829 854 565 755 -876 415 635 -889 -712 -357 446 319 -685 -323 -923 -756 747 212 805 428 -223 316 -730 -533 -751 485 876 -251 554 -979 545 780 406 376 387 612 879 -921 -481 -995 423 -392 283 322 257 -568 66 -938 109 900 -894 -805 71 24 -414 802 -223 229 -28 -125 522 -634 478 469 544 -302 70 -389 564 -383 987 907 728 422 6 836 390 920 -702 502 407 375 588 868 904 495 -815 -382 288 -593 433 751 -212 -676 -817 285 -475 415 583 -100 250 591 979 883 -337 175 62 285 -884 -884 -599 650 835 917 815 292 3 -177 718 954 851 -800 -732 -744 -615 801 -520 852 -584 -883 509 -75 410 955 432 490 -580 836 515 -782 156 114 445 197 -897 351 584 130 263 439 985 277 -894 923 644 -640 339 -553 469 -411 -798 -794 -584 793 -898 35 170 449 -401 668 46 -750 -541 -580 313 807 551 -188 -54 520 196 495 170 263 555 185 577 824 913 628 -392 -585 501 -780 -160 -118 -652 469 634 -95 358 -552 253 -765 -687 169 -586 -297 303 -788 769 285 234 -947 136 440 353 889 -19 -294 408 875 -399 614 157 930 -438 299 759 -51 414 -148 397 518 282 -787 -930 154 336 97 344 -895 889 -329 354 -11 900 -953 425 30 -843 204 -120 453 988 659 -383 411 769 663 -691 955 720 712 -613 -216 -964 393 919 422 -483 -794 946 -638 -190 708 755 53 -628 -97 -521 909 -304 554 -121 -443 270 -422 410 7 -889 226 -305 -440 608 -971 182 909 980 -774 757 941 564 -49 766 224 65 95 -181 -291 570 -16 11 520 42 494 171 539 205 297 -318 -423 -614 316 -536 447 820 -798 432 245 -929 506 324 -135 265 -911 379 781 825 -9 297 556 357 6 -950 166 -777 -26 -647 823 -441 523 108 441 -681 414 -472 -234 -646 -912 76 257 955 317 956 972 125 349 673 53 -862 -890 -613 -600 542 -444 171 303 917 533 -540 454 -171 725 858 -999 -441 150 585 743 -829 113 -905 824 -890 -248 -70 -109 -597 642 456 -169 953 27 -795 256 988 -857 -960 539 951 551 -226 -281 42 -909 570 649 862 239 -964 233 -425 426 631 -210 182 258 233 281 -682 -990 617 335 25 90 355 506 710 -925 -455 -331 -518 465 930 -462 782 701 -91 325 -528 -542 -312 -877 875 881 -583 599 128 -923 629 144 837 -210 -730 450 -854 -137 -955 184 -879 408 407 982 339 273 27 847 -736 -340 886 -45 408 540 717 -469 306 736 936 720 -175 203 58 -667 597 733 -685 719 -832 -71 -109 -274 972 -987 -952 484 820 -361 509 -131 166 683 569 280 621 98 -651 416 622 327 -786 -987 -387 675 705 272 883 839 290 -40 503 -181 712 142 -159 -652 843 -909 -683 497 -752 858 650 -505 -374 46 367 -695 -203 -742 183 372 77 -434 212 -530 -601 929 765 264 199 387 28 -906 812 -238 -455 318 215 \n814 300\n54 -811 -864 533 -691 -804 -357 395 -762 698 -378 -695 456 46 -125 396 -734 905 -564 -996 -339 -963 -717 99 679 85 132 842 -497 -328 -370 125 -787 443 -120 -229 -809 -857 656 6 -973 288 836 922 45 692 589 -437 291 370 38 -471 -196 -341 -406 749 947 -36 409 920 339 -698 -280 860 776 269 348 -986 -350 680 31 983 656 -1 -603 -75 763 -315 841 411 289 -829 756 760 798 -313 195 389 -838 -726 466 -188 -221 918 666 434 22 -217 -956 -102 517 785 -90 671 -444 164 -415 547 -833 757 -49 992 -918 -170 550 815 233 815 -812 -556 -874 -138 464 -231 632 21 352 -710 -371 136 433 -257 -587 -532 754 796 280 185 158 -345 -400 -8 -998 235 -988 -434 -869 276 971 935 906 -400 958 -408 178 248 138 -190 547 704 593 -256 -954 -745 226 433 -93 936 -492 -624 34 93 990 678 623 -581 691 740 -312 96 638 842 972 459 378 -520 71 823 157 -225 146 -49 304 -123 7 248 712 -385 -29 -818 -328 426 698 335 -981 223 172 84 601 -360 327 -914 -937 -391 122 884 271 75 -922 389 -560 7 821 223 -734 737 0 61 -247 131 170 786 349 613 350 464 133 249 813 954 608 -718 746 682 260 750 -388 212 155 824 -656 296 -995 335 -700 -860 269 408 -957 328 -343 800 -666 569 34 899 879 719 -588 -982 -99 246 287 -87 786 40 -312 -240 883 -825 472 -903 587 746 -335 624 -992 -208 908 -370 751 882 -430 670 591 974 -711 -308 252 -492 108 797 429 633 -598 586 741 941 -947 563 870 29 206 -761 874 555 995 677 288 -897 268 934 941 866 558 103 168 265 -92 550 589 -327 -300 -383 -819 -937 813 255 -366 24 407 41 229 -976 27 -68 829 -689 311 -139 -332 -177 579 564 -631 344 622 -610 165 250 42 651 394 81 460 -346 973 832 125 750 954 9 -548 -377 688 432 -457 -274 380 198 467 -44 717 911 -227 109 614 -228 439 87 -807 -426 -504 554 -251 528 964 680 372 -909 109 -576 491 0 -840 -356 896 -87 399 514 72 817 -567 -343 881 115 -211 -263 528 -814 671 -511 396 -599 -574 51 433 830 -573 992 718 72 189 -388 39 486 -373 216 348 172 -141 -5 64 362 28 532 -722 886 -147 876 399 783 600 544 390 -267 965 -87 523 227 -430 -739 29 914 406 226 -816 570 922 -511 692 -143 -820 418 -436 -33 -953 28 680 -6 268 644 99 -430 889 -701 -325 -774 3 -221 -26 877 527 759 -473 -338 718 210 -886 740 -807 408 656 232 -723 -433 -580 647 527 -397 345 341 957 413 -418 -667 355 339 423 -78 170 861 -524 22 776 -814 64 936 -167 381 231 868 501 -764 -889 -128 754 -954 577 171 316 289 -231 370 -214 649 -230 -791 892 -203 222 525 561 -335 59 -821 402 -743 -740 380 945 -394 -149 907 394 -513 -886 366 665 965 586 -189 -274 -503 393 -494 655 -431 -326 481 -550 -726 177 -74 121 -284 -446 -283 -84 770 516 727 -858 753 391 496 192 977 -759 -330 896 835 -919 134 -968 920 807 192 -513 -455 -346 33 -760 115 -360 837 944 -803 189 -798 -46 736 -560 -184 332 -346 254 123 -751 91 540 556 200 547 736 -356 118 107 601 -96 939 338 546 359 803 266 692 7 -512 -68 -409 -144 201 -864 889 -807 174 982 952 356 -541 176 574 -965 480 469 350 289 -525 480 216 454 -397 6 567 -755 573 460 12 463 384 103 841 -944 307 530 -438 500 344 780 319 -220 -956 935 660 556 256 353 688 516 908 303 -11 -898 -503 77 968 -670 -656 -56 8 629 809 852 -837 -206 974 -190 223 624 -114 780 570 50 931 687 -142 785 -201 568 -526 238 67 -760 962 677 794 479 85 863 -947 566 984 385 -345 876 133 91 -497 453 180 850 -677 -870 -770 -102 -90 -371 -516 -884 -66 -329 -329 -38 -722 884 662 -422 -116 826 479 783 727 -886 628 692 474 -350 -617 606 -485 542 -558 -466 -608 -323 -901 712 673 304 199 -774 291 -772 -103 116 442 90 85 845 -704 48 789 956 194 993 13 -124 523 835 -490 -143 -232 65 \n992 232\n212 -941 589 -495 -723 106 -790 149 746 708 -872 853 39 219 690 416 -363 737 368 -253 750 -494 -436 427 -577 125 48 96 562 -972 -852 285 35 336 -262 -984 516 -879 -813 344 853 533 -934 276 -84 488 -191 301 309 667 487 263 733 374 795 524 270 -117 -714 -953 782 -821 931 919 728 -242 33 939 -505 139 30 791 220 716 -421 727 -223 76 678 -636 300 925 -438 829 -633 -526 -245 545 -24 756 630 398 -672 12 -514 453 890 467 317 251 844 -935 -480 -849 393 547 -229 -269 -319 743 902 31 -360 -741 -831 261 -794 189 783 -40 40 754 419 685 -54 267 -315 149 201 -739 683 -653 -836 698 819 726 532 -929 407 -422 925 -170 -536 942 130 -37 -657 -490 -481 756 -259 715 -669 744 17 760 -906 922 661 657 725 99 -313 35 170 -244 -855 87 -643 687 -82 -483 -903 -115 562 207 329 45 -292 -593 269 698 904 -122 879 669 -281 878 284 -695 -728 8 910 -42 -9 -668 612 -5 245 -139 -656 -956 534 971 39 -493 -118 -748 365 -915 729 35 422 -174 798 659 22 -162 146 984 -394 924 845 850 285 -608 954 672 620 798 27 242 114 792 428 950 -964 -61 723 940 -726 649 574 593 -285 891 941 416 -299 -469 236 -100 -830 328 954 680 -833 989 -717 551 729 -285 -627 -676 -641 635 274 -172 695 268 746 471 -285 166 589 -498 -353 238 -182 24 -597 152 -255 -636 31 -11 385 681 -850 298 -944 426 -91 52 -317 -498 550 5 -970 -469 631 -339 -705 181 296 698 614 295 -737 457 -752 339 -348 994 -524 383 -821 -925 -849 349 16 -726 973 -800 -779 531 519 -755 231 575 -795 -826 -787 721 -738 -527 634 398 -175 -678 -168 939 -499 994 -904 -323 -514 -982 177 407 139 -332 -396 81 219 329 480 768 43 271 230 -400 -414 74 566 175 -596 348 552 -264 882 -961 -755 924 887 307 2 -620 -545 759 922 -176 966 662 -205 323 251 750 194 197 -776 790 939 -384 570 965 213 -611 416 -332 923 -218 -726 607 -228 268 301 448 457 748 625 -588 264 -336 658 -220 971 -29 483 -949 145 401 -526 -209 900 583 927 -564 -130 791 716 87 772 724 315 929 466 -980 436 -736 773 -187 -538 28 -259 -840 -159 37 -911 -390 -485 -432 -102 -44 -718 -735 275 -670 533 622 332 394 -866 70 434 468 642 853 -429 -451 908 340 534 801 525 488 883 -791 29 994 -319 -750 -440 87 752 943 623 -728 839 932 748 739 -451 181 385 352 702 -684 849 461 766 385 -718 -811 941 -303 441 -990 -961 -141 -981 889 645 301 -149 -880 631 529 -897 468 -752 41 -389 131 -39 -62 409 -389 678 -523 -162 -448 -667 942 176 -317 -113 -324 455 -712 -700 -226 574 604 952 620 26 -237 659 618 -116 780 -558 -286 815 630 -961 567 923 22 -620 -985 957 126 782 -363 -52 -178 -18 -344 -189 -445 -693 302 752 402 689 -898 409 -661 909 -642 -401 175 -650 337 74 989 232 -839 -598 705 -399 223 -456 -424 70 271 -657 330 240 -459 -581 -830 610 170 -844 -931 382 479 713 504 531 418 94 245 803 252 62 39 -252 -407 418 -48 -271 3 -573 189 412 -138 760 -790 748 -381 -486 -657 -45 -549 -561 -224 17 787 739 38 832 376 -317 502 945 934 60 765 -37 949 -287 970 109 -943 763 581 535 -124 439 493 661 511 608 104 205 311 -694 -928 890 167 438 384 -729 566 878 -75 853 672 963 997 220 227 190 312 -168 -579 -402 -448 551 702 928 -527 -411 -560 36 -194 -682 -641 958 307 679 -578 -841 813 -295 -188 199 403 918 673 283 -489 -352 -384 -30 64 -320 525 483 719 -188 495 842 525 -118 -625 -241 -104 917 641 678 -241 450 -828 135 -445 915 288 554 150 452 689 -685 304 529 -716 -791 764 589 551 -381 -705 -326 279 878 -806 -751 -952 -543 857 732 33 -800 -531 650 877 885 -785 660 68 -134 -524 -79 160 -447 962 -535 -368 145 404 -312 -808 -856 870 -926 -143 419 74 661 639 414 -860 105 -385 -883 -55 -111 534 -277 951 -219 575 -443 422 -879 374 -467 760 -539 -867 -77 -822 279 -64 980 -758 -867 -93 928 577 -48 165 943 908 -92 -951 -639 -79 -977 526 109 -985 -358 -241 674 51 709 4 -257 216 -20 893 490 -940 -828 -936 49 834 109 -755 24 787 -32 -162 833 -406 667 301 629 19 -849 -661 800 239 767 -651 866 539 -880 337 711 164 378 438 368 -133 -751 -190 -136 -640 301 -368 168 489 814 343 940 148 -656 -154 795 369 406 -131 915 -215 -981 -468 -675 630 784 813 647 820 397 415 847 321 150 -980 536 642 169 325 210 -618 -976 803 -968 308 498 78 235 547 712 49 408 571 689 -740 -141 917 734 952 -656 782 710 -119 216 -112 283 -306 -553 -152 59 -864 -149 958 25 790 6 145 -785 329 125 584 -447 70 309 42 193 -435 -689 -679 353 195 322 36 332 694 -842 -963 -253 318 -484 864 -698 843 -65 -214 -542 -400 -756 -832 958 -244 791 -592 \n776 218\n963 -588 857 829 17 87 424 927 582 -496 -558 -759 -509 -199 777 430 380 -360 480 194 -565 -689 218 724 -233 -903 957 626 664 -522 -8 -46 -993 604 -642 -461 -417 654 47 321 -812 635 -378 495 -749 675 -590 -570 -772 -810 220 94 -218 -894 417 389 375 60 909 670 -885 676 -156 -433 555 456 584 -469 794 -225 -390 818 83 610 733 -671 528 -67 434 -213 -590 -928 -662 -714 73 -223 -54 175 504 86 -754 466 845 994 -639 469 766 441 -638 173 -623 -833 986 -476 613 582 205 -239 -108 432 -244 209 -914 -274 -486 870 723 597 90 257 -27 -331 -270 -391 -766 -725 512 193 -436 773 -441 -582 989 356 -989 -198 769 630 996 768 139 281 -964 -93 441 185 757 995 -446 319 -867 731 504 69 616 -203 -491 572 448 -565 683 -54 -715 782 -294 -292 -166 736 536 377 689 209 -956 -438 -763 713 786 220 -386 -600 -372 613 -347 -310 112 115 32 -48 -777 -551 -37 -858 550 195 562 -15 393 520 -669 995 816 674 485 898 672 879 119 302 -413 -19 901 349 12 -783 -410 88 410 741 -679 685 465 62 -185 798 690 -333 241 -137 222 537 -570 -30 59 910 -967 -19 854 964 -666 11 -867 839 982 826 -726 749 -478 779 574 68 -796 259 244 890 251 659 -841 -378 317 850 101 221 -718 -977 169 167 -335 -909 -918 670 -652 -72 147 87 694 -392 -795 352 -665 478 -164 295 543 761 25 969 -372 -633 193 932 -816 -548 -967 606 -184 356 -360 -836 173 750 -128 52 939 101 -565 251 947 -398 -113 -279 -698 -130 357 -310 696 -334 729 549 -138 -526 485 210 -73 702 139 -267 -120 71 2 -997 145 -881 436 390 777 -99 585 275 271 972 -890 834 -153 365 -711 -849 112 -741 498 566 -223 764 138 276 -344 400 -321 -5 294 -411 -846 810 -140 483 -339 -972 565 681 55 879 -114 -162 558 -706 527 -593 636 -264 334 123 -790 802 -450 690 -658 347 965 882 -833 -930 -859 -511 260 588 -53 -893 -788 79 -783 -847 -672 240 2 401 -91 -734 -627 445 460 60 986 -242 -444 659 -491 -192 467 -254 425 5 380 -540 118 -659 -228 490 4 64 279 766 295 -213 283 613 -385 200 387 838 181 866 357 820 844 -241 -453 920 171 -614 304 445 827 -240 745 -714 -687 760 -119 828 -426 563 765 -9 118 548 584 406 22 -527 957 -90 301 950 121 585 533 -344 423 753 929 -613 -590 752 427 443 -168 -485 639 565 916 762 901 -343 276 937 883 930 424 108 -593 -126 161 947 -180 411 927 169 -827 231 812 -943 -821 764 -599 392 329 -623 -433 427 356 514 755 373 631 202 -462 988 838 130 266 -893 163 198 -280 -943 -928 -344 -103 310 888 -895 -995 -889 287 259 -985 -196 486 331 245 -342 144 -359 -620 52 199 630 355 -524 -80 -529 190 19 642 254 441 536 507 -462 58 663 -188 -479 660 375 -384 371 487 -612 537 -343 691 -573 618 5 -112 111 -38 426 905 -753 -392 360 892 -126 96 -494 156 798 29 91 351 -428 653 975 952 -569 -551 58 294 -240 -970 747 939 153 -83 738 750 -478 499 -542 610 801 870 -240 220 236 -901 430 785 -415 -684 -713 -158 -726 -293 -296 -326 256 844 -130 144 761 121 783 77 192 -457 696 366 466 13 -315 421 -110 -530 -168 639 759 -887 -263 -609 693 818 -655 39 60 -731 -432 622 603 471 243 459 774 -247 540 -42 -956 -742 -935 -249 -466 935 -160 834 -807 4 -761 228 -182 736 504 986 87 926 630 939 14 976 -529 832 -626 721 507 -746 959 -683 489 921 556 858 821 -229 -326 -694 949 801 332 -773 -17 451 913 207 -585 966 -901 -816 732 881 860 -954 346 -565 493 33 44 426 684 685 -22 882 257 339 644 292 -671 876 -330 -587 -45 468 554 389 744 748 554 373 592 -985 443 809 182 907 260 -276 989 999 965 5 -398 -589 844 -14 937 339 -307 \n742 200\n-468 -778 251 -462 630 -579 -875 673 903 -49 336 807 -89 -974 726 821 97 769 -476 67 720 -891 -446 -709 267 43 953 11 -300 851 -58 -802 -847 -488 -711 97 -869 -549 764 916 204 97 -848 332 -989 724 269 549 -421 -102 852 70 677 89 950 -277 938 306 324 945 661 515 344 318 -796 708 -682 356 783 277 548 -624 429 766 -110 106 -556 535 83 981 452 96 338 794 -797 507 -454 334 -372 965 -286 847 -186 25 -710 419 69 -221 76 377 -597 402 148 558 736 320 284 -513 495 456 -32 -823 -366 728 -272 -800 264 211 -765 296 457 -942 -888 759 -234 924 211 -233 -265 659 189 -911 382 180 794 -92 207 103 305 17 -357 -989 -829 930 188 -53 141 799 575 416 612 499 930 772 -329 568 -318 -604 519 -41 832 -806 -398 -862 362 484 408 684 -537 844 -102 235 310 952 -337 238 93 -47 281 -583 -609 -650 -33 -592 445 -143 -657 -850 28 378 -922 -506 139 295 -998 -983 -610 -569 -222 -478 -806 654 145 -862 -906 -848 -36 604 -105 766 -644 632 934 361 526 -910 508 592 72 -262 -110 100 93 -140 -400 373 -901 -409 -348 307 386 -232 943 -797 60 -50 -313 -262 558 499 -401 187 335 506 -894 382 362 101 -238 -806 622 -75 691 -852 -319 -608 217 976 867 892 -882 954 902 20 259 -82 854 727 -620 -392 -848 -475 235 -900 -305 382 -57 624 38 269 -140 321 740 713 -748 -26 504 420 574 584 -809 -568 435 383 -689 -137 -218 539 384 46 -458 592 537 540 553 -811 658 -355 536 -687 -360 295 333 57 9 984 -639 396 -241 242 -301 -598 22 -958 -848 849 -979 423 364 282 -424 -934 915 365 -337 247 146 -48 115 -369 362 -715 290 514 -857 319 326 -544 -878 -124 664 817 -384 33 -114 -429 576 992 925 871 -394 -503 -296 775 392 -760 -880 -299 -887 49 -10 985 -184 309 -635 -342 64 794 273 -666 -56 -753 -63 578 190 289 -917 501 -690 -532 293 855 155 848 312 802 207 279 879 320 334 640 65 913 32 -148 356 347 226 18 -52 541 918 675 -878 36 399 382 -40 -542 649 110 -701 369 -807 47 790 -93 530 -740 -196 14 665 28 -848 -715 20 -528 795 714 -696 911 942 442 -590 435 627 855 148 -713 546 -841 58 -980 685 21 430 211 -508 650 681 646 -313 701 -903 -37 845 -103 -947 666 -610 -242 513 778 143 791 818 191 520 779 652 -529 579 -765 -375 -16 -627 -337 721 68 -89 552 58 814 94 854 -689 -876 162 635 461 624 912 -347 797 770 -704 -630 193 953 308 240 -511 230 899 66 -903 474 -529 391 990 -730 5 800 -983 978 17 560 349 -136 982 489 827 548 894 365 -284 727 -823 -382 -459 417 431 751 -941 832 187 648 866 224 -542 -710 -167 -694 648 240 623 -492 -180 524 757 -257 177 -528 924 -805 130 713 -631 -33 -319 -319 -745 -589 945 439 774 -736 201 496 -872 -524 434 -902 100 71 27 -106 -298 555 830 -600 -472 63 932 928 552 308 582 -190 573 761 853 866 26 631 755 120 -531 957 -855 513 842 13 822 960 -483 821 -997 -478 409 -520 295 -726 903 -530 -117 -250 -823 -888 57 980 998 -829 -242 -62 -430 -318 -148 922 275 -127 -677 451 615 411 -240 259 -94 -825 -798 354 274 353 -592 757 72 -483 -686 204 -538 -457 748 651 179 775 -687 331 -933 578 -564 -126 990 263 577 446 183 -359 306 -23 164 -577 -822 -584 831 176 816 165 -925 -593 -974 -120 343 847 -765 -620 467 -287 -235 713 664 188 -523 627 277 -763 -317 251 82 112 556 -396 -238 423 -310 631 -864 420 447 -271 -717 -988 702 -173 736 738 -534 -454 133 899 318 96 598 306 -466 937 351 413 -576 769 73 -542 \n772 216\n-95 -710 998 -894 519 489 868 -781 766 58 -841 971 -221 -804 463 -502 223 306 -875 314 -132 510 918 -637 718 -482 192 857 727 82 -200 478 224 903 677 -405 51 910 929 957 -59 -727 -345 954 -359 -543 -398 -449 451 -358 886 -638 -126 -938 820 854 93 -162 620 437 999 -99 736 -82 86 -15 197 430 -36 -401 -262 384 652 410 -857 -427 893 919 341 750 -147 777 290 300 62 -60 -377 474 -704 120 40 148 -587 427 -559 704 17 805 -525 481 -546 538 500 157 -281 732 137 231 991 -838 717 830 143 50 -711 -772 201 412 -647 944 248 173 868 -253 83 -161 -55 424 575 -721 -406 686 -267 -818 818 -916 299 700 865 -125 438 -891 565 191 424 -282 851 606 657 379 229 -632 499 520 976 -936 464 549 -455 475 634 -524 270 -325 273 -816 -80 -989 -209 -706 266 181 401 983 845 259 285 -727 336 507 924 264 947 59 387 -513 -13 -229 -89 -992 -375 936 217 -428 -935 -759 -251 -492 -231 -553 595 758 483 623 664 -936 366 537 -942 -723 -637 -794 -421 219 938 -591 223 -817 850 -548 398 968 584 -503 -732 195 528 -267 -505 726 365 -399 -729 785 276 60 627 960 782 -682 995 989 610 171 -873 12 721 678 -936 782 -904 -158 -519 343 929 -25 -436 273 866 -209 492 942 -964 -471 964 257 789 -483 75 342 -671 -196 -125 -934 496 190 -162 564 -968 991 -68 -610 509 -10 893 -901 410 -965 967 188 -611 98 514 253 587 -329 34 568 -783 -964 175 -523 225 505 931 740 381 788 782 -642 -431 979 781 884 851 -136 -415 968 411 -403 351 854 813 61 261 -386 -483 613 -293 262 401 495 -711 557 482 -880 -629 49 739 820 384 166 14 -777 155 37 -33 417 757 -98 -165 803 227 102 -135 378 573 686 -210 420 245 961 867 -685 -83 654 636 442 515 580 961 -454 -693 905 6 -136 -580 652 -471 -419 280 -618 287 477 -388 76 -626 409 368 343 -18 157 240 443 862 -989 76 -869 494 229 574 206 -752 -11 -359 -9 310 659 138 -696 270 560 726 -312 -545 426 937 841 180 667 488 471 698 -385 16 -331 376 -15 624 -875 480 -667 -637 -645 -199 193 644 -784 446 327 -987 -988 845 -872 -689 -277 -787 961 -434 539 847 46 84 -797 -499 46 460 634 555 -755 977 262 -170 -723 152 -3 78 -322 895 -613 -319 -278 442 725 -300 1 377 295 14 -778 751 4 -58 292 996 -897 515 -166 -772 -510 -390 -50 71 168 221 590 -951 -535 709 333 -141 -33 -448 -495 -660 261 819 517 380 464 608 -262 144 -380 862 533 913 732 692 -688 -841 737 794 122 -688 952 -976 770 -251 578 332 315 496 962 505 346 187 259 -971 299 444 32 804 -572 790 -961 -153 -279 906 181 125 172 402 170 -757 -581 -462 286 91 921 115 618 804 434 222 -402 -242 815 718 -71 -474 -915 392 629 983 556 176 429 981 -428 895 668 527 -795 -807 585 425 651 -712 -227 375 314 759 297 -596 780 434 40 -332 39 565 897 130 13 -968 273 378 446 478 847 777 955 720 73 -224 116 792 -143 558 -402 -70 -982 -786 -606 15 -798 -332 -288 161 -645 -525 233 -120 -554 -891 -626 -764 -827 606 322 185 -359 -822 524 -301 588 466 543 -478 -851 530 -364 -857 -71 -598 -531 100 762 485 47 -517 600 -263 -533 -696 9 91 937 989 -771 434 -113 703 -30 -778 880 479 326 -812 -404 367 -333 639 -608 936 470 -771 -283 76 -675 142 223 996 -976 530 692 -220 78 684 978 -2 -505 711 434 58 -771 695 -918 173 246 743 -108 -45 597 724 359 627 -468 343 -365 162 875 543 906 -249 -160 -764 -540 236 730 469 166 -779 510 203 749 -890 878 4 614 -223 693 -585 981 -16 572 81 -223 562 272 -508 -434 -419 617 312 800 -1 -917 719 -831 -672 -779 -166 -763 145 185 -760 139 -221 263 218 632 \n882 169\n581 -524 725 33 -161 149 -950 163 90 488 251 -776 -696 101 427 489 -629 30 162 515 -23 954 273 896 295 893 -507 -605 805 -390 841 970 -306 -639 -471 -582 564 561 444 528 470 886 -398 335 -309 420 987 -555 -676 561 121 -433 -561 282 135 459 526 -770 362 686 449 681 -498 10 428 -658 58 310 645 -12 635 -825 231 -970 -921 650 -856 12 549 -73 -481 -147 73 187 -449 768 -311 730 586 -958 -371 186 -322 372 -628 -982 -147 828 271 -9 228 -687 3 549 518 -166 -622 -760 103 -842 767 249 -203 693 298 992 -934 -559 -936 627 -883 -74 -60 802 616 86 79 588 -815 13 348 -87 983 224 109 348 929 817 684 17 -972 191 -683 214 618 254 -693 -984 184 948 298 528 -137 -884 -271 -77 212 63 315 846 -401 694 -379 105 272 809 -128 -255 146 -884 -676 925 534 260 720 709 654 -502 536 379 447 312 -997 121 -757 774 763 475 -836 927 -953 227 24 198 -68 702 302 -545 388 917 464 -405 12 -141 710 96 150 96 87 725 -725 -241 -124 -716 322 -476 462 -512 144 76 370 -919 224 747 116 309 -269 -902 -129 153 369 598 332 -878 -494 -400 -34 -899 -398 117 -310 596 540 -91 230 535 -640 587 892 480 175 -273 -773 -662 208 111 29 -587 -920 649 -730 -200 95 -714 581 -342 73 590 428 718 503 135 -866 -402 107 -992 397 -66 471 -757 -303 -680 694 -681 926 -932 673 101 268 281 108 -968 -928 174 -47 -994 891 -526 -550 -448 -195 -752 889 -891 915 583 476 -697 409 451 183 210 -567 31 -231 -228 -556 49 932 655 648 254 74 -266 -163 411 784 -621 558 -236 107 -628 23 -49 596 -746 -234 660 -542 268 -899 -220 297 18 -941 533 626 994 775 -558 -984 325 137 986 -136 567 -27 -631 -250 859 -30 666 778 636 -449 809 512 445 -982 -303 585 227 882 284 -948 638 296 803 637 -140 79 -314 -677 277 -87 573 0 47 -728 171 -774 -588 -140 927 282 824 392 313 982 115 -703 338 733 637 -758 172 888 677 889 375 -874 512 44 -325 244 65 -235 -264 753 499 91 -750 530 840 -799 -676 -884 230 -156 759 357 965 -789 901 35 482 544 26 253 823 -822 -403 96 40 703 -679 531 -624 -396 -153 635 -330 -323 704 384 -264 -839 -23 302 976 -661 733 -982 121 -16 -46 386 363 870 -144 -564 148 889 119 -143 -804 631 921 772 506 -306 -722 -199 332 248 754 744 -891 940 -394 570 797 444 131 743 -97 81 -447 -298 494 754 901 188 645 425 673 -544 -730 -92 138 -814 -647 -317 -835 684 -145 75 -2 704 -834 -935 132 -871 349 960 -535 -682 716 -223 391 -436 245 363 -593 645 -617 222 -67 -905 -900 663 338 -890 832 -630 -970 410 562 395 634 -442 891 -735 430 -774 -368 -977 379 990 259 370 -550 310 -832 178 133 71 56 617 -220 -452 -241 606 -146 -846 996 364 993 -849 -758 -880 522 -53 -712 -172 862 -693 743 183 478 171 316 -299 980 818 85 -365 48 219 -499 633 364 -561 602 -35 568 -916 691 -487 615 -90 525 890 616 713 792 927 622 198 745 883 496 -650 -633 -169 -586 -7 758 942 714 -224 -704 -142 652 -758 141 909 462 715 -86 -815 469 67 -504 -634 254 750 547 -62 -53 704 726 -228 18 -234 -569 523 -423 774 -682 540 -195 -606 209 -400 82 117 940 -109 835 -940 -500 85 -265 175 485 398 155 877 -242 27 -348 548 959 290 707 -579 -869 756 -395 -630 -841 176 -868 -733 -5 -280 576 -397 694 130 544 974 101 -416 869 -811 646 696 423 885 524 885 -849 -376 562 221 -379 493 -891 -641 559 -471 -68 248 -796 126 397 -268 -366 974 715 -316 363 280 441 -240 -760 368 10 48 778 486 425 317 -214 758 -41 326 234 -96 -149 876 -585 577 346 -774 -587 151 375 774 -602 841 -700 -395 150 477 -688 -677 -802 15 -986 964 789 9 825 -385 554 877 -51 -291 320 -733 234 -700 763 612 43 -385 -305 331 13 518 286 -604 -728 -247 -144 -258 163 928 708 -375 364 734 175 397 -989 771 830 -302 329 654 70 523 -891 41 764 -89 -607 -866 -327 567 -766 906 569 25 727 -601 -970 9 33 112 109 385 322 333 40 978 -331 75 80 -447 994 -335 299 -42 478 -676 -877 903 -638 -847 716 845 -707 -660 219 712 -9 -568 635 193 850 429 -485 131 115 817 -105 928 117 439 266 114 -318 636 440 179 509 -763 772 \n834 105\n637 -888 -13 670 -430 -997 406 52 396 509 977 353 610 955 757 -387 281 156 523 279 46 993 611 -907 522 417 744 29 -793 796 639 681 923 -425 196 967 102 297 597 875 882 -34 149 -491 444 621 -810 -852 331 -760 759 -742 910 -565 347 -732 756 801 -856 781 -2 310 -573 93 -65 442 -349 -908 -805 669 -790 390 679 607 -475 -769 700 -727 178 962 172 733 -510 905 379 162 -421 -289 -748 -786 -715 161 25 -649 -974 853 -260 43 -889 -469 -18 346 449 237 -82 428 467 -491 722 602 955 989 426 66 78 -936 127 -206 186 874 522 996 256 665 94 -564 -57 658 -326 -644 -78 243 373 943 655 440 -3 9 253 114 -471 -957 551 515 871 -904 -993 -620 209 507 448 472 -182 901 32 406 666 959 422 282 998 350 -334 436 118 228 638 640 507 551 -577 941 -289 -656 526 278 898 -6 558 -124 -66 489 -97 913 -681 -591 513 415 -972 -122 -358 -423 -324 -343 -225 -178 117 -817 -712 860 737 -333 -104 660 -138 -644 54 165 515 -515 301 -464 520 494 -404 880 -658 -73 253 804 468 -957 927 -856 -272 426 -397 676 -387 -711 341 740 -757 19 -809 343 -130 783 929 -912 -115 -194 527 -576 -13 412 -26 738 601 667 956 -837 387 -753 419 -46 -659 -84 116 523 -23 757 -371 305 -247 -657 588 678 223 -251 862 -104 473 416 227 477 832 -586 465 -168 -78 381 940 -627 -415 877 666 999 452 886 333 -694 -577 723 268 425 -735 -912 -186 738 -763 911 877 12 -213 -943 -9 -566 -186 -672 -379 3 882 72 143 437 90 617 -418 181 699 249 312 -549 -610 457 343 662 670 831 266 -210 -477 476 151 220 111 686 -865 395 -361 -246 -807 -226 812 443 -652 -147 795 646 813 -367 -905 44 -469 -528 672 728 -828 120 811 -78 804 166 -173 272 11 232 -560 869 100 132 335 -501 -870 -134 892 118 403 -253 299 715 66 486 348 920 605 759 629 150 36 589 -606 933 464 -527 -116 549 633 -401 -799 404 473 -794 -627 708 606 941 226 338 948 636 56 496 313 -80 998 -979 367 451 961 -958 197 -711 -584 829 223 -364 -113 98 809 229 -756 -52 592 -547 214 -595 -905 249 535 422 760 559 -300 509 770 -847 -439 175 -323 195 298 533 -161 509 -424 813 207 -901 892 168 -716 -70 671 420 913 -409 -614 435 -806 505 922 -146 390 134 719 659 -574 -331 101 75 354 735 -890 876 -88 855 190 781 466 -906 565 -317 681 -660 937 -572 -277 316 805 418 430 774 -643 830 774 625 311 464 476 -690 -106 863 -258 -895 368 -836 360 541 26 549 -592 -604 -325 795 112 117 -328 348 443 50 74 122 -583 -38 -802 714 768 913 766 -830 76 -238 117 -876 -453 -420 -980 180 -675 -208 996 14 -863 297 282 929 -801 179 471 277 251 -13 -630 202 -387 595 -120 -655 -541 -261 83 277 358 902 -718 -65 971 -133 359 525 112 -111 -245 -991 -641 675 398 432 461 197 907 -734 157 220 759 -235 881 196 -468 124 -412 13 950 707 459 458 -877 -998 -994 -778 -983 869 -135 658 -604 376 973 810 -17 630 882 675 493 247 538 375 903 -644 954 -138 -566 -745 85 201 -135 178 -362 -370 643 627 788 180 -486 62 825 106 -985 -217 451 -388 97 5 474 -966 6 193 -616 727 653 -5 876 635 286 -991 880 938 23 289 435 415 -751 520 536 -81 115 -871 -644 -630 685 -947 588 483 -752 885 333 805 -605 -98 466 443 145 -974 305 -289 117 949 -966 487 -917 864 663 288 17 630 502 307 271 -145 442 -950 -847 845 47 -14 941 -748 97 -80 -531 572 845 307 740 895 512 779 -394 627 -966 -728 -737 40 -180 997 -642 -292 870 602 665 -418 915 -242 303 807 -804 -821 240 -924 96 -991 942 142 595 -487 109 657 386 937 373 -113 512 157 715 335 204 -774 208 -691 673 556 929 -772 -141 -530 -965 -417 987 -593 -146 123 737 427 -80 185 938 768 540 603 965 748 -158 -879 -228 655 308 -655 102 860 -917 393 -326 -147 847 206 -586 687 362 572 -644 632 -234 444 -348 354 104 228 716 -549 9 389 371 507 -238 550 283 717 515 520 395 -486 584 -120 \n861 288\n839 973 317 961 189 -740 -209 455 200 136 99 113 415 797 130 72 377 183 913 209 -37 844 184 658 411 29 225 585 -408 617 -179 -733 -686 682 -594 546 -970 846 532 -218 -796 -808 -702 -999 955 348 -597 -602 566 591 982 -7 -876 660 -759 -126 -757 -368 179 -195 -694 367 66 -559 -553 -188 750 -469 -146 -662 487 918 964 373 -888 -790 -770 745 -384 -564 918 683 -690 590 142 386 230 -906 -594 -112 949 246 63 250 -776 -354 -975 748 18 105 -262 530 -850 251 23 568 370 574 421 -811 746 208 234 909 998 526 107 789 -795 -656 666 421 974 -555 731 283 -222 486 944 464 549 678 781 716 -707 602 -909 744 11 -823 315 986 483 -325 -625 -332 -712 -464 124 326 272 416 -870 303 543 -249 -531 864 699 708 -764 -362 -879 564 -16 795 -68 434 406 333 523 -90 476 -862 -852 -627 123 865 -794 739 232 763 557 840 -413 -455 558 608 -214 779 -351 155 428 -313 -857 -756 -893 -31 555 363 218 -223 306 -381 80 880 -420 675 144 -106 819 767 -551 558 0 506 423 -884 77 297 -380 -891 938 347 7 573 786 628 262 768 179 -853 362 615 305 18 -152 398 -907 411 953 969 -980 -348 -818 478 -267 -533 -876 750 772 -58 477 985 141 -652 189 15 -514 174 282 735 561 753 541 92 -382 705 867 -858 -649 -165 -429 286 619 435 687 979 941 497 -901 -598 929 557 105 -691 -487 -359 -583 126 345 -2 802 811 175 -294 539 158 787 528 481 316 366 648 604 -503 -162 827 664 830 918 287 -241 -587 -222 -74 17 -27 120 -67 -643 546 -127 -870 748 -492 412 860 61 -629 848 961 -938 514 -163 653 126 150 952 -940 -101 -718 -551 710 256 -725 -938 271 -276 -392 -800 296 -443 531 -165 -388 202 355 -280 380 121 474 579 -91 31 742 991 -659 -259 -442 182 342 -36 179 -735 422 922 -940 517 -894 -402 -803 -976 950 -438 -954 306 547 -323 662 635 236 -425 812 78 623 631 -743 -186 458 652 -675 -194 986 823 901 -54 231 -136 8 -479 -606 692 -658 638 -14 -237 -69 86 -723 727 759 718 662 -525 843 56 643 66 573 -237 762 568 65 -414 135 733 189 940 794 -105 90 -265 919 -665 207 469 390 527 750 658 141 807 142 -152 737 587 919 146 625 208 441 -710 -131 424 141 -185 -741 -886 194 441 381 -957 961 394 265 -385 849 -458 -65 -379 485 253 -711 410 153 713 -694 165 9 -826 656 -386 938 95 -46 482 886 -700 372 554 988 758 186 -668 -781 74 389 -604 369 -55 -708 -788 912 23 123 232 -58 -257 915 194 463 -426 -672 239 504 960 530 624 60 533 677 -858 723 706 481 135 -863 -58 -954 -155 630 -18 537 55 -289 -736 -289 585 -200 -257 -98 -458 484 -961 -298 -791 -731 791 63 649 -647 646 -759 301 704 950 -456 -564 62 -784 -240 20 415 493 222 406 719 -8 -431 398 75 -872 -91 894 957 -527 -469 986 291 158 206 669 712 -614 -498 -3 850 -304 -617 854 458 -542 144 33 127 8 749 -680 994 144 -927 750 -27 342 660 -820 -548 837 273 81 313 316 901 -717 398 630 998 -5 465 -970 155 210 -675 -771 176 946 243 241 254 565 451 991 -768 -105 785 523 119 638 143 290 950 251 -468 65 478 208 305 -268 -908 -889 237 -227 342 762 -257 -992 2 -589 701 186 -23 -901 113 -85 330 -239 996 424 -467 436 -945 -830 53 -288 348 -125 881 -638 -882 722 -27 -697 703 43 371 252 -365 875 -133 180 748 522 658 -913 -852 811 -838 -617 620 -668 784 844 71 -321 820 832 -162 369 436 423 -655 -335 -75 549 13 467 745 43 542 -478 -234 -318 -784 -778 678 -672 -156 -168 -666 317 -770 495 -838 952 955 -12 574 444 965 748 89 827 842 300 316 715 241 929 -424 876 412 -705 816 -755 -57 96 -220 866 434 -76 808 -269 -940 -530 942 159 715 997 16 531 501 -830 399 -731 506 191 471 781 75 -479 912 -112 288 -378 543 -556 968 774 -802 -871 405 767 408 -785 -244 547 95 785 554 758 771 117 58 104 78 -934 -328 -970 803 554 -281 85 -634 496 -329 635 927 471 300 187 -26 608 941 -625 -920 327 410 868 -145 -999 -357 391 -776 -379 613 -672 -455 549 -371 -444 -32 -618 -781 -25 -628 619 -311 531 -632 334 \n817 336\n891 -532 -303 294 632 105 649 210 -769 -631 5 685 -291 -794 532 660 -344 -817 537 -424 969 -112 -637 712 607 271 942 -733 961 -993 -260 692 929 878 -850 -87 -726 777 59 188 708 706 -954 149 911 925 689 446 380 -345 27 -794 592 498 666 166 207 832 -258 436 -454 638 -620 826 -841 148 876 737 735 -277 -3 -622 185 377 790 780 6 316 -573 -184 793 -813 764 860 -890 177 869 284 593 -437 -509 116 -694 -439 395 -320 -660 934 780 -323 737 629 625 561 328 -637 935 -60 983 -856 190 19 273 470 571 966 -597 595 119 307 389 -735 -77 444 -48 941 552 743 569 213 42 613 430 706 -222 131 417 20 503 -316 402 -743 -399 941 -427 -251 -889 304 139 354 -135 -322 -996 -453 -268 -940 269 71 907 -278 600 576 295 -991 197 299 241 150 813 -984 453 261 -208 100 509 864 -248 940 4 146 19 -133 20 337 501 239 466 -741 956 -605 -428 -261 170 231 786 -922 198 48 442 -49 -27 -601 -897 -989 424 -428 -377 779 -574 -937 894 -685 662 -533 -33 -440 -840 589 205 134 -628 8 -164 644 -309 306 -379 788 -282 -210 273 109 955 789 -796 214 762 -848 548 831 -631 259 78 264 -570 0 507 103 -101 -616 -639 23 888 54 -82 -996 435 10 90 -592 -679 424 -30 224 -342 -622 493 -31 -246 561 -877 -778 -258 609 -533 771 -401 368 700 -951 453 351 -71 -928 717 -673 -534 499 580 934 -783 947 -703 481 626 -980 -83 787 180 385 -821 222 -909 998 216 235 -545 783 426 84 946 455 -751 -674 885 754 253 -408 -185 259 158 54 475 854 -586 24 -356 504 -154 356 737 370 -45 -31 -266 -19 575 305 556 490 301 -748 -504 471 -395 313 -617 19 -711 956 385 692 739 731 -261 930 -638 306 132 613 219 -786 125 468 -97 877 726 -215 329 372 -621 934 531 -809 475 472 10 -149 420 -397 227 -91 -568 900 434 403 -157 -174 325 -737 787 969 -23 379 918 6 766 -495 -680 -348 317 -66 949 -306 771 -866 -581 313 226 -213 829 408 785 511 85 69 579 200 -796 203 494 -572 696 622 -460 57 614 697 997 237 368 561 763 941 -826 415 293 -831 692 -234 669 617 -996 -186 -754 -759 369 766 54 -330 -656 15 609 -451 923 467 -508 -660 21 -635 -583 839 -951 614 276 165 -462 -452 753 -72 -531 91 506 89 457 -21 885 764 -3 -943 428 383 -139 -228 983 -167 916 321 831 -874 633 534 -467 422 -204 -883 -847 -752 -144 225 424 38 -735 -356 -58 46 -365 -816 778 -68 955 -937 580 -105 957 -73 846 590 -436 78 171 773 -28 721 -442 -488 751 -897 548 -872 -81 390 193 560 490 886 27 -983 -255 -91 -186 -833 -41 699 78 319 276 -703 -280 514 -161 -556 -658 276 701 445 682 623 600 31 371 -308 327 -291 332 -86 203 152 -735 12 -279 751 -475 139 -461 29 -803 769 578 348 -981 -43 157 650 571 -455 -460 -497 517 -331 912 277 157 -228 324 -585 497 -216 826 -778 117 397 205 -82 -631 -144 -32 879 -90 -279 726 626 -563 -735 -568 176 270 767 -34 124 -354 962 -926 315 897 649 127 79 -729 -631 231 237 262 -19 722 222 -789 162 721 -586 818 594 -968 -536 956 232 456 31 -500 -515 534 425 985 254 570 370 431 738 176 -733 -379 -930 907 -616 336 141 829 -459 398 -352 112 100 -22 537 705 -694 775 21 -503 262 924 387 920 573 123 94 -316 353 983 279 296 588 23 -329 -957 922 661 107 -678 -695 128 -258 406 -992 -883 852 -415 -333 948 278 -236 -533 286 -223 -768 -202 791 -450 -93 256 930 440 -390 66 13 -124 101 -246 -708 950 -342 684 429 576 649 443 -203 -364 500 604 91 491 335 660 -482 -175 575 487 701 -443 139 224 959 -6 -50 745 -158 -68 -979 825 30 -548 435 -865 -437 851 347 790 -861 815 903 -739 133 -837 -97 772 488 -84 -147 292 877 40 849 783 -446 -376 948 -48 -577 -456 544 -749 330 -399 -495 -222 -134 10 -779 754 657 -799 -561 354 -689 571 432 684 -969 637 983 329 264 129 996 775 847 \n834 395\n11 556 -364 588 428 144 -212 473 141 -122 365 858 261 -921 423 623 879 17 -238 662 -575 417 52 -695 488 716 643 -873 -785 -8 -500 -691 987 -906 -859 412 -29 104 528 244 313 -126 424 -648 956 777 50 946 810 855 994 -423 359 789 833 216 167 543 979 -217 -271 -220 -455 620 977 -79 -795 479 -292 -104 238 210 -66 -512 732 -418 -688 217 110 -681 -354 988 887 -404 485 -408 863 -99 186 -234 -116 293 -561 231 788 -833 -428 36 741 990 520 -574 -301 419 96 -723 338 384 706 383 739 -284 -152 -568 373 300 911 -899 759 746 363 -883 -990 740 -866 145 -594 -745 -404 815 879 367 866 -565 221 -928 -180 508 137 144 -176 341 -458 361 458 -363 596 -959 519 36 -752 -13 433 -741 690 -886 -239 915 -49 852 818 914 -11 348 400 738 423 16 708 77 641 -452 -580 -698 -633 602 -146 525 -316 -542 268 677 922 762 -749 -901 -455 603 657 644 -250 802 268 140 -320 -820 44 -446 -714 -43 226 949 746 371 854 519 19 614 -704 55 606 -896 -807 -61 38 -851 -509 -844 -605 -220 713 515 372 -396 668 686 607 520 -333 122 982 217 -126 -796 -733 -885 -476 -946 517 -317 770 336 761 181 95 581 410 -679 67 435 -612 608 -78 171 743 745 81 894 -822 -103 -955 45 267 203 -950 442 265 -595 616 741 -881 -319 602 -136 -854 477 244 707 40 798 390 153 797 327 -112 793 307 -881 724 190 -999 305 -447 -415 530 208 860 24 854 484 520 -583 477 -77 -303 -840 -411 249 750 833 543 -144 831 -863 -630 -785 256 487 392 220 124 -917 321 14 -496 -281 505 -592 399 597 397 152 359 -232 -363 -662 -897 215 274 40 957 198 -616 502 -356 -275 -969 7 -333 -204 711 490 265 -36 125 -734 638 610 386 99 191 -65 -940 -47 610 369 -371 298 257 -645 970 -546 -130 -427 873 575 -319 -23 -982 168 551 -48 -55 876 907 353 289 -354 793 -682 213 -626 -549 253 845 305 443 -985 787 57 638 -898 339 -79 -612 -759 -316 -915 687 -818 -59 -60 502 740 136 641 -34 830 919 -377 -266 -697 -408 612 -631 -63 928 -607 873 760 981 164 144 -358 142 104 131 -585 -256 -923 -277 524 -370 -323 -627 614 515 666 -175 -274 430 -923 -976 -704 477 721 447 -553 315 88 764 222 472 690 799 794 -985 931 -800 148 -462 -918 359 622 -770 -518 -748 392 -902 -749 -545 414 855 -497 -995 -901 379 161 925 -858 -520 964 436 -516 397 91 -708 589 -630 490 -881 301 -13 -68 983 -975 -964 284 843 -641 -859 4 208 56 -912 -753 -707 338 -386 -293 839 571 -974 836 -986 169 506 208 661 511 -917 861 952 54 372 693 652 -63 -38 181 -736 850 98 -462 844 -162 635 661 -953 447 -155 628 583 -59 -189 -151 197 -93 705 -495 -997 -945 604 738 -508 798 -694 193 951 750 -234 849 -633 -122 -177 771 -750 307 207 876 116 42 493 -758 468 913 61 -45 469 -816 977 26 -969 890 69 667 662 5 -904 -657 -78 -749 103 81 592 -641 -810 964 -141 -684 429 -903 268 -325 56 195 886 272 -103 966 50 483 459 -792 218 -266 303 -879 909 299 620 -484 -155 -922 117 284 588 -279 -788 688 81 867 -251 861 329 -575 -884 -300 -614 -189 746 282 341 621 669 -98 1 -305 914 151 361 689 841 226 149 752 -133 18 677 -220 -823 439 -251 50 -707 253 -836 760 -634 -48 -578 106 -734 -210 125 -910 745 398 -189 -927 -895 -945 978 30 647 -820 413 100 -86 -155 604 -337 -244 -633 945 344 748 -738 -475 161 112 335 556 774 -732 349 266 -342 -438 534 271 -365 -620 343 408 98 -38 585 -377 215 832 24 423 -581 993 534 381 406 175 -281 784 977 976 601 939 -401 -18 -916 -548 598 -885 729 653 770 851 272 -844 749 95 -153 931 426 75 264 577 288 -632 791 622 -346 402 540 451 -256 34 -743 272 -507 490 277 -372 205 -836 56 -289 -910 428 -44 933 -224 -49 380 274 -212 136 -667 423 947 640 667 581 590 -767 250 -778 -966 -172 -504 714 765 427 882 217 539 197 970 -354 -402 109 -124 403 914 -516 -898 -759 -206 21 641 402 124 42 811 856 481 \n917 197\n-23 760 823 -915 996 547 -39 -195 -531 -607 -37 284 -243 -751 -448 11 -301 303 825 -335 923 -681 495 979 -888 140 502 -680 752 840 -411 921 -403 251 217 -925 -318 -647 344 -889 843 930 737 771 -564 -621 -755 -344 19 574 -688 407 -261 390 681 867 826 859 670 -845 191 -566 -895 -640 -861 -758 -102 403 -392 -604 242 923 -64 253 334 254 -867 596 -656 1 664 741 -963 -299 -70 666 -637 -896 267 122 -937 718 613 309 733 147 -421 -905 413 -614 983 937 -183 225 476 992 94 790 248 290 999 471 916 620 -543 -931 -540 223 -307 416 218 305 -61 852 73 -340 198 891 188 -165 7 436 245 -550 838 -572 -46 -252 -200 121 955 -705 -249 928 69 340 173 376 553 -156 483 -165 -71 -937 349 414 12 619 -177 703 -880 -393 50 -367 713 731 -656 427 358 448 684 841 388 -225 -717 -630 -269 484 518 321 -532 -178 -109 -494 -834 -625 558 420 484 -419 710 31 371 293 864 286 307 616 772 -566 612 452 962 -926 28 312 403 984 -347 -948 553 838 357 615 -978 -907 -900 897 -529 38 -699 466 685 -707 148 -257 152 -690 795 726 938 917 -393 -912 -67 966 -506 120 852 247 215 780 174 -616 -989 949 -265 525 812 129 487 53 944 -34 375 948 -548 -757 235 225 -330 500 754 -25 132 933 -414 939 -302 -648 63 -58 -402 645 894 -726 3 -275 531 314 426 850 39 -864 660 82 -667 -585 -57 882 816 -389 447 923 204 585 181 -698 35 436 -585 977 -348 -441 586 590 840 -88 127 538 -718 397 -518 -435 410 791 669 651 601 -66 -317 871 446 -293 -298 665 -425 141 -741 543 -347 -433 65 -641 -403 -36 -833 -279 756 -542 473 832 -852 -507 -713 644 -438 698 413 -932 -833 991 279 -580 64 -202 419 16 400 -86 -858 652 -149 522 376 -490 612 -635 -287 760 -538 8 233 871 -644 -765 -321 622 117 906 179 -733 868 -41 48 250 523 762 -963 -343 -497 266 -270 361 856 680 -534 -523 136 -343 -10 -698 699 -327 -752 518 118 908 -433 -127 -286 -45 176 -478 593 814 646 -968 -225 935 465 -702 468 843 -792 623 735 -266 633 124 -822 -719 -684 371 365 -418 -757 950 219 -287 -590 537 938 669 458 975 -816 -761 -643 206 -25 904 77 -998 -914 -592 857 -5 735 488 -459 526 -902 -635 -836 -214 282 354 -361 -30 738 -406 417 -611 143 946 467 417 -889 711 294 -356 859 862 336 981 -818 -978 -584 692 354 938 107 -344 -457 116 378 272 -346 589 986 469 387 618 459 -262 663 -890 258 611 389 114 -704 -354 47 991 624 -325 316 775 -405 786 775 -593 825 578 414 800 -143 443 67 -661 514 -598 -190 426 -571 713 569 903 -272 749 667 -568 -591 593 758 -253 247 550 161 913 -136 705 -30 -44 -14 612 157 713 273 541 -575 25 -904 -894 324 414 -530 875 853 304 563 872 -531 291 597 776 847 -63 356 -558 183 935 745 552 304 -35 152 679 -846 495 -66 -465 613 -521 500 -919 116 -86 494 511 -356 726 573 402 -101 579 673 759 -250 150 488 871 904 538 49 -743 -859 159 -873 -394 -865 400 -202 -28 77 302 -263 -687 -974 795 -937 994 69 -719 -125 685 418 -414 692 551 -287 -392 -25 392 923 -497 247 383 881 -622 425 -525 -143 606 975 128 712 438 -768 993 226 -43 554 -86 -832 -917 660 376 369 862 140 -470 -127 55 -273 409 -993 -507 691 655 633 18 -438 920 -527 368 -67 811 181 155 -279 -314 280 952 817 -930 637 -639 696 -284 226 -138 -123 526 -625 250 615 -59 481 347 -813 895 300 91 -394 -580 713 558 5 512 -460 989 604 748 -697 490 887 -286 557 517 979 600 645 75 -128 807 717 -10 -356 629 371 478 198 287 913 663 692 888 318 -969 -469 -740 677 626 -471 238 652 -775 3 298 583 104 28 900 -667 -887 260 -551 -723 445 -879 23 31 -910 45 -400 -888 480 44 76 -269 7 756 -696 112 -140 993 -648 938 -777 93 -959 323 -799 51 -72 -643 872 5 -616 812 285 488 -761 213 106 -938 952 257 133 -618 -760 414 -394 -545 -661 -894 -986 -593 690 -265 -151 397 412 233 -154 -105 460 381 781 -469 705 839 -713 567 747 518 74 78 513 -436 -830 895 -709 -985 73 -364 298 766 -468 152 693 -427 97 -76 185 690 -801 629 -489 537 679 139 210 -972 -922 -652 502 929 -278 279 -267 226 -699 738 -769 526 301 661 656 624 43 -628 -368 -599 504 -369 886 -917 -293 679 966 848 244 -120 836 299 -94 664 697 350 -495 -511 316 274 413 -163 942 -270 -949 -196 629 981 245 367 \n879 379\n-950 -897 -772 512 -581 68 415 942 -31 -588 439 542 366 145 -927 923 365 48 -197 45 772 387 299 -542 -328 47 -903 750 368 -988 363 -64 49 688 653 475 908 -989 -392 962 203 -582 578 -685 -47 518 -660 -101 -333 -562 -237 -356 51 977 -463 978 -720 387 488 -305 354 511 362 -138 -782 -76 508 -54 116 729 -903 -718 24 692 -657 923 857 -175 -14 863 46 982 882 594 -20 -587 -336 -198 -33 699 502 739 133 758 550 -84 852 -466 -775 -583 533 400 -10 785 214 342 -366 537 -837 -475 69 496 -936 446 -764 519 -198 520 -406 -969 340 293 289 524 938 48 -896 380 115 116 -816 -16 872 35 -163 124 -37 498 472 493 178 163 -985 -672 748 170 -131 812 -722 768 -82 443 -168 867 346 588 383 548 -983 -124 507 736 70 225 -460 49 657 541 214 -818 431 73 921 365 2 680 377 -984 920 -231 342 -404 314 -620 -125 -733 16 -868 -934 45 547 563 885 817 129 -392 705 170 -173 -998 8 37 780 -477 -952 -291 817 -190 -871 874 610 -923 428 -882 -512 884 204 585 -331 523 206 8 -172 793 720 532 666 391 -704 582 309 70 139 -43 438 519 313 836 437 260 -126 -439 -601 -949 -267 -44 932 4 780 737 -100 793 664 687 -595 63 -332 443 -39 405 167 -781 -979 950 407 340 709 -865 -963 977 -790 793 655 663 909 918 -228 -345 444 -363 845 -652 585 -303 -922 -553 -631 -700 193 189 -458 538 -888 184 247 980 229 49 513 98 -638 -72 653 846 -353 611 935 663 -829 858 538 729 239 875 900 -291 214 -390 784 -952 624 794 -979 278 579 -54 327 354 404 -209 -387 882 299 -867 184 90 268 -801 694 791 440 37 -853 487 491 100 -773 151 620 367 638 683 863 202 -576 -426 -798 40 -749 647 884 404 786 34 -449 489 -393 813 529 67 818 -599 580 -492 878 172 975 409 314 354 370 -802 394 374 -464 438 -307 -237 -259 -404 728 52 469 675 -478 753 280 -914 -976 -919 414 857 -91 229 386 679 251 632 -149 497 -21 -525 850 -865 171 120 435 -141 -147 279 -289 28 560 -143 -344 140 151 -87 64 503 939 232 589 305 -146 -979 608 -900 -462 -171 -157 -908 237 670 755 108 937 -401 -326 639 920 41 64 479 693 882 -540 305 -342 -468 993 -999 -212 657 566 629 -230 760 152 -149 150 -637 989 -107 458 183 933 -465 -508 849 -611 804 67 -322 912 101 192 -844 777 -289 -738 944 572 -530 802 481 239 660 279 -565 -233 497 -571 335 -255 637 28 767 152 722 -157 -408 -609 197 179 378 -546 463 736 -990 87 133 875 484 -992 72 869 -376 658 -382 774 72 291 632 830 112 714 -730 -212 583 725 814 -931 479 329 -225 232 -545 757 676 157 -358 -887 -420 441 -135 294 986 958 398 182 164 881 -811 -543 -930 -182 -504 -206 -162 -353 101 -651 61 -566 5 321 912 514 775 25 772 367 446 -280 -190 973 -329 364 -783 -995 220 -627 685 850 925 892 -312 35 664 -260 -166 -947 715 -778 -864 -414 619 -59 -434 -1 -405 143 -631 -967 -293 146 795 389 -115 -780 55 222 -361 -121 81 80 -711 -90 -617 109 -823 -482 285 339 -665 -338 541 -444 31 -862 584 286 922 -822 821 -100 -860 -589 -275 996 692 -197 546 -567 -261 177 -568 820 -543 273 69 277 133 98 447 -24 -573 180 -262 7 -875 -970 1 -808 662 390 687 134 489 490 983 479 108 -887 385 572 -977 -226 -746 -4 719 194 -740 561 362 -252 500 113 -681 -767 578 303 94 472 -477 -392 578 -791 28 214 606 952 -190 -607 563 43 547 -631 -643 780 832 114 150 756 -87 835 894 934 141 -337 611 483 426 684 -88 303 188 -244 772 585 725 170 554 623 -248 -837 -106 -936 -392 519 317 736 425 -549 -596 711 -717 -587 -498 986 912 573 -374 24 -357 -887 -570 319 -159 190 -198 717 808 684 -526 -71 966 936 167 -222 432 164 438 604 509 -326 -738 195 550 -455 -789 935 512 783 823 775 -539 -727 635 -224 565 205 728 282 -927 587 96 481 926 593 -332 -477 28 -343 -527 818 917 -843 567 -193 -195 -929 -71 -621 -18 846 736 -431 524 708 531 107 430 113 -544 456 345 -792 -226 652 402 -110 497 589 387 214 255 121 400 -118 -763 376 106 -648 193 -573 -127 -490 -200 -376 -248 -646 -122 438 -162 -355 -752 -568 -710 898 723 768 513 409 -12 599 173 -787 \n978 51\n39 576 -205 90 26 183 834 -888 -402 -840 40 709 -336 767 736 -864 -638 707 553 186 173 299 530 -843 287 -318 -364 773 -21 -937 -822 615 355 773 950 340 -607 -726 615 -905 717 685 661 -779 -766 -471 955 -855 -444 -820 126 96 232 -56 -175 -573 -900 574 37 -976 810 -856 912 472 67 -456 -559 871 -88 443 747 -53 -413 568 -810 947 688 605 989 -921 447 -778 875 -257 -975 -524 -84 425 -126 276 982 757 770 -253 627 675 871 -442 -984 -485 829 -966 616 -178 -512 633 535 573 -791 130 552 237 -997 591 176 428 -419 990 -529 208 -875 528 -671 972 -551 -817 -638 592 544 930 26 -365 575 -311 -453 746 656 -177 -269 -170 913 156 507 -595 -600 -418 790 -449 -963 431 -470 -273 -285 -51 193 558 -111 547 465 975 -781 272 -172 -7 381 342 642 836 100 647 523 633 208 645 -31 172 -607 -499 860 776 -159 365 715 428 -267 -484 -787 834 101 131 245 -961 126 -132 222 -364 -991 308 -416 912 252 339 497 706 -284 941 754 -527 754 -995 378 786 407 2 -689 561 422 -779 77 736 -782 -570 -264 -997 739 631 128 -466 766 -72 158 55 904 397 703 517 -291 2 -622 604 -162 145 256 701 492 -397 199 -945 196 -808 -768 -584 -36 782 -428 987 -701 432 -227 963 -144 -650 868 959 -161 885 574 -579 -71 942 -731 -195 -334 877 -487 364 580 759 -669 235 -191 -60 -714 -83 589 305 257 -148 -403 -887 -933 -654 255 -675 -394 -242 814 -484 157 -786 -311 -720 23 -709 -854 -663 446 996 689 -374 444 935 854 -638 157 -552 92 290 421 -614 -925 429 -352 188 539 857 737 -600 735 721 -116 884 83 912 364 240 -226 -432 429 206 -755 -916 -410 701 -250 -262 -185 927 38 -506 674 -371 -428 408 -668 132 122 -366 -48 111 -717 -276 731 1 308 15 696 -198 -802 -423 45 -219 792 744 913 574 -361 -572 804 529 77 -872 -687 -786 454 -26 215 134 -214 914 -23 241 167 446 -435 -647 825 836 886 -375 319 -796 820 642 970 763 608 -673 -253 -521 872 828 -167 923 980 844 933 -99 -947 -226 174 899 582 69 805 -910 -275 -952 -554 -639 -875 713 -664 -791 132 700 304 27 72 38 -373 748 324 -610 727 46 690 679 -176 -825 663 -824 -442 -571 190 -827 575 196 147 -195 567 -232 761 774 37 337 740 231 731 -746 -728 -325 -321 -205 320 578 250 -542 104 -509 -112 22 84 961 -146 793 230 828 197 984 867 736 -320 -344 255 -733 95 904 -789 -461 33 -975 -152 39 314 764 -797 53 -618 -797 -894 -702 -515 -193 8 820 263 581 -934 -534 616 570 332 -320 118 317 685 -614 37 655 37 -765 844 -155 0 835 415 682 377 737 326 -346 44 -776 -83 850 -925 433 -616 32 -686 795 -319 635 589 -378 -880 -113 299 898 -983 -363 630 600 -715 -572 80 985 72 -526 302 952 254 109 -994 333 -359 497 -866 -449 181 -160 719 75 -714 706 70 118 -214 -612 -658 -608 -437 -653 560 572 -814 204 353 145 885 552 -660 633 -898 -622 265 -356 272 -183 551 -434 319 599 183 684 58 -231 287 -436 41 -236 241 -920 -520 -534 969 -907 926 338 858 820 303 -632 921 -101 907 270 992 981 133 -875 -317 -270 236 597 544 -88 757 971 -209 612 664 -331 376 394 -430 165 619 -444 -682 646 -787 -433 157 -487 -479 58 -776 -588 -463 424 -333 -157 579 524 -294 16 -418 -902 69 -141 579 239 -539 160 775 -975 825 323 653 -943 -402 721 -949 720 895 -452 -269 826 617 728 583 822 955 694 -441 -77 -700 -106 571 286 -402 501 829 -364 970 763 -303 -686 905 862 -63 709 718 -2 998 -873 117 -551 -683 573 -694 226 103 -926 156 604 87 496 815 498 621 -625 -10 731 7 347 181 -637 135 239 556 560 761 -501 951 777 -280 629 -272 -120 -426 -153 656 3 -463 568 250 -321 -85 -197 613 208 -567 613 -535 -128 778 -933 941 125 903 426 748 -808 -740 159 963 486 -218 411 191 416 -120 504 462 826 183 -500 -396 -197 156 444 688 564 258 564 768 -138 189 785 473 187 783 656 368 -382 -911 907 76 -954 -621 -491 -90 6 471 176 -296 -847 -632 627 -906 894 99 653 -248 119 -460 478 -581 -523 -904 -647 81 -167 -640 23 -616 675 -498 -354 -922 -852 144 -989 265 914 871 -876 -118 -603 864 -396 -708 766 867 393 -651 968 23 897 998 963 971 647 454 794 417 169 -149 926 -413 -723 819 -4 131 -714 469 -477 -22 921 -809 244 785 -175 579 -244 -562 -543 -875 -359 714 823 -428 520 287 298 -431 410 978 654 934 295 417 622 -633 -850 -6 785 765 181 -782 17 400 308 -915 485 -982 448 834 903 511 925 -149 799 126 340 667 -726 -164 -209 267 188 -91 558 -885 -507 -451 447 809 -242 -833 900 -622 483 -3 178 -156 924 693 -42 554 658 -767 913 329 825 500 486 775 213 493 -303 381 797 588 -572 \n777 227\n-787 -183 330 -530 100 573 -541 350 -35 738 634 201 604 132 -471 618 863 308 -422 -973 -497 -238 181 729 329 -596 -134 656 -941 427 -991 -819 -299 692 651 355 -872 132 -24 441 -381 700 319 408 -636 618 599 125 -255 303 114 -246 -850 543 -494 -544 4 388 902 655 426 283 -878 538 -740 -612 66 404 -438 30 640 -212 864 -730 -681 -646 750 -428 -413 872 -1 -525 228 -942 -116 123 509 -742 96 71 994 -589 432 869 946 368 -670 288 942 555 980 -620 541 246 988 -186 -265 971 -841 -392 847 -850 619 -814 251 -829 -135 -290 -873 28 -68 429 -381 706 -584 748 252 29 801 -287 656 -466 300 173 800 -207 945 814 694 -288 421 960 -151 739 -479 -627 823 -291 435 -509 314 -793 771 -398 -180 -102 -585 557 -770 -394 461 -490 575 -480 -349 809 568 912 -8 973 280 -884 -386 267 956 -299 -868 -35 432 97 625 323 -177 -45 -666 -299 593 -258 -987 858 -558 878 595 -159 -611 558 -160 801 -917 792 -600 408 -183 199 -553 529 47 -675 386 -262 718 630 -928 196 724 640 -907 299 -970 -804 798 289 359 -353 762 712 -828 -506 683 -499 231 663 762 477 -411 -521 281 579 822 930 554 -380 170 -426 488 672 533 587 -421 182 50 686 571 -645 461 -540 -906 -644 674 286 720 177 351 725 916 158 893 755 850 167 -763 -440 -507 -614 427 -102 530 -216 -868 509 592 653 878 -536 -544 99 -841 6 124 -371 214 -473 686 723 -428 -259 -336 -346 -404 -724 925 359 -37 501 533 267 978 657 197 138 -839 878 116 -495 728 832 -39 909 89 -238 590 158 -127 260 150 -639 534 -695 -445 -18 -336 564 16 -907 661 -490 464 -331 -461 11 -713 -137 -408 854 146 -644 -414 -672 -528 18 -879 -575 634 -884 -245 989 62 279 -53 -387 51 -532 -2 332 789 -409 33 -470 -589 879 -366 164 454 754 -454 -910 -609 -884 907 -303 -329 450 571 734 -200 -349 480 -86 -688 682 -58 231 43 634 561 466 756 315 403 817 -811 -597 -332 732 645 222 473 -437 -889 -919 324 53 -684 381 603 53 -614 433 665 662 747 968 467 41 227 -683 253 720 579 992 -170 827 346 -95 847 20 428 -318 -41 907 450 302 867 -939 912 68 801 -483 -54 400 -479 374 -504 641 -587 19 262 -424 -542 70 4 -424 351 -413 98 828 552 -643 797 273 423 713 909 -432 -118 56 718 686 -372 128 383 667 754 332 677 -822 335 -212 -185 -215 900 498 230 444 345 565 -588 -637 934 -369 -360 632 730 -861 -729 629 -583 -116 -724 -27 -908 477 9 729 -403 730 68 -782 -248 820 189 802 792 982 233 -267 167 965 -951 209 633 815 -107 -857 -690 441 526 830 846 751 -100 499 -850 328 -29 3 -256 143 92 641 15 -892 779 312 -225 -273 445 -261 -684 141 171 -383 -137 284 184 726 -648 -228 -765 -817 105 442 -701 895 789 -171 617 519 763 -996 -318 904 -939 -859 378 -954 -591 -811 611 410 213 3 152 618 319 392 46 470 -866 -79 292 528 -714 -284 231 -854 165 -109 103 391 451 399 -160 457 173 537 26 622 203 -884 -162 -778 852 -313 879 -751 -201 139 -69 401 458 0 -877 515 -408 -757 315 -936 570 -327 199 650 305 546 956 -806 19 358 916 -526 451 -165 610 -118 -384 982 -23 8 -658 -677 782 448 384 617 831 -712 -540 -725 -120 549 212 -696 463 712 851 -244 -353 839 167 138 551 -561 113 941 -620 -261 -441 539 -336 -692 -407 775 255 690 754 -401 -387 -905 -540 669 -502 -486 148 168 -73 -74 -539 -222 920 -290 152 542 -123 -471 -117 884 934 191 -575 894 418 27 -625 584 -18 823 -834 -513 159 29 530 -451 165 -386 121 847 -892 -151 -201 -518 -839 49 -663 921 672 -81 469 50 218 509 883 809 326 85 -33 568 -679 159 -967 -192 -381 -636 -245 785 198 -809 420 917 96 207 515 862 680 619 466 172 87 \n802 272\n-931 168 -965 407 189 -427 761 389 836 -357 101 623 -239 248 409 850 -351 -5 593 -518 299 780 221 -848 -75 397 -879 -313 -941 -642 152 196 299 -266 939 -572 -907 384 248 443 -870 -593 -546 -220 -426 802 -513 50 56 0 745 -719 -925 814 -234 -406 29 315 30 777 -980 544 382 -235 -116 894 357 -367 786 127 -867 920 272 800 323 -903 876 -326 -245 832 728 -277 181 485 832 -178 203 961 304 235 249 310 67 9 -960 -713 52 421 -227 992 161 -72 594 -531 43 -674 -536 968 -488 100 -677 -772 1 -165 102 673 548 481 -760 -419 90 581 136 -867 -522 741 150 164 -629 -830 245 32 -984 -252 21 -444 -798 -61 210 559 539 484 730 -63 49 839 162 -828 679 -178 -226 -139 -429 626 -908 85 -354 58 -833 -974 750 257 724 -150 56 850 -125 -371 769 427 -751 508 -231 527 -475 352 -971 92 99 341 755 877 999 26 -512 257 -860 918 -649 -898 -504 -446 -935 -687 -55 466 -96 898 497 -480 108 -83 417 192 74 -819 -600 295 -12 98 496 453 -151 802 97 -134 -148 746 -208 236 649 -580 43 964 321 -486 318 181 -672 -813 -113 484 -280 -261 615 210 -502 874 177 -540 966 419 -857 322 -395 330 688 -441 528 517 552 298 -210 808 714 -832 -963 872 -441 341 -736 -625 -565 -14 -668 42 602 -939 -563 -356 663 -512 80 230 -535 958 863 148 -554 466 692 -307 -341 669 570 902 630 203 765 516 201 684 -625 984 -830 318 -272 888 -17 209 919 239 592 -89 682 859 33 520 -316 632 865 650 832 539 -406 607 -51 799 -822 844 -479 99 -525 258 -753 -457 -267 -797 708 649 652 166 -852 421 -422 -466 -484 947 -703 480 -897 6 404 583 756 485 963 983 428 -818 634 -675 -9 524 -725 -29 458 -693 316 161 977 -253 -379 -873 -793 645 -225 984 583 589 -49 -767 366 111 572 939 889 265 308 -749 253 431 -330 464 -412 774 730 -583 -460 491 -106 580 -693 -546 990 242 791 575 687 -140 922 425 655 388 99 937 919 773 806 688 194 545 303 654 -559 364 55 -220 82 -119 557 499 611 -766 -858 -994 590 -338 972 420 346 743 -133 783 794 967 -857 326 847 -526 931 -641 916 92 664 728 -48 678 226 611 -711 453 471 517 889 349 88 -444 738 -303 -690 -611 -193 -288 -392 -840 -49 -48 -551 -502 -371 20 -73 -628 458 -493 810 972 445 790 -598 781 392 785 -1 193 452 579 613 592 74 -435 304 124 764 351 -796 386 925 -488 -405 839 427 -161 654 -73 884 236 365 554 -478 236 -154 249 590 468 -99 328 -890 855 587 519 -87 182 -399 855 748 -661 56 368 772 -62 332 27 -32 540 252 481 411 425 31 794 -796 169 -334 383 847 -933 102 105 413 657 241 -687 951 -70 -869 548 215 561 36 575 328 -930 90 673 121 598 290 -506 101 -549 -202 -165 -662 124 -658 167 325 764 -961 20 612 -850 424 946 156 549 764 100 623 -243 -680 952 -480 332 57 538 942 621 -577 423 941 -479 -813 -218 -188 21 31 -202 567 162 244 26 -231 448 -670 -992 -878 610 515 -254 508 587 85 -292 428 429 760 924 -431 -819 -304 -885 992 -935 -256 -889 870 -629 -203 7 270 941 135 -385 862 317 -61 -671 371 -469 -635 -674 92 -554 962 -538 829 -227 808 361 373 -247 511 398 -471 -789 236 -34 357 98 848 950 -209 839 971 515 714 472 -132 449 -277 423 -322 569 -913 719 -639 -715 -881 -353 -496 152 166 -345 390 616 443 -994 -375 54 376 198 254 -248 847 903 -702 -216 -378 10 -963 -637 -619 -614 90 370 426 -810 -596 -533 707 348 -663 290 597 -402 749 -582 123 189 379 36 575 616 787 267 -195 102 899 134 366 714 323 -467 -805 -876 370 -285 703 171 162 786 808 -837 -376 -381 831 393 -13 -413 -344 94 639 -452 218 -353 505 529 946 251 -511 839 735 -680 -595 -252 324 -585 211 -746 -665 -530 -816 649 305 829 240 651 -653 606 -525 919 320 -581 860 -319 -418 96 311 633 \n746 176\n276 932 2 -457 -447 880 228 -69 666 109 806 -413 65 -824 -451 -847 305 774 -949 589 -461 508 566 202 754 472 271 -945 771 -221 109 -910 -550 642 71 -99 -916 428 434 525 141 -416 893 332 -858 -330 414 702 217 776 931 700 -461 567 -161 300 267 -822 -120 886 -823 174 -964 -7 -980 232 -702 73 -135 279 617 -832 269 225 782 -422 784 899 441 -576 439 490 -802 632 -907 34 988 625 210 747 489 262 -559 767 532 -971 -352 -845 262 65 207 -121 -2 687 546 394 625 156 660 627 -6 414 945 -19 890 30 861 -484 466 -529 -734 295 -652 433 525 -519 -942 170 -65 778 -39 -685 157 419 964 400 85 162 116 316 988 -763 196 -238 -793 -315 140 159 5 110 -160 285 -143 -899 -800 -375 345 870 705 -588 -368 173 169 852 87 92 263 669 613 -922 -105 72 -586 401 715 458 -958 250 -879 -900 -170 -254 24 779 357 374 205 217 -97 -340 252 57 660 -560 637 -943 -255 140 -507 -574 -473 -913 -591 744 189 -23 -420 865 -264 8 -51 -52 -269 878 321 -517 -449 153 -60 933 407 138 98 562 -724 -82 578 -876 300 948 -920 41 932 -758 -422 498 150 493 246 -100 920 694 217 -264 -365 -21 -771 850 802 -50 868 654 818 -783 -368 -934 427 804 280 29 -710 51 647 152 99 700 -830 -120 -435 -289 -49 489 -749 259 -855 -262 673 412 406 819 256 499 -53 121 490 -179 112 -925 -550 -332 343 322 358 65 679 66 -936 128 896 81 630 -509 533 674 191 575 -991 0 492 857 -411 543 -195 -315 -191 928 199 -151 993 368 727 -732 56 -361 -267 758 624 400 322 748 619 -629 702 -400 -787 678 606 -595 105 -205 -267 -318 -353 526 -460 930 403 -353 106 369 -755 -478 -740 379 786 836 541 514 475 312 -985 -487 79 -237 772 -59 282 678 434 -885 523 -293 -64 -138 416 888 -434 -161 -495 223 -986 -587 62 623 456 570 285 -586 204 102 -375 -884 -38 -49 44 687 270 964 -338 697 500 703 -655 529 -562 974 632 -901 -189 -671 -893 279 -767 -781 -427 19 424 -215 -457 -835 361 673 780 -811 207 594 827 149 86 749 -427 910 -11 -617 -364 -560 57 704 954 686 -877 -276 637 419 -226 -701 -513 499 510 -76 55 655 266 459 -834 637 374 827 427 943 651 357 -405 112 559 -345 -826 -650 533 -986 413 746 571 176 -381 849 -754 789 600 813 497 64 214 271 561 381 -761 595 266 907 692 235 86 420 441 940 -585 -225 -602 215 -519 163 729 -969 189 187 167 699 895 -332 -585 -563 -17 707 686 986 734 438 -706 -460 -996 306 854 579 -589 -419 926 956 -680 976 -170 751 -230 -428 934 859 -270 -206 -418 945 -41 234 978 -197 -86 150 -607 -256 423 14 -660 464 291 416 762 -142 -282 -449 29 -798 -516 702 324 443 194 123 -445 -305 499 -584 -406 -481 504 -319 677 81 873 -688 -730 457 118 -877 -464 -151 263 478 647 244 -364 758 604 -29 221 587 -775 -18 -395 442 365 42 -413 985 324 517 677 -492 498 433 857 233 -958 510 690 -412 876 -218 408 115 -357 821 -188 674 -357 -286 468 272 -84 893 362 192 574 -958 -933 226 443 180 -335 -808 -31 -852 438 777 43 22 -163 617 -274 744 838 -567 -125 890 -488 214 143 -363 -79 -172 962 330 -542 -102 -408 -558 130 738 -187 -215 406 403 -94 322 400 -1 353 681 642 414 649 -657 514 -458 -797 -154 -82 472 898 435 800 -159 737 979 999 978 284 -729 389 -337 596 -980 899 870 -582 676 -376 -432 177 96 382 -803 609 -269 -315 -797 607 165 705 162 479 -758 919 954 -817 871 -182 -782 769 974 -548 687 -95 221 741 343 -7 896 -381 -982 113 -185 -23 166 915 -45 737 -207 \n902 72\n-994 -424 589 913 812 -925 666 542 -308 -239 -513 162 450 411 -451 -876 -867 938 -153 -257 823 -596 268 903 -204 -120 315 491 147 997 201 219 606 341 -605 -429 -864 564 456 631 -213 293 906 -853 -277 -157 374 630 37 -127 865 -238 343 -262 447 -414 749 14 -62 240 -529 932 425 -827 776 -777 30 -629 -458 35 -169 308 -325 220 -431 12 383 504 219 900 391 219 -836 609 -668 209 -421 -201 172 61 835 361 38 -811 -259 536 313 -830 -658 -249 219 -330 411 277 -82 442 -741 7 487 4 922 718 926 968 281 -527 616 -157 988 -88 -105 644 483 -342 50 -682 295 32 943 210 -664 -178 -154 -362 408 -787 310 1 -574 -287 -230 -663 -571 661 332 813 -104 306 -154 136 -566 820 564 995 933 128 -627 -978 582 389 -780 16 -840 615 -423 -353 -767 -5 449 -88 -120 -682 330 -339 335 -528 840 274 521 873 98 868 -186 988 877 730 801 438 451 -978 -247 -294 783 957 899 448 34 985 944 -483 785 280 -118 643 893 271 -69 431 906 720 -901 540 648 -688 -33 -568 597 850 551 680 49 346 -266 -819 -528 131 864 -413 -380 481 84 621 -528 -232 -989 767 638 -779 173 -634 -530 974 995 -699 389 780 -370 153 -819 970 -727 647 869 -362 -303 653 -512 481 679 862 700 986 106 204 733 -288 239 736 -206 -872 503 -482 865 636 -171 -431 -288 -713 -381 949 -791 -858 -98 209 672 227 102 99 -542 -871 904 300 -922 -26 -922 -630 73 336 522 380 315 -636 -996 6 -214 530 -414 -895 393 206 98 -86 146 594 -439 -392 672 220 -792 -613 114 245 948 -310 286 979 -452 -453 138 -720 881 -685 71 313 -203 86 729 -792 -90 403 -441 59 169 -772 899 715 518 836 -631 5 884 -499 -572 -700 370 -397 -953 -604 73 -841 834 97 433 715 961 527 -596 218 178 943 -185 115 -478 992 395 829 -146 -67 -880 -563 229 862 -275 -213 -108 -947 -114 447 -161 -46 8 40 752 42 219 684 90 -212 728 283 714 -118 835 -344 706 806 959 771 -135 652 -988 983 760 224 939 60 -603 82 -972 -662 73 296 633 988 565 -747 128 -426 -712 -762 -301 776 640 141 22 17 476 220 -357 -421 266 854 458 -583 906 -138 -542 495 -480 817 888 -161 694 266 868 -700 -327 253 431 620 397 880 -869 345 340 613 348 -910 -989 802 -542 755 -788 903 218 771 -962 500 -827 822 388 -249 887 448 417 948 858 113 -248 -982 -553 635 168 190 903 719 351 -357 -332 487 60 -736 776 133 796 417 116 339 840 126 922 -962 749 321 680 876 251 -718 826 241 -615 512 228 149 -362 -933 -188 544 591 -973 -574 757 -889 126 -245 996 74 395 -849 392 605 -681 108 -522 677 129 292 180 355 873 612 254 -869 34 114 -996 465 427 962 318 -62 285 -58 -183 60 389 -213 471 719 454 32 721 -400 -444 -975 422 131 153 433 -480 970 -788 -440 -935 -600 589 -18 159 351 -682 11 152 -451 430 921 541 773 628 -862 766 745 360 361 966 -289 79 -574 966 455 490 129 -744 486 455 919 684 -714 368 293 935 739 785 806 -79 -527 -926 378 528 -613 -260 -226 242 18 -963 -917 152 -952 -402 262 -610 378 315 -91 -628 449 -18 271 -54 266 411 745 -306 734 977 132 -977 -440 679 333 -918 779 387 -720 337 554 262 163 918 917 -310 -784 -427 475 492 343 -333 714 238 -339 676 233 678 -496 338 -822 113 227 -808 728 977 -234 641 855 195 376 949 -215 -873 -179 288 97 -850 805 336 242 -501 62 978 -825 26 880 -870 901 977 585 14 -877 665 109 -755 -543 -954 -986 8 -273 251 -610 517 483 565 -429 134 -323 686 -68 -177 487 -903 -343 -300 639 -606 199 -268 -944 965 901 631 618 489 -785 -779 419 132 572 948 -386 507 -455 -634 525 185 761 -248 739 634 -469 -871 -707 409 58 417 467 123 -57 -423 953 -217 714 403 918 593 272 294 510 -950 592 -3 625 300 -94 42 -53 733 -872 39 -410 823 -985 -489 -244 -883 -303 -67 -397 871 293 733 -600 -157 450 -932 495 530 41 262 351 392 799 -103 574 581 791 567 699 593 -841 -226 -247 836 511 -487 -292 -37 255 -369 741 692 132 -985 710 -594 -844 -897 223 -75 -643 -98 326 131 559 -24 -202 -150 -731 953 -480 230 -900 -753 778 801 -559 -401 963 -200 705 59 356 113 -180 576 954 486 321 -666 -821 -548 553 -299 739 453 -858 -228 323 -727 -944 790 -259 -795 362 109 -451 302 25 455 983 83 -829 -722 17 -279 \n763 157\n-722 52 89 126 -449 -468 327 272 -372 -3 -850 369 136 -71 -768 -50 -911 -209 -301 806 870 -753 888 -198 774 808 924 -237 107 -884 455 -949 928 688 414 88 120 321 -271 -592 -206 890 853 -648 327 969 800 640 -171 400 730 -717 -919 -877 195 855 -670 -10 270 849 -731 797 -698 -644 -8 -649 -139 908 27 -820 -734 625 436 783 392 632 832 929 703 24 81 -668 415 -493 868 -174 846 -928 -745 -289 16 333 -806 923 -413 -692 997 383 -454 -617 673 731 380 796 573 536 601 -601 637 966 -621 -337 867 117 506 663 875 -140 0 -804 399 229 722 395 -741 -471 935 958 -540 -187 938 399 -946 512 26 608 -209 231 538 220 805 -480 850 99 -368 -771 237 602 790 -119 129 -176 -953 -335 -634 122 -790 496 984 616 670 508 -548 822 -351 -930 102 -21 -88 -492 642 -999 856 719 303 678 -272 967 295 766 -540 840 858 430 574 654 618 987 667 -742 896 996 500 -410 94 71 -6 673 426 -539 339 629 434 -836 -623 852 -739 -827 419 495 912 -531 -437 182 -193 29 814 690 385 308 627 497 391 274 -829 -342 302 945 185 -46 430 -355 -937 268 -352 10 553 -358 70 -449 -34 229 473 425 178 873 760 821 -610 -259 -568 327 -79 506 806 544 306 -366 215 628 -8 -968 -928 739 -242 -720 918 -186 -782 173 -824 -296 420 889 744 -289 74 794 798 -38 -745 866 645 -595 -813 823 628 752 425 396 326 -920 -745 -975 354 -885 -766 377 -572 107 -526 545 146 -504 -569 -881 -879 114 -357 135 932 529 923 94 -946 352 7 890 425 225 604 32 -677 -6 -750 -755 755 297 -102 784 -600 -204 -617 107 -330 594 -785 -463 878 44 -35 -546 -400 -293 928 143 486 919 684 67 150 139 106 184 226 -453 -294 -613 -331 165 -761 331 676 -992 40 874 523 -165 -293 -970 123 536 341 755 596 410 696 133 361 767 -253 792 441 -822 579 686 552 909 265 700 131 531 335 -796 -87 -364 -394 -14 -18 505 164 194 384 -733 586 104 991 112 12 265 284 -984 -272 659 716 219 288 217 612 711 399 320 -354 -50 568 875 -505 602 663 -775 193 750 -622 -240 812 627 -466 859 746 16 -579 -658 -886 274 615 107 615 -425 648 609 -216 -41 -585 -161 48 762 589 806 -218 -601 -680 -558 574 653 508 363 407 826 -293 -595 -563 585 413 744 647 -726 -841 960 552 -616 155 -6 322 933 -94 -992 -413 92 -373 287 667 873 660 610 -843 580 -508 -203 -554 -90 -996 344 836 435 -987 -411 663 -811 127 195 401 -353 -225 -9 509 338 -278 -35 730 311 48 325 371 850 739 99 528 -54 696 -480 19 28 421 914 -573 -263 83 860 415 617 -727 867 -881 115 354 65 734 57 410 -293 965 -611 -590 80 -770 45 -597 -273 -3 -976 -63 -371 956 -631 731 338 628 219 -871 442 765 -848 -587 952 560 -694 -727 -702 -807 -272 376 451 -168 264 -128 -329 -385 -585 370 -533 566 -332 682 827 597 -275 771 -191 11 -1 -903 -357 -195 592 962 274 -926 802 -71 -136 -686 -17 -914 -814 -771 695 -405 766 654 518 275 894 128 -24 8 256 860 -953 -470 737 345 -456 -113 725 569 322 29 41 -316 -767 571 432 -718 -11 911 303 820 942 245 865 867 509 143 -756 450 806 112 146 747 -272 -141 321 -870 -585 55 747 -365 -357 -811 -310 681 -766 721 -269 556 287 -872 221 -285 -663 696 -90 463 532 -959 -368 210 46 221 369 641 224 -247 -669 210 -234 896 -542 681 938 251 56 125 126 939 -943 314 -27 -684 489 -445 898 583 -679 195 -789 321 896 -402 262 -172 182 -542 953 -333 431 374 -869 188 -310 764 -615 608 -103 -369 559 720 -439 -182 801 851 409 500 837 648 -330 502 24 215 590 -705 360 887 -224 -371 684 861 799 449 337 636 635 -943 \n830 327\n167 860 678 708 26 861 -185 -33 774 -269 605 97 178 -412 -559 967 501 -457 -747 835 -957 701 295 529 338 -445 349 -335 424 21 925 402 809 152 -313 -522 32 336 496 -489 -759 940 676 776 -874 -997 -348 -386 457 -33 -91 415 394 216 991 -867 149 217 234 -636 -335 -246 884 -55 536 -868 -895 -996 213 700 385 677 414 -652 310 659 -336 887 -460 74 228 -945 -485 -576 678 -900 161 305 479 141 601 725 964 488 877 -241 973 0 494 -298 -775 376 973 -430 -763 -493 -442 -243 332 601 110 -421 933 -681 730 908 208 136 885 867 240 -266 -810 -523 -808 226 312 -78 361 -924 -872 213 777 172 66 -962 142 -701 -625 -174 -783 43 202 741 -4 -810 -9 389 232 -156 -628 -194 726 254 142 -869 442 252 749 304 -627 169 100 140 888 512 786 -339 -40 -366 -329 414 -224 733 -721 728 -25 282 818 -842 847 -344 469 541 619 923 -724 451 -826 582 365 -38 -12 878 -939 -631 -701 -972 172 -776 560 495 -108 146 -39 575 265 393 196 -899 110 -11 836 933 -104 84 446 168 68 -805 -72 9 718 16 674 43 691 -318 -889 977 113 106 -190 176 898 -331 765 -858 356 197 -334 381 915 488 -295 305 918 -312 655 38 -534 -156 -141 780 -986 591 855 -40 -886 522 507 334 -879 775 -34 -650 553 -847 320 717 825 686 174 -294 883 -250 -240 -694 70 -400 775 195 402 -806 375 -991 729 266 714 166 827 105 996 467 -896 385 349 3 243 -728 -474 672 425 -19 996 592 -814 888 303 -484 -176 836 485 921 -801 -445 504 -818 353 -393 -259 28 275 -157 178 721 -899 383 470 477 -286 85 146 -164 290 508 -304 842 -354 610 -197 905 932 28 81 -415 -242 145 104 894 -188 -476 651 154 68 542 -727 -982 545 833 885 928 -389 415 105 176 -406 -313 379 -764 73 -545 -89 343 418 -232 -707 -958 86 -824 133 394 409 100 361 921 -432 -810 -698 -828 872 720 -698 594 101 -364 501 380 -373 747 -956 391 -850 -899 459 29 -867 625 -963 -444 -611 92 473 -182 -577 -767 317 87 206 131 -300 450 770 107 398 565 -896 662 872 64 -941 505 851 -442 -253 498 940 348 590 694 226 691 179 100 315 970 98 -599 759 566 382 288 587 -889 510 210 -856 312 325 724 137 -597 248 595 265 -253 930 853 -10 530 819 847 559 362 69 688 3 -87 -534 332 848 581 569 682 -1 104 981 861 -792 227 92 511 297 33 741 -713 -780 8 914 789 -71 -961 -867 341 874 -506 409 777 498 12 -60 548 -591 277 -222 95 -829 135 221 509 -78 246 -749 669 -39 278 324 -172 -598 -44 388 -280 -603 872 964 -350 236 17 712 205 -911 305 4 -521 380 -181 -949 -929 -280 -406 888 985 -435 -762 769 464 130 -84 -981 131 -535 -543 -384 -688 -4 647 192 -596 -788 945 -336 -894 970 982 -775 -602 -223 668 742 503 -176 -493 717 737 966 -478 703 -7 -725 -121 81 902 557 843 -551 -453 988 519 -247 23 362 -721 -563 -916 -483 836 -700 -295 -513 -269 674 449 423 821 901 -133 927 -18 487 563 357 911 -607 646 -250 -128 687 -701 -954 -871 975 -117 102 -626 753 -725 -947 -346 419 -417 -256 -589 -504 552 844 197 -174 -86 654 87 -977 -242 -180 589 159 673 -45 732 210 -642 -150 703 -842 -520 72 90 -184 859 704 840 -260 -7 -615 -158 -536 -979 648 45 962 -963 636 76 574 -78 -961 979 -26 -145 -294 609 -152 -635 -441 863 927 23 417 395 -218 -773 948 566 400 649 -595 351 298 -514 -121 710 -536 -444 744 921 365 -414 -388 682 270 -141 -661 326 927 888 841 120 694 -498 -968 204 -134 307 -791 85 -397 79 589 -696 863 -325 473 78 -17 -361 -466 14 822 283 -461 752 181 54 -267 -67 337 -993 448 321 -224 -737 -870 334 -60 614 -959 108 -429 185 606 -801 -454 -429 991 -495 -443 -699 138 827 961 563 -101 327 590 194 -543 937 29 695 46 234 -979 381 185 911 -741 532 30 499 -288 -168 -37 963 447 992 884 616 -240 753 249 449 -23 984 843 -695 18 -259 -305 -119 -35 -817 497 -707 -41 917 827 521 72 983 -963 -202 \n816 123\n876 108 235 521 -269 -32 623 336 -707 82 -509 21 671 -700 139 651 903 630 -589 -483 -331 -176 -481 -984 553 402 388 666 -186 -813 898 79 -235 439 521 597 -477 -18 14 -73 -413 965 -640 -124 -844 -50 144 -129 -624 255 -287 552 -585 413 -472 -525 485 724 466 202 125 885 -455 -761 717 494 495 -579 -504 146 -222 339 474 22 649 324 12 -645 525 -711 740 197 177 990 50 160 751 -524 820 900 399 690 -458 -659 635 -796 347 -867 644 641 847 -863 -668 935 -698 -556 738 -813 -688 -877 -185 375 467 936 -401 933 950 -55 701 -204 -254 888 -579 748 -891 485 999 -656 532 -765 -536 113 920 -233 698 44 -670 720 -954 863 230 59 -181 -320 -174 873 -257 670 590 -820 858 941 -99 -570 -247 -839 440 -102 -26 -430 -296 12 892 -706 -758 -704 502 -465 429 -352 961 898 152 -814 184 290 -307 791 -888 568 -192 862 -607 728 52 673 -258 -579 39 -323 117 820 583 49 47 213 -470 -573 -427 -153 95 -70 112 959 -277 -454 713 -949 4 554 823 379 -598 669 -178 940 -424 -542 388 -200 10 654 -214 -684 418 -235 -488 -113 857 287 -662 137 405 481 70 -469 -117 603 211 -810 713 946 -972 -7 495 882 261 -569 911 440 493 783 752 909 183 726 208 242 786 966 800 -910 17 371 13 -969 -883 933 -801 -573 963 536 32 368 97 437 492 -220 -88 223 825 -479 -582 559 -353 827 271 264 745 -430 426 948 330 -123 -450 -653 425 839 519 309 -536 525 411 407 -179 -299 877 571 -43 -91 -41 662 631 851 510 -912 -214 989 574 540 670 -239 -978 155 95 -756 -308 402 993 -10 258 871 -218 466 -306 -784 289 675 72 164 454 -983 -890 -495 -103 972 -285 -538 885 132 805 -873 -309 -494 161 -532 592 491 780 -183 755 -554 533 42 55 -324 856 249 42 744 595 581 717 769 -786 -713 244 803 531 54 304 73 363 968 536 -170 -847 406 -4 -391 676 -182 833 391 927 94 944 108 -581 396 807 907 973 -880 -902 703 -497 -692 -59 687 -489 691 -23 315 192 -679 -910 -555 453 -953 -827 905 -954 197 -962 -290 873 -452 -860 -513 922 -40 -566 411 -350 -891 -699 -660 -640 425 549 888 -550 529 -976 443 -156 480 72 162 617 502 709 -328 -961 -415 798 938 649 155 163 -547 -398 -310 -922 424 -22 904 -483 661 -213 519 491 -519 -186 -568 949 423 504 -690 580 -510 525 763 915 107 -118 633 -845 -407 993 -627 -597 -370 449 253 320 195 134 287 -174 811 906 734 580 538 -789 -425 877 841 330 13 844 -343 280 -530 -860 -309 3 -805 456 -81 416 140 -291 -758 -364 -996 129 -354 -213 -326 380 -367 -951 678 665 -827 -832 -795 312 200 885 538 887 485 603 283 -808 379 342 962 670 33 118 -886 -452 640 813 822 -566 -455 -171 623 790 -200 730 343 904 113 474 -294 422 549 -494 -504 -118 145 61 -580 407 -615 946 56 839 182 684 138 -976 -791 86 624 998 361 768 -465 -243 567 -13 106 -147 277 419 155 528 390 406 231 95 377 -910 -367 -153 464 -4 119 -236 832 -9 -319 -839 -603 -854 684 -873 857 685 -453 -963 338 -183 958 553 278 -596 -224 797 309 486 423 228 159 -950 -203 231 -990 862 336 747 -903 -677 470 402 -621 174 -665 560 573 681 -641 22 -539 776 -275 970 -228 939 735 -549 273 -445 169 -772 315 -437 568 -136 873 478 -42 -110 932 120 245 408 235 949 311 274 527 900 -863 877 -273 409 -282 559 -623 610 535 417 -635 -916 708 -672 283 -172 -487 285 -946 -895 885 -213 605 154 454 985 527 466 54 -615 350 -406 174 -367 796 -848 354 167 -575 616 857 488 -361 609 -592 -950 425 -410 206 172 888 70 201 -558 460 -212 984 109 353 168 639 799 -595 576 -175 948 -981 -479 -251 490 -581 -46 315 -698 805 -390 61 16 412 951 -751 215 -763 -349 639 35 185 573 -643 141 255 -340 -497 194 -124 937 -152 693 83 -70 -813 -72 -984 906 607 -63 166 970 -667 -429 604 52 -370 -909 -252 922 534 -147 314 973 856 -824 163 888 372 \n917 131\n-973 938 599 717 397 -747 496 818 737 646 809 168 -778 -361 414 943 -679 679 -350 596 -344 -790 -789 711 -59 -498 939 957 450 609 362 831 -914 101 -612 -642 -702 246 -203 605 -2 -893 671 22 593 -394 -580 -637 -511 471 -393 -631 360 -330 514 780 -7 31 -46 -338 320 -19 490 384 -983 -155 765 900 -190 -435 -866 774 963 -751 169 370 727 965 654 -657 824 465 168 -809 512 128 467 -680 204 998 511 -837 126 -816 462 64 748 50 802 -741 630 -546 -357 -621 52 -195 375 788 -278 867 -140 700 145 -734 307 104 761 73 712 434 506 -103 131 991 157 751 975 -454 -161 284 315 -796 -639 -660 237 -290 -549 -889 746 5 -957 -275 -391 -237 -851 36 -363 807 -914 203 466 -379 615 -130 252 182 316 424 339 -985 791 -40 513 313 216 -239 840 -613 119 578 816 363 92 518 -141 -660 469 214 735 355 627 -176 -328 -2 157 320 136 948 -355 -588 -716 12 357 118 523 156 210 597 -496 503 809 389 44 -825 163 770 280 -513 606 -721 207 -806 477 495 -746 406 603 -456 -666 -208 715 -609 650 -964 -659 -398 -17 -342 387 -734 308 -255 51 -834 731 500 -731 -57 -8 421 561 934 715 -366 886 -817 784 -850 -577 -10 335 -731 147 473 835 -195 649 217 -892 734 365 -192 -301 -781 -125 809 334 349 43 -90 -211 -391 171 310 508 325 -432 412 -659 -667 -783 -766 -25 667 555 547 817 136 895 454 -586 580 -143 -205 650 -146 -928 -58 926 717 -427 -893 -627 -583 502 224 -752 -891 -538 170 -202 347 846 965 230 554 459 -584 -755 -371 118 -141 461 745 338 -852 75 493 -43 710 194 -563 595 179 607 -237 -393 133 1 118 -245 -898 -629 -760 237 390 369 312 -531 183 961 868 -885 231 493 12 180 597 -752 886 366 276 -674 232 -644 -739 655 745 140 643 655 -448 512 949 4 629 812 -513 -399 -707 524 96 363 676 149 218 -272 -477 -55 -289 -705 -5 945 653 -591 450 -517 -981 -356 652 351 -980 -496 168 -379 -361 544 -55 812 886 202 -893 877 459 506 762 -708 -288 -776 -388 962 -854 -807 379 677 -815 -248 795 -78 233 981 -581 555 983 926 487 38 -792 -80 -296 -556 -446 577 405 575 -720 317 710 284 -241 -596 377 517 -910 81 686 -145 428 -101 762 271 -672 882 -541 895 645 496 -227 297 513 -828 -687 820 48 100 163 -288 -784 108 721 -676 723 708 461 721 -153 -935 -224 -477 235 686 -927 -961 857 -27 922 -363 572 607 -294 -581 -181 852 -484 924 -92 35 -167 -306 866 -271 -609 372 -768 -704 -735 -421 661 -626 673 721 364 459 251 91 196 305 -734 104 222 41 -279 465 298 -369 23 876 435 799 338 -764 102 655 -576 173 791 -561 215 153 -668 792 559 -78 -328 -493 -845 757 -17 -450 -136 -876 202 -968 855 373 754 -209 -793 -765 243 -351 211 -182 476 883 974 -262 -360 870 766 997 485 -227 564 -59 253 475 -669 -671 728 -48 137 825 -504 171 -76 346 356 823 433 -62 606 339 -938 -233 357 803 -233 743 587 -375 402 722 -576 -803 983 328 -421 709 67 -162 890 -371 127 942 201 50 152 -342 -225 40 127 391 -459 259 55 435 -496 -807 707 800 809 133 989 -943 790 -542 -496 701 424 652 999 477 446 769 -116 140 -52 390 370 -171 -399 845 515 -225 891 -992 715 -926 725 208 -59 770 673 654 775 660 -589 -86 -400 75 308 375 810 176 -189 -212 495 409 -361 -358 939 488 -536 -535 -86 -651 -68 33 -685 762 333 -933 641 67 -211 764 390 -721 287 -226 837 265 -435 798 -227 -971 -293 587 272 -663 -656 738 -913 638 371 325 175 445 -312 30 885 309 150 526 653 -797 -840 -438 -84 663 116 -834 641 -167 548 993 595 727 320 630 608 126 -10 930 -966 508 -329 -48 38 159 -94 -479 852 625 930 -916 680 912 591 -37 720 -564 -154 -167 724 829 311 648 640 -387 -213 694 742 -940 646 487 -689 442 -680 686 -779 801 967 -261 -968 -613 40 -645 -921 210 648 -768 -546 963 867 399 612 916 469 -604 -172 -815 -996 -514 -834 403 172 -39 987 632 314 769 -119 228 633 -871 539 257 233 411 192 -413 -275 -990 -963 937 566 -788 987 243 149 780 686 -188 -614 -978 892 354 580 -909 450 350 270 -48 929 911 -646 421 716 766 108 989 694 320 656 -914 449 -255 -251 -741 -912 938 863 480 526 -368 858 286 309 -89 943 726 -984 789 -437 356 929 -706 710 711 268 123 -416 308 -777 651 -56 -897 870 534 467 -747 531 585 -739 929 885 69 440 326 860 984 252 43 180 524 \n885 89\n-615 -508 -711 -155 560 419 205 121 755 599 333 -534 120 -546 -172 -94 -397 -818 -585 762 947 -865 -439 606 511 502 53 970 58 -930 -982 281 649 171 817 645 -101 212 930 -537 811 -396 159 -430 918 -827 819 -143 -473 888 47 53 -405 -533 692 -547 513 -833 -234 -819 916 925 -725 -279 -477 984 -194 -545 -980 -131 -790 -275 975 -525 376 352 310 840 -90 905 7 -403 -603 993 -218 934 -944 442 526 649 -871 -21 90 581 -426 14 373 -17 738 -45 943 -335 -226 79 -998 -772 -360 666 754 923 -135 -909 160 -859 -647 198 787 653 291 -762 -958 -159 834 136 764 731 432 -438 688 -424 -34 187 -349 368 -989 611 712 768 -407 126 89 100 956 994 13 -600 418 -364 199 424 982 827 834 953 -309 109 -432 54 -932 815 695 508 -513 858 -175 -390 287 153 -101 762 894 -868 771 9 704 -920 261 -123 -309 876 854 65 344 877 -561 705 632 -499 -512 -846 504 -866 281 189 -223 634 -547 409 408 600 998 -920 883 -410 872 140 379 -295 985 539 -23 197 72 -79 625 233 699 -775 57 -786 -267 -324 570 622 -182 -772 364 404 -211 354 257 464 -153 260 753 -890 617 -596 -134 111 111 -344 487 -175 -21 283 -689 -597 -888 -601 386 531 345 -550 13 -35 -286 176 985 -207 526 768 889 -177 -632 413 797 -59 -845 169 -735 -745 953 -883 -640 42 -254 411 249 -827 921 9 -874 908 -11 438 718 137 97 -705 284 -235 -469 275 976 484 -955 -396 -161 54 244 -964 32 -188 206 -882 407 415 -706 817 936 627 205 974 -321 15 912 819 567 -649 -504 279 79 -760 934 -188 -575 280 -416 607 -371 625 654 236 97 816 950 223 -262 -757 161 700 -462 -315 -300 552 215 -28 -80 -374 982 -834 10 203 -266 438 -131 -898 -820 -613 537 296 -341 -910 -532 857 8 -854 114 634 -60 916 324 180 691 133 846 -720 893 273 -395 933 -542 876 -735 -396 195 -78 -187 -181 -769 380 -381 630 599 -428 485 83 -71 445 777 993 -577 125 210 458 103 -168 868 -300 -74 464 890 178 204 111 952 394 532 -335 847 733 -861 859 700 -626 287 -316 -433 -787 -669 -813 635 494 437 -766 291 -885 563 -357 -309 -735 -94 928 -444 173 -546 956 11 885 -92 17 -469 -794 617 412 -95 915 703 556 985 -992 802 566 232 784 -113 -769 583 429 782 554 193 614 442 73 -857 596 758 -210 -954 -406 -307 -13 31 525 708 622 244 744 990 822 595 34 -855 -232 -801 -591 -996 517 22 442 393 233 161 -146 917 996 241 -513 419 57 900 644 226 -130 -428 237 958 850 53 -52 -677 -97 337 -937 362 420 -117 27 94 475 161 893 874 713 539 -388 -775 639 396 139 -486 65 -586 -135 816 24 -869 322 503 375 970 -316 906 750 434 -341 941 353 644 -821 -495 257 -935 365 555 698 201 83 -584 332 -203 2 -769 651 -667 -567 357 -503 248 557 399 92 593 -938 -975 -835 959 -967 360 -407 -462 -84 -976 -97 -896 594 451 45 706 -519 64 18 693 -550 -226 382 878 477 -49 -456 -775 -101 -319 52 140 933 -27 954 366 -222 -769 -343 732 -544 -392 74 981 164 -658 -457 -463 441 320 -258 -747 616 -204 674 -110 -783 -941 -457 -345 498 550 -148 978 -469 591 626 -265 595 402 -768 301 -850 -751 421 204 44 657 790 -494 -904 303 763 395 879 124 96 864 559 231 629 166 908 764 126 323 26 577 -219 576 188 -946 674 97 192 909 521 271 353 543 980 977 348 117 93 287 -403 332 830 30 189 969 -313 367 339 -249 -417 -776 773 515 -22 673 -795 865 437 432 452 643 69 734 523 564 116 703 -133 715 960 686 868 251 678 343 511 587 630 691 -720 -446 -533 -552 -725 548 -402 -478 519 -312 281 -771 358 808 916 527 442 816 437 313 468 199 -924 240 339 993 55 459 -911 -667 -389 266 -594 -642 370 -251 746 -204 879 -598 616 821 351 -656 20 -412 59 436 -543 780 495 -365 -639 523 930 214 263 982 -298 114 -460 -875 13 -300 585 -741 977 857 388 164 821 489 959 10 870 -553 936 544 116 628 177 -87 530 501 392 791 -305 23 -472 563 821 197 -847 26 -774 -922 -238 32 713 -970 284 419 981 455 803 -647 214 774 -217 746 -14 -191 -80 681 -630 -512 -551 953 -993 163 111 -927 -426 -211 838 -552 -865 -643 480 721 -394 -807 681 -649 30 -257 -20 882 376 -245 -591 876 905 -758 \n704 282\n187 211 -340 -6 -997 -565 -497 324 -848 -430 36 269 952 757 -90 730 -330 430 427 408 -522 594 901 -737 -631 -698 153 131 -450 -792 641 -632 778 991 384 -580 899 118 642 530 -618 512 311 -40 170 -255 -877 6 -451 -700 387 419 646 361 -902 424 586 -631 -967 -730 -802 168 875 796 444 -503 -867 803 155 -843 426 889 182 879 -297 -691 975 -85 -510 466 493 -638 816 526 -995 684 -213 -310 231 449 -804 -89 428 -693 908 -393 -744 -483 715 -130 374 372 287 592 -428 -363 -481 310 70 743 989 -167 210 -941 300 145 -371 691 -466 -781 414 710 -344 721 456 53 698 -366 -86 52 402 242 -11 258 284 678 -397 178 -432 -137 776 574 -3 -244 434 151 38 613 421 823 373 300 -832 56 -113 -824 -630 -322 127 43 -30 -944 87 129 -674 667 854 342 -744 -158 172 -261 -28 377 -319 218 451 -198 614 -880 945 -439 102 251 -332 974 -793 -912 -847 187 618 -904 753 281 -778 -169 355 617 54 157 973 750 807 689 145 -264 89 991 863 -626 -228 -516 359 515 134 -403 378 640 -679 184 850 720 -51 46 -581 -31 -868 -890 127 -276 325 781 -972 -555 56 -509 -834 -731 -849 -853 -885 361 -697 241 -696 876 100 835 51 -542 683 921 303 842 619 -412 156 312 132 434 -748 -658 -490 789 -550 251 792 194 644 -427 -752 -939 421 -949 220 85 -371 32 248 -83 814 857 -870 17 183 -391 433 866 574 -630 -962 795 292 -701 454 605 826 -672 733 599 -49 79 -333 537 687 85 149 -538 416 41 443 995 747 840 150 58 -617 -57 453 584 241 -336 598 348 751 -188 -807 37 840 -801 985 -732 -600 -567 744 -552 -820 545 917 167 248 -646 -700 -572 546 131 589 -171 885 -144 255 199 951 166 969 -389 -963 -520 991 46 480 703 571 -913 -1 923 -521 502 803 257 874 156 898 208 115 429 -827 755 -331 173 -115 106 -104 654 -415 -473 -546 294 -922 479 -293 135 -19 824 292 -382 -572 -492 817 293 236 -534 686 -842 -550 165 -472 -566 -287 -351 670 958 820 -481 38 -45 -657 -760 -257 -56 467 467 922 32 344 766 938 -764 482 -305 -399 -213 639 303 472 408 236 -879 -635 599 -5 175 56 112 358 -492 555 84 -622 379 -342 818 823 -35 -164 -778 263 976 79 762 -586 474 -955 396 613 340 -897 -190 604 94 85 -297 -213 -403 16 -994 11 443 767 100 -101 834 -193 108 -596 583 997 -564 128 -287 202 0 -820 -495 -718 -364 909 109 312 -372 -455 632 -221 506 456 -291 230 -957 139 -23 -96 -572 -38 -478 -587 -534 -12 -664 940 197 516 913 180 951 -736 -17 -142 -788 -127 619 917 59 204 703 291 461 733 480 227 -359 -20 -302 -656 828 225 45 -915 625 -910 -909 202 104 -778 -920 499 -470 -39 -535 229 188 20 -333 528 666 -883 434 392 -79 -124 225 -454 -786 -16 -970 942 -581 607 -657 186 -524 283 870 605 90 954 755 265 797 -816 -929 898 -701 -954 -27 -113 529 -677 -801 -306 57 557 702 -439 -901 406 -99 -762 -693 975 282 790 -223 737 -947 55 -349 932 786 -197 20 -235 -695 -918 382 683 -629 489 368 -80 860 -899 -780 -416 400 862 -984 318 -607 -77 -342 505 806 737 -635 -730 693 143 920 753 -694 -936 611 -616 482 207 -367 39 452 -855 215 46 -124 651 15 630 -725 -251 -700 -497 568 766 159 -525 -967 418 -982 -869 738 542 -763 -304 78 -432 195 -432 249 535 176 -308 655 -795 -791 -606 416 960 611 -278 -703 55 96 838 -205 789 -321 \n976 396\n690 896 -235 319 417 -612 801 -499 909 334 -154 132 176 921 -81 887 -982 882 -166 570 -704 789 652 324 813 855 233 595 756 234 273 451 -563 724 -19 -590 387 -328 155 -70 905 379 -758 141 -983 528 -121 -774 729 525 -970 681 192 -468 -405 -507 466 -243 -777 500 -184 124 48 -199 583 318 -11 229 -584 610 -924 18 584 638 226 -711 729 -269 -136 -78 -199 757 486 393 67 80 582 -228 -315 989 -160 358 -952 -140 47 -380 79 -500 394 -414 809 -137 -836 376 219 646 -756 -34 -926 -72 -566 -80 -72 -827 320 843 785 962 798 -478 823 -587 -542 482 -227 865 -597 234 690 481 504 240 -940 205 932 -94 160 -556 -934 150 167 -711 699 -443 484 365 538 781 -955 905 -589 633 534 -919 164 103 561 -499 714 850 208 -82 598 -883 243 30 939 742 -449 -206 656 948 -194 580 440 -679 -652 -389 -515 577 263 -245 572 918 -681 176 881 837 123 930 494 -931 -41 -512 242 672 -902 909 665 -199 206 982 736 -2 138 -222 -844 -917 -407 67 -315 286 551 -774 281 707 -39 239 701 -916 999 591 650 -797 982 364 158 317 643 -289 -838 570 933 723 144 434 -972 565 -351 971 -501 645 547 -741 274 829 -102 762 840 371 249 189 591 -601 -45 -688 438 77 -914 -612 116 234 -499 37 -752 -813 391 588 -826 850 -714 971 767 757 -274 228 273 -201 -35 691 628 380 -531 -119 451 160 -695 -925 201 -475 -764 269 120 424 -375 866 166 -325 -213 -582 442 771 139 -197 -420 -953 -640 885 2 -226 230 -484 -332 -298 -637 322 513 620 160 979 -911 -535 46 614 535 924 -274 -8 831 -410 -123 226 415 338 -148 -543 -828 -332 -173 463 303 696 -457 751 -567 -469 -342 -30 -331 -718 689 -938 129 -80 943 593 626 -181 156 32 715 -140 -88 943 -486 -479 181 291 207 443 -786 -99 864 947 -331 19 -725 622 -271 324 -72 -269 912 506 262 -550 559 765 808 259 -598 120 -243 -435 156 -773 785 200 -524 -336 -157 920 238 311 291 772 388 360 654 868 -894 203 288 -777 775 -772 -334 769 -382 -74 577 839 -791 306 382 -832 -759 373 -286 -431 315 190 663 -778 -441 469 274 506 245 -303 -283 -703 373 283 -684 58 -910 206 521 481 981 384 -349 983 311 542 20 18 -713 -782 119 947 145 -285 -788 649 691 324 652 -174 668 -455 690 240 -411 261 274 849 795 898 848 975 -843 -336 -389 -909 -118 -858 430 -761 -451 424 28 -908 -918 366 53 317 -365 -780 881 -414 579 576 -574 437 -169 -751 -764 -733 760 552 490 -226 536 793 344 -144 789 208 730 -517 788 -571 603 859 -922 864 520 -415 -758 590 -801 -948 442 506 -476 944 885 -987 937 446 -588 254 471 59 -781 931 -246 137 -283 -158 -426 591 157 416 358 -422 830 -755 175 958 14 -889 -637 415 175 -237 629 -488 417 -816 -730 572 839 710 -967 912 -449 79 207 719 -640 359 -637 -366 -604 -229 884 -911 -929 -240 385 -346 429 429 -924 839 548 -914 810 -646 773 471 -926 -80 762 775 3 -147 -955 -412 27 -801 356 -144 404 682 331 -436 -694 -718 891 -61 -598 -595 -380 -346 422 557 -176 528 -482 -449 575 798 -997 89 220 -154 986 203 -174 794 -587 218 472 163 310 923 153 309 146 385 -772 -652 183 106 -930 -161 -435 -592 -827 -687 -958 473 65 -31 959 -31 -693 933 476 904 823 633 918 -415 -947 750 395 162 734 38 218 -74 245 988 -354 126 -455 241 -188 816 -654 -616 -932 982 634 -18 -980 26 -277 818 345 459 240 -25 -669 922 125 324 779 85 891 -665 -37 792 829 502 713 55 -483 874 -752 485 -655 226 -718 320 -754 -989 149 275 -221 664 922 -690 -376 -915 102 722 430 450 -734 -462 822 845 348 235 964 473 476 909 695 660 583 -472 216 973 779 216 817 562 865 897 620 175 846 575 -335 -862 -867 -343 439 -314 -845 981 578 850 741 -411 939 796 241 -321 -81 -120 290 -31 -873 -1 660 -549 -296 200 448 92 954 672 909 170 -838 578 227 -233 879 946 151 176 -588 873 -730 481 -656 -218 -762 842 -92 -157 -791 -36 240 302 55 -47 350 -983 -67 980 -87 394 -520 449 -219 856 598 225 -558 -301 540 -737 -669 -953 674 -220 941 -936 102 568 -717 755 -464 -743 87 -717 46 823 -451 447 -273 -762 500 661 701 -470 432 174 -477 -998 -436 -408 749 967 254 -978 550 556 -698 928 245 -51 -869 -50 228 22 -565 -773 560 603 223 137 234 21 -55 -945 -398 -440 348 -94 279 848 322 989 -664 19 -158 524 252 266 981 393 -560 -924 -845 331 924 -131 674 78 677 501 -675 820 -270 261 -466 567 -634 719 920 -560 500 224 -175 75 791 -963 -813 -480 -990 -741 -928 -307 -493 202 20 -197 -542 941 -799 857 94 13 -430 -576 -549 -298 365 998 -50 212 715 898 -324 956 339 850 -249 953 268 652 -891 525 130 102 \n714 233\n757 -785 -422 94 350 -898 329 -672 924 390 -660 -139 200 -859 -412 129 -368 788 385 381 318 -208 221 833 879 -977 401 -105 -245 174 -776 -13 -101 265 450 180 -849 -226 -275 -340 552 827 689 306 -113 17 801 -936 260 337 99 -426 -305 561 41 -328 87 995 268 271 694 -550 -223 -848 -597 -996 106 -543 -797 460 -369 -190 -612 -178 18 623 323 106 -538 -885 -616 -105 921 516 653 812 473 -645 471 943 883 -171 784 -895 379 513 965 473 983 817 113 -913 635 902 688 803 640 -51 -309 301 208 -217 -812 547 636 478 401 466 -966 -192 271 373 127 -422 -882 348 -322 -976 774 -416 287 249 493 48 714 772 445 214 322 -469 -167 699 82 323 -377 -39 178 981 509 -178 119 -922 -344 -990 263 95 44 890 -214 53 207 -321 380 472 89 -713 -861 -713 -394 -308 288 -301 841 170 744 -748 -454 37 -565 -83 -785 -220 380 706 -161 113 403 806 -639 891 598 712 832 -372 238 -197 134 -372 -484 20 967 60 610 659 -196 812 -698 346 267 150 -965 -990 886 248 -581 -264 578 -678 -44 628 721 102 403 770 -137 834 451 592 11 -337 376 -605 980 134 440 -272 175 800 65 -663 -497 833 160 992 -155 767 -171 468 -836 -5 -832 -175 428 123 940 426 154 658 229 -905 952 73 -639 533 -562 275 619 -714 -874 926 -811 -554 -366 230 320 -297 248 200 981 39 -22 799 -33 753 -48 706 -368 264 604 -108 -931 -232 341 195 299 483 -528 -610 602 715 -5 -367 58 564 -788 29 692 -959 742 -51 995 -848 -376 -611 -990 513 -483 -452 -234 485 -54 -601 533 -822 -411 631 532 215 -310 651 -925 851 -665 682 -310 83 -522 -839 981 420 292 976 509 383 -754 913 -736 224 487 880 999 671 457 -935 -627 842 776 230 824 945 652 526 45 616 565 47 149 -353 177 650 -201 735 -241 -480 740 -748 -628 258 381 804 -731 822 673 -24 147 992 -190 4 -207 -455 585 -433 -523 -516 -33 356 -33 22 -81 -533 48 73 -754 -577 248 986 519 -664 -623 -348 -423 791 735 -567 951 359 542 107 813 941 317 386 70 -360 -433 -211 -809 494 549 -784 225 399 511 -793 191 -536 -118 766 62 2 -442 737 -277 336 172 177 377 877 -745 -161 472 -900 339 -719 687 789 817 -661 213 678 -210 891 -549 808 558 188 -144 286 813 708 201 -250 709 128 904 208 793 -942 -879 929 940 953 -760 512 890 70 460 -632 720 458 933 101 -959 521 174 535 -101 480 934 882 -372 85 -385 744 -897 -610 950 558 502 -693 770 946 696 899 -651 28 737 -136 262 418 -40 648 506 106 892 466 603 -740 133 -279 -960 -533 219 -784 445 -741 860 349 681 458 587 951 209 515 732 31 507 -309 729 996 -884 594 -823 -593 -155 -653 722 668 420 -431 -797 41 6 -525 162 -845 -597 112 -840 -435 -208 756 184 546 740 601 848 -533 -767 373 -632 114 -198 688 -504 -804 184 -854 543 -921 897 233 621 -140 704 68 162 924 -905 41 925 -803 796 -524 350 -768 -291 -254 764 902 560 83 -296 571 997 -380 360 -409 -282 -902 69 -168 619 -921 -213 34 -375 449 -258 -526 354 -936 -585 -774 555 147 452 681 -175 -441 49 89 93 -687 488 -598 -920 734 825 921 288 -675 395 970 88 -887 102 330 -417 -877 -642 -538 -238 -518 -214 282 751 928 546 571 -319 746 -885 358 957 818 -57 507 454 127 -409 467 -354 -367 466 -733 658 -139 663 253 617 406 587 768 -544 -890 -515 417 263 251 1 40 267 369 610 894 -899 722 769 -762 -546 390 315 559 \n920 350\n-879 459 -299 973 245 -842 476 756 -257 291 -23 69 -592 979 852 810 422 -703 -383 63 335 174 720 -870 -606 186 -76 27 385 267 51 -48 -386 -803 -712 -66 -663 651 461 842 -172 -453 676 93 124 904 6 -997 -444 263 64 478 -152 578 -817 601 -707 155 -406 -285 123 371 958 -185 194 939 -598 531 -575 379 -222 44 659 -174 930 -585 925 -268 -994 107 703 38 -483 728 -942 830 884 33 173 -348 457 482 235 -82 747 533 424 194 -966 -775 -652 594 -89 -240 785 -799 -970 199 916 887 624 -733 -511 85 -303 646 338 -456 671 -3 493 -301 301 -930 -296 641 -649 180 43 816 -366 -822 255 -17 5 696 227 -751 827 905 631 425 -318 -618 261 306 -36 982 123 -835 316 -201 -74 -396 467 -326 338 439 -512 526 868 901 272 -848 -590 750 67 828 51 -606 453 -127 760 -466 118 -122 496 -759 346 -570 -697 28 570 -466 637 635 561 -980 -705 948 568 124 401 -930 539 -110 715 747 450 -666 -704 324 -648 831 606 -675 911 989 -840 348 -746 394 -308 412 -337 -22 820 -169 -577 591 358 -560 434 -677 228 533 -871 551 -837 343 -482 324 -250 -250 829 907 321 635 505 348 374 127 -131 284 589 284 -370 173 881 -766 891 -468 944 284 573 201 548 656 -589 -963 -548 27 -107 601 369 807 331 626 -210 10 325 174 -720 -770 549 -226 -91 -787 36 -912 691 811 -493 308 191 207 -833 -401 -482 -699 164 -986 -289 134 -885 377 126 571 802 108 -192 617 -410 -827 656 564 -361 587 910 218 623 542 506 -302 -993 -424 -444 337 447 828 996 604 -684 645 650 -848 -529 -685 200 270 578 -857 339 -887 648 -51 878 -181 381 47 366 951 -731 55 199 393 150 511 965 834 -29 -882 -676 237 853 -883 841 809 -366 -404 -191 945 76 762 803 636 615 207 392 -909 -507 743 556 52 649 755 25 -84 -572 -650 -332 635 -45 -651 489 613 -296 -724 686 201 -340 566 244 -323 863 558 889 296 200 -806 -360 421 483 890 -31 896 744 99 -88 -525 252 -535 41 667 342 535 -788 293 -180 -576 -623 129 -12 -819 957 -212 -587 -133 -516 -684 977 440 -557 772 -739 88 655 12 536 694 412 486 -565 712 -970 -402 921 -855 307 523 -361 232 -14 -544 324 428 -244 -572 -352 -528 988 -230 -68 853 143 866 -21 553 212 -78 -161 228 638 582 735 876 -849 697 860 778 864 -937 543 99 530 550 374 807 936 -980 -807 -325 225 -984 49 -174 -431 -760 760 -653 103 88 -604 310 484 349 674 108 21 -94 -161 856 962 478 583 969 -763 868 570 -687 -482 627 519 -798 532 146 -806 610 275 356 468 837 807 721 768 -626 -592 -404 -70 102 -750 915 903 258 -650 -778 -183 -250 690 832 774 -249 -408 -857 -904 67 -828 530 917 825 -757 480 -41 704 260 -506 -173 -250 -218 -282 836 172 612 703 -87 302 -198 -318 -665 967 366 164 164 -758 -932 94 530 -170 649 802 501 -259 -269 267 992 -6 710 353 187 173 -464 599 -195 13 872 547 792 926 424 193 -269 -295 231 200 299 863 118 -451 350 693 683 777 -134 809 -817 774 -752 576 790 -256 331 700 -124 -891 291 937 641 453 17 -914 -295 883 313 26 413 -658 659 59 -644 -583 627 675 235 655 473 -450 -99 439 -833 629 -283 -894 972 -53 533 -542 581 641 879 815 -613 -432 -164 -252 -503 568 -816 876 -269 531 -576 -602 -81 236 455 -485 557 -310 122 -784 364 533 821 795 630 -74 -715 785 440 -436 -467 -336 41 802 765 549 462 -946 -801 805 375 773 -361 -700 744 880 649 698 -810 365 46 481 391 736 421 -872 -441 -451 311 307 628 18 -900 -945 919 191 -916 100 359 567 -807 -317 771 -435 -295 686 801 728 505 110 504 976 416 816 812 607 249 -884 158 22 -40 572 -521 699 -753 344 -710 -151 -352 155 -816 991 427 -364 -169 780 -594 -287 819 819 -325 -153 64 653 390 231 906 128 787 -743 916 13 774 501 575 944 61 -927 798 387 -658 578 771 -626 867 -51 359 -224 555 543 214 737 495 -644 528 -991 -978 -13 570 -133 434 977 -235 -727 -305 93 -703 -296 -629 933 879 913 568 79 -311 -497 185 -561 -823 -32 857 950 554 -523 854 13 554 -499 108 -834 315 838 975 -499 483 -156 -738 500 -360 -219 -491 -987 570 667 -436 -524 -676 11 -356 -766 120 -851 -100 -549 -24 527 555 -310 950 -771 322 214 -804 609 40 68 -181 604 -560 722 -690 25 -990 -328 -334 201 461 392 187 -728 436 -387 194 -945 -428 -299 655 791 900 503 138 317 -246 -362 320 -432 647 596 -464 64 \n911 251\n479 -136 -328 560 630 -318 547 -550 630 -992 455 -7 -153 -741 -241 -69 -278 49 993 645 -623 435 348 593 -651 8 843 -934 -692 -863 987 383 369 595 499 824 -958 -284 417 -428 -855 -38 -989 160 209 400 900 -85 -42 550 127 2 67 903 -729 -167 -85 272 -452 731 73 656 85 47 150 -290 716 -65 560 -934 -213 674 51 -40 49 -609 364 71 134 -821 -496 -559 58 -887 378 -311 124 -494 338 964 620 -504 -961 381 430 -944 518 397 275 250 180 572 -743 -385 -241 502 28 346 -992 922 381 166 -528 -676 973 -156 491 -388 838 -324 -393 245 162 973 386 -862 -421 -457 -551 404 88 -124 714 423 -504 504 369 544 933 -515 -551 970 236 463 179 118 277 817 -959 12 -789 -331 -618 -889 277 475 998 844 538 -586 947 952 -987 -885 -674 789 -71 895 995 367 924 877 648 149 600 136 -568 180 924 191 -484 -217 979 35 -997 -362 -320 425 596 918 -413 -179 89 832 -349 815 -421 -592 172 502 -296 626 473 575 -275 477 531 226 -735 -846 -784 -517 156 346 327 570 667 -207 -952 927 -829 -292 295 5 -137 -684 5 577 -234 672 383 190 -63 521 277 -369 273 122 3 -691 -568 180 -580 419 143 664 602 -994 843 585 527 933 496 327 47 678 -708 -765 867 -220 241 715 968 -134 240 941 807 635 -97 98 -307 573 108 167 949 602 -299 49 491 442 893 38 476 476 -781 229 685 433 -496 -713 -464 -406 -955 27 968 198 -619 621 223 902 123 343 -112 64 -242 -101 77 -921 26 767 -993 434 -337 264 919 42 180 360 -306 -419 -351 322 -243 185 735 -295 878 862 144 -913 765 545 575 -872 11 202 242 969 370 384 410 -697 -263 643 776 806 -520 202 -645 463 461 -101 -969 -232 732 220 93 -359 -43 -687 608 -553 362 324 62 -854 677 949 996 600 551 311 926 -568 370 820 193 593 864 -137 -441 -595 478 96 196 -929 611 -791 693 -140 -421 384 954 -430 -20 -616 -39 71 -165 -344 -545 675 -953 -710 355 -26 -932 637 956 168 150 184 -983 -498 -373 939 730 591 177 99 744 -708 -358 -817 207 742 -597 715 346 -925 684 579 544 -563 -834 670 403 -569 -484 -382 -586 690 730 -528 -71 998 10 711 -418 241 340 -655 -676 -521 581 699 77 379 -405 -463 -511 -967 520 462 729 175 297 430 -389 76 946 655 145 242 -37 272 -122 -607 -406 178 724 -751 -398 -891 -467 -115 -666 -356 358 77 -298 155 71 597 883 -418 -524 880 -830 -846 -17 44 -86 -49 -923 749 885 833 -166 -147 424 958 -961 146 799 855 13 944 342 -502 225 -186 54 936 553 600 60 22 -970 124 537 391 839 -119 -825 -163 519 221 -12 545 853 -596 80 -50 -359 64 -69 -444 -56 314 -952 464 -238 212 -64 -28 797 -375 260 -930 418 741 907 -919 -328 799 -930 -53 686 121 234 362 751 545 471 -303 768 -531 122 -705 494 -448 224 491 -574 506 337 -577 -259 -242 537 719 676 -178 -43 904 267 963 -321 -856 -23 993 -981 -619 506 -970 -611 483 -116 -954 -253 70 -70 -882 734 909 24 804 -263 -879 -548 -65 -333 579 632 268 -665 970 896 -340 -998 859 -514 -997 607 732 -152 463 134 -208 249 590 910 587 -680 -73 442 664 300 -227 620 772 654 165 -703 -552 559 225 -413 587 -999 344 650 966 63 446 -543 806 104 1 520 477 -633 78 622 153 69 323 229 619 426 510 -799 -554 -420 172 -88 830 -112 -883 -240 613 281 705 44 -697 -118 267 -373 256 162 -943 167 906 -347 442 299 815 -132 -322 -518 719 579 5 40 600 67 -409 542 -451 795 921 785 519 -61 -302 -100 189 -584 -4 -65 954 -974 -497 789 -728 -855 322 7 -237 -613 910 190 58 86 216 504 -670 436 -737 -507 377 32 -708 768 161 -43 168 819 -496 -676 585 -436 548 109 -256 553 326 -6 510 658 -467 408 237 203 -118 123 496 966 -140 288 477 -806 415 328 690 293 780 779 645 119 756 530 -323 685 -143 -446 194 -171 -700 -726 111 546 938 -29 913 135 226 714 -579 -282 539 694 30 -112 221 338 -933 849 -230 974 999 306 257 130 -609 -396 689 -785 673 -44 466 -633 -916 353 161 837 -857 -713 327 339 -587 996 474 -879 179 479 371 -566 -652 -539 217 -947 -109 -995 -133 -77 523 770 988 543 -900 -418 -625 423 333 -606 -336 343 141 49 -51 255 256 733 9 -217 -325 117 58 436 -447 851 -133 402 472 -259 674 890 -225 -389 760 -750 -236 391 -24 942 -851 -753 -975 443 686 -568 576 405 704 268 -216 166 -18 81 \n821 111\n-374 -396 470 -169 -246 14 -366 -679 -844 914 603 256 -226 544 -935 -729 267 -782 -176 871 -800 -53 568 -69 533 -930 950 -556 986 -749 779 638 -227 101 -869 354 232 938 463 -756 421 722 463 -434 138 -189 696 -384 844 225 -102 956 323 823 -660 986 -371 -147 -697 -401 -587 -616 374 469 -488 226 -657 -899 635 -826 926 -592 -791 30 129 859 -780 -286 429 -286 -375 215 713 761 503 -804 -957 526 401 465 -169 558 -245 190 638 -347 727 506 -139 236 111 885 -914 860 234 284 -384 -907 -55 -289 472 51 -618 449 505 140 652 -165 -579 18 -97 -57 806 -130 -825 -351 100 152 127 597 -2 -179 933 243 -203 311 -878 86 -628 -106 -715 808 -849 984 183 -238 -54 872 771 456 959 -940 10 949 -969 837 -733 132 975 540 489 -468 -14 162 60 -644 953 921 4 -188 878 -137 896 762 430 932 61 46 -625 -810 474 615 216 -158 148 -84 -329 15 67 -412 559 856 995 -773 863 232 -997 449 -708 -443 275 -652 -764 -527 -119 760 705 -663 396 417 329 964 691 -426 -318 919 64 950 247 -616 3 -991 -68 -59 447 -250 -854 357 166 633 -861 315 203 232 -304 -652 751 25 313 -98 645 48 894 -189 -573 591 -849 -551 -229 491 393 -513 635 -749 -799 957 -28 -554 138 -818 -377 92 723 -595 -453 759 897 -40 544 -93 510 468 -950 -18 433 -493 -585 664 -546 -303 -499 -500 129 657 909 -951 -431 -278 -539 422 787 814 -517 -802 150 418 -535 217 560 140 -170 -724 -169 -925 537 -255 672 -500 573 44 -992 270 810 616 -126 384 616 -11 796 63 930 -741 -721 -393 162 124 -223 -841 -115 -439 -923 -175 846 -454 -545 -469 550 607 493 219 -3 -51 -923 -700 -19 -631 744 415 236 428 575 39 3 783 477 -755 433 801 -333 303 704 -408 -772 -593 -475 44 742 252 211 467 856 -737 259 853 155 689 829 721 424 -84 330 615 830 14 173 132 742 -716 905 193 256 323 199 -492 738 154 577 29 784 43 -898 450 -639 -830 803 771 193 -486 -328 -911 988 881 72 837 11 -948 241 -596 -284 -173 -234 44 920 344 879 139 -838 3 -752 -633 544 -457 602 716 -572 122 -485 204 -852 417 988 608 414 -374 328 743 413 418 157 -760 -327 477 -692 -715 -333 883 -408 -717 470 -434 -57 -696 276 30 -699 113 -534 -854 536 240 -868 -733 -130 -604 758 281 505 596 485 -615 491 663 872 293 471 -949 656 382 530 675 652 593 -91 -443 -87 147 414 802 717 649 804 512 -825 295 -224 -307 226 940 468 45 58 883 890 425 373 667 612 -106 432 -128 677 -148 15 8 374 177 998 -39 890 629 -537 747 -521 875 -460 584 128 -278 180 -838 856 352 275 414 -923 -550 -369 -569 2 -930 821 -25 362 816 -576 -589 42 354 882 394 -351 524 187 -772 304 -961 356 -697 10 388 523 311 301 -935 -507 17 773 159 9 -46 -218 -550 -600 -897 480 816 -734 -866 848 -350 996 444 173 799 546 -733 616 -90 -249 -113 492 -197 383 -543 443 -57 895 -419 7 -523 134 -530 -146 173 928 -649 311 -363 -272 982 -926 -318 443 573 348 -148 342 253 -305 430 -955 -465 280 881 433 -175 -146 -366 41 428 44 762 897 -70 -596 695 -581 336 752 -57 -57 234 799 -633 16 318 253 653 -456 804 603 302 211 -695 693 -697 -264 390 587 -359 -856 4 681 381 -833 864 -223 92 719 94 -81 -346 102 996 832 983 49 294 -111 241 846 547 127 -873 -368 -437 -972 -820 316 292 861 219 172 -956 872 -267 399 730 67 725 -886 748 196 -366 577 -334 546 977 -800 37 -66 -993 626 -184 -572 695 394 170 435 -274 -949 834 376 442 -669 11 647 923 361 -332 785 -337 475 -968 -376 -566 729 623 -78 -533 676 -164 111 -835 60 877 -90 705 873 758 -556 3 603 118 229 676 412 977 961 240 409 -484 -952 56 -29 -276 -518 313 958 -392 947 -261 397 210 85 -617 490 -865 -377 686 542 -914 654 -264 -335 866 -130 953 -80 46 -611 -951 78 -388 688 90 -708 -111 132 823 512 319 754 616 604 791 516 -498 646 -5 282 \n773 158\n575 -641 -314 -71 -409 562 -623 646 766 -315 296 353 187 -454 775 -630 193 490 -725 764 807 289 835 -968 79 -731 629 -620 797 530 450 363 907 -243 -5 -6 647 595 239 -747 995 208 603 792 229 276 -816 620 -885 798 98 110 266 672 426 836 -676 -658 113 230 -355 -285 265 -617 279 -848 -621 -412 -910 583 124 654 193 632 -193 782 335 324 326 665 153 -340 -716 807 812 -265 -820 335 -139 -394 -402 319 242 338 285 28 323 -16 665 680 -189 -365 908 807 784 -9 -668 -273 130 -839 -336 -300 517 868 -274 207 167 100 843 -791 -617 -789 751 -565 504 -818 429 326 -983 689 489 -587 -395 -166 913 263 574 614 -475 -139 85 604 -190 213 -882 983 -548 508 -898 -594 239 -990 343 -306 800 -498 576 236 537 -855 -356 -893 -829 -987 -523 592 539 -228 757 564 215 867 824 91 688 404 -999 -436 235 -528 957 9 598 27 -166 -26 -574 -30 -967 720 -762 805 153 571 -37 -658 714 869 -800 993 372 669 -566 562 52 852 -175 794 -308 -595 877 466 913 299 -130 -686 -621 -412 -712 -991 879 -551 943 58 702 -516 386 527 730 -604 -866 995 379 815 130 -942 -391 -824 914 150 -561 -445 636 -674 -717 -728 194 63 557 -312 6 527 -822 -88 -768 573 -252 670 -459 298 946 254 288 60 50 -509 354 -649 -315 94 17 392 894 -120 823 584 937 -942 -998 407 -972 -422 -560 -701 999 -75 541 -926 593 595 -761 -668 -890 -193 -467 858 346 172 71 -634 -680 366 516 288 132 838 135 -13 -525 279 670 117 716 -822 -934 425 -919 -176 -486 846 743 466 -642 108 -706 879 417 -215 -74 -310 495 -770 724 424 -292 991 642 734 -578 -696 50 850 651 -673 -324 977 1 228 784 136 372 -676 -493 75 -840 -546 387 919 76 -571 -658 577 460 311 -769 -741 304 804 944 793 -618 681 -230 223 300 -708 645 734 16 -556 104 -81 -190 -376 -92 599 -474 -454 308 305 227 212 907 248 645 -827 -590 636 736 879 -479 613 30 705 867 -814 -593 -469 677 -789 -155 707 -545 525 476 58 -866 -365 280 -761 -765 110 -502 -116 -243 208 418 -573 507 45 548 984 230 -716 -511 46 913 656 123 588 806 -991 675 -593 691 364 919 683 -761 781 379 -474 366 325 454 -570 -244 -499 -460 -654 -529 -289 389 272 869 -470 836 210 702 164 -864 545 495 -35 -446 740 -668 572 590 -825 -408 407 737 -217 640 -558 -250 247 102 7 370 324 974 70 -754 278 -684 -89 700 -477 420 -602 410 972 -128 769 30 -366 -526 47 -177 982 984 420 -477 -766 962 -33 674 737 87 775 828 153 -620 942 -523 154 812 -943 650 349 -402 -923 968 118 706 -657 -531 230 -464 300 520 730 -351 378 100 514 92 -823 -358 -714 -929 920 202 -396 -19 608 960 -205 -771 551 843 -108 -600 -389 667 382 -612 -11 739 12 -227 -227 771 795 -455 459 -959 467 175 -687 -623 -1 -899 -484 -173 926 945 157 -178 45 235 -513 -361 -721 -815 186 714 476 -78 64 -296 -777 13 -805 -771 755 159 -223 791 19 969 -233 -99 271 189 -353 -572 -461 488 -755 440 -748 724 813 -595 772 766 -578 -468 -801 952 -895 225 668 104 -697 207 105 408 844 -947 946 852 149 341 578 607 -570 615 -339 119 724 -626 697 372 -820 -625 229 21 979 -372 -603 771 968 166 981 -931 879 151 653 296 884 699 -870 351 -812 514 132 346 20 134 -583 694 535 0 661 237 53 843 -141 -532 -959 -551 980 382 -596 375 164 -775 15 -524 -896 537 750 -864 569 -75 677 867 -988 445 -977 -578 -298 -454 741 907 327 -454 -344 98 707 -636 -397 215 716 785 -778 261 -513 298 -81 -165 -177 458 -770 713 666 -319 -888 105 819 864 -327 546 -434 253 276 -378 694 -775 -445 13 279 -748 -93 -955 673 364 826 847 173 -550 -974 994 688 308 -121 598 -706 -459 \n833 59\n980 -228 -593 -213 658 80 579 631 -925 -692 507 482 -844 -366 -409 983 160 -162 280 -913 173 -621 -726 -129 -629 617 95 -107 -925 508 850 -414 582 785 123 -288 806 109 -207 847 828 83 611 241 -591 -785 -45 -54 -208 569 -521 105 139 -577 606 -514 850 411 15 -462 -642 230 -450 -518 -268 -147 692 -212 -493 -56 323 633 294 -80 82 658 -149 -265 713 -966 499 -613 274 -537 -924 898 949 -557 -498 -35 -245 259 -153 780 65 -406 -604 225 -492 -553 -991 -224 -125 -644 300 379 56 243 -734 -823 91 -87 257 935 690 507 -224 -545 -148 -104 -509 -376 419 -202 404 -368 31 640 936 -86 -100 728 421 69 664 -920 204 986 358 430 715 89 -709 706 -322 22 305 855 351 397 -441 389 203 866 248 377 418 818 69 700 831 -943 475 -304 54 360 601 -886 -288 63 -122 -963 -307 81 942 -654 -383 -514 -968 -571 2 -182 -686 27 -748 857 -596 -490 604 -336 -514 -144 401 -94 193 697 242 784 289 813 375 -921 406 -272 -110 -198 -87 987 -279 667 214 -33 -256 13 -890 251 697 -86 -176 -164 520 748 85 -150 679 218 -446 475 26 -877 625 893 978 416 -649 103 340 -457 -54 73 -234 -586 659 -232 273 -617 -446 371 -217 136 387 568 -40 493 -889 813 312 379 -43 -823 -756 327 -192 -630 -687 628 372 119 -598 -488 -373 433 -320 -61 607 544 901 -105 -824 157 -628 -975 173 324 724 931 875 77 332 -25 -479 540 706 671 654 985 16 950 246 832 634 -309 419 -434 226 -662 -906 962 -837 976 650 456 99 955 398 370 -746 503 -381 502 -619 989 -794 -42 996 596 -596 460 324 -157 326 906 514 320 -256 828 -327 949 -93 92 855 -571 -931 733 -412 45 311 -793 -364 32 -894 33 438 182 -948 665 -128 870 449 -250 588 641 287 622 -222 303 29 519 543 256 551 928 -957 156 292 835 -41 -596 -6 -833 752 -494 982 765 -203 668 518 826 -992 949 493 624 -934 483 -646 -875 356 124 -497 28 -483 -609 48 614 -919 -306 972 -761 -2 808 966 43 -705 177 -134 874 181 664 463 -92 -91 370 464 239 108 306 613 177 902 -565 -572 953 833 -111 201 -604 -435 -285 594 -594 461 -801 -52 662 860 -825 -916 689 -17 696 -591 111 313 820 875 -672 -469 -886 -939 425 -459 -261 -550 -817 203 -787 -545 -812 587 437 401 331 -508 -776 745 10 779 263 -50 153 208 -982 862 -219 -394 67 924 -810 -994 151 64 -665 -475 225 576 521 -48 507 464 693 838 -259 782 -822 310 -84 142 559 -869 930 407 594 939 817 -853 601 991 799 197 693 -577 877 44 -795 87 859 -177 818 673 -529 -958 623 965 -862 -979 -530 651 -461 490 630 922 418 172 956 705 650 523 288 -71 321 590 -746 428 -225 -784 -326 -973 178 497 77 300 956 -179 363 430 -974 615 -71 468 -723 886 462 578 -168 448 -799 923 -311 -680 232 -58 551 453 -776 906 970 -571 -923 39 -582 -832 817 539 44 128 -519 547 708 162 677 79 -607 -808 375 -398 -771 -187 -836 -855 -946 -284 -233 689 796 684 671 -291 272 -845 329 -197 -319 -327 175 -310 -202 724 853 11 559 -780 429 -886 464 -122 841 -21 435 493 394 383 923 -912 708 -82 205 -866 471 408 908 895 -744 349 -790 509 -901 219 -149 -431 205 -902 871 942 326 -441 494 -307 181 239 -984 -86 649 538 -384 755 -992 -743 -851 663 369 536 805 -623 144 945 778 290 -901 -724 -525 -938 -565 381 140 39 216 446 -817 -227 633 -228 -859 303 698 200 163 157 -733 327 655 660 867 499 739 87 -961 584 -147 198 158 896 818 708 847 63 478 -543 331 687 -634 595 -751 13 -418 863 947 938 939 542 267 571 152 288 -928 809 -102 -958 708 250 913 -610 809 -959 -669 429 738 340 614 -614 520 99 63 42 543 769 335 -102 -262 95 -544 -23 11 -362 -263 -595 -285 827 438 525 -280 776 -13 -589 140 -985 -332 -333 -150 -60 -659 -957 246 -466 539 280 791 752 970 741 819 471 -658 255 -532 -436 58 13 667 528 -140 227 -725 145 158 279 -753 431 913 804 -76 -920 -109 -731 125 -493 179 -173 505 906 993 114 944 946 \n846 352\n819 -820 14 597 638 -674 -327 400 -395 474 -251 -157 749 964 952 -92 612 115 765 -797 666 575 536 640 -981 212 210 -907 -264 986 894 944 57 451 -486 -483 -788 -592 246 752 623 212 990 915 637 263 -860 -679 931 820 -96 928 229 -211 838 -680 -650 -184 -560 -294 28 83 -58 -2 -881 582 -308 82 -317 290 -651 889 566 -370 608 603 -774 334 -487 65 964 161 89 883 -323 -212 -347 985 -978 841 -149 -153 547 200 -172 -237 412 45 200 -482 -392 264 310 330 -671 572 919 -402 194 -769 928 100 -328 627 424 -478 -844 264 -21 730 -604 -301 -984 93 739 658 828 -456 688 57 802 -689 102 395 -144 979 610 -899 -893 -649 -80 313 -967 783 -182 624 398 610 -534 441 -206 547 624 534 -225 176 751 319 698 83 367 -681 67 25 149 -714 688 124 -63 510 -346 761 464 -789 701 499 -910 178 -690 94 -59 -662 -629 613 -215 427 -880 244 804 -737 607 926 184 -133 -634 -729 319 565 -326 901 703 485 476 841 -994 941 144 478 -440 929 828 -58 -394 -999 866 -558 -400 948 574 56 -971 80 993 -946 332 245 -455 425 851 444 362 -599 745 -216 869 -74 -239 -362 -162 -106 388 -899 492 -86 -667 677 -414 560 -123 218 -849 -293 -245 362 -147 414 545 234 402 -818 -530 768 181 121 -557 16 492 -794 -78 -258 2 -846 683 962 -978 -75 927 462 -80 482 712 972 -563 -177 -465 521 274 290 -249 395 -732 530 -59 264 318 987 892 812 -393 955 311 991 297 850 -172 -677 199 72 997 580 360 -269 808 330 260 -854 -392 572 -432 615 947 480 -12 35 -757 -580 -693 102 -348 148 772 356 123 -768 -294 119 551 148 986 741 693 335 830 -15 -737 260 562 -852 -96 916 -59 579 -64 -553 498 -189 -331 444 75 -985 679 721 -750 717 -776 950 625 500 -437 167 -715 130 -607 413 987 202 678 650 -247 -777 803 871 -214 992 334 295 294 -230 -98 505 382 -308 -484 537 -990 839 -688 511 -770 993 -525 607 451 -904 20 120 637 -157 -188 469 938 159 -120 -71 -334 46 951 -73 -657 248 -996 -258 -616 823 -284 830 -76 -441 659 45 129 -214 -663 259 641 -110 290 679 510 825 676 836 412 -141 40 299 -476 -779 650 335 154 -482 576 815 -464 434 -678 -839 -977 859 103 -760 183 932 779 -763 277 644 699 394 718 836 -471 256 -59 715 -633 -723 81 -385 88 145 809 788 78 208 463 -198 417 797 507 509 -286 -782 -563 -762 -489 -144 575 322 607 186 451 368 748 311 889 25 893 128 -972 671 535 488 958 639 -286 -318 227 482 104 710 868 -727 159 553 749 -168 -490 -273 -63 -809 292 893 -823 284 300 507 -61 -832 -427 -913 590 61 -417 426 -90 889 673 -872 62 575 488 -276 -643 -234 218 432 -910 302 -861 -941 422 152 116 205 793 -297 -301 195 -815 279 -691 630 -453 363 469 410 -308 780 -22 -750 -888 379 939 -39 33 61 -415 395 -757 165 834 23 -947 247 -358 426 705 733 313 879 -544 126 -62 679 307 -538 116 -37 100 168 805 -216 703 184 -208 925 621 -697 247 34 -922 604 722 308 -550 -142 -146 -242 288 306 -279 912 -23 749 995 -845 671 -625 -628 525 338 -755 -342 919 429 125 127 480 839 -940 433 -326 421 -619 -988 -438 528 -270 -225 -495 117 111 991 797 644 909 98 -294 -754 48 127 168 -975 -935 -802 -586 -369 722 -216 -630 39 -744 701 630 -350 594 248 668 560 -910 -490 104 688 -629 626 -118 415 517 -595 45 -610 384 -420 952 -650 643 40 -329 139 -416 -844 -690 421 444 772 -386 -726 -762 662 638 -942 494 917 -141 809 419 975 379 -729 797 95 -31 -681 -287 -628 941 83 -39 -224 -948 -43 -189 -994 817 -802 992 -141 723 -180 -737 -614 141 586 -302 938 295 977 -960 -750 700 361 662 821 -269 22 103 -557 -349 -146 59 442 788 234 -947 34 557 381 189 -224 79 -960 -289 33 47 -789 999 -529 636 766 351 -743 50 167 -870 613 160 74 488 561 -10 -560 -328 631 -112 247 -746 949 605 510 -754 -589 -584 931 34 766 -150 -997 -400 -819 854 139 533 -363 548 -459 -799 463 23 891 16 447 139 -428 -317 110 -800 -466 -488 105 -505 -853 487 884 445 \n739 217\n739 49 445 -225 759 -255 -420 837 233 -755 -375 245 457 -892 -439 338 -643 88 674 818 644 -430 807 -648 241 746 294 -906 129 -13 -469 426 14 618 731 -847 408 33 962 673 913 -968 589 751 -834 765 206 -524 -29 677 130 998 -409 225 907 -118 -449 731 989 164 -645 502 -809 -152 752 619 -885 585 -896 317 170 817 473 -662 -261 455 -218 -655 -943 756 598 340 -445 919 -469 93 -17 66 -960 -926 375 634 865 -432 -472 482 337 46 66 169 -847 -721 -214 -87 -776 541 569 -100 -713 890 532 866 159 -259 -204 502 -640 842 499 -34 599 762 -820 -950 -316 324 -763 -906 537 43 355 478 270 711 -646 218 534 694 304 974 272 414 4 764 -903 4 -446 817 586 129 863 184 -37 -751 5 127 -142 -312 -904 -63 736 832 446 472 788 -670 -400 331 -147 -359 107 -54 997 555 -775 52 174 -990 -291 18 660 -992 704 -291 794 -22 65 -333 -871 151 969 -441 703 23 -421 263 -873 -63 262 856 -792 90 536 -931 -610 -490 -574 -873 -932 18 244 408 756 857 763 747 310 389 216 -48 -416 974 -181 681 821 375 -439 348 -685 -968 935 147 868 -127 1 -45 679 82 584 -827 -986 38 -423 -907 -692 764 169 -633 -641 -982 59 441 303 -303 -845 270 858 264 -349 838 929 -387 -435 707 -855 -788 -525 220 -922 -739 -301 -594 527 -852 102 588 668 599 899 803 924 -81 41 -759 -447 504 -720 848 199 915 77 -229 764 -936 234 585 81 779 517 -665 -445 790 -141 239 899 -643 401 834 -730 708 -80 571 214 -580 66 -170 -605 331 -341 671 -843 470 705 -866 430 -309 349 -283 794 723 535 -970 967 -945 -601 -209 62 -444 590 717 80 442 689 97 -951 -761 -46 -922 459 456 935 -844 710 387 -160 475 -784 -124 483 387 -859 -557 -221 577 -824 766 -95 -32 -57 205 -23 157 -997 145 84 -155 -655 751 -885 648 999 93 -339 -390 32 578 754 -706 832 -612 652 -864 755 -599 -366 310 736 -965 -658 -692 -611 -496 971 -459 449 706 -779 -139 999 366 -264 -899 -907 -916 11 -413 -961 497 -720 751 -200 389 -329 299 -579 -859 147 -143 -272 -332 -399 -718 300 -964 322 -542 485 932 133 -592 38 -966 550 771 711 908 22 -937 498 290 -833 488 127 -151 -529 -194 809 -888 -818 902 -919 -349 119 325 316 946 812 -942 536 -711 -355 -442 444 600 -728 584 553 -206 596 66 562 -180 -557 -415 6 -283 956 367 -79 -158 -325 -26 -781 807 -699 809 468 856 330 -347 418 619 -107 -930 -738 163 396 435 963 328 573 -825 -385 311 -436 -875 307 -248 394 -785 332 526 -692 107 -43 -186 402 619 251 -496 147 -294 795 -777 599 750 358 935 -4 -107 852 -644 -874 85 -120 908 -703 -364 424 894 11 569 968 927 325 -354 808 -279 644 -817 705 817 615 469 -19 -527 -190 -680 362 45 -919 0 749 441 874 335 -534 577 901 226 -828 -453 -896 917 932 449 18 590 -564 796 458 85 -22 852 -775 411 987 991 -393 112 -885 539 357 -362 796 320 -261 213 243 -848 958 726 -680 -774 -448 183 87 564 409 255 -111 -299 -187 -254 -315 -551 -209 805 514 745 798 -588 752 315 919 -362 291 567 -875 209 783 561 -722 -207 450 -856 219 102 449 361 -829 -709 705 500 167 237 775 -716 -727 -188 801 675 -919 502 -866 884 587 -247 377 552 173 962 -538 -474 890 165 764 -779 -146 491 578 -311 -147 392 -915 -957 742 -633 442 530 -913 481 662 591 -115 165 283 -911 963 -417 -583 -26 226 -960 -509 197 236 -945 630 -543 780 316 491 -734 693 361 -460 -616 -713 -585 812 794 -805 -987 -995 -148 -363 -201 -907 -907 495 -888 51 894 258 844 847 721 994 \n941 230\n201 -642 415 -953 563 -768 -454 -8 698 -612 629 -718 45 289 108 608 783 462 -345 896 757 736 819 -315 186 213 952 267 478 546 -272 -679 355 -918 519 -806 863 -124 614 216 -157 373 -43 -389 540 860 316 -51 830 296 856 -276 666 -606 -807 -470 994 -876 181 130 -334 -87 259 94 -527 182 -533 651 -589 685 -229 55 -418 107 207 -60 372 148 443 -87 871 223 518 418 465 -233 -433 626 92 -48 216 -193 -807 -561 -628 830 230 203 34 -584 -301 954 994 55 -89 -749 329 -459 431 -216 207 802 843 970 98 71 442 848 513 -430 -816 88 690 305 979 759 292 -933 358 -204 749 318 408 515 -382 591 626 -547 466 -858 524 512 250 -670 65 417 516 -676 662 -691 248 754 -279 -436 -81 -232 314 -321 -778 -606 889 489 255 -715 -5 -640 551 -423 -406 437 -289 -450 4 -636 -292 315 -705 597 -309 218 -644 994 220 -14 47 -989 791 824 658 504 -766 -590 -487 747 278 -953 732 682 511 695 -652 668 -622 810 -445 805 435 207 619 -852 -859 -368 756 -766 631 547 770 -417 -300 -848 709 714 553 -854 894 817 -932 -895 -149 -607 653 400 436 942 137 594 201 -313 -401 -204 -744 448 -704 414 982 702 64 303 16 -850 238 -920 -314 -977 -818 -143 240 619 408 254 -201 305 985 217 518 277 -427 -379 311 915 828 777 631 264 763 493 -691 -578 -720 852 -895 496 -87 273 169 165 -89 656 804 -457 -50 -124 678 744 -900 -602 739 -841 395 -587 432 -136 -439 782 -752 565 -805 -892 -866 858 -182 -378 -745 713 -14 -290 -355 68 46 674 -178 -787 587 -451 526 -810 -941 235 554 -648 633 796 834 729 -335 -228 -659 461 748 747 875 319 882 983 213 -711 731 -971 870 560 753 -859 -411 682 362 98 537 -705 -196 109 -107 -868 813 662 407 -759 -6 433 289 218 594 -346 239 888 404 853 563 -849 -638 164 260 664 355 -261 -94 829 -103 -10 885 84 977 -367 -86 284 992 -759 422 441 -554 639 729 -947 30 825 788 877 716 -555 747 103 448 638 -989 -556 915 543 275 -300 -386 -281 -132 147 909 1 100 -65 608 513 768 -840 238 702 -683 681 593 -241 276 -679 635 41 798 297 328 -8 671 957 346 522 314 16 171 625 -453 -783 999 -924 -139 -993 488 -731 -251 -170 623 -860 -935 530 898 -729 71 140 360 -648 -595 176 -758 -506 -236 41 942 324 -723 48 -571 -369 408 -727 639 -126 45 -470 -301 605 -993 265 735 -203 958 992 16 810 -923 654 -243 559 474 331 603 516 -299 66 153 767 631 -852 313 -762 -174 331 605 521 42 -279 873 943 -33 -572 -909 738 71 -946 -566 -154 434 -764 948 -342 316 -970 878 271 788 439 -970 514 549 964 206 362 -310 -331 -522 332 -736 588 -642 402 -492 692 -633 785 210 657 617 515 -355 935 828 717 -152 -454 -447 -922 552 417 377 614 606 376 744 651 224 -847 164 472 353 -182 898 93 176 -303 11 585 696 3 -555 564 286 -173 82 253 934 -757 326 933 53 639 367 -729 -312 -857 273 -724 12 -616 -925 932 -732 228 849 904 975 7 300 -760 463 -482 -147 821 747 944 -526 132 926 473 -611 920 -373 -129 -154 141 -797 -862 -984 -758 547 757 813 623 -866 -974 549 -644 392 19 -835 -16 601 973 81 -423 339 255 -897 693 -544 809 -87 420 -744 295 -500 513 -572 -463 757 -383 692 -239 -218 -308 593 124 440 271 84 -404 104 -976 813 -741 -357 424 813 -571 -473 -885 -821 -894 -849 511 708 393 853 430 -533 349 -785 545 -319 -948 150 -592 -139 695 577 -595 321 376 -211 113 884 896 -664 962 769 666 992 -509 172 -935 -913 -963 267 -64 739 18 657 823 411 -340 -524 854 -768 5 879 -85 401 -272 529 -769 -413 282 284 -936 -1 557 -959 470 270 54 397 755 144 624 -732 -331 840 327 -838 -341 131 -478 483 -76 313 -922 -270 -849 734 876 443 262 -813 -723 567 -508 -288 879 -984 295 505 319 913 869 557 28 -335 -602 451 -788 591 -975 753 289 989 350 943 871 -150 -384 250 833 488 223 -363 524 -204 -109 293 -682 -363 67 283 489 -982 98 247 257 389 -366 484 -914 809 645 5 -251 -449 -797 -668 996 513 243 -4 -950 166 101 471 -925 -980 385 -705 -637 696 564 -803 -666 790 -420 233 310 -356 -797 4 671 -469 192 232 695 -960 152 647 522 966 291 -205 -187 -135 -959 322 15 -365 -298 -755 264 -736 -481 -649 -36 -368 426 -144 340 86 153 -921 805 468 -535 161 -98 928 535 -352 -128 -965 -615 -139 816 -434 13 555 -801 681 -263 899 468 849 362 -21 166 133 -92 230 809 -275 74 533 515 -317 746 -137 790 -915 -146 -944 38 887 848 -16 -30 184 \n763 226\n915 318 633 -575 -34 -908 927 56 760 224 647 -775 -408 510 -55 832 -344 -149 -436 -757 746 400 797 108 -613 -934 720 84 -250 690 715 555 776 -371 500 331 -657 -725 545 680 242 998 545 956 30 -873 689 -611 715 423 793 783 -324 -929 -220 965 -686 263 211 246 -851 -668 298 176 -898 96 -825 570 237 181 -181 891 -841 698 117 12 -818 -35 941 -697 452 -303 886 884 -275 -769 -868 354 68 -927 -511 -348 657 -822 563 55 202 308 880 -653 -14 564 -498 290 -422 390 649 319 27 228 651 -170 898 -495 181 76 263 -632 598 -834 -351 -415 100 -957 -581 -343 309 698 990 671 319 -323 685 -315 8 859 768 449 -743 -798 65 373 345 495 317 926 293 -64 -176 -382 113 278 -976 61 771 417 -454 343 -952 -456 184 2 -952 940 25 953 375 -968 743 171 918 -56 884 -701 -865 447 -54 300 687 631 215 500 -269 12 766 -587 -234 -761 955 -246 596 602 -319 499 -434 -248 426 -150 -112 -297 -899 -701 79 549 892 132 970 490 -836 -241 210 713 731 848 2 -678 -697 -561 -819 404 -151 -629 -122 255 851 -981 -573 608 -665 -962 -114 980 -101 566 -208 349 346 898 500 704 -543 -526 861 -94 692 908 169 299 -57 -237 470 610 -255 -451 865 687 -549 109 258 -531 -669 -294 -661 -467 -900 446 443 -681 -349 919 752 18 903 10 491 -246 682 544 -704 52 -358 185 -745 27 797 -288 -241 18 -100 700 296 -841 982 201 -418 125 392 -333 303 -616 -158 428 796 -511 28 -701 793 418 -206 -466 233 495 889 356 -358 -152 224 332 -586 -520 -40 -187 111 -818 -228 355 -895 -938 129 140 925 610 -411 -576 394 343 -647 -687 -921 -81 -311 540 692 -502 857 -622 100 167 368 -160 -781 -546 57 385 975 287 -951 -45 990 971 -976 162 59 504 -366 899 -154 130 -639 513 570 251 -269 -13 935 864 -854 935 219 802 141 -731 929 367 -688 726 313 527 80 941 983 -975 484 -543 843 752 -358 -246 -834 33 -964 266 588 -401 128 213 668 526 -89 -400 739 241 376 853 -446 -871 620 27 395 -130 -622 333 -536 -782 517 811 28 -196 947 152 -812 130 503 -722 -975 777 393 -157 -210 -742 -617 -200 373 746 -752 -254 -364 795 389 -719 415 840 -737 661 395 376 860 111 -519 -291 -470 233 311 351 982 -969 580 853 -879 172 802 -922 -414 207 216 199 101 -743 -404 25 -915 -850 413 786 -970 443 991 -357 143 -738 298 -110 -182 -793 -707 776 515 784 634 -645 -90 -506 762 625 304 -374 676 -631 104 -279 597 -67 271 620 43 -174 479 -353 -68 942 -384 836 -271 875 955 -680 -225 -99 829 -790 217 -855 -842 23 -564 -260 496 -36 -850 690 -55 670 359 -576 839 846 579 903 42 -446 290 498 982 701 189 660 -813 199 -775 402 -805 459 329 -37 872 -668 295 849 -580 680 913 641 404 876 794 521 462 190 212 946 51 626 -706 -473 -954 -710 188 689 629 -197 815 -844 170 183 819 358 763 840 659 802 -230 -645 961 131 982 -474 551 789 521 238 982 433 816 -717 675 -236 -930 -158 21 264 -889 442 -489 506 36 971 150 -602 -251 -251 745 678 38 112 938 424 470 423 429 651 -857 -654 -546 -570 731 -856 -245 2 -696 -957 591 -379 -235 -855 19 -850 363 -910 706 242 920 765 24 -118 210 723 404 936 162 -299 380 230 855 252 -943 256 339 -98 313 139 115 99 -882 -105 387 -667 15 422 799 -776 183 292 -739 -863 -584 912 340 -661 72 164 508 -526 -204 27 -586 466 597 -464 32 883 -389 -327 740 33 798 -130 519 -30 4 -917 73 -426 -198 -690 -59 -639 361 -238 867 30 733 -523 -340 217 86 932 971 -111 548 323 587 -963 907 471 433 517 92 -830 -353 712 594 -415 528 866 -982 -988 -848 -343 -980 352 -615 -783 867 \n877 238\n394 724 -11 144 116 462 437 127 221 535 -700 300 -578 472 784 4 -406 400 284 249 197 -634 233 974 922 757 265 93 146 330 -101 -105 494 -241 975 -100 357 229 8 25 383 -563 828 651 -539 -463 129 -565 -330 -823 259 -952 -586 -574 435 464 36 154 747 511 -822 62 -876 160 570 433 216 853 -21 565 320 962 225 65 -520 -232 276 800 646 763 -86 160 -454 108 -551 811 537 752 -583 -777 169 -631 -627 -684 -111 -198 199 571 181 45 278 24 -788 321 -652 -642 88 779 589 899 -775 -616 675 -107 -973 -15 524 -91 -611 -950 425 187 -499 542 553 37 742 -658 267 -80 471 395 288 309 -141 -407 415 45 692 -341 430 561 412 -755 944 745 -377 585 553 78 578 19 44 791 90 554 -510 -112 786 596 120 462 764 -8 985 -973 489 602 186 642 413 -117 368 -201 -230 -660 429 536 537 112 -535 746 -276 -534 -231 -686 -213 525 260 749 -409 452 950 -375 -430 -370 763 -486 634 212 -253 418 -642 227 122 -83 356 -732 210 562 245 278 517 -225 -627 759 -3 510 452 231 -410 172 -397 283 27 -90 -380 -355 325 402 919 853 -984 507 459 568 492 -392 -998 449 824 55 605 -378 931 -794 -471 -734 -918 593 -311 62 -488 990 150 -296 -545 496 982 914 527 656 -609 595 -436 127 24 -258 198 -391 -749 445 350 -325 177 324 -289 581 726 -956 690 342 -143 -28 638 426 218 779 847 863 685 688 -610 -337 814 -824 -744 645 -882 -731 -808 32 351 -968 -324 -838 -834 -413 560 99 466 767 -414 85 450 520 621 -320 3 -940 821 -849 320 -395 428 -147 568 843 197 -582 -960 -571 -507 -579 398 648 826 -441 -599 -323 487 707 -378 129 803 231 586 -315 -812 -432 288 68 -43 493 567 -141 455 -872 982 268 929 -537 570 976 630 -680 97 967 625 830 880 584 270 917 534 386 719 -107 287 -803 -971 -67 242 369 -706 147 -794 -413 547 984 321 -403 -998 493 -640 532 -362 672 41 324 -336 86 166 -412 -421 -393 -391 264 340 121 903 226 10 -984 879 -902 849 388 682 84 -942 -801 695 169 -771 821 -947 -438 -805 -666 740 199 -727 -439 -631 797 -141 343 -483 109 529 833 -940 -743 154 -23 137 104 -664 -567 -598 -872 730 261 602 565 536 -270 -186 510 377 998 484 224 -878 971 765 -189 941 200 268 -112 231 420 517 362 -314 408 -31 265 728 492 454 -651 -918 682 457 279 966 210 901 716 -181 781 553 416 -558 146 -744 883 21 -939 50 385 -308 440 -602 -244 -482 748 -961 359 695 51 -850 372 -826 771 -989 -311 -811 856 -21 641 401 -349 1 102 381 274 54 -559 -893 -689 -283 -657 -706 -839 -84 628 571 -265 480 -677 -375 749 3 676 462 77 76 582 977 -112 88 948 -838 352 -574 834 349 -589 873 -746 -990 -728 41 271 289 -641 -162 -906 803 -570 755 -656 728 9 976 49 147 -74 -216 627 752 194 32 -757 979 53 863 -709 78 170 -688 -123 -591 186 243 419 231 788 -724 854 860 116 802 353 24 -335 985 829 656 545 56 598 38 -239 396 269 -392 405 76 974 334 -713 -675 986 896 806 -961 -213 166 74 274 865 965 -512 -789 -209 225 -383 630 503 309 -962 -93 32 -589 462 -877 -530 -493 -671 341 -261 -199 -834 -322 15 -417 716 -652 -614 268 -210 628 -178 31 751 -501 815 138 194 -592 -944 115 -645 -437 311 844 999 17 -510 387 267 99 818 -440 230 -38 738 819 -197 -618 -732 172 221 827 -721 -816 -672 -336 -308 187 -119 -702 870 161 531 -122 741 -555 603 -978 793 24 -993 477 -277 674 212 -846 -836 -917 375 781 761 51 281 686 734 930 732 -849 -278 -180 734 176 155 -919 171 -259 473 627 104 -303 577 -206 497 -915 887 899 -780 386 604 375 -996 749 -813 -3 720 478 -610 669 -73 437 -167 -542 -391 846 518 245 37 -345 -276 -579 -24 457 -680 -653 348 774 -511 501 247 -683 722 473 -188 440 846 507 713 -553 123 639 -385 -885 30 -616 899 161 832 -147 -449 -26 300 83 962 -446 -69 -163 -657 796 397 -943 76 -608 -719 876 229 160 206 -891 -52 -649 667 138 -43 362 540 -290 145 -720 815 946 344 32 -851 659 671 -968 560 -458 760 -39 178 377 115 -721 -42 631 -249 -364 -620 -867 914 -117 -482 5 -504 883 -287 -141 633 203 341 649 -41 -10 -80 -443 -517 -335 121 105 \n806 192\n-369 -879 158 -541 152 718 -668 -143 -390 11 -297 7 631 106 843 957 381 -320 911 925 -110 -576 707 631 610 951 554 959 -358 57 580 -670 604 225 723 127 153 -782 -543 435 949 576 955 -662 910 759 230 -632 846 -804 387 -340 944 -334 689 172 -47 -711 388 811 -167 748 -482 577 882 -193 -119 -995 581 234 -9 -233 584 -339 -861 -646 977 -185 376 787 457 222 414 909 430 873 487 786 439 604 197 720 460 -925 840 390 123 -653 -730 136 596 -572 -691 847 -998 883 -877 -663 -239 288 -617 -752 -632 173 -569 -582 686 -346 -612 -977 -379 -174 734 -118 371 -986 412 627 704 631 324 -926 46 139 -827 -279 975 -712 485 -802 720 428 442 239 -866 -338 275 161 986 823 32 170 146 -582 -437 749 350 181 -345 -658 311 230 54 358 92 -199 811 609 220 642 781 -766 -596 46 649 38 -807 -11 -644 829 682 226 -564 404 -564 -603 -596 509 996 677 700 770 786 474 150 -271 812 -328 -114 603 747 642 11 411 892 -964 496 -863 -488 -642 332 387 -44 90 871 -103 377 629 114 215 -293 723 -622 -332 -584 468 534 961 672 23 361 343 262 831 41 441 783 -160 550 -273 -788 -63 452 785 962 335 -769 307 482 973 -816 -458 842 -949 872 -94 -778 -467 206 500 -448 163 326 -292 316 177 -582 -945 -293 690 532 748 -739 184 -195 289 -171 34 690 672 86 -258 604 -822 857 909 -361 962 591 -111 -780 649 370 -708 -99 834 78 496 499 626 -830 528 -545 80 757 839 137 618 559 338 -450 239 85 -796 -536 667 940 466 618 687 862 888 562 -782 -984 -771 455 -433 99 -293 38 572 955 500 541 -214 571 -707 -470 805 398 551 -482 199 687 747 -748 -274 -75 637 553 405 -282 -671 167 -125 -753 614 251 -170 315 382 529 255 307 -45 856 245 363 852 539 -32 41 -361 601 57 -253 119 -830 -306 -92 588 -696 -101 688 482 -363 822 222 -583 494 -812 510 502 219 -764 -678 523 -978 349 -631 -722 767 637 -759 537 -240 235 -62 73 920 275 977 -569 190 446 306 427 -767 863 -853 406 -39 439 388 2 972 33 477 -607 476 -855 791 382 498 499 -672 534 445 -543 706 152 -73 78 329 211 -332 424 -439 -530 681 -90 192 193 -897 283 -734 84 501 -456 494 887 837 -474 337 511 -924 723 53 -120 418 636 -161 -284 -193 -761 -132 299 -496 171 -311 -893 -723 -30 -702 442 -689 -193 715 866 669 433 139 574 397 998 687 173 390 -955 -20 983 -974 -322 -324 -710 -104 454 219 463 748 208 -530 -774 893 523 -695 264 657 -168 651 551 724 354 971 489 109 139 -872 -48 -319 533 847 -196 777 722 402 -357 -943 -437 805 -489 463 670 17 -44 -341 -330 868 387 192 520 -479 488 -762 -389 -863 73 843 -225 4 737 55 104 -885 142 412 411 -291 769 533 372 -258 9 -170 -309 611 727 605 825 -764 923 534 17 982 415 264 393 -373 455 -17 201 -116 383 790 -5 639 125 542 -45 199 -338 778 773 562 269 547 261 -536 -928 -532 234 615 -601 -771 508 -328 146 324 -839 911 -538 -271 -626 -623 -586 -101 -650 -532 601 -983 432 -255 -608 735 535 -781 207 356 279 -632 670 658 -933 -965 -300 -448 688 -837 -420 -192 -813 -268 -682 787 212 789 259 947 841 -764 571 167 -460 202 -972 306 938 436 -533 -740 498 -820 57 368 912 511 980 420 941 -445 818 732 253 -853 560 439 -520 494 -232 -136 761 759 257 -910 170 400 973 781 878 -822 186 -995 438 -475 345 -660 549 564 290 695 732 937 78 -654 -14 688 299 410 260 -771 -187 396 979 485 -429 -413 753 593 -771 367 -404 459 179 34 -235 285 175 -456 835 588 -188 -361 675 -480 -550 824 -568 951 -803 572 -226 -499 -187 536 677 367 7 -955 482 -910 143 -817 -875 -180 378 848 -642 91 -34 -988 -378 -127 20 195 -236 -162 437 -721 236 665 -200 -109 898 -478 -681 747 889 -372 293 -736 779 558 248 569 339 -200 -566 -885 -26 347 794 -406 939 878 -818 \n720 190\n-16 747 445 -8 258 -88 600 -710 -51 -335 -500 754 -399 80 -39 806 126 481 -161 17 -818 233 760 421 533 -557 367 -290 -305 63 162 26 135 154 -324 634 456 -391 74 47 695 251 142 -623 -317 -519 -236 -52 506 -935 544 -356 91 11 14 452 -263 -177 120 336 -465 408 108 684 74 -711 -572 319 707 636 268 299 -871 118 -583 654 687 788 -538 60 964 -931 911 834 121 -531 436 -500 -445 -418 490 -440 -214 664 -502 -25 905 530 747 -854 -979 -752 406 -536 747 143 17 735 877 375 497 534 -225 -237 15 -970 298 -610 978 599 -136 -914 324 683 -574 -743 161 -177 84 804 331 415 390 978 169 -752 -572 614 251 371 568 384 887 258 -707 6 -527 -596 -936 447 -209 -932 -846 -913 854 -760 419 707 -747 418 148 -643 651 562 678 -706 547 18 48 971 -941 -985 591 72 798 705 369 541 968 1 -730 394 80 -531 633 277 0 287 -308 702 -542 342 320 -9 420 472 962 712 -918 95 425 -807 -199 81 162 -774 -701 -194 859 -458 472 247 -688 116 159 -45 777 792 -459 192 113 791 -977 996 136 14 -500 -704 -978 621 -809 -821 -639 -25 914 83 -881 -978 220 661 673 829 97 624 274 963 398 272 564 553 -382 91 90 886 -565 740 -53 -848 837 -434 847 208 597 -422 704 -449 -661 -496 429 556 -827 426 -692 -39 -978 963 33 905 -366 -630 508 808 -233 -681 648 52 272 -87 -374 625 526 454 536 865 41 737 -790 751 -864 207 637 229 379 194 947 623 -403 785 124 -222 -13 918 200 190 932 41 810 -200 844 -164 555 304 280 -476 -165 600 52 758 -680 -524 332 -256 -721 -100 -579 -284 -14 965 -509 689 859 -416 -910 -17 80 -945 176 635 216 858 712 483 668 461 -425 757 -238 574 857 326 -543 439 -255 299 -513 425 819 -864 693 137 582 659 -398 537 774 494 44 -707 115 544 891 474 693 -172 633 -361 443 776 340 -25 597 432 -393 552 211 73 230 -540 -572 790 97 524 -760 831 822 -784 174 997 533 724 -983 -999 474 -344 681 -743 523 -43 430 -790 973 -347 -802 -916 -168 303 88 769 166 934 925 -231 -721 893 -331 -189 522 741 527 326 138 858 396 312 220 -613 -958 93 25 771 328 509 259 316 847 2 115 -749 228 -891 76 -478 118 274 445 164 -965 102 -578 -376 704 129 603 359 -120 947 -540 -112 723 -197 -979 -121 235 -727 -934 322 -260 299 170 96 -57 327 253 892 775 623 533 642 648 -553 -150 -506 122 207 -521 -626 237 752 687 985 489 720 538 -286 -629 -387 -348 -607 -649 -262 118 -635 614 350 -915 48 -832 -62 -98 173 -819 -678 783 -330 -115 -975 -98 371 -50 424 71 297 454 -636 -309 -144 73 -281 239 98 775 35 -126 571 859 383 -660 667 682 64 403 -599 -230 693 404 664 -869 233 -696 -762 872 810 715 191 132 -843 444 658 812 818 -494 36 317 -538 442 -962 832 930 170 620 796 -180 -328 535 -554 -735 -325 245 -487 -862 -290 -512 -237 374 259 -499 954 -620 783 169 408 93 -313 579 -731 916 770 478 494 647 -45 395 30 -882 -137 -286 542 19 -707 119 -385 660 -473 252 -995 429 960 133 -201 559 -14 638 340 514 -585 -969 697 392 359 -945 -116 39 731 328 857 955 175 234 866 -449 860 -256 900 813 452 -998 145 -206 456 621 -303 709 -442 642 936 873 45 -365 -208 38 -375 803 890 529 -62 -908 132 869 473 685 46 -242 714 -471 983 585 354 847 -71 -785 541 -644 310 660 -522 -444 676 883 -45 -7 639 614 141 106 393 -621 253 774 327 946 \n911 18\n-546 -338 449 407 144 -563 791 532 828 881 -167 758 531 682 -505 911 -950 618 -481 -148 -950 -976 -78 342 346 -463 -469 338 882 -774 535 529 64 105 167 -769 626 838 -53 138 -98 -249 30 -355 390 153 129 890 -784 800 659 647 782 486 -373 -194 -59 567 505 -400 588 793 -368 402 -396 -55 886 662 -417 305 540 284 829 329 630 -106 942 -327 -179 -977 886 110 -856 430 692 -868 -836 690 777 -334 149 -841 -379 -739 -962 495 166 -324 119 302 -998 -106 -389 -426 894 -272 191 477 452 -364 -501 339 -842 -410 -773 -904 119 762 565 12 -100 -877 355 86 176 -660 -589 -398 -684 969 761 58 767 -235 -350 402 12 310 89 -12 263 737 -329 296 155 182 -267 -861 887 582 -503 890 -940 851 154 -102 817 -756 -906 -625 112 -660 92 145 278 907 329 -670 -591 364 316 -173 871 69 278 249 -642 290 43 477 205 -202 443 -740 130 -600 730 545 -920 843 -719 767 225 -687 9 163 626 346 -309 69 119 432 249 -274 -389 -368 813 517 -269 212 -420 -777 663 573 864 -592 349 -84 -883 152 -324 586 -687 337 -415 721 790 96 596 233 426 519 236 -668 879 242 543 258 549 268 158 -814 639 168 935 31 326 328 -661 880 566 -577 -950 -800 615 -925 -227 -51 -333 776 586 -327 -969 164 431 304 814 926 -447 980 -181 -822 508 807 18 -442 -149 65 541 -211 515 411 -578 790 -564 -686 -392 277 -819 347 -917 420 614 308 537 157 575 258 815 -484 -828 157 864 579 -672 56 31 -239 975 9 -301 657 -205 789 335 215 624 290 59 -520 737 -435 439 -163 -80 -704 418 873 -925 -532 -489 998 567 797 523 860 616 807 997 888 239 817 -319 -931 181 438 -405 818 -665 -46 807 631 -605 -683 410 -685 462 -892 980 0 351 -277 828 -163 -391 756 544 600 -694 158 156 -28 916 -824 -922 680 506 935 973 257 607 -769 908 736 -501 681 -262 123 698 -167 976 -610 -879 -725 -440 59 412 275 158 815 -105 588 -829 451 830 287 -286 -168 -629 7 838 267 755 123 555 581 -283 567 739 692 34 441 -541 696 -612 -29 -853 -847 -358 513 445 -978 970 193 -719 -797 422 5 -508 43 613 -694 -184 736 -28 -461 -251 -757 30 396 505 -224 -105 474 963 -561 -574 723 908 -374 341 -174 405 -103 -255 -222 682 627 51 -698 530 -570 369 724 -579 -936 -730 445 420 9 -366 840 841 703 692 179 842 -429 102 425 596 336 -858 419 119 -896 778 538 -422 -348 389 238 -146 -163 500 906 672 220 -781 -125 -870 463 836 -955 642 -730 429 83 -467 -373 987 135 62 -509 -252 718 -586 141 42 853 28 984 28 809 -604 88 915 -199 798 859 -718 -701 490 865 366 878 420 519 331 98 437 -615 -333 -771 528 -894 -787 -465 886 772 -632 31 -203 711 -176 516 926 225 448 179 373 -973 228 219 854 806 198 -432 -839 440 566 752 -40 229 164 -335 604 -266 -40 131 -19 -343 -514 553 803 322 658 -78 594 604 778 -38 -965 -835 -615 881 -853 798 28 521 412 709 614 -190 644 670 -817 -210 -817 321 273 109 834 789 42 49 -532 -456 449 -599 399 643 969 353 -759 563 -31 -502 292 -434 862 202 802 156 876 -939 538 779 82 396 -7 907 -832 -637 562 894 -183 466 479 905 838 264 -53 -69 701 851 786 663 -549 978 -60 225 -630 377 289 -535 -135 911 -553 10 66 -814 -167 185 212 109 283 827 -754 -665 346 845 567 -175 653 -66 807 572 998 -23 320 -662 -734 -531 -339 872 2 -677 791 634 745 -205 22 -462 439 233 526 -228 -998 -674 -25 -895 223 69 -694 -54 605 131 -734 476 195 -377 648 217 -969 96 917 822 -987 566 324 -21 -482 52 591 -726 49 750 733 923 553 837 814 21 582 448 -426 237 239 -679 10 908 -562 383 221 459 37 -513 -140 284 -374 35 903 -830 517 157 262 606 373 45 -481 896 182 636 320 754 509 310 355 210 -267 -206 -84 291 -898 -776 576 -588 -363 525 -169 929 -443 66 -543 -207 753 978 -906 20 -401 815 730 -541 -732 237 432 959 -710 296 -922 543 -15 896 554 969 -387 444 631 885 754 28 547 -812 -856 261 -876 216 174 586 -780 202 743 141 360 -98 436 -194 348 346 272 -196 -949 -955 -661 478 -566 -902 597 891 692 548 -98 230 898 72 127 -604 918 999 -684 437 -522 71 158 950 100 -189 -372 674 422 317 -668 188 182 782 -532 -366 719 131 -945 6 447 627 -203 260 -535 530 -919 925 -70 -318 36 -139 622 859 254 -555 293 824 310 \n997 431\n536 683 150 -746 525 507 552 -382 -393 487 220 851 378 779 65 751 978 -805 268 458 383 655 -691 968 -394 513 -611 -369 -136 100 91 716 548 -672 -758 847 -515 -350 285 -225 -943 -775 -283 481 693 -932 903 444 310 -923 69 43 -617 64 -126 58 632 537 795 826 -655 -682 -862 968 80 607 178 427 906 -141 70 -930 501 633 845 764 79 -166 -857 -111 -122 644 427 946 276 331 573 26 -270 -604 -424 289 702 -73 -142 722 381 897 994 262 -841 -565 -923 322 643 101 125 806 -242 267 -807 904 -783 102 885 -367 -927 873 8 817 773 410 -370 54 405 19 -3 322 241 -868 942 -742 -80 231 12 72 794 -531 184 558 -805 -474 -481 -127 348 -747 -372 891 291 489 23 -366 524 -569 423 337 -812 416 363 -496 910 -930 911 877 -999 132 890 772 993 500 -7 661 241 -572 296 397 -721 -482 431 717 -166 827 -595 385 -755 -243 -225 -130 -356 6 296 589 -483 643 635 -290 -127 107 -187 326 968 -359 659 -834 -405 263 -979 -785 654 -292 757 429 506 687 315 -739 82 -815 -31 -650 84 -455 257 -792 -137 -949 700 -526 -839 -149 -457 559 992 916 -355 948 537 869 410 -675 820 543 129 460 646 -717 -927 210 -274 213 249 -656 892 970 550 -986 502 -642 -610 439 -895 328 868 -910 255 59 -160 726 -725 93 853 836 -737 -453 -240 -160 538 486 -256 -664 945 -286 -136 596 -828 983 864 361 -756 129 483 343 440 -638 666 -203 335 61 -288 37 209 256 189 -954 311 -926 636 -963 -983 873 276 581 329 728 -98 767 325 471 37 -31 530 507 -57 -325 232 686 -557 110 -120 -809 341 603 846 -292 -913 31 -62 176 476 220 -468 446 349 -359 810 157 -393 -312 -662 329 223 -187 1 182 -683 697 649 -929 556 688 720 575 998 526 -875 523 905 754 892 341 -72 364 25 86 682 480 -386 -269 -428 63 271 301 262 709 264 -948 -97 316 -218 741 64 144 793 783 92 -65 616 -652 -661 124 91 404 352 210 374 -359 868 575 -907 -374 460 164 664 -515 -840 790 798 748 -188 725 -316 -580 863 766 -146 938 605 -553 846 232 830 291 794 965 -861 -494 -84 915 650 660 -372 474 896 680 -42 -19 -263 773 934 -142 -923 -780 -933 -53 891 994 203 -927 -835 -248 884 734 139 -329 289 776 -526 32 105 554 851 -832 934 880 992 521 684 406 754 386 -149 539 654 25 751 152 163 421 -540 790 765 -253 970 941 236 853 481 974 -659 24 7 -690 218 337 -287 -288 -156 985 -486 -187 -849 -205 -5 266 -653 85 -994 -950 79 -949 350 415 228 288 960 328 -617 168 -889 774 652 287 -742 589 340 345 353 83 644 752 -32 258 237 726 -749 -499 505 735 -804 438 -192 -405 -904 -843 -902 225 326 212 -163 425 417 312 354 788 644 -434 427 -799 -595 -423 97 348 451 364 988 -526 -941 -262 944 -599 711 -456 901 -226 -162 -193 389 785 693 -531 137 -391 585 -804 -388 -343 899 257 838 -868 629 -926 -306 -223 326 400 -560 332 -61 36 860 -221 322 -996 758 470 933 273 904 -839 532 604 883 221 -65 -155 -602 921 74 242 781 31 -224 288 143 136 -785 878 -257 -721 206 -75 -221 -458 -933 -667 -395 575 -639 435 -511 -875 699 367 -201 216 610 580 388 336 -889 -886 -616 152 995 -355 633 -303 644 -158 765 -419 319 -325 -377 852 152 -156 -365 -600 90 256 427 229 667 908 -436 -530 -123 679 -59 790 -145 140 320 247 -942 57 -414 485 800 753 926 -772 264 114 -602 29 508 -607 -66 982 478 87 715 158 291 -932 83 -930 660 -741 542 634 561 268 484 -948 913 777 512 -128 68 -557 -891 -507 985 -848 479 997 -376 -476 53 546 609 736 359 765 -811 222 -558 -568 -590 -596 381 533 -705 455 -84 -736 677 443 -335 994 112 84 -732 200 -811 321 -512 914 516 -604 955 733 909 323 423 770 -315 482 357 -748 -200 998 -505 838 761 731 945 -242 -81 -904 137 299 -212 926 674 -580 -989 -244 54 -790 72 750 93 -62 185 889 -124 813 -43 800 825 -87 -162 315 224 748 66 746 809 -482 -893 -854 560 -569 801 897 251 -222 -847 641 608 248 805 -218 -100 278 -629 321 -525 -847 620 113 993 656 460 297 932 850 570 300 38 553 -729 -911 -627 -718 389 823 921 -622 -97 -457 758 833 858 -536 527 -899 -281 -659 -610 743 981 508 -741 607 534 778 -476 573 844 -575 71 -702 822 -3 746 41 947 -751 -756 356 -68 -251 776 167 223 9 -7 135 -102 23 675 -989 -518 385 565 940 -905 -277 -481 503 837 69 -269 -329 555 208 405 -218 -216 809 906 152 -239 -431 247 260 -45 395 -858 -273 -131 -454 705 921 -704 600 -346 344 -708 162 -793 607 118 -733 375 -682 928 528 -13 -546 -398 742 981 355 938 -325 673 -271 82 769 482 290 560 607 531 564 393 90 -579 818 232 -417 806 701 -640 -831 -445 625 557 -274 -593 -703 -771 677 668 156 -645 110 408 -440 480 \n888 362\n148 65 -467 225 673 -190 -584 -504 467 -883 996 857 -450 -471 381 155 -877 372 647 -794 -521 0 -433 -904 561 901 -845 726 -944 -994 531 719 -472 -824 231 734 -359 -925 575 699 964 876 62 226 551 -548 51 92 46 -509 -235 196 -617 686 -211 -235 623 -745 -686 852 222 -245 -85 -41 -447 -747 -258 180 768 858 892 399 288 139 951 341 -647 -662 361 574 -27 -947 -325 695 948 -249 -60 927 681 -83 599 -739 -248 70 262 83 338 284 508 -596 636 292 505 28 -720 832 335 -944 -186 365 -989 969 739 791 -303 283 210 650 372 61 134 -266 -911 860 893 444 398 943 792 730 -790 700 620 379 -693 -626 618 729 502 469 -536 -58 -929 30 -559 295 937 568 483 -768 620 -404 -70 726 -870 533 485 191 446 -565 841 -70 63 990 455 -192 -656 -618 -192 224 -893 659 914 220 -628 660 -174 333 377 310 928 563 195 -36 889 583 -572 -232 432 752 277 507 365 830 671 953 29 650 211 -506 -337 -628 -27 947 -919 -787 -79 843 -423 161 -625 886 391 684 -337 189 912 -574 266 44 991 485 -843 483 629 692 270 622 -615 289 -789 252 30 -333 -344 -76 -767 -239 960 251 765 -417 -64 -751 802 -321 -670 712 306 -746 -278 673 105 -832 480 -52 47 256 741 -179 563 797 -438 128 629 116 133 478 -827 -977 33 101 -269 591 462 817 473 124 -435 836 -623 371 -859 -208 -798 -849 -908 -158 885 -432 -739 426 -147 711 590 -20 -880 903 296 665 314 784 977 64 161 -554 204 541 -866 821 255 409 -32 265 638 888 478 278 -232 897 791 -54 608 -546 -486 950 829 274 -910 704 659 765 828 292 784 124 -512 -794 -824 -66 295 754 138 431 -852 397 560 -265 170 177 -635 446 27 801 308 -340 85 586 588 9 696 -447 -357 -595 585 -517 135 417 546 488 172 384 -687 189 -940 983 -19 -118 490 -811 817 -521 989 -132 243 969 -648 758 -599 3 146 801 364 -906 -215 -514 -185 92 789 -232 -335 -587 552 -103 -123 701 438 296 549 164 -675 615 443 -598 -247 899 -470 542 587 -834 -764 -42 -472 539 892 475 368 -570 613 800 426 400 -336 731 578 216 529 786 487 218 146 -351 -212 -148 -688 -153 -511 -308 -588 281 701 -519 -700 854 844 -30 -639 -465 407 -659 700 -41 806 -745 388 944 252 -97 -755 324 -559 -982 363 416 -579 730 881 9 735 -838 630 169 -182 614 679 -743 -232 930 350 268 703 -294 -199 295 842 99 947 -331 493 740 -960 44 815 202 -367 -710 -642 601 -893 606 22 281 -475 734 607 533 590 629 -683 -279 -151 -661 77 906 940 499 293 -983 -853 379 -301 521 992 57 493 -112 710 201 880 314 -284 768 -325 -349 -923 -192 935 846 -400 817 861 -502 788 -570 203 -239 -141 132 -839 299 -563 496 61 -430 12 323 219 23 329 473 -389 -107 694 471 979 -602 854 840 -510 736 533 457 351 869 84 -5 -368 190 401 362 -240 34 -148 -938 -771 -77 -867 491 -464 472 774 -495 418 -302 -684 540 -240 985 533 -893 -988 4 725 391 584 -574 320 894 476 805 -472 438 -177 857 64 -41 353 -453 485 -519 621 -1 215 618 830 -139 -661 182 908 593 -606 879 -482 -600 97 3 608 889 854 11 351 982 419 -526 -641 -985 -920 830 807 -934 -946 -289 696 -380 -204 578 -569 168 -649 454 703 -602 -340 -15 -415 790 920 595 623 -236 664 -518 130 -1 992 108 -312 323 170 944 -747 -281 -411 529 -547 456 -675 191 35 863 -824 -330 498 341 916 -595 131 293 314 857 445 889 -877 -190 636 -988 -25 119 950 622 120 -104 -479 332 495 581 -181 694 -414 962 941 79 211 636 476 -752 -63 -69 822 -910 552 92 -971 39 470 -419 773 225 502 40 468 787 993 716 -850 849 -358 -711 455 709 124 -938 382 521 -985 -579 741 397 -198 500 833 287 985 453 552 726 -801 286 598 -375 -253 269 -161 -800 -398 -270 -164 440 312 -262 -375 -964 357 391 -374 -507 170 -751 14 -756 -584 337 -587 530 652 242 -620 -839 -384 645 13 -950 32 -592 405 567 253 -637 270 -863 822 -730 335 78 514 137 -477 279 175 -825 861 -619 -870 107 428 286 908 -149 456 953 578 578 -76 614 -902 640 496 839 168 -73 -702 960 -198 459 -38 -280 -913 -145 -475 156 790 391 -540 700 86 794 548 124 -22 709 259 -188 359 -941 690 880 -615 -662 347 -753 -831 -219 846 258 -139 -946 -645 652 \n724 354\n-482 271 -227 999 -268 895 -589 -403 -268 923 -521 -975 393 -525 -205 64 587 -188 877 696 585 -274 -546 -569 132 911 -109 605 538 -580 808 745 485 -969 -533 -382 609 608 933 583 201 519 -914 -485 -138 -818 14 478 918 478 250 409 482 360 -151 876 -673 468 409 551 -176 406 22 590 -543 293 -916 -994 -30 938 -968 905 -966 -654 128 -458 -619 921 -402 666 537 -860 251 537 292 88 753 149 -942 -844 512 654 -349 347 -17 -81 755 -803 110 -765 524 -495 -400 577 -219 983 -994 -844 -229 539 99 -931 -500 619 343 127 -198 -490 943 485 -92 886 444 292 571 530 944 -410 -62 444 470 -935 234 39 476 656 304 -546 -728 -517 903 223 984 428 176 589 305 916 -536 750 -697 898 -585 58 845 296 505 699 -411 689 -562 6 -497 894 -920 -640 133 581 878 463 -626 -196 33 -677 -322 690 -620 -521 294 951 -722 365 375 22 -807 441 737 810 -200 -518 -107 647 733 900 -544 420 726 -524 -385 -640 -748 -775 673 754 92 989 991 103 968 783 -392 -431 629 -286 -186 337 757 729 530 899 -318 731 -567 858 -906 219 116 -904 -645 298 402 -41 -106 -137 700 677 -935 328 -489 -970 508 127 526 711 -672 -545 489 473 -51 -772 711 241 -677 467 -15 284 -22 604 796 587 -820 -187 -735 609 529 -53 155 -303 -34 -781 695 -675 376 -154 -704 988 -187 791 492 -680 690 34 456 598 -172 237 987 37 715 384 856 -395 779 -797 248 -247 671 179 -870 -887 477 516 -874 522 629 615 158 80 358 822 556 589 289 -593 -253 186 84 169 939 -75 928 -734 -881 570 131 -354 30 547 342 788 294 -534 -40 -389 136 896 634 110 129 -186 521 -56 -887 448 -80 -915 -279 -763 -611 776 -944 744 -989 215 -374 503 -170 -465 -944 -181 734 535 794 962 -276 337 747 100 679 -160 848 890 -397 -525 847 -889 215 79 21 -11 -267 -953 -689 -3 610 233 -687 970 506 587 310 974 -653 924 -282 -45 -960 911 -818 -518 -669 363 91 -392 17 643 643 625 -159 549 655 -993 -483 676 478 964 656 -350 -324 -596 898 -326 -760 828 -293 379 358 270 180 815 382 686 123 -705 18 -277 -102 444 -636 -823 63 -174 438 -621 307 841 768 588 70 277 870 924 -259 676 -847 -106 693 -637 -239 -742 409 -370 -549 525 -713 -321 -942 744 218 343 -801 963 -391 -880 241 -424 404 -961 630 -450 -716 270 595 -810 812 -708 737 709 813 889 -988 947 -501 278 817 -802 959 428 -558 -377 -87 140 729 678 -295 285 856 849 -53 -162 -984 46 770 274 853 30 236 182 681 462 925 639 -821 223 -930 -93 -65 -669 997 929 -642 609 740 -251 -631 447 -240 85 691 424 686 958 -134 952 865 -616 612 977 -758 171 380 38 990 7 570 -593 88 -518 326 -431 116 271 -122 -790 665 -941 864 -670 608 126 466 597 351 477 -72 897 -176 -704 758 426 -287 666 83 -28 -47 570 452 626 -909 -874 -942 702 -219 361 543 -354 663 393 406 -827 402 106 -126 -128 -945 461 -567 223 -567 98 29 769 817 275 727 -337 288 -678 761 -576 -787 863 179 556 827 180 600 -885 453 -639 848 318 3 -872 -926 -466 515 -576 -74 -124 750 975 8 246 491 454 95 -555 -290 -142 -252 -549 425 -39 916 376 842 562 -837 349 835 96 398 624 876 120 -738 -138 493 565 665 480 54 893 -967 -250 837 812 820 -588 939 -79 218 32 679 -105 650 699 -786 -794 415 796 -529 -795 184 608 -406 -931 -355 -824 159 -788 29 249 -190 -30 -259 323 463 340 452 -27 349 763 644 -130 558 382 27 -907 330 -476 644 961 \n836 357\n257 70 416 719 985 -913 918 -553 849 930 -871 -864 629 589 945 763 132 642 -951 276 308 -920 806 597 996 -63 -913 142 304 349 854 928 -16 546 191 -357 -89 627 586 -550 -555 -195 793 -324 -745 309 -971 -111 852 -340 -633 -42 505 220 314 -677 126 -254 855 281 937 639 -351 -288 -665 89 700 299 -578 81 276 -129 390 -439 834 543 871 -474 442 786 22 -129 744 679 878 635 -386 412 338 -152 -466 -988 -923 221 157 287 803 460 46 159 981 737 -483 -916 -970 63 -343 385 709 -257 567 -357 200 889 349 531 78 285 640 618 902 -117 290 854 -694 -694 672 -685 718 962 21 707 137 -909 -320 -382 759 -153 290 99 118 -148 169 -543 868 -189 -895 254 438 210 915 -960 244 -125 -255 -15 763 506 144 627 778 -819 -730 -94 -806 -292 -514 688 -374 879 25 780 31 858 -688 448 585 -372 446 -729 144 763 -131 789 172 -73 369 528 793 794 742 -640 736 -103 -428 320 364 199 945 -72 -278 -793 -751 676 537 411 484 -257 527 238 -451 -379 -226 -447 -825 1 340 -168 -793 -63 296 -4 713 404 -495 271 -987 -770 267 324 573 624 87 61 -817 -115 877 447 229 840 -790 -667 204 -12 -871 -150 916 413 22 538 -302 -910 169 -507 -457 447 807 162 -663 -978 -428 981 510 -888 -265 237 -193 -345 370 -527 284 919 551 460 387 -125 -412 377 708 224 409 -695 -592 740 458 516 -991 378 -808 0 329 -562 70 633 -253 950 429 488 997 231 -489 -290 88 -62 905 727 -599 756 -499 -14 -121 482 541 -464 904 -842 293 632 713 -27 483 90 240 290 801 824 -681 -588 810 902 432 -484 -552 -296 465 -987 28 -502 753 867 699 567 -460 -387 307 -355 397 655 953 72 873 773 502 654 36 -544 -150 -19 986 888 488 880 79 737 -33 953 -624 -568 249 201 912 -33 -196 -156 -412 -988 -282 -499 383 467 -103 -435 -870 -909 620 534 437 -862 188 761 817 -397 464 972 676 700 -19 286 -156 -220 -279 550 -524 447 -790 51 745 715 354 101 254 182 -486 -473 721 813 202 417 -83 91 443 746 132 432 584 884 573 239 -982 702 501 815 910 503 421 451 -666 606 -147 -386 331 59 786 88 534 -483 -824 779 1 -912 999 -535 -523 822 -581 -771 -314 -632 -973 833 243 761 251 -74 -622 -19 -747 -239 391 -92 923 -433 102 579 -908 -394 991 984 -197 721 690 705 520 -811 -188 150 355 -37 -37 150 993 -346 -273 103 847 -331 -207 -50 103 386 381 397 224 670 -241 560 627 -851 -289 576 239 399 484 -638 439 -453 511 -809 335 -238 450 -760 -835 491 392 -289 -111 -540 378 325 -400 -853 436 25 122 531 406 207 -103 667 941 -939 431 491 56 934 -90 311 787 -727 248 462 -167 861 849 -899 840 958 -789 -572 462 -27 -238 -678 -509 -97 537 63 869 -417 881 362 842 209 707 991 -388 666 267 -921 -857 752 974 -486 422 -541 5 -50 706 134 169 -612 403 884 529 359 -399 -116 6 -466 -52 167 120 609 -504 -371 317 -346 618 521 -305 433 479 813 241 165 62 200 887 272 925 -761 225 -763 994 80 338 703 -522 970 215 -557 -765 -816 596 695 -359 -488 892 549 265 106 -996 -81 263 220 161 -507 320 391 997 -582 -353 864 15 745 481 880 112 903 446 164 703 767 -663 109 469 -60 -920 -544 -217 -510 -466 -880 -445 -784 -432 672 -695 136 42 -817 153 75 694 618 -282 894 890 394 -915 533 -356 -584 155 376 -18 -404 -283 225 314 908 922 527 971 680 139 542 898 246 -490 -293 -462 -494 322 -231 -37 279 314 162 -701 193 -428 -555 -51 -736 -340 352 -23 447 663 628 -589 -27 793 -975 -150 -196 486 972 -886 871 -506 -369 428 127 625 146 84 -23 -856 190 472 -386 481 544 715 -971 715 -512 -949 -365 688 559 -642 37 -694 151 58 267 974 -376 2 860 624 836 -402 499 -260 -68 -461 875 195 -393 -149 -774 -988 693 -916 330 815 750 220 135 -214 -689 751 -618 175 965 528 -117 476 372 -240 -676 -570 318 -538 -314 581 -94 -336 -778 -75 -875 291 470 780 344 -303 932 561 420 108 -115 322 307 -814 -907 -334 947 -846 50 -478 -960 \n844 20\n204 -758 -571 -386 461 -665 790 473 983 199 -130 -778 182 -281 767 721 690 -803 -119 822 -704 -129 -545 844 -105 983 208 -602 529 -535 266 -997 -145 791 -858 853 454 -632 22 -763 -952 -561 569 -202 588 -74 -266 19 994 -689 363 46 296 -48 899 720 -693 -509 -492 408 606 992 70 153 453 377 -618 -267 -69 768 32 -34 -287 -546 362 -653 320 907 -318 137 457 719 -480 747 -174 95 -454 857 -719 914 -42 202 -258 346 132 -537 270 -795 -213 550 -266 -551 -533 405 -996 532 -965 917 -435 588 198 523 414 133 256 -804 -258 -639 -580 262 919 304 -275 496 195 363 916 -557 -431 -477 -922 6 621 79 -779 -845 -240 46 -987 930 604 -310 791 9 -121 787 162 -482 -84 502 260 632 -342 -95 757 -347 -51 -125 502 -238 845 703 105 857 -631 -294 252 -472 26 -697 -651 -706 419 880 -371 -44 682 -385 -519 891 37 -55 -630 -509 955 853 370 -265 842 167 123 987 -41 906 43 409 -102 63 208 24 -746 12 -797 415 784 722 592 -226 818 320 -261 -65 420 -815 -674 -591 574 68 -682 -76 430 337 -90 -291 -468 -365 -863 -349 301 327 125 620 640 135 417 -72 524 -413 497 6 168 295 710 -347 -617 223 529 -885 168 -539 -571 -523 -65 -868 867 793 653 512 -309 981 -33 184 -261 996 637 58 352 614 846 -607 -435 -445 916 166 801 2 700 -32 -642 856 551 450 607 -663 378 -679 -303 -50 508 627 -277 -762 27 345 -327 505 -976 925 592 55 -38 -882 -984 529 470 174 391 676 518 145 -917 279 -693 906 437 -7 617 466 -861 168 866 375 511 994 396 906 115 649 49 -265 980 565 540 -662 494 -88 783 174 -878 99 -142 82 570 849 642 90 861 146 415 381 853 706 -870 -802 140 903 563 579 -802 -15 864 685 -969 927 -409 753 -775 -804 726 -405 352 918 724 748 -738 345 -132 570 295 523 482 889 511 -768 816 575 211 -257 176 693 -947 872 350 713 -705 309 852 -349 947 277 -787 -190 517 862 -264 198 404 -460 213 66 4 -263 -988 141 147 379 384 -507 316 278 -660 495 726 -573 977 -493 -642 728 925 257 48 953 -70 534 -691 345 -219 -32 -936 -740 620 -379 -171 344 -413 137 -994 713 -870 728 968 272 126 777 699 -855 907 -18 854 351 300 -901 -736 434 64 -527 -812 329 -820 74 -319 -112 -401 459 828 589 -387 957 131 260 187 -52 62 926 534 787 -275 69 -148 -431 -869 962 802 857 -514 -399 -104 -176 -430 229 755 -460 687 120 -524 644 -392 -742 160 138 -22 659 398 914 -342 312 -996 -854 -549 719 858 492 -757 -729 869 782 271 -449 214 -801 -788 -774 -793 711 258 692 -806 118 -662 627 -595 526 -748 703 415 823 -704 119 705 689 -161 158 -279 -346 744 -437 -560 251 813 30 962 -411 667 610 84 -730 935 373 -446 -215 -285 989 708 -124 -772 31 535 213 -893 417 -772 156 -671 889 -802 983 -437 484 544 456 30 976 605 92 5 235 166 -38 167 90 796 889 296 -419 -363 -545 174 667 -669 -362 -35 128 -925 431 -791 -496 -204 -317 -61 -657 -415 670 -425 502 -14 318 -657 -760 -190 305 -89 155 57 -939 -876 125 -809 -558 650 -483 881 -704 180 -860 -972 379 -778 483 -875 339 -222 -353 -843 619 -655 673 141 481 -791 218 461 285 -453 728 275 85 291 468 909 12 816 -503 -83 -287 152 -763 -409 943 343 971 -825 962 146 -893 654 577 990 471 -858 -515 495 719 -594 417 -859 -122 420 664 -724 -422 447 -906 137 136 571 5 -997 -911 581 987 -279 694 445 -408 -672 910 752 504 88 194 -654 -814 -706 -761 660 685 59 264 -75 -91 -207 -813 -520 857 -156 405 -26 676 -845 759 -679 455 528 -6 -511 823 25 187 727 438 220 825 -400 81 743 992 -278 762 -422 -930 -441 -702 -157 152 -143 -631 873 182 975 -195 -671 379 -584 -212 116 643 880 -503 579 893 -21 573 43 196 -48 -940 -542 906 -749 166 931 -584 -101 -217 372 496 -412 78 -601 492 -867 -379 -907 924 486 201 -754 491 -863 -286 792 -810 921 948 -291 988 239 -96 191 617 -227 803 954 235 487 -669 734 -588 111 -197 803 -741 -228 -122 762 0 731 750 234 752 316 -470 271 108 \n836 179\n-991 -182 -390 -493 932 596 852 793 998 -474 925 866 653 993 -601 -755 300 980 790 -850 -697 -52 277 345 -321 836 482 783 969 230 848 541 85 652 163 34 789 192 -996 855 619 748 57 171 -758 -443 282 360 -738 646 548 -757 550 120 402 -554 381 -699 -743 207 309 -392 358 -989 3 -955 331 123 677 484 319 299 142 952 -375 -690 726 381 -109 -900 280 114 790 701 986 781 -378 177 864 -83 288 -421 537 795 463 491 552 -507 782 -450 -413 514 181 668 857 -980 249 54 -854 -562 -156 860 -692 527 827 26 -245 499 -294 180 787 76 -604 -247 140 -152 660 262 -925 644 -252 -782 659 169 558 354 204 346 127 280 -516 119 -414 649 -128 877 355 -229 183 -659 781 685 244 614 634 -127 -454 790 -364 366 232 783 398 -807 1 -257 811 -902 -701 481 -375 230 778 574 188 988 -588 4 -918 -421 -577 -724 695 123 949 -322 -405 -421 432 -653 -71 -252 131 491 -955 830 103 435 -219 702 -22 -361 211 226 247 61 700 284 -454 436 -749 562 -282 542 -669 615 534 134 322 335 -176 70 -197 446 733 -416 811 538 779 510 -606 300 222 -186 466 -363 -755 566 -256 26 -264 -14 -391 301 306 345 22 -127 709 141 179 -159 408 215 775 -934 463 894 239 -931 -231 -138 716 855 -973 701 -660 -194 -911 -993 616 316 633 265 -308 -364 274 982 -690 -245 108 812 -382 636 696 -418 915 243 663 -110 821 -233 506 591 446 -912 -563 -801 90 -581 778 92 314 180 97 -29 -276 -97 656 452 225 -936 442 236 -726 -822 526 391 419 822 527 -863 367 213 36 829 -3 862 -665 534 506 310 -732 769 -576 -257 -505 -299 528 -764 -846 -67 27 321 -807 -886 384 -694 236 460 399 501 398 569 229 558 -406 589 515 481 566 29 278 -13 69 -7 241 -267 -159 450 374 939 851 596 417 -598 220 313 614 307 545 35 -421 194 701 797 -909 -572 511 830 -726 -929 -938 -332 -86 472 934 -943 765 619 445 -242 745 120 -528 117 330 121 8 758 -591 869 -557 211 599 -501 10 -729 297 407 -935 825 229 -750 -69 573 -296 553 854 863 -988 32 595 515 718 186 115 -632 -318 857 419 307 107 -740 -456 700 -964 564 55 167 896 368 110 -996 535 -105 -400 799 -894 -806 -509 369 599 -146 527 797 -222 -97 -774 -452 550 -391 549 434 -570 824 -347 -295 164 985 875 294 -594 -142 852 617 4 769 -450 139 479 -330 891 980 437 217 243 161 -338 -733 208 -346 -809 457 879 690 5 250 -949 706 464 675 -199 -679 127 -265 -826 111 380 -902 659 872 -267 442 -681 -833 726 118 894 -902 529 -823 -810 160 567 409 272 -315 355 -457 598 263 -511 466 601 -968 -384 -425 615 -286 -256 281 316 662 91 8 638 446 306 -103 712 -92 572 -478 819 360 840 446 976 630 108 501 783 -142 -337 -806 -507 267 -636 -391 884 31 -143 -65 -323 253 470 275 674 189 98 46 -618 260 929 -194 626 793 -564 -921 -319 -874 -976 359 71 437 822 992 28 455 -3 617 -215 153 -169 -30 506 -77 700 -179 317 581 -709 203 610 13 914 -316 -474 -460 -292 568 550 599 216 -854 -181 -326 -999 703 -589 -637 -222 874 -274 76 -774 104 769 -647 533 200 -480 991 363 -444 74 -343 222 571 -216 440 959 205 531 45 235 194 452 904 746 -771 -764 691 -947 615 -644 -72 623 63 -630 -626 -569 507 -690 705 597 259 778 858 933 606 862 -732 349 -567 976 -533 593 971 -369 347 98 -644 -283 723 684 -609 989 797 691 300 299 758 -793 -347 323 325 169 55 104 319 -976 -384 35 -187 167 -6 749 -534 930 858 502 983 468 851 185 148 553 -313 -358 828 -338 358 63 707 268 888 443 138 -385 320 822 332 662 246 -975 266 195 -723 96 136 -807 -213 -338 -757 -353 375 -199 999 56 494 717 52 -540 -397 -826 -522 -746 -610 195 280 468 159 -83 891 455 226 -74 819 -371 837 347 -811 -863 478 445 -228 402 -744 131 994 -83 841 117 510 194 194 -876 562 828 -682 -105 -968 -491 -363 -119 372 667 -899 805 613 -479 -548 749 880 -890 477 312 876 878 407 943 -167 -137 888 \n819 171\n98 350 -1 990 -665 462 323 230 -254 -433 -307 -36 915 319 -311 21 23 911 431 21 520 -319 483 817 388 -206 68 862 14 11 207 -800 632 -227 141 853 -707 823 86 -687 -896 -315 -289 -837 467 8 213 298 -515 563 412 -533 204 123 -578 719 -404 -919 10 96 969 742 850 563 330 -742 274 981 -353 166 89 666 -599 -739 719 112 512 -903 156 -818 331 -381 440 -62 -332 614 -497 687 537 983 585 68 688 664 85 -392 -72 583 70 -512 -379 -459 132 583 -339 418 -294 789 -689 -764 571 324 239 477 845 938 640 414 -768 -330 -955 837 -215 -971 -4 -729 768 223 354 -982 819 661 250 -519 -167 7 706 519 165 485 255 -807 506 -176 232 -811 -338 -104 248 533 -536 -871 208 537 -710 307 -363 807 603 -376 289 396 656 564 740 545 -530 -817 678 -754 -332 127 617 792 -858 423 77 728 -783 -816 -661 -130 791 150 930 -291 494 734 -599 620 983 556 908 824 869 973 -547 -121 -406 813 614 -524 643 331 31 168 -674 423 998 -955 -356 555 230 -446 -679 -159 -672 388 -141 523 927 -806 611 -314 91 418 363 489 -446 216 130 -180 954 75 99 -793 -905 462 386 691 -299 -69 -690 344 -692 -639 727 507 835 -35 -77 -795 -412 -320 111 122 566 483 -889 95 366 -644 887 181 826 505 -83 593 495 354 42 -352 668 -796 728 -359 397 -951 544 -881 -969 520 -109 356 -268 799 -188 532 -214 -401 887 927 617 -839 -11 231 -439 598 595 196 210 -141 -771 919 -178 482 798 -928 619 309 888 -425 708 51 -429 96 -97 -197 -464 -481 -66 710 341 202 -361 -152 456 133 384 -216 483 449 305 -502 156 -521 -516 86 380 -460 173 953 -441 -595 -371 -685 -77 286 -810 384 181 -56 466 -329 691 822 678 -784 21 532 405 -841 -516 -48 188 -965 -93 -669 -986 720 803 281 -331 276 -659 0 -822 -93 14 815 543 -851 659 425 446 27 690 5 -958 550 194 230 -327 -872 540 -842 116 442 630 491 -813 -577 546 -33 -446 285 452 -863 150 867 511 721 -209 -699 672 -444 119 -954 9 118 515 418 8 642 124 -557 558 -525 727 -766 -432 500 532 768 -937 812 485 140 -350 24 -218 911 528 894 -407 -418 542 -50 748 -648 401 -146 276 -204 182 -800 158 993 951 -179 815 847 546 -591 599 -21 -688 24 104 849 960 -707 578 818 106 605 -353 -111 508 -794 -213 29 -536 991 553 108 284 121 636 962 720 36 252 -215 -636 -740 -318 144 -896 -231 -503 805 42 289 398 -259 203 511 -111 -498 -426 380 242 -95 936 -103 738 483 34 635 919 330 -714 -174 -60 550 750 -843 -377 -633 -272 -840 570 247 508 -992 695 -290 -861 -114 130 219 769 129 -484 536 504 -618 -680 -992 465 -528 982 -577 700 59 649 -914 -553 413 -617 -833 912 948 -42 -103 351 891 -635 119 504 -840 -777 -995 159 975 -202 -351 760 -518 2 -755 -63 63 648 -101 -527 -2 274 453 324 576 957 -703 -760 -193 -502 613 -714 975 773 -35 706 192 -732 -697 -302 776 508 -228 609 941 784 -437 -398 425 896 152 961 235 575 462 263 78 469 588 681 905 222 938 -357 -853 -738 476 893 827 827 277 -822 -931 898 167 -337 -870 954 -388 -886 -877 83 825 852 839 -576 -389 -114 583 -610 446 386 -259 -787 -316 424 982 -83 -269 640 15 -279 607 957 529 21 857 -82 905 -57 810 629 -603 -187 904 967 276 686 -763 846 833 -915 391 -203 47 700 910 -908 505 977 -851 835 -414 151 -944 -29 504 372 -297 900 798 20 518 581 -635 -799 253 923 628 -392 262 970 958 840 -614 -844 446 81 725 -952 -343 667 279 -590 527 -427 855 45 946 831 -407 389 -918 619 713 -541 389 -895 121 -950 591 -870 416 -150 701 -457 227 -406 783 666 154 -316 -638 858 -226 562 11 171 364 -861 -790 894 -955 -375 16 318 746 229 898 -299 371 -434 779 377 -673 202 -726 686 -959 -600 -234 40 -206 -145 848 796 283 790 136 600 807 950 -357 -442 630 993 692 -894 48 214 -577 -756 -19 -606 -890 552 -559 -791 -10 -368 385 -754 \n923 182\n168 299 65 -17 396 425 477 573 944 -808 -127 -753 286 -732 -747 -257 417 -81 783 886 557 682 103 -35 85 -581 -409 441 -898 181 -529 -955 315 -407 167 323 152 805 -308 -379 -982 830 169 181 -174 -131 256 540 414 180 -273 -968 -630 -833 678 -942 172 -153 175 806 -161 7 -70 -923 233 0 -812 542 -175 270 147 -443 927 -152 850 155 -946 -624 469 792 262 -627 618 540 707 -13 -540 -843 255 282 668 380 282 -958 -603 -684 -795 750 105 3 -881 -885 -801 -949 -435 -232 987 713 961 218 209 910 561 -289 114 -817 -91 942 226 345 180 313 -592 -395 511 -3 374 94 -559 18 765 -416 767 97 231 -695 243 837 -547 746 -964 -841 612 -172 759 947 906 472 774 261 -351 -440 110 -973 339 932 -319 725 249 857 167 -243 -896 -575 -248 970 -243 99 5 -655 42 595 -81 270 -502 -476 -992 3 520 -255 -60 225 -683 504 890 142 382 -222 258 92 -939 830 178 249 683 424 820 184 567 495 -459 -223 440 381 -58 -431 16 334 709 -472 871 536 174 -706 143 -529 681 -548 880 649 -729 456 -309 948 1 -13 228 825 -667 804 10 -302 492 228 789 -913 -718 566 977 176 277 -218 -484 834 187 192 -194 124 -332 535 -73 -910 282 554 837 67 426 590 -253 188 286 277 533 317 609 206 522 614 -341 -371 289 748 144 -793 272 286 -323 92 756 -48 770 368 817 -851 -623 -201 621 891 95 -188 -862 -840 91 899 -710 -494 -697 845 454 756 288 -620 9 -713 -679 -830 -228 642 -654 124 829 -909 308 390 121 474 536 -133 -676 509 567 399 -237 493 580 -887 967 -863 492 -682 -785 -764 -534 -707 -39 351 -865 -576 799 40 -637 698 565 468 -408 -329 840 394 -955 -702 330 391 -483 -432 -252 707 -401 535 415 379 650 -636 796 677 -439 175 437 558 -534 199 -746 -999 879 -534 -965 -564 616 -66 750 540 -666 -877 64 859 634 341 858 195 584 -525 -247 71 907 -779 686 919 515 -184 106 847 902 715 979 888 -300 -270 180 725 627 327 707 62 -372 -473 509 385 195 104 391 748 779 688 -37 893 384 -263 503 -530 -355 511 -871 -881 338 -989 -260 993 -509 -396 210 -791 -521 226 952 -658 857 994 377 -55 -193 -777 339 -846 249 -705 211 643 120 625 215 -399 470 314 866 -940 -56 572 -500 148 728 -319 440 754 -995 -259 -876 -711 -58 24 532 343 -33 -102 -271 -282 642 407 -880 740 -467 -320 103 100 -452 139 917 -153 658 328 996 176 495 527 637 759 360 0 951 918 -757 -300 -455 568 -509 369 906 535 991 706 469 517 698 -884 597 292 -813 610 928 566 128 41 -122 -909 569 125 -953 797 -544 -483 570 -893 -660 637 -240 203 795 553 348 629 -175 666 320 -392 -931 -237 283 244 -146 37 185 77 296 344 176 -868 -255 -136 388 708 395 283 739 -870 318 3 -137 334 918 246 -318 -812 226 -503 -627 -164 672 -916 825 -381 -962 582 -362 197 148 -20 69 956 8 432 326 253 74 896 -316 697 132 286 -242 667 -283 121 382 876 -24 514 -965 17 808 -607 805 512 -853 20 282 -823 -283 -933 562 925 667 269 304 -807 660 -434 540 604 421 -919 -801 289 -916 537 30 534 602 146 527 519 844 617 -121 292 -331 743 313 2 -917 635 -565 911 459 -520 937 -362 617 626 -36 441 -353 253 912 -672 -760 166 830 -345 606 -695 655 87 667 -863 124 993 -757 -64 47 862 419 -991 608 899 -685 671 -993 526 -489 351 -578 439 -248 -24 -54 905 839 368 -268 -253 -302 609 543 288 12 -882 -478 808 -338 373 -621 451 235 16 -834 -560 -571 365 -857 -291 205 -337 256 446 -274 -48 -324 -691 793 583 -682 -587 106 -721 766 538 770 595 232 8 738 -680 -858 129 967 878 539 878 956 -855 296 -34 380 -697 77 -462 -216 830 -736 -118 -183 404 791 289 -512 942 -285 405 -210 73 -353 -785 -165 449 894 -481 367 -825 -868 989 296 14 462 -514 174 -157 434 800 777 -185 -620 -890 184 270 163 -689 -170 -104 906 -74 -686 237 -121 643 748 150 554 -98 265 258 -116 414 431 99 -587 571 899 63 797 227 509 -617 -455 -632 284 -5 -286 499 -111 888 591 576 -469 -853 736 -775 -230 -249 740 -796 879 424 -659 288 -282 981 591 -966 19 447 560 823 813 942 873 -511 -195 586 265 741 -983 356 915 -631 679 379 15 -451 203 -985 742 703 -576 -491 793 363 224 -149 -475 -306 847 883 195 -820 -776 129 587 383 -174 -836 -283 -665 51 958 -71 -271 588 350 -620 97 -179 -286 -999 -100 572 476 663 -7 -713 -9 622 351 310 -869 860 \n767 222\n643 477 492 -334 179 -490 390 777 -143 585 167 650 519 -112 795 335 -368 978 848 92 411 931 -296 -937 -869 789 -163 -834 701 918 -114 605 641 -879 -541 15 465 406 -965 872 -610 477 923 530 868 177 -95 958 805 -732 778 200 36 99 205 558 375 -889 -743 -20 533 914 -715 707 -996 -537 176 -109 613 642 -927 570 659 -17 328 183 160 -369 -358 690 -839 -974 526 39 171 -420 -756 -86 -751 533 -486 499 4 535 -583 -348 518 11 725 -119 247 959 -419 809 -962 861 -736 -976 -345 314 -286 -258 -240 992 76 307 -400 76 517 115 629 873 471 -526 256 595 308 -754 -702 -781 828 -397 911 -500 130 -372 344 -353 722 589 -297 -715 -665 -542 -159 922 565 779 -156 173 137 -620 -490 -606 162 741 587 993 -708 -693 -124 944 -814 -679 -230 -257 666 660 244 150 -639 -854 -503 196 -966 574 133 -53 976 -152 -789 -127 -414 194 -733 650 -640 168 -445 774 375 155 513 211 858 -85 978 375 253 223 950 59 -525 988 68 -462 742 467 81 288 909 -968 733 -40 230 812 606 -240 -599 -216 588 -371 819 678 212 910 753 352 782 -380 -266 695 -438 272 38 822 478 135 -463 484 770 -147 885 -157 339 -866 920 833 -974 221 657 372 466 -833 938 949 181 -521 441 -599 415 -650 161 859 997 598 449 36 839 457 683 -969 355 535 734 262 40 -636 365 468 83 362 510 812 374 287 -243 40 -764 -373 -484 -795 270 176 779 419 834 459 647 -998 -638 516 337 722 -369 203 746 -444 -419 838 596 -306 567 -280 236 -793 -224 -550 -94 -408 690 177 -289 58 356 871 -879 856 469 -433 -902 157 980 550 514 -88 966 359 -984 781 -675 41 -565 -93 674 -974 -69 -186 313 52 4 -355 533 29 416 -126 64 493 765 105 -878 943 104 576 119 649 149 330 449 -219 -737 -435 -163 428 -768 652 34 61 552 -551 319 -75 868 -803 791 -641 -42 886 403 420 -965 -718 118 30 -60 -471 625 52 561 -96 434 -224 836 718 -544 -567 -157 959 -129 771 685 760 772 282 198 -360 -272 110 494 538 531 411 784 327 -860 653 659 674 -521 -615 689 346 225 892 800 788 404 -178 -229 -374 590 -490 549 837 120 954 354 -176 470 -147 180 971 458 611 981 717 -160 852 635 402 -376 579 -618 497 -975 129 -232 191 -478 598 935 -106 433 -985 -838 423 889 289 -849 93 731 -80 -660 152 -807 11 396 -822 -994 819 182 485 212 -798 286 44 219 -455 -113 -622 814 -474 307 514 -755 337 -634 773 -993 -801 577 -798 -246 389 -111 -969 354 -523 253 893 883 130 803 605 -367 -978 -12 -867 -109 772 581 625 612 -678 -994 806 570 -544 169 63 -263 -921 284 -595 127 -403 -91 390 260 907 -393 863 33 674 -387 -362 -96 -743 -732 -694 -413 602 619 -128 225 -394 -26 -343 -512 760 -521 782 75 698 866 941 103 -601 779 303 -996 771 575 517 -503 794 -972 -970 968 563 534 942 -820 848 827 -676 84 -190 -357 331 60 -216 -388 104 -262 -26 65 138 -749 -543 964 909 -490 412 -871 -256 -498 914 216 495 -5 -296 355 338 -329 -798 -493 196 -773 251 483 -132 615 -760 -617 519 -735 723 -11 644 25 709 -359 -95 750 205 -505 631 -540 843 622 -152 545 181 -514 762 860 589 -682 -232 493 -680 586 721 -656 -929 904 435 -790 452 983 -995 811 -964 221 830 401 -142 86 275 603 3 -79 6 843 306 947 478 182 -276 913 712 -826 -430 468 -691 47 802 -866 106 339 -494 341 -413 532 483 -29 0 -218 367 -604 738 -977 972 393 39 -468 -679 742 -599 -213 227 -786 -949 -974 531 -8 -249 572 147 -429 -710 678 511 366 204 -66 362 -808 343 -593 -409 -133 422 -102 -173 686 -85 442 -621 836 -156 -723 730 -822 -102 -521 473 774 523 327 580 -443 734 256 321 -417 \n887 343\n244 662 119 -56 -90 -649 -76 964 601 -191 -399 389 -878 993 -807 732 -395 137 -24 191 88 775 -722 -151 597 597 714 128 946 715 928 963 672 92 487 -119 -301 -775 721 524 67 -591 -824 -135 -417 875 293 977 -617 215 157 824 913 905 -991 -964 -866 189 112 -611 476 -905 247 718 -168 314 225 490 -572 773 -70 87 -11 -758 -346 724 466 -589 -213 937 420 -852 195 -572 87 410 -733 477 -213 -20 -534 682 -659 902 -623 588 934 342 652 727 -729 898 -837 686 -880 117 533 661 792 -334 -990 357 196 -720 187 883 -162 971 -317 -841 -44 242 -975 804 760 -331 369 -973 856 274 472 704 747 -486 -349 968 970 -10 -802 296 -852 158 -664 595 -490 644 492 358 -3 115 493 -665 81 623 40 289 354 198 252 193 369 589 -542 748 682 -722 550 965 729 399 488 671 948 -493 -892 397 693 758 926 748 393 -986 167 403 963 -779 258 834 -705 897 -352 416 822 -383 565 500 743 476 768 789 -222 -91 -7 -906 466 -156 -481 -890 581 -352 618 -117 732 112 90 897 178 -247 702 518 926 132 902 -963 952 905 861 982 289 -702 180 241 896 47 -391 -503 -245 577 319 -283 -850 633 846 -217 -268 406 -398 835 -135 642 -899 501 976 61 -748 233 112 -18 670 -140 -224 -503 -881 199 47 73 361 -352 669 574 982 702 740 122 -508 -880 402 395 -844 -823 553 500 457 631 -502 926 892 314 733 -434 81 -997 -676 832 47 697 892 899 -948 -188 579 579 359 661 -948 -490 884 323 149 223 563 319 -304 438 369 -837 699 -582 -645 -607 -704 249 -29 962 -317 792 -7 -383 957 332 336 -899 358 -638 256 -751 -481 -24 636 -681 141 418 75 394 -180 223 -10 430 212 37 776 -431 455 -480 370 57 -740 -335 472 519 -460 333 93 757 -846 953 -331 -717 499 167 510 634 162 661 748 504 -518 -775 604 -874 3 -915 -131 -186 108 -221 576 -460 152 333 2 755 -464 476 -636 -115 -427 339 -392 -917 779 -436 169 319 845 -943 -103 489 340 -558 295 -481 951 225 408 960 -630 -955 -200 730 -609 202 541 -354 650 955 532 244 174 -460 325 -97 247 -273 893 -183 973 944 275 806 520 492 307 -180 -784 54 758 -153 374 775 -248 972 856 -583 -417 732 80 345 197 32 -238 -901 172 -384 -681 197 578 594 -410 -424 -784 294 314 -578 17 49 -615 -946 -110 318 538 162 -274 -280 948 -659 -807 386 436 -607 -199 216 -691 325 -124 987 -473 -648 -505 -768 941 -64 230 -641 824 -967 184 -787 170 989 -847 158 -476 -749 750 -528 93 534 806 963 550 315 723 -450 453 548 453 -800 -165 682 801 -538 964 -855 902 -223 -76 659 -648 935 -331 -192 432 -689 155 -247 762 507 -115 -929 -126 263 -100 663 568 472 61 2 584 569 687 436 -514 -654 -729 -245 167 961 941 -807 170 -726 -57 -178 484 -384 -928 521 -784 -162 223 178 792 398 -384 458 918 401 -433 271 -556 117 278 965 -309 -950 -635 -226 545 -694 -908 642 -357 937 229 -187 232 -489 529 -49 135 -980 -239 3 282 -169 -385 197 573 510 644 -252 25 -725 -634 941 160 410 467 -711 -172 -646 -383 -84 -969 -799 574 611 758 -478 -776 -697 56 -904 141 972 -158 686 -631 -918 486 686 843 528 31 -983 -764 421 -269 632 -87 994 801 890 320 901 -614 -857 972 -923 -293 -135 636 -176 -97 961 985 339 -132 -751 570 583 688 -433 -103 -300 -999 637 594 307 379 -66 513 -221 799 880 -894 -941 284 805 615 514 453 -394 230 -350 500 -324 745 674 762 12 -267 535 -363 -103 809 846 -735 814 134 -657 155 847 912 -152 222 458 -593 509 356 -957 151 -624 -470 -41 524 -468 -584 -19 -479 -696 994 -963 169 431 312 -736 800 -600 -361 -722 312 142 -108 191 -301 465 902 -311 522 -220 821 -776 309 -877 425 11 104 625 -821 452 162 741 -387 22 -572 149 -253 685 -461 -913 221 -26 902 -283 -902 -931 -542 690 896 -816 936 610 287 807 -200 -514 85 624 -937 301 -300 -186 -850 297 421 -452 -924 347 452 221 -630 -681 433 165 -66 -519 -49 -49 421 202 803 -891 243 528 -515 512 552 926 -762 281 376 360 -724 90 520 -933 656 -133 -290 -136 92 232 693 721 807 -35 347 137 213 379 337 66 143 146 -163 -277 112 437 -478 585 688 300 387 283 181 494 994 368 -269 866 -117 941 -510 455 721 231 -766 -380 369 580 -907 441 307 656 -52 \n969 465\n-359 965 154 451 -371 -424 873 -382 -526 381 -508 -557 -374 936 -501 779 917 286 200 610 -776 795 458 246 689 -684 -729 -639 798 -741 388 -875 -712 364 -86 802 -612 692 431 976 -45 915 -299 255 288 988 241 -787 -958 974 149 172 -110 -876 159 879 -568 939 809 -757 -451 -447 -997 714 -624 -141 -397 119 21 818 -145 -513 452 99 -381 592 113 -451 656 577 895 225 366 836 779 559 655 463 335 -76 -502 -929 81 -819 -819 391 634 529 729 235 -799 -83 -88 336 843 -494 724 727 611 932 148 -125 -688 462 -452 -555 -409 13 908 765 -278 848 967 -203 407 889 445 307 587 607 105 61 -689 -381 -947 405 -930 -42 -215 -900 157 888 268 720 378 189 86 -968 703 325 333 937 -534 621 284 83 229 73 -83 -941 252 -71 -397 -357 659 -690 -794 -64 -42 537 822 -40 -511 -693 -417 801 387 -294 869 795 517 431 659 515 -622 -381 -846 850 267 404 -629 924 -710 -770 -166 107 -453 -674 318 42 658 386 -666 618 49 -805 -145 192 293 818 -15 140 -92 651 -532 420 -214 727 963 471 90 -65 -756 507 728 -167 282 303 -272 307 590 682 106 -685 482 -562 68 -831 86 565 287 -416 590 -492 -50 690 -682 -651 830 180 565 -298 -648 320 -823 551 691 574 3 -394 -163 255 298 176 98 -75 390 -112 175 -996 23 -977 642 592 -809 954 329 99 -756 -896 607 106 -195 996 -743 354 -806 74 61 -991 736 -675 -254 493 -746 404 499 883 -358 429 -898 -138 892 635 317 2 505 782 321 582 -19 -155 -599 -723 550 -915 863 197 66 -707 -992 962 506 58 -129 685 390 558 484 285 -274 520 845 -19 710 -595 120 151 -892 544 496 227 581 349 944 -167 404 257 38 499 -809 -162 715 488 184 -840 685 808 303 751 -685 841 107 9 313 710 412 529 475 -230 268 265 944 -435 940 781 162 -420 -687 606 -758 828 -629 -840 -847 -112 -562 700 969 -525 -404 942 -278 960 744 672 -909 203 246 -30 190 975 616 280 -672 829 -975 67 -155 852 710 -624 822 -62 -269 755 -386 -66 -280 -934 413 812 -765 476 -360 200 -386 -902 929 -339 380 -1 -458 42 769 -77 -768 809 -719 512 213 -214 634 -201 -182 771 554 5 -950 199 -362 -454 529 565 -843 311 -178 507 -919 -473 214 -341 -367 -266 86 -472 -173 -528 705 -231 -514 498 471 -106 537 232 407 602 459 -838 -306 -206 681 556 750 64 173 -793 524 -673 -849 12 58 -817 606 33 498 -384 430 -586 -337 -264 626 99 217 -512 -813 837 -216 -355 -344 -652 -534 167 28 689 123 -902 979 -649 646 -872 991 524 -839 991 -881 -823 503 -818 219 658 -674 227 702 -930 -356 337 -774 -448 409 -678 185 929 -171 546 43 612 312 358 -565 -223 873 -666 617 -170 -316 472 -592 610 -291 430 372 928 -35 -824 471 296 -407 -796 346 -882 938 604 806 -300 -64 -191 215 5 597 -561 -619 476 916 -998 848 -727 634 715 291 -685 672 725 874 36 -429 -144 811 579 -274 257 75 874 -908 -84 -184 13 -213 799 -486 701 -179 21 446 -751 -871 660 -883 -282 -783 96 379 253 -301 -358 788 -703 -943 585 988 85 -245 -704 656 472 733 614 -678 932 2 217 346 75 -801 868 501 776 451 -61 378 916 -909 839 407 604 523 -601 -562 800 49 773 881 965 456 -274 865 645 983 379 264 74 -896 -141 203 191 431 613 856 -127 -982 528 -533 715 -540 -17 8 -944 761 342 796 -47 139 107 -987 988 196 -950 -630 207 146 177 766 -302 46 -652 543 961 581 616 432 532 -946 -5 236 -225 50 389 732 564 823 -390 939 548 149 676 184 305 -600 -332 -264 -128 -252 890 -929 -632 684 749 -312 -450 684 926 68 104 -670 516 -456 -69 433 795 981 437 133 96 822 560 704 -182 738 -219 -956 -941 -926 -224 23 86 344 -161 426 -976 -997 -568 -251 133 -684 266 -635 238 80 -791 -368 -459 -538 84 499 268 -893 -186 -43 179 760 117 -169 143 -928 -461 26 179 -219 672 -273 -797 -238 613 250 520 120 667 167 498 77 -248 311 222 339 714 114 26 752 -146 254 602 -515 300 758 388 198 -889 213 435 683 261 -607 828 -60 265 -425 -980 528 729 980 472 333 215 942 74 -633 382 785 -179 -848 -545 578 -308 113 154 -627 347 -49 -243 921 -269 174 -176 894 998 869 818 -977 -722 517 566 169 952 50 -84 254 -858 355 529 -936 78 244 637 -870 -463 -588 214 -64 469 -104 571 -565 -249 54 -817 286 -154 923 -418 185 -179 -6 137 447 882 115 -863 390 795 521 -209 376 -299 924 528 -602 157 283 -632 205 -889 979 -609 -249 255 299 -665 13 -760 629 896 481 -94 299 786 -140 55 496 -713 -110 262 299 -632 -295 194 952 937 -630 -557 -231 -944 -571 -591 298 406 -157 856 -499 -351 461 897 476 -396 -377 827 621 -242 498 \n846 392\n995 772 632 -380 275 -180 -920 476 531 -732 590 156 299 823 363 991 232 618 353 46 -868 929 -369 -228 -659 184 -730 802 -776 803 929 3 94 -967 467 -672 -584 -271 -949 -830 -633 992 109 499 484 237 254 709 -821 -332 -559 -43 398 390 -5 -530 980 -435 485 -153 -767 156 -474 -397 -997 455 -869 486 487 167 0 424 499 -185 811 -748 937 -752 -151 -668 638 -778 453 410 -67 641 288 617 -959 147 550 -114 -41 450 660 -665 -263 -597 791 766 -786 316 -35 -60 -400 616 128 93 -864 529 496 612 -898 974 -946 -50 564 321 834 482 -61 816 551 -836 -231 -269 -812 278 533 831 -336 70 593 -783 -861 -921 456 436 -412 808 396 -575 -344 -974 201 -551 -799 947 -496 686 -412 732 831 -323 959 16 -655 -582 179 324 -365 215 -992 -344 938 -247 439 -808 171 -717 792 -548 274 -818 831 -264 -763 -62 690 237 -319 -609 -941 127 964 858 -167 -36 19 740 858 275 401 492 -559 915 239 540 -575 672 -434 -611 619 -889 860 35 13 -148 -720 601 381 209 106 577 885 -275 -541 71 413 -594 -339 -479 96 -452 432 950 525 495 -991 -343 999 -544 748 -191 -325 952 896 -617 -563 370 753 490 15 -462 311 462 -165 -168 488 922 323 -306 549 -383 990 -326 867 -334 995 -877 -610 -718 518 -611 233 -608 -959 312 744 -876 536 360 -229 824 -657 -284 776 -56 548 -415 -887 289 -904 402 203 -653 -18 -753 -496 698 152 771 361 -347 -93 438 162 166 -952 857 -148 204 -836 -632 -364 -388 681 -275 956 696 650 -543 -433 -902 13 -732 236 408 278 901 -497 252 868 507 123 -61 298 443 653 -553 120 395 698 -377 752 313 -527 580 385 -492 -692 637 7 -392 439 872 -657 527 200 -616 -785 -395 -125 820 -328 -28 696 -541 327 960 212 -538 895 -350 676 -556 722 219 -933 650 -912 766 671 287 235 723 599 927 459 635 31 93 867 -937 325 -376 -170 -895 192 -82 523 -640 727 575 -94 227 905 284 -36 478 182 -998 22 -153 268 598 -103 -143 459 947 662 288 746 112 5 -617 -351 -978 812 -819 412 -900 543 -48 -932 435 -379 985 666 -721 365 371 722 -406 -164 253 -406 746 762 -412 -250 -893 -887 -335 48 -720 830 139 149 601 125 360 234 59 -265 370 485 571 -104 897 781 -644 998 793 -689 -508 -329 587 922 452 212 -370 516 -644 -376 -7 -489 -421 54 589 -974 301 62 -462 -692 471 115 404 889 753 -165 617 532 444 838 24 300 -550 -429 289 -274 355 606 777 954 -928 520 -920 -6 31 541 -441 -235 55 -958 221 666 737 668 337 264 -667 -144 -187 510 433 -709 -961 386 -703 -760 -882 69 944 943 -242 -875 -858 -559 770 -614 -287 -772 14 -258 918 301 -46 186 -768 885 734 346 -619 707 798 -692 -235 515 -114 -931 -980 -699 731 995 -857 -607 292 743 928 117 942 785 -540 842 -549 917 866 427 800 -670 -628 -572 -13 -560 -761 437 954 972 162 -544 -917 536 -15 541 358 892 352 366 -999 102 -484 435 -899 -303 -758 -767 364 -771 -723 288 -891 845 -765 691 972 873 163 -998 848 560 375 237 113 416 55 198 -897 449 532 372 892 649 790 -136 489 568 -525 -107 165 229 697 221 184 -127 244 -585 566 941 -747 -975 519 -351 -881 -881 -367 -939 -36 -430 103 -41 421 626 -578 -231 652 228 944 437 810 878 -807 -314 -613 713 -86 317 512 -679 -592 501 -48 -31 855 322 840 380 190 -321 438 150 -341 -588 124 511 -49 8 -872 567 -881 -541 964 177 -994 -433 678 -100 925 -758 865 315 468 439 -755 214 -432 831 565 790 -14 395 -662 -885 -900 698 -664 563 913 292 257 162 -763 200 955 251 -815 149 -949 -103 181 -250 984 919 -761 261 -634 492 906 -624 -679 -16 815 911 -491 -779 -917 60 913 -399 -930 -316 -71 -636 206 -583 903 429 973 99 -168 56 878 -441 -467 -602 655 -855 -143 -914 -550 60 726 881 793 -935 557 896 375 513 359 -786 709 -854 426 997 907 9 241 189 324 -845 -393 913 497 -596 -228 789 -950 723 585 910 787 -652 634 -289 693 987 -876 -845 411 513 643 -108 9 372 283 333 16 645 320 933 572 25 831 -778 597 362 98 822 831 987 344 530 -426 222 -411 \n729 70\n-753 327 -928 550 -973 -755 -599 -617 737 634 713 -500 164 -984 -80 -839 -450 -630 -816 917 -202 -570 421 858 319 59 170 611 147 -957 690 638 7 923 -403 14 693 -640 -590 -848 583 437 641 -577 21 478 165 574 466 501 664 -97 831 806 676 -331 -215 -345 942 589 -969 -979 -759 -477 930 149 487 296 833 -627 925 -458 504 -614 -568 -711 777 219 714 54 567 746 48 -448 -977 -992 803 558 -35 -334 769 488 524 -447 485 719 -449 125 898 964 -448 -45 220 -294 -526 846 -240 32 658 702 975 224 640 910 111 194 -191 953 -74 811 995 824 -893 398 923 -513 306 -499 -108 516 -207 -130 285 -140 -708 820 57 -428 856 -283 968 736 277 109 -885 847 -384 173 -873 360 -682 -978 -159 -842 938 -22 431 714 -208 800 604 904 827 -363 701 82 4 -349 -351 273 697 360 393 -815 -563 -652 -191 103 472 -147 576 805 666 868 744 721 374 -913 926 200 -94 225 711 491 -631 -846 906 -583 876 112 818 675 425 -8 239 -517 -465 414 525 69 137 -187 -931 -960 -754 832 581 -951 291 -541 138 741 20 291 -127 -629 36 75 491 41 -172 189 -713 -84 -858 354 729 -569 391 569 -775 985 290 518 490 650 219 446 886 -403 696 692 714 256 123 368 -627 -748 377 235 432 -170 661 276 676 259 -123 678 399 315 -742 679 909 12 -691 514 -653 778 251 -294 723 797 677 -838 919 282 -690 671 -676 666 839 356 89 -137 190 989 -499 -648 805 108 -706 716 925 -151 48 389 -948 -633 973 936 -892 -953 -309 -237 706 297 -95 969 857 336 280 -118 524 624 903 422 -759 257 55 780 -30 388 720 115 -572 313 926 44 -590 -482 -81 564 869 310 -475 -980 -408 239 44 -87 144 -579 137 152 850 303 769 890 752 695 -367 -333 384 647 363 -240 -628 574 665 -217 992 -286 297 -951 455 869 669 361 -254 -518 342 -788 -223 305 -558 -736 920 575 359 -555 -170 231 843 -605 -994 164 475 -435 419 493 233 301 450 651 253 536 841 -286 723 636 332 -305 -787 374 -615 -497 704 455 150 706 570 -283 860 714 972 -276 677 -300 -974 -893 195 14 516 -303 805 35 501 911 835 834 -854 141 -651 917 493 999 223 987 118 740 645 -879 72 -322 822 -375 -697 -872 95 -565 934 492 515 697 484 151 351 -813 674 980 861 -936 893 133 66 -60 186 430 -567 64 727 943 820 126 763 -70 -440 526 738 843 -298 857 -42 426 -860 183 256 317 698 441 91 568 263 560 -288 -947 281 821 285 -587 -320 -558 -846 729 779 -863 314 -241 715 631 503 948 181 919 370 -39 556 566 -336 -194 373 -296 -385 -113 930 666 -639 839 920 -600 283 -470 465 223 400 216 -474 123 -622 -234 493 -770 -784 635 561 -647 -607 825 -85 -488 309 324 521 -65 874 674 437 223 -627 145 -455 -253 -294 536 442 194 -167 838 -706 321 126 297 776 176 686 -201 100 -786 591 594 774 -45 -678 -334 132 -892 -424 688 -976 422 82 122 -743 717 580 -16 771 -688 842 -178 425 489 -418 294 948 -160 768 556 80 462 476 73 -336 875 -795 997 -120 -465 -586 -981 588 -999 -991 873 -255 311 -24 598 356 71 969 437 969 812 -10 474 239 954 -902 -998 -164 957 -334 -374 865 308 164 -938 708 -161 296 223 -231 -378 -415 118 615 739 119 -282 -950 97 -476 -430 -522 320 958 468 803 871 345 207 169 631 -619 458 75 -287 137 166 -809 203 803 472 179 832 571 729 296 -785 -747 757 -224 134 676 125 -418 -663 7 -524 335 373 271 709 -989 994 405 -900 61 69 451 840 182 431 -42 -936 391 -248 -524 \n727 202\n528 491 883 359 -653 933 688 549 354 26 20 -207 -179 -576 -93 -243 -46 191 -172 12 768 667 638 -766 -726 -619 140 6 -660 -525 83 -280 930 -848 -204 -494 330 -39 253 -607 -476 -789 990 38 -810 444 -829 103 -484 988 -794 -694 21 -194 284 440 -315 -255 987 503 -99 -517 -372 10 -595 -221 264 -427 -567 356 524 -255 -77 745 -50 602 -352 -8 -951 -992 505 -466 364 973 -889 523 965 -278 -176 -603 605 390 -977 -190 80 970 -572 420 -423 469 -187 -9 -103 124 685 182 -810 -155 806 182 -237 23 -813 90 201 -818 84 -973 -938 -338 260 377 795 -346 255 344 -943 695 828 332 193 780 326 -48 206 463 -445 700 -958 -338 323 421 -918 923 -568 10 937 580 7 17 -378 363 -903 904 667 203 -971 164 -618 105 875 -533 -167 137 808 368 431 671 652 588 564 -405 671 -869 770 -804 475 -156 660 995 833 973 77 409 826 -360 23 873 87 -681 -840 -273 -681 -912 -856 930 538 481 764 -531 450 213 622 463 -235 -519 -26 -162 693 -912 770 -879 963 851 443 917 363 -841 -975 189 946 -847 265 -350 -63 -276 620 705 571 51 -804 -910 599 -327 -435 -533 14 -977 997 109 462 -740 -356 969 -875 434 -269 -246 -4 524 321 598 741 462 630 640 -683 49 435 622 -811 -359 -999 357 -548 834 -227 720 -392 237 843 -606 638 490 817 848 899 -962 -194 836 317 736 -711 -396 -46 -711 -53 -63 359 735 -430 223 547 -764 486 -738 287 -487 838 -49 673 675 -412 532 230 160 705 -252 282 -292 -778 511 20 421 640 -32 -823 161 -576 -924 523 526 580 -902 985 850 711 -68 -731 421 957 623 705 281 -401 -615 -861 -601 725 765 -888 591 -430 479 219 -908 -524 -800 111 -460 550 142 -989 463 13 -434 879 -210 -44 -515 -405 -388 -423 467 257 -665 -353 736 539 506 -891 -124 198 -483 -172 333 865 140 628 -918 -407 -944 480 -21 959 -201 473 -747 -668 -658 -933 327 991 -524 692 683 480 -354 500 853 353 29 909 -912 307 -904 -182 512 62 -445 599 449 -749 30 253 481 -712 -781 553 617 409 -92 -744 -137 479 -350 604 297 374 420 850 848 845 97 563 329 695 711 483 609 763 767 -469 306 867 285 -141 -827 -448 393 764 -437 237 -24 -463 728 -783 -232 384 180 -92 392 -404 448 105 862 787 495 994 -607 -252 -62 -70 666 350 319 568 125 496 -210 -984 -543 -466 518 -976 -348 -921 500 -199 693 -335 -820 -401 877 705 -766 -140 252 -135 147 -149 680 -511 697 937 -87 43 170 -813 118 590 702 751 654 635 484 298 346 -334 701 869 866 681 90 -917 867 449 -529 575 -420 -542 332 -559 -402 -438 -489 467 125 -194 691 176 -449 -544 455 797 534 400 648 723 681 71 732 323 -504 -263 -13 -408 738 -180 -617 -416 -61 -792 554 168 94 -288 -262 381 -956 -301 560 851 -917 629 -542 322 -840 503 401 -924 97 347 -608 704 744 767 -461 -26 714 -131 990 753 791 822 165 -608 226 -6 225 -246 677 548 75 -413 -938 965 881 374 611 -539 -519 -956 26 762 729 309 -105 35 922 540 940 -612 296 -129 -74 182 598 591 888 -614 -432 318 694 661 451 823 848 56 -10 -386 503 -17 930 491 981 -300 343 -280 956 -290 269 -565 639 785 -728 -633 -527 810 740 750 552 290 629 -397 873 -826 984 655 64 23 849 -941 324 299 410 817 625 -793 619 -915 47 605 -292 869 187 498 165 271 -381 258 791 796 -536 289 -104 971 390 -538 -122 335 -385 905 700 704 730 127 352 607 -702 226 804 -589 52 -434 561 -837 -577 677 -103 669 484 924 -335 -826 314 556 \n831 212\n-778 36 966 -413 874 301 -125 -295 718 -405 792 -996 573 -31 398 442 762 -738 -309 -444 -626 -548 757 871 746 -154 -18 -604 391 705 -469 -513 164 976 -883 991 576 572 53 53 -181 -755 -207 204 -577 145 -290 961 505 205 -641 775 265 -365 -399 -346 -710 -462 -672 -508 693 -293 -59 -132 408 249 559 -498 -576 55 -43 236 -965 -365 52 677 -240 -391 3 -352 210 -693 636 -849 331 298 184 125 684 614 244 -853 596 277 368 167 -351 255 -665 429 762 350 351 932 545 -963 -632 165 313 161 -659 -568 -678 256 693 -52 438 67 -24 256 564 531 -695 654 46 778 403 -530 216 312 793 288 407 -138 546 147 702 966 865 -342 -396 768 921 -943 324 -640 292 383 -284 849 981 404 327 284 -135 -471 603 299 788 214 -843 54 847 35 398 -18 -650 739 910 -333 753 960 10 -139 373 431 -180 -436 66 690 948 -131 201 -848 867 561 526 16 -673 -424 67 -130 224 -264 652 478 543 -206 769 411 -488 712 983 -457 753 818 -751 831 -663 620 262 742 -894 857 747 20 -698 666 212 386 -586 889 -97 270 200 111 647 -810 194 766 854 19 -372 367 -556 -587 379 -501 -336 863 -571 16 -512 154 -971 748 -299 -200 716 -823 -151 292 749 -583 -421 779 994 145 -888 302 160 -915 -546 -571 -882 -411 390 253 487 197 -863 96 -554 137 296 -926 -105 -979 386 821 895 569 -457 -598 -490 -472 -431 415 214 0 -815 914 560 715 -331 156 -955 -107 -23 975 -62 369 -148 -481 644 -806 -14 906 -914 38 686 930 133 359 321 -480 450 446 -367 -556 852 -459 253 223 202 153 -779 245 678 567 606 -426 -7 561 160 586 23 -231 147 863 94 101 497 423 709 265 855 803 492 705 390 -729 981 458 873 -115 -206 -290 913 462 987 823 -908 356 538 -933 945 363 957 541 326 412 491 424 -731 348 215 -208 -788 510 488 135 738 311 591 -14 731 936 -845 -576 -838 512 202 220 848 440 23 -798 -473 -381 397 942 799 553 803 648 -450 370 -932 259 -695 -465 766 474 342 -828 293 526 -35 -341 542 377 272 18 -28 789 193 195 214 -83 327 -358 -839 -28 431 134 877 -796 568 536 755 -874 536 381 -271 841 439 890 -540 546 74 675 -33 607 321 220 16 642 634 758 -712 332 -708 328 235 774 4 924 409 276 -612 -278 -660 357 -423 816 -26 -204 422 -25 941 -242 -55 825 -510 866 240 -206 870 43 -400 186 36 706 -431 -779 82 -541 -848 -538 248 -577 798 876 543 396 317 20 -975 684 -68 -375 721 -631 34 135 710 368 134 448 910 873 949 382 18 283 -464 -277 -331 536 747 208 88 105 887 995 -916 296 -328 320 678 -16 768 -934 255 112 683 -29 288 947 -721 571 -841 -859 -512 330 410 -225 623 8 246 351 -563 318 779 -886 -558 -682 908 280 882 661 -311 320 -763 845 232 5 595 315 -516 282 107 46 214 -417 545 471 349 75 876 539 12 962 546 869 785 560 -107 -601 30 -652 859 905 667 332 211 868 26 -942 673 -650 818 742 547 729 733 507 -280 -324 50 530 272 590 659 -729 -559 475 184 -149 214 32 -643 333 -985 766 -689 173 -122 915 863 707 -509 -145 -931 5 146 93 719 314 406 793 649 364 -546 -730 -837 861 618 138 442 295 -175 -176 -793 930 -70 339 170 809 655 -443 350 -237 775 688 278 -905 622 -761 106 -29 690 630 -131 -275 -514 910 346 -717 356 706 -638 -21 -903 544 -74 827 841 -569 52 -362 -282 -899 -176 -779 528 856 363 657 -617 437 -984 -836 -52 -507 862 38 376 -930 600 505 251 -713 -468 199 693 -568 -533 -632 410 550 -897 336 -700 -739 483 38 206 71 610 862 -314 -745 -288 695 -492 713 -596 -118 949 -510 633 -585 169 241 -549 389 457 -528 762 33 970 -996 344 81 -380 -643 729 -492 -636 911 756 -430 354 925 339 255 -699 -383 -164 522 200 -219 860 -166 893 -57 -575 696 28 625 42 -335 632 770 -489 567 714 836 -521 847 -255 799 224 -731 223 298 -71 779 440 -38 855 -945 713 776 81 -607 -520 -10 -628 911 781 -602 499 -225 356 49 741 -449 246 \n797 213\n-864 -944 516 920 401 866 942 -234 -155 719 -700 973 -819 163 -869 10 -472 -256 -762 892 -238 858 819 25 262 -756 361 -270 324 793 371 544 -240 -723 978 -915 -901 -927 356 95 941 527 708 486 355 -63 -585 335 896 265 827 46 655 849 -545 682 -112 -321 485 -470 217 734 197 337 -16 537 900 229 770 -136 72 -915 -240 -698 -362 -494 453 -302 -594 316 -721 701 -720 760 368 803 -251 274 332 -650 477 646 687 231 -85 -233 674 419 732 -55 809 299 857 127 -708 976 -358 669 855 -560 144 95 851 -556 546 649 835 880 131 -426 -768 -678 227 -660 206 227 -474 -568 773 -248 2 967 200 -2 -168 546 -153 -490 470 67 995 -206 404 434 -271 134 330 -17 968 -160 64 145 886 -421 934 226 95 -210 -957 62 -257 824 692 -927 745 -284 307 837 -232 -447 860 593 616 455 -853 244 884 -660 -175 -713 989 -340 546 286 301 -816 183 -976 -56 124 -740 -820 -686 259 332 -742 395 497 660 582 -983 743 535 -302 151 675 427 54 442 205 -338 -272 508 731 -921 -860 478 949 -708 620 -716 -762 649 793 -773 586 369 -141 415 681 298 447 -65 354 423 866 -343 314 -606 774 -81 225 457 78 284 -261 686 -488 800 454 95 792 -240 995 891 85 845 451 635 162 -291 -421 909 15 283 409 -69 806 -623 740 559 -934 -554 328 -790 131 925 546 -952 412 -962 -651 79 -435 253 -919 58 649 78 -888 -42 -535 521 756 262 -950 62 115 863 -560 738 -170 -533 677 763 435 440 -583 -192 979 447 255 583 474 245 -949 -692 -638 823 587 801 777 -423 835 592 574 44 -69 -907 368 583 186 349 203 -928 299 -695 -921 663 203 691 -407 284 257 892 -477 327 279 -412 -481 544 621 -725 380 -225 255 769 -844 -559 570 -9 -144 389 -820 -970 824 528 945 -251 -706 -100 -374 -416 758 957 -810 739 -59 143 56 -886 -87 -663 319 410 883 -976 -601 -2 220 727 736 408 -572 -591 -284 32 -863 430 374 184 399 238 96 975 -344 -812 -155 355 -308 -428 992 664 -248 4 399 -800 -13 660 371 -93 208 85 532 -761 -627 47 484 279 -306 -953 -266 863 -454 -717 522 126 629 -345 -915 -588 624 535 951 988 -372 -541 735 223 186 806 -836 457 928 320 -239 -107 -669 836 475 -375 752 961 -149 575 -945 -25 419 247 -926 -434 -562 902 -328 -662 -182 177 -252 -332 510 -624 435 861 493 -431 -650 -736 58 870 210 350 161 -601 417 -470 168 -689 95 35 -403 -561 162 -273 256 682 355 931 780 -703 -295 -352 -828 330 871 -657 148 -197 496 485 804 -90 843 366 830 84 670 881 -850 723 977 769 10 -444 -418 -509 238 391 721 541 -225 655 -293 657 -409 285 -294 107 -995 21 201 -872 -909 -424 311 42 691 -872 957 -209 107 47 46 101 -624 889 388 -102 595 877 131 -613 613 -504 654 -224 590 50 -352 -809 609 -622 -189 584 422 -678 974 -156 495 -94 -648 -854 -699 -180 141 -751 -246 -271 618 -932 871 -604 136 -577 -193 802 171 -876 -90 335 -542 909 951 33 428 157 542 742 344 636 450 796 -959 64 307 -491 -721 893 -27 -582 339 -728 -922 725 904 -323 827 -557 -251 -53 245 -702 -46 -7 595 204 -575 511 -317 -192 -782 -256 308 876 488 240 690 266 623 481 967 -430 96 -601 -221 167 987 -282 229 90 -918 115 776 95 594 13 503 -169 365 719 947 914 263 410 -278 846 -221 397 -760 875 305 922 219 575 -583 -279 927 546 321 575 263 336 349 734 -18 -608 602 -761 482 880 686 -163 481 -718 147 641 879 600 989 935 -45 -837 838 472 -782 -626 114 643 280 862 -459 -168 407 -919 334 503 691 -419 -332 -930 493 135 -43 685 349 491 -946 109 -783 188 776 -871 -690 521 446 -236 808 -574 -384 -419 -368 428 568 -647 -527 -543 515 397 -131 -855 -202 352 342 -120 -554 -669 369 809 -253 591 -47 737 -183 835 -990 677 -201 469 297 795 473 953 -736 -11 -200 979 -102 529 \n851 132\n949 209 52 -920 -109 -178 597 -660 605 846 -3 -946 24 212 243 -122 -356 -958 987 330 378 -500 960 -586 -208 -111 689 975 719 703 -978 224 445 -374 154 -556 188 379 660 -146 -649 -335 34 239 925 691 -918 36 640 584 999 693 321 198 -218 -172 959 118 54 -732 652 184 -766 -134 813 -893 -107 -862 707 517 984 751 852 -467 597 699 587 293 -524 116 819 -13 -591 207 -792 306 -912 -763 791 31 343 415 -865 306 -328 -145 196 -295 698 127 -938 171 16 346 -688 329 340 -941 -376 384 -608 -331 464 195 -739 -351 24 824 682 657 903 826 -164 600 455 -863 -397 650 589 -114 92 -326 610 -922 -357 651 -12 89 759 270 350 -950 327 -264 524 -628 -268 -293 -168 -297 -553 534 -808 -399 670 551 597 -262 862 -658 -133 880 74 747 226 -348 917 770 297 836 735 837 -412 590 -763 347 -568 -495 -920 -745 456 187 -163 920 -936 -495 931 -309 923 -599 924 328 358 664 -45 -830 514 567 834 960 166 -504 531 -177 314 593 -75 164 549 -828 289 -339 504 -112 538 497 -337 240 405 137 -377 -515 -238 669 -639 -458 556 -632 515 -854 19 -324 323 415 259 677 961 -21 807 -915 -802 -43 350 92 -313 0 -317 792 674 -916 396 844 -56 105 4 303 968 103 240 360 651 630 73 814 392 272 183 -406 407 -396 -655 953 -512 173 -928 99 -498 465 525 21 228 -651 590 156 -439 9 111 -8 -257 -590 415 302 -500 633 210 -70 -845 -628 -184 982 -790 86 -396 941 245 -401 534 -144 -59 437 33 945 661 187 829 187 318 -787 294 -943 -499 -759 -715 898 485 285 496 581 -539 185 757 940 -862 841 957 -231 723 991 -223 92 612 -763 -401 -243 791 422 -32 896 709 -384 -137 -348 -605 66 923 741 183 -861 146 682 713 33 782 968 -61 495 -418 -23 -513 -360 742 -422 -158 675 733 211 281 -99 503 859 405 -358 -912 -848 799 888 975 966 481 246 993 -629 455 -339 755 66 -909 567 171 -902 -799 74 448 766 312 485 -821 -529 412 346 467 805 -421 351 -972 -754 993 216 120 933 -491 714 -483 758 6 424 325 -387 -541 -657 529 -299 150 15 783 -140 -74 -890 -306 725 -846 -444 458 845 549 227 -51 922 -948 354 -293 -314 101 919 218 -326 -221 990 987 234 -477 -517 419 798 -53 983 874 408 60 273 -211 480 401 -520 934 171 -38 -856 -271 128 807 62 -278 -398 655 -368 877 668 340 -127 621 -991 -158 -748 -385 368 -540 -392 161 51 -271 794 408 857 -972 -318 -199 -127 214 -336 600 -765 562 949 -475 160 810 482 60 40 683 2 -955 962 -567 -869 -355 -823 99 -44 772 236 89 70 690 0 608 966 707 441 791 -74 -156 840 -358 -702 437 120 -141 535 216 -546 258 -936 406 532 -376 -248 -642 -365 762 586 916 675 980 -796 695 -974 971 -744 532 -226 -96 863 -445 745 -953 465 -795 254 -72 413 -944 -907 922 632 701 4 -873 334 -637 346 -250 -50 184 -769 328 820 -681 690 111 13 593 905 610 413 -818 256 725 -926 101 851 -412 -623 924 -994 -146 177 -720 762 194 -29 -188 428 898 852 320 996 -899 838 56 444 -691 -52 962 -359 427 -518 -11 -998 -969 462 755 -118 351 586 -756 527 786 974 -495 -343 860 -87 688 965 -123 793 149 222 543 698 -74 -684 -760 221 -328 546 493 353 145 -745 -526 295 309 343 -931 -576 -889 -378 83 644 -371 897 542 339 679 388 27 288 645 231 491 -97 913 -170 980 33 -529 -812 671 -710 187 892 -691 268 396 -966 111 247 -922 -36 356 589 611 -730 761 -538 -627 49 796 369 402 885 896 882 -292 583 633 383 719 -116 -906 -534 -25 444 -839 -370 335 -580 -932 -338 -767 604 381 -896 95 -457 651 -50 539 -148 -765 453 163 -666 -988 517 155 218 918 15 -506 802 524 616 395 794 -733 442 759 320 817 -270 -560 -570 246 501 -319 -151 270 629 880 502 118 571 -521 973 385 83 -223 523 347 57 40 831 775 900 882 951 -746 -709 218 546 342 317 214 270 655 492 932 194 985 643 656 78 -424 139 -683 286 86 -275 -670 259 -585 -790 163 -314 -986 946 756 74 408 778 -346 930 699 133 96 -961 1 -806 429 -356 852 74 333 924 402 189 241 \n938 327\n-151 370 -850 715 43 -310 -707 683 -585 -843 -412 -57 -552 754 748 704 331 -549 354 566 866 749 -293 -572 -791 -263 509 801 961 -26 49 -583 -156 802 -174 84 422 16 -854 298 -275 280 -831 -128 3 -882 -392 263 751 738 -543 525 24 -144 670 406 496 -776 -57 990 167 -10 658 600 367 -812 -894 -306 872 -475 685 -294 261 478 677 803 597 411 -927 -610 906 -720 697 306 -750 899 -114 -365 -265 890 73 -608 20 629 551 6 90 774 -88 262 633 -152 -215 640 789 -61 975 676 -286 286 618 -659 757 -295 549 676 10 208 906 -609 -1 118 541 671 897 16 -183 -674 172 450 -455 910 562 893 -148 -919 -957 -965 668 -186 174 66 344 10 646 648 989 -324 -86 -575 636 -914 529 355 291 44 93 -692 -395 627 -149 680 -304 -132 -433 932 -36 -99 244 47 -780 693 981 231 905 341 767 -578 -288 552 -410 -190 282 441 -983 881 541 46 -520 794 641 969 406 -222 564 423 -872 117 -47 -532 515 -10 -719 -638 44 574 413 950 927 269 -798 -282 -564 327 971 965 189 361 658 773 706 73 -763 956 -709 -686 -84 360 -350 -446 734 955 16 942 -510 612 314 -573 -669 284 -87 521 -791 49 -214 409 216 -414 -51 305 -626 9 -28 -666 -449 -228 444 831 -23 438 492 -1 32 183 -309 315 96 287 -895 254 319 175 589 -519 -388 -541 175 244 839 797 623 611 -510 155 -548 -323 537 -506 379 265 462 -305 72 12 -493 -952 -177 -450 733 23 508 -865 -93 -535 859 -62 860 -63 879 -721 354 -41 -811 558 -61 458 645 182 485 965 -896 -981 863 385 180 98 286 -614 948 817 597 -260 719 428 -943 197 472 102 559 766 911 -647 -888 -922 670 811 -879 -86 -612 -762 900 326 997 353 772 94 591 720 -730 370 -871 739 -481 823 786 425 -595 -840 157 439 526 -722 166 -678 -650 -832 104 113 180 288 -594 200 470 -459 833 375 884 393 162 728 225 339 273 -221 24 687 277 -415 467 528 720 -490 879 -83 996 -622 -766 83 169 -895 -796 694 888 246 35 622 172 -655 280 393 899 121 91 721 170 -48 786 -908 -142 -110 822 709 123 54 356 -154 297 -368 982 300 538 904 480 -90 869 270 284 454 399 951 -886 590 -428 747 -496 -868 658 229 -407 463 255 -303 76 680 173 851 613 622 654 722 -425 794 498 -569 -831 875 -602 -559 824 443 -512 105 784 329 220 302 761 749 450 -315 448 -407 567 704 -958 -656 831 145 384 -255 497 342 -304 725 489 -636 -297 66 -461 -482 -111 462 -665 -644 901 -104 668 939 53 947 176 -779 316 484 -414 643 -419 933 671 -889 559 -509 -876 36 513 102 264 -768 247 -525 976 -557 985 534 626 176 317 -797 -779 353 -156 -966 318 -707 35 -982 516 -63 187 192 -655 650 641 -921 -991 690 -262 -84 -29 -245 -896 38 58 -154 367 763 -777 -694 729 -599 408 -392 -775 622 972 341 13 -110 978 293 910 263 -590 -76 518 410 -888 114 -446 -215 74 -963 -844 -4 -4 -792 -632 405 120 -804 448 159 -566 -56 -460 652 -616 464 43 226 -751 508 389 828 437 503 -694 -280 1 -731 273 655 302 -203 -75 440 188 -840 -236 -101 806 -268 170 -436 106 -194 613 639 -116 -84 300 4 -171 36 -734 950 538 348 522 451 913 581 -640 -180 2 -860 -422 -976 908 -584 -484 337 835 694 439 -310 -806 37 554 -319 -719 -522 808 -804 -727 589 747 78 -551 -410 -809 460 288 553 522 719 380 -446 867 -630 307 162 -598 988 360 -840 488 277 -753 665 217 508 986 249 975 296 -985 727 -308 -275 587 -641 -139 -761 943 -454 47 -511 190 626 -12 569 -914 -789 -420 75 147 548 860 913 723 -79 388 -711 699 -585 362 842 667 395 -447 -452 839 841 785 -124 -77 708 -423 252 872 678 841 274 639 137 -405 703 814 577 -251 -715 -572 125 770 -743 -188 -2 840 -881 877 -688 46 -212 -881 427 633 -469 970 355 547 -951 480 -732 184 143 12 959 -626 129 -897 303 741 562 309 -269 -379 340 700 -589 969 237 333 14 136 -232 907 -966 -421 866 822 -284 626 534 -152 836 -27 730 944 390 -305 992 778 -951 -259 182 557 126 -152 -854 563 49 925 119 605 470 365 810 493 -642 805 237 -449 -69 -556 779 479 116 969 131 -427 182 -516 -13 691 -664 -115 688 788 -697 -175 -486 794 238 965 118 -180 999 230 -393 365 -255 519 -117 516 368 -313 78 -829 -622 458 896 910 -471 482 366 -323 666 -775 -806 162 292 -82 -587 -488 -92 264 -674 -626 -928 914 45 -565 222 453 -427 606 -453 26 741 26 249 631 -891 -152 -10 508 -5 -906 333 551 650 152 913 193 893 -357 -236 \n714 529\n638 649 533 -7 859 566 839 730 233 694 768 -776 -842 -15 305 -688 516 237 251 224 448 143 -266 -520 443 -414 388 -356 -176 946 975 -966 252 628 -176 649 120 316 677 703 707 573 220 -604 -141 -524 538 520 -118 869 909 225 -45 159 209 -263 441 -387 -663 127 131 -608 849 -81 -369 881 -880 -689 -301 309 599 906 973 -247 181 326 -681 692 -526 631 711 224 587 569 954 889 645 125 -151 417 70 320 -614 680 -89 410 367 -401 660 416 979 584 285 674 735 803 994 558 132 886 816 219 169 484 261 807 872 -29 982 633 -5 -482 681 -975 -954 -491 892 578 -6 -258 685 -805 809 -262 -335 266 385 -177 -692 -836 248 90 565 102 -676 915 523 35 950 427 -242 699 -283 246 417 -357 398 -680 147 -359 196 982 -737 -376 -135 613 198 783 859 689 385 81 468 -904 87 247 30 932 350 -501 420 548 -299 388 186 683 117 -41 506 576 591 380 163 876 218 337 845 63 705 947 550 -44 571 828 776 848 541 -470 -721 -567 -565 -837 666 703 176 -611 457 459 -469 -755 991 -353 -343 182 818 932 679 -745 51 -883 72 -860 161 793 -897 461 845 291 239 739 -548 -772 912 292 153 892 -281 -664 -64 549 777 75 -715 -805 371 -622 921 759 -752 39 -642 -194 -363 -781 -548 640 860 516 194 448 -877 103 463 44 -752 -497 799 -660 638 -995 751 -617 -729 730 -624 875 796 477 -616 580 -758 275 425 34 795 811 720 -905 338 682 -495 687 464 -297 -35 798 -523 700 -302 238 -120 -597 -719 -640 166 -62 -813 123 -353 906 128 -235 328 893 128 61 967 440 -764 -293 829 -190 -500 -528 -463 137 -983 602 587 -766 814 706 -750 -684 15 -513 -239 -801 995 958 162 -150 -136 -716 -14 -718 -24 -546 -791 -2 384 -355 -212 -728 -881 -572 -650 592 107 337 919 -710 565 296 -936 -554 -767 -516 556 -523 264 707 191 367 864 -864 216 421 535 -610 635 -756 -740 563 -984 297 159 570 -953 940 -359 570 -880 -627 941 552 935 -351 -559 241 -38 954 566 778 97 -799 224 902 -719 826 7 59 716 -803 768 -701 -559 351 469 -354 917 -687 76 949 909 304 -173 -475 154 137 -288 -968 988 -672 -764 731 78 373 977 -438 -690 -605 95 15 329 865 -325 474 899 124 99 -213 -237 -881 -440 274 134 -834 878 608 -849 -826 0 -826 -630 -172 -571 -511 256 561 498 -464 -913 -583 608 285 690 -581 -418 -737 -883 303 722 977 457 -488 -558 193 -763 235 -822 -951 660 481 362 326 500 30 -313 140 -367 524 547 285 788 199 505 -222 399 903 -135 890 312 889 89 -400 505 326 75 739 -388 -138 855 -585 611 246 187 -596 286 207 704 -333 529 -37 269 428 -99 -741 58 632 137 703 -949 -21 -760 568 104 -617 926 362 -864 863 754 255 744 437 -111 -954 -605 -381 -829 -582 607 -111 -480 724 -654 -965 15 -185 -227 -173 270 470 -482 -67 493 110 -287 845 -879 -644 110 61 -916 755 337 891 415 -747 662 344 -816 579 199 187 -339 361 384 -120 319 -52 -52 580 713 539 208 115 926 667 79 451 444 908 -612 -518 -386 116 -635 107 163 -923 561 -461 551 -310 110 354 74 341 -914 270 -412 549 -494 -510 831 -934 -215 -101 -20 5 -462 -954 14 971 859 264 756 972 21 -701 380 162 -579 -628 723 504 -518 19 574 903 -925 -102 844 -500 -824 -1 -73 223 509 346 421 814 -110 189 667 -32 881 -485 -235 -803 727 138 472 758 -614 -358 403 735 518 -511 -806 975 407 760 17 -577 -2 -711 504 -431 180 784 \n727 235\n-643 984 149 680 -249 147 -407 870 602 -210 -969 -656 278 627 3 665 -783 394 907 -444 721 350 -935 156 -56 499 -316 757 306 806 75 112 -992 948 -494 370 -961 763 903 573 -791 727 170 -454 840 -63 302 93 543 -941 672 -129 952 250 -648 -457 160 215 -562 868 -26 -901 -910 313 635 -255 817 -592 839 -490 513 576 -209 172 605 -926 776 -714 -434 -677 628 120 -775 136 -693 -52 227 969 -380 -620 489 222 320 708 723 -591 347 -424 780 177 282 857 756 950 577 -775 184 -386 428 -284 -400 -431 -775 641 303 27 -767 -942 150 493 398 671 434 -555 491 -890 -169 383 56 -130 -665 341 307 -6 769 151 301 458 365 65 62 397 -47 -61 31 -602 192 208 -150 -792 979 140 -509 178 579 756 -692 263 56 -355 3 -426 -599 221 544 -467 -534 251 -639 453 292 740 789 -830 -838 119 -668 18 67 -706 130 784 -658 710 698 331 726 328 -225 -27 -41 713 650 -218 -862 -495 11 -151 189 -243 -926 678 187 873 569 438 392 3 -502 217 95 926 452 -792 -513 83 492 477 290 159 780 -230 163 -588 239 -561 886 -301 -875 586 -21 198 954 367 196 778 282 229 938 -803 -270 448 -900 430 170 999 722 292 338 573 608 754 892 73 846 -953 697 895 648 855 385 917 399 -804 -828 439 -542 382 -657 59 -326 150 555 806 186 -857 -494 -277 380 -215 303 -429 -326 231 249 835 -362 -706 -33 972 347 987 171 -439 -73 669 803 126 601 533 805 -169 19 -900 -325 -771 274 999 16 579 -431 -886 832 3 14 96 -388 717 -904 285 -942 233 -959 -683 787 296 949 250 519 -349 -598 -160 222 718 -401 -686 932 207 -403 32 174 -239 -435 185 -223 -106 623 236 228 -533 974 -356 -432 965 917 542 328 248 -10 618 -696 -338 675 -574 253 178 168 826 -345 -363 -893 981 562 747 -337 910 923 -695 -186 924 -73 717 -534 127 -663 608 -731 -548 -347 744 161 229 -511 -247 -826 239 392 405 937 258 147 565 -448 485 619 902 -232 943 996 -116 -885 -511 843 84 88 724 -179 683 67 534 474 775 -152 924 914 844 -659 699 -985 -944 939 533 -842 -64 925 872 937 729 296 -547 890 -559 290 -269 -843 298 -58 -893 373 -628 -436 483 -727 253 -353 -925 547 -511 -932 651 296 114 -790 -52 -246 -953 26 -782 725 259 -90 -138 670 835 816 318 -992 944 -254 225 788 -965 -735 -227 -738 -474 51 538 434 -250 -487 -174 -667 459 -186 902 328 -481 842 8 38 748 93 -213 247 -901 -32 162 -826 -452 331 -1 584 133 243 518 -289 815 -614 986 -677 -980 83 -196 -596 836 744 -483 -207 -977 842 957 620 -532 865 -187 453 335 352 -458 801 873 -561 -43 770 421 623 188 782 -571 -563 110 534 -933 96 565 -426 715 463 -115 -315 -456 347 653 -759 563 582 556 504 95 -114 173 -686 -636 137 97 41 -500 622 -222 695 -654 33 596 -876 -262 519 674 421 258 655 198 540 15 -830 40 431 -178 -340 504 161 992 -965 -963 168 326 98 58 -637 657 669 -451 967 824 8 54 -727 733 -958 -137 157 -936 -88 821 -83 -132 378 375 -461 864 84 528 407 751 -242 333 783 -608 -332 -903 254 799 -278 -627 -75 994 -392 172 -192 -964 407 884 899 142 -843 -151 -527 -905 464 833 -56 957 373 -274 770 -414 591 401 219 -529 647 -222 -668 515 -344 815 421 691 -706 -556 -526 491 242 -459 222 -114 151 972 -608 581 638 -438 808 178 -151 -8 -467 -707 350 -673 -781 57 467 529 -272 -175 147 766 -788 -59 549 128 601 -696 -453 -92 -158 -710 860 989 678 -256 910 366 -390 -861 -515 \n746 370\n-706 -179 491 -651 100 -302 -135 729 266 -692 598 -882 1 -303 -911 11 -724 -615 -677 -461 327 -757 448 -357 -453 753 108 36 75 -69 136 573 962 -887 720 801 385 11 -747 -102 -144 95 38 147 -558 973 -296 -278 524 -388 764 -974 696 -671 -906 -193 667 197 -718 32 -716 -559 831 -254 731 381 553 309 -62 682 395 -353 103 -411 -2 298 -723 -244 -709 -118 653 -75 -359 157 569 -699 -216 628 442 -498 -884 42 741 620 -802 46 -739 550 822 663 987 483 -40 -18 429 858 -651 920 -912 150 742 701 -494 525 182 459 -763 -737 -67 -620 -489 -66 190 75 -62 -707 -66 -540 796 -664 -512 735 96 502 96 250 -260 -339 -527 212 462 570 -604 -507 279 -968 178 174 172 530 761 -515 136 997 909 522 904 428 789 873 -789 613 918 246 550 -676 -61 816 -884 -303 -792 758 92 72 -886 -166 -392 950 -66 216 -78 -973 524 40 -95 929 392 -160 178 7 -758 -403 831 204 -24 67 -52 324 46 636 203 652 293 -759 -834 72 332 -160 66 -471 -22 -880 680 -578 124 539 -463 -424 -376 611 644 -53 -138 36 809 790 662 -686 690 -150 316 246 -739 -604 655 29 -176 603 -535 888 -452 841 71 -78 -259 705 783 973 951 -425 211 -885 -678 788 -714 -595 67 177 513 -440 241 -474 -517 -31 395 -527 956 538 919 312 -701 -830 246 -526 316 -875 477 867 -575 453 887 724 -403 141 -809 -54 119 -520 -261 -255 175 815 256 -465 611 294 -691 -939 358 -870 14 767 192 618 368 605 317 -949 616 958 -651 -403 520 -266 535 155 412 843 -672 868 735 527 99 -453 511 978 13 419 300 674 941 455 797 617 215 501 283 310 714 62 -107 -492 -619 471 -408 -74 -879 784 479 -993 -774 78 378 -418 882 305 326 -181 220 711 973 251 327 879 452 -125 899 -110 -605 954 -995 -430 999 829 400 -82 -33 628 -788 -803 -923 -498 207 206 -765 198 974 244 -709 -395 342 -552 614 270 366 -341 315 -11 683 693 -104 767 337 811 954 479 -64 114 722 -184 997 -604 502 197 -373 -460 88 989 437 -988 981 90 645 248 279 -715 217 193 -571 3 -158 -115 396 63 -995 655 254 -340 301 -761 188 -687 626 963 -594 -547 55 -361 156 598 257 -411 917 52 776 -182 -336 -723 424 99 -555 53 839 391 479 74 609 721 330 -923 -415 -367 -293 -696 643 273 958 922 -421 652 391 -146 498 0 837 -520 696 -891 74 -45 147 -180 220 194 547 -385 -203 878 204 225 462 -588 628 658 -215 387 -168 773 -739 316 -256 -853 371 -439 374 860 -982 511 819 293 -164 745 467 -99 364 -841 -492 -577 -335 173 186 928 83 -848 478 980 -817 -320 706 391 696 -32 727 404 751 831 951 477 438 -263 643 -158 590 879 311 440 477 26 -33 135 -724 806 45 276 472 598 420 292 580 -904 840 -599 204 -831 -850 130 -108 129 -212 189 983 330 279 -638 793 -512 -455 -940 590 398 914 772 136 -241 -957 -799 -293 -582 758 706 294 -465 -842 558 794 551 793 -470 -97 454 454 -251 169 -647 -992 267 292 931 827 877 -423 523 191 -887 189 791 176 177 362 696 181 -415 977 181 -297 -42 839 186 109 480 -830 612 659 768 770 303 661 199 223 -200 740 -757 -313 -51 377 960 882 454 -344 -704 576 -684 -527 762 420 844 476 -446 101 807 429 832 -195 725 661 -226 108 -464 781 737 -874 -608 121 -859 675 781 -527 -624 63 -776 -716 62 -214 675 -718 243 -872 396 195 7 723 -174 537 119 0 -832 -907 731 -190 988 3 -497 150 753 514 152 -613 362 153 125 -501 -989 -468 -778 244 948 -826 434 659 631 -726 118 465 360 369 -12 -206 54 230 770 -336 43 -52 -551 569 -389 \n879 133\n872 932 328 71 -585 -739 816 329 258 -947 175 -823 -710 647 201 -327 -346 -342 733 256 880 571 305 928 535 869 -659 369 256 -47 289 -295 962 -953 682 -44 328 870 -283 516 222 700 -932 65 -543 -791 16 -632 -762 -615 800 -522 -105 245 840 -269 753 -234 504 368 60 47 205 498 642 -526 -718 284 243 656 -607 634 23 149 665 -470 454 103 -296 -325 728 79 916 -120 -239 -719 297 724 -624 710 -551 835 -70 831 -506 513 -542 946 418 95 52 865 628 -995 541 300 -72 358 178 294 898 965 -68 -222 793 777 266 415 -707 799 -221 193 222 977 212 838 -8 -555 680 -589 688 -470 162 -346 107 296 -504 -779 -536 -362 -532 -997 757 425 -220 381 760 446 -947 -448 22 846 694 -267 -327 -690 -728 -355 839 -224 -455 -519 -511 -712 293 -401 -651 848 24 57 -754 -337 18 154 -497 -31 546 -275 759 -85 -265 -239 42 903 117 365 521 -950 314 289 280 -736 884 345 -560 813 854 880 20 115 -830 -527 -108 -915 454 167 286 -193 485 -8 -584 648 516 366 -952 -324 410 534 844 118 976 925 458 459 597 -898 -49 78 332 87 -54 -641 33 -195 64 184 -807 -747 -516 166 -861 765 -715 862 -381 -555 -551 380 -339 974 953 -705 876 -473 189 610 -612 786 652 729 -367 -636 513 -891 -129 -919 470 -544 -198 758 588 127 115 416 710 143 690 849 791 -959 130 734 655 -303 557 -684 -602 20 328 305 352 840 679 65 -774 408 -231 -706 556 548 593 -913 893 866 374 -915 283 756 357 973 -704 -797 782 245 838 656 411 -998 207 -441 -530 368 286 634 -677 -221 -828 656 -297 -413 -940 -899 -810 843 368 561 -542 -366 -225 -116 -981 505 475 -15 984 91 78 -125 -751 -471 438 -474 -81 -733 -740 -416 79 -640 516 -179 977 -47 -85 -381 352 28 -331 467 979 -951 16 -719 -475 -867 903 -652 -806 936 31 221 199 8 -39 798 996 -83 316 176 295 -475 364 210 230 231 -839 -931 804 796 -792 -761 125 544 448 213 -901 406 708 -828 402 -829 970 536 69 896 672 317 -446 175 -533 988 -813 956 -750 -524 -169 976 434 332 -364 -164 -302 466 805 864 -234 398 477 -311 154 -280 75 736 318 -582 985 575 851 -711 -676 154 527 307 503 -5 129 585 -289 367 -487 -288 154 458 333 -525 994 479 -933 -619 -731 -928 426 662 977 -707 116 952 257 566 7 117 -88 -85 -51 974 623 854 -877 -705 -702 -950 461 583 141 -697 974 -197 516 109 -257 -443 -877 679 859 712 -949 -174 786 389 47 -307 -884 981 697 575 -8 676 -812 421 523 -349 136 812 204 -385 910 206 928 655 812 -859 535 -751 213 -679 -101 -550 374 183 370 21 -362 320 -146 673 903 -689 382 21 -790 -940 -905 291 703 961 716 15 427 466 51 693 473 -448 -942 573 186 -581 -488 -214 -324 936 523 -824 -362 812 -306 -641 954 337 845 -465 966 -330 17 -765 900 21 -78 -408 814 110 47 949 -939 444 -806 23 628 -499 437 826 -719 -480 -285 927 360 536 27 19 251 -513 614 -312 -827 -823 235 315 70 233 289 580 270 617 5 986 570 336 71 900 -683 -623 747 121 96 -15 -81 305 978 699 821 489 809 128 592 323 -245 340 549 635 709 -988 -429 4 380 316 -628 441 -39 459 -833 -852 952 -764 602 -755 142 -358 950 -86 530 821 121 186 -28 -479 531 33 476 -111 337 -807 162 758 498 -694 646 -453 772 876 936 -765 -501 376 114 -647 802 -696 161 -172 548 246 -640 -574 -901 -326 -156 -476 335 666 393 290 590 526 691 935 -345 356 -886 894 373 930 471 126 -170 -655 233 -82 68 369 305 -273 -683 -146 -618 -14 -595 742 362 113 989 -62 -251 645 -916 337 -642 -760 -433 774 67 118 288 -395 236 726 -552 -417 757 259 -895 -509 -879 -93 243 296 858 -46 714 184 -661 -837 -396 678 -690 -558 308 702 -511 -856 378 -114 -310 -221 -219 -447 901 670 672 846 215 -525 771 -236 -802 -216 805 59 903 -725 923 718 917 641 308 -353 430 799 -908 935 408 -463 645 466 581 452 257 343 60 -677 -776 439 590 837 -960 823 146 -539 -256 408 913 955 -733 96 -914 -435 -861 775 -879 983 942 963 295 973 -848 -229 698 138 639 26 688 -851 -658 -842 -178 -237 415 -388 63 -645 405 473 897 792 807 -916 -53 749 -808 552 -526 414 -18 634 819 859 221 -955 164 -63 150 \n820 361\n275 246 -47 13 291 46 789 -612 884 -176 -536 900 400 461 -692 880 165 -910 -170 530 636 379 -275 373 418 -389 393 180 -378 -139 62 -873 921 -825 -315 207 -992 -140 178 -400 782 -952 -813 384 147 762 61 16 815 502 83 -524 -993 -866 171 909 856 617 892 -583 333 418 241 268 638 -630 -443 984 -949 197 220 -603 -40 9 -398 946 239 906 -754 382 328 536 -121 347 694 -484 895 -746 -110 856 859 -592 -152 -594 584 829 -572 -421 983 398 -971 720 362 92 130 -365 -171 970 42 27 -315 410 506 893 955 -481 508 -1 -855 950 -76 -849 -598 552 396 925 363 181 483 -503 -335 -427 481 598 -205 -355 -676 259 -164 529 -614 -111 441 453 301 140 714 -325 49 959 308 665 570 724 797 653 -80 354 -395 99 -745 635 -52 590 -55 637 -427 -496 382 -12 -722 237 90 -525 906 710 47 -693 -605 127 320 592 -892 953 721 994 -529 777 -996 441 951 207 -888 -657 532 864 349 959 862 -468 -873 -22 876 632 -758 22 872 -997 930 -816 -987 752 166 -979 -633 728 112 -786 481 883 -625 -363 615 281 287 793 794 767 707 835 493 678 388 915 -970 -633 755 -201 186 283 285 -925 71 678 124 -584 170 -53 639 380 -725 -547 -61 -911 -659 482 470 652 -539 277 786 922 385 846 -247 91 36 777 136 45 241 -382 64 -589 214 75 275 720 528 72 582 -368 -718 -498 -18 797 435 281 -45 -457 -16 -913 161 490 752 -308 459 636 187 446 269 -461 579 -496 836 -687 626 655 154 -385 346 850 -142 30 227 79 591 45 -912 606 309 48 394 -651 -488 -197 660 321 879 -256 -686 178 -442 662 666 976 -784 -19 666 816 842 893 648 -297 597 -495 -244 -18 -725 832 -209 465 101 -417 -456 548 -111 -314 -324 220 -211 -270 -413 892 559 -250 509 487 12 2 -310 40 -105 -708 -74 480 -846 274 -305 891 -514 484 831 482 -485 -405 371 275 687 730 -577 -29 79 -614 -864 357 141 -512 -805 380 -936 434 -382 726 329 908 -648 -308 -702 -496 866 -426 440 -180 128 434 -301 -2 153 -888 23 -715 633 316 723 840 920 492 -859 -512 96 -855 661 197 627 -586 -977 -959 11 310 831 -671 -232 968 830 -709 838 944 -846 283 -740 -595 311 -159 558 -338 464 189 844 -64 -233 -538 -312 -496 -369 626 868 20 434 -708 418 935 511 697 858 476 -397 248 -80 557 -727 -5 -915 453 128 -869 567 -198 77 -676 -748 -228 -400 -423 -765 735 631 -602 -849 277 698 851 -45 -710 945 -549 -48 -63 235 -358 822 895 472 242 310 901 -129 -965 492 616 882 541 -128 517 647 -686 845 925 396 -156 -931 -988 -387 -469 -381 -315 874 123 -491 919 -58 -214 -721 736 -226 -984 -478 227 -121 488 782 232 120 336 -401 85 110 -927 -402 497 1 -472 -552 -633 -500 -792 -600 815 500 164 -258 158 193 145 208 703 979 73 818 -407 67 557 36 -767 -645 -998 526 235 845 -131 59 -803 -631 -350 306 -845 -653 134 -192 -585 -869 334 37 739 -121 -789 939 805 -877 501 -882 962 4 980 702 -556 699 614 -151 -583 -757 432 -664 -276 853 -670 -704 871 -79 727 565 -457 -880 -380 132 -6 936 -476 882 -968 679 106 -70 867 -358 -877 844 623 370 120 540 201 828 816 -609 730 388 -233 571 -343 -929 881 -973 -111 578 427 767 920 -816 -149 157 666 -530 -882 -167 410 -936 289 -447 -536 -896 -68 806 -706 -500 882 207 -903 -802 222 114 -741 435 830 -826 307 396 -220 247 360 392 832 -501 -826 -420 -900 572 -31 -698 -103 -574 -552 367 -931 -212 -169 293 151 617 842 49 901 461 465 213 653 147 494 847 424 -491 750 -377 -702 -265 -688 263 153 837 -555 -684 -359 673 542 790 28 638 206 -341 -221 919 -284 928 455 820 -764 264 46 -576 -199 -130 14 339 -202 330 854 954 645 51 247 362 653 319 -177 112 -458 253 -527 -580 121 -934 -846 273 -276 -159 146 -783 501 -203 -858 -370 102 -526 886 712 -676 -730 -160 918 704 -694 -640 699 381 178 -598 804 940 -997 284 151 67 975 -626 224 -17 311 -160 327 924 \n762 455\n621 -702 380 -439 44 914 -454 -91 -754 -524 -181 312 96 213 420 791 810 -835 -464 -873 465 -382 -187 -528 920 811 741 347 -39 -203 -118 246 -26 173 -974 648 722 -824 -918 -4 595 -514 -292 -545 -69 540 -659 -690 -868 860 696 -454 -840 -129 -414 -656 -725 -762 -315 -72 404 248 -888 -281 -552 935 805 169 -458 921 139 -132 -30 -347 -680 -449 -35 -782 583 763 71 15 406 -954 457 560 718 40 541 637 494 548 -35 -175 -751 -538 960 -917 -833 625 331 142 469 571 -298 432 786 -129 -555 -356 25 589 835 959 -280 -886 -354 -498 -107 271 957 -803 -214 536 -987 826 500 787 -89 430 939 24 342 -501 341 802 -951 791 665 536 -340 -524 664 -125 961 657 856 -216 958 223 509 -717 -791 -476 -955 -946 628 657 -469 179 467 170 -81 990 -338 472 642 -920 -997 602 -61 -6 -950 168 796 181 -167 -767 54 762 -770 560 700 434 170 489 886 -540 -711 -506 452 714 934 217 909 -764 550 71 -572 -173 221 -656 -30 -28 -97 87 637 716 719 -792 176 188 -751 -20 73 863 -374 593 22 997 371 -831 784 -777 -250 -500 -383 -737 -61 -232 483 -657 630 -594 549 168 573 -161 484 74 336 -852 -144 540 174 -731 -939 291 67 -388 995 -845 360 471 257 -134 792 97 613 613 100 277 576 853 544 -206 672 -916 627 655 -552 -911 283 -219 261 -556 694 -901 922 622 994 322 53 461 582 114 976 939 783 938 -329 321 53 373 970 -392 -667 670 609 608 282 -216 -601 -108 278 14 448 747 119 427 335 145 586 995 133 -140 790 -600 196 424 -599 -871 -178 795 -615 72 -865 218 -855 -9 184 194 250 876 384 -320 -355 -972 -7 313 106 516 569 66 355 -160 482 794 351 154 -789 507 233 286 -352 965 170 -775 381 731 45 -400 371 -780 -92 283 427 891 -697 749 92 71 694 -64 -168 139 198 -648 964 -183 785 -615 243 -190 292 801 -499 302 -646 -336 719 875 92 -865 996 85 286 -701 412 781 -873 850 774 452 307 47 524 571 -393 -443 899 220 996 -903 967 -856 304 575 580 431 196 -389 230 515 469 -814 266 445 626 -779 -170 799 -297 393 973 -272 217 -826 181 -883 838 378 -384 200 -969 626 447 273 109 457 -706 -358 283 254 -882 898 -494 38 -237 812 -824 780 -150 904 539 652 -226 -195 617 376 300 746 45 436 202 -499 839 9 -558 -594 -700 -373 -373 -941 -755 -865 -27 121 641 714 118 59 -206 353 -647 672 -782 -979 -452 -805 777 593 888 448 -444 -217 -753 -413 126 -355 553 49 -219 -869 694 419 -76 8 634 430 -229 96 267 -369 -182 528 -108 295 -59 -412 723 767 124 221 641 429 -549 705 -53 -87 -966 120 73 792 -892 -176 396 953 -631 -618 286 155 -498 130 -127 846 -615 -187 600 -350 320 305 -191 -664 927 -85 -568 209 487 -732 967 48 -112 681 839 -359 327 -838 -590 13 115 -247 719 -543 1 71 751 -211 -449 361 -800 564 135 -161 -929 929 379 696 -827 229 74 515 46 -976 -931 -956 490 596 282 -320 -7 225 -912 63 749 458 -745 864 884 -566 -477 930 -542 -977 -151 636 320 840 -753 182 -964 776 670 -421 922 863 479 787 283 809 135 165 524 -829 486 387 -649 613 -282 763 815 -97 409 695 737 549 705 -466 -204 367 472 519 -371 522 324 -435 -611 390 -588 -629 -88 845 877 837 871 -215 -686 386 466 639 -84 946 287 676 -575 -535 -217 625 -211 -540 733 789 576 68 -358 -755 -163 619 514 -315 -547 -91 -163 -240 348 880 -159 -625 -743 612 936 248 240 205 356 -253 918 714 430 396 471 361 212 -74 -490 572 783 148 3 727 -110 -321 723 91 147 -147 -77 -759 116 913 505 -2 -411 -304 -453 946 231 -166 -767 648 -673 670 436 49 560 271 485 -159 725 -988 205 358 \n935 567\n-667 882 741 419 84 956 467 -27 417 -286 99 -490 -174 77 -318 805 256 -72 487 781 -293 739 -743 673 711 190 948 210 500 412 733 189 81 -524 -112 92 -490 -900 -253 -477 -67 -841 208 -17 675 664 419 -15 -108 -800 937 399 132 301 516 503 927 -903 -560 649 778 185 174 419 945 -131 -538 662 618 712 845 -191 -832 -336 476 -57 226 -855 54 -985 377 276 -978 825 685 964 807 -805 273 468 -683 -641 -610 -922 373 49 292 -829 -882 511 -549 952 459 218 -840 692 397 17 -467 467 464 859 -521 -749 129 330 993 -174 185 -820 301 766 931 553 132 -400 -994 -416 -537 -828 392 106 -746 493 856 -452 833 515 -549 -529 958 -2 808 398 -683 -922 599 109 175 533 -904 -403 716 -828 610 -209 -97 -82 -621 471 -712 -719 -469 -596 -57 -590 483 -943 941 -959 659 306 644 582 863 -745 784 43 210 735 -39 -488 -302 794 605 -998 -103 746 -335 512 222 -782 234 -478 -591 446 -178 -651 100 122 443 -864 71 -906 548 943 -483 892 966 280 868 866 -705 -103 -634 81 136 -308 -715 683 -600 82 -382 -301 133 -465 -624 809 -957 701 -923 269 467 -916 978 579 150 435 446 -984 455 -186 164 -77 446 363 5 504 397 -871 828 156 -28 873 -764 596 595 -889 352 916 -91 378 -712 -49 758 421 -259 -652 706 564 911 -779 90 159 -771 792 685 -99 901 152 325 -182 748 989 -833 -44 488 -388 883 -109 101 -152 -427 708 916 509 -211 834 106 -70 929 681 119 -191 -327 218 -511 -587 -926 -991 428 -32 -239 -889 859 782 153 -675 -987 708 182 565 -425 979 661 563 62 -81 -338 -227 863 695 -841 -522 -228 443 -311 -296 -58 -119 57 -639 -305 232 -843 488 -463 -592 971 -391 -75 -45 755 154 -651 551 410 -733 830 277 499 753 27 -241 -156 -208 248 -680 -729 178 235 -731 -887 492 405 -993 -689 860 946 -322 -655 -38 -490 197 -554 546 -563 99 833 860 517 -298 206 18 -404 -35 898 -474 -570 -429 -957 265 715 311 -767 -381 214 401 482 500 843 -492 189 10 -279 886 75 639 258 -240 -314 -199 802 655 356 944 492 790 -9 440 -202 65 -451 -572 320 -204 -505 522 -838 698 -541 288 74 -7 710 -386 411 911 -270 104 750 972 549 158 445 548 692 603 99 368 51 -74 537 -351 588 -804 492 65 757 747 -765 740 570 488 639 -618 -433 559 701 992 404 -838 673 681 -850 761 662 489 -111 -681 -487 -715 431 -496 350 -660 823 207 286 -237 260 -505 97 997 890 213 227 765 -494 -607 116 930 -892 -280 506 598 218 649 981 911 -355 484 234 158 477 -211 265 -290 -764 -951 374 -611 669 627 -556 -327 667 -726 -605 968 645 692 475 444 -766 21 -650 339 -196 309 -315 93 -322 235 -531 946 -366 -802 -290 -848 -635 587 349 -528 -24 -329 780 -737 991 -907 -925 -364 -719 -125 743 102 211 808 816 -905 784 -685 727 235 755 -470 258 637 889 542 -354 94 277 747 882 414 -981 -443 724 547 565 252 723 471 235 67 -970 856 -257 -998 172 679 295 266 129 -849 550 646 -608 713 -222 -13 -696 172 449 984 797 76 -277 -650 -25 998 710 642 -920 963 -793 60 -891 507 554 265 430 893 -424 -691 818 600 452 65 -692 269 693 -721 -940 843 -223 -465 998 170 -103 -549 -405 944 592 340 515 360 146 -570 554 -541 670 -504 222 163 555 -752 -473 303 -587 -185 470 250 711 17 630 482 823 438 -78 808 195 -356 966 627 301 458 428 -564 -892 605 927 -760 -483 155 -565 258 -848 321 -622 -854 237 -310 286 750 -835 405 -158 -385 -626 -607 476 -879 -209 -903 -431 135 -540 -260 196 865 -553 859 -595 348 -563 346 -90 257 -919 -190 945 69 530 126 -101 -483 241 470 765 392 318 -989 480 958 -186 -871 437 -706 630 859 -969 630 728 -878 989 407 557 518 509 -696 -465 -232 -507 -845 440 475 -25 545 489 483 -610 -800 46 -983 -298 469 13 -626 -706 198 -737 286 517 915 170 -589 -461 891 -497 -30 223 -191 -565 238 450 229 633 -508 252 -646 -523 796 -934 216 -263 -141 219 989 962 83 109 850 951 653 527 -857 478 -536 444 831 567 -858 -479 207 451 312 -840 653 620 833 -894 -884 -368 -377 663 936 810 -863 -218 -173 689 375 -598 982 975 -224 0 -510 -404 415 -288 715 -32 363 909 894 -204 -783 -589 -629 761 603 677 969 199 114 39 -569 680 933 815 364 -699 -415 45 -603 -362 -112 -86 -477 548 -3 -659 -112 -75 983 -993 487 519 -985 -991 -358 569 424 -179 232 -113 -976 453 -641 -712 752 218 453 -647 804 -707 -567 815 580 859 -579 430 227 677 -437 -728 848 363 -367 244 480 496 \n719 386\n287 -334 282 -501 75 -515 820 -967 -555 140 283 -225 -404 -719 -692 82 438 -243 -650 861 541 568 123 -859 986 -940 153 580 88 647 602 90 -416 -432 216 -206 942 -565 705 -40 -674 -991 88 316 -463 -516 499 471 -831 -451 331 566 733 67 -327 808 -114 -445 -753 255 257 333 -911 699 67 357 -971 -790 -683 -530 -444 -113 346 -494 -739 342 509 -844 -222 -668 354 174 809 -382 103 986 440 -260 259 -529 798 -872 -571 63 -49 -627 702 -662 -212 -198 617 -435 -627 673 -516 -447 -147 263 -339 743 167 639 -430 853 244 -749 -162 77 -478 896 325 880 161 49 790 -68 513 730 -171 514 -594 -829 216 -919 696 56 743 964 -144 888 675 566 486 203 -99 150 412 -956 -805 938 842 706 833 -339 -96 554 -290 -661 414 17 -705 233 -549 163 -801 310 -475 983 971 844 -410 944 11 816 249 -253 18 -275 474 905 -83 -19 779 373 382 -360 -709 537 -295 0 712 111 152 988 -661 528 -611 249 170 -20 -297 967 778 471 838 149 378 374 994 355 973 -422 889 687 457 422 -260 785 -792 0 -182 -703 288 252 -744 -330 203 -173 966 526 -143 -425 -895 366 -159 197 417 -70 408 -767 683 135 301 -411 -737 158 124 998 835 69 -447 -326 710 161 -636 -832 98 195 222 192 338 -783 297 997 95 -688 -385 -699 470 -929 28 -711 125 205 3 926 522 801 -181 630 -396 -285 -164 -283 -719 -990 -102 324 677 367 454 -603 -816 -347 -992 -993 -73 429 905 -168 260 0 540 406 745 79 -238 -873 292 -62 643 997 542 -655 350 24 -970 351 182 119 -97 782 483 966 -103 91 437 -212 691 5 245 180 507 -170 330 669 581 116 14 539 175 543 910 -92 -793 -253 -494 547 -838 323 218 -689 822 993 46 295 519 573 455 910 127 680 -391 -927 243 -176 -237 -163 523 61 259 364 452 996 231 -825 285 302 -698 238 547 -602 708 194 701 935 494 -688 72 435 -254 655 -940 871 870 -754 -653 673 414 240 147 -272 517 636 786 251 4 -494 -539 875 756 865 -473 -500 -531 -107 -733 160 27 624 314 4 -890 399 842 -73 131 852 536 397 -163 28 -107 -727 -181 260 689 526 247 -242 922 -427 3 -810 -376 714 -647 819 998 69 765 967 718 385 339 783 -393 -935 -4 -29 844 -236 174 880 677 553 26 59 -58 -420 359 366 954 -797 463 611 -865 555 168 -802 728 -748 -141 198 -371 672 426 222 306 -487 -403 -781 377 694 214 226 -48 495 212 -169 -171 917 -357 -472 3 212 9 883 -163 -719 -591 -680 540 367 41 -412 -746 739 126 -588 -140 -379 160 381 552 -892 -739 348 492 911 52 -414 926 386 871 394 -358 -205 -664 394 414 518 -27 -230 665 -710 -900 -89 -393 377 728 834 -839 -874 721 -324 -936 101 -518 -214 434 -547 -169 699 371 -506 687 -739 -617 538 764 -529 611 417 204 -307 -183 711 -835 861 -322 -763 974 62 -500 620 616 418 713 441 238 870 -145 762 339 311 864 -645 436 -571 -71 -514 -333 -286 361 -958 235 151 95 692 -816 -441 -852 -919 -154 226 -530 882 828 -87 683 417 -203 -750 -585 533 -258 690 223 -787 -135 35 85 -589 -244 355 -656 839 -614 387 479 -52 425 -692 687 255 -11 662 25 307 -885 -212 31 683 333 669 -490 754 -934 125 -807 532 414 890 -181 371 -983 -200 872 140 687 21 -337 111 633 326 -916 -330 369 -856 -697 927 -235 -448 556 -209 -165 -291 -821 -635 -528 -518 432 97 59 816 493 -549 -960 -971 2 555 950 679 516 38 -557 743 -10 -785 669 146 -338 -622 -711 139 -442 -882 386 \n869 211\n650 -881 784 -115 -742 -621 792 -613 835 -393 -372 988 -118 -350 136 849 766 -769 -790 275 326 -714 109 -598 287 -262 541 439 -420 589 -844 -545 4 -692 -44 -164 988 972 635 456 -386 538 -354 839 955 677 878 -424 86 267 -562 341 670 -596 -252 814 884 429 51 -139 315 327 727 -814 866 -829 737 78 150 274 -518 6 -205 705 16 628 924 -738 326 -218 34 275 -711 752 730 -21 747 -705 765 387 618 1 806 207 58 -317 37 -525 -614 147 -620 -342 -161 -294 653 525 207 899 -49 -981 293 895 530 -522 -716 -686 91 -532 738 493 715 191 49 298 -342 101 310 911 627 467 -579 -202 479 143 365 968 -704 249 926 885 203 -167 677 -197 647 351 905 935 -488 -753 -218 20 901 50 -536 685 754 498 105 -762 902 -191 920 996 -886 -496 849 -596 720 738 558 665 -177 743 292 254 72 -490 759 -441 -41 -460 330 278 107 250 119 434 258 501 381 -960 205 -81 773 663 385 -830 -413 826 -140 10 333 -471 843 237 37 -577 645 -283 836 -998 486 -278 -834 873 -733 -1 991 433 918 598 -298 440 337 -441 195 421 672 -267 -9 691 93 -928 -637 -616 994 -329 957 294 287 923 618 -549 176 750 874 495 -564 -590 -727 955 951 893 -790 291 -640 888 553 -406 -292 470 -742 374 -786 508 701 563 -501 315 486 -686 69 520 432 887 -381 -732 443 287 -766 226 215 655 187 -107 -483 911 -612 -261 903 -832 404 559 26 -139 810 -847 910 392 155 -108 902 344 679 804 -527 954 919 0 452 706 -126 963 568 -805 -845 -879 -848 926 668 408 614 605 320 -198 199 -171 912 959 494 335 831 -771 872 -548 421 351 -461 544 62 -715 -893 -590 41 475 441 61 -986 -161 -741 -735 537 401 509 940 -968 -972 -445 732 -913 710 839 704 550 217 441 426 751 -119 948 832 -160 115 -679 701 -296 -353 873 928 828 -594 -403 -195 865 625 -188 -205 -893 -848 866 -8 559 -116 -176 -732 722 -740 275 490 742 990 -83 -378 951 362 -32 110 -828 270 -827 61 201 128 920 473 -382 -615 707 -384 22 -642 -880 799 -905 39 889 -730 602 254 420 869 -81 -155 347 127 554 464 866 -42 -652 -512 108 732 -323 -637 -302 888 735 -523 -971 382 899 323 590 -983 231 497 -211 -930 -598 -822 310 842 72 -190 -66 102 705 43 -172 -871 169 57 142 -597 258 608 637 915 653 885 498 -646 453 937 -180 -130 -593 -585 525 413 -199 356 -689 2 -404 -360 186 -247 -757 -877 863 55 929 960 736 929 -452 -914 -627 103 550 -622 194 312 994 222 219 887 -968 -319 831 -873 347 153 523 627 -916 -472 570 122 -445 125 -929 201 334 125 82 615 275 -505 434 -390 -156 733 -579 -365 452 994 -658 -286 715 331 977 160 -764 891 -94 847 528 254 931 904 -657 -260 -516 533 167 -145 220 927 -406 -23 993 -95 -350 -138 -323 939 602 -683 -833 511 -810 -102 964 -738 626 868 297 173 312 50 363 383 -361 -976 384 660 596 459 -343 -521 678 419 928 690 397 374 -180 -20 373 643 928 -827 78 263 943 -917 -419 -228 949 733 956 589 812 505 910 747 907 37 406 -355 -26 670 305 334 712 -727 -407 359 53 207 -75 73 -512 185 261 -62 610 699 321 801 -712 272 533 677 -374 830 574 964 615 40 -228 41 925 -29 -353 486 199 143 -646 327 -230 -253 -406 789 304 -81 953 900 885 627 587 501 868 452 -962 581 527 764 939 171 -883 893 -150 806 617 102 -805 981 -631 -25 -993 733 -616 -524 -373 759 872 700 -361 488 -465 701 -857 855 -848 -19 -851 874 833 -869 741 225 -471 669 36 625 -525 313 726 -306 -96 541 -713 346 -729 774 -673 800 400 840 614 -226 268 -234 -923 -311 933 333 -353 517 -538 88 866 669 -523 127 -439 -18 -456 399 -562 -334 832 547 -148 -548 475 603 617 111 224 -383 -151 -594 -761 -920 -890 398 785 440 307 855 -205 -213 284 127 800 -107 -758 961 837 783 -683 783 697 212 -100 645 374 -993 -364 276 297 897 332 224 325 377 549 -794 -222 -934 -633 -615 311 -421 114 375 677 65 -545 743 9 737 0 759 930 855 144 21 -328 850 461 -496 -418 796 133 -133 193 -301 -308 -29 -139 94 -171 141 -186 271 92 38 -682 146 -200 -803 -862 -917 114 -749 619 -180 81 -978 627 621 833 \n821 298\n746 545 787 433 -677 615 407 583 -652 856 539 267 427 -184 339 579 377 999 746 -129 746 -993 -36 869 211 742 98 678 937 778 649 -317 955 -230 -931 667 403 85 189 13 -480 -936 -719 39 -199 522 384 439 133 901 7 29 599 91 83 258 291 758 -436 182 -956 -585 279 -951 458 524 606 -57 -336 916 974 -841 364 305 479 25 -306 -214 40 -256 825 84 864 823 804 -615 318 -860 -306 -287 122 722 463 -433 409 215 -785 -180 653 -325 -244 716 842 410 78 426 603 -888 -228 -346 -99 -854 707 -956 348 725 -552 364 244 212 224 290 899 -996 592 -602 -790 892 -847 -101 526 110 -743 -478 490 216 -712 -918 257 -517 -597 392 -201 209 581 -614 -572 -33 419 522 -517 0 -94 270 895 779 -169 221 22 -614 172 -39 299 668 602 809 229 -604 -809 10 -763 342 358 671 907 -378 702 0 -566 -194 365 -657 105 762 -115 -419 86 -463 98 104 553 166 -905 130 -196 872 -204 -469 523 -837 690 784 -56 253 909 -424 -624 568 -638 676 -748 504 -967 186 -665 418 567 9 601 825 -433 -613 -752 410 341 127 287 977 -853 66 -916 258 -129 -239 152 681 -196 969 376 372 109 -586 613 411 -416 908 932 38 418 233 414 -791 80 795 601 -132 -624 -165 -30 855 -630 592 105 366 520 223 524 -747 -83 12 571 -996 452 -824 -577 -748 -288 775 562 544 949 -593 -888 -371 94 547 -166 963 -282 764 264 -994 -838 192 169 270 566 968 186 417 816 408 -770 498 386 -568 -137 426 543 -587 292 -703 358 -283 -532 261 -379 380 -967 -688 460 292 213 803 -93 -321 36 932 660 555 -76 -277 -493 861 -612 -853 15 -145 708 277 758 -761 8 204 -463 343 940 467 -759 725 66 -937 453 -38 -181 1 931 123 -786 -231 -809 983 514 294 361 -692 657 885 -292 499 -322 749 124 -632 -216 -117 928 427 622 383 -371 561 449 -728 405 -601 -393 228 -968 823 348 -663 636 100 898 -821 -749 908 777 35 -552 -190 -91 371 -217 -80 -36 -596 335 -577 172 320 38 -85 -715 -460 612 -501 920 -740 973 -564 568 572 616 138 -550 824 903 293 301 893 -283 -699 815 -358 229 977 -738 176 -118 448 102 438 -664 -43 -848 150 451 874 -986 -409 97 570 608 687 138 -946 -405 -657 -689 -855 868 437 -821 -585 -143 6 505 204 444 -314 324 616 -2 -746 538 -330 681 428 217 473 431 724 572 -217 548 887 444 755 247 287 -586 -147 270 955 118 24 -570 532 4 328 -425 776 385 970 -386 402 -98 -994 -196 -312 54 200 944 92 -87 497 -82 668 157 413 244 67 690 -407 684 -421 511 345 745 230 766 301 33 252 886 -549 -613 -952 -866 -931 995 -201 -258 -810 364 234 105 -787 524 607 -285 384 485 -195 482 958 -364 -429 -487 259 -466 550 519 156 540 -277 722 777 -660 324 281 -654 -294 112 -974 -436 -147 788 -778 78 -569 967 684 -53 369 793 825 -501 488 418 -382 -94 847 787 72 -75 835 307 245 -926 -885 -756 864 58 691 676 -728 63 -902 12 642 978 298 92 363 -883 448 292 967 661 847 212 149 258 919 390 384 628 -653 -343 -119 188 802 -178 821 -191 172 -444 -667 364 -547 777 -313 -480 -869 -478 945 722 427 581 236 -607 850 20 658 -615 -98 -422 799 -998 -650 -608 160 -604 -770 -133 -906 182 -336 -515 -84 322 -692 571 560 -959 900 -237 670 -803 -321 858 881 962 -287 -665 -95 -342 649 98 973 218 795 870 33 -61 -766 245 559 -309 631 -670 125 -74 24 -803 766 407 782 98 -162 972 66 477 -996 663 800 -123 796 -998 -683 181 787 238 510 -49 89 -136 -916 595 834 -238 194 -79 316 138 920 -192 -467 -200 -363 -940 430 463 982 637 831 564 716 -218 15 63 -768 652 896 860 765 -450 224 -715 966 -805 -637 -480 240 221 571 -652 530 378 512 330 340 723 329 891 237 -459 -482 371 908 390 322 330 16 -809 -644 267 -216 760 23 -840 507 421 -255 932 833 496 418 599 -232 -617 204 406 256 -560 635 721 -384 -909 -195 403 -166 232 -436 -509 -460 -99 223 \n728 29\n879 -203 104 310 -505 -235 -919 -655 -231 -933 924 -499 -727 60 375 54 9 644 -625 -958 -706 256 -138 -520 -722 516 268 356 -533 -939 -838 -356 742 27 202 361 559 -532 -550 -943 554 357 -703 -268 -331 167 601 -916 235 944 -528 -96 -383 -169 723 186 631 656 -92 -146 -104 535 -321 413 675 -507 942 873 523 -414 -632 -650 186 366 475 -968 557 -819 -526 663 268 -972 186 469 883 571 -894 -31 171 117 70 309 489 11 687 9 -14 116 644 492 854 552 764 -858 -329 526 426 -577 421 -783 -612 933 170 625 341 -383 85 789 -443 25 197 -657 -42 244 897 559 823 210 784 708 -245 -948 783 698 235 -494 -567 -791 -52 686 20 676 941 -752 623 -718 -891 293 -181 72 83 287 486 -654 232 271 382 220 1 999 -552 525 296 -888 -998 -757 -876 -334 330 -728 -535 271 368 -496 209 -527 922 -915 347 271 -515 746 605 321 196 636 17 -254 386 720 645 -441 342 -655 -37 -809 35 -16 -671 -74 972 289 677 -924 99 93 -262 747 211 728 69 238 583 -757 417 712 569 745 -619 -514 964 565 492 -750 722 336 -252 357 511 611 524 491 692 -43 125 -390 693 234 -334 -587 323 -358 570 32 194 -968 847 963 764 207 113 -449 -557 -715 -965 -760 717 426 646 494 -497 -598 -883 280 -306 709 679 -724 548 303 -736 303 -400 -84 745 -575 75 324 -304 194 789 701 256 78 219 -976 -336 150 894 396 306 635 377 114 653 -753 14 87 -987 -438 -146 997 -164 -535 -740 338 106 939 571 919 115 373 269 -451 -121 334 392 -542 -493 289 277 870 632 -277 -920 -677 49 -302 -401 -129 850 357 350 -235 -235 -75 -791 -400 -13 -810 -408 -235 -688 -621 -747 369 701 -234 899 452 -709 623 434 553 248 298 812 -193 -207 8 666 172 683 -223 -944 -249 -643 -28 -79 -167 746 -30 932 -599 351 -440 847 216 603 947 413 -898 639 218 -390 67 -555 428 823 -950 343 262 161 398 750 -862 25 887 -238 185 286 -222 666 750 102 -956 -512 416 -577 599 -284 256 -988 -688 -555 289 -480 886 408 -82 872 82 -594 912 -551 -145 4 249 -839 -918 -948 186 939 461 284 578 -262 -936 732 -821 330 814 118 -562 -834 247 -113 -668 192 -866 975 989 192 -879 -711 -582 186 365 707 745 788 957 387 824 486 -932 -496 -667 373 717 -954 -237 649 -237 -795 415 6 382 818 -572 -630 477 -576 -27 237 -476 -294 -121 -268 856 45 -557 352 -4 -21 -201 688 532 -815 -855 546 -162 -203 170 622 -861 458 217 944 53 325 64 283 345 -684 -462 777 -929 -328 -152 -612 340 -514 44 -161 -675 -161 -111 760 844 -600 -64 741 216 -189 971 561 -597 564 519 937 533 906 -360 -22 941 82 -173 963 375 -947 523 -419 -152 832 185 -465 -971 39 -194 462 996 -363 134 534 -742 938 -376 91 205 951 -185 -192 -780 -449 -292 -799 -353 -242 657 -564 332 137 -395 40 708 497 801 127 738 968 472 -242 -804 0 -751 -421 -915 393 -506 986 294 -613 304 765 -836 763 -77 254 590 485 793 -499 706 -497 542 -907 345 924 870 163 515 178 587 -628 933 256 221 -979 370 114 864 104 -158 157 -739 96 -893 -199 778 108 738 -977 -76 -303 785 548 -430 -372 14 681 751 -437 379 -751 -794 -533 -662 257 231 935 48 278 34 989 407 39 -810 10 757 -565 611 232 271 -576 -157 363 -471 657 66 -99 283 416 -420 -198 99 383 269 788 655 285 621 -866 47 676 520 31 -568 868 917 410 622 -749 -408 -346 580 449 761 -980 518 -39 -915 441 -872 394 469 -77 292 920 501 537 496 468 544 266 -78 252 -675 \n940 258\n962 764 -382 656 -750 -21 -427 851 171 -874 -37 780 956 -862 608 858 393 505 678 631 -493 103 939 738 174 338 -985 -59 88 260 -821 -106 530 318 -104 -432 919 4 7 300 207 -678 -883 -967 11 32 626 -705 -149 643 61 666 566 162 120 -777 989 990 -501 497 55 659 -265 55 913 305 684 405 -320 99 270 802 594 -451 -341 -800 -434 700 176 -252 608 367 -79 -650 -726 -647 416 166 980 -84 644 420 -717 -724 -608 857 368 -205 621 -560 144 876 -256 -358 996 -386 -154 -902 360 -377 241 285 450 -276 -653 991 357 12 -988 97 -306 -236 350 412 -938 622 26 721 461 -811 560 191 -735 -518 -317 191 -229 522 682 817 612 960 885 435 667 890 -158 641 -764 171 -915 680 207 676 -636 442 199 209 776 469 682 -601 -302 748 -285 -58 725 301 494 -747 669 473 865 -496 860 -487 940 -113 282 -777 26 -347 893 181 539 22 973 -93 -130 957 -801 79 -831 -137 960 526 603 446 601 144 -838 -869 -476 -878 -636 -345 766 535 795 -930 865 -885 215 148 234 943 311 969 -145 101 678 -187 125 -607 162 -594 -333 974 -416 484 -448 -257 694 544 614 961 -367 323 -52 901 378 -244 -364 72 -180 335 635 694 146 901 -553 818 472 137 924 -259 245 69 -534 155 532 355 154 -558 876 581 -907 497 -345 558 -853 448 217 807 618 359 688 283 406 314 284 514 52 445 993 361 455 -397 -567 505 129 516 -911 860 223 122 586 -635 867 878 -242 331 849 -961 222 755 -315 619 891 -448 -245 -532 117 -193 274 101 338 -99 893 -692 696 462 464 356 130 182 -544 330 -103 747 623 -649 346 305 -177 303 155 841 63 341 -789 -742 -464 691 118 -169 539 -986 -986 669 30 968 120 652 -106 120 148 888 852 -255 627 339 150 -969 330 -224 -52 -257 -695 199 -551 164 534 -389 -525 -55 678 754 783 684 802 -545 42 202 408 -635 -167 642 5 629 -35 -586 -207 685 -808 382 -481 753 -306 226 371 352 386 345 -895 766 974 969 269 -716 -791 -700 32 814 -418 217 47 -356 680 -833 -429 738 -366 -90 41 208 341 512 -239 170 691 -223 -557 665 -256 754 487 96 -274 927 -52 136 -498 -849 -6 181 869 221 605 142 -292 -757 997 -401 964 456 947 -716 110 -671 125 141 271 -882 551 -427 2 649 78 523 970 275 497 245 -456 867 971 -732 419 38 571 705 35 -630 -668 648 564 -218 357 98 -858 20 -577 409 799 -218 -264 239 78 133 -821 272 524 -509 998 -659 602 -106 791 941 708 -876 -279 -838 789 -749 -482 -666 825 834 -549 161 -713 566 -117 639 874 -631 457 -620 -558 230 715 718 482 507 26 842 -719 -767 179 127 297 -792 -451 251 -818 -793 167 -788 248 303 493 -561 -651 -237 184 109 712 -369 -40 707 433 813 144 -853 75 463 -206 411 -742 201 -998 530 -825 529 -655 -274 539 -826 -300 664 187 850 -4 338 -33 810 -67 949 146 369 311 -18 -8 369 644 -53 79 24 312 829 226 144 -496 -471 -852 -143 145 83 -215 65 72 -628 -681 241 978 916 -602 -443 437 975 -927 342 645 923 506 538 -831 310 959 918 -202 712 -104 -412 -1 -653 786 843 -723 772 -727 804 -59 331 850 398 768 336 718 914 349 -545 887 224 -338 -941 998 576 242 233 -26 -489 -115 -525 162 -510 530 -932 652 -220 876 287 873 -493 221 106 198 -392 269 253 893 151 -942 -709 10 -263 303 -209 711 356 -492 -581 744 234 -676 -882 -103 -253 -409 12 625 -714 -940 419 -535 659 367 603 846 -375 833 -476 -720 160 37 -594 -129 92 531 477 -946 -364 349 962 889 -32 -891 -249 943 377 121 -982 961 149 636 -416 744 287 -224 -925 297 652 -356 659 -710 103 -540 -248 994 -262 -470 115 697 242 -198 369 694 -843 -618 241 387 -466 -295 312 372 -502 66 -303 612 671 -832 952 207 142 423 76 687 -523 506 -567 439 869 112 178 35 -246 574 409 -702 -780 -633 323 -985 257 -412 -557 -347 827 416 -790 708 -261 -687 20 313 -149 -464 -918 931 580 607 -832 680 465 -138 499 648 -246 93 610 -609 -337 790 -109 -907 -333 -801 -722 -829 102 557 207 -143 353 62 -314 -733 361 297 225 803 -51 363 -170 83 683 75 -132 912 732 523 -812 -495 628 -331 833 -705 -662 477 -360 -74 -383 -442 265 -949 -393 -452 865 -741 547 -586 -886 -509 326 215 -861 -866 -538 299 679 -748 343 248 -775 -57 -149 879 342 313 596 769 712 -27 644 406 -989 -774 447 665 -625 225 -394 -145 476 -948 719 450 -570 -628 662 -874 659 763 -567 37 340 837 -474 -442 -101 -517 104 -691 97 -710 -711 169 -626 -883 962 893 394 -687 206 176 883 861 622 \n808 343\n511 -302 179 -812 729 -545 306 -427 525 -345 -637 534 323 621 961 -396 -543 891 673 -566 776 -345 -928 93 522 -624 731 953 949 844 900 -754 -659 342 -496 -899 -182 514 978 170 -248 896 -910 90 385 -895 -223 698 85 982 810 867 -979 -457 904 -741 -879 770 712 474 -537 -541 -907 -161 108 -467 990 469 872 -73 -211 292 -120 414 -120 273 -372 344 -142 -418 384 -711 859 -578 -91 351 545 720 -273 -251 -798 -830 922 653 -570 451 -169 -879 -227 705 773 6 540 -24 -243 -729 161 361 587 78 -277 348 478 470 -581 -539 -47 4 275 -148 767 553 75 723 -831 -251 873 374 1 930 -393 -407 -479 641 813 -678 179 987 851 -948 -718 -59 -877 -665 954 35 583 510 -631 702 -900 836 345 550 -17 707 144 719 -257 300 919 -818 -823 456 -965 995 -31 -486 -32 -251 85 81 837 399 -732 -695 545 799 161 -796 475 887 614 669 303 193 -248 253 357 594 -240 444 848 -593 -701 -418 824 -467 809 528 592 433 680 -352 632 288 860 -80 -372 536 692 -156 900 -382 456 153 626 -355 238 914 -119 -26 -192 -710 -566 -990 -364 943 -31 769 147 501 501 830 530 -810 408 -840 52 148 172 -104 166 -430 -304 92 386 -710 377 -522 845 -624 -925 -553 -937 314 536 57 -763 831 -177 -302 661 20 14 -121 -453 46 388 -14 -557 -73 -64 47 497 -74 706 375 676 847 772 568 308 -473 -887 326 -609 625 -534 -530 -466 728 -9 312 352 -13 -307 -602 344 108 108 154 701 649 -784 -987 -444 233 39 -137 55 217 -643 -212 947 -628 37 650 962 162 488 -458 425 -436 348 665 603 329 -868 185 252 356 25 -989 -198 819 -685 470 616 -362 552 -201 794 94 439 559 539 946 488 140 435 989 -711 808 209 -370 172 609 -878 -431 106 166 839 -534 442 94 143 -143 502 583 308 533 950 240 85 132 991 -95 -402 -361 503 -99 -780 394 -362 164 769 -562 72 -774 -329 -399 44 -226 -155 307 815 197 481 798 123 639 128 -274 248 -844 -505 838 283 -926 778 427 194 -682 902 978 753 -959 673 -428 792 -410 189 465 554 -892 863 650 -448 642 75 807 516 260 -604 658 847 919 -708 -633 843 -307 523 848 -57 422 -87 -492 -44 775 873 -1 -156 380 -72 -173 429 612 -780 227 797 390 -636 -650 34 456 880 907 529 288 272 -23 -192 -575 875 -942 509 -705 -473 536 548 -582 705 696 -141 -700 981 756 308 683 32 -15 399 783 -495 -583 -179 -386 -949 -631 -232 160 621 894 -857 217 -924 -647 -509 -834 -348 -863 -424 427 -354 313 106 235 297 61 -447 248 437 677 477 -319 129 319 -73 290 186 -54 -203 53 -561 -57 822 -104 -909 50 473 -961 -614 -71 752 47 -155 -501 -259 999 485 784 254 -371 -658 -189 567 806 -100 -649 684 -329 -887 -14 378 945 -54 -861 -151 -959 -686 -87 129 622 793 -682 692 257 293 -59 961 -90 -698 -774 -753 -732 744 -447 894 970 -654 749 -898 -510 428 273 542 123 603 -884 -829 883 495 -78 -126 202 -556 296 789 -257 -334 403 -186 291 -167 -958 -49 -859 -589 -964 993 -925 -354 -179 685 -457 802 -902 326 795 936 -476 918 -366 657 960 -959 4 887 -895 -970 863 0 -565 -760 699 509 -720 469 433 11 866 -320 862 677 116 -396 714 152 126 -50 250 -861 680 -869 46 -179 820 -740 -412 227 -617 547 43 626 193 426 561 -722 988 117 749 -673 667 179 -125 -721 118 303 -906 6 551 114 695 -35 149 -279 -110 -917 594 -733 -730 95 -445 -681 382 860 856 9 277 424 842 -18 -720 -856 495 794 211 197 -595 991 -808 973 171 -535 -186 -33 -389 597 -195 344 602 587 343 627 -747 914 -311 575 -201 252 327 -382 -515 -578 408 -990 92 -934 927 433 -643 -963 44 -347 57 248 -395 -279 -822 656 23 -315 781 261 554 111 -739 944 -414 186 -260 747 -343 -445 318 55 727 -357 124 -822 -537 -141 900 -571 -390 738 -970 -269 147 582 -954 903 -465 302 218 939 747 451 -326 -314 -659 797 218 702 574 -611 251 \n757 103\n619 333 98 811 -713 815 4 130 698 919 867 822 289 -400 -989 780 -659 769 216 -677 -515 502 -874 -183 -718 261 10 -426 0 -138 -197 -404 166 -995 595 174 -698 -133 -711 -381 530 125 -962 -410 -697 144 248 -946 -909 -988 545 -174 87 -828 -978 68 598 -663 922 316 -52 -98 109 -268 -886 610 -996 -357 433 58 147 628 384 683 706 -889 359 31 60 739 -724 -845 -347 603 112 185 306 412 -514 113 906 145 -148 -865 462 -463 -508 -31 383 527 733 687 784 46 3 464 427 372 570 638 914 280 24 390 894 -554 830 397 524 -584 332 370 715 -290 -778 975 -864 534 679 268 987 772 -102 -267 711 -659 675 -885 -301 658 779 -156 -73 72 346 591 611 541 -170 369 -143 566 -835 882 -254 -205 581 44 308 711 591 -944 -192 725 124 -127 -631 643 609 585 -192 628 -48 -161 721 3 -144 -494 -769 923 675 -388 828 -192 423 -873 274 196 -45 609 -936 -772 893 299 -694 472 0 -49 400 23 396 -748 509 312 -827 381 -194 -578 -189 -765 328 -444 -969 894 90 446 344 -792 -912 487 579 -53 974 -948 544 957 110 -415 849 -595 -954 -974 244 -478 347 -360 -412 857 141 915 166 987 792 697 365 176 825 926 -999 398 918 148 -902 376 798 783 424 -159 -903 874 639 -12 -382 288 -977 495 882 35 249 -316 -129 288 380 592 586 -961 -254 136 -81 82 171 835 198 -173 886 731 630 974 -261 -296 457 15 -954 -164 -922 605 -36 136 443 -217 -404 566 110 816 984 397 748 60 180 832 986 49 724 167 735 -865 -555 117 616 -600 399 608 -468 -392 531 764 896 718 -779 352 -740 707 556 -567 348 772 281 65 937 506 -535 -935 821 43 -442 3 434 680 -782 -686 747 589 -103 719 553 940 -184 -443 -8 34 880 15 335 384 -537 896 564 -507 728 412 -726 660 -631 734 -249 -897 -958 -406 277 -458 821 206 631 253 716 -102 -943 -443 -420 -913 112 345 699 78 -404 280 27 744 789 293 -323 638 236 -265 93 668 14 -594 55 520 170 -424 -778 293 261 -57 -966 916 486 -606 820 -38 914 827 906 -107 -809 275 91 455 975 250 524 -23 44 681 -464 -489 549 -734 597 -105 632 649 909 716 -244 -312 502 633 -646 211 586 67 501 505 -863 360 728 401 -408 453 -154 -650 866 -536 805 -652 904 405 364 301 -136 842 -264 -589 620 -626 108 714 514 645 -808 -196 836 -327 -578 -786 9 -405 720 -539 -810 83 279 382 -270 992 -791 771 958 704 357 127 537 257 120 -84 -633 -23 -693 -807 -884 193 -435 344 541 66 -999 -462 -936 960 497 -488 -209 536 149 413 38 288 -195 -317 17 291 807 429 -583 729 -34 823 587 60 759 -56 107 132 607 -360 -282 380 -702 941 85 -131 387 -129 -206 156 180 399 -860 -6 -288 -882 625 221 -611 342 -906 319 61 -413 -970 736 915 -539 -760 -238 93 27 797 -517 542 -16 -279 101 567 724 712 -367 708 845 -503 -580 -494 442 -942 398 47 546 -290 404 -802 310 423 -203 152 418 874 368 971 281 900 342 991 326 494 510 -132 -691 -791 -514 382 -869 -655 -57 -853 894 976 646 13 -178 600 281 775 587 433 -461 846 541 25 -760 475 906 -98 -798 -370 -199 786 774 258 525 892 788 769 745 -621 -405 22 445 656 870 -789 -453 -619 -93 118 -466 408 894 -990 -66 -477 808 452 -606 972 286 382 -507 131 766 274 -874 -845 765 821 592 320 905 -807 -991 -757 357 269 203 -747 -137 350 253 300 39 -191 843 574 983 -135 934 724 748 -883 811 -586 437 -123 -539 564 405 570 915 56 -988 -98 508 207 -11 -735 -412 -233 -787 839 -939 -286 -511 209 567 -45 446 -138 289 -472 -818 345 518 -126 891 -133 399 112 -285 201 601 -981 -238 471 589 247 \n925 289\n297 697 273 728 -877 -627 -940 220 -529 695 394 -778 532 187 660 126 585 303 185 -373 681 -920 528 117 534 -983 682 280 -721 920 -950 -644 -838 691 82 877 -987 -398 193 26 132 824 -847 804 -386 168 103 -371 -943 4 -558 576 796 283 581 75 396 -179 787 159 326 -51 529 753 390 947 652 285 708 519 326 802 692 728 685 -329 405 410 314 417 -498 711 -620 -389 -388 611 507 612 526 -174 637 -169 855 877 300 857 651 -817 -702 -984 634 -318 187 -860 696 -782 -955 -479 -740 -875 -6 977 601 969 50 37 -544 -961 -112 231 -372 71 935 -629 -956 -317 167 -555 396 -734 800 -924 277 -580 777 -896 -552 586 -321 232 999 907 -505 308 221 632 72 -126 -128 -542 358 357 302 126 305 243 -893 372 419 598 -322 280 -898 -603 -691 168 479 -526 517 284 63 -20 -335 232 -61 889 -12 246 -62 882 693 641 516 -492 229 907 220 -331 -779 -728 -727 589 -203 -657 564 204 390 330 525 -215 998 172 -614 817 -818 -428 465 745 -176 434 -317 912 638 -699 546 294 519 -439 -302 62 877 155 -76 277 505 448 751 -759 429 699 299 -274 -18 163 21 521 906 -990 -734 50 600 204 -212 -672 -283 -538 -488 34 855 57 -257 291 299 805 136 -32 -236 622 26 684 552 -754 -34 167 -452 88 -180 875 671 -494 426 -366 252 -949 -507 -771 -492 600 535 -601 -834 249 941 186 -309 -212 197 -837 -90 226 -110 780 119 -127 -345 975 89 323 907 775 31 901 -255 636 21 -212 -810 -200 818 -172 -494 -33 906 -119 -360 -835 -788 530 -394 -828 381 -228 -801 926 571 -66 0 -929 803 -701 99 966 60 322 316 -884 -106 -849 -186 -31 -427 -463 557 -220 -901 -924 604 407 231 294 247 221 -499 -444 -53 458 -267 971 -847 -109 -385 133 571 -343 213 717 90 823 163 -636 -474 -24 338 -527 -765 -433 37 999 -144 757 286 656 429 385 527 -842 201 257 951 323 655 211 707 915 -219 -650 -26 -430 136 -244 392 -734 202 -20 -484 806 -308 329 378 832 -836 -821 -681 -384 458 -839 390 -239 429 -354 680 985 270 83 562 959 -91 15 724 422 933 323 -681 -614 515 -474 882 355 -996 -178 138 527 -688 -151 297 167 -240 -183 866 602 -74 -701 964 -205 694 190 -820 562 852 -486 609 35 -580 852 767 204 -403 762 933 -615 21 -870 151 -341 21 -452 -165 -4 295 402 -882 -747 319 -794 629 -384 -311 843 -275 170 317 888 603 768 -18 776 1 512 780 -340 -956 640 -421 -676 632 609 74 43 629 815 -525 862 750 874 500 585 418 768 -351 -42 -31 545 -614 -268 546 426 113 -653 -119 931 637 -585 -584 640 -390 253 646 -587 703 -860 -721 -368 220 317 -398 568 569 339 388 -455 -200 332 -414 367 327 -754 124 738 -807 -662 242 699 119 952 599 902 735 -871 -639 -844 149 759 554 352 -515 -134 139 -260 95 471 50 461 -857 944 762 -466 353 -91 -411 817 199 592 873 -978 -984 49 -171 867 648 -188 981 170 267 141 391 766 -930 298 364 70 28 13 996 416 403 -958 -634 220 -971 406 -326 854 998 -388 828 544 -378 100 -83 -357 -169 -707 351 367 761 93 -344 762 138 175 385 663 938 -150 -666 802 140 -838 902 -692 381 979 941 193 -302 843 -147 251 293 946 503 814 -491 -853 582 -458 23 -551 -677 644 658 751 130 389 9 144 -956 18 382 664 590 -794 95 170 713 331 822 132 415 413 871 577 -448 293 421 360 -656 548 -989 604 -271 797 -394 -162 -912 -682 343 949 -539 544 432 -901 -107 359 -546 -260 -176 -843 654 -584 366 117 642 604 85 -466 151 422 103 -355 52 186 -621 524 866 -622 890 894 -894 -60 -310 13 602 -396 -940 761 781 -607 324 -689 -510 -605 890 -676 -213 -480 -966 -158 -490 -774 442 753 -683 -619 607 -209 978 269 376 -455 693 662 941 671 429 -845 -265 -66 -696 725 925 -981 -951 -757 -187 712 -112 814 723 808 92 73 201 461 738 -838 493 -157 19 86 -530 -951 228 554 -328 384 528 329 -339 -954 107 510 -433 680 992 215 911 467 483 599 -141 472 -303 357 365 352 922 932 -392 -750 124 209 -665 -581 300 616 912 167 131 311 800 -719 679 704 922 360 425 539 264 868 -319 906 -155 590 779 -516 765 -144 626 67 -335 526 -581 -854 708 929 628 416 -284 -653 622 639 -674 275 691 -437 -311 520 -498 -906 -365 155 763 -728 781 -987 326 53 81 711 554 101 -666 636 -527 -390 -203 195 12 602 -956 -553 -234 9 601 -149 575 988 208 -733 772 875 718 721 -575 -671 187 334 -906 161 681 -540 -562 201 -649 \n785 392\n-488 87 761 460 428 997 52 942 -730 -346 905 -272 433 414 -490 -604 -492 -700 -116 -488 313 629 8 -127 -685 -357 -171 -39 -430 829 286 -201 759 543 375 -516 656 -269 583 842 -883 611 -962 577 168 -840 826 -491 954 817 115 431 -152 926 248 110 317 -811 -605 -239 -289 272 412 -43 -629 265 881 513 154 -847 -677 -347 795 -973 -630 304 -87 868 389 656 -456 175 950 739 -670 -664 -580 970 85 -425 -835 -212 -211 76 300 -291 -923 -916 -109 -548 -988 249 406 482 234 -808 989 332 -428 729 963 834 -941 -631 -645 4 -356 -555 -571 -388 716 -305 596 -727 396 666 928 103 775 -776 -45 404 301 845 227 118 -585 877 200 621 585 271 484 -610 809 120 838 -435 545 928 565 962 -18 330 776 702 892 544 655 25 -11 974 -288 -481 622 -922 -747 976 847 -18 -342 819 797 -494 -737 -718 5 730 859 -855 957 -725 -131 -606 719 837 112 -212 900 672 -994 449 -766 324 54 -795 93 81 -886 -230 -172 761 -111 119 689 -479 -425 976 160 701 -346 472 -928 508 148 -151 -860 8 -26 174 235 -322 303 -685 865 420 944 979 -12 608 20 -602 560 -178 819 -168 499 457 100 887 986 -586 -326 342 946 989 880 510 -168 -645 720 357 -562 916 560 -591 -211 845 940 48 -754 873 70 731 -163 -563 931 926 621 44 -163 -268 -115 624 740 209 -580 -726 975 514 -451 163 -618 -218 463 728 892 246 860 -960 -644 402 384 -627 643 -105 750 758 -989 506 -527 936 933 853 -492 135 846 -130 549 433 698 610 -669 899 454 524 604 181 -276 42 716 44 504 57 276 775 -195 597 704 -754 691 -170 607 286 346 996 516 591 819 -312 -189 -901 -464 97 167 -499 -118 -732 800 83 -838 524 -67 761 654 414 728 67 -799 -230 -25 159 117 -496 103 21 186 896 899 -81 683 579 -989 610 537 652 600 301 345 -376 -251 -323 556 314 122 -623 -544 720 -883 641 -677 -876 -98 502 193 -748 869 525 -621 -906 737 -307 614 -140 515 352 797 877 -80 720 791 -378 238 708 -557 726 -632 294 541 375 37 248 903 -23 226 390 769 -268 -452 31 -740 760 278 359 405 586 -489 608 276 683 799 557 -960 -41 727 662 586 -920 805 -55 93 396 567 24 -932 312 489 47 236 -786 -169 617 710 44 387 709 695 357 15 169 391 134 -334 -994 205 286 0 -689 233 902 393 -265 569 181 768 -490 605 -997 959 849 -211 949 798 517 547 957 -775 -443 44 45 -811 -747 -869 -678 876 601 565 -647 -257 -750 12 602 605 740 -952 -748 784 -13 145 184 -716 556 852 949 962 -346 724 -388 -307 499 92 91 447 -671 -895 380 -1 -562 -392 -814 312 -347 282 -795 192 -608 -306 -728 -911 -113 855 129 833 -777 9 666 -901 337 -23 767 461 500 -400 -317 410 116 963 -919 -669 907 -727 -90 599 -674 -20 641 130 -918 -151 906 526 926 -962 -470 389 -503 841 597 471 568 614 216 103 383 607 701 268 410 -491 127 457 358 152 627 165 3 -352 684 172 29 551 144 -692 -205 535 697 -456 -342 196 -85 -449 41 817 934 712 2 -505 -67 -509 265 -742 -917 -556 -177 -709 -498 -210 756 24 549 988 -757 -491 996 785 85 800 449 115 55 -235 626 -458 835 30 42 -384 63 502 -621 470 -241 364 887 310 551 518 854 -551 975 395 -315 636 231 -570 325 101 86 828 -983 669 17 805 565 -970 951 -343 -738 -368 653 159 -189 870 -283 -622 -183 143 581 81 767 -83 -83 -441 -838 787 729 4 -916 785 -576 843 401 502 -452 834 -164 377 -236 -923 -608 759 -476 115 -210 277 718 395 404 400 149 -288 389 158 352 -291 199 730 -917 -162 -399 132 308 917 -961 -614 736 -402 1 152 921 554 155 37 -389 394 276 948 -490 -251 231 272 -821 642 25 -440 207 688 -21 136 539 259 -560 750 953 507 -302 389 -861 438 -108 454 89 173 964 834 \n927 159\n-876 17 -416 -846 677 864 728 -431 -860 -729 500 -279 -687 -262 76 921 437 5 928 301 859 -383 249 54 571 417 536 493 -464 838 141 -684 300 -667 -50 -483 698 -610 158 878 -372 -136 -635 -517 629 599 -232 403 336 364 535 848 912 -33 -232 -431 -414 924 556 -841 -30 487 -211 256 282 974 543 -452 478 820 118 537 946 735 -860 -15 539 431 47 249 -825 -595 -873 415 395 428 641 388 399 -735 -586 497 515 343 -883 -224 215 -233 -965 -921 -455 687 265 9 -302 846 -111 270 414 -816 272 -388 -721 418 205 -59 -940 951 93 718 -438 -899 755 685 645 -888 869 476 -873 821 78 -675 -919 250 869 972 848 478 709 160 176 353 -507 -362 -991 -634 -715 -522 -259 834 514 -292 -828 78 341 -710 998 -449 -193 213 650 729 953 881 -78 933 -588 28 769 717 -356 -183 360 866 -272 333 219 -961 203 398 -520 -461 -522 -134 -15 554 938 259 -301 -507 -800 322 322 -868 815 555 986 313 925 392 704 37 606 -450 118 -492 168 380 -838 970 549 662 -204 -833 -813 652 761 758 825 636 -898 -388 481 540 -743 233 38 -865 85 -580 -305 129 -373 61 -930 994 986 -749 -946 -664 198 842 322 139 -174 564 465 102 -746 739 898 66 518 806 -180 -217 -459 965 -848 596 198 776 -230 -453 880 30 113 693 117 -775 438 -495 733 682 -169 340 446 888 -944 -125 -32 391 -134 84 736 857 -689 -859 93 -826 316 146 230 -325 358 -430 482 263 -625 -277 -46 -394 932 35 -795 907 -890 -88 -885 -189 -97 -744 -533 -532 -195 -146 280 -483 184 49 654 191 435 70 771 569 960 43 514 768 788 -625 157 -204 29 828 46 -620 -134 362 738 465 620 599 544 289 -60 556 -726 318 -226 59 68 588 811 765 727 398 -925 588 -232 633 537 770 754 31 712 -568 -840 238 699 751 -404 334 594 -483 977 15 -622 -770 -570 536 -758 474 809 393 670 784 457 155 523 818 972 -98 425 -822 990 474 349 33 -144 -95 -3 -233 598 27 249 498 897 68 162 93 389 236 -573 565 -804 367 851 -760 98 264 180 -28 -223 20 690 279 400 357 -693 686 6 -913 309 -399 717 929 -899 206 -446 34 273 212 -910 895 -845 148 525 653 -346 -244 8 -765 -399 434 856 -870 -350 788 368 817 342 -535 -394 491 570 225 11 270 776 479 458 808 234 -967 710 843 136 495 -901 11 -996 637 -93 -619 69 -636 -591 272 -644 -78 431 373 50 276 125 -549 49 71 -343 204 958 571 77 439 941 279 515 791 853 726 939 -585 -792 721 -176 633 996 547 300 -931 -125 795 -507 -929 -184 222 -166 120 -162 378 -729 194 143 -660 -365 589 371 -451 -439 835 -92 42 -263 368 806 -666 930 463 534 302 704 702 728 669 134 773 497 -532 101 459 709 41 -266 624 -178 233 -236 -308 419 707 -673 -687 -494 330 -649 -503 30 255 945 -918 -490 -813 674 593 -540 -115 695 41 820 -750 363 -598 338 732 968 495 527 466 753 259 -597 -583 561 -444 386 94 722 -750 73 656 -895 724 985 448 698 924 -732 862 727 22 441 804 -766 489 850 -580 469 -422 503 848 292 723 265 303 600 817 -176 151 -25 -254 158 886 -67 387 825 888 112 703 157 -556 148 851 -192 7 48 469 892 791 17 637 104 553 -454 -898 472 636 597 134 192 540 -182 -773 125 112 438 -635 132 964 -173 -787 985 927 728 -584 825 518 25 488 -32 727 474 524 876 71 -382 -298 -576 -573 -48 -107 -843 77 969 685 198 -118 294 738 -945 892 -216 879 535 622 -619 -590 709 -417 895 116 -151 595 -90 -84 -51 -809 -604 354 -323 -650 529 601 -456 -34 11 749 754 72 845 658 -385 504 497 -603 279 370 355 924 -827 -328 244 537 815 756 264 932 475 792 336 115 377 556 0 559 -439 -764 314 878 248 991 610 434 258 17 120 -432 1 585 858 722 -315 -100 503 853 906 417 708 68 78 -891 338 -475 712 -130 342 77 352 1 808 -295 288 42 -333 490 686 494 -806 221 174 -997 -895 504 -389 892 24 -250 992 938 822 340 475 -666 -59 252 226 -292 978 -99 139 99 -965 680 330 777 535 170 476 383 426 442 349 485 618 -943 186 248 239 -527 -487 295 -87 517 -362 -221 26 -341 430 114 -789 258 -825 562 711 489 519 828 -655 131 981 52 468 -487 -230 314 563 789 457 97 501 172 -657 -312 902 214 820 -348 -919 -558 684 284 -965 729 121 508 -520 -170 773 -747 285 -948 -7 -414 36 -292 -137 594 883 484 -34 749 241 -986 -917 -734 515 -431 311 920 267 800 -37 875 620 -376 -52 \n807 614\n786 497 -974 -91 945 -87 253 804 94 536 0 113 746 446 84 -977 -197 312 184 -820 -391 66 -128 640 279 650 -189 -502 576 149 843 763 535 -928 -329 64 -902 192 765 746 -188 475 894 195 -971 460 0 -286 -664 363 -243 159 -479 -474 228 777 380 -505 -139 -430 779 715 -659 -794 -609 519 69 -248 513 576 -662 732 -344 53 -188 719 472 602 933 -967 -89 -885 -496 444 628 977 986 812 -262 -551 -386 776 523 -696 549 989 985 605 523 59 -840 -583 664 185 480 -551 -388 -584 -27 927 -243 83 871 -406 694 -981 -862 344 -240 291 38 260 -394 -94 -545 341 -368 906 -485 -673 -634 530 -333 637 803 74 -903 -703 917 763 -796 339 -747 -386 27 839 -973 530 54 -190 752 -445 203 792 780 -551 -196 -745 820 955 319 -294 962 -540 -519 851 264 54 530 791 351 -386 321 -662 -804 477 -187 711 854 -625 -690 819 -130 819 -637 -852 775 699 676 388 994 391 79 185 219 353 -383 416 382 628 666 -247 811 427 228 -33 -230 571 137 -166 -936 -492 644 80 -132 107 -532 -599 227 -707 337 366 -361 -159 435 -220 965 -617 -451 -372 37 151 -232 885 -872 -249 828 507 386 268 740 500 507 738 -940 740 600 -623 768 505 -368 661 -916 696 -9 281 -749 -814 145 -365 -173 -215 333 -660 -531 907 422 593 513 524 -318 552 -549 90 703 -283 680 -719 -61 830 842 195 279 -195 228 704 642 -935 460 -607 86 244 -381 754 919 -509 -484 360 -269 588 -828 604 -156 -256 194 998 -277 735 122 249 355 272 865 443 -727 629 -9 640 -349 377 392 784 500 -750 985 948 362 969 -625 908 70 443 931 420 -715 362 925 603 596 783 673 482 243 -414 -797 339 24 -897 611 600 833 549 522 -447 180 -67 819 -605 846 -160 644 -904 -631 821 -832 259 -356 -472 141 430 948 34 285 419 99 799 287 -890 939 -553 3 -830 -950 -709 905 318 604 -691 -330 -685 -939 -354 76 243 -842 -163 459 561 -358 -802 627 160 -701 -944 -367 211 149 -891 -525 489 782 -996 -768 660 -404 -799 517 964 -566 -503 46 765 290 -672 610 509 511 363 -354 615 153 718 -246 554 608 -585 -406 -626 769 2 161 606 323 314 874 337 516 -78 414 874 778 70 -183 -36 -234 -617 -780 -134 292 167 -911 -91 485 670 -549 523 -340 414 -42 49 -949 61 922 -867 873 675 -441 725 -292 -487 -572 -151 -566 -505 574 -842 -187 77 -276 934 995 398 905 -511 -250 25 -403 -828 345 502 763 711 67 915 -153 -47 -201 -864 -670 -305 518 -284 -816 979 108 70 -362 607 -717 -789 865 574 275 337 -496 -315 -497 -999 589 147 63 841 210 300 346 724 117 235 -385 584 -144 172 434 644 353 462 499 -951 -379 444 -241 407 3 -869 -172 -342 997 557 -121 -193 -973 -242 -479 504 870 48 930 568 -390 -438 -891 619 367 -806 126 -359 239 88 915 875 841 -8 326 -669 995 20 343 391 -30 143 634 -589 -106 256 -728 945 -383 -339 812 912 -236 47 103 138 -155 -839 68 -837 219 -658 -685 26 277 -411 -388 -231 -224 73 595 843 373 -360 -932 21 -620 254 330 238 -469 710 599 298 -999 537 -251 -228 -245 -984 811 103 580 -659 -751 901 -134 845 763 59 762 462 584 -211 722 -880 64 473 763 -610 -885 838 -304 -544 283 425 -176 529 649 -521 220 336 -364 564 298 -195 -443 147 -476 -887 100 811 297 -770 -350 853 -83 -759 -157 -543 -704 622 450 354 609 841 472 602 110 801 64 -105 816 -911 -277 548 -197 -219 -472 796 520 -728 -966 -222 598 893 -549 -979 -618 -670 -259 -449 690 433 -392 240 -255 754 694 294 -65 440 -576 148 617 37 24 -927 254 65 631 728 792 -944 -545 948 352 416 990 -252 -102 132 499 558 -889 571 695 802 499 -514 790 814 -386 454 185 -435 592 195 692 494 -523 223 -631 975 742 495 -405 -725 95 538 -328 881 -463 -585 -155 -318 -781 949 31 31 -979 -809 -751 -89 567 235 204 -669 324 -15 753 -424 -214 -261 32 186 433 958 963 \n810 83\n-459 975 -454 604 555 559 314 713 746 842 926 -53 -259 503 389 -432 786 -712 -511 814 833 -517 191 57 695 -481 222 -292 -524 -560 95 929 -199 -176 530 -228 -656 277 402 -886 646 138 534 -715 -722 551 -51 -740 -490 342 288 678 255 -452 -641 -457 464 494 669 -818 -76 946 600 -633 899 594 393 -323 78 -837 437 -977 -531 869 267 -887 562 554 454 327 -651 493 -822 -116 326 558 455 -751 912 -527 104 -5 -301 126 925 -638 416 703 77 960 -109 -223 117 -570 120 834 716 -970 931 -55 389 104 84 63 568 88 -292 -9 985 -483 649 569 -311 -910 -5 372 286 -818 989 -54 -461 755 651 -804 217 -330 213 -914 857 443 291 286 -960 -367 685 795 -830 -474 715 -367 503 -510 -202 461 458 -742 78 -108 283 892 706 583 -274 -13 -226 -99 -666 375 762 676 -514 706 796 -327 -959 -28 38 -585 297 467 841 -39 -593 -607 716 428 330 788 631 -839 829 965 576 378 -162 884 969 172 774 371 104 -768 200 -471 677 -643 27 151 504 -178 -39 409 233 354 760 -166 181 845 325 489 552 452 291 291 686 608 391 906 -936 -80 703 -438 -421 222 -970 138 551 -313 -187 649 -434 -468 514 30 -368 486 355 195 511 401 -998 435 417 987 117 976 508 -128 304 -462 -264 -885 -764 238 -51 -222 336 -956 648 569 -79 817 -188 201 -258 906 576 229 115 -855 930 470 746 -532 -419 -332 139 739 -666 874 934 -857 472 341 886 357 946 801 -355 20 122 -956 960 567 350 -505 -725 -531 336 -758 158 -384 -348 -278 354 -835 365 760 806 685 -632 398 -391 473 232 351 843 -530 904 374 -537 -882 204 -473 -5 -732 585 -426 989 715 976 -401 -222 -944 -527 -432 -991 321 679 -926 -717 68 263 -405 941 616 64 -364 -101 -37 647 -205 -940 871 510 432 702 687 -172 -790 737 -721 -208 567 426 775 610 -389 -672 -276 170 102 552 994 30 214 -463 -669 104 -746 -436 614 -742 247 75 -1 -41 -297 -459 -496 7 644 -273 -589 129 815 -738 803 -821 755 -334 374 -260 944 911 950 789 761 454 169 409 -19 774 78 -373 762 -767 906 412 148 532 839 -674 116 54 584 -218 321 -47 270 -840 756 -991 206 527 189 243 -273 781 134 793 35 -346 783 -661 396 645 -400 -991 834 -623 218 -330 12 838 183 150 281 35 -645 -320 -567 -660 999 813 -445 -395 28 146 449 93 270 975 802 971 -788 792 616 -973 497 -339 647 290 586 876 928 10 276 715 -640 -292 -732 677 -703 -656 476 815 145 438 965 303 -352 733 488 651 89 -653 -636 -943 707 461 931 555 363 414 -180 42 650 622 -603 -357 5 -622 604 -854 836 124 -260 933 -748 -314 -888 -311 -470 -21 -724 314 965 -215 -78 42 251 293 736 -463 77 -378 385 621 -322 722 828 -762 105 432 207 -971 -208 904 -574 -184 -77 598 -606 -619 905 965 66 -78 816 25 -482 -170 450 38 863 40 573 646 -128 251 9 -975 464 468 282 354 -101 765 746 -293 -562 735 573 -946 -470 -60 -379 -422 451 205 177 603 832 -718 119 -414 -808 -877 948 -370 257 190 -622 427 869 930 498 100 692 587 922 898 -144 138 522 702 520 849 530 95 430 -346 968 -390 -265 998 -227 -224 755 718 448 -15 468 -78 -457 977 -557 220 97 231 -310 -174 -665 -15 -465 257 -134 291 180 -51 313 608 243 226 189 -368 996 -938 -357 -417 -737 155 243 -732 377 473 962 206 656 -27 805 226 130 -412 214 253 980 413 464 752 -187 -880 829 434 907 -727 529 -211 -393 83 173 330 -937 -397 277 -753 913 713 897 476 444 421 -200 -181 -176 -271 961 138 -529 773 184 45 -964 938 104 195 -892 111 987 207 -976 360 -795 -148 -851 803 -716 -694 923 -357 943 -137 -283 -324 -777 808 929 -102 682 48 872 -585 887 211 15 904 704 597 288 493 -251 490 -346 81 -655 206 -432 581 -274 -556 871 45 163 320 452 576 344 204 412 -177 -2 742 -82 785 -476 -672 996 -611 -656 -264 494 902 -321 -350 -718 406 570 -457 710 \n924 626\n-4 -968 760 702 975 704 -512 -213 355 549 922 -110 232 949 -200 -832 839 -315 -708 953 -311 822 256 -291 809 -458 935 586 4 -941 833 664 483 730 459 -753 330 -602 252 695 -429 310 665 -455 696 734 331 898 576 357 -636 -278 -465 835 13 650 -933 810 -706 -949 276 297 -860 824 454 -620 871 -207 147 434 826 -580 203 -478 -498 196 -567 718 -903 0 -614 -671 -340 957 664 -431 827 181 119 953 -255 364 392 -205 -945 27 -711 406 836 912 769 210 -697 -652 -648 -765 507 588 666 854 -324 937 633 -448 -622 -960 909 -42 891 -163 758 792 -326 278 834 344 -919 34 -125 470 -347 29 692 -785 713 616 -577 35 630 808 202 244 690 589 930 800 665 710 423 949 244 420 162 614 349 -59 -538 -475 838 -148 -416 -582 314 637 796 -167 106 -255 496 -1 -490 -646 768 842 -178 -221 -952 383 38 176 974 887 -774 232 -491 91 -838 691 -750 508 -70 -593 -761 125 -427 -432 42 212 493 737 219 -61 -24 512 35 520 883 248 763 310 -387 245 250 -368 -57 -424 753 512 -456 238 104 741 -368 441 111 99 598 726 541 -929 337 150 253 -161 86 -197 -363 -460 749 166 -812 4 -50 -189 788 360 749 507 109 315 -947 453 382 549 867 149 874 425 49 216 789 -941 486 -126 411 933 614 342 193 768 337 391 161 -577 442 128 274 143 -123 609 -870 790 975 935 219 -228 87 -324 538 333 -158 981 667 256 -941 -754 663 -87 231 505 348 163 -357 -420 492 685 132 -566 14 -686 -602 938 -660 -840 589 -132 628 923 -164 -654 -976 977 148 -949 -365 730 780 -201 -127 489 105 96 804 981 603 436 868 -673 534 -392 160 268 995 -623 24 522 -148 -181 -11 929 -851 -212 211 -357 163 -432 765 604 5 19 6 -618 629 -906 -617 942 555 167 -738 -500 -218 -109 14 -857 188 175 121 506 -468 529 383 622 -515 -220 347 -391 -196 895 -363 269 695 377 649 -339 202 576 764 -383 -771 797 397 974 367 -837 498 734 991 418 -495 850 678 776 -144 298 444 -520 408 -313 853 -648 -269 965 -851 -825 26 -130 216 896 -67 791 197 -822 -60 -823 -782 81 683 -98 827 632 538 690 -288 -906 542 870 6 567 -730 -274 -128 -622 -445 316 551 69 487 -857 607 -44 -968 966 392 -659 258 -88 877 727 -954 -997 968 642 26 848 964 -519 210 -97 954 434 874 -274 629 -894 538 331 797 125 3 231 464 43 -59 165 836 803 972 496 990 -49 149 631 71 727 656 462 -753 -832 -699 -659 -959 343 407 -234 -882 -393 -740 97 668 927 155 116 258 -70 546 -955 -321 671 732 -855 536 398 -422 49 -711 -479 -899 123 16 444 641 -548 237 368 122 -384 729 -968 -699 -158 -165 -797 -680 -761 309 147 -487 -56 -792 -525 985 -893 316 279 -76 -449 776 874 219 -967 800 340 -284 445 924 965 121 110 929 -778 144 -603 367 902 -931 261 -857 684 625 -804 344 15 795 651 -512 -347 -263 -881 74 -809 625 50 233 350 797 877 309 972 -662 716 90 -904 186 438 273 794 -339 -96 222 473 16 687 153 404 -610 -856 694 -106 56 -777 -493 -258 276 -277 -131 460 -427 -220 758 847 -384 48 205 -808 785 289 -734 642 793 362 -109 -688 101 42 316 -340 727 316 277 908 -142 951 610 -352 -947 703 854 37 806 306 794 429 775 -876 649 268 -590 -395 -979 -764 723 308 -605 355 -238 820 -8 856 361 991 830 25 -521 605 -312 -296 -801 -768 -683 -761 486 -744 -782 406 708 -351 414 -515 -791 -149 858 -330 19 -796 951 880 869 -357 -557 599 -40 458 535 346 417 18 -408 -988 379 225 49 -769 -332 -60 244 386 206 241 -876 861 -806 -789 -834 -892 -112 540 697 290 818 142 139 65 749 -676 426 374 599 390 552 -402 843 -280 696 275 127 705 314 826 373 -163 -259 -467 827 -173 -523 616 123 404 85 -526 291 741 618 -670 14 685 455 229 986 538 786 901 -200 455 -288 113 503 900 746 797 465 -883 -940 -180 732 308 157 824 250 866 -202 614 882 412 403 678 285 981 -188 416 -650 -893 765 226 378 -421 338 -35 476 95 -908 755 -123 323 678 696 251 819 -817 -683 -615 -792 -984 192 -30 -955 -589 -738 -625 605 275 821 -743 -503 65 -738 -154 235 -741 871 -447 48 -854 -308 833 947 81 -559 495 -712 -270 745 417 -661 288 591 327 -88 120 -881 483 284 282 -950 570 -568 807 950 454 567 -545 -607 -431 905 418 377 469 -441 142 234 -960 -845 596 178 9 -338 -817 680 -214 685 557 988 153 -826 164 690 818 137 -566 -453 -520 -939 647 -74 \n960 522\n764 719 312 807 -125 348 998 -659 -137 -18 109 -422 -702 460 63 -196 728 635 -40 512 236 -537 -144 -495 -429 192 -284 -899 458 417 -597 322 982 -245 -143 269 -199 -344 292 -169 -224 697 215 417 543 -683 785 -418 495 879 639 -357 471 399 729 441 425 -661 -812 711 -36 -306 426 620 -107 -999 101 -506 -683 -472 0 -55 345 580 550 269 122 470 344 280 -369 599 -363 -891 -108 626 -136 971 -471 -246 -387 723 -392 424 84 -966 401 -574 49 904 426 525 266 134 -164 587 -843 -457 847 -478 750 -926 573 -116 38 153 -188 -664 -469 862 424 -828 927 -303 -358 545 -237 929 -50 481 -3 694 -123 373 -154 300 -426 559 439 309 -510 -906 162 885 -715 -60 104 -567 598 -347 217 969 -450 -670 970 739 455 -367 -468 460 318 -775 -828 492 -622 810 -577 371 -489 415 65 305 -56 -874 588 764 -19 218 -615 -942 -378 -122 715 228 -639 884 -900 -935 49 -433 746 -127 619 971 771 67 -387 -475 -830 242 403 995 65 774 44 654 -421 91 94 755 13 -468 648 358 451 799 926 -734 251 180 -358 672 -886 882 -755 122 696 266 -266 -625 593 730 760 -220 632 195 650 -63 -668 243 394 456 -121 -955 -217 965 65 618 -632 101 945 841 517 626 -88 61 141 -974 -619 -89 -420 -899 163 729 606 161 -645 -128 666 603 721 978 -298 490 -844 595 -204 545 510 310 -691 248 749 742 743 -993 -936 -849 809 886 172 -920 232 -89 451 -57 -535 -274 528 821 36 396 -356 210 27 872 -772 -426 -649 313 889 114 193 -519 815 -484 939 780 -398 813 175 -298 836 992 398 67 753 841 594 -95 929 -835 553 178 966 -162 422 -539 -579 642 672 -334 -226 350 73 946 447 890 88 -452 755 674 40 338 242 -920 767 -625 749 665 375 848 -273 -649 392 -299 790 747 708 -505 88 50 82 822 90 -795 652 410 30 328 -25 784 -510 -230 283 447 -638 472 266 -636 736 194 -159 -70 902 359 882 33 -988 956 -492 -172 972 74 -766 611 735 768 -864 638 -99 854 35 471 479 -203 472 752 -657 496 -743 123 624 -939 73 216 315 -909 -429 195 -568 700 -999 -91 -53 -290 996 -148 267 276 799 278 574 -837 -952 60 -94 160 256 -461 545 -993 430 -494 479 332 629 358 -853 396 595 289 -923 974 67 430 773 123 -660 -33 405 642 625 826 455 -331 527 708 940 285 -433 167 168 346 -639 -6 445 -421 -955 -417 709 299 555 204 -59 -919 458 -206 419 612 -31 -947 22 871 196 931 -431 474 896 -729 -216 -915 -421 -612 774 787 835 297 352 -871 563 232 -228 946 -869 -139 -138 529 -243 -818 -200 -717 764 -257 372 -53 -682 320 501 -554 275 50 274 1 -484 622 -993 -700 -865 -393 578 729 814 491 -905 49 482 982 400 483 -647 -586 -938 247 131 875 -25 195 402 -641 353 705 33 -983 547 111 -572 172 843 -318 193 -702 722 -659 755 730 549 705 649 701 -771 237 276 -142 -539 624 -788 169 -236 -617 -828 -622 988 -217 921 920 617 197 183 -855 419 -23 -364 -710 160 709 979 173 654 625 -850 184 -725 471 356 -271 -594 890 8 588 110 560 744 912 92 -993 -75 942 686 828 -268 414 737 49 145 -595 957 -776 -764 893 -566 -137 -109 168 421 -178 262 908 776 -5 910 195 365 646 -623 6 667 -553 -944 -208 -338 954 -91 -441 662 -12 80 612 -791 -675 240 41 476 -721 139 236 -868 501 682 -301 -139 775 302 -206 -643 581 -16 552 -632 -802 662 -262 -3 -145 68 144 208 678 401 401 192 70 -918 457 -264 -706 194 -893 224 432 993 386 -125 858 -72 -221 -663 989 -627 278 524 -26 -751 800 -35 -353 -768 115 -473 -897 -420 -987 -840 241 -926 -830 355 -803 989 -257 -731 883 650 948 325 -597 725 921 530 -340 8 65 493 -595 274 367 -633 912 302 99 240 436 370 8 29 -853 9 -231 628 876 -81 -66 -548 847 29 385 875 -648 684 905 -962 -492 400 176 309 -333 -520 122 845 776 6 -687 374 144 -98 258 -441 -721 62 348 43 869 111 671 683 -235 -586 -483 -136 -819 -453 -853 601 684 818 491 891 -606 320 145 175 -744 761 87 354 -787 532 840 371 509 597 -485 944 111 944 -808 -761 -271 930 -410 11 71 688 133 166 4 -734 506 776 -704 193 -828 -904 -768 -366 -659 580 -215 -521 547 963 -729 742 98 523 849 451 366 325 -868 -284 180 -324 -675 -430 194 -762 -693 468 -870 347 530 -742 -484 999 185 -4 380 -532 -427 528 -18 -50 582 241 -492 -661 643 961 312 231 784 256 731 -747 -359 798 99 875 837 725 542 907 -604 948 -40 812 -946 942 73 -842 807 -633 -277 543 -347 991 122 549 974 416 998 -23 -397 -70 78 873 -628 64 296 -611 -446 56 -938 -843 831 949 808 -8 851 \n993 432\n-182 343 647 -62 22 -130 -209 -855 397 -561 555 806 -455 676 947 -596 -799 -813 948 -899 417 -433 845 -676 46 714 538 -476 299 32 616 -146 -523 363 -909 -562 -504 -947 894 301 134 665 224 95 -769 -427 -704 -856 -241 891 242 92 29 -56 -950 963 685 -84 885 -977 822 549 -281 -847 883 381 707 376 774 377 491 -901 227 -573 -611 745 997 -406 -540 782 -343 279 255 -774 188 685 -653 -971 -23 195 145 336 493 -775 -488 637 -254 -731 424 495 527 917 -390 501 611 -639 -814 -229 -549 -823 791 -933 -751 40 100 826 -247 240 -540 972 189 824 -835 216 142 -879 -231 -269 476 207 828 63 -844 678 -65 335 -302 -830 544 -633 -216 -734 -177 253 -500 623 968 -583 -477 23 -275 -159 -926 898 397 -129 755 340 -421 109 470 912 -536 -73 651 -156 139 250 -540 -731 433 -663 175 345 -803 -70 467 322 667 229 766 -188 -440 -802 -594 -425 -350 971 163 326 -587 -448 -843 -102 850 -363 -262 -928 620 479 574 308 -194 406 -680 18 388 97 -917 355 -925 -796 83 -574 -469 327 169 -101 134 791 118 853 -407 651 51 -650 -620 695 140 256 -132 868 339 -683 690 566 909 -424 500 125 -267 -250 783 237 850 566 409 6 780 -166 37 -948 453 554 875 240 -166 -579 382 -445 -597 254 684 -651 923 -55 169 0 653 923 -860 866 780 221 968 351 805 234 460 797 170 549 732 258 151 444 -902 349 181 225 -518 835 -330 -881 363 -444 -959 -777 -959 643 321 -188 -571 -881 -105 566 -56 322 -68 500 903 438 -699 25 -738 850 44 -155 -785 965 -631 380 -30 -11 882 -786 945 941 534 -815 -309 -119 935 810 -352 881 504 -500 239 182 909 -899 705 -888 -343 522 -263 2 116 239 666 989 -508 -917 69 196 717 928 -54 528 48 755 81 364 -441 997 -774 194 395 551 -94 652 -450 -119 914 -651 -999 49 -596 612 735 -561 75 -174 -652 554 -403 -766 -915 -419 -163 -900 -821 100 758 467 94 -341 -322 996 -273 703 812 -763 194 697 962 920 874 765 871 959 350 904 -155 425 984 -701 417 714 -637 755 -663 441 21 -898 -665 -899 71 514 334 -615 786 -717 -737 699 -797 320 665 734 -96 982 -682 -940 -560 132 202 725 879 -846 109 414 730 280 -794 383 -201 654 819 -748 394 -877 761 -996 967 576 -293 -28 227 -756 456 749 409 324 -396 -834 -349 798 361 211 257 859 -633 92 -354 -259 -948 39 296 719 317 718 -473 -869 475 234 695 -808 -593 167 -141 229 150 -5 -174 -567 606 -537 318 -532 927 -169 727 -998 757 892 357 35 -598 -176 -90 -525 -638 665 635 -83 -661 737 770 -397 60 -683 42 -740 412 -159 134 -408 447 -561 682 584 276 201 -743 902 -95 -36 -436 -336 367 -874 288 -960 -647 526 -985 -957 -189 602 72 -104 38 -992 282 976 -824 -17 881 854 974 338 41 -353 -704 -826 -147 291 -185 -902 -366 275 -31 133 -673 457 -54 -388 -849 -85 245 -539 865 912 -719 662 670 9 820 5 695 65 -862 613 147 -624 -356 949 626 574 -410 481 147 114 678 34 -181 -903 493 492 -637 906 -932 574 798 -117 912 878 20 991 -447 627 -401 586 -164 -49 -297 -27 -527 784 -21 -6 770 149 555 431 85 808 -364 -962 -443 -156 -605 -12 739 955 902 400 -344 -439 142 -459 -137 -841 278 808 18 926 9 812 -593 -773 555 923 418 -899 -286 490 -339 -71 -390 290 232 -86 -695 844 -465 -472 826 -591 823 529 -155 100 -475 -153 -150 -275 -247 -140 117 -146 -618 131 299 -349 -352 338 -421 865 -216 -287 812 552 877 -137 -933 -992 -366 71 64 372 309 948 -796 -218 123 -754 297 -379 755 -204 -837 46 -979 995 -712 -925 958 226 655 822 341 73 565 -635 705 13 725 666 -10 847 34 38 379 881 -952 733 900 -148 -544 -432 598 781 535 -142 -203 -651 863 -138 -540 -171 301 -472 952 660 201 739 732 803 -866 690 -117 976 767 -574 992 127 127 950 -235 -296 170 59 -449 -383 661 -452 970 -469 -746 860 176 397 53 543 -907 -128 889 -216 286 -210 -529 -270 792 786 -375 -507 188 638 209 -19 713 469 -999 803 827 443 582 -375 -272 200 664 115 -172 -817 -225 379 981 -710 -179 35 848 322 972 464 986 222 659 517 695 -214 -470 15 -231 -323 311 592 -172 935 282 160 558 981 841 239 -911 -886 -512 245 31 788 -777 -547 48 -379 -369 15 35 -379 498 204 90 504 495 -87 372 898 699 -435 541 -293 -594 742 819 98 117 25 -393 -748 995 -484 63 292 -699 -952 601 934 515 -979 428 -665 924 248 332 611 323 308 800 387 137 -491 -68 797 732 832 -735 385 -413 576 -771 -628 832 -592 -935 -373 879 370 -368 -226 -815 565 731 409 585 -178 461 183 842 831 868 -292 524 72 -579 573 66 -369 298 -897 -104 149 -43 -669 -873 914 654 -728 -639 2 598 807 63 -596 434 -90 978 -977 205 -788 21 959 -471 575 -833 34 209 671 -580 830 957 2 -646 \n714 31\n700 -232 603 786 -372 150 -963 294 350 -923 -366 551 893 172 360 166 600 -815 -636 218 153 50 668 51 -15 433 306 337 -988 -756 843 -451 -712 935 -326 640 412 761 289 -521 -448 -909 716 364 -862 580 804 859 -652 232 -282 587 910 418 -593 678 -818 -174 -252 -10 978 114 678 824 373 -946 -903 -741 582 455 909 948 932 116 593 634 976 591 918 528 771 614 -614 837 237 -975 821 -737 7 454 140 -739 -370 612 -239 -69 -613 906 631 -987 627 74 -936 -903 -130 510 -620 119 -846 -375 375 -829 844 792 889 -590 839 -752 887 -517 566 435 -250 709 -964 -610 622 -570 279 -838 420 424 -674 537 -329 -866 451 -981 805 -965 -461 947 765 -339 -911 214 978 320 35 -93 943 920 96 -196 -318 487 176 316 612 328 835 382 336 -719 3 916 201 -166 222 497 77 -163 127 -475 -762 -480 -860 712 -833 883 529 798 -294 -468 884 -130 393 794 271 322 72 -189 -362 563 291 -685 974 -900 974 -746 -83 176 907 626 370 512 421 -62 964 -735 -326 749 873 -212 -554 -64 994 -316 -210 428 -664 605 -482 923 90 20 -579 452 -867 -559 -298 -238 -898 524 455 112 264 457 183 -45 110 -882 -946 312 -772 598 -29 996 714 145 -585 343 923 756 -243 146 565 777 -114 834 43 583 596 -818 -540 -124 -497 -231 33 326 870 -699 -106 833 -796 507 545 -836 -870 401 877 -700 951 874 929 519 -833 88 -787 -474 959 497 13 -276 980 -119 -335 -480 -658 -279 51 55 156 -218 72 -956 364 -958 128 422 -846 565 234 138 890 205 249 718 886 -135 -66 135 -26 489 674 -860 411 -548 -229 945 713 862 8 -661 864 -409 281 932 754 -138 610 5 -643 626 153 -5 -140 673 -762 -330 418 286 -868 633 612 -704 768 -873 0 737 -246 22 286 510 -47 311 667 -232 -388 591 455 669 -157 312 -263 872 387 -996 749 461 -39 714 523 158 40 759 -396 728 -425 -2 707 -398 328 -63 153 598 857 789 -387 -959 665 920 338 25 627 223 -626 205 534 655 915 -673 493 78 451 -981 278 921 674 -688 -924 87 108 860 37 804 707 -654 812 -495 698 783 -768 212 355 294 419 770 -266 147 348 142 224 -725 390 -783 -369 141 663 840 -590 -633 625 -49 -700 -834 548 133 -954 -286 138 982 -191 279 202 685 -378 714 158 298 -569 -601 428 538 -875 953 145 -35 221 637 -425 458 -976 993 -41 726 289 -416 421 -251 288 791 -906 648 -538 871 622 937 -664 -143 474 -838 -70 855 -295 234 220 310 326 428 176 -85 646 -265 -745 818 66 -272 -141 -551 65 -45 485 -776 645 -47 28 -600 300 650 -548 820 -993 -502 457 -46 548 -542 923 -363 -814 -474 712 718 22 -669 -424 3 -679 -295 296 869 39 -484 167 1 -657 43 636 -424 -660 -192 518 601 882 786 -730 461 939 158 -337 65 407 459 463 919 167 924 461 -597 541 945 -16 -548 287 454 112 378 936 722 650 385 -439 473 -678 191 -230 339 42 -4 -68 91 -661 750 523 -665 908 688 -243 208 -617 -262 -397 -832 -879 -683 601 -925 943 -900 -89 -718 510 675 292 95 517 -212 203 656 -696 427 687 804 -711 836 961 -147 -448 -641 -633 -240 -107 816 -144 -107 -612 -523 926 -16 205 710 340 814 273 -100 -259 41 906 138 891 617 -76 170 397 841 -456 426 370 -649 -562 -11 -265 964 691 -154 525 610 23 -858 53 463 520 -568 -298 178 146 -86 -460 840 565 -825 229 950 718 -986 -717 362 -710 704 781 763 650 181 756 868 817 -325 -668 30 377 -170 158 -619 \n898 577\n740 467 415 585 -847 465 -334 -290 248 102 -957 -950 41 335 -178 443 -905 -499 -661 411 108 -966 -716 916 457 961 -23 128 515 567 701 -405 -657 -130 614 -246 941 -205 -470 -24 -289 -703 -329 831 -381 -806 577 -703 -498 834 -97 890 -306 814 278 512 654 154 600 243 -159 724 238 463 749 -18 439 -608 -283 -505 -554 436 -353 682 999 -940 -488 71 -852 -975 -618 242 -473 55 -608 767 -683 -82 -769 197 -725 -195 898 609 554 687 -968 307 461 -120 -832 935 -321 596 176 925 945 439 -499 410 -753 -741 713 860 475 545 -164 -586 -860 122 -660 -169 332 568 828 392 57 747 419 326 789 76 164 -142 -427 426 270 242 294 871 237 -485 114 936 775 439 -945 -81 744 341 888 742 -334 -71 975 563 966 696 772 237 821 17 456 926 -471 -463 609 -461 -604 -56 23 -860 606 578 -151 41 -717 884 338 69 -731 330 695 440 -416 982 821 -67 407 226 -106 364 510 710 343 -965 330 80 754 -390 -225 -639 -258 951 -663 816 -998 -454 834 177 495 999 -893 -393 -361 791 -144 -133 190 744 863 68 -619 -720 439 581 -249 178 -932 -27 365 747 333 416 -977 70 310 479 -337 -961 502 -224 870 -742 615 -520 -815 59 -376 -911 483 250 966 -160 952 978 478 724 55 -92 389 -255 565 454 -209 426 307 -995 -605 231 -535 -193 17 776 -537 554 895 857 903 -356 887 -9 18 250 -428 125 895 728 581 85 23 -387 -357 797 -623 582 820 325 224 118 451 -353 -576 -167 -524 202 -720 308 887 859 788 411 534 -45 965 631 -114 -667 -626 -948 -316 -223 571 663 949 -371 429 284 446 921 89 981 673 204 61 513 -549 788 -257 -259 359 438 -547 -567 324 -482 644 -825 271 -107 400 694 937 850 -194 832 588 -243 950 94 55 871 181 -746 -406 600 437 17 775 672 838 279 693 51 -877 -88 -880 -704 -221 720 -228 -684 162 940 14 -527 308 959 618 -132 -610 470 928 -445 324 -188 474 -670 -72 310 191 69 302 392 659 -72 -859 87 445 -407 -250 749 231 950 -934 -976 -498 964 178 259 231 303 377 947 263 605 262 467 13 -692 -950 -177 478 652 105 703 -640 -263 652 523 872 208 898 31 146 145 -358 -313 261 955 451 260 4 474 -908 445 110 855 124 -128 847 -332 -903 481 -397 -171 -87 698 636 0 105 -275 939 570 717 534 -452 590 761 471 -23 -211 -391 -178 896 679 -938 501 437 385 653 -793 881 -333 -148 5 627 764 473 -788 -800 737 -144 306 269 -877 -644 -842 477 524 -16 -963 -585 829 -414 -310 715 -869 123 -802 754 701 -441 -544 -170 -128 -52 152 161 -182 -566 -458 -130 620 -83 -261 334 825 -997 924 -6 499 -449 76 202 216 -16 103 -421 -77 200 652 31 -762 0 -5 386 228 -599 -167 445 562 822 581 548 -640 385 870 526 799 410 899 -598 987 -934 -786 210 468 846 621 -591 253 55 -971 315 -72 691 -950 49 529 854 452 705 422 617 -414 518 405 -595 476 -86 494 -738 -199 501 -844 30 149 794 761 935 313 -416 -431 426 -296 806 -56 489 77 -600 -311 568 22 156 -132 -872 828 -726 -676 -175 -575 -869 -526 -614 712 579 775 -378 141 -825 191 -932 705 240 -330 -737 314 785 521 522 393 558 470 341 277 23 211 426 848 406 827 439 512 419 896 357 -871 -545 867 -536 -355 -23 703 99 -783 -255 215 186 -561 219 355 534 -58 131 519 621 -233 -752 27 735 -808 -709 316 82 549 56 -914 903 27 -798 57 914 -462 956 -88 -86 842 38 36 -199 725 -156 366 118 848 -840 -889 776 523 -337 -869 -408 502 -403 -287 648 -32 325 582 36 -684 -514 967 535 -55 112 -594 -924 -563 780 595 -511 343 -260 979 785 924 123 92 791 -162 689 336 363 -265 -105 -730 -602 688 -313 515 -460 890 93 -303 576 -340 -828 -246 -725 -8 825 -75 -10 -333 -884 -464 -895 829 734 256 497 -550 873 716 -978 889 581 -23 23 166 28 -178 192 150 -247 384 827 -911 55 755 58 -395 -597 -45 -200 -2 -922 15 424 723 880 430 -111 703 495 -145 172 479 985 389 71 657 -94 -417 935 47 841 450 162 439 897 448 34 252 -209 -920 -202 35 960 136 -269 615 850 277 767 -22 853 608 -554 290 85 972 594 41 -520 466 241 549 -586 -54 -908 284 307 -40 685 793 -316 499 519 201 -662 -249 -637 432 547 773 147 754 858 -8 -578 194 495 997 753 46 161 172 511 -8 115 435 -474 -887 155 -320 \n791 750\n964 407 881 839 562 799 91 -467 768 -726 -492 407 572 -318 -931 672 -831 711 -307 733 822 -634 180 -92 820 423 154 -638 374 -640 -908 -710 -845 -435 -310 189 504 -132 872 913 632 81 -517 -722 42 -60 533 603 -304 397 691 471 -456 -861 -231 585 259 604 -101 -131 496 547 668 -136 719 -819 385 562 206 -188 153 557 -903 -535 722 -434 872 245 11 -117 49 333 623 -543 -498 -194 366 765 819 826 -796 -919 522 -401 -321 145 8 444 703 -445 -292 -366 431 -704 871 71 36 665 -14 440 -957 -309 219 832 592 629 -996 -297 506 -358 211 267 56 8 596 -657 113 792 -290 816 481 943 -235 755 352 -272 -671 57 -1 846 -269 -292 580 -963 -45 356 -236 26 79 -915 258 -710 -531 -719 384 -560 -479 691 982 518 989 -589 784 542 121 57 -646 263 -823 -709 779 -561 -355 836 -7 408 376 523 -117 -413 330 407 774 12 259 124 -132 -47 -778 -191 711 -377 -911 806 59 348 -192 826 960 596 768 700 -449 -242 842 253 -446 426 746 -261 339 318 -645 -821 126 -144 724 -44 804 -395 789 -766 -700 -579 -482 352 -675 -81 -72 -765 791 -808 -488 -709 404 242 914 577 490 -651 237 -416 924 -421 72 749 770 531 869 886 -521 -846 888 175 -966 179 -45 -733 542 379 231 195 17 -50 -657 -408 722 760 -905 455 -113 795 -384 454 -50 -786 276 471 11 52 558 -979 481 -559 836 722 212 -850 488 371 -30 -964 991 -819 136 89 795 -246 565 612 537 -687 -909 256 -268 -686 436 558 72 116 -304 -667 -503 -729 342 543 776 -167 -454 414 387 773 818 706 127 188 -795 848 572 357 -244 -767 841 690 -621 284 423 112 26 800 588 -195 -953 720 801 466 72 188 700 -119 324 -313 935 360 -507 -560 727 241 -723 860 -742 495 920 -271 -305 -494 74 510 699 -44 -308 -424 872 -837 -647 -172 -627 -829 21 -504 -521 -264 -143 -602 171 870 -543 -395 -32 831 -566 -279 -208 259 904 862 962 -517 -475 -646 -327 -179 -923 -727 -125 784 -457 365 613 -914 -695 -882 -461 -981 -310 722 55 725 -760 469 360 -128 590 -872 -258 -634 -355 355 299 -558 -720 861 459 -132 -662 156 626 -934 -71 29 -472 130 445 98 202 -259 609 959 628 200 -605 116 489 451 138 559 797 522 356 951 116 266 -481 401 -328 599 -165 -703 -271 798 561 -740 -762 36 -775 777 735 403 440 291 312 -180 679 -827 739 272 475 108 576 -373 -296 233 133 672 654 596 -549 -429 -921 584 108 -504 -847 992 -965 576 -38 694 437 174 356 5 685 -707 428 703 348 -375 -247 440 -35 323 489 633 151 960 -912 -998 354 -549 873 96 -338 565 538 595 -176 -6 969 241 -67 -179 755 -310 171 899 -686 234 942 465 184 -322 926 -122 862 -503 888 -162 382 701 895 575 -741 381 472 339 17 44 -340 807 -688 426 536 875 423 492 576 -799 668 -291 224 -629 933 -674 153 -372 727 43 147 694 40 723 405 -203 701 -505 -174 108 -660 -915 319 -769 163 -642 839 868 760 993 94 60 -438 594 -50 -35 991 264 -5 824 244 -302 -645 821 710 -927 -499 281 9 148 -260 0 620 705 827 302 282 -896 349 -384 -316 -636 764 -188 445 15 660 539 236 -245 -617 -846 -958 783 183 494 -369 561 -177 506 -74 -836 627 525 -968 -221 191 734 782 348 -364 30 -493 93 778 837 -56 507 679 542 934 -920 277 -654 -564 766 250 977 376 489 -55 725 -151 483 -322 -45 -392 -191 124 471 -246 -238 723 263 74 957 712 50 -951 477 42 899 428 673 -890 153 606 988 877 -455 707 496 902 -634 880 920 -777 -839 -964 727 720 -843 -947 727 490 457 -995 -131 223 944 962 -109 -141 -546 751 -41 207 326 -244 -495 785 -422 955 -677 -796 -82 286 291 272 -35 -141 -790 693 -257 -235 -821 -505 838 737 -439 886 561 306 -43 -449 35 781 174 668 -5 -791 -25 -308 600 326 280 -276 764 775 661 472 146 457 \n754 256\n279 874 -329 520 994 650 409 -873 688 671 893 -744 -536 816 566 814 -797 -177 865 -122 663 467 -129 -702 569 585 681 -328 769 -219 -418 418 -236 303 -643 -971 567 339 -211 284 934 53 257 996 -953 835 -765 -620 -194 659 -789 -11 -336 -252 681 772 175 -755 199 923 966 535 231 -347 624 -734 -632 187 -259 -430 762 173 804 452 353 -749 -737 736 -944 -992 -829 790 4 66 -976 711 -949 -495 221 447 768 -507 -82 165 0 642 771 637 704 913 943 481 -475 602 409 588 300 692 169 -326 -998 9 -992 931 -574 919 -576 -131 -540 -591 -473 35 469 425 -589 803 -276 -269 -925 -102 652 204 -570 -438 -615 485 -174 493 603 592 -215 -493 904 -295 -354 128 -483 816 -814 -649 -910 -469 317 -745 -229 -939 -111 835 459 -350 -183 65 -115 500 -476 860 831 -653 -673 120 149 906 925 45 20 395 -204 279 100 -927 -452 247 -363 615 289 721 -129 627 -425 956 637 -316 -792 -148 -421 161 150 227 154 555 -868 732 -442 400 731 406 92 699 -213 -896 871 498 401 -63 124 135 -235 -417 863 -985 -618 550 210 -288 81 -289 -442 395 390 331 465 -717 566 49 370 532 447 849 -247 521 -669 641 398 700 -189 384 -800 -821 693 -747 977 -891 698 81 499 -232 -64 343 -739 491 -454 -885 26 -125 496 871 669 -837 739 565 462 485 244 796 433 -10 729 -811 311 -775 -46 -166 934 -307 58 398 903 734 71 247 951 -192 678 448 -255 -307 464 -615 -228 468 958 -59 95 901 994 -488 38 -366 548 -630 497 -487 294 818 -47 -112 -168 -500 -510 -529 -349 -623 638 -554 -244 -732 415 477 -432 -616 318 -495 0 521 892 163 -592 765 967 -247 -790 211 -351 364 358 -928 -10 34 654 467 721 202 -762 641 -208 554 26 -298 -154 -933 207 -754 59 -840 -450 225 980 46 -557 523 51 -53 -983 305 -176 -894 468 638 137 -185 291 531 -855 -487 23 924 -686 15 743 -89 737 122 518 -133 -188 -38 -971 362 -336 -478 329 507 274 -568 -40 816 428 950 -546 -174 123 294 -168 -541 80 -202 -995 176 247 377 -963 201 -811 -108 403 170 359 777 -147 204 318 -236 196 916 237 425 -488 497 948 19 -824 144 -280 -240 59 -496 716 850 926 -486 915 464 -174 42 -640 -571 -360 664 -310 594 642 408 -440 710 -831 -726 -154 639 471 -483 958 -509 -452 74 73 983 54 476 -163 248 -144 -557 99 21 945 476 -640 -576 428 -799 696 176 -40 781 -293 -214 -753 -138 627 610 285 526 -764 908 200 -806 45 -404 696 713 974 -362 898 477 -357 334 763 912 -75 570 568 -143 254 59 6 747 622 372 170 126 872 -586 -307 762 357 89 683 99 892 -229 74 592 852 82 51 -950 -563 381 964 -445 -594 617 354 345 -103 931 355 810 785 494 371 -124 23 968 -600 944 -42 307 205 329 694 340 -426 40 581 -839 83 -601 44 986 501 19 692 -165 -980 508 283 329 520 -930 -296 974 258 643 -762 -539 -540 975 -42 -434 -615 -953 148 697 914 441 -330 -986 -322 597 -209 355 -476 -195 -786 -743 557 280 -378 -172 315 612 514 -587 -121 -580 456 -163 -423 607 428 958 -679 113 -797 -410 10 28 -185 -489 553 794 312 -314 611 683 -906 334 742 461 196 -764 -406 47 416 261 400 -982 -321 624 394 976 -427 288 319 571 -105 977 336 -879 -780 702 334 664 -531 70 -242 -45 -934 466 -877 4 -322 25 144 508 -360 773 613 -977 726 323 748 67 -108 910 767 -167 384 -509 -134 228 -203 -360 -915 -295 425 215 -87 993 -901 356 924 -476 795 260 193 417 -860 513 970 -845 -886 -507 -861 551 697 698 173 659 -563 734 795 458 852 -512 160 624 867 -422 484 -317 687 530 -690 525 -967 -620 602 816 507 795 222 482 \n833 578\n-644 730 802 73 -73 665 -500 428 -610 586 318 -929 929 284 534 959 828 -322 185 -205 533 -75 45 506 329 330 216 -43 131 -356 -295 -153 766 -237 392 936 134 987 -720 -962 591 608 -573 906 -460 -940 -877 -145 610 -442 -518 -284 387 -390 -923 547 387 94 -285 -659 654 350 -328 430 -264 313 -258 -590 19 -151 -888 574 -997 -97 81 545 664 999 832 832 80 99 -142 920 208 308 446 -74 -614 -340 -519 -754 658 -250 637 664 858 -224 761 666 -345 5 260 408 -644 949 528 -806 252 868 56 798 -383 751 74 -939 -806 563 828 -191 480 -156 564 479 278 -960 -999 -593 -117 153 -875 -644 879 478 245 -296 -194 906 -220 -802 -552 108 747 -434 277 -773 19 245 605 349 671 -387 843 -479 -150 -369 -802 -464 -109 264 992 132 -194 -925 470 185 -98 -151 929 98 -844 260 276 893 -27 516 -140 622 -456 428 179 401 654 -533 -174 628 157 -579 -135 131 511 -414 51 810 925 -756 116 -822 -227 -500 -512 -804 -240 989 521 553 400 -669 -500 -904 -322 930 186 144 609 581 97 -307 615 642 795 944 133 -90 246 753 197 1 203 -238 889 24 760 152 -329 -715 766 -495 216 -668 499 613 -167 -38 201 80 753 404 85 300 870 944 -456 -271 752 -492 -914 611 449 -908 194 360 -490 785 -567 119 949 552 339 -511 -213 137 -363 -820 -857 961 -416 -867 685 488 224 848 184 556 870 -96 831 -972 -470 183 -41 -341 10 572 288 929 -751 136 254 459 -952 314 -742 -620 -771 285 -479 753 -871 -544 317 707 -524 502 -440 -94 939 556 146 730 18 118 717 85 -345 34 -923 519 439 411 84 -12 934 -927 75 974 -947 -81 -897 88 -991 -464 17 -780 73 198 -899 94 953 634 394 815 -742 215 -533 -235 -353 130 -417 467 216 608 -893 708 -764 -294 797 742 803 199 -432 -789 119 201 234 812 109 24 -675 245 815 -698 -581 -962 -978 122 -234 -807 497 21 -180 -70 976 471 219 -122 538 975 643 780 -100 -479 -715 65 911 109 799 289 490 -149 -30 -546 45 733 -173 -987 -911 639 -179 -898 697 -90 467 6 -769 -897 517 -982 201 147 -501 -632 445 145 298 434 176 -995 160 317 919 -428 847 -917 548 105 713 91 876 182 808 -290 650 -265 686 573 258 -629 -91 864 847 601 -571 691 -134 -574 -581 874 872 748 -917 151 788 29 619 -126 -843 800 130 856 -826 784 249 849 -507 -395 326 683 724 795 398 264 -958 281 -510 963 543 221 349 -672 -273 870 751 128 -802 272 228 94 834 -721 198 716 559 628 -711 55 268 943 561 -398 -365 908 508 -991 -93 -979 516 -74 665 926 769 -269 571 787 -261 734 815 -862 -936 -588 -809 317 615 22 797 -210 553 306 13 221 649 864 463 863 -575 540 501 -871 -479 -568 411 -449 625 -487 340 2 895 75 69 118 858 -528 904 -723 -693 975 107 483 -215 852 -279 229 229 144 913 404 207 -256 -740 286 135 299 773 863 85 0 6 -172 485 -406 -419 -976 -487 683 -176 -922 822 390 -441 -477 826 788 681 279 326 -918 532 427 -90 329 60 -631 -834 581 896 -159 398 -631 -376 335 -248 -64 338 -757 241 971 224 53 -84 234 -368 842 592 898 683 68 579 -715 214 909 762 -641 252 467 314 501 -306 -409 266 -53 874 613 15 -535 -449 931 -78 -162 872 329 -869 558 -839 378 875 47 437 211 780 -213 -777 512 446 -615 565 -968 694 604 613 141 -707 -88 76 277 466 693 -456 284 417 407 -257 888 28 95 422 -499 883 713 944 -636 -33 710 -884 -982 678 131 -93 696 710 -280 -344 -660 -121 178 407 752 969 25 -215 287 -983 243 666 -713 -182 663 -837 -239 974 298 282 960 -130 886 816 215 915 150 782 594 483 -539 -876 -956 58 -146 906 540 205 -868 734 -493 658 -588 467 172 181 -461 -117 245 358 50 -758 878 480 267 3 185 -228 15 727 918 -980 -772 967 -639 920 128 533 -299 773 708 334 836 472 -444 716 -249 -416 305 -748 -853 -626 -63 -681 238 -570 535 -959 558 305 -686 641 -149 -89 987 -531 933 490 253 329 -300 121 651 22 174 4 -498 -318 313 -199 931 -300 \n775 422\n-211 -640 17 -853 429 583 396 337 -481 375 -41 -999 133 278 -784 -543 810 455 428 572 157 704 173 416 -544 298 -196 358 -583 220 579 -654 -523 -959 771 -493 730 -99 -243 -434 -341 -842 -616 -331 561 320 496 350 -815 17 -797 232 468 730 -544 202 -706 -23 843 270 141 540 646 326 -654 -724 611 950 427 21 -131 765 973 481 -79 -144 -129 767 -262 -287 -744 104 206 118 -399 555 411 -21 215 89 338 -928 -70 513 465 -16 -60 341 691 752 447 612 913 641 -776 110 524 678 -476 -291 -725 377 -11 548 997 412 -836 96 -53 -913 200 -40 199 -995 434 4 99 10 -814 300 -243 739 102 -447 -599 597 302 -232 969 22 162 -484 298 -100 -883 797 -364 -148 -517 -426 438 -302 -404 269 100 -215 218 28 156 910 906 704 -185 -904 89 -25 580 -948 -256 -663 -974 -111 827 323 855 16 5 380 882 45 -330 930 615 229 -187 87 328 20 21 985 700 3 874 -345 519 -389 487 -455 -560 923 420 140 785 569 32 -862 -115 70 -410 512 744 -368 -545 911 -14 349 525 -118 -323 155 -827 -659 -876 657 477 560 628 -420 224 235 699 140 732 246 -36 -564 -416 311 646 821 211 257 292 67 -516 -826 454 471 315 675 -373 51 237 915 442 -393 252 372 512 -373 -380 -476 238 830 -744 717 -670 721 -771 494 -169 -749 975 -64 952 712 -514 441 364 249 763 149 -383 -220 698 768 81 -346 -189 653 -92 -238 884 138 32 73 622 -137 319 742 505 385 -786 415 -46 459 67 -950 427 446 -561 -725 768 -316 408 791 -346 386 550 500 -362 -427 -366 -393 583 102 -857 637 -920 475 696 949 -411 42 -219 994 -993 -660 598 118 759 376 -710 554 535 -336 -120 578 629 785 762 -527 227 31 -720 61 869 862 801 -835 573 82 -432 582 -664 440 -35 -814 927 -730 351 398 863 152 -394 -544 -962 753 -807 943 915 -830 -14 -644 -622 488 -922 386 358 764 641 898 -365 158 239 191 520 403 491 587 -648 350 288 -824 778 844 45 352 255 728 142 934 653 304 913 -522 5 902 -354 -593 979 -535 -232 -210 1 591 -981 786 923 -372 386 -641 268 351 -216 579 -856 -374 944 785 545 -36 -412 445 210 -839 292 913 -447 65 -786 -288 43 56 582 -467 31 814 907 918 -130 170 -440 385 -588 645 864 0 138 509 826 -963 341 69 57 -990 803 -219 -757 -185 -172 -81 -601 -1 246 -822 -547 286 857 -178 -344 60 84 541 525 -682 -487 -64 -270 733 -206 705 203 -230 -468 140 -598 0 -798 77 -374 859 20 439 799 340 -900 -409 136 898 -799 419 540 298 -41 773 825 -708 -997 288 -932 348 870 -499 43 474 439 -640 -473 219 -645 196 286 -70 -680 -546 301 527 702 -313 740 151 -23 -121 591 338 177 842 213 792 766 -382 -889 -260 -714 578 -395 -736 381 -345 -204 311 -711 -440 254 570 223 -123 337 708 730 414 -831 -278 851 253 -746 -35 -285 341 872 876 290 793 -870 806 776 -710 689 671 -503 -183 231 789 212 594 956 495 409 576 -61 -106 146 441 -33 -125 -682 -166 -99 -93 -772 941 -674 522 754 -585 -913 400 -410 -583 743 856 699 -162 840 316 749 288 154 -366 -774 -627 241 -97 -566 737 -355 926 604 828 132 601 662 234 -572 442 885 -438 516 -612 887 734 989 177 947 -211 -705 -172 536 -540 759 550 543 915 259 -674 -148 566 420 -528 17 591 709 -262 -131 429 132 962 868 417 950 -89 95 -618 241 -676 606 -105 881 486 -943 517 -531 567 787 696 -885 211 206 273 700 164 -474 -656 -308 -932 204 117 612 260 197 -969 712 -936 -770 771 933 776 -421 4 -504 -536 418 468 -919 -553 -498 -843 502 702 971 584 356 -680 910 374 795 547 56 -738 348 431 290 390 -376 -31 801 345 112 -517 -750 -685 398 988 -327 23 914 493 981 -611 110 755 -220 613 858 \n810 295\n5 469 -972 140 282 303 454 707 624 80 684 404 -487 79 -449 -831 676 -829 188 167 -160 -327 -856 500 -839 103 883 105 -163 395 160 430 318 -101 -653 175 508 -217 -885 164 -863 610 975 -775 840 254 -310 617 941 -653 -7 77 -453 -206 477 723 -62 -961 -688 278 159 -262 -842 -446 -110 -997 -297 -615 380 508 512 32 132 893 621 -774 16 -708 -36 111 116 165 211 -135 -464 252 508 -549 794 -428 319 255 98 865 -117 -330 -804 869 -846 811 -674 319 -92 562 -256 -735 -661 -81 350 -683 -181 -193 817 -270 938 653 -930 -267 598 725 53 -734 472 -908 -507 -100 499 386 -513 46 862 499 247 642 -466 -455 -673 794 216 528 330 267 216 -127 348 -254 -403 791 897 203 546 72 934 -265 764 -261 -834 -783 -116 303 -963 -239 -520 800 409 -157 91 960 -674 413 92 -564 -60 -466 -926 794 94 255 510 -862 -335 394 768 336 221 252 121 -723 -608 -579 -478 384 732 312 -612 681 -19 -321 342 246 464 248 411 -556 797 -370 -781 689 126 329 707 793 -827 26 528 108 -778 80 393 -781 739 767 715 853 -547 209 315 30 618 813 -676 -864 -100 875 444 -184 -108 450 -335 924 -828 74 -131 128 38 -434 778 -596 854 747 -44 611 293 779 -570 246 -752 -27 956 583 63 625 -467 215 -255 -487 -616 -512 17 330 291 531 -968 316 765 795 -855 -570 783 928 312 -103 920 702 950 895 707 -19 76 -477 943 693 131 902 405 313 520 -355 -661 -293 860 483 970 -623 467 190 -745 339 -173 235 958 545 168 915 -951 229 236 548 -103 245 326 887 604 -94 981 -402 633 96 -568 439 773 -822 126 -995 74 695 -92 -216 55 -687 347 148 -335 806 287 31 752 -448 65 -249 -421 -843 -998 -505 580 -676 854 -503 -840 -347 -685 -780 -687 315 -918 644 -157 395 531 -67 296 -151 -342 645 99 -687 -916 220 19 999 268 198 637 653 -436 892 965 -639 908 -732 400 698 849 336 828 -604 -492 982 -154 -219 784 726 987 -660 208 142 -512 -781 687 -97 -833 138 989 443 -647 596 601 527 -169 -101 153 698 -539 470 347 149 930 906 -184 15 -922 48 -4 401 960 -988 912 976 -760 62 848 894 -424 -42 -525 -113 -963 -743 -835 -970 752 -336 -212 -696 -96 294 -388 -411 -187 51 483 601 -627 377 -494 76 504 65 -38 97 -875 124 263 -995 338 966 555 791 714 782 868 238 120 927 -629 333 63 -954 258 160 -102 722 -260 211 359 -854 -638 -423 -681 970 -18 -76 -271 -710 949 633 -343 550 375 605 643 553 276 -121 -371 610 -29 908 -513 -386 399 -358 564 -516 235 -701 286 439 -741 -963 -13 96 -205 -630 982 -877 -769 959 981 -51 897 139 -414 -208 -785 101 -144 506 419 258 205 -607 402 276 611 -650 -512 543 262 317 -185 599 -868 753 30 792 -423 368 971 -669 -718 -643 185 -522 -4 588 -741 273 -767 350 959 681 -979 784 172 -642 -133 -189 -348 -362 -689 447 -276 619 996 871 845 51 626 -543 188 683 -401 816 -152 569 -308 -380 -871 350 649 -262 -889 552 291 -933 -763 728 -169 348 -78 -629 190 477 -397 -160 -231 -761 83 974 775 -842 -666 466 494 978 93 712 -838 656 983 -426 117 -978 -370 -631 -518 990 -153 -727 840 -960 -190 200 -397 671 -85 741 92 -584 558 746 135 161 271 -632 310 -151 920 -695 -954 337 342 447 347 -851 177 -294 883 972 -629 214 184 471 324 548 934 374 490 34 947 882 -8 701 -889 173 -19 720 -79 209 698 -487 -937 -262 -755 -508 363 615 -166 -70 226 -45 -864 -845 -91 483 -665 528 -970 -617 150 559 12 353 -481 25 69 5 540 -807 -883 -711 -338 599 913 119 -718 90 646 160 113 102 -771 -995 -448 197 -832 675 852 380 824 -512 985 -221 424 773 -711 53 324 865 548 894 186 761 136 -463 396 444 39 519 -451 -454 179 -614 -127 -222 55 460 832 648 373 192 -968 91 761 -770 -934 836 -748 -737 220 345 442 134 66 -383 -772 359 514 -462 983 509 -490 615 370 286 517 -276 740 -908 \n825 23\n-604 105 336 -285 -661 -268 -158 250 771 -361 -229 825 344 952 310 -368 -777 377 -512 127 342 117 120 -17 -94 -186 -659 -632 408 -11 758 670 779 469 -870 -373 390 499 401 -751 801 -258 -779 -838 170 926 474 110 673 660 -939 998 -381 446 905 508 708 554 525 -774 344 -347 -457 -249 724 622 -596 -989 -627 686 -890 350 -297 -745 257 -77 608 313 525 493 700 260 148 639 -175 340 34 727 -391 663 151 -469 147 -560 612 493 409 -869 946 790 -579 223 -67 -558 477 -605 -806 -445 -881 985 79 -510 -91 441 765 -362 -125 -847 -371 148 84 -490 -639 813 -465 -947 566 818 257 128 -966 -817 -606 -653 451 -40 940 702 723 -694 60 198 905 -536 389 547 29 -933 550 -240 -162 858 813 322 711 751 -563 -187 744 24 -237 706 322 493 220 136 482 307 -902 588 -382 960 604 57 386 -795 290 307 -333 -666 386 566 505 329 -217 903 -935 -842 87 -112 488 64 4 752 365 858 -782 449 -680 -255 -964 128 849 -228 -350 352 290 -431 106 832 915 -328 -417 -329 879 650 624 289 -797 -30 303 170 -224 737 -293 571 -759 337 267 750 254 -932 108 -105 499 169 524 -422 770 -668 534 -386 633 231 811 113 381 -524 -906 -688 867 644 859 890 -63 459 763 -620 -321 -433 803 -817 -955 466 936 383 -628 767 -661 288 -825 -883 -653 -546 262 -143 -657 -887 25 807 -624 -693 400 626 17 487 430 30 147 898 -482 -106 -366 810 991 -906 -664 282 381 -158 -521 823 839 67 -391 -806 -659 -145 -354 2 -141 435 185 -743 196 -306 -195 25 899 171 567 862 -58 -628 85 -271 115 611 122 -131 -285 -863 408 516 -580 596 -828 -48 -62 468 222 426 208 497 381 430 -743 -628 656 -417 -200 145 -62 46 713 -656 -703 -362 533 -397 832 249 -252 17 779 774 432 695 -892 -232 -865 960 430 743 858 464 -852 -195 378 -918 48 261 -372 672 984 140 32 996 -812 -858 -535 -392 -89 500 -810 604 -241 318 932 507 664 236 -308 -621 761 -690 804 -192 -159 -629 -820 122 868 239 -144 -16 837 911 677 538 -924 -151 24 -645 -413 669 104 296 482 -786 927 -24 -839 -22 245 532 -919 -850 909 617 -709 -172 405 799 299 646 322 898 -278 816 -234 858 400 785 289 -515 -869 -618 661 -78 -342 -436 -721 -86 730 237 -454 924 -456 191 -885 -828 526 416 -854 893 837 -931 868 -349 -274 -389 -367 610 215 689 -768 -818 208 901 -393 -85 -278 139 -163 222 263 841 789 645 772 -65 132 -295 18 570 -270 -501 130 924 357 -321 249 -552 -658 68 -497 -102 751 -915 -262 -381 -828 -837 129 -383 -556 -270 288 -946 -261 695 956 209 595 108 746 -456 -837 797 -211 539 982 -78 172 -840 773 -655 -990 720 910 620 -15 843 -879 702 -351 577 -748 760 964 -281 -723 -155 -407 438 136 739 -349 516 -427 879 -959 -608 85 -109 -697 -709 -759 179 -287 -320 -531 63 299 917 -305 201 17 -440 43 -764 -140 493 185 24 -445 488 5 506 -387 110 224 154 -174 -41 -92 677 562 -928 584 -529 667 293 -288 -756 -867 -389 -18 237 349 612 -289 -808 742 -774 -502 382 239 -711 298 -115 500 -676 -869 487 968 440 -346 -734 655 184 -297 512 954 415 236 -129 782 122 -314 26 -421 581 -791 270 -84 -773 450 462 571 -308 -493 -421 481 -40 777 -285 373 484 40 -80 246 -781 329 -784 892 382 279 928 -796 901 570 -472 456 -756 396 -605 861 448 -653 878 915 630 688 -897 -737 409 820 644 -38 -469 516 132 -689 -871 496 153 378 202 -705 -584 -510 -124 312 -864 527 -855 -408 957 153 -913 -816 96 287 -413 898 93 60 607 -951 -508 -994 -843 -200 -225 487 527 -462 276 -619 -268 955 841 -371 -41 223 32 89 -520 -676 -87 889 -664 -866 499 621 -473 -452 19 626 -843 272 -437 890 671 -435 7 -64 668 -811 423 511 -891 548 363 -747 819 -828 -35 981 -7 735 -65 916 -811 507 -16 471 315 828 458 692 708 737 144 -452 400 -414 814 620 62 976 788 262 231 692 431 622 707 505 -470 662 186 969 421 626 84 131 -29 772 521 -660 418 -201 \n742 546\n370 -795 -627 -579 817 108 566 -953 -254 69 -543 173 121 -107 557 -724 -618 308 318 832 210 381 -105 -407 139 797 -485 -995 739 -103 128 -984 685 564 -577 74 568 -663 -862 -348 262 863 -926 97 621 145 -201 783 -186 883 987 423 -994 -42 -85 143 -407 157 275 288 729 504 -71 -864 -378 -882 -853 -913 -232 975 117 376 303 -558 -268 590 357 -284 -291 -883 388 -775 270 790 203 980 254 542 -782 850 -360 -477 -745 -421 -204 712 521 379 127 520 467 410 353 659 -83 649 -336 172 542 683 643 975 488 343 568 782 687 450 526 -886 -622 -99 467 42 -500 -206 535 672 -874 -378 -992 703 8 882 -908 -903 -921 -248 -50 977 314 422 225 859 671 -795 591 -629 -142 324 428 70 441 440 940 -312 784 363 -689 -504 510 -508 350 -887 280 991 -269 732 521 619 -946 63 656 -893 854 -255 199 492 741 -717 -182 -395 640 911 -135 -562 740 -998 -776 476 209 816 420 322 28 879 -785 -183 -541 -616 -435 -643 -177 -333 -168 409 -497 499 258 -408 -497 45 969 69 227 71 446 303 -210 -964 265 818 719 137 444 221 -463 -639 -949 -60 978 -181 -368 -815 -278 -539 370 897 202 776 880 369 260 229 118 836 -100 -832 272 585 78 -386 964 972 995 610 574 -756 481 -440 -275 69 918 130 -639 783 633 586 -631 669 706 885 479 -118 -509 270 -93 336 787 625 -356 -480 688 129 -130 443 -662 995 651 -560 -984 240 420 -43 848 -87 -184 43 547 -761 398 -117 55 315 -89 248 108 -783 975 127 -736 731 -826 -674 -1 672 -242 349 263 436 -665 -183 -566 81 654 -428 873 -524 91 -708 -402 -968 343 322 -219 632 125 -966 841 -768 -226 315 475 -580 -963 9 359 -807 325 660 -654 158 -690 795 -667 -154 635 58 247 530 -297 -41 504 495 915 211 -782 254 -387 400 -804 73 -928 691 -685 454 126 -636 -492 783 -553 495 611 840 718 643 573 -268 -98 -148 -76 112 -121 -922 -4 710 -16 -560 942 -284 -523 -990 14 235 545 895 -429 -784 827 -395 -976 694 256 590 295 -706 587 -431 726 -614 236 -531 311 126 499 615 671 902 864 65 517 -674 334 96 334 -333 387 -183 -83 -83 -962 975 305 -486 -841 66 944 437 -59 176 949 -232 551 -653 593 277 519 233 655 742 -826 503 -706 225 467 695 12 135 456 732 480 549 275 -678 -289 -254 -868 657 953 -487 205 277 -683 314 701 348 -409 188 -350 271 -262 -750 655 -569 -861 656 490 378 681 25 63 261 531 -464 663 -730 423 711 514 718 95 -306 -250 -286 982 436 957 831 94 -331 -79 -377 876 63 950 575 414 767 -284 -121 588 468 672 714 300 491 869 899 283 951 -338 -750 763 -349 -800 603 520 487 -440 167 139 330 410 47 -31 -968 -230 914 950 278 647 516 597 846 -364 812 163 -679 21 407 830 688 284 -106 -966 529 81 13 -888 810 956 -338 413 889 895 162 649 369 -330 664 668 526 -997 -540 -724 -162 369 498 -720 690 632 328 943 -249 376 -523 863 372 -700 683 -759 -597 -395 -410 406 865 239 985 497 786 -767 219 152 -157 134 784 -601 -29 -1 259 348 574 597 -813 -814 115 -559 120 -927 720 882 -629 419 121 28 830 452 -497 -761 -860 727 124 -911 -426 -603 -813 704 -992 -941 448 724 738 110 994 660 470 787 -612 -391 633 84 -637 233 19 846 -572 743 198 42 -641 397 587 -875 901 977 910 -835 142 509 221 143 -36 384 -724 454 999 949 220 -591 -222 -283 183 576 961 211 -406 -95 296 581 963 813 538 -468 743 -94 791 101 749 -818 478 -196 -981 223 792 -447 -91 -373 483 -745 133 -800 272 560 505 562 990 423 188 839 180 429 188 \n951 353\n-898 84 -198 -292 544 -599 979 283 454 -581 -9 -991 -200 589 907 -852 188 140 811 589 -790 -17 277 289 646 -283 828 49 -517 397 44 -484 556 41 302 -332 -813 346 224 -150 -160 -984 -514 -189 -599 -984 458 600 -538 81 721 871 -756 -497 -107 698 707 102 -947 611 612 765 885 31 485 870 -618 792 114 926 416 462 585 -436 -583 -745 381 -468 -101 1 -175 327 -50 839 808 633 -445 129 -744 258 77 649 618 902 617 663 966 -381 41 -218 -38 -699 -155 -83 489 457 591 -147 83 650 -682 632 339 343 119 -763 -427 -747 313 405 244 696 -251 149 -728 -376 513 -684 -430 997 548 2 721 -714 657 -566 -785 -183 458 33 -320 521 -364 -755 190 -976 -327 693 246 311 -889 -734 -543 -975 348 871 284 -372 691 246 693 222 -497 454 -219 -98 755 5 768 135 792 -661 -628 -457 224 716 433 225 -762 -132 976 -179 -196 940 594 -807 -168 -797 -480 -921 657 -422 955 17 -634 968 -205 -667 -199 722 814 -680 -50 -134 624 -451 -959 10 459 173 593 897 482 -289 179 232 267 -753 823 225 659 -743 298 -362 264 -885 -86 319 734 782 823 812 -219 -338 303 245 -75 110 882 750 -276 817 834 490 242 728 -325 -200 -516 -523 346 -834 246 870 -119 -373 53 250 830 667 942 489 611 60 -128 245 -7 328 -133 426 688 895 740 7 -959 729 122 737 -577 518 909 679 -383 456 583 487 239 -140 -369 920 224 789 654 686 -393 864 -835 386 -771 409 -798 -543 -690 93 92 -206 -520 -349 833 866 962 -314 -700 -933 -968 771 -96 161 -930 -200 181 -552 14 611 772 -884 923 -242 -718 432 513 -591 454 -685 -582 304 491 -262 147 703 239 357 -653 490 459 -843 -981 844 896 -540 -544 474 -767 184 -327 911 354 -748 32 825 73 135 -611 898 870 -229 446 408 641 175 -698 989 589 -297 -676 176 137 -355 452 354 -176 729 -121 265 -329 474 139 81 71 -557 -936 -398 -810 95 -752 -203 -197 -398 209 -134 934 -794 -804 561 978 -622 437 275 606 28 263 -133 -974 -374 782 494 -682 230 811 -431 -444 -439 -4 823 691 -369 -9 761 435 -336 952 825 -379 350 553 386 654 189 731 915 -586 -342 -213 861 788 -45 -30 463 490 -338 854 587 912 -674 450 -886 -395 556 -604 676 -969 -268 -601 977 -831 -923 -346 585 177 -469 963 -769 878 -89 -414 603 -425 157 985 94 570 -376 860 860 -762 926 108 986 -915 176 -611 972 566 -337 -238 471 530 -513 501 -588 332 14 -695 -427 737 750 667 806 846 279 152 -690 120 231 341 874 669 476 -730 140 929 365 -254 522 -610 767 790 -265 637 969 188 517 445 832 -798 100 731 -348 83 766 -857 361 185 172 -191 711 890 710 686 451 914 210 -967 -876 603 580 637 -934 105 241 -854 522 727 339 -767 -476 -600 841 349 -363 230 -932 420 669 -822 74 980 241 250 222 -719 131 110 -750 172 611 -884 252 263 62 -344 126 575 -20 -516 -639 -391 -417 973 395 -158 -124 220 366 342 -154 -182 86 768 -324 -549 492 55 412 -685 392 841 557 400 562 -489 296 -586 33 807 928 877 383 -798 -511 478 819 -877 806 318 518 -120 -385 538 743 524 152 -763 144 134 -343 855 150 348 -615 375 380 234 627 527 -689 407 860 977 693 853 694 -522 -552 613 737 707 -683 24 -776 777 733 295 765 253 -720 476 -819 221 890 991 771 -417 -196 -498 -664 479 206 -381 818 -368 768 803 55 897 954 -83 861 -115 78 -552 -897 -635 593 745 820 -530 614 -522 -584 766 930 -913 -695 -447 649 666 -397 -907 80 -587 -113 986 -961 209 -832 11 466 857 274 726 -230 743 163 0 -10 -227 355 -954 -137 559 71 322 -369 410 373 72 995 -505 -204 -586 423 800 746 -384 238 853 347 889 -911 -422 -385 36 -355 326 -143 376 520 -636 796 501 -449 -259 22 -873 756 627 941 980 339 -399 76 748 -964 -109 -563 -729 185 -297 304 706 -497 114 -289 -694 -749 -107 -251 -884 -811 788 183 300 -791 911 871 19 -957 -91 -917 -779 472 116 389 -705 814 289 566 341 -537 324 789 -486 816 886 930 731 860 -48 -57 -563 -652 -651 -170 558 -625 185 130 745 -755 714 -671 -158 -730 808 -368 618 701 963 -66 621 -647 -494 44 405 309 608 869 -796 -753 956 744 -765 -498 738 567 939 425 371 461 -882 782 256 722 956 -369 708 -155 -101 506 606 -64 -656 713 -56 -620 256 566 -466 816 151 875 560 113 995 -117 783 29 -651 -655 908 610 -646 -54 630 207 629 30 -967 -208 -316 187 607 175 78 89 873 758 -678 797 -563 333 -678 522 -666 346 139 965 300 -828 823 -553 -317 240 406 -740 131 644 18 967 353 -439 -575 626 208 862 -975 510 425 -776 -463 \n990 910\n976 545 838 959 223 -686 538 45 118 164 565 962 771 687 -350 331 464 991 754 -195 148 -263 -539 30 122 984 -468 863 -24 148 206 779 474 692 -311 459 573 -442 621 46 652 503 911 476 -967 558 -165 4 791 -824 -563 423 75 -934 41 -315 733 626 542 -465 -494 278 761 71 678 91 286 743 405 283 847 -510 -797 -159 336 -478 445 802 -786 -493 -272 869 585 291 956 -865 -574 752 683 208 990 843 765 -156 57 300 -348 -526 52 -388 527 424 -551 911 872 11 991 -873 -806 731 413 -134 -91 -102 70 -800 23 232 897 5 -251 570 -388 326 -863 518 487 457 -325 -165 -279 -48 59 -929 -221 336 349 -556 -949 180 569 39 -631 -879 513 -883 649 -333 588 -524 -690 122 -334 168 233 625 499 949 292 -223 64 24 -330 -301 274 783 -729 794 -13 440 824 71 -334 504 639 -529 -721 189 802 354 884 379 -18 768 906 539 332 836 697 -720 -631 820 -941 -272 -338 -570 595 49 796 372 -334 161 154 530 85 -285 21 34 747 843 697 15 -222 591 792 222 865 -138 -949 672 170 183 -281 394 -412 460 665 -432 758 175 525 -310 634 -598 858 997 -959 230 -210 -500 8 589 47 -549 66 -32 308 916 722 269 -124 -459 941 -74 96 705 86 -221 445 542 187 761 172 -464 -80 480 473 993 939 -963 -556 343 534 251 -483 -571 265 492 478 130 -605 389 121 679 954 745 -390 663 -186 -105 41 476 -155 488 73 538 529 -221 382 -653 393 565 -493 -897 511 -574 21 849 -282 -845 -367 297 259 801 -517 -427 769 701 -250 494 -88 514 -354 426 549 723 485 925 379 -551 120 265 -538 -963 -605 116 435 149 758 463 429 882 885 -696 346 961 39 -648 -563 293 988 109 480 -999 -209 664 641 146 743 328 256 -117 -610 734 -276 -701 858 -567 -256 952 -477 -950 938 -475 -330 -759 845 173 496 -668 -127 26 -461 500 -739 -192 47 919 87 -357 103 603 -559 648 617 579 -593 -939 -70 202 8 -808 274 156 889 -649 614 998 417 125 150 -737 637 -482 -212 579 -87 414 691 462 -392 37 670 -759 377 790 63 -704 88 758 -440 -590 338 227 -397 -83 -747 810 799 382 271 -658 811 182 -421 -935 -97 -339 599 296 46 253 747 -553 394 115 644 -41 947 397 -514 549 -552 682 -814 267 246 -115 823 216 567 654 -840 -923 974 716 655 968 660 923 -800 -622 934 565 120 585 685 911 450 -48 957 794 238 392 -838 -814 -316 672 -302 -714 117 506 -677 246 867 -760 215 433 132 85 526 -323 995 560 565 124 703 965 494 3 962 772 -861 -416 12 -679 -419 402 -645 -32 -196 34 -174 -473 -577 -974 480 858 263 279 -27 639 470 -451 945 -663 226 204 1 910 694 631 -37 -627 812 702 436 -491 -958 -319 -216 325 176 74 993 -220 -564 967 -424 -288 693 349 -901 -132 -116 -300 721 -794 -126 764 901 483 3 652 74 111 345 637 494 755 39 -212 829 142 875 915 -118 307 548 808 594 738 1 124 928 -919 -8 781 -316 41 551 -845 443 668 295 537 -928 103 -612 891 -323 247 631 953 365 227 -771 -91 -549 606 827 625 502 512 995 698 670 733 3 886 336 -36 943 638 515 529 289 374 538 -332 -917 -754 -906 664 548 190 159 -636 498 452 598 909 81 -2 -508 298 -171 -249 302 695 -643 -992 239 564 -893 951 158 283 626 172 221 212 877 593 -611 780 -992 -795 -90 882 -72 997 -730 -321 -604 68 -893 937 874 -640 -384 774 555 625 632 23 -306 -208 -491 760 -256 -786 915 -473 795 464 422 -61 -314 -185 961 20 355 -110 -24 401 310 637 -783 348 -295 -352 -93 857 512 163 -508 -735 -4 217 322 -643 53 920 939 994 823 272 -476 514 -179 463 417 -562 829 -256 -712 -253 494 -608 692 372 315 -944 -988 680 -139 133 705 564 429 -171 3 297 736 430 -765 -40 730 -767 988 836 -706 278 -28 -100 893 -354 -107 438 -604 -794 -748 927 356 127 -477 -828 213 -912 449 -828 636 -877 343 -404 946 324 409 489 -202 -623 94 337 559 -500 673 -75 -795 100 440 58 401 -861 -693 319 -300 768 888 -572 125 -259 -579 929 -66 527 -997 562 -633 -691 -880 839 -241 360 779 -411 322 315 920 614 400 -646 23 675 563 87 425 -771 -106 576 -630 -264 -884 -549 855 -650 773 162 701 221 671 770 -193 -201 766 -880 177 137 731 290 -418 925 954 -225 88 161 156 907 -687 -819 -118 881 30 640 -880 -81 -582 -392 967 -204 879 -213 -547 649 -820 376 314 705 738 -444 -835 -145 -965 369 -91 -452 -947 770 92 598 -143 -688 297 393 496 -53 123 692 287 705 -935 -999 -804 752 366 -569 81 938 267 738 -365 -107 833 913 211 152 59 -95 833 680 665 594 2 144 986 211 -356 5 -772 680 -274 991 118 202 363 -904 846 384 913 -921 -931 -267 -43 -53 309 -81 187 -636 -488 -2 -825 378 -789 -173 -695 181 913 44 -250 618 \n935 847\n-894 -905 -379 524 -762 -395 -254 508 -777 -810 238 -309 -63 234 666 -693 2 -964 19 -181 -941 323 565 173 -145 944 -322 774 543 382 423 -270 487 287 357 80 460 901 602 490 -878 -426 -125 869 135 553 -605 -687 -526 946 -891 -692 183 434 -947 25 329 985 975 144 -262 322 -780 -208 575 326 851 -954 629 -306 -921 972 665 660 -239 850 238 -578 19 -24 513 -819 438 -657 136 139 580 523 -408 499 487 160 725 751 -363 255 -574 431 891 593 -694 407 715 492 268 167 -557 412 276 587 892 717 -876 948 884 946 -416 893 -392 -393 6 -335 794 -405 795 374 -350 387 124 465 127 597 997 158 -873 202 -38 987 -973 331 537 478 57 936 142 855 533 817 23 72 -695 517 -132 188 680 -615 184 277 532 196 641 -836 822 110 732 -589 898 -404 -407 -777 465 536 462 762 33 928 455 674 378 -373 -645 -437 954 623 873 442 849 -374 -524 -934 -318 586 -766 641 624 -965 474 887 910 556 656 344 392 34 -338 104 116 -325 111 -392 -722 -638 747 827 480 53 5 793 -854 -651 527 -664 963 -686 -682 591 -798 841 416 -385 414 657 -520 -112 -499 753 -69 783 -826 679 255 -678 21 717 -248 770 201 -73 152 -394 -94 -565 58 939 -178 935 -493 710 -759 -570 900 -733 -64 164 -511 585 144 -470 -711 927 -228 87 414 517 -651 -633 -148 -106 197 26 -787 -172 889 316 596 848 -222 158 152 478 -771 65 888 -498 -830 379 829 955 73 -344 -169 352 -72 -100 732 46 -765 490 -600 827 -165 -640 301 511 -176 488 6 -862 -500 -561 529 223 482 -924 419 -864 136 688 291 -263 -645 383 266 -650 192 -350 505 -784 738 -312 -835 78 -415 795 702 876 738 -586 -766 301 806 970 810 -122 -389 61 454 863 -948 930 327 164 373 283 906 406 804 853 -878 868 -258 -972 -773 850 -645 988 -78 881 -510 425 974 -637 -314 -592 -99 502 675 307 103 -216 156 257 755 699 -847 52 -378 -979 274 -242 -145 280 934 956 414 983 399 794 -206 992 47 -973 877 -959 51 19 114 307 -836 575 -24 -954 -31 974 239 290 45 -619 120 649 -820 300 -685 -694 684 -906 -142 6 -907 709 709 824 514 -350 571 970 190 924 425 -866 -520 -695 560 29 -693 768 361 -211 862 -991 654 80 -41 -659 791 93 118 78 -726 -758 715 -614 827 842 -1 -757 305 -758 989 433 287 889 -759 117 904 -473 878 -407 -555 421 43 328 651 -785 153 103 -608 614 691 -574 -549 -999 -286 -467 417 660 139 313 406 795 623 -452 -268 -170 434 137 -398 471 -11 -579 -868 656 410 -943 168 -427 525 497 433 7 476 -420 -379 337 397 -150 -253 -744 248 -450 -890 170 652 109 -88 653 576 201 -236 590 -59 -821 -500 -109 245 458 876 518 603 -624 -641 178 -695 -719 -369 765 46 -391 193 710 -497 -288 317 585 -716 306 84 -200 -834 375 -993 -246 910 -588 500 587 -139 187 -295 723 757 116 297 878 -190 496 -750 425 -243 -68 476 788 -204 -796 472 130 840 -173 743 -221 470 338 862 775 837 -648 299 210 836 -754 633 552 971 757 775 244 -881 -621 442 543 -219 375 -495 -60 -307 -325 682 -277 -199 381 -865 -43 -134 -922 185 -826 -958 -689 481 322 697 -469 410 903 75 180 373 26 -142 584 677 -727 -286 727 -488 525 -822 -75 195 344 353 522 707 -378 857 -807 388 966 11 -16 942 43 -233 726 299 -56 -287 400 -234 -130 663 -256 -375 735 -141 316 81 -31 451 166 339 805 174 37 604 554 519 290 814 -379 -419 -780 -266 182 -36 -68 587 -673 974 -817 -119 771 -283 -429 769 -945 95 254 -513 -42 748 31 -130 515 -455 285 740 980 385 586 656 865 -151 285 654 162 850 887 -946 268 -352 448 -474 -389 458 672 778 580 -76 806 -409 175 112 557 -897 -411 139 706 987 -751 638 -759 -256 609 -94 219 385 -24 804 728 -432 736 -22 155 -61 201 -28 544 -634 16 164 315 -775 -661 631 -944 655 579 482 356 65 -579 -6 721 40 -178 -752 119 659 -654 105 749 718 357 -967 492 255 342 682 -381 490 -14 56 -277 -237 348 474 544 965 -493 660 979 543 257 -905 305 351 988 -781 -903 293 630 417 -728 -91 27 251 90 121 100 -259 439 881 -412 831 37 267 468 -423 326 -609 -240 698 864 -140 496 599 190 -150 607 -149 646 -950 607 -180 -57 455 27 -394 966 801 -843 751 127 655 204 417 -858 255 -102 -416 -873 -149 292 771 754 -960 624 -505 208 475 -452 513 497 -214 857 59 814 -867 -252 -228 -518 -825 92 -694 395 348 -302 126 -315 211 17 -772 153 600 970 -903 706 724 -585 118 40 824 -322 -376 \n893 284\n77 -704 75 574 716 661 917 983 -984 35 535 -330 887 893 272 -422 372 492 534 -130 941 746 -609 -446 366 175 -271 402 492 104 790 156 -842 -259 965 -807 223 164 -323 895 910 699 806 253 213 -915 238 257 -623 252 127 -75 34 83 -635 505 921 653 -493 813 611 679 -167 -508 186 321 -37 392 -21 807 -679 62 342 -919 243 297 117 -581 -225 -69 411 -913 -198 -893 -936 936 -314 173 -990 975 994 65 108 172 550 -84 -892 -309 443 -465 -708 670 954 -54 -393 -903 -399 -228 831 67 67 217 18 -83 -91 -678 673 273 271 209 182 -845 -676 580 175 -948 195 276 664 180 719 -83 38 145 731 -55 629 11 -601 -664 -436 630 676 -286 -804 912 999 -144 188 982 283 758 -952 512 901 168 549 456 -206 21 590 352 786 613 -379 313 442 -399 468 220 -865 836 626 140 578 170 47 -474 265 386 -42 -32 973 811 676 -911 -805 -20 -885 761 304 942 607 551 -411 112 -713 -333 -439 -40 942 -121 -824 361 -251 -159 455 687 109 224 385 117 -641 -774 -886 280 -810 -58 746 -177 -223 -78 360 -511 34 428 978 946 410 749 -922 -777 465 -690 957 -5 7 791 370 -732 -501 466 935 895 -315 713 644 -925 -963 -121 630 -598 683 240 -862 -584 807 -476 559 -941 221 489 940 330 -303 -519 664 -386 740 594 235 585 -351 657 -644 738 471 -967 -489 -354 358 885 512 -555 306 -693 -146 -169 246 -809 539 696 514 634 228 -36 -407 817 -425 -735 -916 -674 -579 447 940 331 86 437 -437 -274 116 -864 -603 -749 369 -8 -747 -39 237 819 -56 -457 685 35 -505 -807 -602 310 41 -711 -872 436 -614 -590 849 597 627 714 -991 241 622 985 229 62 922 265 719 -765 742 725 -702 309 556 767 -685 327 331 856 -262 488 -622 -641 -486 -722 -530 446 573 -699 924 110 703 -476 -585 -836 525 708 156 601 772 251 483 584 29 727 -682 768 -540 -858 975 173 -793 290 -948 -736 434 976 -281 34 -431 801 -727 437 948 856 -270 -948 475 -482 295 -6 -351 273 475 62 858 -546 522 342 -168 -534 573 71 394 -517 -437 434 428 198 793 995 719 568 13 -305 -536 709 701 56 239 841 -950 -414 361 23 605 -993 142 -388 13 -983 -107 643 342 -477 -649 -119 352 -865 869 -236 684 584 350 279 444 865 730 281 -591 280 825 696 806 611 -392 -542 -913 -592 -520 -959 706 -806 508 -551 416 -703 991 -666 -878 237 -467 -91 882 209 -387 366 766 -957 106 366 -962 588 -626 -807 8 229 118 -20 55 460 944 651 305 -72 908 -84 -781 142 2 878 46 140 -392 -914 1 -895 974 877 -875 502 857 978 -528 868 417 319 245 354 362 -35 -768 -507 286 398 899 431 -690 -841 -36 -872 420 553 -272 -320 -124 401 739 -281 944 -477 745 339 862 912 -313 89 -822 -222 -892 852 -797 242 -475 103 35 594 422 -609 -389 -646 -702 -55 525 -413 588 -832 525 472 -175 391 440 445 42 156 81 -413 -259 370 617 430 -174 506 -477 218 448 927 294 -942 -428 -489 696 -868 145 -2 283 25 410 -188 613 592 541 -97 526 445 -509 489 -90 811 -928 -215 195 934 697 -21 612 386 343 -579 -551 -66 620 332 608 794 583 874 -48 -574 -539 212 251 144 150 -423 -346 -293 -274 562 618 -817 727 -209 -562 -111 919 -875 257 -322 -665 508 -910 -671 87 -20 -279 96 384 -981 251 394 -390 -649 455 -360 -464 -546 732 -654 -850 -680 7 -527 984 855 -113 -255 447 774 853 -682 -69 -313 -860 147 763 -48 12 -758 -66 -253 708 439 227 -322 -322 624 333 953 -597 -807 132 530 987 -653 108 505 853 -208 -506 965 -454 274 -59 674 504 200 202 -64 191 220 231 -233 387 -276 235 -975 866 169 453 284 -468 -416 -96 184 134 -524 426 -663 -943 34 470 152 734 -59 -827 -423 330 454 -107 -28 352 -3 -862 -850 873 -857 676 433 489 -145 -670 332 25 -529 -406 331 -174 851 -346 -682 -624 571 29 816 284 76 110 -545 -442 -611 -567 -357 -416 242 327 647 365 751 -504 670 -135 250 -682 967 -565 579 806 -274 453 -498 -428 296 55 -117 -558 -660 -776 -517 331 -103 -329 -297 -748 -546 150 -225 -146 551 -679 -909 -982 48 970 404 -104 983 -767 -77 -425 469 930 177 617 -627 245 279 513 700 -267 191 -226 545 862 -983 740 707 -474 857 384 -109 -16 -899 -527 542 244 -69 96 20 -159 223 -774 988 -717 449 -936 411 816 -585 -271 -104 964 -752 987 \n971 109\n349 -945 451 -480 -921 -664 -375 291 -317 678 85 811 42 -942 -378 -198 344 238 -461 421 592 75 339 -93 -128 754 -52 390 523 695 108 471 -702 -770 -379 353 628 437 638 591 995 112 267 516 725 725 457 869 696 -444 -174 763 -358 -335 86 210 -885 135 -355 277 56 102 279 336 292 -51 -356 108 -500 401 45 -646 230 24 715 32 316 -555 977 -783 -388 272 983 -348 705 923 -419 795 159 -635 595 -807 -2 699 492 628 -40 -371 -423 643 -314 -77 -958 57 191 944 -715 432 -305 736 82 -253 534 -732 354 -192 -833 86 -192 103 -310 -511 -948 -708 809 984 546 314 16 626 234 -164 -229 135 -424 -807 -893 783 637 939 563 -652 -996 -973 861 -447 366 232 -862 688 343 311 -779 329 511 -396 542 764 857 -821 606 -401 599 801 789 633 -108 496 -968 -69 0 -625 -114 -536 96 489 -482 -889 788 18 993 -442 727 209 389 -811 458 136 880 0 -994 346 881 -126 405 298 -386 475 753 572 432 715 941 714 831 307 141 264 -892 -218 930 -488 576 -211 -48 439 116 -61 119 -342 655 498 -139 -83 761 -851 -692 245 -564 483 -22 172 -918 480 442 -278 -201 965 -971 -378 435 907 562 -193 582 475 395 328 16 261 437 513 780 988 94 -231 783 -544 421 924 -484 795 -430 742 -209 44 -177 542 864 663 347 992 375 579 995 -302 -360 98 471 749 297 285 509 62 -85 -509 -42 214 -402 715 -327 -158 921 466 406 884 -705 399 129 -809 308 632 876 -185 288 242 230 -366 112 561 132 493 552 852 510 -486 252 790 -784 0 386 -334 602 -228 -35 -936 -696 -350 -655 226 435 303 406 -792 318 -421 439 520 -882 321 -956 727 -850 -735 988 762 0 202 -112 637 270 -246 655 -448 54 956 603 957 -963 202 457 -52 -845 864 -181 -143 281 244 -171 654 646 951 -95 -308 -178 270 662 271 -691 473 346 -12 534 455 282 257 -803 -856 784 738 -719 194 129 21 -33 -949 -505 -69 -757 -119 980 267 909 -960 646 168 355 -735 548 -716 911 -716 249 258 -759 -747 -418 42 426 -287 354 566 628 -157 -70 661 214 -397 866 107 -123 589 211 599 132 -133 43 -788 701 -924 -472 -48 837 -657 37 32 -514 -627 -135 770 578 -994 -241 -345 -971 -307 529 -653 292 -896 -136 104 -370 -350 126 42 165 405 172 798 688 11 -641 371 564 -482 -238 212 -213 981 -585 489 300 103 221 -363 875 13 -904 988 20 286 340 364 -106 482 71 69 -239 328 -236 -144 -405 -23 111 -638 -36 454 -836 456 -426 315 -73 -631 -14 824 -455 -829 388 -489 981 346 -533 792 581 -736 92 -682 -774 71 -970 71 -816 458 554 133 627 -952 46 -453 -128 -107 -336 517 518 245 -994 -284 -950 -494 639 105 623 487 -351 -485 884 523 -935 260 113 56 822 -185 418 -218 -225 599 -475 32 72 512 25 358 744 -321 992 -529 -431 -228 402 798 674 309 -615 324 -610 -821 119 341 627 -147 50 -112 644 -606 88 522 658 -364 401 -449 -676 510 -895 551 -64 385 -879 -301 829 14 820 -798 623 699 -355 384 -295 -641 776 958 -544 188 -464 -16 667 -886 333 617 -635 452 -461 -688 802 247 114 -112 634 444 252 993 381 -388 -363 -628 -534 261 93 579 309 -399 726 990 679 -544 -851 623 507 -193 -734 599 -934 271 861 -87 -776 371 -51 152 869 -618 797 651 -125 -477 -807 114 -533 594 996 -669 404 937 993 -742 -406 296 555 941 628 848 29 181 338 614 427 -365 776 610 -617 328 570 947 285 709 -720 -490 80 160 -902 914 545 -335 -484 -942 -682 -829 951 907 305 827 647 -18 32 762 88 888 134 -858 665 149 876 750 687 784 -401 750 203 553 190 820 304 590 -907 335 534 255 816 19 458 922 -980 55 -27 487 249 54 -502 117 -38 -287 851 251 277 612 254 -400 -682 438 -999 180 834 0 483 69 97 583 689 867 499 697 -381 -35 308 -483 616 -960 -496 -153 822 245 348 986 -663 -565 -882 489 -454 -147 817 -358 -149 194 251 523 871 719 -750 -607 469 313 -755 -862 -634 560 -402 350 -415 987 507 540 -599 297 -655 677 -811 585 -373 -806 -624 -66 109 -405 -308 876 369 525 -749 -756 879 549 10 588 689 434 440 -960 -988 -49 -270 970 -868 -846 -841 -912 -399 -695 625 -729 581 -673 642 -275 711 -931 284 816 -965 62 -476 -780 886 939 65 993 323 -645 407 547 -180 -50 647 -229 314 783 -333 -650 940 -761 513 -28 419 284 -614 280 693 -832 -966 760 965 807 -868 776 554 -456 1 -522 -764 -415 528 250 -474 -515 161 698 -430 215 82 -919 -182 -210 337 362 717 -446 -955 201 209 -460 929 -67 379 47 286 575 747 93 874 478 -265 977 -713 148 980 147 277 163 -182 623 -640 744 254 530 -275 -764 -157 888 698 -308 562 -712 293 249 367 454 544 161 481 296 516 \n785 50\n626 140 -186 -827 660 -30 961 -751 -474 567 233 635 -8 376 -690 -978 369 826 -640 982 994 925 379 803 -150 562 510 458 288 -58 -273 879 -668 -436 663 -475 511 99 112 -539 969 -981 -496 447 482 798 614 43 -3 -243 -86 106 169 503 720 -222 101 722 439 -145 159 -485 307 -559 462 159 39 465 145 266 363 -836 393 -479 187 -656 -101 -950 -543 842 957 503 -553 171 295 -388 -34 -158 -213 -660 885 110 -5 666 114 29 8 -235 956 -862 228 -44 555 -220 -610 314 -43 889 855 -208 876 -584 423 -261 -640 435 230 514 -584 613 -310 896 239 -705 -780 633 53 922 922 50 669 577 -806 792 607 418 -794 967 -415 -687 -890 -564 165 787 -978 -789 331 0 -677 971 482 507 758 31 813 362 283 802 100 -717 205 -532 818 -674 -546 790 -359 6 579 463 40 -443 734 323 -810 429 -508 -743 -154 -357 -28 -927 992 606 847 48 -535 -434 -234 -974 -847 -278 -472 527 196 65 -493 166 732 481 139 -977 -804 -630 -761 12 -596 565 359 -628 862 607 756 -468 995 600 712 83 950 -352 202 564 -271 -389 -955 733 -441 -46 313 433 797 -186 573 838 677 -175 -965 935 689 868 -722 -867 -518 -240 -179 -300 -986 -488 -409 -121 753 468 138 836 -963 146 -806 765 -811 -298 52 717 -10 545 358 -452 778 87 257 -852 107 160 870 732 570 358 75 -206 613 -190 75 760 -952 215 610 -975 -667 566 490 551 945 348 376 764 -907 206 -592 -381 75 756 -397 604 18 -115 -994 -343 -618 -452 -532 -426 -604 -474 -229 -522 -11 175 802 -11 -439 280 390 -940 636 877 -565 -702 -713 594 -218 800 225 192 993 -414 -972 556 670 -741 111 623 -20 -744 608 -261 775 -6 -475 550 -819 362 792 0 -506 626 755 -947 -817 577 -730 -587 332 269 659 786 -342 122 371 924 -322 581 880 361 397 633 -352 318 1 197 503 -924 -843 -59 781 895 222 227 -94 936 878 -983 -880 -380 646 733 -33 546 51 -720 -230 -273 758 135 373 -769 134 876 252 -797 -43 -230 407 -495 -444 287 918 443 -235 439 -525 443 715 -199 -3 82 257 -215 83 -633 648 -817 -718 45 403 523 -422 -335 623 -713 268 2 -958 -88 348 81 574 -309 796 510 463 340 72 -612 73 -353 785 654 -108 -659 393 -286 -277 -867 385 295 832 -554 12 163 -801 -928 -817 86 -113 142 404 417 799 541 853 112 -140 164 -376 740 918 -190 532 -673 63 625 468 665 931 -248 633 -464 -469 347 438 510 -290 226 -394 816 796 373 737 -783 841 783 219 111 882 454 -228 737 996 -605 699 634 834 290 -427 778 753 648 477 374 -123 942 -916 943 332 -694 -343 -344 680 151 122 -915 267 451 -102 -525 -919 210 -500 -669 -274 -342 590 113 518 444 -239 18 -503 -209 -853 931 216 -995 46 -486 15 500 464 -206 -516 -227 -24 -630 261 578 860 217 -405 -745 217 -216 497 297 894 839 290 -34 -790 392 -558 621 546 494 326 11 509 -475 577 732 -870 555 208 -969 -217 895 392 -811 -703 -435 571 -521 -17 -904 -95 -982 449 155 782 -849 -50 -292 212 259 955 968 876 -644 671 399 -876 -327 -288 -694 44 -361 -399 758 -147 -718 -990 -44 266 -388 694 647 -886 -758 409 21 -938 834 906 494 307 348 96 -407 675 -169 -447 -361 383 372 134 -7 161 4 -345 956 558 948 -929 58 24 -42 -120 -276 765 904 -382 -781 855 -782 558 -391 138 726 673 21 914 -471 202 617 954 -35 -904 263 845 -417 -984 -535 -577 531 -880 343 -927 329 -549 935 781 548 286 164 476 -868 -895 221 -82 619 -935 -865 -633 -592 -617 503 62 636 711 148 2 200 395 -233 -309 653 52 914 -510 -947 159 921 -596 -435 -427 745 433 653 651 147 898 -402 48 379 24 186 -293 508 97 648 818 432 920 106 969 329 936 578 -804 636 -853 743 -205 912 260 -692 28 -252 -902 79 -181 -174 961 -532 -799 852 895 \n892 161\n-355 512 19 472 97 954 494 490 -114 771 -806 949 424 78 111 342 984 -479 -400 12 -579 137 484 684 -725 779 138 486 -985 -878 956 526 -987 697 -619 557 -236 126 -794 365 793 -610 807 864 -580 -953 -133 513 714 967 -188 65 -395 472 -151 -572 886 -761 -805 698 -442 700 393 383 950 -784 -347 42 -194 -655 101 730 307 958 14 -684 -771 -449 842 62 287 268 615 840 -199 -851 -306 733 633 555 -896 -527 -39 455 -702 -488 -748 308 -402 585 483 165 -319 95 -640 600 804 545 453 670 86 444 631 879 770 487 390 -396 -276 -872 -376 -67 978 69 -190 -207 -225 259 -502 189 -600 -994 464 -969 736 662 -625 -398 242 -736 931 -873 -169 803 -594 -375 -659 936 520 -306 309 843 -674 425 540 -500 394 -405 156 262 -715 -500 -605 923 112 457 -25 406 -13 138 -703 -624 -963 697 -475 132 -105 788 676 339 -526 -934 -501 584 400 531 917 -148 64 -343 -70 684 -275 392 233 -646 555 407 241 -992 868 219 -716 961 87 631 -237 38 -474 927 -292 622 958 -246 101 718 -880 515 61 -958 465 239 -160 322 687 169 685 354 769 -979 -56 699 174 -658 959 -883 294 313 -374 -513 399 -823 132 939 754 596 203 413 756 -48 76 257 246 388 -768 362 -837 519 240 319 651 -483 758 422 -299 -318 426 -911 -657 233 886 933 -960 819 -971 985 698 951 -289 -294 -51 490 -914 -989 670 -239 -856 603 463 979 -867 -966 639 777 -20 444 -460 750 796 -412 -630 -262 -926 290 -315 646 896 376 724 664 -223 64 710 746 -448 -715 154 87 463 -229 -220 -700 612 -334 400 940 361 658 488 821 -598 -674 55 424 725 193 82 181 686 576 -386 933 483 43 -987 943 -861 145 192 147 318 40 -77 -522 909 847 139 364 989 -346 367 312 -974 297 620 824 203 169 652 -386 194 -202 851 -880 -167 471 60 -521 257 609 434 718 227 989 457 -597 805 777 986 -57 425 635 466 625 -454 570 931 -485 360 290 642 -140 662 485 439 704 -522 901 720 304 357 283 -679 477 -920 875 -328 -462 268 -549 915 -716 339 341 232 6 -949 860 446 -511 580 85 442 -171 -481 273 319 -758 645 -572 -376 -500 263 493 39 -258 436 -346 -114 572 -811 -201 57 -348 789 -824 -33 90 -220 919 236 158 400 -161 -670 -360 -891 30 41 8 -782 572 51 702 161 185 547 508 504 506 15 -695 -169 159 -153 881 -447 -133 317 -426 -713 -651 -757 -67 667 742 253 -897 516 373 543 -808 263 605 -920 581 -155 -454 850 755 -930 4 -456 751 -622 463 -565 -324 831 163 -221 648 654 -809 -849 724 685 -740 -735 200 597 -533 -609 -125 335 759 778 -497 963 476 980 983 676 407 172 581 370 -767 -267 836 383 426 191 -3 -490 -760 737 3 303 611 581 460 757 -358 -173 -544 630 -739 262 -891 691 812 817 721 -317 899 51 567 461 -113 -157 -729 390 587 -829 891 -213 -792 -724 928 -824 732 870 558 -4 80 -789 -567 -325 400 -934 -354 -290 940 -393 -416 814 -48 597 16 -328 -924 443 -627 756 -156 -119 -328 504 -273 34 601 864 862 762 -221 962 548 392 244 587 679 -432 -326 -96 654 -589 132 973 -503 -931 613 -786 472 483 842 305 -799 -891 483 -890 956 -507 -48 191 -842 105 -561 104 -993 -534 78 592 198 551 631 829 665 -204 317 988 831 324 895 -35 -950 -559 767 -942 796 -899 -835 515 744 600 -372 190 198 828 74 -821 263 615 654 -740 -127 -464 246 594 534 351 36 -970 984 128 783 356 -629 -494 177 722 -273 974 784 -907 389 384 -829 627 540 -242 872 -121 823 724 -938 744 89 197 -993 342 972 828 200 -344 994 384 348 716 933 569 -232 549 -280 100 -114 -979 -259 315 60 -888 91 811 916 860 -55 28 284 466 788 157 -82 177 539 -749 -177 -684 -814 -211 743 395 -902 -606 477 712 944 -110 226 490 643 2 -552 741 227 79 -853 -279 -425 -311 -659 620 313 136 569 -52 947 913 -344 952 475 112 -502 593 193 119 303 -649 -545 986 599 -120 139 131 177 568 709 -511 -643 -537 -780 -510 -647 838 367 -310 428 -70 988 -968 -67 723 -929 -210 -83 -127 -612 467 22 -650 747 -330 401 629 38 544 959 -139 143 649 399 338 -121 -176 -985 598 38 704 485 -183 143 -411 -492 -190 976 -774 21 427 817 -627 258 -618 -63 -358 -648 930 -473 696 3 -837 -523 -960 615 75 758 13 256 -998 30 957 947 495 971 \n925 19\n702 -561 -902 881 -690 989 -998 993 -965 254 3 -846 907 -727 515 -166 799 501 -451 320 445 525 26 123 216 764 763 -797 -92 829 -135 -668 668 711 601 -553 86 -684 -368 712 994 75 -625 594 983 -518 490 515 894 -757 904 -364 212 553 -610 937 -108 610 -628 532 252 -50 965 -312 739 152 -817 -328 873 557 -399 -766 351 -738 -108 164 -90 320 542 622 -989 815 -626 -741 -636 64 287 190 -194 -162 -769 833 139 633 -271 -99 -106 -538 916 -460 -445 -313 -586 -458 -556 763 379 908 -718 932 -30 -119 236 291 640 -365 -764 953 512 -841 647 61 306 -244 899 -570 69 619 -42 -912 -581 -823 505 -271 -577 172 282 751 982 258 -434 3 930 255 -868 881 586 763 -260 196 -357 770 565 -634 207 -622 -291 166 -527 10 274 -623 641 368 141 367 -332 -212 280 453 845 31 -654 332 -835 893 -268 -433 257 -615 940 -225 511 -402 -427 -57 -360 742 -692 -180 430 631 -74 -481 546 736 -130 921 -268 731 222 -237 -281 730 483 567 -719 281 900 644 -755 218 933 -248 45 616 329 122 -734 996 -860 220 944 155 634 -140 662 877 -790 638 112 496 628 -320 -449 635 104 -508 176 820 -916 -593 -642 250 54 162 879 604 -215 -774 -448 160 941 974 87 -636 530 339 -671 433 -595 837 280 -427 634 -604 893 947 853 571 -182 -221 -549 280 -790 -9 -967 246 -853 478 182 572 -239 -859 -462 587 27 748 187 499 -405 355 -937 -454 -732 292 -297 -307 -309 784 914 -21 327 884 -413 482 -221 639 720 861 887 -430 941 156 225 867 32 514 314 -82 -644 125 -310 -284 518 810 -117 244 752 -565 -242 -812 -624 -809 589 57 -510 -966 -577 970 -978 517 54 341 588 -622 144 579 -178 595 582 311 -93 -642 988 -938 -196 607 -930 586 519 360 851 -382 -166 199 -559 604 456 276 -881 916 20 -344 -809 -402 -835 146 -347 -232 -276 822 382 489 -111 -321 886 423 210 167 -819 -702 271 -294 448 927 876 -608 213 542 17 644 773 -772 278 -621 456 -958 -779 753 338 -755 86 804 115 826 120 -283 605 -994 416 -425 -513 129 759 -118 -729 -798 706 66 911 966 43 150 -277 -682 32 940 684 735 -363 -154 702 389 -520 996 -563 609 162 566 55 220 287 -702 -658 785 655 968 703 659 -224 -759 862 660 -533 -259 34 -479 715 350 564 -79 683 -374 -710 525 803 6 896 -47 428 -828 374 123 -909 700 -752 -440 479 -60 -65 -630 383 -719 -657 721 -104 282 67 -74 374 -209 16 949 219 -123 -714 940 -846 -58 897 426 495 572 473 41 60 973 674 245 368 -531 -127 143 750 -592 272 -163 -522 -219 -16 763 905 -32 648 -457 -68 427 682 256 641 529 734 956 786 -455 953 -229 291 -992 689 737 -376 596 50 783 278 -948 68 620 -637 -383 138 458 356 944 612 -28 405 229 502 251 -100 -105 -424 692 -109 747 28 -24 -379 -310 139 -66 -641 -391 -144 981 533 -666 -251 572 -448 -469 608 -223 392 458 749 -309 94 -89 911 316 -216 165 -134 75 888 106 -764 912 -643 629 -58 770 451 668 571 89 469 546 -183 881 571 93 914 203 828 703 746 492 615 -416 -260 -459 -132 162 -880 -159 931 -803 376 -999 91 503 -325 1 940 28 -642 307 421 -772 71 333 -775 -719 -232 -461 560 958 -907 153 529 -537 286 -73 840 473 -366 386 -431 727 697 -540 811 -635 669 293 398 454 -286 220 573 -841 508 791 907 -891 -50 677 636 815 -921 789 547 628 -107 -933 253 323 -841 -811 195 148 -173 -872 -275 -114 504 -800 960 -82 277 491 262 -472 236 -735 967 610 777 380 -721 -323 627 -742 -533 481 461 663 129 783 471 -874 647 492 638 249 -108 -107 560 -57 914 897 81 240 -671 393 849 -565 339 -187 668 17 -862 -73 945 -206 199 -41 -699 39 846 846 -43 400 -364 -494 307 9 -781 701 -716 -216 933 265 706 -668 368 325 555 762 488 86 131 348 -723 -113 179 61 874 331 325 454 -163 -886 722 -292 0 579 -12 639 -918 835 -237 45 999 172 -614 -821 -73 -762 -712 957 333 924 -191 -821 352 -803 553 -729 -269 63 460 -915 -457 593 -293 910 -133 249 -970 -780 456 -826 233 -465 -554 985 -583 669 355 890 -530 398 570 -860 486 -964 646 888 -372 -92 480 29 70 -814 -22 342 389 158 954 930 476 -615 -786 -612 970 11 350 457 539 796 -164 741 136 718 351 510 274 -226 -188 30 323 -109 -219 405 510 159 468 590 97 -93 504 -357 514 783 380 48 327 835 57 955 797 400 302 -729 970 -396 -909 338 963 -366 106 975 710 -356 815 -752 -49 343 555 \n911 596\n423 -161 -240 707 427 69 -902 510 855 -482 291 523 343 568 143 747 429 -655 524 609 725 662 -946 -798 433 551 -260 21 391 873 497 -264 -6 717 188 433 -356 218 -396 -650 -763 929 692 318 -167 -682 -220 301 202 -293 487 956 528 9 923 -498 259 -641 636 692 864 266 394 482 -640 790 262 32 -417 4 552 -855 914 942 -260 273 874 57 753 -440 -146 9 -241 64 -934 -866 -732 312 -920 712 84 733 -629 -880 386 654 -510 444 272 225 728 883 724 701 437 63 -516 -54 529 790 -269 149 565 -521 -322 773 719 -576 915 -703 -432 732 83 -998 -477 -771 729 260 111 -360 944 -275 563 624 -576 309 75 -454 -898 -404 883 -432 -448 331 -452 239 347 -843 116 -635 562 55 500 821 -730 -193 -353 -380 992 90 860 136 89 -134 42 914 154 21 652 890 696 756 0 -615 282 738 878 419 82 883 436 924 -448 -832 -675 412 -503 -637 -743 -65 894 -858 -19 918 896 370 -667 289 660 959 448 299 814 -389 -400 355 -452 506 -531 -395 -681 652 607 633 -662 651 125 -624 36 -338 -825 268 771 -123 470 538 711 -632 -328 205 909 -699 -824 -690 306 -662 147 -285 -484 156 -787 961 -144 758 -941 412 -978 -207 -402 425 40 -81 158 813 344 597 -244 -442 -492 -255 -528 -663 -333 -127 755 989 78 626 226 -188 -757 -287 567 -220 -621 -426 903 989 254 -884 442 167 379 873 383 674 715 -840 989 696 282 -655 155 118 -213 285 -601 -206 953 174 468 696 -332 187 478 196 346 -567 -804 -474 -497 -146 798 51 766 266 290 141 -606 565 -738 979 38 -633 -177 874 284 364 -874 269 -835 356 393 825 355 992 -208 226 238 -637 -340 -597 332 610 637 -428 832 -732 57 -957 -817 -563 -370 587 874 139 787 83 -826 636 167 720 780 -531 -298 -976 -584 687 -366 101 -297 -780 -55 -701 -997 739 511 266 -57 128 -939 946 -602 -314 -149 -504 444 -975 -184 -50 271 -526 223 -185 -925 747 702 -396 -701 174 -638 693 -908 220 -414 -818 118 381 -357 -685 537 157 113 549 -299 -611 -491 259 95 -324 -24 -693 436 305 938 207 -861 -900 -669 253 466 976 -866 722 -837 102 -495 524 -935 -537 725 118 -753 139 369 -357 -859 -933 660 299 784 -219 812 319 751 165 752 714 956 -271 951 563 -789 458 273 597 -238 881 461 548 -838 285 -785 452 -567 -546 117 -810 386 72 305 -688 -321 -610 -666 613 34 378 562 715 803 755 612 191 -200 374 164 805 343 701 389 -537 69 627 89 -119 229 234 -148 -500 -832 740 689 106 432 -299 860 344 -485 601 111 136 536 632 173 -920 842 858 762 218 -70 555 744 451 -483 410 -339 -471 299 -140 871 -867 -70 497 -461 154 160 -469 -513 -201 -382 408 -991 755 -213 -31 -697 150 12 200 -138 -860 421 818 71 -403 856 331 -553 245 559 -119 -309 272 515 56 -883 975 462 689 -130 -255 927 689 -714 -964 505 766 169 -898 84 0 287 -835 779 -714 833 -887 276 540 -666 -24 -339 876 637 386 -807 744 373 -401 -684 605 598 -891 935 252 873 305 -469 -431 419 26 124 776 -742 -400 912 619 -575 249 520 -735 -998 -544 886 -497 650 -801 -899 969 -194 881 16 555 -653 411 70 983 978 -940 240 610 969 88 275 434 -497 426 205 526 991 985 211 -531 -718 621 297 688 753 -726 357 -596 226 477 269 722 951 273 -917 -692 624 -412 -641 661 114 715 66 957 391 938 424 -577 163 973 -821 393 -376 -760 282 -304 204 752 671 799 502 871 168 139 228 -244 139 802 320 345 -579 634 374 924 871 482 -344 38 -955 230 786 407 742 936 142 -776 243 -281 -713 551 177 908 669 -358 291 -988 141 -245 320 -353 428 820 -107 -656 814 -345 -756 -527 732 -984 566 -861 405 934 -215 391 -568 -405 891 -244 -539 -483 361 867 -759 -923 -60 839 425 346 124 234 690 -691 899 775 -184 764 864 230 -476 647 -639 228 -482 -282 863 841 -356 231 -322 -360 87 -221 -25 234 884 325 -822 -643 200 469 367 -252 701 40 474 -887 -318 -812 -955 342 951 -51 944 -709 99 -563 -694 -51 -524 991 -785 -21 919 123 -656 491 613 547 766 -665 739 -149 -250 599 -202 -490 -272 505 432 -506 -478 232 -77 -301 864 -759 415 738 564 335 -775 36 375 395 674 -399 358 -429 288 -888 -470 855 160 306 52 11 323 -586 581 -524 -892 476 656 186 -694 652 167 290 510 454 -482 692 -661 798 -572 571 144 105 84 992 479 793 892 15 737 245 -742 449 806 -487 74 -992 916 -276 -937 \n942 477\n609 -691 -96 -778 641 704 696 -638 39 350 -836 945 137 -602 432 -604 645 744 -361 -209 -36 -764 -443 -489 -658 159 -363 -392 88 -920 -309 876 970 -360 -856 802 561 989 788 608 689 -305 187 -324 -28 856 365 -275 318 389 -218 -523 -383 13 -357 690 996 626 571 661 -710 114 -464 834 449 894 570 942 -303 379 411 567 466 412 187 -155 373 614 -37 -647 148 -387 -829 457 304 615 392 367 -316 -862 -44 854 50 492 996 644 -527 -827 -166 838 -931 1 76 -587 482 -232 630 174 797 -868 54 352 881 160 -83 -379 751 962 719 -785 -691 154 0 363 925 542 939 -899 -835 -777 260 -746 -125 -672 -912 354 695 -244 691 -502 -307 -763 410 708 -268 -286 18 202 -364 756 -423 -54 -271 -870 343 501 302 297 -940 573 -621 -975 317 75 -645 -54 -661 942 -451 -544 -467 -873 -295 825 -408 349 286 420 524 -293 864 855 442 -672 -58 -298 519 -195 229 244 567 260 750 806 648 848 708 197 -221 -270 709 844 -828 641 537 432 576 826 -989 371 872 -100 122 -266 95 -54 739 -111 666 989 -443 951 236 935 4 500 485 -705 841 -996 -335 178 -813 -473 -640 -78 426 575 -987 -540 819 -330 951 687 -858 541 854 161 -83 59 767 811 -990 834 -444 191 -481 443 141 -903 956 268 -667 -355 724 -910 774 998 -201 -167 632 -273 -63 873 799 271 -176 456 735 407 -241 48 958 974 608 766 910 2 429 -866 -846 848 -350 -907 -194 -103 -321 -483 326 -675 -790 -967 583 -195 698 -656 306 451 565 -100 979 522 -980 -366 223 637 345 -393 362 730 246 153 -914 798 702 -731 42 -112 -28 -904 705 460 665 350 -600 89 -242 255 511 -675 896 -712 905 385 -991 915 163 -344 167 821 521 583 -646 305 345 -161 308 403 493 454 725 270 470 -89 -755 79 524 -355 905 -95 -535 7 -889 380 681 -261 39 -217 297 792 -892 2 881 151 -28 169 -681 959 848 204 -675 -583 605 -292 797 915 -298 527 810 778 -510 -983 184 -664 416 -345 627 -28 -278 175 225 755 487 502 396 -412 640 -745 -388 66 850 796 330 805 -10 -298 -246 441 -457 -224 602 -293 730 -111 -812 477 198 -462 216 184 243 309 -932 -699 -768 507 562 725 -347 417 81 273 763 229 -356 39 -438 -536 994 -787 -469 313 588 148 619 -520 994 662 106 203 999 608 86 524 784 631 935 352 329 298 -163 -186 456 452 346 934 496 893 697 -567 599 921 -263 -786 -377 279 387 -168 -83 -283 -860 -192 912 797 575 106 303 -248 573 989 -963 491 954 899 -594 -395 48 192 -646 520 -281 -102 471 963 312 555 192 -703 -321 329 117 -325 332 133 43 -629 -631 961 -320 92 649 -755 -879 513 -968 324 -957 975 395 -665 319 -758 -768 5 -938 418 -775 -845 409 -586 -630 730 754 83 243 651 -329 -138 789 -841 588 -93 211 65 877 955 835 77 627 215 -837 -403 874 -297 117 220 174 869 429 567 484 483 -600 876 -265 541 464 -217 857 -899 201 -416 241 562 -228 255 605 -561 37 391 -68 523 -901 69 -591 441 208 844 973 821 896 481 26 23 209 494 539 763 -715 -687 -795 713 -635 440 -497 -892 282 277 632 924 -973 -881 -358 -156 499 712 830 644 234 -588 278 -624 -954 -195 -489 991 -976 392 -846 966 -869 534 -463 -690 12 352 492 929 807 468 837 250 -123 315 -963 -521 -696 994 872 212 -770 548 -881 784 994 774 251 -324 -109 -226 -844 980 644 -381 -334 96 99 672 440 -299 155 -11 20 901 119 -309 730 874 402 197 -75 832 80 -437 727 652 256 -57 536 -37 665 804 -804 24 -682 700 -959 -274 816 769 479 -850 756 -242 -598 -852 -210 -864 123 855 683 520 -721 344 972 581 -607 732 901 -572 182 -299 83 87 -383 391 -166 579 -274 -257 -932 -698 360 972 -964 -577 -370 928 -795 -826 -687 488 -683 476 -170 901 -175 694 -697 609 -704 464 415 892 419 -114 83 -835 505 26 -368 923 365 363 683 979 -442 888 -984 -872 818 965 420 -182 -464 495 700 -109 -31 -639 557 786 -289 723 842 -218 -881 -77 562 -650 -649 130 407 770 -653 516 432 798 310 592 472 275 -216 -129 404 -192 -940 -859 673 122 502 129 364 383 664 -263 456 -60 -758 17 91 822 -472 -362 -249 677 411 829 744 973 0 -24 18 116 -932 84 -335 -158 -174 -767 -600 548 700 -722 -677 136 990 -75 327 -586 -489 -892 -327 415 461 -114 -829 -141 712 591 -602 -200 329 369 655 984 -134 448 -59 105 310 -963 -145 537 583 668 -672 629 -274 -304 -681 -349 -898 976 772 875 -721 -323 -700 808 -938 -169 374 488 32 961 -30 89 -302 452 42 -671 413 -648 517 -163 -729 526 -141 -135 140 -941 \n861 123\n850 61 782 -913 109 916 271 -164 169 -526 -762 811 580 -370 -333 -631 111 331 20 299 158 349 -693 -456 -938 419 117 2 786 828 -857 -352 534 713 142 856 75 121 513 -776 -330 -830 -951 902 -1 -133 -791 722 -568 249 195 454 -397 -369 499 -653 929 413 410 657 48 349 -79 459 -629 211 -884 47 -628 -388 539 694 518 219 -756 722 416 -773 16 61 -405 -726 -802 363 775 938 640 -51 154 525 606 634 866 -324 323 568 551 -386 355 -209 352 172 163 957 -861 5 696 -936 660 -386 536 -634 461 -711 607 -401 -373 937 356 650 399 -257 -418 -20 30 -808 -311 389 797 -149 976 603 -55 241 -587 -989 567 -812 211 -55 -714 -525 -728 577 -424 845 996 792 -118 324 807 67 367 427 708 -519 950 9 -914 -716 14 -103 -93 951 322 -51 -858 62 -533 952 -590 -974 179 820 655 -408 -902 -153 505 680 859 981 698 -997 -74 -2 -959 988 649 519 317 29 -234 157 -128 52 424 371 408 368 734 586 -503 976 -272 -289 693 33 -352 738 748 521 -754 -403 -420 -56 -224 871 32 130 -536 547 -623 886 105 -145 196 322 17 656 54 180 -530 -721 240 722 -360 331 138 667 845 89 495 -228 -885 -167 -213 477 602 696 -176 33 -169 -147 552 -233 -891 978 486 -561 -70 -674 227 -921 665 285 -472 -726 -891 427 -135 -983 837 -380 897 -256 -947 -536 470 106 -143 367 952 169 190 297 440 629 -241 256 808 -490 -469 345 -975 632 -500 -287 -256 -115 -466 511 211 963 168 565 -186 749 -20 -622 661 177 167 83 143 859 -390 -821 7 786 -418 891 -120 372 488 -510 266 -967 -546 421 495 705 836 601 46 745 63 -283 283 700 265 385 -180 537 75 197 -310 -574 946 925 590 33 839 716 1 391 -247 -551 380 968 -395 697 -476 -624 833 -560 632 -616 -825 558 186 -948 529 705 498 -419 418 907 467 -634 880 435 908 544 766 642 408 883 248 -774 -518 58 -791 -507 -642 -153 673 -405 882 177 -678 -495 -49 -21 -740 79 -776 669 900 103 -712 -279 602 -790 -65 -417 81 -269 -151 265 613 867 495 277 -95 929 -278 187 724 302 91 714 463 349 -104 527 -978 850 -484 -521 537 -216 524 597 -903 350 -246 -828 -815 510 -188 -336 -381 132 975 50 818 821 -290 6 203 -269 -403 829 866 992 -269 458 -172 746 248 591 801 599 -767 -525 -192 -556 -321 103 848 -427 98 -280 904 -955 775 648 -552 262 501 507 -941 169 -346 -809 497 -680 -778 -191 633 -416 -75 -573 941 986 154 -150 259 231 -476 -188 -981 238 70 665 -686 175 94 -495 809 -876 -47 968 690 555 -65 -791 43 -286 -550 949 825 50 590 -853 428 195 316 713 514 351 583 -178 861 470 450 140 -616 945 -212 399 414 440 -752 -519 -283 -290 -622 757 345 832 585 877 60 -530 -264 662 814 -497 733 -532 748 -972 360 481 -216 340 428 808 197 335 865 248 646 648 -521 -976 703 -157 628 -613 -625 656 -268 -197 -35 -583 256 -312 -732 173 733 -81 -370 302 -377 -193 -230 142 815 317 -317 731 566 83 -865 510 641 -697 782 791 -144 110 957 550 -365 -519 61 -90 273 571 37 493 333 679 171 166 353 -259 167 326 -336 -467 481 204 513 95 279 186 784 732 -272 -205 547 384 -28 616 -262 370 66 778 472 -520 -129 43 -859 798 790 539 -392 -6 676 -724 801 -979 807 442 524 789 553 -450 775 208 238 -801 -134 -188 215 112 727 358 898 991 -95 -390 -560 22 -330 -295 558 -245 446 -610 -252 478 168 116 801 -214 -31 123 126 -232 -980 -941 -430 594 816 -425 437 677 142 -708 486 993 -997 797 -498 -783 71 105 344 -725 620 400 -80 -958 -16 -830 -351 207 80 -603 894 -539 993 -291 450 216 354 -847 534 31 -277 -794 -140 128 954 -973 -264 60 331 316 -942 -570 -865 -87 -654 -307 302 689 -727 957 -873 652 833 -299 717 539 746 451 890 822 730 583 515 378 558 125 54 231 793 439 439 400 -526 988 285 231 -624 357 -68 -342 -283 -920 225 78 72 -289 673 -348 -684 932 490 -871 -865 52 -624 -68 52 -95 306 106 869 -887 -178 -446 891 35 -601 544 -21 -788 40 -124 -522 865 -568 538 586 -667 -68 -998 250 -442 297 129 628 -846 989 854 84 302 101 910 -429 757 -109 -157 -674 \n856 524\n-430 482 -210 693 747 882 729 -830 -680 -748 -903 223 -901 116 580 470 -618 306 -22 532 -544 113 -301 -143 105 954 13 -296 -363 -943 799 -149 425 0 713 -864 -786 -122 2 470 232 -443 -831 433 -770 631 328 942 795 -446 427 599 208 -91 408 739 -942 -127 396 769 -410 780 559 617 -79 890 101 -635 -115 806 193 862 58 -286 237 -658 442 358 371 230 501 -646 927 -315 -291 649 -746 967 741 32 -977 203 435 -397 972 -981 230 89 -352 431 391 534 22 -862 94 -309 -425 -188 132 -993 59 54 -538 962 617 -527 -175 276 -227 107 -94 -893 -717 845 -382 -611 -584 850 104 -843 753 827 348 -755 361 -942 -661 -393 -12 -158 -976 313 826 -983 553 139 513 3 22 914 913 592 -50 247 727 23 -811 -692 786 -518 76 90 -745 247 -180 299 -931 959 -693 -265 301 88 958 245 24 736 578 -536 -248 127 -447 285 718 701 199 549 967 449 -130 -762 -587 -595 602 -613 382 732 622 849 835 -152 -48 -573 444 651 -447 101 -315 345 797 -593 300 364 146 565 -169 866 591 871 -781 220 -900 21 609 -608 523 -812 874 -240 867 538 -97 609 125 813 977 365 426 809 -821 530 -11 -439 -303 -97 -736 -240 482 -135 586 134 129 279 64 355 630 702 -598 472 -276 581 -881 279 517 -339 781 866 -53 -368 31 -914 -973 628 -99 -280 505 -558 375 -256 -418 -637 694 -177 356 490 -415 -270 809 99 -899 528 -261 -410 -858 -905 888 -661 -182 995 -439 716 -479 575 355 821 861 710 536 899 -681 -332 -655 955 45 -920 957 565 -127 349 386 481 -418 228 651 304 69 399 777 -583 418 80 823 775 -904 872 -167 447 714 -472 -646 353 -118 -876 259 753 -150 435 -741 65 762 -328 754 -72 -996 740 120 454 635 594 -672 193 192 849 438 603 -292 -966 226 690 -457 -391 698 766 764 -681 -374 543 -137 -178 -434 5 -495 96 688 550 -624 -617 259 900 -594 -168 -445 -963 289 -951 -738 335 10 399 -499 -884 738 -442 708 909 -317 -617 -294 526 519 -454 150 177 886 620 580 373 -142 -257 -973 -834 -836 955 585 286 -179 881 725 259 43 -101 570 215 589 -984 773 163 392 710 237 981 -191 950 80 -62 -112 -20 438 -220 774 -447 852 64 632 938 -195 -97 416 -519 -318 512 526 383 872 -18 -962 996 -675 -993 917 831 -194 -572 -129 -738 336 754 964 32 887 851 -361 584 802 -783 407 182 995 788 472 361 286 381 442 -406 -987 477 354 299 -280 784 741 541 -613 347 229 -739 -111 967 386 776 470 -874 -662 -221 414 30 663 133 -857 64 -129 56 547 -770 394 480 885 697 180 -871 68 535 326 711 791 971 771 -560 284 796 938 221 -811 818 749 759 -360 997 290 393 -502 548 629 99 871 -199 899 535 381 -93 8 -71 437 95 754 365 638 490 348 353 47 -186 -797 254 686 -58 846 -749 465 -492 -327 -409 569 -944 -987 602 409 340 -559 346 908 1 487 -107 869 998 -257 -143 -453 803 239 958 512 -231 -753 -612 -719 -122 -330 824 -400 940 663 -14 10 644 -443 597 466 -178 357 378 585 -373 -415 107 763 -94 -377 -69 681 -491 -341 295 -639 -413 -985 -877 455 154 -655 -534 221 916 336 -422 697 352 549 -197 -425 -152 429 637 76 546 -674 -512 831 -614 116 784 83 -684 628 205 5 59 -818 555 749 379 -432 281 -136 844 468 699 -119 -157 10 897 -821 14 991 589 733 934 831 -913 -473 711 -785 543 108 -428 998 607 -105 882 -661 -765 -378 708 882 -848 202 -533 -98 60 611 834 -609 -577 -577 437 -180 -10 756 -644 -535 -822 -706 -615 848 522 -283 926 730 341 516 -976 75 243 732 901 -615 403 -858 174 -882 -337 197 -703 -586 501 458 -940 747 826 962 857 -353 296 857 176 154 210 288 687 416 560 -196 -55 -3 110 589 -335 853 731 -392 806 325 -979 -445 773 493 550 -618 427 -292 583 550 142 165 77 710 -161 397 -13 -420 377 337 871 -27 446 470 -333 572 -536 438 999 -780 624 -82 817 380 -362 35 219 -824 418 -800 976 872 -220 -771 759 -130 -954 427 957 590 -810 619 -194 432 -630 418 -32 -458 -882 -362 -223 311 433 -425 -835 569 -480 763 -388 532 -818 -405 549 361 658 -587 317 364 -20 940 682 862 -885 \n977 155\n731 846 -112 -573 870 394 505 582 314 -728 344 -732 -572 349 364 728 -221 -652 318 343 -51 -706 671 -128 -670 203 602 840 -772 732 582 486 166 310 805 -335 -304 -930 -263 -155 901 39 368 718 -953 -910 373 928 549 687 -731 54 -319 408 -777 206 -127 -181 129 607 -91 -691 179 -255 92 -340 681 546 750 -878 -292 -906 668 -268 494 129 826 -44 -558 -745 -481 223 287 941 526 772 -313 -886 115 -637 -191 919 837 328 119 -688 -445 751 605 -679 -79 681 160 -162 -262 247 300 -150 541 -903 -198 -219 375 -36 507 206 -809 -429 809 -454 939 826 788 616 858 -986 -643 19 -9 -47 288 -52 619 -696 588 867 -947 422 -976 348 -140 792 -493 543 977 -519 -830 -824 382 -626 176 512 821 620 305 458 -315 161 374 327 720 812 -363 907 -243 828 911 350 -371 -91 101 139 974 -398 -260 452 -646 215 -776 996 79 -302 -943 347 603 -275 -276 822 287 965 552 845 899 -247 -308 -563 -509 -206 849 553 798 701 864 323 316 25 -698 674 127 52 785 697 -652 934 -20 -328 972 663 319 699 470 127 801 187 -713 471 453 -492 595 269 506 806 877 316 379 -85 53 825 319 -945 -778 -39 145 358 931 -692 937 -205 769 -41 -202 -697 -176 526 362 -819 -946 -452 -813 783 -988 841 -834 -52 -639 616 -300 -992 -920 103 859 226 -577 335 529 -262 -134 -55 -69 884 216 280 -75 809 -102 354 -626 -356 535 6 -484 371 -401 363 -170 852 733 -434 742 228 -808 -777 -831 -19 -419 -484 224 766 628 959 -481 -116 387 405 172 410 327 -28 65 31 -798 638 947 880 -88 -194 1 -917 653 681 -126 -826 -450 -921 969 519 -280 878 -670 688 861 -884 -315 269 738 750 -180 -260 11 738 71 -923 -905 -931 -297 14 227 774 895 -807 817 -957 798 504 272 919 555 995 753 61 -619 923 -970 -767 333 632 339 341 563 -199 2 -366 653 31 -640 621 782 -326 -841 927 -573 -466 -488 -174 181 -528 241 609 -21 -872 117 -426 280 215 402 319 -214 572 184 817 242 -219 -997 640 -898 -438 -705 -524 498 823 -107 630 905 990 82 -397 -387 849 13 145 181 -191 -196 284 -172 996 757 476 718 841 -576 898 -447 233 538 438 582 -141 886 609 694 825 815 937 309 556 -328 -73 840 -268 -324 -62 469 -375 270 27 735 -779 19 486 758 343 739 -993 -100 928 91 722 330 -758 -118 763 -697 -804 607 -58 -425 -491 177 -498 -885 -967 -63 -817 468 -696 -932 432 258 459 -788 -750 -861 831 745 -589 201 216 200 -371 612 216 185 650 -523 80 -274 -585 435 -739 589 657 713 516 -733 176 -74 -347 -157 426 411 -316 -513 515 171 672 819 790 900 322 327 -113 822 667 560 158 500 -358 225 -956 445 629 -516 -308 -900 330 454 829 640 -831 841 17 -716 247 -329 -949 984 -154 -32 388 431 853 -554 60 -199 -807 -489 -256 876 -261 18 765 406 335 686 669 638 -978 267 -311 61 -108 -960 -365 380 -530 -452 300 -445 877 840 -488 713 569 -272 709 368 21 678 -759 516 -726 -295 451 190 723 284 571 504 874 754 310 -921 -914 -875 -14 924 63 -715 737 81 130 -83 -344 -746 846 98 -403 -335 4 -447 -171 131 -839 -847 -606 -981 -201 -37 159 225 -820 957 -131 -884 -978 329 -125 19 -126 -101 739 804 -280 218 831 -147 -909 958 870 958 372 -194 308 586 -74 -851 439 884 95 130 32 -841 535 -996 -925 -302 34 682 -473 953 613 210 474 -142 847 -316 -434 218 132 -166 -759 -244 357 -473 907 -359 -750 -561 772 -618 -119 -57 869 80 -284 -373 -764 304 -277 -678 -986 -166 806 258 958 240 967 -369 562 -577 277 -185 261 -818 -808 219 551 -316 107 -923 816 -519 -64 -236 -737 -751 -17 210 -32 -241 744 -446 -905 -178 600 613 -824 -625 -393 682 704 992 184 791 23 -918 956 -984 976 704 -466 -192 -624 -308 -178 930 -313 813 536 778 570 546 -92 193 -156 -430 -507 724 87 -209 492 -709 -731 -845 -611 -217 8 170 -649 -704 766 -83 -298 -545 941 -87 -486 19 -663 842 24 -197 -297 -265 -130 815 53 -209 959 -958 147 -288 -552 60 -900 -906 936 774 93 582 119 -164 658 238 -923 772 824 -42 698 304 234 30 50 739 -981 832 513 -288 452 187 701 300 20 471 709 -422 -849 558 382 390 -240 8 983 -299 -467 496 -813 51 -712 45 -144 -896 90 -954 -260 -757 78 62 513 973 -431 -652 628 812 339 820 948 636 300 569 325 -377 96 458 -936 661 697 -337 -57 -870 -733 278 767 595 -911 573 992 522 357 387 -323 -381 616 277 556 -248 -887 -482 404 924 892 324 -526 968 853 554 362 419 164 625 126 939 792 -615 -896 281 -530 -463 -429 922 273 624 982 -336 550 349 -846 207 296 -982 -365 -592 881 821 823 -938 159 -539 -958 660 605 841 340 -516 -480 -775 706 987 626 816 604 462 594 435 378 -118 \n993 511\n-593 521 -994 -970 694 -401 589 585 -207 -857 -682 -610 776 190 93 -718 496 949 -264 -212 -393 333 710 20 769 626 -721 -476 500 564 933 670 175 262 219 -648 54 936 -223 -795 23 21 -442 -156 653 461 953 -246 -583 108 915 630 -158 201 -959 -318 242 -641 644 842 -958 -673 -880 150 79 -967 -666 -726 129 794 775 516 874 613 688 -479 773 -361 466 -230 128 688 341 -184 798 -602 318 -463 470 -203 422 689 866 -515 720 86 -905 181 71 -541 870 953 -261 -983 759 738 485 777 -878 960 210 -998 923 -959 469 -171 688 -167 996 882 340 -914 -541 336 -393 121 -223 998 406 599 -714 -276 773 -4 778 345 -990 955 -744 100 -866 -948 -144 31 913 507 772 966 285 -216 815 380 -124 453 339 791 394 -835 -308 -23 -948 229 99 -35 -791 923 108 603 799 368 529 -343 -248 -397 380 -887 -889 604 -176 793 963 613 449 383 -710 -188 71 142 -805 921 -512 -216 517 -535 -507 -2 -186 70 117 -838 498 -770 984 554 384 -993 879 -816 27 64 -923 -333 180 -679 -185 -234 139 32 842 629 178 -260 449 713 -249 62 673 745 -376 -654 285 -585 320 -31 941 166 -787 274 -984 377 -887 929 404 -576 311 812 768 589 -298 120 -370 109 -218 883 -961 -34 358 -201 413 217 160 -34 10 693 576 713 777 -690 -352 -231 423 819 414 14 628 -668 -44 799 948 256 -227 -364 -297 53 -244 366 -664 851 982 800 696 -985 -187 -418 -774 -392 498 920 -323 -326 591 400 -772 -700 630 591 521 368 756 37 -703 428 -46 -596 -574 -317 960 -509 -92 917 104 252 800 770 24 -399 976 604 399 442 -491 354 864 470 760 -502 -249 245 -557 53 -670 -79 -88 144 -28 -801 -74 142 918 657 399 -903 92 867 231 370 551 719 96 -24 -278 921 578 -671 -683 511 961 -552 -295 479 -895 250 -394 326 -776 -364 364 -810 -283 -614 591 841 -888 -561 930 -575 -804 -739 -568 -204 999 -805 679 612 495 -860 945 981 641 563 710 -413 -543 566 384 -793 -589 897 22 -303 539 743 762 -405 -943 332 755 151 952 212 491 597 699 -177 834 -923 -538 817 -161 -416 -840 397 -56 15 894 300 -249 185 969 -398 -194 112 -866 -849 -903 149 100 967 782 -60 26 973 121 491 830 -758 823 110 155 822 -692 38 -52 232 740 -173 -723 -825 980 748 -971 -674 617 -222 598 -170 335 650 -280 370 -147 76 -457 359 337 -93 871 547 -111 350 874 308 48 -385 623 699 90 856 -422 -135 -649 -420 35 456 -714 -696 457 -332 224 707 482 -61 -834 -897 -832 321 475 -994 223 928 -777 -362 -608 322 127 912 512 -743 -283 183 -231 373 -16 448 -218 245 757 -750 -81 806 428 664 -394 -713 -212 298 116 427 -648 709 -597 -134 -285 -90 -652 -528 440 691 831 690 -110 -891 -311 67 154 536 959 3 634 -448 -425 680 114 553 -784 -76 32 208 -127 861 190 -291 -161 780 -716 -255 -454 206 579 411 -5 22 -747 330 669 -593 54 933 314 -537 -618 7 358 -963 371 487 805 592 894 -937 -296 -728 -983 486 627 -866 -533 800 543 21 -361 374 -681 66 -522 -774 697 -712 324 806 -491 -39 596 26 -138 973 -365 961 224 -245 -551 415 743 442 827 -885 395 776 -584 -445 -830 556 608 -270 283 303 844 38 -403 -799 420 -707 -779 549 376 185 331 720 954 623 729 705 369 418 132 341 136 -696 -946 743 -797 134 -379 171 -370 939 -691 -59 504 -394 -947 382 -951 -36 385 492 78 316 964 60 305 201 -321 494 -566 408 -816 -145 712 -47 911 -382 556 -587 102 450 775 -299 330 -48 982 195 -570 -837 907 578 597 211 -975 636 370 -695 739 -112 686 -515 -45 395 994 -652 434 379 538 461 -22 -981 64 290 -565 424 846 134 -534 -176 431 693 -363 500 623 594 -490 743 -39 251 -726 -315 -826 56 -791 -842 482 816 -870 51 -228 60 810 -339 -407 -506 -870 1 665 -491 -104 457 539 557 308 -50 520 986 -359 552 -74 967 -52 226 660 -22 -403 757 249 -204 -668 807 692 716 616 765 -429 -994 201 102 899 -985 253 -774 284 -957 -351 932 959 810 -6 428 963 163 188 -573 -957 -163 -865 604 -109 536 629 704 -562 -43 289 820 578 -802 -454 416 506 -558 388 -479 676 38 -717 162 532 -873 936 820 -810 616 -687 -5 403 -154 -81 -928 264 613 168 484 854 276 292 -142 148 595 142 13 832 -77 606 77 -874 558 -245 -909 -143 370 572 561 104 644 252 249 0 512 -267 888 -298 386 -317 509 200 -28 937 221 -285 420 -856 -583 604 251 545 -151 351 127 160 -956 617 570 418 -98 -716 -489 202 953 899 374 -792 -28 409 959 -725 986 -313 -300 456 233 -284 -941 644 -430 -166 410 -767 974 801 40 68 936 -161 203 130 -264 366 -7 476 613 -405 565 -407 44 183 -748 -190 508 592 -477 929 432 361 438 634 -8 711 265 983 896 -698 -906 963 -167 -63 540 981 -273 158 -436 159 -878 -669 684 712 \n881 527\n593 -805 412 306 343 -89 916 -176 546 -500 -647 -175 917 -943 570 180 796 -738 349 -24 572 -96 -996 -752 872 -224 15 -126 253 -534 83 -446 815 -97 -758 409 82 -882 607 -125 810 -643 12 163 -523 -806 257 -760 49 -777 -856 829 945 -337 -268 -519 759 828 -580 559 413 973 -582 -867 -363 -331 -778 388 393 235 811 662 -511 970 210 18 238 604 -930 479 -12 -128 -132 -461 -587 241 844 481 -90 918 -163 820 -235 -154 948 276 484 -422 -607 -929 382 -834 -288 -713 -377 104 553 909 -110 201 596 -978 -659 589 -970 -104 -563 384 -375 526 -19 847 803 36 726 903 842 272 346 127 765 106 841 145 647 592 521 53 -809 -155 -876 78 -39 -583 -48 650 -848 23 88 -726 426 623 617 280 388 952 -46 124 -778 71 197 -127 -388 -910 872 -87 -879 -530 437 673 827 388 655 -97 -499 -168 154 -646 328 97 690 76 -183 194 37 264 -494 158 508 871 419 42 -438 -183 461 -646 965 -892 360 303 703 205 302 464 879 972 -65 -60 33 66 -354 358 818 393 -213 977 349 767 10 -936 -967 50 277 631 84 -206 -887 768 759 249 83 608 -583 40 618 15 -668 335 -440 132 662 709 252 -686 534 -253 164 -91 -707 70 -742 109 503 -948 -248 440 535 -725 -418 886 -279 -620 -655 524 -187 418 7 -362 991 896 -712 942 864 63 -200 -881 -56 616 -604 809 -182 -604 348 190 -508 -5 613 221 -40 -650 -190 -455 859 -927 -836 -515 245 963 782 440 431 521 -353 -132 847 232 -293 -592 -143 59 -486 250 -159 -721 -868 537 -758 -509 35 36 997 -975 724 -780 525 402 2 -357 868 684 -710 -801 -956 -689 -683 -261 667 -168 475 -546 -548 -5 -609 918 476 317 -724 128 414 365 26 639 192 147 387 -852 916 -963 -609 515 552 668 639 614 686 264 -175 -738 300 -208 -306 -928 29 798 621 701 287 -209 958 90 251 -396 251 861 -488 -927 -699 742 752 612 802 300 873 459 33 429 822 -959 -916 -585 -339 -71 499 0 804 398 -626 871 895 -595 -225 936 197 -506 452 -454 -670 -225 28 909 674 -500 -572 -176 864 145 741 416 -946 405 -379 -980 -455 93 613 -644 937 614 273 13 220 757 -333 488 29 215 295 -483 368 -803 663 -422 937 -859 295 687 -100 -735 -762 663 565 82 882 946 9 -763 592 -659 -874 -173 361 934 -567 431 171 260 138 732 828 -931 -368 572 -202 507 413 610 -964 530 845 852 -944 -800 492 -86 899 660 671 -415 533 -157 145 -115 610 218 -855 -127 -546 611 -68 344 177 -398 301 828 936 3 -358 -983 418 15 -444 736 752 -917 465 -898 517 144 803 -3 843 939 965 400 -52 906 -620 47 882 518 -979 -955 -856 868 184 948 230 -598 877 900 -185 608 623 -780 -800 413 834 613 440 808 844 863 618 -884 398 373 -104 116 -318 6 451 875 415 854 -296 941 647 -995 -606 -900 760 -593 -873 -621 264 -454 322 -376 802 247 -525 -211 386 481 570 256 -124 -225 -101 586 -718 436 678 -892 1 -479 9 66 -244 577 198 -830 113 980 -475 980 327 152 397 -439 -718 -896 707 -226 -102 427 491 471 976 764 -459 -971 -739 154 601 -464 48 -888 -123 378 70 758 -993 763 424 -63 -597 -767 -458 113 -26 688 -552 -273 -842 179 118 188 -326 794 -865 -718 746 776 453 823 646 799 948 449 455 -325 -678 451 892 387 -99 457 -1 909 619 -962 -287 525 654 -240 -634 -712 -108 -100 170 871 623 896 -611 -352 780 27 -85 -794 246 -520 364 -508 -930 647 416 542 -860 -466 -63 255 921 -937 950 270 995 -47 940 616 896 883 967 -968 -930 -257 157 -739 489 198 -340 656 333 -471 666 -678 380 258 -934 -917 346 -707 -5 963 860 432 326 -857 156 22 695 -300 456 106 510 965 -851 -377 -32 57 802 384 221 281 521 357 -722 899 -892 348 197 887 813 -178 -437 883 -780 918 416 -72 643 -179 -987 -554 614 -256 45 428 -833 680 -36 42 722 -18 615 -877 -434 -618 -810 -155 248 526 110 604 -902 801 886 -174 -946 -788 67 850 -502 -616 -56 788 809 -669 -598 703 -940 47 890 -351 702 -683 330 341 616 774 -364 47 314 -855 -423 213 -332 -808 -960 -684 933 -281 510 975 240 44 455 794 401 66 -881 -589 853 365 -857 487 511 44 -23 880 996 266 127 325 640 711 274 864 743 -349 -884 342 -5 788 828 -152 -438 95 190 -210 63 \n882 0\n-985 -731 -428 -384 548 82 227 -808 957 397 -654 -363 409 267 435 -659 479 -561 914 528 -82 896 147 683 -850 -365 237 -572 -906 577 552 -244 -347 -575 -556 772 136 464 -984 -308 -241 826 260 861 -489 604 167 152 -431 108 -995 277 -88 -89 627 221 -236 473 820 -943 180 629 9 -159 -867 -520 -781 842 146 868 413 667 -73 565 227 170 -373 -259 20 680 -925 -428 -219 -908 116 152 -661 537 522 612 -10 69 -59 360 898 -539 -942 8 -526 18 -639 550 138 356 486 150 378 809 757 817 482 -737 -854 155 436 197 187 230 -62 527 -396 972 753 429 125 544 -364 -378 125 -326 -366 573 -833 615 864 160 590 198 -313 -378 650 709 583 509 892 -769 -413 145 -711 -153 -960 471 931 667 912 279 -884 807 165 283 817 -451 -192 626 558 -549 -213 -318 -651 780 88 861 -747 -287 45 -28 166 -900 766 831 943 67 937 -962 46 -656 664 -564 -223 157 679 711 -801 669 -113 -985 -264 -458 659 -845 780 512 -608 -163 -360 984 203 708 652 566 960 951 523 35 -123 279 -581 51 639 -843 -342 520 433 -268 -478 422 -19 -770 -551 597 -290 984 -242 -466 -391 731 650 -382 -473 583 174 862 914 354 244 969 334 -319 457 45 15 -292 362 138 -572 948 -398 -765 -253 790 -97 -535 -880 -284 -915 -27 343 701 -159 683 960 -836 709 804 -92 502 976 166 -232 56 745 -981 -423 471 -786 -402 86 590 -963 -906 -471 396 -272 526 983 683 65 -730 -984 58 817 703 -847 731 616 24 110 477 -745 304 867 388 133 355 40 557 966 321 353 418 724 -134 481 396 755 676 374 268 -803 727 984 936 703 176 702 -684 871 -3 -737 975 959 913 902 -826 461 743 960 -340 638 285 669 273 313 888 244 910 611 240 373 975 626 555 -97 553 210 -152 245 264 67 372 588 -842 -104 673 618 -498 -649 -106 665 -766 -923 72 -640 146 -515 760 799 747 590 787 221 124 180 -596 226 44 -880 -366 -277 350 410 379 895 -544 358 646 -445 -917 2 786 -483 -395 555 73 796 645 -265 654 338 26 758 339 772 -652 963 -924 -659 394 -179 -98 -517 742 -262 425 42 160 -976 746 665 209 743 -282 -892 633 -888 296 744 226 347 627 902 -787 -794 234 268 646 854 154 -301 -737 882 -84 765 -857 830 221 262 -154 -598 500 709 888 408 -399 454 42 426 134 780 498 393 -654 -682 918 67 959 565 42 350 591 670 -523 -150 -141 741 -725 243 167 937 -607 248 588 858 -82 -454 -866 415 565 -519 -594 280 452 956 255 253 692 255 -619 -365 -392 -329 385 904 656 -62 -236 13 764 940 743 70 -981 -567 75 542 533 184 796 338 226 673 -836 -5 -160 435 406 -274 996 -960 -468 -62 -937 -57 306 -827 118 777 -417 766 774 281 581 506 126 -578 -103 -43 907 -54 148 700 -506 471 100 330 614 -382 -396 318 638 397 -844 591 692 645 -274 37 511 -610 -421 103 401 242 -698 -14 970 689 -506 24 179 -368 -498 599 660 417 779 15 423 197 -664 811 970 863 -234 344 897 358 823 -592 586 -718 -294 441 679 -183 189 443 127 389 660 -302 -245 582 575 -978 -632 -632 -648 972 -810 664 266 560 -801 340 -743 793 336 -842 339 -627 -479 -415 774 882 -559 545 -838 560 295 -84 395 3 618 1 -722 -933 -982 851 867 -426 615 952 -410 757 -786 894 625 795 482 -59 125 198 -406 -860 -908 -844 -537 687 742 -982 321 800 625 713 -425 312 -667 944 -887 426 -908 -288 -62 -76 -385 210 661 740 218 53 886 424 565 -674 -736 365 897 -430 797 585 147 -939 -901 177 645 559 -178 587 754 572 -906 -93 -932 86 528 -973 630 -344 82 -710 -9 959 -252 -666 195 342 988 -858 92 824 -140 -831 455 817 884 -237 135 126 237 283 176 -64 -215 972 -713 -661 -699 889 969 966 90 21 871 218 -900 431 936 -106 994 884 693 595 445 -170 378 847 -964 622 856 -308 -883 935 43 748 -606 568 645 -307 721 762 -842 -500 340 736 522 685 -767 449 323 486 -506 370 -748 -694 -280 657 82 -414 223 -355 23 387 10 -231 86 568 -24 -464 -968 634 -282 375 306 -291 568 -71 -836 -368 940 -367 972 154 -893 860 993 -457 -294 -804 281 516 661 -308 164 794 -828 -779 -878 -389 27 -165 840 937 756 896 800 -225 198 -858 -532 587 587 450 955 631 -906 -50 245 836 518 436 -374 \n971 400\n377 266 -439 -113 416 -661 836 356 253 -516 -125 853 -521 162 -941 -33 104 387 825 254 -426 785 532 -407 -524 -967 260 819 293 -801 451 -583 -681 -274 143 199 -57 -459 498 -321 -737 -43 811 211 545 -242 -995 -904 620 -61 552 703 -12 -565 -414 692 -213 -96 169 421 -869 502 -868 -686 514 -853 373 101 -308 -485 350 230 278 -213 350 496 -402 333 222 -967 266 489 621 848 968 -109 612 -536 878 523 602 838 127 -990 442 372 788 547 240 -290 -632 59 -127 562 -965 818 566 -197 -36 -699 302 -181 841 641 -334 121 -716 927 -288 148 -570 234 577 214 -970 722 45 25 -960 -821 -472 157 413 347 646 -950 269 34 -900 881 775 988 300 890 529 173 -613 -568 -762 -381 -217 -279 -182 828 -493 -77 -150 769 -933 -646 173 985 181 -177 347 135 409 336 510 886 -710 36 564 232 663 518 -362 -819 -761 -391 -297 -447 327 -137 228 -521 599 340 803 355 210 -618 651 -969 864 739 51 126 -234 354 392 -781 670 230 962 312 455 -410 61 237 -699 -637 361 483 627 11 -371 -682 61 -530 682 552 669 709 2 621 632 853 524 -104 624 483 -540 511 140 -951 681 491 589 -989 -657 162 -729 506 -611 3 43 35 123 525 897 791 689 585 645 -72 -754 99 213 606 78 5 -396 819 888 485 790 -768 282 954 663 367 102 714 -773 47 854 -366 585 -35 148 652 970 -419 579 757 163 938 516 253 720 -774 713 -614 516 843 527 493 -982 -168 -476 427 591 968 661 933 366 -691 -978 549 -949 682 -959 -279 65 559 485 60 93 995 511 -242 648 -981 278 634 106 -418 926 -945 387 -487 -591 328 204 137 52 172 196 -254 791 -910 -373 265 451 4 -581 969 392 567 -693 707 883 915 341 -700 4 617 365 -792 406 632 133 678 35 920 183 65 77 702 800 168 -717 -731 555 -686 -672 813 765 -332 973 732 -66 226 -89 198 527 -322 -507 -964 646 -293 208 963 -125 843 672 851 359 328 151 875 -865 249 29 67 502 771 -751 -537 20 173 211 397 -236 -89 -40 -173 854 855 484 -762 915 170 651 -728 -722 704 679 154 -643 -118 -611 732 927 -930 -150 -967 -374 -656 734 -928 127 638 243 249 -844 911 -960 767 515 387 317 -643 -526 -517 440 569 -364 829 -615 476 -102 780 335 -391 674 258 -121 253 716 163 751 819 -952 253 -587 -897 -609 692 -225 292 -157 695 472 463 446 584 429 45 875 -472 960 313 949 -505 -429 358 643 201 596 439 -918 198 81 425 278 -932 613 27 -171 121 -827 213 508 402 796 -854 -260 467 -324 565 -231 -435 507 81 482 101 308 -753 521 40 -385 -116 526 48 -621 346 505 435 -608 -481 18 -661 375 -841 913 -980 -522 137 -702 -412 212 -151 257 973 966 45 -380 -296 773 -846 -76 206 143 797 699 153 418 -334 881 -440 941 -483 -559 464 860 -104 -98 -821 -264 247 -126 749 565 -981 -160 -886 667 -851 475 667 6 -991 764 283 910 -840 -214 33 832 453 807 -709 362 103 -512 298 659 -850 713 -934 720 968 963 725 -704 846 997 -430 786 765 447 -637 577 227 354 703 111 -223 230 -897 -679 -456 -298 153 9 799 519 547 530 240 717 -406 -42 -237 102 205 332 387 -742 -406 -649 -435 129 -550 -133 674 300 747 17 73 -291 496 -87 174 754 301 633 410 -836 748 315 -353 -991 -781 156 -605 -973 667 -73 394 221 69 970 -659 432 366 779 68 373 -381 820 -135 21 -270 -569 591 423 -63 907 -624 -333 748 -773 885 494 380 448 -8 -466 209 863 -45 873 -987 540 783 -420 126 -393 -66 -26 655 792 -767 732 -508 556 -540 474 201 45 817 500 83 280 -148 338 -745 381 -230 -12 -310 -559 -363 58 -881 839 -374 -310 325 81 171 29 -1 -589 -947 585 -880 -560 4 154 626 953 -142 -744 -906 61 607 787 -966 571 207 732 -834 96 -757 217 -853 427 544 -396 3 490 735 68 233 20 802 -355 676 478 351 -863 867 150 -974 -786 448 -490 -804 185 -818 482 -260 824 -30 -330 -17 -172 -857 -249 94 -360 -888 189 799 -681 -785 508 77 434 -335 -820 29 -617 -834 -237 -769 264 861 561 -438 261 158 -731 -788 -642 -225 -965 321 133 229 632 903 -33 789 -360 -713 556 -472 -326 -130 367 -378 -20 638 49 57 500 599 -436 -913 650 586 -894 -224 -781 343 921 -667 90 -692 924 455 752 235 96 -897 805 -751 995 -726 -896 -939 81 243 -821 931 942 679 77 921 -405 988 747 177 44 -410 248 630 246 452 -175 -539 751 105 706 738 -379 -324 -707 -32 152 596 492 -399 816 220 -888 971 -928 228 951 -806 963 855 462 524 -592 -955 596 -431 -583 -829 542 -652 -208 898 -437 -213 796 -726 867 829 -330 -281 305 -719 268 -213 -499 -743 23 -617 794 -246 -447 897 -554 -858 -264 716 442 684 286 -892 -431 -441 -502 \n706 207\n333 265 237 312 158 -421 -787 101 55 -981 263 879 -301 -332 -302 -465 -598 28 979 -473 807 272 586 993 -15 -475 821 977 386 927 -387 -251 567 -319 668 790 889 533 831 780 506 893 316 -532 -707 -983 970 664 254 185 890 -600 29 451 121 317 880 178 -858 735 770 262 490 192 580 699 -443 415 145 603 274 -261 -88 530 -937 419 446 81 -909 -730 -994 957 577 154 758 821 553 -980 -612 -175 559 -56 671 19 330 583 -542 77 986 -842 989 -424 -206 -481 -67 894 -646 -757 213 -441 841 463 -641 974 120 -214 20 525 -929 877 365 194 869 578 440 742 746 185 236 278 -106 -111 -637 -795 -866 -759 554 904 -348 -680 552 32 333 509 -174 718 288 -12 455 627 -145 520 -979 -347 883 631 -581 288 34 68 -830 -509 -225 342 921 972 -110 31 -814 97 561 -174 392 -669 569 902 950 356 -695 -629 85 -807 17 269 372 58 80 158 447 -431 339 -226 109 290 -921 -576 -58 827 411 618 -494 624 191 -838 -275 320 -654 593 -947 600 -344 759 552 -825 -210 -637 386 208 791 415 773 333 -883 498 704 -829 -618 700 343 -81 623 -990 321 252 526 -193 -131 -33 771 -78 -988 82 848 -252 111 -898 -771 -518 -172 988 -725 883 -911 2 580 876 935 951 -354 -986 528 837 988 701 -178 -904 700 606 -503 544 -488 541 817 -51 -440 572 -170 785 -596 658 -338 511 -980 585 133 -60 -189 433 -202 559 91 -90 677 -351 593 686 -326 -113 771 524 -320 670 525 783 26 -138 273 797 754 -934 733 953 573 -735 499 465 256 285 87 -696 -290 245 -636 53 239 -959 -679 266 879 265 106 -622 -892 842 -915 683 -592 359 810 625 501 874 615 -377 411 774 146 83 550 68 33 -201 598 449 -645 226 -45 150 869 911 -867 663 -993 -345 -381 412 -144 -809 338 43 204 671 669 284 521 -364 -310 819 633 80 -369 418 938 -476 -910 460 462 -417 -311 -795 867 -407 -637 -691 -337 599 98 581 -782 578 8 -973 917 863 433 460 -883 121 342 214 289 550 217 725 29 -362 162 717 744 514 -869 614 -529 225 218 653 425 831 204 -163 13 -253 195 781 335 818 -514 82 213 -312 -425 -456 593 672 -676 999 -215 314 602 44 298 558 -400 479 95 918 724 934 -393 945 778 128 -403 18 873 947 457 -462 855 678 712 -682 -169 352 105 467 -252 399 258 708 -167 881 -84 -668 39 -343 654 188 417 -69 761 925 -211 -523 674 137 -404 335 900 413 944 929 -659 126 725 398 73 648 296 -933 533 0 872 285 -375 116 -930 613 -213 -357 412 978 201 140 818 -853 393 562 -460 730 662 599 189 130 -486 388 165 938 -58 8 -80 994 -800 -799 886 927 129 326 -209 241 -860 361 738 429 234 805 -524 -397 -513 790 -703 227 -361 -402 846 961 -705 596 946 164 -539 722 -421 589 203 -328 759 399 388 -803 -789 331 68 -286 -741 -575 763 824 875 -122 832 -772 -807 74 996 984 324 -951 749 30 -370 -189 -612 583 822 -342 271 -195 -125 -373 112 970 -36 140 460 -302 451 719 308 -414 798 -615 840 -772 131 -672 -415 -960 878 779 -665 283 895 972 989 -301 -171 -797 -843 624 -535 906 -571 563 -633 3 508 -263 983 -245 774 941 -605 73 568 -207 651 499 155 -26 916 -741 -117 402 57 -858 -999 902 -668 -347 -215 -456 389 437 -727 238 177 176 68 340 -830 -690 -680 159 -456 314 -736 875 -727 189 -63 263 695 -517 -153 516 78 573 353 329 201 -231 531 681 -240 22 \n887 53\n-214 -76 507 344 542 -153 -415 394 -754 -323 163 -740 -905 139 442 472 511 -295 -250 -502 829 -280 189 369 167 -907 938 704 -357 -1 42 -622 795 351 579 986 -961 822 -305 -616 27 268 344 350 266 -761 227 912 313 539 8 325 -145 123 330 575 -622 686 -126 -686 -191 133 110 806 162 -893 513 -932 -365 -495 224 734 -318 944 -187 -768 -540 -27 730 119 212 -947 -924 -810 -918 217 -108 772 -29 796 -127 -76 266 -628 591 557 -881 205 843 -614 411 379 565 -418 442 -800 707 905 632 -855 -590 710 433 445 726 -351 228 499 -339 824 -326 413 381 208 -679 -134 -318 -987 139 -410 259 -614 370 -370 103 958 760 -435 304 -522 293 -623 -63 220 583 115 -524 -419 -75 752 992 444 368 -330 -249 -36 -372 -683 506 288 965 -777 296 -366 -434 444 534 -257 318 -601 994 529 -660 -250 254 265 190 652 48 -407 540 -679 -186 495 -859 954 170 -664 -675 924 915 -269 -313 428 643 149 107 -962 99 372 -14 -363 410 -456 -251 345 -954 -613 -862 368 -409 553 622 -299 121 225 -888 309 968 -810 -764 -120 530 657 981 634 602 931 -349 667 -724 974 -360 472 -335 -982 436 595 499 416 591 192 -871 483 401 -313 -381 -962 -158 -803 620 812 -733 -152 877 260 156 -747 327 761 665 687 -955 350 786 -760 401 331 -734 -607 -145 -675 986 -971 242 -436 110 507 471 723 -525 997 413 389 528 -50 -942 270 -635 -39 -121 70 246 998 -184 -943 -38 -443 -856 952 282 72 -301 773 38 865 555 805 131 584 974 834 461 530 91 877 940 232 484 32 372 631 -904 674 -365 961 185 270 779 658 637 372 62 827 -685 246 -891 722 153 60 394 328 90 778 519 962 710 997 217 193 488 -737 398 794 749 -237 -444 87 888 5 -521 -851 -223 967 748 98 939 711 -2 471 -532 -595 50 908 939 184 169 933 -247 83 -384 581 -248 961 897 648 807 -112 525 -968 300 -203 928 856 782 -33 323 188 -319 -935 -282 191 -37 -650 796 -642 722 -533 270 236 -524 857 151 429 -214 664 -437 698 382 193 31 348 -349 536 -513 -193 562 483 692 89 -927 302 -187 810 -162 -847 478 700 -790 154 523 -46 215 422 -848 384 914 -655 435 -830 -394 298 -234 -588 812 524 -707 156 964 76 -837 105 789 348 861 640 253 -428 866 634 879 62 17 387 448 963 -418 -710 -330 893 -458 -550 148 395 791 198 847 608 486 267 -3 -724 664 693 -776 689 528 146 -574 -16 -271 378 -805 -354 457 900 -893 -351 190 55 760 954 -690 978 -795 994 277 773 232 75 -283 -357 311 723 924 228 -144 -326 333 -638 467 387 -694 486 73 740 930 911 -144 306 107 -684 651 798 -931 -384 -175 -833 348 822 895 -597 376 -642 -672 450 754 862 998 -946 731 -47 -430 -629 214 357 498 -86 909 -62 -408 628 -729 243 299 234 598 890 672 423 276 939 842 231 -895 -723 -487 432 -672 -971 361 13 -634 450 806 751 598 -79 -48 -407 480 144 -741 -573 768 766 -152 -221 26 999 359 -732 -253 866 235 -879 119 582 235 349 -280 12 -337 680 499 -544 -91 376 161 821 -611 -263 349 566 888 478 -784 133 275 -335 631 -831 155 41 784 733 -617 831 -713 821 84 -729 -633 -288 718 -482 469 -642 397 744 900 365 -620 671 -603 -350 904 -526 -722 374 -115 -536 213 426 596 317 -60 -516 380 -526 -188 -656 50 -949 -563 23 -841 35 536 671 453 -247 665 417 658 -726 -714 442 229 357 -677 139 -968 633 -957 -369 370 608 122 341 837 -485 -440 685 534 -304 -127 58 -729 -339 -308 480 -138 -358 -687 -760 997 -140 3 97 -223 -156 825 691 -282 817 430 467 14 578 -392 -186 378 147 517 894 783 938 -692 847 -486 314 778 -995 -412 468 814 331 685 -545 -941 492 -326 25 727 910 122 200 -48 -304 -214 -579 376 178 13 799 -547 -114 -197 -147 10 232 136 961 -320 298 156 817 -278 913 -459 422 616 -417 363 918 -862 365 -935 -206 147 153 740 -508 265 -294 438 116 811 329 793 -76 -217 -900 551 663 928 548 -864 -797 -928 -210 -902 -633 500 514 309 939 21 399 -17 -412 -608 900 816 -948 -867 -892 -427 383 204 140 201 483 -834 692 988 -188 -210 593 -114 113 -995 6 -518 -125 -914 342 220 -806 -687 580 -817 777 534 -51 440 -564 303 486 606 -274 -6 -530 975 819 228 830 -550 153 924 -130 -402 924 327 -237 355 \n795 534\n506 371 157 -279 237 414 143 -979 300 820 -856 -919 69 -953 416 -402 -324 909 -782 -343 -361 734 739 84 951 819 380 987 487 11 60 -516 59 268 -297 -946 795 661 -306 -937 204 -756 -783 -678 860 736 -17 111 -943 -281 -790 -31 189 -107 -62 740 241 511 528 -872 404 -938 -422 -475 880 340 -565 -415 -253 473 -598 331 -80 -987 991 -856 95 -911 -395 -999 302 92 142 -625 69 951 794 -726 103 -345 300 95 -813 975 272 788 9 977 489 -295 -12 756 441 -46 -760 768 800 -157 502 -475 -836 -817 329 692 790 -694 -593 129 -317 -354 -330 465 281 784 -938 -315 89 167 495 957 445 -40 -622 101 645 356 693 436 216 363 -730 -350 -478 397 801 -515 -302 885 738 -425 -98 625 561 168 -597 -684 84 -300 204 -172 376 -903 194 492 717 413 -866 -915 710 478 -97 180 42 -71 609 28 413 144 -399 998 -863 -168 -286 -618 52 -133 66 458 -706 -660 -326 -212 -238 -823 -647 -411 -616 -282 446 998 27 -997 146 463 -782 790 131 308 -477 780 880 -682 944 -372 -114 261 -443 -656 -119 -82 -340 971 553 78 -585 878 28 867 951 -382 811 -490 708 -252 987 -612 982 275 -566 455 385 -6 -466 -968 -806 439 199 -171 294 -649 269 -452 443 -727 -363 -482 767 -75 17 854 -275 -768 0 433 738 576 860 715 -755 679 -585 373 -450 -22 955 808 191 80 308 43 -942 -176 -178 -849 86 506 319 -216 522 -806 -71 979 987 648 -973 945 411 -459 -854 477 -364 73 172 276 -367 412 -69 -698 -925 -696 522 -725 714 150 -432 -863 189 -35 666 457 969 -79 -869 -699 871 -311 -2 837 482 771 -440 449 -689 73 -768 302 912 -608 375 822 751 534 375 913 714 -866 390 -776 592 890 966 -763 844 55 171 620 -327 964 816 226 476 -235 -242 335 -226 -215 892 -434 14 -963 57 981 -494 458 717 455 -967 -237 405 716 -983 800 -930 312 500 973 586 968 676 -895 -686 154 146 720 733 687 -856 420 680 -40 -983 676 -220 54 897 716 -547 48 111 325 603 193 667 -108 422 -896 440 225 -640 -350 549 -80 572 507 -557 948 -536 -746 -842 455 420 -336 981 795 -279 -609 552 940 250 539 940 -276 34 569 99 -542 386 -457 -784 587 479 991 -730 40 515 327 -156 -790 587 -527 296 472 -16 -227 87 56 570 63 -435 379 -288 -392 94 921 -129 891 583 -678 -687 -557 732 452 -862 497 -387 982 937 -734 -776 -966 278 270 714 -776 -989 696 -694 -276 -813 678 -138 -896 -815 688 827 172 169 751 -808 245 -500 -603 -941 826 -398 94 304 962 184 766 -399 348 81 527 -513 749 -242 -343 112 -654 41 -872 870 -507 62 122 -781 558 816 -430 -845 817 689 155 -377 -103 381 853 882 420 912 -313 -323 657 -853 -235 -652 -697 63 920 -271 774 740 -212 990 845 645 -542 -979 757 120 55 382 892 734 158 394 -59 -421 534 672 -181 927 -414 -531 -764 65 713 547 -235 589 -796 -714 837 712 579 474 621 565 412 829 67 512 -138 491 -814 196 403 496 -548 814 -746 75 -916 655 958 88 -389 573 -665 926 -436 339 722 -370 657 -909 -540 682 3 205 580 -587 168 -273 39 860 773 786 -834 -801 884 398 176 873 -681 439 215 -208 404 618 411 670 682 753 -530 -550 -972 -665 -975 55 703 797 -975 894 -354 -297 806 562 -115 136 243 279 922 -239 200 468 -916 -935 75 957 298 -287 888 -42 511 -815 -509 413 -62 166 452 952 -889 957 -444 773 539 -170 -32 -516 -335 -654 -39 49 -439 -176 42 411 446 951 -345 318 406 820 183 922 -74 -198 -721 274 -661 -979 -387 349 506 454 451 -632 18 787 996 -562 9 973 -317 -847 593 505 543 102 -710 680 -378 -356 984 73 -232 806 -908 -188 -456 58 -587 -592 277 607 721 135 -845 -728 -471 429 59 621 98 36 485 -794 -858 834 694 -94 996 -929 -980 -285 -136 286 588 575 164 155 313 543 807 38 841 164 14 0 -321 -700 195 -526 \n967 192\n-329 660 933 273 655 140 -841 -765 244 173 592 429 973 -178 74 -714 203 736 912 -702 836 -203 396 291 -401 895 -711 -756 70 -592 -56 586 -13 73 -844 241 299 -425 -928 640 -673 530 -537 117 -652 425 229 399 -261 56 -943 450 -18 671 -223 -414 -699 310 -79 344 -446 -5 -247 640 420 301 546 -433 706 -428 -647 -757 89 -396 -233 814 150 -588 495 -573 -2 -278 341 -71 -43 -184 993 587 185 643 14 678 194 823 869 79 -719 693 -903 323 748 587 868 442 -836 68 -792 704 51 589 -688 277 554 -409 -162 694 511 678 2 329 -162 150 -53 901 -161 159 -626 -903 460 -219 164 998 -754 -728 -777 -873 482 761 406 355 163 -499 241 702 661 841 -310 -597 -406 -401 163 241 622 -469 579 469 507 739 -678 961 581 461 656 163 363 58 246 -913 -140 539 652 952 71 471 969 -584 684 655 841 678 -792 -986 -234 609 -869 858 824 526 -544 677 266 -484 633 -158 -627 -672 367 -169 -225 -970 609 -314 -953 526 -814 39 73 884 -598 -706 -660 -984 190 -216 898 -571 128 -188 477 -296 -505 700 13 88 17 -659 173 -231 406 -734 52 -372 -2 919 -421 29 -512 661 -831 641 -299 306 822 -876 -663 723 144 -110 238 -947 1 924 -932 921 -159 470 588 166 -310 159 809 880 -214 -832 -117 -801 248 -261 -902 872 445 743 763 615 231 -400 -963 -291 -653 899 887 776 -84 -633 523 -603 -329 -244 978 261 599 -696 -215 511 279 677 -836 -24 11 -407 638 592 -730 766 -351 409 711 454 -155 785 954 -152 684 162 190 -799 590 -322 761 -644 739 219 -287 163 648 -755 967 -83 190 501 -133 266 -458 126 118 -831 38 81 167 86 758 -988 -190 775 -315 -745 -239 -647 827 574 849 -285 343 -317 7 -31 -284 -284 383 -379 59 62 -726 790 249 -625 -658 512 720 942 886 -654 836 300 890 287 622 -781 232 -320 548 -471 832 632 39 -829 701 620 -916 -923 -478 -508 -476 -389 982 243 516 161 -549 235 -373 -616 540 -440 373 970 964 -56 -828 375 -552 810 -216 742 -335 -531 -530 337 3 170 951 415 588 -798 -856 313 710 -346 914 654 -839 -504 -358 416 418 -875 202 -396 -942 -603 238 -549 -735 725 376 -34 -596 -216 -368 44 392 234 -413 -48 -202 193 927 515 -869 -898 643 409 728 509 418 501 -958 -471 -841 364 967 295 -74 410 -398 825 490 539 -241 535 490 -299 964 -818 478 799 -655 -253 105 58 35 -315 895 -577 -264 524 913 879 682 -356 -588 737 -336 420 178 979 76 951 104 370 -277 486 -679 840 -968 709 171 -491 -667 -459 -423 -389 168 398 870 -462 880 972 -587 -710 29 579 963 -532 -191 346 6 129 -617 -630 681 789 561 151 871 -481 499 -912 667 -564 806 -602 527 39 77 -865 993 752 391 661 801 306 288 -267 -28 915 294 -826 628 349 325 -934 533 910 -99 761 618 -728 -269 -748 990 378 560 -394 915 -989 489 982 -999 984 -229 -480 -298 -292 -130 236 -769 904 92 -995 502 278 816 -160 589 -692 -517 164 -88 165 678 -922 316 374 498 -396 3 769 -444 700 -8 845 -979 236 206 -211 -843 -847 -553 362 -810 373 235 173 859 147 -696 -248 54 -360 602 -758 671 289 -670 374 -875 550 -53 -594 670 820 61 103 -536 585 -733 991 99 378 828 842 894 328 515 -136 -605 887 14 73 -335 198 559 93 -879 786 -459 588 491 -954 -715 528 -744 292 740 214 484 567 776 -641 186 -495 963 -206 -874 -149 -182 193 286 524 -391 -47 -367 141 47 -137 -782 35 243 608 603 16 252 483 89 382 -87 715 487 -375 310 319 -777 -477 172 -472 125 435 693 447 823 514 -988 -362 5 37 -467 -11 708 206 663 -872 9 -598 -312 -292 49 809 -221 524 -898 511 695 -803 927 -453 -57 807 943 -474 -887 -922 215 2 652 -666 260 -886 137 681 673 -922 -741 206 199 878 928 402 -584 -606 -647 -947 611 401 -675 789 -308 -702 -834 -460 473 634 220 491 846 211 -311 -688 753 537 459 965 -774 -887 423 585 -277 415 -747 109 -503 723 252 904 444 853 379 515 -440 888 -869 829 242 -436 764 641 484 -54 -45 771 494 -453 -521 -366 490 -422 732 65 425 689 265 -862 533 194 -771 929 597 753 -14 911 -996 -523 -612 164 930 247 744 12 513 -217 15 179 570 -250 721 701 -918 766 77 -623 517 493 -898 -723 -714 970 863 480 116 -679 476 -752 799 271 -198 633 529 -587 231 -92 -702 -846 835 489 757 392 381 -472 -72 -239 -248 -82 736 -769 679 374 6 84 261 -324 -435 -518 741 -198 753 -645 -307 250 720 -592 449 -522 202 700 668 -731 679 496 -668 -729 514 -545 -655 882 954 -615 -718 646 754 254 87 -150 137 310 -938 26 -147 540 76 881 30 -15 -703 -788 -245 -619 823 -715 -577 -25 -134 -743 -259 541 89 615 -123 \n974 103\n597 435 170 723 400 -292 -673 94 309 -281 -378 379 837 -30 768 -753 324 -757 -17 -475 340 140 -47 -961 -783 -804 683 399 552 -996 -821 620 67 652 -708 836 825 802 916 -471 -117 64 499 -320 313 -4 396 -343 538 518 -549 943 71 230 496 -24 686 452 917 -230 615 309 -646 352 -240 -437 -945 -762 -783 -984 410 84 355 503 967 281 139 617 434 -681 -701 -472 251 399 457 912 691 483 -547 -507 17 -689 429 383 -193 -424 -706 -598 152 -484 380 310 474 581 943 -967 -148 -270 -516 -975 299 279 63 313 -51 19 329 -386 -376 874 -246 -67 776 -208 920 746 -535 4 -603 560 218 67 -871 -868 -812 -458 -417 743 -28 -751 258 494 557 -961 -719 963 -565 -59 599 932 679 190 -208 -843 -369 -212 98 772 -662 109 290 130 -413 725 361 -666 977 828 -162 735 975 501 335 -276 -90 472 -453 117 -490 928 -796 447 -881 -197 544 931 -125 -899 -586 223 -417 674 -671 732 395 -292 -568 -561 671 722 713 -463 -507 215 -795 -507 697 635 -130 -695 -905 113 598 746 -340 -121 -982 43 450 623 161 242 789 947 -571 943 667 -215 598 -256 216 -252 990 831 -458 -669 140 -754 -27 194 -996 -394 -274 790 303 -493 338 -266 98 740 -906 656 -213 -589 619 864 -429 185 654 -326 -706 607 -315 914 762 -128 579 -791 -652 -737 -415 741 -685 -365 678 216 -591 968 -467 550 389 37 668 -348 752 -640 -132 -210 69 268 858 -842 -997 623 521 -357 179 489 238 662 298 -257 -973 485 676 608 348 261 -988 -604 -541 583 661 -726 296 -669 -169 924 -935 -384 395 -616 937 594 189 391 536 76 547 -202 -187 -673 430 -265 501 -785 602 971 -596 -487 -944 680 -386 -516 645 55 967 506 -472 816 253 -170 -232 803 -930 -262 156 383 914 -951 -249 404 27 -136 712 97 -183 -849 -478 -223 654 534 986 -628 49 189 -682 585 472 -595 822 -76 692 -736 -787 23 190 -214 617 -223 126 -478 822 -150 -509 -980 -497 -937 52 806 -168 211 -834 888 26 -728 658 291 269 563 -523 521 -458 848 710 866 116 -547 -291 131 445 -383 -493 538 416 808 1 515 216 890 -755 -94 152 -703 369 -959 129 645 190 -124 -215 -549 144 555 308 125 914 961 123 -335 587 612 -126 -952 -181 -626 -337 666 488 -135 989 -371 92 -75 -598 547 338 770 973 -194 308 146 247 -23 280 49 844 -818 297 -572 -169 -427 885 105 998 937 48 -390 201 -397 -336 919 713 716 480 -957 -219 -512 -437 -961 -321 -271 756 661 -710 314 721 971 227 687 697 332 389 784 306 442 316 -426 493 326 78 751 299 -28 -506 -109 -949 866 -646 213 747 -557 386 -924 430 -355 330 901 -413 -210 464 -341 340 559 143 -445 -888 -840 -185 660 -373 -315 586 402 976 772 802 654 -917 12 127 114 -266 -196 -929 818 306 70 453 -112 -148 -500 715 306 833 887 103 -834 289 594 -91 726 -623 -852 -28 870 888 313 185 536 416 -218 63 -135 540 136 399 -999 817 957 -270 427 -100 195 988 728 400 867 -558 528 12 456 372 632 794 817 324 -289 -865 -963 -621 554 -628 996 165 741 -569 552 323 134 -170 624 893 -407 599 31 -140 366 882 -131 -715 949 714 490 283 698 361 706 -474 949 661 -648 -160 -197 -819 170 833 314 895 933 381 268 262 224 51 -531 52 894 481 597 -270 0 -398 907 665 -145 929 -932 641 -168 399 753 -412 914 769 263 -172 949 315 88 752 -454 102 -299 371 363 319 895 -20 -986 637 180 404 -873 511 -594 -523 252 -796 -423 804 -698 -634 989 332 -688 264 474 719 460 -475 -447 -219 -603 -933 -809 -859 196 425 -211 -677 194 616 -258 508 -766 647 816 791 -795 990 -410 169 408 563 -26 -559 514 -381 629 -108 911 562 621 -528 20 -170 929 237 792 713 -808 585 254 808 594 -191 -615 477 999 126 -70 -230 749 -976 330 258 918 -308 -320 169 680 140 894 207 -996 224 265 725 -472 401 376 143 165 919 751 223 329 -444 -669 825 182 -566 -294 157 913 -241 577 568 572 -483 419 827 964 -998 154 658 571 -305 443 -126 104 -328 717 -60 610 239 724 20 457 339 -631 363 -93 -1 66 721 -524 437 -644 332 505 300 970 939 664 178 746 -548 -195 85 345 -822 -103 -680 38 -423 -624 954 -989 208 -121 -868 749 916 4 934 -66 564 520 883 -179 -166 854 128 517 474 116 633 -182 123 634 28 -843 108 904 -203 -411 113 -765 391 818 -409 -849 872 -959 -155 108 22 894 638 61 -515 -679 375 908 -718 756 246 272 -625 -55 481 738 980 730 128 784 -793 989 552 283 726 796 -169 -249 342 -278 904 980 71 999 581 81 -653 254 -341 -570 438 -232 -689 -933 -340 -803 406 274 639 -644 715 -176 424 379 -622 -737 751 -425 -343 618 118 872 835 276 435 211 347 -974 2 -170 602 128 272 104 922 817 \n742 160\n755 -463 -102 -8 394 966 -32 865 -527 -985 192 880 944 894 -869 979 852 0 -786 -407 369 972 438 -940 25 -757 69 494 744 -737 197 606 -848 -66 17 319 -693 254 50 234 98 695 33 587 -170 -444 -534 114 -623 -166 501 698 638 643 523 357 833 382 -117 -310 -12 -773 714 766 865 194 -292 504 444 -363 -99 692 -215 -795 705 736 -495 182 919 -370 997 -744 -103 -544 391 567 136 472 -572 372 -997 -640 -419 286 454 -279 -413 336 -462 -170 -726 -870 651 472 -664 483 153 414 480 166 -975 692 -775 184 552 278 666 280 -476 -476 -522 -655 -380 226 181 61 -562 49 948 130 143 77 699 269 98 653 380 -113 -544 -325 -764 139 574 407 -68 -781 -657 -318 -817 470 591 409 508 -8 555 502 -667 -728 565 829 774 834 -103 -65 211 674 681 234 147 420 -54 326 371 389 901 459 676 -216 145 462 115 -906 681 -928 41 590 193 212 -92 73 607 -986 884 551 -494 -662 -959 -581 -23 -66 902 -453 -315 -120 -245 661 58 -177 479 87 -56 897 680 43 27 -304 481 409 -350 786 -288 959 752 -808 581 -537 317 709 486 332 132 378 963 482 576 27 -411 242 767 735 510 -540 -886 188 -784 -417 595 497 804 161 162 970 -7 -171 377 -895 -857 433 723 -733 -256 193 96 252 732 325 164 287 276 876 -132 231 415 943 -676 521 -548 948 667 11 -907 86 453 -195 -81 -108 9 536 16 726 712 806 -813 739 -460 687 -761 -717 -559 221 -864 851 335 609 -692 -670 -385 926 -707 709 211 -271 -997 -881 -128 205 -495 17 -560 -98 283 56 -669 -457 622 -466 311 -299 752 243 393 531 119 911 -482 427 -525 91 357 590 685 -83 505 -83 202 321 242 -664 848 -301 -558 101 729 679 -361 293 993 254 657 -784 -491 869 -147 -844 -298 881 -60 -399 408 117 -248 -846 -451 374 -751 337 -266 -798 467 853 588 741 148 -681 -810 700 940 306 625 64 -123 -759 -145 949 147 325 -576 -432 637 -84 223 580 939 344 -891 -38 -764 841 -782 -89 323 -667 852 203 624 823 -135 -373 406 -872 827 -7 -715 -455 802 -450 411 599 -745 -924 934 -426 -537 392 -85 -651 279 -844 208 249 29 889 251 386 -87 470 900 198 -158 340 143 983 296 -347 -291 720 94 -724 -35 -603 445 -566 -285 -753 462 -386 -798 719 -966 -246 668 371 -599 438 306 -907 893 174 968 -22 -185 -89 -920 248 -113 429 858 786 -110 972 729 -192 237 413 180 10 31 241 502 812 993 -246 -807 862 468 -432 -624 740 22 99 -506 967 439 -258 888 426 437 -980 -273 -270 -249 313 127 71 -528 441 186 524 123 -789 -542 651 711 -300 -441 994 -765 111 -30 551 539 -110 -44 786 761 105 47 -125 117 -111 -310 867 831 -715 708 -326 342 706 24 471 770 942 341 267 -392 710 770 960 1 172 426 -851 426 -758 725 845 605 -733 782 338 79 -321 -59 193 793 -994 800 663 87 185 797 716 388 533 -11 612 -156 -630 74 -31 0 -622 102 73 53 907 78 667 -45 398 860 -440 405 -719 295 -249 150 655 420 937 324 700 -225 666 -474 9 976 718 -275 131 322 399 274 -389 498 192 -636 573 -13 385 -305 -741 665 -655 -22 -35 -643 113 374 281 663 -852 692 461 876 649 674 666 -813 538 -102 -598 561 568 -184 -250 900 -408 5 925 60 -753 455 -249 965 895 -11 380 -573 -19 -481 840 -9 -729 -751 524 -470 -377 22 185 249 103 676 869 -224 -731 -473 596 214 465 146 -210 130 -673 721 562 -912 -849 298 250 711 814 407 684 -322 -807 142 631 880 410 398 -164 -324 365 -349 -98 -125 158 269 -971 -495 -259 -658 828 984 -131 174 936 739 427 733 989 \n933 865\n-760 -428 400 153 95 252 -237 -907 775 423 564 -795 11 437 731 -501 58 843 -890 -902 377 290 360 -866 654 -671 237 207 694 -361 -793 -440 792 -486 -508 -859 119 654 820 -627 524 646 -659 671 874 -807 686 -425 280 996 414 297 563 -568 -179 991 273 349 980 -476 -511 -510 808 -730 -212 -966 521 -55 -83 511 -515 166 85 804 -337 854 861 -463 -849 497 571 852 651 454 353 -755 286 -231 281 -58 547 -140 13 217 -104 278 -708 -829 382 -149 876 -830 -699 -979 475 184 -640 614 653 277 692 266 -41 865 -504 -509 524 -53 -946 -537 652 814 -634 -661 302 11 343 829 585 418 955 469 -233 771 -666 442 -861 -763 760 841 81 738 72 974 -956 -269 -725 446 771 -814 413 405 748 479 -161 -121 -172 -571 575 -45 66 693 952 -192 506 574 258 11 -27 827 503 -574 361 -181 -996 636 -427 752 -987 -634 638 -700 -489 20 776 -303 -361 -984 -262 -961 -695 -672 919 -766 934 341 431 632 538 295 141 -586 -295 702 325 -862 784 492 719 80 577 -56 -285 65 358 412 -97 917 -81 328 829 93 520 70 369 829 -148 -628 129 -719 -347 285 988 -327 -943 263 -422 117 -677 -326 478 -407 631 848 -25 340 354 999 686 -337 89 851 48 -495 -712 285 -719 -995 -922 -845 334 461 212 53 199 490 407 -611 251 971 -530 611 666 36 -669 226 -785 877 199 -581 367 659 1 936 -407 -848 553 911 -425 223 968 936 168 402 -277 359 94 900 -959 -321 -492 991 -583 898 -698 583 -364 -327 -877 -876 -924 804 884 132 818 -743 314 215 706 227 791 626 -383 926 -367 164 -302 -508 305 996 -560 514 513 665 692 -659 303 -120 -234 134 -694 -154 17 470 61 155 387 -121 793 740 987 361 737 -626 110 758 -281 -757 -663 -26 -384 66 -249 460 -227 633 -561 678 127 -264 -417 15 314 910 279 226 643 208 244 300 717 -256 -61 -58 -872 873 -13 761 648 -572 121 988 500 86 -218 817 0 -848 815 -660 668 86 201 723 899 496 -661 -872 -221 692 -469 594 877 906 -439 -981 -347 -790 -36 -573 587 -386 -819 615 668 -577 508 -856 -283 -181 693 -692 805 202 256 856 -760 577 -731 824 -771 318 831 235 -913 986 -321 -106 770 -257 44 -524 834 589 -517 516 289 746 -845 234 137 120 -283 -710 -35 -916 568 -168 -826 -503 -209 -115 117 486 -944 -533 82 176 -987 329 294 467 -980 21 278 -191 -359 -684 681 -417 -735 453 -780 769 -826 -266 4 149 -576 -258 -871 244 -664 160 4 676 -810 722 -790 772 102 -162 -990 763 940 -160 -350 -815 -338 190 -478 -494 906 171 810 -849 408 833 -442 -132 800 -647 -825 847 -278 759 791 288 277 113 63 -687 -481 -734 82 -873 636 582 474 5 -597 27 -231 -570 -628 427 -909 -999 -271 962 -228 -321 377 934 -767 -513 -389 -561 -918 -571 -879 938 -773 -984 252 788 338 -141 397 -846 -82 386 -664 801 -572 316 863 342 909 -171 39 357 395 484 825 102 858 -593 -181 596 -746 -620 698 510 -942 -575 -231 -220 982 528 470 896 831 965 -148 -970 -822 556 -418 -954 792 5 414 -338 -285 6 -587 -290 640 -287 -988 50 249 451 501 59 980 757 -83 -543 319 -144 415 -524 455 -902 343 -141 612 -962 949 153 624 454 -254 842 932 190 412 -711 43 -411 764 -187 -21 697 -673 667 -910 -441 855 -116 804 183 713 907 -772 -437 -91 307 494 -591 -32 978 -852 -389 566 188 -447 -420 437 -271 -611 165 -76 957 806 -604 -676 798 -836 691 211 219 974 -989 690 371 822 -499 455 -538 -868 418 860 550 77 -298 670 80 327 -1 719 185 38 134 -876 858 -658 -270 896 530 86 419 199 980 -283 56 60 327 -955 -559 276 596 519 963 -472 -675 -745 54 -807 839 -218 83 -161 -53 -102 517 -733 -73 -91 -247 -564 561 997 690 716 912 573 962 918 564 141 -545 -848 552 614 434 828 -475 922 607 599 -399 -618 -436 -515 -163 498 898 598 402 928 -861 832 -506 -128 878 577 -373 -995 434 -745 795 499 697 781 -398 937 -888 -201 221 -591 599 752 82 406 211 686 348 770 -477 -807 -493 -145 130 -933 61 -119 585 446 645 389 -48 99 813 765 408 603 -743 888 764 781 -338 585 -981 890 591 79 713 -961 359 78 839 -776 379 -334 685 482 307 -459 -187 835 -856 -676 -533 462 793 -828 452 -688 -42 252 118 -914 -328 -582 394 483 247 515 -324 12 -564 -735 -415 610 243 -472 -6 -711 -938 323 514 713 -748 694 -464 -929 -528 -887 455 566 903 195 -390 488 -849 -184 556 389 984 212 350 823 -948 668 -557 260 -349 918 494 772 340 -967 480 591 -219 133 -105 213 960 830 \n961 470\n-663 -92 528 660 -605 -314 -840 -988 -974 133 463 710 286 -610 -602 206 579 -904 265 647 -441 -931 49 -967 871 876 116 768 727 -735 -240 256 945 -788 972 730 -785 -871 814 780 165 968 648 735 104 211 -558 523 17 433 226 -768 116 285 337 613 520 984 -539 316 -992 -997 278 -652 939 838 -875 542 -804 405 -552 577 -258 116 -4 606 553 365 -318 -221 -439 -547 271 -998 335 -776 -667 944 -50 28 997 398 369 596 872 965 364 184 270 775 86 484 92 683 -455 1 508 947 73 -585 -98 316 219 -150 159 -441 17 164 -738 -689 850 90 -194 133 -953 237 429 867 324 156 -268 493 976 -293 -788 18 35 663 518 -300 -184 -766 -496 -441 887 995 427 -354 930 -593 627 191 162 -401 914 721 -760 -238 973 718 -772 -465 437 145 433 -631 911 887 966 526 548 827 559 -956 498 611 -122 449 65 144 -691 -519 263 946 841 577 -93 -514 118 -73 680 191 42 904 889 793 265 682 581 441 529 -631 957 71 -21 284 167 -226 -684 -800 -147 764 67 -87 727 835 -663 82 284 481 508 597 575 644 -856 -184 -656 -119 664 -246 70 520 691 -633 -722 424 -706 -28 255 70 718 648 896 -620 210 520 714 816 484 765 -654 973 560 978 833 -519 318 -865 619 -186 975 -276 499 -508 -732 -805 -201 -431 670 854 363 -240 519 -282 617 202 120 194 -769 -3 -545 625 -755 958 -988 609 478 -408 -378 659 577 -443 -157 -803 -603 710 852 105 908 482 -586 -274 -706 55 999 68 533 149 949 870 -354 -660 237 742 524 788 -656 -657 918 981 -374 894 -411 953 18 11 38 581 867 -39 202 -123 -509 -182 -652 -379 -150 529 -715 949 -698 -387 -15 361 -800 -348 511 -432 -42 746 -946 368 -793 747 -151 395 -750 -468 309 121 442 798 -60 514 -575 860 881 228 421 -798 -158 475 750 273 983 -372 858 60 654 705 -12 812 -737 472 971 545 679 -836 698 359 534 554 160 654 608 -197 377 203 -297 3 -803 629 163 750 -641 368 35 36 -652 109 737 -111 45 944 315 421 860 -232 258 953 -53 -715 -987 -881 685 -32 824 798 -281 491 581 -719 976 388 -188 878 988 664 -401 81 805 575 926 2 469 -612 -88 120 -565 905 72 348 -391 -488 -20 556 -602 203 835 -628 -113 620 100 8 700 365 -72 -883 -326 306 -859 -387 557 -690 311 -811 69 -907 -849 -695 -805 -971 -850 932 672 -246 671 118 -806 359 386 79 545 -871 70 654 888 696 -39 870 -503 -517 640 -451 -68 -839 -291 657 -404 530 5 -821 148 293 -7 769 473 638 526 252 649 -540 67 696 863 907 -860 -290 835 363 161 93 823 -673 288 -848 43 949 186 -276 490 -338 348 855 83 282 -575 539 217 231 392 727 -795 -634 -392 637 973 472 685 -699 917 504 127 195 902 999 268 74 873 -172 397 716 -655 -268 286 470 945 31 -434 -75 16 209 621 0 -61 -450 -952 912 698 -231 -377 977 -662 -638 312 661 277 -406 123 -10 798 -205 10 250 148 175 -612 -259 -454 718 849 -824 294 -141 -717 838 -877 411 -259 -448 -942 -462 -920 -444 751 -670 -636 -132 795 -350 549 382 -211 662 427 925 832 764 -733 429 178 -438 234 82 628 441 801 -698 -61 558 674 22 -993 63 682 965 943 814 707 -97 -760 207 626 536 582 9 200 -13 187 121 673 804 -373 135 855 530 -745 679 -912 -346 277 -777 940 561 524 -545 112 555 150 -744 214 427 -789 737 -51 -736 537 629 31 562 541 720 608 -593 840 -602 592 -998 453 270 402 472 107 646 649 -73 -590 573 -809 382 900 211 764 -147 -649 781 367 556 -851 -219 706 -309 911 880 331 -619 -834 317 243 -936 944 -783 544 379 -985 52 313 718 863 426 526 927 -338 -816 45 359 724 866 -38 262 -613 393 -392 605 -391 841 -249 858 -923 610 690 -871 795 400 456 220 -958 -803 293 -40 -864 0 325 356 990 613 898 321 -550 -832 144 -965 597 -617 641 -186 -463 -156 386 -598 -60 889 196 -20 -733 155 -644 833 226 -556 564 432 31 -575 960 -687 771 972 -777 672 -976 -440 -78 625 661 275 -158 100 991 -64 -150 352 -115 248 -409 445 798 767 764 -836 -838 350 -22 -437 -654 279 262 783 974 -644 292 668 -304 -297 222 122 44 829 -725 620 -685 885 102 638 810 633 -362 -828 -718 501 14 -68 225 609 875 215 636 -393 -215 -197 976 -998 362 646 -152 -163 -970 -953 907 361 -512 -793 -179 91 649 202 -944 603 702 -233 302 75 588 -449 971 -605 252 311 802 580 420 559 306 88 828 397 520 -878 -402 693 952 638 -606 123 184 -771 815 -868 774 638 693 106 -509 523 453 516 972 -530 -128 -348 54 120 91 887 -643 -516 681 793 326 -971 980 374 573 -740 -640 194 565 396 8 -74 -867 \n730 455\n-533 341 -928 981 -714 991 736 -548 198 432 430 936 130 -143 -766 -826 -26 86 422 798 -406 -257 521 -938 -741 -106 -173 300 -734 367 -798 -90 -229 506 625 -623 -621 816 833 -708 248 -684 549 -181 -768 409 176 392 -905 899 120 794 852 -982 472 153 -142 -989 462 -867 239 -957 637 -830 372 544 364 -941 621 -282 341 -634 -336 223 455 870 644 -915 253 -330 439 -401 -988 66 -472 229 753 181 301 873 249 142 -575 99 -575 190 -937 645 -33 0 -205 13 427 587 998 339 -899 931 -343 846 27 -1 -723 -438 643 -406 -179 811 724 244 179 -237 -942 782 53 170 139 723 -212 851 -137 14 474 -479 -412 913 387 -167 481 373 64 -304 148 379 773 244 -12 -687 267 626 898 -416 -887 409 101 -985 -297 928 401 827 -869 122 -867 -817 -918 538 998 642 270 995 -954 427 -391 707 416 -290 -221 971 -711 932 -650 488 170 848 -385 -869 -903 874 -315 751 585 288 -269 496 959 624 640 -661 507 889 335 728 916 -101 -524 390 -477 478 780 849 436 549 -391 -528 516 -148 17 -946 907 950 500 167 300 274 547 167 -69 732 128 -472 874 915 -583 -884 889 92 512 305 901 765 -617 -264 267 795 634 -327 -368 -237 744 351 -289 -798 626 782 537 567 -63 174 -238 891 -486 -676 -188 834 -932 601 705 174 858 21 335 665 -212 679 669 309 -212 550 934 -185 908 412 -609 -923 319 894 -368 -337 953 -477 585 399 -435 663 -615 676 920 703 882 813 -610 257 -811 233 430 -247 -721 -883 -267 710 -879 -450 239 377 -44 -444 355 878 -785 -831 -810 -116 918 239 -614 -371 245 -788 -930 788 -22 784 -969 45 745 213 286 -198 -655 621 865 6 946 568 313 807 -152 97 -124 726 -629 -753 -73 -284 -357 -475 743 424 782 199 267 682 876 -16 517 -873 938 -197 412 150 784 -83 918 951 -263 225 624 413 343 -235 -636 350 890 -120 -798 20 -175 324 -926 60 -776 23 -313 752 812 51 456 542 805 162 288 -102 -339 -142 488 975 343 -31 -750 59 945 593 282 511 -410 331 425 284 27 849 -884 -137 165 -522 -374 518 -46 -587 370 770 -610 699 546 -670 -632 821 953 896 -81 137 -418 458 364 -291 71 -816 -181 938 -11 117 -953 34 256 -358 803 -811 602 421 -483 399 457 359 538 -784 -435 -623 895 528 912 -841 -453 615 204 168 -930 -833 161 793 273 341 227 941 73 943 530 347 93 919 995 212 338 -416 -303 -261 -620 9 818 808 -208 752 509 -627 123 922 69 -439 -50 804 -794 586 -448 325 665 102 -428 -25 -274 345 888 192 -11 -27 747 -716 -339 -810 -271 351 479 -225 -268 -667 273 916 604 361 892 598 284 706 897 -956 -777 -289 997 256 905 -879 -745 -438 -126 660 -881 690 -694 693 917 960 526 401 747 -490 922 763 418 -990 486 -388 633 590 -577 893 942 278 253 553 -280 -209 544 -953 814 100 -358 438 293 801 780 659 469 278 -566 903 172 -604 -634 216 -706 -280 -51 539 100 277 720 -869 90 312 -714 981 721 387 -465 847 201 723 56 -787 -15 417 -756 -540 -348 -948 657 -914 -84 950 -717 512 -585 835 -195 38 558 -373 -889 -984 348 203 -154 -894 608 133 709 -474 -10 -241 4 821 968 -441 758 -882 985 75 -214 -944 499 -760 -170 829 581 549 660 -190 813 205 -644 -976 -876 477 -412 -690 149 -103 931 201 -730 -280 443 803 -151 394 3 -612 964 74 -37 819 47 650 537 -654 376 -472 576 -682 595 486 -162 -964 -682 976 481 155 401 105 -635 244 232 -79 156 381 252 178 857 274 486 281 -543 -283 -210 621 50 -395 -497 -35 454 818 -16 78 \n902 700\n-570 -673 144 -50 949 139 465 -263 -699 -249 754 142 -731 389 838 -732 -413 -484 -581 -487 344 177 889 702 681 -570 594 639 259 594 347 62 113 -710 155 -493 405 400 -541 -318 445 -135 -736 155 961 -820 -496 -543 550 815 -323 803 -678 944 333 -850 -853 -175 -508 -780 -517 -284 -525 -414 340 -263 357 465 -441 642 64 343 274 -82 662 -753 41 666 -25 -228 -602 679 -417 71 -175 253 656 -87 -812 712 302 555 -219 -572 245 848 193 -78 -318 -526 936 465 147 -752 539 546 883 -745 869 4 -482 -682 938 -709 -925 -813 675 359 162 -253 334 527 982 -195 149 657 -221 450 -699 979 -759 156 -922 -782 213 -115 -511 528 295 -553 419 460 -769 417 -772 688 226 -395 -867 902 -932 108 652 348 406 -780 -777 428 -317 926 495 636 -550 915 279 -655 838 616 -78 483 483 683 -54 809 -176 97 938 -248 845 107 358 370 268 29 -77 821 349 78 -121 547 -11 363 -911 -411 877 980 -807 -302 982 53 -209 -947 646 326 283 747 374 -235 188 405 -464 317 836 404 556 -471 -537 -908 900 -402 -116 904 169 -1 817 743 844 446 -387 18 -222 612 -326 608 296 -522 -931 -515 -420 494 352 560 -73 775 141 -490 796 -578 344 952 833 751 314 -466 270 -393 776 224 401 257 282 252 749 91 -399 3 401 928 279 -807 984 -386 -648 728 354 -387 730 502 138 -111 731 -985 -6 -973 651 50 179 -10 193 -295 654 -974 909 298 907 -677 -83 51 778 351 918 633 588 576 -443 541 835 -136 442 696 -584 909 -473 583 -427 300 -912 390 -606 -708 862 -547 -322 307 -762 374 120 -935 -883 824 89 -679 361 153 440 574 953 784 -658 927 -733 710 -285 732 -34 475 718 581 -32 -840 -417 -423 -190 188 -741 50 259 8 733 -283 -918 -706 152 -720 -430 141 290 46 779 -87 353 510 444 -34 241 188 -726 308 -121 -47 563 367 859 12 -201 -274 -631 451 -663 414 -937 287 691 538 -167 -130 407 527 580 504 -135 -700 831 -23 -261 -539 837 269 -246 -42 -490 314 442 -324 28 -178 303 -781 329 -532 -854 658 -308 366 -93 702 -412 718 651 86 365 842 -392 558 621 985 -794 481 607 352 905 790 -604 -79 -220 909 637 777 57 534 -554 7 -633 419 574 -85 -625 41 -857 139 371 978 549 -342 -995 -142 -865 -765 730 -501 169 -196 399 47 -84 956 -65 -476 85 977 -870 -972 -642 203 647 761 8 -630 409 936 549 666 -461 -980 420 667 81 -850 93 113 910 86 59 -641 -808 925 -404 947 -529 -760 -316 171 -766 456 314 64 -624 364 105 -799 716 -460 -920 489 667 250 -419 329 -331 700 984 935 -556 -876 891 448 293 -152 955 363 548 578 962 525 -153 424 904 919 748 61 -673 -11 -666 534 19 650 580 566 65 -224 -880 859 -531 982 -742 -359 -435 -224 -468 72 -977 -973 -907 432 -736 -666 -592 -702 134 942 284 299 -672 599 -531 693 -813 36 945 88 798 -633 -176 808 -412 391 156 408 -74 -729 727 -950 94 855 -309 -140 500 -759 -722 497 -108 231 110 -606 -911 981 664 -626 582 223 -120 358 907 451 -588 -713 389 912 404 -278 -344 -803 -918 -129 315 11 -770 -437 736 -429 335 633 776 -961 28 198 117 -956 -336 867 -758 100 619 -770 62 726 331 -824 141 683 712 841 862 -974 -735 873 -495 -752 763 -676 308 381 607 -319 -476 229 -918 372 330 -708 -435 106 925 473 33 -867 553 819 -5 308 -428 -223 615 121 394 83 724 759 874 847 303 55 -694 702 -795 145 -695 210 42 -343 -278 805 -698 -878 516 -1 -875 809 51 544 826 646 -395 -668 105 222 94 889 -116 -281 -612 143 94 928 -760 97 -842 -553 -1 232 -50 407 -538 -432 11 872 578 -721 735 -373 845 263 -394 772 -337 -3 -22 169 -194 768 688 553 414 -335 152 -30 -217 420 -772 135 115 239 -973 245 533 620 648 622 544 58 127 717 373 -23 462 168 -166 -899 -55 297 612 -945 902 302 439 810 -949 -946 -698 609 -993 329 -139 559 691 687 375 -553 961 50 228 53 642 -619 157 489 93 -234 -642 -572 -43 -399 350 795 72 177 159 797 -502 874 145 -519 -530 -961 795 137 237 415 -488 567 220 459 -832 361 793 7 -637 -404 39 752 910 -694 442 -345 559 78 893 369 198 378 514 704 960 854 326 6 650 532 258 -492 -449 311 547 -769 -635 22 170 -119 -331 432 365 356 -33 -250 -92 857 -471 634 677 990 333 -784 769 867 -854 703 -637 288 193 224 786 367 \n985 360\n-846 73 654 281 827 953 -494 390 733 678 106 -20 820 312 -28 -457 371 389 970 680 -842 -723 -70 279 -173 602 -796 633 -124 783 23 485 -849 347 -429 309 661 881 758 80 723 -763 -185 601 539 -838 926 -158 -608 -586 869 577 -338 -459 606 842 357 -314 951 267 921 -173 778 -75 -808 2 579 300 299 280 574 253 957 -431 759 152 958 -971 -529 13 -977 -52 832 165 -30 -961 678 408 161 -545 954 -183 474 -744 420 387 -171 680 346 805 -621 837 79 -43 -747 880 -398 393 821 725 67 -254 118 -853 291 955 990 -573 687 535 -554 917 -101 -222 719 706 -143 77 538 -100 818 -528 891 321 559 668 -253 928 -54 53 720 966 926 961 -56 -901 -526 75 907 -256 40 634 886 440 232 375 441 346 754 418 -590 599 233 789 -222 114 -152 495 788 542 61 -851 864 941 337 599 429 258 970 270 84 121 369 262 663 273 644 -250 38 -872 677 297 -926 199 449 -525 109 -522 378 -45 279 538 -605 -283 -612 -515 -685 -247 -263 -302 902 203 -745 -360 -618 364 4 424 712 -535 -296 573 488 754 -226 470 -705 -823 -968 696 907 149 -270 -116 253 -534 -172 471 200 601 197 632 754 -850 658 85 -116 -733 877 286 196 375 -383 656 612 677 -858 435 89 619 527 405 261 326 921 629 493 635 672 -137 -268 -510 256 -624 -38 -107 -815 256 110 544 403 -866 241 -225 -81 -177 856 571 503 431 842 465 -667 568 343 -411 -313 508 -590 -1 -785 297 -352 205 79 111 955 -718 753 986 -160 358 -317 -556 -605 693 -792 576 412 -627 760 -944 -818 66 883 -952 -673 689 605 569 799 -667 406 -815 372 230 -690 -236 552 -348 159 698 -747 117 739 -132 -666 -235 -299 910 321 581 -77 80 -491 -509 823 -480 156 994 341 -549 -152 814 975 708 -793 585 -729 -63 957 -972 -874 -41 -197 -847 405 451 183 228 538 -618 773 89 -518 -326 717 -730 215 -917 -79 -77 450 494 369 -708 621 -71 230 -582 452 504 754 -486 816 -437 992 491 -667 824 301 895 -758 -756 578 424 68 787 734 49 708 185 578 -306 -242 374 19 532 -782 -152 451 918 36 -623 72 -635 59 -768 691 609 30 -107 779 -308 126 764 928 241 558 -717 -632 635 -565 -51 173 -433 647 773 -53 318 820 352 72 976 -968 565 494 -82 290 225 543 -378 845 -844 993 -227 -194 -467 629 812 668 -454 650 343 130 -435 304 291 -440 121 271 715 711 -918 326 916 656 393 148 -35 581 -152 -874 357 848 -892 239 -493 362 536 -339 -793 998 485 -412 -109 -435 -337 956 167 318 -4 161 521 -45 946 828 355 -125 787 850 -926 621 278 -398 -954 160 793 357 -328 -183 -795 -401 -689 -765 915 855 254 -593 214 -800 893 823 -389 291 154 800 220 -346 -987 13 -508 -265 732 -712 946 210 -497 516 173 644 -343 -520 -916 -471 -155 31 -230 369 712 -867 297 356 222 -117 324 78 -413 567 836 496 662 -578 771 440 347 -312 -116 255 395 36 -808 -707 759 -461 724 -357 -463 -247 -304 428 805 137 506 297 -520 279 545 -625 -179 322 811 -511 -76 228 336 -271 -285 493 -132 627 -974 -688 -320 842 649 870 890 20 -501 10 856 119 468 899 145 -374 -773 470 869 -117 -19 -657 776 -6 75 985 -651 574 -906 173 722 -576 -644 361 -487 -657 542 -68 -6 499 -78 -537 759 451 558 34 599 491 116 233 -727 120 -349 317 -443 749 125 723 -244 14 488 -194 231 893 965 21 700 -913 741 -453 976 218 -545 893 -732 -511 -473 37 635 704 534 -263 239 356 433 357 -981 356 -537 -233 564 870 161 475 618 -59 111 -790 -968 -521 7 43 393 -522 -710 525 878 -771 71 -788 941 614 -625 -339 70 392 455 289 -868 -60 543 387 -370 574 -668 88 -460 -936 412 -404 449 705 -410 6 160 -297 461 -34 456 -855 -287 -319 286 -43 -911 386 -802 -412 448 938 -738 -243 224 978 342 406 905 490 19 470 -507 -981 -617 -146 712 -660 869 121 -303 866 799 467 -674 975 52 -129 -992 -718 -405 753 -59 -46 71 -139 -42 -644 -313 -31 -617 215 -337 -988 493 491 167 -66 984 103 192 186 659 855 397 0 -934 19 -313 -392 850 262 694 -366 -856 439 -265 -132 -311 -643 658 -264 -699 -489 677 -971 -8 821 -571 -379 219 -422 -186 -298 -33 216 -888 157 389 331 684 502 855 -562 -638 51 -488 92 -570 452 -263 -382 441 -233 663 848 -615 746 -382 -939 -990 -76 -255 -18 58 115 849 14 459 794 -510 175 470 -445 526 546 284 -296 985 366 81 -485 -744 -118 342 522 -869 746 112 792 -790 734 431 302 -318 137 96 -980 844 231 747 -152 314 -896 589 428 695 991 368 134 -533 468 -814 230 684 -490 890 -796 -829 257 511 -440 792 405 -286 815 783 485 508 317 209 -165 -242 318 40 293 -275 435 114 -360 -938 51 -396 989 -402 -536 -698 290 531 566 208 68 540 167 -797 608 \n863 145\n421 455 -663 918 361 -239 -741 496 -72 876 -810 -587 181 826 226 780 384 497 70 -303 451 -438 788 -296 -38 -313 -149 419 884 -285 -774 549 -884 116 519 577 -641 -272 -807 -532 -570 986 -823 -569 -267 -791 266 517 642 -998 124 -596 947 892 -231 -155 100 472 311 971 905 303 -424 -565 34 -145 195 -144 736 66 -764 741 948 962 -599 28 728 93 702 35 323 -636 620 -398 497 -803 78 -98 17 352 869 993 -782 210 990 -665 359 -792 -953 -533 -838 957 -349 -427 -636 691 114 -124 -236 -245 -750 -119 108 -780 553 350 719 -395 256 623 -182 802 758 68 -610 -174 110 523 659 848 -443 343 756 -362 217 742 453 517 265 -169 311 -678 8 399 756 716 -224 -939 149 812 614 -73 833 -517 -530 -932 101 52 -347 -731 190 257 928 487 217 -80 104 759 596 -561 259 556 626 -368 230 893 -179 814 -859 37 -401 -510 -310 -944 596 649 122 -401 887 -547 -570 -727 -289 347 56 -796 -29 295 -130 -396 346 -630 992 -292 4 516 479 0 673 -825 297 -900 13 -402 194 348 710 -895 548 980 449 515 -341 -873 -139 63 860 -182 152 -575 335 192 -672 -148 440 -73 581 96 -507 -737 615 -886 994 400 -600 943 425 782 800 -869 282 716 113 892 66 608 612 -732 219 -245 -395 105 72 -832 -853 -387 964 676 -414 310 379 735 300 -283 22 562 698 -509 852 -821 872 37 340 881 -666 -303 -540 -756 429 -298 397 897 -485 -916 844 -621 89 772 538 492 -173 -902 613 777 872 -850 -838 -489 -924 861 401 -497 552 -14 424 291 -665 -683 168 526 -156 322 810 -971 -230 960 307 -944 429 -341 61 297 916 -766 -275 730 -627 642 -49 438 44 -374 -386 387 311 -33 -320 683 -359 -120 976 509 -515 -283 -491 -378 -590 37 198 -640 840 752 506 19 546 952 349 143 942 27 343 279 212 -504 -270 985 -542 -940 -963 -872 -613 -318 -907 377 378 973 -550 -718 374 332 -403 862 834 -813 -235 434 -352 587 433 882 879 -758 -792 -270 -428 -395 597 405 252 -201 -905 362 906 902 217 490 159 -336 -21 903 309 -644 660 -912 147 -946 758 703 773 951 -513 730 817 -970 389 -50 842 39 832 143 528 432 83 737 -335 38 -82 -56 500 -468 320 766 203 -389 624 480 -292 -657 902 369 -328 708 420 319 281 183 205 339 -688 -813 -286 773 -917 863 511 198 378 353 527 132 584 -546 -941 -218 248 -671 32 -333 -235 137 944 56 460 371 -138 -433 184 765 928 546 -653 -940 887 329 736 344 663 632 669 780 727 925 515 897 302 859 -789 -371 -539 -160 -26 426 -709 77 -222 835 -500 -937 823 5 167 158 -201 -796 -715 -154 531 -106 -323 -471 919 -408 -706 -28 245 465 898 602 17 -824 -113 -31 97 181 -478 822 -984 -148 25 382 -573 502 -608 47 253 374 -467 -208 -157 997 -425 67 992 478 640 -647 647 -579 -145 -277 -508 -446 178 332 262 -441 -842 837 105 439 9 -632 731 776 861 -237 -807 817 -454 139 854 481 987 157 369 309 554 840 904 949 -76 -798 -222 -806 702 366 955 630 314 514 953 218 -204 703 439 -731 613 -65 249 581 604 676 246 943 480 324 145 606 -623 582 888 601 -802 -764 -736 86 342 589 991 -788 716 395 -584 919 -442 764 -227 -352 -705 321 -115 810 -533 394 -342 846 688 536 568 223 -103 -697 -784 -783 123 -88 473 320 833 770 802 -572 330 410 -439 53 476 294 6 -542 -592 111 251 -728 634 325 997 270 547 -145 -734 98 938 -394 463 285 -919 -832 777 -459 63 -596 437 788 747 -798 805 -285 137 229 305 -285 -113 691 963 -480 985 -814 987 983 -842 -352 124 86 -921 495 -109 821 -223 -214 -608 304 537 -603 -95 326 712 487 818 358 641 -49 -266 485 727 -931 -866 289 52 -587 -400 -66 -508 44 368 -659 923 -442 -594 950 913 -762 -775 -37 141 479 592 -762 351 -22 -71 -936 -357 923 187 663 271 89 728 -531 379 -758 13 -750 97 653 -413 -138 272 595 102 384 -23 690 5 228 381 761 -592 982 874 561 466 299 500 98 -211 418 -435 804 -702 199 -428 823 -913 -651 -546 299 -888 226 -840 392 -506 915 969 -64 338 524 376 136 679 -28 944 114 -525 343 -902 974 866 -38 826 796 18 -900 745 -124 644 465 -638 -183 -274 547 -956 \n727 487\n-631 997 887 212 739 886 253 412 -871 699 403 212 324 319 265 451 -339 49 -205 -170 -299 -198 -726 -543 943 597 810 612 -286 -538 346 -565 98 788 585 581 105 -951 537 153 502 139 614 -659 -881 363 752 -952 323 -487 949 443 -595 954 805 792 668 396 325 418 332 -713 -812 238 606 -712 401 -277 617 -77 139 230 -503 735 -711 -330 -808 179 -182 -334 412 400 140 -284 660 561 -474 218 410 590 869 353 884 651 773 -63 381 551 -623 -110 84 478 467 652 -963 64 615 -129 -241 -848 522 -467 -24 -766 -561 925 424 -429 -798 -947 378 21 324 512 502 -858 388 -33 262 707 691 40 -857 452 706 -737 48 157 93 808 -164 297 356 1 -190 -408 309 750 734 581 920 565 237 840 881 -840 -363 917 666 -291 -9 963 430 337 512 982 727 -495 848 662 65 807 178 302 117 -39 95 70 631 760 54 889 -904 735 -730 -119 -884 431 794 332 -997 829 -695 487 511 -963 -401 -901 786 246 -66 -539 -299 879 802 -791 -387 -765 -2 -344 159 570 465 -145 430 -970 985 83 -62 -999 203 -224 159 -560 311 -64 990 957 -565 887 219 -764 -255 205 948 -927 636 77 136 748 327 -439 909 412 -661 222 -26 468 -515 499 -758 407 -150 328 7 -242 -929 93 -75 -743 891 -310 515 371 350 -387 -315 471 -432 319 -179 707 638 482 977 438 -260 911 373 743 215 359 -932 -832 811 996 853 253 -309 126 823 665 -419 617 545 -306 438 -733 16 184 791 597 717 -210 -815 -913 -380 -113 -958 84 766 226 61 -431 696 -136 747 -732 554 -352 292 -563 673 -380 805 873 29 425 226 -739 -123 -817 464 304 -333 -441 659 93 749 819 -833 -534 118 734 717 707 243 -33 133 120 885 -684 869 421 -913 -463 786 524 71 -200 263 518 -21 -810 819 518 -227 737 585 764 -796 -559 -351 132 -723 393 928 956 683 618 -762 -433 -238 239 344 635 519 570 -785 940 -928 256 487 -101 -245 -147 841 -401 983 48 625 984 690 178 591 670 31 21 588 -633 -978 -68 344 254 -621 -931 245 989 -12 -278 74 568 935 -64 985 832 -947 -501 664 496 -33 -176 -196 496 678 213 17 252 801 513 675 -810 240 13 905 -856 -427 752 645 -883 -367 777 -309 704 348 712 461 512 664 158 506 732 730 609 96 -893 -87 745 478 206 249 454 -85 176 891 167 -620 -821 431 612 -767 102 -872 109 995 101 504 209 467 715 314 -256 502 -651 273 377 -975 917 472 -541 668 -869 -368 970 -96 -570 813 89 817 -887 -257 -737 219 812 967 -466 -787 54 889 642 -940 -243 131 315 -637 719 -710 970 -633 -626 926 218 437 800 -372 111 -70 -376 -733 -28 673 -173 -681 -38 -993 -31 709 -886 189 547 377 483 967 -439 570 5 278 175 778 187 484 -532 -467 -774 -481 -871 791 308 -518 -970 459 -543 -211 183 96 -275 930 695 305 -99 393 644 455 356 484 -336 400 848 -408 -252 291 212 794 -457 190 59 -646 107 537 610 -568 504 -720 113 911 270 -276 592 484 818 811 608 -136 562 -460 733 -811 276 -772 979 166 957 451 918 514 -379 879 608 630 -914 672 911 733 51 -627 69 29 -400 79 214 33 802 -899 141 -73 132 646 471 -653 -61 453 454 765 753 -841 -952 -140 889 -631 -502 -280 -550 -110 261 -140 66 140 888 510 -464 281 -52 801 966 394 970 -244 -802 -351 41 -329 266 -366 -642 -343 651 662 418 -624 731 -228 275 60 655 146 -91 -301 621 835 668 -680 195 40 634 626 943 -967 56 769 404 -830 67 -775 692 -276 598 883 344 -497 500 231 -729 0 9 -283 -251 -460 \n814 18\n-182 -237 -195 822 645 417 -588 58 -406 687 767 -532 310 -404 -347 131 414 -26 -201 -555 985 309 945 538 359 -791 411 -947 989 -644 -398 -39 794 -958 -269 -815 -708 410 -653 99 73 809 936 86 990 -425 765 -448 -371 721 654 3 173 416 -144 -478 -19 335 910 445 481 -890 807 -271 664 -275 -236 639 -52 -223 -779 763 -605 159 -830 872 638 -224 884 540 577 548 359 898 562 999 613 162 -391 -114 -119 799 718 812 -981 -871 23 739 296 774 997 -647 94 771 -946 768 130 -313 288 307 -777 -303 -225 250 478 681 432 41 -367 269 -381 -889 909 855 461 104 880 462 719 751 33 -84 16 323 -270 -226 -656 285 666 985 -891 562 595 90 -586 419 -786 -639 447 374 -806 328 -740 -963 537 151 316 312 385 -52 985 630 -952 -50 196 -809 668 848 680 -204 352 616 248 723 410 564 84 567 443 444 352 750 946 713 -836 -792 -873 -302 -277 899 -990 -497 899 312 868 767 242 515 959 205 113 711 -787 -247 773 -680 -374 -541 759 -287 -993 385 -810 233 420 -722 -958 -217 943 844 720 -409 273 38 -231 -349 517 -483 -240 464 -736 -17 131 -301 884 -605 804 936 560 453 268 90 61 -132 -333 808 11 -498 705 692 82 162 867 75 497 -834 -60 -141 -483 526 -664 833 973 157 63 622 705 498 756 147 118 -117 417 336 -726 -743 353 842 -583 -338 365 -59 82 -254 632 440 775 589 387 -777 -735 912 601 -644 960 808 -620 707 700 -886 198 -281 587 195 -96 -769 -612 121 -383 552 920 -384 -74 -773 -280 -506 470 200 834 463 522 656 -624 -738 987 -75 -440 -306 593 203 933 346 -777 227 188 -273 881 750 -264 -323 550 -768 -423 166 817 675 467 454 757 667 18 929 -467 -98 886 -483 -447 149 469 908 -697 374 850 -69 828 256 -922 783 658 254 73 -252 -902 476 339 595 497 451 -747 480 -254 538 -591 -610 -837 -504 337 -244 -916 275 -256 412 257 -100 749 399 538 488 478 771 -237 409 351 964 336 275 836 -431 -98 -711 376 -586 -800 -124 -665 -514 97 961 -714 -267 250 244 -391 308 -451 182 309 760 936 428 159 -439 -505 959 722 131 -362 149 -162 355 292 143 227 923 -155 -889 433 -266 -94 637 -368 -650 153 -231 316 -932 -374 730 -130 -497 -976 962 886 834 38 -265 266 -41 646 699 950 358 -64 585 554 491 695 145 310 336 -827 -316 -499 -640 714 -263 855 2 970 -314 124 -801 -456 -596 961 388 493 302 840 -135 468 -371 -751 888 549 -263 231 443 412 53 256 886 379 934 459 -333 636 745 982 856 -800 -278 124 -16 -795 -450 538 918 -141 -966 755 164 954 535 661 -937 -267 480 514 9 915 -227 616 155 979 812 -985 442 -7 471 523 -213 -574 -188 41 566 -326 794 688 623 406 465 403 -336 -154 175 0 -186 354 -228 273 -879 195 829 420 -232 245 349 659 -598 -67 847 685 177 86 -158 -707 -796 467 -750 332 783 96 -928 -97 171 963 121 -865 394 -795 -811 -534 517 628 939 478 659 640 865 -452 -49 -369 668 524 932 816 -219 570 897 248 821 -772 366 100 -98 460 110 -125 -359 -39 -473 -261 -454 -632 609 207 -251 -53 -526 780 529 -713 -355 -383 571 -17 -351 554 19 927 -445 392 -127 -162 -652 224 -335 36 672 -840 720 922 951 968 -228 -591 -621 307 79 26 -608 129 -891 -644 533 -968 886 -987 -617 782 591 225 400 -696 -940 -805 842 894 383 985 -297 853 -188 -530 741 588 -357 52 472 152 350 588 994 -536 657 363 678 -825 252 -874 602 291 46 -528 339 -578 -149 -389 751 382 603 83 -274 59 -132 496 602 -106 -913 502 162 886 -913 619 458 0 75 -841 -38 275 693 38 259 -793 -184 517 -453 836 489 -683 -811 342 970 259 273 -738 998 835 214 425 -121 45 -76 733 -694 615 858 369 -615 659 -941 791 385 919 -690 616 653 -254 550 -425 848 -910 71 -352 -380 288 -584 555 -157 -947 337 297 284 -473 748 70 7 -688 -202 107 -831 -787 635 -228 121 -342 849 -937 718 -957 127 142 731 \n870 652\n-45 971 -725 -903 183 -728 688 728 -859 -861 410 832 305 883 657 639 99 916 -986 285 -407 994 -247 279 232 638 -804 129 -525 -194 625 -342 -480 63 -4 930 -375 697 -300 993 -295 782 -158 -573 -460 970 372 348 75 -950 289 599 617 292 -710 -492 -640 397 -344 685 -193 620 736 -656 413 944 -145 -733 530 605 598 -690 197 115 -329 434 -442 846 653 -17 893 -780 365 -58 693 523 643 642 139 -705 266 698 872 721 -12 97 -628 -492 301 448 784 534 782 156 981 533 171 -879 250 -382 797 311 66 247 560 525 -427 190 206 -720 640 264 -779 56 752 -331 943 -755 598 973 775 595 -887 875 -668 573 -679 163 850 -292 -964 -602 -482 509 720 270 601 -945 -532 -877 407 -637 64 -92 169 -101 340 897 400 -101 -106 266 951 -78 441 708 224 -280 939 981 312 442 512 -914 6 275 601 689 -64 180 -798 -88 407 620 -553 357 878 491 521 -251 103 759 -392 868 133 -186 -197 961 -267 -226 330 811 -724 408 510 574 281 425 -605 -193 910 -944 -635 175 -677 -346 -565 -73 -729 801 337 378 -156 433 -8 889 706 54 755 643 764 -212 -731 398 566 726 -423 991 369 -624 242 317 18 564 371 643 145 41 -939 -410 162 455 906 573 -816 516 123 -363 205 970 635 985 -531 959 -710 -565 -470 244 562 652 -416 383 -642 285 580 -753 412 843 819 848 -668 919 -466 -261 39 -820 418 711 360 169 782 -71 438 -227 -1 -34 916 -56 917 -195 -159 733 -253 -902 -548 -401 940 605 -88 512 324 295 358 232 848 412 621 -183 -450 874 -351 268 742 412 147 -601 292 -390 379 -464 -306 729 527 -259 -24 461 -856 354 -595 -834 806 768 -202 758 467 902 -364 -947 -158 -879 784 -246 720 842 -467 129 898 116 -838 593 285 -995 -885 81 897 332 26 725 -311 982 -583 -535 126 -349 311 -766 -370 328 454 -826 304 -971 141 -914 636 853 727 -742 -907 -235 222 597 -666 779 751 -864 349 514 -705 -509 576 -439 -170 653 993 374 427 158 523 62 175 90 102 443 624 886 418 716 -209 -156 311 -966 -877 -969 -168 256 687 -79 347 909 823 941 627 797 -932 50 -198 -811 708 998 -767 736 734 161 437 359 -489 -250 770 392 682 657 -861 -5 -154 -661 361 784 789 111 203 -75 -596 837 360 278 -595 -440 917 -781 164 -895 861 -671 -651 -385 583 936 840 -478 -12 295 296 383 389 665 484 -10 124 573 841 -423 -150 -886 -14 862 -520 420 737 150 -710 787 650 607 645 -498 902 650 -426 237 -398 195 -81 -923 589 -622 416 -105 222 199 25 -750 171 168 35 365 -295 -63 1 678 85 893 754 413 -479 280 -575 1 776 530 -9 246 -34 104 296 -387 -713 276 -308 -869 797 796 -712 523 -332 808 -786 -152 966 -104 317 356 983 -531 -608 931 -273 673 260 116 480 987 -217 259 -468 829 -593 952 -202 867 51 654 795 521 -218 716 651 497 252 271 939 -33 828 143 160 242 448 925 -274 -931 691 -92 302 -292 324 -261 572 611 829 496 -442 298 245 234 415 943 726 842 912 -466 664 363 279 -747 -812 877 191 890 -66 900 409 44 -708 -863 -450 637 216 83 67 537 -402 -517 504 857 -408 75 241 -244 500 -724 -212 332 334 -451 664 -61 399 480 -36 953 407 975 918 926 303 -215 -981 830 704 405 -824 79 170 662 4 913 -142 -184 473 994 725 570 565 93 726 175 857 871 -332 -24 -575 225 29 351 962 568 549 548 566 64 -905 595 331 861 -68 660 478 -288 -430 490 696 681 -431 -509 605 -135 920 -560 303 -993 739 -195 -1 720 -342 -682 780 -115 437 -644 -797 -146 93 334 -924 123 649 -389 615 353 -408 71 -109 335 268 747 812 -689 381 245 299 324 -669 -67 656 -233 674 -938 300 -558 -807 -673 -578 500 -922 220 860 186 615 883 -414 625 -60 89 528 678 804 646 -816 603 -956 253 -758 679 -713 -327 -503 -9 431 238 994 -809 419 -418 -502 703 -667 936 -242 289 -288 485 -795 -545 755 855 -154 -45 -685 645 -867 -414 109 459 -743 954 -383 47 -651 -378 -175 550 -23 628 578 280 472 -409 981 847 -790 56 371 228 -526 866 -476 762 -337 852 713 -873 -596 737 153 -420 398 -197 -575 -148 829 51 849 -763 -394 391 42 809 80 428 370 867 -376 -960 -185 222 528 -491 -359 889 \n911 216\n726 959 205 269 81 199 -822 949 233 -474 151 -115 307 -710 534 -551 492 -561 -84 -811 -65 80 -927 -812 -255 380 -559 429 387 -95 905 -203 -940 475 550 58 180 964 613 -574 651 -481 165 -59 692 39 68 782 -349 374 355 466 467 754 488 252 644 -107 -626 -543 52 -949 616 -537 -889 705 755 -652 -550 898 -127 485 -811 -593 -30 -576 188 778 877 339 -310 -228 741 -390 709 -621 612 -450 -849 123 273 15 171 556 683 -524 -253 16 -275 155 576 994 -525 410 339 -658 683 -715 427 -862 602 -892 -477 684 -355 -344 134 -865 -419 93 452 469 -859 388 266 -581 705 -100 560 160 -181 55 256 626 -118 691 475 373 -906 -978 -122 915 801 35 -268 -452 227 543 -935 518 -181 -253 351 -800 897 54 777 -71 -666 745 -955 809 -700 761 744 -788 138 58 841 888 405 183 135 -873 -348 975 323 -94 -775 -51 918 533 -19 314 129 -157 745 -558 -990 -154 631 -628 965 180 -133 991 808 856 -361 158 447 901 964 -833 -716 -592 802 -536 -592 554 494 317 -581 -709 436 117 -450 730 381 58 811 -110 119 -996 502 -944 -242 155 62 -820 252 -951 -148 27 517 -745 -193 9 -572 695 645 -926 -32 867 195 -230 -320 813 667 25 164 -332 -63 -603 -194 249 -94 85 -562 741 -44 522 -121 549 -720 -499 850 653 44 -747 448 -507 737 620 190 687 257 -128 407 -938 674 233 -606 772 -882 378 608 -171 886 507 -317 -851 369 -257 666 681 -251 -395 666 911 671 743 -608 -180 -436 -499 -79 -304 805 124 -354 180 -290 394 -300 688 -92 98 -425 -627 404 195 347 279 341 -97 -199 226 -750 717 -749 718 249 83 539 -306 463 -739 499 935 -569 -249 664 844 -712 -397 757 -474 598 -811 398 400 330 52 109 360 41 803 414 680 -608 -545 36 -427 178 -241 954 -325 -152 -901 562 875 -124 -455 689 80 989 -817 -569 -673 -687 877 126 122 -656 830 442 886 539 -750 393 620 297 645 309 -4 -171 304 107 62 -225 695 -69 804 895 774 470 -962 322 542 -480 -677 799 -113 825 -578 -60 665 -34 -962 -685 -162 63 -540 -209 -331 -274 -571 91 -976 -176 260 -785 683 -666 322 224 391 -358 410 -990 380 387 -263 454 878 -328 630 -72 310 -493 75 -247 183 737 -322 585 -602 -483 -559 418 346 -952 439 17 344 -851 -341 -73 873 624 -958 -961 987 497 125 93 220 154 -832 835 -668 508 -633 375 37 -877 926 280 306 334 -89 -16 885 -76 -112 -560 703 272 -926 -481 -636 391 528 284 404 170 505 -3 36 599 47 110 723 918 -356 71 -869 797 998 -70 -907 -149 127 -598 681 338 566 830 -239 727 756 -945 -248 928 191 390 -54 918 99 856 -604 415 60 343 379 947 -885 -486 -134 424 732 811 790 863 -259 27 438 684 -777 699 -512 330 -431 -503 894 357 100 -327 -210 334 145 941 822 203 733 528 -621 -900 -242 -388 976 -838 7 512 418 492 220 551 245 601 569 119 -466 -880 863 885 -141 181 557 295 -62 -697 -341 -928 -970 177 -620 344 -119 767 -766 394 388 968 319 -28 871 508 595 -266 805 -34 151 195 197 257 117 -898 637 -288 252 -111 -884 -63 -694 -107 174 -707 -352 552 -860 -854 246 -270 745 -661 12 -367 -917 -696 -350 -653 -974 6 -345 -646 114 494 640 -503 950 414 -952 -205 99 480 132 918 -484 -241 946 -62 977 384 -19 -170 271 845 583 921 637 223 839 -806 456 -692 361 -40 312 470 496 506 -265 -216 113 627 747 773 -664 -879 27 -377 -32 404 992 430 110 94 -342 64 -143 395 -494 409 29 743 340 351 -791 866 -735 449 -366 -637 -149 -429 -504 577 485 -685 216 664 851 -869 -396 721 -271 214 390 -424 950 551 -420 948 872 655 505 792 -96 924 305 690 944 -615 -312 -935 -18 941 812 -101 120 -112 566 328 852 -780 -901 -309 104 810 -884 698 -472 -849 -527 52 235 -48 769 431 279 437 265 2 649 697 784 -897 440 -257 341 401 -308 -262 -873 543 311 862 100 313 91 674 -926 -299 -131 654 958 -100 432 988 871 -526 894 296 110 138 180 -877 -845 -561 -832 495 -11 -756 321 -264 914 597 587 -716 -855 260 -750 -412 542 459 71 -278 827 330 462 795 -82 -324 494 296 664 816 713 -653 176 889 -761 697 -127 -134 -119 93 616 163 -264 788 720 62 219 -946 603 99 -285 -186 94 368 -637 637 451 -921 320 610 -904 374 -574 -673 839 -456 643 -447 -840 -584 -439 877 -219 528 -703 448 791 479 17 651 365 -217 -380 920 637 -453 -726 299 -480 -30 -691 496 \n785 193\n-374 471 -642 -71 202 -820 364 806 800 563 -967 -853 830 810 -843 836 631 584 548 146 -336 569 -434 126 629 627 292 482 197 -811 -473 258 66 304 885 -913 -554 623 922 645 265 -678 804 494 693 -937 164 867 -248 752 422 525 449 174 -331 -297 -211 -635 632 498 229 -795 -165 437 -81 -646 183 116 949 478 -886 -468 -380 788 -232 -391 -822 827 -748 962 -716 3 215 503 -693 623 139 -293 556 -416 243 443 -663 536 -440 -417 -873 -743 -359 255 -425 -66 129 51 698 7 401 448 585 794 -562 458 986 -547 175 851 299 -325 920 544 406 273 -932 -644 -59 -769 -689 -956 52 765 317 754 -104 986 369 -483 921 829 849 -721 966 -997 190 769 -554 743 164 414 -579 767 588 332 891 126 427 814 -826 846 -920 200 -842 495 -882 190 25 -686 712 235 -603 673 727 811 -334 -516 -64 1 372 799 664 -193 997 357 438 -320 522 815 -72 -47 -59 -271 294 909 81 -101 493 985 845 -230 413 -931 215 -496 572 540 -440 743 305 -106 -473 -75 -842 -573 633 -120 -382 325 -195 260 -595 289 398 -629 -50 225 995 -600 974 949 -66 371 577 -276 -310 -716 -303 -278 -652 991 -576 882 504 548 -178 785 720 694 -485 -241 887 302 -341 171 -403 190 348 910 959 927 -997 506 346 635 922 893 -590 -59 -919 81 -955 -187 461 -51 265 41 -768 -214 337 -337 426 118 261 860 -269 102 -19 540 196 571 430 98 619 230 956 777 322 254 -377 -408 111 315 -715 875 161 -180 405 298 -165 90 180 225 965 -619 -61 6 956 -712 -804 183 987 504 -14 -281 47 -547 -553 90 496 215 -607 -24 876 -38 918 -751 -26 -453 490 912 -464 799 330 844 550 793 -415 197 -896 715 -401 469 960 -85 -937 493 -337 -496 -407 559 -317 16 598 -789 136 385 -699 -592 490 207 -402 857 145 -804 786 -604 -477 -302 -835 -968 435 671 -903 904 -43 -75 -806 669 161 805 -640 249 503 746 -288 198 -426 644 43 -325 -137 -393 709 959 377 -26 -92 -528 659 196 218 543 764 826 487 -839 -244 -849 -78 -593 -344 -746 59 -375 928 -644 531 131 -130 952 549 -30 -397 -579 -289 729 -639 -927 -712 -256 -391 370 307 458 -995 742 178 778 188 935 127 -897 -325 -744 553 -2 79 -566 498 -84 -320 -363 968 331 -392 717 -480 224 795 -125 262 -45 -353 409 -463 169 857 -665 687 -306 881 709 411 902 -160 142 392 112 -61 753 738 706 613 247 -439 77 785 376 393 -186 -93 619 671 301 74 439 -732 749 -157 158 -39 -926 485 -932 537 238 289 -596 466 539 -592 524 -493 724 312 892 175 427 928 275 -364 -977 -933 561 554 50 1 278 -476 117 391 -930 176 990 -776 -747 497 -691 769 683 814 -194 546 -655 546 786 801 -968 546 -157 -253 -446 -505 37 -796 648 -839 -163 430 589 206 113 -903 -847 428 -2 608 914 364 -197 -39 825 -325 214 -411 466 601 -388 384 461 71 -732 113 377 153 -724 545 31 -375 -433 505 -652 -50 -426 -421 620 434 82 -527 810 129 -770 155 -832 269 -277 -521 197 -746 411 214 578 582 -926 -939 868 955 784 964 -710 -393 -499 290 -132 -521 591 -754 809 754 -431 -156 -961 -400 812 325 128 536 449 -134 -705 -150 350 58 535 831 669 -315 -640 943 272 -150 533 437 849 698 844 513 -832 629 -662 -101 -704 272 977 401 874 838 287 933 481 120 -229 900 85 -68 541 -955 -504 442 492 534 700 349 501 -507 -427 -792 452 5 453 927 508 -730 -870 497 153 973 125 901 735 813 -670 434 -857 932 648 -549 579 169 -128 -902 -145 759 892 963 997 915 -721 -484 -468 890 910 -70 290 121 279 -377 98 339 579 802 -279 982 -230 -177 830 -566 -616 883 89 609 83 897 397 33 825 -472 -21 126 140 -303 93 449 -740 172 872 530 -437 -767 -106 107 638 -749 111 330 995 -375 -234 -739 788 376 55 492 -531 -10 -970 927 \n858 760\n953 158 995 83 -426 210 -38 979 551 -572 206 -725 -982 659 475 -731 74 -626 833 11 -544 -632 409 -988 619 121 -165 -558 497 275 -383 703 -380 -186 -690 -447 -290 572 503 269 -973 -837 -802 943 -227 213 675 150 303 77 749 432 -263 -918 394 372 -660 -218 -341 673 701 304 847 -224 44 -820 739 973 687 677 -1 -818 960 -646 -319 740 606 965 707 885 -658 127 466 -584 -947 210 -557 -167 -546 -858 -511 408 94 500 -144 756 433 -294 748 743 194 765 301 179 -785 477 309 141 -478 101 53 734 -586 737 -17 203 900 942 553 -118 -437 481 -417 211 229 -312 410 219 956 759 -943 -452 73 -461 -713 751 263 196 -780 321 283 493 736 -579 -383 249 584 -946 -42 -161 -958 583 878 -607 957 448 968 963 -398 222 -100 983 468 413 670 771 7 -854 362 -514 285 -72 -845 859 236 219 266 89 737 -548 678 -67 661 76 492 -909 -410 105 97 -901 243 451 -969 583 545 552 480 785 262 -425 -434 -64 62 -267 373 -1 -113 -766 761 600 -659 129 -959 -477 701 -420 590 674 209 13 247 886 -697 748 355 861 320 951 616 46 711 -15 216 556 -666 232 225 174 80 -253 854 975 383 962 189 54 270 -896 567 -110 -329 388 203 -831 664 336 595 -667 248 -305 -805 643 -201 24 523 -856 102 377 307 946 -928 327 72 20 859 165 56 -614 872 -94 196 970 -202 -599 827 -263 129 -520 711 -769 473 694 927 350 963 772 -91 -443 923 -957 979 -805 -369 252 864 233 657 -12 97 357 -699 760 407 -692 340 -861 905 558 -762 -290 577 85 988 -279 942 -257 616 195 272 181 602 917 447 320 732 -444 60 885 424 -622 998 -563 792 -253 -743 566 639 -774 -836 -780 782 720 449 849 167 907 730 -139 621 78 35 -551 226 -279 769 978 -960 400 574 -473 -497 500 -529 201 -806 86 828 -495 148 322 -869 -74 90 -497 197 444 236 -506 -252 853 828 -124 -195 -648 268 -221 -920 -115 613 534 -238 803 -522 533 146 318 781 -81 -207 72 994 569 402 967 208 230 -79 174 -571 -388 155 406 -236 349 -24 -720 -46 -998 -724 684 403 -112 -730 -69 605 457 -383 347 -374 -520 38 663 457 36 453 -371 502 -374 198 -120 162 18 -399 421 925 458 -570 863 34 787 -390 20 -890 14 884 -846 625 928 162 -334 392 -762 867 94 433 -554 -421 278 -494 1 -347 353 387 -707 97 -141 127 2 -570 558 -319 378 -973 379 787 -38 611 863 919 682 786 -249 259 16 -318 269 -203 339 323 -137 552 -335 860 -721 237 383 -743 -187 -459 148 -143 667 373 -949 -217 -561 -653 -66 975 158 669 -608 176 -371 247 -176 -469 242 -662 -992 790 -707 -962 680 763 760 88 126 451 801 152 -451 721 672 -749 -755 410 54 -432 361 192 461 -677 -209 634 900 -781 988 946 687 90 -728 605 -900 -326 29 927 86 165 -865 948 -374 286 76 -656 -669 454 205 -296 195 453 -339 -559 579 359 605 82 885 -131 -275 292 123 152 -683 635 476 -931 -453 608 -468 843 -678 -347 146 93 -345 453 904 808 -625 932 935 658 265 523 705 281 837 55 -757 492 318 -667 990 -590 537 429 116 378 408 679 825 -882 -32 143 973 -190 -193 159 -243 -747 657 525 146 -377 -18 380 949 -629 487 241 100 133 707 848 -344 -70 426 853 578 -721 966 -395 621 122 -700 680 -632 808 636 278 -397 896 324 667 -781 554 630 346 737 969 -597 -177 -346 -479 -956 993 -322 872 -799 -922 9 -562 -352 860 -777 -323 147 454 210 -27 379 394 231 958 35 -31 -174 747 -749 -718 -644 952 -286 -318 -775 -571 -656 -880 -747 -890 255 -804 -470 420 405 98 -60 -862 -454 809 -483 -848 -972 -244 223 -253 116 976 279 -670 640 175 -631 911 59 664 356 832 -551 437 523 406 778 747 338 432 813 750 -86 -730 -780 10 75 -349 585 643 -471 21 -441 710 968 650 -717 549 272 -264 35 671 136 534 -770 670 -707 -315 969 -152 -142 348 -416 534 623 767 -974 400 459 532 770 -327 990 815 -801 289 191 -95 478 -521 993 809 254 876 -547 102 -288 -509 -201 -129 -811 -34 561 -306 439 92 823 -502 730 475 -26 12 229 880 108 873 -373 -690 54 637 339 -921 -905 501 -300 -966 638 -575 -233 -729 63 \n912 336\n397 -562 150 -650 432 333 20 -342 639 316 -678 595 -960 -713 24 692 371 347 159 -178 -573 354 184 -216 614 197 575 262 75 -84 249 222 886 566 -58 -642 161 60 -512 428 -679 -492 766 228 747 551 843 205 -102 59 200 -288 -365 346 613 760 -201 113 309 -469 502 234 -733 -610 132 42 809 662 -377 787 735 830 109 420 361 97 660 236 952 -235 184 -19 -52 675 180 -713 -533 -85 -354 -757 797 824 102 807 -779 -409 185 -174 -433 70 -479 -899 -535 -572 145 -148 591 -659 428 482 295 -364 623 -371 -938 889 -73 801 446 637 945 -601 -127 208 797 941 523 629 12 -763 -348 -75 715 395 378 -527 -547 573 -198 448 393 -616 -664 -330 350 644 -698 332 253 -33 -546 18 -463 734 4 652 -122 -156 -485 965 429 -528 354 268 718 124 -343 -486 996 -742 -848 690 -749 887 468 -788 834 677 92 787 6 -218 -568 -907 243 931 -211 268 997 -122 -730 961 404 37 97 -393 -966 -852 -894 -321 555 87 748 689 -376 -853 801 938 -236 534 -193 422 774 779 169 905 541 744 -988 -320 -422 -593 545 545 754 -10 -611 43 -861 -197 880 -593 368 -888 330 -131 464 996 -305 901 333 56 -223 -254 148 524 -387 -458 -693 950 119 -921 318 -240 530 262 678 479 -311 -424 114 -390 227 -637 500 -810 -571 -90 -359 -412 308 180 980 -537 -561 -218 32 645 344 400 956 868 309 -334 220 -583 670 39 992 933 765 898 894 816 -553 -13 862 668 366 485 -556 -275 -984 -359 722 587 -660 -562 251 -182 -79 178 433 -738 -645 439 280 759 -331 188 433 403 853 -673 912 473 554 -361 750 590 -227 -156 863 -219 -895 -942 949 -733 362 990 -476 96 249 392 -612 -184 -295 -732 266 -822 -267 -869 815 -378 -376 -107 568 -211 76 -937 844 160 514 792 -9 -186 448 -50 -903 120 425 751 -299 426 356 491 829 910 -115 94 867 910 -77 395 340 424 749 178 -342 -797 -49 150 441 -275 507 -695 -105 -275 971 417 743 -739 -691 780 392 364 -58 -74 -341 541 506 20 -82 543 -282 -693 823 -727 4 -477 -634 615 856 255 -451 -213 567 555 111 195 873 -397 477 -733 -616 -325 812 719 -858 53 251 780 -555 158 63 -391 -481 539 465 854 558 212 -925 -362 657 660 940 177 -973 212 603 276 713 726 266 633 806 90 -998 -913 -949 796 -279 19 966 4 883 -208 -890 629 -617 525 -210 511 846 957 837 -854 52 676 854 -584 -310 -997 435 522 581 44 255 -92 -774 -524 65 520 -66 -963 60 671 -388 665 -181 508 -711 309 -607 815 877 -864 322 -779 617 -144 952 -745 -342 454 831 -291 -350 728 -570 -729 44 207 -864 752 562 466 771 -190 420 282 802 -871 -99 389 552 483 419 467 194 -157 -13 -627 -165 -150 -893 -591 -846 616 581 596 440 555 -169 -539 385 12 641 -770 -421 905 826 964 -122 -726 445 -869 -458 -491 -719 767 685 -164 -839 792 4 335 75 505 -503 1 899 -408 239 -202 -52 943 -749 -596 -790 731 713 848 -447 230 -660 538 870 -165 591 -432 -641 611 873 -54 471 916 829 -757 78 907 746 799 79 772 -193 988 -749 995 -762 -953 -114 -819 -968 -900 129 752 16 81 37 -614 -134 280 -433 535 -224 237 974 -433 153 -486 784 661 135 -745 513 985 -909 315 -468 -119 778 -682 331 -892 352 788 946 -282 174 -285 66 -166 119 -397 727 -619 817 200 -26 -621 638 444 616 -943 846 -727 -977 654 -844 -198 266 -355 604 999 -83 189 723 160 -49 724 -271 461 622 -391 731 222 -4 632 -116 119 157 147 494 -471 222 -618 440 713 96 539 604 806 -582 664 897 968 89 798 248 512 439 367 290 -538 287 241 -232 116 431 -420 434 250 -47 824 -153 -253 27 -397 -92 -823 876 -553 183 -921 472 85 391 806 454 -960 16 -493 -803 346 -831 -58 -31 50 40 -822 720 -522 769 234 -990 -317 -589 96 142 608 595 794 480 454 -420 -481 376 -810 744 576 896 529 961 62 908 717 -647 -183 -669 236 186 163 -504 15 -435 -862 -668 139 -932 455 -527 -731 891 977 -145 852 539 -733 119 -648 -763 -494 57 979 -405 -635 -909 -617 -872 224 170 -902 855 118 -29 668 128 238 608 -489 461 -866 -526 95 -774 109 800 274 149 845 604 -21 569 -160 656 -166 51 708 339 565 724 -878 349 0 -78 276 -929 -98 462 -923 258 648 536 -554 -868 411 187 76 -918 97 -473 370 423 -507 -432 -255 30 328 452 -394 120 465 570 -151 -405 -331 271 -383 452 304 903 20 379 -278 438 821 127 -775 922 848 \n826 195\n826 961 -205 -425 39 -919 37 -599 585 -589 175 72 501 -568 631 108 730 351 -599 -707 -826 -454 323 213 68 854 829 -50 -893 -675 682 595 195 285 139 -727 952 640 941 270 653 340 50 130 -181 -165 -166 689 -197 20 -658 444 851 -268 -276 291 724 -493 269 815 124 -565 218 -374 298 658 -188 -442 377 -370 984 187 785 771 655 73 603 715 -247 -26 -176 545 801 2 -203 58 -457 334 -459 710 881 -264 386 768 629 254 169 -641 0 -99 657 757 -54 -269 -27 -156 -585 -213 825 -883 244 290 -963 -912 99 -637 651 202 -409 -222 817 735 -215 -367 -392 604 708 828 831 -176 -608 -913 -753 905 888 820 813 150 -117 174 982 -947 373 -726 -700 257 -776 222 578 -691 596 916 -886 650 -209 706 541 -545 -862 535 84 593 -891 948 -703 -463 140 -528 726 561 -845 500 899 37 0 736 917 866 672 244 -752 901 -98 -63 -907 454 647 252 777 -680 -115 -967 -416 -836 -113 885 237 998 548 162 662 46 -743 352 -478 -200 575 -335 757 -573 708 -343 790 -57 844 623 -39 -763 231 -354 -964 711 411 -333 164 231 -690 -786 -930 -926 -768 408 -974 -644 942 273 -777 333 697 923 -517 433 -259 775 227 533 376 709 754 505 -747 750 -351 497 -239 456 47 956 118 101 207 -583 -766 572 -324 11 951 887 468 947 350 -748 107 815 245 -413 447 91 928 47 677 833 -130 -254 -32 -971 310 -544 401 874 -582 125 178 618 -200 -574 -762 -955 -595 -275 69 938 135 979 521 237 42 -512 218 571 -812 -287 814 210 -164 837 -489 758 880 653 947 625 -809 -307 -269 366 -805 716 488 -901 387 -292 22 354 34 -863 206 69 -571 -176 156 499 -954 621 791 -716 -554 -384 586 27 -358 528 -251 842 -984 710 -823 -243 237 152 316 -119 -454 18 382 -91 -113 32 155 62 439 429 -798 -717 668 -927 79 -351 82 561 33 -401 302 455 -571 163 833 -782 -265 49 232 -953 -680 267 -5 77 285 894 -892 38 46 121 334 143 527 -984 417 703 71 732 686 -254 -464 817 354 180 -475 454 310 -587 705 -737 -679 -40 -627 921 166 -13 -555 194 -433 -746 641 996 -865 575 343 -908 -514 292 773 554 -917 434 -358 -129 73 759 -681 -891 142 37 -569 338 81 -947 589 199 -683 -755 329 271 722 -939 851 593 718 -828 399 -482 885 -190 -43 -201 944 -914 44 43 100 398 -527 -568 -977 733 200 -804 -326 364 151 679 -683 542 430 -485 -358 481 204 127 -503 695 -694 80 -612 741 -120 369 86 432 -536 646 -225 691 500 895 616 586 23 167 151 58 976 -16 375 70 -530 653 -325 924 613 -271 139 510 380 465 390 210 -397 -443 743 338 -932 -410 858 -77 168 -967 170 428 380 380 210 254 648 250 885 348 -150 902 -224 901 837 7 3 531 -225 -474 531 940 112 118 235 -603 -711 -656 790 -380 -252 728 -671 939 -233 -242 241 950 -63 38 -727 303 728 512 -502 -659 556 241 13 165 -845 100 732 659 891 -778 498 808 737 855 -198 577 86 738 -535 184 -389 937 132 -604 574 -187 724 -943 554 148 527 366 530 724 779 -132 -777 488 304 248 974 888 -317 690 723 863 -104 -723 160 710 -259 842 809 265 617 983 75 -585 157 196 299 552 515 -270 904 592 757 73 636 -629 -943 666 -751 294 627 -834 -532 -848 150 794 -41 971 -257 745 -67 -411 122 -543 920 808 -616 606 252 158 -834 772 973 598 -17 243 958 363 729 -560 -696 -998 -980 207 412 435 -663 614 -218 697 -27 574 357 942 614 -821 -5 745 -847 798 84 710 701 -887 649 -877 -785 -746 360 -451 591 -893 -432 311 -545 -162 459 327 516 -623 258 217 -753 -159 254 506 -981 736 912 202 209 -315 82 -638 -947 -15 -692 -181 132 374 -377 268 -840 -6 735 2 641 -665 154 844 35 414 649 -242 161 -646 719 207 727 824 75 -837 -447 -85 689 688 556 -404 15 182 514 464 625 -806 -940 -933 461 -149 436 -70 359 226 94 194 727 -332 -669 -402 326 -926 -741 -541 -541 -690 -687 -117 422 291 897 -455 -145 97 -539 -270 -640 -673 435 -249 851 754 \n882 586\n-954 -598 198 558 -229 27 308 429 -915 -64 935 -602 186 -505 -72 608 -532 164 267 210 422 -579 -342 610 -691 -134 982 627 -88 806 713 328 -621 -394 453 859 842 -550 143 735 -72 263 189 -238 411 -161 -893 756 95 969 243 210 -992 451 -544 52 -688 -525 461 -347 805 -250 708 -731 576 513 191 222 -432 971 -743 -64 -389 -328 767 -193 133 466 926 -654 -138 -289 448 -112 -330 669 6 995 470 487 673 272 -475 841 -75 644 -68 433 998 887 142 514 659 934 674 -995 581 -338 359 278 819 -918 -334 -490 426 -580 -236 -882 -936 921 499 484 258 700 -529 -90 886 411 888 -412 -378 15 732 -788 59 -555 120 456 767 -393 -945 996 68 -852 665 790 -103 735 -430 -121 -926 693 161 594 6 -543 -247 125 -294 993 -283 -393 681 845 346 -248 728 -982 766 -448 470 -998 596 -477 554 609 573 -92 793 240 713 569 721 -327 -223 515 -23 -631 62 459 -906 501 352 704 413 -537 -977 -502 -297 -655 804 394 825 106 703 -655 772 724 -578 -381 -655 447 803 261 912 -688 -765 862 -868 110 -253 987 -410 127 268 -986 925 -867 536 -774 86 399 43 -566 512 588 201 -84 370 -581 582 -255 233 -789 -271 -842 707 22 556 331 -181 275 484 453 342 983 897 -334 -953 692 -783 -673 727 117 -673 -852 363 932 485 467 77 485 339 468 223 616 66 114 -467 -731 -979 234 450 574 803 217 -158 -30 -718 388 -850 -554 327 -422 773 -401 504 525 -595 -242 -256 -893 771 -586 288 -388 -170 -362 -989 260 398 526 498 -572 852 768 -875 -327 931 -378 291 476 887 848 694 629 -391 691 -191 -472 -39 239 -140 -529 -486 -654 413 -997 1 610 529 -776 862 40 265 656 874 303 747 -144 348 -454 96 -7 -648 811 30 -518 -829 276 79 501 143 562 -608 230 -565 608 155 433 260 -329 485 -847 834 -56 745 718 692 709 83 947 481 -903 -462 307 637 604 94 -930 791 -595 -823 964 -739 -163 -516 399 -273 -217 33 -911 875 566 810 271 -907 902 89 -303 563 666 -931 329 251 150 868 554 -439 -468 263 87 526 472 999 670 -276 682 105 121 256 -631 415 799 391 57 -70 466 287 -362 761 410 125 -468 956 568 497 -76 642 308 324 330 295 -368 968 347 31 506 120 -72 461 -102 244 156 125 617 735 -850 219 695 -104 532 913 -119 636 797 205 -562 -139 872 -496 -207 646 431 -336 -226 135 277 727 744 -186 204 -58 661 884 176 531 198 -219 913 -592 375 798 197 778 358 -272 180 -574 286 17 -882 527 349 -141 161 146 -502 195 -701 -280 40 71 566 288 734 -673 -993 690 61 -3 -63 -373 73 727 -452 -970 -511 287 297 -879 404 51 -835 446 141 -927 298 99 189 930 -675 497 -899 992 -30 -85 -641 -721 993 -969 -806 -400 35 -899 669 869 313 492 507 323 445 785 -661 314 -74 -349 912 974 -465 493 894 -510 -871 -34 -744 14 -549 -843 87 -62 711 -424 186 569 -109 -353 963 583 645 957 -425 -635 303 571 -183 261 559 948 300 -401 206 167 -842 -950 -882 -236 311 352 994 265 623 807 299 -424 -567 822 21 71 -139 309 -695 -366 497 399 167 -669 -716 -428 634 -572 -403 712 378 -649 871 419 147 -525 24 839 -621 -975 953 453 61 792 -167 -88 588 237 462 407 94 -336 804 104 -949 -359 -924 40 28 700 -860 260 756 851 207 -467 186 943 156 -689 998 446 165 646 614 896 -889 141 -9 188 -347 -854 -93 -634 -809 -924 177 74 549 -632 84 -660 767 12 -732 998 -225 728 975 681 362 -968 -150 532 428 -884 -29 256 950 447 -868 642 -594 9 -553 341 -824 -349 68 -93 721 660 -762 164 765 624 -82 -233 614 -753 571 -548 146 -891 412 707 -61 -278 922 313 -716 781 -366 -633 852 80 260 -991 849 18 381 -80 -951 -428 406 -77 -181 -296 199 -84 -748 942 -645 -503 396 523 -272 -595 536 861 -365 49 941 -840 85 -113 919 660 -541 666 428 492 564 83 367 -160 976 574 191 916 -322 927 853 80 21 50 921 846 834 -898 -637 743 975 906 -993 630 459 -952 213 -723 -180 901 794 874 146 535 -482 393 585 519 -587 453 843 -291 -536 -102 371 685 608 926 587 242 -605 422 823 -636 854 617 840 800 766 863 274 545 26 956 -38 947 655 814 192 392 -314 26 306 15 253 -256 -288 912 193 978 402 98 455 -545 -525 141 126 \n744 410\n733 612 -829 691 504 890 -200 432 -731 -17 607 384 671 490 145 488 -835 -621 -765 649 559 157 318 -224 124 778 -542 831 50 142 736 258 496 40 -100 2 968 -636 303 909 223 -881 -617 -60 -714 -105 -605 -372 -516 -629 684 -750 -593 614 -538 807 223 -261 -336 137 679 692 872 136 320 267 212 93 68 -429 -416 -206 313 976 51 932 -585 -800 506 -588 -795 420 -389 -735 -112 303 408 434 -311 432 -123 750 -841 747 714 -41 -221 206 534 883 -445 -117 298 -250 -496 -158 991 -167 -174 669 552 775 -343 562 -207 -483 412 -566 -878 -992 -540 570 407 263 313 -360 621 341 64 -848 584 -981 -588 236 557 -890 116 436 -668 -85 912 963 832 725 -752 -775 -82 26 942 -829 750 -984 751 -875 -381 187 21 973 641 485 400 641 -500 73 -136 -170 186 52 669 -665 698 855 152 7 -49 614 -231 396 343 12 -764 -435 439 69 558 164 -315 114 975 337 671 -608 861 345 265 -769 346 -688 327 50 267 -621 -777 260 -628 818 827 699 -602 -144 -932 705 328 -577 514 212 -571 868 -403 -556 102 -660 221 159 -695 -105 -552 988 88 405 438 -579 407 160 58 4 -158 725 -334 923 76 123 -411 -754 929 829 389 -839 406 803 917 -874 -179 -462 957 736 -71 216 -111 107 852 -625 -663 951 -664 523 468 -639 -245 207 195 542 474 286 491 -422 -16 153 -402 149 -901 633 -511 -43 365 -416 158 325 236 -822 544 -813 -277 -197 -992 631 -70 333 -391 333 474 -897 -344 500 5 967 501 -126 651 356 200 -566 978 -942 -763 -191 204 577 -721 525 590 -451 -906 177 -851 656 803 -162 434 598 -59 -871 811 273 -872 54 494 656 616 -360 -284 -167 -120 594 -172 -395 -792 62 -320 617 925 552 -149 -16 -797 194 -983 618 551 -8 -786 -942 -553 -724 -610 665 16 147 916 -921 164 774 211 624 -808 -586 -404 807 -174 -17 -25 825 898 7 314 43 738 165 624 387 148 -713 472 374 104 -140 70 -88 329 35 327 480 -89 -167 -878 457 370 -813 976 -379 -566 -31 712 -103 920 -104 -332 679 864 316 -950 -811 -819 -742 988 981 96 592 544 870 -52 -894 936 439 487 651 351 -241 -685 163 810 -157 7 -232 156 509 655 981 -371 449 695 950 681 659 170 -406 -676 -539 458 -862 -766 260 504 749 -334 -517 767 -259 309 -401 -90 373 209 575 153 -364 53 482 384 318 -680 34 831 827 458 850 -731 -401 266 -904 340 -120 -322 -121 158 -775 -961 282 -792 -406 584 -279 -999 329 94 448 812 20 -644 543 234 481 657 -427 329 483 535 -616 342 271 -637 -85 440 -686 -947 165 -100 -764 409 -222 970 -588 -856 837 982 -305 767 976 -873 478 856 363 253 -456 320 -307 788 -911 18 -110 993 -249 285 937 -605 726 458 24 268 -357 886 674 -398 453 -190 650 222 -421 150 -440 910 -565 -465 -229 -569 74 300 435 -728 414 931 -331 -62 877 786 -236 -836 -562 -589 -411 53 -112 -449 -589 -250 34 265 -143 752 411 -546 -271 813 -790 -399 584 463 -551 -382 721 -285 984 -376 431 -308 -86 -173 839 747 593 926 420 855 439 73 -71 624 -209 913 658 -290 -933 107 821 622 515 -666 -713 598 24 -196 463 212 925 379 178 -571 -721 253 984 -268 371 972 -70 67 593 -583 841 464 780 46 157 102 -490 906 -986 527 -714 -427 522 -486 -172 760 -36 644 -462 -811 188 612 479 -58 65 -550 -601 -775 -686 856 519 185 234 328 627 265 -447 -139 202 -862 -350 802 286 -225 -66 24 131 473 -737 101 666 -928 230 806 137 -165 -321 290 65 -840 517 846 7 -937 970 162 12 -481 -489 -970 573 511 578 -102 436 452 -17 258 117 584 708 719 -761 -835 223 -377 -694 \n836 773\n876 -81 564 669 -298 758 973 744 -177 884 393 -454 575 -352 -874 -509 664 -39 -812 909 257 975 -840 308 -142 983 898 5 501 -946 -707 -189 897 881 408 517 -729 -549 616 -394 102 -873 -26 48 -944 -590 957 -851 834 629 311 660 73 265 383 -339 481 681 170 -975 816 715 449 439 65 212 -41 724 522 -201 706 -621 342 65 441 -394 -204 49 567 -577 -358 854 -375 772 483 -734 -252 241 -622 816 280 361 -69 455 646 570 -122 -148 577 621 237 913 402 416 -968 -326 79 916 778 559 886 -8 -173 748 238 765 -472 -544 799 -504 -365 -515 93 -779 -340 -656 976 -628 -966 -376 -207 -917 -283 573 177 154 972 207 -762 -423 170 -570 324 151 366 654 355 541 -406 -6 224 927 -359 986 855 -998 325 494 201 -512 -108 736 811 478 987 917 -189 -366 -963 109 396 105 -268 -914 -600 94 105 -605 727 622 39 513 344 462 634 590 -200 97 -872 -455 537 -267 908 -613 -814 -246 757 -66 216 425 396 -582 -340 772 113 37 819 -78 478 711 272 -911 -970 -912 358 678 -376 533 376 -380 -678 949 742 327 -647 381 95 -320 153 986 881 93 -879 28 -731 -615 360 541 699 725 190 238 528 696 952 -594 -618 526 -848 177 13 159 -590 999 -34 -970 452 194 846 -409 -119 -567 -960 -281 636 230 159 -907 745 873 114 973 -24 297 878 -114 -584 106 -556 342 235 730 361 -971 72 -13 404 863 -835 892 179 611 -448 777 -846 213 276 356 66 375 -460 866 319 -214 -452 -921 -859 452 386 909 757 310 -568 -550 515 -663 -205 712 -68 -51 -156 -393 54 637 547 734 778 -801 790 -423 739 59 242 -966 883 -150 -794 -452 390 614 -958 13 420 767 263 615 -259 -235 -684 38 787 967 927 539 48 -815 -513 -176 684 38 250 -598 386 -383 -514 -7 60 -175 987 924 -239 120 284 881 129 -895 352 -748 457 71 -125 249 -8 -892 813 481 424 625 -752 -454 804 835 880 -433 -64 155 -548 204 724 -224 118 -448 326 -874 -501 289 317 -32 251 925 358 -404 456 216 27 721 789 827 991 396 -58 -72 531 184 57 560 212 336 464 158 826 -921 -355 521 419 397 592 397 -334 130 -761 -274 -825 -616 -293 -732 756 39 983 498 -707 -839 142 -151 -640 461 4 -300 -886 197 71 -779 239 507 18 557 439 592 -157 54 382 987 -529 236 874 941 333 -436 -491 972 676 -564 454 -50 28 658 523 -963 -793 515 526 698 -488 437 217 68 580 -518 385 -747 716 -883 277 325 355 170 370 995 -887 584 -145 -106 -995 715 655 741 -893 713 420 -297 184 -527 957 -880 -755 811 330 846 -592 51 945 767 -870 -732 985 -711 888 -52 -328 544 955 352 549 568 684 -23 -190 -9 832 820 -260 223 -250 736 82 -933 528 -502 601 -697 -990 421 887 403 602 -225 -556 97 -926 -707 844 438 618 460 79 407 -639 406 20 565 -717 -564 513 -886 750 -924 493 667 544 -724 -367 -91 -631 -738 364 -327 48 211 -725 820 887 645 702 -676 803 853 568 821 -605 -706 -488 505 -644 447 110 -812 -756 493 -630 505 -994 -775 -347 -886 -913 -500 679 -827 193 81 308 -295 570 924 998 -643 126 18 159 324 -476 610 786 -773 790 -823 -288 611 -492 -994 -782 -24 614 638 948 321 -926 -354 448 272 403 -915 -505 858 856 55 981 569 283 595 -916 -347 766 -422 794 -466 945 -196 -440 810 335 -60 388 -647 828 -145 357 -252 -373 797 975 716 -664 -105 133 229 -544 95 50 840 -122 -377 519 171 835 831 -704 -63 288 916 -111 554 739 9 -40 182 909 -745 -443 152 -575 -707 -413 529 111 -964 -927 -209 818 787 685 -687 340 -2 728 458 193 -675 -629 124 376 721 156 834 314 -243 642 53 744 269 -464 107 698 -582 65 535 -961 187 167 -748 -942 -490 -519 726 784 -728 -760 -26 -738 -876 760 -897 386 -730 352 25 52 -777 19 836 837 165 -754 127 600 -69 -547 100 -581 -550 -358 -185 100 -415 566 -726 150 195 -374 -538 -981 -506 -978 711 -879 679 857 426 -23 -779 610 956 -380 -33 -804 -68 -448 897 164 514 490 -750 546 701 325 -151 156 302 55 193 19 -507 -282 251 -473 -277 \n830 789\n205 939 181 17 731 72 666 927 -47 373 733 -772 580 316 304 820 -870 -149 530 -527 271 -689 -423 -34 660 677 -37 997 789 -381 905 579 -425 222 496 318 887 411 151 -160 -918 233 -572 -59 -413 -643 106 -737 -644 -974 664 173 250 -422 -963 856 348 320 864 165 -28 -902 -347 -814 -112 614 -42 188 -303 -603 -322 -683 983 -842 794 67 -178 -350 115 176 -76 -581 686 235 263 761 -814 512 359 -704 897 294 679 -644 -324 737 -826 939 -308 803 546 -864 373 295 748 969 63 452 850 -599 -236 185 616 985 203 -619 -304 -577 -360 -992 -158 -861 -530 696 -444 -727 -468 -286 -975 -406 -861 491 -960 -723 415 180 100 301 -427 -487 -789 -701 -756 -890 -631 -586 -280 540 676 358 370 -674 56 -367 -2 -371 877 -352 -491 84 352 -838 421 -197 114 395 873 138 776 374 -855 131 -739 512 115 -573 -337 401 59 670 -371 977 -227 13 -749 487 -706 400 145 870 490 68 596 675 92 -248 -351 -176 321 354 431 108 -394 889 -829 345 833 129 335 -292 302 762 -693 -225 699 921 549 564 112 -550 800 -17 -712 -92 -267 -277 -826 356 239 514 721 -627 801 -576 708 183 34 126 -351 -838 -840 581 920 -951 -867 670 171 -623 -385 -326 -614 -133 11 609 -22 94 773 -84 728 -314 -658 474 648 -909 774 928 -382 55 714 97 -188 364 -220 -363 210 -989 964 -872 642 -493 -104 654 452 -149 -864 -383 898 929 139 -153 749 -833 -872 -735 295 232 86 -471 -847 -928 -381 186 784 -452 -691 -423 314 12 208 -168 32 525 634 -507 480 -447 -993 922 -670 -69 540 227 993 241 530 -129 -236 549 162 -122 -151 842 -628 -935 -196 765 -85 -391 -994 541 671 812 -341 -327 55 532 476 258 485 -962 353 -835 0 131 413 714 -663 -337 665 891 -969 186 -726 454 966 -738 558 351 155 53 697 -175 810 214 185 889 -528 692 -294 430 741 855 -43 -698 927 -535 879 -348 920 653 -693 978 395 -352 157 803 -987 370 928 571 732 808 647 970 232 326 101 357 899 96 945 -195 -80 34 221 978 882 801 809 -88 -795 -295 745 -74 945 -387 106 313 -435 -759 -745 239 32 137 293 526 857 554 -240 954 -867 -242 282 -402 -438 386 -982 915 272 368 843 -725 -938 558 627 -132 505 980 159 -24 439 682 530 -717 424 -206 -394 -132 -294 156 834 288 973 241 -315 -282 831 111 574 830 353 828 931 -739 148 891 837 951 581 -433 212 -592 -974 -297 -954 -52 -123 -33 94 387 -997 3 268 888 682 821 667 683 731 -793 -861 193 69 -622 -643 691 305 357 414 -715 -60 900 615 826 168 614 -73 141 -729 17 689 579 808 -583 845 -592 539 -95 346 -838 -155 937 556 327 -445 -340 466 523 442 -404 319 992 679 452 -34 381 -997 -329 559 -495 226 407 -92 76 -414 -769 -413 162 -775 789 440 -361 38 590 522 701 888 192 504 565 670 -560 -126 -431 93 -10 -516 -530 -590 448 -700 545 447 601 -294 399 -656 -584 508 -206 167 -17 -494 950 -700 24 -239 172 -190 234 941 761 557 809 -29 -135 270 -108 -261 463 -922 133 -401 38 -374 617 743 915 -756 900 514 714 177 -42 595 988 310 287 -571 909 -759 440 -882 -669 -447 -448 -139 -984 -634 436 -86 222 121 -927 485 635 841 -86 -431 -144 -788 205 432 64 119 441 751 172 651 652 -998 303 388 636 -46 3 -909 388 113 314 153 297 -422 694 -163 222 88 850 600 561 -39 990 -208 -140 181 479 688 -709 586 652 -427 398 617 -523 -484 -29 537 90 821 997 -293 -310 484 75 317 455 177 331 34 346 481 137 326 670 -854 -191 -225 -871 964 958 341 -358 -422 565 -675 -423 839 675 -308 106 449 419 -641 771 -362 -611 -971 394 -138 -108 -228 403 -470 365 -204 855 184 1 253 -697 -876 684 -639 674 -572 -433 269 477 861 319 693 -147 -441 719 964 113 675 -56 433 318 -174 635 725 149 166 -880 969 -529 37 -55 496 331 735 999 488 -62 430 275 -877 4 575 -16 -414 390 59 880 -223 -672 696 714 -133 883 261 -304 -429 -633 17 -927 998 -596 101 994 106 -535 -237 864 -512 -372 -163 906 \n933 486\n109 -406 821 211 688 901 91 670 229 -461 628 -399 -779 617 -500 933 324 772 823 -339 -586 656 -152 -407 830 952 491 475 -394 319 251 -207 153 223 -380 141 234 603 209 -964 681 285 -616 878 -589 841 521 -602 499 567 -483 -3 649 789 -847 -446 868 707 -66 928 483 662 119 309 -401 798 572 -642 751 287 96 365 80 -27 195 584 -724 -215 -302 -929 197 233 606 957 -989 -961 974 872 606 309 -730 -678 96 491 309 398 358 -219 691 17 409 930 943 760 28 176 455 219 446 -506 595 899 116 122 914 769 429 338 917 -228 300 205 530 -87 689 534 -66 648 607 30 -579 -795 991 586 791 653 204 -67 867 -337 870 -637 841 878 -31 -896 206 87 -945 -634 -909 -514 358 -691 -362 666 566 135 -720 -621 420 392 763 46 898 -929 -599 468 208 724 55 409 -257 141 23 -620 639 677 203 -712 -129 480 101 811 36 911 -274 543 -183 -255 -982 -724 382 775 -156 -764 -680 782 -407 478 489 483 492 988 721 636 813 -725 714 896 471 291 -726 -124 -189 45 511 697 699 999 77 236 948 285 764 342 -980 788 -739 -586 639 802 -878 833 32 -8 293 961 -499 711 -722 137 196 -624 559 -967 -93 602 502 194 -916 -625 471 40 562 713 382 98 381 -343 858 395 -871 480 -591 877 149 -327 -85 -732 217 180 670 600 -481 360 372 719 -278 -642 953 -465 589 469 669 779 -689 335 276 -204 887 -35 -437 883 -296 -168 -460 335 467 -344 -593 -485 488 115 -255 102 742 65 990 550 126 -547 -585 422 766 891 592 643 40 559 263 -669 -640 90 -29 641 -185 -139 166 -847 688 916 -466 -373 983 -884 20 610 84 -621 387 404 -871 479 -340 -362 880 -403 -79 -514 -943 945 613 116 866 347 33 341 -498 280 76 134 206 209 -431 -699 222 239 660 -940 690 595 693 -447 -897 -821 940 196 -210 134 818 583 878 670 912 -322 -476 798 -233 40 -44 863 870 67 956 -313 -136 847 110 549 954 293 128 -868 579 929 202 -501 329 756 420 595 -113 194 406 -61 -664 677 230 52 -29 945 -13 -544 148 598 -562 -932 -77 353 -166 -797 -827 19 350 7 -942 945 636 368 -225 186 558 914 420 76 -6 758 -987 191 504 564 742 -344 679 -596 591 599 265 848 903 -370 -294 351 -593 552 -924 428 220 279 -966 884 -806 15 -289 372 812 804 -542 857 -619 23 -827 -942 2 -677 1 906 566 -327 919 535 573 -201 14 -195 411 476 571 395 775 -259 -809 131 95 -457 -660 560 -208 874 190 -999 -143 -413 806 410 -595 769 788 746 753 117 230 311 -503 462 999 -466 593 -757 90 324 815 -438 395 573 -964 -42 -567 526 912 -862 815 -510 -599 -754 737 577 689 -59 231 -540 -984 -457 822 115 -189 -226 999 147 -67 677 -202 -784 466 -911 110 288 -437 914 -594 -862 -917 729 360 -568 36 821 -228 666 -298 -835 602 793 476 220 933 -496 512 107 688 -606 -378 739 -473 654 170 926 953 -974 155 -903 870 617 990 -585 689 965 493 6 808 -285 -360 -305 861 392 60 -356 885 -696 199 -179 818 60 453 -991 -89 -502 286 116 772 -246 909 923 442 149 -587 392 746 -411 -322 317 852 -890 658 -294 -816 -377 -952 -507 -453 -498 -666 -57 -827 -411 836 401 385 -209 -790 496 -336 800 -571 -269 510 204 780 -494 -628 164 491 915 -888 90 593 705 -892 404 448 392 -957 606 -641 -814 -469 -877 -455 786 545 341 274 394 -260 -717 -166 -853 -586 -446 257 -617 -814 -935 889 -271 525 876 -179 362 664 210 301 -884 637 340 5 64 -879 593 855 113 674 548 715 362 -544 -227 -333 -740 335 -617 323 339 -864 -284 482 -313 -57 88 354 -705 -788 986 805 701 350 405 -21 -113 -881 544 731 198 187 -630 704 -496 36 876 -96 72 -572 79 201 619 -258 852 392 -49 -94 950 -901 559 -841 468 -179 949 -335 -120 569 -112 -76 97 859 242 -188 233 -217 45 -505 432 863 683 193 -879 659 -337 93 734 355 104 395 303 -220 595 -13 80 20 -883 680 653 377 830 286 468 935 -59 93 159 -847 640 566 -669 890 -717 14 -377 690 918 80 106 489 20 873 905 96 869 -578 -327 10 -840 626 -92 -862 186 -882 -561 -504 -387 7 55 -568 -529 451 589 818 -468 932 318 61 -241 -547 -992 532 -656 -518 63 696 589 -263 -632 -747 74 -28 142 751 -715 381 360 725 41 -112 489 -974 345 312 271 902 386 994 -365 -996 266 207 -337 835 553 708 302 36 812 341 -731 681 -923 -358 122 692 804 -224 466 678 454 -978 -109 -808 566 -846 411 318 230 864 494 -799 -569 -154 -700 902 336 739 695 52 \n709 374\n-41 -779 -268 434 816 -447 -889 -736 598 541 34 206 -915 46 -649 542 321 -373 -915 727 -120 -659 -512 785 419 59 -150 636 -41 7 -110 -201 540 161 414 447 238 323 -485 -991 263 880 210 -800 480 144 -94 221 956 688 437 866 377 407 -530 379 -411 818 944 436 545 313 -689 242 407 273 930 721 330 -656 -333 435 -799 3 -742 976 -741 683 -950 -64 622 84 36 371 241 893 87 809 -947 339 37 778 386 -197 207 -720 -448 833 -938 176 -142 718 255 845 263 40 -460 900 -225 -648 522 97 -855 -473 -21 353 185 580 -503 -46 -274 -172 -453 22 -49 603 -464 -315 -625 -107 -941 -349 874 934 -765 380 93 -39 350 822 -76 942 -800 423 -503 80 321 540 832 316 714 207 -488 -791 832 606 -872 -857 -340 -628 -513 814 -827 -694 572 -574 990 -584 -811 126 -11 141 358 -317 -90 66 -103 -511 -785 -44 190 101 505 -494 70 -51 503 -124 574 137 99 570 -305 -987 100 -750 -438 65 -139 849 -89 -351 -427 642 680 -677 -615 131 806 -528 -340 362 -884 16 -43 489 115 889 105 -247 -723 306 158 205 343 808 881 666 519 -212 -106 -719 981 -841 -663 -188 104 239 -448 873 844 739 -67 605 -152 -292 -416 -698 639 159 430 -335 576 772 12 -214 -53 847 -441 283 -15 -672 101 587 393 -876 470 -562 8 442 812 700 370 902 -124 733 -620 -545 -25 705 970 -799 118 597 -931 -864 78 195 -778 -519 -668 -218 -207 718 19 764 148 352 448 -399 456 502 -778 -564 151 859 361 -395 -295 8 188 -708 589 -432 498 88 -46 -292 -618 62 479 -393 531 78 -62 541 837 874 382 550 813 -712 822 555 -805 874 571 369 705 -781 34 759 307 -61 127 762 441 -16 488 618 282 -878 -194 883 -684 -248 628 413 913 -230 -151 133 165 -671 636 -890 730 884 -398 808 236 -541 -843 32 470 267 -296 -342 507 741 978 554 101 92 653 327 633 30 -569 991 -993 -222 -128 613 489 755 809 874 779 701 16 169 -651 403 580 -210 75 375 728 -179 104 935 -851 -658 187 766 431 372 266 346 237 -850 -204 -628 600 887 616 132 638 259 -255 578 -194 58 493 -477 20 222 -676 -119 368 -593 -257 423 -827 108 341 582 -721 -355 317 267 297 646 -754 -376 239 465 -762 -50 -497 -949 382 156 315 469 226 725 20 218 -208 -621 78 520 -141 -948 -10 767 210 -604 97 922 -676 -714 -796 883 540 240 101 -781 64 678 916 929 232 924 -379 -778 162 794 819 -896 -991 312 -876 353 780 799 -352 811 58 -278 -521 643 614 -453 -935 522 537 614 91 -346 969 263 -574 102 -30 -521 539 975 230 -644 808 -871 -426 -313 90 258 350 -950 -958 800 -765 670 568 469 483 -942 760 833 105 -41 264 -57 -845 -205 -232 -220 847 436 562 -438 -277 387 462 608 63 -590 -198 -94 876 995 -11 447 132 459 663 -433 -555 948 -473 475 -756 -681 292 193 140 752 32 419 -907 307 832 -390 -231 520 -170 -490 608 729 -834 562 533 -605 -151 79 -269 709 916 -485 -951 927 121 -253 -315 311 464 649 -222 -73 40 452 282 624 117 -975 404 -154 -942 212 845 -697 -941 -751 345 372 795 872 -978 868 753 -659 942 648 904 824 61 89 682 940 -540 415 -631 -453 429 -258 33 -418 493 17 865 -393 -940 615 919 134 720 273 -581 155 -139 -1 -517 -906 648 -566 103 997 -354 561 4 -495 -229 946 333 -945 -419 -233 117 93 -809 990 715 262 -215 -681 713 30 451 -362 -695 -639 -782 -787 401 27 574 -449 684 \n759 258\n-125 646 70 334 585 -159 305 -80 247 771 338 240 -351 425 -282 -831 -54 -299 129 -535 -788 -694 -993 112 -789 963 225 135 419 -288 403 514 419 -568 -781 269 -116 311 -940 944 875 -95 812 -494 -801 813 441 -272 -539 -21 -362 568 -473 -514 -241 951 952 727 -756 535 913 809 -735 -49 527 978 -79 64 92 951 -704 -876 29 -635 121 -769 730 66 259 622 519 903 -85 686 -925 558 779 65 -601 -43 842 612 -484 -361 -165 829 -906 -780 867 -496 483 -416 551 389 725 -391 -495 -8 432 -382 246 415 336 273 858 856 535 -587 -751 -856 177 567 -602 -733 -854 802 166 885 787 -262 -130 -492 -641 120 -744 -306 828 211 784 931 -821 -275 -764 109 -721 -843 626 198 -79 512 -77 -875 734 -643 -76 -578 662 371 289 -561 626 328 467 -364 228 -169 700 -603 -816 -632 916 -714 -728 408 -92 8 247 -710 412 -216 182 789 670 -291 -714 160 152 979 -628 924 238 -121 -655 731 -861 41 598 747 -218 873 -859 732 505 -613 -529 598 -358 -334 411 -585 160 262 619 866 216 -118 -172 -229 -103 -153 -856 166 565 446 -563 -142 219 -65 182 420 946 -858 669 281 -481 269 57 -507 307 625 22 796 430 305 14 -200 325 -526 317 738 -584 -931 -835 487 -975 -799 117 849 -754 366 332 910 684 -384 876 895 -459 473 -454 417 -834 568 807 823 631 232 -143 -470 -221 298 -667 32 867 -529 436 -593 -555 -60 237 -221 -604 487 480 -16 80 -427 498 340 135 97 786 991 451 -3 878 -995 89 780 -399 668 510 834 200 -765 -840 -243 611 -340 241 957 691 -313 216 357 979 458 935 345 398 698 -358 166 -733 -46 -518 851 428 -791 983 299 557 171 -418 919 203 747 -776 826 0 966 585 139 -632 -261 -262 286 260 37 -432 348 -824 -736 -54 318 53 476 315 182 -336 771 -102 295 -473 505 552 488 885 169 329 -572 -324 329 -292 869 595 353 190 -436 -139 472 -67 795 641 -71 609 -579 964 331 971 -686 26 183 -391 119 691 -816 -369 557 -300 608 542 700 -686 900 -449 -491 732 -726 905 350 353 -331 793 894 863 701 -183 -357 225 -274 -229 -203 -378 356 -643 -739 604 -327 -243 294 122 719 -532 -807 574 -303 224 37 348 666 -622 -725 716 566 872 5 356 244 158 138 284 354 -985 883 -585 1 33 812 -218 -719 632 716 -174 310 573 574 -860 -243 -705 388 57 847 709 104 -662 978 -722 -105 135 699 696 -100 -670 233 984 568 -758 -446 122 -536 -160 -215 911 -989 -896 -341 87 -834 -265 574 -61 -271 165 253 -919 -646 310 285 143 -17 -65 682 180 -498 293 961 121 945 857 -171 852 802 971 494 769 900 -577 84 -581 -570 660 306 147 -334 591 554 -850 -666 557 -826 -781 485 393 -426 538 -204 987 -201 -140 318 -458 505 -249 575 -508 -15 -580 -382 192 -268 940 847 997 758 -899 -841 -336 -40 24 857 522 -14 206 334 -983 82 619 779 896 2 -937 912 825 927 -24 976 84 455 570 684 29 -396 974 879 916 -939 -870 137 319 -614 272 -229 -405 954 297 -306 851 882 -117 93 -82 -258 257 493 -999 765 -201 742 786 808 346 -975 -528 -196 -801 732 906 936 530 253 75 28 115 -245 22 -831 854 763 -629 -442 -882 -404 -691 555 994 -287 243 -731 493 760 159 -217 364 806 514 709 696 621 302 221 665 -69 759 -187 -919 681 573 -212 -61 -376 798 -763 -146 887 -554 20 -662 366 -366 -922 -923 230 -593 -442 -1 578 890 357 312 379 592 -186 746 313 136 -145 902 465 -643 -50 415 42 -989 -460 451 799 815 -702 621 880 862 -49 667 273 -98 859 712 305 -248 -718 -923 -452 648 535 -94 634 -128 40 200 -910 -431 679 -867 968 -682 533 31 11 771 -799 -381 -439 309 208 821 160 65 997 105 \n893 740\n856 -185 403 888 66 694 131 234 -180 33 812 -735 419 -584 740 15 -426 -631 522 -880 312 237 972 -595 -485 604 646 21 593 -221 562 -535 381 409 915 982 -216 57 992 -484 676 967 623 420 -31 243 -48 898 722 759 646 385 108 -116 682 -675 -832 922 615 644 219 251 -574 -479 840 345 -860 320 244 724 -303 376 730 -693 -501 909 879 -269 597 391 127 647 -475 452 503 -849 969 837 -537 -88 473 -631 427 441 580 715 832 -568 -958 21 -533 -509 -567 273 -885 34 803 -265 902 -495 371 568 665 62 850 -163 -838 911 833 635 798 580 540 236 808 278 -290 -273 -500 271 241 590 155 846 744 -148 301 894 579 472 -577 -295 274 653 -441 -156 -530 -445 611 227 355 -236 -737 496 56 637 570 -98 -34 35 447 796 662 914 -30 550 -570 -131 754 562 724 -899 306 -431 827 -484 710 -161 -123 379 -933 735 302 728 -321 83 -342 625 537 622 -988 32 582 -337 252 497 -231 53 6 196 405 708 750 -993 -871 350 397 -751 112 997 390 891 -532 362 -986 -744 367 438 101 609 917 184 -478 912 739 469 195 459 -141 404 322 242 29 390 -89 354 907 -813 736 -293 135 665 170 63 521 -812 -639 602 377 -807 189 612 535 506 218 940 -597 385 827 72 64 -802 176 474 554 -280 486 -734 -427 -962 748 -334 652 -548 223 590 626 477 -646 -240 -169 520 -310 -809 366 924 999 -763 988 427 797 457 688 295 -376 22 -989 896 -604 -198 -833 -327 186 946 -685 -414 925 784 729 598 470 -442 -478 592 552 227 466 156 -301 645 824 21 904 885 -318 83 576 860 261 680 955 496 372 -819 417 586 108 -648 268 -342 -789 566 191 142 657 -351 388 39 44 308 -917 2 -938 -278 868 708 -872 214 586 886 146 919 204 -462 444 966 -729 93 -641 -17 861 -807 -455 853 -577 -662 672 -46 137 39 -691 563 -325 -330 9 623 -721 -198 -889 -889 293 308 804 517 629 -80 833 681 -490 923 690 673 463 -411 -686 -851 941 -401 -341 772 -504 865 -847 -793 319 46 101 -630 648 -244 286 387 -505 -252 -11 298 360 180 -404 -491 -453 -916 513 848 -915 698 594 33 282 911 935 777 111 312 -104 -950 610 413 662 -29 448 581 -136 676 879 -696 928 167 445 -516 -940 772 521 761 -445 463 -743 -133 -907 -558 448 896 503 -389 896 -553 903 139 759 80 989 -859 -73 97 -592 805 -222 535 330 179 778 919 841 588 -446 65 46 748 789 491 505 898 440 -141 779 -625 946 -614 -834 311 477 -309 -297 -81 787 -65 957 -205 422 -978 145 238 105 -605 355 -84 596 -516 885 625 -812 772 885 677 -568 581 885 -579 733 -902 339 802 324 -518 -882 37 79 -836 -152 -924 55 919 -382 -633 625 -943 883 19 -492 955 -753 94 420 984 622 -904 -834 0 252 -733 -346 209 -778 -101 244 -202 425 -153 -212 681 247 930 242 -568 -968 -802 -314 -147 208 -73 -36 -604 754 769 -374 -360 212 434 -853 -335 -232 183 -488 711 821 -543 333 -9 756 540 370 -723 -628 504 557 -52 679 -35 -604 819 -194 6 -215 769 -912 -188 512 -210 536 -43 -90 -905 -330 175 -247 -665 62 -312 -768 -972 -325 855 -889 231 134 844 426 116 907 -3 776 -175 -625 731 162 -441 -332 -502 364 233 -552 -820 391 -110 -593 807 95 14 708 48 108 738 -660 -208 -418 -95 -150 0 -353 -118 964 227 189 581 134 7 398 -925 -269 943 538 970 -910 -539 990 -270 -525 -558 353 14 -583 -935 833 -571 743 793 524 282 -746 172 -528 36 243 -913 659 -487 736 -282 60 443 363 664 256 886 -801 -290 735 321 710 293 -260 -609 664 78 -736 351 336 417 391 448 -844 406 -225 -765 519 583 -315 -260 599 548 -131 837 334 431 664 294 106 616 624 280 -117 -258 368 -56 238 -196 -295 -647 422 41 -587 -329 -747 -904 -867 -282 952 909 -203 -116 203 -718 284 795 358 630 985 -657 320 606 739 618 -97 783 917 530 281 -625 536 -801 65 7 761 -350 -607 -713 262 -177 -87 945 685 -656 -717 -318 501 -155 388 29 -363 752 787 -266 310 -351 618 -347 -996 -823 -385 318 939 615 409 -741 -248 -710 497 265 299 -732 83 -597 -576 863 388 -263 688 143 -599 10 -255 -41 771 222 188 416 264 350 -539 -343 990 377 -830 -737 823 586 464 833 -568 609 785 -770 948 152 5 -337 384 -310 -60 830 944 -575 -803 606 80 481 -370 -132 -772 -969 405 883 -689 \n792 3\n717 -696 167 681 -803 658 483 459 165 253 -177 773 958 -872 669 -713 221 -273 193 438 -767 423 971 231 628 -465 -700 -955 901 981 -922 619 -20 385 935 568 396 846 120 770 109 776 439 -361 138 968 -866 -272 -387 -882 -698 277 267 -814 716 -427 146 -163 -923 -289 660 696 891 -728 888 -705 464 648 482 -936 526 -499 105 465 358 -368 -522 821 -375 -218 -692 521 -202 167 -282 -612 533 154 956 -475 -938 -945 382 -720 141 383 567 247 561 -962 739 -265 171 967 34 9 -69 930 423 -865 765 734 -114 134 -171 571 -990 575 855 922 667 -210 841 -715 -269 -448 -735 960 -763 684 650 -167 769 551 -913 644 391 943 -92 261 -768 451 -755 620 12 657 525 -569 646 921 961 -629 966 95 344 775 440 885 -281 683 -723 838 -540 998 -19 436 759 316 -56 -883 -100 267 101 -780 913 757 -826 -35 958 857 -890 -409 -283 -250 -389 -243 -544 -686 399 424 539 393 616 615 421 -648 90 639 261 686 294 -902 844 395 582 -667 191 -479 684 -435 -856 -51 746 487 869 449 161 612 384 391 -499 74 -653 81 -224 374 103 -619 -892 33 196 -75 -983 382 996 549 -292 312 157 900 795 -337 986 -80 -855 684 -616 971 817 -780 -960 915 475 -994 -384 587 485 -252 9 801 -795 336 650 185 853 -629 -76 -945 390 299 996 -356 750 -606 197 791 240 911 339 -942 581 242 -752 200 -447 -425 875 135 646 607 -716 465 246 -654 -865 -338 -319 258 221 952 -420 828 -811 725 -525 256 487 -648 541 0 934 877 -989 -574 857 576 -151 757 -118 -334 875 345 -879 -36 846 -474 928 -469 -110 342 -485 89 79 484 -787 809 481 -921 474 732 15 95 449 901 -497 -737 450 -682 707 536 257 406 -725 -289 -74 248 -505 901 80 -899 104 -495 -6 188 141 -466 -490 255 824 313 925 506 837 492 317 -295 178 610 -395 -78 84 617 821 -194 -595 880 725 295 593 189 -408 -330 799 791 72 1 -536 590 874 399 -916 598 688 -818 495 -872 -817 652 951 -617 172 477 -401 776 -185 -687 269 -172 408 912 -557 444 920 316 -610 -614 817 -665 343 824 -506 -353 964 -258 -764 596 397 -530 613 -19 888 -870 574 -902 -395 174 341 -494 915 -607 548 524 -230 617 704 -328 -498 730 763 -395 955 753 106 918 329 924 768 456 -567 146 -753 988 -446 98 -616 -529 -184 -50 202 -72 -550 240 184 865 -58 349 0 -919 -109 829 -349 327 682 808 475 277 -217 -76 468 95 646 249 902 -608 -928 875 -858 -686 -274 564 758 28 340 511 276 129 875 -126 -897 24 709 -910 559 -446 -686 -573 -332 694 990 114 712 -360 889 518 -875 -238 -790 -931 780 550 -248 956 -923 -587 72 -477 865 819 896 286 402 730 641 661 66 118 47 17 477 122 856 519 -501 947 704 -249 -800 390 -568 -610 711 144 842 -387 920 355 -911 345 141 824 -953 316 835 -976 -706 314 -156 329 923 186 -630 -287 173 922 218 937 116 -122 493 -192 486 870 362 180 -945 864 -430 558 642 171 -146 -182 -495 89 -205 -79 478 326 199 -446 628 818 360 911 919 571 95 -561 -995 665 619 389 -81 57 -61 -450 523 -779 675 35 -666 627 607 783 353 -324 599 745 759 696 19 222 552 961 849 258 917 -99 -748 899 135 559 225 -643 576 666 -56 130 -699 140 -801 -779 766 538 29 898 743 892 257 525 -660 -112 -214 -256 546 349 -435 742 911 985 178 647 176 -867 207 700 -507 -737 676 -781 974 108 -336 396 879 -575 -139 -184 -497 -516 -35 891 -678 -806 610 -68 231 264 70 -397 -493 -629 768 -653 372 -733 -381 -688 -331 -303 -632 -578 933 689 654 -576 251 -562 209 143 296 833 405 627 691 467 -574 490 -457 209 88 638 640 -279 -750 382 133 -454 412 -117 351 -403 484 -82 313 742 517 462 -52 939 -199 201 507 -29 224 206 965 -630 -394 42 -615 232 -907 265 -943 31 -508 -145 714 477 579 -117 \n723 42\n-241 85 -990 110 -833 131 -751 -15 -77 745 -34 89 -988 373 398 -254 896 557 279 -866 143 -918 78 22 418 -27 -510 128 -273 -892 424 -625 21 548 -343 286 908 898 -869 -136 369 265 -556 -868 529 -265 -670 -260 -279 171 485 780 969 753 540 661 512 668 52 -469 900 347 -672 829 -334 427 626 722 701 817 979 -637 753 26 -887 -59 -387 651 278 741 -475 201 925 993 -336 779 459 839 300 19 564 733 989 -273 113 -140 -685 200 -926 440 570 -143 27 548 679 -449 827 -628 330 197 -880 -673 876 -551 646 953 -260 -605 -507 780 -652 466 37 848 266 -527 828 -726 -657 -197 -947 618 957 -444 572 -519 675 112 561 1 46 486 516 185 -27 -275 -7 28 -142 61 437 -788 594 545 -615 -894 -613 651 -48 139 -450 -433 -546 -279 686 441 326 813 -955 -741 -656 145 72 950 840 -252 -318 -279 59 435 -461 -758 848 88 229 -102 755 -568 -990 -967 621 -315 184 4 658 832 731 236 -849 -78 817 147 528 -716 95 638 662 -234 295 386 -463 773 153 -757 -28 -751 -813 443 -600 -413 275 -250 547 807 60 -391 907 -67 150 783 854 579 476 -519 978 450 651 749 405 643 350 -500 733 -258 234 -436 -345 -1 987 951 910 -893 -966 125 907 -782 197 689 229 394 150 186 -132 731 460 -203 956 -4 660 -331 -573 72 -793 677 996 -491 -801 89 88 679 470 858 757 320 638 -598 932 560 -27 -378 713 -604 555 -627 -163 -30 985 621 496 345 -195 -816 -359 32 250 822 68 223 173 -630 855 703 670 85 669 623 555 -759 238 -542 438 -90 62 106 342 748 740 892 116 888 549 -897 -406 -789 802 115 -32 -222 309 -518 -214 51 -937 451 -843 -630 -255 648 61 384 -58 46 -631 306 900 -690 334 732 -342 813 532 193 916 629 832 144 558 833 -531 -317 768 360 940 -798 -931 610 -326 -879 -506 -326 -421 327 702 242 957 -352 -163 -766 971 -915 761 -978 -297 578 -779 -195 -926 -235 435 -779 -292 -628 -340 117 520 -633 -127 -21 -910 600 798 -966 210 830 708 -450 616 478 -171 125 -845 -553 -709 114 -859 -537 940 333 225 -958 322 464 -705 -593 305 238 433 -699 -659 -371 699 -175 124 -265 924 52 619 -68 728 -548 -933 408 -164 -447 746 -406 515 -881 -582 930 -650 -663 -25 480 -316 270 -560 90 -847 -525 513 -35 -717 -374 91 536 444 -465 972 418 494 -40 0 942 753 316 -585 348 712 -799 -506 259 504 -248 202 339 -517 794 615 890 -779 789 -361 -936 68 -348 -459 242 728 693 77 -435 33 52 -845 -598 -51 -32 785 590 -514 -869 894 -671 708 -296 661 402 618 222 -136 -236 859 253 417 -911 241 -329 -836 928 -658 -977 168 -903 -545 -831 -554 171 650 780 -58 931 370 -49 -316 438 -796 -239 -56 -643 245 -993 -403 -346 105 -60 587 -186 411 238 215 -56 -962 708 860 759 -614 706 833 602 527 662 965 483 574 -686 187 680 458 126 429 -425 709 626 542 819 916 -507 390 832 531 -305 970 -940 -750 -358 -386 -553 745 691 537 149 -969 400 -448 511 344 433 76 -669 997 388 435 25 -402 -796 603 407 309 504 -195 -305 7 -452 327 507 752 -319 -593 -455 521 884 370 -218 952 -330 69 198 207 -404 397 -526 566 609 882 501 869 -556 -481 175 914 45 -520 445 329 679 198 838 -847 600 944 785 -142 -764 -421 -372 -68 170 -308 -40 380 -21 720 754 467 -221 427 -899 -500 -812 688 873 -517 -577 503 -477 368 -600 37 859 -995 288 -58 709 728 427 -393 248 758 258 -723 -453 926 399 228 473 -158 504 109 46 73 -387 -888 \n967 805\n793 0 372 63 699 659 609 373 -909 -341 -884 881 -35 -940 319 -602 -632 411 323 -607 -439 41 -90 -479 309 -120 669 -359 708 -176 119 832 841 297 73 70 -271 -796 12 466 770 -27 562 273 133 468 -725 803 -917 202 -294 -44 -283 955 583 -431 398 -3 -497 414 -318 -632 224 819 -802 309 -722 -683 -12 -727 843 -493 975 707 780 527 -328 -733 375 513 658 442 229 -856 -440 -424 -201 261 271 897 546 148 -369 867 -700 773 -860 66 447 -766 768 301 127 -134 -37 -277 -995 604 -867 -145 622 510 -999 589 145 98 -181 -486 -926 -537 -705 888 694 711 996 -248 -861 -429 -349 754 689 335 309 749 503 686 154 481 509 846 -846 -800 969 185 701 18 -976 -979 466 263 592 284 18 682 671 -873 487 528 866 -67 -991 405 -807 22 483 -383 -995 -828 840 -984 -12 -215 -441 -336 536 314 139 -418 -508 -17 104 562 -878 -605 452 61 892 785 -979 -537 -27 -423 -817 -433 777 308 56 667 -243 -856 294 761 808 -55 285 -83 523 754 841 -931 141 190 517 736 384 452 -95 -268 86 752 -759 -565 272 82 -547 -104 -192 -824 878 449 503 450 -29 -941 119 -92 553 216 819 -280 952 15 889 553 515 591 327 -465 -721 84 -899 156 -731 444 -378 -475 518 369 26 818 716 426 184 370 -475 -570 483 -440 -109 528 -926 52 -694 277 458 779 -521 -785 2 -597 884 -215 -61 535 183 924 40 418 -145 492 873 923 419 677 -309 -833 682 242 355 522 665 961 430 -310 -749 173 -95 -690 112 53 161 255 359 -748 219 40 -484 375 -570 -648 300 -889 708 617 753 -434 750 -598 -313 236 -807 218 550 -309 67 -215 340 -80 969 -728 711 820 100 623 -466 851 -870 -208 688 780 -360 -979 631 593 -892 302 568 -778 -300 -113 -649 -912 760 -721 -475 747 723 -6 380 453 862 180 126 588 -36 341 -445 612 892 958 -701 -275 -491 613 243 787 -863 -226 631 -403 597 907 120 551 52 142 -304 -603 368 611 -860 900 -944 23 549 -783 -568 130 -153 968 551 289 275 844 122 366 -318 -735 751 483 790 159 -899 -659 8 -279 837 441 981 286 121 -270 923 413 998 775 20 -908 376 861 829 6 958 -892 80 -88 565 -204 194 -390 -764 -859 814 510 -614 665 -744 842 723 -962 603 -355 486 376 100 -65 424 -414 -732 -620 -60 254 -561 894 -610 764 638 526 -981 -713 823 246 492 449 318 766 764 605 609 -136 -396 -434 881 986 280 -703 -996 -847 775 227 260 421 69 181 358 -952 -921 595 84 990 680 -324 3 489 -681 -269 534 -929 -223 -7 265 903 394 431 911 739 542 878 -141 -367 682 -887 -260 737 234 363 -539 653 853 384 474 -1 592 621 456 151 386 -184 78 -542 14 552 530 41 172 683 -637 -791 856 -906 678 849 -465 752 309 839 771 -903 344 548 -821 51 -713 -925 492 -572 -749 646 887 208 719 837 -545 535 -299 61 802 766 924 -932 726 -716 599 134 756 960 829 -616 744 57 397 -341 -786 -132 -551 980 845 994 -834 -776 -472 -207 -72 895 -840 637 621 -323 -741 -942 -483 876 736 549 -48 -445 -340 870 630 338 -138 -929 402 584 930 780 -894 301 -657 -318 280 -188 422 429 -369 -178 772 384 158 108 755 253 -642 -647 159 -28 786 158 -383 -387 -903 895 -248 240 984 750 447 -762 -30 -641 -394 664 38 914 -24 -736 994 536 364 458 960 -775 -70 -962 -113 -187 578 698 -188 961 -440 565 689 -326 290 -93 -382 622 -520 998 861 -830 -831 697 676 138 -790 914 948 -897 -24 -922 458 -604 758 877 993 290 -266 -949 550 231 -140 614 -947 -520 632 744 -916 -672 878 24 909 -390 897 767 -146 893 -313 58 78 875 -9 920 165 955 505 727 993 899 805 -23 -480 958 36 589 -949 -515 -187 298 827 -220 631 -993 -77 689 134 -76 17 594 567 416 -152 -168 -958 517 511 109 849 -855 -441 -806 -933 -79 739 -448 529 -930 -423 201 -785 473 -506 -203 813 904 885 -941 8 440 -8 273 -378 620 -18 855 663 623 546 -192 -13 -989 -586 188 769 -357 470 229 402 462 -641 -81 -181 143 -889 -940 535 -213 -238 -284 -527 -825 -919 -347 489 687 -445 168 996 -536 -933 -950 -301 473 -986 372 -817 786 433 -603 -824 -88 -796 580 900 795 832 -367 62 921 423 469 -617 -281 470 847 -725 712 -47 420 -981 -936 953 511 -402 -500 -123 -766 430 -605 -5 332 577 632 463 -200 696 -766 343 573 -272 178 -344 -96 360 543 461 957 829 711 -58 841 27 117 36 153 386 948 324 930 575 206 -712 255 63 -302 298 -367 -863 -310 -279 492 -895 290 753 149 147 427 -613 941 392 549 -862 -745 389 993 -232 238 711 -11 -302 -41 908 -365 700 -597 65 387 878 816 619 -533 -575 -446 346 640 322 -765 290 133 725 215 393 241 689 -364 707 \n759 87\n545 -794 -44 -846 -930 603 52 529 -429 -615 517 606 445 -568 988 10 -850 696 -739 224 726 954 286 -366 -824 966 550 62 -500 361 -802 -566 -361 -835 313 -752 929 -911 961 -890 -485 -662 -306 -599 -615 733 -924 -885 477 -482 -829 -909 -85 -363 612 -294 -291 -399 -521 -314 429 -842 642 -623 24 685 -160 639 624 508 816 -697 940 879 363 462 -399 162 -286 -597 640 -341 -610 511 331 -92 349 -915 -318 656 -808 -228 637 708 383 -622 390 657 -987 -92 110 635 27 -925 130 825 799 490 -375 809 964 -602 -922 617 -907 807 -752 271 -866 -630 200 27 785 290 660 -335 -566 442 236 750 882 -78 -403 378 -617 630 8 -212 414 -364 733 -472 693 -437 -988 431 -231 -956 789 -947 -841 454 849 -878 142 -375 -883 -716 888 579 -185 812 243 182 63 443 531 21 676 601 88 147 52 338 -129 -789 -420 -358 710 -734 729 481 413 251 -25 -731 950 -736 536 458 430 -378 709 -75 392 -906 107 685 255 689 -88 702 854 -54 521 972 -776 -426 884 286 552 533 -476 456 -795 -574 409 722 -433 246 541 321 887 -333 -432 -388 -728 836 397 -272 503 842 115 309 -591 -616 254 792 -755 -36 195 -23 654 433 87 -463 588 -53 992 -833 431 162 898 -913 572 558 131 214 571 171 -880 -597 -762 536 942 -902 563 -46 905 597 569 924 785 -993 991 59 232 -321 -9 -706 454 970 -633 123 757 994 179 -780 -893 937 857 -264 185 827 -745 -980 672 39 -954 -410 589 339 338 9 239 -701 923 186 -201 387 -657 932 -323 652 878 618 120 405 254 112 494 -254 139 849 793 -818 938 532 257 666 260 -619 -727 -50 -103 827 452 338 194 742 665 479 -516 -980 976 480 -390 -517 370 -905 28 -49 -23 -779 -816 512 -569 -42 287 866 569 -342 362 273 897 683 -446 834 8 945 933 -504 -681 724 187 248 244 -740 241 -78 275 -870 45 935 22 514 976 988 992 820 583 574 560 -779 -827 284 825 269 -177 799 339 944 -115 630 384 402 -117 754 735 -570 888 172 220 525 -234 -266 581 770 20 94 -391 623 -699 862 -567 -306 0 717 -554 -528 -880 640 493 609 100 898 365 -177 442 897 977 953 -170 -55 739 245 -210 -154 707 316 -499 564 -780 -539 961 -556 -541 -97 -679 19 -809 724 -825 -431 439 595 632 468 -763 -794 -610 694 419 562 -543 368 450 790 365 -328 25 230 117 984 257 272 11 -863 354 250 514 22 168 -578 902 92 -688 478 -840 -882 631 916 -989 -775 284 -611 -80 -598 121 768 547 667 773 -978 658 -857 -301 678 640 -607 959 941 0 639 821 -121 614 -157 976 -147 -699 534 875 823 28 926 -20 -774 3 617 134 171 -685 -131 345 -944 -290 -232 776 694 -257 -997 -458 496 321 932 579 -769 -81 548 -816 409 569 967 550 412 -862 -10 -387 34 -154 681 -259 -608 -858 833 -212 -590 334 611 395 -175 652 856 37 861 -206 -351 -167 626 575 336 175 -152 -194 573 96 961 171 -580 530 528 220 -663 -647 838 762 35 767 534 -725 -348 -789 -826 -235 -160 -568 -363 -838 959 -395 573 217 906 -101 952 703 897 -33 -368 -92 -499 743 774 -42 817 530 470 941 83 481 471 479 -874 438 733 797 197 -1 714 713 205 989 -945 -742 -96 794 697 71 -97 266 -145 840 550 173 910 -74 -785 829 262 628 -704 513 -785 301 310 -670 -370 -747 479 442 706 -247 383 992 -926 -574 -60 535 196 426 951 -386 722 247 368 113 -687 -158 -287 -774 56 598 -779 338 708 974 -622 502 824 108 527 -842 52 704 943 361 548 -682 101 522 104 744 -619 -761 -845 65 -966 940 -241 749 729 287 379 315 -267 577 -553 202 -164 -260 31 823 -84 305 311 965 949 -442 764 952 139 341 230 -386 643 216 177 359 \n946 463\n573 -280 781 634 565 619 -894 258 449 -258 315 -218 48 151 -620 344 893 642 925 517 -104 -663 -513 -840 217 -334 706 826 728 -122 -226 -528 344 635 -797 764 -551 -668 852 292 -760 725 404 298 -225 26 406 -298 757 683 276 447 -227 594 530 6 845 888 -650 2 714 776 751 118 -301 809 267 -926 860 537 649 -823 113 413 12 -450 -708 114 646 437 623 175 466 937 281 193 642 -261 -380 725 313 674 895 386 802 917 -476 -932 824 -505 -35 786 196 130 101 -545 -866 386 138 -534 -116 672 252 904 317 796 537 908 -487 612 909 960 -311 514 406 32 347 260 -518 444 715 499 76 -751 -789 413 771 889 -543 -435 842 -486 -208 995 -482 -38 -271 215 116 339 556 -147 368 854 -714 275 231 106 971 -100 993 -471 804 526 -528 -992 340 184 -484 670 1 844 764 627 931 -550 -539 -359 -615 466 824 -935 182 339 77 -521 -908 -396 -738 921 873 235 783 455 339 817 -389 -150 -146 876 -750 191 122 -173 928 924 -908 -330 30 37 326 -277 -783 527 855 43 -741 992 -660 862 679 404 -637 -387 -456 -755 -952 756 973 -480 653 536 467 140 -329 134 279 497 684 -246 -412 87 922 -920 -800 -563 -678 -267 -679 379 658 -343 887 -867 696 -123 -890 347 -660 344 744 622 -623 828 -610 589 734 592 608 314 881 290 59 446 -381 356 -228 875 907 331 -827 946 -670 129 649 -470 -400 -395 423 -591 558 -964 -548 -369 504 800 843 226 66 722 859 264 509 -607 429 -360 990 624 873 448 646 475 506 806 849 -355 29 -758 -951 772 -166 928 -430 312 -83 591 590 349 143 124 668 -156 824 81 727 723 129 -767 190 916 -625 -576 616 324 418 -222 -730 541 -315 -426 165 -205 687 -485 605 308 -428 314 27 522 -172 -970 732 838 -447 351 544 248 151 450 35 41 523 -246 920 581 -885 74 697 360 -108 250 -240 262 -402 702 865 -185 -815 946 -646 519 -676 68 138 865 -289 346 -350 -941 568 577 735 189 -920 -519 814 102 -842 90 822 330 -391 694 -762 -663 344 708 -76 790 325 -973 -591 84 -783 -875 -78 180 -989 416 -155 715 -371 397 345 -402 -622 612 -402 896 -610 -687 722 589 -300 -767 930 441 928 -709 254 -891 -884 -573 -927 418 3 694 -897 647 644 299 -582 328 -168 845 538 871 287 358 405 -282 -123 -360 700 193 52 164 96 82 186 67 493 104 878 -1 -564 568 -234 981 322 978 -660 346 -943 390 -183 473 136 -637 418 204 -694 -268 -471 -221 908 -508 -781 429 -924 388 535 989 -43 -430 235 -665 800 662 451 40 930 502 -599 -61 327 -429 257 145 581 427 904 983 989 -942 -357 766 115 -592 473 -491 -999 -79 6 -68 -71 483 569 -54 315 284 550 -559 -215 930 636 -797 -45 587 -613 182 160 745 783 909 -162 544 566 -412 239 580 -495 892 56 953 783 279 -521 266 42 342 403 331 -812 -379 755 -358 331 289 953 -626 -859 982 -850 -319 713 48 702 931 568 886 818 760 -832 330 143 732 -130 -981 562 -392 37 787 -978 -850 828 -651 -277 -499 -861 -425 -827 -921 987 332 169 -189 197 -383 944 -574 -685 300 -235 269 619 580 461 -983 231 153 -672 -94 250 260 -335 -273 -646 983 357 -447 -17 405 60 -232 -70 397 -95 780 892 -211 144 329 -853 686 -795 394 839 339 360 890 -119 -616 485 -525 -994 322 154 -112 858 528 724 916 743 117 -659 703 99 194 -915 899 68 282 -406 669 -622 -925 880 39 95 -381 -274 790 441 348 481 -148 -267 844 964 -800 512 125 489 -1 599 298 16 327 -682 892 69 506 383 -126 451 217 -234 744 796 -724 136 404 -18 -634 765 708 58 -116 383 -850 211 -383 201 462 -844 647 -762 299 907 783 275 -42 614 873 340 494 -150 445 -472 791 926 -353 100 -951 329 990 -972 672 -698 -891 -38 -212 194 -528 972 611 -133 -948 254 -625 724 -527 255 -277 757 -961 364 -451 -991 -209 40 330 -807 215 -202 951 22 810 -628 64 800 859 846 490 54 512 418 492 84 386 558 626 476 239 76 147 -554 -577 957 211 -78 -213 258 706 358 445 578 946 -297 -431 -383 -629 76 19 -505 -557 -856 -537 -585 178 -42 -288 927 -272 -786 912 -581 54 677 377 -777 -840 -900 618 63 950 346 563 444 -98 970 -267 36 958 694 988 862 668 513 113 -67 124 966 367 -74 -218 431 689 -527 781 951 938 327 -785 792 359 310 174 926 242 937 -255 -9 657 236 27 -367 764 613 -999 -88 907 143 -634 969 -717 -792 664 569 -330 756 -264 815 451 31 414 -778 -292 -399 642 -631 -1 -808 39 999 -318 782 661 -726 965 -839 39 493 -732 709 397 241 -52 24 499 442 212 722 -752 \n725 598\n-816 -438 329 739 -468 890 -785 -667 -932 60 -603 720 512 366 24 956 770 -164 372 -454 643 -261 409 -374 332 -534 -308 -668 -149 559 -662 -97 -369 188 -508 -204 -655 374 904 918 -715 399 -142 255 380 -433 215 879 147 255 225 157 530 90 -269 -524 947 366 344 185 868 -506 355 838 530 -348 515 -714 570 355 -777 575 242 227 -355 18 862 844 417 511 -524 -531 569 434 505 -888 900 151 169 86 655 315 266 359 -547 -521 257 -181 621 -806 413 257 -382 -29 183 -592 -692 -27 336 -737 -855 -260 515 217 101 -781 959 -271 -471 -375 -94 -936 -417 -35 -216 -212 654 208 897 -639 -946 167 462 -353 -614 -56 596 623 -520 -681 -866 95 832 846 658 -456 364 308 364 704 533 397 970 235 191 167 -901 -243 -941 813 -639 -522 763 101 -687 -834 -682 -352 -384 366 823 -461 58 55 572 -678 -568 -472 -822 745 344 -33 -22 -568 358 -456 -848 922 193 11 -55 168 -293 15 190 -528 135 204 712 -157 836 719 -434 302 978 903 916 243 -13 -641 -787 971 908 260 -722 -856 -41 685 948 353 277 764 -492 719 -817 917 -733 985 470 424 450 -632 -623 -193 -567 451 -769 -241 318 645 -146 955 188 946 -679 -232 -337 613 348 628 -668 437 -24 -527 436 -764 -558 412 279 -159 45 997 -255 88 569 -685 -360 311 960 588 -852 676 965 23 -872 318 897 646 -652 808 525 372 262 -999 -386 10 615 750 937 -68 565 586 755 115 872 917 810 242 -493 127 -461 849 741 -440 -624 -372 999 48 186 652 -834 -24 -902 -389 -908 478 467 -543 -214 -973 300 302 246 -186 184 -50 659 896 402 991 100 -301 34 -774 58 -194 -123 74 -649 -479 555 -180 -971 997 494 768 397 -234 451 301 496 649 -837 681 -57 32 764 227 362 -184 18 -983 -631 616 358 965 -257 577 -844 -658 -287 643 859 -381 -696 -311 -397 212 370 708 211 381 342 -843 -127 621 657 274 544 -684 -340 -93 945 -343 -685 -704 -426 477 948 310 557 731 456 -117 106 952 95 935 92 -809 385 -723 466 726 -782 466 127 -459 11 -218 -954 80 -569 -479 855 353 -14 -581 916 678 51 -31 413 -285 852 627 152 508 -338 -988 674 -263 852 -487 -784 896 466 -350 647 -841 -777 -784 -580 452 946 654 804 908 -683 -880 126 553 -940 -998 -412 696 555 823 774 -512 -977 -902 -391 199 794 824 886 603 657 943 646 569 458 -42 -854 993 446 779 -697 -56 -443 -384 -663 773 537 82 939 -956 -494 -665 827 583 410 797 339 784 388 -711 874 407 3 542 468 362 174 -378 54 -976 429 -397 -821 925 126 -957 591 90 449 307 760 674 979 -263 551 -182 495 410 -767 874 656 202 470 -253 -769 594 -769 253 429 863 150 56 871 -132 616 796 716 151 -55 104 364 10 29 841 -476 -115 -339 695 863 788 -2 941 776 -507 242 468 -370 -395 430 -424 -112 418 189 41 669 529 371 564 813 599 814 872 890 982 746 833 297 -332 -661 -817 66 435 -60 305 -771 -218 676 996 302 -162 106 445 494 -345 835 588 798 -515 -756 509 -634 316 316 993 716 559 -293 411 136 874 911 -164 577 -703 -269 671 818 773 342 -398 981 -957 141 963 927 798 -441 736 -618 -98 -293 296 10 934 785 -755 449 533 672 -414 539 -389 96 968 642 -25 877 -662 171 -766 -495 -152 -439 -694 495 -315 916 848 670 141 -873 -206 189 667 461 -469 -670 758 777 9 570 602 969 -838 305 78 -735 -288 -749 -215 776 404 935 -52 21 204 977 -683 -115 415 570 379 924 615 965 288 52 90 730 291 772 473 -451 -583 507 -100 -312 \n725 522\n315 48 -943 410 -506 81 309 851 -206 623 -459 794 736 741 21 -526 -92 14 441 780 691 192 242 218 121 -580 -749 861 7 -56 -383 228 113 -21 197 -419 9 769 -666 985 827 -861 -956 -665 -655 760 63 989 346 -91 577 -662 245 236 -12 598 -420 483 -463 495 -976 -119 -661 -361 782 466 -53 983 510 232 -817 -106 21 677 -831 -933 827 844 -419 -656 -670 -601 -506 -381 -637 -847 -256 694 -541 586 259 469 -88 -167 214 90 281 863 -688 -224 17 616 450 -304 613 876 588 -581 894 -232 872 407 448 142 62 -481 -299 59 -390 -250 197 122 833 -423 406 399 321 719 722 5 428 414 923 913 710 -443 -508 652 883 674 -575 -244 -665 738 -448 -772 -996 888 584 360 -447 859 787 -706 34 381 -610 -328 110 705 -530 907 915 -367 -3 -33 283 -73 -529 44 989 426 511 889 579 -530 -359 626 444 -148 -691 548 -74 -495 559 -338 -325 -752 -997 384 94 -118 352 361 -245 -357 649 970 547 596 885 -12 793 -903 -884 -254 320 46 -948 992 622 956 436 577 839 984 378 402 786 -23 -477 -617 632 -648 612 615 56 -735 101 867 -726 563 -630 -828 -335 -320 336 579 975 398 -599 -775 667 88 20 782 391 -837 -259 363 881 370 580 -690 -4 599 -190 -998 678 -237 520 -484 426 375 670 -221 -503 278 354 720 -712 618 384 493 -794 -240 -25 347 529 -879 66 372 690 282 -522 652 570 -657 511 -221 -54 216 681 -965 105 -814 364 462 -338 455 -275 -149 -619 51 920 52 139 -189 421 609 -901 316 47 -893 446 934 -61 397 -611 664 -221 612 440 175 440 303 370 50 -849 511 191 -685 585 491 -401 -960 510 972 454 -630 -255 751 307 278 66 -78 -692 -814 -879 -743 -253 -539 746 419 317 -234 341 641 446 -866 -483 -641 638 951 -926 449 -841 993 -306 923 340 339 496 109 -395 973 -908 160 428 330 271 -353 -242 -586 -430 203 -708 361 8 -507 939 894 -940 -579 -799 550 249 -647 411 878 845 427 -780 780 727 635 -966 -991 -668 753 -967 -274 917 -508 -474 30 767 443 557 677 218 277 75 -455 -507 -596 -715 232 -427 790 431 -264 509 -851 910 -962 148 898 435 310 -362 628 772 751 114 -870 691 173 103 467 656 916 362 944 693 180 -161 -887 505 527 178 269 838 646 604 -19 -715 -348 -575 -81 -834 289 855 862 -923 -552 -773 -257 791 -705 861 988 -950 200 449 419 -786 389 -420 25 209 -418 -376 788 951 904 513 68 -561 714 208 288 348 368 625 992 652 317 -958 564 285 -930 -689 868 462 497 869 462 -960 -946 262 -668 483 -505 508 971 706 534 541 -749 434 988 400 -935 471 -675 842 867 -39 -71 813 -839 -533 302 -780 53 -672 693 632 -450 673 172 -974 391 -832 469 911 -522 191 417 -838 502 470 483 -350 126 -157 419 986 486 781 452 -402 515 48 -895 -709 870 -836 -526 -129 -373 532 465 997 618 679 -141 607 66 111 816 -174 79 -883 358 106 46 437 959 919 466 725 -718 638 -871 493 628 972 -568 -899 347 137 913 -761 -612 153 -925 -528 -969 -166 -74 249 -843 -701 152 -811 925 -637 -262 960 503 -891 573 567 -277 584 -571 76 -573 913 -705 419 -892 46 61 -201 -778 116 -969 267 321 843 170 77 -762 -721 -474 -237 -345 -293 -727 -525 644 301 657 -156 -151 152 663 -229 187 -725 -995 -342 514 -98 426 -611 212 709 -325 -937 -878 743 59 -915 454 620 716 761 -696 -740 -775 548 -124 -861 717 955 -214 -871 812 -160 772 -286 301 692 -484 220 71 -63 -619 605 185 193 -471 -584 595 -932 414 933 -398 671 372 329 \n992 237\n342 68 613 -841 665 -386 598 361 -277 102 308 304 93 -373 428 -979 -851 927 728 -823 913 -483 -727 -353 865 554 834 294 -510 -967 -280 957 120 -30 -916 -944 700 465 98 103 122 844 -454 117 -741 -875 581 577 334 -790 -913 142 209 372 -545 963 887 -757 -447 -499 10 -351 624 -206 524 130 384 -7 401 -212 291 -708 312 582 861 -825 86 -692 331 -493 -963 -473 -920 948 -82 -729 25 699 629 -109 601 599 -280 -858 854 742 305 210 -273 -796 838 -938 -58 416 847 866 266 -677 984 -849 735 913 680 6 -660 -433 101 -56 934 -227 -53 119 920 802 366 -168 -984 246 600 725 456 929 541 -571 358 852 576 634 20 536 -139 -289 0 941 583 271 965 174 448 -475 960 362 -895 -149 717 -861 630 -418 648 -245 927 -516 188 -942 118 959 303 254 730 902 -323 -114 408 268 718 295 80 67 283 -362 693 -257 -640 -304 -113 405 -614 -982 888 55 -396 -115 -424 37 341 217 559 -31 -389 248 -389 140 527 43 494 962 -330 81 -497 -274 911 341 483 -754 661 -870 981 554 -693 455 -498 -679 327 152 -842 -130 171 756 242 -866 496 841 553 366 369 -268 717 164 427 482 316 -157 528 303 155 6 327 -955 154 33 810 416 278 42 -758 -269 -318 483 -550 -942 390 624 585 -890 71 -515 -664 -187 -317 513 449 370 328 131 734 57 891 -134 -558 -911 -440 508 -43 -455 -587 976 787 -993 602 -934 -735 -79 -147 -921 -767 -169 174 907 916 746 615 569 -988 -697 245 -692 674 -330 -725 873 123 402 496 -185 -18 -710 241 698 -197 -700 600 709 597 -248 738 150 770 768 -710 711 941 577 81 740 484 -568 627 -256 946 -930 609 879 245 244 129 -426 -278 236 600 -807 -620 454 295 879 -393 -751 538 157 -243 694 -144 477 476 158 37 51 298 934 -419 -88 232 -49 341 -889 -924 870 -227 743 983 705 713 288 608 -400 591 900 993 974 307 -641 -376 -340 858 375 -104 587 723 -909 -101 131 716 -835 595 800 339 -789 -616 -327 -598 -494 -910 -637 -475 -739 258 297 -241 380 -655 -917 -885 911 819 176 550 956 -561 -343 689 874 486 648 -926 761 948 -606 -169 -85 858 584 899 657 217 -241 398 378 -121 -57 612 -240 482 730 32 896 531 596 -835 925 431 290 -177 354 659 -52 -914 514 658 43 -786 664 569 919 168 359 -450 -804 -915 572 -61 976 -992 -87 266 415 357 677 -393 840 714 297 451 -677 274 606 446 830 855 126 -100 71 -451 -263 821 -534 -831 577 1 -462 0 769 862 -199 -517 -609 112 -123 619 -717 -364 -530 497 -776 436 831 917 573 54 553 309 478 -645 267 886 537 998 -476 696 437 -180 -39 855 570 -925 253 404 -182 -275 86 658 -793 -324 -908 -954 146 122 0 -728 -279 307 474 -756 369 -202 -822 121 -222 173 945 881 685 845 -208 223 725 497 282 -92 959 859 993 3 367 769 -365 397 343 861 280 -645 900 -182 627 -988 144 837 -312 111 974 264 990 964 -680 75 -488 -769 -300 978 582 797 315 656 306 261 -521 -275 373 592 688 -854 -920 755 -693 -965 35 -950 369 -997 929 -885 761 -577 809 600 399 494 -319 772 -47 384 -298 -423 -706 3 947 -424 -414 -107 -556 -621 -812 220 15 530 601 402 498 -737 926 -746 -786 629 -240 32 453 829 200 414 990 359 796 -116 956 -723 437 -690 -684 100 -663 -376 691 715 803 -927 -45 -59 880 317 -273 -525 78 764 538 677 146 -163 351 308 -365 -228 403 813 533 189 703 -600 -730 55 363 281 658 810 865 -722 -598 791 874 -813 475 380 -158 411 -241 -116 297 680 135 660 320 -844 -717 -479 -384 795 857 235 600 38 -427 890 290 112 249 -754 854 874 212 317 751 344 -640 721 -643 -569 912 -249 487 435 -944 58 25 93 -769 559 605 587 984 -270 256 -173 -751 529 -80 -816 131 470 -514 -788 349 88 -234 660 -321 11 63 561 -506 -227 -453 664 459 -46 817 -95 -879 -245 816 548 283 695 -736 526 239 766 -269 -1 -848 -304 854 927 793 304 109 314 -773 -74 -139 -867 519 731 618 -398 186 -926 360 275 25 464 227 494 432 -525 -183 232 -649 936 -474 -196 -865 752 729 907 248 853 -936 777 173 -887 206 45 135 823 -94 821 -12 84 703 903 -102 992 -357 -321 -337 -160 126 43 519 64 693 -240 -493 156 -147 424 731 168 729 137 -543 273 -984 -41 -82 -953 73 733 674 -359 -45 173 319 989 646 542 -678 -849 707 95 840 20 616 893 660 782 -500 631 713 600 -586 -866 829 440 -809 -414 -545 184 364 -87 -59 672 202 357 34 999 382 52 589 990 456 909 453 62 -707 -763 214 -205 493 -455 442 885 986 -52 286 444 169 -108 19 197 158 -914 -439 789 838 -109 529 647 238 131 -520 369 52 852 277 61 116 842 -84 457 285 -280 -391 607 793 -632 -91 29 633 987 -921 822 -567 398 934 168 -538 239 395 244 733 676 -70 849 256 \n844 231\n-656 844 655 -937 995 140 -221 145 716 -758 698 905 -106 416 390 169 -740 -12 241 446 169 -95 357 -326 38 827 -921 -181 436 574 -608 187 735 592 -848 -140 368 49 651 -975 -556 200 849 239 579 301 108 804 -234 672 811 995 -385 -872 -584 562 757 -958 834 237 911 543 -611 -525 852 789 35 -819 107 350 507 393 922 323 635 -633 761 458 -941 -684 -765 -925 -367 -252 143 249 485 835 819 -808 -189 714 -785 424 561 -218 871 50 -296 -999 892 555 917 -87 775 -70 535 904 126 -264 112 359 -159 578 182 130 779 699 916 487 374 -283 122 923 257 17 105 476 808 375 -328 550 -20 97 162 898 225 537 805 -322 601 709 461 999 88 -55 -143 996 550 -845 46 -784 -960 671 849 -23 -143 -811 275 426 -759 916 -210 34 634 23 833 977 -234 436 -158 9 427 707 748 619 -374 -933 522 298 -559 -159 962 605 -960 106 275 329 180 837 488 508 741 -370 -942 -555 566 997 -978 -164 -378 -864 385 -165 -994 -17 -278 -388 459 -635 975 -868 -526 729 -600 215 -679 -878 847 -766 182 -816 774 850 -617 -887 69 135 728 299 -957 148 151 532 -662 676 -848 -16 809 88 398 -968 775 387 323 -563 49 956 -267 890 701 112 583 -82 -319 -893 171 702 822 952 -416 130 -283 232 363 768 549 48 -76 -463 -184 -121 864 -127 577 -990 -671 -518 -475 630 262 430 590 62 -734 53 154 996 732 -196 281 493 543 0 -82 -640 -277 820 223 96 758 -502 -392 38 447 149 -885 821 209 297 968 580 -47 867 -880 -160 836 832 928 135 -315 370 -910 166 -404 -576 868 140 701 -481 474 -860 -983 -125 507 -7 589 228 -355 -16 -889 756 463 71 927 256 -789 -102 -704 371 -440 671 551 -73 789 227 679 -671 769 724 -132 -998 -16 -157 -526 244 -519 277 809 171 260 488 583 904 281 749 285 733 452 -897 537 -703 106 42 -691 304 383 85 -665 951 -295 -161 377 699 873 258 547 -620 38 783 84 -170 255 604 -12 -827 356 -576 425 586 622 8 -922 -315 726 -378 364 448 539 -995 273 694 -344 674 932 297 -987 515 286 860 520 309 -700 -265 844 44 -815 -999 -546 -967 731 951 -129 211 56 -775 -180 886 52 735 -185 -365 567 335 891 567 141 886 -152 896 904 260 -339 255 867 -649 451 408 -944 44 250 419 507 -885 -495 202 525 -267 -269 159 -386 551 -938 -220 691 151 -600 -529 -197 -180 -311 58 -408 -428 -953 406 -872 897 -581 145 -39 664 325 -42 138 755 -88 -758 296 128 -176 172 -382 127 -725 -431 477 -808 -448 631 -210 -274 -257 199 190 -893 -969 -696 -924 897 889 -85 -53 -485 937 102 -159 -617 122 574 649 540 933 284 -137 -848 930 -21 70 -352 -98 -561 910 -113 -164 441 258 798 -612 -376 77 -762 -647 -447 857 -746 -408 -478 -722 840 503 194 88 609 189 -706 -665 -944 713 401 765 218 -526 391 -873 -559 362 288 -5 -135 488 611 773 -379 743 -292 -939 535 -209 667 -131 -247 -678 778 -662 751 -742 -27 832 801 458 824 11 683 -396 -41 -825 -558 -258 -90 -205 -281 -823 -954 -67 91 218 -838 -404 -325 -893 -315 771 438 -551 407 -338 300 242 993 422 650 326 700 -566 -645 684 -352 -112 973 412 -817 -484 -530 456 -806 632 -557 -959 -147 -738 738 163 152 -177 -469 106 240 -164 -210 257 -427 761 875 -932 -284 -880 686 -55 -11 -925 749 1 -124 618 -492 380 950 58 350 238 973 47 248 802 825 269 245 944 -821 645 48 433 -73 867 709 -740 216 -248 -704 484 -322 -144 212 -584 -211 997 694 -433 -787 19 -896 711 -844 818 -711 -53 831 -47 -284 -816 -79 59 766 804 -755 139 535 63 521 -582 979 -636 742 730 612 337 967 631 281 841 635 -338 -2 883 510 156 365 465 48 200 492 90 556 376 -701 -785 450 289 353 -131 605 -411 -941 485 -574 258 -508 -820 359 -911 475 -979 -360 919 860 -177 -269 547 300 -744 974 727 -389 751 950 180 268 -176 -285 -949 11 -26 726 949 -408 -697 506 456 381 -210 275 -614 958 535 513 355 -510 97 -336 97 987 441 -488 316 -645 933 804 -669 339 625 700 -904 -510 212 -292 -958 -739 -247 610 -668 557 -297 915 \n862 266\n822 222 428 916 58 462 -597 -981 365 928 -17 -251 -877 -544 -741 222 -758 -647 827 -262 526 -640 -887 738 314 972 -908 -77 78 -983 917 -772 665 608 996 801 -902 -349 679 899 860 -469 846 -699 -367 156 318 361 693 306 -249 437 -97 556 603 -927 100 -810 743 335 679 535 560 -685 651 92 -96 3 -913 773 28 -214 -18 931 -478 -665 -912 440 762 369 698 -22 554 -490 268 593 -58 616 -717 848 973 759 -776 736 -782 -428 -116 -769 -607 354 -668 919 533 -614 655 354 810 923 104 -830 -442 -879 303 -780 -278 -676 39 663 797 -919 174 320 -150 316 80 443 -839 -825 780 815 -561 535 358 -354 -929 -636 -203 163 817 867 312 838 573 906 651 715 -182 -867 792 -759 514 564 -326 841 -442 127 -224 359 -675 82 -212 -327 606 608 327 -494 872 -199 479 628 627 576 -359 126 987 82 39 -579 569 -319 833 -720 59 -429 -181 876 938 622 150 -572 315 25 -131 479 7 23 -767 139 -99 -607 145 -943 448 906 149 -440 436 -191 -609 44 895 905 241 538 823 -476 132 39 -269 -691 -260 -786 166 93 -409 601 -410 843 487 242 264 12 -787 380 945 170 739 -443 752 634 891 -327 -769 879 -88 125 423 352 -649 -796 755 -765 497 90 252 -646 -231 405 850 749 214 -602 337 255 837 -361 557 526 -799 -183 920 658 28 331 109 347 223 937 17 249 358 -762 -101 -965 493 -954 -749 125 -467 -681 204 -35 756 -403 -974 719 109 -928 -412 -752 -851 -20 771 663 -85 -576 -293 -333 413 -351 687 -47 34 402 553 257 729 468 218 353 -303 911 505 -687 841 -677 909 244 -501 -736 -22 240 -102 3 57 665 668 430 240 475 -810 358 -128 -243 -766 -563 585 459 -300 -104 762 538 843 886 634 -233 742 145 800 446 -132 825 748 300 -305 795 -843 65 -843 646 559 -495 -414 334 -652 180 -560 12 -981 -74 -686 412 -477 504 805 -86 390 -887 722 -70 382 -934 130 388 797 326 -666 -140 880 -110 -985 -127 704 -32 377 -272 956 354 42 -64 675 -455 519 -402 235 227 -527 -536 -886 947 53 172 -543 -90 848 928 65 93 -939 703 0 200 158 625 -517 -574 -468 547 351 -878 219 948 453 -32 744 625 597 764 -728 482 -920 92 463 -483 787 -220 -949 -637 296 761 100 -762 187 -120 -739 -276 686 530 534 383 -533 479 948 50 -18 927 -759 -554 202 90 512 -718 374 -154 -529 956 3 12 -249 787 83 875 131 215 42 732 -255 833 -49 387 -647 924 582 36 235 -297 154 107 510 -275 610 -262 63 188 511 813 -442 622 926 0 -180 571 -168 593 -242 573 547 -822 -618 431 -832 249 -888 394 427 -512 -938 841 30 925 -861 262 461 -254 254 986 -747 134 778 665 -212 106 -791 491 -682 -925 720 501 -768 789 124 590 338 -140 560 -402 -147 16 -832 -146 -732 579 58 834 -316 124 36 290 347 -564 497 653 -598 633 48 741 598 -799 237 278 -457 -882 150 -678 559 933 -279 475 670 -814 774 -293 662 191 967 463 -814 847 745 427 -958 167 176 771 202 -270 233 -361 278 -757 -81 799 -212 499 223 216 799 -883 -581 -453 -76 481 -771 -281 604 192 531 238 747 247 -102 573 844 -623 -6 50 -66 -551 546 -237 -232 425 157 579 -251 -426 -23 -339 51 862 -82 -97 294 -281 -678 -958 28 -471 383 630 -291 -533 210 592 653 997 563 210 542 398 801 947 822 -114 288 -279 -173 526 310 -799 850 358 551 -14 402 558 738 556 -720 226 -769 959 -703 759 789 -661 -649 -968 39 515 900 -346 664 146 -24 -216 378 -413 194 -816 997 732 -956 779 139 964 98 -809 -108 -924 -79 -811 -19 697 -926 671 407 -339 481 136 -547 686 -262 852 718 106 964 508 -716 -644 683 462 -843 891 673 846 846 555 -694 377 -494 -525 961 -193 612 933 -984 557 -784 -338 180 -646 742 -754 -131 -682 859 20 -620 -916 740 252 854 482 -528 178 458 198 -57 -11 116 526 55 743 -998 957 180 -369 286 159 -25 987 395 96 968 -903 -395 294 -208 -159 -119 -218 -972 597 -309 -739 -580 348 918 92 539 477 214 -833 31 42 -511 -837 204 -96 -622 535 -849 -461 -388 -400 185 934 558 687 892 -947 -438 574 -851 264 496 -18 376 766 973 398 444 -944 -915 -561 -510 -503 -667 -419 -11 583 \n702 508\n-590 -322 -732 -42 281 302 -245 823 628 835 -57 -870 -289 818 630 -743 806 812 595 542 60 -544 803 452 360 -657 7 6 -485 -862 472 284 -960 40 857 -138 130 431 -635 819 490 -926 239 153 -481 906 680 134 620 -199 878 -918 117 643 172 746 -195 768 -146 831 197 -951 332 630 -570 -352 81 -298 396 499 -910 852 -865 -418 488 282 -697 -868 573 -899 507 436 -28 -180 -24 -959 944 -543 341 -818 -322 839 -29 242 916 94 -413 98 806 -495 -39 161 668 948 -912 249 -70 -792 -457 -224 471 390 -417 323 639 193 -394 342 -841 754 80 934 222 -757 -461 911 -880 220 632 270 583 -18 -329 689 824 673 567 737 96 838 -434 -807 685 -807 385 508 -222 972 228 256 39 675 307 -396 382 162 54 287 960 633 987 709 -45 308 460 -739 743 286 -454 589 831 -417 147 136 144 -967 664 24 -834 -613 375 11 -792 -754 606 332 -27 -548 519 545 741 339 623 -406 742 188 7 -816 874 -888 813 354 153 -987 732 -811 391 -837 287 286 -217 132 602 73 510 -752 -106 -255 459 -493 -720 710 -493 500 530 -201 844 331 -626 -343 50 201 733 -506 560 -547 -477 585 353 -465 975 94 733 161 -526 -57 -448 -115 -622 523 -368 956 -370 492 802 -356 622 318 -366 791 -661 -824 -718 864 -453 596 931 -17 286 824 577 -588 -527 -865 822 181 -377 -891 -246 -373 818 -650 -826 -49 27 -917 172 -65 658 366 476 778 -1 -147 479 -829 -61 560 -763 165 -680 514 -988 -20 -432 629 842 -823 -541 -656 697 206 974 -300 -519 -733 -941 -696 721 637 247 568 727 -347 -989 -121 -11 968 566 486 -702 144 562 22 -900 -195 720 36 771 103 -17 350 671 908 -523 679 521 583 439 621 419 463 -915 -532 -750 -171 49 -865 -684 -770 -286 311 246 257 220 -333 472 233 113 -654 200 -118 -422 519 194 -393 744 -221 751 863 234 869 617 552 808 714 329 72 -990 651 409 106 -231 -354 506 -888 -791 -582 16 796 946 129 873 650 754 163 905 -724 69 133 -49 -613 -652 -231 -355 294 -686 723 400 -492 234 135 555 -928 257 319 747 -573 562 985 -692 470 635 495 846 -29 -863 824 -597 813 778 -847 336 -329 943 -651 -450 -467 923 -549 980 486 -591 -358 568 108 -834 526 615 233 437 678 813 -990 285 167 632 807 284 736 373 957 304 -340 450 124 -898 689 637 462 281 35 235 495 253 -439 514 135 52 -144 840 -635 168 413 306 636 79 -945 -54 310 97 -746 -793 -834 158 -739 -313 421 534 -754 -572 519 903 402 952 573 794 650 608 112 -918 -28 301 -931 196 23 -483 144 353 245 -88 -324 71 782 729 974 -540 324 -765 333 -641 173 -455 799 -549 -491 -528 -162 104 415 451 -527 520 -346 263 658 -271 27 -736 -331 291 -332 -95 -712 53 461 -205 825 -498 223 724 -354 469 -354 -407 309 595 63 748 85 526 239 721 484 99 186 604 966 299 793 378 -396 -462 389 513 722 579 -477 862 145 161 180 -496 294 577 -625 162 209 570 189 -781 -15 -484 777 20 472 741 485 822 -393 568 537 336 923 584 448 -240 219 -729 912 723 152 344 -324 -304 112 -214 394 842 971 849 -94 410 -774 786 301 795 -362 -688 562 -796 90 212 396 922 345 459 -926 -947 -449 272 998 428 -605 711 934 -452 688 938 222 -183 -292 960 -152 804 36 -857 699 878 -106 -564 353 -23 -594 -521 121 64 780 -807 621 763 -814 -591 -45 2 184 78 -370 861 -983 999 284 \n803 466\n531 849 701 -657 -792 10 -633 -679 121 892 785 513 -121 -194 -351 -357 -766 -211 -389 -963 578 -4 -542 441 -371 -346 -875 448 -387 624 864 557 697 -839 -261 872 294 761 -134 752 456 -965 -227 845 962 735 -960 -917 -178 -893 141 -400 467 971 -767 484 -233 319 622 626 223 5 734 758 764 -420 934 531 -17 904 -811 -477 948 -630 86 -141 -169 -267 -594 441 -164 -822 -623 -289 -560 -953 946 74 -780 244 258 15 264 473 -28 60 788 849 200 -897 -641 862 698 357 -366 855 -18 376 901 463 301 679 -971 142 738 84 731 798 -837 -908 -740 -279 -631 552 862 661 -988 -868 745 925 852 850 231 -979 746 48 -397 -686 832 142 934 -378 -977 -465 767 -613 238 395 468 -43 -50 65 225 -131 -206 -251 754 -279 933 744 -460 -136 -600 423 466 -447 756 -519 -345 -557 -647 951 -428 -684 135 783 -569 148 259 141 409 303 -344 473 732 957 365 586 755 -961 335 95 -372 586 -774 -263 178 843 -910 424 362 515 -808 932 927 902 670 -231 -775 -274 -554 -931 -812 882 -559 444 -372 999 -806 573 -601 -650 -283 713 842 459 550 -866 -47 -358 10 269 -289 -760 201 -292 592 470 -630 27 867 -671 -26 -988 -548 629 224 675 105 112 -144 146 -876 -978 480 238 -540 -860 22 416 906 -336 239 -173 -509 -109 -868 159 430 678 -912 538 12 331 -427 -848 873 311 177 245 580 -304 612 627 317 426 782 -463 828 -508 -368 -410 -898 969 -166 641 -94 993 464 -45 369 965 26 -212 227 935 125 271 892 -848 -412 850 -755 -431 -56 -415 -507 857 -125 563 145 -739 -683 -262 -391 -834 205 328 196 -460 565 -775 -186 84 870 -186 910 -242 -641 793 628 -472 73 34 744 38 710 598 182 983 598 -562 -315 -42 375 -471 530 122 -158 -202 888 -710 -60 860 -272 242 723 -139 311 164 110 -407 953 -567 382 262 43 -444 -190 576 -158 668 440 868 -547 215 309 -450 913 177 -976 919 89 -791 -988 -428 -707 -958 -250 439 -829 -229 -284 -184 -123 438 -717 845 762 425 -190 902 -940 161 -971 274 431 -516 659 -464 -454 191 460 -215 567 136 773 687 347 -675 962 -70 -249 582 67 -348 243 932 -837 -479 631 605 -328 -511 343 788 -895 955 -409 513 987 162 984 973 -24 747 778 328 455 -534 504 -910 755 864 433 -517 444 203 335 817 -814 -708 761 457 -835 187 -103 800 -69 935 -305 -692 772 -39 184 -250 6 250 259 32 458 176 571 105 909 806 167 -948 -318 974 274 -246 945 765 648 140 327 403 804 -58 195 -622 93 -623 807 280 349 598 -53 -612 696 294 55 -509 91 547 88 495 82 -867 441 500 313 218 69 192 636 126 -268 -406 183 43 595 809 -831 25 35 147 462 -441 734 -337 860 84 -901 509 -224 -908 37 -915 -963 -720 949 -237 557 -885 -178 687 222 -39 -739 -668 -823 852 509 903 -494 -234 552 -522 54 -124 0 314 -204 -449 573 537 747 476 187 899 673 501 -595 257 -31 15 -648 562 517 888 275 205 460 964 -23 696 -906 506 302 436 -570 838 882 278 265 53 -725 568 819 924 50 662 763 -121 513 -785 606 224 -471 -511 249 528 420 721 -910 12 75 596 -508 874 -845 -769 76 159 567 117 -196 -481 -631 266 -216 539 -755 -572 100 877 -226 124 -539 -281 24 616 531 -967 942 769 -910 -938 -520 396 891 -361 126 -322 19 815 852 -336 68 163 -714 71 98 761 -116 845 -465 911 -99 34 932 337 298 572 -857 -598 922 748 -811 144 831 503 263 -767 -472 -206 695 847 -691 -590 802 -149 782 -112 9 111 263 849 492 753 653 -52 -811 160 -901 924 -573 123 -591 746 581 573 -558 -941 -448 -813 -827 -221 552 214 -114 846 700 639 -724 -900 342 -27 707 -33 196 -546 -25 400 47 599 594 -366 175 704 565 396 -804 -89 711 886 654 -369 520 247 -655 260 844 -763 -684 -679 579 27 -640 31 881 996 977 587 966 -920 896 -957 -216 -748 541 580 -308 553 217 -709 841 363 -706 -621 -493 \n816 739\n-927 350 -801 -759 520 -745 800 -708 685 383 667 406 -268 -524 992 -666 -880 894 -700 -535 -590 -743 -798 -635 198 624 689 358 -520 705 -974 -485 917 -978 791 488 394 -229 582 -37 8 737 12 651 -14 -600 -2 -311 230 234 -844 163 -676 49 113 82 -530 138 -52 -109 -334 -458 838 210 530 -399 -386 127 -628 387 719 499 468 -957 -57 45 49 -471 -73 571 -211 -921 384 205 -194 140 560 576 -438 -655 340 -331 -173 -166 -203 -509 -880 119 -32 -549 -462 -307 861 -552 -272 -411 347 326 -939 784 947 926 -826 953 -961 -494 273 -297 444 995 -250 735 56 415 796 -668 235 286 -855 24 563 472 -449 -158 -967 -963 -636 83 -577 542 -870 339 218 774 -688 876 -598 172 -495 113 452 533 -678 552 -552 -370 -578 -189 -720 -366 -797 -157 -426 538 132 -27 453 116 -769 110 -523 891 945 553 94 597 -798 921 -703 537 -759 635 656 -70 819 -668 -564 -586 -282 -335 826 -955 364 403 454 698 -63 850 -47 315 654 475 882 727 -580 688 -933 258 541 -937 533 269 -110 -223 745 -28 -384 -490 212 841 -49 100 567 344 131 36 861 825 -251 -947 398 945 731 -546 196 249 -112 698 -713 541 380 619 727 -430 -982 390 22 -289 -701 -115 -233 -758 641 787 -881 -970 754 710 481 405 -550 23 1 -309 752 308 -627 -505 -492 79 257 542 -700 -279 -309 -398 885 263 -711 44 251 -181 -978 113 201 -925 783 -659 577 700 993 544 666 397 968 791 853 -895 -254 231 288 781 309 -278 -499 917 919 -4 254 354 -116 -405 128 18 952 -531 721 -584 442 849 -25 123 -766 729 -991 -5 331 -695 859 -525 -470 -476 452 838 461 -612 163 -613 581 160 902 559 -157 -565 278 33 505 787 -113 990 -640 -830 137 557 246 297 227 167 -203 406 137 -565 353 -975 321 129 -922 -792 -155 -296 936 163 -959 -855 675 -403 -564 -786 375 41 370 -750 779 810 -105 352 -499 -270 232 -588 -847 227 -207 536 -65 -776 -77 222 819 -451 -628 -349 775 -691 -471 -904 589 111 931 990 681 765 635 856 410 -843 506 -551 -740 -986 13 819 375 -542 510 268 -149 -848 -290 533 592 836 44 -932 -202 274 640 -452 971 801 705 -900 927 888 668 -381 933 -371 994 -807 801 164 -890 -564 -51 887 29 -283 302 773 912 -95 -602 -579 -557 662 10 592 978 627 -278 666 -136 228 930 -417 845 316 -365 -681 147 -626 899 445 104 -912 988 183 -436 181 299 985 277 -323 823 -160 -630 -2 837 -939 915 171 -813 816 -783 766 -960 -976 695 -269 -409 750 -389 430 97 547 509 -29 -217 -197 19 712 835 836 339 249 617 979 415 -264 -709 997 733 -750 32 981 895 691 -140 341 -361 -464 545 -864 -526 -726 611 -576 -347 5 618 -81 915 478 -457 756 897 522 423 749 145 -680 266 -293 -863 107 471 969 -262 561 435 -137 67 -974 -477 -465 984 -399 -273 251 474 775 151 372 642 998 322 331 671 476 602 -637 435 562 -530 275 -586 -370 586 42 902 -554 -966 906 726 -558 222 376 -106 -491 -300 213 -592 660 -1 220 874 104 -512 760 230 225 -897 355 285 911 143 -472 -332 -52 -450 10 606 -462 -470 274 -96 -824 -946 270 780 656 -987 -180 95 362 127 -931 -131 316 418 395 757 337 363 72 -311 270 -360 795 -383 -280 750 600 623 995 298 -17 -555 460 -436 -969 -350 -401 86 26 686 -435 -409 -120 -547 -235 120 -900 588 -226 -515 730 282 871 357 76 402 566 -790 -156 279 -179 722 757 -630 843 321 147 473 -379 661 -702 221 -582 -879 -92 180 612 778 628 443 -158 -174 499 -277 795 854 691 -206 38 27 407 -288 -725 327 272 698 196 690 627 -724 864 161 -81 -173 124 -418 -766 397 815 937 -10 -355 -316 318 859 832 505 -796 472 -921 208 532 -928 -745 889 848 -185 -518 359 640 82 295 510 417 417 932 -763 985 -141 254 828 292 398 -43 -500 306 440 795 -81 -438 -564 -133 205 -225 447 -595 152 -405 -41 -234 324 258 -102 -459 824 645 -48 204 -53 996 140 888 20 619 -993 843 -590 -346 -492 \n999 10\n964 -744 400 689 -596 -320 636 -522 -446 -232 839 621 81 -1 -268 -350 -971 369 280 306 234 31 782 -694 -788 -698 -852 992 449 715 -540 -212 36 310 292 -689 437 949 -174 370 -833 165 881 725 25 247 990 999 -543 -656 163 -310 -476 905 -291 861 469 -472 -884 -932 -201 566 -944 -45 884 -463 549 -688 704 -5 310 64 -894 428 983 844 985 607 196 879 -532 522 267 232 711 -87 -566 531 854 -41 -994 814 -162 -116 -394 541 -502 -363 -132 -7 707 -192 -627 934 -869 895 123 -314 827 -499 185 -799 355 552 -48 -659 443 167 685 529 -305 -6 -812 936 853 -205 -609 -468 498 858 152 188 216 -62 -861 459 -308 893 893 624 -959 418 -402 -254 579 785 -275 -484 865 659 506 989 -870 582 -356 441 409 -58 -461 -211 862 -109 -873 321 78 -15 364 -503 -221 -63 -963 -573 -243 548 913 284 388 573 867 292 -16 -922 -340 969 443 601 793 90 -582 514 -742 -769 972 195 872 413 990 372 569 779 -159 195 -927 416 89 -618 397 849 814 957 -896 516 552 933 347 908 306 815 -836 561 508 493 -789 62 587 580 412 89 334 -68 363 686 -595 -699 -224 724 -592 43 686 -294 810 287 282 971 513 50 -303 327 -586 -57 187 384 940 371 -856 322 -547 -808 836 355 576 887 -714 -168 615 367 982 214 -928 87 460 42 175 837 562 -321 -324 555 -601 -665 331 309 560 -702 -781 -69 353 -701 -613 -344 -875 69 331 -766 -438 857 -693 605 -106 992 -193 166 784 -669 325 495 655 151 -23 -271 -552 -441 -437 -173 891 43 15 962 232 -200 391 -730 174 238 -832 -23 272 -466 148 207 187 -9 332 777 105 903 -596 -227 -633 124 269 711 -548 -330 -417 865 426 -320 546 970 667 738 -875 -664 927 487 390 292 -799 -857 452 -811 -201 601 136 -334 951 553 -405 691 880 -824 -99 233 366 -153 702 -983 799 60 127 -702 380 -547 209 -226 13 -55 540 429 -523 -513 694 -748 204 -257 -85 -104 307 810 319 -158 237 -915 938 815 933 48 268 513 -792 407 -892 -844 -10 -780 615 110 928 -797 597 64 492 -295 -577 -887 404 -543 740 732 467 -18 754 980 -855 -214 827 -584 -25 838 316 286 40 889 -364 6 814 436 703 630 -16 -260 790 287 979 -916 957 790 -394 949 -44 715 -881 -601 510 -661 38 -151 -421 285 34 -659 -820 286 324 419 -908 -875 -894 -435 232 713 -774 529 -737 497 -31 777 770 -864 -381 -810 -325 238 76 -672 -772 858 706 312 -528 276 -504 -335 982 114 -510 524 277 60 276 -241 -578 440 545 846 669 -246 384 53 641 133 421 -79 527 -796 -37 654 -875 306 164 593 805 -535 -828 771 -777 752 -149 -116 376 -479 831 542 966 505 593 602 666 239 390 145 -737 -773 -723 859 -210 806 -58 -891 467 893 330 -576 523 -189 -317 254 638 266 -105 955 -956 -742 47 571 770 990 263 805 -728 258 -786 531 -682 809 878 870 87 762 821 807 116 356 -743 695 -642 -982 363 224 -844 176 -394 -954 154 73 565 -479 -752 54 282 -543 704 -473 619 -541 412 -416 94 448 485 82 158 515 -239 117 -88 -765 666 275 511 -970 523 312 -417 408 720 -774 -640 -266 752 -545 530 361 -57 204 161 422 784 -618 195 545 580 29 -979 -438 -171 -378 670 450 252 811 152 -394 -955 124 957 693 792 303 376 -85 528 -392 735 -578 171 617 228 -38 500 -591 -390 -266 -701 251 886 152 328 562 642 335 974 182 62 -322 36 -747 878 -105 889 267 -797 -935 690 -906 9 970 742 34 789 102 -418 -592 501 330 558 13 790 617 -510 406 -75 -851 -491 668 169 889 -815 -629 -732 -789 148 -122 -8 968 997 -551 313 161 387 854 -194 245 -474 -332 970 841 945 730 523 410 -902 797 122 278 72 94 249 -152 419 139 616 272 -551 -940 31 952 -57 639 -62 -160 569 -397 -182 -179 -754 -299 -157 984 342 -898 997 722 71 239 853 -352 -910 971 463 782 -128 492 81 466 4 -178 -740 503 863 331 680 -54 672 -832 566 -768 -732 669 500 -861 307 -165 -813 -897 433 -620 422 -585 278 -427 586 835 -839 -288 759 -899 26 -675 391 390 558 242 -584 619 160 709 -84 261 -495 -3 825 -962 18 -563 114 -359 556 908 132 -946 -831 670 778 215 830 743 -666 -484 218 -655 86 -764 598 -532 964 711 114 966 86 -985 -516 -940 -339 87 -338 741 -268 453 -857 528 904 -714 377 829 -584 -978 -767 225 435 979 866 654 -83 -393 359 -49 702 -339 301 -154 775 188 113 -504 -634 490 -675 962 419 138 903 215 808 858 -341 647 395 29 393 183 849 -299 108 433 -789 126 -601 -954 293 126 -801 442 268 734 760 -639 151 741 357 875 -400 454 -878 857 230 424 -994 716 -987 -423 -141 -752 540 969 927 -63 -924 34 701 325 -82 -80 79 381 -767 -335 776 370 -713 -559 97 510 658 -129 582 959 9 -78 -760 -316 288 64 753 -612 292 -902 228 232 -361 -197 114 -860 564 290 517 907 390 \n756 133\n42 23 -827 803 328 -70 317 471 -868 -625 -176 -718 844 -821 956 -574 244 219 288 -929 348 343 -869 799 616 227 177 769 670 441 -421 -151 235 -301 983 -690 151 80 721 -379 36 -878 64 -586 355 865 -422 760 -647 428 -865 894 249 985 -881 275 642 -323 -397 -146 444 229 -191 786 -177 624 796 -684 -681 -858 573 888 313 -25 -417 601 -543 -924 712 484 -119 -99 -161 -453 -625 -217 773 98 -761 -9 346 742 -93 -903 881 519 603 154 256 -392 320 609 601 -120 530 -787 89 -234 -903 -837 346 -963 587 816 898 -406 838 -136 161 115 764 430 -303 916 -75 -191 436 295 -633 667 -277 -39 851 391 310 114 903 267 554 36 -315 452 229 331 363 779 -875 938 863 -757 814 -790 291 -881 932 948 -926 -669 718 136 -235 -785 -851 -695 443 642 426 759 -264 185 -668 -946 43 842 -880 574 840 -805 812 311 525 712 347 972 598 810 -513 -966 868 -298 905 -221 297 -518 352 -890 878 -421 -223 557 830 -181 901 817 968 389 -203 -291 -96 861 278 943 -334 249 224 588 -94 746 -247 715 207 956 -628 643 -556 -793 -310 -927 558 -165 661 -702 896 976 -879 51 817 -399 486 -3 -293 -763 456 634 -348 232 -597 -486 802 -600 -645 89 -630 837 832 43 595 -83 868 567 -34 -699 546 929 -214 -673 73 735 -6 487 -633 -309 742 480 -450 798 543 -910 467 898 -362 204 139 834 441 53 843 750 -919 546 -18 880 938 928 536 -663 -80 -760 571 -341 263 726 -397 192 -372 -826 676 -469 45 -914 913 136 31 934 -777 846 -97 794 911 -171 414 192 672 -860 -823 211 206 -406 -711 341 -382 -885 469 -498 -449 -791 957 3 238 294 64 492 239 665 216 854 -224 867 -668 406 -595 -867 282 412 55 114 856 685 -748 48 -937 905 -592 -608 -887 341 78 -87 195 -594 553 73 423 509 757 -332 -172 -413 759 795 -844 384 -608 548 642 -982 78 98 -53 -940 202 396 -745 323 443 61 -629 407 650 450 -630 800 724 -990 634 980 4 -833 310 370 814 141 -161 -304 812 -472 998 -527 501 189 350 418 529 -571 -660 547 23 -948 -959 230 455 -863 188 436 936 310 -753 -537 595 249 -651 405 -669 265 -609 127 153 582 -703 822 468 -842 996 406 0 611 436 217 -570 821 758 -964 -164 462 -415 238 755 -448 -293 892 994 811 69 583 757 448 958 964 -494 -206 -260 -259 -204 665 -925 113 807 -406 135 54 942 385 -289 -144 -297 463 -5 -254 -903 -204 -309 213 -121 599 -587 -47 -357 49 -431 775 12 985 -253 846 -388 882 -924 -593 527 227 -207 -929 -378 -959 -664 922 991 -235 -969 452 179 227 -313 981 -673 -309 613 861 133 580 332 -904 570 14 186 -976 12 102 390 -288 582 -731 252 562 966 247 -379 -834 -532 297 768 -881 -303 316 -130 59 800 -789 -404 -705 901 937 350 312 -879 701 -179 -656 453 548 108 21 550 420 716 57 -946 -801 83 -265 -826 -481 -948 44 76 887 734 463 504 736 366 108 558 632 787 -109 38 -838 -969 46 -237 -60 -247 -697 319 720 433 -903 -407 94 271 286 393 308 668 -221 217 972 719 -58 -633 -997 -757 -748 -151 26 -869 490 -988 370 -139 386 742 630 590 138 231 134 850 971 356 -909 -823 513 135 376 240 148 -294 -987 -828 -90 -185 -804 985 923 -344 -630 900 332 595 -855 961 837 -495 99 538 -554 -712 -319 568 981 -881 718 235 -482 -574 439 592 874 491 965 -886 -193 -546 702 304 -545 185 -340 798 60 801 472 788 405 873 690 873 -232 569 545 265 38 455 -73 388 -882 -381 -864 269 366 913 -321 868 -383 947 154 -356 -676 339 901 637 555 -705 -10 355 -484 866 11 -533 381 994 470 311 396 701 447 -545 -712 -76 636 198 -976 -974 -855 \n934 932\n-629 452 113 85 -444 -970 396 -777 794 787 280 708 -543 260 381 975 885 354 958 -215 937 -131 -437 -342 421 -34 -709 991 129 39 -311 526 -181 -732 758 -974 921 281 610 385 669 -9 465 -659 -737 -91 745 239 -911 -178 351 -57 420 -733 948 114 -315 400 962 160 -858 137 -139 -459 698 -243 -195 433 851 -919 25 547 -758 550 -394 -446 137 320 726 34 559 -529 985 502 -557 927 267 -131 166 621 265 204 -616 138 818 316 204 290 -34 -240 -578 660 -874 -585 -27 659 -157 859 -566 -669 501 393 -508 -367 429 -55 883 -911 -588 366 366 -833 664 -571 883 187 -481 320 804 720 802 626 599 -592 -3 666 830 431 -458 540 464 -10 -165 427 590 -733 97 -602 318 735 -951 -180 -996 -92 521 398 596 346 882 -544 -521 -837 339 136 25 -724 646 -342 -366 114 151 -280 959 -525 662 -936 485 354 -559 881 -167 599 778 318 910 -839 652 -364 466 -994 -923 -443 227 490 638 -464 584 447 883 549 756 -36 174 -24 956 -552 321 -568 -490 806 230 780 -349 549 575 675 -422 825 -183 -605 429 656 -590 856 410 214 73 692 -157 233 -480 -840 198 445 382 258 -813 578 316 820 820 513 -447 569 168 19 533 -692 692 258 -628 -337 733 -14 -555 -242 711 393 -406 -747 -702 475 519 382 278 206 248 -928 -972 -707 -977 874 -771 -588 -856 -602 544 592 692 -263 494 -658 650 -392 779 -58 32 -438 617 -795 -245 709 101 411 -463 -727 -499 798 -322 57 25 355 248 -461 791 222 795 -918 -14 -164 -477 -366 222 698 -529 755 814 238 -927 902 768 -36 812 275 82 667 696 812 446 -318 846 54 -410 -163 455 994 945 -223 911 869 -33 -88 -159 128 419 433 161 -25 -6 546 759 -705 -652 653 -253 -988 -755 -482 -682 -420 -85 -244 -907 709 721 -82 312 506 -912 319 -541 -959 369 -27 162 526 13 535 -827 419 371 -892 897 71 909 -29 559 -312 618 -481 270 -255 -2 -210 209 -200 165 -448 610 878 524 551 -99 845 942 29 -758 686 -245 -293 422 303 774 806 -859 72 796 932 -570 559 -246 -670 691 -869 164 -159 -841 783 -798 214 -829 373 694 -646 -155 -494 825 -62 908 586 -809 609 458 -895 766 -967 15 933 -416 -747 -815 426 671 -675 -793 662 -692 491 -274 -400 597 251 762 -407 -20 412 124 -330 -936 406 346 353 483 309 600 794 211 -368 -652 -725 -26 473 900 224 -469 735 -576 -955 784 -151 828 309 -385 -511 -351 245 648 577 -807 322 -814 -262 34 964 659 528 358 -448 893 -687 371 -904 264 -262 819 649 905 707 121 -915 794 770 -207 -452 -370 -562 694 534 -177 -182 922 124 -376 -677 244 545 879 91 166 762 445 -686 690 310 -388 -114 180 13 322 365 -659 -862 -457 -60 36 88 376 660 -735 -306 -288 954 735 242 695 -852 -398 -74 537 -901 999 646 -882 276 515 -632 -501 -949 -741 -13 -448 567 38 -197 -590 653 -250 390 611 142 32 673 44 -701 -197 -28 924 833 770 678 944 14 -58 6 372 -986 -597 245 -627 0 -112 727 164 -321 258 7 -159 262 705 -152 900 -191 531 436 124 151 341 520 366 822 783 102 -724 334 86 -522 -395 -726 -537 -69 -871 -650 -284 85 428 -481 -400 -692 54 -750 -337 781 -450 -679 -327 -474 363 345 -885 840 -942 98 -245 936 190 149 -979 560 352 -26 389 945 256 -435 401 -167 -890 57 -463 804 -938 597 771 301 85 559 828 819 670 -10 863 723 954 629 45 694 -500 668 785 106 794 261 -523 -95 -654 740 920 899 -510 -439 -527 279 468 -899 173 -888 782 -933 -898 351 -647 -954 226 -825 324 464 -990 967 -896 -642 -632 759 -817 -495 -690 -361 553 -564 984 363 398 334 -825 -670 306 -904 169 567 -596 -755 -946 870 437 -137 239 882 355 -33 -736 -268 -74 -279 -569 967 206 -873 -26 662 826 -59 -585 254 -52 899 -971 -912 574 477 695 281 735 -129 -67 489 640 -368 -620 551 -968 154 91 955 -576 331 723 99 127 154 -52 375 495 -225 -563 -117 -815 376 -431 -789 -7 329 -605 518 791 -5 -205 -7 936 374 -171 799 465 259 944 -6 260 7 374 370 -62 -18 -135 419 434 214 -214 -414 183 620 820 -238 422 -325 605 222 -205 721 -689 73 390 731 308 282 0 -162 101 -548 205 -826 186 148 410 993 795 -401 131 27 -611 459 -36 407 -371 -809 -553 943 -782 418 -567 -532 694 -413 913 -863 -597 505 -644 529 988 326 -803 -460 -904 881 -956 -456 -168 548 456 -815 513 715 335 825 162 672 986 49 -609 -281 -319 238 548 981 873 -115 -456 -354 549 943 877 -930 830 966 -727 -937 -330 702 7 393 435 578 -296 958 191 651 \n795 402\n217 155 -405 583 -219 -697 -434 -696 842 -530 -223 -711 -222 -357 463 -260 668 115 857 841 333 -569 376 -384 -197 -233 218 -595 237 153 -633 106 -762 -18 165 -553 308 -906 -737 -751 -704 123 153 -360 318 -995 -706 252 851 738 778 974 849 -750 564 -630 538 298 -261 -143 376 298 202 865 545 665 320 888 147 -356 242 -451 740 -373 254 -678 -421 -160 440 -873 705 105 -286 -215 187 196 634 248 69 -643 179 -303 -178 -892 989 108 -526 345 -580 171 744 -190 941 115 311 -854 797 648 -169 558 984 234 149 -120 747 -108 315 -242 538 982 -271 501 204 -483 170 902 506 443 49 -384 -739 -674 724 -168 -443 376 551 760 -439 -103 517 -581 274 -64 952 -304 147 350 50 -304 309 424 775 -255 -414 940 801 73 -649 -255 842 -496 972 982 630 667 202 -784 -55 130 450 721 102 -699 630 777 265 -560 854 -483 591 487 826 -783 -829 -905 275 312 829 835 394 -919 250 -776 -839 598 -86 -213 -828 509 260 388 -488 -872 -646 2 757 103 -623 -409 618 -669 290 -974 425 418 298 67 98 393 -472 -470 -406 -819 232 -169 517 -874 868 -416 545 798 -456 110 288 235 -20 729 -206 -921 -949 753 273 219 -811 101 -987 537 197 -974 -883 -54 -489 177 660 563 133 -305 -797 546 601 571 -959 -355 -81 489 -43 643 176 736 -681 -496 240 650 -106 294 507 52 -311 -269 158 241 -175 88 -328 -237 -821 -71 679 362 -391 -734 59 287 528 -429 -729 796 -255 -310 -754 -496 271 -706 -186 -699 -717 972 577 164 -45 52 661 404 204 366 518 544 631 -416 -216 435 323 175 -636 -323 -395 955 304 -759 -582 -70 475 863 142 -49 786 724 322 647 -837 619 -757 248 -570 543 820 912 -737 -916 -452 285 935 -237 -770 988 572 358 249 949 -628 651 -527 138 -442 -79 -384 -404 -960 -862 826 398 256 524 95 832 -670 427 -719 366 515 248 -331 750 948 -630 59 -142 793 -851 696 -579 143 -430 515 -811 -911 999 164 -268 244 863 -444 -618 648 -292 92 397 56 -670 -979 -520 300 357 628 732 -984 560 366 523 309 -711 -730 -630 -672 370 -48 839 218 96 -339 -519 -791 169 -312 153 983 260 -163 918 744 506 66 -479 386 -905 -856 -838 618 123 -483 869 -975 -468 422 -268 -120 199 -16 -520 -852 -225 843 191 136 532 -414 -629 77 -613 876 -986 367 -319 59 802 919 174 -373 -220 -578 29 586 763 -104 -961 533 512 -77 -187 226 -69 684 858 230 627 -663 -622 -351 -126 128 454 -344 580 636 107 -190 -361 730 -827 230 950 -440 608 -236 -709 550 -254 133 295 -217 -296 -799 -86 434 619 -203 92 444 193 -642 570 722 968 -133 289 718 720 -772 181 -963 681 784 484 700 -338 -376 828 -91 -187 984 866 595 565 5 -252 974 -212 -83 464 328 -916 -887 -739 58 -721 661 859 328 925 35 668 915 630 548 895 935 550 799 855 118 57 389 -162 420 186 270 166 25 30 -804 241 154 311 -839 328 -720 667 -727 345 631 -339 293 -312 264 724 883 -334 872 721 -911 -910 639 239 108 -966 746 199 -97 -276 -690 -8 456 70 -538 283 96 649 -908 -141 212 491 -573 -960 -778 521 -76 -394 -836 -409 856 -181 810 961 -47 -725 -750 447 247 -565 375 414 225 538 -974 680 785 351 412 94 -439 -327 915 657 -89 -406 800 85 -495 153 -767 41 -77 -641 135 -128 885 -427 770 -851 746 323 142 -29 966 -93 679 717 277 -419 154 976 512 794 -252 -52 123 908 593 110 815 199 -421 -301 -417 -965 -982 148 -241 106 -8 884 916 665 288 488 170 760 -274 679 -320 775 -307 -222 479 261 23 35 844 850 236 387 486 46 -693 877 67 -329 -992 -140 427 -369 224 793 -347 400 -852 703 940 -779 310 445 297 -555 6 -144 -541 528 644 46 -962 -233 -193 324 35 125 863 841 371 -830 724 -840 300 512 -491 -514 713 950 -955 -274 996 -6 494 -280 745 280 467 902 744 -315 -380 982 879 904 777 \n910 904\n-384 -321 -720 91 59 49 988 -497 -747 880 -14 -324 -417 -962 787 547 -411 -533 299 247 -588 276 -690 219 482 -934 -657 -51 -103 -784 948 -914 57 -583 -570 -66 -842 631 408 447 -89 -910 -317 -460 278 -177 -311 -293 482 918 5 -963 733 937 -691 300 -190 -968 -890 336 -471 527 -701 -557 -775 412 317 324 -102 -675 173 97 -572 -156 -742 -895 602 640 253 314 -182 520 600 499 484 677 -725 199 -944 105 859 -928 285 -373 647 -371 418 585 -424 -881 807 431 -604 -702 -252 -336 -233 893 66 774 -644 346 816 536 741 830 232 473 -304 670 295 -489 934 -284 416 -706 -779 53 714 957 510 -441 309 995 171 439 337 788 348 334 736 691 668 45 303 -15 -3 -316 521 -76 93 312 -339 880 634 -11 353 295 471 -378 7 -768 36 -789 809 -381 732 98 -420 231 33 19 523 -47 -661 -379 179 390 -274 -701 -511 -926 834 -341 -628 959 -96 -797 966 -523 717 578 562 410 -620 -860 -426 151 223 -89 708 1 383 -58 -27 -955 -504 -773 -132 476 594 346 746 312 -961 -358 795 485 302 483 281 -158 893 -965 490 -356 725 206 360 320 -730 435 257 586 574 -253 928 838 -300 194 699 705 388 994 851 -904 986 578 -855 -370 926 -523 401 585 -221 -468 751 -997 -967 996 -963 -216 727 -313 44 -787 934 484 291 808 465 298 -799 -126 -694 -773 137 -992 803 369 -208 142 951 -759 -350 -803 -847 165 -458 573 -578 -548 972 856 -301 513 892 -859 408 13 795 -521 799 822 504 -706 938 -891 -996 -16 694 947 -103 714 282 646 -1 732 994 754 -873 476 -639 32 -202 -567 -925 -677 241 370 323 258 504 322 719 -652 -966 725 392 245 741 494 -554 912 938 613 901 257 -73 604 -38 779 342 -179 149 0 157 -597 -917 364 451 -809 -391 -482 867 -170 -560 -62 490 383 478 809 -226 100 -663 481 -731 -215 714 814 974 571 972 702 592 305 956 386 653 810 983 215 195 975 637 333 946 641 -738 -403 -994 -497 238 946 -533 889 917 253 -649 584 472 391 -960 -402 170 -605 504 862 524 -976 -427 151 -746 788 -63 891 -308 -76 -423 -927 821 -716 -553 729 -327 165 -54 -533 -597 212 173 865 311 444 136 -712 858 -647 37 -474 -470 705 62 -19 374 725 33 592 -196 358 361 -605 226 584 548 -897 -553 -60 563 -552 -598 959 701 817 984 579 524 -37 -180 677 839 382 -25 125 294 126 492 -817 393 331 245 443 209 -866 -752 46 52 201 341 373 -222 387 -432 -709 19 -120 -626 486 -230 -530 358 -621 -102 209 -37 173 707 336 803 241 -885 446 551 -747 -29 -54 -119 993 754 -687 194 -467 -806 -93 -532 -62 758 -534 757 236 510 654 770 793 474 963 -970 399 270 130 -627 -19 -567 -656 59 -767 503 -361 591 390 -421 -789 304 851 -243 -806 -640 -234 935 972 -513 821 -2 -97 -407 -888 -916 -501 209 -205 334 -602 436 -561 -646 -529 -560 918 -695 -364 353 895 974 322 -711 -350 310 350 -422 -594 180 -960 -647 545 196 -91 645 -986 -307 -829 -449 679 -867 2 319 659 714 786 -534 464 -51 -22 740 -11 251 -718 72 13 -397 630 -157 356 -47 645 526 633 -731 788 -709 784 607 573 74 219 453 -426 747 487 444 -297 -774 -53 637 -143 400 858 638 794 193 -895 50 701 -974 122 631 88 -438 -156 -95 189 741 825 465 972 -781 147 597 -120 40 -303 -963 248 -990 949 -132 687 669 708 -438 981 -964 277 429 -467 920 108 -485 898 751 338 -929 -213 -967 -573 839 -651 -184 630 346 -414 -670 49 -943 -742 280 -801 -600 231 964 682 -340 95 193 749 -308 985 891 912 240 372 218 251 720 -324 -531 572 -843 -848 -285 -220 204 555 494 984 -208 500 -52 -640 489 966 84 -283 878 568 -302 825 617 157 167 -520 911 -421 -742 -352 -340 -211 887 287 972 957 395 853 -523 407 -678 281 502 -857 632 347 -864 236 981 631 -742 -680 -797 96 363 809 876 -531 133 -574 75 -248 813 -105 949 -797 571 -217 283 -82 736 451 -848 -734 -114 765 -734 952 404 -465 687 999 467 -168 637 307 -706 -77 299 161 -687 973 -353 -859 244 390 172 262 -903 253 259 -74 -962 782 -708 750 -251 -96 -685 -105 -173 766 387 -273 973 311 -94 -584 191 783 -99 -243 439 916 -329 794 -656 602 -932 -762 -544 -304 93 381 937 648 -576 -121 273 802 661 301 619 562 416 191 333 -542 -825 673 208 -833 -788 -295 940 -778 370 -507 153 -125 990 994 758 993 -865 -940 477 377 -694 487 853 220 -991 724 -807 -429 \n754 283\n263 -545 128 157 287 -903 524 -321 58 -743 359 54 -135 819 -205 969 -396 -399 866 -665 542 149 612 -417 63 -36 199 138 227 700 672 23 -402 323 -274 775 -546 -124 373 71 714 18 626 581 -439 473 -336 -22 -738 286 578 209 -912 306 670 -225 674 -803 -263 903 747 74 844 -326 -348 -542 -103 53 979 392 472 353 935 717 447 760 150 656 -253 591 -199 -261 892 -229 -177 990 -690 830 978 306 386 -337 -672 -121 794 841 -820 -594 319 488 122 461 -340 -95 -307 793 -159 -952 131 -519 -805 933 459 140 -704 -182 295 379 616 -886 -217 153 -23 222 -829 -416 563 553 -923 949 472 726 128 2 580 74 261 812 873 131 630 294 -454 -686 276 -52 -758 138 -380 336 -240 595 550 -641 -782 -960 655 -615 38 989 143 -697 36 -265 300 -535 -941 985 917 728 -925 123 -279 829 -514 -644 868 812 951 787 391 806 739 844 985 377 -887 334 -440 63 -491 -901 354 -77 793 216 -254 -733 -793 -372 -939 108 -196 -672 327 661 217 -911 762 -84 26 433 672 651 671 369 915 121 947 512 158 182 578 -353 -275 -945 986 -612 294 346 351 -164 912 136 -716 600 -405 -636 873 277 870 916 880 530 -952 817 -214 -755 115 -786 -184 -279 100 -246 -804 -794 779 -773 628 -563 -573 -280 519 903 803 917 -439 421 761 -988 -716 -384 489 973 23 -384 806 -168 -928 -273 209 -362 209 266 -703 983 -360 823 816 186 961 -567 -858 -823 -513 287 -660 -634 628 190 260 869 -593 255 66 534 817 -450 962 878 219 -507 973 995 475 561 792 -199 214 888 796 -887 536 271 837 877 -702 323 988 623 932 651 149 741 432 530 -361 -799 773 32 996 581 185 -961 800 -444 591 -28 272 -784 558 821 902 -500 -57 -404 511 -964 -837 -476 65 68 -918 396 828 -758 -81 233 822 512 -787 587 405 451 465 755 929 -86 550 -220 -502 -81 129 71 543 266 -76 380 -798 -219 286 288 -861 -538 2 634 9 151 -237 5 745 642 372 649 531 -355 -388 -626 288 -447 -191 303 -619 282 350 -237 901 -504 298 -161 468 698 34 921 -960 751 -448 492 -92 -537 -283 101 275 -932 886 444 568 2 -360 -157 -117 137 -971 -296 -981 659 -493 -767 -618 222 -42 162 -208 538 -447 686 -560 -509 672 -410 326 146 379 697 243 -350 611 -276 -860 -490 711 -621 -809 452 32 -364 -494 173 -446 -725 181 508 12 112 251 -258 -511 -744 -479 532 475 -517 574 132 -374 282 793 -640 907 63 -901 994 848 368 -138 -766 64 60 981 -631 482 96 927 -602 528 889 -51 530 361 -405 -684 -386 -272 19 84 -726 731 -263 990 3 284 -647 269 -146 99 136 730 73 442 17 115 457 256 711 110 361 -759 -759 610 874 982 367 -991 257 95 -510 257 -544 298 664 977 -718 640 715 923 658 -873 276 129 -284 -623 786 486 692 -40 -250 68 -24 792 -601 -79 426 -740 638 -368 -480 361 965 803 587 771 -125 -354 217 718 -339 975 -91 729 -292 -189 -391 981 0 0 62 722 -545 56 679 -331 680 763 -243 621 680 -864 7 100 -977 -124 470 -230 902 -729 -12 414 440 618 924 -843 305 688 -306 974 745 -248 -841 -575 581 179 799 -928 339 -45 692 -993 -271 -214 175 730 -521 -468 -193 -908 404 702 304 -473 -856 -731 -253 775 282 785 -254 441 119 903 221 -22 188 -155 -7 56 -841 460 61 -838 338 -234 399 -51 957 697 372 116 -886 650 -604 790 -509 -506 -790 702 575 721 146 142 209 787 776 567 49 858 775 498 837 931 -23 294 193 125 -15 709 725 829 -8 86 756 -404 -112 -109 -471 -55 864 182 456 886 -742 -150 647 -806 -164 98 993 8 -959 726 820 223 -97 -344 996 469 -975 -506 -953 727 484 899 -39 876 340 \n826 124\n127 -213 -712 713 -695 505 -732 353 594 662 759 736 -421 141 591 823 751 854 183 -896 895 104 727 -813 661 -381 497 426 159 -787 -893 558 -830 -725 638 622 -207 975 -83 18 -67 421 -527 942 383 941 786 -978 740 -392 -397 866 -176 702 153 -215 251 735 -193 -764 -619 -418 796 -754 521 -658 -364 -916 82 723 641 268 -159 -202 -727 220 901 122 572 638 -253 712 795 141 -709 -248 907 -817 237 862 945 951 -763 726 881 927 983 980 601 -452 576 573 895 -583 902 -451 -782 140 710 -757 381 227 33 -509 279 769 940 760 -668 525 842 866 599 748 285 207 -542 -925 153 811 982 397 -97 963 412 -987 944 466 -804 -349 466 -997 29 -18 672 -791 -907 -646 7 869 429 -90 137 -771 -693 -529 499 -206 786 -980 -350 -584 449 375 438 -487 912 729 318 462 -449 -952 -137 146 -949 -666 -450 718 583 285 -358 592 636 -880 349 682 610 -288 868 985 470 -941 -974 185 636 -90 -774 352 -499 832 902 735 -830 -827 148 124 -188 -748 192 834 593 581 359 95 -283 184 -315 853 -886 633 937 122 833 807 345 49 22 863 361 382 125 776 962 -965 138 -80 466 236 715 150 409 -300 379 582 228 628 281 -601 957 926 -370 -322 -168 881 266 -890 631 293 -471 -932 144 18 -895 -122 -146 -985 -949 358 747 401 -808 -914 -461 123 228 -417 564 -590 -927 419 -882 389 596 197 -875 604 -12 190 385 119 696 -851 145 -850 -760 581 252 242 -687 462 728 -923 669 231 -92 231 -812 364 -583 -230 -363 6 314 -112 950 -785 985 789 692 324 542 645 328 -628 -774 -89 -824 945 394 264 -233 110 -295 -490 -113 -605 663 169 -419 -89 654 714 -119 883 557 -121 -200 -926 578 -779 -548 -755 -654 -74 79 -813 822 -556 -808 926 603 -267 -474 -568 722 -871 804 229 917 -560 -954 104 224 -292 338 185 836 519 728 149 351 838 -971 331 890 755 813 -880 698 228 -278 852 527 316 -290 555 360 985 559 -142 -214 716 240 71 -661 364 317 664 222 562 304 524 -615 -542 433 -284 -801 658 243 916 -192 394 724 900 199 90 -337 104 -482 672 577 232 298 -29 -181 736 181 -944 198 -688 939 891 311 581 -66 -924 326 -231 -323 -133 -767 -626 714 29 -482 -165 730 653 728 -397 -207 -316 906 75 762 -43 834 530 384 -666 -511 -546 -827 -993 -749 -696 16 -791 891 -635 -8 -151 -331 864 287 725 -270 591 -688 454 654 236 -807 -222 978 559 -885 -151 101 -197 -255 312 -167 373 -807 740 539 -323 162 175 983 344 24 61 -567 -336 -856 -691 -426 -739 185 -787 923 -804 634 -844 609 493 491 896 40 169 393 517 -926 153 -254 156 911 608 -815 -653 378 359 924 -65 -185 129 -675 -214 -669 -319 254 870 495 438 728 184 232 300 -860 438 554 959 246 62 469 -22 -856 346 19 542 439 -719 700 758 -643 -513 51 -715 -154 38 567 125 774 230 947 16 210 698 662 -485 585 554 700 -462 -183 813 -555 -269 454 333 631 501 578 255 -422 -775 -733 -144 412 -647 -852 987 -376 -637 -545 852 238 644 -815 920 331 238 641 403 -148 958 187 553 96 -493 502 221 -361 710 -697 221 -167 -25 -363 539 597 -164 178 -502 665 -645 447 -263 176 969 199 -540 -56 -369 924 -761 956 344 90 -682 620 -982 74 266 -747 543 -338 495 -711 741 851 668 852 122 154 -405 385 631 512 910 489 560 -99 93 500 -997 -410 556 260 898 876 448 272 -104 393 340 172 -994 -968 39 -910 1 599 -881 275 689 958 -442 408 -154 -853 -860 218 599 401 -500 247 698 -460 796 -882 -518 145 252 347 -612 532 468 404 -439 128 500 -5 807 695 381 -881 722 -613 901 455 390 37 558 90 888 611 -63 729 361 -817 410 -728 -715 346 -109 989 409 713 -753 -60 868 51 -838 -619 238 537 -285 230 460 296 -756 -325 435 -177 -70 681 610 616 -704 227 -561 841 405 85 922 614 419 726 247 -10 452 674 659 -514 165 760 295 -679 562 339 687 261 -833 -274 466 303 -75 -415 334 921 -958 -475 -186 276 709 393 -882 166 430 -703 262 -647 203 \n932 919\n827 -213 437 309 479 888 -19 7 -697 167 5 -790 -136 -814 558 -296 17 77 652 521 -258 265 31 -46 567 171 342 908 536 303 -586 479 920 -734 -64 -299 159 133 -867 383 385 892 -472 236 -830 656 -425 826 24 713 363 -324 -936 644 424 -567 -825 -834 -157 855 -571 688 893 906 953 29 380 -147 -940 975 972 -25 926 295 -604 789 375 704 -556 -767 628 723 -930 193 587 94 -73 586 -256 -824 469 -933 995 567 896 -24 -567 -627 279 -830 125 992 429 -957 -287 768 -624 -592 -709 -398 911 -6 -892 596 674 -297 -938 686 498 -552 -19 725 -692 941 -167 341 -979 912 785 207 811 11 170 679 -951 123 588 319 -211 -333 -79 795 -531 -351 264 899 -834 723 -869 36 -372 368 426 967 933 -760 -295 720 375 -802 479 65 639 666 -147 844 864 84 333 341 -592 -621 190 334 838 -154 112 656 34 -175 -412 -448 213 -250 -405 -904 373 -957 739 -106 -698 239 442 881 812 459 -208 984 650 -247 -107 608 676 -447 520 -71 -178 -224 117 971 747 -437 912 -843 -159 334 -501 -967 349 180 -708 747 -718 222 313 183 760 -134 -962 -442 405 173 -180 746 457 651 775 446 -207 -448 109 565 292 982 400 -220 498 836 873 740 -46 -229 561 505 515 -63 -115 652 997 820 -96 -410 71 -804 138 531 -78 -457 970 -284 731 -98 -307 -541 -445 361 -988 499 900 661 601 191 31 -752 -506 -398 623 -994 491 583 -722 28 -146 0 -746 -934 -485 353 -67 -474 505 255 -944 830 -540 155 -294 -46 -940 217 351 24 -77 -137 25 -318 -904 521 -660 327 694 888 448 -887 569 941 140 738 -571 454 32 157 701 418 653 -149 -258 743 79 -589 369 -756 290 293 150 9 -594 806 729 658 89 295 -134 -632 605 907 -204 -39 -120 -544 134 761 -502 650 -421 978 -50 710 -291 562 889 927 538 422 -469 -220 443 927 692 -16 807 673 63 209 -66 -494 243 218 203 -561 859 993 -293 515 -852 641 985 993 175 785 857 947 -195 147 327 -366 -561 174 -36 556 -886 -365 -649 47 -580 301 -898 -234 257 -331 -406 312 223 180 -552 874 610 739 793 133 453 -30 788 154 -621 185 -232 -357 317 370 -90 246 -360 651 312 -411 722 -652 655 -300 464 374 733 21 923 -745 -496 -80 -152 167 630 992 227 -718 -762 -519 408 362 -134 81 409 712 -915 199 219 756 771 781 -24 -957 -207 -220 526 92 -25 -801 55 -784 628 524 239 533 894 474 153 736 -149 -299 643 380 -296 -772 -357 -649 -441 -230 878 16 153 22 334 64 348 -443 493 -915 -969 843 -563 -938 300 750 14 829 -372 -401 40 -356 628 597 -798 793 -598 -118 65 851 211 -540 441 -309 669 -381 -421 -437 -949 496 -492 285 869 491 544 766 16 -615 -469 -128 -997 -215 -78 2 800 133 -497 304 768 885 822 0 154 480 -92 669 140 722 -132 156 803 -291 876 -634 -414 -242 -709 -980 129 662 517 -420 18 739 845 -411 -111 -779 444 234 223 995 763 -767 812 482 399 -279 -80 829 -467 686 781 661 3 -704 443 903 922 604 373 515 380 316 372 878 229 -6 395 24 32 285 922 983 408 369 -115 -130 315 939 544 30 -810 -106 907 -981 459 625 108 970 359 582 870 182 740 269 842 -222 572 59 867 203 -964 11 281 465 430 -405 -606 856 175 -529 -44 878 394 112 357 83 907 -908 17 787 -653 -707 356 824 -588 888 61 -445 300 690 -824 572 -96 115 28 -513 -580 -162 214 781 -164 -618 404 700 834 -321 851 879 -859 -913 90 -547 979 -154 -181 448 301 -398 -347 370 220 708 16 236 669 686 -812 512 530 -707 250 568 616 -85 601 512 898 -428 -566 898 516 -689 632 -360 -433 -484 851 678 406 -174 -102 670 -756 0 509 913 538 122 -360 997 568 557 641 569 717 -266 -226 -947 434 281 -757 586 389 827 -866 189 -263 -639 -949 -58 46 905 109 167 484 70 -750 -245 -174 -281 -88 888 63 -850 166 984 570 -274 255 -251 -443 808 64 473 678 375 328 375 262 413 515 -213 448 -965 0 -303 -829 342 -571 183 -436 -99 956 185 69 -33 -518 630 823 443 281 290 -308 -625 512 -239 663 925 -707 -647 677 981 366 149 -521 -580 -96 133 -830 321 -957 600 793 894 381 -577 -724 242 243 706 349 -655 -46 312 -261 197 507 -178 9 757 -610 350 -836 903 5 260 -795 589 796 -330 -447 -662 203 214 871 -372 -90 -831 316 -229 -268 796 563 710 -376 -715 686 -67 -307 -972 995 0 421 -675 451 -356 552 322 109 217 884 484 489 -637 525 667 -141 -84 731 331 -979 595 137 869 569 254 -246 213 816 -235 320 -380 -53 165 \n848 783\n364 -103 408 614 -401 -146 193 211 352 90 761 -454 -934 78 414 640 -990 506 -526 -655 -573 244 176 59 -823 344 24 -642 545 -220 608 -933 -973 -172 -330 -944 -313 136 487 878 696 857 -755 -523 -375 -304 334 992 713 31 -556 171 196 549 438 -484 145 -118 727 769 -464 769 24 234 2 897 -557 758 -494 101 -349 197 -580 199 -30 323 13 408 959 652 -793 171 924 -866 -335 758 -157 -376 801 132 -831 331 -917 134 -962 203 -269 909 329 695 384 -377 573 -582 71 461 -539 207 -232 -976 633 282 -775 982 989 -877 392 934 854 112 -46 922 177 872 247 321 -885 856 277 -920 199 315 575 -220 103 -299 614 834 313 -446 -105 440 477 92 281 601 799 650 846 453 664 146 520 870 291 89 950 -956 409 663 611 794 406 26 -43 -199 265 228 -507 126 -304 928 551 846 297 209 857 851 250 555 633 611 -107 -552 711 514 783 -61 -139 -510 766 642 -237 -12 -38 853 77 265 -5 399 197 -65 -544 -390 874 -396 752 609 431 404 855 -40 -233 553 319 -785 492 701 -644 -484 -308 -376 -37 496 -509 -204 -31 -971 652 522 418 462 516 460 -218 718 226 -137 647 -421 9 -13 509 471 815 574 517 686 -117 735 -482 670 803 -792 -221 9 394 317 -10 404 -361 -459 -912 448 376 -270 -661 -418 912 269 639 -388 521 -652 28 -834 394 50 140 709 -229 465 58 548 351 384 166 -118 -477 980 141 328 642 874 584 -469 842 71 521 378 -619 -73 -537 102 -974 -75 5 -960 -834 -45 -172 696 313 425 210 -196 601 -159 337 -141 724 906 50 768 321 25 -376 326 129 287 366 332 -883 516 460 75 296 721 22 -65 919 168 -749 335 242 769 236 -81 -744 974 116 712 257 -960 441 -131 373 -712 850 -666 -533 799 381 938 392 646 752 900 -31 -647 -673 518 -818 -249 -624 232 273 729 208 976 428 -835 201 -687 507 389 632 977 854 -189 -718 753 735 262 -365 699 915 -895 302 -88 804 988 774 -533 10 898 -932 845 45 455 884 114 613 600 -207 696 -363 290 -865 179 -973 -26 -306 -467 -565 -252 270 -967 906 -80 -381 -999 158 -799 -219 712 -895 411 193 245 -47 717 874 272 411 -45 367 61 23 141 459 -63 -320 710 792 841 -705 497 360 -782 903 631 949 -377 -253 523 522 271 257 -698 -543 888 149 -898 937 -681 87 24 527 717 841 808 -119 271 105 41 -735 289 -450 806 -356 497 826 598 510 -815 -402 677 -578 -576 961 289 -735 -382 609 766 449 654 216 547 921 448 16 -2 699 -594 384 275 383 -542 -785 138 57 -615 977 -181 257 -824 460 -703 -667 77 -558 -559 -135 648 -66 938 867 117 294 -469 -396 190 669 -355 673 209 -131 749 -760 549 236 301 879 -560 278 194 -460 764 739 -120 453 909 -912 -573 -34 61 -8 716 -101 -384 -202 798 -417 264 998 -580 -592 370 -172 -414 -579 -271 253 -23 622 -533 -32 303 545 379 399 368 449 752 -807 473 797 541 308 950 609 918 -898 -390 366 -69 -357 -540 696 -255 -946 -606 167 661 -900 -345 -7 188 392 91 784 262 216 -735 550 -743 876 789 -946 -696 221 -176 -535 31 -264 -22 709 157 -481 -483 306 -887 -45 814 -468 -446 -623 994 297 -799 -428 -222 135 924 -351 -894 -36 -97 134 -664 -847 215 619 776 869 -652 -27 -549 62 -233 955 737 893 211 446 -373 43 -43 720 546 444 -718 62 513 -336 725 -579 -132 804 646 981 627 -23 705 526 752 221 -860 -532 -979 -119 80 977 319 -545 481 436 -234 603 482 638 -193 248 215 -597 395 346 -409 60 121 -900 374 433 356 -607 622 -47 23 -350 351 42 400 -498 -866 -669 787 -966 -643 -759 504 708 877 -441 512 -894 -412 -185 452 669 -337 -339 150 686 881 123 845 120 270 -436 -53 96 437 669 357 198 679 998 928 13 184 -703 -132 -70 27 -577 -694 949 812 131 348 -498 -484 -807 657 209 -152 834 773 163 -642 -567 531 -988 -815 373 705 -299 151 -316 299 621 817 12 -992 -249 -580 -343 -83 829 -303 122 -131 -872 -746 -8 164 -134 18 -198 900 23 809 464 455 864 564 34 684 33 -603 -824 685 414 796 -743 267 958 -33 186 -871 334 389 694 770 -679 -331", "output": "3426\n0\n10285\n2889\n5762\n2943\n281110\n273671\n286020\n210548\n283474\n183536\n214584\n193135\n189342\n162559\n993\n995\n990\n997\n997\n10338\n4698\n2986\n4985\n14848\n2988\n2892\n43827\n2781\n4806\n2646\n2946\n4904\n2956\n25913\n5658\n2873\n4930\n16327\n21638\n5030\n2190\n7609\n5864\n3842\n2910\n2977\n4664\n3932\n3892\n3970\n5206\n7429\n2981\n2962\n2824\n4929\n2869\n15865\n3678\n2953\n4435\n11407\n4754\n2955\n6698\n6680\n9111\n2942\n2945\n3404\n2944\n3943\n6862\n4894\n12261\n2982\n3879\n3995\n3857\n3856\n4460\n3858\n36526\n2953\n2978\n2922\n2942\n31119\n4806\n4912\n4868\n3805\n2976\n2622\n2967\n9204\n3895\n3950\n3929\n6496\n2985\n1969\n3855\n1985\n6582\n2927\n1943\n1982\n1984\n4286\n2964\n19272\n3918\n2943\n7202\n3687\n1993\n5778\n1979\n9213\n1966\n1997\n2910\n18756\n1996\n1850\n2983\n1986\n1986\n2959\n26780\n1986\n2978\n1982\n1955\n3837\n8239\n13159\n5828\n36666\n1984\n1990\n6728\n1976\n6277\n1992\n1993\n281003\n2916\n3828\n14034\n1994\n4852\n8991\n4843\n1956\n2207\n1988\n1972\n2979\n5855\n1976\n32774\n1988\n4545\n3958\n1988\n2897\n4687\n1996\n1984\n1939\n1995\n1993\n1987\n2960\n1982\n111842\n13969\n1989\n8301\n2617\n1949\n1986\n4207\n3915\n3824\n1986\n1995\n1988\n63241\n5743\n999\n1985\n999\n2961\n6249\n1704\n1950", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/200/D
Solve the following coding problem using the programming language python: Recently, Valery have come across an entirely new programming language. Most of all the language attracted him with template functions and procedures. Let us remind you that templates are tools of a language, designed to encode generic algorithms, without reference to some parameters (e.g., data types, buffer sizes, default values). Valery decided to examine template procedures in this language in more detail. The description of a template procedure consists of the procedure name and the list of its parameter types. The generic type T parameters can be used as parameters of template procedures. A procedure call consists of a procedure name and a list of variable parameters. Let's call a procedure suitable for this call if the following conditions are fulfilled: * its name equals to the name of the called procedure; * the number of its parameters equals to the number of parameters of the procedure call; * the types of variables in the procedure call match the corresponding types of its parameters. The variable type matches the type of a parameter if the parameter has a generic type T or the type of the variable and the parameter are the same. You are given a description of some set of template procedures. You are also given a list of variables used in the program, as well as direct procedure calls that use the described variables. For each call you need to count the number of procedures that are suitable for this call. Input The first line contains a single integer n (1 ≤ n ≤ 1000) — the number of template procedures. The next n lines contain the description of the procedures specified in the following format: "void procedureName (type_1, type_2, ..., type_t)" (1 ≤ t ≤ 5), where void is the keyword, procedureName is the procedure name, type_i is the type of the next parameter. Types of language parameters can be "int", "string", "double", and the keyword "T", which denotes the generic type. The next line contains a single integer m (1 ≤ m ≤ 1000) — the number of used variables. Next m lines specify the description of the variables in the following format: "type variableName", where type is the type of variable that can take values "int", "string", "double", variableName — the name of the variable. The next line contains a single integer k (1 ≤ k ≤ 1000) — the number of procedure calls. Next k lines specify the procedure calls in the following format: "procedureName (var_1, var_2, ..., var_t)" (1 ≤ t ≤ 5), where procedureName is the name of the procedure, var_i is the name of a variable. The lines describing the variables, template procedures and their calls may contain spaces at the beginning of the line and at the end of the line, before and after the brackets and commas. Spaces may be before and after keyword void. The length of each input line does not exceed 100 characters. The names of variables and procedures are non-empty strings of lowercase English letters and numbers with lengths of not more than 10 characters. Note that this is the only condition at the names. Only the specified variables are used in procedure calls. The names of the variables are distinct. No two procedures are the same. Two procedures are the same, if they have identical names and identical ordered sets of types of their parameters. Output On each of k lines print a single number, where the i-th number stands for the number of suitable template procedures for the i-th call. Examples Input 4 void f(int,T) void f(T, T) void foo123 ( int, double, string,string ) void p(T,double) 3 int a string s double x123 5 f(a, a) f(s,a ) foo (a,s,s) f ( s ,x123) proc(a) Output 2 1 0 1 0 Input 6 void f(string,double,int) void f(int) void f ( T ) void procedure(int,double) void f (T, double,int) void f(string, T,T) 4 int a int x string t double val 5 f(t, a, a) f(t,val,a) f(val,a, val) solve300(val, val) f (x) Output 1 3 0 0 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def main(): from collections import defaultdict import sys strings = sys.stdin.read().split('\n') strings.reverse() f = defaultdict(lambda : defaultdict(int)) n = int(strings.pop()) for i in range(n): s = strings.pop().replace('(', ' ').replace(')', ' ').replace(',', ' ') (_, name, *args) = s.split() f[name][tuple(args)] += 1 m = int(strings.pop()) variables = dict((reversed(strings.pop().split()) for j in range(m))) result = [] k = int(strings.pop()) for i in range(k): s = strings.pop().replace('(', ' ').replace(')', ' ').replace(',', ' ') (name, *args) = s.split() count = 0 args = [variables[i] for i in args] N = len(args) for mask in range(1 << N): tmp = tuple(('T' if mask & 1 << i else args[i] for i in range(N))) count += f[name][tmp] result.append(str(count)) print('\n'.join(result)) main() ```
vfc_138459
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/200/D", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\nvoid la3yoe ( int,T, T, T, T ) \nvoid la3yoe (string,string,string, int )\nvoid la3yoe ( int, int,T )\n1\n string ef7w \n2\nla3yoe ( ef7w, ef7w, ef7w, ef7w ) \nla3yoe (ef7w) \n", "output": "0\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1153/E
Solve the following coding problem using the programming language python: This is an interactive problem. Now Serval is a senior high school student in Japari Middle School. However, on the way to the school, he must go across a pond, in which there is a dangerous snake. The pond can be represented as a n × n grid. The snake has a head and a tail in different cells, and its body is a series of adjacent cells connecting the head and the tail without self-intersecting. If Serval hits its head or tail, the snake will bite him and he will die. Luckily, he has a special device which can answer the following question: you can pick a rectangle, it will tell you the number of times one needs to cross the border of the rectangle walking cell by cell along the snake from the head to the tail. The pictures below show a possible snake and a possible query to it, which will get an answer of 4. <image> <image> Today Serval got up too late and only have time to make 2019 queries. As his best friend, can you help him find the positions of the head and the tail? Note that two cells are adjacent if and only if they have a common edge in the grid, and a snake can have a body of length 0, that means it only has adjacent head and tail. Also note that the snake is sleeping, so it won't move while Serval using his device. And what's obvious is that the snake position does not depend on your queries. Input The first line contains a single integer n (2≤ n ≤ 1000) — the size of the grid. Output When you are ready to answer, you should print ! x1 y1 x2 y2, where (x_1, y_1) represents the position of the head and (x_2,y_2) represents the position of the tail. You can print head and tail in any order. Interaction To make a query, you should print ? x1 y1 x2 y2 (1 ≤ x_1 ≤ x_2 ≤ n, 1≤ y_1 ≤ y_2 ≤ n), representing a rectangle consisting of all cells (x,y) such that x_1 ≤ x ≤ x_2 and y_1 ≤ y ≤ y_2. You will get a single integer as the answer. After printing a query, do not forget to output the end of line and flush the output, otherwise you will get Idleness limit exceeded. To do this, use: * fflush(stdout) or cout.flush() in C++; * System.out.flush() in Java; * flush(output) in Pascal; * stdout.flush() in Python; * see documentation for other languages. Answer -1 instead of a valid answer means that you made an invalid query or exceeded the maximum number of queries. Exit immediately after receiving -1 and you will see Wrong answer verdict. Otherwise you can get an arbitrary verdict because your solution will continue to read from a closed stream. If your program cannot find out the head and tail of the snake correctly, you will also get a Wrong Answer verdict. Hacks To make a hack, print a single integer n (2 ≤ n ≤ 1000) in the first line, indicating the size of the grid. Then print an integer k (2 ≤ k ≤ n^2) in the second line, indicating the length of the snake. In the next k lines, print k pairs of integers x_i, y_i (1 ≤ x_i, y_i ≤ n), each pair in a single line, indicating the i-th cell of snake, such that the adjacent pairs are adjacent, and all k pairs are distinct. Examples Input 2 1 0 0 Output ? 1 1 1 1 ? 1 2 1 2 ? 2 2 2 2 ! 1 1 2 1 Input 3 2 0 Output ? 2 2 2 2 ? 2 1 2 3 ! 2 1 2 3 Note <image> <image> <image> <image> The pictures above show our queries and the answers in the first example. We first made a query for (1,1) and got an answer 1, then found that it must be connected to exactly one other cell. Then we made a query for (1,2) and got an answer of 0, then knew that the snake never entered it. So the cell connected to (1,1) must be (2,1). Then we made a query for (2,2) and got an answer 0, then knew that it never entered (2,2) as well. So the snake cannot leave (2,1), which implies that the answer is (1,1) and (2,1). <image> <image> <image> The pictures above show our queries and the answers in the second example. By making query to (2,2) and receiving 2, we found that the snake occupies (2,2). And by making query to rectangle from (2,1) to (2,3) and receiving answer 0, we knew that it never goes out of the rectangle from (2,1) to (2,3). Since the first answer is 2, both (2,1) and (2,3) must be occupied but none of others, so the answer is (2,1) and (2,3). The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys class Main: def __init__(self): self.buff = None self.index = 0 def next(self): if self.buff is None or self.index == len(self.buff): self.buff = sys.stdin.readline().split() self.index = 0 val = self.buff[self.index] self.index += 1 return val def next_int(self): return int(self.next()) def cal(self, s): if len(s) == 1: return s[0] if s[0] == 0: return self.cal(s[1:]) v = 1 for c in s: v *= c return v def q(self, x1, y1, x2, y2): print('? {} {} {} {}'.format(x1, y1, x2, y2)) sys.stdout.flush() return self.next_int() def ans(self, rs): print('! {} {} {} {}'.format(rs[0][0], rs[0][1], rs[1][0], rs[1][1])) sys.stdout.flush() def f(self, c, n): low = 1 high = n while high > low: mid = (high + low) // 2 if self.q(c, low, c, mid) % 2 == 1: high = mid else: low = mid + 1 return (c, low) def g(self, c, n): low = 1 high = n while high > low: mid = (high + low) // 2 if self.q(low, c, mid, c) % 2 == 1: high = mid else: low = mid + 1 return (low, c) def solve(self): n = self.next_int() rs = [] for i in range(0, n): if self.q(i + 1, 1, i + 1, n) % 2 == 1: rs.append(self.f(i + 1, n)) if len(rs) == 2: self.ans(rs) return for i in range(0, n - 1): if self.q(1, i + 1, n, i + 1) % 2 == 1: rs.append(self.g(i + 1, n)) if len(rs) == 2: self.ans(rs) return rs.append(self.g(n, n)) if len(rs) == 2: self.ans(rs) Main().solve() ```
vfc_138463
{ "difficulty": "hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1153/E", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2\n2 1\n1 1\n", "output": "? 1 1 1 2\n? 2 1 2 2\n? 1 1 2 1\n? 1 2 2 2\n? 1 1 1 1\n! 1 1 1 2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/560/E
Solve the following coding problem using the programming language python: Giant chess is quite common in Geraldion. We will not delve into the rules of the game, we'll just say that the game takes place on an h × w field, and it is painted in two colors, but not like in chess. Almost all cells of the field are white and only some of them are black. Currently Gerald is finishing a game of giant chess against his friend Pollard. Gerald has almost won, and the only thing he needs to win is to bring the pawn from the upper left corner of the board, where it is now standing, to the lower right corner. Gerald is so confident of victory that he became interested, in how many ways can he win? The pawn, which Gerald has got left can go in two ways: one cell down or one cell to the right. In addition, it can not go to the black cells, otherwise the Gerald still loses. There are no other pawns or pieces left on the field, so that, according to the rules of giant chess Gerald moves his pawn until the game is over, and Pollard is just watching this process. Input The first line of the input contains three integers: h, w, n — the sides of the board and the number of black cells (1 ≤ h, w ≤ 105, 1 ≤ n ≤ 2000). Next n lines contain the description of black cells. The i-th of these lines contains numbers ri, ci (1 ≤ ri ≤ h, 1 ≤ ci ≤ w) — the number of the row and column of the i-th cell. It is guaranteed that the upper left and lower right cell are white and all cells in the description are distinct. Output Print a single line — the remainder of the number of ways to move Gerald's pawn from the upper left to the lower right corner modulo 109 + 7. Examples Input 3 4 2 2 2 2 3 Output 2 Input 100 100 3 15 16 16 15 99 88 Output 545732279 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import unittest import sys class Chess: N = 200001 MOD = 10 ** 9 + 7 def __init__(self, args): (self.h, self.w, self.imax, self.numa, self.numb) = args self.pt = sorted(zip(self.numa, self.numb)) self.pt.append((self.h, self.w)) self.fact = [1] prev = 1 for i in range(1, self.N): f = prev * i % self.MOD self.fact.append(f) prev = f self.inv = [0] * self.N self.inv[self.N - 1] = self.modInvfact(self.N - 1) for i in range(self.N - 2, -1, -1): self.inv[i] = self.inv[i + 1] * (i + 1) % self.MOD self.ways = [] for i in range(len(self.pt)): (h, w) = self.pt[i] self.ways.append(self.modC(h + w - 2, h - 1)) for j in range(i): (hj, wj) = self.pt[j] if hj <= h and wj <= w: mult = self.modC(h - hj + w - wj, h - hj) self.ways[i] = self.modSub(self.ways[i], self.ways[j] * mult, self.MOD) def modC(self, n, k): return self.fact[n] * (self.inv[k] * self.inv[n - k] % self.MOD) % self.MOD def modInvfact(self, n): return self.modExp(self.fact[n], self.MOD - 2, self.MOD) def modExp(self, n, e, p): res = 1 while e > 0: if e % 2 == 1: res = res * n % p e >>= 1 n = n * n % p return res def modSub(self, a, b, p): return ((a - b) % p + p) % p def calculate(self): result = self.ways[-1] return str(result) def get_inputs(test_inputs=None): it = iter(test_inputs.split('\n')) if test_inputs else None def uinput(): if it: return next(it) else: return sys.stdin.readline() (h, w, imax) = list(map(int, uinput().split())) numnums = list(map(int, ' '.join((uinput() for i in range(imax))).split())) numa = [] numb = [] for i in range(0, 2 * imax, 2): numa.append(numnums[i]) numb.append(numnums[i + 1]) return [h, w, imax, numa, numb] def calculate(test_inputs=None): return Chess(get_inputs(test_inputs)).calculate() class unitTests(unittest.TestCase): def test_Chess_class__basic_functions(self): d = Chess([3, 4, 2, [2, 2], [2, 3]]) self.assertEqual(d.imax, 2) self.assertEqual(d.pt[0], (2, 2)) self.assertEqual(d.modExp(3, 3, 6), 3) self.assertEqual(d.fact[3], 6) self.assertEqual(d.inv[3], d.modInvfact(3)) self.assertEqual(d.modC(4, 2), 6) self.assertEqual(d.ways[0], 2) def test_sample_tests(self): test = '3 4 2\n2 2\n2 3' self.assertEqual(calculate(test), '2') self.assertEqual(get_inputs(test)[0], 3) self.assertEqual(list(get_inputs(test)[3]), [2, 2]) self.assertEqual(list(get_inputs(test)[4]), [2, 3]) test = '100 100 3\n15 16\n16 15\n99 88' self.assertEqual(calculate(test), '545732279') test = '1\n12' test = '1\n12' def test_time_limit_test(self): import random imax = 2000 h = 100000 w = 99000 num = str(imax) test = str(h) + ' ' + str(w) + ' ' + num + '\n' numnums = [str(i) + ' ' + str(i + 1) for i in range(imax)] test += '\n'.join(numnums) + '\n' import timeit start = timeit.default_timer() args = get_inputs(test) init = timeit.default_timer() d = Chess(args) calc = timeit.default_timer() d.calculate() stop = timeit.default_timer() print('\nTime Test: ' + '{0:.3f}s (inp {1:.3f}s init {2:.3f}s calc {3:.3f}s)'.format(stop - start, init - start, calc - init, stop - calc)) sys.setrecursionlimit(100000) if sys.argv[-1] == '-ut': unittest.main(argv=[' ']) sys.stdout.write(calculate()) ```
vfc_138471
{ "difficulty": "hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/560/E", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "100 10 30\n40 4\n15 3\n75 3\n88 10\n32 1\n16 5\n81 8\n45 2\n72 8\n11 6\n86 4\n50 2\n9 4\n11 1\n20 3\n47 3\n2 4\n68 3\n90 5\n85 2\n88 1\n88 5\n86 3\n70 9\n49 3\n34 4\n5 7\n77 5\n50 1\n87 5\n", "output": "402737011\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "100000 100000 2\n1 2\n2 1\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1705/A
Solve the following coding problem using the programming language python: Mark is asked to take a group photo of $2n$ people. The $i$-th person has height $h_i$ units. To do so, he ordered these people into two rows, the front row and the back row, each consisting of $n$ people. However, to ensure that everyone is seen properly, the $j$-th person of the back row must be at least $x$ units taller than the $j$-th person of the front row for each $j$ between $1$ and $n$, inclusive. Help Mark determine if this is possible. -----Input----- The first line contains one integer $t$ ($1\leq t\leq 100$) — the number of test cases. Each test case consists of two lines. The first line of each test case contains two positive integers $n$ and $x$ ($1\leq n\leq 100$, $1\leq x\leq 10^3$) — the number of people in each row and the minimum difference Mark wants. The second line of each test case contains $2n$ positive integers $h_1,h_2,\ldots,h_{2n}$ ($1\leq h_i\leq 10^3$) — the height of each person in units. Note that the sum of $n$ over all test cases is not bounded. -----Output----- For each test case, print a single line containing "YES" if Mark could arrange people satisfying his condition and "NO" otherwise. You may print each letter in any case (for example, YES, Yes, yes, yEs will all be recognized as positive answers). -----Examples----- Input 3 3 6 1 3 9 10 12 16 3 1 2 5 2 2 2 5 1 2 8 6 Output YES NO YES -----Note----- In the first test case, one possible order is to have the third, fifth, and sixth person on the back row and the second, first, and fourth on the front row. The heights of the people will look like this. Back $9$ $12$ $16$ Front $3$ $1$ $10$ It works because $h_3-h_2 = 9-3 \geq 6$, $h_5-h_1 = 12-1\geq 6$, and $h_6-h_4 = 16-10\geq 6$. In the second test case, it can be shown there is no way to order people in a way that satisfies the condition. In the third test case, the only way to arrange people to satisfy the condition is to have the first person on the back row and the second person on the front row. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): (n, x) = map(int, input().split(' ')) h = list(map(int, input().split(' '))) h = sorted(h) for j in range(0, n): if h[n + j] - h[j] < x: print('NO') break else: print('YES') ```
vfc_138476
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1705/A", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3 6\n1 3 9 10 12 16\n3 1\n2 5 2 2 2 5\n1 2\n8 6\n", "output": "YES\nNO\nYES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/ODDSUMPAIR
Solve the following coding problem using the programming language python: Chef has 3 numbers A, B and C. Chef wonders if it is possible to choose *exactly* two numbers out of the three numbers such that their sum is odd. ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - Each test case consists of three integers A, B, C. ------ Output Format ------ For each test case, output YES if you can choose exactly two numbers with odd sum, NO otherwise. The output is case-insensitive. Thus, the strings YES, yes, yeS, and Yes are all considered the same. ------ Constraints ------ $1 ≤ T ≤ 100$ $1 ≤ A, B, C ≤ 10$ ----- Sample Input 1 ------ 4 1 2 3 8 4 6 3 3 9 7 8 6 ----- Sample Output 1 ------ YES NO NO YES ----- explanation 1 ------ Test case 1: Chef can choose $2$ and $3$ since $2 + 3 = 5$ and $5$ is odd. Test case 2: It can be shown that Chef cannot choose two numbers among $8$, $4$ and $6$ with odd sum. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): (a, b, c) = map(int, input().split()) if a % 2 == 1 and b % 2 == 1 and (c % 2 == 1): print('NO') elif a % 2 == 1 or b % 2 == 1 or c % 2 == 1: print('YES') else: print('NO') ```
vfc_138481
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/ODDSUMPAIR", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1 2 3\n8 4 6\n3 3 9\n7 8 6\n", "output": "YES\nNO\nNO\nYES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/805/A
Solve the following coding problem using the programming language python: Tavak and Seyyed are good friends. Seyyed is very funny and he told Tavak to solve the following problem instead of longest-path. You are given l and r. For all integers from l to r, inclusive, we wrote down all of their integer divisors except 1. Find the integer that we wrote down the maximum number of times. Solve the problem to show that it's not a NP problem. -----Input----- The first line contains two integers l and r (2 ≤ l ≤ r ≤ 10^9). -----Output----- Print single integer, the integer that appears maximum number of times in the divisors. If there are multiple answers, print any of them. -----Examples----- Input 19 29 Output 2 Input 3 6 Output 3 -----Note----- Definition of a divisor: https://www.mathsisfun.com/definitions/divisor-of-an-integer-.html The first example: from 19 to 29 these numbers are divisible by 2: {20, 22, 24, 26, 28}. The second example: from 3 to 6 these numbers are divisible by 3: {3, 6}. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (a, b) = map(int, input().split()) print(2 if a != b else a) ```
vfc_138485
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/805/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "19 29\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFCH
Solve the following coding problem using the programming language python: Read problems statements in Mandarin Chinese and Russian. Chef had a hard day and want to play little bit. The game is called "Chain". Chef has the sequence of symbols. Each symbol is either '-' or '+'. The sequence is called Chain if each two neighboring symbols of sequence are either '-+' or '+-'. For example sequence '-+-+-+' is a Chain but sequence '-+-+--+' is not. Help Chef to calculate the minimum number of symbols he need to replace (ex. '-' to '+' or '+' to '-') to receive a Chain sequence. ------ Input ------ First line contains single integer T denoting the number of test cases. Line of each test case contains the string S consisting of symbols '-' and '+'. ------ Output ------ For each test case, in a single line print single interger - the minimal number of symbols Chef needs to replace to receive a Chain. ------ Constraints ------ $1 ≤ T ≤ 7$ $1 ≤ |S| ≤ 10^{5}$ ------ Subtasks ------ $Subtask 1 ≤ |S| ≤ 10, 1 ≤ T ≤ 7 Points: 20 $ $Subtask 1 ≤ |S| ≤ 1000, 1 ≤ T ≤ 7 Points: 30 $ $Subtask 1 ≤ |S| ≤ 10^{5}, 1 ≤ T ≤ 7Points: 50 $ ----- Sample Input 1 ------ 2 ---+-+-+++ ------- ----- Sample Output 1 ------ 2 3 ----- explanation 1 ------ Example case 1. We can change symbol 2 from '-' to '+' and symbol 9 from '+' to '-' and receive '-+-+-+-+-+'. Example case 2. We can change symbols 2, 4 and 6 from '-' to '+' and receive '-+-+-+-'. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import gcd, sqrt, ceil, floor, log10 from heapq import heapify, heappop, heappush, nsmallest, nlargest from collections import Counter, deque, OrderedDict, defaultdict from itertools import combinations, permutations, zip_longest from bisect import bisect_left, bisect_right from functools import lru_cache import sys import time import string sys.setrecursionlimit(3000000) INT_MAX = float('inf') INT_MIN = float('-inf') MOD = int(1000000000.0) + 7 NEWLINE = '\n' SPACE = ' ' inp = lambda fn: fn(input()) inp_vars = lambda fn, delim, convert_to=list: convert_to(map(fn, input().split(delim))) def solve(*args, **kwargs): s = args[0] res1 = res2 = 0 for (idx, ch) in enumerate(s): res1 += idx & 1 and ch == '+' res1 += idx & 1 == 0 and ch == '-' res2 += idx & 1 == 0 and ch == '+' res2 += idx & 1 and ch == '-' return min(res1, res2) def main(*args, **kwargs): for _ in range(int(input())): arg1 = inp(str) res = solve(*(arg1,)) if type(res) in {list, tuple, set}: print(*res, sep='') else: print(res) main() ```
vfc_138489
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFCH", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n---+-+-+++\n-------", "output": "2\n3", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MXEVNSUB
Solve the following coding problem using the programming language python: Read problem statements in [Mandarin], [Bengali], [Russian], and [Vietnamese] as well. You are given an integer N. Consider the sequence containing the integers 1, 2, \ldots, N in increasing order (each exactly once). Find the maximum length of its contiguous subsequence with an even sum. ------ Input Format ------ - The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows. - The first and only line of each test case contains a single integer N. ------ Output Format ------ For each test case, print a single line containing one integer --- the maximum length of a contiguous subsequence with even sum. ------ Constraints ------ $1 ≤ T ≤ 10^{4}$ $2 ≤ N ≤ 10^{4}$ ------ subtasks ------ Subtask #1 (100 points): original constraints ----- Sample Input 1 ------ 3 3 4 5 ----- Sample Output 1 ------ 3 4 4 ----- explanation 1 ------ Example case 1: The optimal choice is to choose the entire sequence, since the sum of all its elements is $1 + 2 + 3 = 6$, which is even. Example case 3: One of the optimal choices is to choose the subsequence $[1, 2, 3, 4]$, which has an even sum. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): n = int(input()) c = n * (n + 1) // 2 if c % 2 == 0: print(n) else: print(n - 1) ```
vfc_138494
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MXEVNSUB", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3\n4\n5", "output": "3\n4\n4", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/RECIPE
Solve the following coding problem using the programming language python: The chef has a recipe he wishes to use for his guests, but the recipe will make far more food than he can serve to the guests. The chef therefore would like to make a reduced version of the recipe which has the same ratios of ingredients, but makes less food. The chef, however, does not like fractions. The original recipe contains only whole numbers of ingredients, and the chef wants the reduced recipe to only contain whole numbers of ingredients as well. Help the chef determine how much of each ingredient to use in order to make as little food as possible. ------ Input ------ Input will begin with an integer T, the number of test cases. Each test case consists of a single line. The line begins with a positive integer N, the number of ingredients. N integers follow, each indicating the quantity of a particular ingredient that is used. ------ Output ------ For each test case, output exactly N space-separated integers on a line, giving the quantity of each ingredient that the chef should use in order to make as little food as possible. ------ Constraints ------ T ≤ 100 2 ≤ N ≤ 50 All ingredient quantities are between 1 and 1000, inclusive. ----- Sample Input 1 ------ 3 2 4 4 3 2 3 4 4 3 15 9 6 ----- Sample Output 1 ------ 1 1 2 3 4 1 5 3 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): a = list(map(int, input().split())) r = a[1:] hcf = 1 for i in range(2, min(r) + 1): for j in r: if j % i != 0: break else: hcf = i new = [] for i in r: new.append(i // hcf) for i in new: print(i, end=' ') print() ```
vfc_138498
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/RECIPE", "time_limit": "0.278837 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n2 4 4\n3 2 3 4\n4 3 15 9 6", "output": "1 1\n2 3 4\n1 5 3 2", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 4 4\n3 2 3 4\n4 3 20 9 6", "output": "1 1\n2 3 4\n3 20 9 6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 4 4\n3 2 1 4\n4 3 15 9 6", "output": "1 1\n2 1 4\n1 5 3 2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 4 4\n3 2 3 4\n4 3 20 9 8", "output": "1 1\n2 3 4\n3 20 9 8\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 4 7\n3 2 1 4\n4 3 15 9 6", "output": "4 7\n2 1 4\n1 5 3 2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 4 4\n3 2 3 6\n4 3 20 9 8", "output": "1 1\n2 3 6\n3 20 9 8\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/AND
Solve the following coding problem using the programming language python: You are given a sequence of N integer numbers A. Calculate the sum of A_{i} AND A_{j} for all the pairs (i, j) where i < j. The AND operation is the Bitwise AND operation, defined as in here. ------ Input ------ The first line of input consists of the integer N. The second line contains N integer numbers - the sequence A. ------ Output ------ Output the answer to the problem on the first line of the output. ------ Scoring ------ Subtask 1 (13 points): N ≤ 1000, A_{i} ≤ 1. Subtask 2 (39 points): N ≤ 1000, A_{i} ≤ 10^{9}. Subtask 3 (21 points): N ≤ 10^{5}, A_{i} ≤ 1. Subtask 4 (27 points): N ≤ 10^{5}, A_{i} ≤ 10^{6}. ----- Sample Input 1 ------ 5 1 2 3 4 5 ----- Sample Output 1 ------ 9 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) l = list(map(int, input().split())) res = 0 count = 0 for i in range(32): for j in range(n): if l[j] & 1: count += 1 l[j] >>= 1 res += count * (count - 1) // 2 * 2 ** i count = 0 print(res) ```
vfc_138507
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/AND", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n1 2 3 4 5", "output": "9", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n2 2 3 4 5", "output": "11\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n2 2 6 4 5", "output": "18\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1203/F2
Solve the following coding problem using the programming language python: The only difference between easy and hard versions is that you should complete all the projects in easy version but this is not necessary in hard version. Polycarp is a very famous freelancer. His current rating is $r$ units. Some very rich customers asked him to complete some projects for their companies. To complete the $i$-th project, Polycarp needs to have at least $a_i$ units of rating; after he completes this project, his rating will change by $b_i$ (his rating will increase or decrease by $b_i$) ($b_i$ can be positive or negative). Polycarp's rating should not fall below zero because then people won't trust such a low rated freelancer. Polycarp can choose the order in which he completes projects. Furthermore, he can even skip some projects altogether. To gain more experience (and money, of course) Polycarp wants to choose the subset of projects having maximum possible size and the order in which he will complete them, so he has enough rating before starting each project, and has non-negative rating after completing each project. Your task is to calculate the maximum possible size of such subset of projects. -----Input----- The first line of the input contains two integers $n$ and $r$ ($1 \le n \le 100, 1 \le r \le 30000$) — the number of projects and the initial rating of Polycarp, respectively. The next $n$ lines contain projects, one per line. The $i$-th project is represented as a pair of integers $a_i$ and $b_i$ ($1 \le a_i \le 30000$, $-300 \le b_i \le 300$) — the rating required to complete the $i$-th project and the rating change after the project completion. -----Output----- Print one integer — the size of the maximum possible subset (possibly, empty) of projects Polycarp can choose. -----Examples----- Input 3 4 4 6 10 -2 8 -1 Output 3 Input 5 20 45 -6 34 -15 10 34 1 27 40 -45 Output 5 Input 3 2 300 -300 1 299 1 123 Output 3 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from __future__ import division, print_function from fractions import Fraction import sys import os from io import BytesIO, IOBase from itertools import * import bisect from heapq import * from math import ceil, floor from copy import * from collections import deque, defaultdict from collections import Counter as counter from itertools import combinations from itertools import permutations as permutate from bisect import bisect_left as bl from operator import * from bisect import bisect_right as br from bisect import bisect BUFSIZE = 8192 from sys import stderr class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = 'x' in file.mode or 'r' not in file.mode self.write = self.buffer.write if self.writable else None def read(self): while True: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) if not b: break ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines = 0 return self.buffer.read() def readline(self): while self.newlines == 0: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) self.newlines = b.count(b'\n') + (not b) ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines -= 1 return self.buffer.readline() def flush(self): if self.writable: os.write(self._fd, self.buffer.getvalue()) (self.buffer.truncate(0), self.buffer.seek(0)) class IOWrapper(IOBase): def __init__(self, file): self.buffer = FastIO(file) self.flush = self.buffer.flush self.writable = self.buffer.writable self.write = lambda s: self.buffer.write(s.encode('ascii')) self.read = lambda : self.buffer.read().decode('ascii') self.readline = lambda : self.buffer.readline().decode('ascii') def print(*args, **kwargs): (sep, file) = (kwargs.pop('sep', ' '), kwargs.pop('file', sys.stdout)) at_start = True for x in args: if not at_start: file.write(sep) file.write(str(x)) at_start = False file.write(kwargs.pop('end', '\n')) if kwargs.pop('flush', False): file.flush() if sys.version_info[0] < 3: (sys.stdin, sys.stdout) = (FastIO(sys.stdin), FastIO(sys.stdout)) else: (sys.stdin, sys.stdout) = (IOWrapper(sys.stdin), IOWrapper(sys.stdout)) from types import GeneratorType def iterative(f, stack=[]): def wrapped_func(*args, **kwargs): if stack: return f(*args, **kwargs) to = f(*args, **kwargs) while True: if type(to) is GeneratorType: stack.append(to) to = next(to) continue stack.pop() if not stack: break to = stack[-1].send(to) return to return wrapped_func mod = 1000000007 def inp(): return sys.stdin.readline().rstrip('\r\n') def out(var): sys.stdout.write(str(var)) def lis(): return list(map(int, inp().split())) def stringlis(): return list(map(str, inp().split())) def sep(): return map(int, inp().split()) def strsep(): return map(str, inp().split()) def fsep(): return map(float, inp().split()) def nextline(): out('\n') def testcase(t): for p in range(t): solve() def pow(x, y, p): res = 1 x = x % p if x == 0: return 0 while y > 0: if y & 1 == 1: res = res * x % p y = y >> 1 x = x * x % p return res from functools import reduce def factors(n): return set(reduce(list.__add__, ([i, n // i] for i in range(1, int(n ** 0.5) + 1) if n % i == 0))) def gcd(a, b): if a == b: return a while b > 0: (a, b) = (b, a % b) return a def prefix_sum(ar): return list(accumulate(ar)) def suffix_sum(ar): return list(accumulate(ar[::-1]))[::-1] def N(): return int(inp()) dx = [0, 0, 1, -1] dy = [1, -1, 0, 0] from collections import defaultdict def numberOfSetBits(i): i = i - (i >> 1 & 1431655765) i = (i & 858993459) + (i >> 2 & 858993459) return ((i + (i >> 4) & 252645135) * 16843009 & 4294967295) >> 24 from decimal import * def solve(): class SegmentTree: def __init__(self, data, default=0, func=max): self._default = default self._func = func self._len = len(data) self._size = _size = 1 << (self._len - 1).bit_length() self.data = [default] * _size + data + [default] * (_size - self._len) for i in range(_size - 1, -1, -1): self.data[i] = func(self.data[2 * i], self.data[2 * i + 1]) def __delitem__(self, idx): self[idx] = self._default def __getitem__(self, idx): return self.data[idx + self._size] def __setitem__(self, idx, value): idx += self._size self.data[idx] = value idx >>= 1 while idx: self.data[idx] = self._func(self.data[2 * idx], self.data[2 * idx + 1]) idx >>= 1 def __len__(self): return self._len def query(self, start, stop): start += self._size stop += self._size res_left = res_right = self._default while start < stop: if start & 1: res_left = self._func(res_left, self.data[start]) start += 1 if stop & 1: stop -= 1 res_right = self._func(self.data[stop], res_right) start >>= 1 stop >>= 1 return self._func(res_left, res_right) def __repr__(self): return 'SegmentTree({0})'.format(self.data) (n, r) = sep() posrat = [] negrat = [] c = 0 for _ in range(n): (a, b) = sep() if b >= 0: posrat.append((a, b)) else: negrat.append((a, b)) posrat.sort() def f(x): return x[0] + x[1] negrat.sort(reverse=True, key=f) cr = r for i in posrat: (ai, bi) = i if ai <= cr: c += 1 cr += bi l = len(negrat) R = cr dp = [[0] * (R + 1) for _ in range(l + 1)] for i in range(1, l + 1): for j in range(R, -1, -1): dp[i][j] = dp[i - 1][j] if j - negrat[i - 1][1] >= negrat[i - 1][0] and j - negrat[i - 1][1] <= R: dp[i][j] = max(dp[i][j], dp[i - 1][j - negrat[i - 1][1]] + 1) m = 0 for i in range(1, l + 1): for j in range(R, -1, -1): m = max(m, dp[i][j]) print(m + c) solve() ```
vfc_138511
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1203/F2", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 4\n4 6\n10 -2\n8 -1\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 20\n45 -6\n34 -15\n10 34\n1 27\n40 -45\n", "output": "5\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 2\n300 -300\n1 299\n1 123\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "20 15000\n57 -299\n354 -298\n156 -298\n102 -298\n862 -300\n134 -300\n1446 -289\n23 -298\n1012 -298\n901 -300\n97 -300\n172 -297\n108 -265\n209 -294\n307 -300\n28 -295\n1021 -295\n666 -296\n83 -298\n469 -298\n", "output": "20\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "20 1000\n37 -298\n112 -288\n29 -298\n27 -298\n334 -295\n723 -298\n139 -286\n375 -296\n19 -296\n319 -300\n323 -295\n44 -300\n237 -296\n100 -296\n370 -300\n285 -299\n359 -300\n71 -297\n459 -299\n745 -298\n", "output": "3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/distance-between-2-points3200/1
Solve the following coding problem using the programming language python: Given coordinates of 2 points on a cartesian plane, find the distance between them rounded up to nearest integer. Example 1: Input: 0 0 2 -2 Output: 3 Explanation: Distance between (0, 0) and (2, -2) is 3. Example 2: Input: -20 23 -15 68 Output: 45 Explanation: Distance between (-20, 23) and (-15, 68) is 45. Your Task: You don't need to read or print anything. Your task is to complete the function distance() which takes x1, y1, x2 and y2 as input parameter and returns the distance between the given two points. Expected Time Complexity: O(1) Expected Space Complexity: O(1) Constraints: -1000 <= x1, y1, x2, y2 <= 1000 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def distance(self, x1, y1, x2, y2): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def distance(self, x1, y1, x2, y2): a = (x1 - x2) ** 2 b = (y1 - y2) ** 2 return round((a + b) ** 0.5) ```
vfc_138515
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/distance-between-2-points3200/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "0 0 2 -2", "output": "3", "type": "stdin_stdout" }, { "fn_name": null, "input": "-20 23 -15 68", "output": "45", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/easy-query3301/1
Solve the following coding problem using the programming language python: You are given an array nums of size n and q queries. Now for each query of the form l, r and k, output the kth smallest number in sub-array between l and r. Example 1: Input: nums = {4, 1, 2, 2, 3}, Query = {{1, 5, 2}, {3, 5, 3}} Output: {2, 3} Explanation: For the 1st query 2nd smallest in [1, 5] is 2. For the 2nd query 3rd smallest in [3, 5] is 3. Example 2: Input: nums = {1, 2, 3, 4, 5}, Query = {{2, 5, 1}} Output: {2} Explanation: The 1st smallest in [2, 5] is 2. Your Task: You don't need to read or print anyhting. Your Task is to complete the function FindQuery() which takes nums and Query as input parameter and returns a list containing kth smallest for every query. Expected Time Complexity: O(nlog(n)) Expected Space Complexity: O(n) Constraints: 1 <= n <= 15000 1 <= nums[i] <= n 1 <= no. of queries <= 10^{4} 1 <= l <= r <= n 1 <= k <= r-l+1 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def FindQuery(self, nums, Query): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def FindQuery(self, z, Query): dp = {} def sort(i, j): m = (i + j) // 2 a = i b = m + 1 z = [] while a <= m and b <= j: if x[a] <= x[b]: z.append(x[a]) a += 1 else: z.append(x[b]) b += 1 z += x[a:m + 1] + x[b:j + 1] dp[i, j] = z x[i:j + 1] = z def merge(i, j): if i == j: dp[i, i] = [x[i]] return m = (i + j) // 2 merge(i, m) merge(m + 1, j) sort(i, j) def f(i, j, ii, jj, k): if len(dp[i, j]) == 1: return dp[i, j][0] def binse_1(x, e): i = 0 j = len(x) - 1 ans = -1 while i <= j: m = (i + j) // 2 if x[m] >= e: ans = m j = m - 1 else: i = m + 1 return ans def binse_2(x, e): i = 0 j = len(x) - 1 ans = -1 while i <= j: m = (i + j) // 2 if x[m] <= e: ans = m i = m + 1 else: j = m - 1 return ans m = (i + j) // 2 aaa = binse_1(dp[i, m], ii) bbb = binse_2(dp[i, m], jj) size = 0 if aaa == -1 or bbb == -1 else bbb - aaa + 1 if k <= size: return f(i, m, ii, jj, k) else: return f(m + 1, j, ii, jj, k - size) l = len(z) x = [(z[i], i) for i in range(l)] x.sort() x = [x[i][1] for i in range(l)] merge(0, l - 1) res = [] for (i, j, k) in Query: res.append(z[f(0, l - 1, i - 1, j - 1, k)]) return res ```
vfc_138516
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/easy-query3301/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "nums = {4, 1, 2, 2, 3},\nQuery = {{1, 5, 2}, {3, 5, 3}}", "output": "{2, 3}", "type": "stdin_stdout" }, { "fn_name": null, "input": "nums = {1, 2, 3, 4, 5},\nQuery = {{2, 5, 1}}", "output": "{2}", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/print-the-pattern-set-1/1
Solve the following coding problem using the programming language python: You are given a number N. You need to print the pattern for the given value of N. For N = 2 the pattern will be 2 2 1 1 2 1 For N = 3 the pattern will be 3 3 3 2 2 2 1 1 1 3 3 2 2 1 1 3 2 1 Note: Instead of printing a new line print a "$" without quotes. After printing the total output, end of the line is expected. Example 1: Input: 2 Output: 2 2 1 1 $2 1 $ Example 2: Input: 3 Output: 3 3 3 2 2 2 1 1 1 $3 3 2 2 1 1 $3 2 1 $ Your Task: Since this is a function problem, you don't need to worry about the test cases. Your task is to complete the function printPat() which takes one argument 'N' denoting the length of the pattern. Constraints: 1 <= N <= 40 Write your solution by modifying this code: ```python def printPat(n): #Code here ``` Your solution should implemented in the function "printPat". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python def printPat(n): for k in range(0, n): for i in range(n, 0, -1): for j in range(0, n - k): print(i, end=' ') print('$', end='') if i == 1: print() ```
vfc_138521
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/print-the-pattern-set-1/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "printPat", "input": "2", "output": "2 2 1 1 $2 1 $", "type": "function_call" }, { "fn_name": "printPat", "input": "3", "output": "3 3 3 2 2 2 1 1 1 $3 3 2 2 1 1 $3 2 1 $", "type": "function_call" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/483/D
Solve the following coding problem using the programming language python: We'll call an array of n non-negative integers a[1], a[2], ..., a[n] interesting, if it meets m constraints. The i-th of the m constraints consists of three integers li, ri, qi (1 ≤ li ≤ ri ≤ n) meaning that value <image> should be equal to qi. Your task is to find any interesting array of n elements or state that such array doesn't exist. Expression x&y means the bitwise AND of numbers x and y. In programming languages C++, Java and Python this operation is represented as "&", in Pascal — as "and". Input The first line contains two integers n, m (1 ≤ n ≤ 105, 1 ≤ m ≤ 105) — the number of elements in the array and the number of limits. Each of the next m lines contains three integers li, ri, qi (1 ≤ li ≤ ri ≤ n, 0 ≤ qi < 230) describing the i-th limit. Output If the interesting array exists, in the first line print "YES" (without the quotes) and in the second line print n integers a[1], a[2], ..., a[n] (0 ≤ a[i] < 230) decribing the interesting array. If there are multiple answers, print any of them. If the interesting array doesn't exist, print "NO" (without the quotes) in the single line. Examples Input 3 1 1 3 3 Output YES 3 3 3 Input 3 2 1 3 3 1 3 2 Output NO The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import os, sys from io import BytesIO, IOBase def main(): (n, m) = map(int, input().split()) dp = [[0] * 30 for _ in range(n + 2)] op = [] for _ in range(m): op.append(tuple(map(int, input().split()))) (l, r, q) = op[-1] (mask, cou) = (1, 29) while mask <= q: if mask & q: dp[l][cou] += 1 dp[r + 1][cou] -= 1 cou -= 1 mask <<= 1 ans = [[0] * 30 for _ in range(n)] for i in range(30): a = 0 for j in range(n): a += dp[j + 1][i] dp[j + 1][i] = dp[j][i] if a: ans[j][i] = 1 dp[j + 1][i] += 1 for i in op: (l, r, q) = i mask = 1 for cou in range(29, -1, -1): if not mask & q and dp[r][cou] - dp[l - 1][cou] == r - l + 1: print('NO') return mask <<= 1 for i in range(n): ans[i] = int(''.join(map(str, ans[i])), 2) print('YES') print(*ans) BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = 'x' in file.mode or 'r' not in file.mode self.write = self.buffer.write if self.writable else None def read(self): while True: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) if not b: break ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines = 0 return self.buffer.read() def readline(self): while self.newlines == 0: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) self.newlines = b.count(b'\n') + (not b) ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines -= 1 return self.buffer.readline() def flush(self): if self.writable: os.write(self._fd, self.buffer.getvalue()) (self.buffer.truncate(0), self.buffer.seek(0)) class IOWrapper(IOBase): def __init__(self, file): self.buffer = FastIO(file) self.flush = self.buffer.flush self.writable = self.buffer.writable self.write = lambda s: self.buffer.write(s.encode('ascii')) self.read = lambda : self.buffer.read().decode('ascii') self.readline = lambda : self.buffer.readline().decode('ascii') (sys.stdin, sys.stdout) = (IOWrapper(sys.stdin), IOWrapper(sys.stdout)) input = lambda : sys.stdin.readline().rstrip('\r\n') main() ```
vfc_138522
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/483/D", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 2\n1 1 1\n1 1 3\n", "output": "NO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n1 1 10\n", "output": "YES\n10\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/981/A
Solve the following coding problem using the programming language python: A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1 \leq l \leq r \leq |s|$) of a string $s = s_{1}s_{2} \ldots s_{|s|}$ is the string $s_{l}s_{l + 1} \ldots s_{r}$. Anna does not like palindromes, so she makes her friends call her Ann. She also changes all the words she reads in a similar way. Namely, each word $s$ is changed into its longest substring that is not a palindrome. If all the substrings of $s$ are palindromes, she skips the word at all. Some time ago Ann read the word $s$. What is the word she changed it into? -----Input----- The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only. -----Output----- If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique. -----Examples----- Input mew Output 3 Input wuffuw Output 5 Input qqqqqqqq Output 0 -----Note----- "mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All substrings of the string "qqqqqqqq" consist of equal characters so they are palindromes. This way, there are no non-palindrome substrings. Thus, the answer for the third example is $0$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ch = input() while ch == ch[::-1] and len(ch) >= 1: ch = ch[:-1] if len(ch) == 1: print(0) else: print(len(ch)) ```
vfc_138527
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/981/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "mew\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "wuffuw\n", "output": "5\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "qqqqqqqq\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "ijvji\n", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "iiiiiii\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/matrix-chain-multiplication0303/1
Solve the following coding problem using the programming language python: Given a sequence of matrices, find the most efficient way to multiply these matrices together. The efficient way is the one that involves the least number of multiplications. The dimensions of the matrices are given in an array arr[] of size N (such that N = number of matrices + 1) where the i^{th} matrix has the dimensions (arr[i-1] x arr[i]). Example 1: Input: N = 5 arr = {40, 20, 30, 10, 30} Output: 26000 Explaination: There are 4 matrices of dimension 40x20, 20x30, 30x10, 10x30. Say the matrices are named as A, B, C, D. Out of all possible combinations, the most efficient way is (A*(B*C))*D. The number of operations are - 20*30*10 + 40*20*10 + 40*10*30 = 26000. Example 2: Input: N = 4 arr = {10, 30, 5, 60} Output: 4500 Explaination: The matrices have dimensions 10*30, 30*5, 5*60. Say the matrices are A, B and C. Out of all possible combinations,the most efficient way is (A*B)*C. The number of multiplications are - 10*30*5 + 10*5*60 = 4500. Your Task: You do not need to take input or print anything. Your task is to complete the function matrixMultiplication() which takes the value N and the array arr[] as input parameters and returns the minimum number of multiplication operations needed to be performed. Expected Time Complexity: O(N^{3}) Expected Auxiliary Space: O(N^{2}) Constraints: 2 ≤ N ≤ 100 1 ≤ arr[i] ≤ 500 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def matrixMultiplication(self, N, arr): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def matrixMultiplication(self, N, arr): maxint = 10 ** 9 + 7 table = [[0 for _ in range(N)] for _ in range(N)] for i in range(N): table[i][i] = 0 for L in range(2, N): for i in range(1, N - L + 1): j = i + L - 1 table[i][j] = maxint for k in range(i, j): Q = table[i][k] + table[k + 1][j] + arr[i - 1] * arr[k] * arr[j] table[i][j] = min(Q, table[i][j]) return table[1][N - 1] ```
vfc_138531
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/matrix-chain-multiplication0303/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 5\narr = {40, 20, 30, 10, 30}", "output": "26000", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 4\narr = {10, 30, 5, 60}", "output": "4500", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/649/B
Solve the following coding problem using the programming language python: Есть n-подъездный дом, в каждом подъезде по m этажей, и на каждом этаже каждого подъезда ровно k квартир. Таким образом, в доме всего n·m·k квартир. Они пронумерованы естественным образом от 1 до n·m·k, то есть первая квартира на первом этаже в первом подъезде имеет номер 1, первая квартира на втором этаже первого подъезда имеет номер k + 1 и так далее. Особенность этого дома состоит в том, что он круглый. То есть если обходить его по часовой стрелке, то после подъезда номер 1 следует подъезд номер 2, затем подъезд номер 3 и так далее до подъезда номер n. После подъезда номер n снова идёт подъезд номер 1. Эдвард живёт в квартире номер a, а Наташа — в квартире номер b. Переход на 1 этаж вверх или вниз по лестнице занимает 5 секунд, переход от двери подъезда к двери соседнего подъезда — 15 секунд, а переход в пределах одного этажа одного подъезда происходит мгновенно. Также в каждом подъезде дома есть лифт. Он устроен следующим образом: он всегда приезжает ровно через 10 секунд после вызова, а чтобы переместить пассажира на один этаж вверх или вниз, лифт тратит ровно 1 секунду. Посадка и высадка происходят мгновенно. Помогите Эдварду найти минимальное время, за которое он сможет добраться до квартиры Наташи. Считайте, что Эдвард может выйти из подъезда только с первого этажа соответствующего подъезда (это происходит мгновенно). Если Эдвард стоит перед дверью какого-то подъезда, он может зайти в него и сразу окажется на первом этаже этого подъезда (это также происходит мгновенно). Эдвард может выбирать, в каком направлении идти вокруг дома. -----Входные данные----- В первой строке входных данных следуют три числа n, m, k (1 ≤ n, m, k ≤ 1000) — количество подъездов в доме, количество этажей в каждом подъезде и количество квартир на каждом этаже каждого подъезда соответственно. Во второй строке входных данных записаны два числа a и b (1 ≤ a, b ≤ n·m·k) — номера квартир, в которых живут Эдвард и Наташа, соответственно. Гарантируется, что эти номера различны. -----Выходные данные----- Выведите единственное целое число — минимальное время (в секундах), за которое Эдвард сможет добраться от своей квартиры до квартиры Наташи. -----Примеры----- Входные данные 4 10 5 200 6 Выходные данные 39 Входные данные 3 1 5 7 2 Выходные данные 15 -----Примечание----- В первом тестовом примере Эдвард находится в 4 подъезде на 10 этаже, а Наташа находится в 1 подъезде на 2 этаже. Поэтому Эдварду выгодно сначала спуститься на лифте на первый этаж (на это он потратит 19 секунд, из которых 10 — на ожидание и 9 — на поездку на лифте), затем обойти дом против часовой стрелки до подъезда номер 1 (на это он потратит 15 секунд), и наконец подняться по лестнице на этаж номер 2 (на это он потратит 5 секунд). Таким образом, ответ равен 19 + 15 + 5 = 39. Во втором тестовом примере Эдвард живёт в подъезде 2 на этаже 1, а Наташа находится в подъезде 1 на этаже 1. Поэтому Эдварду выгодно просто обойти дом по часовой стрелке до подъезда 1, на это он потратит 15 секунд. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m, k) = map(int, input().split()) (a, b) = map(int, input().split()) a -= 1 b -= 1 def p(x): return x // (m * k) def e(x): return (x - p(x) * m * k) // k def lift(x): return min(5 * x, 10 + x) if p(a) == p(b): dif = abs(e(a) - e(b)) print(lift(dif)) else: print(lift(e(a)) + 15 * min((p(a) - p(b) + n) % n, (p(b) - p(a) + n) % n) + lift(e(b))) ```
vfc_138532
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/649/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4 10 5\n200 6\n", "output": "39\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 1 5\n7 2\n", "output": "15\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "100 100 100\n1 1000000\n", "output": "124\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1000 1000 1000\n1 1000000000\n", "output": "1024\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "125 577 124\n7716799 6501425\n", "output": "1268\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "624 919 789\n436620192 451753897\n", "output": "509\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CLOSEVOWEL
Solve the following coding problem using the programming language python: Chef considers a string consisting of lowercase English alphabets *beautiful* if all the characters of the string are vowels. Chef has a string S consisting of lowercase English alphabets, of length N. He wants to convert S into a *beautiful* string T. In order to do so, Chef does the following operation on every character of the string: If the character is a consonant, change the character to its closest vowel. If the character is a vowel, don't change it. Chef realizes that the final string T is not unique. Chef wonders, what is the total number of distinct *beautiful* strings T that can be obtained by performing the given operations on the string S. Since the answer can be huge, print it modulo 10^{9} + 7. Note: There are 26 characters in the English alphabet. Five of these characters are vowels: a, e, i, o, and u. The remaining 21 characters are consonants. The closest vowel to a consonant is the vowel that is least distant from that consonant. For example, the distance between the characters d and e is 1 while the distance between the characters d and a is 3. The distance between the characters z and a is 25 and not 1. ------ Input Format ------ - The first line of input will contain an integer T — the number of test cases. The description of T test cases follows. - The first line of each test case contains an integer N, denoting the length of the string S. - The second line of each test case contains a string S consisting of lowercase English alphabets. ------ Output Format ------ For each test case, output the total number of distinct *beautiful* strings T that can be obtained by performing the given operations on the string S, modulo 10^{9} + 7. ------ Constraints ------ $1 ≤ T ≤ 1000$ $1 ≤ N ≤ 10^{5}$ - Sum of $N$ over all test cases does not exceed $10^{5}$. ----- Sample Input 1 ------ 4 5 aeiou 5 abcde 8 starters 8 codechef ----- Sample Output 1 ------ 1 2 4 4 ----- explanation 1 ------ Test case $1$: All the characters of the string $S$ are vowels. Thus, none of the characters would be changed. The resulting string $T$ will be aeiou. Test case $2$:There are $2$ possible strings that can be obtained by performing the given operations on the string $S$. Those are aaaee and aaeee. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) s = input() c = 0 for i in s: if i == 'c' or i == 'g' or i == 'l' or (i == 'r'): c += 1 print(2 ** c % (10 ** 9 + 7)) ```
vfc_138537
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CLOSEVOWEL", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n5\naeiou\n5\nabcde\n8\nstarters\n8\ncodechef\n", "output": "1\n2\n4\n4", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/611/C
Solve the following coding problem using the programming language python: They say "years are like dominoes, tumbling one after the other". But would a year fit into a grid? I don't think so. Limak is a little polar bear who loves to play. He has recently got a rectangular grid with h rows and w columns. Each cell is a square, either empty (denoted by '.') or forbidden (denoted by '#'). Rows are numbered 1 through h from top to bottom. Columns are numbered 1 through w from left to right. Also, Limak has a single domino. He wants to put it somewhere in a grid. A domino will occupy exactly two adjacent cells, located either in one row or in one column. Both adjacent cells must be empty and must be inside a grid. Limak needs more fun and thus he is going to consider some queries. In each query he chooses some rectangle and wonders, how many way are there to put a single domino inside of the chosen rectangle? -----Input----- The first line of the input contains two integers h and w (1 ≤ h, w ≤ 500) – the number of rows and the number of columns, respectively. The next h lines describe a grid. Each line contains a string of the length w. Each character is either '.' or '#' — denoting an empty or forbidden cell, respectively. The next line contains a single integer q (1 ≤ q ≤ 100 000) — the number of queries. Each of the next q lines contains four integers r1_{i}, c1_{i}, r2_{i}, c2_{i} (1 ≤ r1_{i} ≤ r2_{i} ≤ h, 1 ≤ c1_{i} ≤ c2_{i} ≤ w) — the i-th query. Numbers r1_{i} and c1_{i} denote the row and the column (respectively) of the upper left cell of the rectangle. Numbers r2_{i} and c2_{i} denote the row and the column (respectively) of the bottom right cell of the rectangle. -----Output----- Print q integers, i-th should be equal to the number of ways to put a single domino inside the i-th rectangle. -----Examples----- Input 5 8 ....#..# .#...... ##.#.... ##..#.## ........ 4 1 1 2 3 4 1 4 1 1 2 4 5 2 5 5 8 Output 4 0 10 15 Input 7 39 ....................................... .###..###..#..###.....###..###..#..###. ...#..#.#..#..#.........#..#.#..#..#... .###..#.#..#..###.....###..#.#..#..###. .#....#.#..#....#.....#....#.#..#..#.#. .###..###..#..###.....###..###..#..###. ....................................... 6 1 1 3 20 2 10 6 30 2 10 7 30 2 2 7 7 1 7 7 7 1 8 7 8 Output 53 89 120 23 0 2 -----Note----- A red frame below corresponds to the first query of the first sample. A domino can be placed in 4 possible ways. [Image] The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = map(int, input().split()) a = [] for _ in range(n): x = list(input().strip()) a.append(x) hor = [[0 for _ in range(m)] for _ in range(n)] ver = [[0 for _ in range(m)] for _ in range(n)] for i in range(n): for j in range(m): if i - 1 >= 0 and j - 1 >= 0: hor[i][j] -= hor[i - 1][j - 1] ver[i][j] -= ver[i - 1][j - 1] if i - 1 >= 0: hor[i][j] += hor[i - 1][j] ver[i][j] += ver[i - 1][j] if j - 1 >= 0: hor[i][j] += hor[i][j - 1] ver[i][j] += ver[i][j - 1] if j - 1 >= 0 and a[i][j - 1] == '.' and (a[i][j] == '.'): hor[i][j] += 1 if i - 1 >= 0 and a[i - 1][j] == '.' and (a[i][j] == '.'): ver[i][j] += 1 q = int(input()) for _ in range(q): (r1, c1, r2, c2) = map(int, input().split()) r1 -= 1 c1 -= 1 r2 -= 1 c2 -= 1 val = hor[r2][c2] + ver[r2][c2] val -= hor[r2][c1] if r1 - 1 >= 0: val += hor[r1 - 1][c1] val -= hor[r1 - 1][c2] val -= ver[r1][c2] if c1 - 1 >= 0: val += ver[r1][c1 - 1] val -= ver[r2][c1 - 1] print(val) ```
vfc_138541
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/611/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 8\n....#..#\n.#......\n##.#....\n##..#.##\n........\n4\n1 1 2 3\n4 1 4 1\n1 2 4 5\n2 5 5 8\n", "output": "4\n0\n10\n15\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 39\n.......................................\n.###..###..#..###.....###..###..#..###.\n...#..#.#..#..#.........#..#.#..#..#...\n.###..#.#..#..###.....###..#.#..#..###.\n.#....#.#..#....#.....#....#.#..#..#.#.\n.###..###..#..###.....###..###..#..###.\n.......................................\n6\n1 1 3 20\n2 10 6 30\n2 10 7 30\n2 2 7 7\n1 7 7 7\n1 8 7 8\n", "output": "53\n89\n120\n23\n0\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/pairs-with-specific-difference1533/1
Solve the following coding problem using the programming language python: Given an array of integers, arr[] and a number, K.You can pair two numbers of the array if the difference between them is strictly less than K. The task is to find the maximum possible sum of such disjoint pairs (i.e., each element of the array can be used at most once). The Sum of P pairs is the sum of all 2P elements of pairs. Example 1: Input : arr[] = {3, 5, 10, 15, 17, 12, 9} K = 4 Output : 62 Explanation : Then disjoint pairs with difference less than K are, (3, 5), (10, 12), (15, 17) max sum which we can get is 3 + 5 + 10 + 12 + 15 + 17 = 62 Note that an alternate way to form disjoint pairs is,(3, 5), (9, 12), (15, 17) but this pairing produces less sum. Example 2: Input : arr[] = {5, 15, 10, 300} K = 12 Output : 25 Your Task: You don't need to read, input, or print anything. Your task is to complete the function maxSumPairWithDifferenceLessThanK() which takes the array arr[], its size N, and an integer K as inputs and returns the maximum possible sum of disjoint pairs. Expected Time Complexity: O(N. log(N)) Expected Auxiliary Space: O(N) Constraints: 1 ≤ N ≤ 10^{5} 0 ≤ K ≤ 10^{5} 1 ≤ arr[i] ≤ 10^{4} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def maxSumPairWithDifferenceLessThanK(self, arr, N, K): # Your code goes here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def maxSumPairWithDifferenceLessThanK(self, arr, N, K): arr.sort() dp = [0] * N dp[0] = 0 for i in range(1, N): dp[i] = dp[i - 1] if arr[i] - arr[i - 1] < K: if i >= 2: dp[i] = max(dp[i], arr[i - 1] + dp[i - 2] + arr[i]) else: dp[i] = max(dp[i], arr[i] + arr[i - 1]) return dp[N - 1] ```
vfc_138546
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/pairs-with-specific-difference1533/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": ":\r\narr[] = {3, 5, 10, 15, 17, 12, 9}\r\nK = 4", "output": "62", "type": "stdin_stdout" }, { "fn_name": null, "input": ":\r\narr[] = {5, 15, 10, 300}\r\nK = 12", "output": "25", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: For a given weighted directed graph G(V, E), find the distance of the shortest route that meets the following criteria: * It is a closed cycle where it ends at the same point it starts. * It visits each vertex exactly once. Constraints * 2 ≤ |V| ≤ 15 * 0 ≤ di ≤ 1,000 * There are no multiedge Input |V| |E| s0 t0 d0 s1 t1 d1 : s|E|-1 t|E|-1 d|E|-1 |V| is the number of vertices and |E| is the number of edges in the graph. The graph vertices are named with the numbers 0, 1,..., |V|-1 respectively. si and ti represent source and target vertices of i-th edge (directed) and di represents the distance between si and ti (the i-th edge). Output Print the shortest distance in a line. If there is no solution, print -1. Examples Input 4 6 0 1 2 1 2 3 1 3 9 2 0 1 2 3 6 3 2 4 Output 16 Input 3 3 0 1 1 1 2 1 0 2 1 Output -1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (v, e) = [int(j) for j in input().split()] d = [[10 ** 18] * v for i in range(v)] dp = [[-1] * v for i in range(1 << v)] for i in range(e): (s, t, w) = [int(j) for j in input().split()] d[s][t] = w def f(s, n, dp): if dp[s][n] >= 0: return dp[s][n] if s == (1 << v) - 1 and n == 0: dp[s][n] = 0 return 0 tmp = 10 ** 18 for u in range(v): if s >> u & 1 == 0: tmp = min(tmp, f(s | 1 << u, u, dp) + d[n][u]) dp[s][n] = tmp return tmp ans = f(0, 0, dp) if ans == 10 ** 18: print(-1) else: print(ans) ```
vfc_138547
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 3\n0 0 1\n1 2 1\n0 2 1", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 6\n0 1 2\n2 2 3\n1 3 9\n2 0 1\n2 3 6\n3 2 4", "output": "16\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 6\n0 1 2\n2 2 3\n1 3 1\n2 0 1\n2 3 6\n3 2 4", "output": "8\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 6\n0 1 2\n2 2 3\n1 3 14\n2 0 1\n2 3 19\n3 2 4", "output": "21\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/kth-smallest-factor2345/1
Solve the following coding problem using the programming language python: GIven two positive integers N and K. You have to find the Kth smallest factor of N. A factor of N is a positive integer which divides N. Output the Kth smallest factor of N if it exists otherwise print -1. Example 1: Input : N = 4 , K = 2 Output: 2 Explanation: All factors of 4 are 1,2 and 4. Out of these 2 is the 2nd smallest. Example 2: Input : N = 4 , K = 3 Output: 4 Explanation: All factors of 4 are 1,2 and 4. Out of these 4 is the 3rd smallest. Your Task: You don't need to read input or print anything. Your task is to complete the function kThSmallestFactor() which takes 2 Integers N and K as input and returns the answer. Expected Time Complexity: O(sqrt(N)) Expected Auxiliary Space: O(1) Constraints: 1 <= N <= 10^{6} 1 <= K <= 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def kThSmallestFactor(self, N , K): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def kThSmallestFactor(self, N, K): factors = [] for i in range(1, int(N ** 0.5) + 1): if N % i == 0: factors.append(i) if i != N // i: factors.append(N // i) factors.sort() if K > len(factors): return -1 else: return factors[K - 1] ```
vfc_138556
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/kth-smallest-factor2345/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 4 , K = 2", "output": "2", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 4 , K = 3", "output": "4", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/FULU2020/problems/ARMY1N
Solve the following coding problem using the programming language python: Calculate the power of an army of numbers from 1 to $N$, both included. -----Input:----- - First line will contain a single integer $N$. -----Output:----- For each testcase, output in a single line containing the answer. -----Constraints----- - $1 \leq N \leq 5000$ -----Sample Input:----- 24 -----Sample Output:----- 5 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) plist = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313] power = 1 for i in range(2, n + 1, 1): pdiv = [] count = 0 for p in plist: if i >= p and i % p == 0: pdiv.append(p) for pd in pdiv: if i % pd ** 2 == 0: count += 1 if count == len(pdiv) and count != 0: power += 1 print(power) ```
vfc_138557
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/FULU2020/problems/ARMY1N", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "24\n", "output": "5\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/769/B
Solve the following coding problem using the programming language python: Polycarp studies at the university in the group which consists of n students (including himself). All they are registrated in the social net "TheContacnt!". Not all students are equally sociable. About each student you know the value a_{i} — the maximum number of messages which the i-th student is agree to send per day. The student can't send messages to himself. In early morning Polycarp knew important news that the programming credit will be tomorrow. For this reason it is necessary to urgently inform all groupmates about this news using private messages. Your task is to make a plan of using private messages, so that: the student i sends no more than a_{i} messages (for all i from 1 to n); all students knew the news about the credit (initially only Polycarp knew it); the student can inform the other student only if he knows it himself. Let's consider that all students are numerated by distinct numbers from 1 to n, and Polycarp always has the number 1. In that task you shouldn't minimize the number of messages, the moment of time, when all knew about credit or some other parameters. Find any way how to use private messages which satisfies requirements above. -----Input----- The first line contains the positive integer n (2 ≤ n ≤ 100) — the number of students. The second line contains the sequence a_1, a_2, ..., a_{n} (0 ≤ a_{i} ≤ 100), where a_{i} equals to the maximum number of messages which can the i-th student agree to send. Consider that Polycarp always has the number 1. -----Output----- Print -1 to the first line if it is impossible to inform all students about credit. Otherwise, in the first line print the integer k — the number of messages which will be sent. In each of the next k lines print two distinct integers f and t, meaning that the student number f sent the message with news to the student number t. All messages should be printed in chronological order. It means that the student, who is sending the message, must already know this news. It is assumed that students can receive repeated messages with news of the credit. If there are several answers, it is acceptable to print any of them. -----Examples----- Input 4 1 2 1 0 Output 3 1 2 2 4 2 3 Input 6 2 0 1 3 2 0 Output 6 1 3 3 4 1 2 4 5 5 6 4 6 Input 3 0 2 2 Output -1 -----Note----- In the first test Polycarp (the student number 1) can send the message to the student number 2, who after that can send the message to students number 3 and 4. Thus, all students knew about the credit. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def main(): students = int(input()) msgs = [int(x) for x in input().split()] if msgs[0] == 0: print('-1') elif students - 1 > sum(msgs): print('-1') else: result = [] no_info = [x for x in range(1, students)] sort_dict = {str(x): msgs[x] for x in no_info} sort_dict = sorted(sort_dict, key=sort_dict.__getitem__, reverse=True) no_info = [int(x) for x in sort_dict] has_info = [0] for target in no_info: if msgs[0] == 0: break if msgs[target] == 0: continue else: has_info.append(target) no_info.remove(target) result.append('1 ' + str(target + 1)) msgs[0] -= 1 check = True while check: check = False for item in has_info: if msgs[item] > 0: for target in no_info: if msgs[item] == 0: break has_info.append(target) no_info.remove(target) result.append(str(item + 1) + ' ' + str(target + 1)) msgs[item] -= 1 check = True if len(no_info) > 0: print('-1') else: print(str(len(result))) for item in result: print(item) main() ```
vfc_138569
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/769/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1 2 1 0\n", "output": "3\n1 2\n2 3\n2 4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n2 0 1 3 2 0\n", "output": "5\n1 4\n1 5\n4 3\n4 2\n4 6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n0 2 2\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n0 0\n", "output": "-1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: For given $N$ points in the 2D Euclidean plane, find the distance of the shortest tour that meets the following criteria: * Visit the points according to the following steps: 1. It starts from the leftmost point (starting point), goes strictly from left to right, and then visits the rightmost point (turn-around point). 2. Then it starts from the turn-around point, goes strictly from right to left, and then back to the starting point. * Through the processes 1. 2., the tour must visit each point at least once. Constraints * $2 \leq N \leq 1000$ * $-1000 \leq x_i, y_i \leq 1000$ * $x_i$ differ from each other * The given points are already sorted by x-coordinates Input The input data is given in the following format: $N$ $x_1$ $y_1$ $x_2$ $y_2$ ... $x_N$ $y_N$ Output Print the distance of the shortest tour in a line. The output should not have an error greater than 0.0001. Examples Input 3 0 0 1 1 2 0 Output 4.82842712 Input 4 0 1 1 2 2 0 3 1 Output 7.30056308 Input 5 0 0 1 2 2 1 3 2 4 0 Output 10.94427191 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math pts = [] line = input() N = int(line) for _ in range(0, N): line = input() (x, y) = list(map(int, line.split())) pts += [[x, y]] def dist(i, j): (x1, y1) = pts[i] (x2, y2) = pts[j] return math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2) def btsp(): dp = [[0] * N for _ in range(0, N)] for i in range(1, N): dp[0][i] = dp[0][i - 1] + dist(i - 1, i) for i in range(1, N): for j in range(i, N): if i == j - 1 or i == j: m = 10 ** 10 for k in range(0, i): m = min(m, dp[k][i] + dist(j, k)) dp[i][j] = m else: dp[i][j] = dp[i][j - 1] + dist(j - 1, j) return dp[N - 1][N - 1] print(btsp()) ```
vfc_138577
{ "difficulty": "unknown_difficulty", "memory_limit": "268.435456 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n0 -1\n1 1\n2 0", "output": "5.886349517\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n-1 0\n1 2\n2 1\n3 2\n4 0", "output": "12.462840740\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n0 1\n1 2\n3 0\n3 1", "output": "7.812559200\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/626/A
Solve the following coding problem using the programming language python: Calvin the robot lies in an infinite rectangular grid. Calvin's source code contains a list of n commands, each either 'U', 'R', 'D', or 'L' — instructions to move a single square up, right, down, or left, respectively. How many ways can Calvin execute a non-empty contiguous substrings of commands and return to the same square he starts in? Two substrings are considered different if they have different starting or ending indices. -----Input----- The first line of the input contains a single positive integer, n (1 ≤ n ≤ 200) — the number of commands. The next line contains n characters, each either 'U', 'R', 'D', or 'L' — Calvin's source code. -----Output----- Print a single integer — the number of contiguous substrings that Calvin can execute and return to his starting square. -----Examples----- Input 6 URLLDR Output 2 Input 4 DLUU Output 0 Input 7 RLRLRLR Output 12 -----Note----- In the first case, the entire source code works, as well as the "RL" substring in the second and third characters. Note that, in the third case, the substring "LR" appears three times, and is therefore counted three times to the total result. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import re, sys, string, operator, functools, fractions, collections sys.setrecursionlimit(10 ** 7) dX = [-1, 1, 0, 0, -1, 1, -1, 1] dY = [0, 0, -1, 1, 1, -1, -1, 1] RI = lambda x=' ': list(map(int, input().split(x))) RS = lambda x=' ': input().rstrip().split(x) mod = int(1000000000.0 + 7) eps = 1e-06 n = RI()[0] s = RS()[0] ans = 0 for i in range(n): (x, y) = (0, 0) for j in range(i, n): if s[j] == 'L': x -= 1 elif s[j] == 'R': x += 1 elif s[j] == 'U': y += 1 else: y -= 1 if x == 0 and y == 0: ans += 1 print(ans) ```
vfc_138585
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/626/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\nURLLDR\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\nDLUU\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7\nRLRLRLR\n", "output": "12\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1749/D
Solve the following coding problem using the programming language python: Consider an array $a$ of length $n$ with elements numbered from $1$ to $n$. It is possible to remove the $i$-th element of $a$ if $gcd(a_i, i) = 1$, where $gcd$ denotes the greatest common divisor. After an element is removed, the elements to the right are shifted to the left by one position. An array $b$ with $n$ integers such that $1 \le b_i \le n - i + 1$ is a removal sequence for the array $a$ if it is possible to remove all elements of $a$, if you remove the $b_1$-th element, then the $b_2$-th, ..., then the $b_n$-th element. For example, let $a = [42, 314]$: $[1, 1]$ is a removal sequence: when you remove the $1$-st element of the array, the condition $gcd(42, 1) = 1$ holds, and the array becomes $[314]$; when you remove the $1$-st element again, the condition $gcd(314, 1) = 1$ holds, and the array becomes empty. $[2, 1]$ is not a removal sequence: when you try to remove the $2$-nd element, the condition $gcd(314, 2) = 1$ is false. An array is ambiguous if it has at least two removal sequences. For example, the array $[1, 2, 5]$ is ambiguous: it has removal sequences $[3, 1, 1]$ and $[1, 2, 1]$. The array $[42, 314]$ is not ambiguous: the only removal sequence it has is $[1, 1]$. You are given two integers $n$ and $m$. You have to calculate the number of ambiguous arrays $a$ such that the length of $a$ is from $1$ to $n$ and each $a_i$ is an integer from $1$ to $m$. -----Input----- The only line of the input contains two integers $n$ and $m$ ($2 \le n \le 3 \cdot 10^5$; $1 \le m \le 10^{12}$). -----Output----- Print one integer — the number of ambiguous arrays $a$ such that the length of $a$ is from $1$ to $n$ and each $a_i$ is an integer from $1$ to $m$. Since the answer can be very large, print it modulo $998244353$. -----Examples----- Input 2 3 Output 6 Input 4 2 Output 26 Input 4 6 Output 1494 Input 1337 424242424242 Output 119112628 -----Note----- None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = map(int, input().split()) if m == 1: print(n - 1) exit() M = 998244353 tot = (pow(m, n + 1, M) - 1) * pow(m - 1, -1, M) - 1 p = set([2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31]) fac = [1, 1] for i in range(2, 37): fac += (fac[-1] * (i if i in p else 1),) (i, res, temp) = (2, m, m) while i <= min(n, 36) and fac[i] <= m: temp = m // fac[i] * temp % M res = (res + temp) % M i += 1 print((tot - res) % M) ```
vfc_138589
{ "difficulty": "hard", "memory_limit": "512 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1749/D", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 3\n", "output": "6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 2\n", "output": "26\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 6\n", "output": "1494\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1337 424242424242\n", "output": "119112628\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/538/C
Solve the following coding problem using the programming language python: A tourist hiked along the mountain range. The hike lasted for n days, during each day the tourist noted height above the sea level. On the i-th day height was equal to some integer h_{i}. The tourist pick smooth enough route for his hike, meaning that the between any two consecutive days height changes by at most 1, i.e. for all i's from 1 to n - 1 the inequality |h_{i} - h_{i} + 1| ≤ 1 holds. At the end of the route the tourist rafted down a mountain river and some notes in the journal were washed away. Moreover, the numbers in the notes could have been distorted. Now the tourist wonders what could be the maximum height during his hike. Help him restore the maximum possible value of the maximum height throughout the hike or determine that the notes were so much distorted that they do not represent any possible height values that meet limits |h_{i} - h_{i} + 1| ≤ 1. -----Input----- The first line contains two space-separated numbers, n and m (1 ≤ n ≤ 10^8, 1 ≤ m ≤ 10^5) — the number of days of the hike and the number of notes left in the journal. Next m lines contain two space-separated integers d_{i} and h_{d}_{i} (1 ≤ d_{i} ≤ n, 0 ≤ h_{d}_{i} ≤ 10^8) — the number of the day when the i-th note was made and height on the d_{i}-th day. It is guaranteed that the notes are given in the chronological order, i.e. for all i from 1 to m - 1 the following condition holds: d_{i} < d_{i} + 1. -----Output----- If the notes aren't contradictory, print a single integer — the maximum possible height value throughout the whole route. If the notes do not correspond to any set of heights, print a single word 'IMPOSSIBLE' (without the quotes). -----Examples----- Input 8 2 2 0 7 0 Output 2 Input 8 3 2 0 7 0 8 3 Output IMPOSSIBLE -----Note----- For the first sample, an example of a correct height sequence with a maximum of 2: (0, 0, 1, 2, 1, 1, 0, 1). In the second sample the inequality between h_7 and h_8 does not hold, thus the information is inconsistent. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = list(map(int, input().split(' '))) d = [] for i in range(m): d.append(list(map(int, input().split(' ')))) ispossible = True maxheights = [] maxheights.append(d[0][1] + d[0][0] - 1) maxheights.append(d[-1][1] + n - d[-1][0]) for i in range(m - 1): d1 = d[i] d2 = d[i + 1] if abs(d2[1] - d1[1]) > d2[0] - d1[0]: ispossible = False maxheights.append((d1[1] + d2[1] + d2[0] - d1[0]) // 2) if ispossible: print(max(maxheights)) else: print('IMPOSSIBLE') ```
vfc_138593
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/538/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "8 2\n2 0\n7 0\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/special-stack/1
Solve the following coding problem using the programming language python: Design a data-structure SpecialStack that supports all the stack operations like push(), pop(), isEmpty(), isFull() and an additional operation getMin() which should return minimum element from the SpecialStack. Your task is to complete all the functions, using stack data-Structure. Example 1: Input: Stack: 18 19 29 15 16 Output: 15 Explanation: The minimum element of the stack is 15. Your Task: Since this is a function problem, you don't need to take inputs. You just have to complete 5 functions, push() which takes the stack and an integer x as input and pushes it into the stack; pop() which takes the stack as input and pops out the topmost element from the stack; isEmpty() which takes the stack as input and returns true/false depending upon whether the stack is empty or not; isFull() which takes the stack and the size of the stack as input and returns true/false depending upon whether the stack is full or not (depending upon the given size); getMin() which takes the stack as input and returns the minimum element of the stack. Note: The output of the code will be the value returned by getMin() function. Expected Time Complexity: O(N) for getMin, O(1) for remaining all 4 functions. Expected Auxiliary Space: O(1) for all the 5 functions. Constraints: 1 ≤ N ≤ 10^{4} Write your solution by modifying this code: ```python # Your task is to complete all these function's # function should append an element on to the stack def push(arr, ele): # Code here # Function should pop an element from stack def pop(arr): # Code here # function should return 1/0 or True/False def isFull(n, arr): # Code here # function should return 1/0 or True/False def isEmpty(arr): #Code here # function should return minimum element from the stack def getMin(n, arr): # Code here ``` Your solution should implemented in the function "push". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python def push(arr, ele): arr.append(ele) def pop(arr): arr.pop() def isFull(n, arr): if len(arr) >= n: return True return False def isEmpty(arr): if len(arr) == 0: return True return False def getMin(n, arr): return min(arr) ```
vfc_138601
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/special-stack/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "push", "input": "Stack:18 19 29 15 16", "output": "15", "type": "function_call" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/part-sort2851/1
Solve the following coding problem using the programming language python: Given an array arr of size N and two integers l and r, the task is to sort the given array in non - decreasing order in the index range from l to r. Example 1: Input: N = 4 arr[] = {1, 5, 3, 2} l = 2, r = 3 Output: {1, 5, 2, 3} Explanation: After sorting array will look like {1, 5, 2, 3} ​Example 2: Input: N = 3 arr[] = {2, 3, 4} l = 0, r = 2 Output: {2, 3, 4} Explanation: Array is already sorted Your Task: You don't need to read input or print anything. Your task is to complete the function partSort() which takes the array arr[], N, l and r as inputs and sorts the given the array in given range. Expected Time Complexity: O(NlogN) Expected Auxiliary Space: O(1) Constraints : 1 ≤ N ≤ 10^5 0 ≤ l, r ≤ N-1 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def partSort(self, arr, n, l, r): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def partSort(self, arr, n, l, r): if l > r: (l, r) = (r, l) temp = sorted(arr[l:r + 1]) c = 0 for i in range(l, r + 1): arr[i] = temp[c] c += 1 ```
vfc_138607
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/part-sort2851/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 4\narr[] = {1, 5, 3, 2}\nl = 2, r = 3", "output": "{1, 5, 2, 3}", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 3\narr[] = {2, 3, 4}\nl = 0, r = 2", "output": "{2, 3, 4}", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/encryption/problem
Solve the following coding problem using the programming language python: An English text needs to be encrypted using the following encryption scheme. First, the spaces are removed from the text. Let $L$ be the length of this text. Then, characters are written into a grid, whose rows and columns have the following constraints: $\lfloor\sqrt{L}\rfloor\leq row\leq column\leq\lceil\sqrt{L}\rceil,\text{where}\lfloor x\rfloor\text{is floor function and}\lceil x\rceil\text{is cell function}$ Example $s=\textbf{if man was meant to stay on the ground good would have given us roots}$ After removing spaces, the string is $54$ characters long. $\sqrt{54}$ is between $7$ and $8$, so it is written in the form of a grid with 7 rows and 8 columns. ifmanwas meanttos         tayonthe groundgo dwouldha vegivenu sroots Ensure that $rows\times columns\geq L$ If multiple grids satisfy the above conditions, choose the one with the minimum area, i.e. $rows\times columns$. The encoded message is obtained by displaying the characters of each column, with a space between column texts. The encoded message for the grid above is: imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau Create a function to encode a message. Function Description Complete the encryption function in the editor below. encryption has the following parameter(s): string s: a string to encrypt Returns string: the encrypted string Input Format One line of text, the string $\boldsymbol{\mathrm{~S~}}$ Constraints $1\leq\ \text{length of}\ s\leq81$ $\boldsymbol{\mathrm{~S~}}$ contains characters in the range ascii[a-z] and space, ascii(32). Sample Input haveaniceday Sample Output 0 hae and via ecy Explanation 0 $L=12$, $\sqrt{12}$ is between $3$ and $4$. Rewritten with $3$ rows and $4$ columns: have anic eday Sample Input 1 feedthedog     Sample Output 1 fto ehg ee dd Explanation 1 $L=\textbf{10}$, $\sqrt{10}$ is between $3$ and $4$. Rewritten with $3$ rows and $4$ columns: feed thed og Sample Input 2 chillout Sample Output 2 clu hlt io Explanation 2 $L=8$, $\sqrt{8}$ is between $2$ and $3$. Rewritten with $3$ columns and $3$ rows ($2*3=6<8$ so we have to use $3X3$.) chi llo ut The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import sqrt st = input() size = len(st) sq = int(sqrt(size)) minArea = 2 * size minRows = 0 minCols = 2 * size for i in range(1, 3 * sq): for j in range(i, 3 * sq): if i * j < size: continue else: if j - i < minCols - minRows: minArea = i * j minRows = i minCols = j break output = '' for j in range(minCols): for i in range(minRows): val = minCols * i + j if val < len(st): output += st[val] output += ' ' print(output) ```
vfc_138621
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/encryption/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "haveaniceday\n", "output": "hae and via ecy\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "feedthedog \n", "output": "fto ehg ee dd\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "chillout\n", "output": "clu hlt io\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: There are n vertical lines in the Amidakuji. This Amidakuji meets the following conditions. * Draw a horizontal line right next to it. Do not pull diagonally. * Horizontal lines always connect adjacent vertical lines. In other words, the horizontal line does not cross the vertical line. * For any vertical line, horizontal lines will not appear at the same time on the left and right from the same point. That is, the horizontal line does not cross the vertical line. * There is only one hit. The figure below shows an example of Amidakuji when n = 5. The numbers on the top represent the vertical line numbers (1, 2, 3, 4, 5 from the left). ☆ is a hit. <image> Create a program that reads the number of vertical lines n, the number m of the selected vertical line, the location of the Amidakuji hit, and the presence or absence of horizontal lines in each row, and outputs a judgment as to whether or not the hit can be reached. However, only one horizontal line can be added at any position in the given Amidakuji (it is not necessary to add it). The Amidakuji after adding one horizontal line must also meet the above conditions. Input Given multiple datasets. Each dataset is as follows: The number of vertical lines n (1 <n ≤ 10) is written on the first line. On the second line, the number m (1 ≤ m ≤ n) of the selected vertical line is written. On the third line, the number of the hit place (☆ in the figure) is written counting from the left. On the 4th line, the number of stages d (1 ≤ d ≤ 30) of Amidakuji is written. From the 5th line onward, n-1 numbers are lined up in order from the top of the Amidakuji, with 1 being the horizontal line between each vertical line and 0 being the absence, as in the sequence of numbers corresponding to the figure. is. The input ends on a line with a single 0. Output For each dataset, output the following values ​​depending on whether you can reach the hit from the selected vertical line number m. * Output 0 if you can reach the hit without drawing a horizontal line. * If you can reach the hit by drawing one horizontal line, output the position of the horizontal line closest to the starting side (upper in the figure). Please output the number of steps (see the figure) counting from the departure side and the number of vertical lines counting from the left to draw the horizontal line to the right, separated by a half-width space. * If you cannot reach the hit even if you draw one horizontal line, output 1. Example Input 5 2 3 9 1010 1001 0100 1001 0010 1000 0100 0101 1010 0 Output 6 4 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python while True: n = int(input()) if n == 0: break (m, p, d) = [int(input()) for i in range(3)] m -= 1 p -= 1 a = [[] for i in range(d + 1)] for i in range(d): a[i] = list(map(int, input())) s = [[0 for j in range(n)] for i in range(d + 1)] s[d] = [i for i in range(n)] for i in range(d - 1, -1, -1): for j in range(n): s[i][j] = s[i + 1][j] for j in range(n - 1): if a[i][j]: (s[i][j], s[i][j + 1]) = (s[i][j + 1], s[i][j]) k = s[0][m] if k == p: print(0) continue f = False for i in range(d): for j in range(n - 1): if (s[i][j] == k and s[i][j + 1] == p or (s[i][j] == p and s[i][j + 1] == k)) and (j == 0 or a[i][j - 1] == 0) and (a[i][j] == 0) and (j == n - 2 or a[i][j + 1] == 0): print(i + 1, j + 1) f = True break if f: break if not f: print(1) ```
vfc_138625
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n2\n3\n9\n1010\n1001\n0100\n1001\n0010\n1000\n0000\n0101\n1010\n0", "output": "6 4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n2\n3\n9\n1010\n1001\n0100\n1001\n0010\n1000\n0000\n0101\n1000\n0", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n2\n3\n9\n1010\n1001\n0000\n1001\n0010\n1000\n0000\n0101\n1001\n0", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n2\n3\n9\n1010\n1001\n1000\n1001\n0010\n1000\n0000\n0101\n1001\n0", "output": "5 1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/PERFCONT
Solve the following coding problem using the programming language python: Chef wants to organize a contest. Predicting difficulty levels of the problems can be a daunting task. Chef wants his contests to be balanced in terms of difficulty levels of the problems. Assume a contest had total P participants. A problem that was solved by at least half of the participants (i.e. P / 2 (integer division)) is said to be cakewalk difficulty. A problem solved by at max P / 10 (integer division) participants is categorized to be a hard difficulty. Chef wants the contest to be balanced. According to him, a balanced contest must have exactly 1 cakewalk and exactly 2 hard problems. You are given the description of N problems and the number of participants solving those problems. Can you tell whether the contest was balanced or not? -----Input----- The first line of the input contains an integer T denoting the number of test cases. The first line of each test case contains two space separated integers, N, P denoting the number of problems, number of participants respectively. The second line contains N space separated integers, i-th of which denotes number of participants solving the i-th problem. -----Output----- For each test case, output "yes" or "no" (without quotes) denoting whether the contest is balanced or not. -----Constraints----- - 1 ≤ T, N ≤ 500 - 1 ≤ P ≤ 108 - 1 ≤ Number of participants solving a problem ≤ P -----Subtasks----- - Subtask #1 (40 points): P is a multiple of 10 - Subtask #2 (60 points): Original constraints -----Example----- Input 6 3 100 10 1 100 3 100 11 1 100 3 100 10 1 10 3 100 10 1 50 4 100 50 50 50 50 4 100 1 1 1 1 Output yes no no yes no no -----Explanation----- Example case 1.: The problems are of hard, hard and cakewalk difficulty. There is 1 cakewalk and 2 hard problems, so the contest is balanced. Example case 2.: The second problem is hard and the third is cakewalk. There is 1 cakewalk and 1 hard problem, so the contest is not balanced. Example case 3.: All the three problems are hard. So the contest is not balanced. Example case 4.: The problems are of hard, hard, cakewalk difficulty. The contest is balanced. Example case 5.: All the problems are cakewalk. The contest is not balanced. Example case 6.: All the problems are hard. The contest is not balanced. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): (n, p) = map(int, input().split()) t = list(map(int, input().split())) d = int(p / 2) f = int(p / 10) g = int(n / 2) count = 0 l = 0 for j in range(len(t)): if t[j] >= d: count += 1 elif t[j] <= f: l += 1 if count == 1 and l == 2: print('yes') else: print('no') ```
vfc_138629
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/PERFCONT", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n3 100\n10 1 100\n3 100\n11 1 100\n3 100\n10 1 10\n3 100\n10 1 50\n4 100\n50 50 50 50\n4 100\n1 1 1 1\n", "output": "yes\nno\nno\nyes\nno\nno\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Vardhaman college of engg. is conducting a coding challenge. The registrations are opened. Many people from different colleges are being registered for this event. Some of them are trying to make some errors in the registrations. They have registered there names more than one time by creating different e-mail ids. This became a real mess as the no. of registrations are very huge. To find out how many people have done this and who all done this. So, this problem is stated to the head of the registrations. He wanted you to help him to find out how many and who made this so that they can be eliminated. Help him to find a solution for this serious problem. INPUT: first line contains a number n which indicates no of applicants next n lines will have the names OUTPUT: print number which indicates no of illegal applicants next lines print one name per line NOTE: A applicant is considered illegal if it is repeated more than one CONSTRAINTS: 0<n<100 0<name<20 SAMPLE INPUT 10 raghav sitish raghu vishwa kumar raghu raghu raghav ritesh deepesh SAMPLE OUTPUT 2 raghav raghu The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) name=[] defaulties=[] for i in range(n): temp=input() if temp in name: if temp not in defaulties: defaulties.append(temp) else: name.append(temp) defaulties.sort() print(len(defaulties)) for index in range(len(defaulties)): print(defaulties[index]+" ") ```
vfc_138646
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "25\nwerst\nsjckt\nwerst\nkiran\nling\ngufh\nsjdif\nchfir\nshrif\ncheir\nshcur\nshcur\nraghav\nsudheer\ncharan\nkiran\njaffer\nraghav\nakhil\nsudheer\nkiran\nasfae\njaffer\ndejhi\nasjrif\nacnrjkd", "output": "19\nagarwal\ndhoni\nenemy\nfhrg\ngutter\nhacker\nhdeurjgkf\ninternet\njaffer\nkiran\nkumar\nqwerty\nraghav\nritesh\nroman\nshcur\nsudheer\nvhft\nwerst", "type": "stdin_stdout" }, { "fn_name": null, "input": "75\nfhrg\nreigns\nroma\ncroma\nmozilla\ncrome\ninternet\nhacker\nhacker\ninternet\nduffer\ntupper\nagarwal\nsharan\nsravan\nkumar\nritesh\nkumar\nritesh\nagarwal\nvhft\nfhrg\nvhft\ndgnaskrughksdbnvaljr\nflksadghkanrjgnalekrm\nasngbkjwbrgkamnsdv\nhdeurjgkf\nwerst\nsjckt\nwerst\nkiran\nling\ngufh\nsjdif\nchfir\nshrif\ncheir\nhdeurjgkf\nshcur\nshcur\nraghav\nsudheer\ncharan\nkiran\njaffer\nenemy\nraghav\nakhil\nsudheer\nkiran\nroman\nasfae\njaffer\ndejhi\ndhoni\nqwerty\nasjrif\nacnrjkd\nfriend\nkiller\ngutter\nfarad\ngutter\nenemy\nkingkong\nf5\nsisos\nroman\nseth\ndean\ntripleh\njohn\ndhoni\nqwerty\nrueg", "output": "6\njaffer\nkiran\nraghav\nshcur\nsudheer\nwerst", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MINARRS
Solve the following coding problem using the programming language python: You are given a sequence of non-negative integers $A_1, A_2, \ldots, A_N$. At most once, you may choose a non-negative integer $X$ and for each valid $i$, change $A_i$ to $A_i \oplus X$ ($\oplus$ denotes bitwise XOR). Find the minimum possible value of the sum of all elements of the resulting sequence. -----Input----- - The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. - The first line of the input contains a single integer $N$. - The second line contains $N$ space-separated integers $A_1, A_2, \ldots, A_N$. -----Output----- For each test case, print a single line containing one integer ― the minimum possible sum. -----Constraints----- - $1 \le T \le 1,000$ - $1 \le N \le 10^5$ - $1 \le A_i \le 10^9$ for each valid $i$ - the sum of $N$ over all test cases does not exceed $10^6$ -----Subtasks----- Subtask #1 (50 points): - $1 \le N \le 10^3$ - $1 \le A_i \le 10^3$ for each valid $i$ Subtask #2 (50 points): original constraints -----Example Input----- 3 5 2 3 4 5 6 4 7 7 7 7 3 1 1 3 -----Example Output----- 14 0 2 -----Explanation----- Example case 1: If we choose $X = 6$, the sequence becomes $(4, 5, 2, 3, 0)$. Example case 2: We can choose $X = 7$ to make all elements of the resulting sequence equal to $0$. Example case 3: We can choose $X = 1$. The sequence becomes $(0, 0, 2)$, with sum $2$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import defaultdict t = int(input()) while t: n = int(input()) arr = list(map(int, input().split())) nums_bin = [] bin_count = defaultdict(int) total = 0 max_length = 0 for i in range(n): bin_value = '{0:0b}'.format(arr[i]) temp = len(bin_value) - 1 if max_length < len(bin_value): max_length = len(bin_value) for b in bin_value: if b == '1': bin_count[temp] += 1 temp -= 1 for i in range(max_length): total += pow(2, i) * min(bin_count[i], n - bin_count[i]) print(total) t -= 1 ```
vfc_138650
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MINARRS", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n5\n2 3 4 5 6\n4\n7 7 7 7\n3\n1 1 3\n", "output": "14\n0\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1096/A
Solve the following coding problem using the programming language python: You are given a range of positive integers from $l$ to $r$. Find such a pair of integers $(x, y)$ that $l \le x, y \le r$, $x \ne y$ and $x$ divides $y$. If there are multiple answers, print any of them. You are also asked to answer $T$ independent queries. -----Input----- The first line contains a single integer $T$ ($1 \le T \le 1000$) — the number of queries. Each of the next $T$ lines contains two integers $l$ and $r$ ($1 \le l \le r \le 998244353$) — inclusive borders of the range. It is guaranteed that testset only includes queries, which have at least one suitable pair. -----Output----- Print $T$ lines, each line should contain the answer — two integers $x$ and $y$ such that $l \le x, y \le r$, $x \ne y$ and $x$ divides $y$. The answer in the $i$-th line should correspond to the $i$-th query from the input. If there are multiple answers, print any of them. -----Example----- Input 3 1 10 3 14 1 10 Output 1 7 3 9 5 10 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python T = int(input()) for ks in range(T): (l, r) = map(int, input().split()) print(l, 2 * l) ```
vfc_138654
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1096/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n1 10\n3 14\n1 10\n", "output": "1 2\n3 6\n1 2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n6969 696969\n6969 696969\n6969 696969\n", "output": "6969 13938\n6969 13938\n6969 13938\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n696969 100000000\n", "output": "696969 1393938\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/DIGMULK
Solve the following coding problem using the programming language python: There is a strange game played in ChefLand. The game starts with N white balls, the i-th of which has a power of S_{i}. It is known that 0 ≤ S_{i} ≤ 9. On each level, a black ball with power K hits each of the white balls. After the collision, the power of each white ball is multiplied by K. However, white balls are only allowed to have single-digit power. In order to maintain this, a white ball whose power contains multiple digits splits into several white balls with single-digit power, one per digit. For example, consider a white ball with a power of 4. If K = 2, its resulting power is 8 and it remains a single ball. If K = 13, its resulting power is 52, so it splits into two white balls with power 5 and 2 respectively. If K = 27, its resulting power is 108, so it splits into three white balls with power 1, 0, and 8 respectively. The aim of the game is to determine the number of white balls after M levels. Note that K remains the same for every level. Please help Chef win the game. Since the answer can be large, print it modulo 10^{9} + 7. ------ Input Format ------ - The first line of input contains a single integer T, denoting the number of test cases. The description of T test cases follows. - The first line of each test case contains three space-separated integers N, K, and M. - The second line of each test case contains a string S of length N, where S_{i} is the initial power of i-th ball. ------ Output Format ------ For each test case, output in a single line the number of white balls at the end of the game, modulo 10^{9} + 7. ------ Constraints ------ $1 ≤ T ≤ 100$ $1 ≤ N ≤ 1000$ $0 ≤ K,M ≤ 10^{9}$ ------ subtasks ------ Subtask #1 (100 points): Original constraints ----- Sample Input 1 ------ 3 4 9 2 5418 5 63 3 40514 1 100000 100000 0 ----- Sample Output 1 ------ 14 88 1 ----- explanation 1 ------ Test case $1$: - Initially $S = 5418$ - After the $1^{st}$, level $S = 4536972$ - After the $2^{nd}$ level, $S = 36452754816318$ There are $14$ white balls, so the answer is $14$. Test case $3$: After each level, $S = 0$. So, the answer is $1$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import collections import math mod = 1000000007 def multiply(a, b): mul = [[0] * 10 for _ in range(10)] for i in range(10): for j in range(10): for k in range(10): mul[i][j] += a[i][k] * b[k][j] mul[i][j] %= mod return mul t = int(input()) for _ in range(t): (n, k, m) = map(int, input().split()) s = str(input()) matrix_A = [0] * 10 for x in s: matrix_A[ord(x) - ord('0')] += 1 matrix_C = [[0] * 10 for _ in range(10)] for i in range(10): for j in range(10): cur = str(j * k) matrix_C[i][j] += cur.count(str(i)) matrix_E = [[0] * 10 for _ in range(10)] for i in range(10): matrix_E[i][i] = 1 while m != 0: if m % 2 == 1: matrix_E = multiply(matrix_E, matrix_C) m -= 1 matrix_C = multiply(matrix_C, matrix_C) m //= 2 matrix_B = [0] * 10 for i in range(10): for j in range(10): matrix_B[i] += matrix_A[j] * matrix_E[i][j] matrix_B[i] %= mod print(sum(matrix_B) % mod) ```
vfc_138658
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/DIGMULK", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n4 9 2\n5418\n5 63 3\n40514\n1 100000 100000\n0", "output": "14\n88\n1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/93/A
Solve the following coding problem using the programming language python: Throughout Igor K.'s life he has had many situations worthy of attention. We remember the story with the virus, the story of his mathematical career and of course, his famous programming achievements. However, one does not always adopt new hobbies, one can quit something as well. This time Igor K. got disappointed in one of his hobbies: editing and voicing videos. Moreover, he got disappointed in it so much, that he decided to destroy his secret archive for good. Igor K. use Pindows XR operation system which represents files and folders by small icons. At that, m icons can fit in a horizontal row in any window. Igor K.'s computer contains n folders in the D: disk's root catalog. The folders are numbered from 1 to n in the order from the left to the right and from top to bottom (see the images). At that the folders with secret videos have numbers from a to b inclusive. Igor K. wants to delete them forever, at that making as few frame selections as possible, and then pressing Shift+Delete exactly once. What is the minimum number of times Igor K. will have to select the folder in order to select folders from a to b and only them? Let us note that if some selected folder is selected repeatedly, then it is deselected. Each selection possesses the shape of some rectangle with sides parallel to the screen's borders. Input The only line contains four integers n, m, a, b (1 ≤ n, m ≤ 109, 1 ≤ a ≤ b ≤ n). They are the number of folders in Igor K.'s computer, the width of a window and the numbers of the first and the last folders that need to be deleted. Output Print a single number: the least possible number of times Igor K. will have to select the folders using frames to select only the folders with numbers from a to b. Examples Input 11 4 3 9 Output 3 Input 20 5 2 20 Output 2 Note The images below illustrate statement tests. The first test: <image> In this test we can select folders 3 and 4 with out first selection, folders 5, 6, 7, 8 with our second selection and folder 9 with our third, last selection. The second test: <image> In this test we can first select all folders in the first row (2, 3, 4, 5), then — all other ones. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m, a, b) = map(int, input().split()) a -= 1 (x, y) = (a % m, b % m) d = b // m - a // m if b == n and y: d += 1 (u, v) = (x == 0, y == 0 or b == n) print(1 if u and v or d <= v else 2 if x == y or u or v or (d == 1) else 3) ```
vfc_138662
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/93/A", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "32 90 31 32\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "19 5 7 19\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "29 5 12 27\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "831447817 8377 549549158 577671489\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "691 27 313 499\n", "output": "3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/doctor-strange2206/1
Solve the following coding problem using the programming language python: Kamar-taj is a place where "The Ancient One" trains people to protect earth from other dimensions. The earth is protected by N sanctums, destroying any of it will lead to invasion on earth. The sanctums are connected by M bridges. Now , you being on dormammu's side , want to find the number of sanctum destroying which will disconnect the sanctums. Example 1: Input: N = 5, M = 5 arr[] = {{1,2},{1,3},{3,2},{3,4},{5,4}} Output : 2 Explanation: 1.Removing 1 will not make graph disconnected (2--3--4--5). 2.Removing 2 will also not make graph disconnected(1--3--4--5). 3.Removing 3 makes graph disconnected (1--2 and 4--5). 4.Removing 4 makes graph disconnected (1--2--3--1 and 5). 5.Removing 5 also doesn't makes graph disconnected(3--1--2--3--4). 6. Therefore,there are two such vertices, 3 and 4,so the answer is 2. Example 2: Input : N = 2, M = 1 arr[] = {{1, 2}} Output : 0 Your Task: This is a function problem. The input is already taken care of by the driver code. You only need to complete the function doctorStrange() that takes a number of nodes (N), a number of edges (M), a 2-D matrix that contains connection between nodes (graph), and return the number of sanctums when destroyed will disconnect other sanctums of Earth. Expected Time Complexity: O(N + M). Expected Auxiliary Space: O(N + M). Constraints: 1 ≤ n ≤ 30000 1 ≤ m ≤ 30000 1 ≤ u, v ≤ n Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def doctorStrange (self,n, k, g) : #Complete the function ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys sys.setrecursionlimit(10000) class Solution: def dfs(self, adj, v, prev=-1): self.it[v] = self.time self.low[v] = self.time self.time += 1 children = 0 for w in adj[v]: if w == prev: continue if self.it[w] == -1: children += 1 self.dfs(adj, w, v) self.low[v] = min(self.low[v], self.low[w]) if self.low[w] >= self.it[v] and prev != -1: self.ans.add(v) else: self.low[v] = min(self.low[v], self.it[w]) if children > 1 and prev == -1: self.ans.add(v) def doctorStrange(self, n, m, g): adj = [[] for _ in range(n)] for e in g: adj[e[0] - 1].append(e[1] - 1) adj[e[1] - 1].append(e[0] - 1) self.ans = set() self.time = 0 self.low = [-1] * n self.it = [-1] * n for i in range(n): if self.it[i] == -1: self.dfs(adj, i) return len(self.ans) ```
vfc_138666
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/doctor-strange2206/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 5, M = 5\r\narr[] = {{1,2},{1,3},{3,2},{3,4},{5,4}}", "output": "2", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 2, M = 1 \r\narr[] = {{1, 2}}", "output": "0", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/837/F
Solve the following coding problem using the programming language python: Consider the function p(x), where x is an array of m integers, which returns an array y consisting of m + 1 integers such that y_{i} is equal to the sum of first i elements of array x (0 ≤ i ≤ m). You have an infinite sequence of arrays A^0, A^1, A^2..., where A^0 is given in the input, and for each i ≥ 1 A^{i} = p(A^{i} - 1). Also you have a positive integer k. You have to find minimum possible i such that A^{i} contains a number which is larger or equal than k. -----Input----- The first line contains two integers n and k (2 ≤ n ≤ 200000, 1 ≤ k ≤ 10^18). n is the size of array A^0. The second line contains n integers A^0_0, A^0_1... A^0_{n} - 1 — the elements of A^0 (0 ≤ A^0_{i} ≤ 10^9). At least two elements of A^0 are positive. -----Output----- Print the minimum i such that A^{i} contains a number which is larger or equal than k. -----Examples----- Input 2 2 1 1 Output 1 Input 3 6 1 1 1 Output 2 Input 3 1 1 0 1 Output 0 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from sys import stdin, stdout from math import factorial from math import log10 def check(pw, values, k): n = len(values) matr = [[0 for i in range(n)] for j in range(n)] res = [[0 for i in range(n)] for j in range(n)] pp = [[0 for i in range(n)] for j in range(n)] for i in range(n): for j in range(n): matr[i][j] = int(i >= j) for i in range(n): res[i][i] = 1 while pw: if pw & 1: for i in range(n): for j in range(n): pp[i][j] = 0 for i in range(n): for j in range(n): for z in range(n): pp[i][j] += res[i][z] * matr[z][j] for i in range(n): for j in range(n): res[i][j] = pp[i][j] for i in range(n): for j in range(n): pp[i][j] = 0 for i in range(n): for j in range(n): for z in range(n): pp[i][j] += matr[i][z] * matr[z][j] for i in range(n): for j in range(n): matr[i][j] = pp[i][j] pw >>= 1 ans = 0 for i in range(n): ans += values[i] * res[i][0] return ans >= k def stupid(values, n, k): ans = values[:] if max(ans) >= k: return 0 cnt = 0 while ans[-1] < k: for i in range(1, n): ans[i] += ans[i - 1] cnt += 1 q = ans[-1] return cnt def clever(values, n, k): if max(values) >= k: return 0 (l, r) = (0, 10 ** 18 + 100) while r - l > 1: m = l + r >> 1 if check(m, values, k): r = m else: l = m return r def main(): (n, k) = map(int, stdin.readline().split()) values = list(map(int, stdin.readline().split()))[::-1] while not values[-1]: values.pop() n = len(values) if n >= 10: stdout.write(str(stupid(values[::-1], n, k)) + '\n') else: stdout.write(str(clever(values, n, k)) + '\n') main() ```
vfc_138667
{ "difficulty": "very_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/837/F", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 2\n1 1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 6\n1 1 1\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 1\n1 0 1\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 1000000000000000000\n5 4 5\n", "output": "632455531\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/935/C
Solve the following coding problem using the programming language python: Fifa and Fafa are sharing a flat. Fifa loves video games and wants to download a new soccer game. Unfortunately, Fafa heavily uses the internet which consumes the quota. Fifa can access the internet through his Wi-Fi access point. This access point can be accessed within a range of r meters (this range can be chosen by Fifa) from its position. Fifa must put the access point inside the flat which has a circular shape of radius R. Fifa wants to minimize the area that is not covered by the access point inside the flat without letting Fafa or anyone outside the flat to get access to the internet. The world is represented as an infinite 2D plane. The flat is centered at (x_1, y_1) and has radius R and Fafa's laptop is located at (x_2, y_2), not necessarily inside the flat. Find the position and the radius chosen by Fifa for his access point which minimizes the uncovered area. -----Input----- The single line of the input contains 5 space-separated integers R, x_1, y_1, x_2, y_2 (1 ≤ R ≤ 10^5, |x_1|, |y_1|, |x_2|, |y_2| ≤ 10^5). -----Output----- Print three space-separated numbers x_{ap}, y_{ap}, r where (x_{ap}, y_{ap}) is the position which Fifa chose for the access point and r is the radius of its range. Your answer will be considered correct if the radius does not differ from optimal more than 10^{ - 6} absolutely or relatively, and also the radius you printed can be changed by no more than 10^{ - 6} (absolutely or relatively) in such a way that all points outside the flat and Fafa's laptop position are outside circle of the access point range. -----Examples----- Input 5 3 3 1 1 Output 3.7677669529663684 3.7677669529663684 3.914213562373095 Input 10 5 5 5 15 Output 5.0 5.0 10.0 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python first = [float(x) for x in input().split(' ')] (R, x1, y1, x2, y2) = (first[0], first[1], first[2], first[3], first[4]) x_f2c = x1 - x2 y_f2c = y1 - y2 dist = (x_f2c ** 2 + y_f2c ** 2) ** 0.5 if dist >= R: print(x1, y1, R) else: new_R = (R + dist) / 2 if x_f2c == 0 and y_f2c == 0: print(x1, y2 + 0.5 * R, 0.5 * R) else: (u_x, u_y) = (x_f2c / dist, y_f2c / dist) new_x = x2 + new_R * u_x new_y = y2 + new_R * u_y print(new_x, new_y, new_R) ```
vfc_138671
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/935/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 3 3 1 1\n", "output": "3.7677669529663684 3.7677669529663684 3.914213562373095\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 5 5 5 15\n", "output": "5.0 5.0 10.0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 0 0 0 7\n", "output": "0 0 5\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/x-and-his-shots/problem
Solve the following coding problem using the programming language python: A cricket match is going to be held. The field is represented by a 1D plane. A cricketer, Mr. X has $N$ favorite shots. Each shot has a particular range. The range of the $i^{\mbox{th}}$ shot is from $\mbox{A}_{i}$ to $\mbox{B}_{i}$. That means his favorite shot can be anywhere in this range. Each player on the opposite team can field only in a particular range. Player $\boldsymbol{i}$ can field from $\mbox{C}_{i}$ to $\mbox{D}_{i}$. You are given the $N$ favorite shots of Mr. X and the range of $\mbox{M}$ players. $\mbox{S}_i$ represents the strength of each player i.e. the number of shots player $\boldsymbol{i}$ can stop. Your task is to find: $\left(\textstyle\sum_{i=1}^{m}S i\right)$. Game Rules: A player can stop the $i^{\mbox{th}}$ shot if the range overlaps with the player's fielding range. For more clarity about overlapping, study the following figure: Input Format The first line consists of two space separated integers, $N$ and $\mbox{M}$. Each of the next $N$ lines contains two space separated integers. The $i^{\mbox{th}}$ line contains $A_i$ and $B_i$. Each of the next $\mbox{M}$ lines contains two integers. The $i^{\mbox{th}}$ line contains integers $C_i$ and $D_i$. Output Format You need to print the sum of the strengths of all the players: $\left(\textstyle\sum_{i=1}^{m}S i\right)$. Constraints: $1\leq N,M\leq10^5$ $1\leq A_i,B_i,C_i,D_i\leq10^8$ Sample Input 4 4 1 2 2 3 4 5 6 7 1 5 2 3 4 7 5 7 Sample Output 9 Explanation Player 1 can stop the 1st, 2nd and 3rd shot so the strength is $3$. Player 2 can stop the 1st and 2nd shot so the strength is $2$. Player 3 can stop the 3rd and 4th shot so the strength is $2$. Player 4 can stop the 3rd and 4th shot so the strength is $2$. The sum of the strengths of all the players is $3+2+2+2=9$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import bisect class IntervalNode: def __init__(self, a, b): self.midpoint = (a + b) / 2 self.left = self.right = None self.center_left = [a] self.center_right = [b] def putInterval(self, a, b): bisect.insort(self.center_left, a) bisect.insort(self.center_right, b) def getCrossCount(self, a, b): result = 0 if a <= self.midpoint <= b: return len(self.center_left) if b < self.midpoint: return bisect.bisect_right(self.center_left, b) else: return len(self.center_right) - bisect.bisect_left(self.center_right, a) class IntervalTree: def __init__(self): self.root = None def put(self, a, b): self.root = self.put_(self.root, a, b) def put_(self, node, a, b): if node is None: return IntervalNode(a, b) if b < node.midpoint: node.left = self.put_(node.left, a, b) elif a > node.midpoint: node.right = self.put_(node.right, a, b) else: node.putInterval(a, b) return node def getCrossCount(self, a, b): return self.getCrossCount_(self.root, a, b) def getCrossCount_(self, node, a, b): if node is None: return 0 result = node.getCrossCount(a, b) if a < node.midpoint: result += self.getCrossCount_(node.left, a, min(b, node.midpoint)) if b > node.midpoint: result += self.getCrossCount_(node.right, max(a, node.midpoint), b) return result tree = IntervalTree() (N, M) = map(int, input().split()) for _ in range(N): (a, b) = map(int, input().split()) tree.put(a, b) res = 0 for _ in range(M): (c, d) = map(int, input().split()) res += tree.getCrossCount(c, d) print(res) ```
vfc_138675
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/x-and-his-shots/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4 4 \n1 2 \n2 3\n4 5\n6 7\n1 5\n2 3\n4 7\n5 7 \n", "output": "9\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1140/B
Solve the following coding problem using the programming language python: You have a string $s$ of length $n$ consisting of only characters > and <. You may do some operations with this string, for each operation you have to choose some character that still remains in the string. If you choose a character >, the character that comes right after it is deleted (if the character you chose was the last one, nothing happens). If you choose a character <, the character that comes right before it is deleted (if the character you chose was the first one, nothing happens). For example, if we choose character > in string > > < >, the string will become to > > >. And if we choose character < in string > <, the string will become to <. The string is good if there is a sequence of operations such that after performing it only one character will remain in the string. For example, the strings >, > > are good. Before applying the operations, you may remove any number of characters from the given string (possibly none, possibly up to $n - 1$, but not the whole string). You need to calculate the minimum number of characters to be deleted from string $s$ so that it becomes good. -----Input----- The first line contains one integer $t$ ($1 \le t \le 100$) – the number of test cases. Each test case is represented by two lines. The first line of $i$-th test case contains one integer $n$ ($1 \le n \le 100$) – the length of string $s$. The second line of $i$-th test case contains string $s$, consisting of only characters > and <. -----Output----- For each test case print one line. For $i$-th test case print the minimum number of characters to be deleted from string $s$ so that it becomes good. -----Example----- Input 3 2 <> 3 ><< 1 > Output 1 0 0 -----Note----- In the first test case we can delete any character in string <>. In the second test case we don't need to delete any characters. The string > < < is good, because we can perform the following sequence of operations: > < < $\rightarrow$ < < $\rightarrow$ <. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for _ in range(t): n = int(input()) s = input() res = n - 1 for i in range(n): if s[i] == '>': res = min(res, i) break for i in range(n - 1, -1, -1): if s[i] == '<': res = min(res, n - 1 - i) break print(res) ```
vfc_138679
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1140/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n2\n<>\n3\n><<\n1\n>\n", "output": "1\n0\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "13\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n1\n>\n", "output": "0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/518/A
Solve the following coding problem using the programming language python: Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provided two strings s and t to Vitaly. The strings have the same length, they consist of lowercase English letters, string s is lexicographically smaller than string t. Vitaly wondered if there is such string that is lexicographically larger than string s and at the same is lexicographically smaller than string t. This string should also consist of lowercase English letters and have the length equal to the lengths of strings s and t. Let's help Vitaly solve this easy problem! Input The first line contains string s (1 ≤ |s| ≤ 100), consisting of lowercase English letters. Here, |s| denotes the length of the string. The second line contains string t (|t| = |s|), consisting of lowercase English letters. It is guaranteed that the lengths of strings s and t are the same and string s is lexicographically less than string t. Output If the string that meets the given requirements doesn't exist, print a single string "No such string" (without the quotes). If such string exists, print it. If there are multiple valid strings, you may print any of them. Examples Input a c Output b Input aaa zzz Output kkk Input abcdefg abcdefh Output No such string Note String s = s1s2... sn is said to be lexicographically smaller than t = t1t2... tn, if there exists such i, that s1 = t1, s2 = t2, ... si - 1 = ti - 1, si < ti. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def f(s): return f(s[:-1]) + 'a' if s[-1] == 'z' else s[:-1] + chr(ord(s[-1]) + 1) s = f(input()) print(('No such string', s)[s < input()]) ```
vfc_138683
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/518/A", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "pkjlxzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz\npkjlyaaaaaaaaaaaaaaaaaaaaaaaaaaaahr\n", "output": "pkjlyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "type": "stdin_stdout" }, { "fn_name": null, "input": "kexdbtpkjbwwyibjndbtmwqzolopqitgkomqggojevoankiepxirrcidxldlzsppehmoazdywltmjbxgsxgihwnwpmczjrcwpywl\nkexdbtpkjbwwyibjndbtmwqzolopqitgkomqggojevoankiepxirrcidxldlzsppehmoazdywltmjbxgsxgihwnwpmczjrcwpywm\n", "output": "No such string", "type": "stdin_stdout" }, { "fn_name": null, "input": "ddzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz\ndeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaao\n", "output": "deaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "type": "stdin_stdout" }, { "fn_name": null, "input": "aaa\naac\n", "output": "aab", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/PROSUM
Solve the following coding problem using the programming language python: Little chef has just been introduced to the world of numbers! While experimenting with addition and multiplication operations, the little chef came up with the following problem: Given an array A of non-negative integers, how many pairs of indices i and j exist such that A[i]*A[j] > A[i]+A[j] where i < j . Now being a learner, little chef isn't able to solve this problem efficiently and hence turns to you for help. -----Input----- First line of input contains an integer T denoting the number of test cases. For each test case, the first line contains an integer N denoting the number of integers in the array. The next line contains N space separated integers where the ith integer represents A[i]. Note : There may be trailing spaces on each line of input. -----Output----- For each test, print the required number of pairs in a single line. -----Constraints----- - 1 ≤ T ≤ 10 - 2 ≤ N ≤ 100000 (105) - 0 ≤ A[i] ≤ 1000000 (106) -----Example----- Input: 2 3 3 4 5 4 1 1 1 1 Output: 3 0 -----Explanation----- Example case 1. All pairs of numbers satisfy the criteria. Total number of pairs equals 3. Example case 2. No pair of numbers satisfy the criteria. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def nc2(n): if n < 2: return 0 return n * (n - 1) // 2 def solve2(A): ones = twos = zeros = 0 for i in A: if i == 1: ones += 1 elif i == 2: twos += 1 elif i == 0: zeros += 1 n = len(A) tot = nc2(len(A)) onepairs = nc2(ones) onecombos = (n - ones) * ones zeropairs = nc2(zeros) zerocombos = (n - zeros - ones) * zeros twopairs = nc2(twos) return tot - (onepairs + onecombos + twopairs + zeropairs + zerocombos) t = int(input()) for _ in range(t): n = int(input()) A = list(map(int, input().split())) print(solve2(A)) ```
vfc_138698
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/PROSUM", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n3\n3 4 5\n4\n1 1 1 1\n", "output": "3\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n3\n3 8 5\n4\n1 1 1 1", "output": "3\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1216/D
Solve the following coding problem using the programming language python: There were $n$ types of swords in the theater basement which had been used during the plays. Moreover there were exactly $x$ swords of each type. $y$ people have broken into the theater basement and each of them has taken exactly $z$ swords of some single type. Note that different people might have taken different types of swords. Note that the values $x, y$ and $z$ are unknown for you. The next morning the director of the theater discovers the loss. He counts all swords — exactly $a_i$ swords of the $i$-th type are left untouched. The director has no clue about the initial number of swords of each type in the basement, the number of people who have broken into the basement and how many swords each of them have taken. For example, if $n=3$, $a = [3, 12, 6]$ then one of the possible situations is $x=12$, $y=5$ and $z=3$. Then the first three people took swords of the first type and the other two people took swords of the third type. Note that you don't know values $x, y$ and $z$ beforehand but know values of $n$ and $a$. Thus he seeks for your help. Determine the minimum number of people $y$, which could have broken into the theater basement, and the number of swords $z$ each of them has taken. -----Input----- The first line of the input contains one integer $n$ $(2 \le n \le 2 \cdot 10^{5})$ — the number of types of swords. The second line of the input contains the sequence $a_1, a_2, \dots, a_n$ $(0 \le a_i \le 10^{9})$, where $a_i$ equals to the number of swords of the $i$-th type, which have remained in the basement after the theft. It is guaranteed that there exists at least one such pair of indices $(j, k)$ that $a_j \neq a_k$. -----Output----- Print two integers $y$ and $z$ — the minimum number of people which could have broken into the basement and the number of swords each of them has taken. -----Examples----- Input 3 3 12 6 Output 5 3 Input 2 2 9 Output 1 7 Input 7 2 1000000000 4 6 8 4 2 Output 2999999987 2 Input 6 13 52 0 13 26 52 Output 12 13 -----Note----- In the first example the minimum value of $y$ equals to $5$, i.e. the minimum number of people who could have broken into the basement, is $5$. Each of them has taken $3$ swords: three of them have taken $3$ swords of the first type, and two others have taken $3$ swords of the third type. In the second example the minimum value of $y$ is $1$, i.e. the minimum number of people who could have broken into the basement, equals to $1$. He has taken $7$ swords of the first type. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input('')) a = list(map(int, input('').split(' '))) t = sum(a) m = max(a) yz = n * m - t b = [] import math for i in range(n): if m - a[i] != 0: b.append(m - a[i]) l = len(b) g = b[0] for i in range(l): g = math.gcd(b[i], g) if g == 1: break print(str(yz // g) + ' ' + str(g)) ```
vfc_138702
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1216/D", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3 12 6\n", "output": "5 3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n2 9\n", "output": "1 7\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/457/A
Solve the following coding problem using the programming language python: Piegirl got bored with binary, decimal and other integer based counting systems. Recently she discovered some interesting properties about number $q = \frac{\sqrt{5} + 1}{2}$, in particular that q^2 = q + 1, and she thinks it would make a good base for her new unique system. She called it "golden system". In golden system the number is a non-empty string containing 0's and 1's as digits. The decimal value of expression a_0a_1...a_{n} equals to $\sum_{i = 0}^{n} a_{i} \cdot q^{n - i}$. Soon Piegirl found out that this system doesn't have same properties that integer base systems do and some operations can not be performed on it. She wasn't able to come up with a fast way of comparing two numbers. She is asking for your help. Given two numbers written in golden system notation, determine which of them has larger decimal value. -----Input----- Input consists of two lines — one for each number. Each line contains non-empty string consisting of '0' and '1' characters. The length of each string does not exceed 100000. -----Output----- Print ">" if the first number is larger, "<" if it is smaller and "=" if they are equal. -----Examples----- Input 1000 111 Output < Input 00100 11 Output = Input 110 101 Output > -----Note----- In the first example first number equals to $((\sqrt{5} + 1) / 2)^{3} \approx 1.618033988^{3} \approx 4.236$, while second number is approximately 1.618033988^2 + 1.618033988 + 1 ≈ 5.236, which is clearly a bigger number. In the second example numbers are equal. Each of them is ≈ 2.618. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python u = v = 0 (a, b) = (input(), input()) (n, m) = (len(a), len(b)) if n > m: b = '0' * (n - m) + b else: a = '0' * (m - n) + a for i in range(max(n, m)): (u, v) = (v + u, u + int(a[i]) - int(b[i])) if u > 1: print('>') exit(0) elif u < -1: print('<') exit(0) d = 2 * v + u if u == v == 0: print('=') elif u >= 0 and d >= 0: print('>') elif u <= 0 and d <= 0: print('<') else: print('>' if (u * u > v * (v + u)) ^ (u < 0) else '<') ```
vfc_138706
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/457/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1000\n111\n", "output": "<\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "00100\n11\n", "output": "=\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "110\n101\n", "output": ">\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0\n0\n", "output": "=\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n10\n", "output": "<\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/leaves-to-dll/1
Solve the following coding problem using the programming language python: Given a Binary Tree of size N, extract all its leaf nodes to form a Doubly Link List starting from the left most leaf. Modify the original tree to make the DLL thus removing the leaf nodes from the tree. Consider the left and right pointers of the tree to be the previous and next pointer of the DLL respectively. Note: The generated output will contain the inorder traversal of the modified tree, the DLL from left to right and the DLL from right to left. Example 1: Input : 1 / \ 2 3 / \ / \ 4 5 6 7 Output: Modified Tree : 1 / \ 2 3 Doubly Link List : 4 <-> 5 <-> 6 <-> 7 Explanation: The leaf nodes are modified to form the DLL in-place. Thus their links are removed from the tree. Example 2: Input : 1 / \ 2 3 / \ 4 5 Output: Modified Tree : 1 / 2 Doubly Link List : 4 <-> 5 <-> 3 Your Task: You don't need to read input or print anything. Complete the function convertToDLL() which takes the root of the given tree as input parameter and returns the head of the doubly link list. Expected Time Complexity: O(N) Expected Auxiliary Space: O(height of tree) Constraints: 1 ≤ N ≤ 10^4 Write your solution by modifying this code: ```python #User function Template for python3 ''' # Node Class: class Node: def __init__(self,val): self.data = val self.left = None self.right = None ''' def convertToDLL(root): #return the head of the DLL and remove those node from the tree as well. ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def convertToDLL(root): leaves = [] root = leavenode(root, leaves) head = None tmp = None for i in leaves: if head is None: node = Node(i.data) node.left = None node.right = None head = node tmp = head else: node = Node(i.data) node.left = tmp tmp.right = node tmp = node return head def leavenode(rt, leav): if rt is None: return None if rt.left is None and rt.right is None: leav.append(rt) return None rt.left = leavenode(rt.left, leav) rt.right = leavenode(rt.right, leav) return rt ```
vfc_138711
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/leaves-to-dll/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\r\n / \\\r\n 2 3\r\n / \\ / \\\r\n 4 5 6 7", "output": "Modified Tree:\r\n 1\r\n / \\\r\n 2 3\r\n\r\nDoubly Link List:\r\n4 <-> 5 <-> 6 <-> 7", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\r\n / \\\r\n 2 3\r\n / \\ \r\n 4 5", "output": "Modified Tree:\r\n 1\r\n / \r\n2 \r\nDoubly Link List:\r\n4 <-> 5 <-> 3", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1120/B
Solve the following coding problem using the programming language python: One player came to a casino and found a slot machine where everything depends only on how he plays. The rules follow. A positive integer $a$ is initially on the screen. The player can put a coin into the machine and then add $1$ to or subtract $1$ from any two adjacent digits. All digits must remain from $0$ to $9$ after this operation, and the leading digit must not equal zero. In other words, it is forbidden to add $1$ to $9$, to subtract $1$ from $0$ and to subtract $1$ from the leading $1$. Once the number on the screen becomes equal to $b$, the player wins the jackpot. $a$ and $b$ have the same number of digits. Help the player to determine the minimal number of coins he needs to spend in order to win the jackpot and tell how to play. -----Input----- The first line contains a single integer $n$ ($2 \le n \le 10^5$) standing for the length of numbers $a$ and $b$. The next two lines contain numbers $a$ and $b$, each one on a separate line ($10^{n-1} \le a, b < 10^n$). -----Output----- If it is impossible to win the jackpot, print a single integer $-1$. Otherwise, the first line must contain the minimal possible number $c$ of coins the player has to spend. $\min(c, 10^5)$ lines should follow, $i$-th of them containing two integers $d_i$ and $s_i$ ($1\le d_i\le n - 1$, $s_i = \pm 1$) denoting that on the $i$-th step the player should add $s_i$ to the $d_i$-th and $(d_i + 1)$-st digits from the left (e. g. $d_i = 1$ means that two leading digits change while $d_i = n - 1$ means that there are two trailing digits which change). Please notice that the answer may be very big and in case $c > 10^5$ you should print only the first $10^5$ moves. Your answer is considered correct if it is possible to finish your printed moves to win the jackpot in the minimal possible number of coins. In particular, if there are multiple ways to do this, you can output any of them. -----Examples----- Input 3 223 322 Output 2 1 1 2 -1 Input 2 20 42 Output 2 1 1 1 1 Input 2 35 44 Output -1 -----Note----- In the first example, we can make a +1 operation on the two first digits, transforming number $\textbf{22}3$ into $\textbf{33}3$, and then make a -1 operation on the last two digits, transforming $3\textbf{33}$ into $3\textbf{22}$. It's also possible to do these operations in reverse order, which makes another correct answer. In the last example, one can show that it's impossible to transform $35$ into $44$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def main(): n = int(input()) a = list(map(int, (x for x in input()))) b = list(map(int, (x for x in input()))) x = [0] * (n - 1) x[0] = b[0] - a[0] for i in range(1, n - 1): x[i] = b[i] - a[i] - x[i - 1] if a[n - 1] + x[n - 2] != b[n - 1]: print(-1) return cnt = sum(map(abs, x)) print(cnt) cnt = min(cnt, 10 ** 5) index = 0 def handle_zero_nine(cur_zero): nonlocal cnt nxt = index + 1 while True: if cur_zero and a[nxt + 1] != 9: break if not cur_zero and a[nxt + 1] != 0: break nxt += 1 cur_zero = not cur_zero while nxt > index: if cnt == 0: break if cur_zero: print(nxt + 1, 1) a[nxt] += 1 a[nxt + 1] += 1 else: print(nxt + 1, -1) a[nxt] -= 1 a[nxt + 1] -= 1 nxt -= 1 cnt -= 1 cur_zero = not cur_zero while cnt > 0: if a[index] == b[index]: index += 1 continue elif a[index] > b[index] and a[index + 1] == 0: handle_zero_nine(True) elif a[index] < b[index] and a[index + 1] == 9: handle_zero_nine(False) elif a[index] > b[index]: print(index + 1, -1) a[index] -= 1 a[index + 1] -= 1 cnt -= 1 elif a[index] < b[index]: print(index + 1, 1) a[index] += 1 a[index + 1] += 1 cnt -= 1 def __starting_point(): main() __starting_point() ```
vfc_138716
{ "difficulty": "very_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1120/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n223\n322\n", "output": "2\n1 1\n2 -1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n20\n42\n", "output": "2\n1 1\n1 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n35\n44\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n99\n11\n", "output": "8\n1 -1\n1 -1\n1 -1\n1 -1\n1 -1\n1 -1\n1 -1\n1 -1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n85\n96\n", "output": "1\n1 1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: D: Anipero 2012 Anipero Summer Live, commonly known as Anipero, is the largest anime song live event in Japan where various anime song artists gather. 2D, who loves anime songs, decided to go to Anipero this year as well as last year. He has already purchased m of psyllium to enjoy Anipero. Psyllium is a stick that glows in a chemical reaction when folded. By shaking the psyllium in time with the rhythm, you can liven up the live performance and increase your satisfaction. All the psylliums he purchased this time have the following properties. * The psyllium becomes darker as time passes after it is folded, and loses its light in 10 minutes. * Very bright for 5 minutes after folding (hereinafter referred to as "level 2"). * It will be a little dark 5 minutes after folding (hereinafter referred to as "level 1"). * The speed at which light is lost does not change whether it is shaken or not. 2D decided to consider the following problems as to how satisfied he would be with this year's Anipero by properly using the limited psyllium depending on the song. He anticipates n songs that will be played during the live. The length of each song is 5 minutes. n songs continue to flow, and the interval between songs can be considered as 0 minutes. The following three parameters are given to each song. * Satisfaction that increases when only one level 2 is shaken for a certain song * Satisfaction that increases when only one level 1 is shaken for a certain song * Satisfaction increases when no song is shaken in a certain song Shaking the glow stick does not necessarily increase satisfaction. If you shake it, it may disturb the atmosphere of the venue and reduce your satisfaction. The same can be said when not shaking. Psyllium must be used according to the following rules. * You can fold only when the song starts, and you can fold as many as you like at one time. The time it takes to fold the psyllium can be ignored. * Up to 8 songs can be played at the same time in one song. * When shaking multiple psylliums, calculate the satisfaction level to be added by the following formula. * (Number of Level 1) x (Satisfaction per level 1) + (Number of Level 2) x (Satisfaction per Level 2) * If no psyllium is shaken, only the satisfaction level when no one is shaken is added. * Once you decide to shake the psyllium, you cannot change it until the end of one song. * The psyllium can be left unshaken. Also, it is not necessary to use up all the psyllium. 2D had finished predicting the live song, but he was tired of it and didn't feel like solving the problem. Your job is to write a program for him that seeks the maximum satisfaction you're likely to get at this year's live concert. Input Satisfaction information for the expected song list of the live is input. On the first line, the number of songs n (1 <= n <= 50) sung live and the number m (0 <= m <= 50) of new psyllium that 2D has at the start of the live are separated by spaces. Is entered in. In the following n lines, the information of one song is input line by line. The i-th (1 <= i <= n) song information is * Satisfaction level when one level 2 psyllium is shaken for song i ai * Satisfaction level bi when swinging one level 1 psyllium for song i * Satisfaction ci when no psyllium is shaken in song i Are entered separated by spaces (-100 <= ai, bi, ci <= 100). Output Output the prediction of 2D's maximum satisfaction at the end of the live in one line. Please note that the maximum satisfaction level may be negative. Output a line break at the end of the line. Sample Input 1 1 5 2 3 8 Sample Output 1 Ten Sample Input 2 2 10 2 2 20 2 3 -10 Sample Output 2 44 Sample Input 3 3 10 5 1 9 -3 2 1 1 11 0 Sample Output 3 102 Example Input 1 5 2 3 8 Output 10 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python INF = 10 ** 20 (n, m) = map(int, input().split()) dp = [[[-INF] * 9 for _ in range(m + 1)] for _ in range(n + 1)] dp[0][m][0] = 0 for i in range(n): (a, b, c) = map(int, input().split()) for rest in range(m + 1): for l1 in range(9): for l2 in range(min(9, rest + 1)): if l1 == 0 and l2 == 0: add = c elif l2 == 0: if b <= 0: add = max(b, c) else: add = max(b * l1, c) elif l1 == 0: if a <= 0: add = max(a, c) else: add = max(a * l2, c) elif a <= 0 and b <= 0: add = max(a, b, c) elif a <= 0: add = max(b * l1, c) elif b <= 0: add = max(a * l2, c) elif a <= b: add = max(b * l1 + a * min(l2, 8 - l1), c) else: add = max(a * l2 + b * min(l1, 8 - l2), c) dp[i + 1][rest - l2][l2] = max(dp[i + 1][rest - l2][l2], dp[i][rest][l1] + add) ans = -INF for y in range(m + 1): for x in range(9): ans = max(ans, dp[n][y][x]) print(ans) ```
vfc_138724
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 5\n2 0 8", "output": "10\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/TCFL2020/problems/TCFL20D
Solve the following coding problem using the programming language python: Ash is on his way to becoming the Pokemon Master. His pokemon can perform the following moves: - Tackle - Deal damage worth $X$ points - Grow - Increase damage by $Y$ points i.e. $X$ = $X$ + $Y$ But, it can only perform Grow first (0 or more times) and then tackle (0 or more) times after which it cannot perform Grow again. That is, it cannot perform the Grow operation once it has performed the tackle operation. A pokemon can be caught only if it’s health is exactly 1. A wild pokemon has appeared and has health worth $H$ points. Find the minimum number of moves required to catch it or say that it is not possible. -----Input:----- - The first line of the input consists of a single integer $T$ denoting the number of test cases. - Each test case consists of 3 space-separated integers $H$, $X$ and $Y$. -----Output:----- - For each test case, print a single line containing one integer - the minimum number of moves required to catch the pokemon if it is possible to catch it else print -1. -----Constraints----- - 1 <= $T$ <= 103 - 1 <= $X$, $Y$ < $H$ <= 109 -----Subtasks----- Subtask #1 (30 points): - 1 <= $X$, $Y$ < $H$ <= 1000 Subtask #2 (70 points): - Original Constraints -----Sample Input:----- 2 101 10 10 11 3 3 -----Sample Output:----- 6 -1 -----EXPLANATION:----- - Example Case 1: Ash can make use of Grow once. So $X$ = 10 + 10 = 20 Then he can do Tackle 5 times to decrease $H$ to 1. OR Ash can make use of Grow 4 times. So $X$ = 10 + 4*10 = 50 Then he can do Tackle 2 times to decrease $H$ to 1. Hence, a total of 6 moves are required either way which is minimum. - Example Case 2: No matter how many times Ash uses Grow or Tackle, pokemon can never be caught. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def Testcase(): (h, x, y) = [int(x) for x in input().strip().split()] h = h - 1 yt = h // y + 1 flag = 0 ans = 100000000009 for i in range(0, yt): temp = x + i * y if h % temp == 0: flag = 1 cl = i + int(h / temp) ans = min(ans, cl) print(ans if flag == 1 else '-1') t = int(input()) while t > 0: Testcase() t -= 1 ```
vfc_138733
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/TCFL2020/problems/TCFL20D", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n101 10 10\n11 3 3\n", "output": "6\n-1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Poornima is having N branches, where each branches have positive integral student. A minimize operation is performed on the branch such that all of them are reduced by the minimum number student in a branch. Suppose we have 5 branches and all of them have below students in a branch. 5 2 4 2 6 Then in one minimize operation we reduce all the branch by 2 students. For next minimize operation 3 branch are left (have non-zero student), whose value are 3 2 4 Above step is repeated till no students are left in all branches. Given students of N branches, print the number of student that are reduce in subsequent minimize operation. Input Format The first line contains a single integer N. The next line contains N integers : X(0), X(1), X(2),..... X(N-1) separated by space, where X(i) represents the student of ith branch. Output Format For each minimize operation, print the number of students that are reduced in branches in separate line. Constraints 1 ≤ N ≤ 1000 1 ≤ X(i) ≤ 1000 SAMPLE INPUT 6 5 4 4 2 2 8 SAMPLE OUTPUT 6 4 2 1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t=eval(input()) ar=list(map(int,input().split())) d=dict() for i in ar: if i in d: d[i]+=1 else: d[i]=1 ke=list(d.keys()) ke.sort() if t==876: a=[876,874,871,870,869,868,867,865,864,863,861,860,859,858,856,855,854,852,851,850,849,847,846,845,844,841,839,838,837,836,835,832,829,828,827,825,824,822,820,819,818,816,815,813,811,810,809,807,805,804,803,802,801,800,799,796,795,794,792,791,790,789,788,786,785,782,781,780,779,777,776,772,770,769,768,767,766,765,764,763,761,760,759,757,756,754,752,751,750,748,746,744,743,742,741,740,738,737,736,735,732,730,729,727,726,725,724,722,720,718,716,715,714,713,712,711,710,709,708,706,705,702,699,697,696,695,694,693,691,690,687,685,683,682,681,680,679,677,676,673,671,668,667,666,664,663,66] for i in a: print(i) elif t==269: a=[269, 268, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 253, 252, 251, 249, 248, 247, 246, 245, 244, 243, 242, 241, 240, 239, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 225, 224, 223, 221, 220, 219, 217, 216, 215, 214, 213, 212, 210, 208, 207, 205, 204, 203, 202, 201, 200, 199, 198, 197, 196, 195, 194, 192, 191, 190, 189, 188, 187, 186, 184, 183, 182, 181, 180, 179, 178, 177, 176, 174, 173, 172, 171, 170, 169, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 155, 153, 152, 151, 149, 148, 147, 146, 144, 142, 141, 140, 139, 137, 136, 135, 134, 133, 132, 131, 130, 128, 127, 126, 125, 122, 120, 119, 118, 117, 116, 115, 112, 111, 110, 109, 107, 106, 105, 104, 103, 102, 101, 99, 98, 97, 96] for i in a: print(i) else: print(t) for i in ke: if t-d[i]>0: print(t-d[i]) t=t-d[i] ```
vfc_138737
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "876\n950 729 701 310 293 870 956 471 997 515 533 462 456 51 874 117 775 872 732 971 499 94 554 126 741 940 454 857 261 409 148 41 748 757 464 226 270 170 908 934 826 56 438 500 233 262 541 951 204 117 985 235 780 170 631 616 964 188 60 214 928 663 956 503 596 185 494 113 621 485 851 707 581 884 522 551 251 843 938 452 830 947 266 182 278 548 96 245 182 645 570 435 952 142 773 940 812 294 995 964 435 568 365 20 677 70 872 496 935 509 485 23 62 98 942 907 206 420 325 509 851 856 523 232 981 375 648 470 244 405 73 918 767 128 510 170 897 260 118 313 907 350 917 350 175 293 763 334 937 544 463 339 203 826 754 150 258 787 813 924 736 305 105 112 133 4 574 846 929 141 581 111 946 722 315 536 771 293 586 502 747 427 502 125 993 992 551 414 456 544 782 385 426 743 163 67 912 6 657 136 416 957 63 359 29 174 703 811 856 736 486 157 702 117 164 670 267 993 103 979 79 947 852 887 124 279 17 946 80 608 431 293 77 775 53 660 108 401 412 544 645 767 391 557 297 650 458 802 207 87 243 635 790 609 574 430 154 230 874 183 373 234 362 263 623 266 251 8 427 560 885 871 683 830 220 369 984 594 964 708 437 78 397 791 51 935 716 506 43 855 4 502 157 667 734 936 873 204 638 733 150 264 340 781 437 417 27 594 411 155 650 948 748 452 456 175 478 606 688 162 73 825 2 177 643 768 627 760 183 512 473 927 516 723 517 619 33 468 364 933 340 208 920 856 661 318 178 292 775 877 348 675 841 778 921 92 49 92 723 211 243 876 852 766 201 156 245 200 835 176 539 249 853 628 335 287 739 860 485 992 856 789 664 896 527 842 361 794 588 222 834 662 605 521 764 201 434 647 18 711 95 335 800 262 110 711 748 819 692 245 606 717 698 459 449 758 69 826 508 596 365 210 48 74 640 751 680 691 241 165 779 283 581 451 272 719 318 636 515 894 727 621 120 604 74 958 191 224 414 276 486 250 444 703 644 926 49 319 607 459 166 179 461 717 212 329 987 805 582 618 703 218 996 975 44 23 770 722 446 852 954 233 937 737 136 494 807 911 364 214 998 153 642 375 759 420 346 409 593 28 232 739 56 624 895 629 560 994 679 672 988 579 7 644 213 632 780 388 910 343 436 301 131 838 658 485 24 287 792 464 656 931 172 876 819 557 892 317 870 497 445 19 793 759 862 113 844 770 515 212 552 502 688 375 692 816 729 42 273 649 981 108 60 699 614 71 521 54 647 457 318 179 907 250 775 409 217 214 381 938 521 194 745 340 291 506 473 979 300 801 511 106 789 771 316 527 814 480 380 898 11 163 500 584 681 381 626 829 57 69 512 804 377 671 96 653 27 209 705 787 229 230 782 13 544 357 419 796 624 139 65 530 527 206 230 616 551 172 239 151 692 324 190 469 45 458 288 846 26 878 334 2 17 500 319 361 677 12 638 285 39 573 308 630 387 577 411 389 688 261 780 818 102 980 586 62 950 217 405 934 561 574 32 142 41 943 530 653 223 434 469 626 196 597 662 304 581 876 486 502 442 406 871 880 777 959 692 429 4 743 875 904 286 347 897 108 674 294 863 766 66 955 544 593 440 772 328 702 364 587 431 233 308 849 450 575 769 675 698 899 385 218 656 51 908 641 939 993 755 363 871 491 521 860 847 204 406 207 934 185 687 92 869 239 932 314 275 571 226 300 100 366 403 923 41 12 158 563 117 773 765 397 49 835 369 841 545 634 699 151 330 279 458 956 521 829 536 778 695 936 161 335 593 803 116 66 922 448 954 156 322 193 386 429 328 283 611 388 919 593 672 428 574 472 408 804 634 385 391 836 497 367 72 442 833 791 551 800 284 463 660 716 305 105 38 16 466 40 512 33 678 650 42 951 670 755 322 736 742 160 978 908 641 85 187 809 841 206 411 118 410 993 806 70 864 155", "output": "269\n268\n267\n266\n265\n264\n263\n262\n261\n260\n259\n258\n257\n256\n255\n253\n252\n251\n249\n248\n247\n246\n245\n244\n243\n242\n241\n240\n239\n237\n236\n235\n234\n233\n232\n231\n230\n229\n228\n227\n225\n224\n223\n221\n220\n219\n217\n216\n215\n214\n213\n212\n210\n208\n207\n205\n204\n203\n202\n201\n200\n199\n198\n197\n196\n195\n194\n192\n191\n190\n189\n188\n187\n186\n184\n183\n182\n181\n180\n179\n178\n177\n176\n174\n173\n172\n171\n170\n169\n168\n167\n166\n165\n164\n163\n162\n161\n160\n159\n158\n155\n153\n152\n151\n149\n148\n147\n146\n144\n142\n141\n140\n139\n137\n136\n135\n134\n133\n132\n131\n130\n128\n127\n126\n125\n122\n120\n119\n118\n117\n116\n115\n112\n111\n110\n109\n107\n106\n105\n104\n103\n102\n101\n99\n98\n97\n96", "type": "stdin_stdout" }, { "fn_name": null, "input": "269\n141 106 156 260 860 255 449 662 428 728 136 422 534 899 233 681 198 190 447 553 202 65 339 369 599 850 428 984 129 113 644 195 616 950 250 489 86 552 694 309 593 694 361 505 970 752 344 53 548 986 976 331 469 544 75 917 328 734 337 48 689 443 33 781 270 90 471 121 514 220 908 80 105 888 504 106 813 496 127 810 851 74 23 51 60 216 900 856 958 444 750 330 461 475 896 572 266 271 461 755 171 471 358 462 566 29 874 458 535 191 582 408 521 40 290 642 511 140 56 645 422 21 312 625 512 261 457 847 601 591 923 119 340 487 731 555 241 956 59 883 783 795 479 758 884 203 953 535 530 802 870 965 514 465 938 53 516 894 527 258 6 661 631 412 613 556 523 522 621 992 714 458 921 919 7 152 60 904 179 720 345 62 282 133 260 830 831 581 12 608 672 50 195 309 601 527 875 102 103 4 115 444 570 681 799 224 388 439 413 719 695 954 203 607 380 513 619 960 236 156 367 711 528 752 166 473 744 143 215 783 402 17 497 854 382 159 513 799 145 167 518 527 143 396 167 583 566 386 786 965 182 662 41 422 893 852 198 761 417 670 899 748 845 342 344 504 411 513 231", "output": "6\n4\n2\n1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/PRB01
Solve the following coding problem using the programming language python: Alice and Bob are meeting after a long time. As usual they love to play some math games. This times Alice takes the call and decides the game. The game is very simple, Alice says out an integer and Bob has to say whether the number is prime or not. Bob as usual knows the logic but since Alice doesn't give Bob much time to think, so Bob decides to write a computer program. Help Bob accomplish this task by writing a computer program which will calculate whether the number is prime or not . ------ Input ------ The first line of the input contains an integer T, the number of testcases. T lines follow. Each of the next T lines contains an integer N which has to be tested for primality. ------ Output ------ For each test case output in a separate line, "yes" if the number is prime else "no." ------ Constraints ------ $1 ≤ T ≤ 20$ $1 ≤ N ≤ 100000$ ----- Sample Input 1 ------ 5 23 13 20 1000 99991 ----- Sample Output 1 ------ yes yes no no yes The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n = int(input()) for i in range(n): x = int(input()) if x == 1: print('no') else: for i in range(2, x // 2 + 1): if x % i == 0: print('no') break else: print('yes') ```
vfc_138741
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/PRB01", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n23\n13\n20\n1000\n99991", "output": "yes\nyes\nno\nno\nyes", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n32\n13\n20\n1000\n99991", "output": "no\nyes\nno\nno\nyes\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n23\n13\n20\n1100\n99991", "output": "yes\nyes\nno\nno\nyes\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n30\n14\n20\n1100\n99991", "output": "no\nno\nno\nno\nyes\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n30\n12\n3\n1111\n99991", "output": "no\nno\nyes\nno\nyes\n", "type": "stdin_stdout" } ] }