diff --git a/README.md b/README.md index 0d2676f..e53f98d 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ For local development, you can run the server by doing `python server.py`, which ### Training the NLP Model -You can train a new version of the neural network on the `data/survey.csv` data by doing `python train.py`. This will begin training of a basic 64 cell LSTM model (which is defined in `net.py`). You can configure the training parameters which are constants at the top of `train.py`. +You can train a new version of the neural network on the `data/cumulative.csv` data by doing `python train.py`. This will begin training of a basic 64 cell LSTM model (which is defined in `net.py`). You can configure the training parameters which are constants at the top of `train.py`. ```python TOKENIZER_VOCAB_SIZE = 500 # Vocabulary size of the tokenizer diff --git a/nlp/data/cumulative.csv b/nlp/data/cumulative.csv index d899897..0fdd478 100644 --- a/nlp/data/cumulative.csv +++ b/nlp/data/cumulative.csv @@ -1259,4 +1259,28 @@ https://twitter.com/Adobe,taking a break,yes,2020-03-31 17:05:00 +0000 UTC ,procrastinate on my chinese school hw,no ,check the side effects of a medication,yes ,get to know the people im going to school with enxt year,yes -,reach my friends new article,yes \ No newline at end of file +,reach my friends new article,yes +,watch tutorials on knitting,yes +,focusing on my social and emotional wellbeing,yes +,check on my friend’s progress,yes +,trying to fix my broken computer,yes +,getting some inspo for decorating my house,yes +,doing some gift shopping for the holidays,yes +,check when the restaurant opens,yes +,discovering ways to take care of my dog,yes +,learning to tie a tie,yes +,read self-help guides,yes +,managing stress,yes +,taking care of my finances,yes +,find some fitness videos,yes +,add something to my resume,yes +,looking for some new webtoons,no +,getting away from homework to procastinate later,no +,idk im just bored,no +,getting ready for my next class,yes +,look at some fashion trends,no +,browse cool website designs,no +,looking at tech twitter stuff,no +,get some nfts,no +,buy some crypto,no +,keep track of my stocks,no \ No newline at end of file diff --git a/nlp/data_proc.py b/nlp/data_proc.py index de3a032..6ac3510 100644 --- a/nlp/data_proc.py +++ b/nlp/data_proc.py @@ -13,7 +13,7 @@ "havent": "have not", "doesnt": "does not", "he'll": "he will", - "she'll": "she will" + "she'll": "she will" } # remove punctuation from string diff --git a/nlp/models/acc82.49/details.yml b/nlp/models/acc82.49/details.yml new file mode 100644 index 0000000..2250df7 --- /dev/null +++ b/nlp/models/acc82.49/details.yml @@ -0,0 +1,7 @@ +BATCH_SIZE: 128 +NUM_EPOCHS: 20 +SEQUENCE_MAX_LENGTH: 35 +TOKENIZER_VOCAB_SIZE: 1000 +TRAINED_AT: 2021-10-31 18:21:05.743503 +TRAIN_TEST_SPLIT: 0.2 +VALIDATION_SPLIT: 0.2 diff --git a/nlp/models/acc82.49/model.json b/nlp/models/acc82.49/model.json new file mode 100644 index 0000000..8bdabbc --- /dev/null +++ b/nlp/models/acc82.49/model.json @@ -0,0 +1 @@ +{"class_name": "Functional", "config": {"name": "model", "layers": [{"class_name": "InputLayer", "config": {"batch_input_shape": [null, 35], "dtype": "float32", "sparse": false, "ragged": false, "name": "inputs"}, "name": "inputs", "inbound_nodes": []}, {"class_name": "Embedding", "config": {"name": "embedding", "trainable": true, "batch_input_shape": [null, 35], "dtype": "float32", "input_dim": 1000, "output_dim": 128, "embeddings_initializer": {"class_name": "RandomUniform", "config": {"minval": -0.05, "maxval": 0.05, "seed": null}}, "embeddings_regularizer": null, "activity_regularizer": null, "embeddings_constraint": null, "mask_zero": false, "input_length": 35}, "name": "embedding", "inbound_nodes": [[["inputs", 0, 0, {}]]]}, {"class_name": "LSTM", "config": {"name": "lstm", "trainable": true, "dtype": "float32", "return_sequences": true, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "time_major": false, "units": 128, "activation": "tanh", "recurrent_activation": "sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}, "shared_object_id": 3}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}, "shared_object_id": 4}, "bias_initializer": {"class_name": "Zeros", "config": {}, "shared_object_id": 5}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0, "implementation": 2}, "name": "lstm", "inbound_nodes": [[["embedding", 0, 0, {}]]]}, {"class_name": "Dropout", "config": {"name": "dropout", "trainable": true, "dtype": "float32", "rate": 0.5, "noise_shape": null, "seed": null}, "name": "dropout", "inbound_nodes": [[["lstm", 0, 0, {}]]]}, {"class_name": "LSTM", "config": {"name": "lstm_1", "trainable": true, "dtype": "float32", "return_sequences": false, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "time_major": false, "units": 128, "activation": "tanh", "recurrent_activation": "sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}, "shared_object_id": 9}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}, "shared_object_id": 10}, "bias_initializer": {"class_name": "Zeros", "config": {}, "shared_object_id": 11}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0, "implementation": 2}, "name": "lstm_1", "inbound_nodes": [[["dropout", 0, 0, {}]]]}, {"class_name": "Dense", "config": {"name": "FC1", "trainable": true, "dtype": "float32", "units": 256, "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "name": "FC1", "inbound_nodes": [[["lstm_1", 0, 0, {}]]]}, {"class_name": "Dropout", "config": {"name": "dropout_1", "trainable": true, "dtype": "float32", "rate": 0.5, "noise_shape": null, "seed": null}, "name": "dropout_1", "inbound_nodes": [[["FC1", 0, 0, {}]]]}, {"class_name": "Dense", "config": {"name": "out_layer", "trainable": true, "dtype": "float32", "units": 1, "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "name": "out_layer", "inbound_nodes": [[["dropout_1", 0, 0, {}]]]}, {"class_name": "Activation", "config": {"name": "activation", "trainable": true, "dtype": "float32", "activation": "sigmoid"}, "name": "activation", "inbound_nodes": [[["out_layer", 0, 0, {}]]]}], "input_layers": [["inputs", 0, 0]], "output_layers": [["activation", 0, 0]]}, "keras_version": "2.5.0", "backend": "tensorflow"} \ No newline at end of file diff --git a/nlp/models/acc82.49/tokenizer.json b/nlp/models/acc82.49/tokenizer.json new file mode 100644 index 0000000..fbe5971 --- /dev/null +++ b/nlp/models/acc82.49/tokenizer.json @@ -0,0 +1 @@ +"{\"class_name\": \"Tokenizer\", \"config\": {\"num_words\": 1000, \"filters\": \"!\\\"#$%&()*+,-./:;<=>?@[\\\\]^_`{|}~\\t\\n\", \"lower\": true, \"split\": \" \", \"char_level\": false, \"oov_token\": \"\", \"document_count\": 1028, \"word_counts\": \"{\\\"work\\\": 188, \\\"trying\\\": 46, \\\"give\\\": 3, \\\"something\\\": 41, \\\"funny\\\": 4, \\\"think\\\": 6, \\\"taking\\\": 40, \\\"break\\\": 123, \\\"need\\\": 25, \\\"relax\\\": 13, \\\"add\\\": 3, \\\"team\\\": 5, \\\"members\\\": 2, \\\"facebook\\\": 23, \\\"find\\\": 19, \\\"job\\\": 8, \\\"learn\\\": 74, \\\"things\\\": 10, \\\"guess\\\": 1, \\\"take\\\": 76, \\\"internationla\\\": 1, \\\"eocnomics\\\": 1, \\\"mindlessly\\\": 2, \\\"scroll\\\": 3, \\\"little\\\": 4, \\\"bit\\\": 5, \\\"10\\\": 4, \\\"min\\\": 3, \\\"brain\\\": 5, \\\"use\\\": 5, \\\"homework\\\": 21, \\\"like\\\": 6, \\\"andrew\\\": 1, \\\"yang\\\": 1, \\\"recent\\\": 3, \\\"post\\\": 29, \\\"know\\\": 10, \\\"wish\\\": 1, \\\"friend\\\": 23, \\\"happy\\\": 2, \\\"birthday\\\": 2, \\\"build\\\": 1, \\\"house\\\": 2, \\\"bank\\\": 1, \\\"quick\\\": 21, \\\"using\\\": 3, \\\"make\\\": 19, \\\"parallelogram\\\": 1, \\\"none\\\": 1, \\\"business\\\": 2, \\\"calculus\\\": 3, \\\"program\\\": 3, \\\"watch\\\": 43, \\\"khan\\\": 2, \\\"academy\\\": 2, \\\"video\\\": 28, \\\"talk\\\": 14, \\\"friends\\\": 22, \\\"bounces\\\": 1, \\\"binging\\\": 1, \\\"linus\\\": 1, \\\"tech\\\": 2, \\\"tips\\\": 1, \\\"tell\\\": 4, \\\"alison\\\": 1, \\\"misspelled\\\": 1, \\\"important\\\": 5, \\\"term\\\": 1, \\\"checking\\\": 8, \\\"see\\\": 10, \\\"split\\\": 1, \\\"bill\\\": 1, \\\"club\\\": 12, \\\"browsing\\\": 2, \\\"start\\\": 3, \\\"get\\\": 24, \\\"updated\\\": 1, \\\"bofuri\\\": 2, \\\"short\\\": 5, \\\"5\\\": 7, \\\"minute\\\": 5, \\\"reset\\\": 1, \\\"mind\\\": 5, \\\"distracting\\\": 1, \\\"videos\\\": 17, \\\"test\\\": 14, \\\"new\\\": 24, \\\"function\\\": 2, \\\"deserve\\\": 2, \\\"browse\\\": 6, \\\"cool\\\": 2, \\\"website\\\": 3, \\\"designs\\\": 1, \\\"listen\\\": 9, \\\"ted\\\": 1, \\\"set\\\": 3, \\\"nets\\\": 1, \\\"chemistry\\\": 3, \\\"mental\\\": 3, \\\"reasons\\\": 2, \\\"right\\\": 2, \\\"waste\\\": 5, \\\"flutter\\\": 1, \\\"science\\\": 3, \\\"let\\\": 8, \\\"social\\\": 7, \\\"care\\\": 2, \\\"finances\\\": 1, \\\"graphic\\\": 1, \\\"check\\\": 42, \\\"engagement\\\": 1, \\\"look\\\": 21, \\\"tags\\\": 1, \\\"given\\\": 2, \\\"five\\\": 1, \\\"working\\\": 10, \\\"hour\\\": 1, \\\"hw\\\": 3, \\\"going\\\": 8, \\\"sdlkjasd\\\": 1, \\\"home\\\": 7, \\\"details\\\": 1, \\\"assignment\\\": 6, \\\"research\\\": 13, \\\"meal\\\": 1, \\\"prep\\\": 1, \\\"world\\\": 3, \\\"conduct\\\": 2, \\\"not\\\": 16, \\\"slack\\\": 2, \\\"ruin\\\": 1, \\\"grades\\\": 1, \\\"programming\\\": 3, \\\"language\\\": 1, \\\"objective\\\": 6, \\\"c\\\": 8, \\\"habit\\\": 1, \\\"show\\\": 6, \\\"song\\\": 6, \\\"playlist\\\": 3, \\\"figure\\\": 3, \\\"change\\\": 1, \\\"lightbulb\\\": 1, \\\"news\\\": 5, \\\"day\\\": 3, \\\"time\\\": 15, \\\"assignments\\\": 2, \\\"problems\\\": 1, \\\"slides\\\": 1, \\\"testing\\\": 6, \\\"reflect\\\": 8, \\\"works\\\": 4, \\\"whathw\\\": 1, \\\"tpwejofjwef\\\": 1, \\\"paint\\\": 1, \\\"sfksja\\\": 1, \\\"aslkd\\\": 1, \\\"jfasldk\\\": 1, \\\"jasdlk\\\": 1, \\\"jaflskdj\\\": 1, \\\"lskj\\\": 1, \\\"ewlk\\\": 1, \\\"jasli\\\": 1, \\\"fjoewij\\\": 1, \\\"askj\\\": 1, \\\"faiwoej\\\": 1, \\\"ajdf\\\": 1, \\\"kl\\\": 1, \\\"latest\\\": 3, \\\"marketing\\\": 8, \\\"bored\\\": 4, \\\"tok\\\": 2, \\\"essay\\\": 3, \\\"getting\\\": 6, \\\"advertising\\\": 1, \\\"done\\\": 6, \\\"existentialism\\\": 1, \\\"much\\\": 3, \\\"deposit\\\": 1, \\\"left\\\": 1, \\\"still\\\": 1, \\\"really\\\": 4, \\\"sdc\\\": 9, \\\"groupcaht\\\": 1, \\\"documentary\\\": 3, \\\"connecting\\\": 1, \\\"disinterested\\\": 1, \\\"artof\\\": 1, \\\"war\\\": 1, \\\"hentai\\\": 2, \\\"send\\\": 5, \\\"message\\\": 12, \\\"kate\\\": 1, \\\"code\\\": 5, \\\"educational\\\": 3, \\\"youtube\\\": 11, \\\"update\\\": 2, \\\"pay\\\": 1, \\\"attention\\\": 1, \\\"class\\\": 5, \\\"lol\\\": 2, \\\"contact\\\": 4, \\\"shit\\\": 2, \\\"help\\\": 6, \\\"jacky\\\": 6, \\\"project\\\": 10, \\\"feature\\\": 5, \\\"study\\\": 11, \\\"lack\\\": 2, \\\"motivation\\\": 3, \\\"grind\\\": 2, \\\"brief\\\": 1, \\\"procrastinating\\\": 3, \\\"pokemon\\\": 1, \\\"go\\\": 7, \\\"subreddit\\\": 3, \\\"instagram\\\": 7, \\\"snapchat\\\": 1, \\\"messenger\\\": 2, \\\"studying\\\": 8, \\\"collaborate\\\": 1, \\\"list\\\": 2, \\\"errands\\\": 1, \\\"writing\\\": 3, \\\"written\\\": 2, \\\"task\\\": 2, \\\"cat\\\": 5, \\\"pictures\\\": 2, \\\"breather\\\": 1, \\\"netflix\\\": 2, \\\"educate\\\": 1, \\\"scam\\\": 1, \\\"debate\\\": 1, \\\"trade\\\": 1, \\\"buy\\\": 5, \\\"groceries\\\": 1, \\\"online\\\": 4, \\\"prevent\\\": 2, \\\"covid\\\": 3, \\\"photoshop\\\": 1, \\\"fpr\\\": 1, \\\"bs\\\": 1, \\\"tired\\\": 1, \\\"rereading\\\": 1, \\\"topics\\\": 1, \\\"would\\\": 4, \\\"interesting\\\": 2, \\\"stuff\\\": 9, \\\"texting\\\": 1, \\\"unwindrelax\\\": 2, \\\"exercise\\\": 1, \\\"procrastinate\\\": 7, \\\"looking\\\": 7, \\\"calligraphy\\\": 1, \\\"samples\\\": 1, \\\"studied\\\": 1, \\\"hours\\\": 2, \\\"episode\\\": 2, \\\"snl\\\": 2, \\\"fun\\\": 4, \\\"drive\\\": 1, \\\"finding\\\": 2, \\\"housing\\\": 3, \\\"twitter\\\": 3, \\\"sure\\\": 4, \\\"ok\\\": 4, \\\"sasha\\\": 1, \\\"obama\\\": 2, \\\"major\\\": 1, \\\"keep\\\": 2, \\\"track\\\": 1, \\\"stocks\\\": 1, \\\"gander\\\": 1, \\\"information\\\": 1, \\\"anymore\\\": 2, \\\"tt\\\": 1, \\\"read\\\": 8, \\\"tweet\\\": 1, \\\"ellen\\\": 2, \\\"davids\\\": 1, \\\"vlog\\\": 1, \\\"pulling\\\": 1, \\\"random\\\": 1, \\\"sites\\\": 1, \\\"feel\\\": 1, \\\"extension\\\": 2, \\\"relaxing\\\": 2, \\\"enough\\\": 1, \\\"info\\\": 1, \\\"ona\\\": 1, \\\"subject\\\": 2, \\\"politics\\\": 1, \\\"luka\\\": 2, \\\"went\\\": 1, \\\"noo\\\": 1, \\\"become\\\": 1, \\\"better\\\": 6, \\\"person\\\": 4, \\\"emilia\\\": 3, \\\"called\\\": 2, \\\"satella\\\": 3, \\\"say\\\": 1, \\\"watching\\\": 10, \\\"kdramas\\\": 1, \\\"prices\\\": 1, \\\"graphing\\\": 1, \\\"calculator\\\": 2, \\\"chill\\\": 4, \\\"transform\\\": 1, \\\"page\\\": 4, \\\"gotta\\\": 3, \\\"linkedin\\\": 1, \\\"finish\\\": 4, \\\"started\\\": 1, \\\"responding\\\": 1, \\\"messages\\\": 5, \\\"email\\\": 1, \\\"prof\\\": 1, \\\"course\\\": 7, \\\"eat\\\": 5, \\\"large\\\": 5, \\\"chicken\\\": 2, \\\"worked\\\": 1, \\\"order\\\": 1, \\\"destress\\\": 2, \\\"reddit\\\": 6, \\\"battle\\\": 3, \\\"bask\\\": 1, \\\"positive\\\": 1, \\\"affirmation\\\": 1, \\\"site\\\": 3, \\\"school\\\": 8, \\\"fitness\\\": 1, \\\"nvm\\\": 1, \\\"innnnnnn\\\": 1, \\\"wastewfmaodwmdada\\\": 1, \\\"procrastination\\\": 4, \\\"3\\\": 1, \\\"review\\\": 1, \\\"fuel\\\": 1, \\\"crippling\\\": 1, \\\"media\\\": 3, \\\"addiction\\\": 1, \\\"put\\\": 3, \\\"background\\\": 2, \\\"music\\\": 11, \\\"platform\\\": 1, \\\"ask\\\": 6, \\\"ryan\\\": 1, \\\"twilio\\\": 1, \\\"focusing\\\": 1, \\\"emotional\\\": 1, \\\"wellbeing\\\": 1, \\\"lofi\\\": 3, \\\"beats\\\": 2, \\\"wall\\\": 2, \\\"people\\\": 5, \\\"final\\\": 1, \\\"quest\\\": 2, \\\"leaves\\\": 1, \\\"campus\\\": 1, \\\"hack\\\": 1, \\\"north\\\": 1, \\\"voice\\\": 1, \\\"alexa\\\": 1, \\\"fail\\\": 1, \\\"wrok\\\": 2, \\\"nbanews\\\": 1, \\\"name\\\": 2, \\\"someone\\\": 3, \\\"rest\\\": 3, \\\"jubilee\\\": 1, \\\"memes\\\": 6, \\\"yall\\\": 1, \\\"ever\\\": 1, \\\"yeet\\\": 2, \\\"updates\\\": 5, \\\"freedom\\\": 1, \\\"dividend\\\": 1, \\\"tryna\\\": 2, \\\"reviews\\\": 1, \\\"every\\\": 1, \\\"spoon\\\": 1, \\\"known\\\": 1, \\\"man\\\": 1, \\\"sur\\\": 1, \\\"view\\\": 2, \\\"specific\\\": 1, \\\"subjects\\\": 1, \\\"messaging\\\": 1, \\\"happenned\\\": 1, \\\"shopping\\\": 2, \\\"chalkboard\\\": 1, \\\"calendar\\\": 1, \\\"ppl\\\": 1, \\\"productive\\\": 10, \\\"sick\\\": 2, \\\"next\\\": 3, \\\"gen\\\": 2, \\\"model\\\": 1, \\\"might\\\": 1, \\\"useful\\\": 1, \\\"complete\\\": 4, \\\"lawyer\\\": 1, \\\"celebrate\\\": 2, \\\"handing\\\": 2, \\\"econ\\\": 3, \\\"paper\\\": 1, \\\"chinese\\\": 1, \\\"ads\\\": 1, \\\"donate\\\": 2, \\\"fund\\\": 2, \\\"quests\\\": 1, \\\"triyng\\\": 1, \\\"david\\\": 3, \\\"tasks\\\": 2, \\\"sir\\\": 1, \\\"please\\\": 3, \\\"acquire\\\": 1, \\\"listening\\\": 2, \\\"ii\\\": 3, \\\"poeple\\\": 1, \\\"memories\\\": 1, \\\"countertop\\\": 1, \\\"workout\\\": 1, \\\"plan\\\": 1, \\\"cute\\\": 1, \\\"buying\\\": 2, \\\"medication\\\": 3, \\\"resume\\\": 1, \\\"cs50\\\": 1, \\\"advertise\\\": 1, \\\"sorting\\\": 1, \\\"old\\\": 1, \\\"photos\\\": 3, \\\"donations\\\": 1, \\\"connections\\\": 1, \\\"avideo\\\": 1, \\\"download\\\": 1, \\\"distracted\\\": 1, \\\"anything\\\": 1, \\\"pops\\\": 1, \\\"boredtired\\\": 1, \\\"hackathon\\\": 1, \\\"returns\\\": 1, \\\"want\\\": 11, \\\"scoping\\\": 1, \\\"trends\\\": 2, \\\"asdfadfsadsfadsfa\\\": 1, \\\"quote\\\": 1, \\\"mean\\\": 1, \\\"notice\\\": 1, \\\"good\\\": 2, \\\"life\\\": 1, \\\"english\\\": 1, \\\"creating\\\": 1, \\\"inspo\\\": 1, \\\"decorating\\\": 1, \\\"2\\\": 2, \\\"stop\\\": 3, \\\"u\\\": 2, \\\"suck\\\": 1, \\\"focus\\\": 6, \\\"wasting\\\": 1, \\\"jusung\\\": 3, \\\"lee\\\": 3, \\\"kiddding\\\": 1, \\\"convert\\\": 1, \\\"tensors\\\": 1, \\\"eigenvectors\\\": 1, \\\"create\\\": 3, \\\"apple\\\": 2, \\\"bottme\\\": 1, \\\"jean\\\": 1, \\\"gmail\\\": 1, \\\"reply\\\": 1, \\\"lab\\\": 1, \\\"part\\\": 2, \\\"ne\\\": 1, \\\"tracking\\\": 2, \\\"amazon\\\": 3, \\\"package\\\": 1, \\\"ml\\\": 1, \\\"cherish\\\": 1, \\\"green\\\": 1, \\\"potato\\\": 2, \\\"connect\\\": 2, \\\"freinds\\\": 1, \\\"reach\\\": 3, \\\"article\\\": 2, \\\"sorry\\\": 1, \\\"studywork\\\": 1, \\\"stuckconfused\\\": 1, \\\"discouraged\\\": 1, \\\"tensorflow\\\": 1, \\\"asdkfjasldgjsaldgkjsaldkgjasldjgasldkgjaslkdjgalskdjglaskjdglaskjdglaks\\\": 1, \\\"timer\\\": 1, \\\"ordering\\\": 2, \\\"grandparents\\\": 1, \\\"goof\\\": 1, \\\"possible\\\": 1, \\\"entertain\\\": 1, \\\"apart\\\": 1, \\\"difficult\\\": 1, \\\"league\\\": 1, \\\"legends\\\": 1, \\\"fa\\\": 1, \\\"heavy\\\": 1, \\\"listing\\\": 1, \\\"international\\\": 3, \\\"economics\\\": 4, \\\"way\\\": 1, \\\"deal\\\": 1, \\\"due\\\": 1, \\\"hopping\\\": 1, \\\"minutes\\\": 3, \\\"challenges\\\": 1, \\\"panelling\\\": 1, \\\"math\\\": 3, \\\"sense\\\": 2, \\\"deep\\\": 1, \\\"cleaning\\\": 1, \\\"play\\\": 5, \\\"forums\\\": 1, \\\"asdf\\\": 2, \\\"adsf\\\": 2, \\\"asd\\\": 1, \\\"fas\\\": 1, \\\"dfas\\\": 1, \\\"df\\\": 1, \\\"thing\\\": 2, \\\"instead\\\": 1, \\\"finished\\\": 2, \\\"30\\\": 1, \\\"group\\\": 7, \\\"chat\\\": 5, \\\"ass\\\": 1, \\\"event\\\": 3, \\\"bottom\\\": 1, \\\"jans\\\": 1, \\\"gas\\\": 1, \\\"station\\\": 1, \\\"images\\\": 1, \\\"save\\\": 2, \\\"computer\\\": 3, \\\"vision\\\": 2, \\\"catch\\\": 3, \\\"socialize\\\": 1, \\\"citations\\\": 1, \\\"anson\\\": 2, \\\"fashion\\\": 1, \\\"a2c\\\": 1, \\\"related\\\": 2, \\\"classwork\\\": 1, \\\"tutorials\\\": 1, \\\"knitting\\\": 1, \\\"orientaion\\\": 1, \\\"fix\\\": 1, \\\"broken\\\": 1, \\\"engage\\\": 1, \\\"selfhelp\\\": 1, \\\"guides\\\": 1, \\\"link\\\": 1, \\\"crash\\\": 1, \\\"nothing\\\": 1, \\\"whats\\\": 1, \\\"epically\\\": 1, \\\"photo\\\": 1, \\\"cas\\\": 1, \\\"reflection\\\": 1, \\\"sell\\\": 1, \\\"f\\\": 1, \\\"shield\\\": 1, \\\"girl\\\": 1, \\\"runs\\\": 1, \\\"clan\\\": 1, \\\"examine\\\": 1, \\\"hi\\\": 1, \\\"momentarily\\\": 2, \\\"distract\\\": 4, \\\"ongoing\\\": 1, \\\"pain\\\": 1, \\\"backgrounder\\\": 1, \\\"useless\\\": 1, \\\"non\\\": 1, \\\"indulging\\\": 1, \\\"irrelevant\\\": 1, \\\"content\\\": 1, \\\"burn\\\": 1, \\\"health\\\": 1, \\\"schedule\\\": 1, \\\"appointment\\\": 1, \\\"may\\\": 2, \\\"potentially\\\": 1, \\\"waterloo\\\": 1, \\\"vibe\\\": 1, \\\"dry\\\": 1, \\\"cleaner\\\": 1, \\\"workmarketingpromoting\\\": 1, \\\"pet\\\": 1, \\\"shibe\\\": 1, \\\"jus\\\": 1, \\\"wanna\\\": 1, \\\"fuck\\\": 2, \\\"network\\\": 1, \\\"announcing\\\": 1, \\\"mountain\\\": 1, \\\"trees\\\": 1, \\\"northern\\\": 1, \\\"lights\\\": 1, \\\"magnets\\\": 1, \\\"also\\\": 3, \\\"yellow\\\": 1, \\\"sword\\\": 1, \\\"bro\\\": 1, \\\"swear\\\": 1, \\\"god\\\": 1, \\\"goddamn\\\": 1, \\\"smh\\\": 1, \\\"tkaing\\\": 2, \\\"question\\\": 4, \\\"learning\\\": 4, \\\"install\\\": 2, \\\"karma\\\": 1, \\\"decompress\\\": 1, \\\"win\\\": 1, \\\"barbarian\\\": 1, \\\"tie\\\": 2, \\\"logo\\\": 1, \\\"exploring\\\": 1, \\\"different\\\": 1, \\\"venue\\\": 1, \\\"options\\\": 1, \\\"featyre\\\": 1, \\\"real\\\": 1, \\\"prepare\\\": 1, \\\"yes\\\": 1, \\\"less\\\": 1, \\\"multitask\\\": 1, \\\"playing\\\": 2, \\\"sent\\\": 1, \\\"text\\\": 4, \\\"zoom\\\": 1, \\\"pass\\\": 1, \\\"enter\\\": 1, \\\"harborrrrrrrrrrr\\\": 1, \\\"coworkers\\\": 1, \\\"crypto\\\": 1, \\\"avoid\\\": 2, \\\"reality\\\": 1, \\\"breakj\\\": 1, \\\"family\\\": 1, \\\"dinner\\\": 1, \\\"20xx\\\": 1, \\\"iso\\\": 1, \\\"melee\\\": 1, \\\"smoke\\\": 3, \\\"big\\\": 2, \\\"potatoes\\\": 2, \\\"surf\\\": 1, \\\"clemente\\\": 1, \\\"algoexpert\\\": 1, \\\"contest\\\": 1, \\\"channel\\\": 1, \\\"well\\\": 3, \\\"actually\\\": 1, \\\"search\\\": 2, \\\"articles\\\": 1, \\\"extensions\\\": 1, \\\"disabled\\\": 1, \\\"feed\\\": 3, \\\"spotify\\\": 1, \\\"vmun\\\": 1, \\\"sect\\\": 1, \\\"apply\\\": 1, \\\"jobs\\\": 1, \\\"copy\\\": 1, \\\"store\\\": 1, \\\"starting\\\": 1, \\\"lunch\\\": 1, \\\"questions\\\": 1, \\\"dohomework\\\": 1, \\\"rbeak\\\": 1, \\\"pizza\\\": 1, \\\"void\\\": 2, \\\"idea\\\": 1, \\\"back\\\": 3, \\\"whle\\\": 1, \\\"ready\\\": 1, \\\"shows\\\": 1, \\\"hop\\\": 2, \\\"call\\\": 3, \\\"cheese\\\": 1, \\\"visit\\\": 1, \\\"progress\\\": 1, \\\"applicatin\\\": 1, \\\"trevor\\\": 1, \\\"noah\\\": 1, \\\"de\\\": 1, \\\"stress\\\": 2, \\\"quickbreather\\\": 1, \\\"pos\\\": 1, \\\"sdksdkl\\\": 1, \\\"cmon\\\": 1, \\\"eata\\\": 1, \\\"comfort\\\": 1, \\\"dog\\\": 2, \\\"died\\\": 1, \\\"actual\\\": 1, \\\"promise\\\": 1, \\\"side\\\": 1, \\\"effects\\\": 1, \\\"today\\\": 1, \\\"mun\\\": 1, \\\"scratch\\\": 1, \\\"itch\\\": 1, \\\"provide\\\": 1, \\\"feedback\\\": 1, \\\"hello\\\": 1, \\\"mountains\\\": 1, \\\"stars\\\": 1, \\\"pen\\\": 1, \\\"wallet\\\": 1, \\\"earphones\\\": 1, \\\"problem\\\": 2, \\\"ease\\\": 1, \\\"access\\\": 1, \\\"admin\\\": 1, \\\"outreach\\\": 1, \\\"ow\\\": 1, \\\"aftereffects\\\": 1, \\\"expanding\\\": 1, \\\"knowledge\\\": 1, \\\"opinions\\\": 1, \\\"perspectives\\\": 1, \\\"makeup\\\": 1, \\\"tutorial\\\": 3, \\\"entertainment\\\": 3, \\\"purposes\\\": 1, \\\"youtubers\\\": 1, \\\"food\\\": 1, \\\"form\\\": 2, \\\"refresh\\\": 1, \\\"skill\\\": 2, \\\"informative\\\": 1, \\\"quiet\\\": 1, \\\"observe\\\": 1, \\\"others\\\": 1, \\\"grinding\\\": 2, \\\"idk\\\": 2, \\\"innn\\\": 1, \\\"teach\\\": 1, \\\"areas\\\": 1, \\\"netplay\\\": 1, \\\"local\\\": 1, \\\"charitiesorganizations\\\": 1, \\\"college\\\": 2, \\\"appssee\\\": 1, \\\"everyone\\\": 1, \\\"else\\\": 2, \\\"app\\\": 2, \\\"process\\\": 1, \\\"planning\\\": 1, \\\"grocery\\\": 1, \\\"week\\\": 1, \\\"tutorialhow\\\": 1, \\\"answer\\\": 1, \\\"certain\\\": 1, \\\"cannot\\\": 1, \\\"react\\\": 1, \\\"period\\\": 1, \\\"bonny\\\": 1, \\\"elle\\\": 1, \\\"mills\\\": 1, \\\"ig\\\": 1, \\\"love\\\": 1, \\\"minie\\\": 1, \\\"attract\\\": 1, \\\"attendees\\\": 1, \\\"cry\\\": 1, \\\"interact\\\": 1, \\\"somewhat\\\": 1, \\\"socially\\\": 1, \\\"maintaining\\\": 1, \\\"semblance\\\": 1, \\\"editing\\\": 2, \\\"spread\\\": 1, \\\"coronavirus\\\": 1, \\\"adobe\\\": 1, \\\"dimension\\\": 1, \\\"allen\\\": 1, \\\"lu\\\": 1, \\\"physics\\\": 1, \\\"stupid\\\": 1, \\\"mentor\\\": 1, \\\"guitar\\\": 1, \\\"restaurant\\\": 1, \\\"opens\\\": 1, \\\"notes\\\": 1, \\\"slippin\\\": 1, \\\"cookies\\\": 1, \\\"networking\\\": 1, \\\"advertisementwork\\\": 1, \\\"miss\\\": 1, \\\"groups\\\": 2, \\\"epic\\\": 1, \\\"worlds\\\": 1, \\\"cousin\\\": 1, \\\"stalk\\\": 1, \\\"profile\\\": 1, \\\"aaaaaaaaaaaaaaaaaaaaaaaaa\\\": 1, \\\"fwork\\\": 1, \\\"interseting\\\": 1, \\\"office\\\": 1, \\\"supplies\\\": 1, \\\"fast\\\": 1, \\\"discovering\\\": 1, \\\"ways\\\": 1, \\\"fooid\\\": 1, \\\"somehting\\\": 1, \\\"aftereffcts\\\": 1, \\\"comedy\\\": 1, \\\"homewokr\\\": 1, \\\"tag\\\": 1, \\\"aron\\\": 1, \\\"lit\\\": 1, \\\"analysis\\\": 1, \\\"regarding\\\": 1, \\\"assigment\\\": 1, \\\"campaigning\\\": 1, \\\"jkc\\\": 1, \\\"reading\\\": 1, \\\"befkre\\\": 1, \\\"continuing\\\": 1, \\\"mood\\\": 1, \\\"asdlkfjasd\\\": 1, \\\"respond\\\": 1, \\\"comment\\\": 1, \\\"cook\\\": 1, \\\"cow\\\": 1, \\\"lasts\\\": 1, \\\"hey\\\": 1, \\\"gimme\\\": 1, \\\"one\\\": 1, \\\"ya\\\": 1, \\\"skilll\\\": 1, \\\"choice\\\": 1, \\\"harbor\\\": 1, \\\"items\\\": 1, \\\"deliver\\\": 1, \\\"handed\\\": 1, \\\"numbers\\\": 1, \\\"fully\\\": 1, \\\"settling\\\": 1, \\\"knearest\\\": 1, \\\"neighbor\\\": 1, \\\"python\\\": 1, \\\"convenient\\\": 1, \\\"bookmark\\\": 1, \\\"google\\\": 1, \\\"chrome\\\": 1, \\\"great\\\": 1, \\\"pretty\\\": 1, \\\"boring\\\": 1, \\\"atm\\\": 1, \\\"teammates\\\": 1, \\\"past\\\": 1, \\\"years\\\": 1, \\\"bryan\\\": 1, \\\"beat\\\": 1, \\\"pharmacy\\\": 1, \\\"okay\\\": 2, \\\"enxt\\\": 1, \\\"year\\\": 1, \\\"instrument\\\": 1, \\\"relief\\\": 1, \\\"determines\\\": 1, \\\"productivity\\\": 1, \\\"case\\\": 1, \\\"understand\\\": 1, \\\"gather\\\": 1, \\\"analytical\\\": 1, \\\"data\\\": 1, \\\"follow\\\": 1, \\\"announcement\\\": 1, \\\"webtoons\\\": 1, \\\"soothing\\\": 1, \\\"concentrate\\\": 1, \\\"huge\\\": 1, \\\"purchase\\\": 1, \\\"berak\\\": 1, \\\"extra\\\": 1, \\\"since\\\": 1, \\\"free\\\": 1, \\\"asfdoainds\\\": 1, \\\"oqjefoqwidnkasdiof\\\": 1, \\\"aosdifk\\\": 1, \\\"aoef\\\": 1, \\\"awpeidfk\\\": 1, \\\"asljdf\\\": 1, \\\"elephants\\\": 1, \\\"trunks\\\": 1, \\\"assemble\\\": 1, \\\"furniture\\\": 1, \\\"hacktech\\\": 1, \\\"readng\\\": 1, \\\"clear\\\": 1, \\\"sink\\\": 1, \\\"mins\\\": 3}\", \"word_docs\": \"{\\\"work\\\": 186, \\\"trying\\\": 46, \\\"funny\\\": 4, \\\"give\\\": 3, \\\"think\\\": 5, \\\"something\\\": 41, \\\"need\\\": 25, \\\"relax\\\": 13, \\\"taking\\\": 40, \\\"break\\\": 123, \\\"facebook\\\": 23, \\\"members\\\": 2, \\\"add\\\": 3, \\\"team\\\": 5, \\\"job\\\": 8, \\\"find\\\": 19, \\\"things\\\": 10, \\\"learn\\\": 74, \\\"guess\\\": 1, \\\"take\\\": 76, \\\"eocnomics\\\": 1, \\\"internationla\\\": 1, \\\"mindlessly\\\": 2, \\\"little\\\": 4, \\\"bit\\\": 5, \\\"scroll\\\": 3, \\\"min\\\": 3, \\\"brain\\\": 5, \\\"10\\\": 3, \\\"use\\\": 5, \\\"homework\\\": 21, \\\"post\\\": 28, \\\"like\\\": 6, \\\"andrew\\\": 1, \\\"yang\\\": 1, \\\"recent\\\": 3, \\\"know\\\": 10, \\\"birthday\\\": 2, \\\"wish\\\": 1, \\\"friend\\\": 23, \\\"happy\\\": 2, \\\"build\\\": 1, \\\"house\\\": 2, \\\"bank\\\": 1, \\\"quick\\\": 21, \\\"using\\\": 3, \\\"parallelogram\\\": 1, \\\"make\\\": 19, \\\"none\\\": 1, \\\"business\\\": 2, \\\"calculus\\\": 3, \\\"program\\\": 3, \\\"academy\\\": 2, \\\"watch\\\": 43, \\\"video\\\": 28, \\\"khan\\\": 2, \\\"talk\\\": 14, \\\"friends\\\": 22, \\\"bounces\\\": 1, \\\"linus\\\": 1, \\\"tips\\\": 1, \\\"binging\\\": 1, \\\"tech\\\": 2, \\\"alison\\\": 1, \\\"tell\\\": 4, \\\"misspelled\\\": 1, \\\"term\\\": 1, \\\"important\\\": 5, \\\"split\\\": 1, \\\"see\\\": 10, \\\"checking\\\": 8, \\\"bill\\\": 1, \\\"club\\\": 12, \\\"start\\\": 3, \\\"browsing\\\": 2, \\\"get\\\": 24, \\\"updated\\\": 1, \\\"bofuri\\\": 2, \\\"5\\\": 7, \\\"mind\\\": 5, \\\"short\\\": 5, \\\"reset\\\": 1, \\\"minute\\\": 5, \\\"distracting\\\": 1, \\\"videos\\\": 17, \\\"test\\\": 14, \\\"new\\\": 24, \\\"function\\\": 2, \\\"deserve\\\": 2, \\\"cool\\\": 2, \\\"website\\\": 3, \\\"designs\\\": 1, \\\"browse\\\": 6, \\\"ted\\\": 1, \\\"listen\\\": 9, \\\"nets\\\": 1, \\\"set\\\": 3, \\\"chemistry\\\": 3, \\\"mental\\\": 3, \\\"reasons\\\": 2, \\\"waste\\\": 5, \\\"right\\\": 2, \\\"flutter\\\": 1, \\\"science\\\": 3, \\\"let\\\": 8, \\\"social\\\": 7, \\\"finances\\\": 1, \\\"care\\\": 2, \\\"graphic\\\": 1, \\\"engagement\\\": 1, \\\"check\\\": 42, \\\"look\\\": 21, \\\"tags\\\": 1, \\\"hour\\\": 1, \\\"working\\\": 10, \\\"five\\\": 1, \\\"given\\\": 2, \\\"hw\\\": 3, \\\"going\\\": 8, \\\"sdlkjasd\\\": 1, \\\"home\\\": 7, \\\"assignment\\\": 6, \\\"details\\\": 1, \\\"research\\\": 13, \\\"prep\\\": 1, \\\"meal\\\": 1, \\\"world\\\": 3, \\\"not\\\": 16, \\\"conduct\\\": 2, \\\"slack\\\": 2, \\\"grades\\\": 1, \\\"ruin\\\": 1, \\\"programming\\\": 3, \\\"language\\\": 1, \\\"c\\\": 7, \\\"objective\\\": 6, \\\"habit\\\": 1, \\\"song\\\": 6, \\\"playlist\\\": 3, \\\"show\\\": 6, \\\"figure\\\": 3, \\\"lightbulb\\\": 1, \\\"change\\\": 1, \\\"news\\\": 5, \\\"day\\\": 3, \\\"time\\\": 15, \\\"problems\\\": 1, \\\"assignments\\\": 2, \\\"slides\\\": 1, \\\"testing\\\": 6, \\\"works\\\": 4, \\\"reflect\\\": 8, \\\"tpwejofjwef\\\": 1, \\\"whathw\\\": 1, \\\"paint\\\": 1, \\\"askj\\\": 1, \\\"fjoewij\\\": 1, \\\"jaflskdj\\\": 1, \\\"jfasldk\\\": 1, \\\"kl\\\": 1, \\\"jasli\\\": 1, \\\"ajdf\\\": 1, \\\"ewlk\\\": 1, \\\"jasdlk\\\": 1, \\\"lskj\\\": 1, \\\"faiwoej\\\": 1, \\\"sfksja\\\": 1, \\\"aslkd\\\": 1, \\\"marketing\\\": 8, \\\"latest\\\": 3, \\\"bored\\\": 4, \\\"tok\\\": 2, \\\"essay\\\": 3, \\\"advertising\\\": 1, \\\"done\\\": 6, \\\"getting\\\": 6, \\\"existentialism\\\": 1, \\\"left\\\": 1, \\\"much\\\": 3, \\\"deposit\\\": 1, \\\"still\\\": 1, \\\"really\\\": 4, \\\"groupcaht\\\": 1, \\\"sdc\\\": 9, \\\"documentary\\\": 2, \\\"connecting\\\": 1, \\\"disinterested\\\": 1, \\\"artof\\\": 1, \\\"war\\\": 1, \\\"hentai\\\": 2, \\\"kate\\\": 1, \\\"message\\\": 12, \\\"send\\\": 5, \\\"code\\\": 5, \\\"youtube\\\": 11, \\\"educational\\\": 3, \\\"update\\\": 2, \\\"class\\\": 5, \\\"attention\\\": 1, \\\"pay\\\": 1, \\\"lol\\\": 2, \\\"contact\\\": 4, \\\"shit\\\": 2, \\\"project\\\": 10, \\\"help\\\": 6, \\\"jacky\\\": 6, \\\"feature\\\": 5, \\\"study\\\": 11, \\\"motivation\\\": 3, \\\"grind\\\": 2, \\\"lack\\\": 2, \\\"brief\\\": 1, \\\"procrastinating\\\": 3, \\\"subreddit\\\": 2, \\\"pokemon\\\": 1, \\\"snapchat\\\": 1, \\\"go\\\": 6, \\\"instagram\\\": 7, \\\"messenger\\\": 2, \\\"studying\\\": 8, \\\"errands\\\": 1, \\\"list\\\": 2, \\\"collaborate\\\": 1, \\\"task\\\": 2, \\\"written\\\": 2, \\\"writing\\\": 3, \\\"pictures\\\": 2, \\\"cat\\\": 5, \\\"breather\\\": 1, \\\"netflix\\\": 2, \\\"educate\\\": 1, \\\"scam\\\": 1, \\\"trade\\\": 1, \\\"debate\\\": 1, \\\"buy\\\": 5, \\\"covid\\\": 3, \\\"groceries\\\": 1, \\\"prevent\\\": 2, \\\"online\\\": 4, \\\"photoshop\\\": 1, \\\"fpr\\\": 1, \\\"bs\\\": 1, \\\"topics\\\": 1, \\\"would\\\": 3, \\\"rereading\\\": 1, \\\"interesting\\\": 2, \\\"tired\\\": 1, \\\"stuff\\\": 9, \\\"texting\\\": 1, \\\"unwindrelax\\\": 2, \\\"exercise\\\": 1, \\\"procrastinate\\\": 7, \\\"samples\\\": 1, \\\"calligraphy\\\": 1, \\\"looking\\\": 7, \\\"hours\\\": 2, \\\"studied\\\": 1, \\\"snl\\\": 2, \\\"episode\\\": 2, \\\"fun\\\": 4, \\\"drive\\\": 1, \\\"housing\\\": 3, \\\"finding\\\": 2, \\\"twitter\\\": 3, \\\"ok\\\": 4, \\\"sure\\\": 4, \\\"obama\\\": 2, \\\"major\\\": 1, \\\"sasha\\\": 1, \\\"stocks\\\": 1, \\\"track\\\": 1, \\\"keep\\\": 2, \\\"gander\\\": 1, \\\"information\\\": 1, \\\"tt\\\": 1, \\\"anymore\\\": 2, \\\"tweet\\\": 1, \\\"read\\\": 8, \\\"ellen\\\": 2, \\\"davids\\\": 1, \\\"vlog\\\": 1, \\\"pulling\\\": 1, \\\"random\\\": 1, \\\"sites\\\": 1, \\\"feel\\\": 1, \\\"extension\\\": 2, \\\"relaxing\\\": 2, \\\"enough\\\": 1, \\\"subject\\\": 2, \\\"info\\\": 1, \\\"ona\\\": 1, \\\"politics\\\": 1, \\\"luka\\\": 2, \\\"went\\\": 1, \\\"noo\\\": 1, \\\"person\\\": 4, \\\"better\\\": 6, \\\"become\\\": 1, \\\"called\\\": 2, \\\"satella\\\": 3, \\\"emilia\\\": 3, \\\"say\\\": 1, \\\"watching\\\": 9, \\\"kdramas\\\": 1, \\\"graphing\\\": 1, \\\"calculator\\\": 2, \\\"prices\\\": 1, \\\"chill\\\": 4, \\\"transform\\\": 1, \\\"page\\\": 4, \\\"linkedin\\\": 1, \\\"gotta\\\": 3, \\\"started\\\": 1, \\\"finish\\\": 4, \\\"responding\\\": 1, \\\"messages\\\": 5, \\\"prof\\\": 1, \\\"email\\\": 1, \\\"course\\\": 7, \\\"eat\\\": 5, \\\"large\\\": 5, \\\"chicken\\\": 2, \\\"order\\\": 1, \\\"reddit\\\": 6, \\\"destress\\\": 2, \\\"worked\\\": 1, \\\"battle\\\": 3, \\\"affirmation\\\": 1, \\\"site\\\": 3, \\\"bask\\\": 1, \\\"positive\\\": 1, \\\"school\\\": 8, \\\"fitness\\\": 1, \\\"nvm\\\": 1, \\\"innnnnnn\\\": 1, \\\"wastewfmaodwmdada\\\": 1, \\\"3\\\": 1, \\\"procrastination\\\": 4, \\\"review\\\": 1, \\\"addiction\\\": 1, \\\"crippling\\\": 1, \\\"fuel\\\": 1, \\\"media\\\": 3, \\\"background\\\": 2, \\\"put\\\": 3, \\\"music\\\": 11, \\\"platform\\\": 1, \\\"ryan\\\": 1, \\\"twilio\\\": 1, \\\"ask\\\": 6, \\\"emotional\\\": 1, \\\"wellbeing\\\": 1, \\\"focusing\\\": 1, \\\"beats\\\": 2, \\\"lofi\\\": 3, \\\"wall\\\": 2, \\\"people\\\": 5, \\\"final\\\": 1, \\\"quest\\\": 2, \\\"leaves\\\": 1, \\\"campus\\\": 1, \\\"hack\\\": 1, \\\"north\\\": 1, \\\"voice\\\": 1, \\\"alexa\\\": 1, \\\"fail\\\": 1, \\\"wrok\\\": 2, \\\"nbanews\\\": 1, \\\"someone\\\": 3, \\\"name\\\": 2, \\\"rest\\\": 3, \\\"jubilee\\\": 1, \\\"memes\\\": 6, \\\"yeet\\\": 2, \\\"ever\\\": 1, \\\"yall\\\": 1, \\\"freedom\\\": 1, \\\"updates\\\": 5, \\\"dividend\\\": 1, \\\"known\\\": 1, \\\"tryna\\\": 2, \\\"reviews\\\": 1, \\\"every\\\": 1, \\\"man\\\": 1, \\\"spoon\\\": 1, \\\"sur\\\": 1, \\\"specific\\\": 1, \\\"subjects\\\": 1, \\\"view\\\": 2, \\\"happenned\\\": 1, \\\"messaging\\\": 1, \\\"shopping\\\": 2, \\\"chalkboard\\\": 1, \\\"calendar\\\": 1, \\\"ppl\\\": 1, \\\"productive\\\": 10, \\\"sick\\\": 2, \\\"gen\\\": 2, \\\"useful\\\": 1, \\\"model\\\": 1, \\\"might\\\": 1, \\\"next\\\": 3, \\\"complete\\\": 4, \\\"lawyer\\\": 1, \\\"econ\\\": 3, \\\"paper\\\": 1, \\\"handing\\\": 2, \\\"celebrate\\\": 2, \\\"chinese\\\": 1, \\\"ads\\\": 1, \\\"donate\\\": 2, \\\"fund\\\": 2, \\\"quests\\\": 1, \\\"david\\\": 3, \\\"triyng\\\": 1, \\\"tasks\\\": 2, \\\"acquire\\\": 1, \\\"sir\\\": 1, \\\"please\\\": 3, \\\"listening\\\": 2, \\\"ii\\\": 1, \\\"poeple\\\": 1, \\\"memories\\\": 1, \\\"countertop\\\": 1, \\\"workout\\\": 1, \\\"plan\\\": 1, \\\"cute\\\": 1, \\\"medication\\\": 3, \\\"buying\\\": 2, \\\"resume\\\": 1, \\\"cs50\\\": 1, \\\"advertise\\\": 1, \\\"sorting\\\": 1, \\\"photos\\\": 3, \\\"old\\\": 1, \\\"donations\\\": 1, \\\"connections\\\": 1, \\\"avideo\\\": 1, \\\"download\\\": 1, \\\"distracted\\\": 1, \\\"pops\\\": 1, \\\"anything\\\": 1, \\\"boredtired\\\": 1, \\\"hackathon\\\": 1, \\\"returns\\\": 1, \\\"want\\\": 11, \\\"trends\\\": 2, \\\"scoping\\\": 1, \\\"asdfadfsadsfadsfa\\\": 1, \\\"quote\\\": 1, \\\"mean\\\": 1, \\\"notice\\\": 1, \\\"life\\\": 1, \\\"good\\\": 2, \\\"english\\\": 1, \\\"creating\\\": 1, \\\"decorating\\\": 1, \\\"inspo\\\": 1, \\\"2\\\": 2, \\\"stop\\\": 2, \\\"wasting\\\": 1, \\\"focus\\\": 6, \\\"suck\\\": 1, \\\"u\\\": 2, \\\"jusung\\\": 3, \\\"lee\\\": 3, \\\"kiddding\\\": 1, \\\"eigenvectors\\\": 1, \\\"convert\\\": 1, \\\"tensors\\\": 1, \\\"create\\\": 3, \\\"bottme\\\": 1, \\\"jean\\\": 1, \\\"apple\\\": 2, \\\"gmail\\\": 1, \\\"reply\\\": 1, \\\"lab\\\": 1, \\\"part\\\": 2, \\\"ne\\\": 1, \\\"tracking\\\": 2, \\\"package\\\": 1, \\\"amazon\\\": 3, \\\"ml\\\": 1, \\\"green\\\": 1, \\\"cherish\\\": 1, \\\"potato\\\": 2, \\\"freinds\\\": 1, \\\"connect\\\": 2, \\\"reach\\\": 3, \\\"article\\\": 2, \\\"sorry\\\": 1, \\\"studywork\\\": 1, \\\"discouraged\\\": 1, \\\"stuckconfused\\\": 1, \\\"tensorflow\\\": 1, \\\"asdkfjasldgjsaldgkjsaldkgjasldjgasldkgjaslkdjgalskdjglaskjdglaskjdglaks\\\": 1, \\\"timer\\\": 1, \\\"ordering\\\": 2, \\\"grandparents\\\": 1, \\\"possible\\\": 1, \\\"goof\\\": 1, \\\"entertain\\\": 1, \\\"difficult\\\": 1, \\\"apart\\\": 1, \\\"legends\\\": 1, \\\"league\\\": 1, \\\"fa\\\": 1, \\\"listing\\\": 1, \\\"heavy\\\": 1, \\\"economics\\\": 4, \\\"international\\\": 3, \\\"way\\\": 1, \\\"due\\\": 1, \\\"deal\\\": 1, \\\"minutes\\\": 3, \\\"hopping\\\": 1, \\\"challenges\\\": 1, \\\"panelling\\\": 1, \\\"math\\\": 3, \\\"sense\\\": 2, \\\"deep\\\": 1, \\\"cleaning\\\": 1, \\\"play\\\": 5, \\\"forums\\\": 1, \\\"asd\\\": 1, \\\"fas\\\": 1, \\\"df\\\": 1, \\\"adsf\\\": 1, \\\"asdf\\\": 1, \\\"dfas\\\": 1, \\\"thing\\\": 2, \\\"instead\\\": 1, \\\"finished\\\": 2, \\\"30\\\": 1, \\\"chat\\\": 5, \\\"group\\\": 7, \\\"ass\\\": 1, \\\"event\\\": 3, \\\"bottom\\\": 1, \\\"jans\\\": 1, \\\"gas\\\": 1, \\\"station\\\": 1, \\\"computer\\\": 3, \\\"images\\\": 1, \\\"vision\\\": 2, \\\"save\\\": 2, \\\"catch\\\": 3, \\\"socialize\\\": 1, \\\"citations\\\": 1, \\\"anson\\\": 2, \\\"fashion\\\": 1, \\\"related\\\": 2, \\\"classwork\\\": 1, \\\"a2c\\\": 1, \\\"tutorials\\\": 1, \\\"knitting\\\": 1, \\\"orientaion\\\": 1, \\\"broken\\\": 1, \\\"fix\\\": 1, \\\"engage\\\": 1, \\\"selfhelp\\\": 1, \\\"guides\\\": 1, \\\"link\\\": 1, \\\"crash\\\": 1, \\\"nothing\\\": 1, \\\"whats\\\": 1, \\\"epically\\\": 1, \\\"cas\\\": 1, \\\"photo\\\": 1, \\\"reflection\\\": 1, \\\"sell\\\": 1, \\\"f\\\": 1, \\\"girl\\\": 1, \\\"clan\\\": 1, \\\"shield\\\": 1, \\\"runs\\\": 1, \\\"examine\\\": 1, \\\"pain\\\": 1, \\\"non\\\": 1, \\\"backgrounder\\\": 1, \\\"momentarily\\\": 1, \\\"irrelevant\\\": 1, \\\"useless\\\": 1, \\\"content\\\": 1, \\\"distract\\\": 4, \\\"hi\\\": 1, \\\"indulging\\\": 1, \\\"ongoing\\\": 1, \\\"burn\\\": 1, \\\"health\\\": 1, \\\"appointment\\\": 1, \\\"schedule\\\": 1, \\\"potentially\\\": 1, \\\"waterloo\\\": 1, \\\"may\\\": 2, \\\"vibe\\\": 1, \\\"dry\\\": 1, \\\"cleaner\\\": 1, \\\"workmarketingpromoting\\\": 1, \\\"pet\\\": 1, \\\"shibe\\\": 1, \\\"jus\\\": 1, \\\"wanna\\\": 1, \\\"fuck\\\": 2, \\\"network\\\": 1, \\\"announcing\\\": 1, \\\"magnets\\\": 1, \\\"also\\\": 3, \\\"trees\\\": 1, \\\"mountain\\\": 1, \\\"sword\\\": 1, \\\"yellow\\\": 1, \\\"lights\\\": 1, \\\"northern\\\": 1, \\\"swear\\\": 1, \\\"bro\\\": 1, \\\"smh\\\": 1, \\\"god\\\": 1, \\\"goddamn\\\": 1, \\\"tkaing\\\": 2, \\\"question\\\": 4, \\\"learning\\\": 4, \\\"install\\\": 2, \\\"karma\\\": 1, \\\"decompress\\\": 1, \\\"win\\\": 1, \\\"barbarian\\\": 1, \\\"tie\\\": 1, \\\"logo\\\": 1, \\\"venue\\\": 1, \\\"different\\\": 1, \\\"options\\\": 1, \\\"exploring\\\": 1, \\\"featyre\\\": 1, \\\"real\\\": 1, \\\"prepare\\\": 1, \\\"yes\\\": 1, \\\"less\\\": 1, \\\"playing\\\": 2, \\\"multitask\\\": 1, \\\"sent\\\": 1, \\\"text\\\": 4, \\\"pass\\\": 1, \\\"zoom\\\": 1, \\\"enter\\\": 1, \\\"harborrrrrrrrrrr\\\": 1, \\\"coworkers\\\": 1, \\\"crypto\\\": 1, \\\"avoid\\\": 2, \\\"reality\\\": 1, \\\"breakj\\\": 1, \\\"family\\\": 1, \\\"dinner\\\": 1, \\\"20xx\\\": 1, \\\"iso\\\": 1, \\\"melee\\\": 1, \\\"smoke\\\": 3, \\\"potatoes\\\": 2, \\\"big\\\": 2, \\\"surf\\\": 1, \\\"contest\\\": 1, \\\"clemente\\\": 1, \\\"channel\\\": 1, \\\"well\\\": 3, \\\"algoexpert\\\": 1, \\\"actually\\\": 1, \\\"articles\\\": 1, \\\"search\\\": 2, \\\"extensions\\\": 1, \\\"disabled\\\": 1, \\\"feed\\\": 3, \\\"spotify\\\": 1, \\\"vmun\\\": 1, \\\"sect\\\": 1, \\\"apply\\\": 1, \\\"jobs\\\": 1, \\\"store\\\": 1, \\\"copy\\\": 1, \\\"starting\\\": 1, \\\"lunch\\\": 1, \\\"questions\\\": 1, \\\"dohomework\\\": 1, \\\"rbeak\\\": 1, \\\"pizza\\\": 1, \\\"void\\\": 2, \\\"idea\\\": 1, \\\"whle\\\": 1, \\\"ready\\\": 1, \\\"back\\\": 3, \\\"shows\\\": 1, \\\"hop\\\": 2, \\\"call\\\": 3, \\\"cheese\\\": 1, \\\"visit\\\": 1, \\\"progress\\\": 1, \\\"applicatin\\\": 1, \\\"trevor\\\": 1, \\\"noah\\\": 1, \\\"de\\\": 1, \\\"stress\\\": 2, \\\"quickbreather\\\": 1, \\\"pos\\\": 1, \\\"sdksdkl\\\": 1, \\\"cmon\\\": 1, \\\"eata\\\": 1, \\\"died\\\": 1, \\\"dog\\\": 2, \\\"comfort\\\": 1, \\\"promise\\\": 1, \\\"actual\\\": 1, \\\"effects\\\": 1, \\\"side\\\": 1, \\\"today\\\": 1, \\\"mun\\\": 1, \\\"scratch\\\": 1, \\\"itch\\\": 1, \\\"feedback\\\": 1, \\\"provide\\\": 1, \\\"pen\\\": 1, \\\"stars\\\": 1, \\\"hello\\\": 1, \\\"earphones\\\": 1, \\\"wallet\\\": 1, \\\"mountains\\\": 1, \\\"problem\\\": 2, \\\"ease\\\": 1, \\\"admin\\\": 1, \\\"outreach\\\": 1, \\\"access\\\": 1, \\\"ow\\\": 1, \\\"aftereffects\\\": 1, \\\"expanding\\\": 1, \\\"perspectives\\\": 1, \\\"opinions\\\": 1, \\\"knowledge\\\": 1, \\\"makeup\\\": 1, \\\"tutorial\\\": 3, \\\"purposes\\\": 1, \\\"entertainment\\\": 3, \\\"youtubers\\\": 1, \\\"food\\\": 1, \\\"form\\\": 2, \\\"refresh\\\": 1, \\\"skill\\\": 2, \\\"informative\\\": 1, \\\"quiet\\\": 1, \\\"others\\\": 1, \\\"observe\\\": 1, \\\"grinding\\\": 2, \\\"idk\\\": 2, \\\"innn\\\": 1, \\\"areas\\\": 1, \\\"teach\\\": 1, \\\"netplay\\\": 1, \\\"local\\\": 1, \\\"charitiesorganizations\\\": 1, \\\"else\\\": 2, \\\"app\\\": 2, \\\"college\\\": 1, \\\"appssee\\\": 1, \\\"everyone\\\": 1, \\\"process\\\": 1, \\\"grocery\\\": 1, \\\"week\\\": 1, \\\"planning\\\": 1, \\\"tutorialhow\\\": 1, \\\"answer\\\": 1, \\\"certain\\\": 1, \\\"cannot\\\": 1, \\\"react\\\": 1, \\\"period\\\": 1, \\\"elle\\\": 1, \\\"bonny\\\": 1, \\\"mills\\\": 1, \\\"ig\\\": 1, \\\"attendees\\\": 1, \\\"attract\\\": 1, \\\"minie\\\": 1, \\\"love\\\": 1, \\\"cry\\\": 1, \\\"interact\\\": 1, \\\"socially\\\": 1, \\\"somewhat\\\": 1, \\\"semblance\\\": 1, \\\"maintaining\\\": 1, \\\"editing\\\": 2, \\\"coronavirus\\\": 1, \\\"spread\\\": 1, \\\"dimension\\\": 1, \\\"adobe\\\": 1, \\\"allen\\\": 1, \\\"lu\\\": 1, \\\"physics\\\": 1, \\\"stupid\\\": 1, \\\"mentor\\\": 1, \\\"guitar\\\": 1, \\\"opens\\\": 1, \\\"restaurant\\\": 1, \\\"notes\\\": 1, \\\"slippin\\\": 1, \\\"cookies\\\": 1, \\\"networking\\\": 1, \\\"advertisementwork\\\": 1, \\\"groups\\\": 1, \\\"miss\\\": 1, \\\"worlds\\\": 1, \\\"epic\\\": 1, \\\"cousin\\\": 1, \\\"stalk\\\": 1, \\\"profile\\\": 1, \\\"aaaaaaaaaaaaaaaaaaaaaaaaa\\\": 1, \\\"fwork\\\": 1, \\\"interseting\\\": 1, \\\"supplies\\\": 1, \\\"office\\\": 1, \\\"fast\\\": 1, \\\"discovering\\\": 1, \\\"ways\\\": 1, \\\"fooid\\\": 1, \\\"aftereffcts\\\": 1, \\\"somehting\\\": 1, \\\"comedy\\\": 1, \\\"homewokr\\\": 1, \\\"tag\\\": 1, \\\"aron\\\": 1, \\\"lit\\\": 1, \\\"analysis\\\": 1, \\\"assigment\\\": 1, \\\"regarding\\\": 1, \\\"campaigning\\\": 1, \\\"jkc\\\": 1, \\\"continuing\\\": 1, \\\"befkre\\\": 1, \\\"reading\\\": 1, \\\"mood\\\": 1, \\\"asdlkfjasd\\\": 1, \\\"respond\\\": 1, \\\"comment\\\": 1, \\\"cook\\\": 1, \\\"cow\\\": 1, \\\"lasts\\\": 1, \\\"one\\\": 1, \\\"gimme\\\": 1, \\\"ya\\\": 1, \\\"hey\\\": 1, \\\"skilll\\\": 1, \\\"choice\\\": 1, \\\"harbor\\\": 1, \\\"items\\\": 1, \\\"deliver\\\": 1, \\\"handed\\\": 1, \\\"numbers\\\": 1, \\\"fully\\\": 1, \\\"settling\\\": 1, \\\"knearest\\\": 1, \\\"neighbor\\\": 1, \\\"python\\\": 1, \\\"chrome\\\": 1, \\\"convenient\\\": 1, \\\"google\\\": 1, \\\"bookmark\\\": 1, \\\"great\\\": 1, \\\"atm\\\": 1, \\\"boring\\\": 1, \\\"pretty\\\": 1, \\\"teammates\\\": 1, \\\"past\\\": 1, \\\"years\\\": 1, \\\"bryan\\\": 1, \\\"beat\\\": 1, \\\"pharmacy\\\": 1, \\\"okay\\\": 2, \\\"enxt\\\": 1, \\\"year\\\": 1, \\\"instrument\\\": 1, \\\"relief\\\": 1, \\\"productivity\\\": 1, \\\"case\\\": 1, \\\"determines\\\": 1, \\\"understand\\\": 1, \\\"analytical\\\": 1, \\\"gather\\\": 1, \\\"data\\\": 1, \\\"follow\\\": 1, \\\"announcement\\\": 1, \\\"webtoons\\\": 1, \\\"soothing\\\": 1, \\\"concentrate\\\": 1, \\\"huge\\\": 1, \\\"purchase\\\": 1, \\\"berak\\\": 1, \\\"since\\\": 1, \\\"free\\\": 1, \\\"extra\\\": 1, \\\"asljdf\\\": 1, \\\"oqjefoqwidnkasdiof\\\": 1, \\\"awpeidfk\\\": 1, \\\"aoef\\\": 1, \\\"asfdoainds\\\": 1, \\\"aosdifk\\\": 1, \\\"trunks\\\": 1, \\\"elephants\\\": 1, \\\"furniture\\\": 1, \\\"assemble\\\": 1, \\\"hacktech\\\": 1, \\\"readng\\\": 1, \\\"clear\\\": 1, \\\"sink\\\": 1, \\\"mins\\\": 1}\", \"index_docs\": \"{\\\"2\\\": 186, \\\"6\\\": 46, \\\"106\\\": 4, \\\"130\\\": 3, \\\"66\\\": 5, \\\"9\\\": 41, \\\"13\\\": 25, \\\"29\\\": 13, \\\"10\\\": 40, \\\"3\\\": 123, \\\"16\\\": 23, \\\"200\\\": 2, \\\"131\\\": 3, \\\"83\\\": 5, \\\"47\\\": 8, \\\"22\\\": 19, \\\"37\\\": 10, \\\"5\\\": 74, \\\"318\\\": 1, \\\"4\\\": 76, \\\"320\\\": 1, \\\"319\\\": 1, \\\"201\\\": 2, \\\"107\\\": 4, \\\"84\\\": 5, \\\"132\\\": 3, \\\"133\\\": 3, \\\"85\\\": 5, \\\"108\\\": 3, \\\"86\\\": 5, \\\"19\\\": 21, \\\"11\\\": 28, \\\"67\\\": 6, \\\"321\\\": 1, \\\"322\\\": 1, \\\"134\\\": 3, \\\"38\\\": 10, \\\"203\\\": 2, \\\"323\\\": 1, \\\"17\\\": 23, \\\"202\\\": 2, \\\"324\\\": 1, \\\"204\\\": 2, \\\"325\\\": 1, \\\"20\\\": 21, \\\"135\\\": 3, \\\"326\\\": 1, \\\"23\\\": 19, \\\"327\\\": 1, \\\"205\\\": 2, \\\"136\\\": 3, \\\"137\\\": 3, \\\"207\\\": 2, \\\"7\\\": 43, \\\"12\\\": 28, \\\"206\\\": 2, \\\"27\\\": 14, \\\"18\\\": 22, \\\"328\\\": 1, \\\"330\\\": 1, \\\"331\\\": 1, \\\"329\\\": 1, \\\"208\\\": 2, \\\"332\\\": 1, \\\"109\\\": 4, \\\"333\\\": 1, \\\"334\\\": 1, \\\"87\\\": 5, \\\"335\\\": 1, \\\"39\\\": 10, \\\"48\\\": 8, \\\"336\\\": 1, \\\"31\\\": 12, \\\"138\\\": 3, \\\"209\\\": 2, \\\"14\\\": 24, \\\"337\\\": 1, \\\"210\\\": 2, \\\"57\\\": 7, \\\"90\\\": 5, \\\"88\\\": 5, \\\"338\\\": 1, \\\"89\\\": 5, \\\"339\\\": 1, \\\"24\\\": 17, \\\"28\\\": 14, \\\"15\\\": 24, \\\"211\\\": 2, \\\"212\\\": 2, \\\"213\\\": 2, \\\"139\\\": 3, \\\"340\\\": 1, \\\"68\\\": 6, \\\"341\\\": 1, \\\"44\\\": 9, \\\"342\\\": 1, \\\"140\\\": 3, \\\"141\\\": 3, \\\"142\\\": 3, \\\"214\\\": 2, \\\"91\\\": 5, \\\"215\\\": 2, \\\"343\\\": 1, \\\"143\\\": 3, \\\"49\\\": 8, \\\"58\\\": 7, \\\"344\\\": 1, \\\"216\\\": 2, \\\"345\\\": 1, \\\"346\\\": 1, \\\"8\\\": 42, \\\"21\\\": 21, \\\"347\\\": 1, \\\"349\\\": 1, \\\"40\\\": 10, \\\"348\\\": 1, \\\"217\\\": 2, \\\"144\\\": 3, \\\"50\\\": 8, \\\"350\\\": 1, \\\"59\\\": 7, \\\"69\\\": 6, \\\"351\\\": 1, \\\"30\\\": 13, \\\"353\\\": 1, \\\"352\\\": 1, \\\"145\\\": 3, \\\"25\\\": 16, \\\"218\\\": 2, \\\"219\\\": 2, \\\"355\\\": 1, \\\"354\\\": 1, \\\"146\\\": 3, \\\"356\\\": 1, \\\"51\\\": 7, \\\"70\\\": 6, \\\"357\\\": 1, \\\"72\\\": 6, \\\"147\\\": 3, \\\"71\\\": 6, \\\"148\\\": 3, \\\"359\\\": 1, \\\"358\\\": 1, \\\"92\\\": 5, \\\"149\\\": 3, \\\"26\\\": 15, \\\"360\\\": 1, \\\"220\\\": 2, \\\"361\\\": 1, \\\"73\\\": 6, \\\"110\\\": 4, \\\"52\\\": 8, \\\"363\\\": 1, \\\"362\\\": 1, \\\"364\\\": 1, \\\"374\\\": 1, \\\"373\\\": 1, \\\"369\\\": 1, \\\"367\\\": 1, \\\"377\\\": 1, \\\"372\\\": 1, \\\"376\\\": 1, \\\"371\\\": 1, \\\"368\\\": 1, \\\"370\\\": 1, \\\"375\\\": 1, \\\"365\\\": 1, \\\"366\\\": 1, \\\"53\\\": 8, \\\"150\\\": 3, \\\"111\\\": 4, \\\"221\\\": 2, \\\"151\\\": 3, \\\"378\\\": 1, \\\"75\\\": 6, \\\"74\\\": 6, \\\"379\\\": 1, \\\"381\\\": 1, \\\"152\\\": 3, \\\"380\\\": 1, \\\"382\\\": 1, \\\"112\\\": 4, \\\"383\\\": 1, \\\"45\\\": 9, \\\"153\\\": 2, \\\"384\\\": 1, \\\"385\\\": 1, \\\"386\\\": 1, \\\"387\\\": 1, \\\"222\\\": 2, \\\"388\\\": 1, \\\"32\\\": 12, \\\"93\\\": 5, \\\"94\\\": 5, \\\"33\\\": 11, \\\"154\\\": 3, \\\"223\\\": 2, \\\"95\\\": 5, \\\"390\\\": 1, \\\"389\\\": 1, \\\"224\\\": 2, \\\"113\\\": 4, \\\"225\\\": 2, \\\"41\\\": 10, \\\"76\\\": 6, \\\"77\\\": 6, \\\"96\\\": 5, \\\"34\\\": 11, \\\"155\\\": 3, \\\"227\\\": 2, \\\"226\\\": 2, \\\"391\\\": 1, \\\"156\\\": 3, \\\"157\\\": 2, \\\"392\\\": 1, \\\"393\\\": 1, \\\"60\\\": 6, \\\"61\\\": 7, \\\"228\\\": 2, \\\"54\\\": 8, \\\"395\\\": 1, \\\"229\\\": 2, \\\"394\\\": 1, \\\"231\\\": 2, \\\"230\\\": 2, \\\"158\\\": 3, \\\"232\\\": 2, \\\"97\\\": 5, \\\"396\\\": 1, \\\"233\\\": 2, \\\"397\\\": 1, \\\"398\\\": 1, \\\"400\\\": 1, \\\"399\\\": 1, \\\"98\\\": 5, \\\"159\\\": 3, \\\"401\\\": 1, \\\"234\\\": 2, \\\"114\\\": 4, \\\"402\\\": 1, \\\"403\\\": 1, \\\"404\\\": 1, \\\"407\\\": 1, \\\"115\\\": 3, \\\"406\\\": 1, \\\"235\\\": 2, \\\"405\\\": 1, \\\"46\\\": 9, \\\"408\\\": 1, \\\"236\\\": 2, \\\"409\\\": 1, \\\"62\\\": 7, \\\"411\\\": 1, \\\"410\\\": 1, \\\"63\\\": 7, \\\"237\\\": 2, \\\"412\\\": 1, \\\"239\\\": 2, \\\"238\\\": 2, \\\"116\\\": 4, \\\"413\\\": 1, \\\"160\\\": 3, \\\"240\\\": 2, \\\"161\\\": 3, \\\"118\\\": 4, \\\"117\\\": 4, \\\"241\\\": 2, \\\"415\\\": 1, \\\"414\\\": 1, \\\"417\\\": 1, \\\"416\\\": 1, \\\"242\\\": 2, \\\"418\\\": 1, \\\"419\\\": 1, \\\"420\\\": 1, \\\"243\\\": 2, \\\"421\\\": 1, \\\"55\\\": 8, \\\"244\\\": 2, \\\"422\\\": 1, \\\"423\\\": 1, \\\"424\\\": 1, \\\"425\\\": 1, \\\"426\\\": 1, \\\"427\\\": 1, \\\"245\\\": 2, \\\"246\\\": 2, \\\"428\\\": 1, \\\"247\\\": 2, \\\"429\\\": 1, \\\"430\\\": 1, \\\"431\\\": 1, \\\"248\\\": 2, \\\"432\\\": 1, \\\"433\\\": 1, \\\"119\\\": 4, \\\"78\\\": 6, \\\"434\\\": 1, \\\"249\\\": 2, \\\"163\\\": 3, \\\"162\\\": 3, \\\"435\\\": 1, \\\"42\\\": 9, \\\"436\\\": 1, \\\"438\\\": 1, \\\"250\\\": 2, \\\"437\\\": 1, \\\"120\\\": 4, \\\"439\\\": 1, \\\"121\\\": 4, \\\"440\\\": 1, \\\"164\\\": 3, \\\"441\\\": 1, \\\"122\\\": 4, \\\"442\\\": 1, \\\"99\\\": 5, \\\"444\\\": 1, \\\"443\\\": 1, \\\"64\\\": 7, \\\"100\\\": 5, \\\"101\\\": 5, \\\"251\\\": 2, \\\"446\\\": 1, \\\"79\\\": 6, \\\"252\\\": 2, \\\"445\\\": 1, \\\"165\\\": 3, \\\"449\\\": 1, \\\"166\\\": 3, \\\"447\\\": 1, \\\"448\\\": 1, \\\"56\\\": 8, \\\"450\\\": 1, \\\"451\\\": 1, \\\"452\\\": 1, \\\"453\\\": 1, \\\"454\\\": 1, \\\"123\\\": 4, \\\"455\\\": 1, \\\"458\\\": 1, \\\"457\\\": 1, \\\"456\\\": 1, \\\"167\\\": 3, \\\"253\\\": 2, \\\"168\\\": 3, \\\"35\\\": 11, \\\"459\\\": 1, \\\"460\\\": 1, \\\"461\\\": 1, \\\"80\\\": 6, \\\"463\\\": 1, \\\"464\\\": 1, \\\"462\\\": 1, \\\"254\\\": 2, \\\"169\\\": 3, \\\"255\\\": 2, \\\"102\\\": 5, \\\"465\\\": 1, \\\"256\\\": 2, \\\"466\\\": 1, \\\"467\\\": 1, \\\"468\\\": 1, \\\"469\\\": 1, \\\"470\\\": 1, \\\"471\\\": 1, \\\"472\\\": 1, \\\"257\\\": 2, \\\"473\\\": 1, \\\"170\\\": 3, \\\"258\\\": 2, \\\"171\\\": 3, \\\"474\\\": 1, \\\"81\\\": 6, \\\"259\\\": 2, \\\"476\\\": 1, \\\"475\\\": 1, \\\"477\\\": 1, \\\"103\\\": 5, \\\"478\\\": 1, \\\"482\\\": 1, \\\"260\\\": 2, \\\"479\\\": 1, \\\"480\\\": 1, \\\"483\\\": 1, \\\"481\\\": 1, \\\"484\\\": 1, \\\"485\\\": 1, \\\"486\\\": 1, \\\"261\\\": 2, \\\"488\\\": 1, \\\"487\\\": 1, \\\"262\\\": 2, \\\"489\\\": 1, \\\"490\\\": 1, \\\"491\\\": 1, \\\"43\\\": 10, \\\"263\\\": 2, \\\"264\\\": 2, \\\"494\\\": 1, \\\"492\\\": 1, \\\"493\\\": 1, \\\"172\\\": 3, \\\"124\\\": 4, \\\"495\\\": 1, \\\"173\\\": 3, \\\"496\\\": 1, \\\"266\\\": 2, \\\"265\\\": 2, \\\"497\\\": 1, \\\"498\\\": 1, \\\"267\\\": 2, \\\"268\\\": 2, \\\"499\\\": 1, \\\"174\\\": 3, \\\"500\\\": 1, \\\"269\\\": 2, \\\"502\\\": 1, \\\"501\\\": 1, \\\"175\\\": 3, \\\"270\\\": 2, \\\"176\\\": 1, \\\"503\\\": 1, \\\"504\\\": 1, \\\"505\\\": 1, \\\"506\\\": 1, \\\"507\\\": 1, \\\"508\\\": 1, \\\"177\\\": 3, \\\"271\\\": 2, \\\"509\\\": 1, \\\"510\\\": 1, \\\"511\\\": 1, \\\"512\\\": 1, \\\"178\\\": 3, \\\"513\\\": 1, \\\"514\\\": 1, \\\"515\\\": 1, \\\"516\\\": 1, \\\"517\\\": 1, \\\"518\\\": 1, \\\"520\\\": 1, \\\"519\\\": 1, \\\"521\\\": 1, \\\"522\\\": 1, \\\"523\\\": 1, \\\"36\\\": 11, \\\"272\\\": 2, \\\"524\\\": 1, \\\"525\\\": 1, \\\"526\\\": 1, \\\"527\\\": 1, \\\"528\\\": 1, \\\"529\\\": 1, \\\"273\\\": 2, \\\"530\\\": 1, \\\"531\\\": 1, \\\"533\\\": 1, \\\"532\\\": 1, \\\"274\\\": 2, \\\"179\\\": 2, \\\"535\\\": 1, \\\"82\\\": 6, \\\"534\\\": 1, \\\"275\\\": 2, \\\"180\\\": 3, \\\"181\\\": 3, \\\"536\\\": 1, \\\"539\\\": 1, \\\"537\\\": 1, \\\"538\\\": 1, \\\"182\\\": 3, \\\"540\\\": 1, \\\"541\\\": 1, \\\"276\\\": 2, \\\"542\\\": 1, \\\"543\\\": 1, \\\"544\\\": 1, \\\"277\\\": 2, \\\"545\\\": 1, \\\"278\\\": 2, \\\"546\\\": 1, \\\"183\\\": 3, \\\"547\\\": 1, \\\"549\\\": 1, \\\"548\\\": 1, \\\"279\\\": 2, \\\"550\\\": 1, \\\"280\\\": 2, \\\"184\\\": 3, \\\"281\\\": 2, \\\"551\\\": 1, \\\"552\\\": 1, \\\"554\\\": 1, \\\"553\\\": 1, \\\"555\\\": 1, \\\"556\\\": 1, \\\"557\\\": 1, \\\"282\\\": 2, \\\"558\\\": 1, \\\"560\\\": 1, \\\"559\\\": 1, \\\"561\\\": 1, \\\"563\\\": 1, \\\"562\\\": 1, \\\"565\\\": 1, \\\"564\\\": 1, \\\"566\\\": 1, \\\"568\\\": 1, \\\"567\\\": 1, \\\"125\\\": 4, \\\"185\\\": 3, \\\"569\\\": 1, \\\"571\\\": 1, \\\"570\\\": 1, \\\"186\\\": 3, \\\"572\\\": 1, \\\"573\\\": 1, \\\"574\\\": 1, \\\"187\\\": 3, \\\"283\\\": 2, \\\"575\\\": 1, \\\"576\\\": 1, \\\"104\\\": 5, \\\"577\\\": 1, \\\"578\\\": 1, \\\"579\\\": 1, \\\"581\\\": 1, \\\"285\\\": 1, \\\"284\\\": 1, \\\"580\\\": 1, \\\"286\\\": 2, \\\"582\\\": 1, \\\"287\\\": 2, \\\"583\\\": 1, \\\"105\\\": 5, \\\"65\\\": 7, \\\"584\\\": 1, \\\"188\\\": 3, \\\"585\\\": 1, \\\"586\\\": 1, \\\"587\\\": 1, \\\"588\\\": 1, \\\"189\\\": 3, \\\"589\\\": 1, \\\"289\\\": 2, \\\"288\\\": 2, \\\"190\\\": 3, \\\"590\\\": 1, \\\"591\\\": 1, \\\"290\\\": 2, \\\"592\\\": 1, \\\"291\\\": 2, \\\"594\\\": 1, \\\"593\\\": 1, \\\"595\\\": 1, \\\"596\\\": 1, \\\"597\\\": 1, \\\"599\\\": 1, \\\"598\\\": 1, \\\"600\\\": 1, \\\"601\\\": 1, \\\"602\\\": 1, \\\"603\\\": 1, \\\"604\\\": 1, \\\"605\\\": 1, \\\"606\\\": 1, \\\"607\\\": 1, \\\"609\\\": 1, \\\"608\\\": 1, \\\"610\\\": 1, \\\"611\\\": 1, \\\"612\\\": 1, \\\"614\\\": 1, \\\"616\\\": 1, \\\"613\\\": 1, \\\"615\\\": 1, \\\"617\\\": 1, \\\"620\\\": 1, \\\"623\\\": 1, \\\"621\\\": 1, \\\"292\\\": 1, \\\"625\\\": 1, \\\"622\\\": 1, \\\"626\\\": 1, \\\"126\\\": 4, \\\"618\\\": 1, \\\"624\\\": 1, \\\"619\\\": 1, \\\"627\\\": 1, \\\"628\\\": 1, \\\"630\\\": 1, \\\"629\\\": 1, \\\"631\\\": 1, \\\"632\\\": 1, \\\"293\\\": 2, \\\"633\\\": 1, \\\"634\\\": 1, \\\"635\\\": 1, \\\"636\\\": 1, \\\"637\\\": 1, \\\"638\\\": 1, \\\"639\\\": 1, \\\"640\\\": 1, \\\"294\\\": 2, \\\"641\\\": 1, \\\"642\\\": 1, \\\"647\\\": 1, \\\"191\\\": 3, \\\"644\\\": 1, \\\"643\\\": 1, \\\"649\\\": 1, \\\"648\\\": 1, \\\"646\\\": 1, \\\"645\\\": 1, \\\"651\\\": 1, \\\"650\\\": 1, \\\"654\\\": 1, \\\"652\\\": 1, \\\"653\\\": 1, \\\"295\\\": 2, \\\"127\\\": 4, \\\"128\\\": 4, \\\"296\\\": 2, \\\"655\\\": 1, \\\"656\\\": 1, \\\"657\\\": 1, \\\"658\\\": 1, \\\"297\\\": 1, \\\"659\\\": 1, \\\"662\\\": 1, \\\"661\\\": 1, \\\"663\\\": 1, \\\"660\\\": 1, \\\"664\\\": 1, \\\"665\\\": 1, \\\"666\\\": 1, \\\"667\\\": 1, \\\"668\\\": 1, \\\"298\\\": 2, \\\"669\\\": 1, \\\"670\\\": 1, \\\"129\\\": 4, \\\"672\\\": 1, \\\"671\\\": 1, \\\"673\\\": 1, \\\"674\\\": 1, \\\"675\\\": 1, \\\"676\\\": 1, \\\"299\\\": 2, \\\"677\\\": 1, \\\"678\\\": 1, \\\"679\\\": 1, \\\"680\\\": 1, \\\"681\\\": 1, \\\"682\\\": 1, \\\"683\\\": 1, \\\"192\\\": 3, \\\"301\\\": 2, \\\"300\\\": 2, \\\"684\\\": 1, \\\"687\\\": 1, \\\"685\\\": 1, \\\"688\\\": 1, \\\"193\\\": 3, \\\"686\\\": 1, \\\"689\\\": 1, \\\"690\\\": 1, \\\"302\\\": 2, \\\"691\\\": 1, \\\"692\\\": 1, \\\"194\\\": 3, \\\"693\\\": 1, \\\"694\\\": 1, \\\"695\\\": 1, \\\"696\\\": 1, \\\"697\\\": 1, \\\"699\\\": 1, \\\"698\\\": 1, \\\"700\\\": 1, \\\"701\\\": 1, \\\"702\\\": 1, \\\"703\\\": 1, \\\"704\\\": 1, \\\"705\\\": 1, \\\"303\\\": 2, \\\"706\\\": 1, \\\"707\\\": 1, \\\"708\\\": 1, \\\"195\\\": 3, \\\"709\\\": 1, \\\"304\\\": 2, \\\"196\\\": 3, \\\"710\\\": 1, \\\"711\\\": 1, \\\"712\\\": 1, \\\"713\\\": 1, \\\"714\\\": 1, \\\"715\\\": 1, \\\"716\\\": 1, \\\"305\\\": 2, \\\"717\\\": 1, \\\"718\\\": 1, \\\"719\\\": 1, \\\"720\\\": 1, \\\"721\\\": 1, \\\"723\\\": 1, \\\"306\\\": 2, \\\"722\\\": 1, \\\"725\\\": 1, \\\"724\\\": 1, \\\"727\\\": 1, \\\"726\\\": 1, \\\"728\\\": 1, \\\"729\\\": 1, \\\"730\\\": 1, \\\"731\\\": 1, \\\"733\\\": 1, \\\"732\\\": 1, \\\"737\\\": 1, \\\"736\\\": 1, \\\"734\\\": 1, \\\"739\\\": 1, \\\"738\\\": 1, \\\"735\\\": 1, \\\"307\\\": 2, \\\"740\\\": 1, \\\"742\\\": 1, \\\"743\\\": 1, \\\"741\\\": 1, \\\"744\\\": 1, \\\"745\\\": 1, \\\"746\\\": 1, \\\"749\\\": 1, \\\"748\\\": 1, \\\"747\\\": 1, \\\"750\\\": 1, \\\"197\\\": 3, \\\"751\\\": 1, \\\"198\\\": 3, \\\"752\\\": 1, \\\"753\\\": 1, \\\"308\\\": 2, \\\"754\\\": 1, \\\"309\\\": 2, \\\"755\\\": 1, \\\"756\\\": 1, \\\"758\\\": 1, \\\"757\\\": 1, \\\"310\\\": 2, \\\"311\\\": 2, \\\"759\\\": 1, \\\"761\\\": 1, \\\"760\\\": 1, \\\"762\\\": 1, \\\"763\\\": 1, \\\"764\\\": 1, \\\"313\\\": 2, \\\"314\\\": 2, \\\"312\\\": 1, \\\"765\\\": 1, \\\"766\\\": 1, \\\"767\\\": 1, \\\"769\\\": 1, \\\"770\\\": 1, \\\"768\\\": 1, \\\"771\\\": 1, \\\"772\\\": 1, \\\"773\\\": 1, \\\"774\\\": 1, \\\"775\\\": 1, \\\"776\\\": 1, \\\"778\\\": 1, \\\"777\\\": 1, \\\"779\\\": 1, \\\"780\\\": 1, \\\"784\\\": 1, \\\"783\\\": 1, \\\"782\\\": 1, \\\"781\\\": 1, \\\"785\\\": 1, \\\"786\\\": 1, \\\"788\\\": 1, \\\"787\\\": 1, \\\"790\\\": 1, \\\"789\\\": 1, \\\"315\\\": 2, \\\"792\\\": 1, \\\"791\\\": 1, \\\"794\\\": 1, \\\"793\\\": 1, \\\"795\\\": 1, \\\"796\\\": 1, \\\"797\\\": 1, \\\"798\\\": 1, \\\"799\\\": 1, \\\"800\\\": 1, \\\"802\\\": 1, \\\"801\\\": 1, \\\"803\\\": 1, \\\"804\\\": 1, \\\"805\\\": 1, \\\"806\\\": 1, \\\"807\\\": 1, \\\"316\\\": 1, \\\"808\\\": 1, \\\"810\\\": 1, \\\"809\\\": 1, \\\"811\\\": 1, \\\"812\\\": 1, \\\"813\\\": 1, \\\"814\\\": 1, \\\"815\\\": 1, \\\"816\\\": 1, \\\"818\\\": 1, \\\"817\\\": 1, \\\"819\\\": 1, \\\"820\\\": 1, \\\"821\\\": 1, \\\"822\\\": 1, \\\"824\\\": 1, \\\"823\\\": 1, \\\"825\\\": 1, \\\"826\\\": 1, \\\"827\\\": 1, \\\"828\\\": 1, \\\"829\\\": 1, \\\"830\\\": 1, \\\"832\\\": 1, \\\"831\\\": 1, \\\"833\\\": 1, \\\"834\\\": 1, \\\"837\\\": 1, \\\"836\\\": 1, \\\"835\\\": 1, \\\"838\\\": 1, \\\"839\\\": 1, \\\"840\\\": 1, \\\"841\\\": 1, \\\"842\\\": 1, \\\"843\\\": 1, \\\"844\\\": 1, \\\"847\\\": 1, \\\"846\\\": 1, \\\"848\\\": 1, \\\"845\\\": 1, \\\"849\\\": 1, \\\"850\\\": 1, \\\"851\\\": 1, \\\"852\\\": 1, \\\"853\\\": 1, \\\"854\\\": 1, \\\"855\\\": 1, \\\"856\\\": 1, \\\"857\\\": 1, \\\"858\\\": 1, \\\"859\\\": 1, \\\"860\\\": 1, \\\"864\\\": 1, \\\"861\\\": 1, \\\"863\\\": 1, \\\"862\\\": 1, \\\"865\\\": 1, \\\"868\\\": 1, \\\"867\\\": 1, \\\"866\\\": 1, \\\"869\\\": 1, \\\"870\\\": 1, \\\"871\\\": 1, \\\"872\\\": 1, \\\"873\\\": 1, \\\"874\\\": 1, \\\"317\\\": 2, \\\"875\\\": 1, \\\"876\\\": 1, \\\"877\\\": 1, \\\"878\\\": 1, \\\"880\\\": 1, \\\"881\\\": 1, \\\"879\\\": 1, \\\"882\\\": 1, \\\"884\\\": 1, \\\"883\\\": 1, \\\"885\\\": 1, \\\"886\\\": 1, \\\"887\\\": 1, \\\"888\\\": 1, \\\"889\\\": 1, \\\"890\\\": 1, \\\"891\\\": 1, \\\"892\\\": 1, \\\"893\\\": 1, \\\"895\\\": 1, \\\"896\\\": 1, \\\"894\\\": 1, \\\"902\\\": 1, \\\"898\\\": 1, \\\"901\\\": 1, \\\"900\\\": 1, \\\"897\\\": 1, \\\"899\\\": 1, \\\"904\\\": 1, \\\"903\\\": 1, \\\"906\\\": 1, \\\"905\\\": 1, \\\"907\\\": 1, \\\"908\\\": 1, \\\"909\\\": 1, \\\"910\\\": 1, \\\"199\\\": 1}\", \"index_word\": \"{\\\"1\\\": \\\"\\\", \\\"2\\\": \\\"work\\\", \\\"3\\\": \\\"break\\\", \\\"4\\\": \\\"take\\\", \\\"5\\\": \\\"learn\\\", \\\"6\\\": \\\"trying\\\", \\\"7\\\": \\\"watch\\\", \\\"8\\\": \\\"check\\\", \\\"9\\\": \\\"something\\\", \\\"10\\\": \\\"taking\\\", \\\"11\\\": \\\"post\\\", \\\"12\\\": \\\"video\\\", \\\"13\\\": \\\"need\\\", \\\"14\\\": \\\"get\\\", \\\"15\\\": \\\"new\\\", \\\"16\\\": \\\"facebook\\\", \\\"17\\\": \\\"friend\\\", \\\"18\\\": \\\"friends\\\", \\\"19\\\": \\\"homework\\\", \\\"20\\\": \\\"quick\\\", \\\"21\\\": \\\"look\\\", \\\"22\\\": \\\"find\\\", \\\"23\\\": \\\"make\\\", \\\"24\\\": \\\"videos\\\", \\\"25\\\": \\\"not\\\", \\\"26\\\": \\\"time\\\", \\\"27\\\": \\\"talk\\\", \\\"28\\\": \\\"test\\\", \\\"29\\\": \\\"relax\\\", \\\"30\\\": \\\"research\\\", \\\"31\\\": \\\"club\\\", \\\"32\\\": \\\"message\\\", \\\"33\\\": \\\"youtube\\\", \\\"34\\\": \\\"study\\\", \\\"35\\\": \\\"music\\\", \\\"36\\\": \\\"want\\\", \\\"37\\\": \\\"things\\\", \\\"38\\\": \\\"know\\\", \\\"39\\\": \\\"see\\\", \\\"40\\\": \\\"working\\\", \\\"41\\\": \\\"project\\\", \\\"42\\\": \\\"watching\\\", \\\"43\\\": \\\"productive\\\", \\\"44\\\": \\\"listen\\\", \\\"45\\\": \\\"sdc\\\", \\\"46\\\": \\\"stuff\\\", \\\"47\\\": \\\"job\\\", \\\"48\\\": \\\"checking\\\", \\\"49\\\": \\\"let\\\", \\\"50\\\": \\\"going\\\", \\\"51\\\": \\\"c\\\", \\\"52\\\": \\\"reflect\\\", \\\"53\\\": \\\"marketing\\\", \\\"54\\\": \\\"studying\\\", \\\"55\\\": \\\"read\\\", \\\"56\\\": \\\"school\\\", \\\"57\\\": \\\"5\\\", \\\"58\\\": \\\"social\\\", \\\"59\\\": \\\"home\\\", \\\"60\\\": \\\"go\\\", \\\"61\\\": \\\"instagram\\\", \\\"62\\\": \\\"procrastinate\\\", \\\"63\\\": \\\"looking\\\", \\\"64\\\": \\\"course\\\", \\\"65\\\": \\\"group\\\", \\\"66\\\": \\\"think\\\", \\\"67\\\": \\\"like\\\", \\\"68\\\": \\\"browse\\\", \\\"69\\\": \\\"assignment\\\", \\\"70\\\": \\\"objective\\\", \\\"71\\\": \\\"show\\\", \\\"72\\\": \\\"song\\\", \\\"73\\\": \\\"testing\\\", \\\"74\\\": \\\"getting\\\", \\\"75\\\": \\\"done\\\", \\\"76\\\": \\\"help\\\", \\\"77\\\": \\\"jacky\\\", \\\"78\\\": \\\"better\\\", \\\"79\\\": \\\"reddit\\\", \\\"80\\\": \\\"ask\\\", \\\"81\\\": \\\"memes\\\", \\\"82\\\": \\\"focus\\\", \\\"83\\\": \\\"team\\\", \\\"84\\\": \\\"bit\\\", \\\"85\\\": \\\"brain\\\", \\\"86\\\": \\\"use\\\", \\\"87\\\": \\\"important\\\", \\\"88\\\": \\\"short\\\", \\\"89\\\": \\\"minute\\\", \\\"90\\\": \\\"mind\\\", \\\"91\\\": \\\"waste\\\", \\\"92\\\": \\\"news\\\", \\\"93\\\": \\\"send\\\", \\\"94\\\": \\\"code\\\", \\\"95\\\": \\\"class\\\", \\\"96\\\": \\\"feature\\\", \\\"97\\\": \\\"cat\\\", \\\"98\\\": \\\"buy\\\", \\\"99\\\": \\\"messages\\\", \\\"100\\\": \\\"eat\\\", \\\"101\\\": \\\"large\\\", \\\"102\\\": \\\"people\\\", \\\"103\\\": \\\"updates\\\", \\\"104\\\": \\\"play\\\", \\\"105\\\": \\\"chat\\\", \\\"106\\\": \\\"funny\\\", \\\"107\\\": \\\"little\\\", \\\"108\\\": \\\"10\\\", \\\"109\\\": \\\"tell\\\", \\\"110\\\": \\\"works\\\", \\\"111\\\": \\\"bored\\\", \\\"112\\\": \\\"really\\\", \\\"113\\\": \\\"contact\\\", \\\"114\\\": \\\"online\\\", \\\"115\\\": \\\"would\\\", \\\"116\\\": \\\"fun\\\", \\\"117\\\": \\\"sure\\\", \\\"118\\\": \\\"ok\\\", \\\"119\\\": \\\"person\\\", \\\"120\\\": \\\"chill\\\", \\\"121\\\": \\\"page\\\", \\\"122\\\": \\\"finish\\\", \\\"123\\\": \\\"procrastination\\\", \\\"124\\\": \\\"complete\\\", \\\"125\\\": \\\"economics\\\", \\\"126\\\": \\\"distract\\\", \\\"127\\\": \\\"question\\\", \\\"128\\\": \\\"learning\\\", \\\"129\\\": \\\"text\\\", \\\"130\\\": \\\"give\\\", \\\"131\\\": \\\"add\\\", \\\"132\\\": \\\"scroll\\\", \\\"133\\\": \\\"min\\\", \\\"134\\\": \\\"recent\\\", \\\"135\\\": \\\"using\\\", \\\"136\\\": \\\"calculus\\\", \\\"137\\\": \\\"program\\\", \\\"138\\\": \\\"start\\\", \\\"139\\\": \\\"website\\\", \\\"140\\\": \\\"set\\\", \\\"141\\\": \\\"chemistry\\\", \\\"142\\\": \\\"mental\\\", \\\"143\\\": \\\"science\\\", \\\"144\\\": \\\"hw\\\", \\\"145\\\": \\\"world\\\", \\\"146\\\": \\\"programming\\\", \\\"147\\\": \\\"playlist\\\", \\\"148\\\": \\\"figure\\\", \\\"149\\\": \\\"day\\\", \\\"150\\\": \\\"latest\\\", \\\"151\\\": \\\"essay\\\", \\\"152\\\": \\\"much\\\", \\\"153\\\": \\\"documentary\\\", \\\"154\\\": \\\"educational\\\", \\\"155\\\": \\\"motivation\\\", \\\"156\\\": \\\"procrastinating\\\", \\\"157\\\": \\\"subreddit\\\", \\\"158\\\": \\\"writing\\\", \\\"159\\\": \\\"covid\\\", \\\"160\\\": \\\"housing\\\", \\\"161\\\": \\\"twitter\\\", \\\"162\\\": \\\"emilia\\\", \\\"163\\\": \\\"satella\\\", \\\"164\\\": \\\"gotta\\\", \\\"165\\\": \\\"battle\\\", \\\"166\\\": \\\"site\\\", \\\"167\\\": \\\"media\\\", \\\"168\\\": \\\"put\\\", \\\"169\\\": \\\"lofi\\\", \\\"170\\\": \\\"someone\\\", \\\"171\\\": \\\"rest\\\", \\\"172\\\": \\\"next\\\", \\\"173\\\": \\\"econ\\\", \\\"174\\\": \\\"david\\\", \\\"175\\\": \\\"please\\\", \\\"176\\\": \\\"ii\\\", \\\"177\\\": \\\"medication\\\", \\\"178\\\": \\\"photos\\\", \\\"179\\\": \\\"stop\\\", \\\"180\\\": \\\"jusung\\\", \\\"181\\\": \\\"lee\\\", \\\"182\\\": \\\"create\\\", \\\"183\\\": \\\"amazon\\\", \\\"184\\\": \\\"reach\\\", \\\"185\\\": \\\"international\\\", \\\"186\\\": \\\"minutes\\\", \\\"187\\\": \\\"math\\\", \\\"188\\\": \\\"event\\\", \\\"189\\\": \\\"computer\\\", \\\"190\\\": \\\"catch\\\", \\\"191\\\": \\\"also\\\", \\\"192\\\": \\\"smoke\\\", \\\"193\\\": \\\"well\\\", \\\"194\\\": \\\"feed\\\", \\\"195\\\": \\\"back\\\", \\\"196\\\": \\\"call\\\", \\\"197\\\": \\\"tutorial\\\", \\\"198\\\": \\\"entertainment\\\", \\\"199\\\": \\\"mins\\\", \\\"200\\\": \\\"members\\\", \\\"201\\\": \\\"mindlessly\\\", \\\"202\\\": \\\"happy\\\", \\\"203\\\": \\\"birthday\\\", \\\"204\\\": \\\"house\\\", \\\"205\\\": \\\"business\\\", \\\"206\\\": \\\"khan\\\", \\\"207\\\": \\\"academy\\\", \\\"208\\\": \\\"tech\\\", \\\"209\\\": \\\"browsing\\\", \\\"210\\\": \\\"bofuri\\\", \\\"211\\\": \\\"function\\\", \\\"212\\\": \\\"deserve\\\", \\\"213\\\": \\\"cool\\\", \\\"214\\\": \\\"reasons\\\", \\\"215\\\": \\\"right\\\", \\\"216\\\": \\\"care\\\", \\\"217\\\": \\\"given\\\", \\\"218\\\": \\\"conduct\\\", \\\"219\\\": \\\"slack\\\", \\\"220\\\": \\\"assignments\\\", \\\"221\\\": \\\"tok\\\", \\\"222\\\": \\\"hentai\\\", \\\"223\\\": \\\"update\\\", \\\"224\\\": \\\"lol\\\", \\\"225\\\": \\\"shit\\\", \\\"226\\\": \\\"lack\\\", \\\"227\\\": \\\"grind\\\", \\\"228\\\": \\\"messenger\\\", \\\"229\\\": \\\"list\\\", \\\"230\\\": \\\"written\\\", \\\"231\\\": \\\"task\\\", \\\"232\\\": \\\"pictures\\\", \\\"233\\\": \\\"netflix\\\", \\\"234\\\": \\\"prevent\\\", \\\"235\\\": \\\"interesting\\\", \\\"236\\\": \\\"unwindrelax\\\", \\\"237\\\": \\\"hours\\\", \\\"238\\\": \\\"episode\\\", \\\"239\\\": \\\"snl\\\", \\\"240\\\": \\\"finding\\\", \\\"241\\\": \\\"obama\\\", \\\"242\\\": \\\"keep\\\", \\\"243\\\": \\\"anymore\\\", \\\"244\\\": \\\"ellen\\\", \\\"245\\\": \\\"extension\\\", \\\"246\\\": \\\"relaxing\\\", \\\"247\\\": \\\"subject\\\", \\\"248\\\": \\\"luka\\\", \\\"249\\\": \\\"called\\\", \\\"250\\\": \\\"calculator\\\", \\\"251\\\": \\\"chicken\\\", \\\"252\\\": \\\"destress\\\", \\\"253\\\": \\\"background\\\", \\\"254\\\": \\\"beats\\\", \\\"255\\\": \\\"wall\\\", \\\"256\\\": \\\"quest\\\", \\\"257\\\": \\\"wrok\\\", \\\"258\\\": \\\"name\\\", \\\"259\\\": \\\"yeet\\\", \\\"260\\\": \\\"tryna\\\", \\\"261\\\": \\\"view\\\", \\\"262\\\": \\\"shopping\\\", \\\"263\\\": \\\"sick\\\", \\\"264\\\": \\\"gen\\\", \\\"265\\\": \\\"celebrate\\\", \\\"266\\\": \\\"handing\\\", \\\"267\\\": \\\"donate\\\", \\\"268\\\": \\\"fund\\\", \\\"269\\\": \\\"tasks\\\", \\\"270\\\": \\\"listening\\\", \\\"271\\\": \\\"buying\\\", \\\"272\\\": \\\"trends\\\", \\\"273\\\": \\\"good\\\", \\\"274\\\": \\\"2\\\", \\\"275\\\": \\\"u\\\", \\\"276\\\": \\\"apple\\\", \\\"277\\\": \\\"part\\\", \\\"278\\\": \\\"tracking\\\", \\\"279\\\": \\\"potato\\\", \\\"280\\\": \\\"connect\\\", \\\"281\\\": \\\"article\\\", \\\"282\\\": \\\"ordering\\\", \\\"283\\\": \\\"sense\\\", \\\"284\\\": \\\"asdf\\\", \\\"285\\\": \\\"adsf\\\", \\\"286\\\": \\\"thing\\\", \\\"287\\\": \\\"finished\\\", \\\"288\\\": \\\"save\\\", \\\"289\\\": \\\"vision\\\", \\\"290\\\": \\\"anson\\\", \\\"291\\\": \\\"related\\\", \\\"292\\\": \\\"momentarily\\\", \\\"293\\\": \\\"may\\\", \\\"294\\\": \\\"fuck\\\", \\\"295\\\": \\\"tkaing\\\", \\\"296\\\": \\\"install\\\", \\\"297\\\": \\\"tie\\\", \\\"298\\\": \\\"playing\\\", \\\"299\\\": \\\"avoid\\\", \\\"300\\\": \\\"big\\\", \\\"301\\\": \\\"potatoes\\\", \\\"302\\\": \\\"search\\\", \\\"303\\\": \\\"void\\\", \\\"304\\\": \\\"hop\\\", \\\"305\\\": \\\"stress\\\", \\\"306\\\": \\\"dog\\\", \\\"307\\\": \\\"problem\\\", \\\"308\\\": \\\"form\\\", \\\"309\\\": \\\"skill\\\", \\\"310\\\": \\\"grinding\\\", \\\"311\\\": \\\"idk\\\", \\\"312\\\": \\\"college\\\", \\\"313\\\": \\\"else\\\", \\\"314\\\": \\\"app\\\", \\\"315\\\": \\\"editing\\\", \\\"316\\\": \\\"groups\\\", \\\"317\\\": \\\"okay\\\", \\\"318\\\": \\\"guess\\\", \\\"319\\\": \\\"internationla\\\", \\\"320\\\": \\\"eocnomics\\\", \\\"321\\\": \\\"andrew\\\", \\\"322\\\": \\\"yang\\\", \\\"323\\\": \\\"wish\\\", \\\"324\\\": \\\"build\\\", \\\"325\\\": \\\"bank\\\", \\\"326\\\": \\\"parallelogram\\\", \\\"327\\\": \\\"none\\\", \\\"328\\\": \\\"bounces\\\", \\\"329\\\": \\\"binging\\\", \\\"330\\\": \\\"linus\\\", \\\"331\\\": \\\"tips\\\", \\\"332\\\": \\\"alison\\\", \\\"333\\\": \\\"misspelled\\\", \\\"334\\\": \\\"term\\\", \\\"335\\\": \\\"split\\\", \\\"336\\\": \\\"bill\\\", \\\"337\\\": \\\"updated\\\", \\\"338\\\": \\\"reset\\\", \\\"339\\\": \\\"distracting\\\", \\\"340\\\": \\\"designs\\\", \\\"341\\\": \\\"ted\\\", \\\"342\\\": \\\"nets\\\", \\\"343\\\": \\\"flutter\\\", \\\"344\\\": \\\"finances\\\", \\\"345\\\": \\\"graphic\\\", \\\"346\\\": \\\"engagement\\\", \\\"347\\\": \\\"tags\\\", \\\"348\\\": \\\"five\\\", \\\"349\\\": \\\"hour\\\", \\\"350\\\": \\\"sdlkjasd\\\", \\\"351\\\": \\\"details\\\", \\\"352\\\": \\\"meal\\\", \\\"353\\\": \\\"prep\\\", \\\"354\\\": \\\"ruin\\\", \\\"355\\\": \\\"grades\\\", \\\"356\\\": \\\"language\\\", \\\"357\\\": \\\"habit\\\", \\\"358\\\": \\\"change\\\", \\\"359\\\": \\\"lightbulb\\\", \\\"360\\\": \\\"problems\\\", \\\"361\\\": \\\"slides\\\", \\\"362\\\": \\\"whathw\\\", \\\"363\\\": \\\"tpwejofjwef\\\", \\\"364\\\": \\\"paint\\\", \\\"365\\\": \\\"sfksja\\\", \\\"366\\\": \\\"aslkd\\\", \\\"367\\\": \\\"jfasldk\\\", \\\"368\\\": \\\"jasdlk\\\", \\\"369\\\": \\\"jaflskdj\\\", \\\"370\\\": \\\"lskj\\\", \\\"371\\\": \\\"ewlk\\\", \\\"372\\\": \\\"jasli\\\", \\\"373\\\": \\\"fjoewij\\\", \\\"374\\\": \\\"askj\\\", \\\"375\\\": \\\"faiwoej\\\", \\\"376\\\": \\\"ajdf\\\", \\\"377\\\": \\\"kl\\\", \\\"378\\\": \\\"advertising\\\", \\\"379\\\": \\\"existentialism\\\", \\\"380\\\": \\\"deposit\\\", \\\"381\\\": \\\"left\\\", \\\"382\\\": \\\"still\\\", \\\"383\\\": \\\"groupcaht\\\", \\\"384\\\": \\\"connecting\\\", \\\"385\\\": \\\"disinterested\\\", \\\"386\\\": \\\"artof\\\", \\\"387\\\": \\\"war\\\", \\\"388\\\": \\\"kate\\\", \\\"389\\\": \\\"pay\\\", \\\"390\\\": \\\"attention\\\", \\\"391\\\": \\\"brief\\\", \\\"392\\\": \\\"pokemon\\\", \\\"393\\\": \\\"snapchat\\\", \\\"394\\\": \\\"collaborate\\\", \\\"395\\\": \\\"errands\\\", \\\"396\\\": \\\"breather\\\", \\\"397\\\": \\\"educate\\\", \\\"398\\\": \\\"scam\\\", \\\"399\\\": \\\"debate\\\", \\\"400\\\": \\\"trade\\\", \\\"401\\\": \\\"groceries\\\", \\\"402\\\": \\\"photoshop\\\", \\\"403\\\": \\\"fpr\\\", \\\"404\\\": \\\"bs\\\", \\\"405\\\": \\\"tired\\\", \\\"406\\\": \\\"rereading\\\", \\\"407\\\": \\\"topics\\\", \\\"408\\\": \\\"texting\\\", \\\"409\\\": \\\"exercise\\\", \\\"410\\\": \\\"calligraphy\\\", \\\"411\\\": \\\"samples\\\", \\\"412\\\": \\\"studied\\\", \\\"413\\\": \\\"drive\\\", \\\"414\\\": \\\"sasha\\\", \\\"415\\\": \\\"major\\\", \\\"416\\\": \\\"track\\\", \\\"417\\\": \\\"stocks\\\", \\\"418\\\": \\\"gander\\\", \\\"419\\\": \\\"information\\\", \\\"420\\\": \\\"tt\\\", \\\"421\\\": \\\"tweet\\\", \\\"422\\\": \\\"davids\\\", \\\"423\\\": \\\"vlog\\\", \\\"424\\\": \\\"pulling\\\", \\\"425\\\": \\\"random\\\", \\\"426\\\": \\\"sites\\\", \\\"427\\\": \\\"feel\\\", \\\"428\\\": \\\"enough\\\", \\\"429\\\": \\\"info\\\", \\\"430\\\": \\\"ona\\\", \\\"431\\\": \\\"politics\\\", \\\"432\\\": \\\"went\\\", \\\"433\\\": \\\"noo\\\", \\\"434\\\": \\\"become\\\", \\\"435\\\": \\\"say\\\", \\\"436\\\": \\\"kdramas\\\", \\\"437\\\": \\\"prices\\\", \\\"438\\\": \\\"graphing\\\", \\\"439\\\": \\\"transform\\\", \\\"440\\\": \\\"linkedin\\\", \\\"441\\\": \\\"started\\\", \\\"442\\\": \\\"responding\\\", \\\"443\\\": \\\"email\\\", \\\"444\\\": \\\"prof\\\", \\\"445\\\": \\\"worked\\\", \\\"446\\\": \\\"order\\\", \\\"447\\\": \\\"bask\\\", \\\"448\\\": \\\"positive\\\", \\\"449\\\": \\\"affirmation\\\", \\\"450\\\": \\\"fitness\\\", \\\"451\\\": \\\"nvm\\\", \\\"452\\\": \\\"innnnnnn\\\", \\\"453\\\": \\\"wastewfmaodwmdada\\\", \\\"454\\\": \\\"3\\\", \\\"455\\\": \\\"review\\\", \\\"456\\\": \\\"fuel\\\", \\\"457\\\": \\\"crippling\\\", \\\"458\\\": \\\"addiction\\\", \\\"459\\\": \\\"platform\\\", \\\"460\\\": \\\"ryan\\\", \\\"461\\\": \\\"twilio\\\", \\\"462\\\": \\\"focusing\\\", \\\"463\\\": \\\"emotional\\\", \\\"464\\\": \\\"wellbeing\\\", \\\"465\\\": \\\"final\\\", \\\"466\\\": \\\"leaves\\\", \\\"467\\\": \\\"campus\\\", \\\"468\\\": \\\"hack\\\", \\\"469\\\": \\\"north\\\", \\\"470\\\": \\\"voice\\\", \\\"471\\\": \\\"alexa\\\", \\\"472\\\": \\\"fail\\\", \\\"473\\\": \\\"nbanews\\\", \\\"474\\\": \\\"jubilee\\\", \\\"475\\\": \\\"yall\\\", \\\"476\\\": \\\"ever\\\", \\\"477\\\": \\\"freedom\\\", \\\"478\\\": \\\"dividend\\\", \\\"479\\\": \\\"reviews\\\", \\\"480\\\": \\\"every\\\", \\\"481\\\": \\\"spoon\\\", \\\"482\\\": \\\"known\\\", \\\"483\\\": \\\"man\\\", \\\"484\\\": \\\"sur\\\", \\\"485\\\": \\\"specific\\\", \\\"486\\\": \\\"subjects\\\", \\\"487\\\": \\\"messaging\\\", \\\"488\\\": \\\"happenned\\\", \\\"489\\\": \\\"chalkboard\\\", \\\"490\\\": \\\"calendar\\\", \\\"491\\\": \\\"ppl\\\", \\\"492\\\": \\\"model\\\", \\\"493\\\": \\\"might\\\", \\\"494\\\": \\\"useful\\\", \\\"495\\\": \\\"lawyer\\\", \\\"496\\\": \\\"paper\\\", \\\"497\\\": \\\"chinese\\\", \\\"498\\\": \\\"ads\\\", \\\"499\\\": \\\"quests\\\", \\\"500\\\": \\\"triyng\\\", \\\"501\\\": \\\"sir\\\", \\\"502\\\": \\\"acquire\\\", \\\"503\\\": \\\"poeple\\\", \\\"504\\\": \\\"memories\\\", \\\"505\\\": \\\"countertop\\\", \\\"506\\\": \\\"workout\\\", \\\"507\\\": \\\"plan\\\", \\\"508\\\": \\\"cute\\\", \\\"509\\\": \\\"resume\\\", \\\"510\\\": \\\"cs50\\\", \\\"511\\\": \\\"advertise\\\", \\\"512\\\": \\\"sorting\\\", \\\"513\\\": \\\"old\\\", \\\"514\\\": \\\"donations\\\", \\\"515\\\": \\\"connections\\\", \\\"516\\\": \\\"avideo\\\", \\\"517\\\": \\\"download\\\", \\\"518\\\": \\\"distracted\\\", \\\"519\\\": \\\"anything\\\", \\\"520\\\": \\\"pops\\\", \\\"521\\\": \\\"boredtired\\\", \\\"522\\\": \\\"hackathon\\\", \\\"523\\\": \\\"returns\\\", \\\"524\\\": \\\"scoping\\\", \\\"525\\\": \\\"asdfadfsadsfadsfa\\\", \\\"526\\\": \\\"quote\\\", \\\"527\\\": \\\"mean\\\", \\\"528\\\": \\\"notice\\\", \\\"529\\\": \\\"life\\\", \\\"530\\\": \\\"english\\\", \\\"531\\\": \\\"creating\\\", \\\"532\\\": \\\"inspo\\\", \\\"533\\\": \\\"decorating\\\", \\\"534\\\": \\\"suck\\\", \\\"535\\\": \\\"wasting\\\", \\\"536\\\": \\\"kiddding\\\", \\\"537\\\": \\\"convert\\\", \\\"538\\\": \\\"tensors\\\", \\\"539\\\": \\\"eigenvectors\\\", \\\"540\\\": \\\"bottme\\\", \\\"541\\\": \\\"jean\\\", \\\"542\\\": \\\"gmail\\\", \\\"543\\\": \\\"reply\\\", \\\"544\\\": \\\"lab\\\", \\\"545\\\": \\\"ne\\\", \\\"546\\\": \\\"package\\\", \\\"547\\\": \\\"ml\\\", \\\"548\\\": \\\"cherish\\\", \\\"549\\\": \\\"green\\\", \\\"550\\\": \\\"freinds\\\", \\\"551\\\": \\\"sorry\\\", \\\"552\\\": \\\"studywork\\\", \\\"553\\\": \\\"stuckconfused\\\", \\\"554\\\": \\\"discouraged\\\", \\\"555\\\": \\\"tensorflow\\\", \\\"556\\\": \\\"asdkfjasldgjsaldgkjsaldkgjasldjgasldkgjaslkdjgalskdjglaskjdglaskjdglaks\\\", \\\"557\\\": \\\"timer\\\", \\\"558\\\": \\\"grandparents\\\", \\\"559\\\": \\\"goof\\\", \\\"560\\\": \\\"possible\\\", \\\"561\\\": \\\"entertain\\\", \\\"562\\\": \\\"apart\\\", \\\"563\\\": \\\"difficult\\\", \\\"564\\\": \\\"league\\\", \\\"565\\\": \\\"legends\\\", \\\"566\\\": \\\"fa\\\", \\\"567\\\": \\\"heavy\\\", \\\"568\\\": \\\"listing\\\", \\\"569\\\": \\\"way\\\", \\\"570\\\": \\\"deal\\\", \\\"571\\\": \\\"due\\\", \\\"572\\\": \\\"hopping\\\", \\\"573\\\": \\\"challenges\\\", \\\"574\\\": \\\"panelling\\\", \\\"575\\\": \\\"deep\\\", \\\"576\\\": \\\"cleaning\\\", \\\"577\\\": \\\"forums\\\", \\\"578\\\": \\\"asd\\\", \\\"579\\\": \\\"fas\\\", \\\"580\\\": \\\"dfas\\\", \\\"581\\\": \\\"df\\\", \\\"582\\\": \\\"instead\\\", \\\"583\\\": \\\"30\\\", \\\"584\\\": \\\"ass\\\", \\\"585\\\": \\\"bottom\\\", \\\"586\\\": \\\"jans\\\", \\\"587\\\": \\\"gas\\\", \\\"588\\\": \\\"station\\\", \\\"589\\\": \\\"images\\\", \\\"590\\\": \\\"socialize\\\", \\\"591\\\": \\\"citations\\\", \\\"592\\\": \\\"fashion\\\", \\\"593\\\": \\\"a2c\\\", \\\"594\\\": \\\"classwork\\\", \\\"595\\\": \\\"tutorials\\\", \\\"596\\\": \\\"knitting\\\", \\\"597\\\": \\\"orientaion\\\", \\\"598\\\": \\\"fix\\\", \\\"599\\\": \\\"broken\\\", \\\"600\\\": \\\"engage\\\", \\\"601\\\": \\\"selfhelp\\\", \\\"602\\\": \\\"guides\\\", \\\"603\\\": \\\"link\\\", \\\"604\\\": \\\"crash\\\", \\\"605\\\": \\\"nothing\\\", \\\"606\\\": \\\"whats\\\", \\\"607\\\": \\\"epically\\\", \\\"608\\\": \\\"photo\\\", \\\"609\\\": \\\"cas\\\", \\\"610\\\": \\\"reflection\\\", \\\"611\\\": \\\"sell\\\", \\\"612\\\": \\\"f\\\", \\\"613\\\": \\\"shield\\\", \\\"614\\\": \\\"girl\\\", \\\"615\\\": \\\"runs\\\", \\\"616\\\": \\\"clan\\\", \\\"617\\\": \\\"examine\\\", \\\"618\\\": \\\"hi\\\", \\\"619\\\": \\\"ongoing\\\", \\\"620\\\": \\\"pain\\\", \\\"621\\\": \\\"backgrounder\\\", \\\"622\\\": \\\"useless\\\", \\\"623\\\": \\\"non\\\", \\\"624\\\": \\\"indulging\\\", \\\"625\\\": \\\"irrelevant\\\", \\\"626\\\": \\\"content\\\", \\\"627\\\": \\\"burn\\\", \\\"628\\\": \\\"health\\\", \\\"629\\\": \\\"schedule\\\", \\\"630\\\": \\\"appointment\\\", \\\"631\\\": \\\"potentially\\\", \\\"632\\\": \\\"waterloo\\\", \\\"633\\\": \\\"vibe\\\", \\\"634\\\": \\\"dry\\\", \\\"635\\\": \\\"cleaner\\\", \\\"636\\\": \\\"workmarketingpromoting\\\", \\\"637\\\": \\\"pet\\\", \\\"638\\\": \\\"shibe\\\", \\\"639\\\": \\\"jus\\\", \\\"640\\\": \\\"wanna\\\", \\\"641\\\": \\\"network\\\", \\\"642\\\": \\\"announcing\\\", \\\"643\\\": \\\"mountain\\\", \\\"644\\\": \\\"trees\\\", \\\"645\\\": \\\"northern\\\", \\\"646\\\": \\\"lights\\\", \\\"647\\\": \\\"magnets\\\", \\\"648\\\": \\\"yellow\\\", \\\"649\\\": \\\"sword\\\", \\\"650\\\": \\\"bro\\\", \\\"651\\\": \\\"swear\\\", \\\"652\\\": \\\"god\\\", \\\"653\\\": \\\"goddamn\\\", \\\"654\\\": \\\"smh\\\", \\\"655\\\": \\\"karma\\\", \\\"656\\\": \\\"decompress\\\", \\\"657\\\": \\\"win\\\", \\\"658\\\": \\\"barbarian\\\", \\\"659\\\": \\\"logo\\\", \\\"660\\\": \\\"exploring\\\", \\\"661\\\": \\\"different\\\", \\\"662\\\": \\\"venue\\\", \\\"663\\\": \\\"options\\\", \\\"664\\\": \\\"featyre\\\", \\\"665\\\": \\\"real\\\", \\\"666\\\": \\\"prepare\\\", \\\"667\\\": \\\"yes\\\", \\\"668\\\": \\\"less\\\", \\\"669\\\": \\\"multitask\\\", \\\"670\\\": \\\"sent\\\", \\\"671\\\": \\\"zoom\\\", \\\"672\\\": \\\"pass\\\", \\\"673\\\": \\\"enter\\\", \\\"674\\\": \\\"harborrrrrrrrrrr\\\", \\\"675\\\": \\\"coworkers\\\", \\\"676\\\": \\\"crypto\\\", \\\"677\\\": \\\"reality\\\", \\\"678\\\": \\\"breakj\\\", \\\"679\\\": \\\"family\\\", \\\"680\\\": \\\"dinner\\\", \\\"681\\\": \\\"20xx\\\", \\\"682\\\": \\\"iso\\\", \\\"683\\\": \\\"melee\\\", \\\"684\\\": \\\"surf\\\", \\\"685\\\": \\\"clemente\\\", \\\"686\\\": \\\"algoexpert\\\", \\\"687\\\": \\\"contest\\\", \\\"688\\\": \\\"channel\\\", \\\"689\\\": \\\"actually\\\", \\\"690\\\": \\\"articles\\\", \\\"691\\\": \\\"extensions\\\", \\\"692\\\": \\\"disabled\\\", \\\"693\\\": \\\"spotify\\\", \\\"694\\\": \\\"vmun\\\", \\\"695\\\": \\\"sect\\\", \\\"696\\\": \\\"apply\\\", \\\"697\\\": \\\"jobs\\\", \\\"698\\\": \\\"copy\\\", \\\"699\\\": \\\"store\\\", \\\"700\\\": \\\"starting\\\", \\\"701\\\": \\\"lunch\\\", \\\"702\\\": \\\"questions\\\", \\\"703\\\": \\\"dohomework\\\", \\\"704\\\": \\\"rbeak\\\", \\\"705\\\": \\\"pizza\\\", \\\"706\\\": \\\"idea\\\", \\\"707\\\": \\\"whle\\\", \\\"708\\\": \\\"ready\\\", \\\"709\\\": \\\"shows\\\", \\\"710\\\": \\\"cheese\\\", \\\"711\\\": \\\"visit\\\", \\\"712\\\": \\\"progress\\\", \\\"713\\\": \\\"applicatin\\\", \\\"714\\\": \\\"trevor\\\", \\\"715\\\": \\\"noah\\\", \\\"716\\\": \\\"de\\\", \\\"717\\\": \\\"quickbreather\\\", \\\"718\\\": \\\"pos\\\", \\\"719\\\": \\\"sdksdkl\\\", \\\"720\\\": \\\"cmon\\\", \\\"721\\\": \\\"eata\\\", \\\"722\\\": \\\"comfort\\\", \\\"723\\\": \\\"died\\\", \\\"724\\\": \\\"actual\\\", \\\"725\\\": \\\"promise\\\", \\\"726\\\": \\\"side\\\", \\\"727\\\": \\\"effects\\\", \\\"728\\\": \\\"today\\\", \\\"729\\\": \\\"mun\\\", \\\"730\\\": \\\"scratch\\\", \\\"731\\\": \\\"itch\\\", \\\"732\\\": \\\"provide\\\", \\\"733\\\": \\\"feedback\\\", \\\"734\\\": \\\"hello\\\", \\\"735\\\": \\\"mountains\\\", \\\"736\\\": \\\"stars\\\", \\\"737\\\": \\\"pen\\\", \\\"738\\\": \\\"wallet\\\", \\\"739\\\": \\\"earphones\\\", \\\"740\\\": \\\"ease\\\", \\\"741\\\": \\\"access\\\", \\\"742\\\": \\\"admin\\\", \\\"743\\\": \\\"outreach\\\", \\\"744\\\": \\\"ow\\\", \\\"745\\\": \\\"aftereffects\\\", \\\"746\\\": \\\"expanding\\\", \\\"747\\\": \\\"knowledge\\\", \\\"748\\\": \\\"opinions\\\", \\\"749\\\": \\\"perspectives\\\", \\\"750\\\": \\\"makeup\\\", \\\"751\\\": \\\"purposes\\\", \\\"752\\\": \\\"youtubers\\\", \\\"753\\\": \\\"food\\\", \\\"754\\\": \\\"refresh\\\", \\\"755\\\": \\\"informative\\\", \\\"756\\\": \\\"quiet\\\", \\\"757\\\": \\\"observe\\\", \\\"758\\\": \\\"others\\\", \\\"759\\\": \\\"innn\\\", \\\"760\\\": \\\"teach\\\", \\\"761\\\": \\\"areas\\\", \\\"762\\\": \\\"netplay\\\", \\\"763\\\": \\\"local\\\", \\\"764\\\": \\\"charitiesorganizations\\\", \\\"765\\\": \\\"appssee\\\", \\\"766\\\": \\\"everyone\\\", \\\"767\\\": \\\"process\\\", \\\"768\\\": \\\"planning\\\", \\\"769\\\": \\\"grocery\\\", \\\"770\\\": \\\"week\\\", \\\"771\\\": \\\"tutorialhow\\\", \\\"772\\\": \\\"answer\\\", \\\"773\\\": \\\"certain\\\", \\\"774\\\": \\\"cannot\\\", \\\"775\\\": \\\"react\\\", \\\"776\\\": \\\"period\\\", \\\"777\\\": \\\"bonny\\\", \\\"778\\\": \\\"elle\\\", \\\"779\\\": \\\"mills\\\", \\\"780\\\": \\\"ig\\\", \\\"781\\\": \\\"love\\\", \\\"782\\\": \\\"minie\\\", \\\"783\\\": \\\"attract\\\", \\\"784\\\": \\\"attendees\\\", \\\"785\\\": \\\"cry\\\", \\\"786\\\": \\\"interact\\\", \\\"787\\\": \\\"somewhat\\\", \\\"788\\\": \\\"socially\\\", \\\"789\\\": \\\"maintaining\\\", \\\"790\\\": \\\"semblance\\\", \\\"791\\\": \\\"spread\\\", \\\"792\\\": \\\"coronavirus\\\", \\\"793\\\": \\\"adobe\\\", \\\"794\\\": \\\"dimension\\\", \\\"795\\\": \\\"allen\\\", \\\"796\\\": \\\"lu\\\", \\\"797\\\": \\\"physics\\\", \\\"798\\\": \\\"stupid\\\", \\\"799\\\": \\\"mentor\\\", \\\"800\\\": \\\"guitar\\\", \\\"801\\\": \\\"restaurant\\\", \\\"802\\\": \\\"opens\\\", \\\"803\\\": \\\"notes\\\", \\\"804\\\": \\\"slippin\\\", \\\"805\\\": \\\"cookies\\\", \\\"806\\\": \\\"networking\\\", \\\"807\\\": \\\"advertisementwork\\\", \\\"808\\\": \\\"miss\\\", \\\"809\\\": \\\"epic\\\", \\\"810\\\": \\\"worlds\\\", \\\"811\\\": \\\"cousin\\\", \\\"812\\\": \\\"stalk\\\", \\\"813\\\": \\\"profile\\\", \\\"814\\\": \\\"aaaaaaaaaaaaaaaaaaaaaaaaa\\\", \\\"815\\\": \\\"fwork\\\", \\\"816\\\": \\\"interseting\\\", \\\"817\\\": \\\"office\\\", \\\"818\\\": \\\"supplies\\\", \\\"819\\\": \\\"fast\\\", \\\"820\\\": \\\"discovering\\\", \\\"821\\\": \\\"ways\\\", \\\"822\\\": \\\"fooid\\\", \\\"823\\\": \\\"somehting\\\", \\\"824\\\": \\\"aftereffcts\\\", \\\"825\\\": \\\"comedy\\\", \\\"826\\\": \\\"homewokr\\\", \\\"827\\\": \\\"tag\\\", \\\"828\\\": \\\"aron\\\", \\\"829\\\": \\\"lit\\\", \\\"830\\\": \\\"analysis\\\", \\\"831\\\": \\\"regarding\\\", \\\"832\\\": \\\"assigment\\\", \\\"833\\\": \\\"campaigning\\\", \\\"834\\\": \\\"jkc\\\", \\\"835\\\": \\\"reading\\\", \\\"836\\\": \\\"befkre\\\", \\\"837\\\": \\\"continuing\\\", \\\"838\\\": \\\"mood\\\", \\\"839\\\": \\\"asdlkfjasd\\\", \\\"840\\\": \\\"respond\\\", \\\"841\\\": \\\"comment\\\", \\\"842\\\": \\\"cook\\\", \\\"843\\\": \\\"cow\\\", \\\"844\\\": \\\"lasts\\\", \\\"845\\\": \\\"hey\\\", \\\"846\\\": \\\"gimme\\\", \\\"847\\\": \\\"one\\\", \\\"848\\\": \\\"ya\\\", \\\"849\\\": \\\"skilll\\\", \\\"850\\\": \\\"choice\\\", \\\"851\\\": \\\"harbor\\\", \\\"852\\\": \\\"items\\\", \\\"853\\\": \\\"deliver\\\", \\\"854\\\": \\\"handed\\\", \\\"855\\\": \\\"numbers\\\", \\\"856\\\": \\\"fully\\\", \\\"857\\\": \\\"settling\\\", \\\"858\\\": \\\"knearest\\\", \\\"859\\\": \\\"neighbor\\\", \\\"860\\\": \\\"python\\\", \\\"861\\\": \\\"convenient\\\", \\\"862\\\": \\\"bookmark\\\", \\\"863\\\": \\\"google\\\", \\\"864\\\": \\\"chrome\\\", \\\"865\\\": \\\"great\\\", \\\"866\\\": \\\"pretty\\\", \\\"867\\\": \\\"boring\\\", \\\"868\\\": \\\"atm\\\", \\\"869\\\": \\\"teammates\\\", \\\"870\\\": \\\"past\\\", \\\"871\\\": \\\"years\\\", \\\"872\\\": \\\"bryan\\\", \\\"873\\\": \\\"beat\\\", \\\"874\\\": \\\"pharmacy\\\", \\\"875\\\": \\\"enxt\\\", \\\"876\\\": \\\"year\\\", \\\"877\\\": \\\"instrument\\\", \\\"878\\\": \\\"relief\\\", \\\"879\\\": \\\"determines\\\", \\\"880\\\": \\\"productivity\\\", \\\"881\\\": \\\"case\\\", \\\"882\\\": \\\"understand\\\", \\\"883\\\": \\\"gather\\\", \\\"884\\\": \\\"analytical\\\", \\\"885\\\": \\\"data\\\", \\\"886\\\": \\\"follow\\\", \\\"887\\\": \\\"announcement\\\", \\\"888\\\": \\\"webtoons\\\", \\\"889\\\": \\\"soothing\\\", \\\"890\\\": \\\"concentrate\\\", \\\"891\\\": \\\"huge\\\", \\\"892\\\": \\\"purchase\\\", \\\"893\\\": \\\"berak\\\", \\\"894\\\": \\\"extra\\\", \\\"895\\\": \\\"since\\\", \\\"896\\\": \\\"free\\\", \\\"897\\\": \\\"asfdoainds\\\", \\\"898\\\": \\\"oqjefoqwidnkasdiof\\\", \\\"899\\\": \\\"aosdifk\\\", \\\"900\\\": \\\"aoef\\\", \\\"901\\\": \\\"awpeidfk\\\", \\\"902\\\": \\\"asljdf\\\", \\\"903\\\": \\\"elephants\\\", \\\"904\\\": \\\"trunks\\\", \\\"905\\\": \\\"assemble\\\", \\\"906\\\": \\\"furniture\\\", \\\"907\\\": \\\"hacktech\\\", \\\"908\\\": \\\"readng\\\", \\\"909\\\": \\\"clear\\\", \\\"910\\\": \\\"sink\\\"}\", \"word_index\": \"{\\\"\\\": 1, \\\"work\\\": 2, \\\"break\\\": 3, \\\"take\\\": 4, \\\"learn\\\": 5, \\\"trying\\\": 6, \\\"watch\\\": 7, \\\"check\\\": 8, \\\"something\\\": 9, \\\"taking\\\": 10, \\\"post\\\": 11, \\\"video\\\": 12, \\\"need\\\": 13, \\\"get\\\": 14, \\\"new\\\": 15, \\\"facebook\\\": 16, \\\"friend\\\": 17, \\\"friends\\\": 18, \\\"homework\\\": 19, \\\"quick\\\": 20, \\\"look\\\": 21, \\\"find\\\": 22, \\\"make\\\": 23, \\\"videos\\\": 24, \\\"not\\\": 25, \\\"time\\\": 26, \\\"talk\\\": 27, \\\"test\\\": 28, \\\"relax\\\": 29, \\\"research\\\": 30, \\\"club\\\": 31, \\\"message\\\": 32, \\\"youtube\\\": 33, \\\"study\\\": 34, \\\"music\\\": 35, \\\"want\\\": 36, \\\"things\\\": 37, \\\"know\\\": 38, \\\"see\\\": 39, \\\"working\\\": 40, \\\"project\\\": 41, \\\"watching\\\": 42, \\\"productive\\\": 43, \\\"listen\\\": 44, \\\"sdc\\\": 45, \\\"stuff\\\": 46, \\\"job\\\": 47, \\\"checking\\\": 48, \\\"let\\\": 49, \\\"going\\\": 50, \\\"c\\\": 51, \\\"reflect\\\": 52, \\\"marketing\\\": 53, \\\"studying\\\": 54, \\\"read\\\": 55, \\\"school\\\": 56, \\\"5\\\": 57, \\\"social\\\": 58, \\\"home\\\": 59, \\\"go\\\": 60, \\\"instagram\\\": 61, \\\"procrastinate\\\": 62, \\\"looking\\\": 63, \\\"course\\\": 64, \\\"group\\\": 65, \\\"think\\\": 66, \\\"like\\\": 67, \\\"browse\\\": 68, \\\"assignment\\\": 69, \\\"objective\\\": 70, \\\"show\\\": 71, \\\"song\\\": 72, \\\"testing\\\": 73, \\\"getting\\\": 74, \\\"done\\\": 75, \\\"help\\\": 76, \\\"jacky\\\": 77, \\\"better\\\": 78, \\\"reddit\\\": 79, \\\"ask\\\": 80, \\\"memes\\\": 81, \\\"focus\\\": 82, \\\"team\\\": 83, \\\"bit\\\": 84, \\\"brain\\\": 85, \\\"use\\\": 86, \\\"important\\\": 87, \\\"short\\\": 88, \\\"minute\\\": 89, \\\"mind\\\": 90, \\\"waste\\\": 91, \\\"news\\\": 92, \\\"send\\\": 93, \\\"code\\\": 94, \\\"class\\\": 95, \\\"feature\\\": 96, \\\"cat\\\": 97, \\\"buy\\\": 98, \\\"messages\\\": 99, \\\"eat\\\": 100, \\\"large\\\": 101, \\\"people\\\": 102, \\\"updates\\\": 103, \\\"play\\\": 104, \\\"chat\\\": 105, \\\"funny\\\": 106, \\\"little\\\": 107, \\\"10\\\": 108, \\\"tell\\\": 109, \\\"works\\\": 110, \\\"bored\\\": 111, \\\"really\\\": 112, \\\"contact\\\": 113, \\\"online\\\": 114, \\\"would\\\": 115, \\\"fun\\\": 116, \\\"sure\\\": 117, \\\"ok\\\": 118, \\\"person\\\": 119, \\\"chill\\\": 120, \\\"page\\\": 121, \\\"finish\\\": 122, \\\"procrastination\\\": 123, \\\"complete\\\": 124, \\\"economics\\\": 125, \\\"distract\\\": 126, \\\"question\\\": 127, \\\"learning\\\": 128, \\\"text\\\": 129, \\\"give\\\": 130, \\\"add\\\": 131, \\\"scroll\\\": 132, \\\"min\\\": 133, \\\"recent\\\": 134, \\\"using\\\": 135, \\\"calculus\\\": 136, \\\"program\\\": 137, \\\"start\\\": 138, \\\"website\\\": 139, \\\"set\\\": 140, \\\"chemistry\\\": 141, \\\"mental\\\": 142, \\\"science\\\": 143, \\\"hw\\\": 144, \\\"world\\\": 145, \\\"programming\\\": 146, \\\"playlist\\\": 147, \\\"figure\\\": 148, \\\"day\\\": 149, \\\"latest\\\": 150, \\\"essay\\\": 151, \\\"much\\\": 152, \\\"documentary\\\": 153, \\\"educational\\\": 154, \\\"motivation\\\": 155, \\\"procrastinating\\\": 156, \\\"subreddit\\\": 157, \\\"writing\\\": 158, \\\"covid\\\": 159, \\\"housing\\\": 160, \\\"twitter\\\": 161, \\\"emilia\\\": 162, \\\"satella\\\": 163, \\\"gotta\\\": 164, \\\"battle\\\": 165, \\\"site\\\": 166, \\\"media\\\": 167, \\\"put\\\": 168, \\\"lofi\\\": 169, \\\"someone\\\": 170, \\\"rest\\\": 171, \\\"next\\\": 172, \\\"econ\\\": 173, \\\"david\\\": 174, \\\"please\\\": 175, \\\"ii\\\": 176, \\\"medication\\\": 177, \\\"photos\\\": 178, \\\"stop\\\": 179, \\\"jusung\\\": 180, \\\"lee\\\": 181, \\\"create\\\": 182, \\\"amazon\\\": 183, \\\"reach\\\": 184, \\\"international\\\": 185, \\\"minutes\\\": 186, \\\"math\\\": 187, \\\"event\\\": 188, \\\"computer\\\": 189, \\\"catch\\\": 190, \\\"also\\\": 191, \\\"smoke\\\": 192, \\\"well\\\": 193, \\\"feed\\\": 194, \\\"back\\\": 195, \\\"call\\\": 196, \\\"tutorial\\\": 197, \\\"entertainment\\\": 198, \\\"mins\\\": 199, \\\"members\\\": 200, \\\"mindlessly\\\": 201, \\\"happy\\\": 202, \\\"birthday\\\": 203, \\\"house\\\": 204, \\\"business\\\": 205, \\\"khan\\\": 206, \\\"academy\\\": 207, \\\"tech\\\": 208, \\\"browsing\\\": 209, \\\"bofuri\\\": 210, \\\"function\\\": 211, \\\"deserve\\\": 212, \\\"cool\\\": 213, \\\"reasons\\\": 214, \\\"right\\\": 215, \\\"care\\\": 216, \\\"given\\\": 217, \\\"conduct\\\": 218, \\\"slack\\\": 219, \\\"assignments\\\": 220, \\\"tok\\\": 221, \\\"hentai\\\": 222, \\\"update\\\": 223, \\\"lol\\\": 224, \\\"shit\\\": 225, \\\"lack\\\": 226, \\\"grind\\\": 227, \\\"messenger\\\": 228, \\\"list\\\": 229, \\\"written\\\": 230, \\\"task\\\": 231, \\\"pictures\\\": 232, \\\"netflix\\\": 233, \\\"prevent\\\": 234, \\\"interesting\\\": 235, \\\"unwindrelax\\\": 236, \\\"hours\\\": 237, \\\"episode\\\": 238, \\\"snl\\\": 239, \\\"finding\\\": 240, \\\"obama\\\": 241, \\\"keep\\\": 242, \\\"anymore\\\": 243, \\\"ellen\\\": 244, \\\"extension\\\": 245, \\\"relaxing\\\": 246, \\\"subject\\\": 247, \\\"luka\\\": 248, \\\"called\\\": 249, \\\"calculator\\\": 250, \\\"chicken\\\": 251, \\\"destress\\\": 252, \\\"background\\\": 253, \\\"beats\\\": 254, \\\"wall\\\": 255, \\\"quest\\\": 256, \\\"wrok\\\": 257, \\\"name\\\": 258, \\\"yeet\\\": 259, \\\"tryna\\\": 260, \\\"view\\\": 261, \\\"shopping\\\": 262, \\\"sick\\\": 263, \\\"gen\\\": 264, \\\"celebrate\\\": 265, \\\"handing\\\": 266, \\\"donate\\\": 267, \\\"fund\\\": 268, \\\"tasks\\\": 269, \\\"listening\\\": 270, \\\"buying\\\": 271, \\\"trends\\\": 272, \\\"good\\\": 273, \\\"2\\\": 274, \\\"u\\\": 275, \\\"apple\\\": 276, \\\"part\\\": 277, \\\"tracking\\\": 278, \\\"potato\\\": 279, \\\"connect\\\": 280, \\\"article\\\": 281, \\\"ordering\\\": 282, \\\"sense\\\": 283, \\\"asdf\\\": 284, \\\"adsf\\\": 285, \\\"thing\\\": 286, \\\"finished\\\": 287, \\\"save\\\": 288, \\\"vision\\\": 289, \\\"anson\\\": 290, \\\"related\\\": 291, \\\"momentarily\\\": 292, \\\"may\\\": 293, \\\"fuck\\\": 294, \\\"tkaing\\\": 295, \\\"install\\\": 296, \\\"tie\\\": 297, \\\"playing\\\": 298, \\\"avoid\\\": 299, \\\"big\\\": 300, \\\"potatoes\\\": 301, \\\"search\\\": 302, \\\"void\\\": 303, \\\"hop\\\": 304, \\\"stress\\\": 305, \\\"dog\\\": 306, \\\"problem\\\": 307, \\\"form\\\": 308, \\\"skill\\\": 309, \\\"grinding\\\": 310, \\\"idk\\\": 311, \\\"college\\\": 312, \\\"else\\\": 313, \\\"app\\\": 314, \\\"editing\\\": 315, \\\"groups\\\": 316, \\\"okay\\\": 317, \\\"guess\\\": 318, \\\"internationla\\\": 319, \\\"eocnomics\\\": 320, \\\"andrew\\\": 321, \\\"yang\\\": 322, \\\"wish\\\": 323, \\\"build\\\": 324, \\\"bank\\\": 325, \\\"parallelogram\\\": 326, \\\"none\\\": 327, \\\"bounces\\\": 328, \\\"binging\\\": 329, \\\"linus\\\": 330, \\\"tips\\\": 331, \\\"alison\\\": 332, \\\"misspelled\\\": 333, \\\"term\\\": 334, \\\"split\\\": 335, \\\"bill\\\": 336, \\\"updated\\\": 337, \\\"reset\\\": 338, \\\"distracting\\\": 339, \\\"designs\\\": 340, \\\"ted\\\": 341, \\\"nets\\\": 342, \\\"flutter\\\": 343, \\\"finances\\\": 344, \\\"graphic\\\": 345, \\\"engagement\\\": 346, \\\"tags\\\": 347, \\\"five\\\": 348, \\\"hour\\\": 349, \\\"sdlkjasd\\\": 350, \\\"details\\\": 351, \\\"meal\\\": 352, \\\"prep\\\": 353, \\\"ruin\\\": 354, \\\"grades\\\": 355, \\\"language\\\": 356, \\\"habit\\\": 357, \\\"change\\\": 358, \\\"lightbulb\\\": 359, \\\"problems\\\": 360, \\\"slides\\\": 361, \\\"whathw\\\": 362, \\\"tpwejofjwef\\\": 363, \\\"paint\\\": 364, \\\"sfksja\\\": 365, \\\"aslkd\\\": 366, \\\"jfasldk\\\": 367, \\\"jasdlk\\\": 368, \\\"jaflskdj\\\": 369, \\\"lskj\\\": 370, \\\"ewlk\\\": 371, \\\"jasli\\\": 372, \\\"fjoewij\\\": 373, \\\"askj\\\": 374, \\\"faiwoej\\\": 375, \\\"ajdf\\\": 376, \\\"kl\\\": 377, \\\"advertising\\\": 378, \\\"existentialism\\\": 379, \\\"deposit\\\": 380, \\\"left\\\": 381, \\\"still\\\": 382, \\\"groupcaht\\\": 383, \\\"connecting\\\": 384, \\\"disinterested\\\": 385, \\\"artof\\\": 386, \\\"war\\\": 387, \\\"kate\\\": 388, \\\"pay\\\": 389, \\\"attention\\\": 390, \\\"brief\\\": 391, \\\"pokemon\\\": 392, \\\"snapchat\\\": 393, \\\"collaborate\\\": 394, \\\"errands\\\": 395, \\\"breather\\\": 396, \\\"educate\\\": 397, \\\"scam\\\": 398, \\\"debate\\\": 399, \\\"trade\\\": 400, \\\"groceries\\\": 401, \\\"photoshop\\\": 402, \\\"fpr\\\": 403, \\\"bs\\\": 404, \\\"tired\\\": 405, \\\"rereading\\\": 406, \\\"topics\\\": 407, \\\"texting\\\": 408, \\\"exercise\\\": 409, \\\"calligraphy\\\": 410, \\\"samples\\\": 411, \\\"studied\\\": 412, \\\"drive\\\": 413, \\\"sasha\\\": 414, \\\"major\\\": 415, \\\"track\\\": 416, \\\"stocks\\\": 417, \\\"gander\\\": 418, \\\"information\\\": 419, \\\"tt\\\": 420, \\\"tweet\\\": 421, \\\"davids\\\": 422, \\\"vlog\\\": 423, \\\"pulling\\\": 424, \\\"random\\\": 425, \\\"sites\\\": 426, \\\"feel\\\": 427, \\\"enough\\\": 428, \\\"info\\\": 429, \\\"ona\\\": 430, \\\"politics\\\": 431, \\\"went\\\": 432, \\\"noo\\\": 433, \\\"become\\\": 434, \\\"say\\\": 435, \\\"kdramas\\\": 436, \\\"prices\\\": 437, \\\"graphing\\\": 438, \\\"transform\\\": 439, \\\"linkedin\\\": 440, \\\"started\\\": 441, \\\"responding\\\": 442, \\\"email\\\": 443, \\\"prof\\\": 444, \\\"worked\\\": 445, \\\"order\\\": 446, \\\"bask\\\": 447, \\\"positive\\\": 448, \\\"affirmation\\\": 449, \\\"fitness\\\": 450, \\\"nvm\\\": 451, \\\"innnnnnn\\\": 452, \\\"wastewfmaodwmdada\\\": 453, \\\"3\\\": 454, \\\"review\\\": 455, \\\"fuel\\\": 456, \\\"crippling\\\": 457, \\\"addiction\\\": 458, \\\"platform\\\": 459, \\\"ryan\\\": 460, \\\"twilio\\\": 461, \\\"focusing\\\": 462, \\\"emotional\\\": 463, \\\"wellbeing\\\": 464, \\\"final\\\": 465, \\\"leaves\\\": 466, \\\"campus\\\": 467, \\\"hack\\\": 468, \\\"north\\\": 469, \\\"voice\\\": 470, \\\"alexa\\\": 471, \\\"fail\\\": 472, \\\"nbanews\\\": 473, \\\"jubilee\\\": 474, \\\"yall\\\": 475, \\\"ever\\\": 476, \\\"freedom\\\": 477, \\\"dividend\\\": 478, \\\"reviews\\\": 479, \\\"every\\\": 480, \\\"spoon\\\": 481, \\\"known\\\": 482, \\\"man\\\": 483, \\\"sur\\\": 484, \\\"specific\\\": 485, \\\"subjects\\\": 486, \\\"messaging\\\": 487, \\\"happenned\\\": 488, \\\"chalkboard\\\": 489, \\\"calendar\\\": 490, \\\"ppl\\\": 491, \\\"model\\\": 492, \\\"might\\\": 493, \\\"useful\\\": 494, \\\"lawyer\\\": 495, \\\"paper\\\": 496, \\\"chinese\\\": 497, \\\"ads\\\": 498, \\\"quests\\\": 499, \\\"triyng\\\": 500, \\\"sir\\\": 501, \\\"acquire\\\": 502, \\\"poeple\\\": 503, \\\"memories\\\": 504, \\\"countertop\\\": 505, \\\"workout\\\": 506, \\\"plan\\\": 507, \\\"cute\\\": 508, \\\"resume\\\": 509, \\\"cs50\\\": 510, \\\"advertise\\\": 511, \\\"sorting\\\": 512, \\\"old\\\": 513, \\\"donations\\\": 514, \\\"connections\\\": 515, \\\"avideo\\\": 516, \\\"download\\\": 517, \\\"distracted\\\": 518, \\\"anything\\\": 519, \\\"pops\\\": 520, \\\"boredtired\\\": 521, \\\"hackathon\\\": 522, \\\"returns\\\": 523, \\\"scoping\\\": 524, \\\"asdfadfsadsfadsfa\\\": 525, \\\"quote\\\": 526, \\\"mean\\\": 527, \\\"notice\\\": 528, \\\"life\\\": 529, \\\"english\\\": 530, \\\"creating\\\": 531, \\\"inspo\\\": 532, \\\"decorating\\\": 533, \\\"suck\\\": 534, \\\"wasting\\\": 535, \\\"kiddding\\\": 536, \\\"convert\\\": 537, \\\"tensors\\\": 538, \\\"eigenvectors\\\": 539, \\\"bottme\\\": 540, \\\"jean\\\": 541, \\\"gmail\\\": 542, \\\"reply\\\": 543, \\\"lab\\\": 544, \\\"ne\\\": 545, \\\"package\\\": 546, \\\"ml\\\": 547, \\\"cherish\\\": 548, \\\"green\\\": 549, \\\"freinds\\\": 550, \\\"sorry\\\": 551, \\\"studywork\\\": 552, \\\"stuckconfused\\\": 553, \\\"discouraged\\\": 554, \\\"tensorflow\\\": 555, \\\"asdkfjasldgjsaldgkjsaldkgjasldjgasldkgjaslkdjgalskdjglaskjdglaskjdglaks\\\": 556, \\\"timer\\\": 557, \\\"grandparents\\\": 558, \\\"goof\\\": 559, \\\"possible\\\": 560, \\\"entertain\\\": 561, \\\"apart\\\": 562, \\\"difficult\\\": 563, \\\"league\\\": 564, \\\"legends\\\": 565, \\\"fa\\\": 566, \\\"heavy\\\": 567, \\\"listing\\\": 568, \\\"way\\\": 569, \\\"deal\\\": 570, \\\"due\\\": 571, \\\"hopping\\\": 572, \\\"challenges\\\": 573, \\\"panelling\\\": 574, \\\"deep\\\": 575, \\\"cleaning\\\": 576, \\\"forums\\\": 577, \\\"asd\\\": 578, \\\"fas\\\": 579, \\\"dfas\\\": 580, \\\"df\\\": 581, \\\"instead\\\": 582, \\\"30\\\": 583, \\\"ass\\\": 584, \\\"bottom\\\": 585, \\\"jans\\\": 586, \\\"gas\\\": 587, \\\"station\\\": 588, \\\"images\\\": 589, \\\"socialize\\\": 590, \\\"citations\\\": 591, \\\"fashion\\\": 592, \\\"a2c\\\": 593, \\\"classwork\\\": 594, \\\"tutorials\\\": 595, \\\"knitting\\\": 596, \\\"orientaion\\\": 597, \\\"fix\\\": 598, \\\"broken\\\": 599, \\\"engage\\\": 600, \\\"selfhelp\\\": 601, \\\"guides\\\": 602, \\\"link\\\": 603, \\\"crash\\\": 604, \\\"nothing\\\": 605, \\\"whats\\\": 606, \\\"epically\\\": 607, \\\"photo\\\": 608, \\\"cas\\\": 609, \\\"reflection\\\": 610, \\\"sell\\\": 611, \\\"f\\\": 612, \\\"shield\\\": 613, \\\"girl\\\": 614, \\\"runs\\\": 615, \\\"clan\\\": 616, \\\"examine\\\": 617, \\\"hi\\\": 618, \\\"ongoing\\\": 619, \\\"pain\\\": 620, \\\"backgrounder\\\": 621, \\\"useless\\\": 622, \\\"non\\\": 623, \\\"indulging\\\": 624, \\\"irrelevant\\\": 625, \\\"content\\\": 626, \\\"burn\\\": 627, \\\"health\\\": 628, \\\"schedule\\\": 629, \\\"appointment\\\": 630, \\\"potentially\\\": 631, \\\"waterloo\\\": 632, \\\"vibe\\\": 633, \\\"dry\\\": 634, \\\"cleaner\\\": 635, \\\"workmarketingpromoting\\\": 636, \\\"pet\\\": 637, \\\"shibe\\\": 638, \\\"jus\\\": 639, \\\"wanna\\\": 640, \\\"network\\\": 641, \\\"announcing\\\": 642, \\\"mountain\\\": 643, \\\"trees\\\": 644, \\\"northern\\\": 645, \\\"lights\\\": 646, \\\"magnets\\\": 647, \\\"yellow\\\": 648, \\\"sword\\\": 649, \\\"bro\\\": 650, \\\"swear\\\": 651, \\\"god\\\": 652, \\\"goddamn\\\": 653, \\\"smh\\\": 654, \\\"karma\\\": 655, \\\"decompress\\\": 656, \\\"win\\\": 657, \\\"barbarian\\\": 658, \\\"logo\\\": 659, \\\"exploring\\\": 660, \\\"different\\\": 661, \\\"venue\\\": 662, \\\"options\\\": 663, \\\"featyre\\\": 664, \\\"real\\\": 665, \\\"prepare\\\": 666, \\\"yes\\\": 667, \\\"less\\\": 668, \\\"multitask\\\": 669, \\\"sent\\\": 670, \\\"zoom\\\": 671, \\\"pass\\\": 672, \\\"enter\\\": 673, \\\"harborrrrrrrrrrr\\\": 674, \\\"coworkers\\\": 675, \\\"crypto\\\": 676, \\\"reality\\\": 677, \\\"breakj\\\": 678, \\\"family\\\": 679, \\\"dinner\\\": 680, \\\"20xx\\\": 681, \\\"iso\\\": 682, \\\"melee\\\": 683, \\\"surf\\\": 684, \\\"clemente\\\": 685, \\\"algoexpert\\\": 686, \\\"contest\\\": 687, \\\"channel\\\": 688, \\\"actually\\\": 689, \\\"articles\\\": 690, \\\"extensions\\\": 691, \\\"disabled\\\": 692, \\\"spotify\\\": 693, \\\"vmun\\\": 694, \\\"sect\\\": 695, \\\"apply\\\": 696, \\\"jobs\\\": 697, \\\"copy\\\": 698, \\\"store\\\": 699, \\\"starting\\\": 700, \\\"lunch\\\": 701, \\\"questions\\\": 702, \\\"dohomework\\\": 703, \\\"rbeak\\\": 704, \\\"pizza\\\": 705, \\\"idea\\\": 706, \\\"whle\\\": 707, \\\"ready\\\": 708, \\\"shows\\\": 709, \\\"cheese\\\": 710, \\\"visit\\\": 711, \\\"progress\\\": 712, \\\"applicatin\\\": 713, \\\"trevor\\\": 714, \\\"noah\\\": 715, \\\"de\\\": 716, \\\"quickbreather\\\": 717, \\\"pos\\\": 718, \\\"sdksdkl\\\": 719, \\\"cmon\\\": 720, \\\"eata\\\": 721, \\\"comfort\\\": 722, \\\"died\\\": 723, \\\"actual\\\": 724, \\\"promise\\\": 725, \\\"side\\\": 726, \\\"effects\\\": 727, \\\"today\\\": 728, \\\"mun\\\": 729, \\\"scratch\\\": 730, \\\"itch\\\": 731, \\\"provide\\\": 732, \\\"feedback\\\": 733, \\\"hello\\\": 734, \\\"mountains\\\": 735, \\\"stars\\\": 736, \\\"pen\\\": 737, \\\"wallet\\\": 738, \\\"earphones\\\": 739, \\\"ease\\\": 740, \\\"access\\\": 741, \\\"admin\\\": 742, \\\"outreach\\\": 743, \\\"ow\\\": 744, \\\"aftereffects\\\": 745, \\\"expanding\\\": 746, \\\"knowledge\\\": 747, \\\"opinions\\\": 748, \\\"perspectives\\\": 749, \\\"makeup\\\": 750, \\\"purposes\\\": 751, \\\"youtubers\\\": 752, \\\"food\\\": 753, \\\"refresh\\\": 754, \\\"informative\\\": 755, \\\"quiet\\\": 756, \\\"observe\\\": 757, \\\"others\\\": 758, \\\"innn\\\": 759, \\\"teach\\\": 760, \\\"areas\\\": 761, \\\"netplay\\\": 762, \\\"local\\\": 763, \\\"charitiesorganizations\\\": 764, \\\"appssee\\\": 765, \\\"everyone\\\": 766, \\\"process\\\": 767, \\\"planning\\\": 768, \\\"grocery\\\": 769, \\\"week\\\": 770, \\\"tutorialhow\\\": 771, \\\"answer\\\": 772, \\\"certain\\\": 773, \\\"cannot\\\": 774, \\\"react\\\": 775, \\\"period\\\": 776, \\\"bonny\\\": 777, \\\"elle\\\": 778, \\\"mills\\\": 779, \\\"ig\\\": 780, \\\"love\\\": 781, \\\"minie\\\": 782, \\\"attract\\\": 783, \\\"attendees\\\": 784, \\\"cry\\\": 785, \\\"interact\\\": 786, \\\"somewhat\\\": 787, \\\"socially\\\": 788, \\\"maintaining\\\": 789, \\\"semblance\\\": 790, \\\"spread\\\": 791, \\\"coronavirus\\\": 792, \\\"adobe\\\": 793, \\\"dimension\\\": 794, \\\"allen\\\": 795, \\\"lu\\\": 796, \\\"physics\\\": 797, \\\"stupid\\\": 798, \\\"mentor\\\": 799, \\\"guitar\\\": 800, \\\"restaurant\\\": 801, \\\"opens\\\": 802, \\\"notes\\\": 803, \\\"slippin\\\": 804, \\\"cookies\\\": 805, \\\"networking\\\": 806, \\\"advertisementwork\\\": 807, \\\"miss\\\": 808, \\\"epic\\\": 809, \\\"worlds\\\": 810, \\\"cousin\\\": 811, \\\"stalk\\\": 812, \\\"profile\\\": 813, \\\"aaaaaaaaaaaaaaaaaaaaaaaaa\\\": 814, \\\"fwork\\\": 815, \\\"interseting\\\": 816, \\\"office\\\": 817, \\\"supplies\\\": 818, \\\"fast\\\": 819, \\\"discovering\\\": 820, \\\"ways\\\": 821, \\\"fooid\\\": 822, \\\"somehting\\\": 823, \\\"aftereffcts\\\": 824, \\\"comedy\\\": 825, \\\"homewokr\\\": 826, \\\"tag\\\": 827, \\\"aron\\\": 828, \\\"lit\\\": 829, \\\"analysis\\\": 830, \\\"regarding\\\": 831, \\\"assigment\\\": 832, \\\"campaigning\\\": 833, \\\"jkc\\\": 834, \\\"reading\\\": 835, \\\"befkre\\\": 836, \\\"continuing\\\": 837, \\\"mood\\\": 838, \\\"asdlkfjasd\\\": 839, \\\"respond\\\": 840, \\\"comment\\\": 841, \\\"cook\\\": 842, \\\"cow\\\": 843, \\\"lasts\\\": 844, \\\"hey\\\": 845, \\\"gimme\\\": 846, \\\"one\\\": 847, \\\"ya\\\": 848, \\\"skilll\\\": 849, \\\"choice\\\": 850, \\\"harbor\\\": 851, \\\"items\\\": 852, \\\"deliver\\\": 853, \\\"handed\\\": 854, \\\"numbers\\\": 855, \\\"fully\\\": 856, \\\"settling\\\": 857, \\\"knearest\\\": 858, \\\"neighbor\\\": 859, \\\"python\\\": 860, \\\"convenient\\\": 861, \\\"bookmark\\\": 862, \\\"google\\\": 863, \\\"chrome\\\": 864, \\\"great\\\": 865, \\\"pretty\\\": 866, \\\"boring\\\": 867, \\\"atm\\\": 868, \\\"teammates\\\": 869, \\\"past\\\": 870, \\\"years\\\": 871, \\\"bryan\\\": 872, \\\"beat\\\": 873, \\\"pharmacy\\\": 874, \\\"enxt\\\": 875, \\\"year\\\": 876, \\\"instrument\\\": 877, \\\"relief\\\": 878, \\\"determines\\\": 879, \\\"productivity\\\": 880, \\\"case\\\": 881, \\\"understand\\\": 882, \\\"gather\\\": 883, \\\"analytical\\\": 884, \\\"data\\\": 885, \\\"follow\\\": 886, \\\"announcement\\\": 887, \\\"webtoons\\\": 888, \\\"soothing\\\": 889, \\\"concentrate\\\": 890, \\\"huge\\\": 891, \\\"purchase\\\": 892, \\\"berak\\\": 893, \\\"extra\\\": 894, \\\"since\\\": 895, \\\"free\\\": 896, \\\"asfdoainds\\\": 897, \\\"oqjefoqwidnkasdiof\\\": 898, \\\"aosdifk\\\": 899, \\\"aoef\\\": 900, \\\"awpeidfk\\\": 901, \\\"asljdf\\\": 902, \\\"elephants\\\": 903, \\\"trunks\\\": 904, \\\"assemble\\\": 905, \\\"furniture\\\": 906, \\\"hacktech\\\": 907, \\\"readng\\\": 908, \\\"clear\\\": 909, \\\"sink\\\": 910}\"}}" \ No newline at end of file diff --git a/nlp/models/acc82.49/weights.h5 b/nlp/models/acc82.49/weights.h5 new file mode 100644 index 0000000..dfbf043 Binary files /dev/null and b/nlp/models/acc82.49/weights.h5 differ diff --git a/nlp/net.py b/nlp/net.py index d3c907b..c73d8c7 100644 --- a/nlp/net.py +++ b/nlp/net.py @@ -1,10 +1,10 @@ -from keras.layers import Activation -from keras.layers import Dense -from keras.layers import Dropout -from keras.layers import Embedding -from keras.layers import Input -from keras.layers import LSTM -from keras.models import Model +from tensorflow.keras.layers import Activation +from tensorflow.keras.layers import Dense +from tensorflow.keras.layers import Dropout +from tensorflow.keras.layers import Embedding +from tensorflow.keras.layers import Input +from tensorflow.keras.layers import LSTM +from tensorflow.keras.models import Model # Define RNN Architecture def RNN(max_seq_len, vocab_size): diff --git a/nlp/train.py b/nlp/train.py index 235e189..f3344bd 100644 --- a/nlp/train.py +++ b/nlp/train.py @@ -8,11 +8,11 @@ import datetime # -- Deep Learning Libraries -- -from keras.callbacks import EarlyStopping -from keras.optimizers import RMSprop -from keras.preprocessing import sequence -from keras.preprocessing.text import Tokenizer -from keras.utils import to_categorical +from tensorflow.keras.callbacks import EarlyStopping +from tensorflow.keras.optimizers import RMSprop +from tensorflow.keras.preprocessing import sequence +from tensorflow.keras.preprocessing.text import Tokenizer +from tensorflow.keras.utils import to_categorical from sklearn.model_selection import train_test_split from sklearn.preprocessing import LabelEncoder