Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thebishorup/e9471765492fb7164b1939b7c4fde49e to your computer and use it in GitHub Desktop.
Save thebishorup/e9471765492fb7164b1939b7c4fde49e to your computer and use it in GitHub Desktop.
TF2.0 and Keras for Word Embedding in NLP
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "from tensorflow.keras.preprocessing.text import one_hot, Tokenizer\nfrom tensorflow.keras.preprocessing.sequence import pad_sequences\nfrom tensorflow.keras.models import Sequential\nfrom tensorflow.keras.layers import Dense, Flatten, Embedding, Activation, Dropout, Conv1D, MaxPool1D, MaxPooling1D, GlobalMaxPooling1D\nfrom tensorflow.keras import regularizers\nimport numpy as np\nfrom numpy import array\nimport pandas as pd",
"execution_count": 64,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "from sklearn.model_selection import train_test_split",
"execution_count": 2,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "import re",
"execution_count": 31,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df16m = pd.read_csv('twitter_sentiment.csv', encoding='latin', header=None)",
"execution_count": 10,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df16m.head()",
"execution_count": 11,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 11,
"data": {
"text/plain": " 0 1 2 3 4 \\\n0 0 1467810369 Mon Apr 06 22:19:45 PDT 2009 NO_QUERY _TheSpecialOne_ \n1 0 1467810672 Mon Apr 06 22:19:49 PDT 2009 NO_QUERY scotthamilton \n2 0 1467810917 Mon Apr 06 22:19:53 PDT 2009 NO_QUERY mattycus \n3 0 1467811184 Mon Apr 06 22:19:57 PDT 2009 NO_QUERY ElleCTF \n4 0 1467811193 Mon Apr 06 22:19:57 PDT 2009 NO_QUERY Karoli \n\n 5 \n0 @switchfoot http://twitpic.com/2y1zl - Awww, t... \n1 is upset that he can't update his Facebook by ... \n2 @Kenichan I dived many times for the ball. Man... \n3 my whole body feels itchy and like its on fire \n4 @nationwideclass no, it's not behaving at all.... ",
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>0</th>\n <th>1</th>\n <th>2</th>\n <th>3</th>\n <th>4</th>\n <th>5</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>0</td>\n <td>1467810369</td>\n <td>Mon Apr 06 22:19:45 PDT 2009</td>\n <td>NO_QUERY</td>\n <td>_TheSpecialOne_</td>\n <td>@switchfoot http://twitpic.com/2y1zl - Awww, t...</td>\n </tr>\n <tr>\n <th>1</th>\n <td>0</td>\n <td>1467810672</td>\n <td>Mon Apr 06 22:19:49 PDT 2009</td>\n <td>NO_QUERY</td>\n <td>scotthamilton</td>\n <td>is upset that he can't update his Facebook by ...</td>\n </tr>\n <tr>\n <th>2</th>\n <td>0</td>\n <td>1467810917</td>\n <td>Mon Apr 06 22:19:53 PDT 2009</td>\n <td>NO_QUERY</td>\n <td>mattycus</td>\n <td>@Kenichan I dived many times for the ball. Man...</td>\n </tr>\n <tr>\n <th>3</th>\n <td>0</td>\n <td>1467811184</td>\n <td>Mon Apr 06 22:19:57 PDT 2009</td>\n <td>NO_QUERY</td>\n <td>ElleCTF</td>\n <td>my whole body feels itchy and like its on fire</td>\n </tr>\n <tr>\n <th>4</th>\n <td>0</td>\n <td>1467811193</td>\n <td>Mon Apr 06 22:19:57 PDT 2009</td>\n <td>NO_QUERY</td>\n <td>Karoli</td>\n <td>@nationwideclass no, it's not behaving at all....</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df0 = df16m[[5, 0]]",
"execution_count": 14,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df0.head()",
"execution_count": 15,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 15,
"data": {
"text/plain": " 5 0\n0 @switchfoot http://twitpic.com/2y1zl - Awww, t... 0\n1 is upset that he can't update his Facebook by ... 0\n2 @Kenichan I dived many times for the ball. Man... 0\n3 my whole body feels itchy and like its on fire 0\n4 @nationwideclass no, it's not behaving at all.... 0",
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>5</th>\n <th>0</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>@switchfoot http://twitpic.com/2y1zl - Awww, t...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>1</th>\n <td>is upset that he can't update his Facebook by ...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>2</th>\n <td>@Kenichan I dived many times for the ball. Man...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>3</th>\n <td>my whole body feels itchy and like its on fire</td>\n <td>0</td>\n </tr>\n <tr>\n <th>4</th>\n <td>@nationwideclass no, it's not behaving at all....</td>\n <td>0</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df0.shape",
"execution_count": 16,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 16,
"data": {
"text/plain": "(1600000, 2)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dfp = df0[df0[0] == 0].sample(2000)",
"execution_count": 19,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dfn = df0[df0[0] == 4].sample(2000)",
"execution_count": 20,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df = dfp.append(dfn)",
"execution_count": 22,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.head()",
"execution_count": 23,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 23,
"data": {
"text/plain": " 5 0\n474748 Feck. I got a shock there looking at my bank b... 0\n531944 @Xcitementt SO U SAID HELLO JUS 2 SAY IT, NOTH... 0\n329296 why is my chess club not in the yearbook? 0\n55526 @adrianspencer Threw me away like a used tissue 0\n679397 @cassiehl I'm always doing things like that. I... 0",
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>5</th>\n <th>0</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>474748</th>\n <td>Feck. I got a shock there looking at my bank b...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>531944</th>\n <td>@Xcitementt SO U SAID HELLO JUS 2 SAY IT, NOTH...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>329296</th>\n <td>why is my chess club not in the yearbook?</td>\n <td>0</td>\n </tr>\n <tr>\n <th>55526</th>\n <td>@adrianspencer Threw me away like a used tissue</td>\n <td>0</td>\n </tr>\n <tr>\n <th>679397</th>\n <td>@cassiehl I'm always doing things like that. I...</td>\n <td>0</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.shape",
"execution_count": 24,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 24,
"data": {
"text/plain": "(4000, 2)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.columns = ['tweets', 'sentiment']",
"execution_count": 25,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.reset_index(drop=True, inplace=True)",
"execution_count": 27,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.head()",
"execution_count": 28,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 28,
"data": {
"text/plain": " tweets sentiment\n0 Feck. I got a shock there looking at my bank b... 0\n1 @Xcitementt SO U SAID HELLO JUS 2 SAY IT, NOTH... 0\n2 why is my chess club not in the yearbook? 0\n3 @adrianspencer Threw me away like a used tissue 0\n4 @cassiehl I'm always doing things like that. I... 0",
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>tweets</th>\n <th>sentiment</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>Feck. I got a shock there looking at my bank b...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>1</th>\n <td>@Xcitementt SO U SAID HELLO JUS 2 SAY IT, NOTH...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>2</th>\n <td>why is my chess club not in the yearbook?</td>\n <td>0</td>\n </tr>\n <tr>\n <th>3</th>\n <td>@adrianspencer Threw me away like a used tissue</td>\n <td>0</td>\n </tr>\n <tr>\n <th>4</th>\n <td>@cassiehl I'm always doing things like that. I...</td>\n <td>0</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.shape",
"execution_count": 29,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 29,
"data": {
"text/plain": "(4000, 2)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df['sentiment'].value_counts()",
"execution_count": 30,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 30,
"data": {
"text/plain": "4 2000\n0 2000\nName: sentiment, dtype: int64"
},
"metadata": {}
}
]
},
{
"metadata": {},
"cell_type": "markdown",
"source": "#### REMOVE # AND @"
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df['tweets'] = df['tweets'].apply(lambda x: re.sub('[^A-Z a-z 0-9-]+', '', x))",
"execution_count": 34,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.head()",
"execution_count": 35,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 35,
"data": {
"text/plain": " tweets sentiment\n0 Feck I got a shock there looking at my bank ba... 0\n1 Xcitementt SO U SAID HELLO JUS 2 SAY IT NOTHIN... 0\n2 why is my chess club not in the yearbook 0\n3 adrianspencer Threw me away like a used tissue 0\n4 cassiehl Im always doing things like that I th... 0",
"text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>tweets</th>\n <th>sentiment</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>Feck I got a shock there looking at my bank ba...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>1</th>\n <td>Xcitementt SO U SAID HELLO JUS 2 SAY IT NOTHIN...</td>\n <td>0</td>\n </tr>\n <tr>\n <th>2</th>\n <td>why is my chess club not in the yearbook</td>\n <td>0</td>\n </tr>\n <tr>\n <th>3</th>\n <td>adrianspencer Threw me away like a used tissue</td>\n <td>0</td>\n </tr>\n <tr>\n <th>4</th>\n <td>cassiehl Im always doing things like that I th...</td>\n <td>0</td>\n </tr>\n </tbody>\n</table>\n</div>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "df.shape",
"execution_count": 36,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 36,
"data": {
"text/plain": "(4000, 2)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "text = df['tweets'].tolist()",
"execution_count": 37,
"outputs": []
},
{
"metadata": {
"trusted": true,
"collapsed": true
},
"cell_type": "code",
"source": "text",
"execution_count": 38,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 38,
"data": {
"text/plain": "['Feck I got a shock there looking at my bank balance ',\n 'Xcitementt SO U SAID HELLO JUS 2 SAY IT NOTHING ELSE ',\n 'why is my chess club not in the yearbook ',\n 'adrianspencer Threw me away like a used tissue ',\n 'cassiehl Im always doing things like that I think quotIll put the work into this one and make it nicequot but it never works out Good luck',\n 'its not working ',\n 'Loved transformers Im tired now but i cant sleep ',\n 'tzeee veinte dramas making me cry over and over again ',\n 'iamjonathancook aweee im so sorry ',\n 'artfanatic411 bc she wants it to happen just as much as tara her mom told me that tara has been saving her change to go on one ',\n 'Cant believe Elijahs sick-my poor little baby boy Im so sad I hope that hes okay',\n 'wanted to wash his clothes and bed sheet but the outdoor rack is full ',\n 'I hate love sometimes ',\n 'yawn good morning Looking at dresses today -- Still trying to figure out the house thing ',\n 'deafmom I hate that Im losing my ASL for lack of practice Not even picking up NZ Sign ',\n 'sinjax Alas MusicBrainz does not recognise the mp3 httpcontentytmndcomcontent12a12a04f12b7524534b0275a0ab5fcab9emp3',\n 'Going to coffee shop to get lots of work done on my report at least its cloudy',\n 'itsdanniii yeahh being all flakey and on and off really isnt something that anyone can build a foundation on breaks my heart to say',\n 'I feel really quite sick so hae had to skip Book Return Day and am lying in bed hoping I dont throw up i have a phobia of it i think',\n 'Oh noIm going to cry he really left Bella BUT theres JACOB AMAZINGneed 2 watch it RIGHT NOW',\n 'really wanted to go see mcfly on 8th may ONLY to see DavidArchie but i cant ',\n 'PaulTobin Its true unfortunately But Ill be buying the hell outta Models Inc I cant wait',\n 'MadDave123 Aw poor thing whats the matter with him ',\n 'Went to the comic store again no purchases Did get dinner at Chilis though',\n 'Gruesome internet connection problems today just burned up three hours trying to fix - booo ',\n 'HAMMER32 it would pick up words like porn fuck etc LOL and i could get into shit for that LOL so i have to settle for weekends ',\n 'Hasnt been to a group ritual in many many MANY moons bring on the sabbat baaaabbbbyyyyy',\n 'On the Westchester bus headed to the Bowl Only 8 round trip oof Glad I had some headphones in the office',\n 'kx3u ohh haha I was craving some last night but they were closed And Ive been watching Zac interviews on TV Hes sooo cool',\n 'Formula 1 week has officially started well Im nervous amp excited at the same time no sleep for me till next week this time around ',\n 'Feeling sorry for all the chaps and chappettes unable to race in TT09 Superbike amp Sidecars races today ',\n 'Outlandishjer You didnt even reply You could just use this account and outlandishcast the reply or just Matts post or what u did',\n 'Lousy Monday Thinking Forward Vacations in 4 weeks',\n 'Relax till tom But then laundry is on ',\n 'eveninggirl ahamkaara Teewitty Yall are already counting down to your 21st birthdays Im still counting down to my 20th ',\n 'jodified Ha It may be too late by Friday to put it on hold if all works out Too bad we live too far away for a playdate ',\n 'samuellippke are you kidding me what happened I thought they were so happy ',\n 'will not be able to sleep peaceful tonight ',\n 'Sorry everyone Server errors really suck Im working on it wwwmywetspotorg',\n 'keza34 oooo yeah he bn work today twittertakeover',\n 'anthywf gw juga ngga edziardo yeahKind of that ',\n 'TheSims3 well us Brits have to wait a few more days for it I thought it was all gonna realized at once I guess its worth the wait ',\n 'Aah I love this weatherlots of girls around in very little clothing it feels like heaven until a fat burd walks past wearing the same ',\n 'FrankieTheSats Babe How are you doin Joshua Says HI Send my best regards to CECE xxx',\n 'myspace isnt working next best thing is twitter ',\n 'laurenlivesloud are you KIDDING ME im gonna fail lauren like ive cried TWICE allready just in the past few hours ',\n 'I have to do inventory on an entire storage closet FULL of EVERYTHING and I dont kno where to start httpmypictme42V6',\n 'Carax aw mannnn cos the dykeenies are playin on the 9th July and i really want to go lol but its over 18s',\n 'Missing the people I love so very much and cant see anymore I need them now more than ever',\n 'AceMas21 Nope I just get no pay if I call in sick',\n 'fallenstar haha cool thats a lovely way to wake up Somedays i miss the postman because I have to leave for the bus ',\n 'peytiejane OMG THATS NOT FAIR i didnt realize his hotness until like today i always thought he was ugly ',\n 'Oh man I have a Mac Reviewcast egment ready but cant record it because I have a cold',\n 'spent all day uninstaling old versions of VStudio and installing new versiontakes too long ',\n 'i wish i was capable of speaking my mind ',\n 'just realized drake was in DC today and i didnt hit my mission to go sneak and see him ',\n 'Nice and wet day Good forpaper writing ',\n 'mommywantsvodka that you can do for it I had that happened and then I cried and had a funeral for the bird xoxo',\n 'nuruljannah OMG please take some kind of medication why does ur bronchitis act up during ur auditions shit ',\n 'knew it was to good to be true - the rain has returned and its Saturday ',\n 'after eating chinese last night i had the worst stomachache i want pizza tonight but i dont want the pain ',\n 'House seems lonely now ',\n 'graffking what a bummer ',\n 'iizabella93 lol i know ',\n 'SoozInSports Im too old to sell my eggs ',\n 'sometimes I hate people who actually get to spend time with thier significant others ',\n 'is packing ',\n 'Still no Threadless shirts in the mail ',\n 'Ughhh its official Im sick ',\n 'saragarth not good news ',\n 'Jonperezinsd BoomboxBui I cant tonight I am still sore Hopefully Ill be ready within the next couple of days',\n '4am cant sleep dogs barking who knows what Horrible night ',\n 'jethlam no sorry idk when i will see you again i will send you a bracelet if you want',\n 'bryntittle we did say ',\n 'most of the tasks are done Days are passing by so fast and it feels like nothing is being done well moving on to dev on word press ',\n 'i need unscented because my skin is ridiculously sensitive to perfumes also its summer and i dont want to attract bugs ',\n 'MyCheMicALmuse pleaseeee tell me -bites nails- what happened ',\n 'HorrorMovies Manufacturer might be willing to ship disks under warranty Still sucks about Futureshop though ',\n 'Well at least it stopped raining in enough time to get the hair did ',\n 'wish u didnt have to work 2nite babe ',\n 'running down people in their cubes to get stuff done troubleshooting new pages gonna have to do one of those quotthis went wrongquot e-mails ',\n 'nikicheong The only way Ive done it is the manual way All the best',\n 'Just having another lazy daythe rains so annoying ',\n 'TheAmyBrenneman last day of first day Can I have a car too Im being deported from warm Australia to cold Canada - boo ',\n 'orenmazor You wont tell me your secret favorite restaurant around the Bathurst area ',\n 'Hate it when husband falls asleep around 11 Ive only seen him a whole 4 hours today Think Ill jump on the bed and tickle him awake',\n 'lost the challange to the pizza ',\n 'Good morning Twitterworld Right now sunny blue skies but will probably change int the afternoon temperature up to 19 not much ',\n 'tired of niggas forrealtaking a bubble bathneeda clear my head ',\n '27 miles from Kankakee So close and yet still so far away ',\n 'It even causes Twooshes Holy I really kind of want one Oh well Id need a job first ',\n 'OK I just came from quotCharco Azulquot and It Was awesome now to do some laundryargh ',\n 'No American Football for me Weather got worse and it looks like rain So weve called off football but will go out for dinner later',\n 'andyclemmensen Awww wanna trade I have maths now then english next Wat a crappy day ',\n 'skylinedreams and i also have my HUGE student loan which is like 15000 at least i needs a job up here',\n 'Gonna watch some TV The N is getting better than Disney Channel I cant believe I just said that lol',\n 'Man i need a little nap ',\n 'bishimmastar oh i seepork roll eh i want food to but i cant keep anything down this is worse than bein preggers',\n 'Im not feeling well at all but Im not sick Maybe I should take some advil ',\n 'Im bored entertain me please Or else im going to sleep ',\n 'ChelseaBeth I hate it when you say quotOhmygosh Laurenquot It makes me feel like I failed you ',\n 'Done a bit of gardenin 2day an saved a worm from goin in2 the shredder only it ended up bein mutilated by the lawn mower ',\n 'hydroponikz OH NO MTV is letting you go ',\n 'pompeyisariot oh aalright i gotcha and its been pretty good i miss everyon though how has urs been Rtts Wifeyy',\n 'At the comic shop bagging and boarding for the next few hours Gonna try and finish Life today Season finale was a couple weeks ago ',\n 'downyg29 lmfao word im still getting used to it and WORD I miss you too and im trying madd hard to get my parents to let me out ',\n 'Stuck in traffic ',\n 'gilbirmingham just to let you know your awesome sorry you didnt reach 100000 ',\n 'Just saw the lady from the 700 clubI wanna take a pic with her but I look disgusting ',\n 'laptop deaded ',\n 'clarisseee why isnt anyone talking to me ',\n 'queday26 Danggggg I hope he comes back ',\n 'MrBenzedrine you got your lion hoodie mines still a week or so away what number is yours',\n 'I left my wallet on the bus today well not impressed',\n 'sbcpacker4life I just realised how much I really do hate the lakers i was legit rooting for the magicTHE MAGIC WHO RUINED LEBRON ',\n '-- Omg I cant believe jay leno is going off the air I HATE CONAN OBRIAN',\n 'Im just getting to sleep and there are birds chirping outside my window Gtf ',\n 'Please help me get this song out of my head ',\n 'roxannemarie I know now Im stuck sleeping in the middle of the room ',\n 'RPGgddss yeah - its a true story written by a columnist about all the bad things his dog did Marley eventually gets old amp dies ',\n 'what is with the June gloom outside cold and gray ',\n 'CourseWork Ohh well not long untill the summer holidays ',\n 'shanedawson thats sucks sorry for you ',\n 'I have a really bad headache and Im fuckin tired Please feel sorry for me guyz ',\n 'i hate being cancelled on spesh at the last minoh well going with sum1 else now L',\n 'me thinks I am sucking at using twitter tonightmaking wayy too many mistakes and cant rectify them because Im on my phone ',\n 'eveofdoom Yah SM2 had a few probs but I think overall it ranks as one of the best comic films Thats what made SM3 so disappointing ',\n 'bgood I will but apparently you have to be following me in order for me to DM you ',\n 'CALLMEWETWETlol truuu Thnks luvpeople gonna b coming out the woodworkshehethen the reppin stops after sunday should rep 247365',\n 'spilled water bottle all over my bookshelf of design amp italia books now theyre all hanging to dry',\n 'FrankGruber you and the rest of us - hopefully apple will end this annoying ATampT deal in another coupla years ',\n 'holy shindigs thats HOT',\n 'ah i want midnight sale too ',\n 'Angelfish007 lol full house im off work for tomororw- dereks dad passed away yest and funeral tomorrow not a fun friday off either ',\n 'captainroundeye Sorry to hear that man ',\n 'Me and xoxoroxyxoxo last day of school httptwitpiccom7uis6',\n 'alexstraughn make sure u check luggage rules for real I had to pay 120 to get my luggage here ',\n 'Drinking a s0da god I feel like a house ',\n 'dont wanna go home its all empty there maybe i should get a cat but who will care for her when i go to office ',\n 'TheDarrenxshow Get me followed son ',\n 'gemimalina yous already got 4 followers i is well jealous ',\n 'aww someone unfollowed ',\n 'djdadj Yes they are ',\n 'bored feel like Im done with work for the week and Im not ahhhhh I wish it was friday',\n 'shes gone Now what do I do ',\n 'Jennatea6591 is that because cubans cant afford alcohol ',\n 'There is nothing on TV Im watching a show about a woman with giant legs Might as well just go to bed ',\n 'MichaellaBassam Yeah and he wouldnt tell me about warped I was kinda disappointed with Jack tonight but its okay He was proly sad',\n 'megsly07 I know The place used to be wonderful But under the new board President It makes me cry ',\n 'why is it when its unny its windy too cant go to the beach now lt3',\n 'didnt go to julias probably sitting at home crying because i didnt get to see her today just kidding i dont miss her THAT much',\n 'cryssie I didman what a dissappointment I really wanna see Labron go up against Kobe ',\n 'Back in Bradford then off to Manchester No biking this weekend but impressed with my efforts this week Banishing lazy girl',\n 'brittanydanna Im super sorry to hear ',\n 'so right now i dont have my ipod D which im dying for cuz i cant hear my music NOO ',\n 'iblastoff yes Cant download anymore ',\n 'Cant sleep i missss himmm ',\n 'i really wanna see there for tomorrow but the closest they are getting to NEW ZEALAND is JAPAN ',\n 'Working on purging unnecessary pics from my computer and then backing up the good ones my hard drive is limping ',\n 'i have to leave now bye everyone on twitter',\n 'wants to go out tonighttt ',\n 'many reasons ',\n 'zzzzz best friend going to europe in a few hours im gonna miss her hope she has fun though',\n 'hollywills Sorry for spamming your twitter ha but please come on stage Monday evening at Bham still havent got to see yous yet lt3 x',\n 'tuxorhasboobs why ',\n 'gemmathomas i think im gunna watch it later ahah oh dear x',\n 'pennynash Im not allowed crisps now Low salt diet',\n 'havnt been on the cpu in like 3 days been living at the beach reburnt my sunburn i miss my baby',\n 'is its rainy outside so tired but has a full day ahead',\n 'CATHHHH 3pm Im only getting ready now haha so tired ',\n 'Leave me alone I hate being here i want the fuck out ',\n 'lt--needs a wordstimesten-inator in order to meet second extended deadline for first chapter ',\n ' im tired of feeling so lonely so easily',\n 'Bought two textbooks today I am always sad when I need textbooks at least they look useful and not deathly dull',\n 'Just working ',\n 'TIRED I JUST WANT TO GO TO SLEEP ZZZZzzzzzzzzzzzzzzzzzz',\n 'too tired have to get ready for work tomorrow now bf wants Tv off so no noise when sleeping ',\n 'I was actually hoping for some sun today to brighten up my mood wheather fail hamburg rain',\n 'eh more finals ',\n 'Not enuf sunday jazz club dad morose-looking upholstery guy were getting to be an item at this rate',\n 'Unable to come to terms on house purchase sadly May try again before too long though',\n 'MechanicalBride respect for my mom and i like coming home after a week for a clean room my bus leaves at 9 and i have to get up at 7 ',\n 'PoopyMcPooprson but why amp what do you exactly do working in a cube The last I heard you were working at a hotel Haha so long ago',\n 'Medical news one friends brother received very good news one friends niece not so much hate it when the universe tries to balance ',\n 'Oh shit a feel asleep for half an hour and now I have less than 30mins to get ready ahhhhhhhh ',\n 'iNetters thank you ',\n 'sigh just ate lunch still hungry had breakfast this morning too wtf ',\n 'Fuck fuck fuck fuck My eye hurts',\n 'Completely overexcited at the thought of staying in a hotel Wish our boys were coming with us though ',\n 'I hate when Photographs get Orange due to the lightening Lightening wasnt good at meet-up I must say ',\n 'Hey Jenny Im free On my way to work though so Ill miss the postgame show ',\n 'BLaCkitaLiaNa7 sorry lover I was finished when I got home ',\n 'atraz call me when you can i want to know whats going on ',\n 'just spent time with the cutest girl ever Zaina I wish I knew how to twitpic ',\n 'I have to go awws I want to freak out more',\n 'Im sad because when you grow you cant have friends that are guys everyone think youresomething more ',\n 'nkotbfan4life09 oh man I dunno how u do it ',\n 'KoSoVaR I knew it ',\n 'breakfast at pacific st cafe after original destination went out of business support local business',\n 'off to math no cellular device today ',\n 'Is still in the car 25c hot',\n 'NOOOOOOOOOOO the bird my mom was trying to save died ',\n 'Moms lecturing me about how i should be in school ',\n 'Back home and an un-happy bunny ',\n 'randomlittleimp I will miss you then ',\n 'JCCub1 coachbear JEALOUS ',\n 'jorosep I have too much to do 2day Me n Todd r goin away for the wkend so I wont b on here for 3 days UGH Imagine what I miss ',\n 'No soccer today I guess that gives me more time to study kanji Fuck Also its beginning to get hot out here in Kyoto Summer heat ',\n 'JohnBarsana yeah it was like GREASED back i was confused and danrad is pretty ugly but i love him anyway ',\n 'Just got home from my bike ride and working the drowned rat look really well So wheres the BBQ summer we were promised then ',\n 'Really doesnt wanna go to work today ',\n 'has subscribed with Alchemy twice to get an alpha download but they havent sent eet yet - Speak of the devil be careful what you say',\n 'Oh man these rotating shifts are going to kill me Graveyards Man I need a day job Any one got any open day jobs Please any ideas',\n 'All of the rollercoasters I make in rollercoaster tycoon are considered ultra-intense Im just too extreme for them',\n 'spikmeister Yepfeeling sad about it used to live in the region Turnout also worryingly low in NW - about 32 ',\n 'squarespace I really miss my iPhone ',\n 'OMG what a nightmare had to cancel my hair appointment ughhhh one of the hardest things to do ',\n 'I wish my internet was working ',\n 'greenova Gonna be out of townsorry man ',\n 'kboudit im sorry LOL damn but i know how u feel took me a while myself trust me',\n 'MzLd0tInfamous aaaaw why are you depressed girl ',\n 'larevanche idk if i can come today Im going to church and breakfast w my grandma amp well get out after noon amp i dont have a ride',\n 'Sleepppp ughhh Its been raining for the last 3 weeks Miami isnt Miami without being able to go to the beach ',\n 'I think Im the only one that actually feels sorry for PerezHilton ',\n 'ashwinn all work and no travel would make ashwinn a dull nerd ',\n 'am madd i had to miss my baby sister milanrouge bday happy hour cus of fuggin work ',\n 'OkTwitter is not near as exciting as I thought it would be ',\n 'Sorry not tweeting much 2day Im sick dont want 2send my germs in2 the twittersphere No work 2day Just me the sofa ampthe ellen show',\n 'Misses her kitty just broke down I want my kitty back ',\n 'my facebook has been hacked ',\n 'Band practice is sucking ',\n 'hmmm - playing sims of all things and am very tired ',\n 'Nice day out today wish I didnt have to work ',\n 'UnknownHeather I sorry We should take you to play with the MAC boys That could be FUN',\n 'shar03 Yeah Star City daw but I guess I wouldnt be allowed ',\n 'computer still freakin down but took a break from my Rebelde marathon',\n 'feelouise yeah i know im having nicky withdrawls didnt get 2 see the match last week either ',\n 'shawnemerriman Hi Mr Shawne When are you coming back to Upper Deck I was traveling for work and I didnt get to see you in full pads ',\n 'No autobots here at JapShow seen Pod racers tho Cut my finger bumped my hed Clumsy daiye',\n 'now even our local beerrly in woe of strike due 2 labour woes well not much on me',\n 'Now that schools out I can get dressed with the window open without potentially scarring a child Its liberating My foot looks gross ',\n 'rebeccamarilyn that sucks ',\n 'cutebug Im sorry I hope you feel better later',\n 'kumpera cant find a way to organize music based on genres in Banshee its always using artists and albums ',\n 'TheTallOne Im in the next room but I know what you mean Ive been gone all weekend I miss you too ',\n 'Now I have mailing issues on my stupid macBook what is stmp whats my password Aaargh ',\n 'is supposed to be in Manor today partying if Carlos were still here httpplurkcomprdlaz',\n 'hnshah Wow Really really tricky It took me all three tries Sorry for stereotyping you ',\n 'Im so fuckin ill daaamnn my whole body hurts ',\n 'BonesFans That sucks ',\n 'BikeTherapy thank you they will need prayers of strength todayI hope I have enough to help',\n 'Needs to watch the new season of Desperate Housewives OMG Mike and Susan forevs I wasnt able to catch up with the new season ',\n 'Work on a saturday should be illegal Dont finish while 11pm either really bad times ',\n 'Ch ln u tin dng ci ny Thy g chm qu Ci ny hay g nh -',\n 'BryanGwin nah they arent they are great they should get more attention lol have you seen them live',\n 'xbeckaxockx Aw that is tragic ',\n 'I dont feel good at all ',\n 'poppydog oh no so how do you get over having it done now Good job you dad was there',\n 'I want those 2 hours of my life back sobs ',\n 'Its going to be in the 90s here today Better cut my grass before its too hot ',\n 'iphone 30 not till 6pm in uk ',\n 'nbadeckcom in canada hotel foyet no apprentice clips outside uk but get to watch nba playoffs in httptinyurlcomr2llf6',\n 'going 2 jery duty 2morrow ',\n 'anyone else sun bathing iv had to in for a bit i burn easily and sun stroke gets me if im out too long loving the weather though',\n 'i wish that my dream would come true ',\n 'I wish we could go to pride weekend in Chicago again ',\n 'exams check picnic in the park check movie night with john check great saturday very sad that its sunday cloudy and john-less ',\n 'anneheathen yep no breathing through the nose need to breathe through the mouthcan get annoying when it takes a while ',\n 'Standing in line for lottery tickets to see Wicked httptwitpiccom7qw03 we did not win ',\n 'sailorlegs we lost but our score was pretty good ah well',\n 'Space Mountain is closed til Winter 09 Succesfully fought off suicidal thoughts Theyre gonna make it smooth like Disney Land ',\n 'acrylicana did you decline my friend invite on facebook ',\n 'likeSunday ah see my fatness is my own fault ',\n 'ugh RUDENESS im appalled bzakoolchiq thats y Crakk 5th ave stole his shoes the mansion hahahaha pleasurep',\n 'just realised i spelt twitter wrong ',\n 'mzlcherry to make u mad Cuz as hot as it is right now a mini fan is just as worthless as a church fan ',\n 'AAband nooo sweeties thats so shit well see you an other time then love you longtime',\n 'Pastamania dinner for me But now I have no cash for tomorrow ',\n 'Dont think I am going to go to see Paolo nutini Today as dad wants me to revise ',\n 'just watched McFlys on the road thing from their Live at Wembley DVD im jealous wish theyd come here ',\n 'staceface88 No internets Well looks like well have to have weekly phone convos as if we were in grade school on summer vacay',\n 'praying for my best friend Becky amp her family They have gone through such horrible unfortunate events this month',\n 'still trying to nail this intro 5yrs in the making httpbitlyK8Udt',\n 'Now shes on YouTube with a cheap wig and too much make up screaming for Jesus and proselytizing about who knows what Sad days abound',\n 'the car wash broke my antenna ',\n 'Gnight world IckestI hope your doggie comes home ',\n 'feels tears Argh httpplurkcomp12g2pc',\n 'Headed to work Sore throat and all ',\n 'coursework ',\n 'rolemodel Me neitherrrrr I have no idea Probably play with the baby a little and then go on the computer lol',\n 'KevinRuddPM hey I have an assignment draft due tomorrow and I havent started I look at it and all it says is nothing to me Crisis',\n 'Damnnn hittin thee sheetsz Horrible night ',\n 'Meclizine has helped somewhat Not a lot but a tiny bit Vertigo is still here ',\n 'JusteneJaro aww what no one to hang wit u',\n 'preparing to fail my stats exam Why higher Theres just no need for it ',\n 'Ugh Mitchel Musso isnt sending out anymore Tweets Im sad ',\n 'missmei init some overly longting NicholleMonique sighs ',\n 'Going to Ellensburg in 5 minutes Im so tired Walter and I went to bed so late and woke up at 430 and I feel really sick',\n 'SaintRichie boo to that ',\n 'winkphotography great to finally meet you last night Wish we had more time to talk Cant go to the coffee GTGs though Day job ',\n 'MakeupMel Ugh I hate when the videos are not available on my iPhone ',\n 'Feeling CRaptastic today And its so pretty outside',\n 'mileycyrus Im so sad for you too ',\n 'My hairI look like a boy now ',\n 'I did not sleep good ALL last night ',\n 'rockinwriterchk i know right bahhh i cant see it happening after twitter screwed up yesterday though ',\n 'so what to do now Dont tell me we got to say bye bye to flickr from now on ',\n 'AGREED teamKaos dont understand why Runs House and Cake Boss are in the Top 10 Trending Topics but yet BSB isnt BSB',\n 'Yay honors english went up- too bad there are going to be 2 classes ',\n 'vsolana dang gurl what do you even do for that Well i hope you feel better',\n 'lynmartinez I MISS YOU LYN gtlt',\n 'carole29 I dont think that news reporters are allowed to be prejudice offensive towards morons or swear ',\n 'Grrrrr fuck Just remembered that Im doing the later shift today so not at work for another hour What a wasted lay in opportunity ',\n 'duckyztwit Sorry to hear about your grandfather ',\n 'oOoSoChiC I dont get you hype guess ill have to work on that',\n 'my 360 has broken ',\n 'thought the heater was on making her room delicious but returned to an ice cave DAMN WINTER',\n 'is at Jocelyns til Sunday sometimewatching movies all day today because it is raining ',\n 'mrolip the crazy part is jay aint gonna throw out an actual album til 4th quarter anywayshe just teasing us ',\n 'i totally think going to bed late was a bad option to choose seeing tho i have to get up early in the morning ',\n 'Just left the ATampT store It is going to be 11 weeks before I can upgrade Aparently the 3g guys get a break not the original owners ',\n 'SamPerrin what happened',\n 'sitting at home on a saturday night ',\n 'The dog has just decided to fall asleep on top of me and now I cant reach my cup of tea ',\n 'I love ya twitterfon But tweetdeck is taking your place for now ',\n 'Raining like crazy in plainview While delivering mail ',\n 'my feet are killing expensive but shit shoes ughhhhhhhh ',\n 'Sorry my loves but I have been in a hard place recentlylaptops out of commission ',\n 'i get very emotional every time i listen to les mis damn you marius stupid cosette ooh poor eponine ',\n 'Is in a quandry I dont know what colours to use ',\n 'acho que vou ver roupinhas goticas -qqq',\n 'is saying goodbye to summer ',\n 'Twenty-one downone to gobut as usual have left the hardest to last ',\n 'LaurenSiers I know how you feel girl my grandma uncle and cousin died 3 months apart I will pray for u love you and miss you lt3',\n 'this is the sound of me breaking ',\n 'alexxpiinksz demis coming to nokie theater and im gonna be out of town well its sad ',\n 'the most And when Lost comes back given its the final seasonits gonna be even worse ',\n 'therealmiamazin no HBO I miss it so has that Jill scott show started',\n 'Soaking wet and in a bad mood stil Still LOTR is the plan for the afternoon',\n 'Really bummed that camp is over ',\n 'AllicatCO Not a cartoon fan ',\n 'relicthered ',\n 'bleedingxsoul well its about time my roots are gross and omg i hope that story isnt true ',\n 'XsarahX93 lolz okay bye bye i did mine today in the garden its borin seya monday havent seen you all week ly xxxx',\n 'I am sitting on my sofa starving watching some boring cooking thing on tele and setting up my twitter page',\n 'cheerleading competition on saturday i have bad back pain ',\n 'URGH headache urgh NOT FAIR ',\n 'my head hurts cant sleepand have school tomorrow fuck ',\n 'I AM READY TO GO TO SLEEP TIRED ',\n 'Isak whaaat why ',\n 'I wish my neighbors internet would cut back on ',\n 'jcluvsnkotb yeah Im low on vacay time too thats why I didnt go to Boston ',\n 'annaguirre Now I wish I was going ',\n 'birdrage heyyy sorrry ive already planned to go with my friends ahead of time',\n 'listening to Breakout Goodbye makes me want to cry ',\n 'Nothing to dooo ',\n 'tluckow Yep Bad news Our neighbors crazy son wants to take him Im sorry wed jokingly asked them if they wanted him and now',\n 'beezhing ikr and the maine and jacks mannequin ok THIS FANGIRLING NEEDS TO EXPLOOOODE',\n 'U could care less for life Huh when u see my bllod all over the news then will u believe I wasnt lieing u crazy twitter ',\n 'nm I guess Its only reruns of Neds ',\n 'RoystonVassey looks like it maybe noon in New York time Long wait for me then ',\n 'SwagBeezySODMG - Hope U All Good That Sounds Sad x x',\n 'Chilling out in Florida Wooooop The storm is coming ',\n 'Beam me up Scottylong ass wait ',\n 'belly pushing against jeans - only three months and I already have to consider maternity clothes boohoo ',\n 'CinRox pick me up then so you can buy me a damn pupusa ',\n 'therunningdiva Hey How is San Diego Good and Bad news yesterday Austin made it Brooke did not Pretty heartbreaking about brooke',\n 'Beforethewind 3 lt--- cute hug facey',\n 'Feeling sad because my friend will be leaving town ',\n 'JUST got done eating brkfast that dollhse didnt come help me with boooooo ',\n 'Shed tears while watching ',\n 'httptwitpiccom7r8qx - What beautiful weather in chitown tonight Wish it was like this tomorrow for the part Scattered t storms ',\n 'Ughh im so mad I saw that the sandlot was on and i turned it there and its over thats like one of my favorite movies',\n 'Morning rain ',\n 'hannahsum i super like it but its so sad for me quotthe last kissquot awww ',\n 'Dont forget tonights meeting is a fun panel night Please bring in a panel of 4-6 mounted images Last meeting before the summer break ',\n 'hollabitch constant blocked nose for me too mishhh you love',\n 'Is hopping on a flight Oh wait No im not ',\n 'luckystars1 I heard about that Idk I just love Alex though His blog makes me smile He makes me smile Asdfghjkl',\n 'arghh headache ',\n 'Im seeing double Want sleeeep',\n 'sorry shaelyn but i have to go to the dentist and get my new retainer ewwy and kiara will be there for you and all the others',\n 'Ugh Awake and getting dressed for my 11-4 shift Working on weekends sucks ',\n 'suejester Yes Grateful that I wasnt on the train I will miss Virtuality too but will record it I need to get up around 430am ',\n 'PR2PR sad you are missing my party ',\n 'ringosdiamond I already miss those days of overanalyzing all those kinky works of literature ',\n 'Back to hall of justice paint in the cold is not bad the problem is wash the brushes ',\n 'Kinnon isnt home so Im sitting in his chair tonight Now I see why he wont share Comfy Too bad theres nothing on tv tonight ',\n 'isalou no there sister club in execter spend the day putting posters up allll over town lol lame didnt get paid just free booze',\n 'tommcfly Tom my dream is you reply me but Im almost giving up You have many followers will be difficult reply me ',\n 'My parents are locked out of their room my dads looking for a spare key while my mom misses her K-drama and here I am cleaning my room',\n 'Having a case of writers block BOO ',\n 'Is it possible to be so tiredyou cant sleep ',\n 'Oh rain how you mess with my yard work ',\n 'NeilMcMahon whoops - maybe he has now sorry BC ',\n 'macboiz Irritable bowel syndrome You have that Woe ',\n 'Busy day going to the Doctor now ',\n 'almost fainted i dont feel so good',\n 'luckygnahhh omg could u imagine that happening hereim close to tears ',\n 'Danny not in Idol finale ',\n 'tinmouth wow that zipper must be INTENSE then time for BIKRAM idk when will someone be home to help you out ',\n 'Didnt end up giving blood bcus my iron is low hella broke and I got the munchiessss',\n 'Linksdeath gfs need a mute button ',\n 'haiii i have now midday scool 2 hours it will be borning ',\n 'ran away from a barbeque at the office too cold outside my alergies on max level and bored with not being able to understand Flemish ',\n 'headache bad day not looking foward for tomorrow either unsure what I wantneed a new life perhaps',\n 'redhalopax Oh man Im so sorry to hear that I hope everything works out ',\n 'Gonna miss the crazy shopping ',\n 'My productivity has been SHOT this week Heres to trying again tomorrow ',\n 'I miss my hometown Miss the cheap food Miss the people Miss the fast internet Boo',\n 'ac81 its after 430am Im tiiiiiiiiiiiiiiiiiiiiiiired Im falling asleep as I sit ',\n 'Safely arrived in Italy AMAZINGGGG But I miss someone already ',\n 'One week to go to the Rock-N-Roll Marathon in Seattle Wish I was running but just watching ',\n 'ChetCannon chet have you heard from ryan lately i miss the real world brooklyn ',\n 'this gearhead on my bus eating ribs from Tesco is making me want to puke its like hes never eaten ',\n 'donandmurph Me too My ears ',\n 'mynameiscorey ACK I missed the new David Crowder because I was at the gym Guess my smart thing had a downfall ',\n 'home from work relaxing a bit but not feeling greatmaybe a party later not sure ',\n 'eh just ate perrogiestalked about life with rob cant sleep want to bored sadface ',\n 'timringel mpmarco and all other metas happy birthday to the 10th birthday of metapeoplecom Too bad that I cant party in Duisburg ',\n 'svennehaa Thank you It is raining here How was your day',\n 'Does anyone wanna just install Wordpress MU and Buddy Press for me ',\n 'httptwitpiccom7yov2 - Popcorn burn 2 days later ',\n 'ANOTHER NIGHT AT THE OFFICE ',\n 'Colk10 I wish it did It doesnt include half of them LOVE YOU',\n 'Beginning to think upstairs neighbor hates me Never heard someone drop stuff amp move so much furniture all the time ',\n 'Watching greek and I feel so bad for max ',\n 'jtonline I wish ',\n 'tommcfly i love u to bits so therefor u officially get my 900 tweet most of them ive sent to u tho but u never answer me loveyou Xxx',\n 'katelyn bfif Shawn Not officially but I stay there lots Ive brought it up a few times but he does not seem enthused by the idea ',\n 'vuhnessuh i think the smartpunk one might be out of bracelets and posters ',\n 'dear gawd - 5 horny kitties already in the last hour anyone else still getting them ',\n 'Yo this 16 and pregnant show on mtv is sad to me I feel bad for the girl n her mom',\n 'I puked rhubarb custard and amoxycillin do not mix Aaaargh',\n 'Nisa08 omg dont say that what you need is a little dj orris music lol',\n 'happymonkeyshoe think i remember a toy store in the uk going down bugger ',\n 'Sick dad thinks ive gotten the swine flu haha',\n 'Life sucks right now ',\n 'is wonderin why is it when my friends need me i drop everythin but when i need them they are no where to be seen ',\n 'theycallmeH youve gotta be kidding me im about to grab a brewski and watch the storm roll in too why are you so far away ',\n 'Landed home from my hols The usual delays with flights but bags out fast Back to work Monday ',\n 'With Matt ugh its too hot out to sleep ',\n 'me thinks me have allergies ',\n 'missgems Shell always be Sun Byrne to me ',\n 'once again I cannot sleep ',\n 'semper69 me too this is too sad ',\n 'BOOKS MEDICAL Atlas of Psoriasis - 2nd edition 2005 Atlas of Psoriasis - 2nd edition 2005 Books Branches httpbitly4v3zUT',\n 'Sitting in a work meeting Bored and so ready to leave this room',\n 'AshleyMcCarty Haha I hear ya Ive been slacking so much and skipping most classes and thats not a habit I want to form ',\n 'i think im falling apart ',\n 'LaneyF How come ',\n 'are they really my friendsnot sure anymore ',\n 'EtsySecrets hi Tim I keep getting internet explorer cant open error messages when go to your page this morning amp it crashes ',\n 'feeling awful whole body aches and its still monday great a whole week of work ahead and im sick ',\n 'wants to meet him wants him httpplurkcomp12kq84',\n 'Im worried about my cat Shes 14 and shes been acting listless for a couple of mos now Shes losing weight even tho shes eating ',\n 'TripleB wierdness - I had one of those persistent overnight headaches too - not fun ',\n 'mombalabamba i know right I sweat looking outside ',\n 'brooksyc happens Sad though Bittersweet',\n 'ojasnaik too bad there isnt a krispy kreme in chicago however auntie annes',\n 'Hangover Fail Taken all day for it to shift ',\n 'megancapri probably i have a habit of doing that xD',\n 'home after a great night but i left my voice somewhere along the way i knew another sinus infection was in the works poo',\n 'when i thought i finished my assignment i found something else to type up ',\n 'waiting for the result of final exam ',\n 'Karriedaway u comin back soon',\n 'ok on lave le stock utilirs en camping en fds ',\n 'Just badly cricked my neck - stretched and the click crack crack Very painfull ',\n 'Did I miss the full moon I think I did Awwww ',\n 'So tired ',\n 'mackmaine WHY AINT YOU FOLLOWIN ME ',\n 'Skeptique Buggy Doesnt pop up ',\n 'OUCHIE Its not fair ',\n 'just saw something I wasnt supposed to see ahh the pain now I gotta put on a happy face for customersahhh',\n 'alsotop I wish I have no bananas though Cest la vie',\n 'Disappointed with Survivor God ',\n 'chrisrowe dude I stopped playing a while ago sorry',\n 'Dad and I are getting rained out of our golf game ',\n 'is back from Panama and thinking about home visits Emmitt is quotneeds fosterquot -- doesnt like kids ',\n 'rushme2112 Aww Mulder lites are never as fun though ',\n 'lile2925 awwwwww only two more days ',\n 'nothing at all im very bored ',\n 'Looking for English-teaching jobs in Thailand is making me feel incompetent ',\n 'LadyJaii with Anthony Gallo hibernating somewhere ',\n 'MrsNorton Sorry I didnt see ',\n 'nargath waiting for the sealant guy ',\n 'ionickeith I feel your moving-out pain although probably on a smaller scale',\n 'Was looking forward to the CUFreeThinkers Summer Solstice party tonight but couldnt go due to storm ',\n 'loves it when your here but hates the feeling i have when your not ',\n 'harsha paying bill on time is a problem for them No interest ',\n 'ninjamoeba Hope youd get the main contents of your bag back',\n 'I want to stand on my roof and yell quotALLAHU AKBARquot too iran',\n 'Letters4theLord Im sorry 2 hear that I am thankful tho because I know that my void created an insistence win me 2 be a great mom',\n 'Bernmorley Poor Iz The big fella had talent ',\n 'RolandGridley amp kristenvalentin Pictures up tomorrow Sorry guys gotta sleep early to work early ',\n 'gonna watch step brothers w my step brother ha ha I wish I was seeing miley cyrus right now ',\n '6am arrives oh too quickly Trying to motivate myself to get out of bed and in the shower Thus far all attempts have been unsuccessful ',\n 'adapaavi just that im leaving for delhi on wednesday morning so no break for me divvi thenewbnb aravindkumar nadhiyamali justreva',\n 'Marilyn no longer a kindergartener She and Eva both had great years Just wish they would slow down',\n 'Time to go to work ',\n 'Paulaztnew Ive been trying to learn that dance since the dawn of time practically Im just too white ',\n 'ICT eewwww Save Me Please xo',\n 'One more day until vacation Said I wouldnt take my laptop now looking like Ill have to httptwurlnligci4t',\n 'wanted to go to red lobster ',\n 'Baaaaack to work REALLYREALLYREALLY looking forward to walk in the rain ',\n 'Wishes she was in hawaii too mona pua galore well shaka brahdas im pao for tonight Aloha',\n 'i dont feel good wishing i could take a nap but have too much to do',\n 'Lol I was so caught up in ontd that I almost forgot to get off the Metro ',\n 'zisisadam not there yet ',\n 'Its so hot that I cant sleep not happy And now Im wondering why a tractor is driving around at 220 at night Cant sleep either',\n 'DavidArchie Cat fighting is a very real problem in this country ',\n 'Yay i probably failed Maybe not ill find out in 4-6 weeks that stuff was hard',\n 'I wasnt late this morning but my head hurts ',\n ' heading back to the ole life today yay for me ',\n 'RagingBitch Im officially coining the term quotFedisasterquot When shit like this happens Oh Rafa ',\n 'My new tigidy tat is ugly I think I hate it ',\n 'is worried weheartit is down forever ',\n 'has a broken 360 ',\n 'chrishanrahan No Origins for me No GenCon for that matter just San Diego Comic Con Feh',\n 'defyer oh and thanks for the update i had a bet that stoner would win too ',\n 'im going on a four day trip that i dont even want to go on bye internet world see you in four days ',\n 'laineyw Oh you poor thing Muscle is bad cos the only way itll fix is with more owie ',\n 'technically homeless pretty sick ',\n 'charlottem23 Oh yeah I saw McFly tweet about that Im sorry hun ',\n 'HPWonderful Dont think I havent considered it I even had Los Del Rio all lined up to do it but Heppo barred me from phoning in ',\n 'Oh god People from my old school keep trying to add me on Facebook which is lovely but I cant remember who any of them are Oooelp',\n 'takes back her last statusId cry and feel really bad if he choked ',\n 'farkerrella HAHAHA YOU BOTH DAMN BAD LEH OMGzzzz I WANTED TO DIE WHEN I SAW THE PIKCHAS anyway I love Bangkok why do you sound so bored',\n 'oh FUCK you bad luck fuck you all I can say is the move to Pittsburgh better come sooner ',\n 'KarenD37 Ive been staring down iTunes and checking every few Still no update on my side ',\n 'Had a dream about a walk in fast food resturaunt that sold ice cream and guitar stringsThey were sold out of 12gauge ',\n 'Tammyn78 Thanx cashe im about to do my french ',\n 'IF the boys are going making the decision would be extremely tougher but then again steffi wont be going ',\n 'The tent is spinning ',\n 'i forgot i have an away tennis match tomorrow my day off has been ruined ',\n 'ramielemalubay you didnt reply back well ok ingat po keep safe always',\n 'karafortson i miss youuuuu',\n 'blackdarkness51 Oh that sucks Ill try and get ahold of some myself then',\n 'omg sabrina your killing me forum family will survive it has to ',\n 'back from school HALF TERM YES and something bad will happen i jus tknow it ',\n 'BriBri2007 Just got home from the lamest strip club EVER Smh ',\n 'richardveryard Cheers but looking for a way to apply rounding to lots of numbers in bulk ',\n 'Elenasaidwhat Ha ha ha Sheez Now I feel like watching Lil Mermaid ',\n ' amanduhwood hmmm i dont know how i feel about that ',\n 'No muziks tonight star treck in exton round 6 or 7 ',\n 'ittel ahhhblessyou for coffee Cant slow down for a bit yet Understaffed at 2nd job ',\n 'cant sleep but want toooo rawr',\n 'SassySenna According to my mother nobody makes cakes with pictures on them around here And Rob Pattinson Day is on my bday',\n 'O noes I gots me a hater httptwitpiccom7uw4u',\n 'asokks00 I def want to discuss what you saw tonightI keep on missing your callstexts due to lack of reception at my aunts house ',\n 'verwon Comments closed ',\n 'Man I almost cut my dick off ',\n 'Damn think my monitor is broken ',\n 'Theres going to be a severe thunderstorm and im home alone ',\n 'mileycyrus hey miley when you say the last episode of season 3 will it be the last one ever ',\n 'ahhhhhh I HAVE NO FRIENDS IM SO EFFIN BORED amp HUNGRY tear ilt3life',\n 'Biked 5 miles today to Harris Teeter and back and it was hard Yeah Im comically out-of-shape ',\n 'okay tweople i know it isnt friday yetbut plz follow my twinnie essence5690 she feels like a twoser lol',\n 'I always send her an animated card i wanted this year to be different but i failed to accomplish it ',\n 'DanielJKirby - No Wikitude sadly Layar looks really interesting though AR stuff looks amazing I love Evernote for iPhone - great app',\n 'Valv30 Bad I wanna go to sleep but my head feels like its on a merry go round Trying not to puke ',\n 'LatimaNicole Dang I dont think DISH network has that channel Either that or my package does not include it ',\n 'fml brittdainard knows what im doing every second of my life without hving to ask me',\n 'Alright I give in I want a Kindle I also cant even begin to afford a Kindle Why are they so expensive ',\n 'feeling very alone tonight ',\n 'Wowwww Must be the liquor talking cuz its so difffff when ur sober ',\n 'Donna39andahalf ahhh im wondering how you find time to join all these things but have no time to chat to ur long time pals sad ',\n 'NaomiER LesleyER BinkieER SarahRoseteER are yall heading to South FL anytime soon ',\n 'My laptop wont read my The OC dvds ',\n 'awww poor little girl on britains got talent ',\n 'Just put fresh strings on les paul - snapped one while tuning it hmmm think i bent it when putting it on ',\n 'littlemunchkin I saw on 1 of ur tweets ur 22 It is so depressing im a whole 4 years older ',\n 'Been at work for 45 mins now and it seems like its been hours fml',\n 'is swarmed with work ',\n 'I wanna see my favorite girlmust finish paper first ',\n 'mmmich i do but you are dum mot me sometimes ',\n 'pain bad hunger bad fatigue bad all three me right now ',\n 'making scary ivideos with ashlass gt studying for exams Not looking forward to this one',\n 'I want to come up from the floor into a ring of fire ',\n 'was just on the phone with Aaron for over 2 hours OO Now I really miss him ',\n 'shavannarene no I wasnt a bridezillaI should of been though I planned the wedding all by myself ',\n 'requested providers tab implemented in BrightLogixwith some issues ',\n 'Empty plane Luv it I get the whole row to myself But forgot my drink coupons at home again ',\n 'Touch of food poisoning tonight Not sure what set it off',\n 'Twitter finally decided to let me back in Some days it just doesnt like me ',\n 'Okay Im starting to get hangry but I cant yet ',\n 'Link didnt quite work It Look on the page for May 29th Motorcycle prank',\n 'The weather doesnt look conducive to a Princesses and Knights party in the garden - fingers crossed ',\n 'wants to learn how to ride a bike ',\n 'dsthestar1121 Lol Well its Sunday right Nice and chill tryna get well rested for the coming week cuz my weekend is almost over ',\n 'Long day in 100 degree New Orleans weather Looking forward to the weekend Friday always seems to be the longest day of the week zzzzzz',\n 'is dealing with a tummy ache right now - httptweetsg',\n 'tylergp tammyt23 I hope heyou are I could use the entertainment Come visit when you get home I miss you ',\n 'damn i have netball 2morrow not late night for me 2night D',\n 'I just saw a McDonalds commercial that told me quotYou so want a big macquot theyre right I do ',\n 'Puppy is asleep and Im actually tiredexcellent Screaming across the hallnot so much There is always something ',\n 'Offered a lifeguard job for the next 8 weeks but I cant do it I FUCKING HATE TESCO ',\n 'fountain1987 very sad will not be the same without you please come back one day xx',\n 'SoulRebelSaf i am and now all of your followers know i am fml',\n 'So sad that i am broke and everything is going on sale Shit i am becoming a shopaholic Why cant i shit money ',\n 'allergies are NOT cool ',\n 'bertiedav they still are hon ',\n 'aw man I jst stubbed my toe on the bathroom door frkin toenail bettr not fall off ',\n 'last day today ',\n 'MusicFanFirst dang you have a show in Chicago coming up Im mad Im gonna miss you AGAIN One day though ENjoy your stay here',\n 'aj cathy had gon sad tkmes',\n 'took an afternoon nap with my little guy 3rd day in a row Jared really needs it as he is a bit sick And well I need it too ',\n 'Still in bed and dont want to do anything else University is callung too loud ',\n 'Ya mamma so fat told her i was watching MTV she said how u gonna watch meatloaf turkey and vegetables and not eat it ',\n 'OsoupieO I once spent a whole summer laying awake for hours every night It sucks',\n 'is procrastinating BIG TIME and doenst wanna write this last paper ',\n 'Feeling worse then yesterday Not going to work Going back to sleep ',\n 'hookah time thanks shaghayeghhh for the invite ',\n 'error505 welcome to my world ',\n 'i just had a dream that i was exploring some random place and ended up a prisoner and forced to be a waiter my asshole friends left me ',\n 'Just received the Income Tax bill ',\n 'Away to grandmas school was okay today apart from maths Beth hates maths ',\n ' I wanted to continue that convo Oh well',\n 'Rain rain go away come again another day ',\n 'sigh hit on harrrrd this morning at store and followed to parking lot I need a huge stick-on wart for my forehead ',\n 'stephenfry Hurry back Norwich - the Tractor Boys will miss you ',\n 'Sckit not now you dope I found the most adorableist lol dog ever on here and now I cant find it ',\n 'hstuart3 Ugh We all had that last week Goes away quickly thankfully Did you kick the hubs in the shins as he left',\n 'getting blood taken out i hate needles',\n 'flagit crashes my mail app on Mac Feels like working on a PC again ',\n 'Im bummed that Ill be missing the Net2NOnakedpizza mashup tomorrow night ',\n 'Burnley score a penalty PNE a long way to go',\n 'TruBty No Im ready to jump off the curb head first again Please help me do this by pushing me and no Im not talkin bout ur wet twat',\n 'elizabethmendez when i just finished my bowl of samurai sams but im still hungry ',\n 'Some days problems come in a never ending line Usually something good happens afterwards so one must not despair',\n 'paigecrawford i know i came back to my dads today bummer ahh i miss youampkristi hahah i forgot the thing the first time',\n 'Was pulling up to my house when I realized I was still in the TampC all loaded down gear ',\n 'katieinthehat Oh dear - your weekend not as wonderful Norfolk',\n 'Bed waking up early for our travels home back to reality I miss u already MB next year cant come fast enough Haha',\n 'Preparing my travel to Roubaix ',\n 'HappyCassie pats on shoulder ',\n 'gfalcone601 hahaha at least I tried Im trying to improve my creative skills as you can tell not going too well BUT THAT RHYMED O',\n 'my cat is really sick ',\n 'prenvo like 1 max 2 seconds faster When opening an app Hardly noticeable to me maybe you have spider senses and see things in slomo',\n 'quilaels Hope you feel better if you need anything just ask Side effects really suck feel better lady lt3',\n 'First day of work in Pitt and I have no access to anything ',\n 'anticelebrity stop telling me you have tickets I cant go on Friday night ',\n 'Dang it Missed opportunity someone already bought the tile ',\n 'Broke phone but had bril night last night feel the effects now tho ',\n 'dads taking controll of the computer ',\n 'longgggg day at work one of three ',\n 'A lot of plane crashes lately eh Being so far removed frm everythingeveryone familiar in those last minutes must be the worst thing ',\n 'ilaam Im going through Heroes withdrawal as well Miss it a lot',\n 'enoelle1177 she is all grown up ',\n 'My 20 year old daughter Liz BADLY needs a summer job Any leads Not many places hiring ',\n 'Watching F1 Race Trullis already out ',\n 'heybrittanyjane aw bummer where do you work',\n 'Wow this weather is killing me Saw on the news this morning 29 days rain 5 days sun what a summer ',\n 'sh4dymills thankkkks ',\n 'hileryfaye i wanted to go to the reds game on my birthday still havnt been to a game ',\n 'DocHobbes Meh exams sick Never mind that whats with you ',\n 'anyone up for a chat so bored MSN borgieelivecomau',\n 'liamadrid Aww Ate Lois Bawiin mo na lang sa 18th birthday gt gt I bet it would be really fun gt',\n 'FrannyB omg i fuggin love true blood i knew thqat creole dude was the one tryna kill sookie i missed last week episode though ',\n 'im going to miss the first new eiposode of ugly betty because of prom hahahaha',\n 'food is feeling ',\n 'Im ill But Sims 3 arrived ',\n 'HATES the fact my pic is missing I have no face',\n 'Is kris allens account really all fake ',\n 'DocPeterA I had a hard hot day hope urs was better than mine',\n 'Worst lab meeting ever Period ',\n 'is a bit tired I blame the rain httpplurkcompx2jc9',\n 'Trying to download music since nobody will burn me a cd ',\n 'Hulu Desktop httpwwwhulucomlabshulu-desktop No Linux version but atleast they have a Mac version',\n 'GeoffCumm My reply is no ',\n 'listening to bullet for my valentine massive headache ',\n 'According to ATampT I qualify for a quotstandard iPhone upgradequot on Dec 28 2009 attfail',\n 'Aaargh Apple wireless keyboard malfunctioning Noooo ',\n 'Chantaaalex how did you get so many followers i want so many also',\n 'Writing the chapter 32 of quotKeep Believingquot my fanfic - hihihi and listening music thinking about to Francesco ',\n 'Whats up with all the replies from donniewahlberg The days of obnoxiously tweeting him are ova sorryback then - no replies ',\n 'Im here at home Bored as hell ',\n 'I keep getting colder and colder by the minute seriously ',\n 'my dog just got a hair cut and now looks like a rat ',\n 'my head hurts and i feel really nauseated ',\n 'CarolineKent haha scooter god knows what else poor poor tshirt ',\n 'Waititng for the train to take us back into the city and catch our flight home Sad its time to already leave ',\n '1041pm Yes babe Do so I feel terrible Now Ill never get to dine at Mom Maws Text me when you can I LOVE YOU 16',\n 'ScottRhodie What time is it and where I doubt it as I woke up at 4am this morning ',\n 'WormsAreFunny Awwwww wed miss chatting with you Wormsy But you gotta do what you gotta do',\n 'MissJennyy ohh i cant drive because im young ',\n 'GingerCoy That was mineIm sure ',\n 'Some hunter nicked my grey cable knit cardigan last night Was my favourite ',\n 'Not having a productive day at all ',\n 'honorsociety i like it and all butttt your not going to have it at the august 7th concert which hurts my feelers ',\n 'Darshea15 Am I my brother keeper my a Nino killed my Gee Money New Jack City',\n 'hairlessheart 23 in august OMG that makes me sound soooooo old ',\n 'I am going to get those pesky slugs they have eaten all my marigolds in a couple of hours Grrr',\n 'sanastar had a great time Too short though Flying to zurich and work tonight ',\n 'Feelin poorly today ',\n 'aaronhowell httptwitpiccom7ketm - i had to look at this for awhile to see them so sad ',\n 'angry that someone has hung a hannah montannah balloon on my washing lineand theres a spider in my wardrobe ',\n 'TinkerGem but then they arent exceptions for me though are they I wanna go to the pub ',\n 'waiting to find out is no fun but i should be getting my hair cut so soon',\n 'Why does my child whinge so much ',\n 'I felt like a piece of shit Thanks ',\n 'jasonmesnick rumors are circulating that you and molly are breaking up is that true you two are perfect together ',\n 'Noooo Way too early to be up Were hoping to drive for 12 hours today We have some ground to make up httpmylocmeGkb',\n 'is sad cause Shaun Smith amp Aiden Davis lost It felt worst when Susan Boyle lost too NOOOOOOO SHAUN SMITHHH',\n 'starleigh2000 oh boy do i miss having her around ',\n 'I had a dream about Diddy last night It felt real We were together and he was a very good boyfriend to me I woke up and no jewels lol',\n 'I forgotsted my water bottle in the car ',\n 'conniesu someone hit ur car not ur new carrrrr ',\n 'PeakedMtFarm Ill gladly trade you weather in the 90s for your cool rainy weather My plants are drooping ',\n 'starbucksapron we got an email from Igor but have to decline our logos ',\n 'home spending the day with my jungle babies before they leave ',\n 'countroshculla a works for me how fast is your download speed b Aww ',\n 'bon iver show in edinburgh cancelled one very unhappy lynsey i got all excited ',\n 'MrPoofyPJPants maths has been sucking annnnnd we gots an exam tomorrow',\n 'ShowbizCousin crap I forgot to wish u a happy anniversary yesterday had a busy long day ',\n 'car crash ',\n 'DanaBrunetti Oh my New people on the script market seem to be producersstudios biggest enemies Gosh Says a lot wo words ',\n ' because its far expensive and only a month before Im leaving to Japan I really cant afford it ',\n 'kenniwoo THAT WHOLE MOVIE WAS GOLD I wanna see it again I miss you too bb ',\n 'After a 6 month hiatus Im back to sporting diamond studs Moms making me play tennis with her friends ',\n 'I forgot to turn off my alarm ',\n 'Cant find friends and cant put a pic on from my I-touch--- not a good first impression from twitter ',\n 'catching some zzzzzs Church in the morning then nothing since I dont have a father ',\n 'tracecyrus httptwitpiccom7xor6 - wont work for me LONDON SOON',\n 'i hate it now that everybody seems to love it httpplurkcomp122zmk',\n 'is nervy about tommorrow and cant really be bothered Greece was AMAZING however',\n 'darna1156 good luck with the plants i tried mine died i gave up ',\n 'My Head It Burns Bloody Bleach The Thinqs Ie Do To Be Soo Blonde ',\n 'JoseJalapeno Not happening Do you know how lame thatd beeee',\n 'jamesbuckley i hope ouve got your suncream on coz me and Amanda21crook got very burnt at the beach yesterday x',\n 'Ok so my camera is out of battery ',\n 'yungboss89 getn ready for work madd tiredd lol',\n 'logsalina Laura and I went to see Charlie and we went to beach on the Wirral - so much fun Sunburnt back though ouch',\n 'My aunt called me a man ',\n 'Making dinner for myself and my lonesome ',\n 'hasnt even gotten out of the parking lot yet and already misses his brother ',\n 'technotetris i get replies off shaun and andys personals but not bradies all my bradie comments are from ss',\n 'I find it really hard to be mean No Im not a nice person I just really dont know how to be mean ',\n 'Wicked1 yup and I want to be in US or even Canada had the opportunity couple years ago and didnt use it stupid me ',\n 'Made an awesome taco dinner tonight Too bad my weekend is almost over ',\n 'OMG not feeling good Soooo dizzy uuugh',\n 'Damn It i missed jay lenos last late night show CBoo',\n 'rickbaker24 follow me please i only have 6 ',\n 'Bad hair day ',\n 'thehoosiersuk Awww Peanut Hope hes okay Once my mums cat got attacked by another cat and that caused its death a few months later ',\n 'On my way back 2 Warren Ohio 4 my mothers funeral Why these things have 2 happen Idk Idu Please continue 2 pray 4 us Princess',\n ' couldnt go with ashley',\n 'work til 5 ',\n 'job searchingFYI Yahoo HOT JOBS suck im never going to find a job ',\n 'illestnana me and my friend over here are disappointed we cant make it ',\n 'they closed the library all thanks to that swine flu Did I ever mention we have to report an hour earlier at the exam hall PFFFT',\n 'I have nothing to do today ',\n 'Feeling a bit more human but still not slept yet ',\n 'danmoranfx ya its getting closer but still not a done deal ',\n 'I dont think Logic wants me remixing songs tonight ',\n 'Pretty much impossible to find unsalted in-shell sunflower seeds not even at Whole Foods',\n 'marjorielu MISS YOU TOO ',\n 'got yelled at cuz Apple sucks ',\n 'PinksTwitFans i staved my foot at beccas its all bruized ',\n 'SightBCC I want sims 3 ',\n 'Its my birthday and I still cant walk after my operation Im in a bit of pain next birthday will have to be amazing',\n 'OCD worries extremely high today ',\n 'Got my diploma in the mail yesterday its not half as pretty or exciting as I had imagined ',\n 'Another migraine again today ',\n 'is tired of summer already ',\n 'Listening to feliciabarton s No One performance on AI again Wish there could be a studio version ',\n 'Is pouching on the couch Whinny from this fatasssss headache ',\n 'dont wanna go out cos i cant twitter about it stupid phone signal but i need to get rid of this BOREDOM',\n 'After 5 years of ownership Ive finally beaten Spider-Man 2 for PS2 I want Web of Shadows ',\n 'Good Morning Twitter I think Im ill Not good Want to go home in my bed sucksucksuck',\n 'Makinsey CAMP Have tons of fun for the both of us kay Since I cant go this year ',\n 'juliancruzzz Ewww huge hug',\n 'goopmop i dont want you to go to india ',\n 'SaschaIllyvich i guess that means you didnt beta-read either of my stories huh ',\n 'it is revising eng lit and maths x',\n 'I wish the paramore concert would get here already ',\n 'Suddenly lost all motivation ',\n 'PaddyMustTweet No Does your twitter hate my twitter or something',\n 'Mangowe ',\n 'Feeling slightly worried I think I may have said something bad unintentionally ',\n 'mousebudden JOEY JBTV IS WAITING WHATS GOING ON IS IT CANCELLED ',\n 'My patso sister is asking for the new comp ',\n 'lisajennifer Sorry to hear about your friend ',\n 'BridgetteBanxxx awww your leavinqq ima miss yuu ',\n 'the trip was really great but i cant belive summers here ',\n 'Sabki Awww that is sad ',\n 'MariahCarey Im up 2 Just got off work at 320 And now Im home laying in bed and cant sleep ',\n 'Stucking at TongliaoNot Happy ',\n 'canadamcflyfan Red Wing won So disapointed for the Pens They might lose vs Detroit for 2nd years in a row Life is so unfair sometimes',\n 'iDorianEst89 Hell no I aint forget about my West Coast honey amp You better cry cause I aint even get no chicken soup Pouts ',\n 'hopes that my rock n roll trivia team Super Mario Speedwagon is kicking butt tonite mercylounge Sorry couldnt be there ',\n 'Not happy that you cannot update your iTouch with the new OS 30 via wireless connection ',\n 'Cravin some tiffanys in the worst way Why do I always wait til I get to work to crave things ',\n 'why do i have to wake up so early goddam 730 on my last day off bummer',\n 'superstarlmr ah ok lol It doesnt start until 8am but cos Ticketmaster is so unreliable I have to get up earlier these days ',\n 'is feeling terribly sick right now ',\n 'It was a dark and gloomy night for sport tonight SA choked in the T20 semis and Italy lost 1-0 to Egypt ',\n 'need to find another jobdunno where tho i hate job hunting its a chore zzz',\n 'Still suffering from a cold Im really starting to get tired of the coff and sniffle ',\n 'Ughh Im sorry ',\n 'I miss my stevie ',\n 'is sad my aim stalker oohmyG is going to bed fml',\n 'cant sleep still freaked out about IHOP i didnt even get to kiss Justin goodnight ',\n 'MuscleNerd what about the preliminary Jailbreak release becoz we are stuked unactivated phone dont need youtube but fone',\n 'Im out of here ',\n 'robrix interesting - Hybrid did two different mixes of the track but Disney didnt release them httpbitlyxMiXT',\n 'wishing chris was home so he could take care of mestill dont feel good ',\n 'Good morning twitters How come our weekdays go so slow but weekends go so fast ',\n 'restthen materials ',\n 'Amandamb but they will all be for down london wont theyso thats no good for me ',\n 'Jayson out with a hot chick quotits the end of the world as we know itquot and Im home ',\n 'FML i cant loose another friend ',\n 'is trying to find my motivation I believe the rain washed it away I could never live in Forks even for an Edward ',\n 'USF43 im jealous i wanna be home ',\n 'Thinks it is so hard to get a good nights sleep with all this yelling Please make it stop ',\n 'joelgratcyk I could For one month probably then Id be broke Thats really expensive',\n 'jasimmo boo you never share with me Cant scroll back hun phone playing up X',\n 'Time is passing by too fast I cant wait but at the same time its too soon ',\n 'csutherland76 Wasnt the easter bunny - I ran him over a few years ago True story - I was even told he was holding a basket of eggs ',\n 'Ahh sorry for like 20 updates all at once I got a new twitter application on my g1 and it was spazzin',\n 'Jamming by myself wish someone else was here playing music with me aw oh well xx',\n 'is so hungover ',\n 'the maths gcse shittty reviison begins ',\n 'just woke up from a nap feeling a little sinus-ey ',\n 'Is not feeling bright and cheery today ',\n 'Flight home cancelled Lamest thing ever ',\n 'OfficialAkaye Do u ever still see Craig Miss him on tour like mad ',\n 'my tan tattoo was a failure ',\n 'TheLastDoctor ohh i thought the TARDIS was massive',\n 'not getting anywhere ',\n 'problem need to keep studying but brain is full and wants no part of anything ',\n 'I need an IPod with more GB ',\n 'benlawsonphoto youve missed me amp Mbromleyphoto out from the voting poll Its coz were on the 2nd page of the pool now TOGether',\n 'missing youth group ',\n 'After all my efforts I have contracted his flu anyway Being sick NOT cool ',\n 'kelmul Phew Crying alot Think its 1st time Im not put off babies by it 4got to get Lemsips at Tescos yest So stupid ',\n 'darthweef i feel for the video wall ',\n 'NO Out of duct tape ',\n 'Off to Big Lots w the SO to hunt for some bargains Feel a little bad but the wallet is pinched right now Cant shop local today ',\n 'HaleyAllTimeLow Ian left Aw well whatever makes him happy lt3',\n 'and honu seemed to have forgotten something ',\n 'Ugh neighbors are having a super loud party WHY do i have to live in glendale ',\n '3rd bottle of Perrier todayAwwww Nate used to call it my quotChampagne Waterquot I miss him he needs to work back in my dept',\n 'Is reluctantly taking her cat back to her original family Just not that right time ',\n 'molds13 OHIm sorry Are you okay hun Just close your eyes itll be over soon',\n 'Wow Eurovision Song Contest winning song from Norway already number one on German Itunes Just listened to it again I dont like it ',\n 'damn people contain gluten so now i cant be a cannibal ',\n 'for some reason getting sad at how famous honor sociey is i remembr when id get daily comments from them not anymore ',\n 'I wanna see year one tonight ',\n 'Dear Leader drops charges against New Black Panthers Guess racism is okay as long as its the right kind ',\n 'Is at work thinking how much graveyard shift sux ',\n 'Custardcuppcake no muffs left them in Canada',\n 'okneil thank u blogger is starting to annoy me It keeps messing my posts up ',\n 'ugh im stuck i dont know what else to say in my valedictorian speech ',\n 'brothers having a partyim sick and being ignored ',\n 'Youd think when i finally end school id be able to catch up on sleep I havent been able to sleep in wah',\n 'Mah throat hurts ',\n 'I feel like crap ',\n 'Just leaving Chicago Now comes the LONG ride home ',\n 'going out tonight and I have nothing to wear ',\n 'courtneyeryn Yeah so sick It was like 3 bucks a can too ',\n 'Its 12 pmand Im fucking tired ',\n 'today was fun but now im bored ',\n 'ummm no it didnt work so i guess im stuck with this uglyonee ',\n 'AnkurGel Yes exactlyNobody was there to support him ',\n '10 Benefits of Rising Early and How to Do It Zen Habits httpbitlynwY2f sono anni che ci provo cazz ',\n 'Never buy food from a restaurant that isnt busy at lunch Theres a reason why its not busy and its not cuz you got there early ',\n 'anindian true ',\n 'not feeling to great ',\n 'I totally dreamed that i went to the cook outit was pretty real toothen i rolled over woke up and realized it was 240 ambummer ',\n 'Watching Bowling for Columbine And realised tomorrow happens to be exactly a decade since the day of the shooting ',\n 'oh i ate too much for dinner ',\n 'tom is first were working so hard ',\n 'When will this nasty cold go away Ive never felt to wretched ',\n 'I just want to go home ',\n 'Still waiting for iPhone 30 argh ',\n 'LadyArubiana thats good to hear ive been good too I missed my buddy yeah my bad what ya doin',\n 'Heading out now Still tired tho Catch all later this eveningafternoon',\n 'StarrahPenzHitz bri bri i think ur dopelike reallyur goin places kiddo lol that track sounded like a loop tho ',\n 'anngetty That sucks When do you get another vacation Hardly seems fair',\n 'XLesseyX keeps leaving mee why babe sob lmao love you Les ',\n 'Well the forums worked for like erm 15 mins ',\n 'So Whats New I Died My Hair Last Niqht Im Not So Bleached Blonde I Missed It Already ',\n 'alohadakine so now YOURE not answering ',\n 'MMSes are taking upwards of 5 minutes to send ',\n 'DEELAMI tis not funnyIm scared to go out now ',\n 'JudyObscure hangs head in shame Sorry ',\n 'stephenfry One issue with it the touchscreen The UI was designed for fingers but the touchscreen is better suited to a stylus ',\n ' not at ALL happy',\n 'wants to watch PCD live ',\n 'kelseysilvagni hahaha our tweets were exactly the same for a while why didnt you mention me i could have missed that p',\n 'my tummy hurts maybe i should have more cookies',\n 'Why is it whenever I take my truck to autodetails it rains yeg httptinyurlcommdlfrg',\n 'um you were suppose to call me 830 ',\n 'Dance time For the last time this year ',\n 'Kristal Thats understandable xD Tann me too ',\n 'Twitterific is misleading its neither terrific or much like web twitted ',\n 'I had tickets to go to the Paul McCartney concert in Las Vegas last nightbut I couldnt go sad sad sad',\n 'what a difference a month makes ',\n 'chickacherish Agreed Is bell doing the same thing that Telus is doing If so we will have to wait until January ',\n 'admiraldaala Im now The local Gay bar in my home town no GayStormtrooper here ',\n 'quitsmokingdiary 5 Weeks tomorrow since giving up YAAAAAAYY - I dont want to talk about it ',\n 'time to do some more revision ',\n 'They were looking for a class rep and tried to nominate me But I couldnt think of anything positive to say about our program ',\n 'Very nearly asked JJ Abrams a question Sat four rows back Still reeling SIMON PEGG WAS RIGHT THERE AND SO WAS SYLAR Geek overload ',\n 'Just got up now time for work ',\n 'So Tired God I hate the new job and only two days in ',\n 'Am I shallow if I say that I wish I could find nail polish in the shades of green on all your icons yeah I know- thats why ppl hate us ',\n 'I miss Dollhouse ',\n 'errr yukky 2 degrees is forecast for 2moro morning ',\n 'off to school the weather is way to nice for school',\n 'cimangss Why did it bring you to tears Awh ',\n 'i have no more strawberries im sitting outside my bfs house in his driveway waiting for himughh why do boys move so slow',\n 'doesnt wanna close hairspray today ',\n 'Im sad to miss Baccalaureate Mass today ',\n 'the weather in kent is horrible ',\n 'This headache is killing me ',\n 'bekasaur i knoww i miss you too ',\n 'beafallenleaf Blessed Are The Forgetful BrendonSpencer fic Its really well written but not even a hopeful ending ',\n 'I have a tummyache ',\n 'God work again tommorow ',\n 'Struggling with math-Hoping this luv will work out ',\n 'on the plus sidedrat i cant think of anything ',\n 'So I really want cold pudding Its really hot in here and Im starving But my stepdads on the couch because of a petty drunk argument ',\n 'my followers seem to increase by like five then drop back down again theyre mostly all robots anyway boo ',\n 'OHH SHIIIT I just realizedPRIDE is NEXT weekend weeeeee too bad 98 of my Gay friends will be in Colorado ',\n 'says half of the day was good but the other way around wasnt httpplurkcomp113luq',\n 'Another beautiful Canberra day Lucky I am stuck inside ',\n 'oh dearhelp ',\n 'RolandHyde and why you aint sign online ',\n 'ughh i scratched the roof of myy mouth ampamp it hurts watchingg enough again lol',\n 'yaay swimming yaay badminton yaay owww fuck i hate sun burns ',\n 'hasnt really been watching the french open ',\n 'Thats 3 nights in a row ive seen the sun rise before i actually go to sleep and im still awake before noon ',\n 'Im a celebrity get me out of here ',\n 'hannahbonellu miss you too ',\n 'jamiegrandison what a bore im on now lol ill speak to you tomorrow then smelly xx',\n 'Curses I hurt my knee again ',\n 'Tough talk wdad abt his inevitable divorce family courtcustody battles Signs that my BDSM quotlifestylequot might be brought against him ',\n 'Aimzzy Aaron jst told me he was offered free tix 2 go audio last concert nd sed no He sed he wud have took em if he knew we liked them ',\n 'Laurenw95 oh s i didnt get anythin xxx',\n 'I cant seem to find KNPR I want Prairie Home Companion ',\n 'toreo Im sorry ill share my hash rounds with you',\n 'Is sick tired and restlessa bit sad too I need more friends ',\n 'I am not doing okay I feel like my life is falling apart consider this my cry ',\n 'My moms not buyin ne grad pics ',\n 'startin 2 get home sick wish the studio was closer to queens ',\n 'Just 10 mins to go now my 25G iPhone is the first to be upgraded Caught on the 3G not having updated iTunes on my Macbook Pro Doh',\n 'IamSpectacular Last min planning plus my mom called and told me I couldnt see yall this time Im sorry',\n 'Just got off the wrong station ',\n 'my webcam is being gaaaaaaaaaaay i wanna show cathy my outfit for tomorrow ',\n 'Sitting at home this Sunday morning taking care of my 2 littlest girlsthey are both sick But I am going to sew for a while today',\n 'I just installed Tom Clancys Ghost Recon After 15 minutes of exciting installation the system failed the gameit had no graphic card ',\n 'ILuvzGerardWay Oh no Oh no oh no oh no What kind of pop This could be serious ',\n 'looks like ill be goin to att 2day too maybe ill leave with a new toy hmmm',\n 'erinwarde lol ya some girls car got broken into tonight she seemed so sweet too i felt terrible for her',\n 'trying to open my eyeshopefully the coffee kicks in soon Another day of rainrun inside Homework first ',\n 'JessicaCabral I wish i worked at in n out ',\n 'shanicdesign no kiddingamp hes the minister I blame his wife Card carrying member of the PTL club amp fan of glenn beckhannityetc',\n 'now remembers why solving a relatively big equation with two unknowns is a total pain in the butt ',\n 'DuncanMacGregor Yes Just a grotty cold with fever ',\n 'Dont want to play footy ',\n 'jordanknight nooo Jay dont leave us ',\n 'MRSpen15lvr you will be missed ',\n 'Having to come up with little rhymes to learn all 20 Acts and when they were Damn you women xoxo',\n 'taylorswift13 HAHA aw man i love you haha ur so funny ha like u will actually see this lt3 u even if u dont see this',\n 'Ugh school dont wanna go but definitely not getting high during school EVER again That was a BAD idea',\n 'melissabarlow I love your kitty I wish she loved me back ',\n 'i wanna cry ',\n 'you know what i hope britney wins a teen choice award i mean i love the disney peeps but come on they win EVERY year xxx',\n 'leddy2286 FinalFantasy is still downloading suppose it doesnt help it downloading with WiFi ',\n 'been working on my type project all day and im nowhere near finished ',\n 'ElsBels Yeh thanx just went to bed at 5am and was awake at 7am Least im not at work or owt take it u are x',\n 'AgesTheGreat well then i guess we have to settle with this twitter thing ',\n 'Ravels bye ravey You will be missed in San Jose and the rest of the bay area ',\n 'I want to color But i dont have any good coloring books ',\n 'Stephscoo neither and there is NO way i can write a freakin essay oh well',\n 'got her butt kicked by the LSAT practice test Hopefully the real test tomorrow isnt as hard Ice creamTV then early to bed tonight',\n 'Sat at home Ill and bored ',\n 'Seems like Apples iPhone activation server cant cope with the high demand of iPhone users updating to 30 ',\n 'summerjane I tried to send you a facebook message but it wont send I love you goodnight beautiful',\n 'bsneed23 oh what a day Lets see I lost my keys dug thru trash amp finally called a locksmith Having one of thoooose days ',\n 'is gonna cry tomorrow when he gets him exam marks im such a fail at life ',\n 'lol that is very true i hope youre in love with the person youre sharing a fan with on the couch lol if not then what is it worth ',\n 'Arg Theyre playing maxiimo park musak in the shop Im in ',\n 'ordered pizza have to wait 45mins for it no alcohol absorption for me just yet',\n ' Im hungry but I dont want to over draw Arbys sounds sooo good though',\n 'I have tweeted shmanders in so longggg I miss you ',\n 'RichOglesby it seems to be almost gone hard to tell whats a dust sneeze and whats a cold sneeze ',\n 'daniellebarrie phone isnt sending text being gay i got all yours though better tell me hold it works tomorrow',\n 'iamjonathancook ps--johana95 amp I ARE DEFINATELY PLANNING to see you guys liveagain last time for me was prbly bamboozle left ',\n 'So when ECC calls and asks if one of your coworkers is at work today do you tell them yes I feel like a snitch ',\n 'plz let rgonza06 know he has to be txtn me too n not be so into the bball game ',\n 'anyone good with hostmonster my domains will NOT redirect to the right place ',\n 'ugh i dont want to start cleaning but the lady thats going to take our engagement photos is coming over soon ',\n 'Gross I know but this is my friends wee dead fishy poor thing funerals tomorrow at six RIP httptwitpiccom6ru92',\n 'dazedp3nguin lucky i go into work at 215 today ',\n 'Kaliroll I miss my ringback tone but I have that automatic vm lol',\n 'wish I could feel no pain 8 but its ok at least they like Brazil',\n 'elaineeec Awwwdont delete ',\n ...]"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "y = df['sentiment']",
"execution_count": 39,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "token = Tokenizer()\ntoken.fit_on_texts(text)",
"execution_count": 40,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "token",
"execution_count": 41,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 41,
"data": {
"text/plain": "<keras_preprocessing.text.Tokenizer at 0x177a490e788>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "vocab = token.index_word\nvocab",
"execution_count": 59,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 59,
"data": {
"text/plain": "{1: 'i',\n 2: 'to',\n 3: 'the',\n 4: 'a',\n 5: 'my',\n 6: 'and',\n 7: 'you',\n 8: 'is',\n 9: 'it',\n 10: 'for',\n 11: 'in',\n 12: 'of',\n 13: 'im',\n 14: 'on',\n 15: 'me',\n 16: 'so',\n 17: 'that',\n 18: 'just',\n 19: 'have',\n 20: 'but',\n 21: 'with',\n 22: 'not',\n 23: 'be',\n 24: 'at',\n 25: 'its',\n 26: 'now',\n 27: 'was',\n 28: 'good',\n 29: 'are',\n 30: 'up',\n 31: 'day',\n 32: 'all',\n 33: 'this',\n 34: 'out',\n 35: 'get',\n 36: 'like',\n 37: 'no',\n 38: 'too',\n 39: 'go',\n 40: 'love',\n 41: 'do',\n 42: 'dont',\n 43: 'cant',\n 44: 'going',\n 45: 'got',\n 46: 'today',\n 47: 'lol',\n 48: 'back',\n 49: 'your',\n 50: 'work',\n 51: 'from',\n 52: 'what',\n 53: 'will',\n 54: 'time',\n 55: 'as',\n 56: 'see',\n 57: 'u',\n 58: 'know',\n 59: 'some',\n 60: 'about',\n 61: 'home',\n 62: 'last',\n 63: 'amp',\n 64: 'one',\n 65: 'well',\n 66: 'want',\n 67: 'when',\n 68: 'really',\n 69: 'had',\n 70: 'we',\n 71: 'am',\n 72: 'think',\n 73: 'they',\n 74: 'oh',\n 75: 'still',\n 76: 'how',\n 77: 'if',\n 78: 'new',\n 79: 'much',\n 80: 'more',\n 81: 'thanks',\n 82: 'miss',\n 83: 'here',\n 84: 'tomorrow',\n 85: 'then',\n 86: 'there',\n 87: '2',\n 88: 'night',\n 89: 'ill',\n 90: 'great',\n 91: 'off',\n 92: 'morning',\n 93: 'need',\n 94: 'been',\n 95: 'hope',\n 96: 'can',\n 97: 'feel',\n 98: 'an',\n 99: 'wish',\n 100: 'twitter',\n 101: 'by',\n 102: 'her',\n 103: 'bad',\n 104: 'thats',\n 105: 'sorry',\n 106: 'has',\n 107: 'haha',\n 108: 'happy',\n 109: 'getting',\n 110: 'why',\n 111: 'he',\n 112: 'did',\n 113: 'or',\n 114: 'fun',\n 115: 'very',\n 116: 'them',\n 117: 'sad',\n 118: 'again',\n 119: 'though',\n 120: 'didnt',\n 121: 'way',\n 122: 'sleep',\n 123: 'over',\n 124: 'ive',\n 125: 'week',\n 126: 'soon',\n 127: 'tonight',\n 128: 'only',\n 129: 'would',\n 130: 'were',\n 131: 'right',\n 132: 'nice',\n 133: 'make',\n 134: 'gonna',\n 135: 'she',\n 136: 'come',\n 137: 'wait',\n 138: 'school',\n 139: 'people',\n 140: 'yeah',\n 141: 'days',\n 142: 'should',\n 143: 'him',\n 144: 'ready',\n 145: 'watching',\n 146: 'yes',\n 147: 'hey',\n 148: 'could',\n 149: 'friends',\n 150: 'having',\n 151: 'better',\n 152: 'down',\n 153: 'weekend',\n 154: 'youre',\n 155: 'say',\n 156: 'hate',\n 157: 'next',\n 158: 'our',\n 159: 'done',\n 160: 'first',\n 161: 'coming',\n 162: 'thank',\n 163: 'looking',\n 164: 'little',\n 165: 'trying',\n 166: 'even',\n 167: 'wanna',\n 168: 'working',\n 169: 'bed',\n 170: 'hours',\n 171: 'feeling',\n 172: 'long',\n 173: 'please',\n 174: 'ur',\n 175: 'awesome',\n 176: 'tired',\n 177: 'best',\n 178: 'guys',\n 179: 'always',\n 180: 'watch',\n 181: 'pretty',\n 182: 'show',\n 183: 'any',\n 184: 'big',\n 185: 'after',\n 186: 'sick',\n 187: 'being',\n 188: 'excited',\n 189: 'take',\n 190: 'phone',\n 191: 'yay',\n 192: 'away',\n 193: 'because',\n 194: '3',\n 195: 'things',\n 196: 'never',\n 197: 'left',\n 198: 'went',\n 199: 'many',\n 200: 'another',\n 201: 'wont',\n 202: 'bit',\n 203: 'his',\n 204: '4',\n 205: 'already',\n 206: 'everyone',\n 207: 'where',\n 208: 'yet',\n 209: 'x',\n 210: 'doesnt',\n 211: 'thing',\n 212: 'man',\n 213: 'us',\n 214: 'who',\n 215: 'into',\n 216: 'something',\n 217: '1',\n 218: 'ever',\n 219: 'summer',\n 220: 'hot',\n 221: 'yesterday',\n 222: 'old',\n 223: 'weather',\n 224: 'n',\n 225: 'bored',\n 226: 'life',\n 227: 'look',\n 228: 'girl',\n 229: 'waiting',\n 230: 'house',\n 231: 'start',\n 232: 'rain',\n 233: 'looks',\n 234: 'keep',\n 235: 'while',\n 236: 'find',\n 237: 'early',\n 238: 'missed',\n 239: 'amazing',\n 240: 'nothing',\n 241: 'luck',\n 242: 'okay',\n 243: 'ok',\n 244: 'maybe',\n 245: 'makes',\n 246: 'hard',\n 247: 'sun',\n 248: 'birthday',\n 249: 'year',\n 250: 'doing',\n 251: 'cool',\n 252: 'tell',\n 253: 'sucks',\n 254: 'saw',\n 255: 'made',\n 256: 'hear',\n 257: 'sure',\n 258: 'shes',\n 259: 'beautiful',\n 260: 'use',\n 261: 'thought',\n 262: 'than',\n 263: 'omg',\n 264: 'id',\n 265: 'help',\n 266: 'before',\n 267: 'world',\n 268: 'finally',\n 269: 'making',\n 270: 'does',\n 271: 'news',\n 272: 'stuff',\n 273: 'lost',\n 274: 'later',\n 275: 'let',\n 276: 'sunday',\n 277: 'check',\n 278: 'someone',\n 279: 'damn',\n 280: 'tho',\n 281: 'other',\n 282: 'isnt',\n 283: 'those',\n 284: 'head',\n 285: 'job',\n 286: 'food',\n 287: 'wow',\n 288: 'movie',\n 289: 'ya',\n 290: 'stop',\n 291: 'hes',\n 292: 'around',\n 293: 'reply',\n 294: 'late',\n 295: 'try',\n 296: 'friend',\n 297: 'said',\n 298: 'wants',\n 299: 'baby',\n 300: 'true',\n 301: 'dinner',\n 302: 'ha',\n 303: 'live',\n 304: 'guess',\n 305: 'leave',\n 306: 'cold',\n 307: 'actually',\n 308: 'whole',\n 309: 'music',\n 310: 'such',\n 311: 'party',\n 312: 'follow',\n 313: 'read',\n 314: 'put',\n 315: 'whats',\n 316: 'same',\n 317: 'monday',\n 318: 'friday',\n 319: 'few',\n 320: 'also',\n 321: 'might',\n 322: 'outside',\n 323: 'aww',\n 324: 'lt3',\n 325: 'sitting',\n 326: 'havent',\n 327: 'these',\n 328: 'playing',\n 329: 'mean',\n 330: 'sweet',\n 331: 'poor',\n 332: 'until',\n 333: 'eating',\n 334: 'probably',\n 335: 'two',\n 336: 'ugh',\n 337: '10',\n 338: 'used',\n 339: 'may',\n 340: 'saturday',\n 341: 'enough',\n 342: 'hair',\n 343: 'theyre',\n 344: 'free',\n 345: 'iphone',\n 346: 'family',\n 347: 'cute',\n 348: 'hopefully',\n 349: 'god',\n 350: 'followers',\n 351: 'd',\n 352: 'hour',\n 353: 'wasnt',\n 354: 'play',\n 355: 'times',\n 356: '5',\n 357: 'mine',\n 358: 'sounds',\n 359: 'tweet',\n 360: 'hahaha',\n 361: 'else',\n 362: 'wanted',\n 363: 'theres',\n 364: 'shit',\n 365: 'glad',\n 366: 'weeks',\n 367: 'hi',\n 368: 'most',\n 369: 'song',\n 370: 'must',\n 371: 'myself',\n 372: 'busy',\n 373: 'found',\n 374: 'kids',\n 375: 'both',\n 376: 'since',\n 377: 'xx',\n 378: 'money',\n 379: 'funny',\n 380: 'lets',\n 381: 'full',\n 382: 'least',\n 383: 'anyone',\n 384: 'internet',\n 385: 'fuck',\n 386: 'far',\n 387: 'able',\n 388: 'call',\n 389: 'close',\n 390: 'ago',\n 391: 'pic',\n 392: 'real',\n 393: 'gone',\n 394: 'meet',\n 395: 'finished',\n 396: 'fan',\n 397: 'tweets',\n 398: 'listening',\n 399: 'buy',\n 400: 'almost',\n 401: 'give',\n 402: '12',\n 403: 'online',\n 404: 'mom',\n 405: 'quite',\n 406: 'office',\n 407: 'tv',\n 408: 'thinking',\n 409: 'forward',\n 410: 'called',\n 411: 'which',\n 412: 'needs',\n 413: 'stuck',\n 414: 'b',\n 415: 'end',\n 416: 'years',\n 417: 'dad',\n 418: 'either',\n 419: 'jealous',\n 420: 'place',\n 421: 'pics',\n 422: 'computer',\n 423: 'hurts',\n 424: 'took',\n 425: 'stupid',\n 426: 'til',\n 427: 'lot',\n 428: 'blog',\n 429: 'problem',\n 430: 'gotta',\n 431: 'game',\n 432: 'eat',\n 433: 'loved',\n 434: 'told',\n 435: 'lots',\n 436: 'book',\n 437: 'hell',\n 438: 'till',\n 439: 'everything',\n 440: 'anymore',\n 441: 'lovely',\n 442: 'kind',\n 443: 'car',\n 444: 'room',\n 445: 'half',\n 446: 'r',\n 447: 'break',\n 448: 'exams',\n 449: 'through',\n 450: 'exam',\n 451: 'seeing',\n 452: 'every',\n 453: 'welcome',\n 454: 'video',\n 455: 'happen',\n 456: 'boy',\n 457: 'bring',\n 458: 'trip',\n 459: 'feels',\n 460: 'missing',\n 461: 'knew',\n 462: 'gets',\n 463: 'ah',\n 464: 'drive',\n 465: 'brother',\n 466: 'lunch',\n 467: 'without',\n 468: 'own',\n 469: 'wrong',\n 470: 'top',\n 471: 'sound',\n 472: 'town',\n 473: 'youve',\n 474: 'face',\n 475: 'couldnt',\n 476: 'test',\n 477: 'run',\n 478: 'cry',\n 479: 'coffee',\n 480: 'officially',\n 481: 'once',\n 482: 'send',\n 483: 'xxx',\n 484: 'pizza',\n 485: 'their',\n 486: 'boo',\n 487: 'came',\n 488: 'headache',\n 489: 'wouldnt',\n 490: 'cuz',\n 491: 'breakfast',\n 492: 'star',\n 493: 'catch',\n 494: '30',\n 495: 'hang',\n 496: 'part',\n 497: 'totally',\n 498: 'leaving',\n 499: 'red',\n 500: 'enjoy',\n 501: 'london',\n 502: 'mothers',\n 503: 'sooo',\n 504: 'mind',\n 505: 'hit',\n 506: 'seems',\n 507: 'fast',\n 508: 'raining',\n 509: 'afternoon',\n 510: 'awww',\n 511: 'maths',\n 512: 'anything',\n 513: 'dog',\n 514: 'using',\n 515: 'beach',\n 516: 'bye',\n 517: 'heard',\n 518: 'less',\n 519: 'due',\n 520: 'open',\n 521: 'broke',\n 522: 'city',\n 523: 'line',\n 524: 'month',\n 525: 'minutes',\n 526: 'woke',\n 527: 'talk',\n 528: 'mileycyrus',\n 529: 'cake',\n 530: 'months',\n 531: '6',\n 532: 'shopping',\n 533: 'update',\n 534: 'felt',\n 535: 'together',\n 536: 'lmao',\n 537: 'picture',\n 538: 'btw',\n 539: 'hehe',\n 540: 'club',\n 541: 'works',\n 542: 'believe',\n 543: 'clothes',\n 544: 'sometimes',\n 545: 'bus',\n 546: 'ohh',\n 547: 'started',\n 548: 'says',\n 549: 'fail',\n 550: 'couple',\n 551: 'running',\n 552: 'asleep',\n 553: 'seen',\n 554: 'english',\n 555: 'yours',\n 556: 'water',\n 557: 'cat',\n 558: 'alone',\n 559: 'guy',\n 560: '7',\n 561: 'hmmm',\n 562: 'tickets',\n 563: 'idea',\n 564: 'understand',\n 565: 'taking',\n 566: 'tommcfly',\n 567: 'stay',\n 568: 'seem',\n 569: 'cannot',\n 570: 'dude',\n 571: 'heading',\n 572: 'o',\n 573: '20',\n 574: 'text',\n 575: 'cause',\n 576: 'person',\n 577: 'hurt',\n 578: 'enjoying',\n 579: 'especially',\n 580: 'followfriday',\n 581: 'change',\n 582: 'hoping',\n 583: 'words',\n 584: 'post',\n 585: 'happened',\n 586: 'girls',\n 587: 'pay',\n 588: 'fair',\n 589: 'pain',\n 590: 'sore',\n 591: 'word',\n 592: 'sunny',\n 593: 'talking',\n 594: 'story',\n 595: 'apparently',\n 596: 'following',\n 597: 'care',\n 598: 'download',\n 599: 'dear',\n 600: 'bought',\n 601: 'boys',\n 602: 'anyway',\n 603: 'w',\n 604: 'sister',\n 605: 'y',\n 606: 'crazy',\n 607: 'aint',\n 608: 'album',\n 609: 'ooh',\n 610: 'camp',\n 611: 'meeting',\n 612: 'share',\n 613: 'david',\n 614: 'remember',\n 615: 'walk',\n 616: 'forgot',\n 617: 'safe',\n 618: 'drink',\n 619: 'link',\n 620: 'write',\n 621: 'random',\n 622: 'seriously',\n 623: 's',\n 624: 'reason',\n 625: 'radio',\n 626: 'reading',\n 627: 'youll',\n 628: 'aw',\n 629: 'store',\n 630: 'three',\n 631: 'tom',\n 632: 'yall',\n 633: 'mac',\n 634: 'xoxo',\n 635: 'worst',\n 636: 'knows',\n 637: 'favorite',\n 638: 'awake',\n 639: '2day',\n 640: 'season',\n 641: 'lady',\n 642: 'comes',\n 643: 'rest',\n 644: 'drinking',\n 645: 'ones',\n 646: 'ate',\n 647: 'support',\n 648: 'died',\n 649: 'moms',\n 650: 'ride',\n 651: 'church',\n 652: 'facebook',\n 653: 'cut',\n 654: 'dream',\n 655: 'win',\n 656: 'mad',\n 657: 'watched',\n 658: 'bill',\n 659: 'slow',\n 660: 'lil',\n 661: 'ask',\n 662: 'mins',\n 663: 'starting',\n 664: 'fucking',\n 665: 'goes',\n 666: 'waking',\n 667: 'sa',\n 668: 'hannah',\n 669: 'soooo',\n 670: 'high',\n 671: 'updates',\n 672: 'ppl',\n 673: 'plus',\n 674: 'definitely',\n 675: 'shows',\n 676: 'list',\n 677: 'chocolate',\n 678: 'holiday',\n 679: 're',\n 680: 'interview',\n 681: 'shall',\n 682: 'hello',\n 683: 'pick',\n 684: '8',\n 685: 'myspace',\n 686: 'cos',\n 687: 'wake',\n 688: 'dogs',\n 689: 'moving',\n 690: 'warm',\n 691: 'huge',\n 692: 'nap',\n 693: 'eh',\n 694: 'l',\n 695: 'against',\n 696: 'super',\n 697: 'ipod',\n 698: 'finals',\n 699: 'hungry',\n 700: 'math',\n 701: 'bday',\n 702: 'arent',\n 703: 'uk',\n 704: 'burn',\n 705: 'fall',\n 706: 'killing',\n 707: 'listen',\n 708: 'final',\n 709: 'move',\n 710: 'happens',\n 711: 'xd',\n 712: 'along',\n 713: 'type',\n 714: 'la',\n 715: 'brothers',\n 716: 'hun',\n 717: 'episode',\n 718: 'chat',\n 719: 'studying',\n 720: '100',\n 721: 'visit',\n 722: 'gosh',\n 723: 'turn',\n 724: 'closer',\n 725: 'web',\n 726: 'means',\n 727: 'won',\n 728: 'via',\n 729: 'goodnight',\n 730: 'black',\n 731: 'gay',\n 732: 'revision',\n 733: 'em',\n 734: 'ps',\n 735: 'dead',\n 736: 'fine',\n 737: 'plans',\n 738: 'tuesday',\n 739: 'wine',\n 740: 'course',\n 741: 'site',\n 742: 'unfortunately',\n 743: 'closed',\n 744: 'suck',\n 745: 'babe',\n 746: 'doin',\n 747: 'spent',\n 748: 'writing',\n 749: 'spend',\n 750: 'idk',\n 751: 'under',\n 752: 'roll',\n 753: 'parents',\n 754: 'jay',\n 755: 'thinks',\n 756: 'evening',\n 757: 'low',\n 758: 'ahead',\n 759: 'sadly',\n 760: 'exciting',\n 761: 'mr',\n 762: 'park',\n 763: 'john',\n 764: 'space',\n 765: 'road',\n 766: 'youtube',\n 767: 'cheap',\n 768: 'throat',\n 769: 'shift',\n 770: 'broken',\n 771: 'decided',\n 772: 'loves',\n 773: 'saying',\n 774: 'apart',\n 775: 'boring',\n 776: 'page',\n 777: 't',\n 778: 'gym',\n 779: 'relaxing',\n 780: 'form',\n 781: 'messages',\n 782: 'moon',\n 783: 'shower',\n 784: 'learn',\n 785: 'vacation',\n 786: 'caught',\n 787: 'itll',\n 788: 'add',\n 789: 'side',\n 790: 'sold',\n 791: 'guitar',\n 792: 'fml',\n 793: 'paper',\n 794: 'fingers',\n 795: 'bout',\n 796: 'august',\n 797: 'perfect',\n 798: 'crap',\n 799: 'soo',\n 800: 'mention',\n 801: 'lose',\n 802: 'eyes',\n 803: 'cook',\n 804: 'worked',\n 805: 'p',\n 806: 'sat',\n 807: 'drunk',\n 808: 'inside',\n 809: 'hand',\n 810: 'graduation',\n 811: 'currently',\n 812: 'moment',\n 813: 'smell',\n 814: 'stomach',\n 815: 'meant',\n 816: 'light',\n 817: 'nite',\n 818: 'sleepy',\n 819: 'college',\n 820: 'vote',\n 821: 'website',\n 822: 'congrats',\n 823: 'dreams',\n 824: 'jus',\n 825: 'figure',\n 826: 'heart',\n 827: 'mcfly',\n 828: 'weekends',\n 829: 'account',\n 830: 'oooo',\n 831: 'realized',\n 832: 'nope',\n 833: 'during',\n 834: 'bummer',\n 835: 'others',\n 836: 'mail',\n 837: 'horrible',\n 838: '2nite',\n 839: 'e',\n 840: 'husband',\n 841: '11',\n 842: 'disney',\n 843: 'failed',\n 844: 'goin',\n 845: 'mtv',\n 846: 'finish',\n 847: 'number',\n 848: 'sleeping',\n 849: 'cancelled',\n 850: 'hanging',\n 851: 'afford',\n 852: 'woman',\n 853: 'kinda',\n 854: 'crying',\n 855: 'rainy',\n 856: 'clean',\n 857: 'exactly',\n 858: 'hotel',\n 859: 'sigh',\n 860: 'wtf',\n 861: 'st',\n 862: 'business',\n 863: 'study',\n 864: 'bike',\n 865: 'bbq',\n 866: 'sent',\n 867: 'speak',\n 868: 'kill',\n 869: 'intense',\n 870: 'tweeting',\n 871: 'body',\n 872: 'g',\n 873: 'chicago',\n 874: 'yep',\n 875: 'nose',\n 876: 'invite',\n 877: 'shoes',\n 878: 'tears',\n 879: 'boss',\n 880: 'movies',\n 881: 'tea',\n 882: 'tweetdeck',\n 883: 'garden',\n 884: 'san',\n 885: 'forget',\n 886: 'train',\n 887: 'comfy',\n 888: 'giving',\n 889: 'dads',\n 890: 'hella',\n 891: 'rob',\n 892: 'hates',\n 893: 'answer',\n 894: 'yo',\n 895: 'worried',\n 896: 'ahh',\n 897: 'quickly',\n 898: 'dance',\n 899: 'interesting',\n 900: 'alright',\n 901: 'gt',\n 902: 'row',\n 903: 'set',\n 904: '3rd',\n 905: 'fact',\n 906: 'version',\n 907: 'minute',\n 908: 'concert',\n 909: 'killed',\n 910: 'short',\n 911: 'boyfriend',\n 912: 'gave',\n 913: 'ima',\n 914: 'vs',\n 915: 'dark',\n 916: 'chris',\n 917: 'tour',\n 918: 'keeps',\n 919: 'scared',\n 920: 'cookies',\n 921: 'neither',\n 922: 'nd',\n 923: 'liked',\n 924: 'project',\n 925: 'message',\n 926: 'wee',\n 927: 'count',\n 928: 'spell',\n 929: 'mum',\n 930: 'front',\n 931: 'trek',\n 932: 'games',\n 933: 'wonder',\n 934: 'date',\n 935: 'sunshine',\n 936: 'shut',\n 937: 'pissed',\n 938: 'sis',\n 939: 'training',\n 940: 'absolutely',\n 941: 'hmm',\n 942: 'shots',\n 943: 'strong',\n 944: 'fixed',\n 945: 'bro',\n 946: 'jonasbrothers',\n 947: 'congratulations',\n 948: 'pass',\n 949: 'sexy',\n 950: 'name',\n 951: 'deep',\n 952: 'special',\n 953: 'rofl',\n 954: 'classic',\n 955: 'wash',\n 956: 'yawn',\n 957: 'practice',\n 958: 'shop',\n 959: 'matter',\n 960: 'comic',\n 961: 'problems',\n 962: 'fix',\n 963: 'group',\n 964: 'headed',\n 965: 'server',\n 966: 'worth',\n 967: 'past',\n 968: 'realize',\n 969: 'ugly',\n 970: 'sneak',\n 971: 'bird',\n 972: 'lazy',\n 973: 'canada',\n 974: 'football',\n 975: 'worse',\n 976: 'weve',\n 977: 'realised',\n 978: 'lakers',\n 979: 'air',\n 980: 'written',\n 981: 'yah',\n 982: 'order',\n 983: 'bottle',\n 984: 'books',\n 985: 'apple',\n 986: 'son',\n 987: 'alcohol',\n 988: 'legs',\n 989: 'disappointed',\n 990: 'wonderful',\n 991: 'allowed',\n 992: 'living',\n 993: 'bf',\n 994: 'mood',\n 995: 'staying',\n 996: 'save',\n 997: 'bunny',\n 998: 'heat',\n 999: 'ideas',\n 1000: 'near',\n ...}"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "vocab_size = len(vocab) + 1",
"execution_count": 60,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "vocab_size",
"execution_count": 62,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 62,
"data": {
"text/plain": "10339"
},
"metadata": {}
}
]
},
{
"metadata": {},
"cell_type": "markdown",
"source": "#### ENCODE TEXT"
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "encoded_text = token.texts_to_sequences(text)",
"execution_count": 48,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "print(encoded_text)",
"execution_count": 50,
"outputs": [
{
"output_type": "stream",
"text": "[[2917, 1, 45, 4, 2918, 86, 163, 24, 5, 1394, 1841], [2919, 16, 57, 297, 682, 824, 87, 155, 9, 240, 361], [110, 8, 5, 1842, 540, 22, 11, 3, 1843], [2920, 1395, 15, 192, 36, 4, 338, 2921], [2922, 13, 179, 250, 195, 36, 17, 1, 72, 2923, 314, 3, 50, 215, 33, 64, 6, 133, 9, 2924, 20, 9, 196, 541, 34, 28, 241], [25, 22, 168], [433, 1147, 13, 176, 26, 20, 1, 43, 122], [2925, 2926, 2927, 269, 15, 478, 123, 6, 123, 118], [1148, 2928, 13, 16, 105], [2929, 1396, 135, 298, 9, 2, 455, 18, 55, 79, 55, 1397, 102, 404, 434, 15, 17, 1397, 106, 94, 2930, 102, 581, 2, 39, 14, 64], [43, 542, 2931, 186, 5, 331, 164, 299, 456, 13, 16, 117, 1, 95, 17, 291, 242], [362, 2, 955, 203, 543, 6, 169, 2932, 20, 3, 2933, 2934, 8, 381], [1, 156, 40, 544], [956, 28, 92, 163, 24, 1844, 46, 75, 165, 2, 825, 34, 3, 230, 211], [2935, 1, 156, 17, 13, 1149, 5, 2936, 10, 1845, 12, 957, 22, 166, 2937, 30, 2938, 1150], [2939, 1846, 2940, 270, 22, 2941, 3, 2942, 2943], [44, 2, 479, 958, 2, 35, 435, 12, 50, 159, 14, 5, 1151, 24, 382, 25, 1847], [2944, 2945, 187, 32, 2946, 6, 14, 6, 91, 68, 282, 216, 17, 383, 96, 1848, 4, 2947, 14, 2948, 5, 826, 2, 155], [1, 97, 68, 405, 186, 16, 2949, 69, 2, 2950, 436, 1398, 31, 6, 71, 1849, 11, 169, 582, 1, 42, 1152, 30, 1, 19, 4, 2951, 12, 9, 1, 72], [74, 2952, 44, 2, 478, 111, 68, 197, 1399, 20, 363, 2953, 2954, 87, 180, 9, 131, 26], [68, 362, 2, 39, 56, 827, 14, 1400, 339, 128, 2, 56, 1401, 20, 1, 43], [2955, 25, 300, 742, 20, 89, 23, 1850, 3, 437, 2956, 1851, 1852, 1, 43, 137], [2957, 628, 331, 211, 315, 3, 959, 21, 143], [198, 2, 3, 960, 629, 118, 37, 2958, 112, 35, 301, 24, 1853, 119], [2959, 384, 1153, 961, 46, 18, 2960, 30, 630, 170, 165, 2, 962, 1854], [2961, 9, 129, 683, 30, 583, 36, 1855, 385, 1402, 47, 6, 1, 148, 35, 215, 364, 10, 17, 47, 16, 1, 19, 2, 1856, 10, 828], [1154, 94, 2, 4, 963, 2962, 11, 199, 199, 199, 2963, 457, 14, 3, 2964, 2965], [14, 3, 2966, 545, 964, 2, 3, 1403, 128, 684, 1155, 458, 2967, 365, 1, 69, 59, 1404, 11, 3, 406], [2968, 546, 107, 1, 27, 1156, 59, 62, 88, 20, 73, 130, 743, 6, 124, 94, 145, 1857, 1858, 14, 407, 291, 503, 251], [2969, 217, 125, 106, 480, 547, 65, 13, 1405, 63, 188, 24, 3, 316, 54, 37, 122, 10, 15, 438, 157, 125, 33, 54, 292], [171, 105, 10, 32, 3, 1859, 6, 2970, 1406, 2, 1157, 11, 2971, 2972, 63, 2973, 2974, 46], [2975, 7, 120, 166, 293, 7, 148, 18, 260, 33, 829, 6, 2976, 3, 293, 113, 18, 2977, 584, 113, 52, 57, 112], [2978, 317, 408, 409, 2979, 11, 204, 366], [1158, 438, 631, 20, 85, 1159, 8, 14], [2980, 2981, 2982, 632, 29, 205, 1860, 152, 2, 49, 1407, 2983, 13, 75, 1860, 152, 2, 5, 2984], [2985, 302, 9, 339, 23, 38, 294, 101, 318, 2, 314, 9, 14, 1861, 77, 32, 541, 34, 38, 103, 70, 303, 38, 386, 192, 10, 4, 2986], [2987, 29, 7, 1160, 15, 52, 585, 1, 261, 73, 130, 16, 108], [53, 22, 23, 387, 2, 122, 1408, 127], [105, 206, 965, 2988, 68, 744, 13, 168, 14, 9, 2989], [1862, 830, 140, 111, 1863, 50, 46, 2990], [2991, 2992, 2993, 2994, 2995, 2996, 12, 17], [2997, 65, 213, 2998, 19, 2, 137, 4, 319, 80, 141, 10, 9, 1, 261, 9, 27, 32, 134, 831, 24, 481, 1, 304, 25, 966, 3, 137], [2999, 1, 40, 33, 3000, 12, 586, 292, 11, 115, 164, 3001, 9, 459, 36, 1864, 332, 4, 1409, 3002, 3003, 967, 1161, 3, 316], [3004, 745, 76, 29, 7, 746, 3005, 548, 367, 482, 5, 177, 1865, 2, 3006, 483], [685, 282, 168, 157, 177, 211, 8, 100], [3007, 29, 7, 1160, 15, 13, 134, 549, 1866, 36, 124, 1410, 1162, 3008, 18, 11, 3, 967, 319, 170], [1, 19, 2, 41, 3009, 14, 98, 1163, 1867, 3010, 381, 12, 439, 6, 1, 42, 1411, 207, 2, 231, 3011], [3012, 628, 3013, 686, 3, 3014, 29, 3015, 14, 3, 3016, 1164, 6, 1, 68, 66, 2, 39, 47, 20, 25, 123, 3017], [460, 3, 139, 1, 40, 16, 115, 79, 6, 43, 56, 440, 1, 93, 116, 26, 80, 262, 218], [3018, 832, 1, 18, 35, 37, 587, 77, 1, 388, 11, 186], [3019, 107, 251, 104, 4, 441, 121, 2, 687, 30, 3020, 1, 82, 3, 3021, 193, 1, 19, 2, 305, 10, 3, 545], [3022, 263, 104, 22, 588, 1, 120, 968, 203, 3023, 332, 36, 46, 1, 179, 261, 111, 27, 969], [74, 212, 1, 19, 4, 633, 3024, 3025, 144, 20, 43, 1412, 9, 193, 1, 19, 4, 306], [747, 32, 31, 3026, 222, 1868, 12, 3027, 6, 3028, 78, 3029, 38, 172], [1, 99, 1, 27, 3030, 12, 3031, 5, 504], [18, 831, 3032, 27, 11, 1165, 46, 6, 1, 120, 505, 5, 1166, 2, 39, 970, 6, 56, 143], [132, 6, 1167, 31, 28, 3033, 748], [3034, 17, 7, 96, 41, 10, 9, 1, 69, 17, 585, 6, 85, 1, 1410, 6, 69, 4, 1413, 10, 3, 971, 634], [3035, 263, 173, 189, 59, 442, 12, 3036, 110, 270, 174, 3037, 1414, 30, 833, 174, 3038, 364], [461, 9, 27, 2, 28, 2, 23, 300, 3, 232, 106, 1869, 6, 25, 340], [185, 333, 3039, 62, 88, 1, 69, 3, 635, 3040, 1, 66, 484, 127, 20, 1, 42, 66, 3, 589], [230, 506, 1168, 26], [3041, 52, 4, 834], [3042, 47, 1, 58], [3043, 13, 38, 222, 2, 3044, 5, 1870], [544, 1, 156, 139, 214, 307, 35, 2, 749, 54, 21, 1415, 3045, 835], [8, 1871], [75, 37, 3046, 1872, 11, 3, 836], [1873, 25, 3047, 13, 186], [3048, 22, 28, 271], [3049, 3050, 1, 43, 127, 1, 71, 75, 590, 348, 89, 23, 144, 3051, 3, 157, 550, 12, 141], [1169, 43, 122, 688, 3052, 214, 636, 52, 837, 88], [3053, 37, 105, 750, 67, 1, 53, 56, 7, 118, 1, 53, 482, 7, 4, 1416, 77, 7, 66], [3054, 70, 112, 155], [368, 12, 3, 3055, 29, 159, 141, 29, 1170, 101, 16, 507, 6, 9, 459, 36, 240, 8, 187, 159, 65, 689, 14, 2, 3056, 14, 591, 1874], [1, 93, 3057, 193, 5, 1171, 8, 3058, 3059, 2, 3060, 320, 25, 219, 6, 1, 42, 66, 2, 3061, 1172], [1875, 1876, 252, 15, 1877, 1417, 52, 585], [3062, 3063, 321, 23, 3064, 2, 1878, 3065, 751, 3066, 75, 253, 60, 3067, 119], [65, 24, 382, 9, 1173, 508, 11, 341, 54, 2, 35, 3, 342, 112], [99, 57, 120, 19, 2, 50, 838, 745], [551, 152, 139, 11, 485, 3068, 2, 35, 272, 159, 3069, 78, 1418, 134, 19, 2, 41, 64, 12, 283, 3070, 198, 3071, 839, 1879], [3072, 3, 128, 121, 124, 159, 9, 8, 3, 3073, 121, 32, 3, 177], [18, 150, 200, 972, 3074, 1174, 16, 1175], [3075, 62, 31, 12, 160, 31, 96, 1, 19, 4, 443, 38, 13, 187, 3076, 51, 690, 1176, 2, 306, 973, 486], [3077, 7, 201, 252, 15, 49, 1177, 637, 1178, 292, 3, 3078, 1179], [156, 9, 67, 840, 1880, 552, 292, 841, 124, 128, 553, 143, 4, 308, 204, 170, 46, 72, 89, 1881, 14, 3, 169, 6, 3079, 143, 638], [273, 3, 3080, 2, 3, 484], [28, 92, 3081, 131, 26, 592, 1180, 1882, 20, 53, 334, 581, 3082, 3, 509, 3083, 30, 2, 3084, 22, 79], [176, 12, 3085, 3086, 4, 3087, 3088, 1419, 5, 284], [3089, 1181, 51, 3090, 16, 389, 6, 208, 75, 16, 386, 192], [9, 166, 3091, 3092, 1420, 1, 68, 442, 12, 66, 64, 74, 65, 264, 93, 4, 285, 160], [243, 1, 18, 487, 51, 3093, 3094, 6, 9, 27, 175, 26, 2, 41, 59, 3095], [37, 1182, 974, 10, 15, 223, 45, 975, 6, 9, 233, 36, 232, 16, 976, 410, 91, 974, 20, 53, 39, 34, 10, 301, 274], [1883, 510, 167, 1421, 1, 19, 511, 26, 85, 554, 157, 3096, 4, 1884, 31], [3097, 6, 1, 320, 19, 5, 691, 3098, 3099, 411, 8, 36, 3100, 24, 382, 1, 412, 4, 285, 30, 83], [134, 180, 59, 407, 3, 224, 8, 109, 151, 262, 842, 1422, 1, 43, 542, 1, 18, 297, 17, 47], [212, 1, 93, 4, 164, 692], [3101, 74, 1, 3102, 752, 693, 1, 66, 286, 2, 20, 1, 43, 234, 512, 152, 33, 8, 975, 262, 1423, 3103], [13, 22, 171, 65, 24, 32, 20, 13, 22, 186, 244, 1, 142, 189, 59, 1885], [13, 225, 1886, 15, 173, 113, 361, 13, 44, 2, 122], [3104, 1, 156, 9, 67, 7, 155, 3105, 3106, 9, 245, 15, 97, 36, 1, 843, 7], [159, 4, 202, 12, 3107, 639, 98, 1424, 4, 3108, 51, 844, 1887, 3, 3109, 128, 9, 1425, 30, 1423, 3110, 101, 3, 1426, 3111], [3112, 74, 37, 845, 8, 1427, 7, 39], [3113, 74, 3114, 1, 1888, 6, 25, 94, 181, 28, 1, 82, 3115, 119, 76, 106, 1428, 94, 3116, 3117], [24, 3, 960, 958, 3118, 6, 3119, 10, 3, 157, 319, 170, 134, 295, 6, 846, 226, 46, 640, 1429, 27, 4, 550, 366, 390], [3120, 1183, 591, 13, 75, 109, 338, 2, 9, 6, 591, 1, 82, 7, 38, 6, 13, 165, 1184, 246, 2, 35, 5, 753, 2, 275, 15, 34], [413, 11, 1430], [3121, 18, 2, 275, 7, 58, 49, 175, 105, 7, 120, 1889, 3122], [18, 254, 3, 641, 51, 3, 1185, 3123, 167, 189, 4, 391, 21, 102, 20, 1, 227, 3124], [1186, 3125], [3126, 110, 282, 383, 593, 2, 15], [1890, 3127, 1, 95, 111, 642, 48], [3128, 7, 45, 49, 3129, 3130, 3131, 75, 4, 125, 113, 16, 192, 52, 847, 8, 555], [1, 197, 5, 1187, 14, 3, 545, 46, 65, 22, 1188], [3132, 1, 18, 977, 76, 79, 1, 68, 41, 156, 3, 978, 1, 27, 1891, 1892, 10, 3, 3133, 1431, 214, 1432, 1893], [263, 1, 43, 542, 754, 1433, 8, 44, 91, 3, 979, 1, 156, 1894, 3134], [13, 18, 109, 2, 122, 6, 86, 29, 1895, 3135, 322, 5, 1434, 3136], [173, 265, 15, 35, 33, 369, 34, 12, 5, 284], [3137, 1, 58, 26, 13, 413, 848, 11, 3, 1189, 12, 3, 444], [3138, 140, 25, 4, 300, 594, 980, 101, 4, 3139, 60, 32, 3, 103, 195, 203, 513, 112, 3140, 1435, 462, 222, 63, 3141], [52, 8, 21, 3, 1896, 3142, 322, 306, 6, 3143], [1897, 546, 65, 22, 172, 3144, 3, 219, 1190], [3145, 104, 253, 105, 10, 7], [1, 19, 4, 68, 103, 488, 6, 13, 1436, 176, 173, 97, 105, 10, 15, 3146], [1, 156, 187, 849, 14, 3147, 24, 3, 62, 3148, 65, 44, 21, 1898, 361, 26, 694], [15, 755, 1, 71, 1437, 24, 514, 100, 3149, 3150, 38, 199, 3151, 6, 43, 3152, 116, 193, 13, 14, 5, 190], [3153, 981, 3154, 69, 4, 319, 3155, 20, 1, 72, 3156, 9, 3157, 55, 64, 12, 3, 177, 960, 1899, 104, 52, 255, 3158, 16, 1900], [3159, 1, 53, 20, 595, 7, 19, 2, 23, 596, 15, 11, 982, 10, 15, 2, 1191, 7], [3160, 3161, 3162, 3163, 134, 414, 161, 34, 3, 3164, 3, 3165, 3166, 185, 276, 142, 1901, 3167], [3168, 556, 983, 32, 123, 5, 3169, 12, 1902, 63, 3170, 984, 26, 343, 32, 850, 2, 1438], [3171, 7, 6, 3, 643, 12, 213, 348, 985, 53, 415, 33, 1175, 1439, 1440, 11, 200, 3172, 416], [1420, 3173, 104, 220], [463, 1, 66, 1903, 1441, 38], [3174, 47, 381, 230, 13, 91, 50, 10, 3175, 3176, 417, 1192, 192, 1904, 6, 1413, 84, 22, 4, 114, 318, 91, 418], [3177, 105, 2, 256, 17, 212], [15, 6, 3178, 62, 31, 12, 138, 3179], [3180, 133, 257, 57, 277, 1905, 1906, 10, 392, 1, 69, 2, 587, 3181, 2, 35, 5, 1905, 83], [644, 4, 3182, 349, 1, 97, 36, 4, 230], [42, 167, 39, 61, 25, 32, 1442, 86, 244, 1, 142, 35, 4, 557, 20, 214, 53, 597, 10, 102, 67, 1, 39, 2, 406], [3183, 35, 15, 1443, 986], [3184, 1907, 205, 45, 204, 350, 1, 8, 65, 419], [323, 278, 1908], [3185, 146, 73, 29], [225, 97, 36, 13, 159, 21, 50, 10, 3, 125, 6, 13, 22, 1909, 1, 99, 9, 27, 318], [258, 393, 26, 52, 41, 1, 41], [3186, 8, 17, 193, 1910, 43, 851, 987], [86, 8, 240, 14, 407, 13, 145, 4, 182, 60, 4, 852, 21, 1911, 988, 321, 55, 65, 18, 39, 2, 169], [3187, 140, 6, 111, 489, 252, 15, 60, 1912, 1, 27, 853, 989, 21, 1444, 127, 20, 25, 242, 111, 27, 3188, 117], [3189, 1, 58, 3, 420, 338, 2, 23, 990, 20, 751, 3, 78, 1193, 1913, 9, 245, 15, 478], [110, 8, 9, 67, 25, 3190, 25, 3191, 38, 43, 39, 2, 3, 515, 26, 324], [120, 39, 2, 3192, 334, 325, 24, 61, 854, 193, 1, 120, 35, 2, 56, 102, 46, 18, 1160, 1, 42, 82, 102, 17, 79], [3193, 1, 3194, 52, 4, 3195, 1, 68, 167, 56, 3196, 39, 30, 695, 3197], [48, 11, 3198, 85, 91, 2, 1914, 37, 3199, 33, 153, 20, 1188, 21, 5, 1915, 33, 125, 3200, 972, 228], [3201, 13, 696, 105, 2, 256], [16, 131, 26, 1, 42, 19, 5, 697, 351, 411, 13, 3202, 10, 490, 1, 43, 256, 5, 309, 1916], [3203, 146, 43, 598, 440], [43, 122, 1, 3204, 3205], [1, 68, 167, 56, 86, 10, 84, 20, 3, 3206, 73, 29, 109, 2, 78, 3207, 8, 1445], [168, 14, 3208, 3209, 421, 51, 5, 422, 6, 85, 3210, 30, 3, 28, 645, 5, 246, 464, 8, 3211], [1, 19, 2, 305, 26, 516, 206, 14, 100], [298, 2, 39, 34, 3212], [199, 1917], [3213, 177, 296, 44, 2, 3214, 11, 4, 319, 170, 13, 134, 82, 102, 95, 135, 106, 114, 119], [3215, 105, 10, 1918, 49, 100, 302, 20, 173, 136, 14, 1446, 317, 756, 24, 3216, 75, 326, 45, 2, 56, 1907, 208, 324, 209], [3217, 110], [3218, 1, 72, 13, 1447, 180, 9, 274, 1448, 74, 599, 209], [3219, 13, 22, 991, 3220, 26, 757, 3221, 1194], [1919, 94, 14, 3, 3222, 11, 36, 194, 141, 94, 992, 24, 3, 515, 3223, 5, 1195, 1, 82, 5, 299], [8, 25, 855, 322, 16, 176, 20, 106, 4, 381, 31, 758], [3224, 1449, 13, 128, 109, 144, 26, 107, 16, 176], [305, 15, 558, 1, 156, 187, 83, 1, 66, 3, 385, 34], [1450, 412, 4, 3225, 3226, 11, 982, 2, 394, 1451, 3227, 1920, 10, 160, 1921], [13, 176, 12, 171, 16, 1168, 16, 1922], [600, 335, 1923, 46, 1, 71, 179, 117, 67, 1, 93, 1923, 24, 382, 73, 227, 3228, 6, 22, 3229, 1452], [18, 168], [176, 1, 18, 66, 2, 39, 2, 122, 3230], [38, 176, 19, 2, 35, 144, 10, 50, 84, 26, 993, 298, 407, 91, 16, 37, 3231, 67, 848], [1, 27, 307, 582, 10, 59, 247, 46, 2, 3232, 30, 5, 994, 3233, 549, 3234, 232], [693, 80, 698], [22, 3235, 276, 3236, 540, 417, 3237, 163, 3238, 559, 130, 109, 2, 23, 98, 3239, 24, 33, 1453], [1406, 2, 136, 2, 3240, 14, 230, 1924, 759, 339, 295, 118, 266, 38, 172, 119], [3241, 1454, 10, 5, 404, 6, 1, 36, 161, 61, 185, 4, 125, 10, 4, 856, 444, 5, 545, 1925, 24, 1455, 6, 1, 19, 2, 35, 30, 24, 560], [3242, 20, 110, 63, 52, 41, 7, 857, 41, 168, 11, 4, 3243, 3, 62, 1, 517, 7, 130, 168, 24, 4, 858, 107, 16, 172, 390], [1926, 271, 64, 149, 465, 1927, 115, 28, 271, 64, 149, 1928, 22, 16, 79, 156, 9, 67, 3, 1196, 1929, 2, 1841], [74, 364, 4, 97, 552, 10, 445, 98, 352, 6, 26, 1, 19, 518, 262, 3244, 2, 35, 144, 3245], [3246, 162, 7], [859, 18, 646, 466, 75, 699, 69, 491, 33, 92, 38, 860], [385, 385, 385, 385, 5, 1197, 423], [1930, 3247, 24, 3, 261, 12, 995, 11, 4, 858, 99, 158, 601, 130, 161, 21, 213, 119], [1, 156, 67, 3248, 35, 1198, 519, 2, 3, 1931, 1931, 353, 28, 24, 394, 30, 1, 370, 155], [147, 3249, 13, 344, 14, 5, 121, 2, 50, 119, 16, 89, 82, 3, 3250, 182], [3251, 105, 1932, 1, 27, 395, 67, 1, 45, 61], [3252, 388, 15, 67, 7, 96, 1, 66, 2, 58, 315, 44, 14], [18, 747, 54, 21, 3, 1456, 228, 218, 3253, 1, 99, 1, 461, 76, 2, 1933], [1, 19, 2, 39, 3254, 1, 66, 2, 1457, 34, 80], [13, 117, 193, 67, 7, 3255, 7, 43, 19, 149, 17, 29, 178, 206, 72, 3256, 80], [3257, 74, 212, 1, 1934, 76, 57, 41, 9], [3258, 1, 461, 9], [491, 24, 1458, 861, 1459, 185, 1199, 3259, 198, 34, 12, 862, 647, 1200, 862], [91, 2, 700, 37, 3260, 3261, 46], [8, 75, 11, 3, 443, 3262, 220], [3263, 3, 971, 5, 404, 27, 165, 2, 996, 648], [649, 3264, 15, 60, 76, 1, 142, 23, 11, 138], [48, 61, 6, 98, 1460, 108, 997], [3265, 1, 53, 82, 7, 85], [3266, 3267, 419], [3268, 1, 19, 38, 79, 2, 41, 639, 15, 224, 3269, 446, 844, 192, 10, 3, 3270, 16, 1, 201, 414, 14, 83, 10, 194, 141, 336, 1935, 52, 1, 82], [37, 1936, 46, 1, 304, 17, 3271, 15, 80, 54, 2, 863, 3272, 385, 320, 25, 1201, 2, 35, 220, 34, 83, 11, 3273, 219, 998], [3274, 140, 9, 27, 36, 3275, 48, 1, 27, 1202, 6, 3276, 8, 181, 969, 20, 1, 40, 143, 602], [18, 45, 61, 51, 5, 864, 650, 6, 168, 3, 3277, 1937, 227, 68, 65, 16, 1938, 3, 865, 219, 70, 130, 3278, 85], [68, 210, 167, 39, 2, 50, 46], [106, 1939, 21, 3279, 1162, 2, 35, 98, 3280, 598, 20, 73, 326, 866, 3281, 208, 867, 12, 3, 3282, 23, 3283, 52, 7, 155], [74, 212, 327, 3284, 3285, 29, 44, 2, 868, 15, 3286, 212, 1, 93, 4, 31, 285, 183, 64, 45, 183, 520, 31, 1203, 173, 183, 999], [32, 12, 3, 3287, 1, 133, 11, 3288, 3289, 29, 1940, 3290, 869, 13, 18, 38, 3291, 10, 116], [3292, 3293, 117, 60, 9, 338, 2, 303, 11, 3, 3294, 3295, 320, 3296, 757, 11, 1941, 60, 1942], [1461, 1, 68, 82, 5, 345], [263, 52, 4, 3297, 69, 2, 3298, 5, 342, 3299, 1204, 64, 12, 3, 1462, 195, 2, 41], [1, 99, 5, 384, 27, 168], [3300, 134, 23, 34, 12, 3301, 212], [3302, 13, 105, 47, 279, 20, 1, 58, 76, 57, 97, 424, 15, 4, 235, 371, 1943, 15], [3303, 3304, 110, 29, 7, 1205, 228], [3305, 750, 77, 1, 96, 136, 46, 13, 44, 2, 651, 6, 491, 603, 5, 1944, 63, 65, 35, 34, 185, 1206, 63, 1, 42, 19, 4, 650], [3306, 1873, 25, 94, 508, 10, 3, 62, 194, 366, 1463, 282, 1463, 467, 187, 387, 2, 39, 2, 3, 515], [1, 72, 13, 3, 128, 64, 17, 307, 459, 105, 10, 1464], [1945, 32, 50, 6, 37, 1465, 129, 133, 1945, 4, 1452, 1946], [71, 1184, 1, 69, 2, 82, 5, 299, 604, 3307, 701, 108, 352, 3308, 12, 1947, 50], [3309, 8, 22, 1000, 55, 760, 55, 1, 261, 9, 129, 23], [105, 22, 870, 79, 639, 13, 186, 42, 66, 3310, 5, 1948, 1887, 3, 3311, 37, 50, 639, 18, 15, 3, 1466, 3312, 3313, 182], [1001, 102, 1002, 18, 521, 152, 1, 66, 5, 1002, 48], [5, 652, 106, 94, 3314], [1207, 957, 8, 1437], [561, 328, 1208, 12, 32, 195, 6, 71, 115, 176], [132, 31, 34, 46, 99, 1, 120, 19, 2, 50], [3315, 1, 105, 70, 142, 189, 7, 2, 354, 21, 3, 633, 601, 17, 148, 23, 114], [3316, 140, 492, 522, 3317, 20, 1, 304, 1, 489, 23, 991], [422, 75, 1467, 152, 20, 424, 4, 447, 51, 5, 3318, 1468], [3319, 140, 1, 58, 13, 150, 3320, 3321, 120, 35, 87, 56, 3, 1949, 62, 125, 418], [3322, 367, 761, 3323, 67, 29, 7, 161, 48, 2, 1950, 1469, 1, 27, 1470, 10, 50, 6, 1, 120, 35, 2, 56, 7, 11, 381, 3324], [37, 3325, 83, 24, 3326, 553, 3327, 3328, 280, 653, 5, 1003, 3329, 5, 3330, 3331, 3332], [26, 166, 158, 1200, 3333, 11, 1951, 12, 1952, 519, 87, 3334, 3335, 65, 22, 79, 14, 15], [26, 17, 1953, 34, 1, 96, 35, 1471, 21, 3, 1434, 520, 467, 1472, 3336, 4, 1473, 25, 3337, 5, 1474, 233, 1209], [3338, 17, 253], [3339, 13, 105, 1, 95, 7, 97, 151, 274], [3340, 43, 236, 4, 121, 2, 1954, 309, 1210, 14, 3341, 11, 3342, 25, 179, 514, 3343, 6, 3344], [3345, 13, 11, 3, 157, 444, 20, 1, 58, 52, 7, 329, 124, 94, 393, 32, 153, 1, 82, 7, 38], [26, 1, 19, 3346, 1475, 14, 5, 425, 1955, 52, 8, 3347, 315, 5, 1956, 1957], [8, 1211, 2, 23, 11, 3348, 46, 1476, 77, 3349, 130, 75, 83, 3350], [3351, 287, 68, 68, 3352, 9, 424, 15, 32, 630, 1929, 105, 10, 3353, 7], [13, 16, 1436, 89, 3354, 5, 308, 871, 423], [3355, 17, 253], [3356, 162, 7, 73, 53, 93, 1477, 12, 1958, 3357, 95, 1, 19, 341, 2, 265], [412, 2, 180, 3, 78, 640, 12, 3358, 3359, 263, 3360, 6, 1004, 3361, 1, 353, 387, 2, 493, 30, 21, 3, 78, 640], [50, 14, 4, 340, 142, 23, 3362, 42, 846, 235, 3363, 418, 68, 103, 355], [1959, 3364, 57, 3365, 3366, 1478, 1005, 3367, 872, 3368, 3369, 1478, 1005, 3370, 872, 3371], [3372, 1479, 73, 702, 73, 29, 90, 73, 142, 35, 80, 1960, 47, 19, 7, 553, 116, 303], [3373, 628, 17, 8, 3374], [1, 42, 97, 28, 24, 32], [3375, 74, 37, 16, 76, 41, 7, 35, 123, 150, 9, 159, 26, 28, 285, 7, 417, 27, 86], [1, 66, 283, 87, 170, 12, 5, 226, 48, 3376], [25, 44, 2, 23, 11, 3, 1480, 83, 46, 151, 653, 5, 3377, 266, 25, 38, 220], [345, 494, 22, 438, 3378, 11, 703], [3379, 11, 973, 858, 3380, 37, 3381, 3382, 322, 703, 20, 35, 2, 180, 3383, 3384, 11, 3385], [44, 87, 3386, 1961, 1481], [383, 361, 247, 3387, 3388, 69, 2, 11, 10, 4, 202, 1, 704, 1922, 6, 247, 3389, 462, 15, 77, 13, 34, 38, 172, 1006, 3, 223, 119], [1, 99, 17, 5, 654, 129, 136, 300], [1, 99, 70, 148, 39, 2, 1962, 153, 11, 873, 118], [448, 277, 1212, 11, 3, 762, 277, 288, 88, 21, 763, 277, 90, 340, 115, 117, 17, 25, 276, 1847, 6, 763, 518], [3390, 874, 37, 3391, 449, 3, 875, 93, 2, 1963, 449, 3, 3392, 35, 1175, 67, 9, 1482, 4, 235], [1964, 11, 523, 10, 3393, 562, 2, 56, 1965, 3394, 70, 112, 22, 655], [3395, 70, 273, 20, 158, 1213, 27, 181, 28, 463, 65], [764, 3396, 8, 743, 426, 1483, 1214, 3397, 3398, 91, 3399, 1007, 343, 134, 133, 9, 3400, 36, 842, 3401], [3402, 112, 7, 1966, 5, 296, 876, 14, 652], [3403, 463, 56, 5, 3404, 8, 5, 468, 1967], [336, 3405, 13, 3406, 3407, 104, 605, 3408, 1968, 3409, 3410, 203, 877, 3, 3411, 1484, 3412], [18, 977, 1, 3413, 100, 469], [3414, 2, 133, 57, 656, 490, 55, 220, 55, 9, 8, 131, 26, 4, 1485, 396, 8, 18, 55, 3415, 55, 4, 651, 396], [3416, 1486, 3417, 104, 16, 364, 65, 56, 7, 98, 281, 54, 85, 40, 7, 3418], [3419, 301, 10, 15, 20, 26, 1, 19, 37, 3420, 10, 84], [42, 72, 1, 71, 44, 2, 39, 2, 56, 3421, 3422, 46, 55, 417, 298, 15, 2, 1969], [18, 657, 3423, 14, 3, 765, 211, 51, 485, 303, 24, 3424, 1008, 13, 419, 99, 1970, 136, 83], [3425, 37, 1971, 65, 233, 36, 65, 19, 2, 19, 3426, 190, 3427, 55, 77, 70, 130, 11, 1487, 138, 14, 219, 1972], [3428, 10, 5, 177, 296, 3429, 63, 102, 346, 73, 19, 393, 449, 310, 837, 3430, 1215, 33, 524], [75, 165, 2, 1973, 33, 3431, 3432, 11, 3, 269, 3433], [26, 258, 14, 766, 21, 4, 767, 3434, 6, 38, 79, 133, 30, 1488, 10, 1216, 6, 3435, 60, 214, 636, 52, 117, 141, 3436], [3, 443, 955, 521, 5, 3437], [1489, 267, 3438, 95, 49, 1974, 642, 61], [459, 878, 1009, 3439], [964, 2, 50, 590, 768, 6, 32], [1897], [3440, 15, 3441, 1, 19, 37, 563, 334, 354, 21, 3, 299, 4, 164, 6, 85, 39, 14, 3, 422, 47], [3442, 147, 1, 19, 98, 1010, 3443, 519, 84, 6, 1, 326, 547, 1, 227, 24, 9, 6, 32, 9, 548, 8, 240, 2, 15, 3444], [3445, 1975, 1490, 3446, 837, 88], [3447, 106, 1217, 3448, 22, 4, 427, 20, 4, 1011, 202, 3449, 8, 75, 83], [3450, 323, 52, 37, 64, 2, 495, 1491, 57], [1976, 2, 549, 5, 1977, 450, 110, 3451, 363, 18, 37, 93, 10, 9], [336, 3452, 3453, 282, 1978, 34, 440, 397, 13, 117], [3454, 3455, 59, 3456, 3457, 3458, 3459], [44, 2, 3460, 11, 356, 525, 13, 16, 176, 3461, 6, 1, 198, 2, 169, 16, 294, 6, 526, 30, 24, 3462, 6, 1, 97, 68, 186], [3463, 486, 2, 17], [3464, 90, 2, 268, 394, 7, 62, 88, 99, 70, 69, 80, 54, 2, 527, 43, 39, 2, 3, 479, 3465, 119, 31, 285], [3466, 336, 1, 156, 67, 3, 1012, 29, 22, 1979, 14, 5, 345], [171, 3467, 46, 6, 25, 16, 181, 322], [528, 13, 16, 117, 10, 7, 38], [5, 3468, 227, 36, 4, 456, 26], [1, 112, 22, 122, 28, 32, 62, 88], [3469, 1, 58, 131, 3470, 1, 43, 56, 9, 1492, 185, 100, 1980, 30, 221, 119], [16, 52, 2, 41, 26, 42, 252, 15, 70, 45, 2, 155, 516, 516, 2, 1981, 51, 26, 14], [1218, 3471, 42, 564, 110, 3472, 230, 6, 529, 879, 29, 11, 3, 470, 337, 1013, 1493, 20, 208, 1982, 282, 1982], [191, 3473, 554, 198, 30, 38, 103, 86, 29, 44, 2, 23, 87, 1219], [3474, 1014, 1983, 52, 41, 7, 166, 41, 10, 17, 65, 1, 95, 7, 97, 151], [3475, 1, 82, 7, 3476, 3477], [3478, 1, 42, 72, 17, 271, 3479, 29, 991, 2, 23, 3480, 3481, 1984, 3482, 113, 1985], [3483, 385, 18, 3484, 17, 13, 250, 3, 274, 769, 46, 16, 22, 24, 50, 10, 200, 352, 52, 4, 1986, 1015, 11, 1494], [3485, 105, 2, 256, 60, 49, 3486], [3487, 1, 42, 35, 7, 3488, 304, 89, 19, 2, 50, 14, 17], [5, 1495, 106, 770], [261, 3, 1987, 27, 14, 269, 102, 444, 1220, 20, 1869, 2, 98, 1016, 3489, 279, 1483], [8, 24, 3490, 426, 276, 3491, 880, 32, 31, 46, 193, 9, 8, 508], [3492, 3, 606, 496, 8, 754, 607, 134, 1152, 34, 98, 1988, 608, 426, 1989, 3493, 3494, 18, 3495, 213], [1, 497, 72, 44, 2, 169, 294, 27, 4, 103, 3496, 2, 3497, 451, 280, 1, 19, 2, 35, 30, 237, 11, 3, 92], [18, 197, 3, 1439, 629, 9, 8, 44, 2, 23, 841, 366, 266, 1, 96, 1496, 3498, 3, 1497, 178, 35, 4, 447, 22, 3, 1199, 3499], [3500, 52, 585], [325, 24, 61, 14, 4, 340, 88], [3, 513, 106, 18, 771, 2, 705, 552, 14, 470, 12, 15, 6, 26, 1, 43, 1889, 5, 1221, 12, 881], [1, 40, 289, 1990, 20, 882, 8, 565, 49, 420, 10, 26], [508, 36, 606, 11, 3501, 235, 3502, 836], [5, 1498, 29, 706, 1017, 20, 364, 877, 3503], [105, 5, 772, 20, 1, 19, 94, 11, 4, 246, 420, 3504, 34, 12, 3505], [1, 35, 115, 1991, 452, 54, 1, 707, 2, 1499, 1992, 279, 7, 3506, 425, 3507, 609, 331, 3508], [8, 11, 4, 3509, 1, 42, 58, 52, 3510, 2, 260], [3511, 3512, 3513, 3514, 3515, 3516, 3517], [8, 773, 1018, 2, 219], [3518, 64, 3519, 2, 1993, 55, 1500, 19, 197, 3, 1462, 2, 62], [3520, 1, 58, 76, 7, 97, 228, 5, 1944, 1994, 6, 1222, 648, 194, 530, 774, 1, 53, 1501, 10, 57, 40, 7, 6, 82, 7, 324], [33, 8, 3, 471, 12, 15, 1019], [3521, 3522, 161, 2, 3523, 1995, 6, 13, 134, 23, 34, 12, 472, 65, 25, 117], [3, 368, 6, 67, 273, 642, 48, 1502, 25, 3, 708, 3524, 134, 23, 166, 975], [3525, 37, 3526, 1, 82, 9, 16, 106, 17, 3527, 3528, 182, 547], [3529, 1167, 6, 11, 4, 103, 994, 3530, 75, 3531, 8, 3, 1020, 10, 3, 509], [68, 1223, 17, 610, 8, 123], [3532, 22, 4, 3533, 396], [3534], [3535, 65, 25, 60, 54, 5, 3536, 29, 1209, 6, 263, 1, 95, 17, 594, 282, 300], [3537, 1996, 242, 516, 516, 1, 112, 357, 46, 11, 3, 883, 25, 3538, 3539, 317, 326, 553, 7, 32, 125, 3540, 1503], [1, 71, 325, 14, 5, 1466, 1504, 145, 59, 775, 1021, 211, 14, 3541, 6, 1505, 30, 5, 100, 776], [1997, 1998, 14, 340, 1, 19, 103, 48, 589], [1506, 488, 1506, 22, 588], [5, 284, 423, 43, 3542, 19, 138, 84, 385], [1, 71, 144, 2, 39, 2, 122, 176], [3543, 3544, 110], [1, 99, 5, 1507, 384, 129, 653, 48, 14], [3545, 140, 13, 757, 14, 1972, 54, 38, 104, 110, 1, 120, 39, 2, 3546], [3547, 26, 1, 99, 1, 27, 44], [3548, 3549, 3550, 124, 205, 1022, 2, 39, 21, 5, 149, 758, 12, 54], [398, 2, 3551, 1018, 245, 15, 66, 2, 478], [240, 2, 3552], [3553, 874, 103, 271, 158, 1507, 606, 986, 298, 2, 189, 143, 13, 105, 1999, 3554, 1023, 116, 77, 73, 362, 143, 6, 26], [3555, 3556, 6, 3, 1508, 6, 1509, 3557, 243, 33, 3558, 412, 2, 3559], [57, 148, 597, 518, 10, 226, 1024, 67, 57, 56, 5, 3560, 32, 123, 3, 271, 85, 53, 57, 542, 1, 353, 3561, 57, 606, 100], [2000, 1, 304, 25, 128, 2001, 12, 3562], [3563, 233, 36, 9, 244, 1206, 11, 78, 2002, 54, 172, 137, 10, 15, 85], [3564, 95, 57, 32, 28, 17, 358, 117, 209, 209], [1510, 34, 11, 1511, 3565, 3, 1224, 8, 161], [3566, 15, 30, 3567, 1025, 137], [2003, 1225, 695, 3568, 128, 630, 530, 6, 1, 205, 19, 2, 2004, 3569, 543, 3570], [3571, 683, 15, 30, 85, 16, 7, 96, 399, 15, 4, 279, 3572], [3573, 147, 76, 8, 884, 1512, 28, 6, 103, 271, 221, 2005, 255, 9, 2006, 112, 22, 181, 3574, 60, 2006], [3575, 194, 1450, 347, 1226, 3576], [171, 117, 193, 5, 296, 53, 23, 498, 472], [18, 45, 159, 333, 3577, 17, 3578, 120, 136, 265, 15, 21, 3579], [1513, 878, 235, 145], [3580, 52, 259, 223, 11, 3581, 127, 99, 9, 27, 36, 33, 84, 10, 3, 496, 2007, 777, 3582], [1227, 13, 16, 656, 1, 254, 17, 3, 3583, 27, 14, 6, 1, 1026, 9, 86, 6, 25, 123, 104, 36, 64, 12, 5, 637, 880], [92, 232], [3584, 1, 696, 36, 9, 20, 25, 16, 117, 10, 15, 1228, 62, 3585, 510], [42, 885, 3586, 611, 8, 4, 114, 1514, 88, 173, 457, 11, 4, 1514, 12, 204, 531, 2008, 3587, 62, 611, 266, 3, 219, 447], [3588, 3589, 3590, 875, 10, 15, 38, 3591, 7, 40], [8, 1229, 14, 4, 1230, 74, 137, 37, 13, 22], [3592, 1, 517, 60, 17, 750, 1, 18, 40, 3593, 119, 203, 428, 245, 15, 1027, 111, 245, 15, 1027, 3594], [2009, 488], [13, 451, 1231, 66, 3595], [105, 3596, 20, 1, 19, 2, 39, 2, 3, 1028, 6, 35, 5, 78, 3597, 3598, 6, 3599, 53, 23, 86, 10, 7, 6, 32, 3, 835], [336, 638, 6, 109, 1471, 10, 5, 841, 204, 769, 168, 14, 828, 253], [3600, 146, 3601, 17, 1, 353, 14, 3, 886, 1, 53, 82, 3602, 38, 20, 53, 1412, 9, 1, 93, 2, 35, 30, 292, 2010], [3603, 117, 7, 29, 460, 5, 311], [3604, 1, 205, 82, 283, 141, 12, 2011, 32, 283, 3605, 541, 12, 3606], [48, 2, 1515, 12, 2012, 1516, 11, 3, 306, 8, 22, 103, 3, 429, 8, 955, 3, 3607], [3608, 282, 61, 16, 13, 325, 11, 203, 3609, 127, 26, 1, 56, 110, 111, 201, 612, 887, 38, 103, 363, 240, 14, 407, 127], [3610, 37, 86, 604, 540, 11, 3611, 749, 3, 31, 1232, 2013, 30, 3612, 123, 472, 47, 1233, 120, 35, 1029, 18, 344, 3613], [566, 631, 5, 654, 8, 7, 293, 15, 20, 13, 400, 888, 30, 7, 19, 199, 350, 53, 23, 3614, 293, 15], [5, 753, 29, 3615, 34, 12, 485, 444, 5, 889, 163, 10, 4, 2014, 1234, 235, 5, 404, 1001, 102, 1517, 3616, 6, 83, 1, 71, 1030, 5, 444], [150, 4, 1235, 12, 3617, 3618, 486], [8, 9, 1236, 2, 23, 16, 3619, 43, 122], [74, 232, 76, 7, 3620, 21, 5, 2015, 50], [3621, 3622, 244, 111, 106, 26, 105, 1396], [3623, 3624, 3625, 3626, 7, 19, 17, 1951], [372, 31, 44, 2, 3, 1518, 26], [400, 3627, 1, 42, 97, 16, 28], [3628, 263, 148, 57, 1935, 17, 1492, 3629, 389, 2, 878], [1519, 22, 11, 1237, 1429], [3630, 287, 17, 3631, 370, 23, 869, 85, 54, 10, 3632, 750, 67, 53, 278, 23, 61, 2, 265, 7, 34], [120, 415, 30, 888, 1031, 3633, 5, 3634, 8, 757, 890, 521, 6, 1, 45, 3, 3635], [3636, 3637, 93, 4, 3638, 2016], [3639, 1, 19, 26, 3640, 3641, 87, 170, 9, 53, 23, 3642], [1520, 192, 51, 4, 3643, 24, 3, 406, 38, 306, 322, 5, 3644, 14, 1032, 3645, 6, 225, 21, 22, 187, 387, 2, 564, 3646], [488, 103, 31, 22, 163, 2017, 10, 84, 418, 3647, 52, 1, 3648, 4, 78, 226, 2018], [3649, 74, 212, 13, 16, 105, 2, 256, 17, 1, 95, 439, 541, 34], [134, 82, 3, 606, 532], [5, 3650, 106, 94, 1238, 33, 125, 1521, 2, 165, 118, 84], [1, 82, 5, 3651, 82, 3, 767, 286, 82, 3, 139, 82, 3, 507, 384, 486], [3652, 25, 185, 2010, 13, 3653, 13, 1239, 552, 55, 1, 1240], [1522, 1033, 11, 2019, 3654, 20, 1, 82, 278, 205], [64, 125, 2, 39, 2, 3, 1034, 224, 752, 1468, 11, 2020, 99, 1, 27, 551, 20, 18, 145], [3655, 3656, 19, 7, 517, 51, 1035, 1523, 1, 82, 3, 392, 267, 3657], [33, 3658, 14, 5, 545, 333, 3659, 51, 2021, 8, 269, 15, 66, 2, 1524, 25, 36, 291, 196, 1241], [3660, 15, 38, 5, 1525], [3661, 2022, 1, 238, 3, 78, 613, 3662, 193, 1, 27, 24, 3, 778, 304, 5, 1526, 211, 69, 4, 3663], [61, 51, 50, 779, 4, 202, 20, 22, 171, 3664, 4, 311, 274, 22, 257], [693, 18, 646, 3665, 60, 226, 21, 891, 43, 122, 66, 2, 225, 3666], [3667, 3668, 6, 32, 281, 3669, 108, 248, 2, 3, 3670, 248, 12, 3671, 38, 103, 17, 1, 43, 311, 11, 3672], [3673, 162, 7, 9, 8, 508, 83, 76, 27, 49, 31], [270, 383, 167, 18, 3674, 1527, 3675, 6, 1242, 1874, 10, 15], [3676, 1528, 704, 87, 141, 274], [200, 88, 24, 3, 406], [3677, 1, 99, 9, 112, 9, 210, 1529, 445, 12, 116, 40, 7], [1201, 2, 72, 2023, 3678, 892, 15, 196, 517, 278, 1243, 272, 63, 709, 16, 79, 2024, 32, 3, 54], [145, 2025, 6, 1, 97, 16, 103, 10, 1032], [3679, 1, 99], [566, 1, 40, 57, 2, 1530, 16, 3680, 57, 480, 35, 5, 3681, 359, 368, 12, 116, 124, 866, 2, 57, 280, 20, 57, 196, 893, 15, 3682, 483], [2026, 3683, 2027, 22, 480, 20, 1, 567, 86, 435, 124, 1531, 9, 30, 4, 319, 355, 20, 111, 270, 22, 568, 3684, 101, 3, 563], [3685, 1, 72, 3, 3686, 64, 321, 23, 34, 12, 3687, 6, 2013], [599, 3688, 356, 3689, 2028, 205, 11, 3, 62, 352, 383, 361, 75, 109, 116], [894, 33, 2029, 6, 3690, 182, 14, 845, 8, 117, 2, 15, 1, 97, 103, 10, 3, 228, 224, 102, 404], [1, 3691, 3692, 2030, 6, 3693, 41, 22, 2031, 3694], [3695, 263, 42, 155, 17, 52, 7, 93, 8, 4, 164, 2032, 3696, 309, 47], [3697, 72, 1, 614, 4, 2033, 629, 11, 3, 703, 44, 152, 2034], [186, 417, 755, 124, 1244, 3, 1245, 1036, 107], [226, 253, 131, 26], [8, 2035, 110, 8, 9, 67, 5, 149, 93, 15, 1, 1243, 3698, 20, 67, 1, 93, 116, 73, 29, 37, 207, 2, 23, 553], [3699, 473, 430, 23, 1160, 15, 13, 60, 2, 1246, 4, 3700, 6, 180, 3, 1224, 752, 11, 38, 110, 29, 7, 16, 386, 192], [2036, 61, 51, 5, 3701, 3, 1500, 3702, 21, 1532, 20, 3703, 34, 507, 48, 2, 50, 317], [21, 2037, 336, 25, 38, 220, 34, 2, 122], [15, 755, 15, 19, 1533], [3704, 1534, 179, 23, 247, 3705, 2, 15], [481, 118, 1, 569, 122], [3706, 15, 38, 33, 8, 38, 117], [984, 1926, 2038, 12, 2039, 1037, 2040, 2041, 2038, 12, 2039, 1037, 2040, 2041, 984, 3707, 3708], [325, 11, 4, 50, 611, 225, 6, 16, 144, 2, 305, 33, 444], [3709, 107, 1, 256, 289, 124, 94, 3710, 16, 79, 6, 3711, 368, 1219, 6, 104, 22, 4, 2042, 1, 66, 2, 780], [1, 72, 13, 1239, 774], [3712, 76, 136], [29, 73, 68, 5, 3713, 257, 440], [3714, 367, 2043, 1, 234, 109, 384, 3715, 43, 520, 3716, 781, 67, 39, 2, 49, 776, 33, 92, 63, 9, 1535], [171, 2044, 308, 871, 2045, 6, 25, 75, 317, 90, 4, 308, 125, 12, 50, 758, 6, 13, 186], [298, 2, 394, 143, 298, 143, 3717], [13, 895, 60, 5, 557, 258, 3718, 6, 258, 94, 1536, 3719, 10, 4, 550, 12, 3720, 26, 258, 1149, 1537, 166, 280, 258, 333], [3721, 3722, 1, 69, 64, 12, 283, 3723, 3724, 3725, 38, 22, 114], [3726, 1, 58, 131, 1, 2046, 163, 322], [3727, 710, 117, 119, 2047], [3728, 38, 103, 86, 282, 4, 3729, 3730, 11, 873, 1538, 3731, 3732], [1539, 549, 1540, 32, 31, 10, 9, 2, 769], [3733, 334, 1, 19, 4, 2042, 12, 250, 17, 711], [61, 185, 4, 90, 88, 20, 1, 197, 5, 2048, 1038, 712, 3, 121, 1, 461, 200, 2049, 3734, 27, 11, 3, 541, 2050], [67, 1, 261, 1, 395, 5, 1010, 1, 373, 216, 361, 2, 713, 30], [229, 10, 3, 2051, 12, 708, 450], [3735, 57, 3736, 48, 126], [243, 14, 3737, 2052, 3738, 3739, 1541, 2053, 1541, 3740], [18, 1542, 3741, 5, 2054, 3742, 6, 3, 2055, 1247, 1247, 115, 3743], [112, 1, 82, 3, 381, 782, 1, 72, 1, 112, 1248], [16, 176], [3744, 110, 607, 7, 2056, 15], [3745, 3746, 210, 2057, 30], [3747, 25, 22, 588], [18, 254, 216, 1, 353, 1211, 2, 56, 896, 3, 589, 26, 1, 430, 314, 14, 4, 108, 474, 10, 3748], [3749, 1, 99, 1, 19, 37, 3750, 119, 3751, 714, 3752], [989, 21, 3753, 349], [3754, 570, 1, 1173, 328, 4, 235, 390, 105], [417, 6, 1, 29, 109, 3755, 34, 12, 158, 2058, 431], [8, 48, 51, 3756, 6, 408, 60, 61, 3757, 3758, 8, 3759, 3760, 210, 36, 374], [3761, 323, 3762, 3763, 29, 196, 55, 114, 119], [3764, 2059, 128, 335, 80, 141], [240, 24, 32, 13, 115, 225], [163, 10, 554, 3765, 1203, 11, 3766, 8, 269, 15, 97, 3767], [3768, 21, 3769, 3770, 3771, 1038], [3772, 105, 1, 120, 56], [3773, 229, 10, 3, 3774, 559], [3775, 1, 97, 49, 689, 34, 589, 1249, 334, 14, 4, 3776, 2060], [27, 163, 409, 2, 3, 3777, 219, 3778, 311, 127, 20, 475, 39, 519, 2, 1224], [772, 9, 67, 49, 83, 20, 892, 3, 171, 1, 19, 67, 49, 22], [3779, 1543, 658, 14, 54, 8, 4, 429, 10, 116, 37, 2061], [3780, 95, 1544, 35, 3, 2062, 3781, 12, 49, 1250, 48], [1, 66, 2, 1545, 14, 5, 1546, 6, 3782, 3783, 3784, 38, 1547], [3785, 13, 105, 87, 256, 17, 1, 71, 3786, 280, 193, 1, 58, 17, 5, 3787, 2063, 98, 3788, 655, 15, 87, 23, 4, 90, 404], [3789, 331, 3790, 3, 184, 3791, 69, 2064], [3792, 63, 3793, 1039, 30, 84, 105, 178, 430, 122, 237, 2, 50, 237], [134, 180, 1251, 715, 603, 5, 1251, 465, 302, 302, 1, 99, 1, 27, 451, 1252, 2065, 131, 26], [2066, 2067, 74, 38, 897, 165, 2, 3794, 371, 2, 35, 34, 12, 169, 6, 11, 3, 783, 3795, 386, 32, 3796, 19, 94, 3797], [3798, 18, 17, 13, 498, 10, 3799, 14, 1040, 92, 16, 37, 447, 10, 15, 3800, 3801, 3802, 3803, 3804], [3805, 37, 1041, 4, 3806, 135, 6, 3807, 375, 69, 90, 416, 18, 99, 73, 129, 659, 152], [54, 2, 39, 2, 50], [3808, 124, 94, 165, 2, 784, 17, 898, 376, 3, 1042, 12, 54, 3809, 13, 18, 38, 1548], [2068, 3810, 996, 15, 173, 1043], [64, 80, 31, 332, 785, 297, 1, 489, 189, 5, 1186, 26, 163, 36, 89, 19, 2, 3811], [362, 2, 39, 2, 499, 3812], [3813, 2, 50, 3814, 163, 409, 2, 615, 11, 3, 232], [1253, 135, 27, 11, 3815, 38, 2069, 3816, 3817, 65, 3818, 3819, 13, 3820, 10, 127, 3821], [1, 42, 97, 28, 1044, 1, 148, 189, 4, 692, 20, 19, 38, 79, 2, 41], [47, 1, 27, 16, 786, 30, 11, 3822, 17, 1, 400, 616, 2, 35, 91, 3, 1549], [3823, 22, 86, 208], [25, 16, 220, 17, 1, 43, 122, 22, 108, 6, 26, 13, 1254, 110, 4, 2070, 8, 1045, 292, 24, 3824, 24, 88, 43, 122, 418], [1401, 557, 2071, 8, 4, 115, 392, 429, 11, 33, 3825], [191, 1, 334, 843, 244, 22, 89, 236, 34, 11, 204, 531, 366, 17, 272, 27, 246], [1, 353, 294, 33, 92, 20, 5, 284, 423], [571, 48, 2, 3, 3826, 226, 46, 191, 10, 15], [3827, 13, 480, 3828, 3, 1255, 3829, 67, 364, 36, 33, 710, 74, 2072], [5, 78, 3830, 3831, 8, 969, 1, 72, 1, 156, 9], [8, 895, 3832, 8, 152, 1046], [106, 4, 770, 1495], [3833, 37, 3834, 10, 15, 37, 3835, 10, 17, 959, 18, 884, 1512, 960, 2073, 3836], [3837, 74, 6, 81, 10, 3, 533, 1, 69, 4, 1047, 17, 3838, 129, 655, 38], [13, 44, 14, 4, 1550, 31, 458, 17, 1, 42, 166, 66, 2, 39, 14, 516, 384, 267, 56, 7, 11, 1550, 141], [3839, 74, 7, 331, 211, 2074, 8, 103, 686, 3, 128, 121, 787, 962, 8, 21, 80, 3840], [3841, 3842, 181, 186], [3843, 74, 140, 1, 254, 827, 359, 60, 17, 13, 105, 716], [3844, 42, 72, 1, 326, 1940, 9, 1, 166, 69, 3845, 3846, 1551, 32, 3847, 30, 2, 41, 9, 20, 3848, 3849, 15, 51, 3850, 11], [74, 349, 139, 51, 5, 222, 138, 234, 165, 2, 788, 15, 14, 652, 411, 8, 441, 20, 1, 43, 614, 214, 183, 12, 116, 29, 3851], [1482, 48, 102, 62, 3852, 478, 6, 97, 68, 103, 77, 111, 1552], [3853, 360, 7, 375, 279, 103, 3854, 3855, 1, 362, 2, 1256, 67, 1, 254, 3, 3856, 602, 1, 40, 2075, 110, 41, 7, 471, 16, 225], [74, 385, 7, 103, 241, 385, 7, 32, 1, 96, 155, 8, 3, 709, 2, 3857, 151, 136, 1553], [3858, 124, 94, 3859, 152, 1257, 6, 1554, 452, 319, 75, 37, 533, 14, 5, 789], [69, 4, 654, 60, 4, 615, 11, 507, 286, 3860, 17, 790, 1016, 1555, 6, 791, 3861, 130, 790, 34, 12, 3862], [3863, 1048, 3864, 13, 60, 2, 41, 5, 1049], [77, 3, 601, 29, 44, 269, 3, 3865, 129, 23, 2076, 3866, 20, 85, 118, 3867, 201, 23, 44], [3, 3868, 8, 3869], [1, 616, 1, 19, 98, 192, 1556, 1949, 84, 5, 31, 91, 106, 94, 1432], [3870, 7, 120, 293, 48, 65, 243, 3871, 2077, 234, 617, 179], [3872, 1, 82, 3873], [3874, 74, 17, 253, 89, 295, 6, 35, 3875, 12, 59, 371, 85], [263, 2078, 49, 706, 15, 2079, 346, 53, 2080, 9, 106, 2], [48, 51, 138, 445, 1255, 146, 6, 216, 103, 53, 455, 1, 824, 3876, 9], [3877, 18, 45, 61, 51, 3, 2081, 3878, 540, 218, 2082], [3879, 1258, 20, 163, 10, 4, 121, 2, 3880, 3881, 2, 435, 12, 1259, 11, 3882], [3883, 302, 302, 302, 3884, 26, 1, 97, 36, 145, 660, 2083], [3885, 561, 1, 42, 58, 76, 1, 97, 60, 17], [37, 3886, 127, 492, 3887, 11, 3888, 1155, 531, 113, 560], [3889, 3890, 10, 479, 43, 659, 152, 10, 4, 202, 208, 3891, 24, 1037, 285], [43, 122, 20, 66, 3892, 3893], [3894, 1557, 2, 5, 1050, 1051, 245, 3895, 21, 1039, 14, 116, 292, 83, 6, 891, 1260, 31, 8, 14, 5, 701], [572, 2084, 1, 2085, 15, 4, 2086, 3896], [3897, 1, 1261, 66, 2, 3898, 52, 7, 254, 3899, 234, 14, 460, 49, 3900, 519, 2, 1845, 12, 2087, 24, 5, 3901, 230], [3902, 1558, 743], [212, 1, 400, 653, 5, 3903, 91], [279, 72, 5, 3904, 8, 770], [363, 44, 2, 23, 4, 3905, 2088, 6, 13, 61, 558], [528, 147, 1252, 67, 7, 155, 3, 62, 717, 12, 640, 194, 53, 9, 23, 3, 62, 64, 218], [2089, 1, 19, 37, 149, 13, 16, 3906, 225, 63, 699, 3907, 3908], [3909, 356, 1181, 46, 2, 3910, 3911, 6, 48, 6, 9, 27, 246, 140, 13, 3912, 34, 12, 3913], [242, 3914, 1, 58, 9, 282, 318, 3915, 1052, 312, 5, 3916, 3917, 135, 459, 36, 4, 3918, 47], [1, 179, 482, 102, 98, 3919, 1559, 1, 362, 33, 249, 2, 23, 1053, 20, 1, 843, 2, 2090, 9], [3920, 37, 3921, 759, 3922, 233, 68, 899, 119, 2091, 272, 233, 239, 1, 40, 3923, 10, 345, 90, 1054], [3924, 103, 1, 167, 39, 2, 122, 20, 5, 284, 459, 36, 25, 14, 4, 2092, 39, 1155, 165, 22, 2, 1524], [3925, 1014, 1, 42, 72, 3926, 3927, 106, 17, 1422, 418, 17, 113, 5, 3928, 270, 22, 1529, 9], [792, 3929, 636, 52, 13, 250, 452, 1451, 12, 5, 226, 467, 3930, 2, 661, 15], [900, 1, 401, 11, 1, 66, 4, 1560, 1, 320, 43, 166, 1561, 2, 851, 4, 1560, 110, 29, 73, 16, 1017], [171, 115, 558, 127], [2093, 370, 23, 3, 2094, 593, 490, 25, 16, 3931, 67, 174, 1562], [3932, 1563, 13, 1254, 76, 7, 236, 54, 2, 1055, 32, 327, 195, 20, 19, 37, 54, 2, 718, 2, 174, 172, 54, 3933, 117], [3934, 3935, 3936, 3937, 29, 632, 571, 2, 1056, 2095, 1564, 126], [5, 1186, 201, 313, 5, 3, 3938, 1565], [510, 331, 164, 228, 14, 3939, 45, 2064], [18, 314, 1262, 3940, 14, 1499, 1566, 3941, 64, 235, 3942, 9, 561, 72, 1, 3943, 9, 67, 1232, 9, 14], [3944, 1, 254, 14, 217, 12, 174, 397, 174, 3945, 9, 8, 16, 1567, 13, 4, 308, 204, 416, 1057], [94, 24, 50, 10, 2096, 662, 26, 6, 9, 506, 36, 25, 94, 170, 792], [8, 3946, 21, 50], [1, 167, 56, 5, 637, 3947, 846, 793, 160], [3948, 1, 41, 20, 7, 29, 3949, 3950, 15, 544], [589, 103, 3951, 103, 3952, 103, 32, 630, 15, 131, 26], [269, 1058, 3953, 21, 3954, 901, 719, 10, 448, 22, 163, 409, 2, 33, 64], [1, 66, 2, 136, 30, 51, 3, 1263, 215, 4, 1059, 12, 1264], [27, 18, 14, 3, 190, 21, 2097, 10, 123, 87, 170, 1568, 26, 1, 68, 82, 143], [3955, 37, 1, 353, 4, 3956, 142, 12, 94, 119, 1, 1022, 3, 1060, 32, 101, 371], [3957, 3958, 3959, 3960, 11, 3961, 59, 1475], [1442, 1061, 1062, 9, 1, 35, 3, 308, 902, 2, 371, 20, 616, 5, 618, 2098, 24, 61, 118], [1063, 12, 286, 3962, 127, 22, 257, 52, 903, 9, 91], [100, 268, 771, 2, 275, 15, 48, 11, 59, 141, 9, 18, 210, 36, 15], [242, 13, 663, 2, 35, 3963, 20, 1, 43, 208], [619, 120, 405, 50, 9, 227, 14, 3, 776, 10, 339, 3964, 1569, 3965], [3, 223, 210, 227, 3966, 2, 4, 3967, 6, 3968, 311, 11, 3, 883, 794, 1064], [298, 2, 784, 76, 2, 650, 4, 864], [3969, 47, 65, 25, 276, 131, 132, 6, 2099, 1570, 35, 65, 3970, 10, 3, 161, 125, 490, 5, 153, 8, 400, 123], [172, 31, 11, 720, 3971, 78, 3972, 223, 163, 409, 2, 3, 153, 318, 179, 506, 2, 23, 3, 1265, 31, 12, 3, 125, 3973], [8, 2100, 21, 4, 1065, 1571, 131, 26, 1572], [3974, 3975, 1, 95, 3976, 29, 1, 148, 260, 3, 1573, 136, 721, 67, 7, 35, 61, 1, 82, 7], [279, 1, 19, 3977, 1481, 22, 294, 88, 10, 15, 3978, 351], [1, 18, 254, 4, 3979, 3980, 17, 434, 15, 3981, 16, 66, 4, 184, 3982, 343, 131, 1, 41], [2101, 8, 552, 6, 13, 307, 3983, 1488, 2102, 3, 3984, 16, 79, 86, 8, 179, 216], [2103, 4, 3985, 285, 10, 3, 157, 684, 366, 20, 1, 43, 41, 9, 1, 664, 156, 2021], [3986, 115, 117, 53, 22, 23, 3, 316, 467, 7, 173, 136, 48, 64, 31, 377], [3987, 1, 71, 6, 26, 32, 12, 49, 350, 58, 1, 71, 792], [16, 117, 17, 1, 71, 521, 6, 439, 8, 44, 14, 1441, 364, 1, 71, 2104, 4, 3988, 110, 43, 1, 364, 378], [1533, 29, 22, 251], [3989, 73, 75, 29, 2105], [628, 212, 1, 2106, 3990, 5, 2107, 14, 3, 1574, 1575, 3991, 2108, 3992, 22, 705, 91], [62, 31, 46], [3993, 1014, 7, 19, 4, 182, 11, 873, 161, 30, 13, 656, 13, 134, 82, 7, 118, 64, 31, 119, 500, 49, 567, 83], [3994, 2109, 69, 3995, 117, 3996], [424, 98, 509, 692, 21, 5, 164, 559, 904, 31, 11, 4, 902, 3997, 68, 412, 9, 55, 111, 8, 4, 202, 186, 6, 65, 1, 93, 9, 38], [75, 11, 169, 6, 42, 66, 2, 41, 512, 361, 3998, 8, 3999, 38, 2110], [289, 2111, 16, 1409, 434, 102, 1, 27, 145, 845, 135, 297, 76, 57, 134, 180, 4000, 2112, 6, 2113, 6, 22, 432, 9], [4001, 1, 481, 747, 4, 308, 219, 1066, 638, 10, 170, 452, 88, 9, 253], [8, 4002, 184, 54, 6, 4003, 167, 620, 33, 62, 793], [171, 975, 85, 221, 22, 44, 2, 50, 44, 48, 2, 122], [4004, 54, 81, 4005, 10, 3, 876], [4006, 453, 2, 5, 267], [1, 18, 69, 4, 654, 17, 1, 27, 2114, 59, 621, 420, 6, 1425, 30, 4, 4007, 6, 2115, 2, 23, 4, 4008, 5, 2116, 149, 197, 15], [18, 1927, 3, 4009, 2117, 658], [192, 2, 4010, 138, 27, 242, 46, 774, 51, 511, 1576, 892, 511], [1, 362, 2, 1266, 17, 2118, 74, 65], [232, 232, 39, 192, 136, 118, 200, 31], [859, 505, 14, 4011, 33, 92, 24, 629, 6, 1443, 2, 1267, 427, 1, 93, 4, 691, 4012, 14, 4013, 10, 5, 4014], [2119, 4015, 48, 4016, 3, 2070, 601, 53, 82, 7], [4017, 22, 26, 7, 4018, 1, 373, 3, 368, 4019, 47, 513, 218, 14, 83, 6, 26, 1, 43, 236, 9], [4020, 336, 70, 32, 69, 17, 62, 125, 665, 192, 897, 4021, 112, 7, 1268, 3, 4022, 11, 3, 2120, 55, 111, 197], [109, 1031, 1540, 34, 1, 156, 2121], [4023, 1535, 5, 836, 1054, 14, 633, 459, 36, 168, 14, 4, 1269, 118], [13, 1223, 17, 89, 23, 460, 3, 4024, 4025, 84, 88], [4026, 1213, 4, 2122, 4027, 4, 172, 121, 2, 39], [4028, 37, 13, 144, 2, 1881, 91, 3, 4029, 284, 160, 118, 173, 265, 15, 41, 33, 101, 1225, 15, 6, 37, 13, 22, 2123, 795, 174, 1167, 4030], [4031, 67, 1, 18, 395, 5, 1403, 12, 4032, 4033, 20, 13, 75, 699], [59, 141, 961, 136, 11, 4, 196, 1577, 523, 1270, 216, 28, 710, 2124, 16, 64, 370, 22, 4034], [4035, 1, 58, 1, 487, 48, 2, 5, 889, 46, 834, 896, 1, 82, 4036, 1271, 1, 616, 3, 211, 3, 160, 54], [27, 4037, 30, 2, 5, 230, 67, 1, 831, 1, 27, 75, 11, 3, 4038, 32, 4039, 152, 4040], [4041, 74, 599, 49, 153, 22, 55, 990, 4042], [169, 666, 30, 237, 10, 158, 4043, 61, 48, 2, 2125, 1, 82, 57, 205, 4044, 157, 249, 43, 136, 507, 341, 107], [1976, 5, 1465, 2, 4045], [4046, 4047, 14, 1272], [1067, 360, 24, 382, 1, 1273, 13, 165, 2, 4048, 5, 4049, 2126, 55, 7, 96, 252, 22, 44, 38, 65, 20, 17, 4050, 572], [5, 557, 8, 68, 186], [4051, 36, 217, 1032, 87, 2127, 2128, 67, 1068, 98, 1054, 1578, 4052, 2, 15, 244, 7, 19, 1274, 4053, 6, 56, 195, 11, 4054], [4055, 95, 7, 97, 151, 77, 7, 93, 512, 18, 661, 789, 2129, 68, 744, 97, 151, 641, 324], [160, 31, 12, 50, 11, 4056, 6, 1, 19, 37, 2130, 2, 512], [4057, 290, 1579, 15, 7, 19, 562, 1, 43, 39, 14, 318, 88], [1014, 9, 238, 1494, 278, 205, 600, 3, 4058], [521, 190, 20, 69, 4059, 88, 62, 88, 97, 3, 2129, 26, 280], [889, 565, 4060, 12, 3, 422], [4061, 31, 24, 50, 64, 12, 630], [4, 427, 12, 1061, 1535, 1523, 693, 187, 16, 386, 4062, 1580, 4063, 4064, 11, 283, 62, 525, 370, 23, 3, 635, 211], [4065, 13, 44, 449, 2131, 4066, 55, 65, 82, 9, 4, 427], [4067, 135, 8, 32, 4068, 30], [5, 573, 249, 222, 2132, 2133, 1542, 412, 4, 219, 285, 183, 2134, 22, 199, 1275, 4069], [145, 1581, 1157, 4070, 205, 34], [4071, 628, 834, 207, 41, 7, 50], [287, 33, 223, 8, 706, 15, 254, 14, 3, 271, 33, 92, 4072, 141, 232, 356, 141, 247, 52, 4, 219], [4073, 4074], [4075, 1, 362, 2, 39, 2, 3, 4076, 431, 14, 5, 248, 75, 1919, 94, 2, 4, 431], [4077, 2135, 448, 186, 196, 504, 17, 315, 21, 7], [383, 30, 10, 4, 718, 16, 225, 1276, 4078], [4079, 323, 646, 4080, 4081, 1277, 2136, 1278, 667, 1582, 248, 901, 901, 1, 1047, 9, 129, 23, 68, 114, 901], [4082, 263, 1, 1947, 40, 300, 1031, 1, 461, 4083, 4084, 570, 27, 3, 64, 1570, 868, 4085, 1, 238, 62, 125, 717, 119], [13, 44, 2, 82, 3, 160, 78, 4086, 12, 969, 2137, 193, 12, 1583, 1484], [286, 8, 171], [13, 89, 20, 1208, 194, 1033], [892, 3, 905, 5, 391, 8, 460, 1, 19, 37, 474], [8, 2138, 4087, 829, 68, 32, 2139], [4088, 1, 69, 4, 246, 220, 31, 95, 1428, 27, 151, 262, 357], [635, 1584, 611, 218, 1279], [8, 4, 202, 176, 1, 1069, 3, 232, 4089], [165, 2, 598, 309, 376, 1051, 53, 704, 15, 4, 1070], [4090, 2140, 4091, 2140, 37, 4092, 906, 20, 4093, 73, 19, 4, 633, 906], [4094, 5, 293, 8, 37], [398, 2, 4095, 10, 5, 4096, 1280, 488], [1557, 2, 1439, 1, 4097, 10, 4, 4098, 345, 4099, 14, 2141, 4100, 4101, 4102], [1957, 985, 1585, 2142, 4103, 1586], [4104, 76, 112, 7, 35, 16, 199, 350, 1, 66, 16, 199, 320], [748, 3, 1921, 1942, 12, 4105, 4106, 5, 4107, 4108, 6, 398, 309, 408, 60, 2, 4109], [315, 30, 21, 32, 3, 1281, 51, 1587, 3, 141, 12, 4110, 870, 143, 29, 4111, 4112, 85, 37, 1281], [13, 83, 24, 61, 225, 55, 437], [1, 234, 109, 1588, 6, 1588, 101, 3, 907, 622], [5, 513, 18, 45, 4, 342, 653, 6, 26, 233, 36, 4, 1937], [5, 284, 423, 6, 1, 97, 68, 4113], [4114, 107, 4115, 349, 636, 52, 361, 331, 331, 4116], [4117, 10, 3, 886, 2, 189, 213, 48, 215, 3, 522, 6, 493, 158, 1230, 61, 117, 25, 54, 2, 205, 305], [4118, 146, 745, 41, 16, 1, 97, 1589, 26, 89, 196, 35, 2, 4119, 24, 404, 4120, 574, 15, 67, 7, 96, 1, 40, 7, 2029], [4121, 52, 54, 8, 9, 6, 207, 1, 2143, 9, 55, 1, 526, 30, 24, 1169, 33, 92], [4122, 2144, 1999, 82, 2145, 21, 7, 4123, 20, 7, 430, 41, 52, 7, 430, 41], [4124, 546, 1, 43, 464, 193, 13, 1282], [4125, 17, 27, 4126, 257], [59, 2146, 4127, 5, 4128, 4129, 4130, 4131, 62, 88, 27, 5, 1590], [22, 150, 4, 1283, 31, 24, 32], [4132, 1, 36, 9, 6, 32, 4133, 49, 22, 44, 2, 19, 9, 24, 3, 796, 2147, 908, 411, 423, 5, 4134], [4135, 71, 1, 5, 465, 4136, 5, 4, 4137, 909, 5, 4138, 378, 78, 1444, 522], [4139, 1591, 11, 796, 263, 17, 245, 15, 471, 4140, 222], [1, 71, 44, 2, 35, 283, 4141, 4142, 73, 19, 1241, 32, 5, 4143, 11, 4, 550, 12, 170, 2148], [4144, 69, 4, 90, 54, 38, 910, 119, 2149, 2, 4145, 6, 50, 127], [2150, 1592, 46], [4146, 4147, 1, 69, 2, 227, 24, 33, 10, 4148, 2, 56, 116, 16, 117], [1593, 17, 278, 106, 4149, 4, 668, 4150, 4151, 14, 5, 2151, 4152, 363, 4, 1274, 11, 5, 2152], [4153, 20, 85, 73, 702, 4154, 10, 15, 119, 29, 73, 1, 167, 39, 2, 3, 4155], [229, 2, 236, 34, 8, 37, 114, 20, 1, 142, 23, 109, 5, 342, 653, 16, 126], [110, 270, 5, 1473, 4156, 16, 79], [1, 534, 36, 4, 2153, 12, 364, 81], [4157, 4158, 29, 4159, 17, 7, 6, 2154, 29, 1019, 30, 8, 17, 300, 7, 335, 29, 797, 535], [1586, 121, 38, 237, 2, 23, 30, 130, 582, 2, 464, 10, 402, 170, 46, 70, 19, 59, 4160, 2, 133, 30, 4161], [8, 117, 575, 1594, 1284, 63, 4162, 2155, 273, 9, 534, 635, 67, 1004, 2156, 273, 38, 4163, 1594, 4164], [4165, 74, 456, 41, 1, 82, 150, 102, 292], [1, 69, 4, 654, 60, 4166, 62, 88, 9, 534, 392, 70, 130, 535, 6, 111, 27, 4, 115, 28, 911, 2, 15, 1, 526, 30, 6, 37, 4167, 47], [1, 4168, 5, 556, 983, 11, 3, 443], [4169, 278, 505, 174, 443, 22, 174, 78, 4170], [4171, 89, 4172, 1421, 7, 223, 11, 3, 1480, 10, 49, 251, 855, 223, 5, 2157, 29, 4173], [4174, 70, 45, 98, 1285, 51, 4175, 20, 19, 2, 1966, 158, 4176], [61, 1286, 3, 31, 21, 5, 4177, 2158, 266, 73, 305], [4178, 4, 541, 10, 15, 76, 507, 8, 49, 598, 1595, 414, 323], [1287, 4179, 182, 11, 2159, 849, 64, 115, 4180, 4181, 1, 45, 32, 188], [4182, 511, 106, 94, 1437, 4183, 70, 2085, 98, 450, 84], [4184, 798, 1, 616, 2, 99, 57, 4, 108, 4185, 221, 69, 4, 372, 172, 31], [443, 1288], [4186, 74, 5, 78, 139, 14, 3, 4187, 1596, 568, 2, 23, 4188, 2160, 2161, 722, 548, 4, 427, 4189, 583], [193, 25, 386, 1017, 6, 128, 4, 524, 266, 13, 498, 2, 1445, 1, 68, 43, 851, 9], [4190, 17, 308, 288, 27, 4191, 1, 167, 56, 9, 118, 1, 82, 7, 38, 2162], [185, 4, 531, 524, 4192, 13, 48, 2, 4193, 4194, 4195, 649, 269, 15, 354, 1556, 21, 102, 149], [1, 616, 2, 723, 91, 5, 4196], [43, 236, 149, 6, 43, 314, 4, 391, 14, 51, 5, 1, 1063, 22, 4, 28, 160, 4197, 51, 100], [2163, 59, 4198, 651, 11, 3, 92, 85, 240, 376, 1, 42, 19, 4, 1597], [4199, 4200, 201, 50, 10, 15, 501, 126], [1, 156, 9, 26, 17, 1289, 506, 2, 40, 9, 4201], [8, 4202, 60, 4203, 6, 43, 68, 23, 4204, 4205, 27, 239, 1538], [4206, 28, 241, 21, 3, 2157, 1, 1273, 357, 648, 1, 912, 30], [5, 284, 9, 2164, 2165, 4207, 3, 4208, 4209, 41, 2, 23, 799, 2166], [4210, 22, 1492, 41, 7, 58, 76, 1233, 2167, 4211], [4212, 1, 95, 4213, 45, 49, 2168, 14, 1071, 15, 6, 4214, 45, 115, 1290, 24, 3, 515, 221, 209], [243, 16, 5, 1072, 8, 34, 12, 4215], [4216, 4217, 144, 10, 50, 1184, 4218, 47], [4219, 4220, 6, 1, 198, 2, 56, 1598, 6, 70, 198, 2, 515, 14, 3, 4221, 16, 79, 114, 4222, 48, 119, 1291], [5, 4223, 410, 15, 4, 212], [269, 301, 10, 371, 6, 5, 4224], [1154, 166, 1244, 34, 12, 3, 1267, 427, 208, 6, 205, 1001, 203, 465], [4225, 1, 35, 1281, 91, 1594, 6, 2169, 4226, 20, 22, 4227, 32, 5, 4228, 1558, 29, 51, 2170], [1, 236, 9, 68, 246, 2, 23, 329, 37, 13, 22, 4, 132, 576, 1, 18, 68, 42, 58, 76, 2, 23, 329], [4229, 1073, 6, 1, 66, 2, 23, 11, 213, 113, 166, 973, 69, 3, 1494, 550, 416, 390, 6, 120, 260, 9, 425, 15], [255, 98, 175, 4230, 301, 127, 38, 103, 5, 153, 8, 400, 123], [263, 22, 171, 28, 669, 4231, 4232], [279, 9, 1, 238, 754, 2171, 62, 294, 88, 182, 4233], [4234, 312, 15, 173, 1, 128, 19, 531], [103, 342, 31], [4235, 510, 4236, 95, 291, 242, 481, 5, 2172, 557, 45, 4237, 101, 200, 557, 6, 17, 4238, 25, 1074, 4, 319, 530, 274], [14, 5, 121, 48, 87, 4239, 4240, 204, 5, 502, 1413, 110, 327, 195, 19, 87, 455, 750, 4241, 173, 1266, 87, 1501, 204, 213, 1292], [475, 39, 21, 2173], [50, 426, 356], [285, 4242, 4243, 220, 1203, 744, 13, 196, 44, 2, 236, 4, 285], [4244, 15, 6, 5, 296, 123, 83, 29, 989, 70, 43, 133, 9], [73, 743, 3, 1293, 32, 81, 2, 17, 1245, 1036, 112, 1, 218, 800, 70, 19, 2, 1151, 98, 352, 1294, 24, 3, 450, 1515, 4245], [1, 19, 240, 2, 41, 46], [171, 4, 202, 80, 4246, 20, 75, 22, 1295, 208], [4247, 289, 25, 109, 724, 20, 75, 22, 4, 159, 1440], [1, 42, 72, 2174, 298, 15, 4248, 1599, 127], [181, 79, 4249, 2, 236, 4250, 11, 1534, 4251, 4252, 22, 166, 24, 308, 1600], [4253, 82, 7, 38], [45, 2175, 24, 490, 985, 253], [4254, 1, 4255, 5, 1474, 24, 4256, 25, 32, 4257], [4258, 1, 66, 1208, 194], [25, 5, 248, 6, 1, 75, 43, 615, 185, 5, 4259, 13, 11, 4, 202, 12, 589, 157, 248, 53, 19, 2, 23, 239], [4260, 1601, 2076, 670, 46], [45, 5, 2176, 11, 3, 836, 221, 25, 22, 445, 55, 181, 113, 760, 55, 1, 69, 4261], [200, 4262, 118, 46], [8, 176, 12, 219, 205], [398, 2, 4263, 623, 37, 64, 4264, 14, 2177, 118, 99, 86, 148, 23, 4, 1075, 906], [8, 4265, 14, 3, 1076, 4266, 51, 33, 4267, 488], [42, 167, 39, 34, 686, 1, 43, 100, 60, 9, 425, 190, 2178, 20, 1, 93, 2, 35, 1602, 12, 33, 4268], [185, 356, 416, 12, 4269, 124, 268, 4270, 1274, 212, 87, 10, 4271, 1, 66, 725, 12, 2179], [28, 92, 100, 1, 72, 13, 89, 22, 28, 66, 2, 39, 61, 11, 5, 169, 4272], [4273, 610, 19, 2180, 12, 114, 10, 3, 375, 12, 213, 4274, 376, 1, 43, 39, 33, 249], [4275, 4276, 691, 1226], [4277, 1, 42, 66, 7, 2, 39, 2, 4278], [4279, 1, 304, 17, 726, 7, 120, 2181, 313, 418, 12, 5, 2182, 1024], [9, 8, 1296, 4280, 4281, 6, 511, 209], [1, 99, 3, 1603, 908, 129, 35, 83, 205], [1604, 273, 32, 2183], [4282, 37, 270, 49, 100, 156, 5, 100, 113, 216], [4283], [171, 4284, 895, 1, 72, 1, 339, 19, 297, 216, 103, 4285], [4286, 1297, 4287, 8, 229, 315, 44, 14, 8, 9, 849], [5, 4288, 604, 8, 1077, 10, 3, 78, 4289], [4290, 105, 2, 256, 60, 49, 296], [4291, 510, 49, 4292, 913, 82, 4293], [3, 458, 27, 68, 90, 20, 1, 43, 4294, 4295, 83], [4296, 510, 17, 8, 117], [4297, 13, 30, 87, 18, 45, 91, 50, 24, 4298, 6, 26, 13, 61, 1066, 11, 169, 6, 43, 122], [4299, 24, 4300, 108], [4301, 499, 2184, 727, 16, 4302, 10, 3, 4303, 73, 321, 801, 914, 4304, 10, 1037, 416, 11, 4, 902, 226, 8, 16, 2185, 544], [4305, 437, 37, 1, 607, 885, 60, 5, 1298, 4306, 2186, 63, 7, 151, 478, 575, 1, 607, 166, 35, 37, 1078, 1605, 4307], [2187, 17, 5, 1034, 224, 752, 4308, 1079, 696, 4309, 4310, 8, 1606, 1607, 2188, 4311, 105, 475, 23, 86], [22, 108, 17, 7, 569, 533, 49, 4312, 21, 3, 78, 2189, 494, 728, 1585, 1153], [4313, 59, 4314, 11, 3, 635, 121, 110, 41, 1, 179, 137, 426, 1, 35, 2, 50, 2, 4315, 195], [110, 41, 1, 19, 2, 687, 30, 16, 237, 4316, 4317, 14, 5, 62, 31, 91, 834], [4318, 463, 243, 47, 9, 210, 231, 332, 4319, 20, 686, 4320, 8, 16, 4321, 1, 19, 2, 35, 30, 1294, 327, 141], [8, 171, 4322, 186, 131, 26], [9, 27, 4, 915, 6, 1608, 88, 10, 1609, 127, 667, 1552, 11, 3, 4323, 4324, 6, 2019, 273, 217, 2190, 2, 2191], [93, 2, 236, 200, 4325, 207, 280, 1, 156, 285, 4326, 25, 4, 4327, 2192], [75, 2193, 51, 4, 306, 13, 68, 663, 2, 35, 176, 12, 3, 4328, 6, 4329], [1227, 13, 105], [1, 82, 5, 4330], [8, 117, 5, 2194, 4331, 4332, 8, 44, 2, 169, 792], [43, 122, 75, 4333, 34, 60, 4334, 1, 120, 166, 35, 2, 1080, 1610, 729], [4335, 52, 60, 3, 4336, 4337, 1299, 4338, 70, 29, 4339, 4340, 190, 42, 93, 766, 20, 2195], [13, 34, 12, 83], [4341, 899, 2196, 112, 335, 1053, 4342, 12, 3, 2197, 20, 842, 120, 1299, 116, 4343], [1044, 916, 27, 61, 16, 111, 148, 189, 597, 12, 4344, 42, 97, 28], [28, 92, 2198, 76, 136, 158, 4345, 39, 16, 659, 20, 828, 39, 16, 507], [4346, 4347], [4348, 20, 73, 53, 32, 23, 10, 152, 501, 201, 4349, 104, 37, 28, 10, 15], [4350, 34, 21, 4, 220, 4351, 4352, 3, 415, 12, 3, 267, 55, 70, 58, 1611, 6, 13, 61], [792, 1, 43, 2199, 200, 296], [8, 165, 2, 236, 5, 2183, 1, 542, 3, 232, 2200, 9, 192, 1, 148, 196, 303, 11, 2201, 166, 10, 98, 2202], [4353, 13, 419, 1, 167, 23, 61], [755, 9, 8, 16, 246, 2, 35, 4, 28, 1300, 122, 21, 32, 33, 4354, 173, 133, 9, 290], [4355, 1, 148, 10, 64, 524, 334, 85, 264, 23, 521, 104, 68, 1017], [4356, 486, 7, 196, 612, 21, 15, 43, 4357, 48, 716, 190, 328, 30, 209], [54, 8, 1170, 101, 38, 507, 1, 43, 137, 20, 24, 3, 316, 54, 25, 38, 126], [4358, 353, 3, 1301, 997, 1, 1520, 143, 123, 4, 319, 416, 390, 300, 594, 1, 27, 166, 434, 111, 27, 4359, 4, 4360, 12, 1870], [896, 105, 10, 36, 573, 671, 32, 24, 481, 1, 45, 4, 78, 100, 2203, 14, 5, 2204, 6, 9, 27, 4361], [4362, 101, 371, 99, 278, 361, 27, 83, 328, 309, 21, 15, 628, 74, 65, 377], [8, 16, 4363], [3, 511, 1302, 4364, 4365, 1081], [18, 526, 30, 51, 4, 692, 171, 4, 164, 2049, 4366], [8, 22, 171, 2205, 6, 4367, 46], [1230, 61, 849, 2081, 211, 218], [4368, 41, 57, 218, 75, 56, 4369, 82, 143, 14, 917, 36, 656], [5, 1082, 1083, 27, 4, 4370], [4371, 546, 1, 261, 3, 4372, 27, 1280], [22, 109, 4373], [429, 93, 2, 234, 719, 20, 1084, 8, 381, 6, 298, 37, 496, 12, 512], [1, 93, 98, 697, 21, 80, 2206], [4374, 473, 238, 15, 63, 4375, 34, 51, 3, 2207, 4376, 25, 1071, 130, 14, 3, 1037, 776, 12, 3, 1085, 26, 535], [460, 1612, 963], [185, 32, 5, 1915, 1, 19, 4377, 203, 1036, 602, 187, 186, 22, 251], [4378, 4379, 854, 1303, 72, 25, 1086, 54, 13, 22, 314, 91, 2158, 101, 9, 4380, 2, 35, 4381, 24, 4382, 1904, 16, 425], [4383, 1, 97, 10, 3, 454, 1613], [37, 34, 12, 4384, 4385], [91, 2, 184, 435, 603, 3, 16, 2, 4386, 10, 59, 4387, 97, 4, 164, 103, 20, 3, 1187, 8, 4388, 131, 26, 43, 958, 1200, 46], [4389, 2208, 197, 628, 65, 1304, 245, 143, 108, 324], [6, 4390, 1614, 2, 19, 2209, 216], [336, 1507, 29, 150, 4, 696, 2110, 311, 110, 41, 1, 19, 2, 303, 11, 4391], [904, 983, 12, 4392, 4393, 4394, 338, 2, 388, 9, 5, 4395, 4396, 1, 82, 143, 111, 412, 2, 50, 48, 11, 5, 2210], [8, 4397, 565, 102, 557, 48, 2, 102, 1199, 346, 18, 22, 17, 131, 54], [4398, 4399, 105, 29, 7, 242, 716, 18, 389, 49, 802, 787, 23, 123, 126], [287, 2211, 369, 1615, 2212, 369, 51, 4400, 205, 847, 64, 14, 1305, 1257, 18, 4401, 2, 9, 118, 1, 42, 36, 9], [279, 139, 2213, 4402, 16, 26, 1, 43, 23, 4, 4403], [10, 59, 624, 109, 117, 24, 76, 2214, 4404, 4405, 8, 1, 4406, 67, 264, 35, 1306, 1558, 51, 116, 22, 440], [1, 167, 56, 249, 64, 127], [599, 2215, 4407, 4408, 695, 78, 730, 4409, 304, 4410, 8, 242, 55, 172, 55, 25, 3, 131, 442], [8, 24, 50, 408, 76, 79, 4411, 769, 2216], [4412, 37, 4413, 197, 116, 11, 973], [4414, 162, 57, 4415, 8, 663, 2, 2217, 15, 9, 918, 4416, 5, 1616, 30], [336, 13, 413, 1, 42, 58, 52, 361, 2, 155, 11, 5, 4417, 1617], [715, 150, 4, 4418, 186, 6, 187, 4419], [1544, 72, 67, 1, 268, 415, 138, 264, 23, 387, 2, 493, 30, 14, 122, 1, 326, 94, 387, 2, 122, 11, 2218], [1618, 768, 423], [1, 97, 36, 798], [18, 498, 873, 26, 642, 3, 172, 650, 61], [44, 34, 127, 6, 1, 19, 240, 2, 1087], [4420, 140, 16, 186, 9, 27, 36, 194, 1619, 4, 96, 38], [25, 402, 4421, 13, 664, 176], [46, 27, 114, 20, 26, 13, 225], [2219, 37, 9, 120, 50, 16, 1, 304, 13, 413, 21, 33, 4422], [4423, 146, 4424, 27, 86, 2, 647, 143], [337, 4425, 12, 4426, 237, 6, 76, 2, 41, 9, 4427, 4428, 4429, 4430, 4431, 4432, 1478, 4433, 4434], [196, 399, 286, 51, 4, 1178, 17, 282, 372, 24, 466, 363, 4, 624, 110, 25, 22, 372, 6, 25, 22, 490, 7, 45, 86, 237], [4435, 300], [22, 171, 2, 90], [1, 497, 4436, 17, 1, 198, 2, 3, 803, 4437, 27, 181, 392, 4438, 1, 4439, 123, 526, 30, 6, 831, 9, 27, 4440, 4441], [145, 4442, 10, 4443, 6, 977, 84, 710, 2, 23, 857, 4, 4444, 376, 3, 31, 12, 3, 2220], [74, 1, 646, 38, 79, 10, 301], [631, 8, 160, 130, 168, 16, 246], [67, 53, 33, 2221, 306, 39, 192, 124, 196, 534, 2, 4445], [1, 18, 66, 2, 39, 61], [75, 229, 10, 345, 494, 1009], [4446, 104, 28, 2, 256, 124, 94, 28, 38, 1, 238, 5, 1242, 140, 5, 103, 52, 289, 746], [571, 34, 26, 75, 176, 280, 493, 32, 274, 33, 4447], [4448, 2222, 2222, 1, 72, 174, 4449, 4450, 844, 1275, 4451, 47, 17, 2197, 2223, 36, 4, 4452, 280], [4453, 17, 253, 67, 41, 7, 35, 200, 785, 1578, 506, 588], [4454, 918, 498, 1620, 110, 745, 2224, 536, 40, 7, 1499], [65, 3, 4455, 804, 10, 36, 4456, 1621, 662], [16, 315, 78, 1, 648, 5, 342, 62, 4457, 13, 22, 16, 4458, 2166, 1, 238, 9, 205], [4459, 16, 26, 154, 22, 4460], [4461, 29, 565, 4462, 12, 356, 525, 2, 482], [4463, 2225, 22, 4464, 919, 2, 39, 34, 26], [4465, 4466, 284, 11, 1088, 105], [2119, 64, 2226, 21, 9, 3, 2227, 3, 4467, 27, 4468, 10, 794, 20, 3, 2227, 8, 151, 4469, 2, 4, 4470], [22, 24, 32, 108], [298, 2, 180, 4471, 303], [4472, 360, 158, 397, 130, 857, 3, 316, 10, 4, 235, 110, 120, 7, 800, 15, 1, 148, 19, 238, 17, 805], [5, 1065, 423, 244, 1, 142, 19, 80, 920], [110, 8, 9, 4473, 1, 189, 5, 1622, 2, 4474, 9, 1174, 4475, 4476], [1307, 7, 130, 1308, 2, 388, 15, 2228], [898, 54, 10, 3, 62, 54, 33, 249], [4477, 104, 4478, 711, 4479, 15, 38], [4480, 8, 4481, 25, 921, 4482, 113, 79, 36, 725, 4483], [1, 69, 562, 2, 39, 2, 3, 1566, 4484, 908, 11, 4485, 1089, 62, 4486, 1, 475, 39, 117, 117, 117], [52, 4, 2229, 4, 524, 245], [4487, 1218, 8, 1623, 250, 3, 316, 211, 17, 2230, 8, 250, 77, 16, 70, 53, 19, 2, 137, 332, 4488], [4489, 13, 26, 3, 1200, 731, 1090, 11, 5, 61, 472, 37, 4490, 83], [4491, 356, 366, 84, 376, 888, 30, 4492, 1, 42, 66, 2, 527, 60, 9], [54, 2, 41, 59, 80, 732], [73, 130, 163, 10, 4, 1091, 1901, 6, 1273, 2, 4493, 15, 20, 1, 475, 72, 12, 512, 1624, 2, 155, 60, 158, 1625], [115, 1092, 1023, 4494, 4495, 4, 1093, 806, 1550, 4496, 48, 75, 4497, 1626, 4498, 27, 131, 86, 6, 16, 27, 4499, 1309, 2231], [18, 45, 30, 26, 54, 10, 50], [16, 176, 349, 1, 156, 3, 78, 285, 6, 128, 335, 141, 11], [71, 1, 4500, 77, 1, 155, 17, 1, 99, 1, 148, 236, 1973, 4501, 11, 3, 4502, 12, 1094, 14, 32, 49, 4503, 140, 1, 58, 104, 110, 672, 156, 213], [1, 82, 4504], [4505, 4506, 87, 4507, 8, 4508, 10, 2232, 92], [91, 2, 138, 3, 223, 8, 121, 2, 132, 10, 138], [4509, 110, 112, 9, 457, 7, 2, 878, 4510], [1, 19, 37, 80, 1310, 13, 325, 322, 5, 2233, 230, 11, 203, 4511, 229, 10, 4512, 110, 41, 601, 709, 16, 659], [210, 167, 389, 4513, 46], [13, 117, 2, 82, 4514, 2234, 46], [3, 223, 11, 4515, 8, 837], [33, 488, 8, 706, 15], [4516, 1, 4517, 1, 82, 7, 38], [4518, 1627, 29, 3, 4519, 4520, 2235, 25, 68, 65, 980, 20, 22, 166, 4, 2236, 1577], [1, 19, 4, 4521], [349, 50, 118, 4522], [1628, 21, 700, 582, 33, 1062, 53, 50, 34], [14, 3, 673, 4523, 1, 43, 72, 12, 512], [16, 1, 68, 66, 306, 2237, 25, 68, 220, 11, 83, 6, 13, 1504, 20, 5, 4524, 14, 3, 1076, 193, 12, 4, 4525, 807, 4526], [5, 350, 568, 2, 4527, 101, 36, 1629, 85, 1243, 48, 152, 118, 343, 4528, 32, 4529, 602, 486], [546, 4530, 1, 18, 4531, 8, 157, 153, 4532, 38, 103, 2238, 12, 5, 731, 149, 53, 23, 11, 2239], [548, 445, 12, 3, 31, 27, 28, 20, 3, 281, 121, 292, 353, 4533], [200, 259, 4534, 31, 1095, 1, 71, 413, 808], [74, 4535], [4536, 6, 110, 7, 607, 1150, 403], [1227, 1, 1630, 3, 1546, 12, 4537, 4538, 2240, 9, 423, 4539, 341, 118, 47], [1311, 1631, 1311, 4540, 1311, 4541, 385, 1, 156, 247, 2164], [1154, 68, 94, 145, 3, 1049, 520], [104, 194, 1300, 11, 4, 902, 124, 553, 3, 247, 4542, 266, 1, 307, 39, 2, 122, 6, 13, 75, 638, 266, 1206], [13, 4, 4543, 35, 15, 34, 12, 83], [4544, 82, 7, 38], [4545, 52, 4, 4546, 13, 14, 26, 47, 89, 867, 2, 7, 84, 85, 4547, 377], [4548, 1, 577, 5, 2241, 118], [4549, 527, 4550, 4551, 203, 4552, 2242, 346, 4553, 4554, 4555, 17, 5, 4556, 4557, 321, 23, 1531, 695, 143], [4558, 2097, 2106, 434, 15, 111, 27, 2103, 344, 1632, 87, 39, 4559, 62, 908, 922, 1633, 37, 111, 1633, 111, 1634, 19, 424, 733, 77, 111, 461, 70, 923, 116], [4560, 74, 623, 1, 120, 35, 4561, 483], [1, 43, 568, 2, 236, 4562, 1, 66, 4563, 61, 4564], [4565, 13, 105, 89, 612, 5, 4566, 2243, 21, 7], [8, 186, 176, 6, 4567, 202, 117, 38, 1, 93, 80, 149], [1, 71, 22, 250, 242, 1, 97, 36, 5, 226, 8, 1239, 774, 2004, 33, 5, 478], [5, 649, 22, 4568, 4569, 1635, 421], [2244, 87, 35, 61, 186, 99, 3, 1075, 27, 724, 2, 4570], [18, 337, 662, 2, 39, 26, 5, 4571, 345, 8, 3, 160, 2, 23, 4572, 786, 14, 3, 1497, 22, 150, 4573, 1257, 14, 5, 1955, 1312, 4574], [4575, 62, 1636, 1313, 673, 5, 404, 410, 6, 434, 15, 1, 475, 56, 632, 33, 54, 13, 105], [18, 45, 91, 3, 469, 1637], [5, 4576, 8, 187, 4577, 1, 167, 182, 2109, 5, 2245, 10, 84], [325, 24, 61, 33, 276, 92, 565, 597, 12, 5, 87, 4578, 4579, 29, 375, 186, 20, 1, 71, 44, 2, 4580, 10, 4, 235, 46], [1, 18, 4581, 631, 4582, 4583, 4584, 185, 1621, 525, 12, 760, 2246, 3, 4585, 843, 3, 4586, 69, 37, 4587, 1559], [4588, 74, 37, 74, 37, 74, 37, 74, 37, 52, 442, 12, 2057, 33, 148, 23, 2247], [233, 36, 89, 23, 844, 2, 4589, 639, 38, 244, 89, 305, 21, 4, 78, 2033, 561], [4590, 47, 289, 59, 586, 443, 45, 770, 215, 127, 135, 1614, 16, 330, 38, 1, 534, 1589, 10, 102], [165, 2, 520, 5, 4591, 3, 479, 2248, 11, 126, 200, 31, 12, 4592, 808, 1638, 160], [4593, 1, 99, 1, 804, 24, 11, 224, 34], [4594, 37, 4595, 291, 3, 4596, 1, 1069, 203, 1639, 1559, 4597, 4598, 12, 3, 4599, 540, 63, 396, 12, 4600, 4601], [26, 4602, 110, 4603, 4, 4604, 184, 2249, 21, 335, 4605, 8, 4, 2250, 589, 11, 3, 1607], [4606, 146, 18, 4, 4607, 306, 21, 2251], [42, 66, 2, 354, 4608], [2252, 1486, 754, 42, 305, 213], [4609, 7, 53, 23, 238], [150, 2, 136, 30, 21, 164, 4610, 2, 784, 32, 573, 4611, 6, 67, 73, 130, 279, 7, 4612, 634], [1640, 107, 628, 212, 1, 40, 7, 107, 174, 16, 379, 302, 36, 57, 53, 307, 56, 33, 324, 57, 166, 77, 57, 42, 56, 33], [336, 138, 42, 167, 39, 20, 674, 22, 109, 670, 833, 138, 218, 118, 17, 27, 4, 103, 563], [4613, 1, 40, 49, 1002, 1, 99, 135, 433, 15, 48], [1, 167, 478], [7, 58, 52, 1, 95, 2253, 1641, 4, 2254, 1642, 4614, 1, 329, 1, 40, 3, 842, 1314, 20, 136, 14, 73, 655, 452, 249, 483], [4615, 4616, 8, 75, 1643, 1308, 9, 210, 265, 9, 1643, 21, 4617], [94, 168, 14, 5, 713, 924, 32, 31, 6, 13, 4618, 1000, 395], [4619, 1644, 1048, 18, 198, 2, 169, 24, 1645, 6, 27, 638, 24, 4620, 382, 13, 22, 24, 50, 113, 4621, 189, 9, 57, 29, 209], [4622, 65, 85, 1, 304, 70, 19, 2, 1856, 21, 33, 100, 211], [4623, 516, 4624, 7, 53, 23, 238, 11, 884, 2255, 6, 3, 643, 12, 3, 4625, 1179], [1, 66, 2, 1315, 20, 1, 42, 19, 183, 28, 4626, 984], [4627, 921, 6, 86, 8, 37, 121, 1, 96, 620, 4, 1467, 1646, 74, 65], [45, 102, 1607, 2256, 101, 3, 4628, 957, 476, 348, 3, 392, 476, 84, 282, 55, 246, 1016, 4629, 85, 237, 2, 169, 127], [806, 24, 61, 89, 6, 225], [506, 36, 2257, 345, 4630, 965, 43, 4631, 21, 3, 670, 1647, 12, 345, 4632, 4633, 2, 494], [4634, 1, 1273, 2, 482, 7, 4, 652, 925, 20, 9, 201, 482, 1, 40, 7, 729, 259], [4635, 74, 52, 4, 31, 380, 56, 1, 273, 5, 4636, 4637, 1648, 4638, 63, 268, 410, 4, 4639, 150, 64, 12, 4640, 141], [8, 134, 478, 84, 67, 111, 462, 143, 450, 4641, 13, 310, 4, 549, 24, 226], [47, 17, 8, 115, 300, 1, 95, 154, 11, 40, 21, 3, 576, 154, 2258, 4, 396, 21, 14, 3, 1076, 47, 77, 22, 85, 52, 8, 9, 966], [4642, 343, 328, 4643, 762, 4644, 11, 3, 958, 13, 11], [1096, 484, 19, 2, 137, 4645, 10, 9, 37, 987, 4646, 10, 15, 18, 208], [13, 699, 20, 1, 42, 66, 2, 123, 4647, 4648, 358, 503, 28, 119], [1, 19, 1649, 4649, 11, 16, 2259, 1, 82, 7], [4650, 9, 506, 2, 23, 400, 393, 246, 2, 252, 315, 4, 4651, 2260, 6, 315, 4, 306, 2260], [4652, 190, 282, 1978, 574, 187, 731, 1, 45, 32, 555, 119, 151, 252, 15, 1861, 9, 541, 84], [1148, 734, 4653, 63, 1, 29, 4654, 1313, 2, 56, 7, 178, 4655, 62, 54, 10, 15, 27, 4656, 4657, 197], [16, 67, 4658, 1650, 6, 2261, 77, 64, 12, 49, 4659, 8, 24, 50, 46, 41, 7, 252, 116, 146, 1, 97, 36, 4, 2262], [1052, 275, 4660, 58, 111, 106, 2, 23, 4661, 15, 38, 224, 22, 23, 16, 215, 3, 4662, 431], [383, 28, 21, 4663, 5, 4664, 53, 22, 4665, 2, 3, 131, 420], [336, 1, 42, 66, 2, 231, 1030, 20, 3, 641, 104, 44, 2, 189, 158, 4666, 1097, 8, 161, 123, 126], [1209, 1, 58, 20, 33, 8, 5, 149, 926, 735, 4667, 331, 211, 4668, 84, 24, 1316, 2263, 4669], [4670, 1095, 1, 39, 215, 50, 24, 2264, 46], [4671, 1, 82, 5, 4672, 4673, 20, 1, 19, 17, 4674, 4675, 47], [99, 1, 148, 97, 37, 589, 684, 20, 25, 243, 24, 382, 73, 36, 1317], [4676, 4677, 2265], [4678, 28, 241, 21, 3, 184, 611, 1, 95, 3, 2266, 4679, 8, 469], [385, 1, 72, 124, 1908, 143], [5, 1651, 68, 892, 15, 127], [2256, 9, 14, 3, 2267, 32, 31, 4680, 20, 73, 1098, 68, 4681, 279, 45, 4, 660, 1195, 107, 1, 40, 4682, 224, 4683, 47], [4684, 1652, 625, 217, 13, 225, 4685, 4686, 1302, 84, 96, 7, 354, 1603, 4687, 173], [4688, 510], [4689, 224, 13, 117, 224, 1991, 10, 59, 624, 46, 224, 1, 43, 825, 34, 605], [855, 31, 11, 78, 2002, 522, 118], [4690, 89, 23, 86, 11, 3, 279, 1426, 7, 44, 2, 183, 281, 675], [4691, 4692, 5, 522, 8, 22, 14, 3, 676], [4693, 336, 17, 8, 16, 2044, 13, 105, 2, 256, 17], [561, 124, 94, 2268, 5, 428, 14, 4694, 4695, 67, 53, 86, 23, 80, 262, 1318, 170, 11, 4, 31, 111, 111], [1, 53, 23, 16, 108, 67, 2269, 8, 268, 1319, 213, 6, 70, 96, 709, 14, 2, 3, 157, 4696, 924], [8, 91, 4697, 75, 106, 335, 80, 1300, 2, 39], [67, 112, 1, 231, 1019, 34, 36, 33, 5, 474, 233, 36, 3, 4698, 12, 3, 782, 13, 134, 478], [1, 18, 254, 5, 993, 38, 103, 1, 69, 2, 305], [4699, 34, 3, 4700, 46], [4701, 13, 105, 1, 97, 103, 10, 7, 147, 4702, 23, 11, 1005, 317, 70, 142, 394, 30, 24, 1653, 1099], [4703, 73, 354, 2270, 3, 31, 1654, 70, 284, 61, 20, 25, 60, 194, 113, 204, 1320, 51, 207, 65, 23], [165, 2, 4704, 9, 53, 265, 21, 4705, 957, 1, 42, 72, 291, 150, 183, 12, 9, 119, 74, 65, 200, 194, 416, 10, 15], [4706, 140, 433, 17, 342, 38, 103, 111, 653, 9, 5, 1590, 2271, 342, 12, 32, 54], [110, 270, 2272, 2273, 14, 1172, 6, 4707, 4708, 320, 4709, 777, 4, 2273, 14, 5, 1554, 829], [298, 2, 500, 3, 643, 12, 785, 400, 217, 125, 197], [824, 1321, 152, 11, 4710, 352, 192, 51, 61, 224, 2274, 6, 3, 927, 152, 1081, 426, 1, 56, 5, 486, 118, 94, 4, 524, 6, 4, 445], [4711, 2186, 13, 16, 105, 112, 7, 35, 49, 836, 51, 213], [69, 4, 654, 17, 1, 790, 5, 1655, 1322, 4712, 2, 3, 1100, 2275, 3, 1100, 2275, 128, 1101, 2276], [4713, 832, 1, 35, 116, 32, 3, 54], [62, 31, 12, 4714], [191, 160, 31, 12, 4715, 113, 22, 207, 8, 206], [4716, 124, 159, 240, 25, 44, 2, 23, 4, 4717, 88, 10, 59, 624, 5, 1084, 210, 72, 50, 8, 4, 4718], [145, 1656, 63, 1657, 673, 684, 33, 8, 16, 117], [30, 237, 10, 5, 2277, 84, 11, 3, 522, 93, 4719], [2278, 290, 4720, 15, 1, 616, 32, 60, 9, 107], [1, 72, 89, 18, 137, 10, 1399, 2, 968, 13, 80, 887, 262, 3, 4721, 135, 233, 16, 347, 67, 135, 1658, 280], [323, 65, 24, 382, 7, 45, 2, 39, 2, 102, 908, 4722, 66, 2, 394, 102, 4723, 103, 207, 112, 7, 236, 3, 1659], [4724, 2218, 4725, 4726, 4727, 4728, 4729, 4730, 4731, 4732], [4733, 37, 25, 22, 508, 4734, 26, 20, 9, 321, 274, 43, 137, 426, 3, 182], [1, 97, 152, 1450, 2279, 74, 16, 4735, 901, 1, 58, 7, 4736, 12, 15], [150, 4, 691, 488, 131, 26, 20, 43, 42, 66, 2, 618, 2280, 1, 18, 93, 5, 4737, 85, 89, 23, 736, 87, 80, 170], [4738, 4739, 26, 1, 66, 920], [4740, 1102, 8, 127, 20, 22, 11, 973, 29, 7, 188, 10, 139, 2, 56, 9], [4741, 33, 664, 4742, 450, 46, 33, 253], [1486, 2257, 965, 8, 4743, 4744, 55, 1, 27, 2281, 3, 494, 598, 104, 52, 1, 35, 10, 229, 10, 4745, 4746], [4747, 1, 42, 19, 4, 633], [37, 4748, 127, 20, 1, 71, 44, 2, 295, 4749, 380, 56, 76, 199, 1460, 338, 4750, 1, 96, 2282], [205, 4751, 634, 1052, 95, 4, 4752, 210, 432, 15, 47], [4753, 5, 1660, 708, 1, 45, 4, 2283], [28, 211, 1, 4754, 4, 499, 1661, 266, 50, 134, 23, 995, 426, 841, 118, 38, 103, 1, 120, 1246, 183, 286, 4755], [364, 1, 43, 2284, 5, 1084, 2, 5, 4756, 436], [277, 33, 454, 34, 4757, 2285, 501, 4758, 309, 454, 4759], [4760, 1, 4761, 928, 488, 482, 15, 48, 2, 2087, 1, 99, 278, 129, 477, 30, 6, 401, 15, 4, 184, 1226, 4762, 306], [24, 4763, 597, 603, 1662, 904, 31, 12, 2286, 2251, 1103], [1593, 17, 1, 4764, 32, 3, 54, 54, 2, 231, 719, 10, 698], [566, 147, 631, 76, 112, 3, 1323, 211, 39, 173, 293, 1, 129, 23, 4765, 1, 196, 35, 4, 293, 48], [18, 2287, 5, 78, 1324, 152, 3, 4766, 794, 1064, 9, 541, 55, 1, 75, 19, 4767, 197, 14, 3, 4768], [4769, 210, 97, 28, 46], [2288, 88, 417, 106, 208, 2, 136, 61, 6, 3, 177, 296, 1925, 84, 913, 39, 295, 2, 35, 59, 643, 26], [13, 16, 1104, 17, 1, 238, 5, 718, 6, 4770, 403, 193, 5, 344, 384, 106, 4771], [750, 77, 1, 96, 56, 1509, 4772, 26, 37, 664, 378], [2289, 70, 16, 151, 1, 326, 159, 9, 418, 921, 19, 4, 427, 12, 139, 13, 91, 2, 35, 144, 26, 430, 615, 4773, 2289, 711], [4774, 832, 22, 517, 183, 2043, 1284, 271, 411, 8, 334, 22, 28, 271, 1, 517, 4, 2266, 17, 291, 26, 1084, 2290], [685, 8, 442, 12, 425, 9, 201, 275, 15, 293], [340, 88, 109, 144, 10, 4, 668, 4775, 465, 1468, 578, 5, 62, 141, 12, 1612], [1099, 49, 2291, 11, 200, 2292, 45, 50, 26, 142, 23, 34, 11, 3, 247, 209], [425, 753, 424, 5, 286, 192, 87, 170, 390, 6, 26, 13, 1504, 110, 110], [237, 92, 491, 10, 4776, 44, 192], [4777, 34, 12, 3, 230, 6, 1004, 8, 24, 2293, 21, 374], [9, 253, 2, 23, 4, 4778, 6, 22, 23, 387, 2, 56, 4, 2294], [4779, 860, 1325, 47, 140, 1, 112, 35, 9, 20, 26, 124, 273, 5, 2195, 75, 93, 2, 527, 2, 929, 119, 258, 24, 50, 1326], [4780, 834, 13, 44, 2, 23, 192, 55, 12, 84, 89, 82, 49, 2182], [78, 2, 100, 6, 19, 37, 563, 76, 2, 260, 9, 265], [4781, 104, 4, 606, 2295], [4782, 1663, 238], [1327, 1105, 4783, 21, 1257, 1232, 5, 309, 6, 4784, 14, 9, 26, 489, 4785, 407, 113, 880, 119], [1630, 3, 407, 67, 3, 4786, 4787, 4788, 34, 12, 5, 809], [4789, 117, 1, 43, 1055, 3, 4790, 4791, 4792, 209], [1, 42, 72, 13, 44, 2, 3, 4793, 84, 38, 199, 4794, 4795, 2, 721, 4796, 4797, 4798, 4799], [92, 32, 75, 115, 176], [561, 1, 71, 225], [4800, 2296, 43, 542, 13, 18, 109, 48, 2, 7, 2297, 736, 20, 775, 18, 168, 376, 810, 448, 39, 65], [273, 5, 697, 1404], [16, 176, 42, 58, 52, 13, 44, 2, 35, 10, 4801, 44, 34, 4802, 669, 4803], [24, 50, 1536, 36, 4, 138, 1106, 229, 10, 3, 4804, 2, 1952, 2298, 1107, 2, 39, 61, 860, 25, 128, 4805, 1107], [4806, 619, 37, 4807], [1, 1985, 1, 42, 72, 135, 4808, 113, 4809, 76, 79, 9, 423, 15, 67, 135, 1664, 15, 60, 272, 73, 112, 113, 4810, 21, 143, 11, 930, 12, 15], [1, 99, 1, 27, 24, 764, 4811, 1328, 625, 53, 19, 2, 41], [4812, 99, 1, 148, 105, 13, 34], [242, 207, 3, 4813, 8, 3, 219, 1, 66, 9, 48], [4814, 55, 79, 55, 1, 433, 1665, 5, 4815, 10, 2121, 148, 4816], [4817, 111, 321, 19, 28, 1329, 20, 111, 201, 39, 2, 56, 492, 931, 21, 15, 84, 8, 502, 31, 63, 111, 106, 2, 39, 2, 2299, 63, 4818], [811, 626, 4819, 63, 13, 68, 699, 42, 58, 52, 2, 4820, 4, 660, 972, 2, 803, 216, 4821, 1326], [4822, 13, 105, 1, 95, 111, 245, 9, 30, 2, 7, 763, 6, 1, 29, 11, 17, 4823, 1446, 63, 70, 446, 22, 2300], [1666, 4824, 51, 4825, 648, 104, 16, 117], [221, 3, 177, 557, 11, 3, 267, 648], [2301, 4826, 96, 23, 314, 14, 4, 1416, 36, 52, 129, 1216, 41, 70, 96, 457, 48, 4827, 759, 1, 97, 37, 4828, 2302], [4829, 1001, 4830, 684, 16, 79], [37, 80, 4831, 10, 15, 9, 307, 541, 10, 15, 74, 65, 4832, 548, 25, 103], [4833, 243, 503, 1, 45, 421, 14, 5, 62, 458, 73, 112, 22, 2303, 2, 555, 47, 22, 87, 800, 37, 4834], [4835, 1, 68, 261, 17, 27, 76, 3, 1667, 198], [4836, 4837, 8, 64, 12, 3, 177, 932, 1, 19, 2304, 1, 53, 82, 9], [4838, 1, 93, 5, 4839], [4840, 8, 44, 2, 23, 4, 372, 31], [1, 71, 333, 920, 17, 4841, 15, 12, 3, 920, 1, 338, 2, 432, 11, 1330, 99, 1, 27, 48, 86], [8, 61, 558, 14, 4, 340, 88], [4842, 111, 179, 56, 15, 37, 30], [75, 97, 176, 6, 412, 80, 122, 20, 86, 8, 195, 2, 41], [75, 755, 33, 8, 4843, 106, 37, 149], [1668, 719, 10, 5, 698, 11, 2280, 25, 2305, 84, 20, 1, 19, 69, 4844, 368, 12, 3, 31, 93, 4845, 4846], [4847, 45, 4, 574, 51, 2306, 33, 92, 111, 201, 23, 387, 2, 133, 9, 84, 1071, 12, 4, 862, 611], [451, 668, 1331, 4848, 17, 1, 120, 254], [1, 4849, 11, 36, 4, 807, 280, 47, 6, 128, 64, 576, 254], [4850, 13, 4851, 4852, 2024, 32, 4853, 759, 75, 22, 136, 61, 365, 195, 29, 151, 21, 49, 78, 879], [207, 8, 5, 911], [4854, 302, 244, 1, 2307, 1410, 80, 146, 13, 38, 554, 6, 4855], [8, 989, 17, 3, 78, 4856, 161, 2, 777, 1324, 53, 307, 23, 4, 4857, 51, 3, 64, 1, 19], [4858, 94, 1406, 2, 41, 216, 166, 119, 9, 106, 2, 23, 159, 221], [4859, 16, 4860, 9, 245, 15, 4, 202, 117, 4861, 8, 1891, 35, 17, 228, 59, 2308, 2309, 277, 217, 87, 1, 66, 2308, 417], [4862, 74, 1, 42, 19, 4, 685], [165, 2, 4863, 4, 1332, 4864, 51, 62, 64, 4865], [14, 121, 2, 1246, 4866, 1333, 4867, 2, 4868, 363, 2310, 121, 4869, 129, 354, 327, 4870, 4871, 129, 23], [65, 3, 153, 27, 28, 115, 779, 48, 2, 138, 84], [2311, 4872, 34, 2312, 192, 2, 1298, 4873, 1068, 31, 75, 43, 542, 13, 773, 2311, 6, 22, 4874], [1, 72, 9, 8, 103, 780, 2, 1334, 4, 359, 4875, 3, 4876, 22, 3, 159, 211], [4877, 1, 326, 418, 4878, 2, 4879, 2, 180, 33, 509, 280, 55, 2313, 275, 15, 152], [4880, 2314, 1, 933, 77, 73, 19, 850, 603, 761, 2315, 14, 1008, 903, 47], [4881, 4882, 5, 4883, 4884, 51, 325, 38, 172, 4885], [4886, 27, 175, 742, 59, 2316, 653, 131, 11, 930, 12, 15, 235, 1, 27, 11, 523, 2, 35, 4, 220, 513, 6, 1, 400, 238, 277, 11], [3, 267, 8, 4, 164, 518, 1229, 21, 3, 4887, 12, 3, 2317, 4888, 4889], [4890, 323, 7, 196, 275, 15, 19, 183, 114], [4891, 176, 138, 63, 50], [216, 8, 622, 469, 21, 15, 859, 1, 43, 166, 35, 4, 934, 194, 416, 2318, 262, 15], [2319, 5, 1108, 6, 44, 2, 4892, 467, 5, 1669, 1103], [498, 4893, 11, 4, 319, 4894, 83, 1, 136, 134, 82, 5, 228, 119], [171, 1460, 433, 6, 2320, 7, 58, 25, 103, 67, 73, 42, 893, 49, 781, 6, 73, 4895, 60, 49, 397], [4896, 323, 243, 56, 7, 84, 220, 272, 107, 104, 52, 4897, 129, 155, 1, 1047], [13, 168], [1626, 36, 4898, 1088, 9, 201, 23, 11, 3, 450, 4899], [1, 66, 2, 23, 387, 2, 1963, 118], [165, 2, 846, 62, 907, 1638, 4900, 1402, 1670, 447, 8, 123], [90, 88, 21, 4901, 6, 4902, 731, 288, 119, 43, 137, 2, 35, 5, 1335, 112, 84, 360, 101, 3, 121, 37, 80, 2299, 10, 15], [242, 16, 554, 450, 84, 1296, 134, 4903, 119, 1, 96, 97, 9], [13, 176, 956], [682, 4904, 1671, 14, 3, 1950, 197, 1672, 4905, 290, 1225, 1532, 48, 61, 702, 767], [4906, 3, 677, 4907, 361, 37, 105], [2263, 299, 4908, 7, 53, 23, 238, 2321, 544, 933, 110, 349, 270, 327, 4909, 12, 195, 204, 141, 12, 226, 25, 18, 117, 2, 72, 377], [2322, 1660, 1302, 84, 1, 95, 1, 41, 65, 463, 1, 37, 1, 201, 280], [147, 147, 95, 70, 29, 32, 65, 43, 542, 25, 128, 4910, 87, 141, 426, 4911, 37, 563, 52, 13, 44, 2, 41, 185, 5, 917, 4912], [395, 1109, 2323, 10, 428, 1616, 859, 16, 79, 2, 41, 266, 2020, 157, 125], [9, 506, 1, 71, 3, 128, 64, 51, 4913, 44, 2, 2324, 1, 42, 58, 76, 2, 35, 2, 2324], [4914, 107, 22, 4915, 4916, 714, 360, 68, 381, 693, 43, 432, 440, 107, 4917, 1, 167, 432, 4918, 529, 20, 4919, 4920, 1673, 1177, 1336], [325, 4921, 32, 5, 678, 272, 22, 1110, 52, 2, 1337, 6, 52, 22, 38], [1909, 5, 2325, 201, 290, 4922, 13, 165, 2, 620, 5, 793, 20, 1, 18, 43, 4923], [18, 526, 30, 118, 1, 19, 2, 41, 59, 364, 46, 113, 1, 53, 4924, 256, 3, 316, 364, 1, 517, 4925, 1, 304, 1, 151, 39, 856, 230], [4926, 13, 4927, 11, 3, 4928, 1422, 10, 59, 624, 47, 124, 196, 94, 86], [4929, 5, 246, 464, 4930, 210, 1338, 33, 713, 12, 246, 464, 1, 156, 150, 2, 35, 265], [4931, 13, 890, 225, 131, 4932, 37, 935, 46, 76, 60, 57], [4933, 152], [4934, 1, 95, 135, 270], [309, 2262, 8, 150, 59, 2326, 961, 24, 3, 812], [4935, 1, 19, 4936, 737, 20, 343, 44, 2, 23, 4937, 21, 3, 232, 6, 1, 66, 2, 56, 7, 1, 82, 7], [4938, 452, 54, 1, 56, 4, 369, 410, 4939, 1, 234, 408, 25, 17, 2211, 369, 6, 85, 9, 462, 413, 11, 5, 284], [229, 10, 139, 14, 3, 281, 809, 245, 15, 4, 115, 117, 576], [2192, 4940], [4941, 147, 490, 37, 742, 70, 29, 22, 161, 34, 10, 3, 1060, 70, 1674, 215, 9, 20, 25, 18, 38, 1017, 131, 26], [4942, 290, 593, 60, 3, 271, 154, 269, 15, 419, 13, 2, 386, 192, 2, 35, 4943, 271], [3, 1333, 918, 565, 139, 192, 51, 15], [9, 253, 508, 16, 246], [4944, 1543, 4945, 8, 36, 556], [4946, 4947, 212, 33, 4948, 4949, 15, 4950, 4951, 4952, 4953], [243, 1, 43, 180, 3, 1675, 2327, 1, 167, 478], [4954, 263, 1, 1111, 120, 155, 17, 37, 2328, 10, 7, 127, 26], [1009, 1, 71, 44, 2, 3, 1028, 84, 22, 588, 240, 8, 469, 21, 5, 1676, 1, 42, 95, 86, 8], [4955, 1, 326, 94, 2, 64, 11, 4, 907, 534, 36, 4, 346, 2302], [240, 2, 41, 322, 67, 25, 592], [89, 18, 189, 4, 643, 26, 2329, 12, 514, 5, 4956, 4957, 66, 2, 4958, 4959, 166, 260, 5, 697, 2, 39, 403, 4960, 2330, 4961], [162, 7, 345, 882, 4962, 2016, 38, 389, 2, 4963, 574, 2331, 1339], [4964, 74, 5, 2332, 1666, 2333, 37, 9, 8, 22, 20, 25, 4965, 86, 1, 747, 60, 4966, 170, 46, 250, 4967, 4968], [700, 980, 4969, 450, 14, 317, 44, 61, 2, 5, 911, 2124, 324], [1, 97, 197, 34, 193, 1, 326, 553, 1147, 208], [18, 69, 4, 1340, 132, 1677, 4970, 27, 936], [8, 937, 21, 102, 281, 190, 1, 43, 4971, 781, 102, 781], [4972, 74, 228, 13, 105, 1, 68, 156, 33, 10, 7], [74, 599, 247, 106, 393, 6, 184, 730, 1678, 1679, 11, 95, 5, 2151, 4973, 266, 3, 232, 1341], [4974, 6, 4975, 522, 1112, 790, 34, 266, 1, 45, 5, 562, 792], [4976, 323], [4977, 42, 1308, 7, 58, 77, 915, 4978, 8, 109, 4, 703, 1008, 4979, 94, 387, 2, 56, 9, 208, 377], [3, 78, 2334, 288, 253], [4980, 181, 79, 32, 1680, 4981, 4982], [4983, 357, 210, 19, 17, 1, 933, 110, 1, 19, 32, 12, 327, 78, 4984, 6, 37, 64, 361, 106, 4985, 57, 29, 514, 4986], [62, 31, 10, 4987, 516, 1669], [2335, 4988, 492, 4989, 4990, 4991, 2336, 4992, 4993], [4994, 738, 4995, 8, 75, 1900], [8, 1044, 135, 148, 35, 3, 272, 135, 298, 51, 4996, 4997, 77, 128, 1, 1098, 16, 331], [263, 96, 33, 545, 39, 183, 4998, 13, 294, 10, 50], [4999, 5000, 45, 4, 78, 5001, 51, 4, 396, 20, 833, 2305, 135, 273, 102, 2318, 604, 2, 5002, 938, 69, 22, 94, 87, 5003, 11, 494, 416], [561, 13, 663, 2, 35, 68, 117, 17, 668, 8, 498, 15, 10, 4, 524], [5004, 5005, 67, 270, 9, 231, 5006, 1501, 10, 7, 5007, 133, 5, 875, 6, 5008, 5009, 1, 97, 36, 4, 1247, 284, 67, 13, 14, 283], [1681, 1195, 5010, 52, 130, 70, 408], [5011, 13, 5012, 777, 8, 307, 5013, 929, 107, 4, 5014, 807, 334], [22, 44, 2, 138, 5015], [5016, 5017, 1, 27, 165, 2, 35, 49, 1960, 185, 810, 16, 70, 148, 35, 4, 5018, 7, 18, 5019, 1682], [13, 60, 2, 39, 2, 5, 5020, 230, 3, 331, 456, 8, 186], [459, 36, 4, 496, 12, 15, 8, 460], [5021], [5022, 154, 21, 5, 601, 252, 116, 1, 40, 116, 107], [5023, 974, 939, 70, 159, 60, 217, 352, 6, 445, 551, 85, 70, 41, 5024, 2, 41, 21, 974, 5025, 5026], [5027, 111, 648, 33, 92, 203, 1011, 871, 475, 2337, 203, 5028], [25, 1645, 54, 2, 39, 61, 1, 326, 166, 197, 208, 6, 205, 1, 82, 916, 33, 253, 14, 158, 121, 2, 1333], [5029, 343, 22, 48, 535, 65, 24, 382, 37, 645, 5030, 9, 20, 86, 29, 1097, 12, 116, 535, 187, 32, 5031, 6, 272], [372, 168, 1, 99, 1, 69, 54, 2, 23, 83], [1148, 37, 9, 27, 4, 28, 1642, 1, 68, 66, 64, 26, 107, 20, 1, 42, 19, 3, 2338, 2, 615, 152, 2339, 107], [5032, 251, 50, 8, 28, 372], [5033, 900, 5, 103, 47], [1113, 112, 5034, 68, 35, 30, 531, 355, 62, 88, 2340, 3, 5035, 1035, 129, 35, 30, 6, 265, 6, 250, 1159], [5036, 17, 253, 13, 18, 60, 2, 39, 2, 169, 13, 176], [682, 206, 94, 34, 368, 12, 3, 153, 13, 5037, 6, 19, 4, 590, 284], [13, 150, 2341, 5038, 68, 117, 1, 93, 5039, 2341, 670, 5040], [70, 130, 1502, 158, 378, 48, 6, 1502, 344, 5041, 73, 69, 4, 429, 21, 3, 5042], [22, 341, 139, 100, 60, 5043, 2342, 300, 594], [1, 16, 42, 476, 65, 1009, 1103], [199, 170, 328, 2343, 5044, 14, 1114, 1495, 169, 54, 26, 24, 5045, 170, 1342, 30, 38, 294, 101, 1343], [5046, 59, 83, 1340, 5047, 15, 91, 44, 2, 1059, 116, 30, 5048, 55, 1, 326, 393, 123, 3, 5049], [5050, 7, 339, 35, 9, 48, 119, 142, 56, 4, 1028, 10, 4, 277, 452, 531, 530, 602], [220, 223, 32, 123, 5051, 1115, 76, 29, 7, 995, 251, 144, 10, 3, 5052, 5053, 5054, 84, 214, 636, 52, 3, 5055, 53, 23], [74, 456, 1, 747, 20, 18, 531, 170, 11, 1683, 522, 6, 1, 45, 61, 171, 186, 1, 19, 5056, 2, 39, 2, 14, 317, 6, 370, 35, 65, 507], [8, 1104, 60, 460, 3, 5057, 431, 1, 320, 321, 22, 23, 387, 2, 3, 431, 157, 317], [5058, 146, 9, 8, 51, 5059, 5060, 37], [882, 314, 15, 11, 100, 2344, 1, 69, 2, 136, 48, 2, 3, 725], [110, 42, 7, 293, 2, 2345], [5061, 38, 222, 17, 253], [5062, 896, 1344, 89, 5063, 449, 1435, 2346, 64, 12, 5, 5064, 106, 94, 161, 11, 10, 5065, 26, 47, 156, 5066, 156, 2045, 47], [2154, 5, 513], [5067, 1684, 1685, 1, 167, 661, 67, 53, 57, 19, 4, 908, 11, 5068, 264, 68, 40, 2, 56, 57, 5069], [168, 14, 3, 584, 5070, 10, 3, 5071, 5072, 1215, 24, 3, 812, 17, 68, 726, 250, 3, 5073], [8, 30, 294, 1686, 15, 176, 6, 1168], [623, 2347, 5074, 8, 5075, 5076, 590, 590, 284, 47, 65, 99, 15, 241, 71, 844, 87, 2348, 3, 2349, 65, 295, 602, 209], [1527, 20, 22, 10, 283, 12, 213, 322, 3, 2350], [5077, 156, 601], [413, 24, 61, 136, 970, 15, 34], [5078, 323, 212], [89, 23, 48, 11, 4, 5079, 44, 61, 51, 138, 97, 16, 89, 20, 85, 161, 48, 11], [2259, 5080, 5081, 5082], [5083], [5084, 57, 218, 824, 1116, 36, 279, 1, 824, 66, 2, 529, 9, 224, 1015, 157, 2, 174, 5085, 880, 2099, 1457, 14, 32, 88], [1067, 5086, 1, 68, 93, 49, 265, 631, 5087, 24, 15, 6, 1, 120, 5088, 1052, 252, 143, 5089, 105], [1088, 5, 988, 42, 5090, 405, 3, 316, 1687, 55, 4, 5091, 5092, 5093, 2190, 2351, 8, 5094, 14, 5095], [18, 298, 2, 35, 59, 5096, 1, 43, 575, 1, 326, 2352, 2, 5097, 5098, 93, 2, 256, 203, 2048], [250, 1159, 191, 5099, 210, 359, 440], [6, 1, 362, 213, 2, 305, 24, 5100, 2, 41, 4, 217, 1107, 2353, 5101, 5102, 1485], [768, 704, 76, 270, 33, 455], [64, 80, 125, 197, 11, 5103], [2354, 8, 98, 2116], [145, 3, 183, 654, 53, 41, 1429, 20, 1345, 12, 116, 29, 183, 28], [5104, 47, 1, 19, 16, 199, 397, 17, 1, 42, 313, 445, 12, 116, 13, 105, 5105, 5106, 1, 82, 158, 1306, 458, 61], [5107, 548, 1, 142, 23, 109, 1117, 1117, 5108, 5109, 5110, 6, 4, 2355, 12, 835, 20, 13, 22, 89, 295, 4, 5111, 113, 216], [1, 112, 22, 166, 58, 1, 69, 80, 448, 157, 125], [5112, 1, 68, 42, 36, 1045, 11, 3, 232], [5113, 47, 104, 5, 261, 38, 1, 142, 334, 5114, 3, 1346, 6, 3, 1688, 20, 1, 42, 66, 1346, 5115], [5116, 22, 10, 15], [5117, 5118, 65, 1104, 27, 65, 163, 409, 2, 9], [5119, 572, 37, 5120, 32, 94, 5121, 30, 119, 24, 3, 115, 382], [5122, 74, 37, 156, 67, 17, 710], [566, 173, 293, 631, 70, 93, 49, 265, 173, 173, 5123, 173], [77, 5, 753, 5124, 33, 704, 9, 53, 133, 32, 437, 447, 2199, 1, 18, 831], [5125, 15, 38, 805, 1, 167, 56, 733, 303, 126, 1, 43, 137, 440], [1, 569, 542, 1, 71, 30, 1169, 166, 119, 1, 424, 98, 5126, 1, 18, 43, 122], [18, 1254, 77, 1, 142, 581, 3, 428, 2356, 10, 3, 219, 1625, 376, 439, 361, 2357, 2], [5127, 1, 36, 2, 39, 2, 3, 762, 6, 354, 14, 3, 5128, 20, 544, 5, 1025, 462, 413, 14, 3, 5129], [1, 42, 97, 36, 44, 2, 700], [5130, 686, 73, 156, 213, 25, 94, 4, 249, 12, 798, 10, 5131, 21, 37, 415, 11, 5132], [77, 3, 735, 211, 8, 75, 11, 158, 5133, 1, 43, 813, 9, 193, 12, 3, 1689, 85, 70, 19, 2, 5134, 9, 266, 3, 5135, 53, 683, 9, 30], [5136, 18, 646, 3, 940, 797, 1305, 677, 529, 1, 255, 62, 88, 10, 5137, 311, 688, 40, 17, 529, 5138, 646, 64, 38], [746, 2358, 336], [100, 777, 5139, 5140, 5141, 5142], [37, 80, 184, 40, 14, 1647], [5, 814, 8, 68, 2359], [5143, 510, 1854, 7, 43, 354, 217, 914, 720, 21, 213, 14, 1114], [1, 66, 2, 39, 61], [5144, 323, 331, 228, 13, 60, 2, 39, 2, 169, 93, 2, 35, 30, 24, 2360, 5, 54, 89, 493, 7, 274, 19, 114, 24, 491, 634], [5145, 135, 43, 495], [1, 338, 2, 72, 1, 923, 3, 232, 26, 32, 9, 270, 8, 133, 15, 167, 5146], [5147, 48, 2, 2361, 64, 12, 447, 30, 5148], [5149, 937, 1, 238, 49, 414, 80, 182, 5150, 27, 44, 2, 930, 3, 562, 20, 69, 2, 39, 48, 2, 1347, 10, 5151, 117, 1, 71], [1, 42, 58, 76, 79, 1, 93, 2, 801, 193, 5, 2060, 8, 770], [3, 2088, 5152, 5, 615, 99, 70, 42, 19, 1328, 5153, 63, 3, 1457, 223, 25, 22, 28, 10, 5, 5154], [2362, 5155, 5156, 9, 201, 23, 10, 200, 1316, 170, 113, 16, 56, 470, 584, 83, 5157], [1, 99, 32, 5, 149, 5158, 724, 2, 15], [1, 120, 236, 2363, 5159, 221], [62, 31, 11, 1347], [544, 5160, 5161, 29, 121, 2, 413, 30, 6, 5162], [5163, 110, 702, 7, 24, 1323, 25, 22, 1323, 467, 827], [171, 4, 164, 5164, 26], [5165, 1, 19, 4, 5166, 697, 5167, 400, 381], [198, 2, 169, 24, 2264, 1, 156, 9, 67, 1, 1992, 713, 195, 2148], [5168, 233, 36, 89, 290, 101, 3, 230, 6, 35, 4, 5169, 85], [546, 5, 1631, 5170, 45, 786, 14, 4, 5171, 1034, 6, 5172], [5173, 1, 58, 73, 29, 36, 402, 6, 58, 583, 17, 124, 196, 517, 12, 57, 120, 293, 2, 5, 5174], [5175, 62, 12, 640, 630, 140, 104, 3, 64, 5176, 5177, 419], [8, 48, 11, 3, 5178, 171, 68, 89, 119], [9, 201, 50, 10, 15, 103, 355, 107], [5179, 302, 64, 12, 3, 1917, 1, 600, 4, 1348, 5180, 5181, 5182, 1249, 13, 514, 4, 50, 1269, 21, 184, 5183, 5184, 5185, 1326], [915, 51, 1631], [5186, 327, 672, 29, 606], [739, 6, 5187, 167, 41, 216, 280], [68, 1652, 33, 488, 3, 998, 197, 15, 21], [25, 128, 1040], [13, 16, 123, 168, 20, 86, 8, 68, 28, 5188, 2364, 11, 3, 5189, 127, 1690], [12, 740, 9, 210, 265, 77, 73, 389, 3, 659, 523, 6, 70, 415, 30, 596, 4, 2365, 1691], [43, 122, 38, 199, 195, 44, 14, 11, 5, 284, 5190], [2366, 1, 815, 5191, 5192], [412, 1597, 2, 401, 213, 378, 266, 1, 43, 39, 2, 138], [5193, 135, 53, 334, 22, 23, 387, 2, 133, 9, 102, 78, 1178, 1118, 8, 5194, 30, 102, 828, 258, 75, 2236, 280], [376, 1245, 1036, 487, 2, 3, 703, 158, 1692, 210, 568, 2, 1151, 5195, 11, 281, 5196, 25, 36, 73, 42, 597], [13, 811, 171, 3, 5197, 12, 38, 79, 987, 5198], [32, 1, 66, 2, 41, 8, 5199], [1113, 74, 2122, 54, 1, 42, 36, 9], [286, 8, 269, 15, 186], [5200, 1243, 101, 5201, 5202, 5203], [1117, 5204, 5, 2367, 1, 68, 72, 13, 5205, 2, 987], [5206, 1004, 33, 8, 98, 5207, 1, 53, 23, 168, 33, 153, 5208, 70, 5209, 5210, 20, 5211, 8, 5212, 9], [15, 298, 200, 64, 26], [385, 7], [5213, 5214, 5215, 123, 83, 1, 99, 13, 36, 4, 1339, 2361], [5216, 385, 13, 105, 5217, 295, 59, 2368, 1958, 5218, 244], [7, 58, 52, 253, 7, 620, 2, 139, 7, 2369, 6, 227, 30, 2, 36, 5219, 113, 1119, 5, 300, 2131, 6, 73, 196, 893], [278, 1693, 15, 5220, 50, 8, 5221], [5222, 5223, 411, 740], [212, 13, 50, 144, 87, 39, 61], [83, 642, 3, 232, 118], [5224, 1, 167, 39, 14, 6, 867, 59, 5225], [5226, 15, 2, 33, 27, 2370, 3, 177, 138, 249, 218], [941, 8, 9, 128, 15, 113, 1, 45, 816, 5227, 14, 357, 1105, 131, 2371, 1672, 389, 2, 5228, 1179, 383], [5229, 123, 9], [5230, 124, 94, 229, 4, 125, 20, 1, 72, 10, 257, 9, 53, 136, 84], [5231, 22, 79, 115, 225], [5232, 207, 29, 632, 1, 42, 166, 58, 13, 4, 103, 5233], [463, 13, 16, 176, 1, 42, 167, 39, 2, 122, 47, 5234, 1, 72, 89, 39, 2, 122, 26, 817, 817, 5235, 5236, 634, 527, 2, 7, 11, 3, 92], [5237, 5238, 5239, 5240, 140, 37, 429, 457, 672, 1, 72, 3, 232, 339, 1694, 5241, 3, 5242, 5243], [1587, 5244, 5245, 102, 40, 135, 8, 11, 100, 2344, 135, 96, 180, 20, 22, 293], [25, 123, 45, 421, 603, 5246, 6, 5247, 1656, 489, 189, 421], [18, 198, 2, 56, 3, 456, 11, 3, 5248, 5249, 2372, 117], [25, 44, 2, 231, 4, 78, 1194, 5250, 84], [8, 225, 408, 60, 84, 60, 1695, 13, 188, 10, 138, 113, 22, 74, 1, 156, 187, 5251], [1, 82, 375, 431, 5252, 46, 162, 1696, 10, 2313, 351, 77, 278, 5253, 3, 932, 10, 15, 266, 1, 56, 116, 86, 53, 23, 437, 2, 587], [5254, 290, 2373, 34, 16, 507], [5255, 181, 869, 1882, 83, 11, 3, 5256, 332, 5257], [5258, 1039, 24, 356, 71, 8, 4, 115, 103, 563, 7, 1697, 2265, 5259, 12, 3, 2374, 421], [5260, 146, 1, 58, 5261, 65, 297, 95, 174, 149, 647, 57, 716, 95, 174, 250, 65, 38, 174, 1663, 259, 808, 6, 34, 483], [5262, 240, 73, 42, 19, 98, 5263, 5264], [5265, 86, 29, 59, 28, 178, 34, 86, 1698], [5266, 5267, 5, 190, 648, 6, 1, 27, 413, 24, 5, 649, 149, 420, 1, 18, 45, 61, 26, 5268, 380, 35, 5269, 126, 10, 257], [64, 12, 3, 470, 5270, 14, 5, 470, 337, 2, 399, 5271, 5272, 5273, 5274, 1, 66, 1, 66, 1, 5275], [5276, 39, 2, 122], [343, 679, 5277, 5278, 5279, 6, 3, 813, 8, 5280, 17, 730, 470, 5281, 813, 245, 15, 186], [13, 16, 117, 13, 24, 50, 5282], [5283, 146, 1699, 112, 67, 29, 7, 161, 48], [325, 24, 61, 5284, 11, 2375, 19, 2, 39, 2, 5285, 84, 10, 5286, 942, 53, 23, 4, 117, 31], [5287, 5, 417, 489, 275, 15], [225, 1168, 11, 5288, 136, 721, 5289, 12, 195, 2, 41, 83, 6, 4, 2014, 444, 5290, 5291, 27, 175, 46], [383, 152, 10, 1147, 87, 127, 24, 1903, 574, 15, 13, 24, 50], [1204, 1, 156, 5292], [336, 37, 138, 5293, 324], [8, 1349, 17, 5294, 14, 5295, 17, 1529, 1666, 406, 113, 5296, 29, 307, 5297, 1868, 5298, 67, 111, 2261, 5299], [184, 271, 18, 45, 4, 970, 1350, 24, 4, 78, 345, 2376, 2377, 9, 297, 1228, 78, 345, 5300, 5301, 63, 2128, 262, 5302, 37, 391, 991], [3, 1700, 5303, 1701, 5304], [5305, 110, 57, 430, 156, 14, 5, 5306], [2378, 18, 69, 4, 1598, 5307, 5308, 1702, 17, 5309, 577], [64, 12, 3, 2028, 113, 375, 646, 158, 1011, 5310, 5311, 6, 424, 9, 34, 12, 3, 1703, 348, 70, 96, 996, 9], [1704, 1, 27, 18, 24, 3, 5312, 33, 153, 110, 1098, 7, 86, 85], [13, 68, 1223, 1, 238, 3, 62, 717, 12, 3, 127, 182, 21, 754, 1433], [5313, 5314, 106, 909, 5, 5315, 1585, 1, 42, 66, 33, 5316], [13, 109, 186, 74, 601, 19, 4, 943, 477], [1, 18, 5317, 10, 3, 160, 54, 11, 36, 194, 416, 1, 1290, 5, 1003, 5318, 29, 243], [5319, 2379, 20, 174, 44, 2, 714, 131, 13, 14, 3, 5320, 789, 12, 3, 5321, 1522, 5322], [5323, 133, 257, 2380, 642, 13, 919, 1, 201, 58, 383, 107, 1, 99, 5324, 27, 161], [5325, 5, 138, 5326, 940, 439, 26], [569, 39, 5327, 3, 2381, 201, 39], [5328, 74, 1, 18, 1705, 9, 51, 49, 1616, 1, 1705, 469, 85, 1, 71, 105], [1, 19, 4, 488, 103, 355], [5329, 81, 18, 338, 4, 5330, 2, 5331, 9, 34, 27, 36, 5332, 1031, 6, 439, 291, 250, 4, 427, 151, 26, 162, 349], [5, 48, 6, 1272, 577, 46, 425, 770, 965, 51, 221, 5333, 38, 79], [1, 475, 5334, 102], [5335, 23, 86, 11, 337, 1430, 253], [310, 1608, 223, 322, 1, 307, 743, 5, 5336, 1, 475, 1545, 163, 24, 3, 232], [105, 124, 94, 2268, 7, 100, 1706], [5337, 2382, 2383, 374, 751, 402, 530, 130, 5338, 2384, 5339, 62, 249, 104, 52, 9, 27, 60], [5340, 1, 40, 2385, 308, 279, 608, 5341, 2386, 254, 102, 62, 125, 5342, 120, 189, 15, 786, 30, 87, 5343, 639], [5344, 1, 45, 466, 21, 929, 6, 604, 24, 402, 1, 72, 2387, 194, 57, 43, 166, 35, 4, 5345, 1459, 113, 5346, 57, 160], [22, 97, 28, 19, 5347, 38, 79, 330, 221, 9, 18, 4, 2388, 1707], [5348, 95, 1, 96, 5349, 49, 2389, 5, 1106, 55, 4, 1472, 5350, 286, 5351, 2, 2390, 32, 2391, 1351, 10, 596], [5352, 1318, 2392, 8, 239, 77, 128, 5, 911, 120, 19, 4, 5353, 51, 3, 2393], [798, 5, 5354, 8, 2359, 36, 606], [5355, 1, 72, 33, 53, 23, 25, 62, 640, 25, 30, 695, 5356, 6, 969, 2137, 375, 26], [5357, 348, 1345, 326, 2394, 116, 10, 2373, 34, 1708], [5358, 5359, 85, 7, 1352, 5360, 16, 5361], [5362, 1, 18, 806, 24, 3, 1028, 18, 3, 281, 31, 10, 98, 352, 63, 4, 445, 63, 17, 27, 11, 3, 229, 444], [5363, 22, 5, 5364, 272, 8, 9], [5365, 199, 672, 11, 5366, 18, 42, 58, 76, 2, 5367, 5368, 672, 12, 49, 2395, 2396, 63, 50, 5369, 1088, 20, 300], [8, 171, 5370, 6, 5371, 26], [1, 42, 58, 411, 8, 80, 2397, 5, 5372, 113, 5, 1272, 1195], [5373, 47, 1, 40, 76, 1120, 297, 17, 13, 460, 9], [43, 23, 83, 1046, 16, 173, 527], [609, 42, 36, 3, 78, 1990], [2398, 5, 5374, 6, 73, 5375, 5376, 5377], [2398, 13, 1409, 1194, 54, 1, 95, 1, 801, 32, 33, 1537], [5378, 9, 353, 5379, 21, 5380, 17, 27, 3, 429, 9, 27, 67, 9, 547, 165, 2, 5381, 21, 998, 9, 5382, 30], [5383, 140, 2399, 10, 3, 905, 17, 70, 338, 30, 87, 170, 12, 158, 54, 145, 4, 1884, 5384], [422, 8, 83, 63, 5385, 13, 91, 50, 63, 5386, 759, 37, 384, 14, 9, 332, 738, 88], [1265, 31, 218, 36, 221, 336, 1, 167, 39, 61, 1111, 103], [5387, 49, 5388, 5389], [5390, 1, 82, 5391, 38, 76, 7, 250], [5392, 452, 228, 772, 5393, 69, 4, 28, 31, 221, 18, 45, 30, 144, 2, 39, 2400, 223, 233, 364, 119], [5394, 463, 110, 32, 3, 114, 67, 1, 71, 192], [1709, 8, 1038, 1000, 15, 131, 26, 6, 13, 61, 854], [46, 53, 23, 775, 1710, 2, 221], [4, 132, 153, 24, 5395, 6, 26, 13, 1604, 5396, 895, 60, 158, 1711, 1, 95, 5397, 29, 2, 1069], [5398, 53, 19, 2401, 662, 12, 5399, 1712, 5400], [5401, 124, 45, 4, 2402, 5402, 2403, 1979, 3, 429, 8, 1, 37, 1041, 19, 4, 2404, 5403, 864, 2, 650], [779, 185, 168, 87, 1203, 46], [124, 136, 152, 21, 4, 590, 768, 5404], [1, 99, 1, 461, 207, 195, 130], [5405, 5406, 626, 5407, 5408, 992, 5409, 1101, 128, 4, 5410, 2210, 148, 19, 4, 2405, 2203, 1920, 33, 389, 2, 1301], [11, 50], [18, 1241, 2406, 63, 1, 75, 97, 186, 1, 93, 59, 5411, 20, 89, 23, 186, 67, 1, 5412, 9, 72, 13, 134, 1015, 91, 618, 10, 4, 235], [106, 2, 35, 30, 24, 356, 71], [5413, 7, 6, 15, 375], [5414, 689, 2, 3, 5415, 12, 5416, 45, 3, 5417, 5418, 37, 80, 5419], [1, 40, 100, 20, 544, 1, 156, 9], [5420, 1, 66, 2, 399, 5421], [3, 40, 5422, 8, 22, 4, 184, 396, 12, 232], [1, 167, 189, 4, 692, 503, 1542], [521, 4, 1003, 1, 72], [13, 294, 10, 50], [1, 99, 1, 148, 56, 345, 2407, 14, 100, 183, 5423, 5424, 2408, 34, 86, 10, 213, 331, 725, 1269, 1713], [5425, 207, 5, 1632], [30, 1714, 38, 237, 5426], [8, 145, 5427, 8, 203, 62, 182], [5428, 10, 1091, 18, 245, 15, 1205, 20, 5429, 1, 71, 799, 188, 10, 84], [5, 100, 1054, 14, 345, 201, 50, 440, 89, 56, 77, 1, 35, 200, 100], [5430, 1, 19, 247, 46, 20, 5431, 129, 23, 28], [5432, 1506, 25, 5433, 1567], [1715, 1073, 1230, 34, 24, 2409, 84, 48, 14, 738, 22, 115, 108, 21, 9, 68, 1, 71, 22, 171, 65], [5434, 311, 27, 28, 1, 97, 36, 1, 18, 45, 505, 101, 4, 1622], [13, 91, 5, 5435, 268, 75, 45, 3, 5436, 119], [5, 1971, 5437, 15, 490, 1, 410, 9, 5438, 2, 25, 474], [5439, 1113, 104, 22, 5440, 1244, 4, 319, 12, 283, 5441, 455, 74, 65, 73, 18, 42, 167, 58, 183, 80], [243, 76, 41, 1, 133, 3, 100, 886, 364, 290, 1, 2410, 5, 1956, 221, 20, 9, 27, 1121, 118, 46], [5, 640, 5442, 11, 5443, 2411, 5444, 27, 4, 615, 123, 2412, 304, 4, 1641, 4, 655], [5445, 187, 186, 253], [232, 232, 39, 192, 173, 136, 48, 59, 281, 31], [5446, 5447, 112, 7, 5448, 216, 259, 1, 72, 104, 52, 9, 726, 13, 16, 5449, 17, 523], [18, 45, 61, 6, 1, 45, 2, 5450, 5451], [5, 1716, 5452, 410, 11, 5453, 8, 44, 2, 23, 4, 172, 6, 5454, 31], [5455, 84, 50], [5456, 207, 7, 995, 233, 36, 70, 18, 273, 158, 5457, 1076, 10, 3, 157, 204, 141, 5458, 5459, 233, 28, 280], [11, 5460, 5461, 5462, 346, 230, 860, 3, 2413, 11, 5463, 75, 5464, 2, 260, 5465, 6, 1023, 15, 2, 189, 2414, 2413], [8, 165, 2, 825, 34, 76, 2, 260, 100], [5466, 8, 4, 28, 2415, 5467, 20, 210, 1717, 2, 1087, 3, 5468, 1122, 5469, 10, 3, 5470, 2416, 5471, 8, 80, 5472], [5473, 1, 120, 58, 9, 27, 5474, 31, 153, 1, 97, 36, 310, 4, 103, 1182, 1, 82, 3, 5475], [2417, 1, 5476], [5477, 348, 25, 944, 5478, 1172], [25, 816, 34, 6, 13, 22, 61, 51, 50, 208, 486], [5479, 591, 30, 1, 97, 57, 14, 3, 5480, 11, 3, 5481, 1, 82, 283, 141], [5482, 1, 82, 327, 139], [5483, 42, 1123, 5484, 627, 23, 86, 11, 5485, 134, 82, 289, 483], [5486, 212, 5487, 20, 1, 42, 19, 264, 127], [60, 2, 39, 61, 162, 349], [3, 2418, 12, 3, 2346, 8, 5488, 1, 42, 166, 58, 52, 2, 155, 60, 9, 20, 263], [16, 1, 97, 36, 364, 2419, 541, 10, 15, 1, 43, 414, 108, 2420, 26], [5489, 5490, 531, 10, 33, 1880, 5491, 640, 20, 73, 29, 75, 1319, 3, 5492, 5493, 728, 5494], [168, 4, 340, 10, 3, 160, 54, 11, 4, 172, 235], [124, 2421, 14, 5495, 1310, 6, 2025, 5496, 1, 142, 19, 69, 9, 185, 5, 477, 6, 22, 266], [103, 342, 31], [5497, 37, 1, 43, 236, 1353, 562, 16, 1, 321, 55, 65, 399, 1426, 562], [5498, 9, 270, 227, 36, 5499, 1121, 17, 391, 24, 382, 3, 359, 3, 619, 27, 11, 487, 51, 143, 20, 111, 489, 41, 17], [413, 11, 3, 1189, 12, 5500, 5501, 1, 156, 328, 327, 932], [18, 45, 30, 10, 50, 1111, 176, 240, 78, 47], [5502, 3, 223, 45, 16, 103, 16, 897, 1, 27, 16, 188, 10, 247, 33, 92], [87, 80, 170, 85, 2096, 80], [664, 2422, 50, 11, 204, 170], [5, 5503, 18, 197, 2, 5504, 48, 2, 2239, 1, 142, 19, 4, 381, 31, 12, 878, 758, 12, 15], [14, 5, 121, 2, 50], [163, 24, 59, 220, 272, 299, 33, 5505, 1681, 15, 1592, 2423, 63, 1003, 549, 5506, 5507], [270, 383, 66, 15, 2, 133, 116, 4, 2377, 10, 485, 5508, 1402, 1, 2143, 89, 23, 34, 127], [49, 5, 933, 1613], [363, 4, 454, 250, 3, 2243, 12, 4, 559, 1964, 14, 3, 1546, 12, 4, 886, 6, 5509, 3, 303, 2424, 22, 2425], [5510, 1, 66, 2, 58, 315, 5, 5511, 6, 214, 29, 5, 5512], [71, 165, 2, 825, 34, 110, 139, 41, 52, 73, 41, 21, 37, 1865, 10, 281, 139], [162, 7, 303, 5513, 10, 22, 5514, 454, 24, 1912, 917, 70, 69, 114, 999, 1022], [336, 5, 284, 8, 706, 15, 278, 133, 15, 97, 151], [153, 9, 1081, 21, 392, 54, 21, 658, 5515, 2426, 21, 4, 859], [86, 8, 4, 943, 1689, 5516, 5517, 292, 3, 5, 5518, 122, 5519, 945, 8, 305, 230, 24, 5520, 1107, 5521, 241], [9, 68, 5522, 15, 67, 1, 56, 5523, 731, 178, 605, 605, 605, 605], [2427, 39, 10, 9, 688, 29, 3, 177, 6, 5524, 29, 16, 347, 1, 66, 64, 13, 419], [5525, 7, 66, 2, 39, 2, 3, 431, 9, 1341, 11, 217, 907, 25, 508, 6, 13, 60, 2, 50, 34, 1986, 562], [2428, 1718, 5526, 677, 2429, 920, 29, 28, 20, 42, 5527, 5, 16], [354, 31, 8, 84, 24, 138, 6, 13, 1079, 5528, 2215, 20, 5529, 332, 402, 13, 413, 250, 3, 415, 12, 3, 249, 700, 450], [18, 254, 1110, 6, 68, 298, 283, 335, 170, 12, 102, 226, 48], [5530, 1, 72, 5531, 94, 743, 73, 201, 275, 15, 189, 9], [294, 79, 38, 294, 2430, 12, 5532, 1346, 2431, 603, 5533, 6, 5534, 5535, 816, 5536, 318, 88, 5537, 5, 299, 8, 5538, 1719], [5539, 2432, 1888, 140, 1, 35, 110, 25, 1720, 101, 57, 26], [19, 2, 137, 438, 84, 2, 35, 5, 345, 1497, 623, 343, 109, 4, 5540, 11, 292, 402, 84], [5541, 24, 2433, 26, 74, 2084, 1, 95, 1, 96, 75, 133, 9, 10, 610, 1354, 20, 304, 13, 134, 19, 2, 401, 2434, 286, 4, 82], [5542, 1073, 20, 1, 43, 567, 61, 490, 5, 149, 29, 134, 39, 192, 14, 5543, 36, 87, 141, 185, 17, 63, 1, 201, 56, 116, 10, 36, 87, 530], [5544, 105, 5545, 9, 253, 16, 103, 1, 27, 582, 185, 62, 88, 17, 73, 129, 75, 234, 335, 2435, 5546, 105], [28, 92, 91, 2, 219, 1219, 68, 1349], [5547, 81, 2436, 59, 228, 434, 15, 1289, 892, 15, 16, 377], [5548, 1, 58, 1, 197, 5, 190, 61, 6, 101, 3, 54, 1, 45, 61, 9, 27, 294, 1, 120, 66, 2, 5549, 7], [68, 412, 2, 290, 995, 30, 16, 294, 145, 1355, 447, 20, 25, 246, 310, 4, 90, 182, 2, 103, 25, 123], [5550, 5551, 5552, 6, 5553, 2437, 30, 21, 748], [596, 139, 17, 29, 2438, 14, 100, 245, 15, 117, 343, 179, 1470, 6, 250, 114, 272, 22, 15], [5554, 33, 8, 2173, 51, 2248, 509, 182, 291, 22, 1188, 21, 3, 100], [165, 2, 136, 30, 21, 583, 2, 5555, 46, 29, 22, 1236, 380, 18, 305, 9, 24, 9, 353, 28, 5, 601, 29, 990, 119], [5556, 20, 25, 22, 14, 5557, 1721], [5558, 147, 1, 120, 620, 9, 18, 5559, 9, 25, 16, 5560, 1309, 10, 5561, 306, 83, 24, 1300, 2439, 8, 5562, 5563], [5564, 22, 5565, 5566, 2440, 5567, 2441, 266, 2442], [82, 299, 799, 79], [5568, 55, 3, 703, 5569, 8, 18, 1286, 5570, 5571, 5572, 5573, 70, 53, 587, 10, 9, 21, 184, 2117, 5574], [5575, 173, 178, 136, 2, 5576, 13, 854, 5, 226, 8, 837, 467, 57, 178, 750, 110, 20, 1, 43, 290, 12, 478], [5577, 121, 2, 5578, 9, 10, 7, 486], [13, 68, 582, 59, 442, 576, 5579, 5, 1072, 1, 197, 224, 3, 1722, 221], [5580, 1, 72, 13, 460, 7], [412, 5581, 24, 32, 355, 2443, 5582, 29, 5583, 6, 42, 99, 2, 275, 281, 139, 58, 33, 245, 15, 16, 1104], [225, 2444, 5584, 83, 332, 5585, 1, 68, 66, 1653, 2445], [53, 23, 168, 24, 3, 1198, 5586, 588, 759, 17, 726, 244, 37, 5587, 2446, 14, 796, 1086], [198, 2, 3, 515, 6, 45, 5588, 68, 103], [263, 13, 16, 11, 3, 994, 2, 5589, 14, 543, 5590, 4, 78, 5591, 6, 1187, 26, 103, 211, 8, 1, 128, 19, 402, 1619, 2, 749, 26], [13, 919, 5, 177, 149, 226, 8, 850, 101, 4, 2447, 6, 5592, 282, 512, 1, 96, 155, 113, 41, 60, 9, 13, 80, 262, 895], [5593, 5594, 5595, 32, 123, 5, 5596, 284, 764, 208, 1, 75, 82, 7], [287, 33, 2216, 1, 43, 166, 122, 14, 5, 31, 91, 94, 30, 376, 204], [2448, 5, 5597, 63, 1356, 130, 161, 14, 3, 458, 21, 213, 20, 5, 5598, 1192, 192, 22, 172, 390, 63, 5, 929, 282, 30, 2, 9, 24, 3, 812], [5599, 9, 5600, 5601, 2449, 282, 87, 5602, 96, 23, 30, 2, 204, 10, 5603, 781, 142, 19, 313, 3, 5604, 151], [5605, 2450, 428, 584, 29, 7, 2220, 4, 2451, 5606, 299, 113, 5607, 9, 11, 734, 36, 9, 132, 50, 1, 66, 4, 2451, 769], [13, 320, 176, 6, 5, 2452, 918, 1536, 36, 25, 44, 2, 231, 4, 1264, 25, 55, 77, 1, 314, 2453, 11, 9, 1, 120], [1, 18, 937, 91, 5, 879, 101, 565, 3, 31, 91, 1116, 152, 3, 2339, 6, 5, 2454, 8, 706, 15, 6, 18, 45, 4, 5608, 11, 5, 809, 792, 47], [5609, 46, 1, 97, 36, 1074], [13, 890, 656, 9, 27, 5610, 33, 5611, 63, 26, 25, 22, 63, 1, 19, 5, 5612, 14, 913, 39, 399, 4, 1723, 12, 877, 1, 42, 5613, 227, 425, 47], [1, 1101, 5, 465, 5614, 18, 26, 67, 111, 197, 10, 610, 193, 1, 201, 23, 451, 143, 10, 4, 319, 530, 376, 65, 1724, 126, 9, 27, 246], [5, 190, 210, 5615, 440, 279, 7, 5616, 1, 461, 7, 130, 2, 28, 2, 23, 300], [5617, 74, 132, 121, 2, 133, 15, 66, 59, 2455], [30, 237, 10, 2456, 85, 138, 1725, 274, 85, 4, 125, 91, 191], [653, 5, 1335, 577, 577, 577], [5618, 5619, 242, 89, 180, 9, 1726, 1, 42, 36, 2457, 5620, 280, 107], [1, 66, 5, 5621, 1, 156, 229, 1, 93, 4, 1124, 12, 739, 235, 13, 24, 9], [5622, 1, 58, 17, 253, 7, 238, 34, 14, 3, 2458, 5623, 67, 70, 198, 2, 5624, 1727, 38], [349, 45, 16, 79, 50, 2, 41, 46, 6, 194, 352, 5625, 274, 45, 1303, 2, 41, 266, 84], [5626, 1, 99, 1, 148, 133, 49, 50, 23, 4, 785, 742, 13, 37, 5627, 28, 241, 11, 50, 46], [38, 79, 50, 10, 4, 153], [5628, 14, 5, 468], [61, 21, 503, 199, 2459, 2, 41, 110, 11, 93, 12, 200, 5629], [18, 273, 217], [1728, 1728, 93, 2, 687, 30, 54, 10, 50, 1670, 447, 8, 123], [5630, 1916, 25, 22, 1, 97, 103, 26, 55, 65, 278, 18, 866, 15, 4, 115, 115, 329, 2460, 1339, 1357], [5631, 25, 22, 168], [1586, 2066, 231, 126, 151, 493, 59, 5632], [5633, 10, 2461, 2, 1358, 5, 5634, 523], [45, 5635, 11, 3, 1197, 46, 101, 203, 468, 5636, 1729, 1359, 15, 2, 295, 6, 493, 116, 467, 2462], [65, 556, 253, 9, 2463, 36, 246, 5637, 2464, 5638], [128, 64, 80, 31, 438, 2254, 5639, 5640, 5641, 175, 5642, 127, 5643], [306, 6, 508, 1, 41, 40, 33, 1005, 223, 163, 10, 4, 5644, 2, 39, 2, 138, 1, 42, 468, 98, 5645, 47], [1, 99, 1, 19, 5646, 829], [1697, 1360, 5, 537], [110, 41, 1, 19, 16, 199, 961, 21, 2465, 781, 1, 43, 35, 2, 116, 218, 173, 42, 72, 1, 71, 5647, 57, 77, 1, 42, 1730], [5648, 5649, 30, 1239, 186, 5650], [5651, 7, 329, 193, 12, 3, 5652, 358, 36, 3, 1941, 53, 19, 64, 38], [818, 818, 5653, 122, 2, 65, 62, 88, 24, 50, 332, 1449, 46, 85, 91, 2, 3, 778], [5654, 5655, 1270, 769, 5, 306, 11, 5656, 5657, 35, 2466, 5658, 189, 2467, 10, 5659, 401, 15, 590, 814, 483], [1024, 25, 217, 71, 205, 2468], [22, 16, 1283, 24, 50, 46], [117, 1, 238, 3, 1731, 5660, 5661, 11, 5662], [13, 26, 480, 4, 5663, 12, 5664, 415, 765, 501, 44, 2, 23, 16, 16, 5665, 327, 157, 402, 530, 37, 678, 10, 15], [81, 2, 1732, 2469, 14, 5, 2107, 340, 1, 18, 2470, 17, 5, 2108, 8, 60, 2, 705, 91, 330, 304, 13, 22, 44, 551], [5666, 1, 338, 2, 23, 2384, 985, 426, 1, 45, 5667, 4, 697, 64, 576, 518, 11, 158, 575], [610, 5668, 53, 23, 1068, 126, 419, 17, 5669, 23, 11, 5670, 32, 219, 235, 610, 8, 30, 11, 3, 259, 5671, 1442, 406], [1, 66, 1016, 1555, 173], [5672, 1, 400, 273, 5, 5673, 327, 139, 29, 1733], [393, 29, 3, 141, 12, 276, 1015, 2408, 5674, 41, 22, 564, 3, 93, 10, 4, 1734, 11], [1, 19, 2, 955, 5, 474, 6, 342, 5675, 364, 47], [818, 179, 95, 10, 17, 1, 82, 143], [2053, 5676, 519, 2, 232, 1, 27, 68, 188, 10, 9, 38], [5677, 1, 95, 627, 23, 243, 126, 5678, 1735], [176, 12, 165, 6, 109, 240, 48], [625, 106, 5679, 1736, 215, 4, 5680, 123, 3, 62, 125, 93, 5681, 5682, 25, 98, 222, 222, 625, 26, 18, 965, 5683], [5684, 819, 862, 106, 1244, 15, 372, 4, 235, 138, 1341, 84, 6, 13, 1223], [7, 58, 5685, 23, 132, 77, 1, 45, 2, 56, 5, 2471, 1, 82, 102], [5686, 162, 7, 1, 75, 19, 1318, 662, 12, 5687, 2130, 6, 60, 337, 662, 12, 1122, 197, 16, 53, 709, 14, 126, 37, 591, 51, 49, 1314, 208], [97, 103, 10, 1697, 2472, 5, 1485, 1250, 12, 1528, 24, 5688, 106, 2063, 405, 3, 5689, 11, 3, 406], [700, 5690, 32, 31, 54, 2, 1158, 47], [1, 99, 264, 1540, 80, 1039, 6, 518, 1012, 62, 88], [606, 372, 31, 24, 50, 46, 22, 166, 54, 204, 100, 22, 36, 1500, 63, 26, 4, 5691, 414, 11, 169, 237, 2188], [18, 313, 17, 62, 573, 397, 51, 7, 427, 506, 36, 3, 847, 217, 575, 10, 5692, 8, 2473, 227, 52, 473, 1026, 213, 215], [5693, 254, 1603, 6, 922, 354, 221, 11, 5694, 287, 52, 4, 182, 1, 5695, 2, 227, 10, 5696, 917, 545, 20, 5697, 843], [5698, 22, 44, 37, 149, 209], [5699, 5700, 154, 890, 1849, 113, 244, 22, 20, 1, 326, 94, 14, 4, 422, 11, 36, 87, 141, 18, 94, 14, 5, 190, 5701], [336, 1040, 1081, 21, 98, 5702, 5703, 12, 814, 5704], [282, 144, 10, 219, 25, 38, 220], [165, 2, 399, 562, 10, 3, 5705, 11, 5706, 150, 37, 241, 119], [37, 1659, 14, 5707, 24, 5708, 244, 274, 84, 44, 2, 5709, 21, 5710, 1, 53, 295, 2, 482, 421, 5711], [5, 190, 912, 30, 14, 15, 6, 648, 5712, 7, 909, 5, 190, 21, 49, 5713], [5714, 214, 1192], [325, 83, 937, 91, 193, 13, 168, 1318, 170, 14, 4, 181, 340, 1702], [8, 109, 68, 1349, 101, 5715, 5716, 3, 492, 2, 788, 4, 359, 2, 5, 5717], [5718, 140, 140, 938, 77, 7, 155, 16], [287, 25, 16, 220, 322, 1261, 22, 4, 618, 6, 495, 34, 24, 3, 1085], [55, 775, 55, 5, 1670, 447, 27, 1, 99, 1, 75, 69, 200, 125, 12, 9, 18, 193, 1, 42, 66, 2, 39, 2, 138], [165, 2, 314, 5, 537, 14, 83, 150, 2474], [5719, 1, 517, 224, 1, 5720, 1, 93, 87, 399, 200, 190, 1, 142, 314, 5, 2429, 11, 5, 649, 190], [946, 5721, 5722, 1, 27, 86, 2224], [18, 2469, 322, 14, 5, 5723, 6, 26, 13, 989, 110, 1396, 37, 92, 5724, 2, 704, 2082], [16, 349, 279, 220, 131, 26, 5725, 5726, 11, 3, 2475, 1, 72, 9, 665, 30, 2, 2433, 11, 3, 247], [5727, 28, 241, 1, 69, 357, 1241, 2, 3, 5728, 62, 249], [988, 704, 669, 1737, 103], [18, 657, 4, 5729, 12, 15, 611, 5730, 5731, 74, 5732, 559, 2476, 5733, 6, 5734, 570], [8, 44, 2, 5735, 2, 749, 30, 184, 6, 189, 2477, 12, 3, 62, 39, 24, 374, 540], [1702, 1, 238, 3, 5736, 2478, 5737, 12, 5738, 25, 26, 123, 5739, 5740, 505, 2478, 294, 318], [191, 10, 150, 37, 737, 127], [5741, 1, 42, 72, 5, 1361, 45, 15, 512], [5742, 77, 73, 5743, 9, 6, 866, 9, 2, 139, 73, 1738, 815, 10, 9, 2, 35, 34, 86, 20, 77, 73, 120, 1, 97, 103], [229, 10, 848, 2467, 2, 1268, 11, 134, 23, 16, 176, 24, 50, 84], [5744, 425, 549, 5745, 8, 22, 1427, 15, 533, 5, 100, 5746, 6, 26, 1, 19, 240], [5747, 1, 99, 1, 27, 24, 1853], [165, 2, 1969, 5748, 5749, 6, 620, 5, 1739, 2479, 24, 3, 316, 54, 8, 68, 246], [92, 267, 181, 837, 223, 46], [5750, 1, 99, 139, 129, 18, 305, 5751, 558], [5752, 490, 1, 27, 21, 531, 139, 214, 19, 9, 32, 31, 14, 276, 6, 80, 29, 187, 5753, 26, 13, 5754, 11, 5, 468, 230], [110, 41, 1, 234, 168, 10, 1275, 17, 42, 41, 3, 5755, 5756, 1621, 2480, 24, 5757, 8, 28, 341], [5758, 5759, 420, 10, 5760, 79, 197, 12, 3, 153], [5761, 1362, 60, 1583, 120, 36, 9, 228, 198, 606, 353, 5, 1967, 135, 120, 564, 37, 27, 5762, 353, 108], [499, 5763, 10, 50, 466, 20, 13, 3, 128, 64, 83], [5764, 5765, 25, 117, 17, 1, 43, 527, 2, 7, 11, 5766, 5767, 113, 5768], [5, 761, 1363, 5769, 1572], [5770, 160, 293, 51, 7, 5771, 1644, 13, 28, 1340, 225, 24, 819, 280, 486, 52, 29, 7, 30, 2, 483], [67, 9, 1174, 9, 2481, 1, 564, 33, 5772, 79, 38, 65], [16, 549, 24, 863, 16, 16, 16, 79, 549], [5773, 77, 7, 252, 15, 7, 29, 498, 1, 53, 23, 2115, 2, 2482, 7, 21, 5, 2483, 78, 5774, 5775, 5776], [663, 2, 927, 152, 2, 3, 62, 450, 1591, 141, 2, 39, 6, 85, 13, 344, 2, 5777, 204, 308, 530, 20, 10, 26, 48, 2, 732], [6, 83, 2426, 3, 153, 6, 16, 1081, 3, 50, 125], [5778, 5, 1740, 1664, 15, 5779, 5780, 5781, 14, 5782, 861, 1056], [5783, 5784, 5785, 1, 66, 5786, 529], [5787, 289, 1, 261, 16], [62, 194, 1741, 12, 1225, 5788, 231, 127, 337, 1, 69, 37, 563, 28, 285, 5789], [5790, 23, 503, 225, 111, 244, 1149, 203, 2484, 196, 45, 215, 17, 5791, 1106, 1118, 193, 595, 25, 22, 251, 2, 23, 807, 14, 5792], [13, 176, 12, 9, 20, 279, 1, 40, 143, 87, 79, 87, 275, 39, 5793, 112, 1, 39, 469, 349], [93, 479, 194, 352, 1742, 1362, 5794], [5795, 1563, 716, 41, 7, 93, 278, 2, 527, 2, 209], [1253, 16, 103, 1, 148, 23, 451, 2485, 84], [62, 340, 11, 5796], [10, 59, 624, 1, 43, 1743, 4, 1744], [207, 29, 32, 3, 2486, 51, 1547], [5797, 5798, 76, 2, 41, 314, 4, 391, 14, 2347, 5799, 9, 201, 41, 9], [16, 199, 999, 16, 164, 54], [5, 160, 52, 1614, 2, 23, 392, 1125, 8, 26, 393, 193, 65, 1, 42, 58, 110, 1, 18, 58, 1, 97, 36, 854], [5800, 140, 3, 5801, 1515, 24, 5, 610, 18, 1290, 152, 21, 32, 12, 3, 5802, 17, 934, 48, 2, 36, 3, 5803, 411, 8, 115, 117], [79, 2, 5804, 38, 660, 54], [1074, 5805, 5806, 5, 938, 27, 44, 34, 21, 3, 1222, 12, 327, 178, 6, 135, 521, 30, 21, 143, 5807], [5808, 51, 203, 182, 27, 132, 120, 394, 383, 966, 2487, 119], [1, 339, 5809, 4, 5810, 12, 2149, 185, 46, 1477, 2, 32, 3, 139, 2193, 449, 3, 5811, 5812], [279, 5813, 702, 168, 1, 27, 188, 2, 584, 421, 12, 52, 1, 2488, 38], [5814, 283, 288, 1745, 255, 922, 5815, 47, 6, 67, 70, 42, 2489, 5816, 1, 201, 414, 387, 2, 891, 1120, 2, 234, 690, 922, 39, 122], [5817, 223, 1938, 3, 219], [1744, 363, 4, 5818, 25, 259, 22, 5819, 105, 5820], [5821, 370, 23, 132, 2, 19, 232, 25, 94, 123, 720], [18, 45, 1112, 5822, 562, 25, 2047, 1, 362, 2, 23, 16, 79, 724, 321, 399, 562, 10, 200, 182, 157, 125, 38], [5823, 363, 435, 12, 1314, 214, 475, 851, 3, 5824, 63, 1, 455, 2, 23, 64, 12, 5825, 117], [510, 26, 1, 97, 103, 17, 1, 5826, 143, 266, 279, 110, 29, 222, 139, 16, 330], [811, 2363, 5827, 5828, 5829, 262, 3, 2120, 43, 707, 2, 700, 3, 1207, 575, 9, 1364, 15, 76, 79, 1, 82, 5830], [5831, 1, 313, 3, 271, 60, 5832, 107, 5833, 104, 379, 389, 5834, 805, 13, 75, 582, 5835, 53, 567], [895, 60, 5836, 6, 76, 1, 71, 44, 2, 5837, 5, 5838, 77, 1, 71, 1604, 269, 5839, 2490, 518], [13, 36, 16, 225, 6, 1, 19, 37, 64, 2, 527, 2, 1, 72, 1, 71, 44, 2, 39, 14, 766, 6, 180, 621, 309, 1012, 244, 17, 53, 5840], [5841, 510, 7, 120, 166, 876, 15], [5842, 916, 367, 1, 69, 4, 2491, 5843, 215, 5, 789, 6, 26, 25, 5844], [233, 36, 40, 282, 179, 341, 287, 5, 267, 8, 1026, 5845, 152, 1, 93, 3, 1075], [82, 5, 5846], [5847, 105, 10, 3, 1733, 31], [5848, 94, 86, 159, 2492, 38, 5849, 7, 43, 122], [18, 487, 48, 51, 301, 181, 28, 26, 18, 578, 59, 739, 63, 145, 735, 36, 15, 1654, 50, 24, 356, 71, 2493, 224, 40, 632], [1, 66, 5, 2494, 944, 16, 176, 12, 2495, 5, 988, 29, 5850, 423, 6, 13, 97, 36, 437], [5851, 649, 69, 4, 5852, 48, 11, 3, 1746], [13, 145, 754, 2171, 62, 182, 104, 16, 117, 291, 64, 12, 5, 637, 5853, 13, 44, 2, 82, 7, 754, 1433], [5854, 8, 152, 224, 839, 121, 1, 142, 334, 505, 3, 5855, 3, 1060, 27, 181, 79, 1315, 101, 1259, 1358, 12, 211], [5, 802, 42, 166, 167, 520, 33, 237], [5856, 323, 42, 23, 117, 70, 69, 114], [2448, 2034, 86, 665, 5, 1020, 5, 164, 2496, 446, 145, 3, 407, 16, 1, 43, 260, 3, 5857, 471], [1204, 1, 156, 9, 67, 1, 66, 2, 122, 20, 1, 43, 568, 2, 705, 552], [14, 3, 190, 21, 1327, 165, 2, 236, 34, 315, 469, 21, 5, 190], [528, 323, 1, 99, 5, 938, 534, 17, 121, 795, 15, 104, 16, 330, 12, 57, 119, 5858], [1, 40, 5, 78, 1327, 1105, 38, 103, 3, 5859, 5860, 27, 790, 34], [16, 5861, 11, 672, 13, 5862, 177, 296, 20, 5863, 1, 93, 1898, 25, 4, 2497, 302, 13, 4, 296, 12, 5864], [1, 43, 236, 5, 604, 14, 100, 245, 9, 5865, 2, 5866, 102], [5867, 13, 11, 3, 406, 5868, 791, 99, 7, 130, 5869], [5870, 13, 22], [105, 212], [5871, 546, 107, 140, 1, 334, 43, 35, 9, 1, 18, 600, 4, 1126, 74, 65], [124, 273, 32, 5, 1739, 1097, 16, 117], [1, 18, 5872, 4, 78, 2498, 1936, 5873, 14, 1343, 26, 1, 43, 41, 9, 118], [1, 82, 5, 149, 6, 1, 66, 2, 39, 61, 2, 56, 1747, 5874, 5875, 6, 5876], [5877, 107, 28, 1099, 43, 236, 4, 2094, 629, 1000, 1056, 1637, 280, 331, 1313, 14, 5, 496], [3, 5878, 557, 5879, 93, 2, 305, 5, 330, 5880, 456, 558, 111, 106, 87, 184, 5881, 11, 203, 5882], [5883, 75, 5884, 4, 660, 807, 280], [5, 1498, 577], [373, 4, 1708, 396, 24, 5885, 99, 3, 431, 27, 5886, 14, 407, 276], [110, 41, 16, 199, 139, 133, 725, 1418, 21, 730, 5887, 6, 1548, 574, 17, 423, 5, 802], [5888, 463, 1, 43, 1440, 5889, 17, 5890], [22, 171, 28, 729], [5891, 65, 1, 1352, 867, 10, 5892, 20, 1, 58, 13, 22], [666, 30, 430, 39, 152, 472], [6, 1, 120, 1080, 3, 993, 1018, 33, 92, 16, 1, 71, 171, 5893, 425, 2499], [526, 30, 21, 4, 1589, 1065, 1571, 109, 144, 10, 50], [5894, 8, 848, 5895, 11, 102, 5896, 164, 270, 135, 58, 135, 106, 59, 2247, 942, 84], [595, 992, 467, 4, 2500, 190, 726, 5897, 49, 5898, 91, 51, 3, 474, 12, 3, 2501, 1, 19, 4, 230, 190, 139], [1, 82, 5, 5899, 335, 170, 123, 491, 27, 38, 910, 5900, 433, 102, 38, 20, 26, 258, 964, 48, 2, 5901], [75, 30, 6, 1871, 76, 112, 1, 179, 5902, 76, 172, 33, 1482, 48, 2, 50], [124, 547, 626, 60, 402, 984, 33, 219, 6, 43, 35, 215, 183, 12, 116, 166, 645, 17, 1, 40], [5903, 1, 362, 2, 41, 9, 1451, 2502, 496, 54, 20, 1, 72, 124, 26, 314, 9, 91, 332, 2503], [5904, 109, 5, 942], [298, 2, 39, 2, 122, 20, 5905, 201, 275, 143], [1, 45, 32, 188, 408, 1, 254, 98, 5906, 27, 5, 604], [11, 518, 5907, 271, 1032, 5908, 8, 44, 2, 290, 5909, 11, 3, 213, 73, 133, 3, 177, 5910, 218, 16, 33, 106, 15, 4, 202, 117], [106, 814, 5911, 664, 5912, 2504], [3, 2505, 120, 2405, 15, 5, 99, 62, 88], [25, 38, 103, 1, 430, 82, 9, 63, 856, 119], [5913, 5914, 570, 261, 1, 27, 1447, 56, 7, 86], [18, 325, 408, 52, 2, 19, 10, 881, 85, 53, 23, 109, 144, 10, 50], [5915, 42, 19, 418, 742], [18, 977, 25, 307, 22, 17, 237, 5916, 18, 2506, 30, 10, 2507], [5917, 141, 12, 219, 678, 197, 6, 73, 29, 44, 121, 38, 659, 67, 53, 138, 35, 83], [5918, 14, 3, 1263, 11, 3, 1672, 853, 225], [2508, 110, 3, 2454, 201, 577], [2035, 52, 2, 19, 38, 432, 6, 18, 14, 1276, 68, 225, 5919, 5920, 115, 5921, 46, 38, 79, 618, 62, 88, 22, 28], [5922, 9, 27, 15, 105], [1, 99, 9, 353, 317, 48, 2, 50], [5923, 47, 81, 5924, 734, 13, 117, 7, 29, 22, 83, 440], [90, 1, 1630, 5, 443, 46, 14, 3, 131, 789, 5, 649, 134, 35, 937, 24, 15], [179, 699, 24, 33, 54, 1572], [1464, 1, 261, 111, 353, 64, 12, 283, 2509, 5925, 20, 1846, 6, 5926, 111, 8, 528, 42, 2510, 1748, 5927], [61, 126, 6, 44, 1127, 2, 169, 10, 292, 87, 170, 46, 8, 44, 2, 23, 5928], [5929, 5930, 76, 29, 7, 2511, 5, 296, 1, 82, 102, 38], [5931, 5932, 5933, 87], [1, 82, 5, 840], [5934, 1479, 124, 159, 4, 1011, 202, 22, 79, 119, 5935, 473, 395, 602, 16, 2185], [5936, 33, 32, 253, 5937, 105, 60, 33, 1519, 37, 64, 142, 19, 2, 39, 1648, 33, 579, 67, 33, 726, 16, 79, 2, 7], [5938, 1248, 1, 261, 60, 17, 185, 1, 45, 16, 1593, 163, 10, 4, 1267, 2512, 10, 573, 1636, 85, 1, 45, 117], [86, 8, 622, 4, 5939, 44, 14, 21, 5, 2513, 5940, 1019], [247, 8, 34, 20, 25, 169, 54, 5941], [25, 340, 88, 1, 71, 558, 24, 1050, 11, 5942, 230, 135, 8, 205, 11, 169, 222, 5943, 8, 320, 569, 354, 5944], [5945, 290, 1488, 215, 3, 190], [5946, 4, 90, 5947, 5948, 9], [5949, 13, 105, 348, 9, 53, 35, 151], [5950, 16, 595, 375, 5951, 6, 5952, 29, 1210, 121, 11, 3, 1749, 1, 261, 73, 130, 1553], [2187, 2354, 96, 962, 203, 422, 113, 130, 44, 2, 19, 2, 612, 332, 2485, 67, 70, 96, 851, 3, 496, 104, 1472, 770], [64, 12, 5953, 149, 27, 18, 909, 11, 4, 1569, 1343, 291, 75, 1066, 14, 3, 789, 12, 3, 765], [5954, 407, 8, 798, 127], [5955, 5956], [5957, 5958, 284, 11, 5959, 47], [1, 36, 494, 20, 1, 42, 40, 9, 5960, 5961, 113, 454, 5962, 279, 7, 5963, 834, 6, 13, 150, 5964, 1475, 38], [8, 187, 2488, 11, 3, 406, 173, 723, 3, 979, 2073, 14], [956, 1, 18, 45, 30, 16, 1, 96, 231, 109, 144, 10, 138, 74, 5965, 5966, 6, 5967, 1035, 29, 161, 123, 20, 1, 53, 23, 11, 138], [310, 4, 306, 31], [566, 41, 7, 178, 156, 1551, 113, 216, 7, 179, 18, 567, 83, 10, 4, 31], [4, 5968, 1360, 5, 1163, 61, 5969, 101, 5970, 6, 3, 5971, 5972, 804, 3, 281, 121, 1155, 32, 5973, 393], [29, 73, 22, 2353, 5974, 1125, 5975, 83], [1645, 6, 30, 21, 4, 1365, 488, 6, 4, 5976, 875, 17, 1, 18, 43, 493, 3, 1201, 12, 4, 172, 2514, 31, 1227], [5977, 351, 921, 5978, 901, 5979], [177, 39, 35, 59, 80, 50, 159, 1, 156, 3, 905, 1, 96, 56, 322, 207, 25, 259, 6, 13, 413, 83, 5980, 192], [806, 14, 4, 545, 11, 1430, 11, 2515, 223], [1750, 128, 18, 373, 34, 17, 5981, 45, 849, 86, 665, 3, 64, 182, 1, 657, 14, 3, 5982], [5983, 37, 39, 18, 19, 2, 137, 332, 3, 392, 1068, 14, 276, 1, 18, 362, 5, 5984, 5985, 5986, 5987, 2362], [5988, 13, 22, 134, 56, 143, 639, 57, 134, 23, 21, 1428], [5989, 890, 117, 77, 1, 996, 30, 244, 29, 7, 360], [299, 5990, 8, 152, 5991, 551, 875, 63, 590, 768, 5, 331, 228, 198, 2, 3, 2456, 2516, 95, 135, 5992, 2181, 126], [117, 1541, 2517, 8, 5993, 10, 218, 812, 12, 5994], [2518, 5, 5995, 117, 31], [5996, 1751, 25, 175, 1, 569, 137, 83, 9, 136, 34, 224, 2519], [5997, 104, 175, 947, 1, 273, 5998, 2520, 14, 5999, 93, 2, 35, 48, 2, 9, 6000, 6001, 356, 2520], [1, 1663, 71, 2319, 33, 223, 207, 8, 3, 6002, 976, 69, 232, 36, 32, 125], [1, 1752, 98, 1054, 17, 380, 15, 180, 1532, 13, 6003, 1, 82, 102], [6004, 15, 63, 6005, 4, 249, 390, 46, 11, 6006, 1, 82, 9], [6007, 6008, 25, 117, 194, 416, 32, 393, 941, 9, 27, 54, 10, 216, 78, 6009, 75, 117, 31], [1, 99, 33, 6010, 217, 87, 125, 172, 814, 1571, 17, 1, 19, 129, 6011, 91, 9, 2521, 710, 24, 88, 20, 1, 19, 6012, 32, 31, 172], [6013, 92, 5, 599, 209, 209, 209, 37, 2522, 46, 519, 2, 6014, 30, 2523, 6015, 6016, 2074], [40, 11, 3, 540, 832, 139, 2071], [61, 186, 142, 493, 30, 14, 98, 1010], [1753, 173, 996, 3, 6017, 2524], [6018, 151, 22, 23, 3, 717, 21, 3, 211, 14, 3, 1061, 2184, 1, 42, 167, 23, 763, 6019], [5, 474, 8, 499, 590, 6020, 6, 6021, 1, 227, 6, 97, 4, 2525, 76, 14, 2501, 112, 1, 18, 26, 35, 2466, 185, 2526, 416], [44, 2, 180, 3, 62, 717, 12, 2527, 6, 85, 80, 732], [6022, 1366, 1, 40, 1699, 49, 940, 259, 25, 22, 588, 29, 7, 161, 2, 3, 703, 1564, 126], [25, 179, 4, 28, 92, 67, 1, 231, 91, 3, 31, 24, 3, 1350, 6023, 6024, 119, 37, 6025, 6026, 33, 71], [793, 2528, 2528, 6027], [6028, 73, 19, 87, 688, 135, 334, 771, 135, 1754, 3, 281, 64, 80, 1, 95, 9, 210, 19, 4, 691, 2529, 14, 6029], [6030, 1, 99, 111, 27, 40, 203, 309, 20, 1731, 203, 6031, 1097, 291, 393], [6032, 259, 346, 139, 29, 1755, 67, 434, 357, 27, 6033, 63, 6034, 6035, 22, 1756, 2407], [6036, 1, 40, 7, 1735], [33, 8, 389, 2, 5, 826, 1, 6037, 10, 33, 1128, 11, 819, 6038, 680, 6039], [6040], [6041, 147, 7, 66, 2, 189, 6042, 26, 6, 22, 15, 6043, 736, 7, 42, 40, 15, 440, 6044, 43, 137, 2, 256, 60, 3, 456], [6045, 1939, 2, 49, 6046, 20, 6047, 1643], [61, 18, 11, 54, 2, 82, 44, 2, 3, 6048], [1, 40, 187, 61, 5, 149, 29, 175, 48, 2, 1511, 84, 119], [6049, 27, 3, 368, 239, 717, 12, 3, 6050, 9, 27, 16, 6051, 66, 6052, 6, 6053, 2, 6054, 195, 30], [1, 40, 187, 4, 6055, 20, 1, 940, 6056, 6057], [2208, 6058, 110, 112, 7, 19, 2, 305, 3, 1722], [6059, 188, 13, 134, 495, 21, 149, 6060, 1, 201, 56, 733, 10, 531, 366], [6061, 146, 104, 3, 635, 17, 111, 43, 252, 15, 315, 469, 6, 17, 1, 43, 252, 143, 17, 1, 53, 189, 597, 12, 143], [6062, 22, 103, 69, 9, 11, 6063, 20, 18, 22, 6064, 6065], [150, 4, 103, 474, 31], [1890, 13, 176, 12, 1975, 7, 178, 2240, 196, 35, 183, 40, 48, 207, 8, 3, 40], [1, 843, 6066, 13, 919, 1, 95, 1, 948], [10, 59, 624, 1, 97, 4, 202, 1104, 17, 3, 384, 1154, 6067, 774, 467, 15], [5, 1072, 521], [689, 272, 34, 12, 5, 230, 117, 6068], [6069, 25, 109, 1588, 6, 6070, 593], [6071, 15, 38, 20, 43, 50, 16, 79, 61, 37, 384, 208], [2093, 13, 75, 638], [1, 19, 5, 6072, 708, 26], [6073, 25, 379, 67, 2100, 21, 2517, 16, 386, 124, 418, 2352, 2, 278, 1367, 497, 175, 113, 497, 2530], [6074], [6, 5, 875, 8, 2531, 186, 38], [6075, 759, 37, 18, 217, 6, 402, 6076, 1, 71, 310, 4, 6077, 7, 53, 40, 9, 119, 830, 6, 89, 133, 6078, 457, 7, 59, 6079], [6080, 33, 255, 15, 6081, 1095, 6082], [1044, 1, 27, 11, 6083, 1368, 2455, 6084, 914, 499, 2532, 127, 1129, 1129], [6085, 263, 1757, 105, 10, 6086, 7, 473, 6087, 45, 4, 948, 76, 7, 112, 65, 1758, 623, 74, 599, 349, 52, 112, 3, 835, 35], [1521, 3, 429, 1, 69, 4, 184, 1250, 12, 6088, 6089, 1759, 6, 6090, 6091, 6, 1, 19, 273, 116], [2533, 2533, 2534, 34, 103, 223, 119], [1369, 145, 6092, 226, 12, 6093, 6094, 5, 2325, 8, 6095], [6096, 104, 37, 114, 1, 75, 19, 2474, 109, 2, 122, 37, 959, 52, 1, 432, 6097, 6098, 1209, 97, 151, 126], [6099, 240, 2535, 1, 66, 4, 917], [6100, 110, 174, 100, 671, 29, 11, 6101, 26, 70, 43, 564], [6102, 1, 82, 2536], [8, 1254, 110, 3, 2452, 18, 1173, 6103], [261, 9, 27, 18, 1533, 221, 17, 130, 6104, 15, 2537, 119, 17, 5, 306, 106, 136, 48], [891, 1260, 27, 505, 101, 4, 443, 74, 722, 305, 143, 558, 425, 6105, 627, 401, 3, 331, 559, 98, 6106, 6107, 95, 291, 243], [13, 1082, 146, 109, 144, 10, 6108, 44, 192, 311], [37, 80, 466, 447, 48, 2, 50], [6109, 6110, 7, 2457, 15, 83, 14, 100, 1370, 2538], [32, 50, 6, 37, 354, 245, 10, 4, 1452, 1117], [53, 39, 48, 2, 138, 84, 1, 607, 6111, 208, 6112], [6113, 43, 928], [6114, 490, 363, 240, 361, 2, 41, 206, 661, 15, 2, 39, 215, 2234, 6115, 20, 1, 120, 707, 25, 38, 294, 10, 183, 6116, 26], [6117, 460, 6118, 101, 6119, 179, 1760, 1761, 67, 1, 256, 9], [6120, 2539, 497, 755, 3, 1259, 29, 944, 6, 73, 702, 312, 1371, 1371], [6121, 42, 6122, 6123, 2540, 2541, 3, 195, 57, 41, 234, 2542, 551, 51, 57, 258, 4, 6124, 6125, 11, 1683, 26], [212, 67, 8, 5, 78, 169, 161, 11], [6126, 106, 98, 1016, 1555, 1090, 26, 104, 18, 6127, 9, 233, 16, 28, 47, 805], [18, 487, 48, 51, 939, 3, 998, 27, 16, 869, 6128, 5, 6129, 29, 6130], [6131, 811, 6132, 6133, 11, 6134, 20, 571, 2, 6135, 46, 85, 61, 14, 318, 728, 6136], [442, 12, 99, 2513, 584, 1852, 6137, 6138, 85, 9, 129, 23, 1348, 6139, 6, 1, 129, 35, 192, 6140, 344, 6141, 6142], [27, 6143, 351, 368, 1220, 6144, 63, 85, 9, 547, 87, 232, 63, 63, 26, 71, 32, 6145, 11, 351, 6146, 6147], [11, 2068, 775], [6148, 147, 16, 52, 54, 57, 498], [497, 225, 1, 66, 2, 39, 34, 20, 32, 5, 1762, 19, 737, 74, 65, 45, 37, 378, 183, 121], [6149, 6150, 57, 87, 29, 47, 17, 331, 926, 6151, 228, 18, 746, 102, 285, 922, 1130, 4, 6152, 10, 9, 2543], [6153, 3, 741, 6154, 201, 2355, 124, 94, 165, 10, 4, 319, 170, 26, 6, 9, 196, 6155, 6, 1758, 183, 496, 12, 3, 776], [6156, 146, 570, 18, 17, 2479, 8, 33, 4, 1332, 1364, 15, 12, 283, 635, 1761], [1349, 1297, 282, 161, 48, 201, 23, 145, 2544, 118, 183, 54, 126], [6157, 6158, 1763, 100, 113, 5, 226, 53, 23, 2515, 22, 187, 387, 2, 313, 174, 397], [6159, 2545, 173, 913, 6160, 1932, 6161, 6162, 73, 6163, 227, 24, 15, 6164], [6165], [328, 1085, 21, 6166, 11, 3, 522, 85, 44, 2, 39, 56, 3, 1539, 24, 1056, 1394, 50, 84], [6167, 6168, 6, 6169, 131], [5, 404, 314, 4, 1436, 735, 971, 11, 3, 6170, 207, 3, 437, 112, 135, 35, 4, 2112, 33, 54, 14, 249], [22, 163, 409, 2, 87, 402, 170, 12, 1902, 6171, 2546, 6172], [1, 71, 1161, 5, 6173, 808, 6, 1, 19, 37, 64, 2, 311, 21], [2547, 1, 45, 4, 441, 2548, 6, 4, 202, 12, 4, 1734, 11, 91, 2, 50, 11, 337, 662, 119], [25, 442, 12, 4, 2139, 34, 187, 24, 3, 230, 20, 22, 451, 1117, 1, 42, 36, 9], [8, 582, 17, 889, 6174, 6175, 6176, 126], [6177, 1, 156, 6178, 6179, 25, 18, 22, 132, 2, 432], [27, 9, 216, 1, 297, 206, 197, 3, 6180, 718], [1, 72, 1764, 30, 8, 5, 382, 637, 780, 12, 187, 186], [6181, 622, 37, 64, 6182, 6183], [410, 758, 2, 56, 98, 6184, 85, 6185, 1033, 24, 3, 469, 6186, 120, 968, 9, 332, 1, 45, 48, 61], [6187, 13, 22, 460, 140, 140, 6188, 407, 14, 3, 625, 6189, 6190, 264, 155, 861, 6191, 20, 135, 6192, 21, 6193], [6194, 105, 2, 256, 60, 49, 404, 13, 1087, 49, 1131, 713, 12, 6195], [6196, 6, 1, 128, 18, 45, 3, 222, 64], [2549, 515, 549], [6197, 1, 19, 37, 6198, 20, 1, 93, 52, 218, 9, 8, 1, 569, 35, 2, 6199, 377], [4, 1765, 12, 6200, 6201, 18, 6202, 967, 15, 6, 6203], [6204, 6205, 2343, 5, 2428, 2008, 537, 12, 33, 1238, 18, 1116, 51, 5, 1132, 6, 45, 2290, 1766], [60, 2, 39, 2, 122, 363, 1051, 403], [62, 6206, 476, 426, 698], [1764, 4, 6207, 1338, 123, 91, 6208, 339, 23, 6209, 20, 26, 13, 38, 919, 2, 39, 48, 86, 6, 1, 66, 6210, 6211], [28, 6212, 25, 220, 322, 220, 6213, 22, 114], [1, 45, 1167, 11, 472, 6, 5, 342, 198, 6214, 1767, 6215], [6216], [16, 2550, 60, 1721, 1, 99, 1, 148, 39], [868, 658, 6, 2551, 6217, 492, 613, 6218, 106, 94, 373, 735, 11, 4, 2075, 858, 444, 516, 658, 130, 134, 82, 289], [13, 746, 4, 182, 796, 6219, 11, 873, 20, 1, 167, 23, 86, 10, 3, 6220, 12, 6221, 33, 153], [25, 508, 1, 43, 39, 2, 3, 6222], [595, 9, 8, 22, 243, 19, 6223, 24, 1591, 271, 2, 15], [1668, 484, 1, 94, 1156, 484, 32, 31, 6, 1, 45, 37, 378, 686, 1, 1029, 10, 3, 6224, 14, 3, 689, 2552], [395, 6225, 138, 26, 402, 125, 678, 85, 14, 2, 819], [5, 802, 29, 6226, 118], [1768, 5, 62, 31, 24, 50, 41, 1, 39, 11, 32, 1471, 30, 113, 163, 36, 4, 6227], [657, 1656, 6, 1657, 673, 684, 1, 72, 86, 109, 4, 2242, 244, 77, 3, 1692, 129, 12, 1342, 34, 485, 1345, 12, 33, 129, 12, 585], [6228, 105, 1, 307, 27, 593, 60, 333, 174, 1084, 244, 57, 142, 72, 12, 518, 6229, 1007], [28, 88, 1, 201, 23, 333, 985, 1509, 127], [18, 526, 30, 212, 1, 53, 99, 135, 353, 372], [1, 569, 542, 73, 1395, 15, 11, 3, 1085, 55, 126, 55, 1, 45, 83], [6230, 6231, 360, 863, 136, 14, 19, 114, 25, 318, 340, 37, 138, 6232, 393, 1719, 711], [74, 37, 1, 45, 3, 6233, 49, 839, 836, 1769, 6234, 9, 8, 183, 64, 58, 77, 765, 6235, 8, 6236, 1, 339, 23, 6237, 126], [6238, 74, 57, 305, 213, 84, 189, 17, 189, 17], [1, 19, 4, 488], [6239, 6240, 6241, 2553, 2554, 10, 6242, 1133, 1673, 2, 137, 332, 6243], [8, 75, 186, 14, 102, 160, 31, 12, 138, 1190, 33, 253, 44, 48, 2, 169, 26], [6244, 6245, 162, 7, 209, 221, 4, 50, 31, 63, 395, 294, 20, 69, 441, 6246, 2555, 46, 210, 455, 2556, 209], [336, 75, 19, 1124, 11, 5, 284, 51, 3, 1288], [6247, 25, 4, 2557, 906, 25, 735, 949, 55, 65, 324], [1, 167, 39, 2, 1848, 4, 1372, 6, 133, 4, 1372, 6248, 338, 2, 41, 17, 2558, 3, 54, 47, 1, 19, 36, 1455, 2524, 17, 1, 255, 51, 86, 377], [43, 35, 4, 1373], [6249, 2, 256, 3, 1074, 12, 6250, 14, 979, 1134, 11, 4, 1288, 14, 317], [6251, 52, 3, 437, 1, 129, 1256, 2, 19, 3, 533], [1, 82, 7, 6252], [6253, 15, 38, 6254], [46, 8, 22, 4, 28, 31], [106, 4, 590, 768, 6, 412, 2, 236, 4, 121, 2, 35, 1602, 12, 9, 101, 84], [405, 88, 24, 61, 859], [6255, 1, 18, 99, 1, 148, 39, 34, 21, 5, 149, 51, 2095, 838], [18, 45, 159, 21, 448, 65, 52, 1, 72, 8, 159, 602, 47, 26, 54, 10, 50], [2559, 63, 694, 29, 6256, 6257, 14, 4, 164, 765, 6258, 72, 111, 1754, 9, 115, 79], [64, 12, 3, 1462, 211, 21, 33, 2560, 37, 64, 1, 96, 718, 21, 24, 3, 415, 12, 5, 31, 1270], [425, 557, 8, 186, 118], [6259, 826, 12, 357], [298, 2561, 6260], [6261, 83, 1491, 3, 2562, 34, 2, 2563, 2232, 117, 60, 5, 2564, 2564, 280], [6262, 13, 14, 20, 22, 6263, 2565, 2309, 89, 23, 14, 6264, 125, 280], [6265, 1, 95, 9, 210, 17, 129, 744], [6266, 1, 99, 111, 27, 1421, 6267, 10, 6268, 47, 351, 140, 143, 161, 215, 3, 431, 8, 4, 28, 6, 103, 1150], [6269, 128, 198, 55, 386, 55, 3, 2062, 6270, 1469, 316, 6271, 2381, 208, 238, 2566, 281, 6272], [81, 2, 206, 10, 1850, 158, 608, 221, 109, 144, 2, 284, 30, 2, 6273, 517, 25, 68, 6274, 86], [6275, 107, 140, 2567, 15, 867, 554, 13, 36, 356, 1636, 615, 51, 6276, 6277, 279, 120, 457, 6278, 861, 14, 5, 345, 119], [715, 2568, 201, 23, 1068, 33, 153, 11, 2569, 2570, 89, 18, 399, 6279, 6, 500, 17, 332, 1, 96, 180, 715, 2568], [6280, 264, 40, 2, 295, 9, 20, 5, 6281, 43, 568, 2, 35, 4, 2571, 51, 6282], [48, 61, 51, 1190, 9, 32, 233, 3, 316, 20, 37, 6283, 6, 2037], [18, 45, 48, 51, 3, 898, 1075, 1563, 13, 799, 176], [64, 12, 5, 68, 28, 149, 8, 1149, 485, 504, 6284, 643, 102, 6285], [6286, 1, 1135, 1249, 1, 97, 17, 773, 216, 6287, 60, 3, 1013, 1493, 53, 128, 133, 15, 801, 350], [460, 3, 6288, 6289, 178], [1, 72, 9, 8, 54, 10, 15, 2, 1770, 3, 6290, 2572, 2, 6291], [124, 45, 4, 511, 1302, 476, 14, 6292, 6, 1, 744, 24, 511, 1, 6293, 47], [6294, 22, 16, 28, 131, 26, 171, 1205], [109, 59, 2573, 11, 15, 16, 1, 71, 144, 10, 3, 1028, 84, 363, 4, 1247, 11, 5, 1671], [153, 24, 406], [528, 1, 58, 1, 71, 38, 13, 11, 775, 222, 6295], [6296, 1, 96, 22, 622, 137, 10, 3, 78, 1771, 2, 136, 6297, 128, 6298, 34, 29, 16, 6299, 233, 2, 23, 6300], [6301, 1, 42, 260, 6302, 16, 123, 3, 384], [508, 118], [1, 179, 314, 6303, 272, 215, 3, 6304, 6305, 272, 10, 932, 11, 3, 95, 1, 35, 59, 1301, 2464, 196], [6306, 572, 135, 1352, 6307, 3, 369, 14, 214, 2574, 9, 252, 102, 258, 329, 107], [1, 238, 5, 557, 2321, 1, 99, 1, 148, 457, 102, 21, 15, 2, 5, 6308], [42, 97, 28, 148, 23, 6309], [6310, 74, 17, 6311], [6312, 33, 6313, 18, 6314, 32, 123, 5, 1126, 486], [6315, 22, 150, 341, 378, 24, 3, 2575, 629], [1704, 99, 1, 148, 20, 1, 303, 11, 6316, 6317], [6318, 1, 42, 19, 357, 89, 23, 62, 14, 3, 676, 1110, 5, 241], [905, 1, 82, 6319, 20, 135, 210, 82, 15, 48], [1296], [6320, 263, 6321, 104, 669, 22, 132, 2, 155, 6322], [150, 696, 2326, 2576, 514, 3, 6323, 2577, 741, 32, 1, 66, 2, 41, 8, 90, 50, 10, 7], [229, 10, 6324, 6325, 2, 1772, 443, 6326, 2, 35, 30, 55, 237, 55, 1, 112], [64, 12, 3, 2578, 195, 18, 585, 2, 15, 1568, 5, 1065, 423], [6327, 855, 31], [6328, 1, 45, 59, 6329, 28, 645, 20, 5, 422, 6330, 168, 16, 1, 43, 1743, 116], [1, 18, 66, 2, 40, 174, 826, 22, 174, 871, 113, 166, 174, 6331, 71, 1, 469, 6332], [6333, 147, 47, 54, 2, 863], [548, 6334, 6335, 6336, 2579, 6337, 6338, 667, 406, 6339, 6340], [1, 156, 2580, 139, 13, 310, 4, 2086, 38, 103, 6341], [6342, 10, 392, 25, 36, 17, 243, 89, 260, 9, 2, 6343, 5, 878, 91, 57, 18, 255, 15, 133], [6344, 546, 104, 577], [1, 42, 66, 613, 6345, 2, 305, 567, 1046, 212, 1518, 214, 8, 98, 239, 182, 1650, 10, 6346, 14, 3, 1190, 63, 1, 43, 137], [6347, 37], [479, 8, 2581, 126, 9, 33, 125, 1370, 8, 176], [1638], [18, 487, 61, 51, 2582, 13, 799, 186, 12, 2582, 6348], [6349, 462, 32, 3, 40, 264, 1261, 868, 1162, 10, 59, 6350, 6351, 131, 26, 536], [6352, 16, 134, 478, 10, 7], [6353, 131, 51, 3, 227, 12, 49, 100, 6354, 9, 2537, 7, 6, 929, 198, 34, 10, 301, 62, 88, 22, 588], [2583, 592, 31, 11, 6355, 2584, 128, 101, 3, 6356, 2, 19, 645, 1671, 6357], [1374, 10, 511, 6358], [206, 8, 6359, 46, 323, 269, 15, 72, 12, 5, 670, 138, 810], [6360, 72, 6361, 8, 205, 743], [13, 24, 3, 2269, 109, 5, 264, 13, 6362, 217, 73, 14, 847, 6363, 25, 134, 23, 4, 172, 31], [6364, 10, 59, 624, 1, 43, 293, 2, 49, 925, 20, 140, 9, 585, 2, 102, 59, 1358, 12, 296, 2231, 47], [44, 2, 4, 810, 311, 11, 6365, 6366], [1, 72, 13, 6367, 21, 5, 1213, 22, 38, 245, 15, 2585], [6368, 772, 2, 6369, 6, 404, 442, 12, 307, 1754, 143, 742, 111, 106, 2, 39, 48, 2, 3, 1355, 46], [69, 2, 6370, 4, 458, 2, 3, 6371, 46, 111, 771, 1, 19, 6372, 9, 6373, 15, 17, 25, 3, 128, 54, 1, 56, 5, 950, 11, 1773], [5, 331, 6374, 2423, 75, 11, 4, 6375, 6, 38, 6376, 10, 4, 6377, 240, 55, 117, 55, 4, 1205, 1316, 249, 222], [46, 27, 246, 209], [6378, 201, 23, 33, 757, 10, 79, 1041, 3, 54, 2, 6379, 215, 4, 115, 757, 1453, 339, 23, 161, 2, 98, 415, 388, 266, 73, 6380, 116], [75, 551, 6381, 6382, 26, 532, 10, 6383], [6384, 6385, 209, 20, 264, 19, 2, 39, 1774, 6, 9, 423, 47], [62, 88, 12, 1682, 14, 3, 515], [25, 259, 322, 6, 13, 44, 2, 749, 5, 31, 1030, 74, 65, 9, 412, 2, 23, 159], [528, 1, 43, 820, 6, 1, 42, 58, 110], [6386, 8, 439, 243, 6387], [231, 50, 87, 6388, 24, 6389, 22, 163, 409, 2, 9], [806, 11, 2552, 229, 10, 139, 2, 723, 30, 24, 3, 6390], [6391, 364, 6392, 24, 1147], [54, 2, 39, 783, 6, 85, 1, 334, 142, 39, 2, 169, 50, 11, 3, 71, 22, 163, 409, 2, 9], [289, 1, 1775, 215, 3, 1613, 104, 110, 1, 19, 4, 6393, 14, 5, 2054], [433, 1894, 62, 88, 6, 8, 16, 188, 291, 11, 3, 1294, 54, 6394], [6395, 81, 2380, 206, 8, 6396, 848, 16, 79, 204, 491, 11, 169, 1, 95, 57, 19, 4, 90, 502, 31], [28, 2586, 2, 7, 728, 6397], [6398, 2587, 1, 68, 95, 73, 1251, 9, 30, 17, 129, 23, 239, 77, 86, 8, 4, 431, 560, 11, 6399, 173, 349], [6400, 2588], [6401, 45, 9, 81, 1, 72, 89, 35, 5, 1418, 30, 11, 4, 202, 89, 35, 2, 6402, 185, 17], [511, 450, 27, 1175, 20, 900, 336, 2293, 24, 356, 74, 65, 2172, 269, 1776, 10, 509, 881, 16, 25, 32, 28], [8, 806, 11, 9, 1777, 2, 825, 34, 860, 2, 41, 14, 33, 47, 209], [6403, 147, 6404], [6405, 107, 13, 28, 1, 304, 16, 1, 542, 7, 53, 23, 11, 1778, 157, 125, 29, 7, 188, 150, 183, 737, 14, 1476, 208], [6406, 6407, 162, 7, 178, 324, 154, 38, 330, 324], [227, 847, 217, 12, 3, 31, 346, 883, 311, 3, 756, 227, 53, 19, 4, 202, 80, 6408, 6409], [5, 6410, 100, 533, 255, 15, 39, 6411, 107, 82, 7, 38, 54, 2, 863, 10, 5, 1255, 476, 1204, 311, 27, 6412, 63, 3, 286, 27, 6413], [1065, 381, 45, 17, 6414], [277, 34, 6415, 78, 6416, 161, 126, 2, 6417], [6418, 6419, 6420, 6421, 1312, 6422, 6423, 6424, 6425, 337, 6426, 2, 6427, 6428, 6429, 6430], [6431, 77, 7, 6432, 34, 3, 591, 6433, 10, 6434, 89, 1135], [6435, 180, 67, 7, 29, 558, 9, 8, 51, 6436], [288, 88, 21, 5, 753, 2589, 63, 6437, 6438, 797, 25, 674, 44, 2, 1779, 5, 30, 25, 52, 1, 93, 131, 26], [6439, 74, 287, 1, 261, 9, 27, 18, 14, 501, 47], [52, 4, 31, 11, 2590, 6440, 1221, 708, 6, 2591, 708, 6, 3, 247, 8, 1375], [109, 59, 6441, 6, 6442, 2, 348, 265, 15, 2, 22, 19, 16, 199, 6443], [6444, 1, 18, 43, 35, 341, 47], [6445, 65, 159, 6446, 7, 133, 15, 1136], [13, 6447, 17, 805, 2592, 6448, 1780, 540, 11, 1781, 6449, 63, 6450], [106, 45, 4, 441, 1082, 51, 6451, 11, 3, 247], [6452, 323, 1, 324, 7, 2, 49, 5, 6453, 52, 195, 29, 7, 663, 2, 256], [6454, 405, 4, 943, 523, 30, 365, 2, 56, 6455, 6456, 11, 6457, 6, 179, 108, 2, 56, 6458, 551, 95, 6459, 106, 4, 28, 412, 9], [6460, 21, 3, 164, 374, 25, 22, 55, 103, 55, 1, 261, 6461, 1677], [6462, 81, 1, 40, 3, 1315, 6463, 538, 104, 4, 90, 121, 2, 2593, 6, 676], [729, 2, 32, 6464, 654, 184, 6, 6465], [6466, 609, 17, 8, 1526, 1, 681, 41, 3, 316, 28, 241, 264, 40, 4, 1560], [6467, 251, 81], [6468, 6469], [6470, 25, 5, 248], [753, 487, 46, 6, 424, 4, 6471, 12, 5, 798, 61, 10, 15, 70, 320, 45, 6472, 6473, 594, 6, 198, 2, 2594, 54, 10, 1159], [6474, 6475, 6476, 311, 212, 6, 108, 248], [2595, 55, 41, 1, 1521, 2, 6477, 6478, 6479], [6480, 951, 951, 152, 22, 128, 71, 1, 22, 419, 20, 154, 731], [6481, 453, 2, 100, 52, 60, 4, 78, 821], [6482, 251, 234, 15, 1121, 81], [6483, 37, 6484, 57, 42, 19, 2, 39, 558], [6485, 107, 1, 56, 154, 109, 338, 2, 33], [469, 533, 107, 6486, 1211, 2, 293, 2, 3, 6487, 6488, 2447, 1, 2370, 19, 2, 35, 338, 2, 100, 160], [6489, 6490, 6491, 6492, 2596, 6493, 6494, 6495], [269, 4, 529], [2597, 1048, 140, 90, 6496, 19, 1228, 6497, 11, 116], [287, 25, 274, 262, 1, 97, 151, 6498, 30, 200, 6499, 31, 88, 32], [1782, 122, 65], [1307, 108, 481, 118, 43, 137, 10, 1040, 6, 340], [18, 45, 61, 1066, 11, 169], [6500, 29, 7, 134, 893, 2598], [6501, 47, 81, 6502, 4, 6503, 8, 5, 637, 379, 2235, 124, 980], [6504, 2599, 57], [60, 2, 180, 6505, 15, 2, 437], [2278, 19, 114, 6506, 1, 27, 86], [127, 1, 19, 1166, 1, 53, 180, 32, 720, 470, 384, 454, 6507], [2600, 21, 2601, 430, 40, 33, 228], [6508, 47, 180, 3, 6509], [6510, 1, 142, 19, 1705, 1544, 155, 216, 36, 17, 24, 355, 1, 400, 66, 2, 1135, 21, 7], [45, 59, 28, 2134, 221, 6511, 680, 14, 738, 200, 603, 4, 6512, 6, 85, 5, 222, 1115, 27, 595, 1077, 60, 15], [6513, 242, 242, 1, 681, 189, 9, 24, 474, 6514], [6515, 6516, 81, 10, 2258, 3, 6517], [183, 999, 679, 76, 2, 58, 67, 4, 6518, 412, 6519, 77, 25, 11, 4, 1703, 17, 210, 19, 4, 6520, 24, 3, 2371, 1, 42, 66, 2, 868, 9], [6521, 11, 98, 352, 146, 1, 40, 839, 294, 6522], [19, 2, 2602, 1438, 5, 342, 274, 1694, 25, 134, 35, 1767, 36, 2603], [6523, 146, 20, 571, 48, 61, 157, 6524, 188], [6525, 18, 45, 158, 6526, 730, 2604, 2, 2557, 21, 6, 154, 497, 131, 6527, 8, 16, 330], [6528, 6529, 7, 227, 36, 5, 222, 1742, 1716, 21, 17, 6530, 107, 7, 166, 45, 3, 316, 342], [108, 276, 795, 2, 6531, 2523, 31, 24, 3, 778, 171, 90, 11, 5, 1171, 659, 6, 6532, 1641, 6533, 1157], [528, 2587, 2, 17, 1252, 544, 291, 3, 128, 121, 2, 35, 1648, 3, 31], [6534, 6535, 6536, 30, 135, 8, 3, 64, 214, 45, 15, 2056, 57, 135, 8, 4, 184, 396, 35, 102, 1653, 930, 902, 6537], [666, 30, 2, 28, 271, 6538, 15], [263, 2374, 171, 218, 33, 8, 151, 262, 2573], [106, 383, 2605, 15, 2470, 76, 664, 220, 1610, 6539, 8, 388, 15, 2606, 6540, 1050, 6541, 6542], [2607, 6543, 175, 391, 7, 375, 227, 239], [76, 13, 134, 749, 5, 340, 177, 399, 6544, 1137, 288, 2608, 32, 24, 6545, 762], [6546, 81, 6547, 1, 681, 574, 1490, 6, 722, 1, 257, 41, 19, 6548, 1, 19, 504, 2609, 645, 2, 252, 7, 60], [5, 465, 45, 6549, 6550, 6, 1, 45, 240], [6551, 76, 27, 9], [452, 54, 7, 721, 4, 428, 17, 6552, 445, 4, 2610, 776, 6553, 63, 106, 337, 6554, 2518, 10, 6555, 2566, 7, 587, 3, 2611, 6556], [145, 3, 1968, 1102, 717, 14, 1647], [318, 355, 560, 141, 438, 1, 723, 6557], [6558, 263, 6559, 174, 3, 177, 107, 45, 6560, 6561, 1, 40, 57, 1712, 6562], [6563, 57, 2221, 6564, 536], [6565, 162, 7, 10, 6566, 15, 2, 80, 1445, 1210, 1783, 5, 100, 312, 676, 6567, 123], [75, 168, 14, 5, 436, 348, 9, 53, 23, 144, 10, 3, 705], [6568, 287, 862, 212, 6, 852, 6569, 1597, 6, 1050], [6570, 115, 251, 1424, 6571, 751, 5, 1424, 6572], [6573, 361, 117, 2, 56, 1893, 22, 11, 3, 698, 1, 58, 13, 22, 163, 2612, 2, 3, 1431, 695, 3, 978], [6574, 41, 7, 66, 3, 6575, 70, 19, 11, 3, 6576, 77, 7, 42, 6577, 298, 9, 1, 71, 144, 10, 9, 2, 39], [2404, 6578, 6579, 14, 6580, 651, 610, 6581, 125], [1724, 21, 15], [1, 1069, 3, 6582, 651, 10, 22, 888, 15, 4, 2613, 2614, 1007, 6583], [8, 1045, 34, 2, 6584, 2, 56, 102, 911, 354], [6585, 6, 1, 93, 4, 1562, 6586, 10, 3, 6587, 42, 19, 183, 6588, 420, 2, 1993, 418, 6589, 93, 4, 2615], [1715, 65, 4, 570, 1, 461, 434, 15, 6590, 641, 1352, 6591, 235, 1, 40, 2, 252, 59, 6592, 4, 2153, 12, 5, 504], [6593, 6594, 2616, 63, 6595, 26, 2617], [6596, 3, 6597, 8, 1092, 123, 144, 113, 22], [6598, 21, 3, 346], [3, 1639, 8, 150, 6599, 17, 29, 60, 402, 525, 774, 33, 92, 20, 73, 29, 910, 408, 60, 44, 2, 3, 6600], [6601, 822, 14, 2618, 49, 6602, 22, 38, 6603, 24, 32], [5, 342, 8, 268, 2619], [6604, 43, 155, 16, 1, 329, 244, 11, 6605, 42, 6606, 11, 33, 6607, 853, 6608, 25, 2620, 6, 67, 1, 133, 479, 943], [1291, 1, 18, 6609, 371, 11, 3, 1197, 21, 5, 6610, 6611, 6612, 6613, 12, 5, 226], [2446, 5, 149, 29, 205, 83], [1, 99, 70, 148, 56, 76, 199, 355, 914, 3, 1059, 106, 94, 2304, 193, 1, 58, 25, 94, 328, 1345, 290, 83, 6614, 2621], [6615, 612, 3, 1336, 173, 124, 196, 69, 2422, 6616], [6617, 1376, 13, 16, 188, 10, 7], [6618, 193, 6619, 236, 85, 1058, 332, 73, 2622, 300, 2623, 1899, 6, 18, 180, 9, 25, 22, 1058], [6620, 2624, 727, 1096], [6621, 1, 58], [6622, 37, 80, 1646, 1, 42, 504, 6623, 9, 11, 294, 380, 749, 3, 88, 145, 845, 1729, 519], [6, 26, 204, 172, 6624], [6625, 433, 3, 1109, 1138, 11, 748, 6626, 10, 158, 741, 32, 2625, 35, 2626, 48, 2, 6627, 49, 741, 113, 862], [6628, 4, 6629, 2627, 6630, 623, 6631, 6632, 914, 2, 2627, 6633, 6634, 2492, 6635, 6636, 6637, 6638], [6639, 1361, 18, 600, 3, 190, 1, 27, 514, 976, 196, 69, 64, 17, 462, 14, 3, 725, 47], [946, 6640, 1, 120, 166, 6641, 7, 86, 360, 70, 2628, 2629, 29, 6642, 177, 99, 1, 27, 11, 501], [6643, 81, 10, 596, 181, 6644, 264, 7, 19, 86, 47], [6645, 567, 2630, 13, 257, 111, 8, 80, 2631, 12, 7, 1710, 2, 7, 12, 143, 314, 1748, 11, 203, 877, 291, 22, 134, 577, 7], [45, 5, 6646, 63, 6647], [6648, 1, 40, 2536], [6649, 6650, 6, 1, 40, 7, 6651, 154, 175, 81, 10, 44, 62, 88, 16, 114, 634], [6652, 1365, 1744, 6653, 255, 9, 14, 5, 190], [1119, 81, 2632, 10, 6654, 586, 36, 15, 214, 19, 1537, 2576, 2, 6655, 371, 11, 3, 6656, 81, 16, 79, 40, 57], [2633, 8, 24, 50, 6, 115, 108, 17, 5, 6657, 727, 46], [268, 6658, 51, 6659, 2, 882, 16, 1, 96, 6660, 449, 5, 389, 149, 671, 108, 317, 1314], [6661, 81, 10, 187, 5, 6662, 1373, 7, 6663, 4, 391, 12, 6664, 40, 500, 6665], [6, 258, 6666, 38], [25, 379, 2, 180, 3, 668, 6667, 130, 6668, 6, 6669, 702, 1377, 47], [6670, 90, 2, 23, 24, 6671, 1284, 1258], [229, 10, 5, 484, 2, 1772], [1067, 270, 17, 329, 7, 29, 44, 2, 1914, 5, 296, 63, 1, 29, 6672, 30, 51, 6673, 43, 137, 567, 65, 63, 1139], [6674, 1, 53, 22, 519, 438, 1449], [6675, 25, 132, 2, 23, 2634], [2635, 47, 65, 89, 6676, 5, 794, 6, 1335, 10, 7, 16, 17, 7, 96, 713, 49, 157, 1784, 19, 4, 132, 122], [6677, 13, 44, 2, 476, 34, 3, 6678, 84, 24, 466, 63, 809, 34, 6679, 12, 109, 392, 2, 335, 2636, 401, 733, 87, 366, 2, 313], [87, 952, 141, 11, 217, 125, 375, 6680, 278, 952], [159, 21, 1785, 610, 310, 4, 114, 31], [6681, 1048], [6682, 147, 315, 17, 57, 446, 6683, 11, 174, 2637, 391, 499, 739, 8, 9, 4, 6684, 6685, 101, 183, 1125], [6686, 108, 701, 6687, 1, 95, 7, 35, 59, 779, 54], [6688, 6689], [6690, 6691, 1, 40, 2603, 1027, 6, 6692, 9, 8, 16, 347, 922, 6693, 37, 6694, 2, 6695, 20, 1771, 6696, 2638], [74, 140, 1, 96, 813, 3, 181, 979, 12, 6697, 139, 6, 1, 40, 9], [6698, 81, 16, 79, 10, 3, 1659, 14, 6699, 1172, 1, 71, 1505, 30, 4, 6700, 127, 6, 124, 45, 5, 794, 1064], [6701, 162, 7, 10, 596, 15, 48, 6702], [45, 4, 342, 6703, 9, 50, 6704, 214, 636, 6705, 8, 11, 472, 191], [6706, 13, 80, 6707, 2, 3, 6708, 12, 6709, 6710], [6711, 6712, 323, 49, 396, 7, 227, 36, 6713, 86, 49, 2462, 29, 6714, 2, 6715, 645, 2091], [6716, 367, 5, 1786, 6717], [223, 8, 90, 144, 10, 17, 865, 417], [6718, 323, 52, 4, 6719, 6720, 57, 19, 40, 102, 1378], [6721, 894, 206, 918, 1579, 15, 17, 67, 1, 198, 2, 6722, 9, 33, 641, 6723, 2, 15, 6724, 288, 8, 503, 6725, 43, 137], [74, 140, 1, 614, 26], [1, 97, 115, 6726, 379, 46, 22, 260, 2, 33], [6727, 113, 34, 12, 4, 6728, 2, 15, 9, 2463, 36, 52, 1, 72, 6729, 2484, 129, 1329, 36], [6730, 13, 145, 2111, 1662, 19, 7, 553, 9, 40, 9, 25, 16, 379, 561, 20, 1, 72, 3, 643, 12, 3, 288, 53, 19, 2, 137], [2639, 2639, 6731, 945, 809, 46, 24, 1635, 245, 15, 108], [6732, 2640, 7, 130, 593, 60, 3, 2641, 187, 347, 1, 261, 7, 130, 6733, 34, 3, 6734, 178, 11, 6735], [6736, 37, 533, 20, 13, 60, 2, 41, 9, 5, 279, 6737], [946, 6738, 761, 1913, 1102, 6739, 1, 72, 20, 25, 246, 2, 252, 51, 128, 4, 910, 6740, 12, 9], [884, 6741, 8, 259, 3, 1140, 51, 5, 444, 8, 16, 181, 150, 59, 114, 127, 6, 848, 11, 84], [6742, 162, 7, 26, 339, 33, 756, 236, 7, 65], [772, 5, 78, 420, 11, 6743], [6744, 1, 933, 77, 86, 8, 4, 121, 2, 35, 1787, 2642, 14, 86, 3, 335, 12, 3, 129, 23, 2643, 6, 73, 129, 375, 2644], [6745, 184, 715, 1026, 7, 215, 4, 6746, 2645, 2645, 209], [6747, 4, 1002, 1141, 6748], [6749, 13, 6750, 5, 1025, 91, 716, 536], [528, 495, 11, 86, 7, 96, 41, 9], [6751, 257, 7, 96], [6752, 132, 124, 69, 6753, 413, 11, 5, 284, 376, 5, 248, 8, 157, 125], [145, 3, 1605], [2541, 13, 30, 21, 289, 20, 25, 400, 87, 1107, 83, 16, 1, 304, 17, 210, 927], [6754, 28, 241, 6755, 1, 129, 40, 2, 56, 7, 655, 4, 1416, 95, 351, 459, 151, 244, 412, 80, 6756], [6757, 47, 1, 120, 1411, 77, 7, 1634, 167, 6758, 54], [1287, 6759, 6760, 6761, 6762, 113, 6763, 6764, 6765, 1, 95, 7, 69, 4, 2425, 153, 6, 17, 49, 317, 6766, 744], [179, 14, 5, 504, 179, 11, 5, 823], [2646, 2606, 6767, 8, 251, 1, 156, 5, 511, 1716, 291, 6768, 6769, 678, 2647], [243, 26, 1, 71, 6770], [6771, 437, 7, 19, 32, 31, 84, 2, 1337, 37, 93, 2, 1707], [126, 498, 10, 6772, 44, 2, 721, 59, 2648, 2649], [605, 74, 605, 112, 1, 432, 17, 6773, 1788, 6774, 6775], [1684, 6776, 6777, 6778, 209], [146, 13, 310, 4, 2650, 145, 6779, 1, 304, 1, 128, 21, 514, 4, 422, 27, 17, 251, 48, 2, 3, 6780], [6781, 6782, 135, 112, 6783], [1789, 1584, 123, 45, 6784, 6785, 4, 2613, 6786, 95, 10, 3, 177, 6787, 6788, 80, 1789, 1584, 218, 118], [48, 11, 1134, 682, 149, 6789], [6790, 7, 69, 4, 184, 6791, 11, 6792, 14, 276, 38], [6793, 6794, 10, 6795, 85], [91, 2, 683, 30, 6796, 85, 2, 284, 2, 6797], [80, 798, 51, 764, 2651, 158, 588, 267, 33, 153, 6798, 162, 7, 6799], [682, 178, 95, 32, 8, 65, 21, 206, 46], [8, 6800, 101, 2652, 6801, 20, 53, 234, 195, 1624, 16, 210, 6802, 14, 9, 38, 79], [6803, 6804, 91, 1, 96, 19, 55, 199, 1790, 226, 6805, 55, 1, 66, 149, 12, 357, 29, 3, 6806], [150, 4, 6807, 31, 6808, 765, 8, 334, 5, 1590, 369], [6809, 109, 1029, 8, 4, 429], [2653, 6810, 13, 1136, 12, 7, 5, 1786, 6811, 6812, 1277, 667, 2654], [74, 104, 4, 28, 563, 1, 53, 41, 17, 11, 4, 202, 67, 417, 462, 61, 89, 39, 6, 41, 9, 152, 3, 6813, 21, 3, 1128, 12, 5, 2655], [24, 61, 159, 21, 6814, 6815, 197], [6816, 1212], [6817, 71, 6, 1, 19, 138, 24, 1185, 62, 381, 125, 12, 670, 138], [108, 502, 31], [6818, 410, 15, 118, 46, 135, 45, 2, 618, 6819, 6820], [6821, 1, 18, 39, 86, 221, 2, 103, 1, 120, 394, 7], [8, 21, 6822, 69, 4, 132, 31, 46, 21, 1035, 6, 6823], [6824, 140, 212, 343, 696, 132, 1, 40, 733, 16, 76, 29, 195, 21, 3, 6825], [6826, 1, 42, 72, 1, 71, 123, 24, 6827, 1, 41, 6828, 24, 45, 1791, 6, 6829, 3, 2656, 24, 45, 1791, 1792], [6830, 1, 120, 968, 6831, 19, 94, 292, 172, 341, 2, 1142, 6832, 19, 114, 6833, 3, 1793, 6834], [6835, 337, 6836, 2, 35, 7, 547], [6837, 6838, 76, 29, 7, 178, 167, 394, 57, 126, 435, 12, 40, 2, 7, 38, 6839, 483], [1794, 92, 18, 45, 48, 51, 98, 680, 10, 4, 810, 1010], [580, 6840, 6841, 2657, 312, 3, 1549, 625, 1079, 343, 32, 1143, 579, 2657, 379, 559], [6842, 302, 7, 35, 115, 6843, 67, 7, 495, 101, 3, 1085, 32, 31, 1, 36, 9], [528, 7, 29, 44, 2, 40, 6844], [6845, 107, 140, 2658, 129, 23, 6846, 3, 559, 1367, 250, 1366, 6847, 6, 501, 419, 83, 41, 1330, 712, 3, 121, 209], [6848, 941, 185, 79, 6849, 124, 6850, 17, 9, 210, 19, 3, 6851, 2, 1795, 4, 1372, 20, 85, 118, 921, 41, 1], [191, 6852, 8, 6853], [2659, 6854, 112, 7, 39, 51, 333, 6855, 2, 6856, 6857, 941, 77, 6858, 6859, 270, 6860, 15, 284, 34, 2, 3, 6861], [6862, 46, 286, 532, 2660, 1596, 6863, 11, 3, 509, 6, 1510, 11, 3, 247, 148, 23, 975], [6864, 104, 4, 132, 359], [6865, 2640, 16, 347, 162, 7, 252, 116, 1, 297, 822], [2661, 7, 142, 136, 2, 1317], [6866, 1709, 690, 920, 6, 306, 2662, 113, 333, 426, 154, 11, 4, 286, 6867, 6868], [304, 52, 283, 6869, 2663, 29, 48, 39, 192, 47], [626, 59, 80, 6870, 6, 593, 2, 6871, 403], [6872, 47, 174, 453, 42, 1123, 9, 201, 6873, 174, 1796, 6874], [6875, 104, 4, 220, 369, 1, 36], [6876, 546, 287, 104, 4, 68, 6877, 1379], [6878, 8, 181, 175, 26, 2, 35, 80, 6879, 2, 6880, 16, 1, 96, 56, 9, 455, 303], [6881, 730, 479, 6882, 471, 36, 98, 1343, 229, 2, 455, 6883], [6884, 832, 579, 55, 7, 19, 18, 45, 116, 6, 343, 75, 6885], [6886, 6887, 6888, 8, 14, 5, 428, 6889, 136, 101, 6, 155, 367], [81, 2, 6890, 10, 3, 580, 800], [6891, 1, 71, 6892, 1156, 6893, 14, 6894], [6895, 6896, 251, 6897, 6898, 57, 6899, 9, 1, 40, 57, 1111, 79, 136, 2, 6900, 70, 40, 57], [3, 2600, 12, 6901, 6, 6902, 6903, 78, 594, 436, 161, 34, 11, 3, 249, 6904], [229, 11, 523, 10, 189, 34, 6905, 24, 1459, 6906, 6907], [6908, 767, 222, 1723, 12, 6909, 515, 6910, 600, 11, 6911, 75, 1087, 116, 26, 75, 55, 887, 55, 218], [6912, 4, 220, 6913, 129, 23, 90, 131, 26, 24, 337, 14, 340, 92], [1, 35, 2, 56, 5, 486, 84, 185, 50], [330, 1207, 523, 30, 10, 3, 6914, 6915, 6916, 8, 6917, 70, 320, 45, 4, 6918, 78, 6919, 2664, 2665], [6920, 70, 29, 498, 292, 2409], [6921, 35, 720, 350, 4, 31, 514, 6922, 481, 7, 788, 206, 7, 29, 14, 3, 886, 113, 587, 6923], [6, 602, 607, 1051, 165, 2, 23, 32, 30, 11, 894, 100, 6924], [1797, 34, 21, 6925], [6926, 17, 129, 23, 6927, 77, 7, 148, 661, 63, 28, 241, 204, 3, 62, 675, 46, 9, 27, 4, 1143, 182, 9, 53, 23, 6928], [307, 130, 44, 2, 884, 1512, 214, 298, 2, 495, 107], [6929, 5, 337, 249, 222, 1679, 292, 3, 1263, 1380, 24, 9], [6930, 13, 419, 358, 36, 114, 47, 252, 15, 157, 54], [6931, 70, 234, 1798, 1798, 1798, 14, 3, 267, 2, 6932, 763, 6933], [6934, 7, 19, 961, 26, 10, 59, 732, 11, 3, 247], [6935, 1, 128, 553, 116, 3, 481, 1, 72, 9, 27, 67, 73, 130, 75, 24, 485, 2561, 177, 435, 12, 6936, 12, 6937, 6938, 24, 116, 119], [6939, 539, 73, 471, 175, 191, 108, 309, 47], [6940, 110, 162, 7, 10, 17], [8, 150, 4, 6941, 31, 532, 85, 48, 2, 227, 24, 6942, 2389, 10, 248, 14, 317], [147, 2072, 7, 43, 179, 655, 439, 20, 154, 267, 217, 21, 3, 6943, 6944, 1379, 1779, 30, 6945, 1701, 2, 6946], [2666, 572, 1, 1122, 1, 19, 37, 6947, 1, 18, 40, 1423, 887], [6948, 55, 126, 55, 1, 313, 9, 1, 521, 34, 215, 4, 6949, 47], [6950, 69, 4, 6951, 86, 16, 79, 114, 1, 471, 36, 4, 6952, 222], [6953, 1794, 241, 1, 43, 137, 2, 256, 32, 60, 9, 13, 161, 33, 153, 380, 354], [2667, 6954, 410, 481, 5, 6955, 2067, 1, 96, 6956, 4, 721, 21, 116, 6, 348, 2668, 335, 441, 6957], [6958, 6959, 9, 6960, 3, 6961, 17, 8, 668, 1331, 20, 3, 619, 210, 2213, 183, 583, 2, 58, 110, 135, 120], [6962, 81], [18, 30, 185, 4, 6963, 692], [18, 87, 80, 141, 2, 345, 2189, 494], [1953, 159, 217, 80, 31, 2, 39, 2615], [6964, 1133, 6965, 3, 177, 121, 2, 23], [6966, 206, 636, 17], [26, 1, 622, 43, 137, 2, 180, 492, 931, 118, 1, 19, 37, 2669, 110, 3, 261, 18, 245, 15, 16, 108], [6967, 536, 1, 58], [6968, 48, 51, 200, 31, 12, 138, 2670, 487, 2, 683, 15, 30, 18, 60, 2, 180, 4, 288, 6, 432, 59, 286, 694, 209], [11, 5, 1309, 6969, 12, 226, 69, 2, 47, 24, 6970, 1721, 6971, 6972, 271, 1379, 115, 28], [6973, 25, 6974, 195, 455], [66, 2, 39, 2, 6975, 1381, 208, 381, 12, 2338], [1, 40, 272, 36, 33, 6976, 6977, 714, 6978, 40, 594], [6979, 107, 1291, 17, 64, 505, 389, 2, 61], [6980, 191, 25, 6981], [18, 646, 435, 12, 6982, 26, 54, 10, 1362, 732, 926], [6983, 3, 6984, 1215, 29, 32, 123, 3, 1746, 1, 39, 2, 6985, 11, 3, 1298, 1746, 67, 1, 41, 39], [6986, 6987, 7, 96, 41, 1304, 7, 66, 25, 32, 60, 187, 1698, 21, 6988, 13, 115, 1698, 21, 15], [13, 91, 87, 169, 26, 16, 6989, 88], [13, 11, 3, 994, 10, 232, 1, 6990, 3, 813], [13, 134, 295, 44, 2, 122, 25, 94, 4, 172, 153], [77, 174, 22, 205, 6991, 174, 1306, 1322, 397, 295, 33, 344, 2650, 25, 16, 251, 63, 1799, 2, 260, 6992, 1, 40, 9], [6993, 6994, 6995, 81, 7, 178, 1, 95, 2, 41, 80, 115, 126, 80, 688, 1, 72], [6996, 19, 4, 28, 31, 1242], [6997, 6998, 19, 4, 132, 31], [6999, 572, 52, 65, 1, 58, 10, 4, 905, 17, 1857, 7000, 8, 419, 12, 15], [4, 115, 910, 2397, 88, 19, 2, 39, 2, 406, 11, 98, 352, 53, 93, 479, 308, 31, 172, 53, 82, 2145, 21, 4, 952, 576], [24, 2594, 1, 68, 42, 93, 2, 23, 1286, 378, 20, 289, 58], [165, 2, 35, 5, 117, 346, 2, 39, 41, 7001], [7002, 124, 94, 34, 7003], [899, 1109, 980, 14, 2571, 2, 357, 7004], [7005, 734, 683, 15, 30, 4, 1800, 12, 7006, 10, 3, 7007, 194, 235, 154, 86], [7008, 45, 1689], [571, 2, 50, 6, 188, 60, 5, 1194], [6, 13, 34, 33, 7009, 2671, 7010], [7011, 258, 11, 4, 963, 410, 224, 7012, 7, 339, 19, 517, 12, 116, 73, 130, 36, 37, 217, 10, 204, 366, 7013], [1148, 7014, 896, 2672, 178, 227, 68, 28], [7015, 37, 1601, 1, 261, 7016, 7017, 27, 1801, 4, 80, 7018, 1611, 2673, 17, 264, 22, 7019, 94, 7020, 12], [7021, 1, 19, 7022, 6, 229, 14, 2531, 12, 403, 532, 2, 136, 449, 43, 137, 20, 1646, 19, 114, 3, 1118, 1354], [45, 5, 2670, 7023, 11, 3, 1404, 45, 15, 59, 2180, 12, 1802, 292, 45, 59, 7024, 7025, 2, 7026], [7027, 44, 2, 313, 5, 1019, 1042, 436, 118, 302, 47, 209], [7028, 1, 75, 36, 2, 354, 4, 164, 7029, 14, 7030], [7031, 7032, 96, 70, 7033, 359, 33, 7034, 611, 13, 14, 1, 7035, 2, 7036], [109, 144, 2, 231, 4, 78, 31, 1, 40, 3, 828], [2, 206, 77, 7, 29, 1628, 21, 139, 214, 7, 42, 58, 596, 7, 1801, 277, 3, 7037, 5, 7038, 1339, 751, 7039], [7040, 128, 7041, 7042, 2535], [69, 4, 28, 153, 26, 163, 409, 2, 5, 678], [7043, 16, 188, 60, 3, 741, 7, 58, 976, 32, 94, 229, 115, 2647, 28, 241, 21, 1959, 127], [4, 90, 756, 21, 158, 149], [7044, 81, 10, 3, 442, 583, 60, 7045, 6, 7046, 7047], [7048, 622, 1, 458, 34, 24, 3, 1013, 7049, 32, 114, 119], [7050, 7051, 13, 365, 7, 7052, 7, 29, 5, 1237], [7053, 7054, 1, 40, 7, 7055, 7, 29, 310, 98, 2674, 234, 30, 3, 28, 50], [7056, 230, 187, 7057, 85, 7058, 7059], [7060, 20, 258, 75, 98, 239, 7061, 6, 26, 3, 308, 267, 636], [528, 1, 7062, 10, 7, 2507, 390, 42, 23, 1405], [7063, 295, 4, 692, 17, 7064, 2675, 15], [1782, 25, 44, 1143, 1, 18, 373, 34, 13, 250, 3, 675, 11, 7065, 63, 7066, 38], [992, 11, 3, 812], [56, 7, 178, 67, 1, 136, 48, 51, 2676], [214, 96, 564, 2332, 121], [7067, 162, 7], [7068, 1, 56, 132, 369, 7069], [8, 171, 1408], [448, 1092, 123, 315, 1120, 737, 10, 185], [144, 21, 748, 4, 7070, 6, 13, 4, 164, 202, 1136], [7071, 1, 36, 2445, 7072, 6, 1078, 104, 7073, 131], [7074, 81, 45, 17, 320, 780, 7075, 221, 16, 13, 251, 26, 19, 98, 2677, 276], [128, 87, 448, 197], [1287, 1264, 6, 1382], [7076, 316, 83, 21, 7077, 6, 2176, 64, 211, 8, 1738, 22, 2678, 131, 26], [7078, 81, 1598, 9, 27, 16, 79, 114, 3, 454, 233, 90, 1, 129, 40, 2, 23, 4, 496, 12, 200, 64, 12, 49, 7079], [21, 1657, 6, 1866, 150, 114, 11, 554, 107], [7080, 21, 3, 586, 324, 7081, 8, 14, 5, 7082], [7083, 74, 1, 97, 103, 26, 1071, 7, 1803, 16, 7084, 1, 41, 1454, 7, 2679, 38], [7085, 7086, 7087, 24, 7088, 7089, 154, 14, 89, 23, 86, 7090, 2228, 7091, 945, 243, 7092, 89, 457, 712, 7093, 55, 65], [7094, 52, 41, 7, 66, 2, 58, 60, 7095], [2680, 2681, 2681, 24, 3, 2682, 1, 255, 5, 7096, 10, 203, 248, 7097, 252, 15, 52, 7, 72, 12, 9], [7098, 108, 2, 7, 7099, 2683, 7100, 7101], [18, 45, 7102, 81, 7103, 2684, 1042], [953, 7104, 8, 596, 7105, 79], [219, 8, 26, 83, 6, 1, 71, 26, 4, 7106], [204, 141, 24, 50, 85, 7107, 7108, 191], [7109, 1, 564, 17, 1, 71, 18, 165, 2, 35, 2, 169, 266, 1042, 47], [7110, 65, 162, 7, 184, 2685, 16, 365, 7, 923, 9], [1, 72, 33, 8, 2686, 1328, 2687, 7111, 2687, 7112, 337, 1355, 625, 204, 7113, 87, 7114, 217], [7115, 5, 513, 8, 38, 347], [7116, 37, 64, 7117, 100, 7118, 7, 96, 99, 10, 9, 20, 7, 43, 23, 1602, 12, 15, 7119], [7120, 146, 1, 205, 45, 9, 11, 3, 1250, 20, 11, 335, 7121, 1, 96, 35, 151, 7122, 104, 52, 13, 7123, 10], [240, 361, 7124, 67, 1742, 270, 15], [400, 616, 281, 2688, 958, 2689, 7125, 7126, 7127, 1171, 1187, 7128, 7129, 21, 7130, 75, 14, 3, 808, 7131], [7132, 57, 29, 259, 38], [7133, 181, 28, 679, 7134, 5, 342, 6, 1804, 804, 16, 108, 60, 17, 76, 795, 555, 31, 17, 8, 22, 342], [14, 5, 1086, 1221, 12, 479, 28, 2, 23, 1383], [7135, 11, 2, 99, 7, 32, 4, 108, 317], [32, 1062, 2690, 5, 802, 53, 126, 7136, 15, 89, 7137, 11, 4, 319, 170, 108, 317, 7138], [69, 4, 90, 756, 21, 2649], [8, 24, 50, 85, 1384, 85, 244, 4, 190, 388, 127], [7139, 28, 92, 7140, 25, 115, 592, 7141, 11, 7142, 38, 91, 2, 41, 59, 7143, 11, 4, 202], [7144, 162, 7, 10, 49, 2685, 1, 45, 9, 11, 4, 7145, 629, 10, 2372, 767, 2295, 539], [7146, 162, 57, 13, 44, 2, 2546, 7147, 2691, 46, 13, 1006, 9, 38, 199, 672, 155, 73, 45, 3, 2691, 67, 73, 42, 280, 108, 318], [1063, 5, 809, 8, 152, 24, 847, 337, 118, 14, 3, 470, 841, 123, 24, 7148, 401, 9, 4, 550, 12, 7149, 4, 31, 7150], [18, 255, 4, 100, 7151, 193, 1114, 8, 152, 6, 100, 8, 161, 2, 1114, 126, 16, 140], [7152, 25, 2692, 1458, 1996, 63, 13, 7153, 57, 1695, 57, 36, 9, 113, 22], [5, 92, 1805, 63, 730, 1722, 7154, 7155, 7156, 5, 62, 7157, 2331, 204, 639, 363, 310, 4, 211, 55, 7158], [548, 7159, 2693, 7160], [7161, 2376, 1238, 8, 30, 14, 1981], [7162, 81, 1, 238, 49, 925, 26, 3, 436, 8, 14, 7163], [259, 31, 16, 188, 60, 5, 7164, 2694, 1924, 7165], [7166, 37, 120, 329, 2, 7167, 183, 7168, 20, 17, 527, 182, 2695, 1, 534, 203, 7169], [7170, 1, 58, 9, 27], [7171, 1, 42, 19, 4, 7172, 73, 252, 15, 1, 43, 411, 8, 110, 1, 42, 19, 4, 7173, 376, 73, 32, 155, 73, 43, 265, 15], [2696, 147, 209, 18, 362, 2, 155, 49, 175, 6, 7174, 113, 1538, 49, 928, 9, 106, 240, 14, 7], [168, 14, 5, 708, 863, 7175, 10, 554, 519, 84, 63, 21, 7176], [11, 589, 24, 3, 1083, 7177, 150, 4, 78, 1083], [1, 40, 283, 7178, 17, 581, 7179, 2, 7180, 13, 7181, 2490, 7182], [626, 7183], [7184, 162, 7, 7185, 92, 10, 15, 8, 92], [7186, 25, 900, 212, 11, 3, 415, 86, 27, 4, 2697, 7187, 63, 439, 2410, 10, 3, 151], [145, 2539, 2692, 14, 7188, 76, 1, 40, 1685, 7189], [7190, 89, 23, 86, 189, 9, 154, 44], [7191, 37, 429, 70, 130, 181, 372, 833, 3, 153, 38], [1806, 6, 1, 29, 689, 84, 926], [166, 119, 1, 42, 533, 5, 7192, 1303, 1, 71, 75, 14, 100, 452, 1125, 1, 35], [651, 27, 1794, 668, 1331, 288, 26], [571, 2, 7193, 2, 227, 24, 7194], [7195, 242, 7196, 48, 54, 221, 1201, 9, 27, 853, 1980, 30, 1, 27, 171, 279, 7197, 57, 7198], [1, 40, 7199, 7200, 12, 3, 7201, 37, 945, 945, 10, 1115, 1115], [7202, 81, 599, 115, 372, 20, 405, 28, 6, 555, 134, 23, 690, 46], [7203, 411, 8, 334, 4, 172, 7204, 121, 12, 773, 1123, 341, 20, 22, 38, 79, 36, 154, 250], [3, 1224, 62, 88, 27, 239, 1, 1047, 59, 12, 5, 149, 29, 34, 12, 1687, 1364, 15, 12, 62, 249, 1, 36, 621, 1761], [7205, 251, 19, 114], [45, 371, 4, 7206, 2698, 7207, 10, 402, 1619, 32, 1, 93, 26, 29, 59, 251, 932, 7208, 7209, 7210, 2698], [2635, 92, 7211, 25, 121, 967, 5, 7212, 83, 11, 7213], [7214, 7215, 7216, 7217, 140, 67, 435, 12, 7218, 161, 30, 20, 370, 2560, 7219], [7220, 74, 28, 1, 96, 180, 116, 375, 85], [7221, 13, 75, 1374, 38, 1, 69, 4, 90, 7222, 7223, 4, 550, 12, 366, 390, 20, 1305, 7224, 29, 75, 5, 39, 2], [7225, 52, 130, 7, 773, 1, 71, 16, 36, 17, 371, 1, 231, 216, 6, 85, 35, 225, 16, 19, 2, 231, 216, 361], [7226, 8, 3, 797, 54, 10, 626], [7227, 609, 210, 41, 3, 594, 2012, 43, 137, 2, 56, 9, 2699, 118, 10, 3, 619], [628, 1, 18, 1674, 322, 6, 69, 2, 41, 4, 1231, 189, 363, 4, 2294, 497, 18, 2700, 5, 31], [7228, 3, 177, 4, 7229, 768, 96, 35], [571, 2, 169, 330, 823, 12, 15], [7230, 4, 299, 783, 46], [7231, 7232, 34, 14, 222, 7233, 7234, 215, 4, 1105, 63, 17, 106, 4, 523, 34, 7235, 1057, 7236, 38], [7237, 107, 132, 391, 233, 1725, 36, 5, 138], [2252, 7238, 4, 7239], [7240, 18, 55, 172, 55, 49, 7241, 8, 617], [7242, 7243, 11, 17, 1235, 1, 97, 37, 93, 2, 293, 118, 376, 1, 58, 15, 63, 7, 42], [7244, 1, 19, 69, 87, 7245, 6, 73, 375, 130, 38, 7246, 10, 15, 1, 40, 3, 7247, 20, 93, 7248, 4, 202, 80], [13, 98, 1114, 7249, 7250], [25, 4, 1807, 51, 751, 3, 7251, 25, 4, 1807, 25, 4, 1807, 2701], [312, 7252, 57, 1411, 57, 66, 2], [163, 24, 2387], [7253, 365, 49, 171, 1725, 151, 1, 72, 357, 321, 23, 1092, 393, 26, 711], [7254, 480, 468, 158, 654, 230, 16, 188, 689, 31, 8, 157, 340], [7255, 120, 58, 7, 69, 4, 299, 14, 3, 121, 191, 822], [7256, 168, 14, 928, 277, 161, 115, 7257, 2702], [190, 1691, 48, 30, 356, 525, 467, 190, 1691, 1, 27, 60, 144, 2, 2703, 2, 1623, 113, 2230], [7258, 7259, 7, 29, 68, 215, 100, 463, 1348, 290, 870, 7260, 7261, 77, 22, 53, 68, 1142, 7262, 1354, 1385], [14, 3, 190, 2, 7263], [7264, 7265, 1, 72, 1, 18, 7266, 4, 78, 591, 207, 8, 17, 100, 7267, 7268], [28, 92, 7269, 25, 3, 160, 31, 12, 219, 52, 29, 7, 32, 1313, 2, 41, 46, 11, 33, 2583, 935], [7270, 7, 142, 399, 98, 7271, 7272, 7273, 489, 959, 77, 7, 1520, 215, 512], [7274, 5, 7275, 580], [108, 502, 31, 2, 32, 3, 502, 11, 3, 267, 579, 3, 7276, 649], [7277, 1, 1218, 20, 485, 29, 2704, 2705, 11, 485, 2174], [2596, 7278, 7279, 7280, 7281, 1688, 7282, 7283, 7284, 7285, 7286], [7287, 77, 7, 326, 94, 2, 7288, 6, 764, 7, 2706, 238, 34, 193, 1, 1808, 40, 283, 7289, 579, 764], [2707, 7290, 347, 391, 111, 8, 310, 4, 347, 660, 456], [242, 242, 124, 26, 771, 1, 71, 44, 2, 23, 4, 7291, 380, 56, 76, 172, 33, 53, 62], [7292, 107, 860, 7293, 2708, 7294, 7295, 20, 104, 4, 164, 202, 38, 79, 536], [3, 7296, 1100, 1029, 1851, 11, 3, 267, 175, 728, 7297, 7298], [160, 477, 198, 65, 112, 3, 308, 211, 467, 2365, 26, 850, 21, 7299, 85, 108, 352, 21, 5, 1094, 816, 228], [109, 34, 12, 7300, 61], [2709, 1262, 7301, 33, 68, 8, 379, 113, 13, 818, 55, 437, 47, 283, 543, 7302, 224, 3, 31, 7303, 15], [7304, 1484, 104, 242, 1, 75, 40, 7], [7305, 140, 7306, 55, 2330, 7307, 667, 7308, 7309, 7310], [7311, 74, 26, 1, 564, 7, 329, 190, 1514, 1, 36, 2710, 1180, 8, 28, 55, 65, 6, 16, 8, 730, 1, 68, 43, 2711], [7312, 1, 66, 7, 2, 655, 17, 7313, 211, 28, 241], [273, 5, 285, 6, 547, 5, 468, 725, 1322, 10, 337, 89, 182, 7, 76, 7314], [2712, 47, 538, 81, 10, 7315, 5, 685, 4, 319, 141, 390], [7316, 105, 1, 815, 411, 2292, 27, 3, 7317, 576, 571], [7318, 53, 41], [2659, 7319, 935, 13, 109, 144, 2, 39, 551, 20, 158, 7320, 2713, 8, 75, 14], [7321, 242, 797, 81], [140, 1, 112, 9, 1, 198, 34, 62, 88, 6, 657, 4, 90, 288, 17, 27, 90, 19, 2, 41, 33, 55, 126, 55, 1236, 118], [7322, 7323, 2133, 130, 644], [732, 44, 65, 134, 180, 346, 559, 85, 1266, 1296, 118, 987, 106, 136, 215, 3, 2249], [7324, 269, 7325, 2237], [7326, 29, 7, 532, 24, 670, 6, 7327], [62, 31, 24, 819, 7328, 147, 1576, 6, 1, 18, 2714, 292, 11, 3, 7329, 6, 328, 1842, 7330], [7331, 358, 7332, 59, 421], [7333, 154, 22, 5, 929, 7, 43, 133, 15], [150, 7334], [7335, 96, 1, 18, 155, 419, 12, 49, 537, 95, 154, 150, 114, 7, 1717, 9, 483], [108, 502, 31, 2715, 1286, 3, 31, 21, 5, 7336, 6, 85, 91, 2, 3, 7337, 7338, 21, 3, 1706, 127], [7339, 1, 58, 52, 9, 8, 1297, 86, 8, 44, 2, 23, 4, 381, 782, 14, 276, 73, 370, 23, 7340, 30, 10, 9], [7341, 2432, 175, 365, 7, 36, 9, 133, 257, 7, 35, 3, 1809, 1530, 91, 7342, 77, 7, 42, 205, 19, 116, 209], [38, 237, 20, 7343, 187, 7344, 347, 16, 89, 752, 21, 9], [7345, 394, 7346, 258, 2114, 7347, 55, 496, 12, 102, 7348, 195, 11, 7349, 141, 2713], [1, 72, 73, 2664, 3, 7350, 7351, 2367, 185, 2716, 281, 950, 8, 7352, 6, 12, 740, 1, 227, 4, 202, 7353], [898, 7354, 33, 125, 191], [503, 7355, 60, 3, 288, 18, 487, 48, 51, 7356, 7357], [7358, 191, 1, 40, 150, 78, 652, 149], [2717, 89, 189, 4, 764, 7359], [109, 144], [87, 7360], [1067, 95, 7, 69, 2168, 14, 6, 120, 35, 1290, 7361, 3, 7362, 196, 58, 52, 154, 134, 35, 377], [435, 12, 7363, 7364, 24, 7365, 11, 2159, 7366], [40, 2, 32, 7, 7367, 139, 1, 53, 82, 7, 32, 1503], [7368, 463, 7369, 124, 393, 4, 202, 7370, 55, 65, 105, 196, 504, 47], [1, 66, 2, 56, 17, 7371], [1, 71, 626, 1228, 2475, 12, 3, 7372, 131, 26], [7373, 7374, 374, 8, 630, 374, 5, 2160, 7375, 131, 26, 282, 7376, 8, 7377, 939], [25, 237, 6, 13, 7378, 12, 1049, 7379, 2, 784, 10, 3, 62, 1049, 476, 11, 5, 226, 76, 270, 17, 471], [301, 21, 5, 465, 499, 7380, 6, 7381, 7382, 341, 297], [2718, 7383, 298, 2, 520, 4, 7384, 11, 1089, 2598, 13, 799, 188], [7385, 243, 65, 7, 295, 26], [33, 92, 4, 184, 2548, 12, 479, 7386, 2662, 22, 699, 22, 10, 3, 226, 12, 15], [7387, 7388], [19, 320, 866, 4, 949, 7389, 537, 2, 7390, 621, 149], [7391, 7392, 1, 27, 16, 44, 2, 155, 7393, 2665, 20, 27, 2631, 264, 35, 7394, 10, 98, 1237, 2719], [7395, 123, 494, 104, 32, 1, 66, 2, 7396, 37, 7397, 7398], [91, 2, 122, 28, 88, 267, 95, 787, 22, 232, 84], [21, 7399, 258, 4, 2720], [8, 109, 144, 10, 651, 85, 7400, 95, 7401, 642, 2, 721, 15, 24, 50, 46], [7402, 19, 4, 114, 153, 745, 95, 49, 65, 377], [7403, 47, 2721, 5, 2722, 10, 116, 104, 954, 379, 20, 32, 3, 90, 649, 41, 9], [7404, 24, 15, 575, 25, 22, 36, 7, 129, 23, 7405, 63, 489, 707, 17, 442, 12, 7406, 15, 30], [18, 254, 98, 899, 2723, 378, 122, 175, 1, 96, 7407, 21, 17, 376, 1, 19, 921], [48, 51, 3, 1094, 7408, 7409, 249, 222, 1810, 14, 470, 780, 26, 165, 2, 614, 439, 264, 2209, 60, 7410], [277, 34, 5, 78, 2724, 1083, 7411, 277, 34, 5, 78, 2724, 1083, 7412], [7413, 47, 24, 49, 62, 359, 538, 158, 149, 7414, 63, 7415, 130, 90, 7416, 14, 7417, 2178, 7418, 182, 838], [7419, 159, 1, 1121, 14, 3, 7420, 10, 700], [7421, 140, 20, 3, 177, 471, 218, 8, 4, 299, 7422], [48, 2, 50, 14, 4, 259, 592, 31], [2595, 81, 10, 17, 7423, 7424, 281, 1530, 12, 3, 821, 6, 456, 74, 456, 3, 2625, 29, 379, 7425], [7426, 146, 9, 27, 405, 114, 73, 1098, 163, 30, 103, 272, 20, 9, 27, 114, 2, 19, 116, 23, 1202, 10, 4, 581], [7427, 74, 7428, 575, 104, 52, 1, 27, 44, 2, 41], [28, 92, 46, 506, 36, 4, 90, 31, 2, 567, 61, 6, 1158, 32, 7429, 18, 72, 1, 321], [7430, 81, 4, 1765, 1144, 9], [7431, 360, 7432, 1766, 345, 928, 277, 27, 595, 7433, 26, 13, 11, 3, 7434, 1145], [44, 2, 4, 288, 88, 7435], [7436, 29, 7, 498, 439, 2, 15], [145, 4, 954, 2527], [531, 170, 197, 194, 84, 194, 14, 318, 85, 1, 71, 159, 21, 138], [729, 206], [43, 122, 145, 842], [7437, 147, 105, 1, 45, 91, 62, 88], [90, 680, 11, 1679, 7438, 60, 1787, 2642, 7439], [7440, 147, 95, 3, 153, 8, 2511, 7, 65, 81, 118, 10, 1182, 417, 25, 14, 5, 422, 26, 6, 18, 44, 2, 180, 9, 26], [7441, 7442, 74, 7443, 270, 22, 39, 14, 24, 3, 675, 1, 2695, 73, 29, 2725, 115, 2725], [7444, 52, 53, 455, 2, 49, 7445, 737], [7446, 140, 1, 27, 937, 91, 193, 1, 27, 11, 3, 1189, 12, 4, 428, 20, 5, 422, 106, 2726, 449, 191], [1, 120, 480, 155, 28, 92, 16, 28, 92], [7447, 240, 469, 21, 187, 2727, 55, 172, 55, 49, 108, 21, 49, 871, 47], [7448, 1, 2728, 7449, 43, 439, 18, 50, 10, 15], [7450, 7451, 74, 1325, 7452, 1, 82, 7], [163, 24, 791, 7453, 14, 766, 131, 26], [666, 30, 6, 2281, 15, 7454, 1811, 15, 296, 34, 10, 3, 31, 36, 4, 28, 660, 296], [7455, 16, 79, 7456, 6, 7457, 11, 64, 420, 430, 1062, 2658, 132, 64], [7458, 1, 42, 66, 2, 1812, 7, 1, 18, 19, 64, 1093, 112, 891, 6, 2729, 68, 133, 34, 62, 88, 81], [25, 114, 7459, 30, 87, 170, 237, 2, 1082, 13, 257, 2436, 7460, 7461, 7462], [7463, 28, 7464, 34, 25, 159], [106, 196, 534, 33, 239, 266, 111, 1760, 34, 3, 177, 11, 15], [7465, 8, 34, 12, 3, 1013, 1493, 26], [7466, 146, 7, 41, 81, 10, 3, 1186, 9, 7467, 15, 37, 415], [7468, 154, 392, 330], [92, 536, 1, 1295, 438, 1206, 46, 1448], [1369, 98, 7469, 4, 618], [7470, 316, 2, 7, 2730, 7471, 34, 100, 80, 1523, 1, 95], [1006, 7472, 2731, 63, 7473], [92, 206, 81, 10, 32, 3, 701, 40, 2526, 8, 368, 1261, 91, 2, 4, 90, 231], [7474, 681, 1, 661, 143, 84, 53, 1240, 21, 143, 494, 662, 21, 573, 281, 139, 11, 4, 444], [7475, 874, 482, 9, 5, 121], [70, 50, 115, 246, 11, 7476, 7477], [7478, 132, 926, 472, 119, 579, 11, 3, 247], [7479, 7480, 20, 121, 7481], [7482, 3, 7483, 2, 3, 556, 650], [7484, 1, 912, 30, 14, 100, 62, 88], [7485, 1, 40, 1699], [56, 76, 70, 7486, 158, 2438, 821, 7487, 7488, 7489, 7490, 57, 11, 2250, 7491, 12, 174, 725, 1322, 7492], [2732, 32, 10, 7493, 15, 21, 2626, 2, 3, 7494, 594, 2225, 222, 271, 63, 1, 27, 11, 7495, 603, 374, 7496], [7497, 2434, 561, 13, 22, 4, 396, 12, 9, 107, 500], [44, 10, 4, 865, 6, 13, 269, 3, 330, 2733, 1078, 7498, 16, 176, 26, 20, 75, 1006, 3, 1386, 223], [147, 7499, 30, 206], [728, 7500, 7501, 10, 312, 344, 7502, 49, 7503, 55, 81, 6, 227, 2612, 2, 174, 397, 7504], [7505, 7506, 6, 124, 771, 13, 18, 7507, 154, 5, 1373, 1, 201, 1812, 440, 679, 17, 1813], [7508, 55, 1, 18, 7509, 14, 3, 428, 679, 3, 7510, 1, 569, 137, 367, 538, 7511], [165, 2, 35, 338, 2, 219, 19, 17, 1353, 11, 5, 814, 36, 13, 7512, 216, 13, 257, 17, 9, 53, 39, 192, 101, 1790, 796], [7513, 7514, 259, 46, 115, 690, 6, 592], [132, 31, 34, 53, 943, 712, 3, 522, 46, 277, 34, 2450, 7515, 12, 5, 1131, 7516], [7517, 249, 787, 23, 175], [7518, 155, 108, 248, 2, 404, 51, 15], [7519, 1, 517, 57, 29, 7520, 217, 396, 16, 321, 1, 23, 102, 87, 396, 711, 47, 193, 1, 40, 102, 16, 79, 258, 64, 12, 5, 100, 2233, 483], [150, 5, 160, 2534, 31, 376, 448, 395, 318, 120, 927, 55, 1, 534, 36, 1074], [7521, 207, 41, 7, 236, 4, 7522, 17, 548, 17, 22, 469, 24, 32], [7523, 832, 18, 100], [7524, 431, 8, 14, 7525, 702, 7, 108], [7526, 348, 343, 10, 651, 6, 22, 10, 3, 7527, 230], [7528, 81, 29, 7, 7529], [1767, 342], [7530, 90, 112, 7, 1150, 3, 7531, 436], [89, 189, 2734, 61, 77, 2734, 42, 305, 15, 24, 3, 930, 1575, 2735, 9, 1376, 7532], [247, 8, 1375, 54, 2, 314, 14, 5, 1346, 408, 1655, 36, 98, 2202, 2736, 7533], [7534, 175, 7535, 100, 7536, 18, 52, 1, 7537, 2, 35, 15, 689, 33, 92, 162, 7, 7538], [7539, 1, 1092, 1552, 7, 1814], [7540, 1, 71, 7541, 2, 7542, 3, 7543, 7544, 33, 125, 101, 22, 514, 7545], [7546, 8, 3, 1100, 780, 12, 7547, 270, 17, 329, 1, 42, 93, 2, 41, 183, 7548, 7549], [850, 21, 64, 12, 5, 7550, 11, 1665, 16, 330, 16, 114], [7551, 7552, 434, 15, 60, 33, 62, 88, 1141, 1, 43, 290, 163, 24, 327], [7553, 147, 1740, 132, 87, 56, 7, 83, 14, 100], [2661, 108, 502, 31, 1747, 96, 57, 252, 7554, 1, 99, 102, 108, 502, 31, 38], [7555, 181, 79, 414, 31, 7556, 47, 37, 80, 543, 187, 314, 14, 3, 10, 3, 31, 104, 10, 257], [325, 7557, 11, 3, 259, 223, 40, 9, 148, 1240, 83, 32, 31], [682, 7558, 7559, 7560], [7561, 947, 6, 19, 114, 1476], [7562, 1, 18, 434, 7, 17, 1, 27, 7563, 17, 370, 23, 7564, 341, 10, 7, 1183], [7565, 2737, 18, 45, 2, 7566], [72, 1387, 29, 177, 1414, 20, 129, 40, 9, 77, 7567, 7568, 45, 449, 72, 3, 7569, 129, 40, 9], [25, 16, 132, 34, 27, 14, 4, 7570, 1294, 21, 64, 12, 5, 2386, 7571, 6, 135, 45, 7572, 101, 4, 7573, 2738], [7574, 104, 7575, 113, 560, 1181], [538, 13, 14, 100, 10, 3, 160, 54, 11, 4, 524], [7576, 107, 1, 27, 145, 149, 38], [145, 5, 637, 288, 3, 2392, 12, 2191, 6, 719, 7577], [7578, 32, 7579, 33, 509, 380, 95, 3, 935, 8, 269, 139, 7580, 91, 2, 500, 4, 202, 12, 7581, 7582], [47, 13, 145, 4, 288, 6, 73, 7583, 7584, 7585, 1007, 198, 1127, 2, 7586], [7587, 76, 29, 7588], [13, 7589, 39, 34, 56, 7, 11, 98, 352, 113, 335], [7590, 2, 1685, 7591, 111, 1116, 552, 14, 3, 190, 47], [7592, 1, 112, 6, 124, 45, 5, 876, 18, 326, 45, 292, 2, 328, 9, 1, 53, 126], [7593, 679, 7594, 7595, 1431, 7596, 272], [7597, 2069, 8, 797], [666, 30, 237, 2, 39, 2, 3, 778], [7598, 899, 6, 4, 164, 1058, 24, 355], [2547, 47, 88, 118], [124, 18, 553, 1056, 762, 8, 68, 405, 7599, 302, 302], [1, 71, 68, 188, 2, 1770, 33, 219], [954, 7600, 77, 7, 7601, 102, 7602, 102, 135, 53, 1398, 17, 40, 21, 3, 381, 7603, 12, 3, 7604, 12, 102, 7605, 658, 2739], [580, 7606, 62, 64, 1, 72, 77, 1, 238, 383, 105, 89, 493, 7, 157, 125, 482, 15, 4, 2740, 2741, 60, 7607], [7608, 4, 90, 2742, 7609, 8, 7610, 2742, 7611, 9, 106, 4, 7612, 813, 6, 1329, 95, 17, 1217], [43, 137, 10, 492, 931], [1, 71, 393, 19, 2, 39, 2, 5, 2284, 963, 7613, 1762, 614, 7, 130, 2743, 2, 23, 4, 1701, 16, 23, 63, 1414, 36, 64], [7614, 7, 72, 244, 111, 815, 17, 55, 4, 1101, 14, 3, 443], [7615, 561, 7, 130, 4, 372, 7616], [134, 295, 2, 35, 59, 1388, 2744, 34, 2, 59, 1, 238, 62, 125, 77, 1, 42, 35, 206, 33, 125, 7617, 157, 54], [380, 39, 54, 2, 122], [7618, 147, 76, 29, 7], [526, 30, 46, 7619, 17, 25, 219, 70, 142, 133, 3, 368, 12, 9], [1, 255, 9, 2, 1185, 671], [7620, 145, 24, 61, 14, 407, 452, 54, 1, 56, 7, 11, 3, 930, 902, 1, 66, 2, 2482, 7], [7621, 7622, 41, 7, 218, 39, 25, 94, 4, 550, 416, 464, 101, 9, 7623, 22, 11, 5, 986, 7624, 9], [7625, 1, 40, 17, 7, 19, 37, 429, 1579, 139, 91, 214, 1717, 9, 25, 259, 42, 218, 290], [1, 66, 7626, 2327, 470, 9, 55, 65, 55, 143, 29, 347, 107], [7627, 1, 53, 788, 7, 14, 685], [7628], [7629, 539, 1, 58, 1360, 9, 897, 20, 595, 22, 405, 897, 341], [8, 1736, 20, 2706, 168, 5, 121, 449, 3, 7630], [7631, 1, 7632, 25, 400, 203, 701, 70, 142, 32, 581, 158, 421, 204, 9, 1503], [7633, 1, 99, 1, 148, 19, 94, 1415, 11, 7634, 2, 394, 57, 1, 434, 5, 296, 60, 9, 6, 135, 297, 17, 70, 142, 477, 86], [7635, 26, 13, 7636], [311, 246, 127], [7637, 68, 7, 36, 9, 1, 534, 17, 3, 7638, 581, 8, 16, 2745, 2746, 10, 3, 7639, 2747, 1496, 147, 1389, 49, 182], [7640, 7, 5, 296, 29, 14, 4, 752, 36, 32, 3, 172, 7641, 24, 7642], [325, 11, 3, 883, 150, 466, 626, 4, 436, 132, 223], [7643, 104, 9, 26, 1, 96, 1080, 1018, 2, 109, 183, 50, 159, 218, 118], [147, 206, 7644], [532, 11, 7645, 10, 7646, 2748, 7647, 1793, 158, 7648, 78, 1599], [1, 45, 3, 1983, 1, 45, 3, 650, 26, 13, 18, 64, 28, 670, 1543, 285, 192, 51, 2721, 5, 226, 224, 888, 5, 1810, 7649, 4, 1222], [7650, 1, 569, 137, 2, 56, 7, 11, 335, 366, 9, 8, 44, 2, 23, 16, 79, 114], [5, 986, 18, 487, 11, 297, 404, 473, 45, 2, 1763, 1380, 1, 19, 138, 11, 3, 92, 7651, 3, 7652, 292, 83], [7653, 13, 22, 7654, 17, 208, 20, 126, 1, 66, 3, 741, 2, 23, 159, 160, 6, 613, 8, 168, 14, 9], [48, 11, 7655, 44, 2, 7656, 10, 4, 319, 141, 16, 108, 2, 23, 48], [44, 61, 268, 134, 180, 7657, 7658, 127], [7659, 7660, 16, 220], [2749, 91, 7661, 24, 3, 7662], [198, 403, 18, 2, 533, 7663, 191, 7664], [20, 86, 8, 95, 84, 13, 44, 2, 1778, 2, 4, 132, 7665], [7666, 81, 118, 10, 3, 7667], [8, 333, 102, 1712, 62, 7668], [7669, 41, 1, 93, 2, 505, 278, 575, 1, 53], [7670, 278, 106, 138, 84, 6, 17, 278, 8, 30, 24, 7671, 2750, 2750], [2751, 7672, 344, 1804, 441, 3, 391, 209], [1911, 7673, 31, 24, 138], [7674, 679, 82, 1815, 55, 1749, 7675, 271, 7676, 1467, 2643, 1513, 23, 797], [398, 2, 1816, 7677, 2369, 17, 228], [528, 1779, 30, 67, 1682, 4, 7678, 2572, 7, 709, 14, 30], [7679, 40, 49, 309, 7680, 15, 7681, 5, 32, 54, 1131, 1217, 35, 15, 1395, 4, 246, 54], [7682, 1644, 124, 94, 736, 578, 49, 678], [1, 36, 141, 91], [7683, 2752, 7684, 7685, 7686, 2753, 1817, 7687, 275, 15, 6, 7688, 58, 126, 7689], [7690, 1258, 1525, 13, 257, 89, 401, 9, 4, 39, 24, 59, 1099], [7691, 244, 70, 96, 295, 17, 14, 5, 443], [7692, 3, 7693, 2333, 7694, 374, 106, 547, 7695, 5, 7696, 38, 55, 5, 1101, 10, 1328, 7697, 7698], [7699, 358, 114, 1, 53, 320, 23, 1470, 86, 11, 335, 366, 252, 15, 76, 9, 665, 19, 4, 617, 458], [74, 1696, 43, 276, 92, 18, 35, 83, 205], [191, 10, 7700, 187, 520, 14, 4, 7701, 678, 7702, 95, 206, 8, 150, 4, 1143, 31], [7703, 161, 215, 472, 46, 2754, 10, 346, 6, 98, 7704, 61], [348, 53, 19, 4, 1928, 46, 2743, 2, 87, 1700, 7705, 14, 7706, 954], [1, 7707, 30, 398, 2, 3, 2179, 1, 40, 116, 16, 162, 7, 417, 7708], [41, 22, 23, 117, 77, 285, 8, 386, 51, 61, 77, 9, 8, 1000, 7, 1818, 230, 135, 7709, 151], [1, 43, 122, 16, 13, 1030, 34, 59, 2320, 7710, 51, 5, 422, 63, 190], [7711, 7712, 7713, 7714, 7715], [7716, 49, 359, 27, 18, 2755, 11, 3, 1265, 2756, 11, 3, 267, 7717], [8, 108, 1930, 108, 13, 268, 86, 9, 18, 459, 131], [882, 28, 756, 2, 7, 38, 538, 1, 18, 1752, 2654, 6, 25, 4, 427, 12, 114, 2, 260, 90, 285], [7718, 7719, 2288, 141, 1726, 118, 132, 2, 394, 289, 7720, 51, 7721, 1, 1308, 107, 164, 1305, 15, 14, 3, 281, 789], [240, 8, 7722, 3, 7723, 12, 49, 967, 96, 1142, 3, 7724, 17, 7725, 2, 78, 7726, 377], [7727, 24, 7728, 21, 1370, 6, 604], [2757, 268, 159, 191, 26, 2651, 3, 7729, 6, 91, 2, 236, 4, 701, 529], [7730, 199, 81, 10, 3, 7731], [14, 5, 121, 61, 128, 194, 80, 141, 24, 50, 266, 785, 2569, 2570, 83, 1, 136], [7732, 24, 7733, 37, 7734], [44, 2758, 2, 7735, 7736], [454, 14, 520, 7737, 292, 3, 1629, 907, 2759, 9, 32, 1341, 2, 136, 535, 405, 7738, 7739], [61, 51, 7740, 44, 34, 10, 484, 126], [7741, 7742, 140, 7, 178, 142, 1055, 213], [5, 1361, 424, 15, 14, 4, 934, 127, 9, 27, 4, 90, 1577, 2, 4, 90, 31], [4, 570, 14, 2760, 261, 1, 27, 4, 228, 166, 280, 1289, 361, 461, 3, 2460, 16, 111, 600, 15, 4, 7743], [13, 91, 2, 169, 26, 7744, 30, 11, 7745, 118, 2, 39, 2, 1333, 88, 32], [7746, 1014, 37, 138, 10, 15, 14, 738, 1858, 2761, 10, 17, 31, 7747, 7, 11, 7748], [7749, 42, 93, 2, 7750, 439, 206, 8, 991, 2, 19, 485, 468, 7751, 6, 1135, 2, 7752], [2762, 7753, 26], [34, 2, 35, 78, 2226, 12, 1818], [7754, 7755, 7756, 1, 1390], [7757, 22, 7758], [146, 146, 7759, 1, 53, 23, 44, 2, 1708, 10, 4, 172, 153], [7760, 1455, 662, 438, 49, 1407, 414, 31], [71, 150, 4, 1382, 2, 7761, 3, 2763, 91, 12, 7762, 7763, 5, 285, 8, 159], [7764, 263, 104, 90, 112, 135, 155, 7765, 446, 7766, 2, 7, 7767], [7768, 1, 120, 56, 7769, 1111, 915, 2764], [7770, 91, 33, 499, 739, 280], [7771, 7772, 7773, 297, 7774, 355, 111, 362, 2, 41, 4, 7775, 2, 2077, 16, 25, 334, 33], [1, 1116, 11, 40, 21, 102, 32, 123, 118, 99, 7, 130, 86], [1, 505, 30, 17, 952, 6, 1096, 4, 471, 1090, 51, 7776], [214, 106, 7777], [87, 366, 390, 164, 2083, 7778, 87, 62, 125, 7779, 6, 7780, 33, 125, 7781], [13, 2340, 2375, 10, 7782, 33, 7783, 2765, 2031, 1128, 8, 68, 7784, 30, 37, 7785], [1, 82, 3, 90, 613, 2766, 43, 137, 2, 394, 143, 796, 1400], [28, 92, 1713, 259, 7786, 12, 565, 3, 346, 2, 3, 7787, 109, 68, 188, 10, 1366, 74, 7788], [7789, 293], [7790, 128, 11, 1170, 1, 430, 35, 144, 10, 50, 6, 42, 19, 183, 675, 51, 318, 2, 493, 30, 14, 33, 71], [7791, 13, 60, 2, 1516, 5, 1417, 7792, 1198], [7793, 2521, 1, 7794, 2125, 407, 675, 20, 7795, 45, 2, 401, 3, 7796, 52, 73, 66], [7797, 29, 7, 4, 88, 2767, 113, 52, 179, 14, 83, 55, 3, 316, 54, 55, 371, 500, 49, 7798, 182], [2620, 31, 93, 1, 155, 80], [7799, 92, 976, 45, 435, 12, 935, 46, 7800, 2, 5, 994], [7801, 18, 69, 2, 155, 108, 7802, 31], [707, 2, 7803, 6, 7804, 328, 300, 113, 2050, 14, 7805, 7806, 90, 1573, 10, 7807], [7808, 233, 36, 16, 79, 7809, 1, 71, 44, 2, 41, 33, 131, 26], [13, 408, 12, 888, 4, 311, 24, 5, 230, 46, 185, 1793], [7810, 25, 4, 2768, 4, 7811, 324], [7812, 154, 453], [91, 2, 3, 1293, 185, 4, 1353, 290, 61, 10, 783, 6, 197, 123, 2638, 7813], [7814, 22, 4, 429, 33, 267, 8, 4, 1363, 420, 70, 53, 7815, 11, 2769], [7816, 2, 23, 300, 13, 2437, 30, 21, 374, 14, 766], [1819, 7817, 1, 56, 245, 2770, 26, 1285, 9, 2, 15], [69, 98, 940, 90, 31, 1443, 101, 4, 90, 88, 128, 211, 17, 129, 133, 9, 151, 8, 150, 7818, 61, 21, 15, 131, 26], [7819, 154, 34, 11, 7820, 131, 5, 296, 51, 873, 18, 2771, 6, 135, 297, 135, 1531, 3, 28, 223, 21, 102], [109, 144, 2, 180, 1355, 447, 118], [1, 43, 7821, 9, 25, 4, 7822, 57, 7823, 15, 237, 6, 1, 42, 35, 4, 1820, 7, 142, 388, 15, 80, 2556], [198, 532, 10, 286, 2, 62, 213, 87, 366, 28, 241, 21, 17, 26, 325, 14, 5, 169, 1510, 2, 2760, 474, 7824, 303, 12, 641, 2772], [18, 45, 102, 1843], [7825, 1, 7826, 17, 182, 2, 2773, 261, 3, 2719, 27, 2, 4, 79, 1057, 2497], [7827, 546, 1, 683, 3, 62, 64], [7828, 9, 53, 23, 90, 50, 50, 6, 80, 50, 19, 114], [7829, 7830, 104, 5, 61, 472], [7831, 146, 1, 804, 20, 128, 10, 217, 524, 1578, 4, 7832, 673, 1, 399, 195, 539], [1, 18, 1775, 152, 51, 2023, 1161, 4, 7833, 7834, 6, 5, 840, 297, 1, 1674, 36, 4, 7835, 264, 151, 581, 47], [1, 18, 657, 3, 78, 782, 7836, 7837, 175, 107, 47, 43, 137], [25, 4, 1821, 592, 738, 7838, 201, 56, 79, 12, 9, 119, 193, 13, 44, 48, 2, 169, 126, 40, 5, 92, 1658], [1883, 7839, 7840, 1100, 7841, 634], [2144, 87, 2395], [1336, 12, 3, 31, 2761, 1078, 7842, 7843, 7844, 2774, 6, 4, 164, 202, 12, 7845, 32, 2411, 11, 4, 1403, 7846], [850, 34, 21, 3, 1910, 127, 33, 142, 23, 7847], [168, 14, 5, 1822, 1010, 627, 23, 108, 2, 256, 7848], [7849, 147, 81, 10, 3, 7850], [7851, 7852, 107, 49, 38, 330, 1, 40, 9, 119, 25, 16, 347, 1, 72, 1, 339, 18, 41, 5, 1417, 1094, 26, 47], [7853, 302, 302, 42, 1069, 7854, 25, 68, 18, 15, 269, 7, 66, 2, 7855, 6, 3, 2616, 51, 62, 88, 20], [243, 54, 10, 169, 28, 88, 100], [7856, 46, 27, 90], [142, 23, 4, 28, 31], [13, 7857, 12, 2551, 7858, 7859, 17, 7860, 7861, 51, 3, 1823, 47, 13, 121, 386, 34, 127, 20, 25, 114, 83], [2775, 147, 2715, 1751, 9, 8], [7862, 65, 25, 4, 1145, 1267, 427, 7863, 2, 4, 7864, 184, 420], [7865, 10, 26, 1, 7866, 101, 748, 4, 335, 7867, 584, 308, 211, 2776, 11, 3, 7868, 574], [7869, 343, 1141, 7870], [59, 1783, 51, 2206, 29, 7871, 12, 116, 8, 2440, 51, 7872, 291, 1161, 4, 1688, 1126], [7873, 451, 7874, 7875], [7876, 439, 8, 18, 736, 6, 7877, 95, 9, 8, 21, 7, 38], [7878, 86, 29, 199, 7879, 178, 29, 168, 24, 7880, 2676, 73, 568, 7881, 7882, 6, 803, 2431, 286, 2777], [7883, 108, 248, 2, 49, 404, 107], [7884, 7885, 407, 924, 652, 829, 8, 565, 91, 7886, 3, 594, 8, 1130, 34], [7887, 1, 96, 7888, 7, 77, 70, 198, 2, 301, 17, 49, 2430, 129, 23, 617, 7, 14, 3, 281, 809], [566, 1067, 205, 124, 18, 7889, 30, 107, 19, 114], [7890, 57, 29, 205, 596, 15], [7891, 1, 19, 16, 199, 355, 7892, 900, 70, 29, 187, 381, 535], [7893, 7, 370, 19, 3, 316, 7894, 1, 41, 47, 377], [150, 823, 60, 109, 2300, 338, 2, 7895, 15, 20, 26, 1, 687, 30, 188, 36, 25, 205, 585, 1749, 207, 29, 7], [7896, 41, 17, 1249, 7897, 321, 23, 4, 172, 464], [282, 111, 3, 1456, 1, 40, 143, 7898], [7, 178, 29, 44, 2, 40, 15, 1008, 2778, 12, 7899, 7900, 403, 37, 93, 2, 598, 113, 587, 2, 180, 7901], [7902, 1185, 350, 63, 87, 671, 287, 76, 270, 17, 455], [373, 4, 2779, 78, 7903, 14, 7904, 7905], [7906, 7907, 184, 7908, 11, 33, 717], [367, 2780, 365, 2, 56, 7, 83, 33, 8, 4, 7909, 121, 2, 35, 671, 14, 52, 206, 8, 30, 2], [191, 9, 268, 459, 36, 219, 3, 883, 8, 26, 32, 7910, 6, 233, 90, 1, 75, 93, 4, 7911, 113, 1469, 7912, 59, 7913, 38], [7914, 595, 3, 7915, 7916, 32, 2781, 51, 7917, 23, 114], [269, 7918, 6, 7919, 7920, 301], [7921, 74, 228, 1, 148, 620, 4, 436, 14, 33, 1813, 25, 246, 495, 11, 86, 7, 53, 236, 835, 214, 19, 3, 316, 826], [7922, 107, 83, 1, 71, 3, 1802, 2217, 15, 55, 7923, 59, 643, 339, 265], [7924, 104, 4, 7925, 821, 916, 483], [52, 8, 3, 635, 680, 1093, 473, 218, 94, 1023, 635, 680, 2782, 1279, 1, 53, 314, 177, 645, 11, 157, 428], [26, 1, 43, 290, 2783, 107, 1, 97, 7926], [5, 697, 8, 503, 7927, 7928, 396, 2439, 7929, 20, 106, 17, 64, 7930, 7931, 1667, 954], [7932, 1, 42, 72, 1, 148, 23, 183, 80, 188, 365, 1, 1342, 30, 6, 120, 39, 2, 169], [1, 72, 13, 44, 2, 1015, 34, 32, 31, 471, 36, 4, 1020], [7933, 37, 70, 29, 16, 44, 48, 2, 7934, 7935, 67, 73, 962, 9], [7936, 25, 22, 79, 12, 4, 1177, 67, 7, 1649, 9, 47, 2671], [14, 3, 121, 2, 7937], [7938, 981, 1, 58, 1, 19, 2, 2711, 77, 3, 7939, 2229, 8, 1769, 16, 981, 10, 626, 7940, 81], [501, 33, 153, 7941, 14, 7942, 7943, 7944, 260, 10, 4, 950, 14, 7945, 23, 4, 28, 125], [1232, 1483, 543, 11, 1867, 6, 565, 34, 219, 543, 191, 10, 181, 1844, 910, 7946, 7947, 2522, 6, 7948], [7949, 25, 4, 370, 19, 10, 7950, 2663, 70, 19, 87, 12, 116], [204, 1320, 12, 122, 22, 251, 48, 2, 169, 5, 169], [7951, 252, 143, 2, 1730, 2, 5, 781, 85], [7952, 13, 16, 365, 7, 69, 114, 52, 27, 9, 36], [106, 7953, 18, 45, 9, 6, 106, 22, 45, 4, 2669, 76, 2, 260, 3, 195], [539, 7954, 8, 480, 2394], [109, 144, 2, 39, 2, 3, 880, 21, 5, 586, 44, 2, 56, 3, 1539, 1289, 548, 25, 239], [7955, 147, 115, 251, 272, 86, 1566, 234, 9, 44, 1364, 15, 4, 202, 12, 3, 237, 2196, 7956, 90, 50], [109, 68, 188, 60, 3, 1809, 7957], [7958, 7959, 7960], [13, 44, 2, 122, 1, 19, 3, 7961, 732, 84, 92, 320, 3, 78, 2784, 53, 23, 11, 101, 3, 54, 1, 35, 61, 817], [7962, 107, 1, 42, 614, 9, 27, 80, 262, 4, 249, 390], [18, 34, 3, 783, 6, 1447, 35, 144, 10, 33, 78, 592, 31], [7963, 608, 12, 1214, 16, 386, 10, 15], [7964, 7, 29, 4, 7965, 86, 70, 39, 1633, 9, 1183, 20, 55, 77, 57, 410, 15, 4, 7966, 1, 71, 7967, 12, 4, 2785, 7968, 107], [7969, 74, 154, 131, 7970, 9, 32, 856], [7971, 1045, 106, 1142, 4, 1824, 7972, 26, 16, 7, 93, 2, 189, 1219], [896, 268, 3, 247, 642, 2, 7973], [7974, 360, 1218, 7975], [367, 7976, 373, 7, 449, 7977], [172, 7978, 15, 602], [7979, 263, 252, 15, 795, 9, 47, 1, 18, 7980, 24, 102, 32, 3, 54], [7981, 7982, 1, 72, 64, 12, 7, 142, 295, 7983, 2786, 6, 56, 76, 9, 8, 113, 41, 7984, 7985, 1824, 2786], [54, 2, 432, 216, 56, 7, 178, 11, 4, 235, 42, 82, 15, 7986], [7987, 9, 27, 990, 2, 56, 7, 38, 177, 1, 7988, 611, 49, 346], [398, 2, 2702, 1, 72, 13, 196, 134, 186, 12, 116], [7989, 461, 7, 129, 40, 116, 13, 307, 24, 3, 2787, 138, 24, 3, 1277, 6, 18, 2788, 91, 1758, 12, 7990, 1, 19, 208, 2, 313], [1782, 1, 71], [268, 2789, 78, 350, 7991, 7992, 7993, 7994, 7995, 63, 7996, 359, 14], [7997, 147, 25, 7998, 7999, 97, 36, 746, 200, 8000], [18, 69, 8001, 6, 8002, 603, 5, 465, 6, 604, 11, 2787, 75, 4, 164, 8003, 8004, 20, 8005, 2030, 245, 15, 1027], [8006, 927, 15, 11, 10, 3, 157, 64, 77, 7, 42, 504], [8, 14, 3, 1651], [8007, 112, 289, 35, 3, 391, 12, 7, 63, 1, 11, 49, 2790, 7, 339, 22, 8008], [92, 383, 83], [72, 1, 321, 39, 1240, 11, 3, 883], [13, 75, 3, 8009], [150, 4, 90, 276], [8010, 8011, 408, 64, 153, 93, 2, 39, 8012, 1090, 1229, 2, 56, 52, 64, 8, 2791, 3, 177, 11, 8013], [48, 51, 819, 778, 274, 119], [39, 2026, 39, 668, 175, 285, 586], [2792, 7, 29, 16, 220, 6, 1, 40, 7], [1, 19, 9, 1774], [1, 66, 9, 26, 268, 373, 52, 1, 362], [8014, 52, 29, 7, 8015, 11, 6, 42, 155, 858, 63, 8016, 8017, 1, 58, 16, 199, 214, 112, 17, 6, 475, 35, 4, 285], [8018, 147, 641, 822, 14, 3, 78, 8019, 8020, 1005, 27, 3, 420, 10, 7, 2, 23], [8021, 95, 437, 35, 65, 55, 126, 55, 1236, 63, 48, 2, 23, 4, 8022, 513], [269, 491, 6, 363, 4, 427, 12, 286, 25, 44, 2, 23, 4, 592, 276], [8023, 1, 1135, 139, 142, 18, 35, 14, 21, 485, 468, 2297, 467, 8024, 835, 209], [8025, 28, 13, 28, 81], [8026, 55, 124, 196, 69, 2, 189, 17, 476, 1, 19, 37, 563, 76, 2793, 17, 53, 23], [8027, 3, 333, 8028, 8, 75, 44, 943, 8029, 8030], [8031, 8032, 8, 310, 4, 181, 522, 72, 33, 8, 3, 2449, 89, 234, 10, 4, 235, 8033, 2, 2337, 67, 446, 57, 11, 501, 118], [8034, 140, 76, 507, 112, 3, 249, 198, 13, 736, 53, 500, 5, 172, 153, 21, 3, 247, 1375, 6, 109, 188, 60, 8035], [22, 17, 1, 504, 32, 20, 13, 109, 80, 2794, 350, 99, 70, 69, 33, 48, 67, 1, 338, 2794, 280, 1, 72, 8036, 8037, 100, 80], [395, 8038, 8039], [8040, 25, 307, 405, 28, 6, 9, 210, 1329, 36, 1078], [8041, 8042, 42, 7, 19, 2, 155, 9, 266, 3, 281, 576, 10, 116, 2, 23, 8043, 7, 56, 289, 274], [8044, 8045, 289, 1, 2599, 116, 14, 5, 608], [18, 487, 48, 51, 8046], [112, 415, 30, 565, 3, 374, 10, 4, 8047, 3, 540, 61, 26, 578, 4, 1124, 12, 8048, 235, 8049, 8050, 10, 301, 3, 28, 226], [28, 8051, 2, 3, 8052], [8053, 7, 370, 612], [8054, 8, 403, 11, 2005, 1665, 6, 163, 10, 149, 114, 63, 244, 80, 8055], [8056, 37, 15, 418], [9, 8, 16, 220, 11, 8057, 8058, 1, 71, 644, 306, 2795, 2708, 8059, 538, 25, 32, 16, 691, 83, 1188], [8060, 74, 3, 177, 121, 8, 2, 22, 587, 10, 87, 530, 73, 53, 136, 61, 6, 8061, 9, 128, 7, 19, 2, 587, 294, 8062], [47, 81, 10, 3, 533, 13, 644, 556, 3, 316, 556, 1, 27, 644, 4, 319, 525, 390], [145, 3, 845, 288, 2796, 499, 8063, 191], [2495, 5, 78, 8064, 1193, 25, 181, 114], [8065, 365, 2, 256, 154, 242, 42, 8066, 2, 388, 77, 7, 97, 7, 93, 98, 8067, 51, 3, 1145, 183, 2567, 10, 8068, 8069], [1119, 8070, 1, 71, 16, 188, 20, 104, 8071, 192, 2310, 1, 40, 7, 16, 79], [1238, 8072, 11, 3, 8073, 1075, 221, 1140, 59, 942, 83, 8074], [8075, 1797, 11, 651, 1118, 161, 30, 126, 72, 89, 41, 59, 8076, 10, 3, 8077, 1729, 687, 283, 8078], [8079, 8080, 1, 8081, 45, 38, 79, 54, 14, 5, 8082, 59, 1021, 6, 1368, 1634, 265, 21, 706, 3, 54], [8083, 25, 410, 2622, 420], [8, 571, 2, 3, 515], [184, 822, 2, 8084, 8085, 8086, 106, 480, 255, 3, 2207, 676, 10, 470, 573, 14, 8087, 217, 8088], [2646, 1, 43, 137, 2, 707, 2, 3, 78, 608], [8089, 312, 15, 1052], [18, 66, 2, 155, 17, 5, 164, 986, 8, 16, 347, 242, 26, 709, 14], [8090, 65, 26, 8091, 19, 2, 8092], [8093, 37, 8094, 130, 909, 11, 3, 269, 12, 33, 2797], [8095, 37, 697, 253, 212, 1, 71, 578, 357, 77, 9, 245, 57, 97, 151], [48, 274, 1825, 97, 344, 2, 312, 53, 179, 312, 131, 48], [499, 1661, 402, 470, 2051, 51, 3, 8096, 8097, 1210, 1581, 1079], [538, 6, 33, 8, 3, 164, 8098, 161, 34, 11, 8099, 1365, 8100, 6, 647, 8, 14, 3, 121, 10, 8101, 728, 8102, 28, 8103], [8104, 17, 27, 221, 46, 70, 29, 18, 187, 972], [1516, 532], [8105, 85, 482, 15, 59, 12, 3, 78, 272, 16, 1, 96, 476, 9, 14, 3, 8106, 14, 318], [8107, 81, 8108, 47], [8109, 1, 69, 4, 8110, 63, 73, 489, 8111, 16, 1, 18, 1023, 2, 1080, 63, 70, 255, 30], [8112, 8113, 162, 7, 375, 10, 1388, 2744, 616, 2, 41, 9, 33, 2444, 53, 1398, 3, 8114, 157, 318], [8115, 1690, 500], [722, 1, 72, 1, 134, 464, 59, 207, 8116, 223, 11, 1778, 194, 141, 129, 23, 341], [64, 31, 197, 109, 4, 1108, 10, 84], [8117, 140, 70, 600, 9, 21, 3, 8118, 8119, 47, 104, 857, 52, 1, 119, 67, 1, 27, 328, 9], [8120, 147], [8121, 47, 77, 154, 165, 2, 744, 10, 344, 8122, 168], [1505, 30, 5, 309, 766], [8123, 13, 22, 656], [8124, 900, 81], [8125, 936, 49, 474], [8126, 47, 9, 8, 4, 90, 8127, 1, 36, 3, 904, 436, 3, 177], [8128, 81], [8129, 1133], [951, 3, 492], [5, 8130, 137, 2, 1496, 17, 46], [1822, 537, 2798, 10, 8131, 367, 66, 2, 401, 216, 2, 4, 433, 64, 113, 10, 502, 31, 1, 19, 4, 1822, 537, 2798, 160], [194, 350, 192, 51, 8132, 350, 1732, 8, 5, 8133, 462, 4, 344, 1226], [8134, 8135, 105, 25, 4, 8136], [8137, 87, 2027, 8, 4, 949, 2349, 8138, 3, 178, 12, 705, 51, 2799, 29, 175, 38, 579, 8139, 324, 8140, 1781, 15, 63, 3, 971], [8141, 8142, 12, 740, 101, 8143, 8144, 20, 8145, 32, 31], [8146, 28, 241, 21, 3, 78, 8147, 1, 40, 2655, 73, 813, 16, 28, 6, 133, 15, 1027], [8148, 8149, 7, 19, 4, 329, 8150, 86, 463, 42, 1763, 49, 31, 285], [147, 367, 178, 76, 57, 250, 1, 2559, 24, 61, 26, 185, 4, 172, 54], [173, 277, 34, 5, 309, 139, 6, 275, 15, 58, 52, 7, 755, 8151, 1258], [8152, 358, 36, 4, 90, 8153, 2, 612, 310, 8154, 133, 310, 2800, 6, 234, 3, 1473, 808, 1383, 8155, 259], [8156, 25, 242, 2, 23, 419], [8157, 8158, 45, 1169, 84, 939, 5, 2801, 2802], [8159, 18, 8160, 3, 272, 1, 69, 8161, 21, 3, 2803, 57, 338, 6, 430, 35, 151, 793, 126, 38, 8162, 28, 88, 8163, 572], [8164, 162, 8165, 8166], [8167, 99, 1, 148, 313, 10, 7], [8168, 7, 53, 23, 61, 126, 400], [8169, 1, 255, 3, 1826, 8170, 68, 8171, 8172, 2804, 101, 8173, 2804, 1, 95, 17, 2675], [8174, 1, 142, 136, 712, 21, 143, 85], [1, 43, 137, 10, 9, 2, 690, 30, 322, 25, 1211, 2, 23, 11, 3, 1480, 274, 33, 125], [8175, 1304, 157, 8176, 358, 79, 8177], [107, 8178, 1777, 2, 133, 15, 8179, 210, 568, 2, 23, 168], [8180, 8181, 724, 18, 1152, 8182, 215, 9, 6, 89, 23, 108], [8183, 13, 22, 8184, 7, 13, 18, 8185, 7], [8186, 619, 173, 81], [8187, 8188, 132, 20, 386, 38, 330, 10, 15, 13, 330, 341, 2805], [8189, 941, 131, 2055, 1277, 1278, 1827, 464, 1122, 667, 5, 422, 8190, 8191, 1278, 667, 8192, 676, 1827, 2356], [8193, 8194, 7, 96, 8195, 30, 55, 143, 11, 164, 184, 1828], [8196, 28, 1427, 247, 35, 4, 164, 2510, 55, 25, 8197, 20, 132, 322, 85, 44, 10, 615, 21, 8198], [8199, 368, 139, 205, 19, 1032, 1906], [609, 101, 3, 121, 44, 2, 4, 731, 1962, 8200, 46, 1, 40, 731, 139, 9, 18, 16, 710, 5, 8201, 6, 1, 29, 2806], [8202, 286, 8, 4, 90, 8203, 595, 25, 168, 21, 7, 8204, 2740, 527, 60, 286], [8205, 17, 1, 8206, 1, 71], [109, 144, 10, 2496, 160, 248, 8207, 13, 203, 637, 1994, 111, 18, 210, 58, 9, 208], [2807, 163, 115, 409, 2, 8208, 88, 77, 1, 8209, 820, 10, 7, 14, 738, 185, 3, 182, 96, 1, 35, 4, 580], [8210, 1, 304, 278, 69, 2, 1251, 30, 6, 8211, 17, 100, 8, 123, 2550, 1391, 8212, 3, 8213], [8214, 162, 7, 162, 7, 327, 29, 3, 164, 195, 411, 918, 15, 8215, 6, 44], [1, 8216, 167, 180, 30, 127, 21, 8217, 35, 288, 1632, 716, 6, 380, 388, 9, 4, 934], [2751, 674, 579, 1624, 1745], [44, 2, 8218, 191, 134, 495, 34, 21, 5, 1669, 8219, 6, 203, 8220], [1066, 11, 169, 21, 4, 186, 1002, 6, 13, 186, 145, 668, 1331], [8221, 95, 7, 19, 4, 2808], [8222, 944], [8223, 47, 140, 490, 1, 167, 56, 9], [28, 92, 206, 37, 138, 46, 113, 84], [8224, 2754], [8225, 1387, 8, 1234], [803, 34, 21, 3, 1706, 359, 359], [8226, 16, 8227, 2, 56, 7, 63, 1112, 1162, 33, 249, 234, 161, 2, 1683], [8228, 1079, 8229, 320, 106, 45, 4, 132, 1059, 2, 9, 67, 8, 17, 8230, 1764, 203, 1655, 11, 3, 1059], [187, 225], [80, 8231, 161, 8232, 230, 1481, 2809, 2688, 8233, 12, 8234, 10, 4, 956, 95, 8235, 210, 388, 15, 4, 1946, 118], [8236, 360, 28, 1829, 20, 110, 112, 7, 155, 17, 1753, 8, 8237, 21, 7, 49, 8238], [946, 1, 40, 7, 178], [8239, 8240, 865, 439, 8, 16, 8241], [8242, 47, 1, 40, 174, 2770, 12, 8243, 264, 151, 2810, 275, 57, 236, 34, 795, 5, 368, 8244, 272, 8245, 2810, 275, 15, 303, 9, 152], [8246, 47, 77, 7, 218, 982, 183, 12, 8247, 8248, 543, 73, 53, 705, 774, 11, 3, 160, 955, 22, 17, 1, 129, 58, 2805], [8249, 146, 17, 8, 59, 442, 12, 476], [3, 308, 963, 8, 480, 535, 8250], [8251, 239, 1, 18, 475, 314, 116, 152, 47], [8252, 1113, 65, 1307, 13, 442, 12, 1202, 55, 2, 52, 3, 8253, 893, 8, 47, 265, 15, 34, 52, 442, 857], [571, 2, 169, 206, 729], [165, 33, 14, 5, 8254, 1063], [13, 108, 25, 219, 785], [8255, 1830, 8256, 2177, 2736, 8257, 1830, 71, 2811, 8258, 1756, 734, 71, 2811, 8259, 8260, 224, 8261], [8262, 453, 87, 158, 359, 346, 365, 57, 96, 1055, 213, 173, 42, 23, 4, 8263], [147, 178, 13, 18, 48, 51, 301, 47], [408, 60, 2632, 8264, 1070, 13, 503, 134, 399, 9, 674, 47, 12, 740, 67, 9, 642, 34, 47], [1797, 11, 861, 2271, 21, 149], [106, 69, 3, 8265, 1734, 11], [109, 2, 56, 5, 465, 1129], [32, 5, 226, 8, 17, 2686, 8266, 72, 37, 20, 7, 58, 52, 1, 329, 5, 8267, 351], [8268, 89, 23, 14, 9, 157, 125, 107, 113, 1, 96, 24, 382, 295, 243, 1489], [1321, 152, 11, 8269], [8270, 16, 41, 1], [8271, 8272, 8273, 8274, 2579, 8275], [4, 820, 106, 94, 8276, 2, 3, 2812, 311, 8277, 2813], [8278, 55, 11, 8279], [8280, 95, 7, 69, 4, 28, 2814, 6, 3, 8281, 2814, 27, 1139], [8282, 1626, 78, 2637, 391, 245, 9, 38, 246, 2, 2512, 7, 8283, 8284], [8285, 7, 238, 4, 427, 69, 4, 1780, 21, 8286, 6, 4, 132, 347, 8287, 21, 761, 132, 559], [16, 108, 1387, 727], [8288, 1, 58, 131, 287, 321, 35, 4, 477, 10, 5, 378], [830, 1, 69, 8289, 127, 38, 8290], [304, 214, 45, 15, 4, 556, 2291, 13, 16, 1321], [13, 4, 115, 520, 228, 6, 77, 7, 8291, 8292, 70, 53, 19, 4, 427, 12, 114, 56, 5, 421, 83, 8293], [8294, 162, 7, 10, 49, 2679], [8295, 326, 208], [1, 181, 79, 156, 138, 3, 128, 624, 1, 39, 8, 5, 149, 36, 8296, 41, 7, 178, 36, 138, 893, 15], [8297, 13, 1170, 5, 1789, 22, 18, 8298], [2476, 78, 139, 6, 254, 435, 12, 2815, 1, 461, 52, 4, 279, 88, 13, 8299], [8300, 64, 1, 72, 89, 1055, 7], [8301, 1751, 104, 52, 73, 2558, 155], [8302, 105, 2, 256, 60, 49, 8303, 20, 7, 112, 41, 9, 2, 1748, 114, 544, 423, 1024], [8304, 24, 3, 762], [8305, 4, 1316, 8306, 2723, 105, 1, 167, 39, 14, 1490, 8307, 166, 77, 1, 389, 5, 802], [1368, 1776, 8308, 8309, 1212, 126, 219, 11, 8310, 3, 177], [185, 8311], [18, 1369, 24, 61, 578, 3, 153, 1, 40, 33, 223], [998, 914, 8312], [2705, 24, 8313, 8314, 11, 4, 8315, 232, 8316, 8317, 8318, 3, 103, 241], [8319, 146, 146, 9, 53, 1, 96, 23, 8320], [8321, 8322, 5, 164, 513], [8323, 191, 10, 4, 28, 31, 24, 138, 28, 241, 14, 49, 476, 324], [18, 287, 104, 32, 1, 19, 2, 155, 8324], [2504, 475, 122, 62, 54, 2, 8325], [8, 176, 51, 3, 778, 20, 772, 3, 2415, 1097], [2427, 599, 1035, 173, 101, 8326, 101, 946, 1831, 14, 3, 625, 720, 355, 77, 7, 36, 40, 8327], [18, 2648, 98, 450, 11, 160, 1279, 27, 181, 869, 20, 348, 1, 1192, 9, 349, 8, 3, 128, 64, 17, 53, 265, 15, 21, 5, 448], [8, 163, 409, 2, 466, 11, 194, 525, 124, 771, 17, 787, 23, 4, 1805, 8328, 24, 3, 8329, 46], [47, 1, 40, 3, 8330, 8331, 8332, 9, 607, 8333, 6, 8334, 6, 2141, 73, 29, 28, 38], [2707, 510, 2816, 2379, 38, 312, 1620, 8335], [2817, 108, 49, 617, 48, 8336, 765, 8337, 49, 8338, 518, 262, 356, 2127, 390], [2818, 2819, 8339, 13, 8340, 10, 7, 13, 460, 7, 36, 2818], [1119, 19, 4, 617, 458, 63, 95, 7, 19, 4, 90, 31, 46, 79, 40, 63, 647, 179], [8341, 8342, 1, 304, 3, 80, 957, 3, 80, 887, 3, 151, 7, 35, 24, 9, 36, 21, 368, 195], [2820, 8343, 8344], [8345, 360, 65, 56, 76, 693, 500, 301, 388, 77, 7, 35, 273, 693], [8346, 8347, 8348, 8349, 580, 10, 327, 990, 139], [8350, 107, 7, 19, 4, 1099], [8351, 146, 25, 239, 1, 475, 137, 183, 1041, 1, 19, 37, 53, 1687, 627, 40, 9], [8352, 2821, 60, 2822, 11, 3, 406, 8353, 100, 55, 3, 368, 2823, 403, 8354, 11, 3, 267, 46], [18, 1360, 32, 5, 8355, 8356, 397, 146, 1, 71, 4, 184, 8357], [2607, 18, 254, 7, 14, 407, 7, 227, 259, 19, 4, 114, 817, 1, 58, 632, 29, 134, 23, 2212, 59, 2796], [779, 185, 2286, 51, 8358, 9, 27, 5, 160, 721, 20, 205, 1, 43, 137, 2, 39, 48], [8, 268, 159, 21, 2824, 1832, 403, 8359, 8360], [8361, 1, 260, 9, 20, 128, 1781, 389, 8362, 129, 22, 260, 9, 21, 879, 113, 2801], [8363, 13, 811, 748, 71, 1109, 14, 3, 8364, 12, 3, 8365, 791, 2825, 3, 979, 791], [8366, 140, 240, 1022, 208, 25, 4, 934, 18, 275, 15, 58, 207, 6, 67], [1570, 231, 14, 1618, 2577, 8367, 172, 121, 2, 2826, 2493, 8, 1618, 1234], [8368, 622, 1553, 262, 7, 72, 627, 23, 451, 827, 303], [503, 199, 397, 2, 313, 207, 2, 231, 1600, 144, 20, 1, 370, 2554, 9, 10, 4, 235, 127], [1715, 74, 65, 8369, 348, 1753, 8370, 9], [787, 257, 23, 132, 67, 1, 96, 231, 168, 51, 61, 348, 8371, 1064], [1392, 2, 52, 77, 8372, 259, 369, 45, 61, 494, 525, 390, 2771, 222, 1783], [8373, 104, 452, 1723, 12, 877, 1, 399], [16, 8374, 1581, 48, 14, 2827, 79, 151, 8375, 65, 159, 499, 1661, 6, 2827], [8376, 28, 2, 256, 154, 108], [8, 325, 21, 8377, 11, 3, 247, 62, 31, 11, 8378, 69, 4, 114, 153], [55, 4, 8379, 7, 339, 598, 4, 344, 1800, 12, 8380, 14, 8381], [1, 68, 36, 586, 1367, 28, 21, 8382, 8383], [243, 5, 1786, 397, 2194, 15, 694, 4, 2828, 1, 623, 1819, 694, 605, 605, 694, 1, 2829, 777, 839, 351, 25, 2328, 54, 63, 13, 1777, 2, 35, 8384], [8385, 2652, 342, 1, 1146, 2, 23, 410, 4, 8386], [528, 25, 22, 17, 294, 8387, 20, 1, 41, 8388, 7, 35, 59, 122, 126, 330, 823], [8389, 13, 1229, 2, 8390, 216, 36, 17], [8391, 16, 154, 3, 1057, 852, 11, 33, 2782, 315, 3, 429, 2641, 1359, 143, 4, 319, 2830, 36, 76, 2, 8392], [1583, 94, 86, 159, 17], [8393, 8394, 10, 7, 2], [8395, 147, 820, 10, 2680, 291, 811, 11, 904, 420, 8396, 8397, 3, 591, 820, 55, 199, 355, 55, 7, 96], [8398, 538, 77, 154, 22, 372, 1, 129, 40, 10, 7, 2, 56, 5, 454, 1, 255, 10, 7, 6, 1, 8399, 7, 60, 216, 2823, 8400], [8401, 81, 9, 27, 90, 451, 7, 118], [254, 2831, 62, 817, 1456, 288, 8402], [8403], [566, 8404], [8, 78, 2, 8405, 58, 214, 13, 134, 8406, 1367, 134, 312, 15, 20, 380, 401, 9, 4, 295], [8407, 108, 248, 6, 234, 9, 1724, 8408], [8409, 146, 9, 270, 539], [8410, 5, 1989, 248, 529, 8411, 62, 8412], [8413, 1, 72, 8414, 8415, 27, 294, 2618, 14, 7, 142, 399, 102, 4, 8416, 6, 4, 8417, 2364, 8418], [109, 144, 10, 5, 160, 31, 24, 5, 78, 285], [398, 2, 763, 2720, 43, 137, 438, 111, 462, 83, 14, 3, 1582, 1, 40, 143, 669, 79], [8419, 263, 191, 16, 73, 205, 197, 3, 8420, 2378, 1, 43, 290, 1380, 131, 26, 8421], [1008, 8422, 8423, 34, 14, 15, 304, 89, 401, 3, 164, 8424, 4, 447, 6, 1266, 8425, 9, 712, 84], [8426, 264, 23, 108, 21, 18, 8427], [8428, 65, 47, 1, 19, 128, 69, 18, 123, 194, 170, 122, 47, 1, 71, 80, 552, 262, 638], [28, 92, 372, 31, 8429, 2279, 1359, 332, 2298, 85, 109, 5, 342, 112], [8430, 669, 1, 18, 8431, 76, 2, 293, 14, 33, 211, 47, 1726, 894, 299, 894, 299, 8432], [830, 46, 8, 276, 29, 7, 55, 188, 55, 1, 71, 13, 188, 1831], [8433, 3, 8434, 1833, 8, 48, 11, 2385, 8435], [8436, 28, 92], [8437, 1, 71, 179, 8438, 12, 8439, 2806, 1, 42, 36, 8440], [8441, 77, 7, 128, 66, 271, 6, 999, 10, 1527, 85, 8442, 8, 3, 64, 2, 312], [658, 8443, 8444, 2555, 8445, 18, 64, 227, 24, 7, 6, 1, 58, 25, 134, 23, 4, 441, 31], [560, 170, 438, 3, 78, 782, 1834, 14, 845, 6, 26, 1158], [8446, 174, 453], [463, 310, 4, 28, 153], [8447, 1073, 32, 3, 54, 1, 75, 19, 4, 1337, 12, 3, 8448, 8449, 70, 338, 2, 260, 11, 8450, 138, 11, 1176, 38], [8451, 268, 33, 1207, 8, 90, 8452, 14, 8453, 1164], [92, 2486, 367, 2, 32, 5, 78, 350], [13, 14, 532], [8454, 65, 2162, 25, 168, 14, 8455, 5, 54, 16, 8456, 8457, 318], [8458, 1, 238, 7, 100], [8459, 20, 12, 740, 18, 547, 4, 903, 12, 739, 1759], [8460, 722, 7, 29, 4, 329, 2832], [8461, 1, 433, 9, 8462, 1, 657, 3, 8463, 16, 199, 355, 18, 2, 256, 17, 369, 481, 118], [5, 1061, 1820, 106, 2287, 101, 720, 191, 6, 18, 8464, 2, 8465, 2833, 1580, 5, 8466, 6, 5, 8467, 273, 667, 1222, 1043], [328, 33, 1269, 431, 8468], [108, 356, 530, 745, 1, 40, 7, 16, 79, 6, 7, 133, 15, 3, 8469, 228, 11, 3, 1163, 267], [2832, 63, 1356, 29, 1136, 12, 15, 1, 1295, 33, 88, 115, 28, 1, 166, 687, 30, 274, 262, 1270, 10, 5, 1759], [298, 80, 262, 32, 33, 77, 128, 70, 32, 784, 76, 2, 612, 20, 315, 555, 8, 357, 315, 357, 8, 357], [380, 19, 4, 466, 89, 23, 48, 126], [8470, 115, 115, 188, 10, 7], [18, 69, 132, 8471, 6, 313, 8472, 373, 4, 308, 1835, 12, 222, 8473, 8474, 11, 5, 2152, 8475, 53, 23, 108], [265, 8476, 34, 376, 70, 29, 375, 11, 2834, 505, 15, 48, 4, 925, 8477, 29, 1138, 189, 597, 2835], [8478, 162, 7, 10, 328, 310, 98, 239, 182, 7, 178, 130, 90, 136, 48, 126, 8479, 351], [8480, 81, 10, 1077, 1, 326, 94, 8481, 208, 16, 264, 155, 8482, 734, 866, 7, 4, 1191, 679, 714, 63, 3, 1179, 12, 3, 8483, 8484], [8485, 70, 1391, 120, 32, 936, 30, 67, 7, 487, 403, 1808, 13, 181, 372, 18, 573, 2198, 98, 352], [105, 8486, 8487, 739, 47, 22, 2416, 739, 536, 52, 218, 1, 167, 56, 9], [8488, 367, 8489, 7, 8490, 67, 112, 7, 35, 4, 100, 2718], [8491, 1385, 13, 2402, 1262, 38, 22, 1282, 119], [8492, 47, 146, 58, 4, 319, 139, 21, 9, 26], [8493, 3, 8494, 104, 15], [1374, 76, 2, 260, 2836], [106, 480, 1432, 3, 8495, 11, 5, 2241, 302, 1392, 2, 2735, 9, 1549, 1637, 8, 8496, 89, 75, 41, 9, 119], [8497, 81, 10, 17, 1191, 73, 568, 405, 392, 6, 191, 10, 8498, 8499], [8500, 177, 12, 241], [8501, 301, 54], [18, 395, 328, 422, 932], [8502, 2837, 6, 8503, 8504, 8505, 88, 27, 90], [7, 227, 36, 4, 8506, 11, 49, 537, 539, 8507], [408, 1, 36, 3, 182, 513, 3, 8508, 2146, 75, 43, 137, 87, 35, 1622, 944, 109, 144, 87, 284, 91, 817], [2838, 146, 206, 462, 4, 344, 2838, 8509, 8510, 612, 33, 21, 32, 2689, 8511], [8512, 14, 44, 14, 4, 164, 650, 14, 3, 8513, 14, 317, 339, 23, 11, 123, 2, 3, 8514], [5, 346, 198, 1038, 152, 472, 6, 13, 61, 558, 6, 9, 8, 115, 1408, 398, 2, 3, 1895, 6, 22, 2839, 4, 407, 6, 8515], [395, 145, 601, 123, 2840, 220, 942, 40, 113, 1137, 6, 8516, 2, 40, 7], [28, 92, 18, 526, 30, 46, 1, 142, 856, 34, 5, 1836, 6, 274, 1, 66, 2, 41, 216, 379], [124, 18, 313, 3, 8517, 211, 11, 3, 8518], [8519, 8520, 289, 8521, 5, 2779, 220, 8522, 741, 327, 141, 8523, 129, 40, 59, 8524], [8525, 2419, 79, 2, 41, 20, 495, 34, 21, 100], [181, 239, 6, 175, 791, 8526, 11, 33, 954, 2453, 369, 8527], [8528, 501, 89, 19, 4, 8529, 42, 618, 20, 53, 41, 11, 8530, 21, 7], [67, 9, 1174, 9, 2481, 8531, 8532, 8533, 45, 849, 519, 2, 3, 8534, 1312, 8535, 8536, 8537, 243, 1278], [8538, 40, 174, 1826], [2841, 8539, 8540, 10, 466, 27, 1220, 8541, 1140, 1823, 6, 85, 2, 3, 8542, 1823, 8543, 127], [2741, 77, 1, 433, 7, 7, 58, 1, 40, 7, 5, 8544, 368, 1567, 369, 218, 1, 40, 2819, 8545], [8546, 474, 8547, 8548, 1508], [1044, 7, 32, 4, 1139, 6, 617, 153], [13, 480, 8549, 5, 652, 829, 516, 206, 14, 652], [8550, 86, 29, 8551, 24, 3, 8552, 8553, 8554, 20, 1, 129, 1146, 4, 1282, 228, 77, 1, 130, 7], [8555, 107, 68, 25, 26, 5, 8556, 14, 685, 8557, 1, 40, 9], [232, 161, 152, 115, 8558, 37, 581, 10, 62, 335, 8559, 370, 23, 52, 25, 36, 2, 303, 11, 2201, 2842, 3, 28, 163, 8560], [28, 92, 8561, 367, 78, 8562, 805], [8563, 2543, 28, 105, 1, 120, 136, 48, 1, 521, 5, 715, 8564, 6, 69, 2, 8565, 9, 48, 535, 47], [8566, 947, 25, 2104, 4, 8567, 211, 2, 8568, 9, 14, 100, 1, 72], [8569, 17, 8, 52, 688, 29, 10, 47, 28, 241], [33, 8, 307, 2763, 215, 4, 331, 8570, 12, 3, 8571, 1814, 924, 68, 8572], [145, 8573, 228], [325, 2102, 3, 1796, 51, 3, 8574, 402, 525, 197, 12, 3, 520, 230, 85, 130, 44, 61, 2, 189, 1658, 172, 31], [1608, 31, 245, 15, 97, 90], [8575, 62, 2502, 25, 674, 1864, 107, 76, 29, 7, 538], [760, 271, 161, 2, 7, 32, 126], [437, 140, 2624, 8576, 8577, 1776, 5, 31, 8, 255], [388, 15, 8578, 20, 1, 824, 1062, 855, 141, 245, 15, 97, 16, 690, 63, 8579, 808, 47], [8580], [8581, 140, 482, 9, 2, 15, 1, 1231, 8582, 289], [8583, 20, 1, 66, 2, 256, 555, 16, 188, 2, 58, 32, 60, 9], [8584, 28, 451, 7, 6, 8585, 14, 8586], [8587, 25, 4, 202, 12, 4, 767, 8588, 17, 64, 282, 9, 1, 1146, 2, 260, 8589, 42, 93, 8590, 193, 1, 72, 25, 8591, 8592], [8593, 1387, 727, 57, 297, 1738, 1004, 2156, 20, 135, 120, 191, 351, 8594, 312, 15], [8595, 8596, 2, 2602, 8597, 26, 806, 578, 3, 8598, 55, 135, 8599, 102, 491, 299, 8600, 32, 123, 15, 132], [8601, 154, 453, 6, 19, 4, 28, 125, 38], [8602, 10, 8603, 12, 5, 2656], [8604, 8605, 57, 58, 57, 43, 8606, 2135, 8607], [69, 4, 972, 31, 46, 20, 71, 150, 2441, 8608, 10, 301], [8609, 1152, 49, 8610, 8611, 11, 8612, 481, 4, 125, 8613, 1948], [191, 448], [8614, 348, 64, 12, 5, 8615, 1477], [8616, 81, 1, 40, 327, 100, 701, 1253, 47], [644, 8617, 2795, 21, 8618], [8619, 37, 77, 7, 598, 8620, 1312, 25, 4, 8621, 373, 14, 8622, 787, 182, 7, 76, 199, 8623, 113, 355, 8624, 124, 159, 8625], [165, 2, 567, 34, 12, 3, 2790, 38, 79, 1021, 44, 14, 11, 86, 1, 234, 109, 8626, 10, 8627, 1961, 119], [2417, 320, 32, 102, 397, 17, 155, 8628, 1760, 15, 61, 16, 112, 7, 35, 8629, 208], [8630, 135, 45, 2418, 258], [8631, 8632, 1498, 93, 4, 8633, 982, 695, 8634, 962, 15, 30, 21, 1832, 113, 8635, 1732, 282, 2781, 101, 8636], [8637, 1934, 1, 128, 56, 143, 14, 828], [8638, 154, 1386, 6, 2843, 175], [8639, 8, 303, 26, 8640, 8641, 6, 8642, 1667, 11, 6, 380, 8643, 33], [8644, 1110, 631, 8, 44, 2, 414, 855, 1, 71, 8645, 32, 12, 1768, 8646], [24, 8647, 11, 8648, 1130, 5, 8649, 14, 21, 3, 8650], [8651, 1248, 74, 147, 8652, 8, 11, 8653, 38, 1, 72, 8654, 135, 321, 23, 1138, 11, 161, 34, 21, 213, 32, 157, 524], [1806, 8655, 27, 239, 22, 62, 88, 20, 3, 88, 266], [1253, 9, 129, 290, 508, 11, 1165, 63, 8, 582, 2, 567, 552, 10, 560, 1320, 1127, 10, 4, 8656, 4, 1363, 1124, 12, 499, 53, 265], [2717, 41, 7, 66, 2, 8657, 17, 8658, 1213, 26], [1, 260, 3, 591, 8659, 1714, 38, 79, 107], [8660, 114, 11, 8661, 8662, 151, 457, 48, 421, 63, 2844, 106, 135, 8663, 8664, 8665, 2011, 2461, 446, 238, 137, 52], [263, 708, 2845, 8666, 403, 8667, 823, 136, 300], [8668, 81, 104, 68, 8669], [398, 2, 8670, 1573, 132], [1771, 8671, 970, 1350, 239, 6, 233, 4, 164, 1058, 20, 233, 68, 28], [28, 92, 453, 2, 4, 2483, 78, 31, 398, 2, 59, 97, 28, 309, 8672, 500, 3, 309, 1012, 173, 1334], [1, 1001, 57, 8673, 395, 2709, 8674, 101, 371, 1120, 34, 12, 8675, 57, 11, 1165], [18, 424, 5, 160, 28, 477, 30, 6, 152, 8676, 472, 2846, 11, 8677, 1896, 8, 3, 54, 10, 15, 2, 723, 195, 292], [8678, 933, 52, 585, 2, 8679, 111, 27, 1077, 52, 54, 8680, 8, 1832, 8681, 8, 11, 200, 1118, 1, 72, 8682, 1, 82, 7, 8683], [8684, 22, 55, 8685, 55, 357, 1, 19, 8686, 1031, 11, 15, 70, 8687, 45, 116, 8688, 132], [18, 45, 48, 61, 51, 3, 545, 8689, 46, 27, 4, 2847, 28, 31], [8690, 25, 4, 8691, 8692], [287, 18, 8693, 4, 8694, 12, 2848, 264, 8695, 514, 8696, 2393, 51, 8697, 200, 1835, 12, 272, 2, 1358, 34, 6, 2849, 8698], [8699, 74, 104, 32, 94, 8700, 205], [360, 8701], [28, 2118, 21, 2739], [8702, 115, 132, 8703, 8704, 12, 8705, 91, 5, 1132, 47], [8706, 107, 37, 9, 2776, 68, 65, 16, 8707, 518, 2105, 7, 96, 41, 9, 953, 124, 159, 37, 2358, 1, 549], [8708, 1, 373, 98, 8709, 428, 1171], [8710, 2850, 2850, 73, 29, 175], [8711, 536, 17, 53, 19, 2, 23, 11, 200, 226, 67, 1, 71, 8712, 55, 4, 212, 805, 74, 6, 25, 44, 90], [8713, 367, 8714, 1144, 174, 1007, 14, 158, 100, 1826, 665, 21, 158, 821, 2769, 14, 8715, 65, 661, 57, 2, 189, 4, 2851], [13, 2609, 5, 1525, 34, 21, 1034, 309, 165, 2, 234, 371, 638, 1, 71, 307, 818, 341, 2, 705, 552, 14, 5, 2142, 107], [8716, 42, 7, 329, 4, 2204, 73, 1268, 345, 8717], [8718, 1, 8719, 5, 141, 5, 1511, 9, 27, 121, 38, 220, 119, 1, 433, 32, 3, 8720, 70, 260, 2, 1087, 116, 55, 8721, 55, 374], [8722, 315, 44, 14, 388, 15, 7, 58, 13, 179, 83, 10, 289], [8723, 1, 95, 7, 42, 504, 1, 8724, 49, 1072], [8725, 8, 786, 6, 8726, 101, 8727], [566, 13, 163, 2017, 2, 707, 2, 49, 78, 608, 1, 58, 25, 134, 23, 175, 377], [8, 328, 3, 1208, 194], [1, 303, 11, 8728, 1165, 21, 5, 40, 224, 5, 465, 224, 291, 1377, 5, 177, 296, 1, 148, 22, 661, 10, 512, 80], [8729, 89, 189, 283, 8730, 1385, 8731, 8732, 129, 19, 170, 12, 114, 21, 116], [8733, 146, 17, 369, 8, 259], [8734, 65, 2165, 2092, 248, 85], [8735, 147, 73, 8736, 9, 14, 317, 509, 105, 353, 387, 2, 8737, 7, 82, 434, 15, 317, 92, 696, 105], [8738, 41, 1, 35, 4, 8739, 147, 37, 429, 8740, 8, 279, 28, 13, 181, 257, 25, 816, 341, 2, 477, 91, 4, 8741, 2803, 464], [8742, 6, 85, 200, 6, 200, 6, 200, 25, 8743, 32, 3, 121, 2, 3, 415], [8744, 47, 261, 7, 130, 134, 155, 8745, 92, 33, 607, 8746, 75, 139, 8747, 17, 308, 8748, 202], [2729, 8749, 2749, 3, 1528, 27, 1141, 263, 536, 6, 3, 78, 782, 1834, 8750, 27, 16, 28, 9, 912, 15, 8751], [2667, 68, 1283, 46, 44, 87, 1299, 4, 78, 1625, 126], [8752, 8753, 19, 114], [8754, 7, 142, 244, 312, 8755, 686, 12, 7, 73, 1098, 8756, 101, 3, 8757, 209], [666, 8758, 35, 144, 2, 35, 8759, 32, 31], [13, 16, 1737, 818, 1, 681, 723, 11, 26, 8760, 687, 30, 294, 1354, 8761, 2420, 8762, 666, 30, 294, 47, 70, 681, 56], [8763, 7, 148, 179, 495, 34, 11, 5, 1836, 6, 457, 15, 195], [8764, 1, 8765, 7, 5, 226, 162, 7, 10, 706, 17, 8766, 1274], [8767, 17, 210, 179, 50, 295, 2852, 8768, 21, 4, 1049, 8769, 8770, 196, 790, 199, 11, 1134], [8771, 243, 1, 75, 97, 442, 12, 103, 119, 1, 53, 133, 9, 30, 2, 7, 274, 14, 14, 83, 1, 1390], [8772, 287, 17, 358, 239, 207, 8, 8773, 8774], [8775, 830, 16, 441], [8776, 92, 279, 95, 17, 210, 455, 2, 2716, 8777, 299, 228, 120, 692, 639, 418, 6, 198, 2, 122, 24, 8778], [2807, 74, 6, 42, 885, 2, 1140, 8779], [403, 532], [8780, 57, 19, 4, 2853, 2854, 391, 1, 36, 2853, 2854, 421], [8781, 1, 42, 614, 857, 20, 9, 8782, 4, 427, 12, 68, 1438, 8783, 59, 222, 559, 27, 269, 7, 69, 2, 23, 86, 360], [8784, 8785, 8786, 2301, 13, 145, 2855, 586, 131, 26], [1166, 8787], [659, 152, 7, 709, 38, 507, 473, 45, 2, 133, 3, 92, 62, 1606, 152, 3, 8788, 163, 10, 114, 6, 171, 8789], [8790, 19, 114, 99, 143, 108, 248, 10, 15], [8791, 41, 9, 41, 9, 41, 9], [36, 13, 400, 159, 49, 8792, 214, 8, 9, 2731, 8793, 6, 1, 27, 36, 2506], [8794, 38, 79, 1382, 8795, 432, 59, 1137, 17, 142, 1234, 591, 142, 265], [1, 82, 8796, 28, 355], [8797, 2856, 8798, 297, 1513, 23, 292, 496, 12, 17, 125, 16, 2018, 4, 1090, 8799, 8, 11, 982, 14, 340], [8800, 5, 406, 1132, 8, 405, 2745, 1710, 2, 555, 8801], [8802, 81, 1, 27, 44, 48, 2, 122, 2329, 13, 1736, 2163, 30, 21, 8803, 397, 6, 428, 2857, 59, 28, 272], [8804, 8805], [191, 18, 1096, 5, 8806, 1126], [8807, 287, 104, 175, 40, 8808, 28, 241, 2, 375, 12, 7], [28, 92, 206, 163, 409, 2, 98, 760, 125], [8809, 204, 1635, 2858, 11, 87, 170, 46, 17, 129, 133, 10, 4, 114, 8810, 1609, 1103], [8811, 108, 248, 19, 4, 90, 31], [28, 64, 8812, 12, 8813, 8814], [8815, 29, 7, 8816, 9, 9, 353, 52, 1, 27, 8817, 411, 8, 4, 115, 28, 8818, 2859, 8819, 8, 8820, 11, 9, 209], [8821, 251, 269, 149, 11, 1595], [8822, 8, 269, 8823, 6, 2390, 1137], [8824, 570, 2590, 2396, 8, 158, 2563, 320, 158, 1145, 8, 98, 8825, 8826, 133, 183, 2357], [8827, 5, 924, 8, 75, 1177, 126, 206, 53, 58, 60, 9, 1943, 15, 14, 17], [8828, 146, 25, 28, 281, 262, 1415, 2580, 8829, 647, 6, 1, 71, 408, 12, 17], [8830, 147, 162, 7, 16, 79, 1242, 10, 3, 800], [8831, 2059, 162, 7], [8832, 77, 25, 1089, 89, 23, 86, 17, 153, 38], [8833, 1, 18, 45, 48, 51, 4, 1280, 8834, 333, 93, 2, 704, 9, 91, 84], [1461, 794, 1064, 7, 133, 5, 317, 8835, 1461, 3, 232, 8, 393, 268, 6, 315, 1319, 3, 1678, 98, 345], [8836, 874, 45, 371, 4, 2491], [8837, 13, 105, 1, 19, 10, 26, 8838, 839, 1879], [298, 2253, 2, 574, 102], [8839, 2780, 1, 27, 163, 10, 59, 12, 49, 309, 41, 7, 19, 59, 1, 148, 707, 2, 1, 71, 4, 8840, 8841], [8842, 8843, 323, 33, 233, 16, 347], [8844, 291, 3, 8845, 570, 6, 1127, 14, 3, 8846, 820, 10, 8847, 1284, 63, 203, 949, 8848, 209], [24, 8849, 2335, 3, 384, 8, 2791, 10, 1855], [8850, 1377, 371, 83, 614, 3, 8851, 1393, 8852], [1, 45, 8853, 350, 11, 3, 87, 194, 366, 124, 94, 8854, 22, 2, 103], [8855, 81, 18, 1811, 2, 8856, 3, 2704, 8857, 12, 1547, 214, 8, 8858, 8859, 100, 101, 8860, 8861], [8862, 80, 8863, 173], [333, 8864, 10, 491, 144, 2, 231, 4, 90, 78, 125], [8865, 89, 234, 5, 1197, 34, 10, 17, 952, 8866], [69, 4, 2860, 54, 30, 8867, 8868, 21, 8869], [8870, 28, 92, 641, 2205, 55, 179, 1, 56, 2861, 1389, 3, 276], [729, 8871], [108, 502, 31], [682, 52, 623, 3, 78], [2862, 139, 46, 8, 8872], [8873, 228, 1351, 10, 8874, 15, 1, 69, 310, 4, 28, 54, 70, 430, 35, 32, 3, 586, 535, 157, 54], [8875, 146, 4, 79, 80, 8876, 8877, 1711, 21, 158, 8878, 2840, 63, 8879], [8880, 108, 738, 441], [8881, 52, 446, 57, 8882, 16], [2597, 13, 1686, 9, 131, 26, 627, 56, 8883, 29, 7, 11, 4, 1711], [28, 92, 206, 46, 1, 19, 3, 308, 31, 91, 191], [8884, 463, 7, 42, 25, 3, 637, 484, 12, 5, 993, 1, 1146, 8885, 484], [8886, 101, 2863, 8887, 8888, 8889, 6, 2759, 74, 8890, 1, 461, 7, 433, 15, 673, 3, 1280, 1112, 1109], [8891, 1, 40, 76, 188, 7, 35, 67, 13, 403, 1271, 5, 31, 8, 175, 1389, 555], [8892, 8893, 8, 5, 1050, 1193, 8894, 63, 2489, 1800, 8895, 9, 8896], [1799, 8897, 2857, 14, 49, 821, 8898], [1381, 6, 779, 24, 61, 10, 3, 756, 8899, 8900, 2274, 8901], [8902, 8903, 676, 8904, 467, 8905], [268, 45, 371, 4, 1337, 12, 8906, 616, 76, 28, 73, 29, 600, 194, 2864, 12, 1773, 14, 3, 1878, 32, 73, 69, 12, 8907, 2864], [57, 37, 13, 171, 8908, 621, 131, 26, 8909, 8910, 107], [844, 2, 8911, 200, 775, 31, 13, 1652, 15, 59, 677, 1788, 8912, 2391], [398, 2, 827, 14, 3, 625], [8913, 360, 1, 8914, 143, 11, 8915, 37, 959, 52, 111, 270, 1, 18, 1378, 36, 98, 2316, 134, 19, 2, 56, 9, 76, 29, 7], [16, 225, 16, 2843, 225, 339, 19, 4, 783, 63, 85, 293, 2, 8916], [8917, 287, 104, 4, 8918, 13, 257, 627, 236, 8919, 428, 584, 2793, 85], [191, 18, 395, 4, 8920, 1834, 713, 211, 124, 94, 168, 1046, 14], [8921, 1479, 198, 2, 122, 28, 8922, 101, 3, 8923, 8924, 8925, 52, 21, 5, 8926, 2747, 224, 32, 2861], [11, 1327, 515, 10, 8927], [8928, 2314, 162, 7, 8929, 8, 181, 1799, 2, 784, 28, 241], [18, 1772, 51, 8930], [45, 4, 660, 1082, 51, 247, 2516, 109, 144, 126, 44, 34, 21, 8931, 244, 8932, 288, 85, 127, 2591, 2009, 8933, 31], [8934, 302, 47, 357, 106, 8935, 2007, 292, 3, 230, 11, 3, 2578, 12, 1275, 453, 2, 3, 540], [8936, 1, 40, 8937, 8938, 579, 67, 73, 1338, 3, 8939, 1821], [8940, 348, 73, 53, 35, 8941, 101, 44, 2, 3, 1574, 235, 25, 109, 2865, 6, 8942, 32, 123, 2777, 2586], [8943, 47, 1, 320, 388, 143, 1356, 47, 1, 95, 111, 254, 5, 293, 60, 3, 454], [130, 75, 11, 2758, 8944, 2399, 26, 13, 1562, 8945, 25, 8946, 2, 35, 286, 6, 80, 8947, 351, 107], [11, 2403, 2, 8948, 540, 2, 495, 34, 21, 3, 8949, 178], [277, 34, 5, 369, 8950, 2, 801, 1611, 14, 8951, 627, 500, 9, 1, 1390], [237, 92, 8952, 8, 4, 90, 121, 2, 231, 3, 31, 54, 10, 50], [8953, 108, 248], [64, 524, 64, 524, 64, 8954], [8955, 8956, 21, 8957, 6, 8958, 8959, 8960, 52, 148, 23, 151, 14, 4, 276, 509], [8961, 25, 207, 7, 676, 139, 7, 312, 20, 17, 42, 312, 7], [8962, 389, 49, 802, 8963, 894, 794], [48, 18, 19, 4, 311, 84, 947, 5, 441, 465], [2138, 8964, 14, 3, 127, 182, 8965], [8966, 367, 8967, 162, 7, 10, 49, 8968, 123, 3, 62, 87, 141, 24, 8969, 43, 137, 10, 3, 157, 8970, 19, 98, 175, 54, 11, 2553], [1, 58, 3, 8971, 351, 6, 8972], [8973, 8974, 8, 16, 246, 14, 64, 125], [8975, 1817, 2167, 23, 853, 8976], [8977, 147, 1833, 1, 71, 115, 1138, 11, 76, 7, 29, 8978, 21, 8979, 173, 2465, 925, 15, 2, 70, 96, 2303, 1829], [145, 1379, 12, 182], [8980, 28, 92, 696, 492], [8981, 49, 453, 49, 346, 8, 8982], [8983, 104, 15], [8984, 8985, 951, 1727, 8986, 52, 98, 239, 1196], [8987, 13, 16, 188, 13, 674, 8988, 9, 84], [18, 45, 61, 69, 98, 175, 54, 46, 324], [13, 8989, 321, 227, 24, 78, 421, 12, 8990, 1260], [8991, 8992, 83], [18, 254, 8993, 8994, 1, 40, 2866, 2592, 673, 3, 8995, 8, 1011, 1, 8996, 1295, 11, 212], [1376, 1, 19, 5, 160, 1373, 16, 147, 1709, 8997, 39, 152, 28, 14, 4, 306, 88], [66, 2, 56, 4, 2673, 2545, 214, 8998, 312, 8999, 16, 111, 96, 505, 9000, 350, 46], [8, 498, 2, 1134, 126], [242, 327, 9001, 1977, 29, 9002, 9003, 8, 9004, 9005], [1, 71, 9006, 21, 2867, 9007, 906, 12, 42, 290, 9008], [146, 190, 1153, 8, 48, 6, 722, 13, 22, 98, 1400, 9009, 440, 9010, 47, 913, 9011, 1, 23, 1136, 47, 74, 9012], [9013, 55, 3, 1006, 597, 9014, 12, 87, 2855, 9015, 1, 564, 6, 96, 252, 7, 17, 73, 41, 2630, 152, 1435], [9016, 6, 1, 43, 137, 2, 313, 49, 1784], [578, 50, 879, 34], [151, 23, 11, 5, 444, 67, 2868, 2868, 8, 14, 1694, 89, 19, 2, 290, 333, 5, 881, 6, 477], [9017, 675, 29, 44, 115, 65, 83, 168, 21, 4, 132, 1765, 12, 149, 147, 7, 37, 870, 235, 1045], [9018, 1, 58], [2712, 28, 88], [1, 45, 4, 78, 1108, 6, 1, 227, 1053, 20, 28, 1053], [8, 60, 2, 35, 535, 21, 102, 220, 9019], [9020, 162, 7, 569, 137, 2, 394, 7, 11, 339], [9021, 627, 179, 23, 2214, 10, 3, 9022, 1859, 12, 8, 17, 2730], [5, 1639, 18, 9023, 9024, 414, 57, 872, 872, 4, 446, 11, 4, 574, 135, 245, 15, 1378], [609, 299, 299, 25, 4, 1719, 267], [1609, 153, 533, 9025, 273, 9026, 273, 9027, 727], [566, 37, 42, 122, 401, 213, 4, 164, 9028], [9029, 5, 160, 31, 12, 9030, 237, 2869, 118, 185, 150, 87, 9031, 91], [9032, 240, 79, 18, 403, 6, 398, 2, 3, 309, 538, 76, 1487, 29, 7, 2799, 711], [1668, 174, 29, 3, 368, 9033, 228, 14, 33, 1828, 63, 1, 40, 7, 324, 25, 9034, 101, 3, 121, 51, 1176, 1, 410, 7, 221], [333, 9035, 1, 58, 25, 9036, 54], [225, 225, 9037, 15, 539], [9038, 9039, 63, 9040, 11, 9041, 9042, 1115, 2862, 139, 380, 39, 9043], [124, 18, 977, 25, 128, 204, 141, 332, 5, 248], [1458, 515, 2499, 9044, 9045, 206, 10, 2774, 212, 52, 4, 88, 5, 465, 224, 203, 149, 379], [9046, 19, 114, 2540, 6, 1, 40, 3, 9047, 1126, 101, 3, 121], [9048, 8, 22, 4, 28, 513, 1675, 474, 1, 19, 4, 9049, 6, 8, 16, 132, 4, 184, 691, 51, 9050], [9051, 874, 93, 4, 151, 9052, 20, 3, 2246, 112, 189, 2870, 12, 337, 525], [24, 3, 907, 9, 8, 2871, 55, 220, 11, 501, 55, 9, 8, 11, 9053, 9054, 29, 70, 44, 2, 9055, 4, 2860, 219], [1311, 891, 1260, 727, 9056, 4, 2872, 2872], [198, 14, 9057, 109, 68, 222, 20, 1750, 1, 75, 40, 9, 44, 2, 3, 1293], [2873, 9058, 18, 2, 401, 98, 9059, 12, 98, 9060, 446, 2874, 2797, 27, 872, 2874, 83, 11, 9061, 107], [9062, 74, 175, 57, 178, 134, 457, 98, 608, 34, 9063, 77, 57, 41, 3, 9064], [24, 1677], [9065, 81, 6, 1, 19, 9066, 12, 283, 337, 91, 9067, 2875, 948, 2098, 9068, 9069, 77, 154, 1138, 11, 64, 1191, 15], [9070, 87, 8, 161, 34, 9071, 9072, 54, 2, 39, 354, 3, 1199, 59, 80, 2, 2876], [9073, 25, 24, 9074, 11, 2270, 9075], [9076, 187, 115, 1283, 9077, 131, 889, 161, 838, 336, 684, 141, 74, 3, 9078], [9079, 7, 29, 250, 3, 131, 211, 119, 4, 9080, 8, 207, 2113, 39, 2, 1256], [9081, 358, 16, 441, 157, 54, 876, 15, 123], [9082, 147, 261, 264, 99, 2306, 4, 108, 248, 40, 7, 178, 174, 309, 8, 175, 234, 30, 3, 28, 50], [9083, 13, 14, 24, 131, 26, 9084, 7, 129, 41, 9085, 7, 130, 14, 131, 26], [9086, 196, 97, 36, 9087, 9088, 7, 29, 38, 90, 10, 17], [9089, 15, 38], [9090, 9091, 57, 178, 142, 320, 359, 11, 554, 36, 9092, 270], [9093, 1, 424, 17, 9094, 224, 4, 9095, 251, 2245, 9096], [2871, 18, 9097, 12, 50, 14, 5, 1132, 33, 92, 370, 948, 712, 59, 2, 9098, 6, 9099], [9100, 9101, 9, 25, 32, 28], [9102, 243, 328, 9103, 9104], [9105, 174, 115, 453], [9106, 9107, 343, 32, 16, 259], [9108, 7, 58, 13, 16, 9109, 11, 1707, 170, 17, 13, 9110, 101, 116], [9111, 441], [9112, 81, 212, 27, 90, 132, 2, 23, 2584], [9113, 2699, 6, 154, 4, 184, 228, 208, 7, 66, 2, 1359, 3, 688, 2, 803, 130, 334, 1918, 1120, 100, 776], [9114, 981, 13, 24, 3, 629, 26], [729, 6, 1018, 9115, 1, 40, 17, 369], [2856, 373, 3, 598, 619, 10, 3, 2849, 1, 27, 163, 10], [9116, 1, 58, 33, 358, 2421, 20, 7, 96, 23, 108, 235, 187, 117, 1, 95, 104, 3, 1235], [268, 1419, 1180, 9117], [9118, 81, 9119, 76, 19, 7, 94], [77, 32, 9120, 350, 12, 613, 129, 820, 10, 143, 14, 761, 100, 1196, 85, 111, 129, 674, 655, 9, 18, 773, 47], [9121, 3, 2611, 12, 3, 2877, 9122, 20, 7, 93, 49, 2824, 9123], [9124, 9125, 87, 80, 9126, 13, 188, 77, 57, 43, 9127, 108, 502, 31, 206], [9128, 1133, 300, 89, 41, 17, 81, 634], [18, 45, 61, 51, 2575, 6, 301, 21, 753, 24, 4, 9129, 9130, 9131, 254, 9132, 6, 102, 164, 938, 9133], [9134, 539, 115, 300, 20, 473, 45, 3, 1315, 2477, 411, 3, 2697, 9135, 326], [1684, 315, 30, 13, 268, 24, 61, 6, 13, 144, 2, 718, 21, 9136, 620, 15], [9137, 1, 95, 174, 150, 4, 1627, 31, 1370, 9138, 52, 70, 150, 10, 276, 301], [9139, 1, 9140, 116, 1592, 6, 5, 2852, 8, 2514, 7, 41, 313, 5, 9141], [1, 27, 664, 102, 840, 14, 3, 1076, 235, 73, 9142, 1970, 1795, 385, 1795, 385, 235, 70, 112, 158, 949, 9143, 573, 9144, 192], [5, 2722, 9145, 5, 9146, 8, 10, 7, 2, 23, 9147, 9148, 40, 2802, 63, 2581, 23, 65, 63, 23, 121, 1627, 9149, 1831, 9150, 30, 30], [9151, 2000, 68, 6, 57, 76, 19, 57, 94, 70, 142, 234, 9152, 1303, 14, 83, 1071, 1, 326, 9153, 87, 57, 204, 4, 660, 202], [18, 2036, 11, 1463, 5, 190, 75, 541, 9154, 1448], [1, 324, 9155, 2878, 2825, 9156], [9157, 65, 76, 289, 1130, 14, 47, 40, 1580, 9158], [9159, 685, 9160], [9161, 196, 1564, 204, 4, 28, 1378], [9162, 9163, 49, 329], [9164, 107, 1, 56, 7, 29, 269, 260, 12, 5, 2169, 1565, 483], [9165, 9166, 104, 9167, 47], [9168, 175, 9169, 104, 16, 760, 2, 256, 19, 4, 90, 248, 46], [9170, 9171, 7, 9172, 7, 29, 3, 1837, 9173, 9174], [9175, 4, 9176, 9177, 266, 70, 1256, 21, 9178, 41, 158, 906, 9179, 258, 3, 9180, 6, 13, 3, 513], [9181, 1, 179, 1886, 33, 2845, 17, 130, 18, 98, 9182, 11, 59, 374, 2322, 903], [644, 9183, 9184, 556, 398, 2, 9185, 6, 2879, 9186], [8, 1369, 21, 59, 346, 118, 6, 398, 2, 1816, 2880, 131, 26], [1119, 148, 1, 173, 35, 4, 2881, 34, 113, 512, 13, 4, 691, 396, 1, 43, 137, 10, 49, 78, 1070], [9187, 1344, 1, 58, 52, 7, 329, 1, 156, 626, 272, 403, 1, 19, 37, 737, 10, 46, 9188, 1620, 77, 57, 167, 41, 216], [1862, 2732, 745, 7, 58, 15, 1, 41, 40, 49, 9189], [9190, 45, 183, 1353, 9191, 12, 49, 468, 2, 9192], [1401, 147, 613, 76, 29, 7, 52, 29, 7, 250, 26], [9193, 156, 2, 661, 20, 52, 8, 9194, 1660], [810, 276, 333, 466, 21, 3, 126, 2, 23, 346], [9195, 65, 7, 75, 19, 15, 63, 9196], [81, 16, 79, 10, 580, 49, 9197, 8, 2634, 9198, 9199, 9200, 9201], [9202, 2820, 9203], [9204, 9205, 350, 622, 1, 42, 166, 19, 573], [9206, 2342, 71, 1381, 26, 20, 53, 293, 2, 289, 11, 3, 92], [9207, 1297, 8, 3, 9208, 291, 5, 1837, 296, 51, 9209, 9210], [807, 24, 5, 2562, 9211, 311], [9212, 6, 59, 139, 129, 23, 656, 24, 15, 77, 1, 9213, 485, 1285, 9214, 102, 258, 45, 3, 9215], [9216, 10, 301, 6, 644, 21, 149], [243, 33, 8, 134, 23, 5, 62, 359, 204, 838, 25, 38, 306, 11, 83, 44, 34, 2, 3, 1987, 1133, 690, 224, 9217], [9218, 2366, 105, 572, 75, 699, 185, 4, 28, 1693], [2882, 9219, 9220, 9221, 9222, 9223, 101, 658, 9224, 9225, 22, 4, 576, 332, 154, 11, 5, 9226], [9227, 243, 1, 9228, 49, 30, 237, 193, 473, 9229, 3, 9230, 12, 633, 9231], [8, 333, 330, 1720, 2458, 26, 76, 41, 57, 928, 1720, 1568, 9232, 9233, 9234, 2733, 9235], [9236, 74, 146, 1, 112, 4, 550, 21, 17, 38, 9237], [233, 36, 5, 2542, 680, 9238, 101, 9239, 8, 303, 41, 290, 101, 10, 4, 2851, 9240], [2762, 316, 2, 57, 330, 823], [9241, 74, 5, 722, 3, 454, 27, 9242, 1, 36, 3, 950, 2883, 2883, 16, 1141], [8, 3, 78, 1252, 2065, 436, 28, 95, 16, 1096, 9], [9243, 5, 1474, 520, 14, 5, 2494, 1268, 1545, 1681, 418, 121, 398, 2, 9244, 101, 9245, 25, 181, 28], [1, 1020, 14, 109, 3, 1801, 9246, 821, 30, 6, 551, 157, 125, 38, 348], [1, 41, 154, 18, 419], [9247, 28, 509], [916, 6, 1042, 1060, 970, 1350, 26, 14, 3, 428, 52, 4, 90, 31, 277, 9, 34, 6, 305, 116, 59, 40, 9248], [9249, 13, 1892, 10, 3, 978, 26, 16, 1, 96, 39, 2, 59, 28, 2858, 34, 83, 11, 714, 47], [9250, 1, 42, 58, 214, 8, 9251, 113, 9252, 3, 177, 9253], [206, 44, 2884, 127, 19, 114, 1043], [9254, 140, 154, 131, 1137, 6, 556, 2, 432, 32, 17, 125, 10, 3, 346], [1371, 40, 3, 537, 70, 68, 93, 2, 56, 3, 308, 369, 63, 898, 173, 312, 1371, 9, 53, 23, 966, 49, 54], [77, 154, 1156, 59, 2885, 2701, 277, 34, 3, 608, 9255, 456, 9256, 9257, 101, 1548, 139, 9258, 9259, 8, 14, 9], [1, 9260, 4, 9261, 1, 923, 9], [9262, 572, 5, 349, 76, 199, 2345, 12, 258, 3, 212, 112, 70, 948, 48, 6, 9263, 17, 27, 9264], [2886, 154, 239, 9265], [630, 352, 554, 450, 159, 26, 128, 511, 6, 1692, 197], [9266, 162, 7, 1, 95, 16, 38, 1, 53, 275, 7, 58, 10, 257], [9267, 260, 3, 9268, 9269, 9270, 11, 9271, 1214], [9272, 9273, 9274, 16, 148, 19, 297, 9, 430, 40, 1787, 9275, 9276], [1, 18, 526, 30, 160, 1365, 122, 11, 12, 3, 219], [28, 445, 1255, 68, 42, 66, 2, 39, 48, 84, 119, 9277], [9278, 7, 329, 9279, 489, 36, 5, 1382, 9280, 9281, 463, 65, 19, 2, 936, 49, 1575, 2532, 9282, 30, 157], [510, 9283, 14, 2703], [8, 188, 10, 2887, 1091, 1727, 458, 2, 56, 2334, 194, 1, 40, 819], [87, 9284, 9285, 194, 139, 1383, 24, 3, 415, 9, 27, 175], [2089, 1, 40, 9286, 2888, 10, 3, 9287], [9288, 147, 178, 9289, 51, 1317], [9290, 76, 199, 583, 41, 7, 19, 3, 9291, 1784, 8, 9292, 9293, 583, 9294], [47, 9295, 9296, 1182, 1237, 454, 1380, 255, 5, 814, 577, 20, 9, 27, 16, 966, 9, 81, 2863, 7, 255, 5, 31], [9297, 18, 373, 5, 190, 11, 4, 1835, 12, 195, 2336, 9298], [9299, 1747, 6, 2889, 13, 11, 3, 9300, 10, 145, 9, 26], [9301, 323, 1, 18, 313, 49, 160, 1357, 154, 68, 330, 140, 13, 2244, 2, 1, 329, 111, 1680, 14, 25, 60, 54, 1, 41], [9302, 81, 1, 93, 59, 677], [268, 2865, 34, 5, 443, 9303, 287, 120, 968, 76, 184, 9, 8], [9304, 940, 757, 2529, 4, 164, 202, 12, 4, 1770, 20, 240, 9305, 18, 1556, 877, 6, 4, 556, 983, 136, 14], [71, 14, 121, 34, 9306, 945, 48, 274, 354, 132, 9307], [109, 144, 2, 39, 56, 9308, 2831, 24, 3, 1995, 46, 21, 3, 2890, 191, 10, 318], [277, 34, 5, 74, 16, 114, 9309, 9310], [9311, 37, 1325, 113, 1, 489, 23, 387, 2, 713, 33], [647, 9312, 343, 3, 128, 9313, 59, 139, 19], [9314, 7, 29, 18, 2891, 7, 58, 17, 158, 374, 53, 19, 3, 9315, 1108, 1, 1390], [9316, 5, 840, 772, 3, 78, 9317, 111, 45, 15, 9318], [5, 78, 9319, 8, 229, 10, 15, 24, 61], [9320, 37, 1601, 163, 409, 2, 3, 9321, 1, 40, 9322, 13, 165, 2, 35, 11, 3, 470, 2276], [8, 9323, 51, 62, 88, 310, 4, 28, 88, 119, 206, 108, 1582, 9324, 377], [92, 32, 34, 62, 88, 16, 2828, 365, 2, 2282, 33, 92, 17, 164, 9325, 9326, 570, 727, 203, 2847], [150, 4, 2617, 9327, 6, 163, 409, 2, 44, 2, 9328, 9329, 24, 3, 9330, 21, 3, 840, 2842, 2890], [2792, 96, 1, 612, 5, 9331, 21, 7, 1112, 8, 9332, 13, 16, 188, 21, 33, 271, 343, 44, 2, 133, 675, 131], [9333, 1048], [9334, 56, 7, 127, 414, 31, 228, 95, 7, 19, 4, 90, 31], [42, 9335, 885, 17, 46, 8, 344, 960, 436, 31, 9336], [2892, 7, 9337, 3, 9338, 2, 618, 193, 7, 41, 22, 41, 9, 11, 1317, 9339], [44, 34, 21, 5, 465, 6, 203, 2636], [75, 413, 14, 76, 175, 9340, 27, 107], [446, 9341, 9, 8], [1420, 2829, 224, 623, 1, 18, 9342, 24, 2283, 9343], [9344, 486, 282, 9, 38, 237, 10, 7], [9345, 53, 41, 1, 362, 2, 275, 57, 58, 60, 4, 619, 1145, 1615, 130, 250, 9346], [547, 328, 2480, 2058, 46, 16, 114, 80, 84], [9347, 2544, 65, 13, 217, 30, 14, 7, 686, 1, 2200, 3, 443, 33, 2809], [9348, 1, 434, 102, 13, 22, 61, 6, 87, 7, 58, 13, 9349, 695, 2473, 7, 178, 19, 114], [42, 885, 213, 501, 672, 7, 58, 130, 3, 177, 9350, 473, 218, 69, 617, 458, 48, 61, 694, 63, 694, 9351, 9352], [9353, 115, 28, 1642], [28, 285, 9354, 9355], [9356, 18, 24, 1785, 267, 235, 13, 75, 250, 5, 9357, 2870, 2614, 253, 38, 20, 25, 378], [551, 4, 816, 1193, 10, 3, 160, 54, 11, 172, 54, 6, 160, 54, 218, 1818, 106, 94, 14, 1446, 459, 28], [9358, 145, 2001, 12, 2078, 3, 9359, 1814], [2748, 803, 91], [9360, 7, 148, 231, 21, 9361], [9362, 331, 299, 35, 3, 78, 993, 2, 457, 7, 1605], [9363, 8, 52, 139, 867, 11, 2565, 496, 12, 1330, 207, 1, 303], [9364, 1, 120, 313, 3, 1272, 202, 16, 1, 43, 58, 107, 53, 231, 9365, 9366, 24, 1335, 6, 50, 5, 121, 30], [1, 37, 33, 8, 222, 20, 1, 18, 534, 36, 145, 9, 9367, 12, 5, 9368, 139, 9369], [9370, 609, 207, 112, 7, 39, 432, 52, 29, 7, 44, 2, 56, 609, 146, 40, 3, 1105, 219, 223, 11, 1838], [28, 92, 78, 31, 78, 2830], [9371, 70, 2893, 184, 195, 34, 12, 7, 10, 1768, 9372], [323, 9373, 1680, 2, 1164, 194, 6, 204, 2894, 939, 14, 3, 9374, 6, 9375, 411, 726, 1, 43, 9376, 74, 65, 108, 276], [69, 4, 2808, 46, 21, 9377, 6, 9378, 13, 1381, 91, 2, 9379, 10, 1166, 458, 84], [9380, 275, 213, 58, 67, 154, 144, 10, 1292, 9381, 1745, 3, 436, 8, 307, 68, 28, 38], [964, 2, 9382, 2267, 10, 59, 1180, 9383], [9384, 76, 60, 1, 53, 133, 4, 1769, 2800, 2, 23, 86, 55, 172, 55, 1, 42, 19, 4, 2277], [9385, 18, 313, 49, 680, 21, 9386], [9387, 9388, 2752, 47, 244, 1, 129, 35, 1095, 6, 35, 9389], [9390, 81, 55, 1399, 462, 80, 1839, 9391, 9, 27, 310, 4, 114, 1693], [9392, 2767, 9393, 363, 971, 1650, 14, 3, 78, 1412, 175], [287, 1143, 1, 27, 91, 523, 10, 18, 4, 319, 170, 20, 19, 136, 48, 2, 435, 12, 9394, 397, 81, 206], [46, 124, 94, 325, 14, 3, 545, 101, 3, 9395, 576, 218, 9396, 2155], [9397, 257, 20, 77, 2672, 41, 17, 1, 35, 2, 2668, 9398, 1791], [9399, 81, 1, 27, 16, 1095, 57, 41, 22, 35, 87, 9400, 18, 36, 17, 86, 8, 26, 4, 229, 676], [9401, 28, 50, 9402], [9403, 7, 142, 2894, 215, 3, 614, 1508, 685, 10, 222, 355, 9404], [926, 2887, 3, 62, 31, 12, 5, 1790, 249, 448, 134, 2876, 9405, 3, 1802], [9406, 81, 9407, 38], [359, 67, 7, 29, 144, 10, 466, 6, 1, 53, 136, 30, 9408], [9409, 264, 36, 64], [325, 24, 5, 422, 1554, 34, 52, 33, 100, 211, 8, 32, 60, 22, 1755, 2, 236, 1810, 9410, 83], [9411, 1248, 1, 40, 7, 80, 9412], [1, 71, 9413, 3, 9414, 12, 33, 2869, 778, 9415, 93, 59, 1885, 4, 9416, 63, 59, 2738, 915, 677], [72, 111, 786, 1245, 1036, 43, 41, 476, 9417, 105, 138], [1, 1737, 433, 492, 931, 26, 130, 145, 9418], [124, 268, 1752, 640, 217, 12, 3, 2424], [9419, 9420, 9421], [9422, 263, 76, 347, 104, 44, 2, 23, 57, 21, 49, 164, 64, 126], [424, 9423, 40, 476, 923, 3, 2895, 93, 2, 2090, 195, 46, 351], [9424, 9425, 9426, 9427, 1351, 10, 3, 9428], [9429, 132, 285, 118, 9430, 671, 9431, 12, 3, 28, 271], [7, 321, 23, 4, 1309, 77, 7, 620, 49, 9432, 11, 9433], [24, 62, 360, 9434, 2896, 1344, 53, 26, 39], [333, 197, 123, 9435, 39, 2753, 85, 91, 2, 2897, 90, 31, 46, 1, 40, 5, 586, 184, 31, 84, 110, 43, 383, 23, 9436], [28, 241, 84, 9437, 116, 735, 6, 101, 735, 1, 329, 234, 116, 1383, 101, 1374, 3, 1306, 2126, 12, 992], [9438, 28, 88, 40, 289], [9439, 2530, 905, 112, 9440, 58, 9441, 9442, 9443, 29, 790, 2, 23, 9444, 6, 1026, 215, 1600, 10, 9445], [9446, 25, 4, 231, 9447, 6, 9448, 14, 3, 9449, 9450, 302, 302], [9451, 9452, 1, 1649, 33, 523, 172, 48, 6, 9, 1217, 15, 133, 98, 175, 9453, 83], [1704, 147, 1, 71, 2628, 6, 13, 4, 184, 396, 12, 555, 1, 40, 3, 369, 7, 112, 21, 2633, 1576, 9454], [899, 1151, 12, 997, 9455, 213, 392, 2161, 9456, 6, 9457, 1, 40, 3, 9458, 132, 50, 2653, 6, 9459], [506, 2, 23, 4, 132, 31], [13, 61, 275, 3, 153, 1561], [788, 15, 14, 1276, 9460], [9461, 42, 7, 40, 73, 375, 388, 116, 1139, 195, 19, 4, 90, 301], [9462, 132, 81], [9463, 108, 248, 10, 221], [19, 1033, 24, 5, 889, 617, 224, 471], [9464, 72, 7, 329, 9465, 701, 14, 317], [11, 5, 169, 663, 2, 948, 34, 1, 314, 9466, 14, 32, 3, 1332, 1877, 74, 146, 1489, 632], [28, 88, 100, 1, 75, 1146, 652], [93, 9467, 5, 871, 4, 447, 38, 79, 618, 33, 125, 62, 88, 27, 664, 621, 9468, 9469, 4, 184, 9470, 9471, 9472, 360], [1288, 54], [1393, 1872, 1393, 9473, 6, 1393, 9474, 32, 9475, 30, 6, 144, 2, 39], [34, 12, 3, 9476, 301, 21, 1700, 9477, 9478], [9479, 69, 87, 6, 4, 445, 170, 122, 22, 4, 90, 231, 47, 28, 241, 46], [909, 9, 24, 9480, 46], [9481, 445, 31, 46, 6, 84], [1, 261, 1, 69, 37, 149, 9482, 106, 518, 262, 15, 107], [9483, 9484, 13, 175, 76, 27, 9485, 63, 110, 489, 7, 189, 49, 9486], [18, 45, 48, 51, 9487, 9488, 9489, 1140, 9490, 1833, 347, 688, 74, 140, 6, 28, 1384], [593, 2, 5, 9491, 997], [9492, 9493, 165, 355, 84, 9494], [9495, 63, 9496, 7, 178, 446, 379, 365, 174, 5, 9497], [9498, 1, 148, 56, 110, 185, 180, 7, 833, 431, 204, 12, 3, 698, 4, 115, 9499, 9500, 12, 3, 431], [9501, 1, 99, 7, 4, 108, 248], [9502, 796, 9503, 358, 90, 207, 29, 7, 178, 328], [74, 92, 870, 8, 18, 16, 114, 204, 80, 141, 12, 448, 6, 85, 25, 2898, 123], [9504, 81, 326, 477, 10, 4, 125, 519, 2, 4, 306, 16, 33, 53, 334, 23, 80, 12, 4, 9505], [6, 1, 321, 788, 17, 13, 68, 365, 2, 56, 5, 28, 296, 658, 373, 15, 14, 100], [14, 5, 9506, 9507, 9508, 9509, 9510], [9511, 19, 2788, 3, 2079, 34, 6, 663, 3, 939, 46, 233, 115, 132, 6, 9512, 2, 41, 81, 1070, 9513, 27, 90, 118], [9514, 350, 81, 2, 327, 175, 139, 9515, 9516, 1875], [9517, 1599, 4, 164, 1053, 262, 52, 130, 338, 2, 51, 9518, 13, 2150, 9], [9519, 124, 94, 451, 49, 1039, 14, 1103, 1, 120, 58, 77, 7, 130, 48, 11, 3, 4, 9520], [9521, 25, 497, 251, 25, 18, 132, 38, 56, 17, 154, 9522, 6, 22, 11, 4, 9523, 1038], [194, 6, 4, 445, 170, 426, 9524, 936, 152], [9525, 146, 104, 207, 70, 142, 39, 126, 2, 493, 30, 28, 563], [9526, 9527, 9528, 358, 1220, 312, 2899], [9529, 251, 43, 137, 2, 56, 3, 942, 51, 9, 277, 34, 9530, 3, 9531, 9532, 21, 4, 9533, 351, 9534], [9535, 37, 12, 740, 22, 57, 66, 2, 133, 9, 14, 49, 468, 16, 9, 459, 166, 151, 67, 7, 41], [8, 9536, 21, 9537, 377], [2775, 74, 242, 17, 358, 28], [9538, 742, 22, 376, 3, 680, 124, 94, 387, 2, 851, 60, 335, 9539, 81, 10, 1077, 119], [9540, 78, 391, 12, 3, 374], [273, 841, 9541], [9542, 9543, 9544, 22, 854], [464, 464, 464, 788, 309, 6, 4, 381, 782, 259, 162, 7, 1216], [2032, 9545, 11, 9546, 9547, 23, 86], [147, 9548, 4, 90, 9549, 89, 35, 278, 2, 2588, 2, 15], [673, 1, 2175, 34, 9550, 9551, 6, 111, 297, 9552, 48, 2, 15], [9553, 1, 568, 2, 23, 179, 9554, 7, 81, 10, 870, 60, 15], [9555, 9556, 6, 200, 377], [9557, 953, 7, 18, 362, 2, 133, 17, 1419, 1024], [18, 1173, 4, 1780, 322, 5, 230, 425, 9558, 374, 1, 69, 64, 12, 116, 9559, 14, 3, 1263, 229, 10, 9560, 2, 136, 73, 9561, 15], [46, 8, 732, 318, 1, 9562, 21, 5, 175, 149, 332, 9563, 1033, 1293, 112, 59, 50, 198, 644, 24, 9564, 1, 324, 226], [2696, 25, 3, 160, 54, 1, 293, 7, 20, 13, 108, 221, 67, 1, 27, 145, 9565, 1, 297, 10, 15, 9566, 25, 16, 379], [191, 10, 78, 350], [9567, 59, 9568, 9569, 485, 1163, 9570, 14, 4, 9571, 36, 17, 9572, 9573], [698, 118, 194, 141, 197, 12, 138], [9574, 25, 9575, 74, 13, 16, 1202, 100, 8, 2, 79, 47, 265], [9576, 1073, 54, 2822, 81], [9577, 25, 497, 588], [9578, 18, 912, 289, 4, 2881, 34, 11, 3, 718, 444], [18, 45, 48, 51, 3, 9579, 21, 763, 268, 254, 492, 931], [9580, 1, 260, 9581, 6, 598, 1127, 51, 3, 384, 7, 424, 4, 308, 2382, 1320, 2, 9582, 4, 9583, 48], [26, 145, 9584, 9585, 40], [287, 3, 1678, 29, 239, 9586, 41, 455], [24, 5, 9587, 26, 418, 1323, 113, 9588, 1394], [9589, 981, 1, 9590, 76, 446, 57, 46], [109, 144, 10, 33, 9591, 978], [263, 16, 176, 65, 44, 10, 4, 615, 26, 9592, 777, 22, 9593, 1326], [9594, 146, 17], [2817, 1, 71, 325, 24, 3, 9595, 810, 9596, 2839, 10, 3, 9597, 54, 17, 2882, 198, 83, 265, 15], [43, 137, 426, 1040, 25, 5, 160, 31, 91, 11, 1046, 6, 301, 6, 4, 288, 29, 11, 3, 737], [9598, 140, 1, 19, 94, 115, 28, 21, 5, 1021, 33, 153], [9599, 1307, 146, 275, 15, 58, 157, 54, 7, 39, 86, 1, 303, 389, 101], [78, 190, 273, 32, 3, 1259, 77, 7, 148, 574, 6, 314, 49, 950, 9600], [9601, 9602], [229, 2, 39, 2, 9603, 10, 532], [9604, 330, 823], [30, 1728, 6, 2900, 4, 31, 91, 747, 2778, 54, 14, 5, 2500, 190, 146, 13, 48, 9605, 62, 88, 1, 40, 17, 852], [69, 3, 177, 153, 1, 82, 9606, 9607, 205], [9608, 1376, 365, 1, 148, 265, 7, 34, 21, 9], [91, 2, 50, 208, 118, 2, 9609, 378, 12, 3, 259, 9610], [20, 363, 4, 181, 228, 11, 5, 1574, 63, 135, 9611, 14, 150, 102, 121, 21, 15, 13, 9612, 2, 9613, 1, 40, 9, 67, 1, 477, 215, 102], [50, 8, 159, 4, 153, 344, 12, 9614, 113, 9615, 2877, 9616, 758, 12, 15, 6, 32, 8, 28], [9617, 2219, 1344, 89, 23, 101, 9618, 14, 317], [9619, 147, 1, 1718, 4, 9620, 677, 529, 21, 1386, 915, 677, 9621, 1139, 63, 1965, 2, 9622, 9623, 14, 428, 84], [1517, 28, 92, 9624, 9625, 108, 276, 380, 32, 401, 1351, 46, 10, 32, 12, 158, 9626], [9627, 47, 791, 9628, 8, 60, 3, 128, 431, 1, 42, 58, 76, 2, 354, 13, 9629, 2, 273, 1828, 24, 3, 54, 181, 114], [1368, 4, 529, 235, 5, 299, 9630, 84, 8, 44, 2, 23, 9631], [9632, 1, 27, 14, 3, 9633, 60, 1695, 2, 9634, 9, 113, 22, 20, 26, 1, 53], [9635, 140, 1, 58, 47, 42, 1123, 89, 35, 34, 12, 9, 1, 179, 41], [9636, 131, 154, 18, 773, 17, 575, 7, 424, 9, 9637, 47, 18, 9638, 81], [9639, 242, 1, 18, 112, 98, 9640, 2593, 14, 9641, 181, 79, 3, 316, 2895, 55, 1731, 956], [9642, 1, 41, 22, 58, 52, 1, 41, 58, 8, 17, 135, 8, 11, 951, 364, 21, 9643, 9644, 19, 9645, 4, 1363, 9646], [9647, 438, 1, 96, 56, 5, 949, 456], [8, 2400, 951, 2, 236, 9648, 2, 1954, 1829, 620, 4, 1362, 793, 6, 1561, 719, 10, 698, 20, 3, 169, 8, 1714, 38, 887], [9649, 9650, 9651, 20, 9, 27, 9652], [9653, 539, 7, 142, 674, 39, 56, 9654, 25, 3, 1837, 522, 11, 3, 267, 1, 19, 4, 184, 9655, 7, 321, 1338, 47], [4, 9656, 1198, 491, 484, 311, 21, 3, 9657, 9658, 2693, 9659, 9660, 864, 9661, 21, 5, 239, 911], [9662, 132, 421, 51, 62, 416, 9663, 76, 60, 70, 1020, 2, 394, 86, 157, 249], [297, 216, 1233, 2, 5, 1106, 9664, 217, 9665, 9666, 9667, 9668, 9669, 57, 9670, 9671, 9672, 9673], [1464, 136, 14, 9674, 135, 27, 9675, 416, 222, 6, 9676, 919, 34, 12, 102, 504, 9677, 289, 184, 9678, 1372], [9679, 9680], [9681, 368, 453, 271, 1391, 2700, 3, 509, 81, 63, 822], [135, 423, 15, 16, 9682, 42, 58, 110, 1, 1812, 6, 13, 663, 2, 564, 33, 308, 100, 9683], [9684, 367, 132, 2, 236, 278, 638, 2605, 371], [277, 34, 9685, 9686, 40, 9, 75, 229, 10, 278, 2, 876, 15, 123], [145, 880, 21, 5, 417, 6, 1361], [9687, 320, 41, 7, 468, 183, 9688, 543], [9689, 81, 2835, 1, 19, 114, 303, 34, 11, 3, 9690, 16, 1, 718, 83], [9691, 11, 3, 1189, 12, 3, 1796], [9692, 9693, 3, 9694, 118, 693, 101, 32, 9695, 9696, 128, 112, 17, 9697, 70, 29, 22, 2901, 70, 29, 22, 2901, 39, 14, 584, 213, 59], [78, 454, 9698, 180, 1453, 1357, 6, 9699, 1876], [28, 31], [28, 92, 9700, 3, 247, 8, 1375, 6, 13, 171, 28], [9701, 130, 83, 9702, 388, 213, 67, 7, 35, 2, 2052, 858], [111, 1803, 5, 925, 9703], [9704, 16, 199, 9705, 2629, 1340, 9706, 91, 17, 9707, 198, 10, 9708, 6, 25, 4, 1013, 1813, 2412, 8, 9709], [9710, 146, 1, 180, 3, 9711, 2350, 12, 1397, 728, 3, 2508, 12, 3, 384, 55, 1, 71, 11, 3, 703, 6, 25, 22, 83, 208, 90, 182], [9712, 1, 461, 7, 9713, 120, 66, 374, 1, 304, 49, 80, 215, 9714, 9715], [9716, 570, 3, 182, 358, 28], [9717, 8, 347, 70, 29, 60, 2, 1524, 677, 1788, 1310, 9718, 90, 20, 196, 432, 80, 262, 337, 2773], [180, 4, 288, 26], [18, 69, 4, 28, 1384, 1, 747, 221, 9719, 3, 308, 230, 16, 46, 1, 96, 495, 34, 11, 3, 935], [9720, 9721, 107, 1, 36, 9], [9722, 283, 214, 19, 5, 177, 2061, 389, 6, 672, 214, 40, 15, 10, 15, 1, 40, 5, 149, 6, 9723, 632, 58, 214, 632, 29], [9724, 146, 47, 94, 328, 9, 10, 36, 98, 352], [108, 580, 580], [9725, 29, 7, 6, 613, 9726, 1377, 18, 66, 2, 58], [9727, 258, 115, 9728, 36, 17], [229, 10, 1519, 26], [5, 9729, 9730, 8, 239], [9731, 2589, 13, 145, 17, 26, 1043], [9732, 7, 142, 260, 3, 9733, 67, 7, 93, 2, 1730, 2, 15], [9734, 14, 3, 2604, 8, 9735, 18, 145, 32, 3, 2902, 2903, 1012, 22, 115, 28, 10, 222, 2844, 208, 20, 25, 4, 9736, 231], [9737, 17, 358, 175, 40, 1392, 26, 1, 43, 137, 2, 35, 61, 63, 41, 5, 904, 1384, 39, 213, 9738], [964, 2, 9739, 18, 66, 195, 2, 35, 151, 2841], [2666, 13, 28, 2888, 609, 2904, 9740, 579, 2383, 645, 539, 343, 1690, 3, 223, 83, 11, 9741, 2834, 8, 9742, 306], [9743, 282, 111, 119], [159, 21, 333, 13, 22, 2585, 21, 3, 286, 20, 9, 27, 251, 44, 86, 6, 268, 593, 2, 278, 36, 24, 382, 494, 583], [9744, 734, 89, 800, 7, 11, 5, 9745, 1617, 9746], [9747, 9748, 1183, 132, 178, 1, 129, 41, 17, 55, 65], [9749, 936, 30, 13, 176, 12, 2123, 2, 49, 425, 1025, 39, 313, 5, 1756, 6, 275, 9, 9750, 11, 2, 49, 117, 1025], [9751, 9752, 162, 7, 10, 109, 5, 1093, 1803, 255, 5, 31, 52, 112, 7, 9753, 98, 9754, 72, 12, 3, 1093, 377], [9755, 74, 7, 430, 313, 3, 436, 852, 25, 181, 28, 107, 76, 795, 145, 59, 621, 1565], [9756, 13, 83, 229, 10, 7], [6, 3, 9757, 580, 800, 665, 2, 9758, 10, 187, 9759, 12, 4, 90, 2525, 6, 10, 187, 405, 181], [1, 480, 156, 5, 604], [516, 516, 100, 267], [9760, 70, 53, 93, 2, 493, 7, 30, 76, 8, 9761, 168, 34], [9762, 62, 450, 84, 85, 9763], [30], [9764, 1324, 1534, 494, 1792, 1279, 383, 21, 4, 2784, 1324, 190, 142, 39, 277, 9, 34], [9765, 1, 72, 49, 239], [657, 9766, 14, 4, 1061, 62, 88, 27, 392, 114, 425, 288, 20, 114, 1, 2498, 59, 9767, 321, 180, 98, 2660, 2623, 9768], [9769, 1, 40, 57, 38, 9770], [1, 2816, 5, 9771, 258, 3, 9772, 9773], [44, 123, 2, 9774, 127], [74, 6, 77, 49, 22, 419, 9775, 142, 23, 47], [9776, 923, 3, 537, 12, 5, 296, 9777, 11, 3, 62, 950, 33, 1178], [311, 127], [9778, 76, 27, 3, 182], [13, 91, 34, 127, 11, 9779, 1089], [25, 9780, 262, 9, 459], [70, 29, 250, 216, 952, 11, 816, 12, 3, 161, 1809, 25, 4, 9781, 77, 7, 825, 9, 34, 7, 96, 136, 9782], [1, 325, 83, 21, 9783, 6, 9784, 2684, 9785, 6, 351, 9786, 6, 73, 29, 1233], [9787, 300, 9788, 2728, 136, 1654, 9789, 343, 2472, 9790, 12, 9791, 11, 9792, 26, 3, 9793, 8, 2509, 9794], [9795, 47, 25, 36, 3, 9796, 953, 1, 72, 5, 9797, 8, 4, 2682], [212, 1, 9798, 4, 497, 9799, 9800, 1569, 1805, 46, 51, 9801], [242, 26, 13, 2783, 9802, 79], [9803, 70, 69, 17, 221, 10, 761, 9804, 1086, 248], [561, 1, 72, 1, 681, 180, 3, 1629, 9805, 118, 1, 40, 17, 288, 85, 1, 681, 41, 4, 202, 80, 719], [18, 395, 160, 884, 2255, 9806, 9807, 349], [9808, 546, 1, 36, 555, 38, 212, 130, 9809, 360], [9810, 2368, 2905, 9811, 107], [9812, 162, 7, 104, 115, 330], [9813, 147, 633, 1, 40, 7, 16, 79, 13, 49, 184, 396, 9814, 49, 90], [9815, 81, 10, 3, 647], [242, 411, 64, 12, 7, 8, 44, 2, 399, 15, 4, 997, 113, 9816, 6, 2348, 3, 64, 11, 5, 2015, 258, 4, 2785, 20, 258, 347], [2886, 132, 1676, 57, 19], [278, 434, 15, 3, 281, 31, 17, 7, 42, 581, 55, 7, 35, 1057, 7, 18, 1142, 80, 12, 3, 9817, 7, 68, 29, 76, 300], [45, 5, 9818, 54, 24, 9819, 9820, 84, 92, 226, 8, 28], [600, 2, 39, 133, 15, 59, 9821, 9822, 50, 194, 560, 9823], [9824, 81, 10, 3, 1388, 1144, 9, 115, 79], [9825, 9826, 81], [9827, 43, 137], [9828, 74, 105, 1, 18, 9829, 7, 129, 19, 94, 451, 278, 13, 257, 7, 19, 435, 12, 149, 17, 53, 401, 7, 40], [202, 9830, 1, 69, 2, 587, 2401, 12, 5, 468, 378, 1984, 3, 9831, 545, 20, 1, 69, 98, 239, 153, 9832], [9833, 315, 17, 2906, 41, 47, 913, 133, 543, 118], [58, 315, 251, 60, 127, 1, 42, 19, 2, 35, 138, 543, 144, 10, 84], [48, 48, 11, 1347, 1347, 21, 9834, 9835, 9836, 6, 2866, 9837], [1997, 1998, 14, 340, 1, 19, 103, 48, 589], [1640, 1, 18, 255, 33, 9838, 1, 40, 7, 154, 239, 349, 1757, 7], [13, 144, 14, 54, 10, 481], [9839, 81, 53, 41], [9840, 2677, 75, 229, 10, 3, 9841, 12, 9842, 63, 879], [9843, 107, 17, 18, 1325], [5, 1292, 9844, 8, 61, 51, 102, 160, 1612, 610], [9845, 19, 7, 657, 9846, 9847, 21, 9848, 9849, 208, 25, 239, 4, 550, 12, 9850, 130, 9851, 20, 281, 262, 17, 25, 28], [9852, 429, 9853], [52, 4, 28, 153, 16, 386, 9854, 127, 351], [70, 9855, 78, 443], [9856, 110, 15, 1662, 193, 7, 254, 15, 67, 1, 27, 9857, 1292, 9858, 9859, 9860], [9861, 28, 92, 123, 86, 19, 4, 90, 31, 758], [2907, 81, 2907, 1, 373, 341, 2, 35, 101], [43, 137, 10, 484, 365, 9862, 8, 123], [1, 831, 89, 196, 19, 52, 1, 66, 16, 110, 295, 440, 1176, 83, 1, 136], [9863, 9864, 90, 537, 12, 9865, 10, 3, 537, 12, 7, 38], [18, 69, 98, 1285, 2487, 3, 78, 1102, 715, 917, 9866, 822, 733, 132, 100, 539], [9867, 358, 28], [3, 9868, 34, 9869, 29, 57, 746, 15, 13, 9870, 13, 2906, 82, 3, 1212, 24, 9871], [9872, 18, 144, 255, 9873, 9874, 22, 3, 1988, 741, 9, 9875, 52, 70, 9876, 307, 41], [9877, 1, 72, 7, 815, 2, 155, 9, 1391, 353, 5, 9878], [9879, 287, 57, 370, 1673, 4, 392, 184, 9880, 9881, 6, 4, 115, 28, 9882], [9883, 110, 22, 26, 47, 6, 1, 58, 107], [9884, 81, 1271, 65, 348, 49, 384, 462, 944, 126], [9885, 1808, 1, 180, 32, 974, 21, 37, 471, 544, 1, 723, 3, 625, 14, 6, 9886, 1, 71, 86], [666, 30, 171, 90, 26, 54, 2, 4, 9887, 1, 687, 30, 1110, 17, 5, 31, 106, 205, 9888, 1821], [9889, 9890, 277, 9, 34], [1386, 31, 83, 45, 344, 491, 21, 864, 55, 496, 12, 3, 9891, 864, 125, 1215, 1773, 1623, 6, 9892, 9893], [9894, 333, 1310], [46, 8, 2272, 62, 31, 10, 3, 1157, 2, 801, 1, 9895, 11, 84, 92, 99, 15, 241], [9896, 830, 7, 9897, 15, 49, 30, 157], [15, 38, 20, 9898, 8, 1811, 15, 536, 89, 265, 7, 84], [432, 1262, 9899, 1122, 9900], [9901, 1287, 726, 28], [1974, 201, 275, 5, 404, 1063, 9], [2873, 1, 42, 597, 52, 139, 155, 1, 36, 52, 710, 11, 1089], [9902, 80, 9903, 1596, 9904, 272, 2, 173, 3, 9905, 6, 133, 116, 80, 378, 334], [9906, 74, 1, 646, 484, 62, 88, 38, 1, 9907, 97, 724, 2, 7, 1750], [9908, 68, 4, 319, 141, 261, 1041], [9909, 101, 92, 9910, 207, 89, 23], [9911, 9912, 9913, 71, 1830, 474, 2878, 9914], [9915, 11, 17, 1235, 9916, 714, 1134], [28, 286, 90, 9917, 89, 126, 23, 44, 48, 2, 9918, 65, 9, 27, 114, 235, 9, 9919], [9, 27, 4, 9920, 248, 24, 50, 6, 1, 2574, 14, 102, 1221, 108, 248, 85, 135, 410, 3, 629, 6, 297, 1, 255, 102, 31, 302], [9921, 9922, 89, 19, 4, 447, 51, 50, 6, 133, 9, 67, 1, 71, 593, 2, 7], [9923, 9924, 27, 9925, 14, 7, 22, 24, 9926, 9927, 26, 6, 165, 11, 2727, 2, 35, 5, 468, 2459, 9928], [9929, 33, 621, 202, 12, 2694, 2315, 9930, 255, 15, 72, 12, 7, 9931], [9932, 16, 8, 3, 9933, 1, 58, 67, 446, 57, 161, 48, 2, 1838, 70, 82, 7, 83], [335, 9934, 51, 46, 89, 23, 14, 5, 9935, 1060, 11, 2351, 141], [9936, 9937, 6, 9938, 762, 29, 115, 1733, 9939, 1, 71, 22, 51, 83, 5, 392, 61, 8, 9940, 11, 9941], [217, 352, 438, 247, 6, 865, 54], [14, 5, 121, 2, 5, 62, 898, 182, 194, 170, 172, 188, 415, 12, 3, 249, 20, 43, 137, 438, 9942, 249, 372, 31, 46], [9943, 9944, 49, 397], [9945, 1817, 2746, 1, 71, 22, 9946, 479, 11, 9, 16, 10, 15, 9, 27, 760, 38, 68, 124, 94, 229, 141, 2, 39, 35, 9], [1407, 9947, 2768, 1792, 124, 94, 398, 2, 1094, 31, 32, 31, 33, 608, 8, 3, 9948], [946, 1785, 2812, 27, 239, 1, 40, 7, 178, 669, 79, 6, 43, 137, 10, 3, 1070, 6, 1164, 2147, 7, 1034], [1, 40, 2608], [9949, 5, 1676, 1271], [109, 144, 10, 3, 31], [9950, 607, 1051, 96, 41, 9, 36, 5, 2737, 224, 633, 146, 9951, 6, 633, 9952, 2406], [162, 7, 10, 32, 12, 49, 647, 178, 1, 40, 7, 178, 68], [9953, 9, 27, 16, 132, 2, 9954, 394, 7, 14, 340, 5, 2471, 8, 16, 188, 60, 102, 9955, 712, 10, 3, 650], [9956, 28, 121, 2, 303, 79, 1454, 2, 7], [74, 5, 722, 7, 96, 196, 35, 341, 12, 3, 842, 2505, 9957, 1, 40, 40, 40, 40, 40, 116], [8, 454, 1686, 9958, 101, 4, 2443, 1816, 2880], [28, 92, 149, 19, 4, 115, 132, 31, 21, 4, 427, 12, 247], [9959, 240, 151], [333], [9960, 501, 358, 9961, 23, 257, 2, 1246, 4, 9962, 21, 59, 1675, 63, 9963], [9964, 323, 65, 17, 8, 90, 85], [9965, 323, 2468], [9966, 1, 45, 52, 7, 815], [259, 92, 83, 370, 35, 322, 63, 500, 9], [18, 395, 9967, 60, 9968, 99, 1, 2908, 313, 9, 490, 26, 13, 890, 1405, 5, 331, 299, 43, 137, 438, 258, 2898, 151], [9969, 11, 9970, 1487, 1, 9971, 11, 98, 9972, 1615, 5, 1617, 27, 60, 9973, 9974, 1086, 852, 1518], [9975, 2836, 9976, 916, 2710, 8, 9977, 2899], [9978, 81, 16, 79, 1, 68, 1144, 9], [9979, 25, 9980, 9981, 22, 9982], [9983, 7, 1332, 15], [9984, 358, 36, 4, 90, 31, 46, 13, 229, 10, 4, 296, 111, 233, 185, 5, 422, 9985, 6, 1, 66, 2, 784, 10, 59, 448], [9986, 9987, 81, 7, 255, 9, 4, 202, 151], [1, 36, 2714, 91, 3, 9988, 9989, 9990, 711, 283, 164, 9991, 336, 684], [9, 129, 133, 15, 108, 77, 1, 148, 9992, 33, 9993], [124, 4, 171, 2889, 129, 674, 9994, 12, 5, 301, 127], [9995, 2022, 43, 252, 77, 5, 9996, 29, 9997, 7, 9998, 84, 88], [9999, 302, 1, 56, 9, 665, 28, 7, 93, 2, 1933, 80, 16, 1, 96, 19, 98, 563, 12, 52, 7, 41, 32, 31], [360, 1, 268, 45, 4, 10000, 1108, 1, 69, 2, 35, 30, 24, 2360, 38, 237, 10, 15, 351, 2296, 10001, 10002, 10003, 10004, 10005, 100], [28, 92, 491, 11, 5, 2003, 435, 2, 41, 46, 1628, 2, 683, 30, 3, 10006, 20, 89, 35, 86], [10007, 34, 3, 1434, 52, 4, 259, 31, 1088, 1, 19, 50, 20, 77, 1, 133, 15, 59, 10008, 89, 414, 18, 55, 108, 77, 22, 10009, 377], [1, 40, 67, 3, 223, 233, 497, 10010, 85, 10011, 592, 31], [10012, 173, 482, 10013, 2, 10014], [10015, 1291, 37, 64, 254, 33, 161, 51, 3, 1298, 10016, 73, 29, 80, 10017, 262, 3, 10018, 10019], [52, 4, 121, 2, 231, 3, 92, 35, 2726, 123, 10, 4, 10020, 34, 20, 162, 1696, 18, 45, 4, 10021, 6, 22, 4, 10022, 1820], [10023, 367, 2909, 238, 289], [1606, 48, 21, 3, 1264, 44, 145, 10024, 74, 140], [10025, 295, 10026, 14, 174, 10027, 6, 2879, 24, 3, 316, 10028, 869, 136, 234, 15, 6, 10029, 1128], [10030, 47, 146, 1, 19, 17, 171, 38], [325, 322, 229, 10, 4, 624, 2, 10031, 4, 560, 249, 222], [10032, 81, 1, 56, 7, 45, 49, 671, 10033, 52, 112, 7, 19, 2, 41, 1282, 641], [10034, 4, 164, 10035, 2, 861, 10036, 464], [10037, 874, 35, 55, 386, 192, 51, 3, 10038, 12, 10039, 579, 11, 1836], [451, 30, 118, 1, 40, 33, 288, 324], [10040, 10041, 8, 3, 470, 2644, 24, 3, 812, 38, 379], [1839, 10042, 720, 5, 2764, 6, 95, 2, 4, 10043, 1839], [43, 137, 2, 846, 128, 200, 356, 170, 2, 39, 10044], [24, 3, 10045, 2414], [10046, 38, 379], [10047, 1, 257, 95, 16, 18, 112, 3, 10048, 1214, 793, 6, 9, 198, 28, 54, 10, 10049, 208, 2678, 10050, 28, 241], [1, 167, 39, 14, 785, 126, 20, 207, 2, 39, 65, 2815, 10051, 10052, 1815], [10053, 13, 128, 4, 10054, 192, 32, 3, 54], [613, 4, 18, 69, 203, 160, 1080, 65, 1557, 2, 203, 417, 10055], [24, 10056, 21, 3, 10057, 6, 10058], [1587, 283, 583, 196, 2223, 16, 2885, 47, 1043, 79, 40, 179], [2900, 50, 2, 23, 123, 126, 85, 451, 5, 299, 214, 1, 40, 669, 79, 191], [14, 5, 121, 2, 56, 30, 11, 10059, 21, 10060, 6, 10061, 16, 188, 13, 310, 4, 1106, 24, 826], [69, 4, 497, 2549, 10062, 21, 24, 3, 10063, 18, 26], [2892, 682, 124, 69, 4, 293, 12, 10064, 16, 96, 1, 19, 64, 12, 7, 173, 107, 166, 77, 9, 18, 548, 10065], [10066, 81, 10, 3, 619], [10067, 947, 14, 3, 271], [10068, 25, 28, 89, 277, 9, 34, 679, 2867, 264, 40, 2, 9, 18, 253, 17, 667, 10069, 10070, 1827, 10071, 1741], [10072, 10073, 48, 1, 16, 99, 7, 148, 82, 7, 716], [10074, 264, 40, 2, 50, 21, 7, 10075, 252, 174, 149, 2, 312, 15], [73, 130, 307, 28, 127, 75, 656, 60, 5, 391, 10076], [10077, 7, 93, 2, 10078, 116, 14, 100, 55, 126, 55, 73, 136, 34], [3, 247, 8, 34, 25, 318, 6, 13, 14, 2875, 305, 157, 125], [13, 163, 409, 2, 1838, 150, 4, 779, 276, 44, 2, 35, 59, 466, 126, 21, 404, 6, 417], [10079, 184, 10080, 32, 3, 177, 2, 7, 6, 49, 10081], [10082, 193, 13, 10083], [566, 473, 1342, 18, 4, 164, 54, 11, 1551, 89, 137, 7, 48, 2, 10084, 1, 43, 290, 2, 256, 827, 46], [10085, 9, 1664, 7, 67, 7, 484, 8, 187, 255, 1718, 10086, 6, 10087], [112, 1, 155, 573, 2610, 1181, 1009, 12, 740, 104, 22, 300, 1, 93, 4, 643, 74, 146, 13, 14, 678, 157, 125], [8, 445, 3, 267, 192, 20, 258, 171, 10088, 6, 258, 134, 752, 21, 9], [10089, 617, 458, 938, 453, 48, 2, 3, 10090], [10091, 49, 359, 27, 18, 2755, 11, 3, 1265, 2756, 11, 3, 267, 10092], [10093, 1, 53, 23, 220, 14, 10094, 2765, 21, 3, 1072, 10095, 10096, 8, 10097, 10, 3, 160, 54, 527, 2, 7, 126, 1735, 32, 30], [1840, 124, 94, 2, 1840, 1840, 1, 521, 4, 2046, 47], [10098, 162, 7, 1, 1144, 1334], [1, 19, 18, 255, 10099, 50, 10100, 6, 10101, 2848, 29, 328, 535, 6, 13, 578, 40, 307, 11, 554], [165, 34, 882, 75, 22, 38, 257, 60, 9, 20, 9, 506, 2, 23, 2619, 14, 10102, 109, 59, 50, 159, 6, 578, 3, 247], [817, 2690, 19, 4, 28, 122, 113, 31, 77, 49, 18, 666, 30], [2910, 23, 10103, 12, 10104, 32, 2910, 10105, 397, 614, 52, 585, 2, 3, 10106, 27, 4, 886, 10107], [10108, 18, 10109, 102, 414, 471, 16, 347], [10110, 81, 10, 3, 312, 19, 4, 90, 153, 10111, 10112], [52, 8, 9, 21, 374, 73, 231, 10113, 195, 3, 812, 49, 1319, 18, 1321, 3, 1466], [56, 57, 274, 5, 149], [10114, 42, 885, 33, 366, 10115, 780, 81], [33, 366, 580, 8, 10116, 10117], [44, 61, 26, 23, 337, 525], [10118, 65, 89, 234, 7, 1128, 426, 7, 97, 176, 133, 257, 7, 10119, 91, 2, 2897, 1522, 1517], [10120, 10121, 101, 3, 121, 10122, 10123, 7, 53, 414, 611, 116, 24, 2884, 6, 2170, 2435, 132, 2, 359, 394, 57], [1030, 34, 5, 1132, 124, 373, 4, 10124, 10125, 51, 630, 530, 390, 1, 413, 4, 10126, 14, 2312, 109, 10127, 11, 3, 378], [10128, 154, 453], [161, 2, 714, 2503, 324, 16, 108, 2, 19, 33, 1125], [441, 31, 83, 46, 18, 69, 4, 865], [10129, 6, 10130, 553, 32, 12, 3, 1102, 1741, 16, 386, 25, 10131, 177, 182, 218], [8, 44, 1774, 2136, 10132], [10133, 89, 10134, 51, 64, 2, 3, 281], [10135, 10136, 10137, 10138, 10139, 113, 10140, 715, 173], [265, 10141, 6, 305, 4, 1357, 14, 24, 382, 64, 1348, 428, 584, 14, 10142, 380, 35, 44, 1825], [2285, 197, 16, 26, 13, 44, 2, 122, 28, 88, 1713, 122, 10143, 6, 42, 275, 3, 10144, 10145, 10146], [10147, 1, 71, 11, 10148, 70, 29, 109, 724, 6, 724], [10149, 7, 142, 41, 17, 20, 21, 2317, 2538], [10150, 1, 238, 613, 2766, 503, 79, 1, 120, 2893, 291, 514, 3, 10151, 10152, 47], [10153, 104, 90, 10154], [10155, 5, 988, 29, 10156, 1, 10157, 25, 575, 1, 1775, 16, 79, 46], [5, 226, 462, 151, 6, 151, 452, 31, 21, 33, 228], [10158, 89, 1047, 264, 36, 49, 1021], [10159, 81, 10160, 1, 96, 179, 927, 14, 57, 10, 2911], [243, 622, 452, 54, 1, 295, 2, 305, 3, 406, 80, 2833, 136, 449, 13, 44, 2, 723, 91, 158, 406, 10161, 126], [10162, 10163, 456, 17, 27, 799, 379, 111, 912, 15, 3, 10164, 10165], [10166, 10167, 572, 2912, 10168, 10169, 10170, 10171, 2912, 10172, 10173], [10174, 609, 140, 1, 42, 167, 133, 5, 671, 10175, 1, 40, 109, 621, 1281], [61, 51, 4, 172, 6, 10176, 10177, 477, 477], [10178, 1, 112, 17, 3, 10179, 64, 8, 4, 472, 123, 16, 362, 2, 58, 77, 9, 1425, 24, 356, 10180], [10181, 81, 7, 10, 2789, 15], [10182, 90, 121, 2, 846, 30, 11, 10183, 10184, 1216, 636, 37, 10185], [10186, 10187, 1299, 934, 903, 10, 1301, 276], [10188, 349, 1757, 7, 5, 599, 296], [566, 92, 631, 76, 27, 62, 88], [10189, 146, 1526, 28, 10190, 39, 48, 719], [10191, 2, 143, 6, 291, 736, 437, 23, 61, 126, 191, 582, 50, 665, 897, 46], [10192, 191, 947], [42, 868, 15, 10193, 2859, 1, 853, 273, 5, 190, 3, 10194, 10195, 538, 1, 804, 4, 10196, 337, 352, 769, 46, 578, 50], [10197, 15, 6, 5, 10198, 2101, 10199], [10200, 10201, 10202, 2757, 26, 59, 286, 10203, 10204], [10205, 1, 72, 357, 29, 11, 4, 10206, 1, 19, 5, 10207, 11, 5, 444, 119, 140, 179, 90, 10, 10208, 30], [10209, 95, 32, 8, 65, 234, 49, 284, 30, 63, 13, 257, 437, 56, 7, 449, 1304, 174, 44, 449], [2913, 8, 2891, 13, 75, 165, 2, 1743, 421, 1766, 5, 659, 384, 1153], [10210], [1, 19, 1091, 126, 20, 42, 66, 2, 39, 244, 1, 142, 19, 59, 80, 479], [46, 27, 3, 656, 10211, 881, 311, 90, 10212, 6, 3, 10213, 130, 16, 10214, 32, 433, 3, 1003, 286, 6, 881, 1703, 10215], [2307, 1863, 552, 10216, 30, 1184, 237, 74, 65, 382, 1, 10217, 10218, 159, 10219, 1091, 838, 10220, 10221, 1595, 16, 246], [65, 25, 10222, 83, 6, 11, 1815, 9, 8, 10223, 16, 99, 1, 27, 86, 20, 44, 2, 169, 88, 267], [91, 2, 138, 10, 1231, 10224, 85, 61, 10, 466], [10225, 204, 10226, 10227, 10, 10228, 10229, 248, 311, 84, 3, 420, 8, 163, 181, 251], [171, 181, 28, 185, 62, 88], [1, 45, 4, 414, 11, 4, 10230, 953, 953], [44, 34, 2, 180, 3, 978, 801], [10231, 147, 1740, 453, 2, 10232, 76, 446, 57], [373, 216, 209, 209], [74, 140, 254, 492, 931, 221, 21, 10233, 6, 4, 550, 10234, 1, 27, 10235, 20, 9, 27, 405, 239, 1, 129, 56, 9, 118], [1610, 10236, 8, 5, 78, 10237], [5, 2388, 344, 10238, 8, 14, 1441, 24, 10239, 10240, 1129, 2896, 1, 71, 44, 2, 93, 116, 33, 125], [10241, 72, 12, 327, 10242, 55, 10243, 51, 3, 1196, 7, 45, 10244, 7, 2908, 1022, 10, 6, 80, 54, 21, 49, 10245], [10246, 13, 250, 10247, 63, 10248, 157, 125, 183, 2914, 2, 2914, 2911], [69, 4, 28, 477, 2, 10249, 21, 10250, 6, 10251, 10252, 281, 10253], [10254, 141, 426, 1819, 472, 21, 10255, 2601, 10256, 63, 10257, 1129], [1130, 818, 1, 395, 5, 436, 26, 13, 44, 2, 231, 10258, 101, 2621, 10259, 95, 25, 28], [10260, 154, 310, 4, 2909, 13, 257, 473, 10261, 2, 10262, 18, 736, 48, 11, 2, 10, 4, 319, 141, 20, 393, 157, 125], [10263, 4, 100, 2837, 287, 681, 70, 457, 158, 2821, 10264], [254, 669, 199, 621, 10265, 10266, 10267, 87, 59, 12, 5, 1131, 10268, 179, 4, 28, 54, 1491, 184, 10269], [1121, 21, 3, 10270, 673, 10271, 6, 1806], [10272, 10273, 37, 23, 804, 30, 380, 19, 4, 10274, 10275, 207, 1, 35, 30, 237, 10, 481, 6, 7, 35, 2, 122, 32, 31], [10276, 81, 2915, 2915, 1389, 195, 21, 7, 372], [10277, 22, 17, 1, 72, 1, 27, 10278, 11, 10279, 811, 37, 20, 1, 27, 18, 10280], [1, 99, 32, 12, 7, 55, 441, 4, 318, 55, 1, 71, 150, 56, 7, 274, 244, 21, 59, 10281, 12, 10282, 10283, 9, 2, 10284, 10285, 309], [159, 5, 62, 31, 12, 670, 138, 18, 19, 2, 2080, 448, 623], [2674, 8, 2238, 246, 50, 217, 241, 6, 217, 766], [2772, 596, 15, 177, 31, 12, 5, 226, 47], [10286, 146], [78, 675, 161, 11, 1330, 157, 2519, 10287, 10288, 1762], [1113, 25, 5, 62, 31, 11, 10289, 1, 95, 70, 35, 61, 266, 560, 1, 43, 82, 1640], [18, 424, 4, 783, 941, 1, 97, 856, 107, 44, 2442, 10290, 10291, 8, 161, 123, 127, 191, 107], [1444, 24, 382, 25, 10292], [10293, 147, 1366, 233, 55, 77, 473, 94, 10294, 89, 277, 733, 34], [10295, 81, 1356, 634], [18, 526, 30, 5, 2132, 27, 4, 10296, 62, 88, 6, 1, 120, 35, 79, 122, 28, 211, 34, 12, 32, 12, 33, 1, 10297, 12, 10298, 803], [10299, 1385, 1, 36, 733, 26, 13, 109, 32, 10300, 21, 2813, 872], [10301, 287, 104, 251], [1, 786, 4, 10302, 21, 5, 1824, 10303, 46, 111, 27, 10304, 11, 4, 1124, 10305, 6, 85, 1, 903, 143, 344], [10306, 1276, 10307, 2683, 10308, 1804, 10309, 572, 619, 41, 10310, 10311, 10312, 10313, 10314], [2902, 2903, 8, 68, 181], [13, 16, 108, 1, 45, 4, 560, 10, 5, 1739, 924, 32, 3, 246, 50, 10315, 3, 249, 1029, 91, 81, 2916, 2913, 63, 2916, 10316], [13, 24, 138, 131, 26], [10317, 502, 31], [10318, 365, 2, 256, 7, 29, 171, 151, 10319], [1392, 292, 25, 306, 10320, 6, 25, 274, 262, 7, 10321, 275, 9, 2826], [21, 10322, 33, 125, 20, 1651, 8, 3, 177], [10323, 10324, 26, 14, 3, 10325], [242, 10326, 22, 44, 2, 19, 54, 2, 41, 5, 1388, 833, 3, 31, 10327, 13, 250, 9, 10328, 5, 2323, 6, 312, 5, 1825], [10329, 136, 2, 10330, 21, 15, 64, 31, 10331], [10332, 17, 5, 212, 106, 2, 1465, 32, 3, 3, 54, 2, 133, 378, 20, 2904, 17, 111, 245, 378, 536], [10333, 1, 815, 1334], [10334, 42, 1123, 1, 256, 17, 452, 31, 327, 141], [163, 10, 4, 2905, 529, 1336], [27, 1755, 101, 4, 983, 12, 10335, 2846, 10336, 10337, 101, 386, 5, 1131, 6, 10, 128, 751, 10338, 734, 13, 4, 767, 807]]\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "max_length = 120",
"execution_count": 51,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "X = pad_sequences(encoded_text, maxlen=max_length, padding='post')",
"execution_count": 53,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "X",
"execution_count": 54,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 54,
"data": {
"text/plain": "array([[ 2917, 1, 45, ..., 0, 0, 0],\n [ 2919, 16, 57, ..., 0, 0, 0],\n [ 110, 8, 5, ..., 0, 0, 0],\n ...,\n [10334, 42, 1123, ..., 0, 0, 0],\n [ 163, 10, 4, ..., 0, 0, 0],\n [ 27, 1755, 101, ..., 0, 0, 0]])"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "X.shape",
"execution_count": 55,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 55,
"data": {
"text/plain": "(4000, 120)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state = 42, test_size = 0.2, stratify = y)",
"execution_count": 56,
"outputs": []
},
{
"metadata": {},
"cell_type": "markdown",
"source": "#### BUILD MODEL"
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "vector_size = 300\n\nmodel = Sequential()\nmodel.add(Embedding(vocab_size, vector_size, input_length = max_length))\n\nmodel.add(Conv1D(64, 8, activation='relu'))\nmodel.add(MaxPooling1D(2))\nmodel.add(Dropout(0.5))\n\nmodel.add(Dense(32, activation='relu'))\nmodel.add(Dropout(0.5))\n\nmodel.add(Dense(16, activation='relu'))\nmodel.add(GlobalMaxPooling1D())\n\nmodel.add(Dense(1, activation='sigmoid'))",
"execution_count": 66,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "model.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])",
"execution_count": 69,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "%%time\nmodel.fit(X_train, y_train, epochs=5, validation_data= (X_test, y_test))",
"execution_count": 70,
"outputs": [
{
"output_type": "stream",
"text": "Epoch 1/5\n100/100 [==============================] - 12s 125ms/step - loss: -664.0876 - accuracy: 0.0053 - val_loss: -1743.0094 - val_accuracy: 0.0000e+00\nEpoch 2/5\n100/100 [==============================] - 12s 122ms/step - loss: -60073.2031 - accuracy: 0.0000e+00 - val_loss: -116761.2188 - val_accuracy: 0.0000e+00\nEpoch 3/5\n100/100 [==============================] - 12s 117ms/step - loss: -940860.0000 - accuracy: 0.0000e+00 - val_loss: -1336054.8750 - val_accuracy: 0.0000e+00\nEpoch 4/5\n100/100 [==============================] - 12s 120ms/step - loss: -6139574.0000 - accuracy: 0.0000e+00 - val_loss: -7081166.5000 - val_accuracy: 0.0000e+00\nEpoch 5/5\n100/100 [==============================] - 12s 121ms/step - loss: -25618808.0000 - accuracy: 0.0000e+00 - val_loss: -25439512.0000 - val_accuracy: 0.0000e+00\nWall time: 1min 4s\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 70,
"data": {
"text/plain": "<tensorflow.python.keras.callbacks.History at 0x177891a20c8>"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "X_test.shape",
"execution_count": 71,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 71,
"data": {
"text/plain": "(800, 120)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "def get_encoded(x):\n x = token.texts_to_sequences(x)\n x = pad_sequences(x, maxlen=max_length, padding='post')\n \n return x",
"execution_count": 74,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "x = ['worst services ever. will not recommend']\nmodel.predict_classes(get_encoded(x))",
"execution_count": 75,
"outputs": [
{
"output_type": "stream",
"text": "WARNING:tensorflow:From <ipython-input-75-1d41c5d504cd>:2: Sequential.predict_classes (from tensorflow.python.keras.engine.sequential) is deprecated and will be removed after 2021-01-01.\nInstructions for updating:\nPlease use instead:* `np.argmax(model.predict(x), axis=-1)`, if your model does multi-class classification (e.g. if it uses a `softmax` last-layer activation).* `(model.predict(x) > 0.5).astype(\"int32\")`, if your model does binary classification (e.g. if it uses a `sigmoid` last-layer activation).\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 75,
"data": {
"text/plain": "array([[1]])"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "y.value_counts()",
"execution_count": 79,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 79,
"data": {
"text/plain": "4 2000\n0 2000\nName: sentiment, dtype: int64"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "y_train.value_counts()",
"execution_count": 78,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 78,
"data": {
"text/plain": "4 1600\n0 1600\nName: sentiment, dtype: int64"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "",
"execution_count": null,
"outputs": []
}
],
"metadata": {
"_draft": {
"nbviewer_url": "https://gist.github.com/e9471765492fb7164b1939b7c4fde49e"
},
"gist": {
"id": "e9471765492fb7164b1939b7c4fde49e",
"data": {
"description": "TF2.0 and Keras for Word Embedding in NLP",
"public": true
}
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3",
"language": "python"
},
"language_info": {
"name": "python",
"version": "3.7.6",
"mimetype": "text/x-python",
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"pygments_lexer": "ipython3",
"nbconvert_exporter": "python",
"file_extension": ".py"
},
"toc": {
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"base_numbering": 1,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment