1*8b6cd535SAndroid Build Coastguard Worker // Copyright (C) 2022 Google LLC 2*8b6cd535SAndroid Build Coastguard Worker // 3*8b6cd535SAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License"); 4*8b6cd535SAndroid Build Coastguard Worker // you may not use this file except in compliance with the License. 5*8b6cd535SAndroid Build Coastguard Worker // You may obtain a copy of the License at 6*8b6cd535SAndroid Build Coastguard Worker // 7*8b6cd535SAndroid Build Coastguard Worker // http://www.apache.org/licenses/LICENSE-2.0 8*8b6cd535SAndroid Build Coastguard Worker // 9*8b6cd535SAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software 10*8b6cd535SAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, 11*8b6cd535SAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*8b6cd535SAndroid Build Coastguard Worker // See the License for the specific language governing permissions and 13*8b6cd535SAndroid Build Coastguard Worker // limitations under the License. 14*8b6cd535SAndroid Build Coastguard Worker 15*8b6cd535SAndroid Build Coastguard Worker #ifndef ICING_MONKEY_TEST_MONKEY_TEST_COMMON_WORDS_H_ 16*8b6cd535SAndroid Build Coastguard Worker #define ICING_MONKEY_TEST_MONKEY_TEST_COMMON_WORDS_H_ 17*8b6cd535SAndroid Build Coastguard Worker 18*8b6cd535SAndroid Build Coastguard Worker #include <array> 19*8b6cd535SAndroid Build Coastguard Worker #include <string_view> 20*8b6cd535SAndroid Build Coastguard Worker 21*8b6cd535SAndroid Build Coastguard Worker namespace icing { 22*8b6cd535SAndroid Build Coastguard Worker namespace lib { 23*8b6cd535SAndroid Build Coastguard Worker 24*8b6cd535SAndroid Build Coastguard Worker // A bag of words in English for creating random documents. Only words that are 25*8b6cd535SAndroid Build Coastguard Worker // at least 3 letters long are included (that's kPrefixLength) so that prefix 26*8b6cd535SAndroid Build Coastguard Worker // queries are easily formed from any word in a random document. 27*8b6cd535SAndroid Build Coastguard Worker // Data source: 28*8b6cd535SAndroid Build Coastguard Worker // https://chromium.googlesource.com/chromium/src/+/HEAD/components/url_formatter/spoof_checks/common_words/data/ 29*8b6cd535SAndroid Build Coastguard Worker static constexpr std::array<std::string_view, 1000> kCommonWords = { 30*8b6cd535SAndroid Build Coastguard Worker "the", "and", "for", "that", 31*8b6cd535SAndroid Build Coastguard Worker "this", "with", "you", "not", 32*8b6cd535SAndroid Build Coastguard Worker "are", "from", "your", "all", 33*8b6cd535SAndroid Build Coastguard Worker "have", "new", "more", "was", 34*8b6cd535SAndroid Build Coastguard Worker "will", "home", "can", "about", 35*8b6cd535SAndroid Build Coastguard Worker "page", "has", "search", "free", 36*8b6cd535SAndroid Build Coastguard Worker "but", "our", "one", "other", 37*8b6cd535SAndroid Build Coastguard Worker "information", "time", "they", "site", 38*8b6cd535SAndroid Build Coastguard Worker "may", "what", "which", "their", 39*8b6cd535SAndroid Build Coastguard Worker "news", "out", "use", "any", 40*8b6cd535SAndroid Build Coastguard Worker "there", "see", "only", "his", 41*8b6cd535SAndroid Build Coastguard Worker "when", "contact", "here", "business", 42*8b6cd535SAndroid Build Coastguard Worker "who", "web", "also", "now", 43*8b6cd535SAndroid Build Coastguard Worker "help", "get", "view", "online", 44*8b6cd535SAndroid Build Coastguard Worker "first", "been", "would", "how", 45*8b6cd535SAndroid Build Coastguard Worker "were", "services", "some", "these", 46*8b6cd535SAndroid Build Coastguard Worker "click", "its", "like", "service", 47*8b6cd535SAndroid Build Coastguard Worker "than", "find", "price", "date", 48*8b6cd535SAndroid Build Coastguard Worker "back", "top", "people", "had", 49*8b6cd535SAndroid Build Coastguard Worker "list", "name", "just", "over", 50*8b6cd535SAndroid Build Coastguard Worker "state", "year", "day", "into", 51*8b6cd535SAndroid Build Coastguard Worker "email", "two", "health", "world", 52*8b6cd535SAndroid Build Coastguard Worker "next", "used", "work", "last", 53*8b6cd535SAndroid Build Coastguard Worker "most", "products", "music", "buy", 54*8b6cd535SAndroid Build Coastguard Worker "data", "make", "them", "should", 55*8b6cd535SAndroid Build Coastguard Worker "product", "system", "post", "her", 56*8b6cd535SAndroid Build Coastguard Worker "city", "add", "policy", "number", 57*8b6cd535SAndroid Build Coastguard Worker "such", "please", "available", "copyright", 58*8b6cd535SAndroid Build Coastguard Worker "support", "message", "after", "best", 59*8b6cd535SAndroid Build Coastguard Worker "software", "then", "jan", "good", 60*8b6cd535SAndroid Build Coastguard Worker "video", "well", "where", "info", 61*8b6cd535SAndroid Build Coastguard Worker "rights", "public", "books", "high", 62*8b6cd535SAndroid Build Coastguard Worker "school", "through", "each", "links", 63*8b6cd535SAndroid Build Coastguard Worker "she", "review", "years", "order", 64*8b6cd535SAndroid Build Coastguard Worker "very", "privacy", "book", "items", 65*8b6cd535SAndroid Build Coastguard Worker "company", "read", "group", "sex", 66*8b6cd535SAndroid Build Coastguard Worker "need", "many", "user", "said", 67*8b6cd535SAndroid Build Coastguard Worker "does", "set", "under", "general", 68*8b6cd535SAndroid Build Coastguard Worker "research", "university", "january", "mail", 69*8b6cd535SAndroid Build Coastguard Worker "full", "map", "reviews", "program", 70*8b6cd535SAndroid Build Coastguard Worker "life", "know", "games", "way", 71*8b6cd535SAndroid Build Coastguard Worker "days", "management", "part", "could", 72*8b6cd535SAndroid Build Coastguard Worker "great", "united", "hotel", "real", 73*8b6cd535SAndroid Build Coastguard Worker "item", "international", "center", "must", 74*8b6cd535SAndroid Build Coastguard Worker "store", "travel", "comments", "made", 75*8b6cd535SAndroid Build Coastguard Worker "development", "report", "off", "member", 76*8b6cd535SAndroid Build Coastguard Worker "details", "line", "terms", "before", 77*8b6cd535SAndroid Build Coastguard Worker "hotels", "did", "send", "right", 78*8b6cd535SAndroid Build Coastguard Worker "type", "because", "local", "those", 79*8b6cd535SAndroid Build Coastguard Worker "using", "results", "office", "education", 80*8b6cd535SAndroid Build Coastguard Worker "national", "car", "design", "take", 81*8b6cd535SAndroid Build Coastguard Worker "posted", "internet", "address", "community", 82*8b6cd535SAndroid Build Coastguard Worker "within", "states", "area", "want", 83*8b6cd535SAndroid Build Coastguard Worker "phone", "dvd", "shipping", "reserved", 84*8b6cd535SAndroid Build Coastguard Worker "subject", "between", "forum", "family", 85*8b6cd535SAndroid Build Coastguard Worker "long", "based", "code", "show", 86*8b6cd535SAndroid Build Coastguard Worker "even", "black", "check", "special", 87*8b6cd535SAndroid Build Coastguard Worker "prices", "website", "index", "being", 88*8b6cd535SAndroid Build Coastguard Worker "women", "much", "sign", "file", 89*8b6cd535SAndroid Build Coastguard Worker "link", "open", "today", "technology", 90*8b6cd535SAndroid Build Coastguard Worker "south", "case", "project", "same", 91*8b6cd535SAndroid Build Coastguard Worker "pages", "version", "section", "own", 92*8b6cd535SAndroid Build Coastguard Worker "found", "sports", "house", "related", 93*8b6cd535SAndroid Build Coastguard Worker "security", "both", "county", "american", 94*8b6cd535SAndroid Build Coastguard Worker "photo", "game", "members", "power", 95*8b6cd535SAndroid Build Coastguard Worker "while", "care", "network", "down", 96*8b6cd535SAndroid Build Coastguard Worker "computer", "systems", "three", "total", 97*8b6cd535SAndroid Build Coastguard Worker "place", "end", "following", "download", 98*8b6cd535SAndroid Build Coastguard Worker "him", "without", "per", "access", 99*8b6cd535SAndroid Build Coastguard Worker "think", "north", "resources", "current", 100*8b6cd535SAndroid Build Coastguard Worker "posts", "big", "media", "law", 101*8b6cd535SAndroid Build Coastguard Worker "control", "water", "history", "pictures", 102*8b6cd535SAndroid Build Coastguard Worker "size", "art", "personal", "since", 103*8b6cd535SAndroid Build Coastguard Worker "including", "guide", "shop", "directory", 104*8b6cd535SAndroid Build Coastguard Worker "board", "location", "change", "white", 105*8b6cd535SAndroid Build Coastguard Worker "text", "small", "rating", "rate", 106*8b6cd535SAndroid Build Coastguard Worker "government", "children", "during", "usa", 107*8b6cd535SAndroid Build Coastguard Worker "return", "students", "shopping", "account", 108*8b6cd535SAndroid Build Coastguard Worker "times", "sites", "level", "digital", 109*8b6cd535SAndroid Build Coastguard Worker "profile", "previous", "form", "events", 110*8b6cd535SAndroid Build Coastguard Worker "love", "old", "john", "main", 111*8b6cd535SAndroid Build Coastguard Worker "call", "hours", "image", "department", 112*8b6cd535SAndroid Build Coastguard Worker "title", "description", "non", "insurance", 113*8b6cd535SAndroid Build Coastguard Worker "another", "why", "shall", "property", 114*8b6cd535SAndroid Build Coastguard Worker "class", "still", "money", "quality", 115*8b6cd535SAndroid Build Coastguard Worker "every", "listing", "content", "country", 116*8b6cd535SAndroid Build Coastguard Worker "private", "little", "visit", "save", 117*8b6cd535SAndroid Build Coastguard Worker "tools", "low", "reply", "customer", 118*8b6cd535SAndroid Build Coastguard Worker "december", "compare", "movies", "include", 119*8b6cd535SAndroid Build Coastguard Worker "college", "value", "article", "york", 120*8b6cd535SAndroid Build Coastguard Worker "man", "card", "jobs", "provide", 121*8b6cd535SAndroid Build Coastguard Worker "food", "source", "author", "different", 122*8b6cd535SAndroid Build Coastguard Worker "press", "learn", "sale", "around", 123*8b6cd535SAndroid Build Coastguard Worker "print", "course", "job", "canada", 124*8b6cd535SAndroid Build Coastguard Worker "process", "teen", "room", "stock", 125*8b6cd535SAndroid Build Coastguard Worker "training", "too", "credit", "point", 126*8b6cd535SAndroid Build Coastguard Worker "join", "science", "men", "categories", 127*8b6cd535SAndroid Build Coastguard Worker "advanced", "west", "sales", "look", 128*8b6cd535SAndroid Build Coastguard Worker "english", "left", "team", "estate", 129*8b6cd535SAndroid Build Coastguard Worker "box", "conditions", "select", "windows", 130*8b6cd535SAndroid Build Coastguard Worker "photos", "gay", "thread", "week", 131*8b6cd535SAndroid Build Coastguard Worker "category", "note", "live", "large", 132*8b6cd535SAndroid Build Coastguard Worker "gallery", "table", "register", "however", 133*8b6cd535SAndroid Build Coastguard Worker "june", "october", "november", "market", 134*8b6cd535SAndroid Build Coastguard Worker "library", "really", "action", "start", 135*8b6cd535SAndroid Build Coastguard Worker "series", "model", "features", "air", 136*8b6cd535SAndroid Build Coastguard Worker "industry", "plan", "human", "provided", 137*8b6cd535SAndroid Build Coastguard Worker "yes", "required", "second", "hot", 138*8b6cd535SAndroid Build Coastguard Worker "accessories", "cost", "movie", "forums", 139*8b6cd535SAndroid Build Coastguard Worker "march", "september", "better", "say", 140*8b6cd535SAndroid Build Coastguard Worker "questions", "july", "going", "medical", 141*8b6cd535SAndroid Build Coastguard Worker "test", "friend", "come", "dec", 142*8b6cd535SAndroid Build Coastguard Worker "server", "study", "application", "cart", 143*8b6cd535SAndroid Build Coastguard Worker "staff", "articles", "san", "feedback", 144*8b6cd535SAndroid Build Coastguard Worker "again", "play", "looking", "issues", 145*8b6cd535SAndroid Build Coastguard Worker "april", "never", "users", "complete", 146*8b6cd535SAndroid Build Coastguard Worker "street", "topic", "comment", "financial", 147*8b6cd535SAndroid Build Coastguard Worker "things", "working", "against", "standard", 148*8b6cd535SAndroid Build Coastguard Worker "tax", "person", "below", "mobile", 149*8b6cd535SAndroid Build Coastguard Worker "less", "got", "blog", "party", 150*8b6cd535SAndroid Build Coastguard Worker "payment", "equipment", "login", "student", 151*8b6cd535SAndroid Build Coastguard Worker "let", "programs", "offers", "legal", 152*8b6cd535SAndroid Build Coastguard Worker "above", "recent", "park", "stores", 153*8b6cd535SAndroid Build Coastguard Worker "side", "act", "problem", "red", 154*8b6cd535SAndroid Build Coastguard Worker "give", "memory", "performance", "social", 155*8b6cd535SAndroid Build Coastguard Worker "august", "quote", "language", "story", 156*8b6cd535SAndroid Build Coastguard Worker "sell", "options", "experience", "rates", 157*8b6cd535SAndroid Build Coastguard Worker "create", "key", "body", "young", 158*8b6cd535SAndroid Build Coastguard Worker "america", "important", "field", "few", 159*8b6cd535SAndroid Build Coastguard Worker "east", "paper", "single", "age", 160*8b6cd535SAndroid Build Coastguard Worker "activities", "club", "example", "girls", 161*8b6cd535SAndroid Build Coastguard Worker "additional", "password", "latest", "something", 162*8b6cd535SAndroid Build Coastguard Worker "road", "gift", "question", "changes", 163*8b6cd535SAndroid Build Coastguard Worker "night", "hard", "texas", "oct", 164*8b6cd535SAndroid Build Coastguard Worker "pay", "four", "poker", "status", 165*8b6cd535SAndroid Build Coastguard Worker "browse", "issue", "range", "building", 166*8b6cd535SAndroid Build Coastguard Worker "seller", "court", "february", "always", 167*8b6cd535SAndroid Build Coastguard Worker "result", "audio", "light", "write", 168*8b6cd535SAndroid Build Coastguard Worker "war", "nov", "offer", "blue", 169*8b6cd535SAndroid Build Coastguard Worker "groups", "easy", "given", "files", 170*8b6cd535SAndroid Build Coastguard Worker "event", "release", "analysis", "request", 171*8b6cd535SAndroid Build Coastguard Worker "fax", "china", "making", "picture", 172*8b6cd535SAndroid Build Coastguard Worker "needs", "possible", "might", "professional", 173*8b6cd535SAndroid Build Coastguard Worker "yet", "month", "major", "star", 174*8b6cd535SAndroid Build Coastguard Worker "areas", "future", "space", "committee", 175*8b6cd535SAndroid Build Coastguard Worker "hand", "sun", "cards", "problems", 176*8b6cd535SAndroid Build Coastguard Worker "london", "washington", "meeting", "rss", 177*8b6cd535SAndroid Build Coastguard Worker "become", "interest", "child", "keep", 178*8b6cd535SAndroid Build Coastguard Worker "enter", "california", "porn", "share", 179*8b6cd535SAndroid Build Coastguard Worker "similar", "garden", "schools", "million", 180*8b6cd535SAndroid Build Coastguard Worker "added", "reference", "companies", "listed", 181*8b6cd535SAndroid Build Coastguard Worker "baby", "learning", "energy", "run", 182*8b6cd535SAndroid Build Coastguard Worker "delivery", "net", "popular", "term", 183*8b6cd535SAndroid Build Coastguard Worker "film", "stories", "put", "computers", 184*8b6cd535SAndroid Build Coastguard Worker "journal", "reports", "try", "welcome", 185*8b6cd535SAndroid Build Coastguard Worker "central", "images", "president", "notice", 186*8b6cd535SAndroid Build Coastguard Worker "god", "original", "head", "radio", 187*8b6cd535SAndroid Build Coastguard Worker "until", "cell", "color", "self", 188*8b6cd535SAndroid Build Coastguard Worker "council", "away", "includes", "track", 189*8b6cd535SAndroid Build Coastguard Worker "australia", "discussion", "archive", "once", 190*8b6cd535SAndroid Build Coastguard Worker "others", "entertainment", "agreement", "format", 191*8b6cd535SAndroid Build Coastguard Worker "least", "society", "months", "log", 192*8b6cd535SAndroid Build Coastguard Worker "safety", "friends", "sure", "faq", 193*8b6cd535SAndroid Build Coastguard Worker "trade", "edition", "cars", "messages", 194*8b6cd535SAndroid Build Coastguard Worker "marketing", "tell", "further", "updated", 195*8b6cd535SAndroid Build Coastguard Worker "association", "able", "having", "provides", 196*8b6cd535SAndroid Build Coastguard Worker "david", "fun", "already", "green", 197*8b6cd535SAndroid Build Coastguard Worker "studies", "close", "common", "drive", 198*8b6cd535SAndroid Build Coastguard Worker "specific", "several", "gold", "feb", 199*8b6cd535SAndroid Build Coastguard Worker "living", "sep", "collection", "called", 200*8b6cd535SAndroid Build Coastguard Worker "short", "arts", "lot", "ask", 201*8b6cd535SAndroid Build Coastguard Worker "display", "limited", "powered", "solutions", 202*8b6cd535SAndroid Build Coastguard Worker "means", "director", "daily", "beach", 203*8b6cd535SAndroid Build Coastguard Worker "past", "natural", "whether", "due", 204*8b6cd535SAndroid Build Coastguard Worker "electronics", "five", "upon", "period", 205*8b6cd535SAndroid Build Coastguard Worker "planning", "database", "says", "official", 206*8b6cd535SAndroid Build Coastguard Worker "weather", "mar", "land", "average", 207*8b6cd535SAndroid Build Coastguard Worker "done", "technical", "window", "france", 208*8b6cd535SAndroid Build Coastguard Worker "pro", "region", "island", "record", 209*8b6cd535SAndroid Build Coastguard Worker "direct", "conference", "environment", "records", 210*8b6cd535SAndroid Build Coastguard Worker "district", "calendar", "costs", "style", 211*8b6cd535SAndroid Build Coastguard Worker "url", "front", "statement", "update", 212*8b6cd535SAndroid Build Coastguard Worker "parts", "aug", "ever", "downloads", 213*8b6cd535SAndroid Build Coastguard Worker "early", "miles", "sound", "resource", 214*8b6cd535SAndroid Build Coastguard Worker "present", "applications", "either", "ago", 215*8b6cd535SAndroid Build Coastguard Worker "document", "word", "works", "material", 216*8b6cd535SAndroid Build Coastguard Worker "bill", "apr", "written", "talk", 217*8b6cd535SAndroid Build Coastguard Worker "federal", "hosting", "rules", "final", 218*8b6cd535SAndroid Build Coastguard Worker "adult", "tickets", "thing", "centre", 219*8b6cd535SAndroid Build Coastguard Worker "requirements", "via", "cheap", "nude", 220*8b6cd535SAndroid Build Coastguard Worker "kids", "finance", "true", "minutes", 221*8b6cd535SAndroid Build Coastguard Worker "else", "mark", "third", "rock", 222*8b6cd535SAndroid Build Coastguard Worker "gifts", "europe", "reading", "topics", 223*8b6cd535SAndroid Build Coastguard Worker "bad", "individual", "tips", "plus", 224*8b6cd535SAndroid Build Coastguard Worker "auto", "cover", "usually", "edit", 225*8b6cd535SAndroid Build Coastguard Worker "together", "videos", "percent", "fast", 226*8b6cd535SAndroid Build Coastguard Worker "function", "fact", "unit", "getting", 227*8b6cd535SAndroid Build Coastguard Worker "global", "tech", "meet", "far", 228*8b6cd535SAndroid Build Coastguard Worker "economic", "player", "projects", "lyrics", 229*8b6cd535SAndroid Build Coastguard Worker "often", "subscribe", "submit", "germany", 230*8b6cd535SAndroid Build Coastguard Worker "amount", "watch", "included", "feel", 231*8b6cd535SAndroid Build Coastguard Worker "though", "bank", "risk", "thanks", 232*8b6cd535SAndroid Build Coastguard Worker "everything", "deals", "various", "words", 233*8b6cd535SAndroid Build Coastguard Worker "linux", "jul", "production", "commercial", 234*8b6cd535SAndroid Build Coastguard Worker "james", "weight", "town", "heart", 235*8b6cd535SAndroid Build Coastguard Worker "advertising", "received", "choose", "treatment", 236*8b6cd535SAndroid Build Coastguard Worker "newsletter", "archives", "points", "knowledge", 237*8b6cd535SAndroid Build Coastguard Worker "magazine", "error", "camera", "jun", 238*8b6cd535SAndroid Build Coastguard Worker "girl", "currently", "construction", "toys", 239*8b6cd535SAndroid Build Coastguard Worker "registered", "clear", "golf", "receive", 240*8b6cd535SAndroid Build Coastguard Worker "domain", "methods", "chapter", "makes", 241*8b6cd535SAndroid Build Coastguard Worker "protection", "policies", "loan", "wide", 242*8b6cd535SAndroid Build Coastguard Worker "beauty", "manager", "india", "position", 243*8b6cd535SAndroid Build Coastguard Worker "taken", "sort", "listings", "models", 244*8b6cd535SAndroid Build Coastguard Worker "michael", "known", "half", "cases", 245*8b6cd535SAndroid Build Coastguard Worker "step", "engineering", "florida", "simple", 246*8b6cd535SAndroid Build Coastguard Worker "quick", "none", "wireless", "license", 247*8b6cd535SAndroid Build Coastguard Worker "paul", "friday", "lake", "whole", 248*8b6cd535SAndroid Build Coastguard Worker "annual", "published", "later", "basic", 249*8b6cd535SAndroid Build Coastguard Worker "shows", "corporate", "church", "method", 250*8b6cd535SAndroid Build Coastguard Worker "purchase", "customers", "active", "response", 251*8b6cd535SAndroid Build Coastguard Worker "practice", "hardware", "figure", "materials", 252*8b6cd535SAndroid Build Coastguard Worker "fire", "holiday", "chat", "enough", 253*8b6cd535SAndroid Build Coastguard Worker "designed", "along", "among", "death", 254*8b6cd535SAndroid Build Coastguard Worker "writing", "speed", "html", "countries", 255*8b6cd535SAndroid Build Coastguard Worker "loss", "face", "brand", "discount", 256*8b6cd535SAndroid Build Coastguard Worker "higher", "effects", "created", "remember", 257*8b6cd535SAndroid Build Coastguard Worker "standards", "oil", "bit", "yellow", 258*8b6cd535SAndroid Build Coastguard Worker "political", "increase", "advertise", "kingdom", 259*8b6cd535SAndroid Build Coastguard Worker "base", "near", "environmental", "thought", 260*8b6cd535SAndroid Build Coastguard Worker "stuff", "french", "storage", "japan", 261*8b6cd535SAndroid Build Coastguard Worker "doing", "loans", "shoes", "entry", 262*8b6cd535SAndroid Build Coastguard Worker "stay", "nature", "orders", "availability", 263*8b6cd535SAndroid Build Coastguard Worker "africa", "summary", "turn", "mean", 264*8b6cd535SAndroid Build Coastguard Worker "growth", "notes", "agency", "king", 265*8b6cd535SAndroid Build Coastguard Worker "monday", "european", "activity", "copy", 266*8b6cd535SAndroid Build Coastguard Worker "although", "drug", "pics", "western", 267*8b6cd535SAndroid Build Coastguard Worker "income", "force", "cash", "employment", 268*8b6cd535SAndroid Build Coastguard Worker "overall", "bay", "river", "commission", 269*8b6cd535SAndroid Build Coastguard Worker "package", "contents", "seen", "players", 270*8b6cd535SAndroid Build Coastguard Worker "engine", "port", "album", "regional", 271*8b6cd535SAndroid Build Coastguard Worker "stop", "supplies", "started", "administration", 272*8b6cd535SAndroid Build Coastguard Worker "bar", "institute", "views", "plans", 273*8b6cd535SAndroid Build Coastguard Worker "double", "dog", "build", "screen", 274*8b6cd535SAndroid Build Coastguard Worker "exchange", "types", "soon", "sponsored", 275*8b6cd535SAndroid Build Coastguard Worker "lines", "electronic", "continue", "across", 276*8b6cd535SAndroid Build Coastguard Worker "benefits", "needed", "season", "apply", 277*8b6cd535SAndroid Build Coastguard Worker "someone", "held", "anything", "printer", 278*8b6cd535SAndroid Build Coastguard Worker "condition", "effective", "believe", "organization", 279*8b6cd535SAndroid Build Coastguard Worker "effect", "asked", "eur", "mind"}; 280*8b6cd535SAndroid Build Coastguard Worker 281*8b6cd535SAndroid Build Coastguard Worker } // namespace lib 282*8b6cd535SAndroid Build Coastguard Worker } // namespace icing 283*8b6cd535SAndroid Build Coastguard Worker 284*8b6cd535SAndroid Build Coastguard Worker #endif // ICING_MONKEY_TEST_MONKEY_TEST_COMMON_WORDS_H_ 285