{"id": "lv-pain-csharp-q27b", "model": "qwen-27b", "layers": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], "tokens": ["<|im_start|>", "user", "\n", "Hard", "core", " project", ":", " one", " cross", "-platform", " app", " \u2014", " async", " APIs", " with", " unpredictable", " run", "times", " that", " must", " all", " make", " sense", " at", " the", " UI", " layer", ",", " a", " ", "3", "D", " viewport", ",", " server", " modules", ",", " end", "-user", " plugin", " support", ",", " several", " data", " stores", ",", " desktop", " and", " mobile", ".", " Company", " policy", ":", " it", " ships", " ", "1", "0", "0", "%", " in", " C", "#.", " Gut", " reaction", " first", ",", " then", " your", " top", " ", "3", " technical", " risks", ".", " Keep", " it", " tight", ".", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "**", "G", "ut", " Reaction", ":**", "\n", "It", "\u2019s", " a", " trap", ".", " You", "\u2019re", " trying", " to", " boil", " the", " ocean", " with", " a", " single", " language", " constraint", ".", " C", "#", " is", " powerful", ",", " but", " forcing", " it", " to", " handle", " high", "-performance", " ", "3", "D", " rendering", ",", " low", "-lat", "ency", " async", " orchest", "ration", ",", " and", " native", " plugin", " boundaries", " on", " mobile", " *", "and", "*", " desktop", " simultaneously", " is", " a", " recipe", " for", " a", " blo", "ated", ",", " slow", ",", " and", " unm", "aint", "ain", "able", " mon", "olith", ".", " The", " \"", "1", "0", "0", "%", " C", "#\"", " policy", " ignores", " the", " reality", " that", " mobile", " OS", "es", " and", " GPU", " drivers", " speak", " C", "/C", "++", "/", "R", "ust", ",", " not", " IL", ".", "\n\n", "**", "Top", " ", "3", " Technical", " Ris", "ks", ":**", "\n\n", "1", ".", " ", " **", "Mobile", " Performance", " &", " Memory", " Over", "head", ":**", "\n", "   ", " C", "#", " on", " mobile", " (", "via", " Xamarin", "/", "MA", "UI", " or", " Unity", ")", " runs", " on", " a", " managed", " runtime", ".", " A", " ", "3", "D", " viewport", " with", " complex", " async", " data", " streams", " will", " cause", " GC", " pauses", ",", " frame", " drops", ",", " and", " excessive", " memory", " usage", ".", " Mobile", " devices", " have", " strict", " thermal", " and", " battery", " constraints", ";", " the", " overhead", " of", " the", " CLR", " +", " JIT", "/A", "OT", " compilation", " +", " marsh", "aling", " between", " managed", " and", " native", " UI", "/G", "PU", " layers", " will", " likely", " make", " the", " app", " feel", " sluggish", " or", " crash", " under", " load", ".", "\n\n", "2", ".", " ", " **", "Plugin", "<|im_end|>", "\n", "<|im_start|>", "user", "\n", "Update", ":", " CI", " moves", " to", " cheap", " Linux", " containers", ",", " plugins", " must", " be", " script", "able", " by", " end", " users", ",", " and", " the", " ", "3", "D", " viewport", " must", " hit", " ", "1", "2", "0", " fps", " on", " mid", "-range", " Android", ".", " Re", "-plan", " in", " C", "#:", " what", " breaks", " first", ",", " and", " what", " exactly", " do", " you", " do", " about", " it", "?", "<|im_end|>", "\n", "<|im_start|>", "assistant", "\n", "<think>", "\n\n", "</think>", "\n\n", "**", "What", " Break", "s", " First", ":**", "\n", "The", " **", "3", "D", " View", "port", " on", " Android", "**.", "\n\n", "Specific", "ally", ",", " the", " **", "Gar", "bage", " Collection", " (", "GC", ")", " pauses", "**", " and", " **", "J", "IT", "/A", "OT", " compilation", " overhead", "**", " will", " kill", " your", " ", "1", "2", "0", " FPS", " target", ".", " Mid", "-range", " Android", " devices", " have", " limited", " RAM", " and", " CPU", " head", "room", ".", " C", "#", "\u2019", "s", " managed", " memory", " model", " creates", " unpredictable", " latency", " spikes", " when", " the", " GC", " kicks", " in", " during", " heavy", " async", " data", " ingestion", " or", " ", "3", "D", " scene", " updates", ".", " Even", " with", " A", "OT", " (", "Ahead", "-of", "-Time", ")", " compilation", ",", " the", " lack", " of", " direct", " memory", " control", " and", " the", " overhead", " of", " the", " runtime", " will", " prevent", " consistent", " ", "1", "2", "0", " FPS", " in", " a", " complex", " ", "3", "D", " scene", ".", "\n\n", "**", "What", " You", " Do", " About", " It", " (", "The", " C", "#", "-", "Only", " Comp", "romise", "):**", "\n\n", "1", ".", " ", " **", "Ag", "gressive", " GC", " Control", " &", " Object", " Pool", "ing", ":**", "\n", "   ", " *", "  ", " **", "Zero", "-Al", "location", " Hot", " Path", ":**", " Ref", "actor", " the", " ", "3", "D", " rendering", " loop", " and", " async", " data", " processing", " to", " be", " **", "zero", "-al", "location", "**.", " Use", " `", "struct", "`", "-", "based", " data", ",", " `", "Span", "<T", ">", "`,", " and", " `", "Memory", "<T", ">`", " to", " avoid", " heap", " allocations", ".", "\n", "   ", " *", "  ", " **", "Object", " P", "ools", ":**", "<|im_end|>", "\n"], "gen_start": 372, "start": 368, "track": [], "frames": [{"pos": 368, "top": [["\u4f46\u4e0d\u9650\u4e8e", "satz", "\u044b", "\u4e86", "s", " **\u00ab", "\u00bb.**", "?\u00bb"], [" **\u300c", " **\u25a0", " **\u00ab", " **\u3010", " Shemale", "\uff1f**", " creampie", " milfs"], [" **\u300c", " **\u3010", " **\u00ab", "\uff1f**", " **\u25a0", "\u4e86", "\u00bb.**", "\u300d**"], [" **\u300c", " **\u00ab", " **\u25a0", " **\u3010", " /**<", " \u00bb**", " Shemale", " creampie"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", " **\u3010", " />\\", " /**<", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u300c", " **\u00ab", " **\u25a0", " \u00bb**", " **\u3010", " />\\", "\u4f46\u4e0d\u9650\u4e8e", " **\u2014"], [" **\u300c", " **\u00ab", " **\u25a0", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**", " **\u3010", " **\u2014", "\\xc"], [" **\u300c", " **\u00ab", " **\u25a0", "\u4f46\u4e0d\u9650\u4e8e", " \u00bb**", " **\u3010", " **\u2014", "schild"], [" **\u300c", " **\u00ab", "schild", "\\xc", "s", "\u4f46\u4e0d\u9650\u4e8e", "  \n\n", "\r\r\n\r\r\n"], [" **\u300c", " **\u00ab", "\\xc", "schild", "s", "\u4f46\u4e0d\u9650\u4e8e", " />\\", "\\."], ["s", " **\u300c", "\\xc", " **\u00ab", "\\.", "schild", " \u00ad", "\u044b"], [" **\u300c", " **\u00ab", "s", "schild", "\u044b", "\\xc", "\u4f46\u4e0d\u9650\u4e8e", " **\u25a0"], ["s", " **\u300c", " **\u00ab", "schild", "\u044b", "\\xc", " (\u00ab", "\u4f46\u4e0d\u9650\u4e8e"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "\\xc", " (\u00ab", ".\u00ab"], ["s", " **\u300c", " **\u00ab", "schild", "\u044b", "\\xc", "\u3044\u308b", "\u0627\u062a"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "siz", "\u4f46\u4e0d\u9650\u4e8e", "svar"], ["s", " **\u00ab", "schild", "\u044b", " **\u300c", "siz", "\\xc", "\u0627\u062a"], ["s", " **\u00ab", " **\u300c", "schild", "\u044b", "\\xc", "\\.", "siz"], ["s", " **\u00ab", "\u044b", "schild", "\\xc", " **\u300c", "\u0627\u062a", "\r\r\n\r\r\n"], ["s", "\\xc", "  \n\n", "\u044b", "\\.", "schild", "\\-", " \u00ad"], ["  \n\n", "s", "\\.", "<|endoftext|>", " \u00ad", "\\-", "\\xc", " \n\n\n\n"], [" **\u00ab", " **\u300c", "schild", "s", " **\u2014", "\u044b", " **\u25a0", "schn"], [" **\u00ab", "s", " **\u300c", "  \n\n", "schild", "\u044b", " **\u2014", " \n\n\n\n"], [" **\u00ab", "s", "  \n\n", " **\u300c", "\r\r\n\r\r\n", " \u00ad", "schild", " \n\n\n\n"], ["  \n\n", " **\u00ab", "   \n\n", "\r\r\n\r\r\n", " \n\n\n\n", "s", " \u00ad", "schild"], [" **\u00ab", "  \n\n", "\r\r\n\r\r\n", " **\u300c", " **\u2014", "schild", " \n\n\n\n", "\u4f46\u4e0d\u9650\u4e8e"], [" **\u00ab", "  \n\n", "schild", "\r\r\n\r\r\n", "sii", "\u4f46\u4e0d\u9650\u4e8e", "indsight", " intele"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "\n\n", "\n\n\n\n", "\t\n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "\n\n\n\n", "<|im_end|>", " \n\n\n\n", "   \n\n", "...**"], ["  \n\n", " \n\n\n\n", " \n\n", "<|im_end|>", "   \n\n", "\n\n\n\n", "...\\", "...**"], ["  \n\n", "   \n\n", " \n\n", " \n\n\n\n", "  \n  \n", "?\\", "s", "  \r\n\r\n"], ["  \n\n", " \n\n\n\n", "   \n\n", "\u2728", "s", " **[", "  \r\n\r\n", "\r\r\n\r\r\n"], ["  \n\n", "   \n\n", "]**", "\u2728", "!**", "  \r\n\r\n", " \n\n\n\n", "  \n  \n"], ["  \n\n", " **[", " **\u00ab", " **\u201c", "]**", " **\u2014", "\u2019**", "\u2728"], ["  \n\n", "]**", "!**", " **\u201c", " **\u00ab", "\u2019**", "])**", " **\u2014"], ["]**", "  \n\n", " **\u00ab", "!**", " **\u201c", "\u2019**", "])**", " **["], ["  \n\n", "]**", " **[", "   \n\n", "!**", " **\u00ab", " **\u201c", "])**"], ["  \n\n", "]**", "!**", " **\u00ab", " **[", "])**", "\u2728", " **\u201c"], ["]**", "!**", "])**", "  \n\n", "\u2728", " **[", "\u00adi", "\u601d\u7ef4"], ["!**", "  \n\n", "]**", "])**", "\u2026**", " **[", "\u2728", "\u2019**"], ["!**", "  \n\n", "]**", "])**", "\u2026**", "\uff01**", "**!", "\u00adi"], ["!**", "]**", " **\u00ab", "])**", ">**", "\u2019**", "  \n\n", ")**"], ["!**", "]**", " **\u00ab", ">**", "])**", "\u2019**", "\uff01**", " **\u201c"], ["]**", "\u2019**", ">**", " )**", "!**", " **\u201c", " **\u00ab", "\u601d\u8003"], ["]**", ">**", "\u2019**", " **\u00ab", " **\u201c", " )**", "!**", "\u601d\u8003"], [" **\u00ab", " **\u201c", ">**", "]**", " **\"", "\u2019**", "!**", " **\u300c"], [" **\u00ab", " **\u201c", " **\"", " **\u300c", ">**", "!**", "\u2019**", "]**"], ["\u706b\u82b1", "]**", ">**", "!**", "\u2019**", "\u5bf9\u8bdd", "\u521b\u4f5c\u8005", ")**"], ["]**", ">**", ")**", "\u2019**", "!**", "\u3002**", "\uff1a**", " **\u00ab"], ["\u2019**", ">**", ")**", "]**", "!**", " **\u3010", "])**", "\"**"], [" **\u3010", ">**", "!**", "]**", "\u89e3\u7b54", "\u3002**", "\u2019**", ")**"], [" **\u3010", "!**", "]**", "\u5206\u6790", "\u3002**", ">**", ")**", "\u601d\u8003"], [" **\u3010", ">**", "\u601d\u8003", " **\"", "\u5206\u6790", " **\u00ab", "\u3002**", " **\u300c"], ["Here", " **\u3010", ">**", "\u2019**", " **\"", "Thinking", " **\u00ab", "\u3002**"], ["Here", " Here", "here", "\u8fd9\u91cc", " here", "\u8fd9\u91cc\u662f", "_HERE", " HERE"], ["Here", "here", "\u8fd9\u91cc", " here", " Here", "\u8fd9\u91cc\u662f", " HERE", "_HERE"], ["Here", "\u8fd9\u91cc", " Here", "here", "\u8fd9\u91cc\u662f", "HERE", " HERE", " here"], ["Here", "\u8fd9\u91cc", " Here", "here", "\n\n", "\u804a", "\u6a21\u578b", "HERE"], ["Here", " Here", "\n\n", "\u8fd9\u91cc", "\u8fd9\u91cc\u662f", "HERE", "here", "\u804a"], ["\n\n", "Here", " Here", "\u8fd9\u91cc", " here", "HERE", "here", "_HERE"], ["\n\n", "Here", " \n\n", " Here", "Thinking", "\n\n\n\n", "_HERE", " here"], ["\n\n", " \n\n", "Here", "  \n\n", " Here", "\r\n\r\n", "\t\n\n", "CHAT"], ["\n\n", "\n", " Here", "Here", "<|im_start|>", " \n\n", " com", "\n\n\n\n"]], "p": [[0.0489, 0.0336, 0.018, 0.014, 0.014, 0.0131, 0.0096, 0.0096], [0.2735, 0.0573, 0.0394, 0.0211, 0.0198, 0.01, 0.0094, 0.0094], [0.6197, 0.0541, 0.0449, 0.0256, 0.0256, 0.0054, 0.0044, 0.0044], [0.6091, 0.0824, 0.0366, 0.0173, 0.0135, 0.0098, 0.0064, 0.0044], [0.6248, 0.2028, 0.0292, 0.0156, 0.0061, 0.0051, 0.0035, 0.0026], [0.7308, 0.2373, 0.0067, 0.0046, 0.0015, 0.0007, 0.0007, 0.0006], [0.8263, 0.1436, 0.0038, 0.0028, 0.0026, 0.0025, 0.0011, 0.0004], [0.7818, 0.1977, 0.003, 0.0014, 0.0013, 0.0009, 0.0009, 0.0007], [0.8039, 0.1088, 0.0138, 0.0074, 0.0054, 0.0042, 0.004, 0.0037], [0.63, 0.1406, 0.0334, 0.026, 0.0244, 0.0179, 0.0084, 0.0055], [0.7765, 0.1051, 0.022, 0.0207, 0.0126, 0.0081, 0.0038, 0.0036], [0.6419, 0.3032, 0.0362, 0.0038, 0.0015, 0.0013, 0.0008, 0.0006], [0.3638, 0.321, 0.2833, 0.0075, 0.0036, 0.0022, 0.0013, 0.0012], [0.5185, 0.2449, 0.1683, 0.0101, 0.0084, 0.0031, 0.0029, 0.002], [0.9624, 0.01, 0.0083, 0.0042, 0.0033, 0.0007, 0.0004, 0.0004], [0.86, 0.0355, 0.0276, 0.0168, 0.0108, 0.0033, 0.0016, 0.0016], [0.974, 0.0051, 0.0045, 0.0031, 0.0011, 0.0005, 0.0005, 0.0005], [0.6559, 0.1213, 0.0348, 0.0327, 0.0145, 0.0073, 0.0047, 0.0039], [0.8216, 0.0299, 0.0171, 0.0141, 0.0071, 0.0067, 0.0043, 0.0026], [0.8833, 0.0098, 0.0072, 0.0067, 0.0041, 0.0036, 0.0034, 0.0022], [0.4597, 0.3363, 0.0108, 0.0102, 0.0095, 0.0066, 0.0062, 0.0045], [0.8983, 0.0447, 0.0073, 0.003, 0.0024, 0.0021, 0.002, 0.0013], [0.6697, 0.1239, 0.0313, 0.0202, 0.007, 0.0058, 0.0042, 0.0042], [0.5987, 0.0523, 0.0462, 0.0232, 0.0075, 0.0075, 0.0059, 0.0049], [0.5157, 0.0451, 0.0137, 0.0129, 0.0114, 0.0069, 0.0069, 0.0057], [0.2054, 0.0626, 0.014, 0.014, 0.0116, 0.009, 0.0062, 0.0038], [0.0244, 0.009, 0.0079, 0.0062, 0.0035, 0.0035, 0.0031, 0.0031], [0.9169, 0.0456, 0.0051, 0.0045, 0.0045, 0.0013, 0.0013, 0.0009], [0.9156, 0.0179, 0.0115, 0.0074, 0.0066, 0.0048, 0.0037, 0.002], [0.9384, 0.0086, 0.0081, 0.0076, 0.0049, 0.0049, 0.0017, 0.0014], [0.8594, 0.0079, 0.0045, 0.0042, 0.0027, 0.0018, 0.0017, 0.0016], [0.526, 0.0066, 0.0066, 0.0055, 0.0055, 0.0038, 0.0029, 0.0029], [0.838, 0.0047, 0.0034, 0.003, 0.0027, 0.0025, 0.0024, 0.0021], [0.5489, 0.0291, 0.0273, 0.0213, 0.0137, 0.0101, 0.0094, 0.0078], [0.0587, 0.0457, 0.0403, 0.023, 0.023, 0.019, 0.0168, 0.0158], [0.097, 0.0626, 0.0553, 0.0519, 0.0404, 0.0357, 0.0357, 0.0261], [0.7933, 0.0308, 0.0155, 0.0094, 0.0094, 0.0088, 0.0078, 0.0057], [0.1875, 0.0505, 0.0369, 0.0288, 0.0288, 0.0174, 0.0128, 0.012], [0.0175, 0.0154, 0.0154, 0.0113, 0.0078, 0.0073, 0.0068, 0.006], [0.1385, 0.0577, 0.0373, 0.0241, 0.0176, 0.0155, 0.0129, 0.0121], [0.2745, 0.1297, 0.0421, 0.0128, 0.0106, 0.0094, 0.0088, 0.0054], [0.0943, 0.0369, 0.0154, 0.0136, 0.0113, 0.0113, 0.0106, 0.0082], [0.0767, 0.0465, 0.032, 0.03, 0.0171, 0.0118, 0.0111, 0.0092], [0.0427, 0.0427, 0.0312, 0.0293, 0.0215, 0.0189, 0.0178, 0.0157], [0.0497, 0.0321, 0.0301, 0.0195, 0.0183, 0.0172, 0.0104, 0.0098], [0.1451, 0.0937, 0.0937, 0.088, 0.0777, 0.0534, 0.0443, 0.0223], [0.1394, 0.0746, 0.0513, 0.0453, 0.0275, 0.0228, 0.0189, 0.0138], [0.0088, 0.0083, 0.0073, 0.0069, 0.0065, 0.005, 0.005, 0.0047], [0.0121, 0.0121, 0.01, 0.0094, 0.0073, 0.0069, 0.0061, 0.0054], [0.0594, 0.0462, 0.0383, 0.036, 0.0233, 0.0133, 0.0124, 0.0086], [0.2634, 0.0335, 0.0296, 0.0278, 0.0278, 0.0179, 0.0158, 0.0158], [0.0944, 0.0475, 0.0394, 0.037, 0.0271, 0.0254, 0.0164, 0.0154], [0.1179, 0.0407, 0.0383, 0.0263, 0.0263, 0.0232, 0.0205, 0.017], [0.1834, 0.0281, 0.0171, 0.016, 0.0133, 0.0125, 0.0081, 0.0081], [0.8457, 0.0477, 0.0421, 0.0328, 0.0199, 0.0065, 0.001, 0.001], [0.514, 0.13, 0.13, 0.1147, 0.0542, 0.0226, 0.0107, 0.0073], [0.7488, 0.1013, 0.0422, 0.029, 0.0155, 0.0155, 0.0094, 0.0094], [0.55, 0.1391, 0.058, 0.0213, 0.02, 0.0188, 0.0156, 0.0147], [0.5655, 0.0815, 0.0596, 0.0526, 0.0151, 0.0125, 0.0097, 0.0076], [0.606, 0.1968, 0.0564, 0.0111, 0.0092, 0.0052, 0.0043, 0.0043], [0.9954, 0.001, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9321, 0.0067, 0.0005, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 369, "top": [[" \u200b\u200b", "  \n\n", ".", " \n\n", "\u00a0\u00a0", "  ", "\u00a0", "   \n"], ["\uff1a**", "\uff1f**", " \u062f\u0645\u0634", " **:", " **:**", " **'", "**\u3002", " Blowjob"], ["**\u3002", "\u7684", "\uff1f**", " **\u3010", "\u3002", "\u3002**", "\uff1a**", " \n\n"], [" **\u3010", " **\u25cb", "\uff1f**", "**\u3002", " **\u300c", "\uff1a**", " **\u201c", "\u7684"], [" \n\n\n\n", " **\u3010", " \n\n", "**\u3002", " **\u201c", "  \n\n", "\uff1f**", "\uff1a**"], [" **\u3010", " \n\n\n\n", " **\u201c", " \n\n", "**\u3002", "\uff1f**", " **\u25cb", "  \n\n"], [" \n\n", " **\u3010", "  \n\n", " \n\n\n\n", "**\u3002", " **\u201c", "\uff1f**", "\n\n\n\n"], [" \n\n", "  \n\n", " **\u3010", " \n\n\n\n", "     \n\n", "      \n\n", "   \n\n", "       \n\n"], [" \n\n", "  \n\n", "\n\n", "   \n\n", "     \n\n", " \n\n\n\n", "      \n\n", "    \n\n"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "     \n\n", "      \n\n", "    \n\n", " \n\n\n"], [" \n\n", "  \n\n", " \n\n\n\n", "\n\n", "   \n\n", "\n\n\n\n", " \n\n\n", " \r\n\r\n"], ["  \n\n", " **\u3010", " \n\n", " \n\n\n\n", "   \n\n", "**\u3002", "\uff1f**", "     \n\n"], ["  \n\n", " **\u3010", " \n\n", " \n\n\n\n", "   \n\n", "**\u3002", "\n\n\n\n", "\uff1f**"], [" **\u3010", "  \n\n", "**\u3002", "\uff1f**", " \n\n", " \n\n\n\n", "\u7684", "   \n\n"], ["  \n\n", " \n\n", "   \n\n", " **\u3010", " \n\n\n\n", "**\u3002", "     \n\n", "      \n\n"], ["  \n\n", "   \n\n", " **\u3010", " \n\n", "\uff1f**", " \n\n\n\n", "**\u3002", "     \n\n"], ["  \n\n", " \n\n", "   \n\n", " \n\n\n\n", "\n\n\n\n", "  \r\n\r\n", "     \n\n", "      \n\n"], ["  \n\n", "   \n\n", " \n\n", " \n\n\n\n", "  \r\n\r\n", "**", "     \n\n", "**\u3002"], ["  \n\n", "   \n\n", "**", " **\u3010", " \n\n", "**\u3002", "\r\n\r\n", " \n\n\n\n"], ["  \n\n", " \n\n", "   \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", "  \r\n\r\n", " \n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " \n\n\n", "<|endoftext|>", "<|im_end|>", " \n\n\n\n"], ["  \n\n", " \n\n", "\r\n\r\n", "   \n\n", " \n\n\n\n", " \r\n\r\n", " **\u3010", " \n\n\n"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \n\n\n", "\n\n\n\n", "<|im_end|>", "   \n\n"], ["  \n\n", " \n\n", "\r\n\r\n", "\n\n", " \r\n\r\n", "   \n\n", " \n\n\n", " \n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", " \n\n\n", "\n\n\n\n"], [" \n\n", "  \n\n", "\n\n", " \n\n\n\n", "   \n\n", " \r\n\r\n", " \n\n\n", "\r\n\r\n"], [" \n\n", "  \n\n", " \n\n\n\n", " \r\n\r\n", " \n\n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n"], [" \n\n", "  \n\n", " \r\n\r\n", " \n\n\n\n", "<|im_end|>", "\r\n\r\n", "   \n\n", " \n\n\n"], ["  \n\n", " \n\n", " \r\n\r\n", " \n\n\n\n", "   \n\n", "  \r\n\r\n", " \n\n\n", "\r\n\r\n"], ["  \n\n", " \n\n\n\n", " \n\n", " \r\n\r\n", "  \r\n\r\n", "   \n\n", " \n\n\n", "  \n  \n"], ["  \n\n", "\ufffd", "  \r\n\r\n", " \n\n\n\n", "  \n  \n", " \r\n\r\n", "   \n\n", "?**"], ["\ufffd", "  \n\n", " \r\n\r\n", "  \r\n\r\n", "<|im_end|>", " \n\n\n\n", "?**", "]**"], ["  \n\n", " \r\n\r\n", "  \r\n\r\n", " \n\n\n\n", "   \n\n", " \n\n", "  \n  \n", "]**"], ["  \r\n\r\n", "  \n\n", " \r\n\r\n", "\uff1f**", "]**", "\r\n\r\n\r\n", " \n\n\n\n", "\r\n\r\n\r\n\r\n"], ["  \n\n", "  \r\n\r\n", " \n\n\n\n", " \r\n\r\n", "\r\n\r\n\r\n", "\r\n\r\n\r\n\r\n", "\uff1f**", "   \n\n"], ["  \n\n", "  \r\n\r\n", " \n\n\n\n", "   \n\n", "\uff1f**", "  \n\n\n", "\uff09**", "\r\n\r\n\r\n\r\n"], ["  \n\n", "\uff1f**", "\uff09**", "!**", "]**", ">**", "**\u3002", "  \r\n\r\n"], ["!**", "]**", ">**", "\uff1f**", "  \n\n", "\uff09**", "\uff01**", "?**"], ["!**", "\uff1f**", "]**", ">**", "\uff01**", "  \n\n", "\uff09**", "\u3011**"], ["!**", ">**", "\uff1f**", "]**", "  \n\n", "\uff01**", "%**", "?**"], ["  \n\n", "   \n\n", "!**", " \n\n\n", " \n    \n", " \n\n\n\n", "  \r\n\r\n", "  \n\n\n"], ["  \n\n", " \n\n\n", " \n\n\n\n", "   \n\n", " \n\n", " \n    \n", "  \n\n\n", " \n\t\n"], [">**", " \n\n\n\n", " \n\t\n", "!**", "]**", "\t\n\n\n", "\uff1f**", " \r\n\r\n"], [">**", "!**", "\uff1f**", "\uff01**", " \n\t\n", "\uff09**", "]**", "<|object_ref_end|>"], [">**", "!**", "\uff01**", "\u5e4c", "<|object_ref_start|>", "\uff1f**", "]**", "/story"], [">**", "!**", "\uff01**", "\uff1f**", "\uff09**", ")**,", "essay", "\u601d\u8003"], [">**", "\u2019**", "**\u3002", ";**", "!**", "\u3002**", "]**", "\uff01**"], ["**\u3002", "!**", "**\u201d", "\u3001", "\u2019**", "\u7684", "!\u201d.", "\u3002"], [" \u0445\u0440\u043e", "\u591a", "**\u3002", "\u8fde", ";**", "\u601d\u8003", "<|object_ref_end|>", "\u8bed\u97f3"], ["\u591a", "**\u3002", "\u603b\u7ed3", "\u56de\u7b54", "\u89e3\u7b54", "\u601d\u8003", "HK", ";**"], ["_growth", "\u91cc\u7ea6", "\u6ca1\u5e2e\u52a9", "\u4e13\u5bb6\u6307\u51fa", "_serv", "<|object_ref_end|>", "\u535a\u683c", ".END"], ["\u91cc\u7ea6", "\u56de\u7b54", "_growth", "_serv", "\u601d\u8003", "\u63d0\u7eb2", "prefs", "\u53d7\u7406"], ["\u601d\u8003", "\u0435\u0442\u043e", "\u91cc\u7ea6", "_dual", "/Framework", "\u6dc0", "\u65c5", "ackbar"], [";**", "\u601d\u8003", "anko", "NSObject", "-debug", "\u94f8\u5c31", "prefs", "\u0448\u0435\u043d\u044c"], ["\u5495", "\u79d1\u5a01", "\u62f7", "\u9a7b\u9a6c", "pch", "_mtx", "\u5e61", "\u601d\u8003"], ["\u9a7b\u9a6c", "anke", "unku", "\u79d1\u5a01", "-debug", "\ud131", "_mtx", "pch"], ["</think>", "anke", "\u9a7b\u9a6c", "Accessory", "\u683c\u91cc", "ACK", "_GEN", "\u79d1"], ["</think>", "Accessory", "anke", "\u9a7b\u9a6c", "_GEN", "_commit", "\u62f7", ".gen"], ["\u9a7b\u9a6c", "</think>", "Accessory", "anke", "entro", "\u4e0d\u6cbb", "_commit", " accesorios"], ["</think>", "\u4e0d\u6cbb", "\u9a7b\u9a6c", "bery", "Accessory", "akk", "\u0434\u0435\u044f", "rung"], ["</think>", "\u9a7b\u9a6c", "bery", "\u6dc0", "unku", "  \n\n", "\u50be", "\u0435\u0440\u044c"], ["</think>", "bery", "\u9a7b\u9a6c", "\uacbd", " TU", "amal", " legit", "\u4e09\u4e94"], ["</think>", "agos", "bery", "\u7a0e\u91d1", "reno", "\n\n", " legit", "rund"]], "p": [[0.2899, 0.1872, 0.1552, 0.0831, 0.0325, 0.0136, 0.0136, 0.0127], [0.021, 0.0127, 0.0072, 0.0064, 0.006, 0.0039, 0.0036, 0.0036], [0.3936, 0.1859, 0.1448, 0.0323, 0.0209, 0.0196, 0.0153, 0.0135], [0.1414, 0.0191, 0.018, 0.0085, 0.007, 0.0066, 0.0066, 0.0058], [0.3004, 0.1333, 0.0975, 0.0297, 0.0297, 0.0247, 0.0192, 0.0132], [0.2248, 0.1281, 0.0686, 0.0416, 0.0345, 0.0304, 0.0153, 0.0153], [0.28, 0.2471, 0.1323, 0.0403, 0.0314, 0.0148, 0.0148, 0.0109], [0.5428, 0.2906, 0.0446, 0.0198, 0.0136, 0.0093, 0.0093, 0.0064], [0.751, 0.2152, 0.02, 0.0031, 0.0014, 0.0014, 0.0013, 0.0013], [0.4987, 0.4401, 0.0171, 0.0081, 0.0049, 0.0041, 0.0026, 0.0023], [0.7222, 0.2345, 0.015, 0.0071, 0.0031, 0.003, 0.003, 0.0017], [0.2817, 0.2646, 0.125, 0.059, 0.0204, 0.0124, 0.0116, 0.0103], [0.3779, 0.1575, 0.1227, 0.0398, 0.0242, 0.0227, 0.0138, 0.0121], [0.1998, 0.1763, 0.0505, 0.0393, 0.0254, 0.0224, 0.0211, 0.0175], [0.4935, 0.0668, 0.0315, 0.0169, 0.0124, 0.0096, 0.008, 0.0058], [0.2367, 0.0363, 0.0363, 0.0283, 0.0171, 0.0134, 0.0125, 0.0098], [0.9225, 0.0358, 0.0191, 0.008, 0.0026, 0.0016, 0.0011, 0.0007], [0.9489, 0.0197, 0.0174, 0.0022, 0.0018, 0.0008, 0.0006, 0.0005], [0.5819, 0.0349, 0.0349, 0.0328, 0.029, 0.0272, 0.0137, 0.0137], [0.8523, 0.1018, 0.0138, 0.0061, 0.0035, 0.0033, 0.0027, 0.0027], [0.7979, 0.178, 0.0146, 0.0047, 0.0014, 0.0008, 0.0004, 0.0003], [0.509, 0.2405, 0.0346, 0.0287, 0.0224, 0.0185, 0.0185, 0.0136], [0.5079, 0.3081, 0.0687, 0.0223, 0.0153, 0.0153, 0.0153, 0.0119], [0.5433, 0.2566, 0.0446, 0.0347, 0.0211, 0.0164, 0.0145, 0.012], [0.4911, 0.3375, 0.1242, 0.0148, 0.007, 0.0042, 0.0033, 0.0029], [0.5384, 0.3701, 0.0163, 0.0143, 0.0127, 0.0112, 0.0099, 0.0068], [0.2883, 0.1982, 0.1279, 0.0568, 0.0252, 0.0237, 0.0196, 0.0153], [0.4703, 0.415, 0.0265, 0.0161, 0.0125, 0.0125, 0.0111, 0.0098], [0.6533, 0.2121, 0.0369, 0.0174, 0.0154, 0.0127, 0.0088, 0.0077], [0.3944, 0.1203, 0.0568, 0.0471, 0.0391, 0.0286, 0.0237, 0.0223], [0.0893, 0.0577, 0.0422, 0.0309, 0.029, 0.0256, 0.024, 0.0187], [0.0624, 0.0486, 0.0334, 0.0334, 0.026, 0.0245, 0.0216, 0.0216], [0.3531, 0.074, 0.0576, 0.0309, 0.024, 0.0212, 0.0199, 0.0176], [0.0661, 0.0621, 0.0377, 0.0178, 0.0167, 0.0157, 0.0139, 0.0115], [0.1529, 0.1051, 0.025, 0.0234, 0.0207, 0.0194, 0.0172, 0.0172], [0.2378, 0.0322, 0.0302, 0.0195, 0.0143, 0.0118, 0.0087, 0.0081], [0.1274, 0.0876, 0.0414, 0.0389, 0.0322, 0.0267, 0.0184, 0.0172], [0.1659, 0.0834, 0.061, 0.0574, 0.037, 0.0327, 0.0225, 0.0175], [0.0498, 0.0221, 0.0208, 0.0162, 0.0126, 0.0104, 0.0092, 0.0059], [0.0614, 0.029, 0.0256, 0.0199, 0.01, 0.0094, 0.0094, 0.0094], [0.1709, 0.0406, 0.0336, 0.0316, 0.0262, 0.0231, 0.0169, 0.014], [0.224, 0.2104, 0.0532, 0.0469, 0.0469, 0.0343, 0.0323, 0.0236], [0.0347, 0.027, 0.0254, 0.0186, 0.0099, 0.0093, 0.0088, 0.0088], [0.0399, 0.0095, 0.0084, 0.0069, 0.0057, 0.0045, 0.0042, 0.0039], [0.0368, 0.0153, 0.0068, 0.0032, 0.0025, 0.0022, 0.0019, 0.0018], [0.0249, 0.0092, 0.0071, 0.0028, 0.0026, 0.0026, 0.002, 0.0019], [0.0851, 0.0378, 0.0313, 0.0229, 0.0139, 0.013, 0.013, 0.0108], [0.0146, 0.0088, 0.0088, 0.0069, 0.0061, 0.0047, 0.0044, 0.0037], [0.0023, 0.0016, 0.0015, 0.0014, 0.0013, 0.0012, 0.0012, 0.0011], [0.0029, 0.0027, 0.0026, 0.0026, 0.0024, 0.0021, 0.0021, 0.002], [0.0016, 0.0013, 0.0009, 0.0009, 0.0008, 0.0007, 0.0007, 0.0006], [0.0041, 0.0016, 0.0014, 0.0011, 0.0011, 0.001, 0.0009, 0.0009], [0.0022, 0.0015, 0.001, 0.001, 0.001, 0.0009, 0.0009, 0.0009], [0.0024, 0.002, 0.0013, 0.0013, 0.0012, 0.0012, 0.0012, 0.001], [0.0016, 0.0013, 0.0012, 0.0012, 0.001, 0.001, 0.001, 0.001], [0.01, 0.0039, 0.0024, 0.002, 0.0018, 0.0016, 0.0016, 0.0015], [0.0228, 0.0045, 0.0037, 0.0027, 0.0027, 0.002, 0.002, 0.0017], [0.0281, 0.0076, 0.0071, 0.0071, 0.0043, 0.0028, 0.0026, 0.0022], [0.0266, 0.0183, 0.0125, 0.0041, 0.0032, 0.0025, 0.0023, 0.0023], [0.0442, 0.0068, 0.0064, 0.006, 0.0036, 0.0027, 0.0027, 0.0021], [0.0213, 0.0156, 0.0045, 0.0042, 0.0039, 0.0033, 0.0029, 0.0027], [0.0998, 0.0039, 0.0036, 0.0032, 0.0027, 0.0023, 0.0022, 0.0021], [0.9359, 0.0012, 0.0008, 0.0004, 0.0004, 0.0004, 0.0002, 0.0002]], "ranks": {}}, {"pos": 370, "top": [[" #####", "#####", "**\u2013", "\u0629", "<br", "\"\"\"", "es", "y"], ["\uff5e\uff5e", " **\u3010", "\uff1f**", "**\u2013", "\uff1d\uff1d\uff1d\uff1d", " \u2013**", "__)", " \\<"], [" **\u3010", "\uff1f**", "**\u3002", "__)", "**\u2013", ")__", ":__", "\u3002**"], [" **\u3010", " /**<", " **\u300c", "__)", " **>>", " **\u00ab", "':''", "\uff1f**"], [" **\u3010", " /**<", " \\<", "__)", " (__", " **#", ">**", " **)"], [" **\u3010", " /**<", " **#", " **)", " **\u300c", "__)", ">**", " **\u00ab"], [" **\u3010", " /**<", " ____", " (__", "__)", " **\u300c", "____", " **#"], [" **\u3010", " ____", " (__", " /**<", " **#", " \\<", " **\u300c", "____"], [" **\u3010", "\n\n", " \n\n", " ____", "  \n\n", "   \n\n", "    \n\n", "\r\n\r\n"], [" **\u3010", " ____", " **#", " \\<", "____", " /**<", " (__", "<br"], ["\n\n", " **\u3010", " \n\n", "  \n\n", " ____", "____", "\r\n\r\n", " ___"], [" **\u3010", " **#", " ____", " ___", " **\u300c", " /**<", " (__", " **"], [" **\u3010", " ____", " **#", " ___", " (__", " __", " **\u300c", "____"], [" **\u3010", " (__", "  \n\n", "\n\n", " ___", " **#", " ____", "____"], ["\n\n", " **\u3010", " ___", "___", "  \n\n", " (__", ".__", "\r\n\r\n"], [" **\u3010", " ___", "\n\n", " ____", " **#", "___", "\r\n\r\n", " __"], [" **\u3010", " **#", "**", "\ufe0f", "(**", "\r\n\r\n", ">**", ":__"], [" **\u3010", " **#", "**", "(**", "...\\", "  \n\n", " (**", ">**"], [" **\u3010", " **#", "\r\n\r\n", "...\\", "...**", "**", "\u2026**", " **["], ["\n\n", "\r\n\r\n", "  \n\n", " **\u3010", "...\\", " \r\n\r\n", "<|im_end|>", " **["], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>", "   \n\n"], [" **\u3010", "\r\n\r\n", " **[", " **#", "\n\n", " **", " \r\n\r\n", " \\<"], ["\r\n\r\n", "\n\n", " **\u3010", " **[", " \r\n\r\n", " **#", " **", " ___"], ["\r\n\r\n", "\n\n", " \r\n\r\n", "  \n\n", " \n\n", " **\u3010", " **[", " \\<"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "  \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", " **[", " **", "\u2011"], ["\n\n", "\r\n\r\n", " \n\n", " **[", "  \n\n", " \r\n\r\n", " **", " ___"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\\_", "\u2011", " **["], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "\u2011", " \r\n\r\n", "<|endoftext|>", " **["], ["\u2011", "  \n\n", " \n\n", "\n\n", " **", " **[", " \r\n\r\n", "\r\n\r\n"], [" **", "\u2011", " **[", "  \n\n", " \n\n", " \\<", " ________", " **#"], ["\u2011", "\ufffd", " **[", "  \n\n", " **", "<|endoftext|>", " [[", "[^"], ["\u2011", "  \n\n", " **[", "\ufffd", " **", "[^", "\u200c", ":\\"], ["\u2011", " **[", " **", " **\u201c", " **\u2013", "\ufffd", "**\u2014", "  \n\n"], ["\u2011", " **[", " **", " **\u201c", "  \n\n", "**\u2014", "\ufffd", " **+"], ["\u2011", " **[", " **", " **\u201c", "  \n\n", "**\u2014", "\ufffd", " **\u20ac"], [" **", " **[", "  \n\n", "\u2011", " **\u201c", "**", "\ufffd", "**\u2014"], [" **", " **[", "\u2011", " **\u20ac", " **\u2014", " **+", "**", " **\u2013"], ["\u2011", " **[", " **", "\ufffd", "**\u2014", " **\u2014", " **\u20ac", " *["], ["\u2011", " **[", "\ufffd", " **", "**\u2014", " **\u2014", "  \n\n", "\uff09**"], ["\u2011", "**\u2014", " **\u2014", " **", " **[", "\ufffd", "\uff09**", "]**"], [" **\u2014", "**\u2014", "\u2011", " **", " **\u201c", " **[", "\u2019**", "\uff09**"], [" **\u2014", " **\u201c", "**\u2014", "\u2019**", " **", "\uff1f**", "\uff09**", "]**"], [" **", " **\u2014", " **\u201c", "\u2019**", "\uff1f**", "\uff09**", "\uff1a**", "**\u2014"], [" **", " **\u201c", " **\u2014", "\u2019**", " **[", " **+", " **\u20ac", " **#"], [" **", " **\u201c", "\u2019**", " **\u20ac", " **+", "]**", "\uff09**", " **\u2014"], [" **\u201c", " **", "\u2019**", " **\u20ac", "\uff09**", " **\u2014", "\uff1a**", " **#"], [" **\u201c", " **", "**", "\u2019**", "\uff09**", "\uff1a**", "\u201d**", "]**"], ["\uff09**", " **\u201c", " **", "**", "\u2019**", "\u201d**", "]**", " Likely"], ["\u2019**", "\uff09**", " **\u201c", "**", "]**", "\u201d**", " **", ")**"], ["**", "\uff09**", "\u2019**", " **\u201c", ")**", " **", "**)", "]**"], ["**", " **\u201c", "\u2019**", " **", "\uff09**", " **\"", ")**", "\u201d**"], ["**", " **", "\u2019**", " **\"", " **\u201c", ">**", "\uff09**", "\u201d**"], ["**", "\u2019**", "\u201d**", "\"**", " **\u201c", " **\"", ")**", "\uff09**"], ["**", "\u2019**", "think", "\u201d**", "Based", "\"**", ";**", ")**"], ["**", "think", "\"**", "\uff09**", "\u201d**", ")**", "\u2019**", "It"], ["It", "\n\n", "Let", "This", "Based", "think", "Q", "**"], ["Based", "It", " Based", "This", "think", "Let", "\n\n", "TL"], ["Based", "It", " Based", "Let", "\n\n", "This", "The", "**"], ["It", "\n\n", "Based", " Based", "Let", "The", "This", "TL"], ["\n\n", "It", "9", "Based", "This", "What", "Let", " Based"], ["\n\n", "9", "8", "7", "What", "This", "It", " Based"], ["8", "3", "9", "7", "2", "4", "5", "6"]], "p": [[0.0404, 0.0295, 0.023, 0.0216, 0.0179, 0.0168, 0.014, 0.0109], [0.0873, 0.0639, 0.0497, 0.0387, 0.0283, 0.0266, 0.0183, 0.0172], [0.4903, 0.132, 0.0313, 0.0294, 0.019, 0.0179, 0.0123, 0.0108], [0.4233, 0.0834, 0.0736, 0.0164, 0.0128, 0.0113, 0.0113, 0.0106], [0.7435, 0.0447, 0.0136, 0.0128, 0.012, 0.0106, 0.0083, 0.0064], [0.9093, 0.0108, 0.0084, 0.0051, 0.0045, 0.0042, 0.0035, 0.0035], [0.8987, 0.0155, 0.012, 0.0083, 0.0039, 0.0037, 0.0024, 0.0022], [0.9123, 0.0147, 0.0065, 0.0058, 0.0042, 0.0037, 0.0026, 0.0026], [0.3918, 0.1441, 0.1123, 0.0772, 0.0772, 0.0468, 0.0152, 0.0134], [0.627, 0.0454, 0.0354, 0.0293, 0.0243, 0.0108, 0.0108, 0.0089], [0.4911, 0.1407, 0.0853, 0.0753, 0.0295, 0.0102, 0.0096, 0.007], [0.9126, 0.0148, 0.0115, 0.0074, 0.0051, 0.0051, 0.0031, 0.0024], [0.8214, 0.0193, 0.0141, 0.0141, 0.0133, 0.0071, 0.0067, 0.0046], [0.7112, 0.0139, 0.009, 0.009, 0.009, 0.009, 0.009, 0.0079], [0.3286, 0.2121, 0.0392, 0.0287, 0.0253, 0.0185, 0.0174, 0.0174], [0.418, 0.0566, 0.0531, 0.0284, 0.0251, 0.0208, 0.0162, 0.0162], [0.334, 0.0618, 0.0311, 0.0242, 0.0242, 0.0214, 0.0156, 0.013], [0.656, 0.0475, 0.037, 0.0198, 0.0088, 0.0088, 0.0088, 0.0083], [0.7083, 0.0275, 0.0214, 0.0177, 0.0147, 0.0079, 0.0065, 0.0061], [0.2948, 0.1392, 0.1229, 0.07, 0.058, 0.0258, 0.0177, 0.0166], [0.8673, 0.0554, 0.0336, 0.0204, 0.008, 0.0019, 0.0016, 0.001], [0.4707, 0.0871, 0.0637, 0.0438, 0.0194, 0.0171, 0.0118, 0.0104], [0.2294, 0.2294, 0.2025, 0.0331, 0.0292, 0.0242, 0.0213, 0.02], [0.3955, 0.1206, 0.1133, 0.0535, 0.0286, 0.0269, 0.0269, 0.0253], [0.5627, 0.1612, 0.1423, 0.0462, 0.0317, 0.0132, 0.0085, 0.0033], [0.4162, 0.1966, 0.1531, 0.082, 0.0497, 0.0342, 0.0076, 0.0052], [0.3321, 0.1384, 0.0789, 0.0789, 0.0741, 0.0614, 0.0422, 0.0273], [0.6265, 0.1398, 0.1398, 0.04, 0.0214, 0.0042, 0.0037, 0.0026], [0.4492, 0.3087, 0.1287, 0.0369, 0.0325, 0.0136, 0.012, 0.0016], [0.6696, 0.1494, 0.08, 0.0178, 0.0139, 0.0131, 0.0079, 0.007], [0.6118, 0.289, 0.0391, 0.0068, 0.0039, 0.0034, 0.003, 0.0023], [0.7253, 0.0765, 0.0117, 0.0117, 0.0081, 0.0076, 0.0063, 0.0041], [0.8146, 0.0406, 0.0297, 0.0279, 0.0124, 0.0052, 0.0048, 0.0035], [0.7058, 0.1082, 0.0451, 0.0241, 0.0121, 0.0083, 0.0069, 0.0054], [0.2684, 0.2521, 0.0987, 0.0871, 0.0207, 0.0151, 0.0118, 0.0104], [0.4455, 0.2105, 0.1277, 0.047, 0.0196, 0.0135, 0.0087, 0.0082], [0.4446, 0.3055, 0.0773, 0.0531, 0.0143, 0.0081, 0.0072, 0.0068], [0.7957, 0.1383, 0.01, 0.0069, 0.0069, 0.0069, 0.0047, 0.0037], [0.5931, 0.1323, 0.0803, 0.0625, 0.0109, 0.009, 0.0079, 0.0048], [0.6423, 0.0925, 0.0527, 0.034, 0.0171, 0.0111, 0.0086, 0.0071], [0.4169, 0.0821, 0.0498, 0.0413, 0.0342, 0.0342, 0.0172, 0.0172], [0.1799, 0.1236, 0.0905, 0.0515, 0.0276, 0.019, 0.0167, 0.0095], [0.328, 0.1065, 0.0732, 0.0732, 0.0417, 0.0368, 0.0223, 0.021], [0.2611, 0.2304, 0.1398, 0.0514, 0.0483, 0.0376, 0.0332, 0.0259], [0.4023, 0.1901, 0.058, 0.0481, 0.033, 0.0257, 0.0188, 0.0177], [0.3287, 0.1873, 0.0689, 0.0445, 0.0224, 0.021, 0.0185, 0.0185], [0.2491, 0.1038, 0.063, 0.0279, 0.0218, 0.0204, 0.018, 0.015], [0.4113, 0.1513, 0.104, 0.0557, 0.0407, 0.028, 0.015, 0.015], [0.1781, 0.1477, 0.108, 0.051, 0.0397, 0.0329, 0.0176, 0.0129], [0.2045, 0.1695, 0.124, 0.0852, 0.0429, 0.0403, 0.0334, 0.0334], [0.3326, 0.108, 0.0655, 0.0578, 0.0423, 0.0329, 0.0309, 0.0226], [0.2572, 0.1882, 0.0784, 0.0737, 0.0611, 0.0447, 0.0225, 0.0175], [0.5071, 0.0999, 0.0606, 0.0502, 0.0502, 0.0305, 0.0269, 0.0237], [0.2119, 0.094, 0.0503, 0.0473, 0.0325, 0.0287, 0.0223, 0.021], [0.0831, 0.0197, 0.0144, 0.0099, 0.0077, 0.0073, 0.0073, 0.006], [0.1495, 0.0179, 0.0158, 0.0148, 0.0131, 0.0108, 0.0102, 0.0058], [0.0356, 0.0149, 0.0123, 0.0123, 0.0109, 0.0096, 0.009, 0.0085], [0.074, 0.0422, 0.029, 0.0226, 0.0187, 0.0176, 0.0121, 0.0088], [0.1167, 0.0429, 0.0379, 0.0277, 0.026, 0.0216, 0.0116, 0.0079], [0.0552, 0.0552, 0.0552, 0.0335, 0.0295, 0.0216, 0.0191, 0.0179], [0.36, 0.0261, 0.023, 0.0216, 0.0203, 0.0168, 0.0158, 0.014], [0.7313, 0.0195, 0.0098, 0.0056, 0.0049, 0.0046, 0.0041, 0.0038], [0.2374, 0.2095, 0.1849, 0.0873, 0.06, 0.053, 0.053, 0.0467]], "ranks": {}}, {"pos": 371, "top": [[".", " \u200b\u200b", "\u00a0\u00a0", "\u00a0", ",", "  \n\n", ";", "?"], ["  \n\n", "  \r\n\r\n", "laves", "  \r\n", "  \n  \n", "\u7ef4\u4e5f\u7eb3", "   \n\n", " \n\n\n\n"], ["\u2026**", "**\u3002", "\u3002", "\uff1f**", "**?", "**!", "**.", "[__"], [" **\u3010", " Blowjob", "\uff1f**", " milfs", " **\u25cb", " cumshot", " **:**", " **:"], [" **\u201c", " \n\n\n\n", "  \n\n", " **\u3010", "\uff1f**", "\uff1a**", " **+", " **:"], [" **\u201c", "\uff1f**", " \n\n\n\n", "  \n\n", " **\u3010", "**\u3002", " **+", "**!"], ["  \n\n", " \n\n", " **\u3010", "**\u3002", "\uff1f**", " **\u201c", " \n\n\n\n", "\u3002**"], ["  \n\n", " \n\n", "   \n\n", " \n\n\n\n", "     \n\n", "  \r\n\r\n", " **\u3010", "    \n\n"], ["  \n\n", " \n\n", "   \n\n", "     \n\n", "    \n\n", " \n\n\n\n", "      \n\n", "        \n\n"], ["  \n\n", " \n\n", " \n\n\n\n", "  \r\n\r\n", "   \n\n", " \r\n\r\n", "     \n\n", "**!"], ["  \n\n", " \n\n", " \n\n\n\n", "   \n\n", "\n\n\n\n", "<|im_end|>", "  \r\n\r\n", "\n\n"], [" **\u3010", " **'", "  \n\n", " **", " **\u201c", " \n\n", " **#", " **+"], [" **\u3010", "**!", " **'", "  \n\n", " **", "...**", " \n\n", " **#"], [" \n\n", "  \n\n", "...**", "**!", "\u2026**", " **\u3010", "**\u3002", "**?"], ["  \n\n", " \n\n", "   \n\n", "\n\n", "...**", "**!", "  \r\n\r\n", "\r\n\r\n"], ["  \n\n", " \n\n", " impactful", "**!", " **", " nuanced", " leveraging", "   \n\n"], ["  \n\n", " \n\n", " **", "   \n\n", "**!", "<|im_end|>", "...**", "\n\n"], ["  \n\n", " \n\n", "   \n\n", " **", "<|im_end|>", "\n\n", "...**", "**!"], ["  \n\n", "\n\n", " \n\n", "<|im_end|>", "   \n\n", "\n\n\n\n", "\r\n\r\n", " **"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "   \n\n", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "\n\n\n\n", "<|im_end|>"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", "\n\n\n\n", " **", "   \n\n", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\n\n\n\n", "<|endoftext|>", "   \n\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "   \n\n", "\n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", "<|im_end|>", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\n\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", "\n\n\n\n"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", "<|endoftext|>", "   \n\n", "<|im_end|>", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "<|im_end|>", "\r\n\r\n", "   \n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", " **"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", "   \n\n", " @", " \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", "   \n\n", "  \r\n\r\n", " \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", " **", "  \r\n\r\n", "\n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " **", "  \r\n\r\n"], [" **", "  \n\n", " **[", " \n\n", " **\u201c", "<|endoftext|>", " **#", "  \r\n\r\n"], ["  \n\n", " **", "<|endoftext|>", " **[", " **\u201c", " \n\n", " relentless", " **#"], ["  \n\n", " **", "<|endoftext|>", " **[", " \n\n", " **\u201c", "  \r\n\r\n", " relentless"], ["  \n\n", " **", "<|endoftext|>", " **[", " aggressively", " relentless", " **\u201c", " brutal"], [" **", " aggressively", "  \n\n", " relentless", " stark", " **\u2014", " **\u201c", " brutal"], [" **", " aggressively", " **\u2014", " **\u201c", "  \n\n", " stark", " **[", " relentless"], [" **", " **\u201c", "  \n\n", " **\u2014", " aggressively", " **[", " **#", " stark"], [" **", " **\u201c", " **\u2014", "  \n\n", " aggressively", " **[", " **#", " stark"], [" **", " **\u201c", "  \n\n", " aggressively", " **#", " **'", " **\u2014", " **\""], [" **", " **\u201c", "  \n\n", " **#", " **\"", " **'", " **[", " **\u2014"], [" **", " **\u201c", " **[", " **\"", " **#", " **\u2014", "  \n\n", " **'"], [" **", " **\u201c", " **\"", " **'", " **#", " **[", "**", " **\u2014"], [" **", " **\u201c", " **\"", " **#", "**", " **'", " **[", " **\u3010"], [" **", " **\u201c", "\u2019**", "**", " **\"", " **[", " **#", ";**"], [" **", "**", " **\u201c", "\u2019**", " **[", " **\"", ";**", " **#"], [" **", "**", " **\u201c", " **\"", "\u2019**", " **[", ";**", "-**"], [" **", "**", " **\u201c", "\u2019**", " **\"", " **[", ";**", "-**"], [" **", "**", "\u2019**", " **\u201c", " **\"", " **[", "-**", ";**"], [" **", "**", " **\u201c", " **\"", "\u2019**", "-**", ">**", ";**"], [" **", "**", " **\u201c", "\u2019**", " **\"", ">**", ";**", "-**"], [" **", "**", " **\u201c", "\u2019**", " **\"", "**\u201d", ">**", ")**"], [" **", "**", " **\u201c", "\u2019**", " **\"", ")**", "**\u201d", ">**"], [" **", "**", " **\u201c", " **\"", "\u2019**", " Gut", "-**", ")**"], [" **", "**", " **\u201c", " **\"", " What", " Gut", " what", "\u2019**"], [" **", "**", " **\"", "**,", "**.", " **\u201c", " **.", " **'"], ["**", " **", "What", "This", "G", "The", "###", "\"**"]], "p": [[0.6586, 0.1144, 0.0837, 0.0508, 0.0448, 0.0069, 0.0044, 0.0042], [0.0144, 0.0027, 0.002, 0.002, 0.0015, 0.0014, 0.0013, 0.0013], [0.6358, 0.0916, 0.0808, 0.018, 0.0159, 0.0124, 0.0109, 0.0109], [0.0359, 0.0316, 0.0279, 0.0279, 0.018, 0.0159, 0.014, 0.0103], [0.2214, 0.0867, 0.0464, 0.0361, 0.0361, 0.0361, 0.0281, 0.0264], [0.2144, 0.0741, 0.0654, 0.0614, 0.0449, 0.0422, 0.0226, 0.0199], [0.6127, 0.1755, 0.0444, 0.0325, 0.0197, 0.0163, 0.0099, 0.0068], [0.6584, 0.311, 0.0121, 0.0035, 0.0024, 0.0021, 0.0018, 0.0011], [0.4982, 0.4982, 0.0026, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.8156, 0.0974, 0.0217, 0.014, 0.0116, 0.0026, 0.0023, 0.0019], [0.5884, 0.4044, 0.0035, 0.0008, 0.0004, 0.0003, 0.0003, 0.0001], [0.1798, 0.0798, 0.0749, 0.0661, 0.0621, 0.0584, 0.0427, 0.0293], [0.1249, 0.0628, 0.052, 0.0489, 0.0459, 0.0279, 0.0279, 0.0262], [0.1851, 0.1739, 0.1055, 0.0772, 0.0564, 0.0342, 0.025, 0.0118], [0.7197, 0.2648, 0.0022, 0.0016, 0.001, 0.0005, 0.0005, 0.0005], [0.485, 0.0955, 0.0213, 0.0129, 0.0089, 0.0078, 0.0074, 0.0048], [0.5173, 0.4029, 0.0095, 0.0074, 0.0051, 0.0033, 0.0021, 0.002], [0.8632, 0.1168, 0.0066, 0.0027, 0.0021, 0.0011, 0.0007, 0.0007], [0.6442, 0.237, 0.0988, 0.0092, 0.0019, 0.0017, 0.001, 0.0007], [0.5196, 0.2781, 0.1911, 0.0035, 0.0019, 0.0019, 0.0015, 0.0006], [0.6088, 0.224, 0.1358, 0.0303, 0.0004, 0.0002, 0.0001, 0.0001], [0.3514, 0.3514, 0.2131, 0.0186, 0.0037, 0.0032, 0.0029, 0.0021], [0.6001, 0.1948, 0.1948, 0.0046, 0.0015, 0.0009, 0.0008, 0.0007], [0.4893, 0.2619, 0.204, 0.0402, 0.0016, 0.0007, 0.0007, 0.0005], [0.626, 0.2303, 0.1397, 0.0012, 0.0011, 0.0006, 0.0004, 0.0002], [0.5521, 0.2608, 0.1793, 0.0023, 0.002, 0.0014, 0.0006, 0.0005], [0.809, 0.1095, 0.0664, 0.0115, 0.0023, 0.0003, 0.0002, 0.0002], [0.7415, 0.1655, 0.0886, 0.0034, 0.0006, 0.0001, 0.0001, 0.0001], [0.7364, 0.145, 0.1129, 0.0016, 0.0016, 0.0007, 0.0005, 0.0004], [0.6047, 0.1732, 0.1529, 0.0637, 0.0022, 0.0013, 0.0006, 0.0004], [0.4033, 0.3559, 0.1309, 0.102, 0.0024, 0.0014, 0.0007, 0.0007], [0.6976, 0.1556, 0.0944, 0.0446, 0.0015, 0.0007, 0.0005, 0.0003], [0.3772, 0.3772, 0.115, 0.045, 0.0047, 0.0027, 0.0024, 0.0019], [0.8558, 0.0796, 0.0332, 0.0108, 0.0058, 0.0029, 0.0027, 0.0027], [0.8541, 0.0546, 0.0189, 0.0167, 0.0095, 0.0084, 0.0069, 0.0065], [0.9195, 0.0404, 0.0149, 0.009, 0.0035, 0.0033, 0.0023, 0.0016], [0.9461, 0.0173, 0.0105, 0.0064, 0.0044, 0.003, 0.0027, 0.0019], [0.5624, 0.3411, 0.015, 0.0091, 0.008, 0.0043, 0.0038, 0.0038], [0.3421, 0.3214, 0.0281, 0.0248, 0.0086, 0.0055, 0.0049, 0.0046], [0.4432, 0.1967, 0.0929, 0.0266, 0.0081, 0.0081, 0.0049, 0.0043], [0.398, 0.1071, 0.0573, 0.0225, 0.0145, 0.0145, 0.0113, 0.01], [0.0935, 0.047, 0.047, 0.0173, 0.0153, 0.0153, 0.0135, 0.0135], [0.2292, 0.048, 0.048, 0.0242, 0.0138, 0.0138, 0.0121, 0.0107], [0.4794, 0.0609, 0.0573, 0.0475, 0.0211, 0.0198, 0.0128, 0.0099], [0.6701, 0.0402, 0.0168, 0.0168, 0.0131, 0.0115, 0.0084, 0.0084], [0.7233, 0.0716, 0.0383, 0.0086, 0.008, 0.0059, 0.0049, 0.0046], [0.9085, 0.0399, 0.0311, 0.0035, 0.0031, 0.0019, 0.0015, 0.0012], [0.9299, 0.0525, 0.0034, 0.0034, 0.0026, 0.0014, 0.0014, 0.0012], [0.9953, 0.0028, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9822, 0.0035, 0.0031, 0.0028, 0.0019, 0.001, 0.001, 0.0006], [0.9541, 0.0254, 0.0034, 0.0034, 0.0027, 0.0024, 0.0014, 0.001], [0.9952, 0.0022, 0.0009, 0.0004, 0.0004, 0.0003, 0.0001, 0.0001], [0.982, 0.0085, 0.0031, 0.0017, 0.0015, 0.001, 0.0005, 0.0002], [0.9805, 0.0123, 0.0017, 0.0017, 0.0015, 0.0005, 0.0003, 0.0002], [0.9735, 0.0157, 0.0027, 0.0027, 0.0024, 0.0003, 0.0003, 0.0003], [0.9662, 0.0292, 0.0015, 0.001, 0.001, 0.0002, 0.0001, 0.0001], [0.9076, 0.0745, 0.0079, 0.0069, 0.0015, 0.0001, 0.0001, 0.0001], [0.901, 0.0838, 0.0078, 0.0042, 0.0017, 0.0001, 0.0001, 0.0001], [0.9602, 0.0329, 0.0044, 0.001, 0.001, 0.0, 0.0, 0.0], [0.9222, 0.0757, 0.0008, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.8505, 0.1478, 0.0006, 0.0004, 0.0001, 0.0001, 0.0001, 0.0], [0.6223, 0.3774, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {}}, {"pos": 372, "top": [["**", "**.", "**\u2013", "-**", " **", ".", "\u2026**", "(**"], [" **", "-**", "'**", "\uff1f**", "\u2019**", "(**", "**", " **'"], ["\u2026**", "\uff1f**", "**", "\u2019**", "'**", " **", "-**", "(**"], ["\uff1f**", " **", " **\u300c", "\u2019**", "'**", "\u300d**", " **\u00ab", " **\u201e"], [" **", "**", "-**", "'**", "\u2019**", "\uff1f**", " **\u201c", "...**"], [" **", "-**", "**", "\u2019**", " **\u201c", "(**", "\uff1f**", "'**"], ["**", " **", "\u2019**", "-**", "'**", "\uff1f**", "\uff09**", "\u201d**"], ["**", " **", "-**", "'**", "\u2019**", "\uff1f**", "(**", " **'"], ["**", " **", "...**", "\u2019**", "'**", "-**", "(**", "\uff1f**"], ["**", " **", "...**", "-**", "'**", "\u2019**", ">**", "(**"], ["**", "...**", " **", "-**", "'**", "\u2019**", "(**", "!**"], [" **", "**", "...**", "'**", "-**", " **'", "\uff1f**", " **#"], [" **", "**", "...**", "'**", "-**", " **'", "(**", "\u2019**"], ["...**", "**", " **", "'**", "-**", "\uff1f**", "(**", " **'"], ["**", "...**", " **", "'**", "\u2026**", "(**", "-**", "\u2019**"], ["**", " **", "...**", "'**", "-**", "\u2026**", "(**", "!**"], ["**", "...**", " **", "\u2026**", "(**", "'**", "-**", "!**"], ["**", " **", "...**", "-**", "  \n\n", "(**", "\u2026**", "'**"], ["**", "...**", " **", "'**", "-**", " **'", "\u2026**", "(**"], ["**", "...**", "  \n\n", " **", "\u2026**", "'**", " **'", "-**"], ["  \n\n", "**", "...**", " \n\n", "\n\n", "<|endoftext|>", " **", "\u2026**"], ["**", "...**", " **", "'**", " **'", "-**", "\u2026**", "\u2019**"], ["**", "...**", "  \n\n", " **", "\n\n", "'**", " \n\n", "\u2026**"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "**", "...**", " **", "  \n  \n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "**", "...**", "<|endoftext|>", "  \n  \n"], ["  \n\n", " \n\n", " **", "**", "\n\n", "...**", " **'", "\u2026**"], ["  \n\n", "\n\n", " \n\n", " **", "...**", "**", "\u2026**", " **["], ["\n\n", "  \n\n", " \n\n", " **", "...**", "**", "   \n\n", "\u2026**"], ["  \n\n", "\n\n", " \n\n", "...**", "**", "\u2026**", " **", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "...**", "**", "\u2026**", " **", "   \n\n"], ["  \n\n", " \n\n", " **", "\n\n", "<|endoftext|>", "**", "...**", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", " **", "  \n  \n", "  \n\n\n"], ["  \n\n", " \n\n", "\n\n", " **", "<|endoftext|>", "   \n\n", "  \n  \n", "  \n\n\n"], ["  \n\n", " **", " \n\n", "\n\n", "**", "   \n\n", "<|endoftext|>", " **["], ["  \n\n", " **", " \n\n", "**", " **[", " **#", "\n\n", " **'"], ["  \n\n", " \n\n", "\n\n", " **", "**", "   \n\n", "\u2026**", "  \n  \n"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "**", "  \n  \n", "**\u2014"], ["  \n\n", " \n\n", " **", "\n\n", "**", "   \n\n", "\u2026**", "\u2019**"], ["  \n\n", " **", " \n\n", "\n\n", "**", "\u2026**", "...**", " **'"], ["  \n\n", " **", " \n\n", "**", "\u2026**", "...**", "\u2019**", "<|endoftext|>"], ["  \n\n", " \n\n", "**", " **", "\n\n", "\u2026**", "  \n  \n", "...**"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "  \n  \n", "**", "\t\n\n"], ["  \n\n", " **", " \n\n", "\u2019**", "**", " **'", "...**", "\u2026**"], ["  \n\n", " **", "**", " \n\n", "  \n  \n", "\uff1a**", ">**", " **:"], [" **", "...**", "  \n\n", "**", " **'", "\u2026**", " **[", " **#"], ["  \n\n", " **", " \n\n", " **'", "**", " Immediate", ":**", "\uff1a**"], ["  \n\n", " **", "**", "\uff1a**", ":**", " \n\n", " **'", "%**"], [" **", "**", "\uff1a**", "  \n\n", ":**", " **'", "'**", "]**"], [" **", "\uff1a**", "**", " **'", "'**", "\u2019**", ":**", "%**"], [" Immediate", " Reality", " Priority", " Scenario", " Crisis", "\uff1a**", ":**", " Context"], [";**", "\uff1a**", ">**", "%**", "]**", "?**", "\u2019**", ":**"], [";**", " Immediate", "%**", "?**", "\uff1a**", ":**", "!**", " Prediction"], [";**", " Biggest", " Reality", "\uff1a**", " Prediction", "\u6700\u5148", "%**", ":**"], [" Reality", " Prediction", " Immediate", " Biggest", ";**", " Who", "\uff1a**", ":**"], [" Reality", ";**", " Prediction", ">**", "\uff1a**", " Diagnosis", " Immediate", ":**"], [" what", "what", " What", " whats", "\u4ec0\u4e48\u662f", "What", " WHAT", ".what"], [" what", "what", " What", "What", "\u4ec0\u4e48\u662f", " whats", " g\u00ec", ".what"], [" what", "what", " What", "What", "\u4ec0\u4e48\u662f", " whats", ".what", " WHAT"], [" what", " What", "what", "What", " whats", "\u4ec0\u4e48\u662f", " WHAT", ".what"], [" what", " Gut", " What", "what", "gut", " gut", "What", "\u4ec0\u4e48\u662f"], [" what", " What", " Gut", "what", " gut", "What", "gut", ".what"], [" Gut", " What", " what", "What", "what", " gut", "gut", ".what"], ["G", "What", " What", " Gut", "what", " what", "The", "gut"]], "p": [[0.4738, 0.2103, 0.0365, 0.0303, 0.0303, 0.0267, 0.0236, 0.0173], [0.5009, 0.0986, 0.0986, 0.0678, 0.0528, 0.0528, 0.0363, 0.0104], [0.2674, 0.236, 0.1263, 0.0868, 0.0766, 0.0676, 0.0527, 0.022], [0.2879, 0.0935, 0.0935, 0.0728, 0.0642, 0.0567, 0.05, 0.0268], [0.4923, 0.1811, 0.1098, 0.0458, 0.0404, 0.0278, 0.0191, 0.0149], [0.5826, 0.2429, 0.0614, 0.0226, 0.0199, 0.0176, 0.0155, 0.0039], [0.668, 0.1689, 0.0427, 0.0333, 0.0178, 0.0157, 0.0108, 0.0058], [0.6178, 0.177, 0.0947, 0.0211, 0.0187, 0.0113, 0.0088, 0.0078], [0.6869, 0.1194, 0.0639, 0.0235, 0.0183, 0.0183, 0.0098, 0.0076], [0.5391, 0.1363, 0.1203, 0.073, 0.0501, 0.0184, 0.0087, 0.0077], [0.818, 0.0862, 0.0761, 0.0049, 0.0043, 0.0016, 0.0014, 0.0008], [0.7317, 0.099, 0.099, 0.025, 0.0134, 0.0104, 0.003, 0.0023], [0.5641, 0.2664, 0.098, 0.0281, 0.017, 0.0055, 0.0038, 0.0034], [0.2651, 0.234, 0.234, 0.0975, 0.0592, 0.0169, 0.015, 0.0132], [0.4829, 0.2585, 0.2281, 0.0114, 0.0061, 0.0029, 0.0029, 0.0014], [0.6209, 0.2588, 0.0952, 0.01, 0.0047, 0.002, 0.0017, 0.0015], [0.7959, 0.1221, 0.074, 0.002, 0.0015, 0.0012, 0.0006, 0.0006], [0.8759, 0.0635, 0.0436, 0.0028, 0.0028, 0.0028, 0.0025, 0.0015], [0.7333, 0.1636, 0.0876, 0.0026, 0.0026, 0.0021, 0.0016, 0.0009], [0.5291, 0.3636, 0.0558, 0.0181, 0.0059, 0.0046, 0.0025, 0.0022], [0.4453, 0.306, 0.1638, 0.0323, 0.0119, 0.0092, 0.0072, 0.0056], [0.5481, 0.2934, 0.1079, 0.0129, 0.0069, 0.0047, 0.0042, 0.0037], [0.4992, 0.2358, 0.1262, 0.0765, 0.0104, 0.0081, 0.0071, 0.0063], [0.6038, 0.196, 0.0817, 0.0386, 0.0341, 0.0207, 0.0098, 0.0022], [0.8293, 0.099, 0.0681, 0.0008, 0.0007, 0.0005, 0.0004, 0.0004], [0.8608, 0.0486, 0.0295, 0.0179, 0.0158, 0.0139, 0.0024, 0.0021], [0.4837, 0.2934, 0.1223, 0.035, 0.0309, 0.0213, 0.0024, 0.0015], [0.6048, 0.2857, 0.1051, 0.0019, 0.001, 0.0005, 0.0002, 0.0001], [0.8038, 0.1088, 0.0748, 0.007, 0.002, 0.0014, 0.0011, 0.0004], [0.9388, 0.0467, 0.0092, 0.0023, 0.0009, 0.0008, 0.0005, 0.0002], [0.7851, 0.1364, 0.0391, 0.0304, 0.0013, 0.001, 0.001, 0.0009], [0.6408, 0.2357, 0.0983, 0.0219, 0.0009, 0.0005, 0.0002, 0.0001], [0.8491, 0.1014, 0.0176, 0.0166, 0.0061, 0.0013, 0.0008, 0.0002], [0.9072, 0.0452, 0.0399, 0.0033, 0.0006, 0.0005, 0.0004, 0.0004], [0.836, 0.1453, 0.0105, 0.0021, 0.0012, 0.0006, 0.0004, 0.0004], [0.9662, 0.0257, 0.0039, 0.0021, 0.001, 0.0004, 0.0001, 0.0001], [0.9671, 0.0201, 0.0095, 0.0015, 0.0007, 0.0004, 0.0001, 0.0], [0.9337, 0.0282, 0.0249, 0.0036, 0.0032, 0.001, 0.0003, 0.0002], [0.8887, 0.0644, 0.0184, 0.0064, 0.0053, 0.0017, 0.001, 0.0009], [0.8768, 0.0437, 0.0171, 0.011, 0.0076, 0.0049, 0.0025, 0.0022], [0.9235, 0.0279, 0.0085, 0.0046, 0.0029, 0.0026, 0.002, 0.0019], [0.8302, 0.1273, 0.0172, 0.0056, 0.0013, 0.0009, 0.0008, 0.0005], [0.5223, 0.2467, 0.0295, 0.0139, 0.0123, 0.0115, 0.0096, 0.0084], [0.6931, 0.1365, 0.0209, 0.0163, 0.0087, 0.0082, 0.0077, 0.0072], [0.6066, 0.1534, 0.0724, 0.0388, 0.0172, 0.0162, 0.0087, 0.0046], [0.3618, 0.2818, 0.0246, 0.0217, 0.0169, 0.014, 0.0132, 0.0096], [0.5016, 0.3042, 0.0363, 0.0321, 0.0172, 0.0172, 0.0086, 0.0059], [0.327, 0.1983, 0.175, 0.0644, 0.0324, 0.0268, 0.0184, 0.0135], [0.3988, 0.1663, 0.1295, 0.0371, 0.0371, 0.0289, 0.0199, 0.0187], [0.1234, 0.0483, 0.0454, 0.0401, 0.0376, 0.0332, 0.0243, 0.0202], [0.2046, 0.1593, 0.0966, 0.0753, 0.0664, 0.0586, 0.0517, 0.0456], [0.0936, 0.0568, 0.0471, 0.0471, 0.039, 0.039, 0.0324, 0.0286], [0.1613, 0.0383, 0.0318, 0.0298, 0.028, 0.028, 0.0247, 0.0232], [0.1544, 0.0685, 0.0501, 0.0471, 0.0367, 0.0196, 0.0173, 0.0153], [0.122, 0.1077, 0.1012, 0.0396, 0.035, 0.029, 0.024, 0.0226], [0.6499, 0.2709, 0.0685, 0.0023, 0.0021, 0.0021, 0.0013, 0.0007], [0.4974, 0.2663, 0.2074, 0.0055, 0.0055, 0.0055, 0.0026, 0.0018], [0.5965, 0.1937, 0.1937, 0.0058, 0.0046, 0.0017, 0.0013, 0.001], [0.5727, 0.3474, 0.0684, 0.0082, 0.0011, 0.0009, 0.0007, 0.0003], [0.4926, 0.4347, 0.0315, 0.0149, 0.0131, 0.0116, 0.001, 0.0001], [0.469, 0.2845, 0.2216, 0.0076, 0.0076, 0.0059, 0.0028, 0.0004], [0.3665, 0.3665, 0.1731, 0.0301, 0.0265, 0.0182, 0.0161, 0.0006], [0.4818, 0.4818, 0.0272, 0.0029, 0.0016, 0.0009, 0.0006, 0.0005]], "ranks": {}}, {"pos": 373, "top": [["\u00a0", ".", ",", "?", " \u2013", "\u00a0\u00a0", "<|endoftext|>", "\u2026."], ["?", "??", "?,", ",", "?\u201d", "\u200c", "?[", "?."], ["?", "\uff1f", ",", ".", "\u2026.", "\u2026..", "\u2026", "\u2026\u2026\u2026\u2026"], ["\uff3f\uff3f", " Shemale", "\uff0a\uff0a\uff0a\uff0a", "\uc3df", "-------------</", " \u300e", "----------</", "\ufffd\ufffd"], ["\ufffd\ufffd", "\uff1f", "\u866b", " **\u201e", "\u4e3b\u610f", "\ufeff#", " \"@", "\uff01"], ["\uff1f", "\ufffd\ufffd", " **:", " **\u201e", " Shemale", "letin", "\uff01", " **\u300c"], ["\uff1f", " **\u300c", " **\u3010", " \u300e", " \u300d", "\uff1f**", " **\u201e", "\ufffd\ufffd"], [" **\u300c", " **\u201e", " Shemale", " **\u3010", "\uff1f", "\uc3df", "\uff1f\u300d", "\ufffd\ufffd"], ["\uff1f", " **\u300c", "\uff1f\u300d", "?!", "?\u201d.", "!?", " **\u201e", "\uff01\uff1f"], [" \u00a0 \u00a0 \u00a0 \u00a0", "?!", " \u00a0 \u00a0", "soever", "UGHT", "!?", "?=", "\uff1f\u300d"], ["\uff1f", " \u00a0 \u00a0 \u00a0 \u00a0", " \u00a0 \u00a0", "?!", "?=", "?(", "?\\", "\uff1f\u300d"], [" **\u300c", " ''", " **\u3010", "\uff1f\u300d", " ?**", "\u505a\u4ec0\u4e48", " **\u00ab", "\uff3f\uff3f"], [" **\u300c", " ''", "\uff1f\u300d", "\u505a\u4ec0\u4e48", "\u600e\u4e48\u4e86", " g\u00ec", ":''", "\u53eb\u4ec0\u4e48"], [" **\u300c", "?!", "\uff1f\u300d", "\u600e\u4e48\u4e86", "\u505a\u4ec0\u4e48", " ''", " g\u00ec", "\u4ec0\u4e48\u5462"], ["\uff1f", "?!", "\u4ec0\u4e48", " ''", "\uff1f\u300d", "\u600e\u4e48\u4e86", "\u505a\u4ec0\u4e48", " g\u00ec"], ["?!", " savvy", "\u4ec0\u4e48\u5462", "\uff1f\u300d", " g\u00ec", " vibe", "\u4e8b\u513f", "\u73a9\u610f\u513f"], ["?!", " savvy", "??", "???", "?...", "\u4ec0\u4e48\u5462", " g\u00ec", "\u52b2\u513f"], ["?!", "\uff1f", "?...", "?\u00bb", "??", "?", "\u4ec0\u4e48", "???"], ["?!", "?...", "?\u00bb", "??", "\u4ec0\u4e48", "!?", "???", "?="], ["?!", "?...", "\u4ec0\u4e48", "\uff1f", "?=", "\n\n", "???", "\u5565"], ["\n\n", "\u4ec0\u4e48", "?...", " \n\n", "\uff1f", "...\\", "?=", "...**"], ["\u4ec0\u4e48", " ?**", " g\u00ec", "\uff1f", "**?", "?=", "\u662f\u4ec0\u4e48", "?!"], ["\u4ec0\u4e48", " ?**", "\n\n", "\uff1f", "?=", "?...", " g\u00ec", "\u662f\u4ec0\u4e48"], ["\n\n", "<|endoftext|>", "?...", " \n\n", "\u4ec0\u4e48", "?=", " ?", "\u00a0"], ["\n\n", " \n\n", "  \n\n", "?...", "?\\", "\r\n\r\n", "...\\", " \r\n\r\n"], ["\n\n", " \n\n", "?...", "...**", " ?**", "\u4ec0\u4e48", "  \n\n", "\r\n\r\n"], ["\n\n", " ?**", "\u4ec0\u4e48", "...**", " \n\n", "?...", " g\u00ec", "/how"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "?...", "<|endoftext|>", " ?**"], ["\n\n", " \n\n", "  \n\n", "...**", "?...", "\r\n\r\n", "\u2026**", " ?**"], ["\n\n", " \n\n", "  \n\n", "...", "?...", " ...", "...**", " ...\\"], ["\n\n", " \n\n", "  \n\n", "?...", " ...", "...", "   \n\n", " ?"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", " ...", "\ufffd", "   \n\n", " \n\n\n"], ["  \n\n", " \n\n", " \u2014", "\ufffd", "\n\n", "\u200b", "<|endoftext|>", " \u00ad"], ["  \n\n", " \n\n", "\ufffd", "<|endoftext|>", " \u2014", " \u00ad", "\n\n", "\u2011"], ["  \n\n", " \u2014", "\ufffd", " \n\n", "\u2011", "<|endoftext|>", "?**", " \u00ad"], ["  \n\n", "<|endoftext|>", " \n\n", "\u2011", " \u2014", "\u200b", "\ufffd", " \u2014\u2014"], ["  \n\n", " \u2014", " WHY", "\u2011", " inevitable", " inevit", " \u00ad", " havoc"], ["\u2011", " WHY", " \u2014", " inevitable", " havoc", "?:", " inevit", " fizz"], ["\u2011", " WHY", " ?", " \u2014", " ?**", " flawed", " inevitable", " relentlessly"], ["\u2011", " failure", " failures", " WHY", " fallout", " inevitable", " inevit", " flawed"], [" failures", " WHY", "?!", " failure", "?:", " WHAT", "?**", "?):"], [" failures", " failure", " fallout", " havoc", "?):", " catastrophic", " breakdown", "?:"], [" fallout", " breakdown", " failures", " failure", " havoc", " catastrophic", " destabil", "?):"], [" breakdown", " inevitable", " inevit", " collapse", " Worse", " failure", " failures", " destabil"], [" breakdown", " Worse", " inevitable", " inevit", " collapse", " failures", " destabil", " failure"], [" inevitable", " breakdown", " immediate", " inevit", " Immediate", " Worse", " Worst", " destabil"], [" Immediate", " inevit", " inevitable", " breakdown", " Worst", " Worse", " immediate", " Break"], ["\u6700\u5148", " inevitable", " inevit", " Immediate", " Worse", " Worst", ":**", ":\\"], ["\u6700\u5148", "akest", " Worst", " Worse", ":**", " inevit", "\u7b2c\u4e00\u4ef6\u4e8b", "\uff1a**"], ["\u6700\u5148", ":**", " Worst", " Immediate", "akest", " Worse", ":*", ":\\"], ["?):", "?**", "\u6700\u5148", "\uff1f**", "akest", " Worst", "\u7b2c\u4e00\u4ef6\u4e8b", "?*"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", "?**", "?):", " Worse", " Worst", "\u5fc5\u5148", "akest"], ["\u6700\u5148", "\u7b2c\u4e00\u4ef6\u4e8b", "\u2019ll", "akest", ":**", "\u6700\u5feb", "?**", " Worst"], ["\u6700\u5148", " broke", "\u7b2c\u4e00\u4ef6\u4e8b", "\u2019ll", " \u0623\u0648\u0644\u0627\u064b", "\u5d29\u584c", "?**", ":**"], ["\u6700\u5148", " happens", " broke", " breaks", "\u5d29\u584c", " gets", " fails", "\u5d29"], [" breaks", " Break", " Breaking", " broke", " breaking", " break", ".break", "-break"], [" breaks", " Break", " Breaking", " broke", " breaking", " break", ".break", "-break"], [" breaks", " Break", " Breaking", " breaking", " broke", " break", " Broken", "-break"], [" Break", " breaks", " Breaking", " break", " breaking", " broke", " Broken", "-break"], [" breaks", " Break", " break", " Breaking", " breaking", "break", " broke", "-break"], [" breaks", " Break", " break", " breaking", "-break", "break", " broke", "_break"], [" breaks", " Break", " break", "-break", " Breaking", "break", " breaking", " broke"], [" Break", " breaks", " Breaking", " break", " BREAK", "-break", "Break", "_break"]], "p": [[0.5814, 0.147, 0.0949, 0.0576, 0.0421, 0.0308, 0.0044, 0.0044], [0.0128, 0.012, 0.0099, 0.006, 0.0047, 0.0041, 0.0037, 0.003], [0.1281, 0.113, 0.0534, 0.0534, 0.0391, 0.0367, 0.0286, 0.0209], [0.0148, 0.0139, 0.0096, 0.0066, 0.0051, 0.0045, 0.0045, 0.0045], [0.0255, 0.01, 0.0029, 0.0024, 0.0022, 0.002, 0.002, 0.0019], [0.014, 0.0124, 0.0038, 0.0029, 0.0026, 0.0023, 0.002, 0.0019], [0.0918, 0.0462, 0.017, 0.0117, 0.0117, 0.0103, 0.008, 0.0067], [0.0389, 0.0221, 0.0105, 0.0072, 0.0056, 0.0036, 0.0036, 0.0032], [0.049, 0.0316, 0.0124, 0.0109, 0.0103, 0.0091, 0.0085, 0.0085], [0.0036, 0.0034, 0.0034, 0.0034, 0.0034, 0.0022, 0.0019, 0.0014], [0.0998, 0.0534, 0.0502, 0.0443, 0.0209, 0.0153, 0.0144, 0.0135], [0.0757, 0.0149, 0.0096, 0.0066, 0.0066, 0.0055, 0.0045, 0.0038], [0.0662, 0.019, 0.0079, 0.007, 0.0058, 0.0051, 0.0045, 0.0045], [0.0234, 0.011, 0.011, 0.0104, 0.0081, 0.0067, 0.0063, 0.0043], [0.0769, 0.0341, 0.0172, 0.0161, 0.0092, 0.0076, 0.0072, 0.0063], [0.0101, 0.0074, 0.0061, 0.004, 0.0031, 0.0029, 0.0029, 0.0027], [0.0664, 0.007, 0.0062, 0.0048, 0.0048, 0.0042, 0.0033, 0.0031], [0.174, 0.044, 0.0365, 0.0134, 0.0111, 0.0111, 0.0098, 0.0081], [0.4055, 0.0516, 0.0167, 0.0115, 0.0108, 0.0102, 0.0084, 0.0079], [0.1837, 0.1262, 0.0526, 0.034, 0.0319, 0.0265, 0.0133, 0.0104], [0.1248, 0.1035, 0.0913, 0.0336, 0.0316, 0.0231, 0.0191, 0.0116], [0.0688, 0.057, 0.0305, 0.0197, 0.0174, 0.0153, 0.0144, 0.0135], [0.0602, 0.044, 0.0303, 0.0236, 0.0221, 0.0143, 0.0098, 0.0087], [0.2001, 0.0888, 0.0164, 0.0136, 0.0113, 0.0073, 0.0068, 0.0064], [0.8104, 0.0665, 0.0334, 0.009, 0.004, 0.0033, 0.0031, 0.0029], [0.2994, 0.0296, 0.0262, 0.0217, 0.018, 0.0159, 0.014, 0.0075], [0.4301, 0.0332, 0.0122, 0.0101, 0.0101, 0.0095, 0.0065, 0.0042], [0.9831, 0.0124, 0.0028, 0.0003, 0.0001, 0.0001, 0.0001, 0.0], [0.9838, 0.0075, 0.0031, 0.0022, 0.0005, 0.0003, 0.0003, 0.0002], [0.7552, 0.1312, 0.0796, 0.0058, 0.0045, 0.0029, 0.0029, 0.0023], [0.7972, 0.1385, 0.0577, 0.001, 0.001, 0.0006, 0.0004, 0.0004], [0.6092, 0.2241, 0.154, 0.0018, 0.0008, 0.0008, 0.0007, 0.0007], [0.381, 0.2619, 0.0377, 0.0294, 0.0215, 0.0058, 0.0054, 0.0054], [0.7262, 0.143, 0.0233, 0.0151, 0.011, 0.0055, 0.0052, 0.0049], [0.2378, 0.0322, 0.0322, 0.0221, 0.0183, 0.0172, 0.0162, 0.0126], [0.2568, 0.1291, 0.061, 0.0538, 0.0446, 0.0175, 0.0145, 0.0113], [0.0366, 0.0285, 0.0126, 0.0111, 0.0111, 0.0111, 0.0098, 0.0092], [0.032, 0.011, 0.0097, 0.0081, 0.0081, 0.0081, 0.0076, 0.0076], [0.0484, 0.013, 0.009, 0.009, 0.0084, 0.0079, 0.0074, 0.007], [0.0521, 0.0132, 0.0124, 0.0109, 0.0109, 0.009, 0.0085, 0.007], [0.0224, 0.021, 0.0198, 0.0186, 0.0154, 0.0145, 0.0128, 0.012], [0.031, 0.0177, 0.0177, 0.0138, 0.0129, 0.0121, 0.0107, 0.0101], [0.0241, 0.0227, 0.0213, 0.0177, 0.0146, 0.0129, 0.0121, 0.0107], [0.0586, 0.0295, 0.0277, 0.019, 0.019, 0.019, 0.0179, 0.0168], [0.0481, 0.0398, 0.033, 0.0292, 0.0227, 0.0213, 0.0177, 0.0156], [0.0689, 0.0504, 0.0346, 0.0346, 0.0306, 0.021, 0.0174, 0.0154], [0.0714, 0.0714, 0.0556, 0.0317, 0.028, 0.0263, 0.0263, 0.0124], [0.0918, 0.0715, 0.0671, 0.0461, 0.0461, 0.0407, 0.0383, 0.0205], [0.2687, 0.06, 0.0321, 0.0321, 0.0302, 0.0283, 0.0235, 0.0207], [0.1093, 0.0906, 0.0851, 0.0485, 0.0355, 0.0313, 0.0294, 0.0276], [0.1292, 0.1006, 0.0573, 0.0271, 0.0225, 0.0211, 0.0198, 0.0175], [0.8026, 0.0258, 0.0079, 0.0074, 0.0069, 0.0054, 0.0051, 0.0051], [0.8448, 0.0083, 0.0065, 0.0057, 0.005, 0.0035, 0.0032, 0.0032], [0.6252, 0.0138, 0.0122, 0.0108, 0.0101, 0.0069, 0.0065, 0.0061], [0.1856, 0.1276, 0.0641, 0.0532, 0.05, 0.0389, 0.0222, 0.0152], [0.6839, 0.1347, 0.0636, 0.0561, 0.0161, 0.0125, 0.0046, 0.0041], [0.5271, 0.249, 0.151, 0.0232, 0.018, 0.0059, 0.0036, 0.0019], [0.586, 0.2768, 0.1018, 0.0138, 0.0084, 0.0065, 0.001, 0.001], [0.5764, 0.3496, 0.0608, 0.0044, 0.0039, 0.0018, 0.001, 0.0006], [0.8441, 0.1467, 0.0057, 0.0018, 0.001, 0.0002, 0.0002, 0.0002], [0.8939, 0.0942, 0.0088, 0.0008, 0.0006, 0.0006, 0.0003, 0.0002], [0.8907, 0.1064, 0.0017, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9139, 0.085, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 374, "top": [["s", ",", "er", "y", ".", "es", "o", "d"], ["s", "\u0627\u062a", "es", "\u2011", "er", "\u044b", "schild", "sul"], ["s", "\u0627\u062a", "\u044b", "es", "\u2011", "er", "sor", "sand"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "\u3044\u308b", "sburg", "sik", "sche"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "sand", "sor", "sche"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "siz", "sor", "sand"], ["s", "\u0627\u062a", "\u044b", "sor", "\u05d9\u05dd", "sand", "es", "sburg"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "sia", "sor"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sand", "sia", "scheid"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sia", "siz", "sand"], ["s", "\u0627\u062a", "\u044b", "es", "sburg", "sia", "\u05d9\u05dd", "sand"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sia", "schild", "siz"], ["s", "\u0627\u062a", "sburg", "\u044b", "\u05d9\u05dd", "siz", "sia", "sense"], ["s", "\u0627\u062a", "\u044b", "sburg", "\u05d9\u05dd", "sense", "siz", "sia"], ["s", "\u0627\u062a", "\u044b", "es", "sense", "\u05d9\u05dd", "sburg", "sia"], ["s", "\u0627\u062a", "\u044b", "es", "\u05d9\u05dd", "er", "ful", "sense"], ["s", "\u0627\u062a", "es", "er", "\u044b", "y", "ful", "ness"], ["s", "\u0627\u062a", "es", "er", "y", "\u044b", "ful", "sing"], ["s", "\u0627\u062a", "es", "\u044b", "ful", "ingly", "sing", "er"], ["s", "\u0627\u062a", "\u044b", "ingly", "es", "ful", "sing", "sia"], ["s", " \n\n", "\u0627\u062a", "ful", "es", "ingly", "fully", "\u044b"], ["s", "\u0627\u062a", "ingly", "\u044b", "sia", "ful", "\u05d9\u05dd", "sburg"], ["s", " \n\n", "\u0627\u062a", "ingly", "fully", "ful", "lessly", "\u044b"], ["s", " \n\n", "\n\n", " --", "\u0627\u062a", " \r\n\r\n", "ingly", "fully"], [" \n\n", "\n\n", "s", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "...\\"], [" \n\n", "s", "\n\n", " \r\n\r\n", "\r\n\r\n", "  \n\n", " ___", "___"], ["s", " \n\n", "\n\n", " ___", "___", "\r\n\r\n", " \r\n\r\n", " __"], ["\n\n", " \n\n", "s", " ___", "  \n\n", "\r\n\r\n", "___", " __"], ["\n\n", " \n\n", "s", "  \n\n", " ___", "\r\n\r\n", "___", " \r\n\r\n"], [" \n\n", "s", "\n\n", "  \n\n", " ___", "___", "?\\", " \n  \n"], [" \n\n", "s", "\n\n", "  \n\n", " ___", "?\\", " \n  \n", " \r\n\r\n"], ["s", " \n\n", " \u2014", "\n\n", "  \n\n", " \\", " @", " quickly"], ["s", " \u2014", " quickly", " \n\n", " havoc", " \\", " worse", " ?"], ["s", " \u2014", "\u2014or", " havoc", " squarely", " fundamentally", "\u2014and", " unpredict"], ["s", " havoc", " \u2014", "\u2014or", " squarely", " cleanly", " worse", " fundamentally"], ["s", " \u2014", " havoc", " unsustainable", "\u2014or", " fundamentally", " worse", " hardest"], ["s", " \u2014", " unsustainable", " havoc", "\u2014or", " fundamentally", " awkward", " worse"], ["s", " unsustainable", " \u2014", " havoc", " fundamentally", " failure", " awkward", " inevit"], [" failure", " unsustainable", " fundamentally", " catast", " havoc", " failures", " \u2014", " quickly"], [" unsustainable", " failure", " inevit", " fastest", " fundamentally", " Break", " havoc", " failures"], [" unsustainable", " failure", " Break", " failures", " catast", " fragile", " broken", " breakdown"], [" catast", " unsustainable", " collapse", " fragile", " brittle", " breakdown", "\u5d29\u6e83", " broken"], [" fragile", " broken", " brittle", " unsustainable", " breakdown", "\u5d29\u6e83", " catast", " collapse"], [" Break", " broken", " breakdown", "\u5d29\u6e83", " catast", " unsustainable", " collapse", " failure"], [" unsustainable", " catast", " collapse", " worst", " Break", " worse", "\u5d29\u6e83", " broken"], [" Break", " inevitable", " inevit", " catast", " unsustainable", " fastest", " broken", " worst"], [" inevit", " inevitable", " Break", " Worse", " Worst", " Collapse", " fastest", " worst"], [":\\", ":", ":**", " Worst", " Break", " inevit", " Worse", "\u6700\u5148"], [":", ":\\", ":**", "\u6700\u5148", " Worse", "__:", "**:", " **:"], [":", ":\\", ":**", ":*", "*:", "__:", "**:", "\uff1a**"], [":**", ":", "*:", ":*", "\uff1a**", ":\\", " **:", "**:"], [":**", "\u6700\u5148", ":*", "*:", "\uff1a**", ":", "**:", ":\\"], [":**", ":*", "\uff1a**", " :**", "\u6700\u5148", ":</", ":&", ":\""], [":**", "\u6700\u5148", ":*", " \u0623\u0648\u0644\u0627\u064b", "\u9996\u5148", ":&", "\uff1a**", " :**"], [":**", ":*", "\u6700\u5148", "\u9996\u5148", " \u0623\u0648\u0644\u0627\u064b", ":first", ":&", " :**"], [" first", "first", " FIRST", " First", "\u9996\u5148", ":first", "-first", "_first"], [" first", "first", " First", " FIRST", "\u9996\u5148", "-first", "First", "_first"], [" first", "first", " First", " FIRST", "\u9996\u5148", "-first", ":first", " primero"], [" first", " First", "first", " FIRST", "First", "\u9996\u5148", "-first", "_first"], [" First", " first", "first", " FIRST", "First", "_first", "-first", ".first"], [" first", " First", "first", " FIRST", "First", "_first", "-first", ".first"], [" First", "s", " first", "First", "first", "_first", " FIRST", "-first"], ["s", " First", "es", "ks", "ts", "ers", "ls", "ages"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9977, 0.0015, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.6168, 0.3301, 0.0348, 0.0088, 0.0037, 0.0029, 0.0005, 0.0004], [0.7407, 0.1002, 0.1002, 0.0112, 0.0106, 0.0077, 0.0041, 0.0039], [0.4392, 0.342, 0.1426, 0.017, 0.0117, 0.0071, 0.0043, 0.0016], [0.5841, 0.4014, 0.0083, 0.0019, 0.0013, 0.0007, 0.0004, 0.0004], [0.5541, 0.3808, 0.0584, 0.0019, 0.001, 0.0008, 0.0005, 0.0003], [0.811, 0.1409, 0.0245, 0.0116, 0.0027, 0.0009, 0.0008, 0.0007], [0.6754, 0.2815, 0.0297, 0.0075, 0.0007, 0.0004, 0.0003, 0.0003], [0.9156, 0.0663, 0.0014, 0.0009, 0.0008, 0.0004, 0.0004, 0.0003], [0.9837, 0.0019, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.7123, 0.0178, 0.0074, 0.0062, 0.0024, 0.0024, 0.002, 0.0017], [0.3593, 0.0295, 0.0277, 0.0108, 0.0079, 0.0058, 0.0045, 0.0042], [0.3839, 0.0589, 0.008, 0.0075, 0.007, 0.0058, 0.0055, 0.0048], [0.088, 0.0471, 0.0196, 0.0184, 0.0087, 0.0087, 0.0068, 0.006], [0.0394, 0.0288, 0.0211, 0.0175, 0.0128, 0.0088, 0.0083, 0.0078], [0.031, 0.0291, 0.0176, 0.0156, 0.0156, 0.0156, 0.0129, 0.0114], [0.0364, 0.0221, 0.0134, 0.0134, 0.0134, 0.0118, 0.0111, 0.0111], [0.0454, 0.0332, 0.0259, 0.0243, 0.0201, 0.0189, 0.0189, 0.0178], [0.0342, 0.0342, 0.0284, 0.0284, 0.0266, 0.025, 0.025, 0.0235], [0.0412, 0.0363, 0.0341, 0.0321, 0.025, 0.025, 0.025, 0.0235], [0.0501, 0.0344, 0.0304, 0.0268, 0.0252, 0.0237, 0.0222, 0.0209], [0.0397, 0.0329, 0.0309, 0.0309, 0.029, 0.0256, 0.0241, 0.0241], [0.0387, 0.0283, 0.0266, 0.0234, 0.0234, 0.022, 0.022, 0.022], [0.122, 0.0787, 0.0576, 0.0372, 0.0256, 0.0226, 0.0199, 0.0176], [0.2322, 0.1499, 0.0335, 0.0314, 0.0295, 0.0277, 0.0245, 0.0191], [0.2699, 0.1057, 0.0933, 0.0499, 0.0236, 0.0236, 0.0222, 0.0196], [0.2986, 0.2325, 0.2052, 0.043, 0.0278, 0.0245, 0.0179, 0.014], [0.293, 0.1221, 0.1078, 0.0951, 0.0741, 0.0614, 0.0449, 0.0449], [0.375, 0.1379, 0.0652, 0.0421, 0.0395, 0.0349, 0.0308, 0.0308], [0.7827, 0.0642, 0.0268, 0.0268, 0.0236, 0.0064, 0.006, 0.0056], [0.5308, 0.0718, 0.056, 0.056, 0.0436, 0.0248, 0.0233, 0.0233], [0.3851, 0.0859, 0.0758, 0.0591, 0.0521, 0.0406, 0.0279, 0.0217], [0.5927, 0.1498, 0.0909, 0.0379, 0.023, 0.023, 0.0179, 0.0085], [0.7385, 0.1283, 0.0472, 0.0286, 0.0223, 0.005, 0.0039, 0.0034], [0.6817, 0.1342, 0.0718, 0.0339, 0.0206, 0.0059, 0.0052, 0.0052], [0.4711, 0.3669, 0.0819, 0.0341, 0.0067, 0.0052, 0.0046, 0.0041], [0.5402, 0.4207, 0.0209, 0.006, 0.0032, 0.0019, 0.0017, 0.0006], [0.5759, 0.3958, 0.0174, 0.003, 0.0027, 0.0011, 0.001, 0.0009], [0.7494, 0.2147, 0.0256, 0.0029, 0.0019, 0.0009, 0.0009, 0.0007], [0.962, 0.0155, 0.0083, 0.002, 0.0016, 0.0011, 0.0004, 0.0003]], "ranks": {}}, {"pos": 375, "top": [[".", " \u2013", "\u2013", ",", " ", "<|endoftext|>", "\u00a0\u00a0", "\u00a0"], [" \u2013", "\u2013", " ", "  \n\n", "  \n", "   \n", " \u200b\u200b", "  \n  \n"], ["\u2013", "\u2026", "\u2026.", " \u2013", ".", ",", "\u2026..", "\u2013and"], ["ickle", "bucks", "uggy", "linky", "---</", "wehr", "rokes", "agna"], [" \n  \n", "  \n  \n", "        \n        \n", "ively", " kids", " Kills", "agna", "   \n"], ["rokes", " \n  \n", "agna", "insky", " \uff08", " pretty", "\u7d2f\u7d2f", "ighbors"], [" \n", " \n  \n", "rokes", " Philly", "        \n        \n", " moms", " havoc", "   \n"], ["ighbors", " \n  \n", "breaker", "\u7d2f\u7d2f", "        \n        \n", " \n", "celed", "ickle"], [" \n    \n", " \n  \n", "        \n        \n", "linky", " Philly", "breaker", " \n        \n", " \n"], [" \n  \n", " \n \n", " havoc", "\u7d2f\u7d2f", "<|object_ref_start|>", "linky", ".pretty", "quivo"], [" \n  \n", " \n", " \n\n", " \n \n", " \n\n\n", "  \n  \n", " havoc", "  \n\n"], [" havoc", " \n  \n", " \n\n", " \n", " ___", " --", "\u7d2f\u7d2f", " ____"], [" havoc", " \n  \n", " \n", " \n\n", " kids", " \n \n", " --", " Philly"], [" \n\n", " havoc", " --", " pretty", " kids", " horribly", " wildly", " \n  \n"], [" \n\n", " --", " \u2014", "\n\n", " pretty", "  \n\n", " havoc", " kids"], [" --", " pretty", " \u2014", " \n\n", " kids", " horribly", " wildly", " incredibly"], [" pretty", " really", " just", " bigger", " incredibly", " horribly", " getting", " though"], [" \n\n", " \u2014", " pretty", " bigger", " really", " --", " stuff", " big"], [" \n\n", " --", " \u2014", " pretty", " horribly", " bigger", " havoc", " stuff"], [" \n\n", " --", " \u2014", "  \n\n", " pretty", " havoc", " horribly", " ---"], [" \n\n", "  \n\n", "\n\n", "   \n\n", " --", " \n\n\n", " \n  \n", "\t\n\n"], [" --", " bigger", " worse", " horribly", " havoc", " pretty", " stuff", " \n\n"], [" --", " \n\n", " horribly", " worse", " bigger", " havoc", " \u2014", " ---"], [" --", " \n\n", " ,", " much", " even", " just", " worse", " more"], [" \n\n", "\n\n", "  \n\n", " --", " \n\n\n", " \n  \n", "   \n\n", " \r\n\r\n"], [" \n\n", " ___", " --", " __", " \n  \n", "  \n\n", "\n\n", " ...\\"], [" \n\n", "\n\n", " ___", " --", " __", " ...\\", " ...", " ____"], [" \n\n", "\n\n", " --", " ___", "  \n\n", " __", " ...", " ---"], [" \n\n", "\n\n", "  \n\n", " --", " ___", " \n  \n", " __", "   \n\n"], [" \n\n", "  \n\n", " \n  \n", " ___", " ...\\", " __", "\n\n", " ____"], [" \n\n", " ...", "\n\n", "  \n\n", " ___", " \u2026", " \n  \n", " ...\\"], [" \n\n", " ...", " ,", " \u2014", " over", " \u2026", " --", "\n\n"], [" ,", " :", " over", " \u2014", " -", " even", " ?", " @"], [" \u2014", " \n\n", " **", " heavily", " --", "  \n\n", " fundamentally", " tech"], [" \u2014", " heavily", " fundamentally", " **", " inherently", " deeply", " --", " aggressively"], [" \u2014", " \u2014\u2014", " \u2026", " heavily", " \u2013", " \n\n", " fundamentally", " purely"], [" \u2014", " traditional", " heavily", " hardware", " \u2014\u2014", " \u2013", " heavy", " directly"], [" traditional", " \u2014", " hardware", " heavily", " \u2013", " directly", " heavy", " dual"], [" traditional", " \u2014", " heavily", " directly", " hardware", " heavy", " fundamentally", " purely"], [" traditional", " directly", " dual", " \u2014", " heavily", " purely", " hardware", " seamlessly"], [" traditional", " hardware", " dual", " directly", " purely", " seamlessly", " technology", " tech"], [" hardware", " dual", " seamlessly", " traditional", " interoper", " complexity", " software", " leveraging"], [" traditional", " seamlessly", " dual", " inherently", " hardware", " interoper", " unified", " purely"], [" traditional", " Unified", " seamlessly", " unified", " hardware", " Unity", " Traditional", " dual"], [" traditional", " dual", " unified", " Traditional", " directly", " Unified", " hardware", " Unity"], [" traditional", " dual", " Traditional", " directly", " standard", " conventional", " traditionally", " mainstream"], [" traditional", " dual", " Traditional", " seamlessly", " unified", " Direct", " directly", " mainstream"], [" traditional", " Traditional", " Unified", " mainstream", " standard", " conventional", " Direct", " Unity"], [" traditional", " Traditional", "\u4f20\u7edf\u7684", " Unified", " conventional", " Direct", " mainstream", " standard"], [":", ":\\", ":\"", ":**", ":\\\"", " **:**", " :\\", " **:"], ["\uff1a**", ":", ":**", " :**", " **:", " **:**", "\uff1a", ":*"], ["\uff1a**", ":**", " :**", ":*", ":", "\uff1a", ":\"", ":\\"], [":**", "\uff1a**", ":*", " :**", ":\"", ":", ":</", ":\")"], [":**", ":\"", "\uff1a**", ":*", " :**", ":", ":\\", ":</"], [":**", ":", ":\"", " :**", ":*", "\uff1a**", ":</", ":first"], [" first", ":**", " FIRST", ":first", "first", " First", "-first", ":"], [" first", "first", " First", "\u9996\u5148", " FIRST", ":**", ":first", "-first"], [" first", ":**", "first", " First", " FIRST", "\u9996\u5148", ":first", "-first"], [" first", " First", ":**", "first", " FIRST", ":first", "First", "_first"], [" first", " First", "first", ":**", " FIRST", "_first", "First", "\u9996\u5148"], [" first", " First", "first", "_first", "First", " FIRST", "-first", ".first"], [" First", " first", "First", "_first", ":", " FIRST", "first", ":**"], [" First", ":**", " first", " Last", " Next", "_first", "First", " Immediately"]], "p": [[0.424, 0.227, 0.1072, 0.0692, 0.065, 0.0271, 0.0113, 0.0106], [0.0543, 0.0423, 0.0309, 0.0309, 0.0256, 0.0089, 0.0078, 0.0069], [0.6719, 0.1097, 0.0587, 0.0457, 0.0295, 0.0148, 0.0116, 0.007], [0.0086, 0.0052, 0.0032, 0.0022, 0.0018, 0.0017, 0.0017, 0.0016], [0.0108, 0.0102, 0.0102, 0.0079, 0.0074, 0.0037, 0.0035, 0.0035], [0.0093, 0.0064, 0.0047, 0.0047, 0.0039, 0.0034, 0.0025, 0.0025], [0.017, 0.015, 0.0076, 0.0052, 0.0043, 0.0036, 0.0036, 0.0034], [0.0066, 0.0052, 0.0045, 0.0045, 0.0035, 0.0033, 0.0031, 0.0031], [0.0191, 0.0096, 0.008, 0.0055, 0.0045, 0.0045, 0.0038, 0.0038], [0.0103, 0.0049, 0.004, 0.0026, 0.0022, 0.0018, 0.0016, 0.0014], [0.3034, 0.2085, 0.184, 0.0597, 0.0092, 0.0086, 0.0076, 0.0067], [0.043, 0.0296, 0.0245, 0.0149, 0.008, 0.008, 0.0066, 0.0058], [0.0456, 0.0402, 0.0355, 0.0333, 0.0115, 0.0102, 0.0102, 0.009], [0.0875, 0.0682, 0.0602, 0.0499, 0.0236, 0.0152, 0.0118, 0.0118], [0.6123, 0.1454, 0.0444, 0.0237, 0.0174, 0.0087, 0.0064, 0.005], [0.1493, 0.0799, 0.0622, 0.0294, 0.0276, 0.0244, 0.019, 0.0168], [0.0974, 0.0279, 0.0279, 0.0262, 0.0231, 0.0204, 0.0204, 0.0204], [0.4235, 0.0945, 0.0649, 0.0198, 0.0136, 0.0094, 0.0088, 0.0088], [0.3709, 0.0998, 0.0938, 0.0534, 0.0223, 0.0209, 0.0173, 0.0144], [0.7863, 0.1064, 0.0072, 0.0072, 0.0056, 0.0047, 0.0044, 0.0039], [0.9841, 0.0085, 0.0059, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.1289, 0.0419, 0.0419, 0.0419, 0.0326, 0.027, 0.0238, 0.0224], [0.6906, 0.0878, 0.0126, 0.0087, 0.005, 0.005, 0.005, 0.005], [0.4677, 0.0409, 0.0299, 0.0181, 0.017, 0.011, 0.0091, 0.008], [0.9792, 0.0158, 0.0031, 0.0005, 0.0003, 0.0002, 0.0002, 0.0001], [0.9548, 0.0106, 0.0064, 0.0039, 0.002, 0.002, 0.0018, 0.0016], [0.6922, 0.2547, 0.0184, 0.0127, 0.0056, 0.0023, 0.0016, 0.0011], [0.7458, 0.2421, 0.0035, 0.0027, 0.0024, 0.0011, 0.0003, 0.0002], [0.9313, 0.0525, 0.0071, 0.002, 0.0016, 0.0009, 0.0007, 0.0002], [0.9674, 0.0084, 0.0074, 0.0058, 0.0019, 0.0011, 0.001, 0.001], [0.8665, 0.0806, 0.0159, 0.0075, 0.0052, 0.0038, 0.0035, 0.0021], [0.2115, 0.1366, 0.0731, 0.0416, 0.0197, 0.0174, 0.0163, 0.0144], [0.165, 0.0325, 0.0325, 0.0223, 0.0197, 0.0185, 0.0174, 0.0144], [0.2629, 0.1807, 0.0486, 0.019, 0.019, 0.0179, 0.0139, 0.0139], [0.1828, 0.0557, 0.0318, 0.016, 0.0141, 0.0117, 0.0117, 0.011], [0.6701, 0.0229, 0.0108, 0.0096, 0.0074, 0.0066, 0.0058, 0.0054], [0.3507, 0.0505, 0.0224, 0.0164, 0.0128, 0.0106, 0.0099, 0.0099], [0.0693, 0.0651, 0.0327, 0.0327, 0.0239, 0.0186, 0.0175, 0.012], [0.061, 0.0506, 0.0307, 0.0288, 0.0288, 0.0198, 0.0113, 0.0113], [0.0531, 0.0322, 0.0221, 0.0208, 0.0172, 0.0162, 0.0152, 0.0126], [0.049, 0.0337, 0.0217, 0.018, 0.0169, 0.0159, 0.0159, 0.014], [0.0291, 0.0274, 0.0257, 0.0242, 0.0166, 0.0166, 0.0147, 0.0122], [0.0861, 0.0382, 0.028, 0.0218, 0.0205, 0.0192, 0.0132, 0.0091], [0.0731, 0.0345, 0.0269, 0.0253, 0.0253, 0.0209, 0.0197, 0.0174], [0.2452, 0.0582, 0.0189, 0.0178, 0.0167, 0.0157, 0.0157, 0.0157], [0.436, 0.0521, 0.0297, 0.018, 0.0159, 0.0149, 0.014, 0.0132], [0.2723, 0.0504, 0.0445, 0.0306, 0.0238, 0.0224, 0.0224, 0.0224], [0.4199, 0.2547, 0.0286, 0.0268, 0.0268, 0.0252, 0.0196, 0.0153], [0.3487, 0.3275, 0.0443, 0.0286, 0.0286, 0.0209, 0.0153, 0.0127], [0.2147, 0.1149, 0.0953, 0.0895, 0.0655, 0.035, 0.0273, 0.0226], [0.1984, 0.175, 0.175, 0.0685, 0.0644, 0.0391, 0.0324, 0.0268], [0.2582, 0.2278, 0.0892, 0.0508, 0.0508, 0.0308, 0.0212, 0.0165], [0.8397, 0.0418, 0.0326, 0.0287, 0.0254, 0.0082, 0.0034, 0.0027], [0.7486, 0.0479, 0.0422, 0.0422, 0.0373, 0.0329, 0.0065, 0.005], [0.5305, 0.2506, 0.0559, 0.0384, 0.0384, 0.016, 0.0086, 0.0076], [0.6492, 0.0879, 0.0533, 0.0533, 0.047, 0.0323, 0.0196, 0.0072], [0.9189, 0.0458, 0.0102, 0.008, 0.007, 0.0033, 0.0018, 0.0014], [0.8874, 0.0344, 0.0304, 0.0209, 0.0127, 0.0041, 0.0025, 0.0012], [0.6171, 0.2915, 0.0307, 0.0271, 0.0164, 0.0032, 0.0022, 0.0017], [0.8, 0.1785, 0.0129, 0.0033, 0.0012, 0.0011, 0.0009, 0.0004], [0.7901, 0.1998, 0.0068, 0.0012, 0.0006, 0.0005, 0.0002, 0.0002], [0.9628, 0.0329, 0.0009, 0.0008, 0.0007, 0.0004, 0.0004, 0.0003], [0.9991, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 376, "top": [["s", " \u2013", ".", "<|endoftext|>", "\u2013", ",", " ", "  \n"], ["s", " \u2013", "\u2013", " Very", " very", "  \n", "sWith", "spre"], ["s", "\u2013", " \u2013", "\u2026", ".", ",", "\u2013and", "?"], ["sWith", "sik", "schaft", "scha", "schn", "sstr", "schrift", "satz"], ["s", "sWith", "ively", "sik", "sand", "schaft", "iest", "sie"], ["s", "schaft", "sver", " **", "sand", "sWith", "sab", "spre"], ["s", "\u300d**", " **", "sie", "schaft", " \u00bb**", "sand", "sor"], [" **", "schaft", " **\u300c", "\u300d**", "schn", "s", " **.**", " **\u00ab"], ["schaft", "s", "schn", "sik", " **.**", "\u300d**", "schuss", "**."], ["s", "\\_", "\\-", "!\\", "\u5148\u5f97", "sand", "ively", "sword"], ["s", "\\_", "!\\", "?\\", "._", ",", "\\'", "\\-"], ["s", " **", "._", " ___", " ______", " _", "\\_", ".__"], ["s", " **", " _", "._", "schaft", " `_", " ___", "ively"], ["s", "-ish", " kicking", " _", "._", "\\'", " kicks", "-ever"], ["s", "\n\n", " \n\n", " _", " ?", "  \n\n", " --", "\\_"], ["s", " ?", " ,", " really", " --", " -", " \u2014", " just"], ["s", " really", " just", " ,", "?", ",", " when", " going"], ["s", " \u2014", "?", ",", " really", " ,", " just", " ?"], ["s", " \u2014", " ?", " --", "\n\n", " \n\n", " \ufffd", " !"], [" --", " \u2014", " ?", "\n\n", " ---", " \ufffd", " ___", " \n\n"], ["\n\n", " \n\n", " --", " \u2014", " ?", "  \n\n", " ,", "<|endoftext|>"], [" ?", " --", " ?**", " ___", " :", "\n\n", " \u061f", " ---"], ["\n\n", " --", " ?", " \n\n", " ___", " \u2014", " :", " ---"], ["\n\n", " --", " ,", " ?", " \u2014", " :", " \n\n", "<|endoftext|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " --", " ___", " ______", " \u2014"], ["\n\n", " \n\n", " ___", " ______", " ____", " --", "\r\n\r\n", " __"], ["\n\n", " ___", " --", " \n\n", " ______", " ____", " __", " _____"], ["\n\n", " \n\n", " ___", " --", " __", " ______", "  \n\n", " ?"], ["\n\n", " \n\n", "  \n\n", " ___", " ______", "\r\n\r\n", " ____", " __"], ["\n\n", " \n\n", "  \n\n", " ___", " ______", " \u2014", " __", " --"], ["\n\n", " \n\n", " ___", "  \n\n", " ______", " __", " ____", " ?"], ["\n\n", " \u2014", " \n\n", " ?", " --", " :", " ,", " ___"], [" :", " \u2014", " ?", " ,", " --", " **", " due", " early"], [" \u2014", " **", " --", " :", " \u2013", " ______", " ?", " ___"], [" \u2014", " --", " **", " :", " quickly", " \u2013", " rapidly", " ?"], [" \u2014", " :", " \u2013", " **", " ?", " --", " :**", " \u2014\u2014"], [" \u2014", " :", " **", " \u2013", " ?", " --", " :**", " rapidly"], [" :", " \u2014", " ?", " \u2013", " rapidly", " quickly", " **", " --"], [" :", " \u2014", " quickly", " rapidly", " **", " --", " critical", " ?"], [" :", " \u2014", " quickly", " rapidly", " **", " critical", " fastest", " rapid"], [" :", " quickly", " rapidly", " failure", " critical", " **", " fastest", " rapid"], [" quickly", " rapidly", " :", " rapid", " fastest", " critical", " \u2014", " bottleneck"], [" quickly", " rapidly", " rapid", " :", " critical", " fastest", " early", " bottleneck"], [" fastest", " :", " quickly", " rapidly", " rapid", " quickest", " critical", " bottleneck"], [" :", " fastest", " critical", " bottleneck", " rapid", " quickly", " rapidly", " immediate"], [" immediately", " immediate", " rapidly", " quickly", " fastest", " first", " :", " critical"], [":", " **", " :", " Immediate", ":**", " immediate", " immediately", " fastest"], [":", ":**", " :", " **", ":\\", " :**", "**:", "\uff1a**"], [":", " :", " **", ":**", "**:", " :**", " **:", "**"], [":", ":**", ":\\", " :", " :**", "\uff1a**", " **:", "**:"], [":**", " **:", "\uff1a**", " **", ":", " :**", "**:", " **:**"], [":**", ":", "\uff1a**", " :**", " **:", "**:", ":*", ":\\"], [":**", "\uff1a**", " :**", ":*", ":", "**:", ":\\", " **:"], [":**", "\uff1a**", " :**", ":", ":*", ":\\", "**:", "**"], [":**", "\uff1a**", ":", " :**", ":*", ":\\", ":</", "**:"], [":**", "\uff1a**", " :**", ":", ":*", "**:", ":\\", ":</"], [":**", "\uff1a**", " :**", ":*", ":", "**:", "**", "?**"], [":**", " :**", "\uff1a**", ":", ":*", "**:", "**", ":`"], [":**", " :**", ":", "\uff1a**", ":*", "**:", "**", " **:"], [":**", " :**", ":", ":*", "**", "\uff1a**", "**:", ":The"], [":**", ":", ":*", " :**", "**", "\uff1a**", ":\"", "**:"], [":**", ":", ":*", " :**", ":The", "**", "**:", "\uff1a**"], [":**", ":", "**", "**:", "\uff1a**", " :**", "?**", ".**"]], "p": [[0.7174, 0.2329, 0.0169, 0.0116, 0.0075, 0.0043, 0.0023, 0.0005], [0.8994, 0.0651, 0.0106, 0.0006, 0.0006, 0.0003, 0.0003, 0.0003], [0.5937, 0.2805, 0.1032, 0.0075, 0.0029, 0.0026, 0.0014, 0.001], [0.0227, 0.0213, 0.0166, 0.0101, 0.0101, 0.0065, 0.0065, 0.0054], [0.9978, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.7781, 0.0086, 0.0081, 0.0059, 0.0038, 0.0034, 0.0032, 0.0032], [0.7716, 0.0141, 0.0125, 0.0097, 0.0063, 0.0049, 0.0043, 0.004], [0.1003, 0.0608, 0.0254, 0.0224, 0.0198, 0.0174, 0.012, 0.0106], [0.0679, 0.0301, 0.025, 0.0142, 0.0092, 0.0086, 0.0081, 0.0059], [0.202, 0.033, 0.0048, 0.0045, 0.0033, 0.0031, 0.0031, 0.0029], [0.5895, 0.2309, 0.0148, 0.0101, 0.009, 0.009, 0.007, 0.0054], [0.2691, 0.093, 0.0342, 0.0118, 0.0104, 0.0081, 0.0076, 0.0056], [0.3037, 0.0207, 0.0098, 0.0092, 0.0092, 0.0056, 0.0046, 0.0036], [0.7804, 0.0023, 0.0015, 0.0015, 0.0012, 0.0012, 0.0012, 0.001], [0.7824, 0.0934, 0.0056, 0.0056, 0.0023, 0.0019, 0.0019, 0.0018], [0.7149, 0.0168, 0.0158, 0.007, 0.0045, 0.0045, 0.0043, 0.0033], [0.9013, 0.0031, 0.0022, 0.0022, 0.0019, 0.0017, 0.0014, 0.0011], [0.468, 0.0299, 0.0233, 0.0181, 0.0125, 0.0091, 0.0091, 0.0055], [0.1708, 0.1036, 0.0669, 0.0628, 0.0246, 0.0132, 0.0096, 0.0085], [0.2558, 0.1458, 0.1458, 0.0571, 0.021, 0.0174, 0.0154, 0.0154], [0.8532, 0.0899, 0.0138, 0.0089, 0.0089, 0.0074, 0.0026, 0.0016], [0.3826, 0.103, 0.0551, 0.0429, 0.019, 0.0179, 0.0168, 0.0123], [0.8556, 0.0902, 0.0201, 0.0065, 0.0054, 0.0035, 0.0031, 0.0024], [0.5285, 0.3205, 0.0408, 0.0232, 0.0232, 0.0117, 0.0075, 0.0033], [0.992, 0.0076, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9349, 0.032, 0.022, 0.002, 0.0016, 0.0014, 0.0014, 0.0009], [0.9708, 0.0157, 0.004, 0.0035, 0.0015, 0.001, 0.001, 0.0005], [0.9959, 0.0036, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9886, 0.011, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5498, 0.4282, 0.0129, 0.0029, 0.0014, 0.0009, 0.0006, 0.0005], [0.7641, 0.1932, 0.014, 0.0075, 0.0066, 0.0024, 0.0021, 0.0021], [0.2805, 0.1325, 0.1169, 0.1032, 0.0519, 0.043, 0.0278, 0.0216], [0.3863, 0.2068, 0.0918, 0.0592, 0.0317, 0.0117, 0.0085, 0.0085], [0.7316, 0.053, 0.0208, 0.0172, 0.0098, 0.0092, 0.0087, 0.0059], [0.6894, 0.0469, 0.0267, 0.0236, 0.0111, 0.0098, 0.0082, 0.0072], [0.7374, 0.1131, 0.0304, 0.0185, 0.0068, 0.0064, 0.0041, 0.0034], [0.5375, 0.1857, 0.0162, 0.0152, 0.0112, 0.0098, 0.0077, 0.0064], [0.3258, 0.1744, 0.0303, 0.0152, 0.0126, 0.0126, 0.0126, 0.0111], [0.3405, 0.1608, 0.0247, 0.0218, 0.0159, 0.0141, 0.0117, 0.0103], [0.1316, 0.0622, 0.0354, 0.0294, 0.0259, 0.0178, 0.0157, 0.013], [0.1179, 0.0298, 0.0298, 0.0205, 0.0181, 0.017, 0.016, 0.0141], [0.067, 0.0629, 0.046, 0.0337, 0.0231, 0.0231, 0.0192, 0.0159], [0.0687, 0.0645, 0.0368, 0.0345, 0.0324, 0.0305, 0.0185, 0.0153], [0.0622, 0.0584, 0.0427, 0.0313, 0.0294, 0.0215, 0.0215, 0.0202], [0.0666, 0.0487, 0.0335, 0.0315, 0.0261, 0.0261, 0.0245, 0.0191], [0.08, 0.0623, 0.0485, 0.0485, 0.0456, 0.0378, 0.0355, 0.0276], [0.1491, 0.1401, 0.0584, 0.0427, 0.0276, 0.0259, 0.0167, 0.0139], [0.6114, 0.0777, 0.0644, 0.0605, 0.0443, 0.0173, 0.0144, 0.0112], [0.568, 0.1118, 0.0818, 0.0599, 0.032, 0.0301, 0.0207, 0.0172], [0.678, 0.1513, 0.0298, 0.0205, 0.0205, 0.0181, 0.0181, 0.0159], [0.3034, 0.2085, 0.184, 0.0869, 0.0767, 0.0597, 0.0282, 0.0249], [0.5295, 0.1719, 0.1719, 0.0812, 0.0125, 0.0076, 0.0067, 0.0059], [0.9625, 0.02, 0.0121, 0.0027, 0.0021, 0.0002, 0.0001, 0.0001], [0.9683, 0.0177, 0.0051, 0.0045, 0.004, 0.0002, 0.0001, 0.0], [0.9629, 0.0156, 0.0107, 0.0065, 0.0039, 0.0001, 0.0001, 0.0001], [0.984, 0.0085, 0.0046, 0.0015, 0.0012, 0.0001, 0.0001, 0.0], [0.9919, 0.0041, 0.0036, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9933, 0.0032, 0.0025, 0.0008, 0.0002, 0.0, 0.0, 0.0], [0.9905, 0.0036, 0.0036, 0.0012, 0.0005, 0.0005, 0.0001, 0.0], [0.994, 0.0032, 0.0012, 0.0007, 0.0005, 0.0003, 0.0001, 0.0], [0.9847, 0.0124, 0.0019, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.8615, 0.1321, 0.0019, 0.0015, 0.0009, 0.0007, 0.0003, 0.0002], [0.9951, 0.0041, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 377, "top": [[" \u2013", "  \n", " (\u201e", ".", "   \n", "\u2026..", "\u201e", "\u2026\u2026"], ["  \n", " \u2013**", "   \n", ",\\\"", ",**", ":**", ":\\\"", "\u30f3"], ["\u2026\u2026", "\u2026..", ".:**", " \u2013**", ",**", ":**", ",..", "\u2026**"], [" ``(", " **\u201e", "``", " ``", "\u52a0\u62ff\u5927", "raries", " **:**", " ;;^"], [" ##", "raries", ":**", "\u52a0\u62ff\u5927", "ed", ".:**", " **\u201e", ":@"], [":**", ".:**", " **\u201e", "raries", "\u52a0\u62ff\u5927", ",**", "ed", "\u65b0\u52a0\u5761"], ["raries", " ~~", " ......", " **\u201e", ":**", " ##", "``", "\u5728"], [" **\u201e", "raries", " ~~", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", ".:**", " **\u3010", ":**"], [" **\u201e", " ~~", "raries", " ____", " ......", ",\\\"", ":__", ",.."], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u8033\u719f\u80fd\u8be6", "\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", " ~~", "raries", "\u52e4\u52e4\u6073\u6073"], [" ____", " ~~", " ......", ",\\\"", "...\\", "...**", " ##", "____"], [" ____", "raries", " ~~", "\u52c7\u5f80\u76f4\u524d", "...**", " ##", " **\u201e", ",**"], ["raries", " ~~", " ____", " **\u201e", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "...**", " backstory"], ["\u52c7\u5f80\u76f4\u524d", "raries", "\u8eab\u4e34\u5176\u5883", "\u52a0\u62ff\u5927", " backstory", "\u0103\u0219", " LGBTQ", "\u4e0d\u53ef\u601d\u8bae"], ["\n\n", " --", "an", "\u52c7\u5f80\u76f4\u524d", "...", "\u8eab\u4e34\u5176\u5883", " backstory", "n"], ["an", " --", "n", "ed", "\n\n", " theater", "es", " kids"], ["<|endoftext|>", "\n\n", "n", "an", "...", " --", ",", "ed"], ["<|endoftext|>", "...", "\n\n", "...\\", "n", "...**", "  \n\n", "\u2026"], ["\n\n", "...**", "...", "...\\", " **", "  \n\n", ":**", "**"], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", "...\\", "...", "   \n\n", "...**"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "\n\n\n", " --", "  \n"], [" **", "\n\n", " **\u3010", "...**", " **+", " --", " **\u2022", " **-"], ["\n\n", " **", " --", " \n\n", "\n\n\n", " ``", "\n", "  \n\n"], ["\n\n", " **", " \n\n", " --", "\n\n\n", "<|endoftext|>", "  \n\n", " ``"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "\n\n\n", "    \n\n", "...\\", "\r\n\r\n"], ["\n\n", " \n\n", " **", "  \n\n", "...**", "   \n\n", " ____", " __"], ["\n\n", " \n\n", " **", "  \n\n", "\n\n\n", "   \n\n", "...**", " ____"], ["\n\n", " \n\n", "  \n\n", " **", "\n\n\n", "   \n\n", " __", " --"], ["\n\n", " \n\n", "  \n\n", " **", "\n\n\n", "   \n\n", " ____", " __"], ["\n\n", " \n\n", "  \n\n", " **", "   \n\n", "\n\n\n", "  \n", " ..."], ["\n\n", " \n\n", "  \n\n", " **", " ...", "<|endoftext|>", "\n\n\n", "   \n\n"], ["\n\n", " \n\n", "  \n\n", " ...", " **", "<|endoftext|>", " ,", " --"], [" **", " ,", "\n\n", " \u2014", " \u2013", " -", " \u201c", " over"], [" **", "  \n\n", " \n\n", " \u2014", " fundamentally", "\n\n", " \u2026", " aggressively"], [" **", " aggressively", " heavily", " --", " fundamentally", " rapidly", " dramatically", " *"], [" **", "  \n\n", " *", "\n\n", " \u2014", " \n\n", " \u2013", " rapidly"], [" **", " *", "  \n\n", " rapidly", " aggressively", " fundamentally", " relentless", "\n\n"], [" **", " *", " rapidly", " aggressively", "  \n\n", " relentless", " fundamentally", " dramatically"], [" **", " *", " rapidly", " relentless", " fundamentally", " aggressively", " dramatically", " relentlessly"], [" **", " rapidly", " relentless", " *", " fundamentally", " unsustainable", " collapsing", " dramatically"], [" **", " rapidly", " unsustainable", " relentless", " collapsing", " fundamentally", " breaking", " failure"], [" rapidly", " collapsing", " rapid", " infrastructure", " breaking", " bottleneck", " critical", " fast"], [" **", " collapsing", " infrastructure", " breaking", " critical", " rapidly", " bottleneck", " fundamentally"], [" bottleneck", " infrastructure", " collapsing", " breaking", " **", " unsustainable", " crashing", " failure"], [" **", " bottleneck", " infrastructure", " collapsing", " breaking", " critical", " unsustainable", " failure"], [" **", " collapsing", " breaking", " critical", " bottleneck", " unsustainable", " infrastructure", " severely"], [" **", " **\"", "  \n\n", " unsustainable", " bottleneck", " breaking", " infrastructure", " **\u201c"], [" **", " **\"", "  \n\n", " **\u201c", "  \n", " \n\n", " **'", " bottleneck"], [" **", " **\"", " **\u201c", " **'", " **(", "-**", " **#", "**"], [" **", " **\"", "**", "  \n", "-**", " **\u201c", " **#", ":**"], [" **", " **\"", " **\u201c", "**", " **#", "-**", " **-", " **\u3010"], [" **", " **\"", " **\u201c", "**", " **#", " **'", "  \n", "-**"], [" **", " **\"", "**", " **\u201c", " **#", "-**", " **'", " **\u3010"], [" **", " **\"", "**", " **\u201c", " **#", "  \n", "-**", " **'"], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **\u00ab", ",**"], [" **", "**", " **\"", "-**", " **\u201c", " **#", ",**", " **\u00ab"], [" **", "**", " **\"", "-**", " **\u201c", " **#", "]**", ",**"], [" **", " **\"", "**", " **#", " **\u201c", "]**", "-**", " **+"], [" **", " **\"", "**", " **\u201c", "-**", "]**", " **#", ",**"], [" **", " **\"", "**", "\n", " **\u201c", "  \n", " **#", " **+"], [" **", "\n", " **\"", "  \n", "**", " **\u201c", " **#", "\n\n"], [" **", "\n", " The", "**", " **\"", " **\u201c", " **.", "  \n"], ["\n", " **", " The", "  \n", "\n\n", "**", " Memory", " Mobile"]], "p": [[0.4193, 0.1981, 0.0729, 0.0684, 0.0366, 0.0285, 0.0209, 0.0163], [0.4934, 0.0711, 0.0627, 0.0459, 0.0315, 0.0217, 0.0204, 0.014], [0.1513, 0.0862, 0.081, 0.0715, 0.0715, 0.0592, 0.0247, 0.0192], [0.1104, 0.0713, 0.0591, 0.0521, 0.0262, 0.0246, 0.0169, 0.0116], [0.1028, 0.0907, 0.0585, 0.055, 0.0402, 0.0277, 0.0215, 0.019], [0.0929, 0.0872, 0.0497, 0.0467, 0.0301, 0.0283, 0.0266, 0.0161], [0.1104, 0.1037, 0.0591, 0.049, 0.0406, 0.0381, 0.0358, 0.0262], [0.2868, 0.0822, 0.0772, 0.0322, 0.0208, 0.0195, 0.0195, 0.0183], [0.0893, 0.0839, 0.0396, 0.0309, 0.0309, 0.0272, 0.0256, 0.024], [0.1014, 0.045, 0.0241, 0.0212, 0.02, 0.02, 0.0187, 0.0176], [0.1553, 0.0734, 0.0571, 0.0418, 0.0369, 0.0347, 0.0186, 0.0186], [0.1262, 0.0983, 0.0766, 0.0206, 0.011, 0.0104, 0.0081, 0.0055], [0.0539, 0.0394, 0.0327, 0.0327, 0.0198, 0.0186, 0.0175, 0.0088], [0.0983, 0.0464, 0.0193, 0.0193, 0.0182, 0.0086, 0.0081, 0.0076], [0.3751, 0.0786, 0.0155, 0.0106, 0.01, 0.0094, 0.0094, 0.0088], [0.0931, 0.0875, 0.053, 0.0342, 0.0162, 0.0118, 0.0092, 0.0072], [0.46, 0.0851, 0.0663, 0.0485, 0.0294, 0.0178, 0.0157, 0.0123], [0.2649, 0.2649, 0.2338, 0.0432, 0.0217, 0.0204, 0.0124, 0.0085], [0.6214, 0.1014, 0.079, 0.0273, 0.0241, 0.0121, 0.0107, 0.0094], [0.9976, 0.0009, 0.0009, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9938, 0.0025, 0.0022, 0.0013, 0.0001, 0.0, 0.0, 0.0], [0.5847, 0.2151, 0.0273, 0.0129, 0.0054, 0.0033, 0.0029, 0.0027], [0.9961, 0.0014, 0.0007, 0.0004, 0.0003, 0.0002, 0.0, 0.0], [0.9911, 0.002, 0.0019, 0.0016, 0.0007, 0.0004, 0.0002, 0.0002], [0.9885, 0.0086, 0.0028, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9589, 0.0199, 0.0155, 0.0031, 0.0009, 0.0003, 0.0001, 0.0001], [0.9975, 0.0019, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9969, 0.0028, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0013, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9573, 0.0289, 0.0121, 0.0014, 0.0001, 0.0001, 0.0, 0.0], [0.9817, 0.014, 0.0035, 0.0003, 0.0002, 0.0, 0.0, 0.0], [0.8926, 0.0504, 0.0127, 0.0106, 0.0053, 0.0034, 0.002, 0.0012], [0.0755, 0.0755, 0.0169, 0.0158, 0.0149, 0.0131, 0.0123, 0.0123], [0.6636, 0.0292, 0.0177, 0.0122, 0.0114, 0.0107, 0.0101, 0.0084], [0.7214, 0.011, 0.0062, 0.0062, 0.0055, 0.0049, 0.0049, 0.0043], [0.7742, 0.0161, 0.0161, 0.011, 0.0086, 0.0081, 0.0063, 0.0049], [0.6906, 0.0173, 0.0153, 0.0135, 0.0093, 0.0087, 0.0077, 0.0068], [0.6875, 0.0221, 0.0172, 0.0104, 0.0092, 0.0092, 0.0076, 0.0049], [0.7169, 0.0158, 0.0149, 0.008, 0.0066, 0.0062, 0.0043, 0.0038], [0.5437, 0.0198, 0.012, 0.0106, 0.01, 0.0073, 0.0053, 0.005], [0.0699, 0.0424, 0.0241, 0.0188, 0.0166, 0.0166, 0.0156, 0.0156], [0.0478, 0.0309, 0.024, 0.0226, 0.0187, 0.0165, 0.0155, 0.0129], [0.1274, 0.0236, 0.0236, 0.0236, 0.0183, 0.0172, 0.0143, 0.0143], [0.0436, 0.0281, 0.0233, 0.0206, 0.0206, 0.0182, 0.016, 0.0151], [0.0837, 0.0372, 0.0349, 0.0225, 0.0187, 0.0187, 0.0165, 0.0113], [0.0789, 0.0273, 0.0256, 0.0212, 0.0187, 0.0155, 0.0129, 0.0121], [0.7641, 0.0102, 0.0075, 0.0062, 0.0055, 0.004, 0.004, 0.0033], [0.9541, 0.0113, 0.0039, 0.0037, 0.0008, 0.0007, 0.0007, 0.0006], [0.9981, 0.001, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9945, 0.0022, 0.001, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001], [0.9994, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9972, 0.0017, 0.0003, 0.0003, 0.0002, 0.0001, 0.0, 0.0], [0.9978, 0.001, 0.0006, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.997, 0.0012, 0.0007, 0.0003, 0.0003, 0.0001, 0.0001, 0.0001], [0.9983, 0.0006, 0.0006, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.998, 0.0013, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9974, 0.0013, 0.0007, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9987, 0.0005, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0004, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9987, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9952, 0.0019, 0.0008, 0.0005, 0.0005, 0.0001, 0.0001, 0.0001], [0.9947, 0.0012, 0.001, 0.0009, 0.0005, 0.0002, 0.0001, 0.0001], [0.8598, 0.0906, 0.0294, 0.0102, 0.0051, 0.0003, 0.0003, 0.0003]], "ranks": {}}, {"pos": 378, "top": [[" \u2013", ".", "\u2013", " \u2013,", "\u200b\u200b", ".\u2013", "\u2013and", "   \n"], ["**\u2013", " \u2013**", " *\u2013", "\u2013and", " \u2013,", "   \n", " Guta", ".\u2013"], ["\u3002", "\u2026..", "\uff1f", "**\u2013", "\u2026\u2026", "\u5728", "\u4e2d", "\u7684"], ["``", " **\u201e", "raries", " ``(", " cumshot", " milfs", "\uff1f**", ")(__"], ["ly", "!\u201c", ".\u201c", "raries", "____", "\u4e2d", " *\u201c", ".\",\""], ["!\u201c", "\u4e2d", "\uff01", "ly", ".\u201c", "\u3002", "____", "\uff1f"], ["\n\n", "\u4e2d", "\n\n\n", "____", "\u3002", "<|im_end|>", "____________", "!\u201c"], ["   \n\n", "\n\n\n", "____", "!\u201c", "    \n\n", "\n\n", "ly", "\u4e2d"], ["\n\n", "   \n\n", "\n\n\n", "    \n\n", " \n\n\n", " \n\n", "  \n\n\n", "  \n\n"], ["\u6700\u65b0\u53d1\u5e03", ".\",\"", "\n\n    \n", "ly", "____", "\n\n\n", "   \n\n", "!\u201c"], ["\n\n\n", "ly", " ____", "____", "\n\n", "\u6700\u65b0\u53d1\u5e03", "...*", ".\",\""], [" ____", " **\u201e", "____", "raries", "\u6700\u65b0\u53d1\u5e03", " *__", " *\u201e", "ly"], [" ____", "____", " **\u201e", "\u6700\u65b0\u53d1\u5e03", "ly", "raries", "ighbor", "____________"], [" **\u201e", "raries", "ly", "pedia", "ighbor", " freaking", "\u6700\u65b0\u53d1\u5e03", "\u9ecf"], ["\n\n", "ly", " moms", "raries", "\u9ecf", " freaking", "   \n\n", "\n\n\n"], ["ly", "\n\n", "   \n\n", " folks", " centerpiece", " freaking", " moms", " incredibly"], ["\n\n", "ly", "   \n\n", "a", "  \n\n", "\u2013and", "    \n\n", "..."], ["   \n\n", "  \n\n", "    \n\n", "\n\n", " **\u201e", " \n\n", "ly", "  \n\n\n"], [" **\u201e", "   \n\n", "\n\n", "  \n\n", "...**", "    \n\n", "ly", " \n\n"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "    \n\n", "<|im_end|>", "<|endoftext|>", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "<|endoftext|>", "    \n\n", "\n\n\n", "<|im_end|>"], ["\n\n", " **\u201e", " **", "...**", " **\u3010", "   \n\n", " \n\n", " **#"], ["\n\n", " \n\n", "\n\n\n", "  \n\n", "   \n\n", "    \n\n", "\t\n\n", "\n\n\n\n"], ["\n\n", " \n\n", "  \n\n", "\n\n\n", "   \n\n", " \n\n\n", "<|endoftext|>", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "\t\n\n", "\r\n\r\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "   \n\n", " **", "\t\n\n", "...**", "    \n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", " **", "\t\n\n", "\r\n\r\n", "    \n\n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", " **", "\r\n\r\n", "\n\n\n", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", " **", "   \n\n", "\r\n\r\n", "...**", "<|im_end|>"], ["  \n\n", "\n\n", " \n\n", "   \n\n", " **", "<|im_end|>", "  \n\n\n", " \n\n\n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " **", "<|endoftext|>", " \n\n\n", "  \n\n\n"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", " **", " --", "   \n\n", " \u2014"], ["  \n\n", " \n\n", " \u2014", " **", " \u2013", "\n\n", " heavily", " rapidly"], ["  \n\n", " \n\n", "<|endoftext|>", " **", " \u2014", " aggressively", "\n\n", " heavily"], ["  \n\n", " **", " \n\n", "\n\n", " aggressively", "<|endoftext|>", " sprawling", " relentless"], ["  \n\n", "\n\n", "<|endoftext|>", " \n\n", " **", "   \n\n", " \u2014", " aggressively"], ["  \n\n", " **", " \n\n", "\n\n", "<|endoftext|>", " relentless", " aggressively", "   \n\n"], [" **", "  \n\n", " *", " relentless", " **\u201c", " aggressively", " \n\n", " relentlessly"], [" **", "  \n\n", " relentless", " *", " relentlessly", " aggressively", " \u2014", " **\u201c"], [" **", "  \n\n", " relentless", " **\u201c", " aggressively", " relentlessly", "<|endoftext|>", " rapidly"], [" **", "  \n\n", "<|endoftext|>", " relentless", " rapidly", " aggressively", " relentlessly", " **\""], [" **", " aggressively", " relentless", " rapidly", " relentlessly", " swiftly", " looming", " heavily"], [" **", " aggressively", " relentless", " rapidly", " swiftly", " relentlessly", " rapid", "  \n\n"], [" **", " relentless", " aggressively", " rapidly", "  \n\n", " rapid", " relentlessly", " swiftly"], [" **", " **\"", " relentless", " aggressively", " rapidly", "  \n\n", " rapid", " swiftly"], [" **", " **\"", "  \n\n", " **\u201c", " rapidly", " aggressively", " relentless", " swiftly"], [" **", " **\"", " **\u201c", " **\u2013", " **\u201e", " **'", " **#", "  \n\n"], [" **", " **\"", " **\u201c", " **(", " **'", " **#", " **\u2013", " **\u2018"], [" **", " **\"", " **\u201c", " **'", "-**", " **#", " **(", " **\u00ab"], [" **", " **\"", " **\u201c", "-**", " **'", " **#", " **(", "**"], [" **", " **\"", " **\u201c", " **'", "-**", " **#", " **+", " **-"], [" **", " **\"", " **\u201c", " **'", " **#", "-**", "**", " **["], [" **", " **\"", " **\u201c", "**", " **#", "-**", " **'", " **["], [" **", " **\"", " **\u201c", "**", " **#", "-**", " **[", " **'"], [" **", " **\"", " **\u201c", "-**", " **#", "**", " **[", " **\u00ab"], [" **", "**", " **\"", "-**", " **\u201c", " **#", " **[", " **."], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **.", " **["], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **[", " **."], [" **", "**", " **\"", " **\u201c", "-**", " **#", " **[", "]**"], [" **", " **\"", "**", " **\u201c", "-**", " **#", " **.", " **["], [" **", "**", " **\"", " **\u201c", " **.", " **[", " **#", "-**"], [" **", "**", " **\"", " **.", " The", " **\u201c", " **#", " **["], ["**", "The", " **", " The", "Your", " **\"", "**(", "the"]], "p": [[0.7663, 0.1937, 0.0132, 0.0062, 0.0029, 0.0028, 0.0022, 0.0017], [0.1186, 0.0766, 0.0319, 0.0125, 0.0091, 0.0067, 0.0067, 0.0046], [0.3892, 0.0868, 0.0766, 0.0437, 0.0437, 0.0206, 0.0151, 0.0151], [0.0237, 0.0185, 0.0112, 0.0099, 0.0093, 0.0087, 0.006, 0.005], [0.3308, 0.0448, 0.0349, 0.0328, 0.0289, 0.0211, 0.0199, 0.0199], [0.067, 0.049, 0.0432, 0.0337, 0.0246, 0.0231, 0.0217, 0.0204], [0.1696, 0.1095, 0.0624, 0.0295, 0.026, 0.0229, 0.0203, 0.0158], [0.0894, 0.0789, 0.0696, 0.0422, 0.0329, 0.029, 0.0241, 0.0187], [0.3277, 0.2553, 0.1754, 0.0645, 0.0391, 0.0269, 0.021, 0.0093], [0.0933, 0.0414, 0.0303, 0.0303, 0.0162, 0.0162, 0.0134, 0.0087], [0.1457, 0.1066, 0.0941, 0.078, 0.0688, 0.0607, 0.021, 0.0197], [0.0962, 0.0483, 0.0202, 0.0178, 0.013, 0.0101, 0.0074, 0.0065], [0.1126, 0.0994, 0.0566, 0.0162, 0.0152, 0.0092, 0.0077, 0.0077], [0.0448, 0.0421, 0.0106, 0.01, 0.0083, 0.0057, 0.0054, 0.0047], [0.2311, 0.0549, 0.0167, 0.0167, 0.0148, 0.0108, 0.0108, 0.0074], [0.0667, 0.0553, 0.0336, 0.0204, 0.0191, 0.0191, 0.0191, 0.0169], [0.232, 0.1807, 0.0909, 0.0334, 0.0158, 0.0148, 0.0139, 0.0131], [0.5227, 0.1923, 0.0586, 0.0379, 0.0314, 0.0244, 0.0216, 0.0079], [0.3372, 0.1496, 0.0966, 0.0486, 0.0244, 0.0203, 0.0179, 0.0108], [0.8785, 0.0562, 0.0437, 0.0161, 0.0017, 0.0012, 0.0005, 0.0004], [0.9115, 0.0454, 0.0353, 0.0037, 0.0029, 0.0003, 0.0002, 0.0001], [0.4132, 0.1045, 0.0559, 0.0248, 0.0097, 0.0059, 0.0052, 0.0041], [0.9768, 0.0109, 0.0024, 0.0023, 0.0016, 0.0004, 0.0003, 0.0003], [0.9754, 0.0158, 0.0031, 0.0024, 0.0008, 0.0004, 0.0003, 0.0002], [0.877, 0.072, 0.0437, 0.0046, 0.0007, 0.0004, 0.0003, 0.0003], [0.6985, 0.1559, 0.0736, 0.0175, 0.0073, 0.0053, 0.0037, 0.0037], [0.9059, 0.0579, 0.0114, 0.0031, 0.002, 0.0015, 0.0011, 0.0007], [0.9803, 0.0158, 0.0035, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.853, 0.07, 0.07, 0.0021, 0.0019, 0.0005, 0.0005, 0.0003], [0.4295, 0.3345, 0.2299, 0.0029, 0.0011, 0.0004, 0.0003, 0.0003], [0.3909, 0.3909, 0.2093, 0.003, 0.003, 0.0004, 0.0002, 0.0002], [0.4193, 0.3265, 0.1981, 0.0093, 0.006, 0.005, 0.0032, 0.0023], [0.1706, 0.1172, 0.0459, 0.0405, 0.0381, 0.0169, 0.014, 0.0124], [0.3346, 0.1682, 0.0242, 0.0242, 0.0242, 0.0189, 0.0167, 0.0138], [0.3058, 0.0993, 0.0414, 0.0251, 0.0208, 0.0195, 0.0162, 0.0162], [0.5175, 0.1904, 0.1019, 0.1019, 0.0292, 0.0079, 0.0026, 0.0018], [0.5489, 0.0954, 0.0398, 0.033, 0.0176, 0.0156, 0.0156, 0.0114], [0.7737, 0.0816, 0.0091, 0.0076, 0.0071, 0.0067, 0.0059, 0.0046], [0.6729, 0.0755, 0.014, 0.0096, 0.009, 0.009, 0.0075, 0.0066], [0.6357, 0.0629, 0.0169, 0.0085, 0.0085, 0.0085, 0.0071, 0.0071], [0.3855, 0.1105, 0.0297, 0.0246, 0.0149, 0.0132, 0.0103, 0.0085], [0.1766, 0.0348, 0.0327, 0.0327, 0.0154, 0.0154, 0.01, 0.0094], [0.5166, 0.031, 0.0227, 0.0188, 0.0107, 0.0101, 0.0065, 0.0057], [0.7689, 0.017, 0.0117, 0.0103, 0.0071, 0.0052, 0.0046, 0.0046], [0.7444, 0.0136, 0.012, 0.01, 0.0094, 0.0064, 0.0064, 0.0037], [0.8939, 0.012, 0.012, 0.0093, 0.0039, 0.0027, 0.0021, 0.0018], [0.9832, 0.0075, 0.0066, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9868, 0.0059, 0.0059, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9997, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0004, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0019, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9645, 0.0177, 0.0156, 0.0019, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 379, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", "<|endoftext|>", ";", " "], [" \u2013", "\u2013", ",", ".", "\u2013and", ";", " ", ".["], ["\u2013", ".", " \u2013", ",", "\u2013and", ".\u2013", ";", "\u2026."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "TRGL", " ;;^", " Blowjob", "-------------</", "----------</"], ["@$", " \u201c.", ":@", " \"@", "insip", "&(", " (@", " CIF"], [" \u200b\u200b", "\u00a0\u00a0", "ut\u00e9", "insip", "kits", "   \n", ".cast", "\uff01"], ["   \n", "\u76db", " **\u2018", " **\u201c", "  \n", "\uff01", "<|object_ref_end|>", "  \n\n"], ["   \n", " **\u201e", "       \n", "ungan", "   \n\n", "      \n", "     \n", "        \n"], ["   \n\n", "  \n\n", " \n\n", "    \n\n", "        \n\n", "   \n", "      \n\n", "     \n\n"], ["\u99a8", "<|object_ref_start|>", "DMETHOD", "{$", "\u2013and", "ArrayOf", "/{$", "  \n  \n"], ["\u00a0", "...\\", "...", "  \n  \n", " \n\n", "   \n", "  \n\n", "<|object_ref_start|>"], ["DMETHOD", " **", " _$", " **'", " \\\"$", " **#", "idere", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u201e", "idere", "DMETHOD", "asley", " **\u00ab", " **\u300c", " impactful"], [" impactful", "-themed", " vibe", " savvy", " LGBTQ", "\u708e\u708e\u590f\u65e5", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " vibes"], [" savvy", " sprawling", " arguably", " \\\"", " incredibly", " iconic", " frontline", " blockbuster"], [" savvy", " sprawling", " incredibly", " arguably", " overarching", " strategically", " folks", " myriad"], [" arguably", " savvy", " sprawling", " incredibly", " overarching", " myriad", " strategically", " uniquely"], [" savvy", " incredibly", " overarching", " sprawling", " arguably", " gritty", " myriad", " \u2014"], [" incredibly", " savvy", " arguably", " overarching", " foundational", "\u2014even", " myriad", " sprawling"], [" incredibly", " arguably", " myriad", " overarching", " truly", " --", "\u2014even", " sprawling"], ["<|endoftext|>", " \n\n", " myriad", " incredibly", " swiftly", " arguably", " burgeoning", " genuinely"], [" incredibly", " skyrocket", " ;;^", " sprawling", " foundational", " overarching", " ``", " arguably"], [" ``", " --", " incredibly", " arguably", " uniquely", " ''", " skyrocket", " sprawling"], [" ``", " --", " arguably", " myriad", " ultimately", " uniquely", " incredibly", " truly"], [" \n\n", "\n\n", " \r\n\r\n", " --", "  \n\n", "\r\n\r\n", "   \n\n", " myriad"], [" --", " ``", " \n\n", " incredibly", " **", " truly", " dramatically", " infrastructure"], ["\n\n", " \n\n", " --", " ``", " infrastructure", " foundational", " sprawling", "\r\n\r\n"], [" \n\n", "\n\n", " --", " heavily", " ultimately", " rapidly", " much", " truly"], [" \n\n", "\n\n", " heavily", " infrastructure", " ultimately", " aggressively", " rapidly", " complex"], [" \n\n", "  \n\n", " **", " ...", " infrastructure", " heavily", " complex", "\n\n"], [" ...", " \n\n", " **", "\n\n", "  \n\n", " complex", " heavily", " massive"], [" ...", " **", " complex", " \n\n", " heavily", " rapidly", " critical", " power"], [" complex", " critical", " heavily", " rapidly", " massive", " power", " over", " system"], [" fundamentally", " aggressively", " complex", " infrastructure", " critical", " heavily", " strategically", " rapidly"], [" aggressively", " **", " fundamentally", " dual", " complex", " heavily", " critical", " meticulously"], [" aggressively", " dual", " \u2014", " critical", " hardware", " rapidly", " **", " fundamentally"], [" aggressively", " hardware", " dual", " fundamentally", " rapidly", " infrastructure", " performance", " bottleneck"], [" hardware", " dual", " aggressively", " infrastructure", " rapidly", " bottleneck", " performance", " fundamentally"], [" performance", " hardware", " bottleneck", " infrastructure", " dual", " aggressively", " unsustainable", " fundamentally"], [" performance", " hardware", " dual", " bottleneck", " speed", " unsustainable", " infrastructure", " fast"], [" performance", " hardware", " bottleneck", " speed", " infrastructure", " fast", " unsustainable", " dual"], [" performance", " hardware", " engine", " infrastructure", " bottleneck", " speed", " system", " workflow"], [" performance", " bottleneck", " infrastructure", " hardware", " engine", " speed", " throughput", " system"], [" performance", " bottleneck", " hardware", " infrastructure", " speed", " engine", " throughput", " workflow"], [" performance", " bottleneck", " infrastructure", " speed", " framerate", " expectations", " hardware", " system"], [" performance", " dual", " bottleneck", " expectations", " speed", " infrastructure", " production", " critical"], [" performance", " bottleneck", " synchronization", " infrastructure", " expectations", " dual", " framerate", " **"], [" performance", " dual", " bottleneck", " **", " simultaneous", " Dual", " framerate", " synchronization"], [" **", " **'", " **\u201c", " **#", " **\"", " **+", " **\u2018", " **\u20ac"], [" **", " **\"", " **\u201c", " **#", " **'", " **+", " **\u2018", " **\u00ab"], [" **", " **\u201c", " **\"", " **#", " **+", " **'", " **\u00ab", " **\u2018"], [" **", " **\"", " **\u201c", " **#", " **'", " **+", " **.", " **\u201e"], [" **", " **\"", " **\u201c", " **#", " **'", " **\u201e", " **\u2018", " **+"], [" **", " **\"", " **\u201c", " **#", " **+", " **\u00ab", " **'", " **\u201e"], [" **", " **\"", " **\u201c", " **#", " **\u00ab", " **+", " assumption", " **\u300c"], [" **", " **\"", " **\u201c", " **#", " **+", " **\u00ab", " **'", "**"], [" **", " **\"", " **\u201c", " **#", " **+", " **\u00ab", " assumption", " GPU"], [" **", " **\"", " **\u201c", " GPU", " **#", " **+", " assumption", " illusion"], [" **", " **\"", " GPU", " **\u201c", " **#", " **+", " assumption", " Memory"], [" **", " GPU", " Mobile", " **\"", " Android", " GC", " Memory", " mobile"], [" **", " GC", " GPU", " Mobile", " mobile", " Android", " **\"", " JIT"], [" **", " **.", " **\"", " **\u201c", " **#", " Android", " GC", " **["], [" **", " GC", " Android", " **\"", " GPU", " Mobile", " **.", " mobile"]], "p": [[0.6258, 0.1793, 0.1582, 0.0147, 0.007, 0.0061, 0.0045, 0.001], [0.6578, 0.1217, 0.1009, 0.0371, 0.0073, 0.0057, 0.0018, 0.0015], [0.4421, 0.2366, 0.1626, 0.1435, 0.0034, 0.0019, 0.0019, 0.0013], [0.0046, 0.0038, 0.0034, 0.0022, 0.0019, 0.0016, 0.0016, 0.0016], [0.0037, 0.0025, 0.0022, 0.002, 0.002, 0.0019, 0.0019, 0.0019], [0.0195, 0.0018, 0.0017, 0.0015, 0.0015, 0.0014, 0.0013, 0.001], [0.015, 0.0141, 0.0124, 0.0124, 0.0075, 0.0066, 0.0062, 0.0062], [0.0355, 0.0102, 0.0079, 0.0062, 0.0037, 0.0031, 0.0027, 0.0026], [0.1329, 0.1102, 0.0711, 0.059, 0.0459, 0.0246, 0.0204, 0.0191], [0.0027, 0.0027, 0.0022, 0.0016, 0.0016, 0.0015, 0.0015, 0.0014], [0.5584, 0.0278, 0.0203, 0.0169, 0.0123, 0.0109, 0.008, 0.007], [0.0097, 0.0046, 0.002, 0.0018, 0.0017, 0.0014, 0.0013, 0.0013], [0.0053, 0.0041, 0.0028, 0.0022, 0.0015, 0.0014, 0.0014, 0.0014], [0.004, 0.0031, 0.0026, 0.0023, 0.0018, 0.0016, 0.0016, 0.0015], [0.0287, 0.0106, 0.0093, 0.0064, 0.006, 0.0044, 0.0037, 0.0037], [0.0246, 0.0204, 0.018, 0.0132, 0.0055, 0.0038, 0.0033, 0.0031], [0.0268, 0.0237, 0.0223, 0.0196, 0.0112, 0.0099, 0.006, 0.0056], [0.0524, 0.0181, 0.0117, 0.0117, 0.008, 0.0049, 0.0036, 0.0036], [0.0343, 0.0236, 0.0184, 0.0126, 0.0105, 0.0098, 0.0077, 0.0072], [0.0302, 0.0221, 0.0134, 0.0104, 0.0104, 0.0098, 0.0087, 0.0081], [0.3062, 0.0087, 0.0068, 0.0056, 0.0056, 0.0056, 0.0053, 0.0049], [0.0048, 0.0038, 0.0027, 0.0018, 0.0016, 0.0015, 0.0015, 0.0014], [0.0402, 0.0058, 0.0042, 0.0029, 0.0027, 0.0027, 0.0026, 0.0026], [0.03, 0.0142, 0.0041, 0.0036, 0.0036, 0.0036, 0.0034, 0.0032], [0.3298, 0.0649, 0.0288, 0.0175, 0.0154, 0.0136, 0.0047, 0.0044], [0.0163, 0.0135, 0.0112, 0.0105, 0.0053, 0.005, 0.005, 0.0047], [0.0382, 0.0204, 0.015, 0.0116, 0.0052, 0.0043, 0.0043, 0.004], [0.0973, 0.0914, 0.0246, 0.0091, 0.0066, 0.0066, 0.0058, 0.0055], [0.075, 0.0354, 0.0157, 0.0095, 0.0079, 0.007, 0.007, 0.0066], [0.3261, 0.0236, 0.0184, 0.0143, 0.0126, 0.0126, 0.0072, 0.0068], [0.2944, 0.1576, 0.0398, 0.031, 0.0122, 0.0089, 0.0069, 0.0057], [0.0724, 0.0302, 0.0207, 0.0207, 0.0111, 0.0086, 0.0081, 0.0076], [0.0154, 0.012, 0.0113, 0.01, 0.0094, 0.0094, 0.0073, 0.006], [0.0253, 0.021, 0.0197, 0.0154, 0.0144, 0.0136, 0.0112, 0.0099], [0.0283, 0.0171, 0.0151, 0.0133, 0.0133, 0.0118, 0.0118, 0.0104], [0.0304, 0.0185, 0.0163, 0.0127, 0.0119, 0.0119, 0.0119, 0.0112], [0.0283, 0.0182, 0.0142, 0.0125, 0.0118, 0.0111, 0.0111, 0.0098], [0.0223, 0.021, 0.0197, 0.0127, 0.0112, 0.0105, 0.0105, 0.0093], [0.0264, 0.016, 0.015, 0.0125, 0.0125, 0.0103, 0.0091, 0.0081], [0.0755, 0.0245, 0.0179, 0.0158, 0.014, 0.0109, 0.0109, 0.0096], [0.1138, 0.0288, 0.0254, 0.0224, 0.0128, 0.0128, 0.012, 0.0113], [0.1832, 0.0384, 0.0318, 0.0248, 0.0219, 0.0133, 0.0125, 0.0117], [0.1615, 0.0264, 0.0219, 0.0205, 0.0205, 0.015, 0.011, 0.0097], [0.2021, 0.031, 0.0188, 0.0188, 0.0146, 0.0101, 0.0089, 0.0089], [0.0916, 0.0279, 0.0192, 0.014, 0.0132, 0.0116, 0.0109, 0.0109], [0.0498, 0.0195, 0.0172, 0.0143, 0.0118, 0.0092, 0.0081, 0.0076], [0.0284, 0.0221, 0.0162, 0.0126, 0.0118, 0.0118, 0.0092, 0.0081], [0.0338, 0.0218, 0.0192, 0.0192, 0.0181, 0.0124, 0.0103, 0.0085], [0.9689, 0.0051, 0.0045, 0.0037, 0.0031, 0.0014, 0.0011, 0.0007], [0.9536, 0.0154, 0.012, 0.0093, 0.003, 0.0016, 0.0006, 0.0005], [0.9752, 0.0108, 0.0058, 0.0051, 0.0009, 0.0003, 0.0002, 0.0002], [0.9517, 0.0254, 0.012, 0.0082, 0.0007, 0.0007, 0.0002, 0.0002], [0.8689, 0.0629, 0.0555, 0.0085, 0.0008, 0.0007, 0.0006, 0.0005], [0.8903, 0.0502, 0.0345, 0.0163, 0.0017, 0.0013, 0.0009, 0.0007], [0.9091, 0.0399, 0.0214, 0.0147, 0.0042, 0.0018, 0.0008, 0.0008], [0.9606, 0.0155, 0.0107, 0.0065, 0.0014, 0.001, 0.0003, 0.0003], [0.9798, 0.0066, 0.0058, 0.0028, 0.0015, 0.0004, 0.0003, 0.0003], [0.9773, 0.0058, 0.0035, 0.0035, 0.0027, 0.001, 0.0008, 0.0007], [0.9792, 0.0051, 0.0045, 0.0019, 0.0017, 0.0007, 0.0007, 0.0007], [0.9389, 0.0092, 0.0063, 0.0056, 0.0049, 0.0043, 0.0034, 0.003], [0.962, 0.0094, 0.0065, 0.0024, 0.0024, 0.002, 0.0017, 0.0012], [0.9958, 0.0012, 0.001, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001], [0.8766, 0.0265, 0.0142, 0.0091, 0.0086, 0.0076, 0.0052, 0.0049]], "ranks": {}}, {"pos": 380, "top": [["s", "**.", " \u2013", "**\u2013", "**,", " **", " **\u2013", "**:"], ["s", " **", " **\u2013", "**\u2013", "-**", "**,", "**.", "\u2019**"], ["**\u2013", "\u2026**", " **\u2013", " **", "s", "**\u3002", "\u2019**", "**."], [" **", "\u300d**", "\u2019**", " **\u00ab", " **\u300c", "\uff1f**", ">**", " **:"], [" **", "-**", ">**", "\u2019**", "**", " **#", " **.", "s"], [" **", "-**", ">**", "\u2019**", "(**", "**", " **\u00ab", " **#"], [" **", "**", "-**", ">**", "\u300d**", "\u2019**", " **\u00ab", "\uff09**"], [" **", "**", "-**", " **\u00ab", ">**", "\u300d**", " **#", "\u2019**"], [" **", "**", "\u300d**", " **\u00ab", ">**", "-**", " **#", "\u2019**"], [" **", " **\u00ab", ">**", "\u300d**", "-**", " **#", " **\u300c", "**"], [" **", "**", " **\u00ab", ">**", "\u300d**", "-**", " **#", " **\u300c"], [" **", " **\u00ab", "\u300d**", " **\u300c", " **#", ">**", "-**", " **+"], [" **", " **\u00ab", " **\u300c", "\u300d**", "-**", ">**", " **#", " **+"], [" **", " **\u00ab", " **\u300c", "\u300d**", "-**", " **+", ">**", " \u00bb**"], [" **", " **\u00ab", "\u300d**", "-**", " **+", "**", ">**", " **#"], [" **", " **\u00ab", " '**", "\u300d**", "-**", " **+", ">**", " \"**"], [" **", " **\u00ab", " **+", " **#", ">**", "**", " \"**", "-**"], [" **", "**", " **\u00ab", "-**", ">**", "(**", " **+", " **#"], [" **", "**", "-**", " **\u00ab", ">**", " **#", " **'", "\u2019**"], [" **", "**", "-**", ">**", "\u2019**", " **'", " **#", "**,"], [" **", "**", ">**", "-**", " **#", "(**", "**,", "\u2019**"], [" **", "**", ">**", "-**", " **\u00ab", " **#", " **'", "\u2019**"], [" **", "**", ">**", "-**", " **'", " **#", "\u2019**", "\u300d**"], [" **", "**", " **'", ">**", " **#", "\u2019**", "-**", "\u300d**"], [" **", "**", ">**", " **'", "\u2019**", "-**", " **#", " **\u2018"], [" **", "**", ">**", " **'", " **#", "-**", "\u2019**", " **+"], [" **", "**", " **'", ">**", " **#", "-**", " **+", "\u2019**"], [" **", "**", " **'", " **#", " **\u2018", " **+", ">**", " **["], [" **", "**", " **'", " **#", " **\u201c", "-**", ">**", " **["], [" **", "**", " **'", " **\u201c", "  \n\n", " \n\n", " **[", " **#"], [" **", "**", " **'", " **\u201c", " **.", " **#", " **,", " **\""], [" **", "**", " **'", " \n\n", " **\u201c", "  \n\n", " **[", " **#"], [" **", " **'", " **\u201c", " **,", "**", " \"**", " **\"", " **."], [" **", " **\u201c", "**", " **'", "\u2026**", ">**", " **\u2013", " **\""], [" **", "**", " **\u201c", " **'", ">**", " **#", " **\"", "-**"], [" **", "**", " **\u201c", " **\u2013", "\u2026**", "**\u2014", "\u2019**", " **'"], [" **", " **\u201c", "**", ">**", " **\"", " \"**", " **'", "**\u2014"], [" **", "**", " **\u201c", ">**", " \"**", "\u2019**", "%**", "**,"], [" **", " **\u201c", " \"**", " infrastructure", " hardware", " logistical", " dual", " **'"], [" **", " hardware", " dual", " **\u201c", " infrastructure", "**", " core", " logistical"], [" **", " hardware", " infrastructure", " dual", " performance", " bottleneck", "**", " framerate"], [" **", " hardware", " infrastructure", " performance", " bottleneck", " framerate", " workflow", " software"], [" **", " hardware", " infrastructure", " bottleneck", " framerate", " **#", " workflow", " performance"], [" **", " hardware", " bottleneck", " infrastructure", " workflow", " performance", " framerate", " workflows"], [" **", " hardware", " bottleneck", " infrastructure", "**", " workflow", " **#", " framerate"], [" **", " infrastructure", " bottleneck", " hardware", " synchronization", " dual", " integration", " framerate"], [" **", " infrastructure", "**", " synchronization", " bottleneck", "!**", " hardware", " integration"], [" **", "**", " **+", " **'", " **#", ";**", "-**", "**,"], [" **", " synchronization", "**,", "**", " **+", " **'", ";**", " dual"], [" synchronization", " Dual", " framerate", " bottleneck", " interoper", " synergy", " Sync", " dual"], [">**", "]**", "**!", "**.", "!**", ";**", ")**.", " **"], [" runtime", " synchronization", " framerate", " Runtime", " interoper", " CPU", " Performance", " Interface"], [" Runtime", " runtime", " framerate", " synchronization", " JIT", " Performance", " CPU", " Unified"], [" Runtime", " framerate", " runtime", " synchronization", " CPU", " synchronous", " Unified", " Performance"], [" runtime", " Runtime", " CPU", " framerate", " synchronization", " Memory", " JIT", " GPU"], [" Memory", " Runtime", " Android", " CPU", " runtime", " JIT", " GPU", " framerate"], [" Android", " GPU", " JIT", " Memory", " Renderer", " Runtime", " GC", " renderer"], [" Android", " GPU", " Mobile", " Memory", " JIT", " Renderer", " UI", " renderer"], [" Memory", " GC", " Android", " Renderer", " JIT", " Mobile", " GPU", " Plugin"], [" Plugin", " Mobile", " Android", " mobile", " GC", " Async", " plugin", " GPU"], [" Mobile", " mobile", " GC", " Android", " Plugin", " JIT", "mobile", " GPU"], [" Mobile", " Android", " GC", " Plugin", " mobile", " GPU", " JIT", "mobile"], ["3", "GC", "Android", "Mobile", " Mobile", " Android", " GC", "mobile"]], "p": [[0.9992, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5369, 0.369, 0.0162, 0.0143, 0.0111, 0.0111, 0.006, 0.0036], [0.4067, 0.2795, 0.132, 0.0295, 0.026, 0.026, 0.0229, 0.0203], [0.308, 0.1455, 0.0606, 0.0606, 0.0472, 0.0472, 0.0392, 0.0325], [0.8514, 0.0374, 0.0227, 0.0138, 0.0121, 0.0074, 0.0074, 0.0045], [0.8357, 0.0881, 0.0119, 0.0093, 0.0072, 0.0056, 0.0044, 0.0034], [0.8934, 0.0393, 0.0127, 0.0099, 0.0088, 0.0068, 0.0053, 0.0025], [0.868, 0.0262, 0.0231, 0.018, 0.014, 0.014, 0.004, 0.0035], [0.7736, 0.0436, 0.0385, 0.0265, 0.0234, 0.0125, 0.0125, 0.0076], [0.6978, 0.0735, 0.0573, 0.0446, 0.0347, 0.0186, 0.0113, 0.01], [0.9448, 0.0173, 0.0082, 0.0064, 0.0056, 0.0044, 0.0034, 0.0016], [0.9371, 0.0283, 0.0063, 0.0056, 0.0043, 0.0038, 0.003, 0.0018], [0.8719, 0.0716, 0.0141, 0.0085, 0.0059, 0.0036, 0.0031, 0.0028], [0.7977, 0.1223, 0.0188, 0.0114, 0.01, 0.0054, 0.0042, 0.0042], [0.996, 0.0008, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.9924, 0.0032, 0.0005, 0.0005, 0.0004, 0.0004, 0.0004, 0.0004], [0.999, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9969, 0.0012, 0.0006, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001], [0.9958, 0.0022, 0.0007, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9921, 0.0067, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.996, 0.0032, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9968, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002], [0.9986, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9993, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9932, 0.0046, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002, 0.0001], [0.9977, 0.0008, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9985, 0.0007, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9989, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.997, 0.0008, 0.0006, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9979, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9924, 0.0025, 0.0013, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002], [0.9905, 0.0014, 0.0012, 0.0005, 0.0005, 0.0005, 0.0004, 0.0003], [0.9729, 0.0037, 0.0033, 0.0007, 0.0006, 0.0005, 0.0005, 0.0005], [0.924, 0.0052, 0.0018, 0.0018, 0.0018, 0.0013, 0.0012, 0.0012], [0.8276, 0.0063, 0.0046, 0.0043, 0.0041, 0.0036, 0.0019, 0.0019], [0.3494, 0.0346, 0.021, 0.012, 0.012, 0.0112, 0.0112, 0.0106], [0.0898, 0.0898, 0.0481, 0.0292, 0.0257, 0.0242, 0.0166, 0.0156], [0.3868, 0.0263, 0.0247, 0.017, 0.0132, 0.011, 0.011, 0.0103], [0.121, 0.0474, 0.0445, 0.0393, 0.0306, 0.0238, 0.0154, 0.012], [0.7246, 0.0091, 0.0086, 0.0086, 0.0071, 0.0071, 0.0059, 0.0046], [0.5272, 0.0124, 0.0109, 0.0109, 0.0075, 0.0071, 0.0071, 0.0059], [0.5652, 0.0141, 0.0117, 0.0091, 0.0091, 0.0067, 0.0063, 0.0055], [0.9563, 0.0083, 0.0057, 0.0042, 0.0034, 0.0017, 0.0015, 0.0014], [0.3213, 0.0181, 0.016, 0.0141, 0.0141, 0.011, 0.0103, 0.0091], [0.0503, 0.0223, 0.0174, 0.0163, 0.0135, 0.0127, 0.0127, 0.0087], [0.0723, 0.0497, 0.0439, 0.0412, 0.0364, 0.0283, 0.0266, 0.0266], [0.062, 0.0582, 0.0454, 0.0454, 0.0275, 0.0201, 0.0157, 0.0147], [0.0944, 0.0691, 0.0505, 0.0419, 0.0288, 0.0288, 0.0239, 0.0224], [0.1119, 0.0818, 0.0599, 0.0496, 0.0341, 0.0266, 0.0183, 0.0111], [0.1246, 0.117, 0.071, 0.0519, 0.0404, 0.0404, 0.0261, 0.0169], [0.1358, 0.0877, 0.0824, 0.0727, 0.0683, 0.05, 0.0389, 0.0285], [0.2101, 0.0876, 0.0773, 0.0773, 0.0414, 0.0414, 0.0322, 0.0251], [0.2236, 0.1537, 0.0726, 0.0641, 0.0499, 0.0499, 0.0284, 0.0251], [0.1672, 0.0895, 0.079, 0.0697, 0.0697, 0.0615, 0.0543, 0.0479], [0.3181, 0.2807, 0.1703, 0.0911, 0.038, 0.023, 0.0109, 0.0051], [0.4851, 0.2022, 0.139, 0.0843, 0.0242, 0.0078, 0.0078, 0.0069], [0.271, 0.2391, 0.1862, 0.088, 0.0605, 0.0173, 0.0144, 0.0087], [0.5147, 0.1671, 0.0894, 0.0479, 0.0241, 0.0129, 0.0089, 0.0089]], "ranks": {}}, {"pos": 381, "top": [[" \u2013", "\u2013", ".", ",", "y", "\u2026..", ".\u2013", "\u2013and"], [" \u2013", "\u2013and", " \u2013**", "**\u2013", "\u2013\u2013", "  \n", "\u2013", " *\u2013"], ["\u2013", " \u2013", ".\u2013", "**\u2013", "\u2013and", "\u2026..", "\u2013\u2013", " \u2013,"], [" milfs", " Geile", "erias", " Strec", " \u041a\u0440\u0430\u0441\u0438", " Shemale", " Hidal", " Blowjob"], ["kits", " ***", "s", " *\u2013", "es", "erweise", "-**", "nok"], ["-**", "kits", "-CS", " **\u2013", "**\u2013", "salt", " veggies", " ***"], [" ***", "s", "***", "____", "er", "  \n", "-**", " ____"], [" ***", "-**", "s", " veggies", "sdale", "egger", "  \r\n", "illion"], ["egger", " ***", "athon", "ilian", "\\xf", "\u4e94\u989c\u516d\u8272\u7684", "scheid", "***"], ["s", "\u2013\u2013", "er", "\\-", "\\xf", "rd", "\u52c7\u5f80\u76f4\u524d", "illion"], ["er", "s", "y", "\\n", "--", "***", "\u2013", "rd"], [" ***", "er", "\\xf", "illion", "egger", "ilian", " veggies", "ball"], ["er", "illion", "\\xf", " ***", "orama", "ball", " veggies", "+')"], ["er", "illion", "zinho", "ball", "orama", " veggies", "rd", "\u2013\u2013"], ["er", "--", "y", " --", "\u2013", " \u2013", "es", "s"], ["er", "y", "es", "s", "n", "an", "ball", "o"], ["y", "es", "er", "o", "s", "n", "\u2013", "u"], ["o", "er", "y", "u", "es", "ic", "\u2013", "n"], ["zinho", "u", "er", "y", "es", "ic", "o", "os"], ["u", "y", "o", "\u2013", "n", " \u2013", "an", "es"], ["<|endoftext|>", "3", "2", "  \n\n", "u", "4", "1", "n"], ["zinho", "orama", "illion", "kits", "ball", "jack", "cha", " anyways"], [" --", "zinho", "y", " \ufffd", "er", "u", "ic", "n"], [" --", " \ufffd", "y", "er", " &#", "o", "n", "ahead"], [" \r\n\r\n", "\r\n\r\n", " --", "   \n\n", " \n\n", "\n\n", "    \n\n", " ____"], [" ____", "orama", " tech", "____", "...**", " ***", "-tech", " ______"], ["\n\n", "\r\n\r\n", " ____", " tech", " \r\n\r\n", "...**", " --", "orama"], ["\n\n", " \n\n", " ____", "  \n\n", " --", "\r\n\r\n", " ___", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", " tech", " \r\n\r\n", "\r\n\r\n", "   \n\n", " ____"], [" ...", " ...\\", " ____", " tech", " technology", " \n\n", " ......", " ______"], [" ...", " technology", " tech", " complex", " **", " ____", " heavily", " ***"], [" complex", " heavily", " technology", " high", " ,", " @", " critical", " -"], [" heavily", " critical", " complex", " massively", " technology", " high", " massive", " extremely"], [" tech", " hardware", "-heavy", " technology", " massively", " \u2013", " heavily", " optimized"], ["**\u2013", " tech", "\u2026**", " *\u2013", "\u2011", " **\u2013", "**\u2014", "-centric"], [" \u2013", "**\u2013", " tech", " *\u2013", "**\u2014", " optimized", " overclock", "\u2026**"], [" optimized", " overclock", " tech", " hardware", " urgently", " scalability", " optimization", " optimizations"], [" optimized", " hardware", " overclock", " tech", " optimization", " urgently", " optimizations", " scalability"], [" optimized", " hardware", " overclock", " urgently", " tech", " optimization", " optimizations", " performance"], [" hardware", " framerate", " optimized", " overclock", " performance", " tech", " optimization", " scalability"], [" hardware", " framerate", " performance", " optimized", " tech", " overclock", " optimization", " scalability"], [" hardware", " performance", " framerate", " optimized", " overclock", " tech", " optimization", " engineering"], [" hardware", " performance", " framerate", " overclock", " optimized", "-engine", "-intensive", " engineering"], [" performance", " hardware", " framerate", " overclock", " optimization", " optimized", "-intensive", " engineering"], [" hardware", " framerate", " performance", " sprint", " engineering", " overclock", " physics", " optimization"], [" performance", " hardware", " framerate", " physics", " engineering", " sprint", "-engine", " requirement"], [" hardware", " framerate", " performance", "-engine", " physics", " engineering", "-heavy", " infrastructure"], [" framerate", " performance", "\\-", " hardware", " functionality", " FPS", "/", " requirement"], [" framerate", "\\-", " hardware", " propulsion", " functionality", " FPS", "-engine", "-tier"], [" framerate", "-heavy", "-tier", "-centric", "/UI", " propulsion", "-axis", "-performance"], [" framerate", "-tier", "\u8fbe\u4ea7\u5e74", " interoper", "!**", " hardware", "/UI", " Hardware"], [" framerate", " viewport", " backend", " visualization", " interoper", " Engine", " engine", "-engine"], [" framerate", " Engine", " Rendering", " viewport", "-engine", " engine", "/UI", " renderer"], [" framerate", " Engine", " viewport", " Renderer", " renderer", " Rendering", " engine", "-engine"], [" renderer", " Renderer", " viewport", " engine", " Engine", " Rendering", " framerate", " shader"], [" viewport", " Renderer", " renderer", " Rendering", " framerate", "Renderer", "-render", " FPS"], [" Renderer", " renderer", " Rendering", " viewport", " rendering", "\u6e32\u67d3", "Renderer", " Render"], [" Renderer", " renderer", " Rendering", " viewport", " rendering", "\u6e32\u67d3", "Renderer", " Engine"], [" Renderer", " Engine", " renderer", " Rendering", " engine", " Pipeline", " viewport", " rendering"], [" viewport", " Renderer", " renderer", " Rendering", "Viewport", " Engine", " rendering", "viewport"], [" viewport", " Engine", " Renderer", " renderer", "Viewport", " engine", " Rendering", " rendering"], ["D", " viewport", "rd", " renderer", " Renderer", " Engine", "Viewport", " rendering"], ["D", "2", "0", "6", "5", "3", "1", "4"]], "p": [[0.392, 0.2694, 0.2378, 0.0365, 0.0118, 0.0092, 0.0072, 0.0053], [0.0773, 0.0414, 0.0365, 0.0303, 0.0267, 0.0143, 0.0134, 0.0098], [0.4009, 0.2431, 0.1475, 0.0789, 0.0697, 0.0176, 0.01, 0.005], [0.0125, 0.0081, 0.0071, 0.0059, 0.0041, 0.0041, 0.0038, 0.0036], [0.0207, 0.0171, 0.0125, 0.0125, 0.0104, 0.0086, 0.0071, 0.0049], [0.0161, 0.0151, 0.0125, 0.0111, 0.0052, 0.0049, 0.0046, 0.0043], [0.1817, 0.1817, 0.0358, 0.0217, 0.0149, 0.0149, 0.014, 0.0058], [0.0207, 0.0195, 0.0162, 0.0086, 0.0067, 0.0063, 0.0059, 0.0059], [0.053, 0.0183, 0.0104, 0.0098, 0.0081, 0.0049, 0.0046, 0.0046], [0.0177, 0.0156, 0.0147, 0.0114, 0.0107, 0.0101, 0.0095, 0.0095], [0.2755, 0.2588, 0.0479, 0.029, 0.0256, 0.0188, 0.0176, 0.0165], [0.0309, 0.0137, 0.01, 0.0089, 0.0069, 0.0057, 0.0045, 0.0037], [0.0367, 0.0237, 0.0072, 0.0056, 0.0056, 0.0056, 0.0047, 0.0039], [0.0263, 0.011, 0.0097, 0.0091, 0.0052, 0.0043, 0.004, 0.0036], [0.1138, 0.0609, 0.0505, 0.0288, 0.0254, 0.0239, 0.0186, 0.0136], [0.0782, 0.0735, 0.0648, 0.0198, 0.0186, 0.0175, 0.0164, 0.0093], [0.1907, 0.0901, 0.0795, 0.0795, 0.0659, 0.0513, 0.0453, 0.0214], [0.0922, 0.0718, 0.0718, 0.0525, 0.0361, 0.0219, 0.0219, 0.0219], [0.0506, 0.037, 0.0211, 0.0175, 0.0175, 0.0164, 0.0164, 0.0088], [0.0532, 0.05, 0.05, 0.047, 0.0162, 0.0162, 0.0135, 0.0119], [0.9003, 0.0044, 0.0035, 0.0027, 0.0025, 0.0024, 0.0022, 0.0021], [0.0383, 0.0097, 0.0028, 0.002, 0.0018, 0.0018, 0.0017, 0.0016], [0.0217, 0.008, 0.0075, 0.007, 0.0052, 0.0052, 0.0043, 0.0043], [0.0314, 0.007, 0.0048, 0.0033, 0.0031, 0.0029, 0.0027, 0.0026], [0.0524, 0.0338, 0.0247, 0.015, 0.0141, 0.0124, 0.0124, 0.0117], [0.0202, 0.0062, 0.0048, 0.0042, 0.004, 0.004, 0.0029, 0.0026], [0.0714, 0.0181, 0.0103, 0.0052, 0.0046, 0.0043, 0.004, 0.0033], [0.6186, 0.1297, 0.0199, 0.0145, 0.0106, 0.0073, 0.0057, 0.0044], [0.4473, 0.1646, 0.0252, 0.0112, 0.0105, 0.0099, 0.0082, 0.0072], [0.1236, 0.0661, 0.0584, 0.0377, 0.0229, 0.0202, 0.0178, 0.013], [0.1417, 0.0859, 0.046, 0.0358, 0.008, 0.0075, 0.0075, 0.0071], [0.0371, 0.0289, 0.0239, 0.0175, 0.0136, 0.0136, 0.012, 0.012], [0.0435, 0.0281, 0.0233, 0.015, 0.015, 0.0141, 0.0117, 0.0117], [0.0456, 0.0215, 0.0215, 0.0158, 0.0123, 0.0102, 0.0102, 0.0102], [0.0216, 0.0216, 0.0149, 0.0123, 0.0109, 0.0109, 0.0102, 0.0102], [0.0235, 0.0221, 0.0195, 0.0162, 0.0162, 0.0143, 0.0111, 0.0104], [0.0244, 0.0178, 0.0168, 0.0157, 0.0115, 0.0102, 0.0096, 0.007], [0.0334, 0.0216, 0.0216, 0.0168, 0.0139, 0.0096, 0.009, 0.0084], [0.039, 0.0344, 0.0222, 0.0196, 0.0184, 0.0143, 0.0087, 0.0087], [0.0751, 0.0428, 0.0402, 0.0313, 0.0157, 0.0148, 0.0139, 0.0108], [0.1092, 0.0485, 0.0485, 0.0333, 0.0244, 0.0229, 0.0148, 0.0102], [0.1312, 0.0796, 0.0748, 0.0275, 0.0275, 0.0138, 0.0122, 0.0115], [0.0931, 0.0565, 0.0388, 0.0267, 0.0208, 0.0143, 0.0134, 0.0126], [0.0801, 0.0586, 0.0378, 0.0216, 0.0158, 0.0139, 0.0108, 0.0108], [0.0455, 0.0455, 0.0428, 0.0157, 0.0157, 0.0148, 0.013, 0.0115], [0.0471, 0.039, 0.0324, 0.0209, 0.0163, 0.0127, 0.0112, 0.0093], [0.0426, 0.0275, 0.0259, 0.0167, 0.0138, 0.013, 0.0095, 0.0095], [0.0247, 0.0193, 0.0181, 0.016, 0.011, 0.0097, 0.0097, 0.0085], [0.0414, 0.0184, 0.0143, 0.0111, 0.0087, 0.0072, 0.0072, 0.0068], [0.0384, 0.0141, 0.0081, 0.0076, 0.0067, 0.0063, 0.0055, 0.0052], [0.0176, 0.0094, 0.0073, 0.0069, 0.0065, 0.0065, 0.0065, 0.0057], [0.0466, 0.0266, 0.0266, 0.0194, 0.0171, 0.0142, 0.0118, 0.0118], [0.0723, 0.0341, 0.0321, 0.0266, 0.025, 0.0235, 0.022, 0.022], [0.0946, 0.0692, 0.0447, 0.0348, 0.0348, 0.0307, 0.0307, 0.0225], [0.1595, 0.0967, 0.0909, 0.0486, 0.0457, 0.0379, 0.0356, 0.0334], [0.337, 0.2316, 0.2316, 0.0517, 0.0158, 0.0108, 0.0066, 0.0054], [0.3354, 0.296, 0.2035, 0.0514, 0.0243, 0.0147, 0.0147, 0.0089], [0.3705, 0.2546, 0.1203, 0.0937, 0.0345, 0.0184, 0.0105, 0.0093], [0.2946, 0.2025, 0.1787, 0.1084, 0.0512, 0.0399, 0.0352, 0.0166], [0.7494, 0.0697, 0.0615, 0.0256, 0.0256, 0.0121, 0.0094, 0.0073], [0.7763, 0.0438, 0.0341, 0.0283, 0.0234, 0.0172, 0.0092, 0.0092], [0.5934, 0.2324, 0.0245, 0.0216, 0.0191, 0.0149, 0.0085, 0.0066], [0.9984, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 382, "top": [[".", "\u00a0", " \u200b\u200b", " \u2013", ",", " ", "\u2013", "\u200b\u200b"], [" \u200b\u200b", " \u2013", "\u2013", "\u200b\u200b", " ", "  \n\n", "   \n", "."], ["\u2013", " \u2013", ".", " \u200b\u200b", ",", "\u2026", "\u2026.", "\u2026.."], ["&eacute", "emonic", "\ufffd\ufffd", "\u30bb\u30ec", "CCCCCC", " pornstar", "olest", "acus"], [" \u200b\u200b", " ", "&D", " @", "&nbsp", " PD", " ND", " culture"], [" \u200b\u200b", "&D", " Lego", " Hollywood", " Hong", " Dream", " Star", " Pro"], [" \u200b\u200b", ".", " ", "\u200b\u200b", " ......", "......", "!", " \u200b"], [" \u200b\u200b", " ......", ".", "\u200b\u200b", "......", " ", " Star", "&D"], [" \u200b\u200b", ".", "......", " ......", "\u200b\u200b", " \n\n", "&nbsp", "...."], [",", "...", ".", " \u200b\u200b", "&nbsp", " [\u2026]", "\u00a0", "\u200b"], ["...", ".", "......", "&nbsp", " [\u2026]", " \u200b\u200b", "....", " [...]"], [" vision", " movies", " complex", "&nbsp", "...", " Hollywood", " technology", " pyramid"], [" vision", " complex", " movies", " theater", " technology", " artists", " movie", " technologies"], [" vision", " movies", " complex", " technology", " visuals", " movie", " lifestyle", " artists"], [" vision", " movies", " complex", " technology", " movie", " world", " classic", " artists"], [" movies", " technology", " tech", " vision", " movie", " complex", " kids", " classic"], [" movies", " tech", " complex", " technology", " movie", " kids", " vision", " classic"], [" tech", " movies", " visuals", " vision", " movie", " technology", " complex", " kids"], [" complex", " movie", " movies", " music", " tech", " Hollywood", " technology", " vision"], [" movie", " complex", " movies", " music", " Hollywood", " drama", " vision", " imagery"], ["<|endoftext|>", " \n\n", "  \n\n", "...", " [\u2026]", " [...]", "\n\n", " movie"], [" movies", " movie", " gameplay", " games", " Lego", " visuals", " theater", " Hollywood"], [" movie", " games", " movies", " technology", " technologies", " gaming", " game", " complex"], [" complex", " movie", " music", " games", " technology", " movies", " world", " film"], [" movie", " movies", " visuals", " artwork", " technology", " architecture", " imagery", " gameplay"], [" architecture", " visuals", " sculptures", " cinema", " movies", " animations", " movie", " graphics"], [" visuals", " movies", " architecture", " movie", " sculptures", " photography", " cinema", " film"], [" film", " movies", " movie", " technology", " video", " music", " visual", " games"], [" film", " technology", " architecture", " visuals", " movies", " technologies", " movie", " video"], [" technology", " architecture", " film", " movies", " visuals", " movie", " graphics", " theater"], [" technology", " architecture", " ...", " film", " visuals", " graphics", " technologies", " theater"], [" ...", " technology", " complex", " film", " architecture", " video", " tech", " studio"], [" technology", " complex", " film", " tech", " technologies", " video", " architecture", " hardware"], [" technology", " technologies", " tech", " complex", " architecture", " hardware", " visuals", " software"], [" technology", " tech", " complex", " hardware", " architecture", " visuals", " technologies", " software"], [" hardware", " tech", " technology", " \u2026", " [...]", " complex", " ...", " [\u2026]"], [" hardware", " tech", " technology", " software", " animations", " graphics", " performance", " complex"], [" software", " graphics", " technology", " animations", " tech", " animation", " hardware", " gameplay"], [" complex", " graphics", " software", " architecture", " hardware", " animation", " animations", " gameplay"], [" graphics", " complex", " animation", " architecture", " hardware", " animations", " gameplay", " visuals"], [" graphics", " animation", " animations", " visuals", " architecture", " visual", " software", " hardware"], [" graphics", " animation", " visuals", " architecture", " hardware", " visual", " animations", " Graphics"], [" graphics", " animation", " visuals", " animations", " hardware", " architecture", " software", " visual"], [" graphics", " animation", " animations", " hardware", " visuals", " architecture", " software", " Graphics"], [" architecture", " hardware", " graphics", " animation", " animations", " software", " visuals", " gameplay"], [" animation", " hardware", " architecture", " graphics", " animations", " visuals", " software", " gameplay"], [" hardware", " architecture", " animation", " graphics", " animations", " visuals", " software", " workflow"], [" hardware", " architecture", " visuals", " animation", " graphics", " gameplay", " animations", " workflow"], [" visuals", " hardware", " animation", " gameplay", " graphics", " architecture", " animations", " visualization"], [" visuals", " gameplay", " visualization", " framerate", " workflow", " hardware", " graphics", " propulsion"], [" visuals", " visualization", " framerate", " workflow", " synchronization", " hardware", " Visualization", " gameplay"], [" framerate", " visuals", " throughput", " workflow", " visualization", " performance", " viewport", " Performance"], [" framerate", " visuals", " renderer", " visualization", " Rendering", " throughput", " performance", " Performance"], [" framerate", " renderer", " viewport", " visuals", " shader", " Renderer", " Rendering", " pipeline"], [" renderer", " framerate", " viewport", " pipeline", " Renderer", " shader", " Rendering", " loop"], [" viewport", " renderer", " Rendering", " Renderer", " framerate", " rendering", " pipeline", " render"], [" Rendering", " renderer", " Renderer", " rendering", " viewport", " Render", "\u6e32\u67d3", " render"], [" Rendering", " renderer", " rendering", " Renderer", "\u6e32\u67d3", " Render", " render", " viewport"], [" Rendering", " Renderer", " renderer", " rendering", " Render", " Pipeline", " render", "\u6e32\u67d3"], [" viewport", " Rendering", " renderer", " rendering", " Renderer", " Render", "Viewport", " render"], [" viewport", " renderer", " Rendering", " Renderer", " rendering", "Viewport", " View", "viewport"], [" viewport", " View", " Rendering", " rendering", " renderer", " Renderer", " Render", "Viewport"], [" View", " viewport", " Rendering", " Render", " Renderer", " rendering", " Frame", " render"]], "p": [[0.8158, 0.0432, 0.0204, 0.0192, 0.018, 0.0103, 0.0103, 0.0085], [0.1285, 0.0503, 0.0305, 0.0163, 0.0135, 0.0087, 0.0087, 0.0087], [0.3448, 0.1965, 0.1437, 0.0819, 0.0341, 0.022, 0.0151, 0.0098], [0.0018, 0.0015, 0.0015, 0.0014, 0.0013, 0.0013, 0.001, 0.001], [0.1711, 0.0132, 0.0103, 0.0085, 0.0066, 0.0043, 0.0036, 0.0028], [0.4838, 0.0019, 0.0014, 0.0011, 0.0009, 0.0009, 0.0009, 0.0008], [0.6895, 0.0267, 0.0143, 0.0126, 0.0111, 0.0036, 0.0022, 0.0021], [0.5282, 0.008, 0.0062, 0.0049, 0.0049, 0.002, 0.0017, 0.0014], [0.5812, 0.0652, 0.0328, 0.0328, 0.0165, 0.0078, 0.0061, 0.005], [0.0702, 0.0189, 0.0157, 0.0138, 0.0138, 0.0108, 0.0074, 0.0051], [0.4514, 0.0447, 0.0371, 0.0289, 0.0255, 0.0175, 0.0164, 0.012], [0.0106, 0.0083, 0.0078, 0.0078, 0.0073, 0.0047, 0.0044, 0.0042], [0.0164, 0.0093, 0.0088, 0.0068, 0.0057, 0.0044, 0.0039, 0.0037], [0.0176, 0.0083, 0.0078, 0.0073, 0.0047, 0.0044, 0.0044, 0.0044], [0.0142, 0.011, 0.0104, 0.0071, 0.0059, 0.0055, 0.0052, 0.0049], [0.0128, 0.0094, 0.0088, 0.0083, 0.0078, 0.0073, 0.0064, 0.0061], [0.0139, 0.0139, 0.0115, 0.0095, 0.0095, 0.0061, 0.0058, 0.0048], [0.0142, 0.0125, 0.0097, 0.0086, 0.0086, 0.0076, 0.0071, 0.0055], [0.0145, 0.0113, 0.0094, 0.0078, 0.0073, 0.0061, 0.0061, 0.0057], [0.0094, 0.0083, 0.0054, 0.0047, 0.0045, 0.0042, 0.0037, 0.0035], [0.5379, 0.0303, 0.0087, 0.006, 0.0047, 0.0027, 0.0025, 0.0014], [0.0093, 0.0087, 0.0077, 0.0068, 0.005, 0.0047, 0.0044, 0.0044], [0.0185, 0.0144, 0.0127, 0.0112, 0.0087, 0.0077, 0.0077, 0.0064], [0.012, 0.0088, 0.0088, 0.0082, 0.0068, 0.0068, 0.006, 0.0057], [0.0226, 0.0165, 0.0165, 0.0089, 0.0089, 0.0083, 0.0078, 0.0078], [0.0259, 0.0229, 0.0215, 0.0215, 0.0202, 0.0178, 0.0167, 0.0157], [0.0396, 0.0372, 0.0328, 0.0272, 0.024, 0.0212, 0.0199, 0.0187], [0.0352, 0.0227, 0.0214, 0.0214, 0.0177, 0.0147, 0.0138, 0.0122], [0.0344, 0.0344, 0.0237, 0.0184, 0.0184, 0.0153, 0.0153, 0.0143], [0.0489, 0.0336, 0.0336, 0.0204, 0.018, 0.0169, 0.0169, 0.0169], [0.072, 0.0437, 0.0362, 0.0249, 0.0249, 0.022, 0.0206, 0.0194], [0.0726, 0.0499, 0.0303, 0.0284, 0.0126, 0.0126, 0.0126, 0.0105], [0.0647, 0.0346, 0.0144, 0.0127, 0.0099, 0.0093, 0.0088, 0.0082], [0.0948, 0.0308, 0.0289, 0.0272, 0.0255, 0.0225, 0.0137, 0.0137], [0.0667, 0.0626, 0.038, 0.0357, 0.023, 0.0216, 0.0179, 0.014], [0.06, 0.0529, 0.0497, 0.0467, 0.0364, 0.0302, 0.0283, 0.0266], [0.0799, 0.0516, 0.0485, 0.0455, 0.0244, 0.0244, 0.0215, 0.0202], [0.0479, 0.0373, 0.029, 0.0273, 0.0273, 0.0256, 0.0256, 0.0241], [0.0437, 0.0437, 0.0301, 0.0265, 0.0234, 0.0234, 0.0182, 0.0182], [0.0583, 0.04, 0.04, 0.0376, 0.0332, 0.0312, 0.0258, 0.0189], [0.2152, 0.0744, 0.0398, 0.0374, 0.0351, 0.0227, 0.0227, 0.02], [0.2853, 0.0598, 0.0562, 0.0438, 0.0386, 0.0363, 0.0363, 0.0265], [0.2703, 0.0824, 0.0727, 0.0603, 0.047, 0.0323, 0.0303, 0.0208], [0.1732, 0.0818, 0.0678, 0.0599, 0.0528, 0.0411, 0.0301, 0.0171], [0.1078, 0.0951, 0.0893, 0.0788, 0.0509, 0.035, 0.0256, 0.0176], [0.0995, 0.0878, 0.0825, 0.0728, 0.0567, 0.0323, 0.0236, 0.0196], [0.1181, 0.0492, 0.0434, 0.036, 0.0299, 0.0299, 0.0233, 0.0218], [0.107, 0.0572, 0.0505, 0.037, 0.0306, 0.0239, 0.0224, 0.0154], [0.1168, 0.0803, 0.0404, 0.0404, 0.0314, 0.0314, 0.0295, 0.0203], [0.1812, 0.043, 0.0404, 0.0335, 0.0335, 0.0278, 0.0158, 0.0116], [0.1466, 0.0889, 0.0693, 0.0327, 0.0155, 0.0155, 0.012, 0.0106], [0.266, 0.0811, 0.0593, 0.0492, 0.0408, 0.0298, 0.028, 0.0232], [0.3824, 0.0967, 0.0586, 0.0334, 0.0314, 0.0314, 0.0277, 0.0277], [0.5452, 0.0947, 0.0395, 0.024, 0.024, 0.024, 0.024, 0.0211], [0.3018, 0.1615, 0.098, 0.0763, 0.0594, 0.0463, 0.036, 0.036], [0.434, 0.338, 0.0666, 0.0587, 0.0457, 0.0149, 0.009, 0.0029], [0.4426, 0.3042, 0.1268, 0.0679, 0.022, 0.0092, 0.0056, 0.0056], [0.5898, 0.1491, 0.1161, 0.1025, 0.0108, 0.0108, 0.0095, 0.0027], [0.6591, 0.1298, 0.1145, 0.0477, 0.0226, 0.0065, 0.0044, 0.0035], [0.7453, 0.1143, 0.0327, 0.0289, 0.0289, 0.0175, 0.012, 0.0073], [0.9067, 0.0213, 0.0166, 0.0147, 0.0129, 0.0114, 0.0048, 0.0022], [0.7861, 0.0345, 0.0345, 0.0305, 0.0269, 0.0237, 0.0099, 0.0093], [0.6287, 0.0964, 0.0851, 0.0585, 0.0402, 0.0168, 0.0139, 0.0066]], "ranks": {}}, {"pos": 383, "top": [["?", "d", "ings", ".", "u", "h", "ably", "y"], ["\uff0e", "\u00ad", "  \n", "ings", "?'", "\u00ading", "ingly", "ment"], ["?", "?'", "\uff0e", "'?", ".'", ".?", ",'", "ings"], [" ``", "``", "ingly", " ''", "ings", " \u300e", "hov", "\u3001\u300e"], ["ed", "ings", "ingly", "est", "ers", " @", " '", ".'"], ["ed", "ings", "ingly", "est", "ers", "hov", "ishly", "ably"], ["ings", "ed", ".'", "est", " '", "ably", "d", "\uff0e"], ["ings", "ment", "ed", "ers", "able", "less", "est", "ery"], ["ings", "ment", "able", "ey", "ers", "ery", "ie", "ed"], ["ings", "ment", "able", "ers", "ery", "ed", "ie", "less"], ["ings", "ment", "able", "ers", "ed", "ie", "est", "ery"], ["ings", "ment", "ers", "ery", "able", "less", "ian", "ures"], ["ings", "ers", "ment", "ery", "able", "less", "ful", "ingly"], ["ings", "ers", "ment", "ed", "ful", "ingly", "able", "ery"], ["ings", "ers", "ment", "ed", "est", "able", "ful", "y"], ["ers", "ings", "ment", "ed", "es", "est", "able", "y"], ["ers", "ings", "ment", "ed", "est", "es", "y", "h"], ["ings", "ers", "ment", "ed", "est", "es", "ery", "ingly"], ["ers", "ings", "ment", "ed", "est", "ingly", "es", "ey"], ["ment", "ings", "ed", "ers", "h", "est", "ingly", "es"], ["ment", "ed", "d", "r", "h", "ings", "est", "ers"], ["ings", "ers", "ment", "ingly", "hoot", "ery", "ed", "cape"], ["ings", "ers", "ment", "ingly", "ed", " ``", "fully", "ery"], ["ment", "ed", "fully", "ably", " '", "d", "ery", "ers"], ["ed", "d", "ment", "ings", "r", "h", "fully", "ably"], ["ings", "ers", "ment", "ery", "ingly", "ed", " optics", "ably"], ["ers", "ings", " optics", "ery", " screens", " visually", " pixel", " ``"], [" '", " ,", " visual", " film", "fully", " visually", " --", "ed"], ["ment", " optics", " visually", " film", "ers", " visual", " screens", "ery"], [" optics", " film", " screens", "ers", " camera", " pixel", "pace", "ment"], [" ?", " optics", " film", " visually", " visual", " technology", " ...", "ers"], [" ,", " '", " technology", " ...", " film", " under", " work", " complex"], [" ,", " '", " under", " over", " at", " as", " rather", " on"], [" technology", " technical", " optimized", " system", " technically", " hardware", " directly", " complex"], [" technology", "ment", " optimized", " rapidly", " technical", " optics", "ed", " system"], [" rapidly", " optimized", " rapid", " technology", " quickly", " faster", " fast", " performance"], [" optimized", " performance", " rapidly", " GPU", " technology", " rapid", " technical", " speed"], [" optimized", " technology", " optimization", " technical", " system", " optics", " engine", " /"], [" optimized", " /", " system", " technology", " technical", " optimization", " optics", " complex"], [" optimized", " complex", " optimization", " system", " technology", " technical", " frame", " /"], [" optimized", " technology", " optimization", " technical", " system", " performance", " engine", " System"], [" optimized", " engine", " Frame", " frame", " Interface", " optimization", " interface", " Engine"], [" optimized", " Interface", " interface", " engine", " optimization", " Cycle", " Frame", " cycle"], [" Interface", " Optimization", " Frame", " optimized", " Workflow", " Processing", " Cycle", " Technical"], [" Interface", " interface", " Cycle", " Direct", " optimized", " Optimization", " Frame", " workflow"], [" Interface", " Direct", " Cycle", " interface", " Production", " Frame", " Design", " Processing"], [" Interface", " Direct", " interface", " workflow", " Cycle", " Optimization", " Workflow", " optimized"], [" Interface", " Direct", " Operating", " Cycle", " Production", " Processing", " Design", " Transition"], [" Interface", "**", " Direct", " **", "\\n", " Operating", " Production", ".\\"], ["**", ".**", " Interface", " **", " **'", "**.", "/", ";**"], [".**", "**.", "/V", " Interface", "**", " **+", " **'", "!**"], [" framerate", " Performance", " Interface", " performance", ".**", " interoper", " interface", " throughput"], [" framerate", " performance", " latency", " backend", " throughput", " Performance", " Rendering", "/UI"], [" framerate", " latency", " backend", "/UI", " Performance", " Rendering", " viewport", " performance"], [" framerate", " renderer", " Rendering", "/V", " latency", " viewport", " bottleneck", " loop"], [" framerate", " Rendering", " renderer", " Renderer", " FPS", " latency", " rendering", " Performance"], [" Rendering", " framerate", " renderer", " Renderer", " rendering", " FPS", "Renderer", " viewport"], [" Rendering", " framerate", " renderer", " rendering", " Renderer", "\u6e32\u67d3", " Render", "Renderer"], [" Rendering", " renderer", " pipeline", " Pipeline", " Renderer", " framerate", " rendering", " Performance"], ["port", " Rendering", " viewport", "ports", " renderer", " Renderer", " framerate", " pipeline"], ["port", " Pipeline", " Rendering", "ports", " pipeline", " Renderer", " renderer", " framerate"], ["port", "ports", " Frame", " Pipeline", " Rendering", "porter", " Renderer", " framerate"], ["port", "ports", "porter", "point", "Port", " Frame", "frame", "PORT"]], "p": [[0.0677, 0.0465, 0.0362, 0.0282, 0.0249, 0.0234, 0.0182, 0.0182], [0.0354, 0.019, 0.019, 0.0178, 0.0167, 0.0084, 0.0084, 0.0074], [0.2019, 0.2019, 0.0616, 0.0616, 0.0227, 0.0213, 0.0213, 0.02], [0.1342, 0.0384, 0.0081, 0.0076, 0.0063, 0.0055, 0.0046, 0.0036], [0.2418, 0.1662, 0.0611, 0.0539, 0.0307, 0.0239, 0.0165, 0.0088], [0.2304, 0.2164, 0.0454, 0.0376, 0.0108, 0.0101, 0.0095, 0.007], [0.7178, 0.0204, 0.0191, 0.0116, 0.0102, 0.009, 0.0085, 0.008], [0.9248, 0.0149, 0.0075, 0.0071, 0.0031, 0.0028, 0.0026, 0.0026], [0.7849, 0.0644, 0.0185, 0.0144, 0.0127, 0.0119, 0.006, 0.0056], [0.7197, 0.086, 0.0192, 0.0159, 0.0149, 0.0124, 0.0116, 0.0091], [0.6303, 0.1241, 0.0517, 0.0403, 0.0158, 0.0096, 0.009, 0.0084], [0.466, 0.1107, 0.081, 0.0218, 0.0205, 0.0141, 0.0117, 0.0097], [0.3688, 0.1275, 0.1197, 0.0143, 0.0126, 0.0119, 0.0111, 0.0087], [0.4073, 0.1595, 0.1242, 0.0148, 0.0131, 0.0109, 0.009, 0.009], [0.2869, 0.2234, 0.1536, 0.0681, 0.0208, 0.0195, 0.0172, 0.0076], [0.2099, 0.174, 0.1355, 0.1196, 0.0388, 0.0284, 0.0267, 0.0126], [0.2542, 0.198, 0.1361, 0.106, 0.0366, 0.0344, 0.0143, 0.0112], [0.3526, 0.1773, 0.1219, 0.0396, 0.024, 0.0137, 0.0106, 0.01], [0.1833, 0.1722, 0.1427, 0.0922, 0.0248, 0.017, 0.016, 0.0141], [0.3429, 0.1185, 0.0675, 0.0634, 0.0206, 0.0193, 0.0182, 0.0133], [0.1225, 0.1151, 0.1016, 0.0544, 0.0511, 0.048, 0.031, 0.0291], [0.1238, 0.0428, 0.0378, 0.0333, 0.019, 0.0115, 0.0084, 0.007], [0.0732, 0.0444, 0.0417, 0.0368, 0.0185, 0.0174, 0.0163, 0.0163], [0.0408, 0.0339, 0.0281, 0.0193, 0.017, 0.0133, 0.0133, 0.0125], [0.0648, 0.0505, 0.0474, 0.0288, 0.0254, 0.0224, 0.0211, 0.0198], [0.0622, 0.0515, 0.0259, 0.0215, 0.0148, 0.0139, 0.0095, 0.007], [0.0189, 0.0177, 0.013, 0.0084, 0.0079, 0.0079, 0.0074, 0.0069], [0.0382, 0.0359, 0.0116, 0.0085, 0.008, 0.0075, 0.0071, 0.0071], [0.0135, 0.0126, 0.0112, 0.0105, 0.0098, 0.0093, 0.0087, 0.0082], [0.0186, 0.0136, 0.0128, 0.0113, 0.0106, 0.01, 0.0083, 0.0078], [0.0191, 0.0159, 0.0131, 0.0123, 0.0116, 0.0116, 0.0116, 0.0109], [0.0246, 0.0204, 0.0096, 0.0096, 0.0096, 0.0096, 0.009, 0.0085], [0.0692, 0.0394, 0.0307, 0.01, 0.01, 0.0088, 0.0083, 0.0083], [0.0284, 0.0092, 0.0087, 0.0076, 0.0072, 0.0072, 0.0063, 0.0063], [0.0146, 0.0106, 0.0094, 0.0078, 0.0078, 0.0073, 0.0069, 0.0069], [0.0276, 0.0215, 0.019, 0.0139, 0.0108, 0.0108, 0.0101, 0.0095], [0.103, 0.0261, 0.0191, 0.0179, 0.0168, 0.0168, 0.0158, 0.0148], [0.0657, 0.0166, 0.0121, 0.0107, 0.0101, 0.0089, 0.0083, 0.0069], [0.0623, 0.0148, 0.0148, 0.0139, 0.0131, 0.0123, 0.0115, 0.0108], [0.0515, 0.019, 0.0178, 0.013, 0.0122, 0.0115, 0.0115, 0.0074], [0.06, 0.0161, 0.0161, 0.0152, 0.0142, 0.0134, 0.0098, 0.0092], [0.0339, 0.0318, 0.0248, 0.0219, 0.0181, 0.017, 0.015, 0.0133], [0.0561, 0.032, 0.0265, 0.0206, 0.0206, 0.0194, 0.0171, 0.0142], [0.0645, 0.0269, 0.0174, 0.0163, 0.0153, 0.0153, 0.0144, 0.0135], [0.0839, 0.0329, 0.0199, 0.0187, 0.0187, 0.0176, 0.0165, 0.0129], [0.0622, 0.0378, 0.0259, 0.0178, 0.013, 0.013, 0.013, 0.0102], [0.044, 0.0365, 0.0236, 0.0208, 0.0172, 0.0118, 0.0118, 0.0105], [0.0634, 0.0493, 0.0219, 0.0125, 0.0091, 0.0081, 0.0076, 0.0076], [0.034, 0.03, 0.0219, 0.0151, 0.0133, 0.0117, 0.0104, 0.0091], [0.1085, 0.0546, 0.0331, 0.0156, 0.0138, 0.0138, 0.0089, 0.0084], [0.0753, 0.0314, 0.0244, 0.023, 0.0123, 0.0079, 0.007, 0.0062], [0.0461, 0.0204, 0.018, 0.017, 0.015, 0.0132, 0.0124, 0.0124], [0.2155, 0.0352, 0.0188, 0.0177, 0.0156, 0.0147, 0.0129, 0.0129], [0.3279, 0.0305, 0.0197, 0.0174, 0.0099, 0.0099, 0.0093, 0.0093], [0.2847, 0.041, 0.03, 0.0282, 0.0234, 0.0206, 0.0151, 0.0142], [0.5571, 0.0587, 0.0457, 0.0261, 0.0245, 0.0085, 0.0079, 0.0079], [0.2322, 0.1699, 0.1596, 0.1097, 0.0404, 0.0191, 0.0191, 0.0096], [0.4063, 0.1319, 0.1164, 0.1027, 0.0706, 0.0179, 0.0168, 0.0115], [0.4018, 0.0791, 0.0791, 0.0698, 0.0698, 0.0544, 0.048, 0.033], [0.3523, 0.1664, 0.0652, 0.0612, 0.0612, 0.0477, 0.0421, 0.024], [0.5527, 0.066, 0.0583, 0.0376, 0.0353, 0.0332, 0.0293, 0.0201], [0.9462, 0.0144, 0.0044, 0.0041, 0.0027, 0.0023, 0.0019, 0.0017], [0.9942, 0.0026, 0.0004, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 384, "top": [["\u2013", " \u2013", "\u2013and", ".", "\u2022", "\u00a0", ",", ".\u2013"], ["\\\"", " \\\"", "\\\":\\\"", "ment", "}\\\"", "shire", ":\\\"", "(\\\""], [":\\\"", "\\\"", ".\\\"", ",\\\"", " \\\"", "\\\"\\", " '\\\"", "\\\":\\\""], [" ``", "\uff63", "``", " \uff62", " ``(", "':''", "\\\":\\\"", "\\\",\\\""], [" \\\"", ".\\\"", " \uff62", " -->", ":\\\"", "\uff63", "\\\",\\\"", "\\\""], [" \uff62", "\uff63", " -->", ".\\\"", ":\\\"", " ','", ".\ufffd", " \\\""], [" \uff62", " -->", "\uff63", ".\ufffd", ".\\\"", " ____", " \ufffd", " \u2502"], [" \uff62", "\uff63", " -->", ".\\\"", ".\ufffd", " ``", "\ufffds", " '\\\""], [" \uff62", ".\\\"", "\uff63", ".\ufffd", " -->", " '\\\"", ":\\\"", ".','"], [".\\\"", "\uff63", ".''", ",''", " \uff62", ":''", ".\ufffd", " '\\\""], [".\\\"", ".\ufffd", "\uff63", " \uff62", ".''", ".','", ":\\\"", "\\\":\\\""], [".\\\"", "\uff63", " -->", " \uff62", " '\\\"", ".','", " \ufffd", ".\ufffd"], ["\uff63", ".\\\"", ":''", " '\\\"", ":\\\"", " \uff62", " \ufffd", " ``"], ["\uff63", " '\\\"", ".\\\"", ":''", " \uff62", " \ufffd", ":\\\"", "\uff62"], ["\uff63", ".\\\"", " \uff62", " '\\\"", "\u2237", " ``", "\\\":\\\"", " ''"], [" seamlessly", "\uff63", "\u2237", " \\\"", " lockdown", " showcase", " \uff62", " showcased"], [" seamlessly", "\ufffds", " showcase", "ship", "\uff63", " \uff62", " rendition", " viewport"], [" '\\\"", "\uff63", " \uff62", ".\\\"", " seamlessly", "\ufffds", "\u2237", " \\\""], [" '\\\"", " \uff62", " \ufffd", " |--", " --", " \u02c7", " seamlessly", "APIView"], [" --", " \uff62", " |--", " \\<^", " \u02c7", " '\\\"", " &#", " \ufffd"], [" --", " \ufffd", " \\/", "\u2237", " seemingly", " myriad", ")--", " &#"], [" '\\\"", " \ufffd", " --", " \uff62", " \u02c7", " |--", " '--", " ``"], [" --", " \uff62", " ''", " '\\\"", " \ufffd", " ``", ")--", " '--"], [" --", " ''", " \ufffd", " ``", " \\'", " seemingly", " myriad", ")--"], [" --", " ''", " \ufffd", " \\'", " &#", ")--", " ____", " \ufffd"], [" --", " ____", " '--", " '\\\"", " -->", " ''", " |--", " \ufffd"], [" --", " ____", " ''", " ``", " '--", " \ufffd", " '\\\"", " atop"], [" --", " ____", " ___", " __", " ______", " ''", " ,", " ?"], [" ____", " --", " ______", " ___", " __", " \ufffd", " _____", " \n  \n"], [" ____", " ___", " ______", " --", " __", " \n  \n", " ...\\", " _____"], [" ____", " ___", " ...", " --", " ______", " __", " -->", " _____"], [" --", " ,", " ...", " ____", " ___", " __", " ______", " '"], [" --", " ,", " heavily", " '", " \u2014", " seamlessly", " rapidly", " critical"], [" --", " seamlessly", " \u2014", " heavily", " visually", " rapidly", " specifically", " digitally"], [" seamlessly", " --", " \u2014", "\u2014and", " digitally", " visually", " \u0640\u0640", " specifically"], [" \u2014", "\u2014and", " \u2014\u2014", " seamlessly", " \u2013", " \u2019", " digitally", " rapidly"], [" seamlessly", " \u2014", " rapidly", " hardware", " optimized", " performance", " digitally", "\u2014and"], [" seamlessly", " optimized", " hardware", " performance", " rapidly", " functionality", " overclock", " \u2019"], [" seamlessly", " performance", " rapidly", " hardware", " \u2019", " optimized", " disproportionately", " functionality"], [" performance", " seamlessly", " hardware", " rapidly", " optimized", " functionality", " overclock", " hybrid"], [" performance", " hardware", " seamlessly", " rapidly", " functionality", " optimized", " software", " Performance"], [" performance", " functionality", " hardware", " seamlessly", " Performance", " software", " engine", " optimized"], [" performance", " functionality", " hardware", " seamlessly", " Performance", " software", " dynamic", " critical"], [" performance", " Performance", " functionality", " hardware", " @", " software", " seamlessly", " optimized"], [" performance", " @", " --", " functionality", " Performance", " &", " hardware", " production"], [" performance", " @", " functionality", " simultaneously", " under", " concurrently", " production", " '"], [" performance", " functionality", " specifically", " simultaneously", " seamlessly", " concurrently", " under", " hardware"], [" specifically", " simultaneously", " combined", " concurrently", " &", " performance", " functionality", " Combined"], ["'s", " combined", " functionality", " itself", " specifically", " performance", " concurrently", " Combined"], ["'s", " functionality", " Performance", " performance", " Combined", " itself", " framerate", " bottleneck"], [" framerate", " functionality", "**.", " throughput", "'s", " synchronization", "*.", " Performance"], [" performance", " Performance", " framerate", " throughput", " functionality", " implementation", "*.", " synced"], [" performance", " Performance", " framerate", " throughput", " latency", "Performance", "performance", " bottleneck"], [" framerate", " performance", " Performance", " latency", " throughput", " bottleneck", " scalability", "Performance"], [" framerate", " performance", " latency", " throughput", " scalability", " Performance", " runtime", " synchronization"], [" framerate", " performance", " Performance", " FPS", " latency", " scalability", " renderer", " Renderer"], [" framerate", " Rendering", " Renderer", " renderer", " rendering", " Performance", " FPS", " performance"], [" Renderer", " Rendering", " framerate", " renderer", " rendering", " latency", " targeting", " Performance"], [" Performance", " performance", " Rendering", " Renderer", " Pipeline", " framerate", " latency", "Performance"], [" Performance", " performance", " Rendering", " Renderer", " Pipeline", " latency", " framerate", " renderer"], [" Performance", " Pipeline", " performance", " Rendering", " FPS", "'s", " Renderer", " pipeline"], [" Frame", "\u2019s", " Performance", "'s", " Pipeline", " on", " framerate", " Rendering"], ["**.", "\u2019s", "**", " Frame", " on", " Pipeline", " Performance", " Rendering"]], "p": [[0.706, 0.1785, 0.0351, 0.0291, 0.0095, 0.0083, 0.0065, 0.0048], [0.103, 0.0708, 0.0216, 0.0158, 0.0158, 0.0158, 0.0116, 0.0096], [0.3114, 0.1566, 0.1011, 0.0478, 0.0176, 0.0155, 0.0146, 0.0113], [0.2002, 0.1376, 0.1214, 0.0539, 0.0476, 0.0255, 0.0113, 0.0094], [0.1407, 0.1407, 0.0753, 0.0753, 0.0486, 0.0379, 0.0216, 0.0148], [0.0982, 0.0526, 0.0233, 0.0133, 0.0117, 0.0081, 0.0041, 0.0041], [0.311, 0.1772, 0.0612, 0.0395, 0.0308, 0.0255, 0.0255, 0.0199], [0.3633, 0.1336, 0.0672, 0.0492, 0.0298, 0.0263, 0.0218, 0.017], [0.2249, 0.1752, 0.1752, 0.0502, 0.0391, 0.0209, 0.0197, 0.0163], [0.1582, 0.1087, 0.0582, 0.0332, 0.0275, 0.0258, 0.0258, 0.0243], [0.3379, 0.1168, 0.0854, 0.0379, 0.0203, 0.0179, 0.0168, 0.0158], [0.0568, 0.0471, 0.0442, 0.0286, 0.0268, 0.0196, 0.0173, 0.0153], [0.0674, 0.0525, 0.0361, 0.0319, 0.0233, 0.0171, 0.015, 0.0141], [0.0436, 0.0171, 0.0142, 0.0142, 0.011, 0.0104, 0.0091, 0.0091], [0.0315, 0.0216, 0.0169, 0.0158, 0.0158, 0.014, 0.0096, 0.0096], [0.012, 0.006, 0.0057, 0.0053, 0.0041, 0.0039, 0.0039, 0.0037], [0.0058, 0.0035, 0.0031, 0.0027, 0.0026, 0.0026, 0.0021, 0.002], [0.0096, 0.009, 0.0085, 0.008, 0.0058, 0.0043, 0.0038, 0.0038], [0.0164, 0.0106, 0.0083, 0.006, 0.006, 0.005, 0.005, 0.003], [0.0427, 0.0157, 0.0101, 0.0101, 0.009, 0.0084, 0.007, 0.0066], [0.2191, 0.0231, 0.0169, 0.0124, 0.0124, 0.0116, 0.0109, 0.0096], [0.0153, 0.012, 0.0112, 0.0099, 0.0077, 0.006, 0.005, 0.005], [0.0833, 0.0128, 0.0128, 0.0128, 0.0113, 0.0106, 0.0093, 0.0093], [0.3771, 0.0257, 0.0137, 0.0114, 0.0089, 0.0078, 0.0065, 0.0051], [0.599, 0.0132, 0.0103, 0.0075, 0.0071, 0.0071, 0.0063, 0.0063], [0.1261, 0.0264, 0.0117, 0.011, 0.0097, 0.0081, 0.0081, 0.0076], [0.2186, 0.0179, 0.0169, 0.0158, 0.0131, 0.0109, 0.0102, 0.0102], [0.5207, 0.0354, 0.0178, 0.0178, 0.0178, 0.0139, 0.013, 0.0084], [0.1372, 0.1004, 0.0572, 0.0505, 0.0288, 0.0093, 0.0082, 0.0082], [0.2554, 0.0883, 0.0732, 0.0607, 0.0346, 0.0185, 0.0127, 0.0127], [0.197, 0.1272, 0.1054, 0.093, 0.0564, 0.053, 0.0235, 0.0126], [0.1944, 0.0462, 0.0383, 0.0298, 0.0298, 0.0298, 0.0218, 0.0132], [0.1777, 0.0273, 0.0165, 0.0137, 0.0114, 0.0078, 0.0073, 0.0073], [0.0234, 0.0206, 0.0161, 0.0125, 0.011, 0.0076, 0.0076, 0.0067], [0.0365, 0.0285, 0.0208, 0.0143, 0.0134, 0.0092, 0.0077, 0.0077], [0.1291, 0.0186, 0.0164, 0.0136, 0.0113, 0.0106, 0.01, 0.0083], [0.0264, 0.0218, 0.0124, 0.0097, 0.0086, 0.0086, 0.0086, 0.008], [0.0363, 0.0126, 0.0118, 0.0111, 0.0104, 0.0092, 0.0067, 0.0067], [0.0379, 0.0277, 0.0148, 0.0102, 0.0085, 0.0085, 0.0079, 0.0079], [0.0813, 0.0319, 0.0193, 0.0141, 0.0125, 0.0097, 0.0081, 0.0076], [0.2056, 0.0204, 0.018, 0.0123, 0.0116, 0.0109, 0.0109, 0.008], [0.3103, 0.0225, 0.0225, 0.0164, 0.0136, 0.0113, 0.0069, 0.0064], [0.191, 0.0259, 0.0201, 0.0189, 0.0122, 0.0115, 0.0065, 0.0061], [0.2027, 0.0274, 0.0147, 0.0095, 0.0061, 0.0051, 0.0051, 0.0051], [0.1344, 0.0182, 0.0151, 0.011, 0.0097, 0.0081, 0.0059, 0.0055], [0.0538, 0.012, 0.0094, 0.0083, 0.0078, 0.006, 0.006, 0.005], [0.0298, 0.0181, 0.0097, 0.0085, 0.0075, 0.0066, 0.0066, 0.0059], [0.0358, 0.0279, 0.0262, 0.0217, 0.0217, 0.018, 0.0132, 0.0116], [0.0233, 0.0181, 0.0181, 0.017, 0.015, 0.0103, 0.0091, 0.0086], [0.0518, 0.0203, 0.0179, 0.0168, 0.0096, 0.0079, 0.0075, 0.007], [0.0227, 0.0188, 0.0177, 0.0166, 0.0122, 0.0107, 0.0101, 0.0095], [0.174, 0.1056, 0.0725, 0.0388, 0.0162, 0.0152, 0.0143, 0.0118], [0.3521, 0.1468, 0.1217, 0.0272, 0.0211, 0.0199, 0.0155, 0.0128], [0.2352, 0.1721, 0.0813, 0.0595, 0.0384, 0.017, 0.0125, 0.0117], [0.3343, 0.1085, 0.0845, 0.0658, 0.0425, 0.0311, 0.0201, 0.0189], [0.5383, 0.0935, 0.0567, 0.0366, 0.0285, 0.0184, 0.0184, 0.0184], [0.2546, 0.1363, 0.1363, 0.0937, 0.0367, 0.0345, 0.0304, 0.0252], [0.2236, 0.1973, 0.1356, 0.1197, 0.0726, 0.0389, 0.0208, 0.0208], [0.575, 0.1132, 0.0606, 0.0535, 0.0535, 0.0324, 0.0119, 0.0119], [0.5421, 0.121, 0.0831, 0.0504, 0.0347, 0.021, 0.021, 0.0144], [0.4014, 0.1015, 0.0896, 0.0698, 0.0373, 0.0373, 0.0273, 0.0273], [0.2397, 0.2116, 0.0999, 0.0778, 0.0472, 0.0417, 0.0324, 0.0324], [0.313, 0.2437, 0.1478, 0.0791, 0.0616, 0.033, 0.0257, 0.0121]], "ranks": {}}, {"pos": 385, "top": [[",", ".", "\u2013", ";", " \u2013", "\u2026..", ":", " [\u2026]"], [",", "\u2013", "\u200b", "\u2013and", " \u2013", ";", ".", " \u00a0"], [",", ".", "\u2013", "\u2026..", ";", "\u200b", " [\u2026]", " \u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " addir", "orgeous", "eroon", "\ube68", " aarhus", " milfs", "\ufffd\ufffd"], [":@", ",@", "@", ".@", "(@", "@c", "@d", "//@"], ["boarding", "sson", " \u00a0", "&R", "\u2026..", "&A", "nement", ":@"], ["sson", " \ufffd", "\ufffds", " ......", "\ufffd", " \u00a0", "\ufffd", "......"], ["\ufffds", "sson", " \ufffd", "\ufffdt", "&R", "ishly", "/off", "athon"], ["&nbsp", "\ufffds", "athon", "/&", "\ufffd", "&R", "\ufffdt", " \ufffd"], ["\u00ading", "\ufffdt", "\u516c\u53f7", "\ufffds", "/off", "\\\\\\", "&nbsp", "\u0440\u044f\u0434\u0443"], [" \ufffd", "&nbsp", "\\\\\\", "\ufffds", "\ufffdt", "\u00ading", "\ufffd", "\ufffd"], ["\u516c\u53f7", "iance", "nett", "\ufffdt", "nette", "\u54b1\u5011", "\ufffds", "pping"], ["pping", "iance", "\u516c\u53f7", "\u54b1\u5011", "shore", "/off", "unky", "pper"], ["shore", "\u516c\u53f7", "/off", "\u54b1\u5011", "ergia", "unky", " comfy", "\u8d44\u8baf\u4e2d\u5fc3"], ["/off", " comfortably", " effortlessly", "-going", " requisite", "shore", " hubby", "\u516c\u53f7"], [" &", " folks", " incredibly", " thru", " effortlessly", "/off", " thankfully", " truly"], [" folks", " incredibly", " &", " OP", "/off", " effortlessly", " Basics", "ess"], [" Basics", " meds", " Philly", " folks", "/off", "side", " comfy", " Specs"], [" NYC", " folks", " comfy", " ASAP", " meds", "/off", " busted", " Basics"], [" folks", "&e", " entirety", "/off", " ASAP", " pricey", " \ufffd", " NYC"], ["<|endoftext|>", " [...]", " requisite", " \ufffd", "\u5373\u4fbf", " swiftly", "\ufffd", "/off"], ["unky", "\u00e3ng", " MEDIAM", "ecchio", "_UNSUPPORTED", "adget", "\u8179\u5730", "exus"], [" ``", " \ufffd", " //~", " -->", "unky", " --", "adget", "exus"], [" \ufffd", " --", " ``", " &#", " requisite", " swiftly", " atop", " vastly"], [" --", " ____", " //<", " &#", " requisite", " MEDIAM", " ?**", "\u5373\u4fbf"], [" ?**", " **\u3010", " ____", " -**", " **#", " !**", " **\u2022", " **>>"], [" ____", " ?**", " -**", " !**", " **\u3010", " @_", " **#", " -->"], [" ____", " @_", " ?**", " --", " @", " ___", " !**", " **"], [" ?**", " ____", " @", " @_", " **", " !**", " -**", " hardware"], [" ____", " @", " **", " ?**", " ...\\", " @_", " ***", " [...]"], [" @", " **", " ...", " ____", " ......", " ***", " ?**", " -->"], [" @", " **", " ...", " ,", " -", " heavily", " #", " ."], [" @", " **", " heavily", " \u2013", " -", " hardware", " critical", " incredibly"], [" **", "\u2011", " !**", " hardware", " tech", " **\u2013", " )**", " heavily"], [" !**", "\u2011", "!**", " **", " -**", " **\u2013", "?**", " ?**"], [" !**", "!**", "**\u201d", "\u2011", "**\u2013", "**", " -**", " \ufffd"], [" hardware", " !**", " Hardware", " iOS", " -**", " overclock", "!**", " \ufffd"], [" hardware", " iOS", " Android", " Hardware", "\u2011", " iPhone", " overclock", " Kickstarter"], [" hardware", " iOS", " Hardware", " Android", " iPhone", "\u786c\u4ef6", "hardware", " iPad"], [" iOS", " hardware", " Android", " Hardware", " iPhone", " iPad", "hardware", "\u786c\u4ef6"], [" Android", " iOS", " hardware", " Hardware", " iPhone", " iPad", "Android", " smartphone"], [" Android", " iOS", " hardware", " Hardware", " iPhone", " iPad", "Android", "Hardware"], [" Android", " hardware", " iOS", " Hardware", " iPhone", " smartphone", " iPad", " smartphones"], [" Android", " hardware", " iOS", " Hardware", " iPhone", " Mobile", " smartphones", " iPad"], [" Android", " hardware", " iOS", " Hardware", " iPhone", " smartphones", " handheld", " smartphone"], [" hardware", " Android", " iOS", " Hardware", " iPhone", " smartphones", " handheld", " smartphone"], [" Hardware", " hardware", " Android", " iOS", " iPhone", " Smartphone", " smartphones", " handheld"], [" Hardware", " Android", " iOS", " hardware", " iPhone", " Mobile", " Minimum", " Standard"], [" iOS", " Android", " Hardware", "\u4f4e\u7aef", " Smartphone", " hardware", " iPhone", "/Linux"], [" Android", " iOS", " Hardware", "\u4f4e\u7aef", "/Linux", " Smartphone", " Ambient", " Mobile"], [" Hardware", " iOS", " Android", "\u4f4e\u7aef", ".**", " Smartphone", "\u79fb\u52a8\u7aef", " Ambient"], [" Android", " iOS", " Hardware", "\u79fb\u52a8\u7aef", " Mobile", " Smartphone", " Linux", "Android"], [" Android", " iOS", " Hardware", "\u79fb\u52a8\u7aef", " Linux", "\u4f4e\u7aef", " macOS", " Mobile"], [" Android", " iOS", "Android", " Hardware", "-android", " iPad", " iPhone", " Linux"], [" Android", " iOS", " Linux", "Android", " Windows", "-android", " Hardware", " macOS"], [" Android", "Android", "-android", " iOS", " Middleware", " Mid", "_android", " mid"], [" Android", "Android", " android", "_android", "-android", "(Android", "\u5b89\u5353", " Mobile"], [" Android", "Android", " android", "-android", "_android", " Mid", " Middleware", " Mobile"], [" Android", " Mid", " mid", "Android", " Middleware", " android", "-android", "_android"], [" Android", " mid", " Mid", "Android", "mid", " android", ",mid", "Mid"], [" Android", " mid", " Mid", "Android", " android", " Mobile", "-android", " MID"], [" Android", " Mid", " mid", "Android", " Mobile", " android", "-android", " MID"], [" Android", " Mid", " Mobile", " mid", " Middleware", " MID", " Linux", " Medium"]], "p": [[0.7042, 0.2591, 0.0129, 0.0078, 0.0029, 0.0022, 0.0013, 0.0011], [0.1373, 0.1138, 0.0369, 0.0211, 0.0164, 0.0136, 0.0128, 0.012], [0.7719, 0.0922, 0.0922, 0.0141, 0.0052, 0.0041, 0.003, 0.0028], [0.0049, 0.0025, 0.0023, 0.0018, 0.0018, 0.0018, 0.0012, 0.0012], [0.0469, 0.0469, 0.0441, 0.0236, 0.0152, 0.0143, 0.0111, 0.0105], [0.005, 0.0044, 0.0039, 0.0031, 0.0027, 0.0024, 0.0022, 0.0022], [0.0356, 0.0168, 0.0168, 0.0148, 0.0116, 0.009, 0.0066, 0.0066], [0.0284, 0.0134, 0.0092, 0.0081, 0.0063, 0.0063, 0.0056, 0.0056], [0.0189, 0.0178, 0.0138, 0.0089, 0.0079, 0.007, 0.0065, 0.0061], [0.0112, 0.0044, 0.0041, 0.0041, 0.0039, 0.003, 0.0028, 0.0025], [0.0438, 0.0341, 0.0172, 0.0134, 0.0126, 0.0111, 0.0092, 0.0059], [0.0041, 0.0039, 0.0032, 0.0028, 0.0022, 0.0022, 0.0018, 0.0018], [0.0027, 0.0024, 0.0024, 0.0021, 0.0016, 0.0016, 0.0014, 0.0014], [0.004, 0.0013, 0.0011, 0.0011, 0.0011, 0.0009, 0.0008, 0.0008], [0.0041, 0.0032, 0.0023, 0.002, 0.0018, 0.0018, 0.0017, 0.0016], [0.0457, 0.0356, 0.0179, 0.0079, 0.0066, 0.0062, 0.0062, 0.0062], [0.026, 0.0158, 0.0102, 0.0058, 0.0054, 0.0048, 0.0045, 0.0042], [0.0078, 0.0068, 0.006, 0.0057, 0.0057, 0.0044, 0.0042, 0.0042], [0.0059, 0.0052, 0.0049, 0.0043, 0.0041, 0.0041, 0.0038, 0.0034], [0.0067, 0.0052, 0.0049, 0.0041, 0.0041, 0.0034, 0.0032, 0.003], [0.0089, 0.0074, 0.0065, 0.0051, 0.0048, 0.0048, 0.0037, 0.0029], [0.0023, 0.0018, 0.0018, 0.0017, 0.0016, 0.0016, 0.0015, 0.0015], [0.0038, 0.0036, 0.0029, 0.0026, 0.0022, 0.0019, 0.0018, 0.0018], [0.0276, 0.0178, 0.0122, 0.0045, 0.0042, 0.0035, 0.0024, 0.0023], [0.0078, 0.0047, 0.0039, 0.0037, 0.0031, 0.0027, 0.0027, 0.0027], [0.036, 0.0218, 0.0181, 0.015, 0.011, 0.0091, 0.008, 0.0059], [0.0322, 0.0267, 0.0087, 0.0087, 0.0053, 0.0053, 0.0053, 0.0041], [0.0948, 0.0199, 0.0187, 0.0155, 0.0113, 0.0078, 0.0069, 0.0069], [0.0458, 0.0315, 0.0191, 0.0191, 0.0085, 0.0085, 0.0055, 0.0048], [0.1272, 0.0681, 0.0498, 0.0388, 0.0221, 0.0183, 0.0172, 0.0152], [0.2269, 0.1465, 0.1376, 0.0447, 0.0154, 0.0128, 0.0128, 0.0128], [0.3252, 0.0565, 0.0284, 0.0251, 0.0195, 0.0172, 0.0126, 0.0105], [0.0841, 0.079, 0.02, 0.0114, 0.0114, 0.0094, 0.0083, 0.0078], [0.0688, 0.0287, 0.0185, 0.0154, 0.0135, 0.0112, 0.0073, 0.0073], [0.0605, 0.0345, 0.0286, 0.0252, 0.0163, 0.0127, 0.0127, 0.0119], [0.0702, 0.0331, 0.0292, 0.0275, 0.0228, 0.0228, 0.0201, 0.0189], [0.0671, 0.028, 0.017, 0.017, 0.011, 0.011, 0.0103, 0.0103], [0.0959, 0.0659, 0.04, 0.0331, 0.0242, 0.0147, 0.0101, 0.0101], [0.2895, 0.1285, 0.0732, 0.0473, 0.0305, 0.0112, 0.0112, 0.0087], [0.197, 0.185, 0.1534, 0.0639, 0.053, 0.0162, 0.0143, 0.0134], [0.3186, 0.2057, 0.1414, 0.0757, 0.0589, 0.0149, 0.009, 0.009], [0.3478, 0.211, 0.1862, 0.0997, 0.0533, 0.0082, 0.0053, 0.005], [0.2832, 0.2206, 0.1947, 0.092, 0.0492, 0.0075, 0.0063, 0.0059], [0.2805, 0.1928, 0.1245, 0.1169, 0.043, 0.007, 0.0066, 0.0066], [0.2565, 0.1656, 0.1461, 0.0505, 0.0419, 0.0145, 0.0113, 0.0106], [0.1719, 0.1719, 0.1339, 0.0812, 0.0281, 0.016, 0.0117, 0.0086], [0.1632, 0.1194, 0.1054, 0.099, 0.0118, 0.0076, 0.0076, 0.0063], [0.1187, 0.1047, 0.0766, 0.041, 0.0151, 0.0133, 0.0125, 0.0104], [0.1239, 0.1164, 0.0663, 0.0202, 0.0178, 0.0139, 0.0115, 0.009], [0.0744, 0.0657, 0.0544, 0.0291, 0.02, 0.02, 0.0083, 0.0061], [0.0637, 0.0438, 0.0386, 0.032, 0.022, 0.0151, 0.0125, 0.0092], [0.657, 0.0611, 0.01, 0.01, 0.0083, 0.0064, 0.0061, 0.0061], [0.6313, 0.0404, 0.0139, 0.0116, 0.0096, 0.0096, 0.0075, 0.0062], [0.9134, 0.0354, 0.0029, 0.0029, 0.0021, 0.0021, 0.002, 0.0017], [0.959, 0.0256, 0.0024, 0.0011, 0.0007, 0.0006, 0.0006, 0.0006], [0.9961, 0.0009, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9987, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9988, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9974, 0.0009, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9078, 0.0512, 0.0399, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9918, 0.0046, 0.0032, 0.0003, 0.0001, 0.0, 0.0, 0.0], [0.976, 0.0179, 0.0051, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.6369, 0.3409, 0.0117, 0.0059, 0.0005, 0.0004, 0.0002, 0.0002]], "ranks": {}}, {"pos": 386, "top": [["s", "a", ".", "o", "i", ",", "er", "\u201d."], ["s", "\u201d,", "\u201d.", "a", "sWith", "  \n\n", " \u2013", "."], ["s", ",", ".", "\u2013", "\u2026.", "\u2026", " \u2013", "a"], ["sWith", "s", "sik", "szeit", "erweise", "sche", "sze", "sver"], ["s", "ed", "a", "sWith", "s\u00f3", "sik", "sche", " Android"], ["s", "sWith", "a", "s\u00f3", "(Android", "ed", " Android", "sver"], ["s", " Android", "(Android", "a", "sWith", ".Android", " \u00bb.", "sak"], ["s", " Android", "(Android", "sWith", ".Android", "sak", "s\u00f3", "sik"], ["s", ".", " \u00bb.", "\u00bb.", "\u201d.", " Android", "!\u201d.", "(Android"], ["s", ",", ".", "(Android", " Android", ".Android", "s\u00f3", "sak"], ["s", " Android", ".", ",", "(Android", "a", ".Android", " android"], [" Android", "s", ".Android", "(Android", " android", "(android", "sak", "sWith"], [" Android", "s", "(Android", ".Android", " android", "(android", "sak", "\u76f8\u8f85\u76f8\u6210"], [" Android", "s", "(Android", ".Android", " android", "(android", ",", "-style"], ["s", ",", " Android", ".", "a", ".Android", " android", "-style"], ["s", " Android", ",", " popular", " largely", " even", " massively", ".Android"], ["s", " Android", ",", "a", " popular", ".Android", "(Android", " largely"], ["s", " Android", ".Android", "(Android", ",", " android", "a", ".google"], ["s", " Android", "(Android", ".Android", " Africa", ".google", " Google", " android"], ["s", " Android", "(Android", ".Android", " ,", " largely", " Africa", " even"], ["s", "<|endoftext|>", " Android", " ,", ".Android", "(Android", "a", " largely"], [" Android", ".Android", "(Android", " android", "(android", "ANDROID", "_android", "Android"], [" Android", ".Android", "(Android", " ``", "Android", " android", " ,", "ANDROID"], [" ,", " Android", ".Android", " ``", " Africa", "(Android", "s", " ."], [" Android", ".Android", "(Android", "Android", " android", "ANDROID", "_ANDROID", " ``"], [" Android", "(Android", ".Android", " android", "Android", "ANDROID", "_ANDROID", "/android"], [" Android", "(Android", ".Android", " android", "Android", " Africa", "ANDROID", "_android"], [" Android", " ,", " Africa", " android", "(Android", ".Android", "Android", " India"], [" Android", "(Android", "Android", " android", ".Android", " Africa", "ANDROID", "/android"], [" Android", "(Android", " android", "Android", ".Android", " Africa", " smartphone", " smartphones"], [" Android", " android", "(Android", ".Android", "Android", " Africa", " .", " ___"], [" Android", " .", " ,", " android", " @", " Africa", "(Android", " technology"], [" Android", " .", " android", " ,", "(Android", " technology", " @", " heavily"], [" Android", " android", "(Android", ".Android", "Android", " smartphone", "/android", " smartphones"], [" Android", "(Android", " android", "Android", ".Android", "/android", " smartphone", " APK"], [" Android", "(Android", "Android", " android", ".Android", " APK", "/android", " smartphone"], [" Android", "(Android", "Android", " android", ".Android", " APK", "/android", "ANDROID"], [" Android", "(Android", "Android", " android", ".Android", "/android", " APK", "ANDROID"], [" Android", "(Android", "Android", " android", ".Android", "/android", " iOS", "ANDROID"], [" Android", "(Android", "Android", " android", ".Android", " iOS", " APK", "/android"], [" Android", "(Android", "Android", " android", ".Android", " iOS", " APK", "/android"], [" Android", "(Android", "Android", " android", ".Android", " iOS", " APK", "/android"], [" Android", "(Android", "Android", " android", ".Android", " iOS", " APK", "/android"], [" Android", "(Android", "Android", " android", ".Android", " iOS", " optimized", " APK"], [" Android", "(Android", " android", "Android", " iOS", ".Android", " Java", " optimized"], [" Android", "(Android", " android", " iOS", ".Android", " APK", " hardware", " Java"], [" Android", "(Android", " via", " iOS", " android", " APK", " specifically", ".Android"], [" Android", " specifically", "(Android", " via", " using", " due", " iOS", " APK"], [" Android", " via", "(Android", " APK", " specifically", " under", " iOS", " due"], [" Android", "**.", "(Android", " APK", " **.", "*.", ".", " Under"], ["**.", "*.", ".", " **.", "().", ".**", "+.", " ."], ["*.", "**.", ".*", ".**", " .**", " **.", ".", "()."], ["**.", "*.", ".**", ".", ".*", " **.", "`.", "+."], ["**.", "*.", ".**", ".*", ".", "`.", "+.", "\"."], ["**.", "*.", ".**", "`.", ".*", "**\u3002", " fails", " **."], ["**.", "*.", ".**", "`.", ".*", "**\u3002", " fails", "'."], ["**.", ".**", "**\u3002", "*.", "`.", " **.", " .**", "\u2019."], ["**.", ".**", "*.", "**\u3002", "`.", " **.", "\u8dcc\u7834", " targeting"], ["**.", "*.", ".**", "`.", "**\u3002", " targeting", "\u8dcc\u7834", "\u2019."], [" hitting", "**.", " hits", " hit", " Hits", " Hit", "*.", " targeting"], ["**.", " hitting", " hits", "`.", "*.", ".**", " hit", "."], ["**.", ".**", "`.", "*.", " hitting", " hits", "**", "\"."], ["**.", "**", ".**", "**,", "**\u3002", "**:", " **.", "*."]], "p": [[0.9738, 0.0202, 0.0017, 0.0014, 0.0005, 0.0004, 0.0002, 0.0001], [0.9601, 0.0033, 0.0033, 0.0021, 0.0019, 0.0017, 0.0007, 0.0005], [0.7521, 0.0793, 0.0617, 0.0374, 0.0166, 0.0129, 0.0129, 0.0027], [0.0778, 0.0731, 0.0502, 0.0163, 0.0099, 0.0099, 0.0077, 0.0077], [0.9918, 0.0016, 0.001, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001], [0.9834, 0.0022, 0.0012, 0.0006, 0.0005, 0.0005, 0.0004, 0.0003], [0.9988, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9854, 0.0024, 0.002, 0.0012, 0.0005, 0.0003, 0.0003, 0.0003], [0.9429, 0.0267, 0.0039, 0.0026, 0.0025, 0.0018, 0.0014, 0.0012], [0.8671, 0.0712, 0.008, 0.0046, 0.0046, 0.0017, 0.0007, 0.0007], [0.9208, 0.0169, 0.0169, 0.009, 0.002, 0.0018, 0.0014, 0.001], [0.2792, 0.1093, 0.0428, 0.0402, 0.0148, 0.0096, 0.009, 0.0042], [0.2688, 0.0989, 0.0364, 0.0342, 0.0172, 0.0118, 0.0098, 0.0076], [0.1773, 0.0837, 0.0272, 0.0212, 0.0155, 0.0088, 0.0078, 0.0044], [0.2938, 0.0374, 0.0291, 0.0045, 0.0039, 0.0037, 0.0027, 0.0025], [0.2465, 0.0158, 0.009, 0.0042, 0.004, 0.0033, 0.0031, 0.0029], [0.7996, 0.0078, 0.0069, 0.0019, 0.0015, 0.0014, 0.0011, 0.0009], [0.397, 0.069, 0.0136, 0.0128, 0.0068, 0.0032, 0.003, 0.0028], [0.1117, 0.0986, 0.032, 0.0301, 0.0043, 0.0043, 0.0041, 0.0036], [0.0466, 0.0386, 0.0194, 0.0151, 0.0076, 0.0067, 0.0049, 0.0046], [0.0331, 0.0258, 0.0189, 0.0167, 0.0079, 0.0074, 0.0051, 0.0033], [0.2189, 0.0971, 0.0912, 0.007, 0.0055, 0.0045, 0.004, 0.0035], [0.237, 0.0819, 0.0342, 0.0283, 0.0076, 0.0072, 0.0052, 0.0041], [0.0737, 0.042, 0.0136, 0.0106, 0.0044, 0.0039, 0.0037, 0.0037], [0.2662, 0.0717, 0.0524, 0.036, 0.0193, 0.011, 0.0071, 0.0055], [0.7754, 0.0637, 0.0528, 0.0234, 0.0125, 0.0049, 0.0041, 0.0032], [0.8053, 0.0427, 0.0401, 0.0259, 0.0108, 0.0035, 0.0033, 0.0031], [0.379, 0.0619, 0.0189, 0.0177, 0.0167, 0.0167, 0.0138, 0.0114], [0.793, 0.0307, 0.0271, 0.0239, 0.0225, 0.0064, 0.0032, 0.003], [0.8278, 0.0467, 0.0283, 0.0207, 0.0126, 0.0049, 0.0023, 0.0017], [0.8621, 0.0295, 0.023, 0.0075, 0.0055, 0.0051, 0.0042, 0.002], [0.4745, 0.0775, 0.0303, 0.0196, 0.0143, 0.0087, 0.0068, 0.0068], [0.55, 0.033, 0.0257, 0.0147, 0.0089, 0.0078, 0.0061, 0.0057], [0.7644, 0.0459, 0.0315, 0.008, 0.007, 0.0062, 0.004, 0.0031], [0.801, 0.0481, 0.0481, 0.0331, 0.0156, 0.0084, 0.0057, 0.0027], [0.7851, 0.0644, 0.0416, 0.0367, 0.0153, 0.0044, 0.003, 0.0022], [0.687, 0.1353, 0.053, 0.0302, 0.025, 0.0059, 0.0059, 0.0036], [0.835, 0.0605, 0.0471, 0.0286, 0.0112, 0.0027, 0.0023, 0.0015], [0.8757, 0.0436, 0.034, 0.0233, 0.0097, 0.0023, 0.0013, 0.0011], [0.8179, 0.0671, 0.0407, 0.0263, 0.0141, 0.004, 0.0024, 0.0018], [0.8064, 0.075, 0.0584, 0.0215, 0.0157, 0.0035, 0.0018, 0.0015], [0.8726, 0.0492, 0.0434, 0.0141, 0.0097, 0.0026, 0.0012, 0.0008], [0.8647, 0.0488, 0.038, 0.0179, 0.0109, 0.0048, 0.0016, 0.001], [0.8708, 0.0434, 0.028, 0.0159, 0.0071, 0.0066, 0.0019, 0.0017], [0.8519, 0.0257, 0.0227, 0.0147, 0.0122, 0.0101, 0.0035, 0.0033], [0.7224, 0.028, 0.017, 0.016, 0.0091, 0.0052, 0.0049, 0.0049], [0.57, 0.0564, 0.0172, 0.0172, 0.0152, 0.0092, 0.0092, 0.0076], [0.3226, 0.0924, 0.03, 0.03, 0.0234, 0.0182, 0.0142, 0.0104], [0.2359, 0.0635, 0.0465, 0.041, 0.034, 0.03, 0.0161, 0.0142], [0.1076, 0.0396, 0.0328, 0.0113, 0.0107, 0.0107, 0.0094, 0.0088], [0.3929, 0.27, 0.0365, 0.0285, 0.0152, 0.0143, 0.0126, 0.0126], [0.4653, 0.2198, 0.0317, 0.0247, 0.0159, 0.0159, 0.0141, 0.0116], [0.4737, 0.3256, 0.0727, 0.0236, 0.0236, 0.0082, 0.0082, 0.0046], [0.5621, 0.2655, 0.0862, 0.0181, 0.0181, 0.0055, 0.0038, 0.0036], [0.7065, 0.2024, 0.0227, 0.0095, 0.0065, 0.0037, 0.0037, 0.0035], [0.6601, 0.2143, 0.0272, 0.0226, 0.0088, 0.0047, 0.0035, 0.0033], [0.9524, 0.0288, 0.0057, 0.005, 0.0022, 0.0011, 0.0005, 0.0003], [0.9278, 0.036, 0.0075, 0.0046, 0.003, 0.0017, 0.0015, 0.0012], [0.9537, 0.0136, 0.012, 0.0064, 0.0022, 0.0013, 0.0007, 0.0007], [0.7159, 0.141, 0.0969, 0.0216, 0.0048, 0.0033, 0.0024, 0.0024], [0.7506, 0.1478, 0.0291, 0.0137, 0.0129, 0.0054, 0.0051, 0.0029], [0.9895, 0.0025, 0.0022, 0.0019, 0.0008, 0.0005, 0.0005, 0.0002], [0.9836, 0.0159, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 387, "top": [["s", "  \n\n", " \u2013", " \n\n", "**.", "\u2026.", "  \n", "   \n\n"], ["s", " **[", " **\u2013", " **", " \"**", "**!", " **:", " **."], ["s", " **\u2013", " **[", " \n\n", "**.", "**!", "**\u2013", " **."], [" **\u300c", " **:", " **\u00ab", " **+", " **\u201e", " **.", " **\u3010", " \"**"], [" **#", " **.", " **", " **:", " **+", " \"**", " **-", " **["], [" **", " **.", " **:", " **#", " **+", "**!", " **-", " \"**"], [" **", " **.", " **[", " **\u00ab", " **#", "**!", " **\u300c", " **\u3010"], [" **", " **\u00ab", " **\u201e", " **#", " **\u300c", " **:", " **.", " **-"], [" \n\n", " **", " **#", " **\u201e", " **\u00ab", " **\u300c", "**!", " **["], [" **", " **\u00ab", " **\u300c", " **#", " \"**", " **\u201e", " **+", "**!"], [" **", " **\u300c", " **\u00ab", " **#", " **\u201e", " \"**", " **[", " **\u3010"], [" **", " **\u300c", " **\u00ab", " **\u201e", " **#", " **+", " \"**", " **:"], [" **\u00ab", " **\u300c", " **\u201e", " **", " **:", " **\u3010", " **#", " **+"], [" **\u00ab", " **\u300c", " **\u201e", " **", " \u00bb**", " \"**", "**!", " **+"], [" **", "s", "a\u015f", " \"**", "sste", "**!", "\u03c2", " **\u201e"], [" **", "s", "a\u015f", " arguably", " \"**", " incredibly", "sste", "sii"], ["s", " **", "**!", "a\u015f", " incredibly", " \"**", " arguably", " **\u2013"], [" **", "**!", " **\u201e", " \"**", "s", " **\u00ab", " **#", " **\u2013"], [" **", "**!", " \"**", " **\u201e", " **#", "s", " **+", "a\u015f"], [" \n\n", " **", "s", " arguably", "**!", " incredibly", " swiftly", "a\u015f"], [" \n\n", "<|endoftext|>", "\n\n", "  \n\n", " \r\n\r\n", " \n\n\n\n", "<|file_sep|>", "s"], [" **", " **#", " \"**", " **+", "a\u015f", " !**", "sste", " \n\n"], [" \n\n", " **", "\n\n", " arguably", " swiftly", " \r\n\r\n", "a\u015f", "\r\n\r\n"], [" \n\n", "<|endoftext|>", "\n\n", " **", " swiftly", " arguably", " \r\n\r\n", "\r\n\r\n"], [" \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", "  \n\n", " \n\n\n\n", " \n\n\n", "<|im_end|>"], [" \n\n", " **", " \r\n\r\n", "\n\n", "\r\n\r\n", " \n\n\n\n", " **#", "...**"], [" \n\n", "\n\n", " **", " \r\n\r\n", "\r\n\r\n", " \n\n\n\n", " **#", " arguably"], [" \n\n", "\n\n", " **", " \r\n\r\n", "\r\n\r\n", "  \n\n", " \n\n\n\n", " arguably"], [" \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", " **", "  \n\n", " \n\n\n\n", " arguably"], [" \n\n", " **", "\n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", " \n\n\n\n", " \n\n\n"], [" \n\n", "\n\n", "  \n\n", " **", " ...", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n"], [" \n\n", " **", "\n\n", " ...", "  \n\n", " \u2014", " \u2026", " heavily"], [" heavily", " because", " due", " rapidly", " extremely", " overwhelmingly", " deeply", " even"], [" fundamentally", " heavily", " overwhelmingly", " aggressively", " relentlessly", " rapidly", " extremely", " purely"], [" relentlessly", " aggressively", " overwhelmingly", "\u2014even", " heavily", " meticulously", " notoriously", " fundamentally"], [" notoriously", " relentlessly", " aggressively", "\u2014even", " \u2014", " fundamentally", " overwhelmingly", " heavily"], [" relentlessly", " aggressively", " notoriously", "\u6839\u672c\u65e0\u6cd5", " fundamentally", "\u2014even", " relentless", " brutally"], [" relentlessly", " aggressively", " notoriously", " fundamentally", " relentless", "\u6839\u672c\u65e0\u6cd5", "\u2014even", " brutally"], [" relentlessly", "\u6839\u672c\u65e0\u6cd5", " aggressively", " fundamentally", " notoriously", " relentless", "\u2014even", " brutally"], [" relentlessly", " relentless", "\u6839\u672c\u65e0\u6cd5", " aggressively", " fundamentally", " notoriously", "\u2014even", " impossible"], [" relentlessly", " relentless", " aggressively", " fundamentally", "\u6839\u672c\u65e0\u6cd5", " impossible", " brutal", " notoriously"], [" relentlessly", " aggressively", " relentless", "\u6839\u672c\u65e0\u6cd5", " fundamentally", " notoriously", " impossible", "\u2014even"], [" aggressively", " relentlessly", " relentless", " fundamentally", " notoriously", "\u6839\u672c\u65e0\u6cd5", " impossible", " inherently"], [" impossible", " aggressively", " notoriously", " relentless", " relentlessly", " brutal", " desperately", "\u6839\u672c\u65e0\u6cd5"], [" impossible", " aggressively", " notoriously", " relentlessly", " relentless", " fundamentally", " inherently", " brutal"], [" aggressively", " impossible", " notoriously", " inherently", " relentlessly", " fundamentally", " relentless", " drastically"], [" fundamentally", " impossible", " aggressively", " notoriously", "\u6839\u672c\u65e0\u6cd5", "  \n\n", " relentless", " inherently"], [" fundamentally", "\u6839\u672c\u65e0\u6cd5", "  \n\n", " inherently", " aggressively", " notoriously", " impossible", " \n\n"], ["\u6839\u672c\u65e0\u6cd5", " fundamentally", "\u4e0d\u662f\u56e0\u4e3a", "  \n\n", " impossible", " relentlessly", "\u5c06\u65e0\u6cd5", " relentless"], ["\u6839\u672c\u65e0\u6cd5", "  \n\n", " \n\n", "\u65e0\u6cd5\u6ee1\u8db3", " attempting", " \uc544\ubb34\ub9ac", " impossible", "\\."], ["  \n\n", " \n\n", "  \n", " specifically", "\u6839\u672c\u65e0\u6cd5", " Specifically", "\n\n", "  \n  \n"], [" \n\n", "\n\n", "  \n", "  \n\n", "\u6839\u672c\u65e0\u6cd5", " specifically", " Specifically", "  \n  \n"], [" \n\n", " specifically", "  \n\n", " Specifically", "\n\n", "  \n", "  \n  \n", "\u5177\u4f53\u6765\u8bf4"], [" \n\n", " specifically", "  \n\n", "\n\n", " Specifically", "  \n", "  \n  \n", "\u5177\u4f53\u6765\u8bf4"], [" specifically", " Specifically", "specific", "\u5177\u4f53\u6765\u8bf4", "Specific", " espec\u00edf", "\u5177\u4f53\u8981\u6c42", "_specific"], [" specifically", " Specifically", "specific", "\u5177\u4f53\u6765\u8bf4", "Specific", " espec\u00edf", "\u5177\u4f53\u8981\u6c42", "_specific"], [" specifically", " Specifically", "\n\n", "specific", "\u5177\u4f53\u6765\u8bf4", "Specific", " espec\u00edf", " \n\n"], [" specifically", " Specifically", "\n\n", "specific", "\u5177\u4f53\u6765\u8bf4", "Specific", " espec\u00edf", " \n\n"], [" Specifically", " specifically", "\n\n", "\u5177\u4f53\u6765\u8bf4", "specific", "Specific", " \n\n", " espec\u00edf"], [" specifically", "\n\n", " Specifically", " hitting", "specific", "Specific", " \n\n", "\u5177\u4f53\u6765\u8bf4"], ["\n\n", " Specifically", " specifically", " \n\n", " hitting", "  \n\n", "Specific", "specific"], ["\n\n", " Specifically", " \n\n", " specifically", " hitting", "  \n\n", " Period", " Trying"], [" Specifically", "\n\n", " specifically", " Not", " You", " \n\n", " Achie", " Attempt"]], "p": [[0.9108, 0.066, 0.0079, 0.0079, 0.0035, 0.0006, 0.0003, 0.0002], [0.3239, 0.1734, 0.1052, 0.0563, 0.0497, 0.0438, 0.0438, 0.0438], [0.4295, 0.1394, 0.0958, 0.0846, 0.0746, 0.0453, 0.0311, 0.0311], [0.198, 0.1361, 0.1201, 0.0684, 0.0604, 0.0415, 0.039, 0.0323], [0.2108, 0.1642, 0.1279, 0.1279, 0.0879, 0.0604, 0.0415, 0.0366], [0.2242, 0.1746, 0.136, 0.0935, 0.0642, 0.0441, 0.0441, 0.0441], [0.3148, 0.0902, 0.0702, 0.0702, 0.062, 0.0547, 0.0426, 0.0376], [0.2824, 0.1177, 0.0917, 0.0809, 0.0809, 0.0556, 0.0433, 0.0433], [0.1878, 0.1139, 0.1005, 0.0887, 0.0887, 0.0783, 0.061, 0.0475], [0.2001, 0.1559, 0.1071, 0.0945, 0.0736, 0.0447, 0.0419, 0.0327], [0.4464, 0.1449, 0.1449, 0.0533, 0.0366, 0.0252, 0.0222, 0.0153], [0.3389, 0.2056, 0.1814, 0.0857, 0.0336, 0.0261, 0.018, 0.014], [0.3068, 0.239, 0.2109, 0.0879, 0.0252, 0.0127, 0.0127, 0.0119], [0.3568, 0.1685, 0.1397, 0.1022, 0.0189, 0.0167, 0.0095, 0.0089], [0.5087, 0.0444, 0.0287, 0.0154, 0.0127, 0.0088, 0.0088, 0.0068], [0.3282, 0.2119, 0.0417, 0.0099, 0.0093, 0.0077, 0.0077, 0.0041], [0.9161, 0.0752, 0.001, 0.0006, 0.0004, 0.0003, 0.0003, 0.0002], [0.7859, 0.1547, 0.0163, 0.0099, 0.0056, 0.003, 0.003, 0.0027], [0.7633, 0.1171, 0.018, 0.0102, 0.0085, 0.0062, 0.0055, 0.0045], [0.3225, 0.1523, 0.0635, 0.0319, 0.0234, 0.0182, 0.0097, 0.0067], [0.7402, 0.2403, 0.0064, 0.0027, 0.0009, 0.0007, 0.0005, 0.0005], [0.2897, 0.0325, 0.0163, 0.012, 0.0087, 0.0082, 0.0077, 0.0064], [0.2679, 0.1189, 0.0142, 0.0142, 0.0111, 0.0104, 0.0081, 0.0071], [0.463, 0.0856, 0.0458, 0.018, 0.0116, 0.0116, 0.0109, 0.0085], [0.8907, 0.0939, 0.006, 0.0053, 0.0022, 0.0005, 0.0002, 0.0001], [0.8711, 0.0298, 0.0263, 0.0247, 0.017, 0.0055, 0.0015, 0.0014], [0.8285, 0.0639, 0.0321, 0.0152, 0.0134, 0.0026, 0.0007, 0.0006], [0.876, 0.1046, 0.0067, 0.0032, 0.0025, 0.0012, 0.0004, 0.0002], [0.8424, 0.1292, 0.0073, 0.0064, 0.0057, 0.0029, 0.0008, 0.0003], [0.9765, 0.0066, 0.0051, 0.0045, 0.0024, 0.0008, 0.0008, 0.0004], [0.8746, 0.0922, 0.0086, 0.0067, 0.0052, 0.0012, 0.001, 0.0008], [0.6544, 0.0782, 0.069, 0.069, 0.006, 0.006, 0.005, 0.0041], [0.0304, 0.0304, 0.0223, 0.0209, 0.0197, 0.0185, 0.0185, 0.0173], [0.0446, 0.0306, 0.0254, 0.0224, 0.0198, 0.0164, 0.0145, 0.0145], [0.0355, 0.0313, 0.0202, 0.0178, 0.0178, 0.0178, 0.0167, 0.0157], [0.038, 0.0357, 0.0357, 0.0335, 0.0278, 0.0231, 0.0217, 0.0191], [0.0412, 0.0387, 0.0387, 0.0301, 0.025, 0.0194, 0.0194, 0.0161], [0.0547, 0.0454, 0.0332, 0.0332, 0.0293, 0.0275, 0.0259, 0.0167], [0.0584, 0.0402, 0.0377, 0.0313, 0.0294, 0.0294, 0.0202, 0.019], [0.0622, 0.0455, 0.0427, 0.0313, 0.0294, 0.0259, 0.0243, 0.0202], [0.0607, 0.057, 0.0325, 0.0269, 0.0238, 0.0238, 0.0238, 0.021], [0.0491, 0.0461, 0.0359, 0.0317, 0.0247, 0.0218, 0.0181, 0.0181], [0.0616, 0.048, 0.0374, 0.0351, 0.0273, 0.02, 0.02, 0.0188], [0.0724, 0.053, 0.053, 0.0364, 0.0342, 0.025, 0.0195, 0.0183], [0.0848, 0.0548, 0.0427, 0.0312, 0.0293, 0.0215, 0.0178, 0.0178], [0.0579, 0.0511, 0.048, 0.0351, 0.033, 0.0273, 0.0257, 0.0156], [0.0623, 0.0355, 0.0334, 0.0334, 0.0313, 0.0313, 0.0313, 0.0294], [0.079, 0.0742, 0.051, 0.0423, 0.029, 0.0273, 0.0273, 0.0256], [0.3617, 0.0231, 0.0231, 0.0217, 0.0217, 0.018, 0.0149, 0.0149], [0.2911, 0.0573, 0.0271, 0.0164, 0.0154, 0.0136, 0.0128, 0.0113], [0.2477, 0.2186, 0.117, 0.1033, 0.071, 0.038, 0.0203, 0.009], [0.3358, 0.1797, 0.1586, 0.1586, 0.0276, 0.0228, 0.0122, 0.0074], [0.3361, 0.2966, 0.1401, 0.1091, 0.0276, 0.0178, 0.0084, 0.0079], [0.439, 0.183, 0.1425, 0.0864, 0.0763, 0.016, 0.0086, 0.0052], [0.9709, 0.0259, 0.0017, 0.0013, 0.0002, 0.0001, 0.0, 0.0], [0.9617, 0.029, 0.005, 0.0031, 0.0007, 0.0003, 0.0, 0.0], [0.6224, 0.3331, 0.0273, 0.0078, 0.0048, 0.0025, 0.0011, 0.0004], [0.6231, 0.2943, 0.0657, 0.0078, 0.0048, 0.0015, 0.0014, 0.0007], [0.4261, 0.3318, 0.2281, 0.0042, 0.0033, 0.0022, 0.0022, 0.0009], [0.3564, 0.3145, 0.2775, 0.0426, 0.0021, 0.0015, 0.0013, 0.001], [0.9016, 0.0653, 0.0272, 0.0042, 0.0011, 0.0001, 0.0001, 0.0001], [0.9686, 0.0177, 0.0065, 0.0065, 0.0003, 0.0001, 0.0, 0.0], [0.6313, 0.3379, 0.0102, 0.0031, 0.0031, 0.0021, 0.0012, 0.0011]], "ranks": {}}, {"pos": 388, "top": [[".", "\u00a0\u00a0", " \u200b\u200b", ",", "\u00a0", " \u2013", "\u2026.", "  \n\n"], ["  \n\n", "\uff1a**", " **:", "\uff1f**", " **'", " \u2013**", " \u062f\u0645\u0634", "  \r\n\r\n"], ["\u3002", " \n\n", " \u2013", "\u2026\"", ".", "\u2026..", "\u2026**", " \ud83d\ude42"], ["\uff1f**", " **\u3010", " **\u25cb", " **:**", " **:", " milfs", " Blowjob", "\uff1a**"], [" **\u201c", " **:", " **\u3010", " **#", "\uff1a**", "\uff1f**", "**\u3002", " **."], [" **\u201c", " **\u3010", "**!", " **:", " **#", " **\"", "\uff1f**", "**\u3002"], [" **\u3010", " **\u201c", "\uff1f**", "**\u3002", "\uff09**", "**!", " **\"", "\u201d**"], [" **\u3010", "**!", " \n\n", " **'", " **#", " **\"", " **\u201c", "  \n\n"], [" \n\n", "  \n\n", "   \n\n", " **\u3010", "     \n\n", "       \n\n", "    \n\n", "      \n\n"], [" **#", " **\u3010", " **'", " **\"", " **+", "**!", " **", " **\u25cb"], [" **\u3010", " **#", " **", " **+", " **\"", " **'", " \ufffd", " \n\n"], [" **\u3010", " **#", " **:", " **+", " **'", " **", " **\u25a0", " **\u00ab"], [" **\u3010", " **:", " **'", " **#", " **\u00ab", " **+", " **\u300c", " **"], [" **'", " **\u3010", " milfs", " **+", " **#", " **:", " Shemale", " **\u00ab"], [" **", " **'", " **#", " **+", " **\u3010", " impactful", " \ufffd", " \"**"], [" impactful", " incredibly", " incentiv", " mindset", "\u62e5\u6709\u7740", "-esque", " transitioning", " entirety"], [" \n\n", " impactful", " incredibly", "  \n\n", " overarching", " arguably", " foundational", " mindset"], ["  \n\n", " \n\n", " **", "   \n\n", " incredibly", " **\u201c", "**!", " **#"], [" **", " **#", " incredibly", " **'", " **\u201c", " foundational", " **\u3010", " arguably"], [" \n\n", "  \n\n", " incredibly", "\n\n", "<|endoftext|>", " **", " arguably", " **#"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " \r\n\r\n", " arguably"], [" **", " **#", " incredibly", " **'", "\u62e5\u6709\u7740", " **\u201c", " arguably", " **\u3010"], ["\n\n", " \n\n", " arguably", " **", "\r\n\r\n", "  \n\n", " myriad", " foundational"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " arguably", " myriad", " swiftly"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|im_end|>", "<|endoftext|>"], [" \n\n", "  \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", " **", "   \n\n", "  \r\n\r\n"], [" \n\n", "  \n\n", "\n\n", "\r\n\r\n", " **", " \r\n\r\n", " arguably", "   \n\n"], [" \n\n", "  \n\n", "\n\n", "\r\n\r\n", " **", " \r\n\r\n", "   \n\n", " arguably"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " \r\n\r\n", " \u2014"], [" \n\n", "  \n\n", "<|endoftext|>", "\n\n", " \u2014", "   \n\n", "\r\n\r\n", " arguably"], ["  \n\n", " \n\n", "<|endoftext|>", " \u2014", "\n\n", " \u201c", "\u2014", " arguably"], [" \u2014", "  \n\n", " \n\n", " \u2013", "\u2014", "<|endoftext|>", " arguably", " largely"], ["  \n\n", " \u2014", " \n\n", "<|endoftext|>", " arguably", "\u2014", "\u2014and", "\u2014even"], ["  \n\n", " \u2014", "<|endoftext|>", " arguably", "\u2014even", " \n\n", " relentlessly", " meticulously"], ["  \n\n", "<|endoftext|>", " \u2014", " \n\n", "\u2014even", "\u2014and", "\u2014but", " \u2013"], ["  \n\n", " \n\n", " \u2014", "<|endoftext|>", "\u2014even", " relentlessly", " aggressively", "   \n\n"], ["  \n\n", " \u2014", "\u2014even", "<|endoftext|>", " **", " \n\n", " relentlessly", " aggressively"], ["  \n\n", " \u2014", "\u2014even", "<|endoftext|>", " relentlessly", " **", " relentless", " **\u201c"], ["  \n\n", " \u2014", " **\u201c", "\u2014even", " **", "<|endoftext|>", " relentlessly", " relentless"], ["  \n\n", " relentlessly", "<|endoftext|>", " relentless", " aggressively", " \u2014", "\u2014even", " fundamentally"], [" \u2014", " aggressively", " relentlessly", "\u2014even", " relentless", " fundamentally", " rapidly", " brutally"], [" aggressively", " **", " \u2014", " relentless", " relentlessly", "\u2014even", "  \n\n", " fundamentally"], [" aggressively", " **", " relentless", " relentlessly", "\u2014even", " \u2014", "  \n\n", " fundamentally"], [" aggressively", " **", " relentless", " relentlessly", "\u2014even", " squarely", " priorit", " fundamentally"], [" **", " aggressively", " **\u201c", "  \n\n", " squarely", "\u2014even", " relentless", " relentlessly"], ["  \n\n", " **", " **\u201c", " \n\n", "\u2014even", "  \r\n\r\n", "   \n\n", " **\""], [" **", "  \n\n", " **\u201c", "\u2014even", " **\"", " **#", " Because", "**\u2014"], [" **", " **\u201c", " **\"", " **#", " **+", "**\u2014", " **\u2013", " **("], [" **", "\u7406\u7531\u306f", " **#", " **\"", "\u4e0d\u662f\u56e0\u4e3a", " **\u201c", "\u539f\u56e0\u5728\u4e8e", " **+"], ["\u7406\u7531\u306f", "\u7406\u7531", "\u539f\u56e0\u5728\u4e8e", "\u4e0d\u662f\u56e0\u4e3a", "\u7406\u7531\u662f", "\u7684\u7406\u7531", " **\u201c", " **\""], [" **\"", "\u7406\u7531\u306f", "\u7406\u7531", " **\u201c", "\u7406\u7531\u662f", "\u539f\u56e0\u5728\u4e8e", "\u7684\u7406\u7531", "\u6839\u672c\u65e0\u6cd5"], ["\u7406\u7531", "\u7406\u7531\u306f", " Specifically", " specifically", " **\"", " **\u201c", " reason", "\u7406\u7531\u662f"], ["\u7406\u7531", " reason", "\u7406\u7531\u306f", " reasons", " Reason", " Reasons", "\u7406\u7531\u662f", "\u7684\u7406\u7531"], [" specifically", " Specifically", "\u5177\u4f53\u6765\u8bf4", " here", " Here", "specific", "\u7406\u7531", " espec\u00edf"], [" specifically", " Specifically", "\u5177\u4f53\u6765\u8bf4", " here", "specific", " Here", "Specific", " espec\u00edf"], [" Specifically", " specifically", " Why", " Here", "\u5177\u4f53\u6765\u8bf4", "Specific", "specific", " why"], [" Specifically", " specifically", "\u5177\u4f53\u6765\u8bf4", " Why", " Here", "specific", "Specific", "\"Why"], [" Specifically", " specifically", " Why", "Specific", "\"Why", " Here", "\u5177\u4f53\u6765\u8bf4", " Trying"], [" Specifically", " specifically", " hitting", " Why", " Trying", "Specific", " targeting", " Here"], [" Specifically", " specifically", " hitting", " Trying", "Specific", " targeting", " Mid", " trying"], [" Specifically", " specifically", " hitting", "Specific", " Trying", " targeting", "Attempting", "specific"], ["Specific", " Specifically", "C", "Here", "You", "Mid", "\"C", "Trying"]], "p": [[0.856, 0.0293, 0.0258, 0.0101, 0.0084, 0.0084, 0.0074, 0.0051], [0.0146, 0.0088, 0.0073, 0.0069, 0.005, 0.0042, 0.0037, 0.0037], [0.2905, 0.0782, 0.0572, 0.0505, 0.0474, 0.0369, 0.0326, 0.027], [0.048, 0.048, 0.033, 0.0273, 0.0257, 0.0241, 0.0188, 0.0166], [0.2633, 0.0666, 0.0625, 0.0552, 0.0356, 0.0335, 0.0295, 0.0277], [0.3345, 0.1395, 0.1231, 0.0425, 0.0275, 0.0258, 0.0242, 0.0242], [0.611, 0.073, 0.0324, 0.0304, 0.0196, 0.0185, 0.0163, 0.0163], [0.6946, 0.0325, 0.0223, 0.0197, 0.0185, 0.0144, 0.0135, 0.0127], [0.7578, 0.1492, 0.0549, 0.0074, 0.0051, 0.0051, 0.0035, 0.0031], [0.1539, 0.1358, 0.0566, 0.05, 0.0441, 0.0251, 0.0222, 0.0092], [0.4435, 0.2374, 0.0321, 0.0207, 0.0207, 0.0183, 0.0162, 0.0162], [0.176, 0.0885, 0.0781, 0.0572, 0.0572, 0.0326, 0.0238, 0.0174], [0.1524, 0.1187, 0.0635, 0.0495, 0.0437, 0.0385, 0.0282, 0.0234], [0.0357, 0.0336, 0.0296, 0.0217, 0.0131, 0.0123, 0.0109, 0.0109], [0.0353, 0.0214, 0.0214, 0.0189, 0.0101, 0.0095, 0.0084, 0.0051], [0.123, 0.0311, 0.0311, 0.0292, 0.0227, 0.0227, 0.0227, 0.0214], [0.2, 0.061, 0.0573, 0.0446, 0.0288, 0.0254, 0.0198, 0.0164], [0.3484, 0.2394, 0.0502, 0.0471, 0.0416, 0.0324, 0.0185, 0.0185], [0.1481, 0.1084, 0.1018, 0.0545, 0.0399, 0.0147, 0.0122, 0.0122], [0.3957, 0.1207, 0.057, 0.0473, 0.0269, 0.0163, 0.0119, 0.0105], [0.5604, 0.2647, 0.0859, 0.0669, 0.0026, 0.0015, 0.0005, 0.0005], [0.1023, 0.0354, 0.0201, 0.0189, 0.0147, 0.0147, 0.0138, 0.0122], [0.1009, 0.0948, 0.0349, 0.0308, 0.0225, 0.0165, 0.0137, 0.0128], [0.2561, 0.2561, 0.0418, 0.0306, 0.0224, 0.0186, 0.0113, 0.0057], [0.4126, 0.3213, 0.2502, 0.0076, 0.0025, 0.0019, 0.0008, 0.0006], [0.545, 0.3306, 0.042, 0.0175, 0.0088, 0.0078, 0.0047, 0.0017], [0.4997, 0.1727, 0.0561, 0.0194, 0.0171, 0.0097, 0.0046, 0.0036], [0.6275, 0.2037, 0.14, 0.0051, 0.0033, 0.0024, 0.0013, 0.0009], [0.5413, 0.372, 0.0646, 0.0099, 0.0032, 0.0017, 0.0016, 0.0009], [0.4986, 0.44, 0.0525, 0.0034, 0.0016, 0.0008, 0.0006, 0.0003], [0.5537, 0.3358, 0.0515, 0.0354, 0.0023, 0.0016, 0.0011, 0.0011], [0.3055, 0.3055, 0.238, 0.0322, 0.0072, 0.0028, 0.0026, 0.0026], [0.2129, 0.1765, 0.0945, 0.0239, 0.0154, 0.0145, 0.0113, 0.01], [0.2681, 0.1731, 0.0986, 0.0265, 0.0171, 0.0161, 0.0125, 0.0118], [0.1928, 0.0709, 0.0357, 0.0203, 0.0191, 0.0169, 0.0158, 0.0116], [0.4621, 0.1809, 0.1031, 0.0356, 0.0102, 0.0066, 0.0062, 0.0051], [0.7373, 0.0367, 0.0252, 0.0099, 0.0093, 0.0072, 0.006, 0.0056], [0.3659, 0.0925, 0.034, 0.022, 0.0194, 0.0194, 0.0194, 0.0182], [0.2188, 0.1413, 0.0431, 0.0357, 0.0246, 0.0204, 0.0204, 0.018], [0.3567, 0.0426, 0.0312, 0.0293, 0.0275, 0.0258, 0.0228, 0.0214], [0.147, 0.0421, 0.0396, 0.0396, 0.0349, 0.0289, 0.0272, 0.0255], [0.0759, 0.0591, 0.046, 0.046, 0.0406, 0.0204, 0.0124, 0.0116], [0.0739, 0.0477, 0.0421, 0.0395, 0.0371, 0.0349, 0.0308, 0.024], [0.0965, 0.0752, 0.0663, 0.0485, 0.0378, 0.0277, 0.0277, 0.0244], [0.1015, 0.0616, 0.0423, 0.031, 0.0227, 0.02, 0.02, 0.02], [0.1453, 0.0569, 0.0472, 0.0443, 0.0269, 0.0269, 0.0237, 0.0223], [0.705, 0.0954, 0.0656, 0.0121, 0.0101, 0.0101, 0.0101, 0.0048], [0.3334, 0.2943, 0.1575, 0.0291, 0.0166, 0.0156, 0.0065, 0.0054], [0.9618, 0.02, 0.0073, 0.0031, 0.0006, 0.0004, 0.0004, 0.0004], [0.4109, 0.1177, 0.0491, 0.0491, 0.0263, 0.0263, 0.0232, 0.0192], [0.2744, 0.2137, 0.0837, 0.054, 0.0421, 0.0308, 0.0165, 0.0128], [0.153, 0.1437, 0.135, 0.0563, 0.0387, 0.0341, 0.0283, 0.0207], [0.2057, 0.1248, 0.1101, 0.1101, 0.052, 0.038, 0.0336, 0.0296], [0.3003, 0.1252, 0.1105, 0.0975, 0.0461, 0.0461, 0.0297, 0.0246], [0.8144, 0.1604, 0.008, 0.0055, 0.0029, 0.0029, 0.0012, 0.0006], [0.7763, 0.1732, 0.0161, 0.0098, 0.0076, 0.0036, 0.0015, 0.0012], [0.6658, 0.2775, 0.0108, 0.0095, 0.0084, 0.0045, 0.004, 0.0019], [0.528, 0.4112, 0.0097, 0.0075, 0.0066, 0.0059, 0.0036, 0.0024], [0.6363, 0.3006, 0.0117, 0.0091, 0.0062, 0.0055, 0.0049, 0.0026], [0.4745, 0.3696, 0.0825, 0.0087, 0.0064, 0.006, 0.0053, 0.005], [0.6869, 0.2527, 0.0342, 0.0046, 0.0041, 0.003, 0.001, 0.001], [0.7437, 0.1659, 0.0288, 0.0094, 0.006, 0.0034, 0.0032, 0.0027], [0.201, 0.1774, 0.1381, 0.1381, 0.0695, 0.0508, 0.0349, 0.0165]], "ranks": {}}, {"pos": 389, "top": [["s", " \u2013", ".", "\u2013", ",", " \u200b\u200b", "\u0627\u062a", " [\u2026]"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "schild", "es", " \u200b\u200b", "ally"], ["s", "\u0627\u062a", "\u044b", "\u2013", "\u05d9\u05dd", " \u200b\u200b", "\u2026..", "ally"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "raries", "sprozess", "satz", "schrift"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "s\u00e9", "es", "sor", "ske"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ities", "ally", "\u064b\u0627", "s\u00e9"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ities", "raries", "s\u00e9", "sor"], ["s", "\u0627\u062a", "\u044b", "ities", "\u05d9\u05dd", "raries", "amente", "ally"], ["s", "\u0627\u062a", "\u044b", "ities", "\u05d9\u05dd", "ally", "amente", "raries"], ["s", "\u0627\u062a", "\u044b", "ities", "ally", "\u05d9\u05dd", "amente", "ly"], ["s", "\u0627\u062a", "\u044b", "ally", "ities", "ly", "es", "\u05d9\u05dd"], ["s", "\u0627\u062a", "\u044b", "ally", "ities", "ly", "\u05d9\u05dd", "amente"], ["s", "\u0627\u062a", "\u044b", "ally", "ities", "ly", "amente", "\u05d9\u05dd"], ["s", "\u0627\u062a", "\u044b", "ities", "ally", "ly", "raries", "idad"], ["s", "\u0627\u062a", "ities", "\u044b", "ally", "raries", "ly", "ity"], ["s", "\u0627\u062a", "\u044b", "ities", "ally", "\u05d9\u05dd", "ly", "ity"], ["s", "\u0627\u062a", "ities", "ly", "ally", "\u044b", "es", "ity"], ["s", "\u0627\u062a", "ally", "ly", "ities", "\u044b", "es", "ity"], ["s", "\u0627\u062a", "ly", "ally", "\u044b", "es", "ities", "amente"], ["s", "\u0627\u062a", "ly", "\u044b", "ally", "es", "ities", "ively"], ["s", "ly", "\u0627\u062a", "ally", "ively", "ities", "\u044b", "es"], ["s", "ly", "\u0627\u062a", "ally", "ities", "ively", "\u044b", "ously"], ["s", "ly", "ally", "\u0627\u062a", "ively", "ities", "ously", "\u044b"], ["s", "ly", "ally", "\u0627\u062a", "ively", "ities", "ously", "es"], ["s", "ly", "ally", "ities", "\u0627\u062a", "ively", "ously", "ive"], ["s", "ly", "ities", "ally", "ively", "\u0627\u062a", "ously", "\u044b"], ["s", "ly", "ities", "ally", "ively", "\u0627\u062a", "ously", "es"], ["s", "ly", "\n\n", "ally", "ively", "ities", "ously", " arguably"], ["s", "ly", "ally", "ities", "...**", "ively", "ously", "\u0627\u062a"], ["s", "...**", "ly", "ally", " [...]", "ities", "\u2026**", "...\\"], ["s", "ly", "ally", " ...", "...**", "ively", " [...]", "ities"], ["s", "ly", "ally", " specifically", "ively", " ,", " targeting", " -"], ["s", "ly", " ,", " -", "ally", " specifically", "ively", " potentially"], ["s", " **", "ally", "\u2026**", "ly", "ities", ":**", " leveraging"], ["s", " **", "ly", "ally", ":**", "ities", " :**", " -**"], ["s", "ly", "ally", "ities", "ively", " **", "ity", "es"], ["s", "ly", "ally", "ities", "ively", " **", " leveraging", "ity"], ["ally", "s", "ly", "ively", "ities", "ity", "es", " -**"], ["ly", "ally", " **", "s", " -**", "ively", "ities", " :**"], ["ally", "ly", "s", " **", "ively", "ities", " requirements", ":**"], ["ly", "ally", "s", "ively", " leveraging", " requirements", "ities", "ity"], [" requirements", " leveraging", "ly", "ally", "ities", " constraints", "ively", ":**"], [" **", " requirements", " leveraging", "ally", " scenarios", " constraints", "ly", ":**"], [" requirements", " constraints", " leveraging", " scenarios", "ly", "ally", "ities", " **"], [" requirements", " constraints", " **", "ly", " requirement", " scenarios", "ities", "ally"], [" requirements", " constraints", " requirement", "ly", " scenarios", " specifically", " constraint", " demands"], [" specifically", " requirements", " **", " constraints", " requirement", "ly", "ally", "\u5177\u4f53\u8981\u6c42"], [" specifically", " requirements", " **", " constraints", " requirement", " Specifically", " **\u201c", "ally"], [" **", " **\u201c", " specifically", " **+", " **\"", " **#", " **\u20ac", "-**"], [" **\u201c", ":**", "-**", " **\"", " **+", " **", "ally", " **#"], ["\u5177\u4f53\u6765\u8bf4", " Specifically", " specifically", ":**", "Specific", "specific", "\u7406\u7531", " reasons"], ["ally", ":**", "\uff1a**", " reasons", "ially", "\u7406\u7531", "\u539f\u56e0\u5728\u4e8e", " Reasons"], [" Specifically", "\u5177\u4f53\u6765\u8bf4", " specifically", "ally", "Specific", "specific", "\u7406\u7531", "\u539f\u56e0"], ["ally", " Specifically", "\u5177\u4f53\u6765\u8bf4", " reasons", "\u539f\u56e0", " Reasons", "\u7406\u7531", " specifically"], [" specifically", " Specifically", "\u5177\u4f53\u6765\u8bf4", "Specific", "specific", "ally", "\u5177\u4f53", " Specific"], ["ally", "ially", "ALLY", " specifically", " Specifically", "\u5177\u4f53\u6765\u8bf4", "ically", "ly"], ["ally", "ALLY", "ially", "\u5177\u4f53\u6765\u8bf4", " specifically", " reasons", " Reasons", "\u539f\u56e0"], ["ally", "ially", "ALLY", " Reasons", " reasons", "ically", "\u539f\u56e0", " specifically"], ["ally", "ALLY", " reasons", "ially", " specifically", " Reasons", " Specifically", "\u5177\u4f53\u6765\u8bf4"], ["ally", "ALLY", "ially", " reasons", " Reasons", " Reason", " reason", "ically"], ["ally", "ALLY", "ially", " reasons", " Reasons", " Reason", "ly", "ically"], ["ally", "ALLY", "ially", " reasons", " Reason", "ically", "\u0430\u043b\u044c\u043d\u043e", "ly"], ["ally", "ALLY", "ially", "ly", "ically", " Reason", " reasons", " Constraint"]], "p": [[0.9979, 0.0012, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7504, 0.1478, 0.0257, 0.0089, 0.0024, 0.0013, 0.0012, 0.001], [0.9997, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9976, 0.0019, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9954, 0.0036, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9987, 0.001, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.99, 0.0076, 0.0009, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [0.9733, 0.0139, 0.0031, 0.0021, 0.0019, 0.0009, 0.0006, 0.0004], [0.9762, 0.0108, 0.0027, 0.0024, 0.0018, 0.0007, 0.0007, 0.0004], [0.9915, 0.0046, 0.0013, 0.0006, 0.0005, 0.0002, 0.0002, 0.0001], [0.9883, 0.0067, 0.0012, 0.0011, 0.0004, 0.0002, 0.0002, 0.0001], [0.9987, 0.0006, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9911, 0.0052, 0.0009, 0.0008, 0.0006, 0.0005, 0.0002, 0.0001], [0.994, 0.0036, 0.0009, 0.0005, 0.0004, 0.0001, 0.0001, 0.0], [0.9881, 0.0052, 0.0028, 0.001, 0.001, 0.0003, 0.0002, 0.0001], [0.9472, 0.0223, 0.0093, 0.0082, 0.0013, 0.001, 0.0009, 0.0006], [0.7062, 0.058, 0.0481, 0.0451, 0.0122, 0.0084, 0.0054, 0.0042], [0.8057, 0.0849, 0.0312, 0.0189, 0.0074, 0.007, 0.0019, 0.0019], [0.8369, 0.0687, 0.0144, 0.0087, 0.0077, 0.0047, 0.0019, 0.0015], [0.8293, 0.0681, 0.0195, 0.0118, 0.0059, 0.0056, 0.0021, 0.0007], [0.6609, 0.1475, 0.0479, 0.035, 0.0107, 0.0107, 0.0035, 0.0017], [0.7199, 0.1418, 0.0297, 0.0262, 0.0096, 0.0066, 0.0031, 0.0014], [0.7274, 0.0767, 0.0249, 0.0194, 0.0104, 0.0104, 0.0032, 0.003], [0.6885, 0.0932, 0.0388, 0.0251, 0.0143, 0.0126, 0.0044, 0.0041], [0.669, 0.1026, 0.0455, 0.0229, 0.0157, 0.0095, 0.0095, 0.0062], [0.7901, 0.0326, 0.0211, 0.0164, 0.0113, 0.0088, 0.0082, 0.0053], [0.6973, 0.0419, 0.0145, 0.0077, 0.0068, 0.0057, 0.0044, 0.0044], [0.6686, 0.0276, 0.0202, 0.0148, 0.0139, 0.0102, 0.0066, 0.0035], [0.3323, 0.0741, 0.0577, 0.0422, 0.0397, 0.0241, 0.0155, 0.0146], [0.3087, 0.1209, 0.0733, 0.0733, 0.0369, 0.0287, 0.0185, 0.0144], [0.3056, 0.1197, 0.0932, 0.0365, 0.0251, 0.0236, 0.0134, 0.0105], [0.1676, 0.1305, 0.1082, 0.0424, 0.0351, 0.0213, 0.0129, 0.0129], [0.1323, 0.1243, 0.0968, 0.0457, 0.0429, 0.0191, 0.0116, 0.0109], [0.095, 0.095, 0.0695, 0.0653, 0.0396, 0.0372, 0.029, 0.0146], [0.0665, 0.0429, 0.0379, 0.023, 0.023, 0.0203, 0.0179, 0.0148], [0.0826, 0.0685, 0.047, 0.0252, 0.0252, 0.0196, 0.0196, 0.0135], [0.0438, 0.0386, 0.0301, 0.0301, 0.0151, 0.0125, 0.0125, 0.0111], [0.054, 0.0476, 0.0289, 0.0211, 0.0199, 0.0165, 0.0155, 0.0113], [0.084, 0.0397, 0.0226, 0.0187, 0.0176, 0.0165, 0.0155, 0.0137], [0.089, 0.0507, 0.0211, 0.0155, 0.0155, 0.0145, 0.012, 0.0113], [0.113, 0.0685, 0.0222, 0.0144, 0.0127, 0.0119, 0.0099, 0.0093], [0.0675, 0.0634, 0.0339, 0.0319, 0.0264, 0.0219, 0.0171, 0.0097], [0.361, 0.0805, 0.0711, 0.0246, 0.0217, 0.0169, 0.009, 0.007], [0.8625, 0.0179, 0.0168, 0.0139, 0.0123, 0.0058, 0.0038, 0.0033], [0.0841, 0.0543, 0.051, 0.0479, 0.045, 0.0351, 0.0351, 0.0273], [0.2983, 0.1809, 0.0518, 0.0518, 0.0518, 0.0457, 0.0457, 0.0356], [0.2094, 0.127, 0.077, 0.0638, 0.0412, 0.0387, 0.0342, 0.0283], [0.2695, 0.2695, 0.2378, 0.0468, 0.0284, 0.0251, 0.0172, 0.0172], [0.7695, 0.0492, 0.0338, 0.0298, 0.0232, 0.0181, 0.016, 0.016], [0.7407, 0.1459, 0.0608, 0.0287, 0.0154, 0.0057, 0.0011, 0.0008], [0.9994, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 390, "top": [[" \u2013", " \u200b\u200b", ".", "\u200b\u200b", "\u2013", "s", " \u2013,", ","], [" \u200b\u200b", " ;;^", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u200b\u200b", " Geile", "sprozess", "eios"], [" \u200b\u200b", "\u200b\u200b", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u2013**", "sprozess", " milfs", "**\u2013", "t\u00e9ri"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " Blowjob", "sprozess", " Shemale", " fkk", "----------</"], [" \u200b\u200b", "\u200b\u200b", ":**", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Counseling", " Modeling", " behaviors", " modeling"], [" \u200b\u200b", "\u200b\u200b", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Counseling", " **:", ":**", " Behavioral"], [" \u200b\u200b", "\u200b\u200b", ":**", ".:**", " **:", "avors", " milfs", " !***"], [" \u200b\u200b", "\u200b\u200b", ":**", " **:", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", ".:**", " Shemale"], [" \u200b\u200b", "\u200b\u200b", ":**", ".:**", "avored", ",**", " **\u00ab", "avors"], [" \u200b\u200b", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", "tijk", "avored", " utilizing", "\u200b\u200b", ":**"], [" \u200b\u200b", "\u200b\u200b", "\u200b", ",", " \u200b", " utilizing", " targeting", ":**"], [" \u200b\u200b", " targeting", " utilizing", " finalized", " **", " showcased", "avors", "\u200b\u200b"], [" targeting", " utilizing", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " impactful", "avors", " \u200b\u200b", " behaviors", " finalized"], [" utilizing", " targeting", " showcased", " impactful", " utilized", " transitioning", " LGBTQ", " finalized"], [" utilizing", " targeting", " transitioning", " showcasing", " showcased", " utilized", " targeted", " specifically"], [" targeting", " utilizing", " showcasing", " transitioning", " arguably", " overarching", " showcased", " standout"], [" specifically", " targeting", " utilizing", " showcasing", " arguably", " overarching", " transitioning", " notably"], [" targeting", " showcasing", ",**", " specifically", " transitioning", " nuanced", " \u200b\u200b", " **"], [" targeting", " overarching", " nuanced", ":**", " foundational", " leveraging", " specifically", " transitioning"], [" specifically", " arguably", " targeting", " overarching", " transitioning", " burgeoning", " showcasing", " foundational"], [" \u2014", " ,", " burgeoning", " arguably", " overarching", " specifically", " targeting", "\u2014and"], [" :**", " -**", " targeting", " **", " arguably", "\u62e5\u6709\u7740", " overarching", " foundational"], [" :**", " -**", " arguably", " burgeoning", " specifically", " overarching", " --", " notably"], [" ,", " --", " notably", " arguably", " burgeoning", " specifically", " :**", " \u2014"], ["\n\n", " \u2014", ":\\", " --", "  \n\n", " \n\n", " :\\", " arguably"], [" :**", " -**", " **", "\uff1a**", " overarching", " arguably", " foundational", " specifically"], [" :**", " **", " -**", " overarching", " foundational", " notably", " specifically", " arguably"], [" ,", " specifically", " arguably", " notably", " **", " \u2014", " --", " :**"], [" :**", " **", " \u2014", " specifically", " -**", " arguably", " ,", " foundational"], [" **", " \u2014", " specifically", " :**", " ,", " ...", " -**", " arguably"], [" **", " ,", " specifically", " :", " \u2014", " ...", " :**", " -"], [" specifically", " \u2014", " -", " ,", " arguably", " ...", " **", " \u201c"], [" specifically", " \u2014", " \u2013", " -", " ,", " \u201c", " strategically", " arguably"], [" specifically", " \u2014", " \u2013", " meticulously", " precisely", " arguably", " strategically", " heavily"], [" specifically", " \u2014", " \u2013", " **", " meticulously", " arguably", " precisely", " strategically"], [" \u2014", " \u2013", " specifically", " **", " -", " arguably", " \u201c", " targeting"], [" \u2014", " specifically", " \u2013", " **", " relentless", " aggressively", " meticulously", " disproportionately"], [" specifically", " \u2013", " targeting", " \u2014", " unsustainable", " relentless", " meticulously", " **"], [" specifically", " targeting", " \u2013", " unsustainable", " \u2014", " relentless", " **", " catastrophic"], [" specifically", " unsustainable", " targeting", " catastrophic", " relentless", " **", " meticulously", " precisely"], [" unsustainable", " catastrophic", " specifically", " targeting", " relentless", " hardware", " failure", " critical"], [" unsustainable", " catastrophic", " bottleneck", " meltdown", " specifically", " hardware", " critical", " targeting"], [" bottleneck", " unsustainable", " infrastructure", " meltdown", " catastrophic", " hardware", " specifically", " critical"], [" bottleneck", " unsustainable", " catastrophic", " hardware", " infrastructure", " meltdown", " collapsing", " failure"], [" bottleneck", " infrastructure", " unsustainable", " catastrophic", " collapsing", " meltdown", " hardware", " failure"], [" bottleneck", " specifically", " collapsing", " catastrophic", " unsustainable", " infrastructure", " critical", " targeting"], [" specifically", " bottleneck", " infrastructure", " collapsing", " precisely", " catastrophic", " failure", " **"], [" specifically", " **", " failure", " bottleneck", " infrastructure", " collapsing", " breakdown", " unsustainable"], [" **", " **\"", " **-", " **\u201c", " **#", " **'", " **,", " failure"], [" **", ":**", " **\"", " **#", "\uff1a**", ",**", " **\u201c", " **:**"], [" **", "\uff1a**", " **\u201c", " **#", " **\"", ":**", " **:**", " **,"], [" **", "\uff1a**", " **\"", " **\u201c", " **#", ":**", " **,", " **-"], [" **", " **\u201c", " **\"", "\uff1a**", " **#", ":**", " **+", ",**"], [" **", "\uff1a**", " **\u201c", " **\"", " **#", ":**", ",**", " **+"], [" **", "\uff1a**", ":**", ",**", " **\u201c", " **#", " **\"", " **:**"], [" **", "\uff1a**", ",**", ":**", " **#", " **\"", " **\u201c", "-**"], [" **", ",**", ":**", "\uff1a**", " **\u201c", " **\"", " **:**", " **#"], [" **", ",**", " collision", ":**", "\uff1a**", " **\u201c", " **\"", " **:**"], [" **", " collision", ",**", ":**", ":", " Collision", " **\"", " **\u201c"], [" **", " collision", " hitting", " attempting", ":", " Collision", " breaking", " collisions"], [" **", ":", " collision", ",", " hitting", " Collision", " attempting", " **,"], [",", " **", ":", " **,", "**,", ",**", " **.", ":**"], [",", ":", ",**", ",.", ",:", ":,", "**,", ":**"]], "p": [[0.9315, 0.0281, 0.0133, 0.0117, 0.0091, 0.003, 0.0008, 0.0005], [0.0643, 0.0268, 0.0082, 0.0077, 0.0072, 0.0068, 0.0068, 0.0068], [0.6564, 0.0539, 0.0164, 0.0024, 0.0016, 0.0015, 0.0014, 0.0013], [0.0536, 0.0418, 0.0346, 0.0077, 0.0044, 0.0044, 0.0036, 0.0036], [0.4859, 0.0844, 0.0065, 0.0035, 0.0024, 0.002, 0.002, 0.0015], [0.9427, 0.003, 0.0011, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002], [0.7315, 0.053, 0.0172, 0.0028, 0.0023, 0.0021, 0.0017, 0.0014], [0.8574, 0.0202, 0.0045, 0.0027, 0.0023, 0.002, 0.0019, 0.0013], [0.7848, 0.0827, 0.0087, 0.0023, 0.0023, 0.0018, 0.0012, 0.0012], [0.0186, 0.0128, 0.0094, 0.0083, 0.0073, 0.0044, 0.0042, 0.0039], [0.6423, 0.1433, 0.0234, 0.0076, 0.0071, 0.0071, 0.0056, 0.0034], [0.0358, 0.018, 0.0116, 0.0103, 0.008, 0.0062, 0.0058, 0.0055], [0.0236, 0.0173, 0.0127, 0.0099, 0.0093, 0.0093, 0.0087, 0.0082], [0.0696, 0.0478, 0.0146, 0.0137, 0.0094, 0.0094, 0.0065, 0.0065], [0.2407, 0.0474, 0.0326, 0.021, 0.0174, 0.0128, 0.0082, 0.0077], [0.0369, 0.0325, 0.021, 0.0185, 0.0174, 0.0106, 0.0099, 0.0093], [0.0531, 0.0388, 0.0365, 0.0208, 0.0208, 0.0152, 0.0143, 0.0098], [0.0764, 0.0206, 0.0193, 0.0182, 0.0171, 0.016, 0.0151, 0.0151], [0.0442, 0.0163, 0.0163, 0.0153, 0.0135, 0.0135, 0.0135, 0.0119], [0.0248, 0.0248, 0.0233, 0.0206, 0.0182, 0.0171, 0.0141, 0.0097], [0.0314, 0.023, 0.019, 0.0148, 0.0131, 0.0123, 0.0079, 0.007], [0.0189, 0.013, 0.0065, 0.0061, 0.0054, 0.0054, 0.0051, 0.0042], [0.039, 0.0153, 0.0099, 0.0099, 0.0072, 0.0068, 0.0068, 0.0056], [0.0248, 0.0233, 0.016, 0.015, 0.0125, 0.0117, 0.0103, 0.0076], [0.1345, 0.022, 0.0142, 0.0133, 0.0125, 0.011, 0.0097, 0.0097], [0.0768, 0.0363, 0.0249, 0.0142, 0.0125, 0.0098, 0.0098, 0.0092], [0.0649, 0.0186, 0.0145, 0.0128, 0.0106, 0.0106, 0.0099, 0.0082], [0.0526, 0.0361, 0.0319, 0.03, 0.0248, 0.0233, 0.0182, 0.0117], [0.0872, 0.0599, 0.0301, 0.0235, 0.0235, 0.022, 0.0194, 0.0172], [0.2188, 0.0912, 0.0553, 0.0488, 0.0357, 0.0245, 0.0191, 0.0149], [0.1219, 0.1011, 0.0838, 0.074, 0.0576, 0.0541, 0.0449, 0.0328], [0.1584, 0.1313, 0.1313, 0.0961, 0.0189, 0.0178, 0.0178, 0.0108], [0.2397, 0.1206, 0.0645, 0.0417, 0.0237, 0.0174, 0.0112, 0.0112], [0.2369, 0.1437, 0.0988, 0.0134, 0.0126, 0.0111, 0.0098, 0.0072], [0.0763, 0.0717, 0.036, 0.017, 0.0117, 0.011, 0.008, 0.0071], [0.2484, 0.1817, 0.0554, 0.0149, 0.0085, 0.0066, 0.0062, 0.0062], [0.1168, 0.0708, 0.043, 0.0123, 0.009, 0.0075, 0.0075, 0.007], [0.101, 0.0421, 0.0272, 0.0255, 0.0121, 0.0113, 0.01, 0.0094], [0.0641, 0.0236, 0.0162, 0.0162, 0.0143, 0.0111, 0.0098, 0.0092], [0.0399, 0.0374, 0.0177, 0.0147, 0.0138, 0.0114, 0.0095, 0.0095], [0.0509, 0.0212, 0.0212, 0.0137, 0.0137, 0.0107, 0.0107, 0.0094], [0.0224, 0.021, 0.0197, 0.0185, 0.0185, 0.0144, 0.0127, 0.0112], [0.0255, 0.0211, 0.0175, 0.0165, 0.0155, 0.0155, 0.012, 0.012], [0.0746, 0.0274, 0.0189, 0.0189, 0.0177, 0.0156, 0.0156, 0.0138], [0.0713, 0.0232, 0.0204, 0.0192, 0.0159, 0.0132, 0.0124, 0.0124], [0.0343, 0.0236, 0.0236, 0.0221, 0.0172, 0.0162, 0.0111, 0.0111], [0.0927, 0.0249, 0.0142, 0.0125, 0.0118, 0.0111, 0.0104, 0.0098], [0.1562, 0.1143, 0.0199, 0.0145, 0.0137, 0.01, 0.0078, 0.0073], [0.992, 0.001, 0.0005, 0.0005, 0.0004, 0.0004, 0.0002, 0.0002], [0.9491, 0.0064, 0.0047, 0.0044, 0.0027, 0.0021, 0.0018, 0.0014], [0.8701, 0.0263, 0.0159, 0.0141, 0.0103, 0.0085, 0.0062, 0.0046], [0.8834, 0.0235, 0.0183, 0.0143, 0.0087, 0.0067, 0.0046, 0.0026], [0.8295, 0.053, 0.0284, 0.0152, 0.0134, 0.0063, 0.0044, 0.0041], [0.6492, 0.0604, 0.0533, 0.0323, 0.0252, 0.0252, 0.0252, 0.0093], [0.6163, 0.0573, 0.0271, 0.0271, 0.0186, 0.0154, 0.0145, 0.0136], [0.74, 0.0473, 0.0305, 0.0287, 0.0154, 0.0127, 0.0127, 0.0077], [0.751, 0.0351, 0.0241, 0.0227, 0.0177, 0.0107, 0.0089, 0.0074], [0.6647, 0.0311, 0.0242, 0.0214, 0.0166, 0.0138, 0.013, 0.0114], [0.6907, 0.0366, 0.0222, 0.0184, 0.0135, 0.0135, 0.0112, 0.0105], [0.6028, 0.072, 0.0385, 0.0282, 0.0194, 0.0161, 0.0092, 0.0092], [0.2976, 0.2795, 0.0707, 0.0355, 0.0244, 0.0148, 0.0131, 0.0115], [0.4508, 0.2267, 0.1464, 0.0224, 0.0175, 0.0175, 0.0047, 0.0044], [0.9964, 0.0036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 391, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", "?"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", " ", "\u200b"], [",", ".", "\u2013", "\u2026", "\u2026.", ";", " \u2013", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "\ufffd\ufffd", " Blowjob", "\u54e5\u534e", "\u683c\u91cc\u62c9", "-------------</", "+-+-+-+-"], [",", ".", "  ", ".@", "[\"@", ":@", "\uff1a\u201c", " "], [",", ".", " \u200b\u200b", ":", "\u00a0\u00a0", "\uff1a\u201c", "  ", "\u2026."], [".", "  \n", "@\"", ":\"", ".\"", ".\u201d", "\uff1a\"", ",\""], ["@\"", ":\"", "[\"@", ":@", ".", " *@", "(@", "  \r\n"], [".", ",", "@\"", " *@", "[\"@", ",\u201d", ":\"", ".\u201d"], [",", ":", ";", " ", ",\"", ".", ",$", ":\""], [",", " ", ".", ";", ":", "the", " the", "@"], ["iland", " somewhat", " ``", " temporarily", " free", " unusually", " Davis", " Sharon"], [" specialized", " theater", " temporarily", " specialty", " solid", " advanced", " pre", " regional"], [" the", " theater", " mostly", " only", " both", " rapidly", " ", " many"], [" ", " the", " both", " at", " all", " only", " even", " in"], [" both", " the", " more", " one", " many", " even", " much", " just"], [",", " both", " \u2013", " much", " more", " uniquely", " ", " largely"], [" uniquely", " heavily", " typically", " often", " much", " quickly", " largely", " various"], [" uniquely", " much", " heavily", " largely", " arguably", " seemingly", " rapidly", " aggressively"], ["<|endoftext|>", " swiftly", " seemingly", " much", " uniquely", " largely", " heavily", " --"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "<|file_sep|>", "\r\n\r\n", " swiftly", " much"], [" ``", " ``(", " ''", " {{--<", " uniquely", " notably", " rapidly", " heavily"], [" ``", " ''", " rapidly", "``", " ``(", " heavily", " notably", " uniquely"], [" ``", "<|endoftext|>", " much", " both", " rapidly", " ,", " ''", " notably"], [" ``", " --", " rapidly", " much", " heavily", " notably", " ''", " {{--<"], [" ``", " technology", " {{--<", " technologies", " heavily", " rapidly", " hardware", " Chinese"], [" ``", " technology", " technologies", " software", " hardware", " engineering", " digitally", " {{--<"], [" ,", " heavily", " rapidly", " both", " complex", " over", " technology", " much"], [" technology", " technologies", " modern", " heavily", " hardware", " complex", " software", " digital"], [" technology", " technologies", " digital", " modern", " complex", " software", " hardware", " engineering"], [" technology", " modern", " complex", " technologies", " digital", " heavily", " technical", " software"], [" technology", " complex", " modern", " ...", " technical", " technologies", " digital", " **"], [" technology", " complex", " modern", " directly", " heavily", " technical", " using", " high"], [" technology", " technical", " technologies", " complex", " hardware", " technically", " directly", " modern"], [" complex", " technology", " directly", " technically", " heavily", " hardware", " technical", " technologies"], [" complex", " hardware", " \u2026", " native", " traditional", " Native", " technology", " optimized"], [" slow", " inefficient", " slower", " hardware", " optimized", " complex", " performance", " heavily"], [" directly", " complex", " heavily", " software", " optimized", " traditional", " rapidly", " native"], [" inefficient", " hardware", " heavily", " directly", " complex", " bottleneck", " traditional", " rapidly"], [" garbage", " Java", " directly", " CPU", " inefficient", " recycling", " waste", " trash"], [" Java", " garbage", " CPU", " Python", " inefficient", " recycling", " software", " trash"], [" garbage", " Java", " Python", " CPU", " trash", " processing", " recycling", " cleanup"], [" garbage", " Java", " CPU", " Python", " trash", " cleanup", " recycling", " processing"], [" garbage", " Java", " CPU", " Python", " workflows", " cleanup", " trash", " automated"], [" garbage", " workflows", " fragmentation", " cleanup", " Java", " Python", " processing", " trash"], [" garbage", " unpredictable", " Python", " fragmentation", " automated", " interference", " inefficient", " latency"], [" garbage", " intermittent", " Python", " workflows", " interference", " automated", " unavoidable", " synchronization"], [" garbage", " intermittent", " Python", " periodic", " Dual", " automated", " latency", " delays"], [" **", " **+", " **\"", " **'", " **\u201c", " **#", " **-", " **\u20ac"], [" **", " **\"", " **+", " **#", " **'", " **\u201c", "-**", " **-"], [" **", " **\"", " **+", " **#", " **.", " **\u201c", " **'", " **-"], [" **", " **\"", " **+", " **#", " **.", " **\u201c", " **'", " **-"], [" **", " **\"", " **+", " **\u201c", " **#", " **.", " **'", " **\u201e"], [" **", " **+", " **\"", " **#", " **.", " **'", " **\u201c", "-**"], [" **", " synchronization", " **+", " **\"", " **#", " interoper", " framerate", " **."], [" **", " garbage", " **+", " **#", " **\"", " synchronization", " framerate", " interoper"], [" garbage", " GC", " **", "GC", " Gar", " **+", " Unity", " **#"], [" garbage", " **", " GC", " Unity", "GC", " Gar", " **+", "_GC"], [" **", " garbage", " GC", " Unity", "GC", " Gar", " Managed", " Mono"], [" garbage", " Gar", " GC", " Managed", " **", " Unity", "GC", "\u5783\u573e"], [" garbage", " GC", " Gar", " **", " Unity", " hitting", " Managed", "GC"], [" **", " garbage", " **.", " GC", " Gar", " hitting", " the", " Managed"], [" the", " **", " garbage", " hitting", " **.", " Managed", " GC", " you"]], "p": [[0.692, 0.2885, 0.0144, 0.0022, 0.0019, 0.0004, 0.0001, 0.0001], [0.5205, 0.2786, 0.0662, 0.0549, 0.0115, 0.0058, 0.0027, 0.0019], [0.8371, 0.1, 0.0535, 0.0021, 0.0016, 0.0016, 0.0009, 0.0007], [0.005, 0.0029, 0.0014, 0.0014, 0.001, 0.0008, 0.0008, 0.0008], [0.1329, 0.059, 0.0217, 0.018, 0.0169, 0.0149, 0.0149, 0.0149], [0.1851, 0.044, 0.0208, 0.0087, 0.0087, 0.0046, 0.0041, 0.0032], [0.1044, 0.0981, 0.0981, 0.0595, 0.0409, 0.0264, 0.0233, 0.0219], [0.1054, 0.068, 0.0564, 0.0302, 0.0302, 0.025, 0.0221, 0.0162], [0.3139, 0.0618, 0.0375, 0.0331, 0.0214, 0.0214, 0.0189, 0.0189], [0.9239, 0.0016, 0.0008, 0.0008, 0.0008, 0.0007, 0.0006, 0.0006], [0.8768, 0.0495, 0.0319, 0.002, 0.0014, 0.0012, 0.0011, 0.001], [0.0018, 0.0016, 0.0015, 0.0015, 0.0011, 0.001, 0.001, 0.001], [0.005, 0.0039, 0.0027, 0.0022, 0.0022, 0.0018, 0.0018, 0.0017], [0.0072, 0.0041, 0.0034, 0.0034, 0.0032, 0.003, 0.0028, 0.0028], [0.037, 0.0271, 0.0224, 0.0113, 0.0106, 0.0094, 0.0068, 0.0068], [0.0221, 0.0143, 0.0143, 0.0087, 0.0072, 0.0063, 0.0063, 0.0063], [0.0952, 0.0176, 0.0146, 0.0107, 0.0089, 0.0083, 0.0073, 0.0073], [0.0062, 0.0055, 0.0049, 0.0043, 0.004, 0.0038, 0.0033, 0.0031], [0.0145, 0.01, 0.01, 0.0094, 0.0088, 0.0088, 0.0057, 0.005], [0.2786, 0.009, 0.007, 0.0066, 0.0066, 0.0051, 0.0048, 0.0042], [0.9987, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.5122, 0.0029, 0.0025, 0.0025, 0.0024, 0.0022, 0.0022, 0.0022], [0.9195, 0.004, 0.0016, 0.0011, 0.0011, 0.0011, 0.0009, 0.0008], [0.1465, 0.0225, 0.0164, 0.0106, 0.01, 0.0094, 0.0078, 0.0073], [0.19, 0.0147, 0.0129, 0.0121, 0.0095, 0.0089, 0.0078, 0.0069], [0.1042, 0.0124, 0.0103, 0.0091, 0.0086, 0.0075, 0.0049, 0.004], [0.0888, 0.0198, 0.012, 0.0078, 0.0073, 0.0073, 0.0064, 0.0057], [0.0181, 0.016, 0.0117, 0.0117, 0.0103, 0.0091, 0.0086, 0.0081], [0.0709, 0.0404, 0.0168, 0.0168, 0.0158, 0.0149, 0.0116, 0.0116], [0.172, 0.0558, 0.0248, 0.0248, 0.0233, 0.0219, 0.0181, 0.0125], [0.2092, 0.0412, 0.0412, 0.0342, 0.0172, 0.0161, 0.0152, 0.0142], [0.132, 0.0486, 0.0295, 0.0244, 0.0216, 0.0158, 0.0158, 0.0148], [0.0986, 0.0437, 0.032, 0.0194, 0.0133, 0.0133, 0.0104, 0.0104], [0.185, 0.053, 0.0439, 0.0388, 0.0302, 0.0284, 0.0162, 0.0162], [0.0708, 0.043, 0.0261, 0.023, 0.023, 0.023, 0.0179, 0.0149], [0.0469, 0.0414, 0.0365, 0.0222, 0.0173, 0.0152, 0.0152, 0.0134], [0.066, 0.0547, 0.0454, 0.0353, 0.0332, 0.0312, 0.0258, 0.0201], [0.0567, 0.0501, 0.0285, 0.0236, 0.0222, 0.0222, 0.0196, 0.0173], [0.0472, 0.0325, 0.0305, 0.0269, 0.0238, 0.0185, 0.0174, 0.0163], [0.1749, 0.0501, 0.0196, 0.0196, 0.0144, 0.0119, 0.0112, 0.0093], [0.1252, 0.1176, 0.046, 0.0279, 0.0169, 0.0116, 0.0116, 0.0103], [0.2459, 0.1236, 0.085, 0.0549, 0.0276, 0.0167, 0.0157, 0.013], [0.2678, 0.0721, 0.0465, 0.0386, 0.0282, 0.0171, 0.0125, 0.0111], [0.1767, 0.0394, 0.0239, 0.0239, 0.0186, 0.0164, 0.0154, 0.0136], [0.1528, 0.0249, 0.022, 0.0151, 0.0142, 0.0142, 0.0118, 0.0118], [0.1498, 0.0139, 0.0131, 0.0116, 0.0109, 0.0096, 0.0096, 0.009], [0.0546, 0.0157, 0.0122, 0.0122, 0.0108, 0.0101, 0.0095, 0.0095], [0.0386, 0.032, 0.0161, 0.0104, 0.0092, 0.0076, 0.0063, 0.0063], [0.9276, 0.011, 0.011, 0.0097, 0.0031, 0.0031, 0.001, 0.0008], [0.8741, 0.0493, 0.0233, 0.0125, 0.0103, 0.0059, 0.0018, 0.0017], [0.7401, 0.0688, 0.0688, 0.0287, 0.0112, 0.0106, 0.0068, 0.0057], [0.8318, 0.0877, 0.0251, 0.0152, 0.0064, 0.0064, 0.0056, 0.0022], [0.8318, 0.0603, 0.0222, 0.0196, 0.0134, 0.0072, 0.0064, 0.0026], [0.7822, 0.05, 0.0389, 0.0268, 0.0098, 0.0082, 0.0064, 0.0039], [0.528, 0.0557, 0.0491, 0.0298, 0.0192, 0.017, 0.017, 0.0159], [0.5845, 0.1304, 0.0291, 0.0213, 0.0177, 0.0146, 0.0137, 0.0101], [0.4045, 0.278, 0.2165, 0.0138, 0.0122, 0.0095, 0.0058, 0.0037], [0.3885, 0.2356, 0.2079, 0.0281, 0.0193, 0.0171, 0.0091, 0.0041], [0.2993, 0.2641, 0.2331, 0.0757, 0.0246, 0.0102, 0.0096, 0.0058], [0.7497, 0.0615, 0.0479, 0.0423, 0.0423, 0.02, 0.0051, 0.0029], [0.6279, 0.1091, 0.075, 0.075, 0.0243, 0.0148, 0.0122, 0.009], [0.691, 0.1361, 0.0643, 0.0236, 0.0184, 0.0112, 0.0105, 0.0036], [0.8282, 0.068, 0.0195, 0.0134, 0.0126, 0.0063, 0.0063, 0.0043]], "ranks": {}}, {"pos": 392, "top": [[".", ",", "\u2013", " \u2013", ";", "\u00a0", " ", "\u00a0\u00a0"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", " ", ":"], [".", "\u2013", ",", " \u2013", ".\u2013", "\u2026.", ";", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "----------</", "-------------</", "aruhi", " ;;^", "TRGL", " Shemale"], [".", "\u00a0\u00a0", " \u201c.", "  ", " **\u201c", ".cast", " CIF", ","], [".", " \u200b\u200b", "\u00a0\u00a0", ",", " **\u201c", "\u2026.", ":", " **\""], ["   \n", " **\u201c", ".", " **\"", "  \n", " \u200b\u200b", "  \n\n", ".\u201d"], ["   \n", " **\"", " \u200b\u200b", ".", " **\u201e", "  ", " **\u201c", "     \n"], [".", " \u200b\u200b", "   \n", ",", "  \n", "  \n\n", "\u200b\u200b", "!\u201d."], [",", ".", "\u2013", "\u00a0", "\u00a0\u00a0", "\ufffd", ":", " "], [",", ".", "\u00a0", " ", "\u2013", "...", "\u00a0\u00a0", " [\u2026]"], [" ***", " **", " ", " **\"", "  ", " potentially", " lineup", " showcase"], [" impactful", " functionality", " lineup", " showcase", " potentially", " showcased", " performance", " infrastructure"], [" transformative", " showcase", " impactful", " savvy", " priorit", " showcased", " infrastructure", " iconic"], [" \"", " ", " arguably", " potentially", " heavily", " '", " potential", " showcase"], [" showcasing", " potentially", " showcase", " \"", " savvy", " strategically", " sprawling", " potential"], [" potentially", " savvy", " strategically", " priorit", " \"", " overarching", " arguably", " tech"], [" savvy", " potentially", " \u2014", " sprawling", " strategically", " \u201c", " touted", " tech"], [" strategically", " arguably", " \u2014", " \u201c", " savvy", " seemingly", " sprawling", " potentially"], [" \u2014", " arguably", " seemingly", " myriad", " burgeoning", " \u2019", " swiftly", " uniquely"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", " \u2014", " swiftly", " heavily", " seemingly"], [" arguably", " sprawling", " heavily", " ``", " uniquely", " overarching", " strategically", " ultimately"], [" ``", " uniquely", " ''", " arguably", " \u2019", " heavily", " ultimately", " seemingly"], [" ``", " ultimately", " heavily", " uniquely", " \u2019", " seemingly", " arguably", " --"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", " heavily", " seemingly"], [" **", " heavily", " ``", " **'", " infrastructure", " technology", " systems", " hardware"], [" ``", " **", "\n\n", " heavily", " ___", " **'", " infrastructure", " sprawling"], ["\n\n", " \n\n", " heavily", " --", " complex", " '", " ultimately", " **"], [" complex", " heavily", " **", " technology", " infrastructure", " systems", " \n\n", " hardware"], [" **", " ___", " _____", " ______", " ____", " \n\n", " **\u201c", " complex"], [" **", " ___", " ...", " complex", " _____", " ______", " \n\n", " technology"], [" **", " complex", " ___", " heavily", " \\\"", " \u201c", " technology", " '"], [" complex", " heavily", " \"", " \u201c", " **", " over", " ,", " system"], [" **\u201c", " **", " complex", " \u201c", " technology", " \u2014", " heavily", " tech"], [" **\u201c", " **", " **\"", " \u201c", " \"**", " leveraging", " *\u201c", " inherently"], [" **\u201c", " \u201c", " \u2014", " **", " **\"", " *\u201c", " leveraging", " *"], [" **\u201c", " \u201c", " traditional", " leveraging", " **\"", " \u2014", " hardware", " \"**"], [" \u201c", " traditional", " **\u201c", " optimized", " dual", " hardware", " leveraging", " inherently"], [" \u201c", " traditional", " **\u201c", " dual", " performance", " hardware", " leveraging", " optimized"], [" traditional", " \u201c", " dual", " performance", " leveraging", " hybrid", " complex", " optimized"], [" performance", " traditional", " software", " dual", " hardware", " reliance", " infrastructure", " optimized"], [" performance", " infrastructure", " traditional", " software", " optimized", " hardware", " workflow", " bottleneck"], [" performance", " traditional", " infrastructure", " transition", " transitioning", " hardware", " bottleneck", " software"], [" performance", " traditional", " bottleneck", " transition", " infrastructure", " system", " transitioning", " workflow"], [" traditional", " performance", " bottleneck", " dual", " system", " reliance", " workflow", " transition"], [" traditional", " dual", " reliance", " bottleneck", " performance", " transition", " integration", " hybrid"], [" traditional", " bottleneck", " transition", " interoper", " reliance", " workflow", " dual", " seamless"], [" traditional", " Traditional", " dual", " transition", " standard", " conventional", " bottleneck", " hybrid"], [" **", " **+", " **\"", " **'", " **#", " **\u201c", " **\u2018", " **\u20ac"], [" **", " **\"", " **+", " **#", " **\u201c", " **'", " **\u20ac", " **-"], [" **", " **\"", " **+", " **\u201c", " **#", " **'", " **\u201e", " **."], [" **", " **\"", " **#", " **+", " **\u201c", " **'", " **.", " **\u201e"], [" **", " **\"", " **\u201c", " **+", " **#", " **\u201e", " combination", " bottleneck"], [" **", " **\"", " **+", " **#", " bottleneck", " synchronization", " **\u201c", " combination"], [" combination", " Combination", "combination", " synchronization", " **", " combo", " bottleneck", " interaction"], [" combination", " Combination", "combination", " **", " bottleneck", " interaction", " **+", " combo"], [" combination", " **", " garbage", " Combination", "combination", " **+", " bottleneck", " **\""], [" combination", " **", " garbage", " Combination", "combination", " bottleneck", " **+", " interaction"], [" combination", " interaction", " garbage", " **", " bottleneck", " Interaction", " Combination", "combination"], [" garbage", " Managed", " interaction", " combination", " **", " Interaction", " bottleneck", " GC"], [" garbage", " GC", " **", " interaction", " Managed", " combination", " bottleneck", " Gar"], [" **", " garbage", " GC", " **.", " combination", " Managed", " interaction", " **\""], [" **", " Managed", " garbage", " combination", " GC", " interaction", " managed", " **."]], "p": [[0.7931, 0.2005, 0.0017, 0.0017, 0.0015, 0.0003, 0.0002, 0.0002], [0.318, 0.2477, 0.1702, 0.1702, 0.0149, 0.0043, 0.0026, 0.0014], [0.3495, 0.3084, 0.3084, 0.0253, 0.0016, 0.0016, 0.0014, 0.0009], [0.0111, 0.0092, 0.0032, 0.0026, 0.0023, 0.0021, 0.0019, 0.0018], [0.0156, 0.0073, 0.0045, 0.0037, 0.0033, 0.0033, 0.0025, 0.0025], [0.1753, 0.1753, 0.0197, 0.0197, 0.0105, 0.0082, 0.0041, 0.0039], [0.1497, 0.1321, 0.1095, 0.1095, 0.0908, 0.0624, 0.0158, 0.0148], [0.3355, 0.1159, 0.0903, 0.0201, 0.0167, 0.0147, 0.0147, 0.0101], [0.8865, 0.0567, 0.0105, 0.0077, 0.0041, 0.0039, 0.0025, 0.0019], [0.9815, 0.0062, 0.0048, 0.0031, 0.0009, 0.0003, 0.0003, 0.0003], [0.6585, 0.2422, 0.0612, 0.0225, 0.0035, 0.0027, 0.0017, 0.0014], [0.0169, 0.0149, 0.014, 0.009, 0.0048, 0.0031, 0.0023, 0.0021], [0.0052, 0.0045, 0.0033, 0.0033, 0.0026, 0.0023, 0.0023, 0.0023], [0.0029, 0.0027, 0.0027, 0.0024, 0.0022, 0.0021, 0.002, 0.002], [0.0352, 0.0166, 0.0058, 0.0058, 0.0048, 0.0048, 0.0045, 0.0042], [0.0104, 0.0086, 0.0086, 0.0076, 0.0059, 0.0052, 0.0049, 0.0043], [0.0189, 0.0138, 0.0084, 0.0079, 0.0061, 0.0061, 0.0061, 0.0058], [0.0304, 0.0105, 0.0099, 0.0099, 0.0082, 0.0072, 0.0064, 0.0064], [0.0199, 0.0187, 0.0187, 0.0155, 0.0145, 0.0137, 0.0106, 0.0106], [0.0467, 0.0301, 0.0266, 0.0161, 0.0142, 0.0134, 0.0118, 0.0111], [0.974, 0.0048, 0.0035, 0.0007, 0.0006, 0.0002, 0.0002, 0.0002], [0.0098, 0.0081, 0.0076, 0.0059, 0.0056, 0.0049, 0.0041, 0.0038], [0.0733, 0.0106, 0.0099, 0.0093, 0.0082, 0.0073, 0.0068, 0.0057], [0.0178, 0.013, 0.0084, 0.0084, 0.0062, 0.0058, 0.0054, 0.0054], [0.3992, 0.0948, 0.0508, 0.0165, 0.0121, 0.0106, 0.0047, 0.0037], [0.0412, 0.0152, 0.0134, 0.0126, 0.0111, 0.0104, 0.0076, 0.0063], [0.023, 0.0191, 0.0168, 0.0149, 0.0102, 0.0085, 0.0085, 0.0066], [0.0715, 0.0408, 0.028, 0.0132, 0.0124, 0.011, 0.0091, 0.0091], [0.0443, 0.0367, 0.0286, 0.0237, 0.0185, 0.0153, 0.0144, 0.0135], [0.2979, 0.2629, 0.0486, 0.0457, 0.0429, 0.0245, 0.023, 0.0109], [0.4564, 0.0899, 0.0658, 0.0274, 0.0166, 0.0166, 0.0138, 0.0129], [0.1414, 0.0489, 0.018, 0.018, 0.014, 0.0102, 0.008, 0.008], [0.0293, 0.0167, 0.0157, 0.0139, 0.0139, 0.0139, 0.0101, 0.0074], [0.0701, 0.0658, 0.0425, 0.0399, 0.0274, 0.0258, 0.0228, 0.0166], [0.5284, 0.081, 0.0434, 0.028, 0.011, 0.0103, 0.0097, 0.0085], [0.3884, 0.1724, 0.0634, 0.03, 0.0141, 0.011, 0.0097, 0.0091], [0.1765, 0.1463, 0.0326, 0.0224, 0.0224, 0.0211, 0.0198, 0.0186], [0.303, 0.0635, 0.0265, 0.0206, 0.0182, 0.0182, 0.0171, 0.0133], [0.1324, 0.0588, 0.0295, 0.0245, 0.0179, 0.0168, 0.0131, 0.0109], [0.0663, 0.0585, 0.0333, 0.0259, 0.0139, 0.013, 0.013, 0.013], [0.0573, 0.0573, 0.0211, 0.0175, 0.0164, 0.0145, 0.0136, 0.0136], [0.1198, 0.0285, 0.0236, 0.0208, 0.0184, 0.0184, 0.0152, 0.0143], [0.0639, 0.0321, 0.025, 0.0172, 0.0134, 0.0134, 0.0126, 0.0111], [0.0819, 0.0321, 0.0207, 0.0183, 0.0152, 0.0126, 0.0104, 0.0098], [0.0512, 0.0375, 0.0166, 0.0138, 0.0138, 0.013, 0.0114, 0.0114], [0.0505, 0.0239, 0.0211, 0.0211, 0.0164, 0.0136, 0.0093, 0.0088], [0.0374, 0.0351, 0.0213, 0.02, 0.02, 0.0146, 0.0137, 0.0114], [0.1251, 0.0521, 0.0337, 0.0279, 0.0204, 0.018, 0.0159, 0.014], [0.9192, 0.0216, 0.0123, 0.0085, 0.0051, 0.0048, 0.0011, 0.0011], [0.8218, 0.0764, 0.0409, 0.0219, 0.0133, 0.0103, 0.0014, 0.0014], [0.5269, 0.1711, 0.1176, 0.0555, 0.0555, 0.0097, 0.0055, 0.0049], [0.5122, 0.3107, 0.054, 0.0476, 0.0289, 0.0083, 0.005, 0.0044], [0.3946, 0.3073, 0.1281, 0.0416, 0.0367, 0.0153, 0.0093, 0.0072], [0.3481, 0.1645, 0.113, 0.088, 0.0534, 0.0367, 0.0324, 0.0286], [0.8955, 0.0306, 0.027, 0.0053, 0.0047, 0.0041, 0.0037, 0.0032], [0.8503, 0.0374, 0.033, 0.0137, 0.0083, 0.0057, 0.0051, 0.0039], [0.6835, 0.072, 0.0437, 0.0386, 0.0386, 0.0234, 0.0182, 0.0052], [0.5676, 0.087, 0.0678, 0.0249, 0.022, 0.022, 0.0194, 0.0151], [0.4887, 0.109, 0.0661, 0.0584, 0.0515, 0.0243, 0.0189, 0.0189], [0.3336, 0.2598, 0.0843, 0.0744, 0.0512, 0.0398, 0.0129, 0.0129], [0.3687, 0.1356, 0.1356, 0.0823, 0.0726, 0.0565, 0.0119, 0.0105], [0.7652, 0.0554, 0.0262, 0.0262, 0.0204, 0.0204, 0.018, 0.0043], [0.2456, 0.1912, 0.0903, 0.0903, 0.0903, 0.0621, 0.0484, 0.0228]], "ranks": {}}, {"pos": 393, "top": [["s", "**.", " \u2013", "**\u2013", "**,", " **\u2013", "**:", " **"], ["s", " **", "**\u2013", " **\u2013", "**,", "**.", "-**", "\u2026**"], ["**\u2013", "\u2026**", " **\u2013", "s", "**.", " **", "**\u3002", "\u2019**"], [" **", "\u300d**", " **\u00ab", "\u2019**", "\uff1f**", ">**", " **\u300c", " **:"], [" **", "-**", ">**", "s", " **.", "**", "**.", " **#"], [" **", "-**", " **.", "**.", ">**", "(**", "\u2019**", " **#"], [" **", "**", "\u300d**", "-**", "\u2019**", " **\u00ab", ">**", "**."], [" **", "**", " **\u00ab", "-**", "\u300d**", ">**", " **#", "**."], [" **", "**", " **\u00ab", "\u300d**", " **#", "**.", ">**", " **."], [" **", " **\u00ab", "s", "-**", " **#", ">**", "\u300d**", "**"], [" **", "**", "s", "...**", " **#", "-**", " **\u00ab", ">**"], [" **", " **\u00ab", " **#", "-**", "\u300d**", ">**", " **.", "**"], [" **", " **\u00ab", "-**", "\u300d**", " **#", " **.", "**", " **\u300c"], [" **", " **\u00ab", "-**", "\u300d**", " **#", " **+", " **'", " **."], [" **", " **\u00ab", " \"**", "**", " **#", "s", "-**", "\u300d**"], [" **", "-**", " **\u00ab", "\u300d**", " \"**", "**", ">**", " **#"], [" **", "**", "-**", ">**", " **#", " **\u00ab", " \"**", "**-"], [" **", "**", "-**", ">**", " **\u00ab", "**-", "\u2019**", " **#"], [" **", "**", "-**", " **.", "\u2019**", " **\u00ab", ">**", "**-"], [" **", "**", "\u2019**", "...**", "\u201d**", "**.", ">**", "-**"], [" **", "**", "**\u3002", ">**", "...**", "\u201d**", "**.", "\u2019**"], [" **", "**", "\u300d**", ">**", "\u2019**", "\u201d**", " **'", " **#"], [" **", "**", "\u300d**", ">**", "\u2019**", " **'", "\u201d**", " **#"], [" **", "**", " **'", "\u300d**", ">**", "...**", "\u2019**", "s"], [" **", "**", " \n\n", "...**", " **'", "\u2019**", "\r\n\r\n", "\u2026**"], [" **", "**", "...**", " **'", ">**", " **#", " **\u3010", "\u2019**"], [" **", "**", "...**", " **'", ">**", " **#", "\u2019**", " **."], [" **", " **'", " \n\n", "**", " **#", "...**", " **.", " **\u2018"], [" **", "**", " **'", " \n\n", "...**", " **.", " **\u201c", " **#"], [" **", "**", " \n\n", "...**", "\u2026**", " **.", " **\u201c", " **'"], [" **", "**", " **.", " \n\n", "**.", " **'", " **\u201c", "  \n\n"], [" **", "**", " \n\n", " **.", " **'", "**.", " **\u201c", "  \n\n"], [" **", "**", " **.", "**.", " **\u201c", " **'", " .**", " **\""], [" **", "**", "\u2026**", " **\u201c", "!**", "\u201d**", ">**", "\u2019**"], [" **", "**", " **\u201c", "!**", "\u201d**", ">**", "\u2026**", "**:"], [" **", "\u2026**", "**", "!**", " **\u201c", "**\u2014", "\u201d**", "\u2019**"], [" **", "**", "!**", " **\u201c", "\u2026**", "%**", "\u201d**", ">**"], [" **", "**", " **\u201c", "\u2011", "!**", "\u2026**", "\u201d**", "?**"], [" **", " bottleneck", " hardware", "\u2011", " **\u201c", " latency", " performance", " infrastructure"], [" **", " latency", " bottleneck", " synchronization", " hardware", "!**", " coordination", " workflow"], [" bottleneck", " latency", " **", " workflow", " framerate", " speed", " performance", " synchronization"], [" bottleneck", " latency", " workflow", " throughput", " synchronization", " hardware", " framerate", " workflows"], [" latency", " bottleneck", " workflow", " **", " synchronization", " throughput", " workflows", " processing"], [" bottleneck", " workflow", " latency", " workflows", " synchronization", " throughput", " processing", " hardware"], [" **", " bottleneck", " workflow", " latency", " synchronization", " workflows", " throughput", " fragmentation"], [" bottleneck", " **", " synchronization", " workflow", " latency", " infrastructure", " coordination", " transition"], [" bottleneck", " synchronization", " workflow", " **", " latency", "!**", " transition", " Transition"], [" **", "**", "**-", "!**", " **+", "-**", ">**", " **#"], [" synchronization", " bottleneck", " **", "**-", "!**", "**", ";**", "**."], [" synchronization", " bottleneck", " Dual", " Interface", " latency", " framerate", " interoper", " Transition"], ["!**", " synchronization", ">**", "**!", ";**", "\uff01**", "**-", " bottleneck"], [" synchronization", " Interface", " Runtime", " bottleneck", " framerate", " latency", " interoper", " interface"], [" synchronization", " Runtime", " bottleneck", " latency", " framerate", " Performance", " Interface", " Pipeline"], [" synchronization", " Runtime", " latency", " Pipeline", " bottleneck", " framerate", " CPU", " Interface"], [" synchronization", " Runtime", " Pipeline", " latency", " Memory", " CPU", " framerate", " bottleneck"], [" garbage", " Memory", " Runtime", " GPU", " synchronization", " CPU", " framerate", " Renderer"], [" garbage", " GC", " Graphics", " Gar", " Rendering", "\u5783\u573e", " GPU", " Renderer"], [" GC", " garbage", " Rendering", " Graphics", " Renderer", " GPU", " renderer", " Memory"], [" GC", " Rendering", " garbage", " Memory", " Graphics", " Renderer", "GC", " renderer"], [" GC", " garbage", " Managed", " Rendering", " Gar", "GC", " Memory", " Renderer"], [" GC", " garbage", " Gar", "GC", " GPU", " Managed", " JIT", " Rendering"], [" GC", " garbage", "GC", " Gar", " Frame", " Managed", " GPU", " JIT"], ["GC", "Gar", " GC", "Managed", " Gar", " Managed", "GPU", "Java"]], "p": [[0.9985, 0.0007, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.6341, 0.2059, 0.0316, 0.0316, 0.0217, 0.0191, 0.0062, 0.0062], [0.3236, 0.2856, 0.1529, 0.1051, 0.0496, 0.0207, 0.0125, 0.0076], [0.303, 0.1263, 0.0766, 0.056, 0.0495, 0.0385, 0.0362, 0.034], [0.8625, 0.0203, 0.0158, 0.0139, 0.0139, 0.0096, 0.0096, 0.0085], [0.9239, 0.0279, 0.0055, 0.0043, 0.0043, 0.0043, 0.0033, 0.0029], [0.9638, 0.0137, 0.0027, 0.0027, 0.0021, 0.0019, 0.0019, 0.0013], [0.9571, 0.0073, 0.0064, 0.0057, 0.0044, 0.003, 0.0027, 0.0013], [0.9302, 0.015, 0.0091, 0.008, 0.0043, 0.0038, 0.003, 0.0026], [0.9646, 0.0051, 0.0045, 0.0039, 0.0035, 0.0035, 0.0027, 0.0027], [0.9905, 0.004, 0.0032, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001], [0.9969, 0.001, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9918, 0.0046, 0.0006, 0.0004, 0.0003, 0.0003, 0.0003, 0.0003], [0.9774, 0.0139, 0.0015, 0.0008, 0.0008, 0.0005, 0.0005, 0.0005], [0.999, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9972, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9972, 0.0012, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9814, 0.0124, 0.0019, 0.0006, 0.0006, 0.0004, 0.0003, 0.0002], [0.9703, 0.0178, 0.0024, 0.0009, 0.0009, 0.0009, 0.0008, 0.0007], [0.9391, 0.053, 0.0014, 0.001, 0.0009, 0.0007, 0.0006, 0.0005], [0.8714, 0.1179, 0.0015, 0.0013, 0.0012, 0.0012, 0.0007, 0.0006], [0.9807, 0.0035, 0.0028, 0.0019, 0.0019, 0.0011, 0.001, 0.0008], [0.9904, 0.0046, 0.0009, 0.0007, 0.0006, 0.0004, 0.0003, 0.0003], [0.9931, 0.0032, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9423, 0.0322, 0.0134, 0.0034, 0.0008, 0.0007, 0.0006, 0.0006], [0.9954, 0.0017, 0.0009, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [0.997, 0.0013, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.999, 0.0003, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9967, 0.0025, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9969, 0.0019, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9973, 0.0015, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9955, 0.0009, 0.0007, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001], [0.9931, 0.0009, 0.0006, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9807, 0.0066, 0.0019, 0.0017, 0.0007, 0.0006, 0.0005, 0.0004], [0.9719, 0.0157, 0.0027, 0.0015, 0.0008, 0.0007, 0.0006, 0.0004], [0.6554, 0.1139, 0.1139, 0.0198, 0.0136, 0.0078, 0.0073, 0.0053], [0.8569, 0.0401, 0.0089, 0.0074, 0.0051, 0.004, 0.004, 0.0033], [0.854, 0.0352, 0.0084, 0.0069, 0.0054, 0.0051, 0.0045, 0.0042], [0.6971, 0.0106, 0.0106, 0.0093, 0.0082, 0.0057, 0.0053, 0.0053], [0.4888, 0.0294, 0.0259, 0.0108, 0.0084, 0.0079, 0.007, 0.0065], [0.1087, 0.0959, 0.0659, 0.0292, 0.0275, 0.0201, 0.0201, 0.0177], [0.122, 0.1011, 0.0613, 0.0328, 0.0308, 0.024, 0.0226, 0.0226], [0.1024, 0.0797, 0.0583, 0.0515, 0.0454, 0.0377, 0.0228, 0.0167], [0.1295, 0.0836, 0.0651, 0.0395, 0.0371, 0.0271, 0.0165, 0.0165], [0.1836, 0.0719, 0.0635, 0.0436, 0.0265, 0.0248, 0.0151, 0.0133], [0.0938, 0.0605, 0.0416, 0.0391, 0.0345, 0.0127, 0.0119, 0.0119], [0.1221, 0.0654, 0.0478, 0.0329, 0.0256, 0.0187, 0.0137, 0.0129], [0.7303, 0.0467, 0.0283, 0.0142, 0.0134, 0.0126, 0.0092, 0.0092], [0.0801, 0.0664, 0.0456, 0.0334, 0.0314, 0.0179, 0.0158, 0.0148], [0.1476, 0.0841, 0.0291, 0.02, 0.0176, 0.0146, 0.0146, 0.0137], [0.0681, 0.0601, 0.0388, 0.0302, 0.0267, 0.025, 0.0221, 0.0221], [0.2711, 0.088, 0.0286, 0.0223, 0.0209, 0.0144, 0.0135, 0.0105], [0.1662, 0.0947, 0.0947, 0.0574, 0.0289, 0.0187, 0.0165, 0.0145], [0.1369, 0.0884, 0.0647, 0.0571, 0.0571, 0.0536, 0.0197, 0.0185], [0.1643, 0.0826, 0.0442, 0.0415, 0.039, 0.0304, 0.0285, 0.0252], [0.3169, 0.1166, 0.0551, 0.0379, 0.0356, 0.0334, 0.023, 0.0168], [0.5203, 0.3156, 0.0202, 0.0202, 0.0157, 0.0139, 0.0139, 0.0095], [0.2822, 0.2198, 0.0916, 0.0808, 0.0713, 0.0713, 0.0337, 0.014], [0.5188, 0.0902, 0.0702, 0.062, 0.0483, 0.0483, 0.0228, 0.0138], [0.5289, 0.2205, 0.0492, 0.0434, 0.0298, 0.0263, 0.0181, 0.011], [0.8592, 0.0705, 0.0229, 0.0202, 0.0066, 0.0031, 0.0014, 0.0014], [0.8005, 0.0512, 0.0452, 0.031, 0.0147, 0.0065, 0.0057, 0.0042], [0.8013, 0.0512, 0.0352, 0.0138, 0.0107, 0.0079, 0.0079, 0.0061]], "ranks": {}}, {"pos": 394, "top": [[".", " \u2013", "[", ",", "\u2013", "@", "\"", " "], [" [@", "\u200b\u200b", "@[", "ship", " \ufffd", " \u2013,", "@g", "@\","], ["\u2013and", "\u200b\u200b", "\u2013", ".", "\u00ad", "\"", ".\u2013", "["], [" **\u300c", "itage", "ogar", "ibaldi", "odar", "riors", " \uff62", "enticate"], [" \n\n\n", "undi", " \n\n\n\n\n", "@(", "bage", "itage", " \ufffd", "ner"], [" \n\n\n", " \n\n\n\n\n", "undi", "bage", "shit", "avar", "na", "ner"], [" \n\n\n", " \ufffd", " #@", " ......", "@(", " \n\n\n\n\n", "metic", "bage"], [" \n\n\n", " \ufffd", " #@", "tridge", "itage", "ibaldi", " \uff62", "ner"], [" \n\n\n", " \ufffd", " #@", " \n\n", " ......", " \n    \n", " \n\n\n\n\n", "itage"], [" \ufffd", " \n\n\n", " #@", "itage", "ibaldi", "ner", "bage", "\u00a2"], [" \ufffd", " \n\n\n", " #@", "\u00a2", " ......", "\ufffd", "<|fim_suffix|>", "@("], ["iginal", "itage", "<|fim_suffix|>", "ibaldi", "ogar", "metic", "trash", "tridge"], ["itage", "trash", "iginal", "ogar", "riors", "metic", "ibaldi", "tridge"], ["trash", "itage", "metic", "bage", "iginal", "tridge", "riors", "<|fim_suffix|>"], [" \ufffd", "trash", " \n\n\n", "metic", "<|fim_suffix|>", "\ufffd", "ish", "phone"], [" \ufffd", "itage", "metic", "bage", "-&", "ish", " &#", "\ufffd"], [" \ufffd", "lo", "rr", "bage", "\u00a0", "ish", "ot", "w"], ["bage", "trash", "itage", "lo", "lock", "phone", "metic", "og"], ["bage", "trash", "-&", "&quot", "\"&", "ug", "metic", "phone"], ["-&", "bage", "trash", "&quot", "\"&", " &#", "og", " %#"], ["<|endoftext|>", "-&", "G", "@", " \n\n\n", "bage", "H", "trash"], ["trash", "bage", "&quot", "shit", " %#", "ogar", "GED", "htag"], ["bage", "trash", "&quot", " %#", "<|fim_suffix|>", "ware", "GED", " Gabrie"], ["bage", "&quot", " \ufffd", " &#", "oom", "trash", "-&", "<|fim_suffix|>"], ["bage", "&quot", "<|fim_suffix|>", "trash", "Heap", "GED", "dead", " &#"], ["bage", "trash", "<|fim_suffix|>", "dead", "Heap", "ware", "GED", "ocide"], ["bage", "ware", "dead", "trash", "<|fim_suffix|>", "Heap", "-death", "GED"], [" \n\n", " \ufffd", "bage", " \n\n\n", " `", " dead", "ware", " @"], ["bage", "ware", " garbage", "avar", "dead", "trash", " *@", "Heap"], ["bage", " garbage", "ware", " \n", " \n    \n", " ****", " trash", " dead"], [" **,", " **", " **:", " **.", " **-", "bage", "**", " \n    \n"], [" **", " Ghost", " **,", " garbage", " dead", "ware", " ghost", " **-"], [" Ghost", " dead", "ware", " *@", " garbage", " catastrophic", " dumping", "bage"], ["bage", "_heap", "Fuck", "shit", "ystore", "fuck", " HEAP", "ware"], ["bage", "*&", "ystore", "<|object_ref_end|>", "trash", "!**", "_heap", "_chunk"], ["<|object_ref_end|>", "**\u2013", "*\u201d", "bage", "**\u201d", "!**", "*&", "\u2026**"], ["*\u201d", "bage", "*&", "**\u2013", "**\u201d", "<|object_ref_end|>", "_heap", "ptime"], ["bage", "*\u201d", "ptime", "*&", "ynchronously", "Optimizer", "\u2661", "**\u2013"], ["bage", "_HEAP", " garbage", "\u5783\u573e", "_heap", "ptime", "Optimizer", "trash"], ["\u5783\u573e", " garbage", "trash", "\u5783\u573e\u5904\u7406", "bage", " Cleanup", "_HEAP", "_heap"], ["\u5783\u573e", " garbage", "bage", " Cleanup", "\u5783\u573e\u5904\u7406", "_HEAP", "trash", " cleanup"], [" garbage", "\u5783\u573e", "bage", " Cleanup", " cleanup", "\u5783\u573e\u5904\u7406", "trash", "_HEAP"], [" garbage", "bage", "\u5783\u573e", " Cleanup", "\u5783\u573e\u5904\u7406", " cleanup", "_HEAP", "trash"], ["bage", " Cleanup", " garbage", "\u5783\u573e", " cleanup", " Algorithm", "_HEAP", " Heap"], ["bage", " Cleanup", " garbage", " cleanup", "\u5783\u573e", "\u5783\u573e\u5904\u7406", " Ambient", " fragmentation"], ["bage", " garbage", " Cleanup", "_HEAP", " Ambient", " Heap", " Reactive", " cleanup"], ["bage", " Cleanup", " Ambient", " Teixe", " Lifecycle", " garbage", " Debt", "_HEAP"], [" Ambient", " Cleanup", "bage", " Lifecycle", " Debt", "-trigger", " Reactive", " Destructor"], ["bage", " Ambient", " Cleanup", " Destructor", " Lifecycle", "-trigger", " Debt", "\u001b["], ["bage", " Teixe", " Cleanup", " Ambient", ";**", " Destructor", "loat", " Heap"], ["bage", " Cleanup", ";**", " Ambient", " Teixe", " Heap", "\u5783\u573e", "loat"], ["bage", " Cleanup", "!**", ";**", "(G", " Heap", " Ambient", " Runtime"], ["bage", " Cleanup", " Heap", "(G", "Heap", ";**", "\u5783\u573e", " Lifecycle"], ["bage", "(G", " Cleanup", " Heap", "\u5783\u573e", "GC", ";**", "Heap"], ["GC", "bage", " GC", " Gar", "Gar", " Heap", " garbage", "\u5783\u573e"], [" garbage", "bage", "\u5783\u573e", " Gar", "Gar", " GC", "GC", "\u56de\u6536"], [" GC", "GC", " garbage", "\u5783\u573e", " Gar", "Gar", "gc", "(gc"], [" GC", "GC", " garbage", " Gar", "(gc", "\u5783\u573e", "gc", "Gar"], [" GC", "GC", " collector", " Collector", " Gar", "Collector", "\u6536\u96c6", "collector"], [" garbage", " GC", " Gar", "GC", "bage", "\u5783\u573e", "Gar", " collector"], ["bage", " garbage", " Gar", " collector", " GC", " Collector", "GC", "\u5783\u573e"], ["bage", " Collector", " GC", " Gar", " collector", " garbage", "GC", "Collector"], ["bage", " Collector", "GC", " collector", " GC", "Collector", "age", " Collection"]], "p": [[0.3938, 0.0501, 0.0304, 0.0252, 0.0222, 0.0222, 0.0184, 0.0143], [0.1038, 0.0297, 0.0232, 0.014, 0.0132, 0.0124, 0.0109, 0.0097], [0.0703, 0.0228, 0.0214, 0.0189, 0.013, 0.0101, 0.0089, 0.0084], [0.0194, 0.0183, 0.0118, 0.0111, 0.0081, 0.0059, 0.0056, 0.0049], [0.0567, 0.0366, 0.0344, 0.0196, 0.0105, 0.0087, 0.0087, 0.0064], [0.0942, 0.0369, 0.0224, 0.0164, 0.0053, 0.005, 0.005, 0.0047], [0.0853, 0.0664, 0.0108, 0.0108, 0.0096, 0.007, 0.007, 0.0066], [0.0595, 0.0595, 0.0219, 0.0097, 0.0091, 0.0076, 0.0055, 0.0055], [0.3141, 0.0331, 0.0147, 0.0138, 0.0138, 0.0138, 0.0089, 0.0061], [0.0876, 0.0389, 0.0208, 0.0126, 0.0092, 0.0087, 0.0077, 0.0077], [0.1853, 0.1196, 0.0388, 0.0105, 0.0098, 0.0072, 0.0072, 0.0063], [0.0146, 0.0137, 0.0088, 0.0078, 0.0073, 0.0065, 0.0061, 0.0061], [0.0125, 0.011, 0.0086, 0.0071, 0.0059, 0.0055, 0.0052, 0.0049], [0.0241, 0.0156, 0.0114, 0.0061, 0.0057, 0.0054, 0.0051, 0.0048], [0.1607, 0.0091, 0.0071, 0.0066, 0.0066, 0.0059, 0.0052, 0.0049], [0.1095, 0.007, 0.0062, 0.0058, 0.0055, 0.0055, 0.0048, 0.0048], [0.0465, 0.0161, 0.0091, 0.0081, 0.0071, 0.0071, 0.0071, 0.0059], [0.024, 0.0107, 0.0083, 0.0065, 0.0054, 0.0054, 0.0044, 0.0042], [0.0307, 0.0224, 0.0128, 0.0113, 0.0083, 0.0047, 0.0047, 0.0044], [0.0263, 0.0181, 0.017, 0.0062, 0.0055, 0.004, 0.0038, 0.0036], [0.0189, 0.0138, 0.013, 0.0122, 0.0107, 0.0089, 0.0074, 0.0061], [0.0542, 0.0397, 0.0094, 0.0037, 0.0035, 0.0035, 0.0027, 0.0027], [0.063, 0.0337, 0.0232, 0.0071, 0.0029, 0.0029, 0.0029, 0.0026], [0.0144, 0.0136, 0.0077, 0.0068, 0.0039, 0.003, 0.0028, 0.0025], [0.0295, 0.0108, 0.0096, 0.0062, 0.0027, 0.0026, 0.0026, 0.0026], [0.0679, 0.0134, 0.0067, 0.0049, 0.0041, 0.0038, 0.0038, 0.0038], [0.0726, 0.0087, 0.006, 0.0049, 0.0041, 0.0041, 0.0036, 0.0034], [0.0588, 0.0179, 0.0149, 0.008, 0.0075, 0.0048, 0.0038, 0.0033], [0.0727, 0.0087, 0.0068, 0.0064, 0.0049, 0.0044, 0.0039, 0.003], [0.0275, 0.0178, 0.0084, 0.0084, 0.0061, 0.0058, 0.0058, 0.0054], [0.0446, 0.0419, 0.0394, 0.0307, 0.0239, 0.0145, 0.0128, 0.012], [0.0164, 0.0154, 0.0144, 0.012, 0.0077, 0.0053, 0.005, 0.0047], [0.0086, 0.0059, 0.0049, 0.0046, 0.0046, 0.0043, 0.0041, 0.0034], [0.0089, 0.0045, 0.0035, 0.0035, 0.0035, 0.0031, 0.0029, 0.0029], [0.0063, 0.0036, 0.0034, 0.0032, 0.0028, 0.0026, 0.0025, 0.0025], [0.01, 0.0083, 0.0061, 0.0061, 0.0051, 0.0047, 0.0047, 0.0039], [0.0108, 0.0079, 0.0058, 0.0045, 0.0042, 0.0037, 0.0029, 0.0029], [0.0097, 0.0071, 0.0049, 0.004, 0.0036, 0.0036, 0.0033, 0.0031], [0.0201, 0.0084, 0.0079, 0.007, 0.007, 0.0061, 0.0045, 0.004], [0.228, 0.1299, 0.0509, 0.0422, 0.0256, 0.0146, 0.0137, 0.0088], [0.2122, 0.1136, 0.0445, 0.0306, 0.027, 0.021, 0.0174, 0.0154], [0.1238, 0.1092, 0.0516, 0.0485, 0.0428, 0.0259, 0.0178, 0.0148], [0.1204, 0.0778, 0.0534, 0.0367, 0.0237, 0.0223, 0.0185, 0.0144], [0.0681, 0.0498, 0.0364, 0.0235, 0.0118, 0.0111, 0.0104, 0.0092], [0.0449, 0.0421, 0.0328, 0.0107, 0.0078, 0.0065, 0.0065, 0.0065], [0.029, 0.0212, 0.0199, 0.0114, 0.0083, 0.0061, 0.005, 0.005], [0.0162, 0.0143, 0.0143, 0.0076, 0.0067, 0.0067, 0.0059, 0.0052], [0.0258, 0.0201, 0.0157, 0.0115, 0.0079, 0.007, 0.0061, 0.0058], [0.0131, 0.0123, 0.0123, 0.0075, 0.007, 0.0055, 0.0051, 0.0043], [0.0384, 0.011, 0.0103, 0.0091, 0.008, 0.0063, 0.0055, 0.0052], [0.1536, 0.0284, 0.0143, 0.0092, 0.0072, 0.0072, 0.0063, 0.0053], [0.0799, 0.0585, 0.019, 0.0178, 0.0139, 0.0123, 0.0051, 0.0048], [0.1891, 0.0309, 0.024, 0.0114, 0.0083, 0.0078, 0.0078, 0.0057], [0.1432, 0.0527, 0.0282, 0.0282, 0.0092, 0.0092, 0.0081, 0.0081], [0.2553, 0.1548, 0.1206, 0.0939, 0.0829, 0.0503, 0.0503, 0.0325], [0.3678, 0.2865, 0.2231, 0.0498, 0.0302, 0.0126, 0.0087, 0.0059], [0.6992, 0.227, 0.0506, 0.01, 0.0078, 0.002, 0.0009, 0.0008], [0.6659, 0.3146, 0.0065, 0.0035, 0.0021, 0.0019, 0.0015, 0.001], [0.6616, 0.2434, 0.0373, 0.0156, 0.0073, 0.0073, 0.0065, 0.0051], [0.4975, 0.1615, 0.111, 0.0763, 0.0673, 0.0463, 0.015, 0.0063], [0.6882, 0.174, 0.0565, 0.0235, 0.0208, 0.0111, 0.0076, 0.006], [0.9328, 0.0133, 0.0117, 0.0104, 0.0104, 0.0067, 0.0067, 0.0017], [0.9942, 0.0013, 0.0011, 0.0008, 0.0006, 0.0003, 0.0002, 0.0001]], "ranks": {}}, {"pos": 395, "top": [["i", "a", "o", "e", ".", ",", "\u2026.", "\u2026"], ["i", "iho", "ihi", "i\u00e9e", "a", "o", "\u064a", "\u0629"], ["i", "\u2026", ".", "\u2026.", "\u2026\u201d", "a", ",", "\u2026,"], ["iht", "\uff3f\uff3f", "iago", "\r\r\n", "iop", "iems", "iho", "\u4ec0\u9ebd"], ["i", "bage", "iho", "ihi", "a", "!!!", " garbage", " *****"], ["bage", "i", " garbage", " crap", "ihi", " trash", "\u064a", "iht"], ["i", " trash", "bage", " crap", " garbage", " $$$", "iht", " *****"], [" trash", " crap", " garbage", " junk", "bage", " #%", " ___", "i"], [" \n\n", "\n\n", " trash", " garbage", "...\u201d", "\r\n\r\n", " crap", " #%"], [" trash", " garbage", "bage", " junk", " crap", " #%", " $$$", " booze"], [" garbage", " trash", "bage", "...", " #%", " junk", " crap", " ___"], [" trash", " garbage", " junk", "bage", "-trash", " **#", " crap", "trash"], [" trash", " garbage", " junk", "bage", " crap", "-trash", " Trash", "trash"], [" trash", " garbage", " junk", " crap", " dumping", "bage", " dump", "dump"], [" trash", " garbage", "i", " dumping", " \n\n", "...", " dump", " crap"], ["i", "&amp", " trash", " garbage", " dumping", " Chuck", " Big", "\u00c3"], ["i", "...", " trash", " garbage", "\u00a0", "\u2026", " \n\n", "&amp"], ["...", " \n\n", " trash", " garbage", "&amp", "  \n\n", " crap", "\u2026"], [" trash", " garbage", "&amp", "bage", "...", "dump", "...\u201d", " crap"], [" \n\n", "&amp", " trash", "\n\n", " garbage", "  \n\n", "bage", " &#"], [" \n\n", "<|endoftext|>", "\n\n", "  \n\n", " \n\n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>"], [" trash", " garbage", "trash", "bage", "Dump", " junk", " Trash", "-trash"], [" trash", " garbage", "bage", "Dump", " junk", "trash", " #%", " stuff"], [" ...", " garbage", "<|endoftext|>", " trash", " stuff", " #", " &#", " dead"], [" garbage", " \n\n", " trash", "bage", " stuff", " ...", "\n\n", " dead"], [" garbage", " trash", "bage", " junk", " stuff", " zombie", " dead", "heap"], [" garbage", " trash", " zombie", " dead", " destruction", " stuff", " junk", " death"], ["\n\n", " ,", " garbage", " \n\n", " dead", " ...", " and", " -"], [" garbage", " trash", " dead", " stuff", " destruction", " death", " Ghost", "\n\n"], [" garbage", " trash", " ...", " \n", " stuff", " dead", " cleanup", " destruction"], [" garbage", " trash", " ...", " stuff", " cleanup", " \n", " junk", " zombie"], [" garbage", " ...", " trash", " stuff", " destruction", " Ghost", " cleanup", " dead"], [" garbage", " stuff", " trash", " dead", " Ghost", " destruction", " huge", " Dead"], [" garbage", " trash", "fuck", "stuff", "Fuck", "trash", "bage", " stuff"], [" trash", " garbage", "<|object_ref_end|>", "trash", "Fuck", "fuck", "\u2026*", "dump"], [" garbage", "\u2026*", " trash", "trash", "<|object_ref_end|>", "Fuck", "fuck", "*\u201d"], [" garbage", " trash", " scav", "trash", "fuck", "Fuck", "lemetry", "bage"], [" garbage", " trash", " scav", "bage", "lemetry", " optimizations", " Trash", " CPU"], [" garbage", " trash", " scav", "\u5783\u573e", " Trash", "bage", " cleanup", "trash"], [" garbage", " trash", "\u5783\u573e", " scav", " Trash", "trash", " cleanup", "-trash"], [" garbage", " trash", "\u5783\u573e", " scav", " Trash", " cleanup", "trash", " Cleanup"], [" garbage", " trash", "\u5783\u573e", " cleanup", " scav", " recycling", " Cleanup", " Trash"], [" garbage", " trash", "\u5783\u573e", " cleanup", " Cleanup", " scav", "-trash", " recycling"], [" garbage", "\u5783\u573e", " trash", "bage", " Cleanup", " fragmentation", " Heap", " Trash"], [" garbage", " trash", " fragmentation", "bage", " Cleanup", "\u5783\u573e", " Trash", " Heap"], [" garbage", " trash", " fragmentation", "bage", " scav", "_HEAP", " Heap", " Cleanup"], [" garbage", " trash", " Generated", " Cleanup", "bage", " fragmentation", " accumulation", " Heap"], [" garbage", " Generated", " trash", " Trigger", " Cleanup", " Heap", "-trash", " Trash"], [" Generated", " garbage", "-trigger", "bage", "-trash", " Generating", "-Free", "\u5783\u573e"], ["bage", " Generated", " Heap", "-trigger", "-Free", "-trash", " garbage", "_HEAP"], ["bage", "(G", " (**", " Cleanup", "\uff08", "-clean", "\u5783\u573e", " Heap"], ["(G", " Cleanup", "bage", " Heap", "-clean", " Generated", "Heap", "\u5783\u573e"], ["(G", "\uff08", " Heap", " Cleanup", "Heap", "\u5783\u573e", "bage", " garbage"], ["(G", " Heap", "bage", " garbage", "Heap", "\u5783\u573e", " Cleanup", "\uff08"], [" GC", "GC", " garbage", "\u5783\u573e", " Heap", "(G", "_gc", "(gc"], [" garbage", "\u5783\u573e", " GC", "GC", " Gar", " trash", " Trash", "(gc"], [" GC", "GC", " garbage", "\u5783\u573e", "(gc", "_gc", "gc", " Gar"], [" GC", "GC", "(gc", "_gc", "gc", " gc", " garbage", "_GC"], [" GC", "GC", " collector", " Collector", "Collector", "(gc", "collector", "gc"], [" GC", "GC", " collector", " Collector", "Collector", " allocator", "collector", " Allocation"], [" collector", " Collector", " GC", " Generation", "collector", "Collector", " allocator", " collection"], [" collector", " Collector", " Collection", " GC", "Collector", " Generation", " Pause", " Allocation"], [" Collector", " Collection", " collector", " Generation", " Allocation", " Generator", " Col", " GC"]], "p": [[0.6085, 0.1743, 0.1743, 0.0162, 0.0134, 0.0036, 0.001, 0.0006], [0.5721, 0.0196, 0.0162, 0.0162, 0.0135, 0.0126, 0.0112, 0.0087], [0.535, 0.1737, 0.082, 0.0564, 0.0388, 0.0221, 0.0126, 0.0098], [0.0141, 0.0124, 0.0085, 0.0085, 0.008, 0.0075, 0.0071, 0.0067], [0.5284, 0.0218, 0.016, 0.0124, 0.008, 0.0075, 0.0075, 0.0062], [0.0586, 0.0586, 0.0403, 0.0148, 0.0123, 0.0123, 0.007, 0.0048], [0.1029, 0.0551, 0.0551, 0.0378, 0.0334, 0.0295, 0.0179, 0.0123], [0.09, 0.0546, 0.0546, 0.0425, 0.0352, 0.0156, 0.0138, 0.013], [0.0777, 0.0568, 0.0568, 0.0501, 0.039, 0.0367, 0.0304, 0.0268], [0.0934, 0.0934, 0.0344, 0.0303, 0.0222, 0.0143, 0.0105, 0.0082], [0.0649, 0.0649, 0.0419, 0.0348, 0.0211, 0.0186, 0.0175, 0.0175], [0.0655, 0.0373, 0.0226, 0.0213, 0.01, 0.0083, 0.0074, 0.0065], [0.1031, 0.0755, 0.0179, 0.0158, 0.0131, 0.0109, 0.0075, 0.007], [0.1507, 0.1036, 0.0217, 0.0204, 0.014, 0.0132, 0.0124, 0.0075], [0.044, 0.0389, 0.0172, 0.0152, 0.0143, 0.0143, 0.0111, 0.0077], [0.0303, 0.0162, 0.0152, 0.0111, 0.0063, 0.006, 0.0056, 0.0046], [0.0574, 0.0539, 0.0198, 0.0154, 0.0136, 0.0128, 0.0113, 0.0106], [0.127, 0.0439, 0.0302, 0.0195, 0.0134, 0.0134, 0.0126, 0.0104], [0.0869, 0.0677, 0.0495, 0.022, 0.0206, 0.0161, 0.0151, 0.0151], [0.2344, 0.0672, 0.036, 0.0263, 0.0218, 0.0192, 0.015, 0.0141], [0.5593, 0.2058, 0.1816, 0.0217, 0.008, 0.0035, 0.0024, 0.0018], [0.1027, 0.0585, 0.0276, 0.0229, 0.0179, 0.0179, 0.009, 0.0084], [0.1519, 0.1183, 0.0299, 0.0206, 0.0125, 0.011, 0.008, 0.008], [0.1162, 0.0313, 0.0229, 0.0139, 0.009, 0.009, 0.0079, 0.0058], [0.0975, 0.0713, 0.0382, 0.015, 0.0132, 0.0116, 0.0097, 0.008], [0.2533, 0.0726, 0.0126, 0.0087, 0.0081, 0.0068, 0.0068, 0.0063], [0.2264, 0.0446, 0.0113, 0.0106, 0.0077, 0.0077, 0.0064, 0.0057], [0.0478, 0.0272, 0.0212, 0.0212, 0.0137, 0.0078, 0.0065, 0.0061], [0.1093, 0.0276, 0.0168, 0.0102, 0.0074, 0.0062, 0.0058, 0.0054], [0.1514, 0.0593, 0.0557, 0.0263, 0.016, 0.0097, 0.0075, 0.0062], [0.1952, 0.0814, 0.0193, 0.0182, 0.0103, 0.0081, 0.0067, 0.0059], [0.104, 0.0359, 0.0232, 0.0159, 0.0091, 0.0085, 0.0071, 0.0071], [0.0599, 0.0266, 0.0235, 0.0111, 0.0086, 0.0076, 0.0056, 0.0052], [0.033, 0.02, 0.0089, 0.0061, 0.0057, 0.0051, 0.0042, 0.0042], [0.0194, 0.0171, 0.0104, 0.0081, 0.0067, 0.0067, 0.0063, 0.0052], [0.0176, 0.0155, 0.0121, 0.0083, 0.0078, 0.0073, 0.0073, 0.0054], [0.0276, 0.0259, 0.009, 0.0079, 0.0051, 0.0048, 0.0042, 0.0042], [0.0571, 0.0224, 0.0127, 0.0073, 0.0047, 0.0044, 0.0044, 0.0044], [0.5491, 0.048, 0.033, 0.0121, 0.0074, 0.0057, 0.0054, 0.0048], [0.7328, 0.1124, 0.0388, 0.0208, 0.0134, 0.0105, 0.0056, 0.0044], [0.7132, 0.1094, 0.055, 0.0115, 0.0102, 0.009, 0.0051, 0.0042], [0.731, 0.0873, 0.0364, 0.0162, 0.0111, 0.0092, 0.0067, 0.0059], [0.6579, 0.0786, 0.0395, 0.0155, 0.012, 0.0106, 0.01, 0.01], [0.3972, 0.0538, 0.0505, 0.0224, 0.0175, 0.0154, 0.0154, 0.0106], [0.4165, 0.0529, 0.0235, 0.0207, 0.0183, 0.0126, 0.0126, 0.0111], [0.3759, 0.0328, 0.0272, 0.0165, 0.0129, 0.0114, 0.0107, 0.0094], [0.207, 0.0263, 0.015, 0.0132, 0.0132, 0.0132, 0.0103, 0.0103], [0.1198, 0.0441, 0.0196, 0.0173, 0.0162, 0.0162, 0.0143, 0.0119], [0.0404, 0.0295, 0.023, 0.0203, 0.0168, 0.0131, 0.0131, 0.0116], [0.0301, 0.025, 0.0235, 0.022, 0.0152, 0.0152, 0.0152, 0.0142], [0.081, 0.0761, 0.0232, 0.0205, 0.0181, 0.016, 0.015, 0.015], [0.1782, 0.0273, 0.02, 0.0166, 0.0107, 0.0078, 0.0074, 0.0065], [0.107, 0.0506, 0.0326, 0.0239, 0.0198, 0.0154, 0.0145, 0.0128], [0.2468, 0.0379, 0.0277, 0.0277, 0.0216, 0.019, 0.0168, 0.0131], [0.4863, 0.295, 0.0746, 0.0214, 0.0214, 0.0189, 0.0114, 0.0089], [0.6494, 0.2707, 0.047, 0.0135, 0.0044, 0.0027, 0.0018, 0.0013], [0.7853, 0.1986, 0.0112, 0.0015, 0.0009, 0.0008, 0.0005, 0.0005], [0.7015, 0.2924, 0.0022, 0.0008, 0.0008, 0.0007, 0.0006, 0.0003], [0.7155, 0.2632, 0.009, 0.0033, 0.002, 0.0018, 0.0014, 0.0007], [0.5461, 0.1564, 0.1564, 0.0448, 0.0212, 0.0165, 0.0088, 0.0088], [0.76, 0.1165, 0.0229, 0.0139, 0.0108, 0.0108, 0.0075, 0.0075], [0.4422, 0.4422, 0.0183, 0.0151, 0.0125, 0.0098, 0.0092, 0.0081], [0.6353, 0.3401, 0.0043, 0.0043, 0.0033, 0.0029, 0.0013, 0.0011]], "ranks": {}}, {"pos": 396, "top": [[".", ",", " ", ";", ":", "\u00a0\u00a0", "[", " \u2013"], [".", "  \n\n", ",", "  \n", " Stre", " \u200b\u200b", " \u2013", " House"], [",", ".", ";", "\u2026", ":", "[", "\u2013", "?"], ["'gc", " Blowjob", " GC", "\u52a0\u62ff\u5927", " Strec", " Castillo", " Huffman", ".gc"], [".", ",", " (\\", " GC", "  \n\n", " \\(", ":", " "], [" GC", ".", ",", " (\\", " \\(", " Retrie", " Job", " \"."], ["  \n\n", "  \n", ".", " GC", " .", ".\"", " \n\n", " ["], [" GC", "  \n\n", ".", " \n\n", "  \n", " .", " garbage", " &"], [" \n\n", ".", "  \n\n", " GC", " &", " .", ".\\\"", " ()."], [",", ".", ".\\", " GC", "\\.", " \"", ".$", "\\xc"], [".", " .", "...", ".\\", ".\"", " \"", " [", "\\."], [" garbage", " processes", " GC", " .", " Collection", " algorithms", " process", " Ward"], [" processes", " .", " process", " GC", " garbage", " Ward", " \"", " system"], [" \"", ",", " processes", " ", " (\"", " process", " GC", " system"], [" \"", " ", ",", " ,", " and", " (", " .", " at"], [" \"", " ", " ,", ",", " &", " in", " once", " and"], [",", " \"", " ", " \u2013", " (\"", "...", " (", " ,"], [",", " \"", " (\"", "...", " \u2013", " [...]", " GC", " \"..."], [" [...]", " \"", "...", " ...", " (...)", " (\"", " GC", " &"], [" &", "<|endoftext|>", " [...]", " \"", " GC", " \n\n", " (\"", " \u2014"], ["<|endoftext|>", " \n\n", "  \n\n", " [...]", " \"", " \n\n\n", " ,", " &"], [" GC", " garbage", " \\\"", " **", ".gc", " )**", " &", "edik"], [" GC", " ...", " ,", " &", " garbage", " \\\"", " process", " ."], [" ,", " &", " .", " ...", " and", " \"", " over", " --"], [" ,", " ...", " and", " .", " &", " GC", " heavily", " _"], [" ,", " ...", " .", " and", " systems", " \n\n", " processes", " **"], [" ,", " and", " .", " systems", " system", " processes", " process", " :"], [" ,", " and", " .", " over", " ...", " \n", " \n\n", " at"], [" ...", " ,", " \n\n", " .", " \n", " and", "\n\n", " over"], [" ...", " \n", " ,", " \n\n", " .", " **", "...", " __"], [" ...", " \n", " \n\n", " **", " .", " ,", "...", " __"], [" ...", " .", " ,", " \n", " **", " and", " \n\n", " during"], [" ,", " .", " and", " ...", " (", " heavily", " /", " \n"], [" \u2013", " heavily", " \u2014", " \n\n", " systems", " catastrophic", " technology", " system"], [" heavily", " catastrophic", " \n\n", " ...", " [...]", " (\u201c", " (", " \u2014"], [" [...]", " (\u201c", " ...", " \u2026", " \u2014", " (\"", " \u2013", " ["], [" (\u201c", " \u2014", " CPU", " downtime", " (\"", " \n\n", " slowdown", " \u2013"], [" downtime", " CPU", " (\u201c", " (\"", " delays", " interference", " slowdown", " ("], [" downtime", " CPU", " garbage", " delays", " (", " slowdown", " (\u201c", " interference"], [" garbage", " downtime", " scav", " CPU", " delays", " cleanup", " slowdown", " (\u201c"], [" garbage", " downtime", " CPU", " delays", " cleanup", " slowdown", " scav", " delay"], [" garbage", " downtime", " CPU", " cleanup", " delays", " shutdown", " interruptions", " latency"], [" downtime", " garbage", " interruptions", " CPU", " delays", " shutdown", " cleanup", " interference"], [" interruptions", " downtime", " interference", " periodic", " unpredictable", " CPU", " shutdown", " garbage"], [" interruptions", " interference", " unpredictable", " downtime", " delays", " shutdown", " disruptions", " spikes"], [" interruptions", " unpredictable", " interference", " delays", " disruptions", " spikes", " downtime", " disruption"], [" interruptions", " unpredictable", " interference", " spikes", " bursts", " cycles", " intermittent", " delays"], [" interruptions", " cycles", " intermittent", " bursts", " unpredictable", " spikes", " interference", " periodic"], [" interruptions", " cycles", " spikes", " triggers", " bursts", " unpredictable", " intermittent", "-trigger"], [" (", " (_", " (~", " (__", " (**", " interruptions", " (>", " (\""], [" (", " (_", " (`", " (.", " (\"", " (${", " (>", " (@"], [" (", " (_", "(G", " (@", " (\"", "\uff08", " (`", " (/"], [" (", " (_", "\uff08", " downtime", " bottleneck", " (`", " interruptions", " (\u201c"], [" (", "(G", " (_", "\uff08", " bottleneck", " spikes", " (@", " downtime"], [" (", " GC", "(G", "\uff08", " latency", " bottleneck", " (@", "GC"], [" GC", " (", "(G", " garbage", "\uff08", " latency", "GC", "-induced"], [" (", " GC", "GC", "(G", "\uff08", " garbage", " latency", " pauses"], [" (", " GC", " latency", "GC", "(G", "\uff08", " pauses", " garbage"], [" (", " GC", " latency", "GC", "(G", " pauses", " garbage", "\uff08"], [" (", " latency", " pauses", " GC", "GC", "(G", " spikes", " pause"], [" (", " pauses", " latency", " pause", "(G", " GC", "-induced", " induced"], [" (", " pauses", " pause", " GC", "-induced", " latency", " Pause", " induced"], [" (", " pauses", " **(", " GC", " pause", " Pause", "(G", " latency"]], "p": [[0.8546, 0.1157, 0.0061, 0.0026, 0.001, 0.0009, 0.0009, 0.0008], [0.0216, 0.0203, 0.0148, 0.0131, 0.0075, 0.0075, 0.0058, 0.0048], [0.6193, 0.3756, 0.0029, 0.0006, 0.0004, 0.0003, 0.0002, 0.0001], [0.0033, 0.0029, 0.0029, 0.0025, 0.0025, 0.0017, 0.0015, 0.0014], [0.0311, 0.0274, 0.0258, 0.0138, 0.0122, 0.0074, 0.0069, 0.0065], [0.0125, 0.0117, 0.0052, 0.0043, 0.0041, 0.0041, 0.0036, 0.003], [0.1475, 0.0952, 0.0397, 0.0373, 0.0329, 0.0155, 0.0137, 0.0129], [0.1244, 0.0379, 0.0203, 0.0203, 0.0131, 0.0116, 0.0085, 0.008], [0.0801, 0.0586, 0.0403, 0.0244, 0.0203, 0.0179, 0.0139, 0.0131], [0.1477, 0.0578, 0.0351, 0.0176, 0.0137, 0.0129, 0.0101, 0.0089], [0.1643, 0.0879, 0.0685, 0.0367, 0.0237, 0.0163, 0.0144, 0.0105], [0.007, 0.0066, 0.0048, 0.0043, 0.0033, 0.0031, 0.0029, 0.0027], [0.0126, 0.0082, 0.0046, 0.0044, 0.0039, 0.0034, 0.003, 0.0026], [0.0154, 0.0106, 0.0082, 0.0082, 0.0056, 0.0044, 0.0041, 0.0036], [0.1, 0.0368, 0.0144, 0.0093, 0.0077, 0.0077, 0.006, 0.0053], [0.0867, 0.0219, 0.011, 0.0104, 0.0067, 0.0055, 0.0052, 0.0049], [0.4327, 0.0907, 0.0148, 0.0123, 0.0102, 0.0051, 0.0037, 0.0027], [0.0828, 0.0223, 0.0174, 0.0135, 0.0087, 0.0082, 0.0053, 0.0028], [0.0858, 0.052, 0.0336, 0.0316, 0.0231, 0.018, 0.0159, 0.0149], [0.0686, 0.0472, 0.0391, 0.0367, 0.0305, 0.0185, 0.0144, 0.0127], [0.9553, 0.037, 0.0013, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.0188, 0.0107, 0.0089, 0.0047, 0.0031, 0.0027, 0.0027, 0.0025], [0.0452, 0.0375, 0.0214, 0.0201, 0.0147, 0.013, 0.0061, 0.0054], [0.3401, 0.0358, 0.0337, 0.0279, 0.0149, 0.0109, 0.0085, 0.0075], [0.1579, 0.0352, 0.0147, 0.0138, 0.0122, 0.0114, 0.0095, 0.0069], [0.1034, 0.0667, 0.0149, 0.014, 0.0131, 0.0131, 0.0123, 0.0123], [0.1891, 0.0309, 0.024, 0.0155, 0.0121, 0.01, 0.0065, 0.0065], [0.4836, 0.0615, 0.0397, 0.0114, 0.01, 0.0083, 0.0065, 0.0054], [0.3586, 0.192, 0.0706, 0.0623, 0.0402, 0.0168, 0.004, 0.004], [0.7706, 0.0763, 0.0205, 0.015, 0.0117, 0.0067, 0.0038, 0.003], [0.875, 0.0559, 0.0151, 0.0103, 0.0052, 0.0028, 0.0028, 0.002], [0.2579, 0.0575, 0.0328, 0.0225, 0.0121, 0.0106, 0.0078, 0.0078], [0.1018, 0.0844, 0.0398, 0.0257, 0.0227, 0.02, 0.0166, 0.0156], [0.0483, 0.0332, 0.0108, 0.0108, 0.0101, 0.0095, 0.0095, 0.0089], [0.0261, 0.0179, 0.0168, 0.0149, 0.0149, 0.014, 0.0123, 0.0096], [0.0534, 0.0471, 0.0286, 0.0286, 0.0237, 0.0209, 0.0209, 0.0135], [0.0629, 0.0262, 0.0204, 0.0192, 0.0192, 0.018, 0.0109, 0.0096], [0.0644, 0.0197, 0.0163, 0.0127, 0.0119, 0.0087, 0.0077, 0.0077], [0.0646, 0.0305, 0.0197, 0.0197, 0.0163, 0.0135, 0.012, 0.0112], [0.2093, 0.0529, 0.0266, 0.025, 0.0221, 0.0195, 0.0111, 0.0092], [0.1252, 0.0916, 0.0359, 0.0316, 0.0262, 0.0204, 0.0132, 0.0103], [0.0901, 0.0795, 0.0453, 0.0376, 0.0311, 0.0157, 0.013, 0.0122], [0.059, 0.059, 0.0358, 0.0297, 0.0262, 0.0262, 0.0191, 0.0169], [0.029, 0.0212, 0.0187, 0.0187, 0.0187, 0.0165, 0.0165, 0.0165], [0.0808, 0.0337, 0.0279, 0.0232, 0.0232, 0.0232, 0.0218, 0.0159], [0.1162, 0.0584, 0.0455, 0.0229, 0.0215, 0.0215, 0.019, 0.0178], [0.0859, 0.0489, 0.0336, 0.0279, 0.0279, 0.0279, 0.0231, 0.0217], [0.0678, 0.0411, 0.0411, 0.0363, 0.0363, 0.0301, 0.0234, 0.0194], [0.0948, 0.0507, 0.0308, 0.0289, 0.0289, 0.0255, 0.0255, 0.0199], [0.4897, 0.1801, 0.0229, 0.019, 0.0178, 0.0123, 0.0115, 0.007], [0.7069, 0.0957, 0.0188, 0.0138, 0.0129, 0.0089, 0.0084, 0.0084], [0.5088, 0.0571, 0.0325, 0.0253, 0.0197, 0.0174, 0.0154, 0.0144], [0.4318, 0.075, 0.0662, 0.0402, 0.0229, 0.0178, 0.0167, 0.0139], [0.6059, 0.0497, 0.0439, 0.0342, 0.0207, 0.0126, 0.0126, 0.0104], [0.3192, 0.1508, 0.1174, 0.049, 0.0262, 0.0217, 0.0192, 0.0169], [0.4037, 0.2161, 0.0701, 0.0482, 0.0425, 0.0375, 0.0331, 0.0201], [0.4856, 0.3782, 0.0512, 0.0352, 0.0213, 0.0147, 0.0014, 0.0011], [0.4668, 0.3208, 0.0919, 0.0492, 0.0232, 0.016, 0.0097, 0.0052], [0.5334, 0.2519, 0.0722, 0.0496, 0.0341, 0.0161, 0.0086, 0.0086], [0.8419, 0.0475, 0.0475, 0.0288, 0.0057, 0.005, 0.0044, 0.0032], [0.896, 0.0649, 0.0088, 0.0088, 0.0047, 0.0041, 0.0029, 0.0017], [0.6953, 0.1758, 0.0444, 0.0164, 0.0144, 0.0127, 0.0099, 0.0064], [0.9975, 0.0009, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 397, "top": [[" \u2013", "\u2013", ".", ",", "s", ";", "o", "y"], [" \u2013", "\u2013", "s", "\u2013and", "\u2013\u2013", ",", "\u2011", " \u2013,"], ["\u2013", " \u2013", ",", ".\u2013", ".", "\u2013and", "\u2026", "\u2026.."], ["\uff0a\uff0a\uff0a\uff0a", "auff", "eits", "ielle", "alement", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\u064a\u062f\u064a", "erdale"], ["auf", "i\u010d", "\u064a\u062f\u064a", "a", "e", "\u2026\u2026", "auss", "aat"], ["auf", "i\u010d", "\u064a\u062f\u064a", ".\u2013", "aik", " \u200b\u200b", "aat", "\u064a\u0648\u0646"], ["\u2026\u2026", " [\u2026]", "i\u010d", "a\u00e7\u00e3o", " \ufffd", "aat", " \u2026", ".\u201d"], ["i\u010d", "crap", "\u064a\u064b\u0627", "a\u00e7\u00e3o", "aat", "ielle", "\u064a\u062f\u064a", "cps"], ["i\u010d", " [\u2026]", "i\u0161", " \u200b\u200b", "a\u00e7\u00e3o", " \ufffd", " ......", "erator"], [" [\u2026]", "\u2013", "i\u010d", "\u2013and", " \u2013", ",", "\u2013\u2013", " [\u2026"], [" [\u2026]", "o", " \ufffd", "a", " \u2013", " [...]", " &", "e"], ["i\u010d", " impactful", "&eacute", "i\u0161", "a\u00e7\u00e3o", "ielle", "erator", "a\u00e7\u00f5es"], [" impactful", "i\u010d", "erator", "a\u00e7\u00f5es", "a\u00e7\u00e3o", "acon", "iest", "ois"], [" impactful", "i\u010d", "acon", "aq", "aft", "a\u00e7\u00f5es", " \u2013", "aire"], [" impactful", " \u2013", " priorit", "i\u010d", "aq", "aft", "oire", " iconic"], [" \u2013", "a", " \u201c", "o", "e", " \u2018", " impactful", "s"], [" \u2013", "o", "a", "e", "s", "\u2013", "i", " [\u2026]"], [" \u2013", "o", "a", " impactful", "\u2013", "e", "-esque", " [\u2026]"], [" impactful", " incredibly", "a", "o", "-esque", " arguably", "aq", "acon"], [" arguably", "a", " incredibly", " impactful", "o", " overwhelmingly", " \u2013", "e"], ["<|endoftext|>", "a", " arguably", " --", " @", " ultimately", " incredibly", " heavily"], [" impactful", " incredibly", " skyrocket", " arguably", "oire", " impact", " overwhelmingly", " impacting"], [" --", " arguably", " ,", " incredibly", " ultimately", " heavily", " over", " impact"], [" ,", " --", " ultimately", " over", "<|endoftext|>", " fully", " long", " arguably"], ["\n\n", " \n\n", " --", "\r\n\r\n", " arguably", " \r\n\r\n", " heavily", " incredibly"], [" heavily", " incredibly", " **", " \n\n", " arguably", " --", " ,", " massively"], ["\n\n", " \n\n", "<|endoftext|>", " heavily", " @", " ,", "\r\n\r\n", " incredibly"], ["\n\n", " \n\n", " ,", "<|endoftext|>", " heavily", " @", "  \n\n", " --"], ["\n\n", " \n\n", " heavily", " @", " arguably", " incredibly", " massively", " complex"], [" ...", " \n\n", " ______", " **", "\n\n", " heavily", " ____", " [...]"], [" ,", " ...", " **", " heavily", " .", " over", " long", " @"], [" ,", " @", " ...", " heavily", " over", " -", " long", " high"], [" heavily", " massively", " incredibly", " extremely", " ,", " high", " long", " \u2013"], [" massively", " heavily", " tech", " incredibly", " meticulously", " leveraging", " workflows", " overclock"], [" meticulously", " priorit", " leveraging", " heavily", " massively", " tech", " incredibly", " optimized"], [" [\u2026]", " \u2026", " optimized", " overclock", "<|endoftext|>", " meticulously", " optimization", " hardware"], [" optimized", " optimization", " optimizations", " overclock", " hardware", "optimized", " workflows", " aggressively"], [" optimized", " optimization", " optimizations", " overclock", " workflows", " Optimization", " Avoid", " hardware"], [" optimized", " optimization", " optimizations", " workflows", " overclock", " strict", " Optimization", " hardware"], [" optimized", " optimization", " optimizations", " workflows", " overclock", " strict", " avoidance", " JIT"], [" optimized", " optimization", " optimizations", " overclock", " workflows", " avoidance", " Optimization", " hardware"], [" optimized", " optimization", " optimizations", " workflows", " avoidance", " overclock", " CPU", " optimizing"], [" avoidance", " optimized", " workflows", " optimization", " Avoid", " optimizations", " strict", " overclock"], [" avoidance", " workflows", " optimized", " optimization", " strict", " Avoid", " optimizations", "avoid"], [" avoidance", " workflows", " optimized", " strict", " optimization", " optimizations", "\u4e25\u683c\u63a7\u5236", " Avoid"], [" avoidance", " strict", " workflows", " Zero", " optimized", "\u4e25\u683c\u63a7\u5236", " ZERO", " static"], [" avoidance", " ZERO", " Zero", " strict", " workflows", "\u4e25\u7981", " meticulously", " optimized"], [" ZERO", " avoidance", " Zero", "\u4e25\u7981", " workflows", " strict", " MUST", " JIT"], ["\u4e25\u7981", " ZERO", "-zero", " Zero", "\u4e25\u683c\u63a7\u5236", "\u7981\u6b62", " workflows", " avoidance"], [" RNG", " JIT", " CPU", " PTSD", " RTX", " CVE", "\u4e0b\u79f0", "++)"], ["**)", "())", " RNG", "+)", ")**", " JIT", "++)", " ())"], [" GPU", " CPU", " RNG", " JIT", "**)", " JVM", " GUI", " GC"], ["**)", " CPU", ")**", " JIT", " GC", "++)", " )**", " RNG"], ["**)", " CPU", " JIT", ")**", " runtime", "runtime", " GC", "])**"], [" GC", "GC", " garbage", "\u5783\u573e", " allocations", "alloc", " JIT", " runtime"], [" GC", "GC", " garbage", "\u5783\u573e", "_GC", "gc", " gc", "(gc"], [" GC", "GC", " garbage", "gc", " gc", "_GC", "(gc", "_gc"], [" GC", "GC", "gc", " gc", "_GC", "_gc", "(gc", ".gc"], [" GC", "GC", "gc", " gc", "_GC", "_gc", "(gc", ".gc"], [" GC", "GC", "gc", " gc", " allocations", "_GC", " allocation", "_gc"], [" GC", "GC", " gc", " allocations", "gc", "_GC", " allocation", " Allocation"], [" GC", "GC", "gc", " gc", " allocations", " allocation", "_GC", " Allocation"], ["GC", " GC", "gc", "GB", "G", "_GC", " gc", "Alloc"]], "p": [[0.8962, 0.0394, 0.0348, 0.0211, 0.0042, 0.0009, 0.0008, 0.0007], [0.8903, 0.0938, 0.0013, 0.0011, 0.0009, 0.0006, 0.0004, 0.0003], [0.9237, 0.0406, 0.0279, 0.0026, 0.0014, 0.0012, 0.001, 0.0003], [0.0093, 0.0077, 0.0064, 0.006, 0.0047, 0.0044, 0.0039, 0.0036], [0.1005, 0.0649, 0.0307, 0.0224, 0.0224, 0.0198, 0.0175, 0.0154], [0.0326, 0.027, 0.027, 0.012, 0.012, 0.0106, 0.01, 0.0093], [0.0668, 0.0405, 0.0358, 0.0246, 0.018, 0.0159, 0.014, 0.0109], [0.2286, 0.0188, 0.0146, 0.01, 0.0094, 0.0078, 0.0073, 0.0065], [0.1853, 0.0499, 0.0183, 0.0183, 0.0118, 0.0092, 0.0087, 0.006], [0.208, 0.1113, 0.0526, 0.0133, 0.0097, 0.0059, 0.0059, 0.0049], [0.6077, 0.0875, 0.0641, 0.0303, 0.0303, 0.0195, 0.0092, 0.0087], [0.0319, 0.0086, 0.0059, 0.0052, 0.0046, 0.0041, 0.0034, 0.0032], [0.0962, 0.0259, 0.0084, 0.0054, 0.0048, 0.0045, 0.0033, 0.0033], [0.0813, 0.0219, 0.0071, 0.0059, 0.0049, 0.0043, 0.0043, 0.0043], [0.2402, 0.0732, 0.0135, 0.0127, 0.0087, 0.0064, 0.006, 0.0056], [0.442, 0.0598, 0.0466, 0.0438, 0.0386, 0.0249, 0.0194, 0.0161], [0.3255, 0.1057, 0.1057, 0.0566, 0.0303, 0.0162, 0.0077, 0.0063], [0.129, 0.1212, 0.0944, 0.0446, 0.0254, 0.0164, 0.006, 0.0057], [0.1106, 0.0192, 0.0159, 0.015, 0.0132, 0.0085, 0.008, 0.0066], [0.036, 0.0338, 0.0298, 0.0141, 0.0124, 0.0075, 0.0075, 0.0059], [0.2724, 0.0369, 0.0144, 0.0106, 0.0106, 0.0068, 0.0064, 0.0064], [0.024, 0.0155, 0.0137, 0.01, 0.0057, 0.005, 0.0039, 0.0032], [0.03, 0.0171, 0.0151, 0.0125, 0.0117, 0.0081, 0.0067, 0.0063], [0.0449, 0.0165, 0.0146, 0.0137, 0.0121, 0.0094, 0.0088, 0.0083], [0.1718, 0.1338, 0.0298, 0.017, 0.016, 0.015, 0.0117, 0.0103], [0.0349, 0.0349, 0.0165, 0.0165, 0.0165, 0.0137, 0.0088, 0.0083], [0.3858, 0.0809, 0.0279, 0.0204, 0.0132, 0.0103, 0.0091, 0.0071], [0.5281, 0.1825, 0.017, 0.015, 0.0103, 0.0097, 0.0043, 0.004], [0.1154, 0.1018, 0.0481, 0.02, 0.0156, 0.0129, 0.0084, 0.0078], [0.0894, 0.0789, 0.0422, 0.0422, 0.0397, 0.0309, 0.0273, 0.0187], [0.1092, 0.075, 0.0294, 0.0259, 0.019, 0.0167, 0.013, 0.0122], [0.0827, 0.0345, 0.0324, 0.0286, 0.0209, 0.0163, 0.0127, 0.0119], [0.0746, 0.0275, 0.0201, 0.013, 0.0114, 0.0114, 0.0108, 0.0108], [0.0371, 0.0349, 0.024, 0.0225, 0.0137, 0.0128, 0.012, 0.012], [0.0372, 0.0328, 0.029, 0.024, 0.0226, 0.0212, 0.0155, 0.0146], [0.08, 0.0355, 0.0334, 0.0244, 0.0215, 0.0158, 0.0148, 0.0131], [0.18, 0.075, 0.0428, 0.0354, 0.0202, 0.0148, 0.0123, 0.0095], [0.1234, 0.0797, 0.0401, 0.0228, 0.0228, 0.0189, 0.0167, 0.0157], [0.126, 0.0922, 0.0525, 0.0361, 0.0248, 0.0125, 0.0117, 0.011], [0.0713, 0.0556, 0.0359, 0.0297, 0.0192, 0.0109, 0.0103, 0.0097], [0.1354, 0.0772, 0.0725, 0.0284, 0.0267, 0.0251, 0.0118, 0.0118], [0.1014, 0.0742, 0.045, 0.0423, 0.0309, 0.0241, 0.0146, 0.0107], [0.1589, 0.0549, 0.0333, 0.0313, 0.0259, 0.0202, 0.0202, 0.0157], [0.1873, 0.0504, 0.0504, 0.0287, 0.027, 0.0254, 0.0164, 0.0164], [0.1107, 0.0593, 0.0557, 0.0434, 0.028, 0.0132, 0.011, 0.0091], [0.0836, 0.054, 0.0272, 0.0145, 0.0128, 0.0106, 0.0106, 0.0094], [0.0694, 0.0694, 0.0328, 0.0308, 0.0165, 0.0155, 0.0106, 0.0088], [0.0252, 0.0252, 0.0173, 0.0135, 0.0127, 0.0077, 0.0053, 0.0047], [0.0139, 0.0074, 0.0074, 0.0066, 0.0062, 0.0058, 0.0048, 0.0048], [0.022, 0.0086, 0.0072, 0.0063, 0.0052, 0.0049, 0.0046, 0.0034], [0.0326, 0.0306, 0.0288, 0.0198, 0.0186, 0.0145, 0.0145, 0.012], [0.0361, 0.0319, 0.0233, 0.0193, 0.0193, 0.0171, 0.0133, 0.0103], [0.1578, 0.0512, 0.0452, 0.0311, 0.0274, 0.0189, 0.0189, 0.0189], [0.1521, 0.0494, 0.0436, 0.0361, 0.0248, 0.0193, 0.0182, 0.0171], [0.6137, 0.1369, 0.1066, 0.027, 0.0185, 0.0185, 0.0077, 0.0077], [0.8877, 0.106, 0.0047, 0.0007, 0.0003, 0.0002, 0.0002, 0.0001], [0.9042, 0.0953, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8516, 0.148, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9045, 0.0953, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9043, 0.0953, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9623, 0.0373, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9231, 0.0758, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9703, 0.0293, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 398, "top": [["s", "  \n", " (\u201e", ".", "   \n", " McCoy", "schild", "\ufffd"], [" \\\"", "s", " (\u201e", "   \n", "schild", "  \n", "  \n\n", ":\\\""], [":\\\"", ",\\\"", "\\\"", " \\\"", "(\\\"", " (\u201e", "s", "{\\\""], [" \\\"", " \\\"%", " \\\"{", " \\\"\"", " \\\"$", " Shemale", "\\\"\\", " '\\\""], [" GC", " \\\"", " \\\"%", " gc", " \\\"$", ":\\\"", " \\\"\"", " ***"], [" GC", " gc", ".gc", "avanaugh", "GC", " CRC", "(gc", " \")"], [" GC", " _____", " ____", "s", " gc", "  \n", ".gc", " ***"], [" GC", " _____", " gc", ".gc", " ____", "(gc", "  \n", "GC"], [" GC", " ____", " _____", "  \n    \n", " \\\"", ".gc", "  \n\n", "  \n"], [" GC", "\\n", ".gc", "(gc", " \\\"", "...\\", " gc", "\\."], ["\\n", " \\\"", " GC", "...\\", ".\\\"", " ____", " _____", "...."], [" GC", " ____", " \\\"", " _____", "\\n", " ***", ".gc", " VC"], [" GC", " \\\"", " ____", " VC", ".gc", "ates", " KC", " _____"], [" GC", "s", " VC", " WC", "(gc", " KC", "GC", " JC"], [" GC", "s", " \\\"", " VC", " ", "\u00c3", "-", " &"], ["s", " GC", " &", "\u00c3", " ", " VC", " DC", "-"], ["s", ",", " GC", "-", "\u00c3", " [\u2026]", ";", "&"], [" GC", "s", " [\u2026]", "...", ",", "\u00c3", "GC", "  \n\n"], [" GC", "s", "GC", " _____", " gc", " ____", " [\u2026]", "(gc"], [" GC", "  \n\n", " _____", "GC", " ____", "s", " gc", "(gc"], ["<|endoftext|>", "  \n\n", " \n\n", " \n  \n", "   \n\n", " GC", "  \n  \n", "  \n"], [" GC", " _____", " ____", ".gc", "(gc", " \\\"", " AVC", "GC"], [" GC", " ____", " _____", ".gc", "GC", " \ufffd", " ______", " \\\""], [" GC", " ,", " --", " \ufffd", " &", " \\\"", " ____", " ..."], [" GC", " ,", " ____", " \n  \n", "  \n\n", " \ufffd", " --", " _____"], [" ____", " GC", " \n  \n", " _____", "  \n\n", " ,", "  \n", " ______"], [" ,", " GC", " and", " over", " heavily", " @", " systems", " rapidly"], [" ,", " and", " @", " over", " \n\n", " at", " .", " GC"], [" \n\n", "\n\n", "  \n\n", " ,", " ...", " @", " \n  \n", " ____"], [" \n\n", " ...", " ____", " \n  \n", "  \n\n", " \n", " ______", " _____"], [" \n\n", " ...", " \n  \n", " \n", "  \n\n", " ____", "  \n", " ______"], [" ...", " \n  \n", " \n\n", " \n", " ____", "  \n\n", " \u2026", "  \n"], [" ,", " \n  \n", " heavily", " over", "  \n", " and", " .", " rapidly"], [" tech", " \n  \n", " GC", " heavily", " PTSD", " CPU", "  \n\n", " \ufffd"], [" GC", " \n  \n", " tech", "  \n\n", " PTSD", " [\u2026]", " heavily", " AVC"], [" [\u2026]", " \u2026", "[\u2026]", "\u200b", "\u2026", "\u2026*", "\u2026\u2026", " GC"], [" [\u2026]", "\u200b", "[\u2026]", " CPU", " GC", "***", " \u2026", " overclock"], ["\u200b", " CPU", " [\u2026]", " GC", " overclock", " optimizations", " downtime", " \u200b"], [" CPU", " GC", " garbage", " downtime", " overclock", " scav", " shutdown", " JVM"], [" garbage", " scav", " GC", " cleanup", " CPU", " downtime", " shutdown", "\u200b"], [" garbage", " GC", " scav", " CPU", " cleanup", " downtime", " JVM", " lifecycle"], [" garbage", " cleanup", " GC", " CPU", " downtime", " scav", " cycles", " reboot"], [" garbage", " cleanup", " downtime", " shutdown", " scav", " GC", " triggers", "-trigger"], [" triggers", " garbage", " crashes", " cycles", " CPU", " GC", " downtime", "-trigger"], [" triggers", " downtime", " cycles", " crashes", "-trigger", " shutdown", " garbage", " resets"], [" cycles", " downtime", " triggers", "-trigger", " interruptions", " crashes", " shutdown", " spikes"], [" triggers", " cycles", " downtime", "-trigger", " impacts", " triggered", " interruptions", " spikes"], [" cycles", " triggers", " intermittent", " downtime", "-trigger", " interruptions", " resets", " periodic"], [" cycles", "-trigger", " triggers", " intermittent", " interruptions", " spikes", " downtime", " resets"], ["-trigger", " interruptions", "-induced", " disruptions", " intermittent", " triggers", " cycles", "-heavy"], ["-trigger", " interruptions", "-induced", " downtime", " disruptions", " triggers", " fragmentation", " interference"], [" interruptions", "-trigger", " downtime", "-induced", " disruptions", " interference", " latency", " intermittent"], [" interruptions", "-trigger", " downtime", "-induced", " latency", " spikes", " triggered", " bottleneck"], ["-trigger", "-induced", " interruptions", " downtime", " spikes", " latency", " pauses", "-heavy"], [" GC", "GC", " gc", "(gc", "gc", " garbage", " cycles", " latency"], [" GC", "GC", " garbage", "-induced", "(gc", " gc", "gc", " latency"], [" GC", "GC", " garbage", "gc", " gc", "(gc", "-induced", "\u5783\u573e"], [" GC", "GC", " latency", "-induced", " gc", " pauses", "gc", " pressure"], [" GC", "GC", " latency", " gc", " pressure", "gc", " pauses", "(gc"], [" pauses", " pressure", " latency", " pause", " spikes", " GC", "GC", "-induced"], [" pauses", " pause", " Pause", " pressure", "-induced", " latency", " induced", ")"], [" pauses", " pause", " Pause", "-induced", ")", ")**", " induced", " latency"], [")", ")**", ")-", ")**.", " pauses", " pause", "**)", "**"]], "p": [[0.3929, 0.0343, 0.0303, 0.0267, 0.0152, 0.0087, 0.0082, 0.0063], [0.3593, 0.1807, 0.0518, 0.0403, 0.0356, 0.0356, 0.0244, 0.0244], [0.1851, 0.0821, 0.064, 0.0601, 0.0468, 0.0302, 0.0235, 0.0235], [0.0774, 0.0469, 0.0441, 0.0251, 0.0184, 0.0134, 0.0105, 0.0092], [0.25, 0.1829, 0.0248, 0.015, 0.0133, 0.0091, 0.008, 0.0071], [0.328, 0.0153, 0.0119, 0.0072, 0.0068, 0.0053, 0.0053, 0.0039], [0.3702, 0.1129, 0.0268, 0.0222, 0.0196, 0.0153, 0.0144, 0.0119], [0.4835, 0.051, 0.0373, 0.0273, 0.02, 0.0155, 0.0155, 0.0089], [0.0919, 0.0434, 0.0383, 0.0263, 0.0218, 0.0205, 0.0193, 0.0193], [0.113, 0.0937, 0.0286, 0.0268, 0.0135, 0.0127, 0.0112, 0.0112], [0.3051, 0.0771, 0.0725, 0.0322, 0.0267, 0.0118, 0.0111, 0.0111], [0.0695, 0.0613, 0.0349, 0.0212, 0.0176, 0.0137, 0.0129, 0.0069], [0.1368, 0.0135, 0.0127, 0.012, 0.0077, 0.0077, 0.0072, 0.0068], [0.2835, 0.0318, 0.0205, 0.011, 0.0091, 0.0091, 0.0076, 0.0076], [0.1423, 0.1256, 0.0097, 0.0075, 0.0075, 0.0067, 0.0063, 0.0055], [0.2366, 0.119, 0.0086, 0.0081, 0.0071, 0.0056, 0.0052, 0.0052], [0.2581, 0.1298, 0.0739, 0.0176, 0.0128, 0.0128, 0.0121, 0.0113], [0.2521, 0.0818, 0.022, 0.022, 0.0134, 0.0126, 0.0086, 0.0081], [0.4182, 0.0441, 0.0162, 0.0126, 0.0119, 0.0105, 0.0105, 0.0098], [0.3849, 0.0489, 0.0217, 0.0159, 0.014, 0.0132, 0.0124, 0.0116], [0.4472, 0.3947, 0.0269, 0.0135, 0.0093, 0.0087, 0.0053, 0.0039], [0.132, 0.0277, 0.026, 0.026, 0.0131, 0.0051, 0.0035, 0.0033], [0.2575, 0.1295, 0.0271, 0.0165, 0.0106, 0.0094, 0.0088, 0.0073], [0.124, 0.0663, 0.0402, 0.0355, 0.0179, 0.0079, 0.0066, 0.0051], [0.0795, 0.0376, 0.0353, 0.0214, 0.0201, 0.0167, 0.0138, 0.0122], [0.1057, 0.0532, 0.0499, 0.0365, 0.0285, 0.0267, 0.0152, 0.0152], [0.0788, 0.0328, 0.0137, 0.0069, 0.0061, 0.005, 0.0039, 0.0037], [0.3062, 0.0389, 0.0173, 0.0173, 0.0162, 0.0082, 0.0082, 0.0072], [0.3024, 0.2213, 0.0596, 0.0464, 0.0436, 0.0248, 0.0193, 0.0125], [0.2848, 0.2218, 0.1264, 0.0676, 0.0495, 0.0437, 0.032, 0.03], [0.2998, 0.2193, 0.0669, 0.0669, 0.0628, 0.0521, 0.0316, 0.0159], [0.1151, 0.0791, 0.0451, 0.0257, 0.0241, 0.0227, 0.0177, 0.0166], [0.0393, 0.0346, 0.0306, 0.0197, 0.012, 0.0112, 0.0112, 0.0112], [0.0202, 0.0115, 0.0108, 0.0074, 0.0058, 0.0051, 0.0051, 0.0048], [0.0131, 0.0102, 0.0102, 0.0096, 0.0058, 0.0048, 0.0038, 0.0035], [0.2566, 0.0833, 0.0306, 0.0254, 0.0128, 0.0093, 0.0077, 0.0064], [0.0532, 0.047, 0.0126, 0.0112, 0.0098, 0.0092, 0.0064, 0.0053], [0.0567, 0.0126, 0.0098, 0.0068, 0.0064, 0.0064, 0.0056, 0.005], [0.0316, 0.0262, 0.0159, 0.0116, 0.009, 0.0085, 0.008, 0.0075], [0.0699, 0.0374, 0.0274, 0.0227, 0.0188, 0.0121, 0.0114, 0.0101], [0.07, 0.0452, 0.0257, 0.0242, 0.0242, 0.0147, 0.0122, 0.0095], [0.0921, 0.0409, 0.0299, 0.0264, 0.0248, 0.017, 0.0141, 0.0133], [0.0538, 0.0307, 0.0211, 0.0154, 0.0154, 0.0154, 0.0145, 0.0128], [0.0147, 0.0147, 0.0138, 0.0122, 0.0122, 0.0122, 0.0108, 0.0101], [0.0292, 0.0228, 0.0201, 0.0177, 0.0167, 0.0147, 0.013, 0.0115], [0.0417, 0.0325, 0.0223, 0.0144, 0.0144, 0.0127, 0.0112, 0.0112], [0.0296, 0.0261, 0.0245, 0.0179, 0.0179, 0.0131, 0.0116, 0.0109], [0.0327, 0.0289, 0.0289, 0.0255, 0.0211, 0.0165, 0.0136, 0.0136], [0.0515, 0.0454, 0.0354, 0.0293, 0.0189, 0.0167, 0.0157, 0.0139], [0.0915, 0.0758, 0.0629, 0.0297, 0.0217, 0.018, 0.018, 0.018], [0.1523, 0.1344, 0.0362, 0.034, 0.0265, 0.0182, 0.0161, 0.0151], [0.2994, 0.1101, 0.052, 0.0489, 0.0169, 0.014, 0.0132, 0.0116], [0.1988, 0.1206, 0.1132, 0.0731, 0.0391, 0.0391, 0.0174, 0.0127], [0.1134, 0.1134, 0.0779, 0.0536, 0.0473, 0.0392, 0.0163, 0.0144], [0.6525, 0.3082, 0.0105, 0.0064, 0.0056, 0.003, 0.001, 0.001], [0.5898, 0.217, 0.0798, 0.0294, 0.0108, 0.0101, 0.0074, 0.0066], [0.6527, 0.3083, 0.0153, 0.0073, 0.0064, 0.0044, 0.0009, 0.0007], [0.5642, 0.2665, 0.098, 0.0133, 0.0103, 0.008, 0.008, 0.008], [0.6305, 0.2978, 0.0131, 0.0102, 0.0102, 0.0079, 0.0062, 0.0062], [0.3009, 0.2344, 0.2068, 0.0383, 0.0317, 0.0263, 0.0205, 0.0205], [0.4898, 0.2622, 0.0516, 0.0516, 0.0402, 0.0313, 0.0276, 0.0037], [0.3978, 0.2734, 0.0888, 0.0649, 0.0394, 0.0198, 0.0154, 0.0145], [0.782, 0.1977, 0.0126, 0.0041, 0.0006, 0.0004, 0.0003, 0.0003]], "ranks": {}}, {"pos": 399, "top": [[".", " \u2013", ",", "\u00a0", " ", "\u00a0\u00a0", "\u2013", "<|endoftext|>"], ["\u2013", " ", ",", ".", " \u2013", "\u00a0\u00a0", ";", "\u2026"], ["\u2013", ",", "\u2026", "\u2026.", ".", "\u2026..", " \u2013", "\u2026\""], [" **\u201c", " **\u25cb", " Blowjob", " **", " cristi", " **\u25a0", " **\u300c", " **:**"], [" \u2019", " ***", " **\u201c", " ", "\u00a0\u00a0", " **#", "  \n\n\n", "  "], ["\u00a0\u00a0", " \u2019", " ", "  ", " **\u201c", "\u00a0\u00a0\u00a0\u00a0", " ***", "  \n\n\n"], [" \u2019", " ", " ***", "  \n", " _", " ______", "  \n\n\n", " _____"], [" _", " ***", " \u2019", "  \n\n\n", "  \r\n", " ", "  ", " \r\r\n"], ["  \n\n\n", "  \n\n", " ***", " _", " \u2019", "  \r\n\r\n", "  ", " \n\n\n"], [" ", "  \r\n", " _", " \u00ad", "  ", "\u00a0\u00a0", " \r\r\n", "\u2013"], [" ", " _", " [...]", " [\u2026]", " ______", " \u2013", "  \n\n", "  "], [" ***", " ______", " ____", " _", " **", " _____", " &_", " ________"], [" _", " ***", " **", " ______", " ____", " &_", " _____", " fueled"], [" _", " ", " scrambling", " system", " effortlessly", " thr", " \u2013", " ***"], [" ", " and", " _", " as", " \"", " \u2013", " \u2019", " f"], [" ", " _", " -", " and", " \u2019", " ,", " as", " \""], [" \u2013", " \"", " ", " even", " myriad", " out", " largely", " as"], [" systems", " system", " heavily", " savvy", " fueled", " sprawling", " efforts", " impact"], [" heavily", " _", " fueled", " even", " sprawling", " wildly", " largely", " arguably"], ["<|endoftext|>", " &#", " swiftly", " largely", " myriad", " heavily", " &", " even"], ["<|endoftext|>", " \n\n", "\n\n", " swiftly", " ,", " heavily", " @", " #"], [" heavily", " rapidly", " fueled", " even", " quickly", " swiftly", " systems", " notably"], [" heavily", " rapidly", " quickly", " ,", " impact", " and", " long", " over"], [" ,", " heavily", " long", " over", " and", "<|endoftext|>", " much", " rapidly"], [" \n\n", " heavily", " ,", " over", " long", " _", " rapidly", " "], [" heavily", " impact", " rapidly", " complex", " over", " heavy", " quickly", " long"], [" heavily", " ,", " complex", " and", " heavy", " impact", " over", " performance"], [" ,", " and", " \n\n", " _", " over", " heavily", " long", " ..."], [" heavily", " ,", " and", " heavy", " over", " long", " during", " ..."], [" ...", " \n", " **", " ___", " ______", " _", " heavily", " complex"], [" ...", " heavily", " performance", " heavy", " complex", " during", " ,", " long"], [" ...", " .", " long", " during", " and", " complex", " ,", " performance"], [" during", " complex", " heavy", " long", " heavily", " and", " over", " critical"], [" heavily", " heavy", " workflows", " rapid", " complex", " continuously", " continuous", " hardware"], [" heavily", " workflows", " hardware", " disproportionately", " accumulation", " relentless", " continuous", " heavy"], [" hardware", " /", " workflows", " rapid", " heavily", " relentless", " continuous", " rapidly"], [" rapid", " hardware", " rapidly", " continuously", " performance", " speed", " heavily", " continuous"], [" /", " rapidly", " continuously", " continuous", " rapid", " performance", " hardware", " workflows"], [" during", " continuously", " continuous", " performance", " constantly", " rapidly", " /", " hardware"], [" during", " continuously", " continuous", " constantly", " garbage", " workflow", " workflows", " performance"], [" during", " continuous", " cycle", " continuously", " performance", " constantly", " cycles", " workflow"], [" during", " cycle", " periodic", " production", " cycles", " memory", " workflow", " garbage"], [" periodic", " cycle", " daily", " cycles", " during", " nightly", " continuous", " weekly"], [" daily", " during", " nightly", " periodic", " cycle", " cycles", " routines", " routine"], [" daily", " during", " nightly", " cycle", " cycles", " periodic", " weekly", " routines"], [" cycle", " daily", " during", " cycles", " production", " routine", " nightly", " routines"], [" during", " daily", " cycle", " routine", " periodic", " routines", " continuous", " nightly"], [" during", " cycle", " routine", " daily", " periodic", " nightly", " cycles", " routines"], [" during", " cycle", " cycles", " routines", " routine", " nightly", " daily", " periodic"], [" interference", " bottleneck", " interruptions", "-induced", "-trigger", " triggered", " cycles", " bursts"], [" interference", " bottleneck", " interruptions", "-trigger", " triggered", "-induced", " triggers", " synchronization"], [" interference", " interruptions", " bottleneck", " triggered", "-induced", "-trigger", " triggers", " triggering"], [" interruptions", " bottleneck", " interference", "-induced", " triggered", "-trigger", " latency", " interrupts"], [" bottleneck", " interruptions", "-induced", " spikes", " interference", " latency", " triggered", "-trigger"], [" cycles", " bottleneck", " interruptions", " latency", " interference", " spikes", " cycle", "-induced"], [" garbage", "-induced", " latency", " bottleneck", " cycles", " spikes", " cycle", " interference"], [" garbage", " GC", " latency", "GC", " pauses", " spikes", " bottleneck", "-induced"], [" latency", " spikes", " pauses", "-induced", " garbage", " GC", " spike", " induced"], [" latency", " spikes", " pauses", " garbage", " jitter", " GC", " bottleneck", " pipeline"], [" pauses", " latency", " spikes", " jitter", " stutter", " stalls", " spike", " pause"], [" pauses", " pause", " latency", " induced", " spikes", " Pause", "-induced", " stalls"], [" pauses", " pause", " latency", " Pause", " induced", " stutter", " spikes", "-induced"], [" pauses", " pause", " Pause", " latency", " stutter", " stalls", " spikes", " Pa"]], "p": [[0.6977, 0.1212, 0.0735, 0.0271, 0.0211, 0.0186, 0.0136, 0.0073], [0.2646, 0.133, 0.125, 0.0669, 0.0336, 0.0316, 0.0217, 0.014], [0.3592, 0.2469, 0.2469, 0.0707, 0.0334, 0.0139, 0.0045, 0.0033], [0.031, 0.0057, 0.0057, 0.0042, 0.0039, 0.0029, 0.0029, 0.0025], [0.2555, 0.0646, 0.0607, 0.0269, 0.021, 0.0135, 0.0112, 0.0105], [0.2128, 0.1291, 0.0394, 0.0288, 0.0154, 0.0113, 0.0083, 0.0078], [0.3184, 0.1034, 0.0857, 0.0459, 0.0431, 0.0278, 0.0204, 0.0204], [0.1737, 0.0724, 0.0468, 0.0468, 0.0388, 0.0266, 0.0235, 0.0207], [0.2757, 0.2147, 0.0423, 0.0397, 0.0241, 0.0188, 0.0129, 0.0129], [0.1081, 0.0374, 0.033, 0.0273, 0.0129, 0.0121, 0.0114, 0.0107], [0.2761, 0.0954, 0.0544, 0.0423, 0.0374, 0.02, 0.0166, 0.0156], [0.1298, 0.0892, 0.0613, 0.0396, 0.0155, 0.0137, 0.0069, 0.0047], [0.1344, 0.0265, 0.0219, 0.0125, 0.0086, 0.0038, 0.0032, 0.0022], [0.0052, 0.0043, 0.0036, 0.0034, 0.0032, 0.003, 0.0028, 0.0026], [0.0647, 0.0224, 0.0127, 0.0127, 0.0127, 0.0082, 0.0077, 0.0068], [0.0279, 0.0231, 0.0132, 0.0124, 0.0116, 0.0109, 0.0109, 0.0096], [0.0157, 0.0148, 0.013, 0.0122, 0.0101, 0.0079, 0.0074, 0.0066], [0.0064, 0.006, 0.0053, 0.005, 0.005, 0.005, 0.0041, 0.0039], [0.0101, 0.0078, 0.0078, 0.0069, 0.0069, 0.0069, 0.0047, 0.0045], [0.14, 0.0229, 0.0157, 0.0139, 0.0139, 0.013, 0.0108, 0.009], [0.9857, 0.0014, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.0145, 0.0057, 0.0053, 0.0047, 0.0047, 0.0044, 0.0039, 0.0035], [0.0318, 0.015, 0.0103, 0.0103, 0.0067, 0.0067, 0.0067, 0.0059], [0.048, 0.02, 0.02, 0.0177, 0.0146, 0.0129, 0.0107, 0.0095], [0.1131, 0.0252, 0.0153, 0.0112, 0.0105, 0.0099, 0.0093, 0.0087], [0.0452, 0.0129, 0.0107, 0.0101, 0.0095, 0.0089, 0.0089, 0.0089], [0.0246, 0.0159, 0.0124, 0.0102, 0.009, 0.009, 0.0085, 0.008], [0.1365, 0.0535, 0.0416, 0.0223, 0.0209, 0.0209, 0.0144, 0.0105], [0.0365, 0.0322, 0.0195, 0.0173, 0.0143, 0.0126, 0.0126, 0.0119], [0.0336, 0.0297, 0.0279, 0.0204, 0.0169, 0.0132, 0.0132, 0.0124], [0.024, 0.0199, 0.0187, 0.0187, 0.0155, 0.0145, 0.0128, 0.0128], [0.144, 0.0266, 0.0183, 0.0143, 0.0143, 0.0143, 0.0143, 0.0104], [0.0234, 0.0194, 0.0182, 0.0171, 0.0171, 0.0151, 0.0098, 0.0092], [0.035, 0.0137, 0.0114, 0.0107, 0.01, 0.0078, 0.0065, 0.0065], [0.0281, 0.0117, 0.0091, 0.0086, 0.0086, 0.0081, 0.0081, 0.0067], [0.0198, 0.0175, 0.0145, 0.0136, 0.0136, 0.0106, 0.01, 0.0094], [0.0298, 0.028, 0.0263, 0.017, 0.0159, 0.0141, 0.0132, 0.0132], [0.0316, 0.0279, 0.0231, 0.0231, 0.0231, 0.0217, 0.0217, 0.0132], [0.1808, 0.0314, 0.0277, 0.023, 0.0148, 0.0123, 0.0116, 0.0109], [0.2012, 0.035, 0.0308, 0.0199, 0.0155, 0.0129, 0.0121, 0.01], [0.2065, 0.0279, 0.0279, 0.0263, 0.0204, 0.018, 0.0141, 0.0141], [0.0671, 0.0382, 0.0298, 0.0298, 0.0263, 0.0263, 0.0247, 0.0218], [0.108, 0.051, 0.0373, 0.0351, 0.0309, 0.0291, 0.0273, 0.0256], [0.0775, 0.0604, 0.0533, 0.05, 0.039, 0.0323, 0.0285, 0.0285], [0.0932, 0.0876, 0.0641, 0.044, 0.044, 0.0389, 0.0303, 0.0284], [0.0708, 0.0551, 0.0457, 0.0429, 0.0334, 0.0295, 0.0277, 0.0245], [0.1093, 0.055, 0.0485, 0.0456, 0.0428, 0.0313, 0.0276, 0.026], [0.2594, 0.0398, 0.0374, 0.0351, 0.0351, 0.031, 0.0227, 0.0227], [0.1183, 0.0674, 0.0435, 0.0361, 0.0319, 0.0299, 0.0233, 0.0193], [0.091, 0.0755, 0.0357, 0.0335, 0.0261, 0.023, 0.023, 0.0179], [0.1602, 0.0805, 0.0805, 0.0405, 0.0204, 0.0169, 0.0169, 0.0159], [0.1472, 0.122, 0.122, 0.0653, 0.0576, 0.0541, 0.0176, 0.0155], [0.2695, 0.1123, 0.0681, 0.0681, 0.044, 0.0365, 0.0267, 0.0235], [0.1809, 0.1409, 0.0968, 0.0666, 0.0404, 0.0379, 0.0261, 0.0245], [0.1335, 0.1178, 0.0918, 0.081, 0.0557, 0.0434, 0.0434, 0.0317], [0.1493, 0.1162, 0.1162, 0.0705, 0.0549, 0.0485, 0.0428, 0.0259], [0.4239, 0.1214, 0.0737, 0.0447, 0.0394, 0.0394, 0.0307, 0.0307], [0.626, 0.096, 0.0582, 0.0453, 0.0214, 0.0147, 0.0115, 0.0115], [0.4974, 0.111, 0.0763, 0.0408, 0.0408, 0.0248, 0.0219, 0.0193], [0.3014, 0.3014, 0.2347, 0.0318, 0.0247, 0.017, 0.017, 0.0132], [0.7333, 0.0773, 0.0682, 0.0365, 0.0221, 0.0195, 0.0119, 0.0038], [0.7282, 0.1265, 0.0411, 0.0282, 0.022, 0.0081, 0.0076, 0.0056], [0.7372, 0.1452, 0.0367, 0.0173, 0.0119, 0.0068, 0.0056, 0.005]], "ranks": {}}, {"pos": 400, "top": [[".", "\u2013", ",", " \u2013", "\u00a0\u00a0", ";", "\u2026.", " "], [" \u2013,", "\u2014.", "\u2013", "\u2014\"", "   \n", "   \n\n", " \u2014", " [@"], ["\u2013", ",", ".", ".\u2013", " \u2013,", ";", "\u2026.", "\u2014."], [" St\u00e9ph", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " m\u00e1sc", "odle", " Blowjob", " Ejem", " Shemale", "uggy"], [" \u200e", " \t ", "\u2014.", " \u201c.", " \n\n\n\n\n", " (@", "%!", "\u200e"], [" \t ", " \u201c.", " \u200b\u200b", "\u2014.", " \u200e", " \n\n\n\n\n", "\u00a0\u00a0", "%!"], ["\u2014.", " \t ", " \u201c.", "\u201d\u2014", "%!", "!\u201d.", "\u2588\u2588\u2588\u2588", "$\""], [" _)", "yssey", " \t ", " _.", " *)\"", "/*@", "  \n    \n", " \u00b6"], ["!\u201d.", "\u2014.", "  \n    \n", " [].", " \n    \n", "yssey", " \n            \n", "/*@"], ["\u2014and", " \u00ad", "\u2014but", "\u2014", "\u52e4\u52e4\u6073\u6073", "\u2014\"", "\u2014or", " \t "], ["\u2014", "\u2014and", " \u2014", "\u2014.", " [...]", " \u00ad", "\u2014but", "\u2014\""], [" \t ", "rompt", "\u2014and", " \n            \n", "\u52e4\u52e4\u6073\u6073", "\u2588\u2588\u2588\u2588", " momentarily", " intermitt"], [" intermitt", "rompt", " momentarily", "\u2014and", "\u4e0d\u51b3", " Pergun", "\u52e4\u52e4\u6073\u6073", "\u9877\u523b"], [" intermitt", " momentarily", "\u2014and", " midway", " entirety", " \u2014", "\u2014", "rompt"], [" \u2014", " midway", "\u2014", "\u2014and", " intermitt", " momentarily", " \u00ad", " swiftly"], [" \u2014", " entirety", " midway", " amidst", " momentarily", " akin", " lingering", " swiftly"], [" amidst", " midway", " entirety", " \u2014", " lingering", " akin", " moments", " momentarily"], [" \u2014", " midway", " entirety", " amidst", " lingering", " moments", " hefty", " momentarily"], [" \u2014", " midway", " amidst", " momentarily", " lingering", " amid", " entirety", " moments"], [" \u2014", " midway", " amidst", " momentarily", " amid", " lingering", " swiftly", " entirety"], [" \u2014", " \n\n", " midway", " amidst", " swiftly", " amid", " lingering", " momentarily"], ["ksam", " midway", "baugh", "\u9877\u523b", "rompt", " amid", " momentarily", " lingering"], [" momentarily", " midway", " moments", " amidst", " amid", " pauses", " pause", " lingering"], [" \u2014", " momentarily", " midway", " amidst", " moments", " lingering", " amid", "Millis"], [" \n\n", "  \n\n", " \u2014", "   \n\n", " \n\n\n", " \r\n\r\n", " \n  \n", "\n\n"], [" \n\n", " \n  \n", "  \n\n", "   \n\n", " \r\n\r\n", " pauses", " \n    \n", " \n\n\n"], [" pauses", " moments", " durations", " milliseconds", " pause", " microseconds", " periods", " timeouts"], [" \n\n", " during", " ,", " time", " moments", " periods", " hours", " \u2014"], [" \n\n", " pauses", " hours", " moments", " during", " milliseconds", " time", " delays"], [" pauses", " milliseconds", " triggered", " slowdown", " hours", " moments", " pause", " timeouts"], [" pauses", " \n\n", " during", " moments", " hours", " pause", " triggered", " periods"], [" during", " time", " ...", " hours", " pauses", " \n\n", " moments", " pause"], [" during", " moments", " time", " hours", " pauses", " \u2014", " minutes", " delays"], [" \u2014", " pauses", " milliseconds", " delays", " moments", " during", " triggered", " hours"], [" \u2014", " pauses", " milliseconds", " delays", " pause", " microseconds", " triggered", " catastrophic"], [" \u2014", " milliseconds", " pauses", " delays", " triggered", "**\u2014", " microseconds", "\u201d\u2014"], [" \u2014", " milliseconds", " delays", " pauses", " microseconds", " latency", " triggered", "Milliseconds"], [" milliseconds", " pauses", " delays", " \u2014", " microseconds", " latency", " interruptions", " during"], [" milliseconds", " pauses", " delays", " microseconds", " during", " interruptions", " pause", " latency"], [" milliseconds", " pauses", " microseconds", " delays", " pause", " interruptions", " during", " intermittent"], [" milliseconds", " pauses", " microseconds", " interruptions", " delays", " pause", " during", " downtime"], [" milliseconds", " pauses", " microseconds", " interruptions", " delays", " pause", " intermittent", " downtime"], [" interruptions", " pauses", " milliseconds", " pause", " intermittent", " delays", " microseconds", " interrupts"], [" interruptions", " pauses", " milliseconds", " intermittent", " periods", " microseconds", " pause", " delays"], [" interruptions", " pauses", " milliseconds", " periods", " interrupts", " microseconds", " interrupt", " intermittent"], [" interruptions", " periods", " pauses", " triggered", " interrupt", " interrupts", " spikes", " bursts"], [" interruptions", " during", " triggered", " bursts", " caused", " interrupts", " pauses", " periods"], [" during", " interruptions", " triggered", " caused", " bursts", " intermittent", " interrupts", " periods"], [" caused", " triggered", " interruptions", " during", " causing", " interrupts", " intermitt", " unavoidable"], [" caused", " triggered", " interruptions", " intermitt", " causing", " interrupts", " intermittent", " interrupt"], [" triggered", "**.", " caused", "*.", " inevitable", " interruptions", " exacerbated", " unavoidable"], ["**.", " triggered", " caused", "*.", ".**", " exacerbated", " inevitable", " interrupt"], ["**.", "*.", " caused", " triggered", " causing", " interrupt", ".**", " disrupting"], ["**.", "*.", " caused", " causing", " triggered", ".**", " interrupt", "\u5bfc\u81f4\u7684"], ["**.", "*.", " caused", " interfering", " combined", " triggered", " conflicting", " causing"], ["**.", " caused", "*.", " triggered", " will", " causing", " combined", " interfering"], ["**.", ".**", "**", "**\u3002", " causing", " caused", " combined", " triggered"], ["**.", " causing", " caused", " triggered", " collision", " collisions", " will", " collide"], ["**.", " interacting", " destroying", " collision", " collide", " collisions", " causing", " will"], ["**.", " interacting", "**", " destroying", " will", " killing", " collision", " hitting"], ["**.", "**", " interacting", " destroying", " will", " killing", " causing", " caused"], ["**.", "**", ".**", "**,", " will", "*.", "**\u3002", "\"."], ["**", "**.", ".**", "**,", "**\u3002", "**?", "**:", " **."]], "p": [[0.2538, 0.1857, 0.154, 0.0727, 0.0441, 0.0389, 0.0251, 0.0236], [0.1147, 0.1012, 0.0372, 0.029, 0.029, 0.024, 0.024, 0.024], [0.3997, 0.1219, 0.0949, 0.0396, 0.0272, 0.024, 0.0225, 0.0199], [0.0116, 0.0085, 0.0055, 0.0046, 0.0046, 0.0046, 0.0046, 0.004], [0.0432, 0.0406, 0.0279, 0.0217, 0.0169, 0.014, 0.0132, 0.0091], [0.03, 0.0161, 0.0151, 0.0117, 0.011, 0.0097, 0.0059, 0.0059], [0.027, 0.012, 0.0113, 0.0093, 0.0068, 0.0057, 0.0044, 0.0039], [0.0116, 0.0066, 0.0066, 0.0066, 0.0051, 0.0045, 0.0043, 0.0043], [0.0152, 0.0143, 0.0143, 0.0092, 0.0081, 0.0067, 0.0056, 0.0043], [0.0123, 0.0116, 0.0058, 0.0051, 0.0048, 0.0048, 0.0038, 0.0031], [0.1289, 0.0572, 0.0505, 0.0288, 0.0254, 0.0224, 0.0224, 0.021], [0.0079, 0.0054, 0.0033, 0.0031, 0.0029, 0.0029, 0.0024, 0.0024], [0.0057, 0.0057, 0.0045, 0.0031, 0.0031, 0.0029, 0.0027, 0.0022], [0.0098, 0.0067, 0.0056, 0.0052, 0.0052, 0.0038, 0.0025, 0.0025], [0.2735, 0.0225, 0.0186, 0.0106, 0.0094, 0.0088, 0.0057, 0.0053], [0.0566, 0.0441, 0.0343, 0.0143, 0.0119, 0.0105, 0.0068, 0.0063], [0.0282, 0.0265, 0.022, 0.0207, 0.0151, 0.0125, 0.0111, 0.0092], [0.056, 0.0265, 0.0194, 0.0142, 0.0142, 0.011, 0.0104, 0.0097], [0.0334, 0.0244, 0.0179, 0.0096, 0.009, 0.0084, 0.007, 0.0066], [0.126, 0.0219, 0.0182, 0.0125, 0.0125, 0.0086, 0.0081, 0.0041], [0.0871, 0.025, 0.0151, 0.0098, 0.0092, 0.0086, 0.0081, 0.0071], [0.0119, 0.0028, 0.0026, 0.0026, 0.0025, 0.0023, 0.0022, 0.0022], [0.0114, 0.0083, 0.0073, 0.0073, 0.0061, 0.0057, 0.0057, 0.005], [0.0173, 0.0173, 0.0144, 0.0127, 0.0127, 0.0077, 0.0064, 0.005], [0.4738, 0.0184, 0.0152, 0.0143, 0.0092, 0.0082, 0.0077, 0.006], [0.3173, 0.0109, 0.0079, 0.0075, 0.0066, 0.0055, 0.0055, 0.0051], [0.0501, 0.0237, 0.0173, 0.0144, 0.0135, 0.0127, 0.0127, 0.0119], [0.1704, 0.0488, 0.0336, 0.0191, 0.0191, 0.0131, 0.0123, 0.0116], [0.0587, 0.0314, 0.0295, 0.0245, 0.0216, 0.0203, 0.019, 0.0179], [0.04, 0.0214, 0.0167, 0.0156, 0.0156, 0.0156, 0.0147, 0.0138], [0.0539, 0.0394, 0.0288, 0.0239, 0.0211, 0.0198, 0.0175, 0.0175], [0.0418, 0.0287, 0.0238, 0.021, 0.021, 0.0174, 0.0164, 0.0127], [0.0672, 0.0338, 0.0338, 0.0298, 0.0247, 0.0205, 0.0181, 0.017], [0.1278, 0.0236, 0.0222, 0.0209, 0.0184, 0.0184, 0.0143, 0.0119], [0.0524, 0.0408, 0.0232, 0.0232, 0.0181, 0.016, 0.0117, 0.0091], [0.3598, 0.0379, 0.014, 0.0123, 0.0102, 0.0085, 0.0085, 0.0079], [0.1521, 0.0982, 0.0339, 0.0206, 0.0182, 0.0151, 0.0125, 0.0104], [0.1238, 0.0355, 0.0333, 0.0294, 0.0215, 0.0215, 0.0215, 0.0202], [0.1523, 0.0815, 0.072, 0.0362, 0.034, 0.0265, 0.0234, 0.0206], [0.2172, 0.1403, 0.0585, 0.0516, 0.0355, 0.0294, 0.0294, 0.0157], [0.1542, 0.1449, 0.0728, 0.0604, 0.0533, 0.047, 0.0304, 0.0184], [0.1891, 0.1891, 0.0788, 0.0696, 0.0614, 0.0422, 0.0226, 0.0199], [0.2345, 0.2069, 0.0863, 0.0462, 0.0407, 0.0407, 0.028, 0.0192], [0.2148, 0.115, 0.0896, 0.045, 0.0329, 0.0309, 0.0291, 0.0257], [0.2266, 0.1213, 0.061, 0.0506, 0.0307, 0.0271, 0.0271, 0.0254], [0.2509, 0.0596, 0.041, 0.041, 0.0385, 0.0361, 0.03, 0.0282], [0.2177, 0.0586, 0.055, 0.0517, 0.0456, 0.0378, 0.0355, 0.0334], [0.1639, 0.1199, 0.0877, 0.0683, 0.0441, 0.0414, 0.0366, 0.0323], [0.242, 0.1885, 0.0738, 0.0308, 0.0289, 0.0289, 0.0211, 0.0211], [0.1513, 0.1421, 0.0862, 0.0298, 0.0263, 0.0263, 0.0218, 0.017], [0.1924, 0.1167, 0.0967, 0.0295, 0.0277, 0.0216, 0.0203, 0.019], [0.2064, 0.0861, 0.063, 0.0461, 0.0192, 0.0159, 0.0159, 0.0159], [0.4011, 0.0655, 0.0615, 0.0479, 0.0309, 0.0273, 0.0241, 0.0137], [0.6506, 0.0644, 0.0324, 0.0269, 0.0163, 0.0153, 0.0056, 0.0047], [0.4119, 0.0434, 0.0383, 0.0298, 0.0232, 0.0218, 0.0218, 0.0218], [0.4846, 0.048, 0.033, 0.0291, 0.0257, 0.0241, 0.0129, 0.0107], [0.9401, 0.0076, 0.0046, 0.0044, 0.003, 0.0026, 0.0022, 0.0019], [0.8085, 0.0131, 0.0123, 0.0102, 0.0074, 0.007, 0.007, 0.0066], [0.8182, 0.0192, 0.0132, 0.0132, 0.0097, 0.0091, 0.008, 0.0062], [0.3795, 0.1087, 0.096, 0.0547, 0.04, 0.0332, 0.0258, 0.0157], [0.7292, 0.0871, 0.0341, 0.0142, 0.0134, 0.0086, 0.0067, 0.0052], [0.9495, 0.0473, 0.0007, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.5926, 0.4073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 401, "top": [[".", " \u2013", "\u00a0", "  \n\n", ",", "\u2013", "\u2026.", "  \n"], [" **", "(**", "-**", "\u2026**", " (**", " **\u2013", "**", "**,"], ["\u2026**", " **", "(**", "**", "**\u2013", " **\u2013", "**.", "-**"], [" **", " **\u300c", " **\u00ab", "\uff1f**", " **#", "\u300d**", " **+", " **\u3010"], [" **", " **#", "-**", "(**", " (**", " **\u201c", ">**", " **("], [" **", "-**", "(**", " **#", " (**", " **\u201c", " **(", ">**"], [" **", "-**", "\uff09**", " **#", "**", "\u2019**", "(**", " **["], [" **", " **#", "-**", "(**", ">**", " **\u300c", " **+", " **\u00ab"], [" **", " **#", "(**", " **\u300c", " **\u3010", "-**", " (**", " **\u00ab"], [" **", " **#", "-**", "(**", ">**", " **+", " \"**", " **'"], [" **", " **#", "(**", "-**", " **[", "**", " **'", " (**"], [" **", " **#", " **'", " **\u300c", " **+", " '**", " \"**", "-**"], [" **", " **#", " **'", " **\u300c", " **+", "-**", " '**", " \"**"], [" **", " **'", " **#", "-**", " **+", " **\u300c", " '**", " \"**"], [" **", " \"**", " **'", " (**", " **#", "(**", " '**", " **+"], [" **", " \"**", " (**", " **#", " **(", "(**", " **'", " '**"], [" **", " (**", " \"**", "(**", "ing", " **\u2013", " **\"", " **#"], [" **", " (**", "(**", " \"**", " **\u2013", "**", " **(", " **'"], [" **", " \"**", " (**", "(**", " **#", " **'", " **(", " **."], [" **", "ing", " \"**", "(**", " (**", " amongst", " **\u2013", " **#"], [" **", "<|endoftext|>", " \n\n", "ing", " amongst", " though", "(**", " amidst"], [" **", " \"**", " '**", " **#", " **'", " **+", " (**", "ing"], [" **", "ing", " \"**", " amongst", " '**", " notably", " **'", " **#"], [" **", " amongst", "ing", " notably", " whilst", " amidst", " among", " as"], [" **", " \n\n", " amongst", " whilst", "ing", " \r\n\r\n", " amidst", "  \n\n"], [" **", " **'", " \"**", " **#", " **+", " **.", " **(", " \n\n"], [" **", " \n\n", " **'", " **#", " \"**", " **+", " **(", " **."], [" **", " \n\n", " **'", " **[", " \"**", " *", " **(", " **#"], [" **", " \n\n", " **'", " \"**", " **.", " **#", " **\"", " **("], [" **", " \n\n", " **'", " **.", " **(", " \"**", " (**", " **,"], [" **", " \n\n", " **.", " **,", " **'", " *", " \"**", " **\""], [" **", " **.", " **,", " *", " **-", " **(", " **'", " \"**"], [" **", " *", " heavily", " during", " due", " **,", " **.", " over"], [" **", " heavily", " (**", " **\u2013", " *", " **(", " **\u201c", " **'"], [" **", " **\"", " **\u201c", " (**", " **'", " *", " **(", " \"**"], [" **", " **\u201c", " **\"", " **\u2013", " *", " (**", " **(", " \"**"], [" **", " **\"", " **\u201c", " *", " \"**", " notoriously", " exacerbated", " **\u2013"], [" **", " notoriously", " exacerbated", " **\u201c", " \u2014", " *", "\u2014and", " triggered"], [" **", " triggered", " exacerbated", " during", " notoriously", " due", " \u2014", " heavily"], [" **", " triggered", " during", " exacerbated", " unpredictable", " notoriously", " due", " relentless"], [" during", " **", " triggered", " due", " exacerbated", " caused", " unpredictable", " inevitable"], [" triggered", " during", " **", " exacerbated", " due", " unpredictable", " caused", " catastrophic"], [" **", " triggered", " exacerbated", " during", " unpredictable", " due", " catastrophic", " caused"], [" triggered", " caused", " exacerbated", " **", " during", " triggering", " due", " catastrophic"], [" triggered", " caused", " **", " exacerbated", " during", " bursts", " catastrophic", " triggering"], [" triggered", " caused", " **", " exacerbated", " during", " unpredictable", " bursts", " triggering"], [" **", " triggered", " caused", " exacerbated", " during", " bursts", " inevitable", " unpredictable"], [" triggered", " **", " combined", " caused", " during", " exacerbated", " coupled", " bursts"], [" **", " triggered", " combined", " caused", " exacerbated", " coupled", " induced", " during"], [" triggered", " caused", " exacerbated", " combined", " induced", " coupled", " causing", " interfering"], [" triggered", " caused", " exacerbated", " interfering", "\u5f15\u53d1\u7684", "\u5bfc\u81f4\u7684", " causing", " triggering"], [" triggered", " caused", " exacerbated", ".**", " interfering", " disrupting", " causing", " induced"], [" triggered", " caused", " disrupting", " causing", " exacerbated", " interrupt", ".**", " interfering"], [" triggered", " caused", " causing", " during", " disrupting", " triggering", " combined", " interfering"], [" triggered", " caused", " combined", " causing", " interfering", "\u5f15\u53d1\u7684", " disrupting", " triggering"], [" triggered", " caused", " combined", " causing", " triggering", " will", " interacting", " induced"], [" triggered", " caused", " triggering", " causing", " combined", " disrupting", " interacting", " killing"], [" triggered", " caused", " causing", " triggering", " destroying", " disrupting", " induced", " interacting"], [" triggered", " caused", " destroying", " causing", " triggering", " interacting", " induced", " crashing"], [" killing", " destroying", " triggered", " caused", " interacting", " crashing", " kills", " causing"], [" caused", " killing", " destroying", " interacting", " triggered", " causing", " induced", " will"], [" caused", " triggered", " will", " killing", " interacting", " induced", " destroying", " coll"], [" interacting", " caused", " killing", " during", " induced", " triggered", " and", " will"]], "p": [[0.5082, 0.272, 0.0473, 0.0287, 0.0238, 0.0238, 0.0223, 0.0185], [0.6568, 0.0889, 0.0371, 0.0371, 0.0255, 0.0154, 0.0145, 0.0136], [0.6019, 0.1343, 0.056, 0.056, 0.0385, 0.0385, 0.0264, 0.0076], [0.6677, 0.0548, 0.0312, 0.0259, 0.0167, 0.0167, 0.0167, 0.0139], [0.9805, 0.0066, 0.004, 0.0031, 0.0013, 0.0008, 0.0007, 0.0005], [0.9747, 0.0123, 0.0045, 0.0027, 0.001, 0.0007, 0.0005, 0.0004], [0.9948, 0.0006, 0.0006, 0.0006, 0.0004, 0.0004, 0.0004, 0.0002], [0.9952, 0.0013, 0.0008, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001], [0.9848, 0.004, 0.0022, 0.0012, 0.0007, 0.0007, 0.0006, 0.0005], [0.9894, 0.004, 0.0015, 0.001, 0.0005, 0.0004, 0.0004, 0.0003], [0.9992, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9956, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.8614, 0.0801, 0.0102, 0.0055, 0.0029, 0.0009, 0.0007, 0.0007], [0.9969, 0.0009, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9943, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.7971, 0.0146, 0.01, 0.0057, 0.0031, 0.0029, 0.0027, 0.0021], [0.9027, 0.0654, 0.0025, 0.0016, 0.0014, 0.0009, 0.0007, 0.0006], [0.9994, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9964, 0.0025, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.994, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9856, 0.0006, 0.0003, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002], [0.9828, 0.0009, 0.0007, 0.0005, 0.0005, 0.0005, 0.0005, 0.0005], [0.9856, 0.0017, 0.0012, 0.0011, 0.001, 0.0006, 0.0006, 0.0005], [0.9557, 0.0024, 0.0021, 0.0021, 0.0013, 0.0013, 0.0011, 0.0011], [0.8029, 0.0054, 0.0051, 0.0048, 0.0042, 0.0037, 0.0037, 0.0033], [0.6263, 0.0122, 0.0089, 0.0079, 0.0079, 0.0065, 0.0042, 0.0042], [0.5346, 0.0221, 0.0195, 0.0142, 0.0111, 0.0086, 0.0072, 0.0056], [0.1019, 0.0512, 0.0512, 0.0481, 0.0201, 0.0166, 0.0166, 0.0107], [0.0881, 0.0605, 0.0605, 0.0324, 0.0304, 0.0209, 0.0173, 0.0163], [0.1598, 0.1169, 0.0357, 0.0278, 0.0216, 0.0203, 0.0179, 0.0179], [0.1886, 0.054, 0.0448, 0.0395, 0.0272, 0.024, 0.024, 0.0175], [0.2703, 0.0878, 0.0532, 0.0415, 0.0389, 0.0222, 0.0152, 0.0152], [0.2299, 0.123, 0.0746, 0.0581, 0.0167, 0.0156, 0.013, 0.0108], [0.5444, 0.1377, 0.0476, 0.0327, 0.0113, 0.01, 0.0073, 0.0057], [0.2804, 0.2474, 0.1169, 0.091, 0.0458, 0.0379, 0.0085, 0.0066], [0.5009, 0.2088, 0.087, 0.0528, 0.0363, 0.0142, 0.0036, 0.0036], [0.6028, 0.2217, 0.034, 0.0161, 0.0071, 0.0067, 0.0059, 0.0056], [0.6894, 0.1357, 0.0267, 0.0105, 0.0056, 0.0053, 0.0046, 0.0044], [0.6115, 0.1985, 0.0209, 0.0153, 0.0135, 0.0087, 0.0053, 0.0039], [0.5512, 0.3343, 0.0114, 0.0101, 0.0084, 0.0054, 0.0042, 0.0037], [0.7041, 0.2017, 0.0114, 0.0061, 0.0057, 0.0051, 0.0031, 0.0029], [0.6308, 0.232, 0.0216, 0.009, 0.0079, 0.007, 0.007, 0.0062], [0.7552, 0.1158, 0.0122, 0.0084, 0.0058, 0.0058, 0.0054, 0.0051], [0.7498, 0.079, 0.0176, 0.0176, 0.0137, 0.0137, 0.0137, 0.0083], [0.6796, 0.1181, 0.0338, 0.0299, 0.0299, 0.0141, 0.0086, 0.0076], [0.4687, 0.2214, 0.1343, 0.0436, 0.0206, 0.016, 0.0142, 0.0125], [0.4274, 0.1782, 0.1225, 0.0655, 0.0578, 0.0166, 0.0114, 0.0089], [0.3018, 0.2074, 0.111, 0.098, 0.0865, 0.0408, 0.0219, 0.015], [0.2177, 0.1165, 0.1165, 0.1165, 0.0801, 0.0624, 0.0378, 0.0334], [0.1569, 0.1222, 0.1079, 0.1079, 0.084, 0.084, 0.051, 0.051]], "ranks": {}}, {"pos": 402, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", ";", "\u00a0\u00a0", ",."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u2013**", ",", ".", " \u200b\u200b"], ["\u2013", ",", ".", " \u2013", "\u2013and", ".\u2013", "\u2026..", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " Shemale", "----------</", " Blowjob", " ;;^", " **:**"], [" **#", " **.", " **+", "---</", "\u65b0\u52a0\u5761", "-**", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</"], [" **\u2013", "-**", " **#", " **+", "\u65b0\u52a0\u5761", " **:", " **\"", "**!"], [" **", " **\u25cb", " **+", " **\u300c", " **#", " **\"", " **:", " \"**"], [" **:", " **+", " **#", " **\u25cb", " **", " **:**", " **.**", " Shemale"], [" **#", " **+", " **\u20ac", " **", " **.**", "**!", " **:", " **\u300c"], [" **\u2013", "\u4e8b\u534a\u529f\u500d", "\u4e0d\u53ef\u601d\u8bae", "clarsimp", "-Cds", ",", "\u5162\u5162\u4e1a\u4e1a", "\u5168\u5fc3\u5168\u610f"], [" **\u2013", "\u00a0", " **", "\u2013", " priorit", ",", " \u00ad", " \u2013"], [" **", " **#", " **+", " **'", " **\u2013", " '**", " \"**", " **\u20ac"], [" **", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **+", "erias", " '**", " **'", " **\u300c", " **\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " impactful", "STANCE", " **'", " **", " **\u2013", "yip", "\u52a0\u62ff\u5927"], ["\u706b\u901f", " albeit", " priorit", " arguably", " aggressively", " incentiv", " sidelined", " impactful"], [" showcasing", " impactful", "\u62e5\u6709\u7740", " showcased", " utilizing", " transitioning", " garner", "\u5468\u906d"], [" arguably", " **", " priorit", " swiftly", " akin", " showcasing", " sprawling", " seemingly"], [" **", " **\u2013", " **\u2018", " \"**", " arguably", " **'", " **+", " meticulously"], [" **", " arguably", " seemingly", " swiftly", " ostensibly", " aggressively", " sprawling", " lingering"], ["<|endoftext|>", " **", " arguably", " swiftly", " seemingly", " amongst", " myriad", " burgeoning"], ["<|endoftext|>", " swiftly", "<|file_sep|>", " \n\n", " **", " amongst", " arguably", " seemingly"], [" **", " ;;^", " \"**", " **'", " ``", " arguably", " {{--<", "\u5145\u65a5\u7740"], [" **", " ``", " notably", " {{--<", " ''", " arguably", " swiftly", " --"], [" ``", " notably", " --", " ultimately", " {{--<", " amongst", " ensuing", " seemingly"], [" \n\n", " **", " \r\n\r\n", " amongst", " {{--<", " notably", " --", " seemingly"], [" **", " **'", " **+", " ``", " **#", " \"**", " {{--<", " **:"], [" **", " **'", " {{--<", " notably", " ``", " **+", " heavily", " \n\n"], [" **", " \n\n", " **'", " heavily", " notably", " \r\n\r\n", "\n\n", " arguably"], [" **", " **'", " \n\n", " heavily", " \r\n\r\n", " **+", " .**", " disproportionately"], [" **", " \n\n", " **'", " heavily", " .**", " increasingly", " disproportionately", " **+"], [" **", " **'", " heavily", " \n\n", " .**", " increasingly", " critical", " **."], [" **", " heavily", " critical", " ,", " over", " due", " increasingly", " even"], [" **", " heavily", " critical", " complex", " heavy", " power", " rapidly", " increasingly"], [" **", " heavily", " **\u2013", " critical", " disproportionately", " infrastructure", " technological", " meticulously"], [" **", " **\u201c", " **\"", " **'", " **\u2013", " **\u2018", " \"**", " **-"], [" **", " **\u201c", " **\u2013", " **\"", " **\u2014", " **'", " **\u2018", " **-"], [" **", " **\u201c", " **\"", " **\u2013", " **\u2014", " **'", " inefficient", " bottleneck"], [" **", " bottleneck", " **\u201c", " inefficient", " hardware", " **\"", " slower", " .**"], [" **", " inefficient", " bottleneck", " **\u201c", " sluggish", " latency", " lack", " ineff"], [" **", " bottleneck", " inefficient", " latency", " **\u201c", " unpredictable", " delays", " reductions"], [" bottleneck", " latency", " inefficient", " delays", " **", " fragmentation", " optimizations", " reductions"], [" latency", " bottleneck", " inefficient", " fragmentation", " friction", " throughput", " delays", " optimizations"], [" latency", " inefficient", " fragmentation", " **", " bottleneck", " friction", " throughput", " processing"], [" inefficient", " latency", " bottleneck", " conversion", " conversions", " fragmentation", " processing", " friction"], [" inefficient", " latency", " bottleneck", " fragmentation", " delays", " friction", " conversions", " conversion"], [" inefficient", " bottleneck", " latency", " conversions", " fragmentation", " conversion", " ineff", " delays"], [" bottleneck", " inefficient", " latency", " fragmentation", " ineff", " friction", " conversions", " conversion"], [" **", " **+", " **'", " latency", " bottleneck", " inefficient", " **\"", " conversions"], [" **", " latency", " inefficient", " **+", " fragmentation", " bottleneck", " ineff", " conversions"], [" **", " **+", " **'", " latency", " **\u20ac", " fragmentation", " inefficient", " **#"], [" **", " **+", " **\u20ac", " **#", " latency", " inefficient", " **\"", " **>>"], [" **", " **+", " **#", " **'", " **\"", " **\u20ac", " **-", " **."], [" **", " **+", " **#", " **\"", " **'", " **\u20ac", " **-", "**"], [" **", " **+", " **#", " **'", " **\u20ac", " **\"", " **.", " **-"], [" **", " **+", " CPU", " **#", " GPU", " latency", " runtime", " JIT"], [" **", " **+", " **#", " JIT", " CPU", " JNI", "JNI", " runtime"], [" **", " JNI", " JIT", "JNI", " **+", " garbage", " GPU", " GC"], [" **", " JIT", " JNI", "JNI", " GPU", " **+", " CPU", " shader"], [" JIT", " **", " JNI", "JNI", " GC", " GPU", " **+", "Interop"], [" **", " JIT", " JNI", " CPU", "JNI", " marsh", " shader", " **+"], [" **", " JIT", " JNI", " CPU", "JNI", " marsh", " JVM", " GPU"], [" **", " JIT", " **.", " JNI", "**", " **+", " CPU", " **("], [" **", " JIT", " JNI", " **.", " the", " CPU", "JNI", " marsh"]], "p": [[0.6247, 0.2298, 0.0746, 0.0581, 0.0037, 0.0037, 0.0018, 0.0005], [0.2202, 0.0977, 0.0218, 0.0071, 0.0052, 0.0036, 0.0028, 0.0024], [0.4918, 0.1809, 0.1409, 0.1243, 0.0179, 0.0079, 0.0031, 0.0031], [0.0335, 0.023, 0.0158, 0.0148, 0.0139, 0.0062, 0.0051, 0.0043], [0.0481, 0.0156, 0.0156, 0.0138, 0.0129, 0.0122, 0.0122, 0.0107], [0.1552, 0.0392, 0.0346, 0.0174, 0.0164, 0.012, 0.012, 0.0106], [0.1345, 0.056, 0.0495, 0.0465, 0.034, 0.034, 0.0282, 0.0265], [0.0723, 0.0563, 0.025, 0.0235, 0.0221, 0.0207, 0.0195, 0.0183], [0.0537, 0.0393, 0.0238, 0.0174, 0.0174, 0.0164, 0.012, 0.012], [0.0061, 0.0051, 0.0035, 0.0033, 0.0029, 0.0027, 0.0024, 0.0022], [0.0696, 0.0509, 0.0309, 0.0121, 0.0069, 0.0069, 0.0054, 0.0054], [0.2744, 0.0212, 0.0187, 0.0155, 0.0044, 0.0039, 0.0025, 0.0022], [0.0316, 0.008, 0.0043, 0.0031, 0.0028, 0.0024, 0.0023, 0.0023], [0.0099, 0.0025, 0.0018, 0.0017, 0.0015, 0.0015, 0.0014, 0.0014], [0.0038, 0.0023, 0.002, 0.0019, 0.0019, 0.0019, 0.0018, 0.0017], [0.0083, 0.0053, 0.0044, 0.0042, 0.003, 0.003, 0.003, 0.0027], [0.0097, 0.0067, 0.0059, 0.0059, 0.0049, 0.0043, 0.0043, 0.0043], [0.385, 0.0262, 0.0052, 0.0046, 0.0046, 0.0043, 0.0033, 0.0029], [0.1086, 0.0275, 0.0108, 0.0079, 0.0069, 0.0065, 0.0045, 0.0042], [0.0321, 0.0195, 0.0126, 0.0111, 0.0081, 0.0072, 0.0052, 0.0046], [0.898, 0.0014, 0.0011, 0.0011, 0.001, 0.0009, 0.0007, 0.0006], [0.0817, 0.0046, 0.0036, 0.0034, 0.0028, 0.0025, 0.0023, 0.0019], [0.0468, 0.0342, 0.0056, 0.0056, 0.0056, 0.0053, 0.0038, 0.0038], [0.0156, 0.0083, 0.0078, 0.0061, 0.0057, 0.0057, 0.0054, 0.0054], [0.0203, 0.0139, 0.0102, 0.0096, 0.0079, 0.007, 0.0058, 0.0055], [0.5921, 0.0244, 0.004, 0.004, 0.0027, 0.0024, 0.0024, 0.0023], [0.4399, 0.016, 0.0036, 0.0034, 0.0026, 0.0022, 0.002, 0.002], [0.4513, 0.0539, 0.0113, 0.0069, 0.005, 0.0044, 0.0037, 0.0034], [0.7845, 0.0135, 0.0119, 0.0023, 0.0017, 0.0015, 0.0013, 0.0013], [0.9669, 0.0026, 0.0016, 0.0006, 0.0004, 0.0003, 0.0003, 0.0003], [0.95, 0.0013, 0.0013, 0.0009, 0.0008, 0.0007, 0.0006, 0.0006], [0.7541, 0.0069, 0.0051, 0.0027, 0.0027, 0.0026, 0.0021, 0.0021], [0.4702, 0.0171, 0.0171, 0.0043, 0.0043, 0.0041, 0.0041, 0.0041], [0.781, 0.0063, 0.006, 0.0036, 0.0026, 0.0021, 0.0016, 0.0015], [0.9859, 0.004, 0.0019, 0.0012, 0.0008, 0.0005, 0.0004, 0.0003], [0.9728, 0.0122, 0.004, 0.0024, 0.0012, 0.001, 0.0005, 0.0004], [0.9793, 0.0043, 0.002, 0.0011, 0.0007, 0.0007, 0.0005, 0.0005], [0.8691, 0.0062, 0.0062, 0.0038, 0.0019, 0.0018, 0.0018, 0.0016], [0.4424, 0.0438, 0.0283, 0.0142, 0.0098, 0.0098, 0.0086, 0.0081], [0.5321, 0.032, 0.03, 0.0249, 0.0104, 0.0086, 0.0076, 0.0071], [0.0929, 0.0873, 0.082, 0.0387, 0.0283, 0.0266, 0.0183, 0.0161], [0.128, 0.0776, 0.0729, 0.039, 0.0252, 0.0237, 0.0222, 0.0153], [0.0824, 0.0727, 0.0469, 0.0441, 0.0441, 0.0303, 0.0222, 0.0222], [0.151, 0.0713, 0.0556, 0.0337, 0.0297, 0.0247, 0.0247, 0.0232], [0.1347, 0.1049, 0.0817, 0.0437, 0.0282, 0.022, 0.022, 0.0194], [0.1082, 0.0656, 0.0579, 0.033, 0.0273, 0.0257, 0.0213, 0.0177], [0.0953, 0.0895, 0.0697, 0.0273, 0.0256, 0.0226, 0.02, 0.0137], [0.7235, 0.0218, 0.0205, 0.016, 0.0103, 0.0091, 0.0086, 0.0067], [0.2352, 0.0339, 0.0299, 0.0281, 0.0264, 0.0219, 0.0181, 0.0141], [0.536, 0.0822, 0.0152, 0.0134, 0.0126, 0.0098, 0.0092, 0.0087], [0.3304, 0.1142, 0.0327, 0.0271, 0.0155, 0.0113, 0.0106, 0.0073], [0.9879, 0.0075, 0.0015, 0.0008, 0.0007, 0.0004, 0.0002, 0.0002], [0.988, 0.0059, 0.0022, 0.001, 0.0008, 0.0003, 0.0002, 0.0002], [0.9848, 0.0059, 0.0024, 0.0013, 0.001, 0.0009, 0.0004, 0.0003], [0.9485, 0.0105, 0.0082, 0.005, 0.0024, 0.0018, 0.0013, 0.0011], [0.9689, 0.0058, 0.0051, 0.0045, 0.0031, 0.0019, 0.001, 0.0008], [0.8521, 0.0545, 0.0424, 0.0156, 0.0074, 0.0039, 0.0039, 0.0039], [0.5818, 0.1889, 0.1667, 0.0199, 0.0094, 0.005, 0.0035, 0.0031], [0.5299, 0.2836, 0.1518, 0.0125, 0.0076, 0.0019, 0.0012, 0.0012], [0.8116, 0.1245, 0.0404, 0.0055, 0.0043, 0.0016, 0.0012, 0.0011], [0.7577, 0.1916, 0.0377, 0.004, 0.0017, 0.0006, 0.0005, 0.0005], [0.9921, 0.0046, 0.0009, 0.0008, 0.0003, 0.0002, 0.0001, 0.0001], [0.9481, 0.0286, 0.0053, 0.0036, 0.0016, 0.0015, 0.0006, 0.0005]], "ranks": {}}, {"pos": 403, "top": [["s", "**.", " \u2013", "**\u2013", "**,", "**:", " **\u2013", "**"], ["s", " **", "**\u2013", "**.", "**,", " **\u2013", "-**", "\u2026**"], ["\u2026**", "**\u2013", "s", "**.", " **\u2013", "**\u3002", " **", "\u2019**"], ["\u300d**", " **", "\uff1f**", " **\u00ab", ">**", "\u2019**", " **\u300c", " **:"], [" **", "s", " **.", "-**", ">**", "**.", "**", "**\u3002"], [" **", "-**", " **.", "**.", ">**", "\u2019**", "**\u3002", " **:"], [" **", "**", "\u300d**", "**\u3002", "s", "-**", "**.", ">**"], [" **", "**", "s", "\u300d**", "**.", "**\u3002", "-**", "...**"], [" **", "s", "**", "...**", "**.", "\u300d**", "**\u3002", "\u2026**"], ["s", " **", "...**", "\u2026**", "-**", "**", ">**", "\u300d**"], ["s", " **", "**", "...**", "ing", "\u2026**", "**.", "er"], [" **", "s", "...**", " **\u00ab", " **#", "\u300d**", "-**", " **."], [" **", "s", " **\u00ab", "...**", "-**", " **.", "\u300d**", "**"], [" **", " **\u00ab", "s", "-**", "\u300d**", ">**", "...**", "(**"], [" **", "s", "...**", "\u300d**", "ing", "(**", "**", "\u2026**"], ["s", " **", "ing", "er", "es", "...**", "o", " impactful"], ["s", " **", "ing", "es", "er", "o", "e", "a"], [" **", "s", "...**", "ing", "es", "(**", "**", "\u300d**"], ["s", " **", "...**", "es", "**", "o", "i", "ing"], ["s", "o", "e", "i", "d", "a", "es", "er"], ["<|endoftext|>", "s", " \n\n", "\n\n", "a", "d", "  \n\n", "i"], [" **", "s", "\u300d**", " vulnerabilities", ">**", "%**", "\u2019**", " impacts"], [" **", "s", " impact", "\u300d**", " ''", " impacting", " impacts", "ing"], ["s", "<|endoftext|>", " impact", " **", " \r\n\r\n", " \n\n", "a", " rapidly"], [" \n\n", " \r\n\r\n", " **", "\r\n\r\n", "...**", " \r\n", "  \n\n", "s"], [" **", "...**", " **#", ">**", "\u2019**", " **'", "**", "\u300d**"], [" **", " hardware", " **#", "**", ">**", " impacts", " **'", " gaming"], [" **", " \n\n", " hardware", " impact", "\n\n", " \r\n\r\n", " rapidly", " rapid"], [" **", " hardware", "**", " \n\n", " impact", " technologies", " technology", " impacts"], [" **", "...**", "**", " hardware", " technology", ">**", " technologies", "\u2019**"], [" **", " hardware", " technology", " impact", " performance", " digital", " technologies", " critical"], [" **", " technology", " critical", " power", " performance", " hardware", " high", " digital"], [" **", " technology", " hardware", " critical", " power", " rapid", " impact", " digital"], [" hardware", " **", " technology", " technological", " technologies", " tech", " digital", " infrastructure"], [" **", "**", " hardware", "\u201d**", "!**", "\u2019**", "%**", "**\u201d"], ["\u2026**", " hardware", "**", "**\u2013", "\u2011", "**\u201d", "\u201d**", "\u2019**"], [" hardware", " performance", " speed", "\u2011", " latency", " software", " optimizations", " slower"], [" hardware", " performance", "\u2011", " software", " latency", " digital", " native", " complex"], [" hardware", " performance", " latency", " CPU", " labor", " technical", " engine", " digital"], [" latency", " CPU", " delays", " translation", " fragmentation", " performance", " Java", " labor"], [" latency", " translation", " CPU", " delays", " fragmentation", " conversion", " Java", " optimizations"], [" translation", " CPU", " latency", " conversion", " fragmentation", " conversions", " translations", " engine"], [" translation", " conversion", " translations", " conversions", " CPU", " latency", " fragmentation", " processing"], [" translation", " translations", " conversions", " conversion", " Translation", "\u7ffb\u8bd1", " transfers", " translator"], [" conversions", " conversion", " translation", " translations", " transfers", " latency", " transfer", " transitions"], [" conversions", " translation", " translations", " conversion", " transfers", " latency", " Translation", " translator"], [" conversions", " conversion", " translation", " translations", " transfers", " latency", " transitions", " synchronization"], [" conversions", " conversion", " translation", " translations", " transfers", " Translation", " latency", " transitions"], [" conversions", " conversion", " translation", " translations", " synchronization", " latency", " transfers", " interoper"], [" latency", " conversions", " conversion", " synchronization", " interoper", " fragmentation", " translation", " translations"], [" latency", " interoper", " synchronization", " fragmentation", " framerate", " bottleneck", " inefficient", " translation"], [" latency", " interoper", " synchronization", " CPU", " runtime", " framerate", " Interface", " bottleneck"], [" latency", " CPU", " runtime", " bottleneck", " overhead", " framerate", " Runtime", " synchronization"], [" latency", " CPU", " runtime", " framerate", " Runtime", " overhead", " throughput", " GPU"], [" CPU", " latency", " runtime", " GPU", " JIT", " memory", " Runtime", " framerate"], [" CPU", " JIT", " runtime", " JNI", " Runtime", "CPU", " GPU", "Interop"], [" JIT", " JNI", " CPU", " GPU", " GC", "JNI", " garbage", " runtime"], [" JIT", " JNI", " CPU", " GPU", " shader", "JNI", " GC", " latency"], [" JIT", " JNI", " CPU", " GC", "JNI", "Interop", " GPU", " bytecode"], [" JIT", " CPU", " JNI", " shader", " marsh", " Marsh", "JNI", "CPU"], [" JIT", " JNI", " CPU", " Marsh", " jitter", " marsh", " shader", "JNI"], [" JIT", " JNI", " CPU", " jitter", " Marsh", " marsh", " shader", "JNI"], ["J", " JIT", "CPU", "Java", "JNI", " JNI", " CPU", "Just"]], "p": [[0.9996, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.6702, 0.1028, 0.0486, 0.0294, 0.0229, 0.0202, 0.0139, 0.0139], [0.3652, 0.251, 0.1955, 0.056, 0.034, 0.03, 0.011, 0.0086], [0.1438, 0.1052, 0.0988, 0.0679, 0.0529, 0.0529, 0.0439, 0.0387], [0.5989, 0.0918, 0.0557, 0.0434, 0.0383, 0.0298, 0.0232, 0.0181], [0.6825, 0.1047, 0.03, 0.0206, 0.0182, 0.0161, 0.0142, 0.0125], [0.6661, 0.0901, 0.0426, 0.0426, 0.0258, 0.0178, 0.0178, 0.0122], [0.7655, 0.0712, 0.0262, 0.0204, 0.0204, 0.014, 0.0124, 0.0109], [0.4556, 0.2439, 0.1152, 0.0374, 0.033, 0.0257, 0.0138, 0.0107], [0.5254, 0.3611, 0.0159, 0.014, 0.014, 0.0109, 0.0109, 0.0096], [0.8519, 0.1306, 0.0074, 0.0051, 0.0015, 0.0006, 0.0005, 0.0005], [0.9653, 0.02, 0.0021, 0.0019, 0.0015, 0.0011, 0.001, 0.0008], [0.9389, 0.0134, 0.0104, 0.0059, 0.0041, 0.0036, 0.0032, 0.0019], [0.8918, 0.0163, 0.0144, 0.0077, 0.0064, 0.0036, 0.0034, 0.003], [0.8073, 0.159, 0.0051, 0.0024, 0.0014, 0.0013, 0.0013, 0.0012], [0.9424, 0.0322, 0.006, 0.0019, 0.0016, 0.0006, 0.0003, 0.0002], [0.9701, 0.0122, 0.0054, 0.004, 0.0018, 0.0011, 0.0004, 0.0002], [0.6106, 0.3268, 0.0056, 0.0039, 0.0028, 0.0023, 0.0016, 0.0015], [0.9763, 0.0158, 0.0031, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9612, 0.0022, 0.0019, 0.0017, 0.0015, 0.0013, 0.0009, 0.0009], [0.9197, 0.023, 0.0168, 0.0023, 0.0017, 0.0014, 0.0011, 0.0011], [0.0819, 0.0235, 0.022, 0.0052, 0.0046, 0.0046, 0.0043, 0.0038], [0.0359, 0.028, 0.0075, 0.0075, 0.0062, 0.0059, 0.0055, 0.004], [0.0373, 0.005, 0.0047, 0.0042, 0.0037, 0.0037, 0.0035, 0.0031], [0.3128, 0.1225, 0.0398, 0.031, 0.0107, 0.0101, 0.0047, 0.0039], [0.9146, 0.0054, 0.0042, 0.004, 0.0024, 0.0021, 0.0019, 0.0018], [0.6986, 0.0064, 0.0047, 0.0047, 0.0037, 0.0032, 0.0032, 0.0032], [0.2959, 0.1233, 0.0065, 0.0054, 0.0051, 0.0045, 0.0035, 0.0031], [0.6532, 0.0136, 0.0127, 0.0064, 0.0057, 0.005, 0.0044, 0.0036], [0.9043, 0.0089, 0.0078, 0.0033, 0.0017, 0.0014, 0.0014, 0.0012], [0.3833, 0.0216, 0.0203, 0.0116, 0.0116, 0.008, 0.007, 0.0058], [0.2172, 0.0157, 0.0148, 0.013, 0.0108, 0.0095, 0.0095, 0.0084], [0.1739, 0.0195, 0.0195, 0.0172, 0.0126, 0.0111, 0.0092, 0.0072], [0.1311, 0.04, 0.0331, 0.0201, 0.0189, 0.0147, 0.0138, 0.013], [0.3277, 0.0606, 0.0391, 0.0368, 0.0163, 0.0153, 0.0144, 0.0144], [0.1115, 0.0635, 0.0561, 0.0495, 0.0437, 0.0362, 0.0265, 0.0182], [0.1151, 0.0451, 0.0273, 0.0227, 0.02, 0.0166, 0.0114, 0.0095], [0.0481, 0.0375, 0.0257, 0.0188, 0.0156, 0.0101, 0.0101, 0.0079], [0.0566, 0.0414, 0.0303, 0.0267, 0.0152, 0.0119, 0.0119, 0.0119], [0.0632, 0.0205, 0.0193, 0.017, 0.016, 0.0141, 0.0132, 0.0132], [0.0825, 0.0533, 0.05, 0.0366, 0.0252, 0.0196, 0.0196, 0.0184], [0.1071, 0.0736, 0.0573, 0.0539, 0.0446, 0.0327, 0.0307, 0.0198], [0.16, 0.071, 0.0667, 0.0667, 0.0431, 0.0315, 0.0296, 0.0191], [0.2273, 0.1143, 0.089, 0.0738, 0.0371, 0.0271, 0.0175, 0.0165], [0.1832, 0.1259, 0.1183, 0.0921, 0.0384, 0.0339, 0.0133, 0.0125], [0.2159, 0.1484, 0.1309, 0.1086, 0.0292, 0.0214, 0.0138, 0.0101], [0.2477, 0.1326, 0.117, 0.0804, 0.0261, 0.0216, 0.0123, 0.0109], [0.1743, 0.1445, 0.0993, 0.0727, 0.0251, 0.0152, 0.0134, 0.0126], [0.0955, 0.0617, 0.048, 0.0451, 0.0291, 0.0227, 0.0213, 0.0146], [0.0615, 0.045, 0.0373, 0.0329, 0.0273, 0.0241, 0.0226, 0.0156], [0.0483, 0.0332, 0.0258, 0.0167, 0.0108, 0.0108, 0.0079, 0.0058], [0.2345, 0.0492, 0.0408, 0.036, 0.0263, 0.0193, 0.017, 0.015], [0.3836, 0.0804, 0.043, 0.0278, 0.0261, 0.0261, 0.0245, 0.0179], [0.3434, 0.2083, 0.0527, 0.0437, 0.0265, 0.022, 0.0151, 0.0142], [0.3864, 0.0977, 0.0862, 0.0461, 0.0317, 0.0317, 0.028, 0.0181], [0.3524, 0.2422, 0.0786, 0.0421, 0.0328, 0.0155, 0.0145, 0.0137], [0.4441, 0.2377, 0.1442, 0.0365, 0.0284, 0.0195, 0.0152, 0.0046], [0.6293, 0.2043, 0.0585, 0.0313, 0.0131, 0.009, 0.007, 0.0037], [0.8341, 0.1129, 0.0135, 0.0119, 0.0039, 0.0039, 0.003, 0.0013], [0.6765, 0.1332, 0.1176, 0.0085, 0.004, 0.0038, 0.0036, 0.0029], [0.8644, 0.0804, 0.038, 0.0015, 0.0015, 0.0012, 0.0011, 0.0008], [0.7804, 0.1356, 0.0236, 0.0068, 0.0044, 0.0044, 0.0038, 0.0036], [0.3711, 0.1547, 0.1365, 0.0828, 0.0731, 0.0286, 0.0144, 0.0087]], "ranks": {}}, {"pos": 404, "top": [[" \u2013", ".", "\u6700\u65b0\u53d1\u5e03", "\u2013", "\u2013and", "  \n", "   \n", "\u2018"], ["\u6700\u65b0\u53d1\u5e03", "  \n", "   \n", " \u2013", "\u2013and", " \u2013**", "\u2018", "  \r\n"], ["\u2013", " \u2013", "\u2013and", "\u2018", "\u6700\u65b0\u53d1\u5e03", ".\u2013", " \u2013,", "\u3002"], [" Blowjob", " ;;^", " cumshot", " Guta", " Hidal", " Strec", " Shemale", "&eacute"], ["&A", "&eacute", "enkins", " Hidal", " --", "&(", " Guta", "&P"], [" Guta", " Hidal", "dias", "elib", "enkins", "&A", "hj", "cow"], ["--)", ";j", "&eacute", "*j", "&A", "sj", "-j", "-&"], ["-J", "-j", "erman", "-&", "dj", "&eacute", ";j", "_J"], ["athon", "/&", "-J", "\\\\\"", "/J", "&P", "_J", "uxtap"], ["-J", "-j", "/J", "\\\\\"", "_J", "kJ", "uxtap", ";j"], ["-J", "...", "-j", "j", "\\\\\"", "...\\", "...\"", "...*"], ["uxtap", "izer", "ij", "ifier", "kJ", "iverse", "&eacute", "erman"], ["izer", "uxtap", "ij", "ifier", "iverse", "ik", "itarian", "ace"], ["-j", "ace", "ik", "-J", "j", "ij", "jet", "uxtap"], ["j", "ace", "r", "ork", "w", "ic", "-j", "p"], ["j", "r", "w", "l", "ace", "&", "p", "ic"], ["j", "w", "r", "p", "l", "d", "k", "&"], ["j", "-j", "ace", "ik", "ic", "w", "-&", "&"], ["j", "-&", "-j", "ace", "-J", "/&", "&", "js"], ["j", "-&", "ace", "-j", "&", "js", "ic", "ik"], ["j", "J", "@", "&", "--", "-&", "w", "p"], ["-j", "ace", "j", "/J", ".jet", "&eacute", "iji", "js"], ["j", "ace", "-j", "JJ", "&eacute", "-&", "/J", "J"], ["j", "J", "-j", "id", "--", "w", "-J", " --"], ["j", "Java", "`\\", "_J", "--", "/J", "-j", "J"], ["Java", " JVM", " Java", " JDK", "_java", "-java", "/java", "/jav"], ["Java", " JVM", " Java", " JDK", "-java", "_java", "/java", "/jav"], [" Java", " --", "Java", " JVM", " `", " JDK", " ``", "--"], ["Java", " JVM", " Java", " JDK", "ware", "java", "/java", "-java"], ["Java", " JVM", " Java", "...**", "java", " JDK", "-java", "ware"], [" Java", "Java", " JVM", "java", " JDK", "/java", ".Java", "ware"], [" Java", "Java", "/J", " JVM", "\\\"", "/", "j", " JDK"], ["/", "/J", "&", "j", "-", "/j", " Java", "J"], ["/J", "/", "/j", "-/", "/java", "Java", " JVM", "-j"], ["/J", "/j", "/", "**", "\u2026**", "-/", "...**", "!**"], ["/J", "/j", "/", "**", "\u2026**", "-/", "\u2011", "\u2026*"], ["/J", "/j", "/", " JVM", "**", "/java", "-/", "Java"], ["/J", "/j", "/", "\u2011", " JVM", "-/", "Java", "/java"], ["/J", "/j", "\u2011", "/", " JVM", " JIT", "/java", "\uff0f"], ["/J", " JVM", " JIT", "/j", "\u2011", "Java", "/java", "/"], [" JIT", "/J", " JVM", "/", "/j", "\uff0f", " bytecode", "/runtime"], [" JIT", " JVM", "/J", " bytecode", "/runtime", "/j", "/", "Java"], [" JIT", " JVM", "/J", " bytecode", "/runtime", " JDK", "/", "Java"], [" JIT", " JVM", "/", "\uff0f", "/J", " bytecode", "\u8f6c\u6362", "\u6216"], [" JIT", " JVM", "/", "/J", "-java", "-transition", " bytecode", "-delay"], ["/", " JIT", "/J", "/j", "-/", " JVM", "-transition", "/R"], ["/", "/J", "-/", "/OR", " JIT", "/j", "/or", "-vs"], ["/", "/D", "/or", "/J", "\uff0f", "-/", "/R", "/L"], ["/", "/D", "/or", "/J", "/P", "-/", "/L", "/R"], ["/", "/J", "/D", "/L", "/T", "/P", "/M", "/or"], ["/J", "/j", "/D", "/T", "/P", "/L", "/Z", "/Q"], ["/J", "/", "/A", "/T", "/G", "/D", "/M", "/E"], ["/J", "/", "/j", "/M", "/T", "/X", "/G", "/A"], ["/J", "/", "/j", "/M", "/T", "/C", "/G", "/D"], ["/J", " JIT", "/j", "-runtime", "/runtime", "-J", "/Runtime", "(J"], ["/J", " JIT", "-runtime", "Interop", "/Runtime", "/runtime", "runtime", " bytecode"], [" JIT", "/J", " JNI", " bytecode", "/Runtime", "JNI", "Interop", "/runtime"], [" JIT", "/J", " JNI", " JVM", "jit", " bytecode", "VM", "JNI"], ["/J", " JIT", "/j", "jit", " jit", " JNI", "-J", ">J"], [" JIT", "/J", "jit", " jit", "/A", "/j", " JNI", " jitter"], [" JIT", "/J", "/A", "jit", " jit", "/j", " JNI", " jitter"], ["IT", "/J", " JIT", "/A", "jit", " IT", " jit", "itted"], ["IT", " IT", " JIT", "iT", "itted", "it", "/A", "ITT"]], "p": [[0.1582, 0.1312, 0.096, 0.062, 0.0293, 0.0089, 0.0084, 0.0061], [0.2207, 0.1425, 0.1181, 0.0383, 0.0248, 0.011, 0.011, 0.0043], [0.2635, 0.2325, 0.1501, 0.0911, 0.0296, 0.014, 0.0062, 0.0058], [0.0181, 0.0103, 0.0091, 0.0059, 0.0052, 0.0049, 0.0043, 0.004], [0.0164, 0.0164, 0.0078, 0.0053, 0.0044, 0.0044, 0.0039, 0.0039], [0.0049, 0.0036, 0.0033, 0.0031, 0.0028, 0.0023, 0.002, 0.0019], [0.0103, 0.0103, 0.0075, 0.0071, 0.0059, 0.0055, 0.0055, 0.0043], [0.0159, 0.014, 0.0096, 0.0096, 0.0091, 0.0075, 0.0055, 0.0055], [0.0216, 0.0191, 0.0168, 0.0158, 0.0148, 0.0123, 0.0109, 0.0102], [0.0631, 0.0317, 0.015, 0.011, 0.008, 0.008, 0.0075, 0.0062], [0.0533, 0.0268, 0.0237, 0.0222, 0.0184, 0.0173, 0.0163, 0.0144], [0.0204, 0.0103, 0.0059, 0.0043, 0.004, 0.0038, 0.0033, 0.0033], [0.0105, 0.0087, 0.0068, 0.0056, 0.0053, 0.0044, 0.0036, 0.0036], [0.0082, 0.0082, 0.0056, 0.0047, 0.0039, 0.0036, 0.003, 0.0028], [0.0499, 0.0111, 0.0098, 0.0098, 0.0092, 0.0092, 0.0076, 0.0072], [0.0774, 0.0236, 0.0208, 0.0173, 0.0112, 0.0098, 0.0092, 0.0082], [0.0941, 0.0392, 0.0325, 0.0238, 0.0223, 0.0185, 0.0185, 0.0154], [0.0483, 0.0138, 0.013, 0.0095, 0.0084, 0.0074, 0.0074, 0.0074], [0.0482, 0.0228, 0.013, 0.0107, 0.0074, 0.0074, 0.0074, 0.0069], [0.1204, 0.0345, 0.0185, 0.0144, 0.0127, 0.0119, 0.0082, 0.0077], [0.115, 0.0578, 0.0188, 0.0156, 0.0094, 0.0089, 0.0089, 0.0083], [0.0211, 0.0165, 0.0088, 0.0073, 0.0069, 0.0064, 0.0064, 0.0047], [0.0416, 0.0144, 0.0112, 0.0082, 0.0077, 0.0072, 0.0064, 0.0053], [0.0507, 0.0145, 0.0073, 0.0069, 0.0064, 0.0064, 0.0064, 0.0057], [0.0185, 0.0164, 0.012, 0.012, 0.0106, 0.0082, 0.0082, 0.0077], [0.1091, 0.085, 0.075, 0.0377, 0.0229, 0.0215, 0.0148, 0.0139], [0.0939, 0.0645, 0.0503, 0.0237, 0.0223, 0.0174, 0.0077, 0.0064], [0.054, 0.0371, 0.0155, 0.0113, 0.0088, 0.0078, 0.0069, 0.005], [0.1325, 0.0666, 0.0666, 0.0216, 0.0131, 0.0096, 0.009, 0.0085], [0.2947, 0.07, 0.0545, 0.0242, 0.0188, 0.0129, 0.0129, 0.0107], [0.1528, 0.1118, 0.0818, 0.0301, 0.022, 0.022, 0.0207, 0.0194], [0.1246, 0.0458, 0.0315, 0.0245, 0.0158, 0.0149, 0.014, 0.0131], [0.2658, 0.0631, 0.0247, 0.0232, 0.0232, 0.011, 0.011, 0.0103], [0.2538, 0.2104, 0.0994, 0.0196, 0.0184, 0.0152, 0.0072, 0.0068], [0.4773, 0.165, 0.0503, 0.0253, 0.0099, 0.0099, 0.0082, 0.0082], [0.5237, 0.15, 0.0216, 0.0149, 0.014, 0.0085, 0.008, 0.007], [0.5978, 0.1334, 0.015, 0.0066, 0.0062, 0.0062, 0.0059, 0.0046], [0.5104, 0.1212, 0.0254, 0.0198, 0.0106, 0.0064, 0.006, 0.006], [0.4842, 0.0896, 0.0373, 0.033, 0.031, 0.01, 0.0094, 0.0083], [0.3284, 0.0733, 0.0504, 0.0418, 0.027, 0.0223, 0.0197, 0.0164], [0.3094, 0.1877, 0.129, 0.0347, 0.0239, 0.0186, 0.0113, 0.0113], [0.3593, 0.1594, 0.0908, 0.0356, 0.0245, 0.0179, 0.0148, 0.0139], [0.2898, 0.1457, 0.0536, 0.0504, 0.0346, 0.0174, 0.0144, 0.0136], [0.2139, 0.0421, 0.0372, 0.0328, 0.0155, 0.0155, 0.0137, 0.0137], [0.1737, 0.0439, 0.0284, 0.0152, 0.0118, 0.0104, 0.0098, 0.0081], [0.2116, 0.0687, 0.0503, 0.0144, 0.0144, 0.0119, 0.0112, 0.0105], [0.5131, 0.0372, 0.0225, 0.0187, 0.0155, 0.0146, 0.0137, 0.0113], [0.9391, 0.0049, 0.0049, 0.0049, 0.0049, 0.0038, 0.0026, 0.0023], [0.6837, 0.0265, 0.0265, 0.0234, 0.0151, 0.0142, 0.0133, 0.0125], [0.1969, 0.0821, 0.0724, 0.0413, 0.0364, 0.0342, 0.0321, 0.0284], [0.4827, 0.0422, 0.0328, 0.0212, 0.0187, 0.0165, 0.0137, 0.0137], [0.6694, 0.026, 0.0229, 0.0229, 0.0202, 0.0178, 0.0178, 0.0139], [0.7466, 0.0421, 0.0176, 0.0155, 0.0155, 0.0137, 0.0121, 0.0121], [0.716, 0.0216, 0.0191, 0.0168, 0.0116, 0.0116, 0.0116, 0.0116], [0.9751, 0.0123, 0.0066, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002], [0.3606, 0.2808, 0.0431, 0.023, 0.0217, 0.0203, 0.018, 0.0149], [0.6288, 0.1403, 0.0663, 0.0123, 0.0115, 0.0102, 0.009, 0.007], [0.8346, 0.145, 0.0072, 0.0021, 0.0016, 0.0013, 0.0009, 0.0008], [0.6765, 0.3196, 0.0017, 0.0006, 0.0005, 0.0004, 0.0002, 0.0002], [0.5355, 0.4171, 0.0208, 0.0087, 0.0076, 0.003, 0.0013, 0.0004], [0.6217, 0.3327, 0.0166, 0.0166, 0.0051, 0.0013, 0.0012, 0.0003], [0.3453, 0.2689, 0.2094, 0.0771, 0.0467, 0.0283, 0.0072, 0.0022], [0.9959, 0.0013, 0.0011, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 405, "top": [[".", "ting", ",", ";", " \u00a0", "te", "\u00ad", "\u00a0"], ["ting", "  \n", "\u0627\u064b", " HIT", " SIT", "care", "rans", "est"], [":'", " \u24d8", ":\\\"", "\u2026..", "?\u201c", ":\"", ".:**", "?'"], [" Blowjob", " Shemale", " ;;^", " Geile", " Guta", " Strec", " cumshot", " milfs"], [" Geile", " Guta", " Postado", " Shemale", " ;;^", " Hidal", "rans", " Strec"], [" Geile", " Guta", " Shemale", " Postado", " ;;^", " Blowjob", " Hidal", "~-~-~-~-"], ["rans", "\ud83d\ude09", ".\ufffd", " JT", "ronic", " \u200b\u200b", "ting", ",\u2019\u201d"], [".", ".\ufffd", ",", "rans", "ting", " \u200b\u200b", ".-", ".\u201c"], [".", ",", ".\u201d", ".\u201c", " \u200b\u200b", ".\u00bb", ";", ".\ufffd"], [",", "\u00adi", ".", ";", " JT", ".\ufffd", "\u00ad", "ting"], [".", ",", " \u200b\u200b", ".\ufffd", ".-", ".\"", ".\u00ab", "\u200b\u200b"], [" \u200b\u200b", "ting", "rans", "\u00adi", " JT", ".\u00ab", ".\ufffd", " JIT"], [" \u200b\u200b", "ting", ".\u00ab", "\u200b\u200b", "rans", "\u00adi", " tech", " JT"], [" \u200b\u200b", "ting", " tech", " JIT", " theater", " technologies", " JT", " scenarios"], [" tech", "ting", ",", " IT", "\u2014", " JT", "-esque", "-"], [" tech", "ting", " IT", "-esque", " JT", " savvy", " blockbuster", "\u2014"], [" tech", "ting", ",", "-esque", " IT", " JT", " \u200b\u200b", "tech"], [" tech", "ting", " JIT", "-tech", "-esque", " \u200b\u200b", "tech", " tweaks"], [" tech", "ting", " JIT", " ;;^", "-tech", "-esque", " JT", "TED"], ["ting", " JIT", " tech", " JT", "-esque", "tech", "ement", "TED"], ["ting", " JIT", " JT", " tech", "-esque", "tech", "ted", "ement"], [" ;;^", " JIT", "ting", "tizz", "iliz", "jaz", "TED", " theaters"], [" JIT", "ting", " ;;^", "iliz", " tech", "\u09cd\u099e", "&quot", " jazz"], [" JIT", "ting", " ...", " jazz", " --", " tech", " JT", " ;;^"], [" JIT", "ting", " tech", " --", " jazz", " ;;^", "TED", " JT"], [" JIT", " jazz", " Jazz", " ;;^", " tech", " JVM", " programmer", " software"], [" JIT", " jazz", " Jazz", " programming", " engine", " programmer", " technology", " engines"], [" JIT", " jazz", " Jazz", " engine", " technology", " programming", " tech", " software"], [" JIT", " jazz", " Jazz", " engine", " programming", " tech", " engines", " technology"], [" JIT", " jazz", " programming", " engine", " technology", " tech", " engines", " ..."], [" JIT", " engine", " technology", " jazz", " programming", " engines", " technologies", " tech"], [" technology", " engine", " programming", " JIT", " jazz", " technologies", " engines", " tech"], [" technology", " engine", " JIT", " tech", " engines", " programming", " jazz", " /"], [" JIT", " technology", " tech", " technologies", " engines", " engine", " programming", " jazz"], [" JIT", " tech", " engines", " engine", "/J", "/engine", "/runtime", " technologies"], [" JIT", "/runtime", "/J", " engines", " engine", " /", " JVM", " jazz"], [" JIT", "/runtime", " engine", " engines", " JVM", " optimizations", "/J", " runtime"], [" JIT", " engine", " engines", " optimizations", "/runtime", " JVM", " runtime", " bytecode"], [" JIT", " optimizations", " engine", "/runtime", " runtime", " engines", " performance", " JVM"], [" JIT", " optimizations", "/runtime", " engine", " runtime", " engines", " performance", " JVM"], [" JIT", " optimizations", " engine", " runtime", " engines", " bytecode", " performance", " CPU"], [" JIT", " engine", " optimizations", " engines", " bytecode", " CPU", " runtime", " algorithms"], [" JIT", " engine", " optimizations", " bytecode", " engines", " runtime", " improvis", " CPU"], [" JIT", " optimizations", " engine", " engines", " bytecode", " CPU", " algorithms", " runtime"], [" JIT", " optimizations", " restrictions", " optimization", " engines", " engine", " runtime", " bytecode"], [" JIT", "/", " /", " restrictions", " conversions", " vs", " optimizations", " delays"], ["/", " JIT", " /", " vs", " restrictions", "/OR", "/J", " optimizations"], ["/", " /", "/C", "/D", "/M", "/L", "/J", "/S"], ["/", " /", "/D", "/C", "/L", "/M", " vs", "/J"], ["/", "/C", "/D", "/M", "/J", "/L", "/S", "/T"], ["/", "/J", "/C", "/D", "/L", "/T", "/S", "/M"], ["/", "/J", "/C", "/T", "/M", "/D", "/A", "/S"], ["/", "/J", "/C", "/M", "/T", "/D", "/A", "/R"], ["/", "/J", "/C", "/M", "/T", "/Q", "/D", "/F"], ["/J", "/runtime", " limitations", " runtime", " JIT", "/", " latency", "/Runtime"], ["/J", "/runtime", " runtime", " limitations", " JIT", " overhead", "/Runtime", " restrictions"], ["/J", " JIT", " startup", " overhead", " compilation", "/runtime", " limitations", "/Runtime"], [" compilation", " Compilation", " compile", "Compilation", "\u7f16\u8bd1", " compiling", " compil", "compile"], [" compilation", " Compilation", " JIT", "/J", "Compilation", " compile", "/compiler", " compiling"], [" compilation", " Compilation", "/A", " compile", "Compilation", " compil", " compiling", " warm"], [" compilation", "/A", " Compilation", " compiler", " compile", " overhead", " compil", " compiling"], [" compilation", "/A", " Compilation", " overhead", " compiler", "/W", "/J", " compile"], ["/A", " compilation", "/W", "/", " overhead", "/J", "/C", "/L"]], "p": [[0.4061, 0.1163, 0.0851, 0.0378, 0.0333, 0.026, 0.0178, 0.0108], [0.0385, 0.0234, 0.0133, 0.0117, 0.0081, 0.0071, 0.0046, 0.0046], [0.0211, 0.0154, 0.0145, 0.0113, 0.0099, 0.0093, 0.0073, 0.0068], [0.0841, 0.0742, 0.045, 0.0351, 0.0166, 0.0129, 0.0121, 0.0107], [0.0203, 0.0179, 0.0123, 0.008, 0.0055, 0.0051, 0.0048, 0.0043], [0.0225, 0.0199, 0.0113, 0.0073, 0.0053, 0.005, 0.0044, 0.0039], [0.0277, 0.0123, 0.009, 0.0066, 0.0062, 0.0055, 0.0051, 0.0043], [0.1089, 0.0332, 0.0228, 0.0189, 0.0189, 0.0157, 0.0138, 0.0122], [0.2637, 0.0856, 0.0588, 0.0315, 0.0315, 0.0296, 0.0179, 0.0149], [0.1664, 0.0137, 0.0113, 0.0094, 0.0094, 0.0069, 0.0057, 0.0057], [0.4513, 0.0476, 0.0307, 0.0164, 0.0164, 0.0145, 0.0128, 0.0094], [0.0159, 0.0131, 0.009, 0.0062, 0.0055, 0.0055, 0.0051, 0.0048], [0.0905, 0.0148, 0.0062, 0.0048, 0.0045, 0.004, 0.0035, 0.0029], [0.0376, 0.0167, 0.0069, 0.0035, 0.0033, 0.0031, 0.0029, 0.0029], [0.0241, 0.0177, 0.0114, 0.0074, 0.0065, 0.0051, 0.0037, 0.0035], [0.0642, 0.0127, 0.0087, 0.0077, 0.0053, 0.005, 0.0039, 0.0039], [0.0751, 0.0402, 0.0102, 0.009, 0.0084, 0.0054, 0.0051, 0.0048], [0.0481, 0.0331, 0.0114, 0.0089, 0.0079, 0.0079, 0.0074, 0.0057], [0.0206, 0.0194, 0.0171, 0.0086, 0.0067, 0.0049, 0.0043, 0.0043], [0.0593, 0.028, 0.0124, 0.0117, 0.0071, 0.0055, 0.0046, 0.0038], [0.1024, 0.0215, 0.0139, 0.0084, 0.0079, 0.0061, 0.0045, 0.0033], [0.0257, 0.0177, 0.0114, 0.0078, 0.0054, 0.0039, 0.0035, 0.0033], [0.0585, 0.019, 0.0102, 0.009, 0.007, 0.0058, 0.0058, 0.0048], [0.0738, 0.0211, 0.0106, 0.0069, 0.0064, 0.0057, 0.0053, 0.005], [0.218, 0.0216, 0.0079, 0.0066, 0.0062, 0.0055, 0.0038, 0.0035], [0.297, 0.0428, 0.013, 0.0102, 0.009, 0.0066, 0.0048, 0.0042], [0.1072, 0.0476, 0.0327, 0.0198, 0.0175, 0.0164, 0.0113, 0.0113], [0.0912, 0.0278, 0.0261, 0.0231, 0.0149, 0.0123, 0.0123, 0.0109], [0.1775, 0.0256, 0.0155, 0.0146, 0.0146, 0.0137, 0.0121, 0.0121], [0.0544, 0.0213, 0.0156, 0.0156, 0.0121, 0.0107, 0.0101, 0.0101], [0.0724, 0.0342, 0.0321, 0.0302, 0.025, 0.0235, 0.0208, 0.0195], [0.0477, 0.0289, 0.0272, 0.024, 0.0187, 0.0175, 0.0165, 0.0165], [0.0376, 0.0312, 0.0293, 0.0201, 0.0189, 0.0189, 0.0189, 0.0189], [0.0613, 0.0272, 0.0272, 0.0256, 0.024, 0.0226, 0.0187, 0.0094], [0.1811, 0.0203, 0.014, 0.0123, 0.0102, 0.0066, 0.0066, 0.0055], [0.2953, 0.0147, 0.0115, 0.0108, 0.0101, 0.0095, 0.0065, 0.0042], [0.4356, 0.0204, 0.0191, 0.014, 0.0124, 0.009, 0.008, 0.0058], [0.4061, 0.0313, 0.019, 0.019, 0.0102, 0.0095, 0.007, 0.0066], [0.488, 0.0332, 0.0243, 0.0178, 0.0157, 0.0138, 0.0108, 0.0089], [0.5767, 0.0253, 0.0174, 0.0154, 0.012, 0.0088, 0.0088, 0.0082], [0.8523, 0.0227, 0.0089, 0.0061, 0.0051, 0.0045, 0.0037, 0.0037], [0.8407, 0.021, 0.0198, 0.0099, 0.0093, 0.0068, 0.0047, 0.0034], [0.847, 0.0146, 0.0129, 0.0114, 0.0078, 0.0061, 0.0039, 0.0037], [0.8332, 0.0105, 0.0082, 0.0056, 0.005, 0.0032, 0.0028, 0.0028], [0.8294, 0.0134, 0.0046, 0.0038, 0.0038, 0.0038, 0.0032, 0.0032], [0.5882, 0.1158, 0.0214, 0.0157, 0.0079, 0.0074, 0.007, 0.0048], [0.6699, 0.1027, 0.0294, 0.0108, 0.0096, 0.0066, 0.0054, 0.0042], [0.9704, 0.0065, 0.0016, 0.0015, 0.0015, 0.0012, 0.0008, 0.0008], [0.8765, 0.0097, 0.0071, 0.0055, 0.0055, 0.0052, 0.0049, 0.0046], [0.7247, 0.0193, 0.0193, 0.017, 0.015, 0.015, 0.0133, 0.0117], [0.4056, 0.1317, 0.0377, 0.0294, 0.0294, 0.0294, 0.0259, 0.0202], [0.4763, 0.225, 0.0269, 0.0269, 0.0185, 0.0185, 0.0163, 0.0144], [0.6809, 0.0813, 0.0339, 0.0181, 0.016, 0.0125, 0.0125, 0.011], [0.4305, 0.1584, 0.0454, 0.0312, 0.0214, 0.0189, 0.0189, 0.0147], [0.6821, 0.056, 0.0436, 0.03, 0.0233, 0.0206, 0.0097, 0.0097], [0.2367, 0.1627, 0.0987, 0.0871, 0.0769, 0.0599, 0.0466, 0.0194], [0.3217, 0.2505, 0.0493, 0.0435, 0.0384, 0.0384, 0.0264, 0.0264], [0.9579, 0.0175, 0.0065, 0.0039, 0.0035, 0.003, 0.0018, 0.0013], [0.8995, 0.0448, 0.0212, 0.01, 0.0078, 0.0037, 0.0032, 0.002], [0.9462, 0.0286, 0.0044, 0.0039, 0.0023, 0.0021, 0.0021, 0.0018], [0.958, 0.0199, 0.0106, 0.0024, 0.0021, 0.0018, 0.0014, 0.001], [0.573, 0.3938, 0.0072, 0.005, 0.0044, 0.0034, 0.0018, 0.0011], [0.9634, 0.0107, 0.0074, 0.0065, 0.0024, 0.0016, 0.0009, 0.0008]], "ranks": {}}, {"pos": 406, "top": [[" \u2013", "i", "en", "@\"", "\u0647", "\u30f3", " *\u2013", "u"], ["i", " \u2013", " \u2013**", "\u30f3", " *\u2013", "\u0647", "en", "\u2013\u2013"], ["i", " \u2013", " *\u2013", " \u2013**", "\u30f3", "en", "**\u2013", "\u2013\u2013"], ["\u30f3", "ihi", "iho", " \\\"\"", "enzi", "\u0647", " *\u2013", "*\u201c."], ["i", "\u30f3", "en", " *@", "ihi", "\u0647", "iho", "@\""], ["i", "en", "\u30f3", "ihi", "\u064a", "\u0647", "\u0438", " *\u2013"], ["i", "en", "\u0647", "\u30f3", "ihi", "\u064a", "\u0438", "@\""], ["i", "en", "\u30f3", " *@", "ihi", "\u0647", "@\"", "\\\\\""], ["i", "en", " *@", "\\\\\"", "@\"", "\u0647", "\u30f3", " *\u2013"], ["i", "en", "\\\\\"", "iha", "!--", "\u30f3", "ihi", "\u0647"], ["i", "en", "\\\\\"", "u", "\u30f3", "\u0647", "@\"", "(~"], ["en", "i", "iha", "\\\\\"", "gorithm", "\u30f3", "iante", " *\u2013"], ["en", "i", "\u30f3", "\u0647", "iha", "iative", "iante", "raries"], ["en", "i", "iha", "\u30f3", "\u0647", "ihi", "raries", "iative"], ["i", "en", "\u0647", "u", "iha", "an", "-&", "\u30f3"], ["i", "en", "u", "es", "an", "-&", "\u0647", "iha"], ["i", "en", "u", "es", "an", "y", "\u0647", "ic"], ["i", "en", "es", "u", "\u0647", "iha", "\\\\\"", "iative"], ["i", "en", "\u0647", "iha", "iative", "u", "es", "\\\\\""], ["i", "en", "u", "es", "\u0647", "an", "-&", "iative"], ["i", "en", "u", "an", "es", "\u0647", "@", "-&"], ["en", "i", "iha", "iative", "iante", "ihi", "\u0647", "\u8272\u5217"], ["i", "en", "iha", "\u0647", "iative", "es", "ihi", "\u30f3"], ["i", "en", "an", "es", "u", "\u0647", "y", "-&"], ["i", "en", "iative", "-&", "iha", "u", "ic", "ihi"], ["i", "en", "iative", "ihi", "iha", "pace", "iya", "udio"], ["en", "i", "iative", "pace", "udio", "ihi", "iya", "es"], ["i", "en", " ____", " ___", " tech", "es", "ic", "pace"], ["i", "en", " ____", " tech", "pace", "-tech", "____", "ic"], ["i", " ____", "en", "____", " ___", "es", " technology", " tech"], ["i", "en", " technology", " tech", "es", " ____", "an", "-heavy"], ["i", "en", "/", " tech", " technology", "es", "an", " complex"], ["i", "en", "/", " tech", " technology", " complex", " /", "es"], ["i", "/", " tech", " *\u2013", " \u2013**", "-heavy", "en", "-tech"], ["/", "i", " \u2013**", " *\u2013", "**\u2013", "/etc", "-heavy", " tech"], [" \u2013**", "**\u2013", " *\u2013", "i", "/", " **\u2013", "*\u201d", "\u2013"], ["/", " \u2013**", "*\u201d", "**\u2013", " \u200b\u200b", " *\u2013", "/auto", "i"], [" hybrid", "/", " \u200b\u200b", "i", "\u2011", "*\u201d", "/etc", " hybrids"], [" hybrid", " \u200b\u200b", "/", "\u2011", "i", " optimizations", " Hybrid", " hybrids"], [" hybrid", " \u200b\u200b", " Hybrid", " hybrids", "ybrid", " optimizations", " JIT", "/"], [" hybrid", " optimizations", "/", " Hybrid", " hybrids", " JIT", " optimized", " optimization"], [" optimizations", " hybrid", " Hybrid", " JIT", " optimization", "/", " optimized", " hybrids"], [" optimizations", " hybrid", " Hybrid", " optimization", "/", " hybrids", " optimized", " JIT"], [" hybrid", " Hybrid", " optimizations", " optimization", " hybrids", " conversion", "/", " conversions"], [" hybrid", " optimizations", " optimization", " Hybrid", " hybrids", " conversion", " conversions", " transitions"], [" hybrid", " transition", " Hybrid", " transitions", " conversion", "/", " conversions", " hybrids"], [" hybrid", " transition", " transitions", " Hybrid", " conversion", "/", " transitioning", " Transition"], [" hybrid", " transition", " transitions", " Hybrid", " conversion", " transitioning", " Transition", " conversions"], [" transition", " hybrid", " transitions", " conversion", " mismatch", " ambiguity", " complexities", " conversions"], [" conversion", " conversions", " transition", " inconsistencies", " transitions", " hybrid", " restrictions", " limitations"], [" inconsistencies", " mismatch", " inconsistency", " conversion", " limitations", " transition", " conversions", " complexities"], [" mismatch", " conversion", " inconsistencies", " conversions", " optimizations", " limitations", " transitions", " transition"], [" conversion", " mismatch", " conversions", " inconsistencies", " optimizations", " mism", " ambiguity", " limitations"], [" conversion", " mismatch", " ambiguity", " optimizations", " limitations", " conversions", " inconsistencies", " bottleneck"], [" runtime", " limitations", "-runtime", " conversion", " bottleneck", " compilation", " hybrid", " optimizations"], [" runtime", "-runtime", " compilation", "runtime", " optimizations", "/runtime", " limitations", " Runtime"], [" compilation", " runtime", "-runtime", " JIT", " bytecode", "/runtime", " Compilation", "runtime"], [" compilation", " Compilation", " compile", "Compilation", "\u7f16\u8bd1", "compile", " compil", " Compile"], [" compilation", " Compilation", "Compilation", " compile", "\u7f16\u8bd1", " JIT", " Compile", "compile"], [" compilation", " Compilation", " compile", "Compilation", "\u7f16\u8bd1", " Compile", " compiler", " runtime"], [" compilation", " Compilation", " JIT", " compile", " overhead", "Compilation", " runtime", " compiler"], [" compilation", " Compilation", " JIT", " overhead", " compile", "Compilation", " compiler", "-comp"], [" compilation", "OT", " Compilation", " JIT", " overhead", "Compilation", " compile", " Cold"]], "p": [[0.5922, 0.2628, 0.0168, 0.0075, 0.0058, 0.0058, 0.0042, 0.004], [0.4333, 0.2319, 0.0853, 0.0586, 0.0518, 0.0429, 0.0216, 0.0075], [0.7408, 0.0781, 0.0306, 0.021, 0.0164, 0.0127, 0.0106, 0.0064], [0.2502, 0.0525, 0.0281, 0.0205, 0.0193, 0.0193, 0.0181, 0.016], [0.6827, 0.0766, 0.0436, 0.0265, 0.0249, 0.0161, 0.0091, 0.0091], [0.7184, 0.0711, 0.0381, 0.0358, 0.0149, 0.0116, 0.0096, 0.0055], [0.8018, 0.1085, 0.0147, 0.0138, 0.0079, 0.0035, 0.002, 0.002], [0.5378, 0.1277, 0.0236, 0.0196, 0.0153, 0.0143, 0.0105, 0.0082], [0.417, 0.099, 0.0388, 0.0284, 0.0183, 0.0126, 0.0118, 0.0087], [0.6504, 0.1062, 0.0237, 0.0135, 0.0105, 0.0093, 0.0072, 0.0053], [0.8562, 0.0703, 0.0061, 0.0051, 0.0045, 0.004, 0.0031, 0.0012], [0.0483, 0.0243, 0.0228, 0.0214, 0.0178, 0.0167, 0.0157, 0.0138], [0.2092, 0.1192, 0.0195, 0.0161, 0.0134, 0.0104, 0.0098, 0.0098], [0.3877, 0.2837, 0.0141, 0.0133, 0.0103, 0.0076, 0.0067, 0.0067], [0.834, 0.1279, 0.0022, 0.0022, 0.0019, 0.0018, 0.0018, 0.0018], [0.8643, 0.117, 0.0029, 0.0028, 0.0012, 0.0007, 0.0006, 0.0003], [0.8574, 0.1315, 0.0029, 0.0026, 0.0009, 0.0002, 0.0002, 0.0002], [0.5545, 0.3363, 0.0074, 0.007, 0.004, 0.0033, 0.0021, 0.0017], [0.5315, 0.2672, 0.0133, 0.0086, 0.0071, 0.0067, 0.0046, 0.0043], [0.6176, 0.3306, 0.0069, 0.0034, 0.0032, 0.002, 0.002, 0.001], [0.7953, 0.1775, 0.0088, 0.0042, 0.0014, 0.0011, 0.0006, 0.0004], [0.0958, 0.09, 0.0275, 0.0258, 0.0177, 0.0122, 0.0101, 0.0061], [0.4516, 0.1661, 0.0106, 0.01, 0.0094, 0.0064, 0.0053, 0.0042], [0.8191, 0.1256, 0.0055, 0.0043, 0.0038, 0.0018, 0.0009, 0.0008], [0.6438, 0.0722, 0.0063, 0.0056, 0.0052, 0.0038, 0.0034, 0.0032], [0.064, 0.0565, 0.0195, 0.0126, 0.0104, 0.0081, 0.0072, 0.006], [0.1194, 0.0874, 0.0134, 0.0118, 0.0111, 0.0098, 0.0072, 0.0063], [0.2122, 0.1002, 0.0346, 0.0164, 0.0099, 0.0068, 0.0064, 0.0053], [0.1731, 0.0562, 0.0386, 0.0111, 0.0086, 0.0071, 0.0067, 0.0063], [0.19, 0.1785, 0.0511, 0.0374, 0.0213, 0.0074, 0.0065, 0.0061], [0.3433, 0.072, 0.0219, 0.0182, 0.0117, 0.0063, 0.0059, 0.0052], [0.3386, 0.0553, 0.0158, 0.0131, 0.0123, 0.0109, 0.0066, 0.0048], [0.3555, 0.0512, 0.0425, 0.0177, 0.0156, 0.0101, 0.0079, 0.0074], [0.1165, 0.0664, 0.0244, 0.0203, 0.0179, 0.0139, 0.0131, 0.009], [0.069, 0.069, 0.0326, 0.0175, 0.0136, 0.0093, 0.0088, 0.0077], [0.082, 0.068, 0.0342, 0.0283, 0.0172, 0.0161, 0.0152, 0.0152], [0.024, 0.024, 0.0187, 0.0176, 0.0146, 0.0137, 0.0121, 0.0121], [0.0354, 0.0244, 0.0229, 0.0178, 0.0122, 0.0102, 0.0084, 0.007], [0.037, 0.0175, 0.0145, 0.012, 0.0083, 0.0078, 0.0078, 0.0068], [0.0699, 0.0274, 0.0242, 0.0188, 0.0147, 0.0147, 0.0069, 0.0069], [0.0822, 0.0531, 0.0343, 0.0251, 0.0221, 0.0195, 0.0152, 0.0126], [0.0721, 0.0636, 0.0249, 0.0249, 0.0234, 0.0171, 0.0171, 0.0133], [0.0789, 0.0654, 0.0329, 0.0329, 0.0241, 0.0187, 0.0187, 0.0146], [0.0713, 0.0521, 0.0432, 0.0204, 0.0192, 0.0169, 0.0109, 0.0096], [0.0721, 0.0721, 0.0362, 0.032, 0.0234, 0.0234, 0.0182, 0.0092], [0.1856, 0.0877, 0.0603, 0.0566, 0.0566, 0.0469, 0.0323, 0.0267], [0.1664, 0.1217, 0.0837, 0.0612, 0.0448, 0.0421, 0.0272, 0.0272], [0.1465, 0.1214, 0.0946, 0.0447, 0.0447, 0.0288, 0.0271, 0.0198], [0.1266, 0.119, 0.0768, 0.0528, 0.0301, 0.0283, 0.0265, 0.0265], [0.1264, 0.0869, 0.0869, 0.0767, 0.0676, 0.0527, 0.034, 0.032], [0.2465, 0.0907, 0.0706, 0.055, 0.055, 0.0456, 0.0402, 0.026], [0.1269, 0.112, 0.112, 0.0988, 0.0529, 0.0412, 0.0364, 0.0301], [0.2057, 0.1248, 0.1101, 0.0757, 0.0357, 0.0296, 0.0246, 0.0231], [0.0678, 0.0637, 0.0562, 0.0496, 0.0466, 0.0438, 0.0386, 0.0363], [0.3032, 0.0984, 0.0465, 0.0465, 0.041, 0.0362, 0.0282, 0.0282], [0.5365, 0.1197, 0.0726, 0.0303, 0.0208, 0.0184, 0.0184, 0.0126], [0.4881, 0.2612, 0.0312, 0.0243, 0.0189, 0.0167, 0.0138, 0.013], [0.9662, 0.0156, 0.0057, 0.0045, 0.0035, 0.0009, 0.0006, 0.0006], [0.9615, 0.0256, 0.0057, 0.0024, 0.0011, 0.0006, 0.0005, 0.0004], [0.9631, 0.0257, 0.0035, 0.0024, 0.0013, 0.0005, 0.0005, 0.0004], [0.9598, 0.0256, 0.0035, 0.0022, 0.0015, 0.0012, 0.0007, 0.0006], [0.8571, 0.0661, 0.0167, 0.0122, 0.0042, 0.0042, 0.0035, 0.0015], [0.4078, 0.338, 0.091, 0.0179, 0.014, 0.014, 0.0066, 0.0038]], "ranks": {}}, {"pos": 407, "top": [["ting", " \u2013", "y", "\u2013", "i", "rans", "@\"", "\u6700\u65b0\u53d1\u5e03"], [" \u2013**", "\u2018", " \u2013", " \n \n", " *\u2013", "\u6700\u65b0\u53d1\u5e03", "ting", "@\","], ["\u2013", " \u2013", ".\u2013", "\u2013and", "\u2013\u2013", "\u6700\u65b0\u53d1\u5e03", " *\u2013", " \u2013**"], ["\u6700\u65b0\u53d1\u5e03", "__)", "\\\",\\", "\\\\\"", "\\\"\\", " Strec", "\u4eba\u554a", "flix"], ["\u6700\u65b0\u53d1\u5e03", "rans", "ting", " *@", "\\\")", " *\u201c", " *\u2013", "\\\\/"], ["\u6700\u65b0\u53d1\u5e03", "ting", "rans", "GBT", "iot", "eenth", " Zot", "rop"], ["--", "ting", "rans", "\u6700\u65b0\u53d1\u5e03", "t", "&", "i", "en"], ["ting", ".", "rans", "\u6700\u65b0\u53d1\u5e03", "--", "&", ".&", ".\\\""], [".", ".&", "rans", "ting", "&", ".\\\"", "?.", "&T"], [",", ".&", "rans", ".", "&", " whilst", "\\u", "ting"], [".", ".&", ".@", "ting", "&", ",", "rans", ".)"], ["ting", "rans", "ypes", "\u6700\u65b0\u53d1\u5e03", ".&", "ropole", "-centric", "fusc"], ["ting", "rans", " \u200b\u200b", "flix", ".", "ech", "ypes", "ter"], ["ting", "rans", " \u200b\u200b", "ech", "-centric", "-ish", ".", " entirety"], ["ting", "rans", " entirety", " whilst", "g", "-esque", "te", "en"], ["ting", "rans", " entirety", " tech", "ech", "en", " OT", " technologies"], ["ting", "t", "en", " entirety", "y", "rans", "g", " \u200b\u200b"], ["ting", "rans", "\u6700\u65b0\u53d1\u5e03", " \u200b\u200b", "ech", "-tech", " tech", " technologies"], ["ting", "rans", " \u200b\u200b", " entirety", "&apos", "flix", " GMO", "GBT"], ["ting", " \u200b\u200b", " entirety", "rans", "&apos", "en", " myriad", "t"], ["ting", " myriad", " --", "t", " entirety", "en", "y", "g"], ["flix", " Hidal", "&apos", "amai", "ytics", "isserie", "gart", " Palav"], ["&apos", " --", "&quot", "\u6700\u65b0\u53d1\u5e03", "amai", " technologies", "flix", "\\\\/"], [" --", "&apos", "\n", "&quot", " programming", " technologies", " &#", "ting"], [" --", "&apos", " &#", "&quot", "\\\\/", "&lt", "\\xa", ")--"], [" --", " technologies", " programming", "&apos", "amai", " Antaly", " technology", " advancements"], [" programming", " technologies", " technology", "\n", "&apos", " --", " crashes", " crash"], [" --", " programming", " technologies", "\n", " technology", " ,", " programs", " experimentation"], ["\n", " technologies", " technology", " programming", " --", " programs", " tech", " versions"], [" ...", "\n", " ...)", " -->", " __", " ......", " ____", " technologies"], [" \n", " technologies", "\n", " programming", " technology", " versions", " -->", " ?"], [" technologies", " technology", " \n", " programming", "\n", " versions", " .", " ..."], [" technology", " technologies", " programming", " hybrid", " .", " versions", " programs", " mixed"], [" technologies", " technology", " tech", " versions", " programming", " crashes", " hybrid", " workflows"], [" technologies", " hybrid", " technology", " tech", " hybrids", " crashes", " restrictions", " workflows"], [" restrictions", " hybrid", " limitations", " technologies", " technology", " hybrids", " constraints", " optimizations"], [" restrictions", " limitations", " optimizations", " limited", " hybrid", " constraints", " complexity", " optimized"], [" restrictions", " limitations", " optimizations", " limited", " hybrid", " optimization", " optimized", " complexity"], [" restrictions", " limitations", " optimizations", " limited", " optimization", " optimized", " constraints", " complexity"], [" restrictions", " optimizations", " limitations", " optimization", " limited", " optimized", " complexity", " constraints"], [" restrictions", " optimizations", " limitations", " optimization", " optimized", " limited", " complexity", " constraints"], [" restrictions", " limitations", " optimizations", " limited", " optimization", " constraints", " restricted", " optimized"], [" restrictions", " limitations", " optimizations", " limited", " optimization", " constraints", " restricted", " limitation"], [" restrictions", " limitations", " limited", " restriction", " restricted", " limitation", " optimizations", " constraints"], [" restrictions", " limitations", " restriction", " limited", " restricted", " restrictive", " limitation", " constraints"], [" restrictions", " limitations", " limited", " restriction", " limitation", " restricted", " constraints", " restrictive"], [" restrictions", " limitations", " limited", " limitation", " restriction", " constraints", " restricted", " restrictive"], [" restrictions", " limitations", " limited", " constraints", " restriction", " limitation", " restricted", " limits"], [" restrictions", " limitations", " constraints", " restriction", " limitation", " limited", " restricted", " limits"], [" restrictions", " limitations", " constraints", " limitation", " restriction", " limits", "\u7684\u9650\u5236", " restricted"], [" limitations", " restrictions", " constraints", " limitation", " restriction", "limitations", "\u7684\u9650\u5236", " Restrictions"], [" limitations", " restrictions", " constraints", " limitation", "limitations", " limits", "\u7684\u9650\u5236", " restriction"], [" limitations", " restrictions", " constraints", " limitation", "limitations", " limits", "\u7684\u9650\u5236", " restriction"], [" limitations", " restrictions", " constraints", " limitation", " limits", "limitations", "\u7684\u9650\u5236", " restriction"], [" limitations", " restrictions", " limitation", "limitations", "\u7684\u9650\u5236", "\u9650\u5236", " limits", " constraints"], [" limitations", " restrictions", " limitation", " constraints", "limitations", " limits", "\u7684\u9650\u5236", "\u9650\u5236"], [" limitations", " limitation", " restrictions", "limitations", " limits", " constraints", "\u7684\u9650\u5236", " limit"], [" compilation", " limitations", " compile", " Compilation", "\u7f16\u8bd1", " compil", " compiler", "Compilation"], [" compilation", " limitations", " compile", " Compilation", " restrictions", " constraints", " limitation", "\u7f16\u8bd1"], [" compilation", " limitations", " compile", " Compilation", " constraints", " restrictions", " limitation", " compiler"], [" compilation", " limitations", " Compilation", " compile", " friction", " compiler", " overhead", " constraints"], [" compilation", " limitations", " friction", " Compilation", " overhead", " compile", " compiler", " fragmentation"], [" compilation", " overhead", " compile", " friction", " Compilation", " fragmentation", " limitations", " compiler"]], "p": [[0.5549, 0.2621, 0.0139, 0.0139, 0.0139, 0.0045, 0.0042, 0.004], [0.0772, 0.0531, 0.0499, 0.0468, 0.0468, 0.0388, 0.0388, 0.0267], [0.4714, 0.153, 0.0872, 0.0467, 0.0321, 0.0152, 0.0152, 0.0072], [0.0423, 0.0094, 0.0061, 0.0054, 0.0047, 0.0045, 0.0042, 0.0037], [0.0677, 0.0597, 0.032, 0.03, 0.022, 0.0171, 0.0161, 0.0161], [0.0912, 0.0204, 0.0131, 0.0109, 0.0096, 0.0085, 0.0055, 0.0051], [0.112, 0.0872, 0.0819, 0.06, 0.0266, 0.0172, 0.0142, 0.0134], [0.0889, 0.0692, 0.0611, 0.0395, 0.0239, 0.0136, 0.0106, 0.0094], [0.2403, 0.0941, 0.0473, 0.0287, 0.0287, 0.0174, 0.012, 0.0106], [0.1135, 0.0392, 0.0287, 0.0253, 0.0136, 0.0127, 0.0099, 0.0099], [0.5437, 0.0475, 0.0224, 0.0211, 0.0198, 0.0186, 0.0113, 0.0106], [0.0949, 0.0891, 0.0061, 0.0054, 0.0042, 0.0042, 0.0042, 0.0035], [0.1029, 0.0707, 0.0665, 0.0062, 0.0058, 0.0058, 0.0042, 0.004], [0.0606, 0.0324, 0.0253, 0.0064, 0.0047, 0.0044, 0.0041, 0.0041], [0.0397, 0.0156, 0.0094, 0.0089, 0.0057, 0.0047, 0.0039, 0.0037], [0.0231, 0.014, 0.0116, 0.0066, 0.0062, 0.0045, 0.0038, 0.0035], [0.0958, 0.0147, 0.0138, 0.013, 0.0114, 0.0114, 0.0114, 0.0074], [0.0586, 0.0139, 0.0131, 0.0066, 0.0051, 0.0037, 0.0035, 0.0031], [0.0195, 0.0111, 0.0053, 0.0044, 0.0036, 0.0036, 0.0032, 0.0032], [0.0272, 0.0176, 0.0146, 0.0129, 0.0129, 0.0078, 0.0078, 0.0061], [0.0278, 0.0261, 0.023, 0.0116, 0.0096, 0.008, 0.0066, 0.0062], [0.0047, 0.0041, 0.0041, 0.0027, 0.0025, 0.0024, 0.0022, 0.0021], [0.0513, 0.0054, 0.0051, 0.0035, 0.0035, 0.0033, 0.0029, 0.0027], [0.1153, 0.0956, 0.0054, 0.0042, 0.0037, 0.0037, 0.0025, 0.0019], [0.3981, 0.0834, 0.0211, 0.01, 0.0083, 0.0073, 0.0037, 0.0032], [0.0545, 0.0166, 0.0084, 0.0061, 0.0057, 0.0048, 0.0039, 0.0031], [0.0348, 0.0186, 0.0094, 0.0078, 0.0068, 0.0039, 0.003, 0.003], [0.4235, 0.0224, 0.0198, 0.0136, 0.0113, 0.0073, 0.0032, 0.0029], [0.1429, 0.0765, 0.0436, 0.0409, 0.0319, 0.0097, 0.0067, 0.0067], [0.0523, 0.0434, 0.015, 0.015, 0.0124, 0.0117, 0.0097, 0.0091], [0.0594, 0.0524, 0.0492, 0.0298, 0.0218, 0.011, 0.0086, 0.0067], [0.0729, 0.0501, 0.0285, 0.0196, 0.0184, 0.0153, 0.0099, 0.0099], [0.0501, 0.047, 0.0173, 0.0112, 0.0112, 0.0105, 0.0093, 0.0082], [0.0872, 0.0321, 0.0152, 0.0134, 0.0118, 0.0104, 0.0098, 0.0092], [0.051, 0.0273, 0.0188, 0.0166, 0.0156, 0.0146, 0.0137, 0.0114], [0.0454, 0.0376, 0.0228, 0.0228, 0.0157, 0.0157, 0.0157, 0.0138], [0.1281, 0.0644, 0.0568, 0.0367, 0.0223, 0.0223, 0.0163, 0.0153], [0.1467, 0.1008, 0.0651, 0.0611, 0.0239, 0.0225, 0.0211, 0.0186], [0.2682, 0.1348, 0.105, 0.0637, 0.032, 0.0234, 0.0234, 0.022], [0.3247, 0.1271, 0.099, 0.0364, 0.0321, 0.0235, 0.0183, 0.0183], [0.2985, 0.2051, 0.1031, 0.0519, 0.0296, 0.023, 0.0179, 0.0168], [0.3736, 0.2, 0.1006, 0.0394, 0.0326, 0.0198, 0.0154, 0.0145], [0.3822, 0.2976, 0.0624, 0.0456, 0.0203, 0.0148, 0.0139, 0.0115], [0.572, 0.2104, 0.0323, 0.0184, 0.0162, 0.0119, 0.0112, 0.0112], [0.6618, 0.1896, 0.0226, 0.0226, 0.0114, 0.0107, 0.0107, 0.01], [0.5817, 0.3113, 0.0256, 0.0155, 0.0121, 0.0094, 0.0083, 0.0057], [0.5022, 0.3911, 0.0221, 0.0172, 0.0134, 0.0134, 0.0081, 0.0049], [0.5164, 0.4022, 0.0156, 0.0138, 0.0121, 0.0121, 0.0057, 0.0045], [0.6069, 0.3249, 0.0143, 0.0126, 0.0076, 0.0067, 0.006, 0.0046], [0.5072, 0.4476, 0.0135, 0.0093, 0.0093, 0.0016, 0.0014, 0.0014], [0.7721, 0.1952, 0.011, 0.0076, 0.0028, 0.0022, 0.0019, 0.0007], [0.8803, 0.0928, 0.0098, 0.0046, 0.0028, 0.0012, 0.001, 0.001], [0.9086, 0.0658, 0.0079, 0.0079, 0.0029, 0.0014, 0.0012, 0.0006], [0.9132, 0.0515, 0.0101, 0.009, 0.0079, 0.0033, 0.0014, 0.0004], [0.9663, 0.0138, 0.0138, 0.0021, 0.001, 0.001, 0.0008, 0.0005], [0.9693, 0.0138, 0.0095, 0.0024, 0.0021, 0.001, 0.0005, 0.0005], [0.9786, 0.0075, 0.0066, 0.0027, 0.0021, 0.0011, 0.0002, 0.0002], [0.9422, 0.0365, 0.0105, 0.003, 0.0023, 0.0007, 0.0007, 0.0006], [0.9082, 0.0745, 0.0054, 0.0033, 0.0015, 0.0011, 0.0008, 0.0007], [0.9325, 0.0526, 0.0055, 0.003, 0.0009, 0.0008, 0.0007, 0.0005], [0.9872, 0.0067, 0.0015, 0.0013, 0.0004, 0.0004, 0.0003, 0.0002], [0.9688, 0.0095, 0.0045, 0.0024, 0.0021, 0.0021, 0.0019, 0.0011], [0.9666, 0.0065, 0.0045, 0.0035, 0.0031, 0.0016, 0.0015, 0.0015]], "ranks": {}}, {"pos": 408, "top": [[".", ",", " \u00b7", "\"", "\u00a0", " [\u2026]", "[", "\u00b7"], [" \u00b7", " \uff5e", " [@", "\uff5c", "\u00b7", " \uff5c", " [].", "[@"], [" \u00b7", ".", ",", "\u00b7", "\uff5c", "[", ".[", " \uff5e"], [" **\u300c", " \uff5c", " *\u00ab", "\uff5c", " \u300c", " Blowjob", " \u00bb*", " **\u00ab"], [" \uff5c", "\uff5c", " [@", " \n\n\n\n\n", " \u201c.", " (*)", " \u00b7", "\uff3b"], [" \u201c.", " \uff5c", " \n\n\n\n\n", "\uff5c", " \n\n\n", " \uff1a", " **\u300c", " \uff5e"], [" \u00b7", "\uff5c", " \uff5c", " *\u00ab", " \ufffd", " \u3010", " [...]", " \u201c."], [" *\u00ab", " \uff5c", " **\u300c", " \ufffd", " \u00b7", "\uff5c", " *\"", " [...]"], [" [...]", " *\u00ab", "\uff5c", " \u00bb.", " \ufffd", " [].", " \uff5c", " \n\n\n"], [",", " \ufffd", " [...]", " \u00ad", "\u00ad", ".", " [@", "\u00a0"], [" [...]", ".", " \ufffd", ",", ".[", " \u00b7", "\u00a0", " [@"], [" [...]", " *\u00ab", " **\u00ab", " **\u300c", " (\u00ab", " *\"", ".\u00ab", " \u00bb."], [" **\u00ab", " \u00ab", " [...]", " (\u00ab", " \u00bb.", " *\u00ab", " \u00bb", " arte"], [" arte", " \u00ab", " (\u00ab", "\u8fc7\u7a0b\u5f53\u4e2d", " of", " [...]", " processes", " seamlessly"], [" \ufffd", " of", " into", " massively", ",", " \u2014", " arte", " within"], [" \u2014", " massively", " \ufffd", " of", " efforts", " seamlessly", " entirely", " strategically"], [",", " of", " \"", " massively", " significantly", " efforts", " various", " seamlessly"], [" of", " efforts", " massively", " seamlessly", " blockbuster", " processes", " strategies", " heavily"], [" efforts", " of", " massively", " orchestrated", " thereof", " seamlessly", " blockbuster", " processes"], [" of", " efforts", " alongside", " heavily", " \ufffd", " rapidly", " massively", " increasingly"], [" efforts", " of", " ,", " various", " \"", " \ufffd", " heavily", " numerous"], [" efforts", " of", " orchestrated", " thereof", " processes", " rapidly", " heavily", " lucrative"], [" of", " efforts", " rapidly", " heavily", " ,", " .", " increasingly", " various"], [" ,", " of", " .", " various", " rapidly", " much", " heavily", " more"], [" \n\n", " ,", " of", " \n\n\n", " rapidly", " .", " heavily", " efforts"], [" of", " efforts", " rapidly", " ,", " processes", " complex", " process", " technology"], [" ,", " of", " .", " rapidly", " process", " complex", " technology", " processes"], [" ,", " .", " of", " rapidly", " complex", " \n\n", " and", " for"], [" .", " [...]", " ,", " of", " ...", " rapidly", " process", " processes"], [" [...]", " ...", " .", " ___", " ________", " ....", " \n", " of"], [" .", " ,", " of", " rapidly", " [...]", " during", " processes", " process"], [" .", " ,", " of", " rapidly", " during", " [...]", " for", " ["], [" .", " rapidly", " ,", " during", " of", " for", " complex", " and"], [" rapidly", " techniques", " \u2014", " processes", " efforts", " complex", " heavily", " technology"], [" rapidly", " complex", " techniques", " efforts", " processes", " \u2014", " heavily", " rapid"], [" [...]", " \u2014", " complex", " processes", " delays", " process", " \u201c", " rapidly"], [" delays", " complex", " performance", " optimizations", " slower", " processes", " rapidly", " \u2014"], [" performance", " complex", " optimizations", " delays", " slower", " processes", " complexity", " runtime"], [" performance", " delays", " complex", " complexity", " optimizations", " slower", " runtime", " speed"], [" delays", " performance", " slower", " complexity", " complex", " runtime", " delay", " speed"], [" delays", " speed", " performance", " delay", " slower", " runtime", " slow", " speeds"], [" delays", " runtime", " performance", " speed", " delay", " complexity", " speeds", " slowdown"], [" delays", " runtime", " performance", " delay", " complexity", " optimizations", " latency", " processes"], [" delays", " runtime", " performance", " delay", " processes", " optimizations", " latency", " complexity"], [" delays", " runtime", " delay", " latency", " performance", " costs", " complexity", " processes"], [" delays", " runtime", " delay", " costs", " performance", " restrictions", " complexity", " errors"], [" delays", " errors", " runtime", " complexity", " delay", " restrictions", " costs", " performance"], [" delays", " restrictions", " errors", " complexity", " limitations", " costs", " delay", " runtime"], [" delays", " restrictions", " complexity", " costs", " delay", " limitations", " errors", " complexities"], [" restrictions", " limitations", " delays", " constraints", " errors", " bottleneck", " complexity", " delay"], [" limitations", " restrictions", " delays", " complexity", " constraints", " bottleneck", " complexities", " errors"], [" limitations", " restrictions", " delays", " constraints", " bottleneck", " optimizations", " runtime", " errors"], [" limitations", " restrictions", " delays", " constraints", " failures", " limits", " latency", " runtime"], [" limitations", " restrictions", " constraints", " limits", " delays", " runtime", " latency", " overhead"], [" limitations", " restrictions", " limits", " limitation", " constraints", "limitations", " runtime", " latency"], [" limitations", " limits", " limitation", " restrictions", " constraints", "limitations", " runtime", " limit"], [" limitations", " limits", " constraints", " restrictions", " overhead", " limitation", "limitations", " latency"], [" limitations", " limits", " latency", " constraints", " restrictions", " penalties", " delays", "limitations"], [" overhead", " limitations", " limits", " latency", " constraints", " bottleneck", " bott", " penalties"], [" overhead", " limitations", " limits", " latency", " constraints", " bottleneck", " bott", " penalties"], [" overhead", " limitations", " limits", " latency", " constraints", " bott", " bottleneck", " penalties"], [" overhead", " limits", " limitations", " constraints", " latency", " bott", " bottleneck", " boundaries"], [" overhead", " limits", " bott", " latency", " constraints", " limitations", " boundaries", " friction"]], "p": [[0.5306, 0.1834, 0.0384, 0.0264, 0.016, 0.0151, 0.0125, 0.0117], [0.4471, 0.0998, 0.0269, 0.0209, 0.0163, 0.0093, 0.0053, 0.0053], [0.2022, 0.1677, 0.148, 0.0843, 0.0744, 0.0424, 0.0147, 0.0101], [0.1519, 0.0559, 0.0318, 0.0233, 0.0063, 0.0055, 0.0043, 0.0043], [0.1554, 0.1137, 0.0393, 0.0224, 0.021, 0.0186, 0.0154, 0.0113], [0.0703, 0.0661, 0.0548, 0.0483, 0.0115, 0.0089, 0.0084, 0.0079], [0.2578, 0.0395, 0.0349, 0.0349, 0.0289, 0.0212, 0.0199, 0.0187], [0.0948, 0.0328, 0.0289, 0.0289, 0.0272, 0.0225, 0.0225, 0.0199], [0.1523, 0.0924, 0.0362, 0.03, 0.0282, 0.0234, 0.0206, 0.0182], [0.2594, 0.0656, 0.0579, 0.0579, 0.0227, 0.0188, 0.0121, 0.0101], [0.7238, 0.0717, 0.036, 0.0233, 0.0097, 0.008, 0.0076, 0.0071], [0.3006, 0.0592, 0.0491, 0.0218, 0.0132, 0.0075, 0.0071, 0.0071], [0.0436, 0.0362, 0.0319, 0.03, 0.0234, 0.0234, 0.0125, 0.011], [0.0122, 0.0115, 0.0084, 0.0058, 0.0058, 0.0054, 0.0048, 0.0042], [0.0282, 0.0206, 0.0081, 0.0071, 0.0071, 0.0067, 0.0063, 0.0063], [0.0481, 0.0114, 0.0107, 0.0107, 0.0079, 0.0069, 0.0069, 0.0065], [0.0737, 0.0348, 0.0094, 0.0083, 0.0078, 0.0069, 0.0064, 0.0053], [0.0099, 0.0088, 0.0082, 0.006, 0.0057, 0.0047, 0.0039, 0.0037], [0.01, 0.0088, 0.006, 0.0053, 0.0053, 0.005, 0.0044, 0.0044], [0.0286, 0.0185, 0.0087, 0.0082, 0.0082, 0.0077, 0.0072, 0.0072], [0.0337, 0.0337, 0.0217, 0.0192, 0.0192, 0.0169, 0.0169, 0.0149], [0.0159, 0.0071, 0.0066, 0.0052, 0.0052, 0.0049, 0.0043, 0.0038], [0.0216, 0.019, 0.0158, 0.0139, 0.0079, 0.0062, 0.0058, 0.0058], [0.1158, 0.0702, 0.0353, 0.0157, 0.0147, 0.0122, 0.0108, 0.0108], [0.0478, 0.0478, 0.0372, 0.024, 0.0199, 0.0165, 0.0146, 0.0137], [0.0302, 0.0162, 0.0152, 0.0152, 0.0134, 0.0134, 0.0118, 0.0098], [0.0465, 0.041, 0.032, 0.0133, 0.0125, 0.0125, 0.0125, 0.011], [0.2839, 0.0718, 0.0493, 0.0206, 0.0086, 0.0086, 0.0081, 0.0071], [0.0747, 0.0619, 0.04, 0.0275, 0.0214, 0.0201, 0.0167, 0.0157], [0.1941, 0.1253, 0.0556, 0.0205, 0.017, 0.0141, 0.0124, 0.0124], [0.0885, 0.0369, 0.0306, 0.027, 0.0197, 0.0186, 0.0136, 0.0127], [0.0873, 0.0364, 0.0342, 0.0342, 0.0207, 0.0207, 0.0172, 0.0104], [0.1112, 0.0493, 0.0248, 0.0248, 0.017, 0.016, 0.0125, 0.0097], [0.0362, 0.0182, 0.0182, 0.0182, 0.0161, 0.0151, 0.0142, 0.0125], [0.0646, 0.0253, 0.0197, 0.0153, 0.0135, 0.0127, 0.0127, 0.0105], [0.0531, 0.0499, 0.0236, 0.0195, 0.0184, 0.0172, 0.0152, 0.0152], [0.0435, 0.0319, 0.0299, 0.0299, 0.0233, 0.0193, 0.017, 0.015], [0.0768, 0.0411, 0.0341, 0.0282, 0.0207, 0.0161, 0.0151, 0.0151], [0.1636, 0.0682, 0.0682, 0.0389, 0.0365, 0.0322, 0.0284, 0.0143], [0.2045, 0.0966, 0.0456, 0.0429, 0.0378, 0.026, 0.0216, 0.0216], [0.3207, 0.0762, 0.0672, 0.0631, 0.0383, 0.0338, 0.0247, 0.0218], [0.3269, 0.0827, 0.0827, 0.0568, 0.039, 0.0345, 0.0237, 0.0209], [0.3381, 0.1244, 0.0487, 0.0356, 0.0315, 0.0278, 0.0245, 0.0191], [0.2666, 0.1111, 0.0463, 0.0409, 0.0299, 0.0233, 0.0206, 0.015], [0.3538, 0.1014, 0.0423, 0.0309, 0.0273, 0.0273, 0.0226, 0.0155], [0.3992, 0.0395, 0.0395, 0.0289, 0.0272, 0.0272, 0.0255, 0.0225], [0.3952, 0.0472, 0.0417, 0.0345, 0.0286, 0.0253, 0.0237, 0.0163], [0.4644, 0.0629, 0.049, 0.0336, 0.0316, 0.0297, 0.0279, 0.0169], [0.4951, 0.0591, 0.0461, 0.0382, 0.0337, 0.0337, 0.0297, 0.0116], [0.2959, 0.2611, 0.2611, 0.0167, 0.0147, 0.013, 0.013, 0.013], [0.4031, 0.1904, 0.1904, 0.0425, 0.0292, 0.0177, 0.0107, 0.0095], [0.578, 0.1461, 0.1138, 0.0288, 0.0106, 0.0106, 0.0093, 0.0082], [0.6628, 0.0897, 0.0792, 0.0617, 0.0156, 0.0107, 0.0083, 0.0074], [0.5748, 0.0881, 0.0778, 0.0686, 0.0535, 0.0223, 0.0197, 0.0135], [0.929, 0.0281, 0.0117, 0.0117, 0.008, 0.0034, 0.0034, 0.0007], [0.9537, 0.0224, 0.0083, 0.0064, 0.003, 0.0024, 0.0009, 0.0004], [0.8403, 0.1289, 0.005, 0.0044, 0.003, 0.003, 0.0027, 0.0027], [0.8056, 0.14, 0.0243, 0.007, 0.007, 0.0037, 0.0033, 0.0026], [0.9851, 0.0085, 0.0031, 0.0012, 0.0007, 0.0005, 0.0003, 0.0002], [0.8822, 0.0564, 0.0388, 0.0098, 0.0052, 0.0028, 0.0022, 0.0006], [0.9804, 0.0096, 0.0045, 0.0024, 0.001, 0.0009, 0.0003, 0.0001], [0.879, 0.0722, 0.0265, 0.0076, 0.0046, 0.0041, 0.0012, 0.0006], [0.9467, 0.0286, 0.0064, 0.0039, 0.0027, 0.0027, 0.0018, 0.0009]], "ranks": {}}, {"pos": 409, "top": [["s", " \u2013", "\u044b", "\u2013", "\u0627\u062a", "es", "\u2026..", "\u05d9\u05dd"], ["s", "\u044b", "\u05d9\u05dd", "\u0627\u062a", "ske", "schild", "ska", "sburg"], ["s", "\u044b", "\u2026..", "\u0627\u062a", "\u05d9\u05dd", "\u2026\"", "ska", " \u2026."], ["s", "\u05d9\u05dd", "\u044b", "satz", "\u0627\u062a", "schnitt", "ske", "sze"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "es", "ska", "siz"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "siz", "ska", "es"], ["s", "\u0627\u062a", "\u044b", "ske", "es", "\u05d9\u05dd", "ska", "siz"], ["s", "\u044b", "\u0627\u062a", "ske", "\u05d9\u05dd", "ska", "sburg", "schild"], ["s", "\u0627\u062a", " \u2026.", "\u044b", "ske", " [\u2026]", "ska", "es"], ["s", "\u2013\u2013", "\u044b", "\u0627\u062a", "es", ".\u2013", "ska", "\u2013"], ["s", " [\u2026]", "es", ".\u2013", "\u0627\u062a", ".\u2026", "\u2013\u2013", " \u2026"], ["s", "es", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "ska", "\u2013\u2013", "schild"], ["s", "es", "\u044b", "\u0627\u062a", "\u2013\u2013", "\u05d9\u05dd", "ska", "siz"], ["s", "es", "\u044b", "\u0627\u062a", "ska", "\u2013\u2013", "\u05d9\u05dd", "siz"], ["s", "es", "\u0627\u062a", "\u044b", "\u2013\u2013", "ska", "siz", " \u2013"], ["s", "es", "\u0627\u062a", "\u044b", "siz", "sste", "ed", "ska"], ["s", "es", "\u0627\u062a", " \u2013", "\u044b", "ed", "y", "\u2013\u2013"], ["s", "es", "\u0627\u062a", "\u044b", "ska", "siz", "\u2013\u2013", " \u2013"], ["s", "es", "\u0627\u062a", "\u044b", "ske", "ska", "siz", "sste"], ["s", "es", "\u0627\u062a", " myriad", "\u2013\u2013", " swiftly", "\u044b", " akin"], ["s", "<|endoftext|>", "es", " swiftly", " myriad", "\u0627\u062a", " \u2013", "\u2013\u2013"], ["s", "sste", "svar", "sze", "ske", "schn", "\u0627\u062a", "\u044b"], ["s", "es", "\u0627\u062a", "sste", "\u044b", " swiftly", " myriad", " .**"], ["s", "es", " significantly", " myriad", " ultimately", " beyond", " substantially", " ,"], ["s", " \r\n\r\n", "<|im_end|>", " \n\n", " [[", "\r\n\r\n", " __", "es"], ["s", " .**", " ___", " __", " **", " /**<", " **\u201c", " *__"], ["s", " .**", " __", " ___", " /**<", " *__", " **", " *\u201c"], ["s", " __", " ___", " **", " \n\n", " ____", " .**", " [["], ["s", " __", " ___", " ____", " .**", " **", " ________", " ______"], [" __", " ___", " ____", "s", " ______", " .**", " **", " ________"], ["s", " .", " __", " .**", " **", " ___", " ____", " \u2026"], ["s", " **", " .", " .**", " __", " ,", " heavily", " ___"], ["s", " .", " **", " .**", " heavily", " \u2026", " critical", " \u2013"], [" \u2013", "s", " heavily", " **", " meticulously", " \u2018", " increasingly", " \u2014"], ["s", " **\u201c", " heavily", " **", " .**", " meticulously", " \u2013", " **\u2018"], [" \u2013", " **\u201c", " \u201c", "**\u2014", "s", " \u2026", " **\u2013", " \u2014"], ["s", " \u2013", "**\u2014", " heavily", " \u2014", " \u201c", " fueled", " accelerating"], ["s", " \u2013", " accelerating", " faster", " bottleneck", " \u201c", " fueled", " burden"], [" \u201c", " accelerating", "s", " \u2013", " bottleneck", " fueled", " burden", " faster"], [" accelerating", " accelerated", " faster", " slowing", "s", " burden", " bottleneck", " overclock"], [" costs", " cost", " slowing", " overhead", " accelerated", " faster", " accelerating", " burden"], [" costs", " overhead", " performance", " cost", " bottleneck", " overclock", " engine", " accelerated"], [" costs", " overhead", " cost", " performance", " bottleneck", " overclock", " engine", " latency"], [" costs", " overhead", " performance", " cost", " bottleneck", " slowing", " inefficient", " accelerated"], [" costs", " overhead", " cost", " performance", " bottleneck", " inefficient", " processing", " accelerated"], [" costs", " cost", " overhead", " combined", " heavy", " burden", " accelerated", " processing"], [" combined", " costs", " exacerbated", " overhead", " accelerated", " bottleneck", " burden", " critical"], [" combined", " exacerbated", " costs", " transitioning", " inherent", " coupled", " accelerated", " resulting"], [" combined", " exacerbated", " coupled", " resulting", " caused", " transitioning", " costs", " causing"], [" combined", " exacerbated", " inherent", " coupled", " exacerb", " Combined", " causing", " caused"], [" exacerbated", "**.", " combined", " inherent", " exacerb", ".**", ".", "*."], [" exacerbated", "**.", " combined", ".**", " exacerb", " inherent", "*.", ".*"], ["**.", ".**", ".", "*.", " exacerbated", " **.", " bottleneck", ".*"], ["**.", ".**", "*.", ".", " inherent", ".*", " bottleneck", " exacerbated"], [" will", "**.", " conflicting", " clashes", " clash", " interfering", " conflicts", " clashed"], [" will", "**.", " clash", ".**", " clashes", " conflicting", " \u062e\u0648\u0627\u0647\u0646\u062f", " collide"], ["**.", ".**", " will", "**", " bottleneck", " ruining", " clash", " clashes"], ["**.", " will", ".**", " destroying", "**", " clash", " clashes", " collide"], ["**.", " will", " destroying", " clash", " crushing", " collide", " collision", " clashes"], [" will", "**.", "**", " crushing", " killing", " destroying", " kills", " collide"], ["**.", " will", ".", "**", " crushing", " killing", " destroying", " clash"], ["**.", "**", ".", " will", "`.", ".**", "*.", "\"."], ["**", "**.", ".**", "**,", "**?", "**\u3002", "**:", " **."]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9707, 0.0065, 0.004, 0.0019, 0.0017, 0.0013, 0.0008, 0.0006], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.997, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9884, 0.0086, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.8979, 0.0029, 0.0025, 0.0022, 0.002, 0.0017, 0.0015, 0.0011], [0.9727, 0.0009, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0002], [0.9888, 0.0008, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9337, 0.0034, 0.0014, 0.0012, 0.0011, 0.0008, 0.0006, 0.0005], [0.5879, 0.0243, 0.0178, 0.0138, 0.0122, 0.0095, 0.0089, 0.0074], [0.8045, 0.0101, 0.0089, 0.0074, 0.0024, 0.0023, 0.0023, 0.0015], [0.6154, 0.069, 0.0446, 0.0113, 0.0082, 0.0077, 0.0073, 0.0064], [0.567, 0.0767, 0.0561, 0.0341, 0.022, 0.0151, 0.0071, 0.0056], [0.2809, 0.2188, 0.1704, 0.1033, 0.0296, 0.0278, 0.0278, 0.0217], [0.402, 0.1017, 0.0699, 0.0451, 0.031, 0.0227, 0.0121, 0.0114], [0.2651, 0.1712, 0.0861, 0.0433, 0.0359, 0.014, 0.0097, 0.0097], [0.2015, 0.0894, 0.0397, 0.0373, 0.0155, 0.0129, 0.0089, 0.0083], [0.0879, 0.0684, 0.0237, 0.0209, 0.0196, 0.0135, 0.0127, 0.0099], [0.0449, 0.0397, 0.0256, 0.0256, 0.0199, 0.0187, 0.0176, 0.0155], [0.1731, 0.0598, 0.0386, 0.0283, 0.0283, 0.0283, 0.0249, 0.022], [0.071, 0.0405, 0.0203, 0.0169, 0.0131, 0.0131, 0.0131, 0.0123], [0.0464, 0.03, 0.0193, 0.0151, 0.0133, 0.0133, 0.0133, 0.0117], [0.0264, 0.0206, 0.0206, 0.0193, 0.017, 0.017, 0.017, 0.0141], [0.0271, 0.0225, 0.0225, 0.0211, 0.0211, 0.0199, 0.0187, 0.0175], [0.0411, 0.034, 0.0282, 0.0265, 0.0249, 0.0249, 0.0234, 0.022], [0.0541, 0.0349, 0.0328, 0.0328, 0.0272, 0.0255, 0.0225, 0.0176], [0.095, 0.0695, 0.0396, 0.0308, 0.029, 0.0187, 0.0187, 0.0155], [0.0702, 0.0619, 0.0311, 0.0242, 0.0228, 0.0167, 0.0138, 0.0138], [0.1397, 0.0547, 0.0453, 0.0228, 0.0201, 0.0167, 0.0122, 0.0115], [0.0625, 0.0429, 0.0379, 0.0245, 0.0148, 0.0139, 0.0139, 0.0123], [0.0793, 0.0292, 0.0257, 0.0166, 0.0138, 0.0129, 0.0122, 0.0122], [0.3392, 0.0357, 0.0169, 0.014, 0.014, 0.0124, 0.0102, 0.0096], [0.5828, 0.0577, 0.0309, 0.0155, 0.0069, 0.0065, 0.0061, 0.0061], [0.1878, 0.107, 0.0271, 0.0186, 0.0145, 0.01, 0.0093, 0.0088], [0.1684, 0.0547, 0.0514, 0.0376, 0.0201, 0.0177, 0.0147, 0.013], [0.0817, 0.0495, 0.0465, 0.032, 0.022, 0.022, 0.0161, 0.0161], [0.3229, 0.1188, 0.0597, 0.0411, 0.0282, 0.0171, 0.0161, 0.0161], [0.4306, 0.1234, 0.0583, 0.0514, 0.0214, 0.0189, 0.0079, 0.0065], [0.1305, 0.0743, 0.0544, 0.0398, 0.033, 0.02, 0.0177, 0.0166], [0.1838, 0.1345, 0.0249, 0.0206, 0.0182, 0.0151, 0.0142, 0.0142], [0.6852, 0.0496, 0.0234, 0.0207, 0.0092, 0.0067, 0.0067, 0.0056], [0.4683, 0.1342, 0.0248, 0.0151, 0.0151, 0.0151, 0.0133, 0.0133], [0.4947, 0.1417, 0.0316, 0.0246, 0.018, 0.0169, 0.0149, 0.0132], [0.3015, 0.1718, 0.0383, 0.0338, 0.0299, 0.028, 0.0205, 0.0181], [0.3611, 0.219, 0.0589, 0.0336, 0.0246, 0.0159, 0.0132, 0.0124], [0.8849, 0.0823, 0.0068, 0.006, 0.0021, 0.0017, 0.0013, 0.0008], [0.8174, 0.1824, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 410, "top": [[".", " \u2013", "\u00a0", "  \n\n", ",", "\u2013", "  \n", "\u2026."], [" **", "(**", "  \n\n", "\u2026**", "-**", " (**", "**,", " **\u2013"], ["\u2026**", " **", "(**", "**", "**\u2013", " **\u2013", "**.", "**,"], [" **", " **\u300c", " **#", "\uff1f**", " **+", " **\u00ab", " **\u201c", "\u300d**"], [" **", " **#", "(**", "-**", " (**", " **\u201c", ">**", " **("], [" **", "(**", "-**", " **#", " (**", " **\u201c", " **(", " **+"], [" **", "\uff09**", "(**", "**", " **#", "\u2019**", "-**", " **\u201c"], [" **", "(**", " **#", "-**", " (**", " **-", "\uff09**", " **\u300c"], [" **", "(**", " **#", " (**", " **[", " **\u00ab", " **\u300c", " **\u201c"], [" **", "(**", " **#", "-**", " **\u00ab", " (**", " **+", " **["], [" **", "(**", " **#", " **[", "-**", "**", " (**", " **("], [" **", " **#", "(**", " **\u300c", " **+", " **\u00ab", " **'", " **-"], [" **", "(**", " **#", " **\u00ab", "-**", " **\u300c", " **+", " **-"], [" **", "(**", " **#", " **+", "-**", " **\u00ab", " (**", " \"**"], [" **", "(**", " **(", " **#", " \"**", " (**", " **+", " **\""], [" **", "(**", " **#", " \"**", "-**", " **(", ">**", " **["], [" **", "(**", "ing", " **\u2013", "**,", " **#", " **\"", " (**"], [" **", "(**", " (**", " \"**", " **\u2013", "**,", " **(", " **\""], [" **", " **#", "(**", " \"**", " **(", " arguably", " (**", " **."], [" **", " arguably", " largely", " ultimately", " notably", " amongst", " swiftly", " myriad"], ["<|endoftext|>", " **", " \n\n", " largely", " arguably", " ultimately", " amongst", " notably"], [" **", " **#", " \"**", " **'", " **+", " **.", " arguably", " **("], [" **", " arguably", " notably", " ultimately", " largely", " **#", " increasingly", " amidst"], [" **", " ultimately", " largely", " notably", " arguably", " increasingly", " amongst", " of"], [" **", " \n\n", " **'", " **#", " **(", " **.", " arguably", " **["], [" **", " **.", " **'", " **#", " **(", " **+", " **-", " \"**"], [" **", " **.", " **'", " **#", " **+", " **(", " \"**", " **-"], [" **", " **'", " \n\n", " **[", " **.", " **#", " **(", " **+"], [" **", " **.", " **'", " **[", " **(", " \"**", " **#", " **+"], [" **", " **.", " **(", " **[", " ****", " **\u201c", " **'", " **,"], [" **", " **.", " \n\n", " ,", " *", " .", " of", " in"], [" **", " *", " **.", " **[", " in", " of", " ,", " ****"], [" **", " *", " **.", " ,", " **[", " in", " **\"", " of"], [" **", " *", " \n\n", " heavily", " \u2013", " **\u201c", " **[", " \u2014"], [" **", " **\"", " **\u201c", " **[", " *", " \"**", " **(", " **'"], [" **", " **\u201c", " **\"", " **[", " \u2013", " *", " **\u2013", " \u2014"], [" **", " **\u201c", " **\"", " *", " \u2014", " **[", " heavily", " \"**"], [" **", " **\u201c", " \u2013", " \u2014", " \u201c", " heavily", " **\"", " *"], [" **", " **\u201c", " heavily", " \u201c", " \u2013", " \u2014", " due", " notoriously"], [" **", " heavily", " **\u201c", " \u201c", " due", " critical", " \u2013", " rapidly"], [" **", " due", " heavily", " during", " critical", " rapidly", " over", " in"], [" **", " due", " heavily", " during", " critical", " rapidly", " accelerated", " forced"], [" **", " due", " during", " critical", " heavily", " forced", " under", " in"], [" **", " due", " during", " critical", " forced", " heavily", " under", " over"], [" **", " critical", " during", " due", " under", " forced", " within", " caused"], [" **", " critical", " under", " inherent", " due", " combined", " caused", " exacerbated"], [" **", " combined", " inherent", " exacerbated", " during", " critical", " caused", " inevitable"], [" **", " combined", " during", " inherent", " exacerbated", " caused", " under", " of"], [" combined", " **", " exacerbated", " caused", " coupled", " inherent", " triggered", " causing"], [" combined", " exacerbated", " inherent", " caused", " triggered", " causing", " coupled", " interfering"], [" exacerbated", " triggered", ".**", " caused", "\u4f1a\u5bfc\u81f4", " combined", " inevitable", "\u65e0\u6cd5\u6ee1\u8db3"], ["\u65e0\u6cd5\u6ee1\u8db3", " will", ".**", " inherent", " incompatible", " destabil", " triggered", " exacerbated"], [" bottleneck", ".**", " disrupt", "\u7834\u574f\u4e86", " will", " disrupting", " destabil", " inherent"], [" will", " inherent", " incompatible", ".**", " ruining", "\u7834\u574f\u4e86", " bottleneck", " destroys"], [" will", "will", "\u5c06\u6210\u4e3a", " incompatible", " clash", " \u062e\u0648\u0627\u0647\u0646\u062f", " clashes", " inherent"], [" will", "will", "\u5c06\u6210\u4e3a", " breaks", " incompatible", " kills", " clash", " breaking"], [" will", " kills", " breaking", "\u5c06\u6210\u4e3a", "will", " killing", " clash", " destroying"], [" breaking", " will", " breaks", " destroying", " killing", "\u5c06\u6210\u4e3a", " collide", "\u7834\u574f"], [" breaking", " destroying", " will", " killing", " crushing", " destroys", " breaks", " crashing"], [" will", " killing", " destroying", " breaking", " inherent", " kills", " crushing", " collide"], [" will", " killing", " inherent", " destroying", " crushing", " of", " clash", " breaking"], [" will", " of", " inherent", " collide", " killing", " clash", "will", " bottleneck"], [" will", " of", " inherent", " collide", " clash", " within", " killing", " interacting"]], "p": [[0.482, 0.2277, 0.0739, 0.0508, 0.0448, 0.0272, 0.024, 0.0199], [0.5841, 0.1015, 0.0351, 0.031, 0.0273, 0.0273, 0.0213, 0.0146], [0.6059, 0.1193, 0.082, 0.0387, 0.0387, 0.0342, 0.0266, 0.0067], [0.7406, 0.027, 0.0164, 0.0164, 0.0154, 0.0144, 0.0127, 0.012], [0.9866, 0.004, 0.0036, 0.0019, 0.0008, 0.0005, 0.0004, 0.0003], [0.9893, 0.004, 0.0031, 0.0009, 0.0004, 0.0004, 0.0002, 0.0001], [0.9973, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9973, 0.0008, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9925, 0.0032, 0.0012, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002], [0.992, 0.0022, 0.0019, 0.001, 0.0003, 0.0002, 0.0002, 0.0002], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9981, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9993, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9417, 0.0034, 0.0021, 0.0016, 0.0014, 0.0014, 0.0011, 0.001], [0.5292, 0.2833, 0.0103, 0.0067, 0.0055, 0.0055, 0.0052, 0.0049], [0.9957, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9928, 0.0004, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.883, 0.0063, 0.0059, 0.0056, 0.0036, 0.0028, 0.0021, 0.0019], [0.9967, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9996, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9924, 0.0004, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002], [0.9962, 0.0008, 0.0006, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001], [0.9936, 0.0015, 0.0009, 0.0005, 0.0005, 0.0005, 0.0003, 0.0003], [0.9824, 0.0023, 0.0021, 0.0016, 0.0008, 0.0005, 0.0005, 0.0005], [0.8707, 0.0117, 0.0075, 0.0052, 0.004, 0.0029, 0.0024, 0.0024], [0.7535, 0.0065, 0.0065, 0.0061, 0.0048, 0.0048, 0.0042, 0.0035], [0.6335, 0.009, 0.008, 0.0062, 0.0058, 0.0051, 0.0048, 0.0045], [0.1116, 0.0265, 0.022, 0.0206, 0.0142, 0.0142, 0.0133, 0.0125], [0.0836, 0.0289, 0.0289, 0.0225, 0.0199, 0.0145, 0.0128, 0.01], [0.264, 0.0261, 0.0231, 0.0204, 0.0123, 0.0102, 0.0096, 0.0075], [0.0671, 0.0461, 0.0247, 0.0218, 0.0181, 0.0181, 0.017, 0.0141], [0.1188, 0.0282, 0.0282, 0.0282, 0.0194, 0.0161, 0.0151, 0.0118], [0.1378, 0.0308, 0.0187, 0.0175, 0.0175, 0.0175, 0.0155, 0.0145], [0.667, 0.013, 0.0122, 0.0101, 0.0079, 0.0065, 0.0058, 0.0045], [0.3018, 0.2663, 0.0233, 0.0181, 0.017, 0.0125, 0.0091, 0.0086], [0.3892, 0.1115, 0.0465, 0.0282, 0.022, 0.0171, 0.0171, 0.0104], [0.1427, 0.0718, 0.0718, 0.0559, 0.0219, 0.0193, 0.015, 0.0117], [0.0395, 0.0328, 0.0308, 0.024, 0.0225, 0.0225, 0.0211, 0.0211], [0.06, 0.0342, 0.0284, 0.0266, 0.0235, 0.0195, 0.0195, 0.0183], [0.0556, 0.0556, 0.0461, 0.0433, 0.0382, 0.0382, 0.0382, 0.0359], [0.1767, 0.0888, 0.042, 0.0348, 0.0327, 0.0255, 0.0225, 0.0198], [0.804, 0.0312, 0.0214, 0.0115, 0.0074, 0.0061, 0.0061, 0.0051], [0.738, 0.0223, 0.0223, 0.0127, 0.0127, 0.0099, 0.0093, 0.0087], [0.5803, 0.0327, 0.0289, 0.0289, 0.0187, 0.0165, 0.012, 0.012], [0.4139, 0.1523, 0.0635, 0.056, 0.0182, 0.0182, 0.0142, 0.0125], [0.2744, 0.1886, 0.1886, 0.0289, 0.0255, 0.0199, 0.0199, 0.0175], [0.5881, 0.1158, 0.0483, 0.0376, 0.0293, 0.0228, 0.0228, 0.0095], [0.8044, 0.0514, 0.0243, 0.0147, 0.0101, 0.0074, 0.0061, 0.0061], [0.9132, 0.019, 0.013, 0.0115, 0.0051, 0.0042, 0.0026, 0.0017], [0.8413, 0.0538, 0.0254, 0.0136, 0.0099, 0.005, 0.005, 0.0047]], "ranks": {}}, {"pos": 411, "top": [["s", " \u2013", "\u2013", ",", "\u2013and", "y", "t", "."], ["s", " \u2013", "\u2013", "\u2013and", "sWith", "\u0627\u062a", " \u2013**", " \u2013,"], ["s", "\u2013", " \u2013", "\u2013and", ",", ".\u2013", " \u2013,", "."], ["s", "sWith", "\u0627\u062a", "schrift", "sprozess", "scha", "sii", "sula"], ["s", "\u0627\u062a", "sWith", "sche", "er", "sense", "sii", "sider"], ["s", "sWith", "\u0627\u062a", "sii", "\u2013and", "sche", "sider", "sor"], ["s", "\u0627\u062a", "sWith", "sor", "sand", "saf", " **", "**"], ["s", "\u0627\u062a", "sWith", "sburg", " **", " '**", "scha", "sche"], ["s", "sWith", "\u0627\u062a", "   \n\n", "sburg", "   \n", "scha", " '**"], ["s", "\u2013and", "\u0627\u062a", "sWith", "sburg", "sste", "saf", "\u2013"], ["s", "\u0627\u062a", "\u2013and", "er", "\u2013", " \u2013", "   \n", "t"], ["s", " **", "\u0627\u062a", " '**", "sWith", "sburg", "sste", " **'"], ["s", " **", "\u0627\u062a", "sWith", "sste", "sburg", " '**", "svar"], ["s", "sWith", "\u0627\u062a", "sste", "sburg", " impactful", "sii", "\u2013and"], ["s", "sWith", " hopefully", "\u2013and", "\u0627\u062a", " amongst", " rightfully", " revamped"], ["s", " incredibly", " hopefully", "\u0627\u062a", " rightfully", "sWith", "\u2013and", " anyways"], ["s", "\u2013and", " incredibly", "\u2013", " \u2013", " ultimately", " hopefully", "\u0627\u062a"], ["s", "\u2013and", " incredibly", "\u2013", "\u0627\u062a", " \u2013", " ultimately", " **"], ["s", " incredibly", " drastically", "\u2013and", "\u0627\u062a", " arguably", " ultimately", "sste"], ["s", " incredibly", " drastically", " ultimately", " utterly", " inevitably", " arguably", " uncomfort"], ["s", "<|endoftext|>", " \n\n", "\n\n", "  \n\n", "   \n\n", " ultimately", " swiftly"], [" **", "s", "sste", " incredibly", " skyrocket", "sii", "\u751a\u81f3\u4f1a", " drastically"], ["s", " **", " incredibly", " drastically", " ultimately", " eventually", " inevitably", " dramatically"], ["s", " ultimately", " eventually", " incredibly", " drastically", " dramatically", " much", " inevitably"], [" \n\n", "\n\n", " \r\n\r\n", "s", "\r\n\r\n", "   \n\n", "  \n\n", " incredibly"], [" **", " **'", " incredibly", " drastically", " skyrocket", " **#", " wildly", " \r\n\r\n"], [" **", " incredibly", " drastically", " skyrocket", "s", " wildly", "\r\n\r\n", " \r\n\r\n"], [" **", " \n\n", "\n\n", " incredibly", " drastically", " \r\n\r\n", "\r\n\r\n", " ultimately"], [" **", " \n\n", " incredibly", " \r\n\r\n", "\n\n", " drastically", "  \n\n", " wildly"], [" **", " \n\n", " incredibly", " ...", "  \n\n", " \r\n\r\n", " drastically", "   \n\n"], [" **", " \n\n", " ...", "  \n\n", "\n\n", " incredibly", " heavily", " dramatically"], [" **", " incredibly", " heavily", " ...", " dramatically", " aggressively", " drastically", " massive"], [" heavily", " dramatically", " incredibly", " **", " drastically", " aggressively", " rapidly", " massive"], [" aggressively", " drastically", " heavily", " dramatically", " incredibly", " relentlessly", " massively", " rapidly"], [" aggressively", " drastically", " relentlessly", " heavily", " dramatically", " rapidly", " massively", " relentless"], [" aggressively", " drastically", " relentlessly", " relentless", " heavily", " rapidly", " massively", " catastrophic"], [" aggressively", " rapidly", " sluggish", " drastically", " inevitably", " relentlessly", " relentless", " catastrophic"], [" aggressively", " rapidly", " drastically", " inevitably", " catastrophic", " relentlessly", " sluggish", " inevitable"], [" rapidly", " catastrophic", " relentlessly", " aggressively", " sluggish", " drastically", " inevitable", " destabil"], [" sluggish", " unpredictable", " inevitable", " rapidly", " glitches", " destabil", " jitter", " catastrophic"], [" sluggish", " slow", " slowdown", " slower", " speed", " jitter", " slowing", " overclock"], [" jitter", " glitches", " stutter", " erratic", " unpredictable", " slowdown", " glitch", " disrupt"], [" erratic", " jitter", " glitches", " spikes", " stutter", " unpredictable", " bursts", " glitch"], [" erratic", " jitter", " spikes", " bursts", " glitches", " disrupt", " stutter", " crashes"], [" erratic", " bursts", " jitter", " spikes", " unpredictable", " disrupt", " destabil", " unsustainable"], [" erratic", " bursts", " unpredictable", " jitter", " inevitable", " spikes", "\u65e0\u6cd5\u6ee1\u8db3", " unsustainable"], [" erratic", " bursts", " inevitable", "\u65e0\u6cd5\u6ee1\u8db3", " disrupt", " spikes", " unsustainable", " jitter"], ["\u65e0\u6cd5\u6ee1\u8db3", " bursts", " disrupt", " erratic", " inevitable", " destabil", " violating", " crashes"], ["\u65e0\u6cd5\u6ee1\u8db3", " erratic", " violates", " disrupt", " bursts", " violate", " violating", " inevitable"], ["\u65e0\u6cd5\u6ee1\u8db3", "\u6839\u672c\u65e0\u6cd5", " violates", " erratic", " violate", " disrupt", "\u5c06\u65e0\u6cd5", " unsustainable"], ["\u65e0\u6cd5\u6ee1\u8db3", "\u6839\u672c\u65e0\u6cd5", "\u5c06\u65e0\u6cd5", " violates", " violate", " disrupt", " sabot", "\u90fd\u65e0\u6cd5"], ["\u65e0\u6cd5\u6ee1\u8db3", "\u6839\u672c\u65e0\u6cd5", " sabot", " violate", "\u8fbe\u4e0d\u5230", "\u505a\u4e0d\u5230", " disrupt", " violates"], ["\u7834\u574f", "\u7834\u574f\u4e86", " disrupt", "\u65e0\u6cd5\u6ee1\u8db3", " sabot", " violate", " ruining", "\u8dcc\u7834"], ["\u7834\u574f", "\u7834\u574f\u4e86", " ruining", " violate", " disrupt", "\u65e0\u6cd5\u6ee1\u8db3", "\u8dcc\u7834", " destroying"], [" violate", "\u8dcc\u7834", "\u7834\u574f", " ruining", "\u51fb\u7a7f", " violates", "\u65e0\u6cd5\u6ee1\u8db3", " disrupt"], [" violate", " kills", " kill", "\u8dcc\u7834", "\u51fb\u7a7f", " shattered", " ruining", " destroying"], [" kill", " kills", " violate", ".kill", "\u51fb\u7a7f", " killing", " destroy", " shattered"], [" destroy", " kill", " violate", "\u7834\u574f", " kills", " destroying", " destroys", "\u6bc1"], [" destroy", " kill", " destroying", " kills", " destroys", "\u7834\u574f", "\u6467\u6bc1", " killing"], [" kill", " kills", " destroy", " killing", "kill", " destroying", ".kill", " destroys"], [" kill", " destroy", " kills", " murder", " killing", " murders", " violate", " killer"], [" kill", " destroy", " violate", " murder", " obl", " crush", " shred", " throttle"], [" kill", " destroy", " violate", " murder", " crush", " cause", " break", " shred"]], "p": [[0.9972, 0.0022, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9925, 0.0046, 0.0012, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.7612, 0.1698, 0.0625, 0.0051, 0.0007, 0.0002, 0.0001, 0.0001], [0.2327, 0.038, 0.0169, 0.0131, 0.0123, 0.0109, 0.0096, 0.007], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.995, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9938, 0.0002, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9741, 0.0033, 0.0013, 0.0007, 0.0007, 0.0006, 0.0005, 0.0003], [0.9928, 0.0005, 0.0004, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9606, 0.0015, 0.0008, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002], [0.9411, 0.0008, 0.0006, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002], [0.9511, 0.0005, 0.0005, 0.0004, 0.0004, 0.0004, 0.0002, 0.0002], [0.9852, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9682, 0.0014, 0.0008, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002], [0.9529, 0.0016, 0.0005, 0.0005, 0.0004, 0.0004, 0.0004, 0.0004], [0.8229, 0.0052, 0.0025, 0.002, 0.0017, 0.0015, 0.0014, 0.0012], [0.3416, 0.2832, 0.0141, 0.0059, 0.0052, 0.004, 0.004, 0.0031], [0.0404, 0.0245, 0.0158, 0.0131, 0.007, 0.0045, 0.0043, 0.0043], [0.0719, 0.0264, 0.0219, 0.0133, 0.011, 0.0076, 0.0076, 0.0071], [0.0803, 0.0335, 0.0216, 0.0191, 0.0148, 0.0139, 0.0109, 0.0079], [0.1539, 0.0727, 0.0602, 0.0532, 0.0389, 0.0322, 0.0208, 0.0105], [0.5309, 0.016, 0.0141, 0.0081, 0.0071, 0.0059, 0.0055, 0.0046], [0.2892, 0.0153, 0.0144, 0.0135, 0.0112, 0.0093, 0.0093, 0.0087], [0.1576, 0.1083, 0.0843, 0.0188, 0.0156, 0.0147, 0.0129, 0.0121], [0.4474, 0.0828, 0.0173, 0.0163, 0.0135, 0.0127, 0.0087, 0.0082], [0.7469, 0.0787, 0.0088, 0.0054, 0.0054, 0.005, 0.0047, 0.0042], [0.4609, 0.1921, 0.0586, 0.0131, 0.0131, 0.0102, 0.009, 0.0066], [0.7984, 0.0129, 0.0089, 0.0078, 0.0054, 0.0042, 0.0039, 0.0039], [0.0292, 0.0292, 0.0257, 0.0242, 0.0227, 0.0227, 0.0188, 0.0166], [0.0459, 0.0459, 0.0296, 0.0262, 0.0204, 0.0191, 0.0191, 0.0169], [0.0369, 0.0288, 0.0239, 0.0186, 0.0164, 0.0164, 0.0164, 0.0099], [0.034, 0.0264, 0.0233, 0.0182, 0.0182, 0.0182, 0.0182, 0.0142], [0.0319, 0.0282, 0.0249, 0.0249, 0.0234, 0.022, 0.0151, 0.0142], [0.0328, 0.0328, 0.0212, 0.0187, 0.0176, 0.0176, 0.0165, 0.0155], [0.0237, 0.0223, 0.0209, 0.0209, 0.0197, 0.0185, 0.0174, 0.0144], [0.0322, 0.0235, 0.0162, 0.0152, 0.0143, 0.0143, 0.0126, 0.0118], [0.0665, 0.0457, 0.0356, 0.0261, 0.023, 0.0216, 0.0191, 0.0168], [0.0701, 0.0425, 0.0331, 0.0292, 0.0228, 0.0228, 0.0201, 0.0201], [0.0838, 0.0653, 0.0372, 0.0372, 0.0349, 0.029, 0.024, 0.0187], [0.0502, 0.0471, 0.0471, 0.0304, 0.0304, 0.0237, 0.0209, 0.0185], [0.0627, 0.0431, 0.0405, 0.0315, 0.0278, 0.0261, 0.018, 0.0169], [0.064, 0.0365, 0.0365, 0.0284, 0.0236, 0.0236, 0.0236, 0.0221], [0.0685, 0.0534, 0.0471, 0.0324, 0.0286, 0.0222, 0.0209, 0.0184], [0.0989, 0.0497, 0.0467, 0.0412, 0.0301, 0.0207, 0.0195, 0.0183], [0.2241, 0.0441, 0.0323, 0.0303, 0.0268, 0.0268, 0.0251, 0.0251], [0.5375, 0.0285, 0.0184, 0.0173, 0.0173, 0.0162, 0.0162, 0.0112], [0.3503, 0.0782, 0.0254, 0.0224, 0.0174, 0.0164, 0.0154, 0.0136], [0.5948, 0.0431, 0.0231, 0.0204, 0.0191, 0.0131, 0.0131, 0.0123], [0.1814, 0.1413, 0.0857, 0.0857, 0.0756, 0.0278, 0.0278, 0.0217], [0.2261, 0.0832, 0.0648, 0.0572, 0.0347, 0.0347, 0.027, 0.027], [0.1657, 0.1139, 0.061, 0.0419, 0.0419, 0.0239, 0.0239, 0.0211], [0.1003, 0.0885, 0.0689, 0.0537, 0.0418, 0.0369, 0.0254, 0.0224], [0.2437, 0.1898, 0.1016, 0.0544, 0.0177, 0.0177, 0.0177, 0.0166], [0.1258, 0.111, 0.098, 0.098, 0.0865, 0.0463, 0.0408, 0.036], [0.3242, 0.1966, 0.1193, 0.082, 0.0723, 0.0266, 0.0183, 0.0183], [0.7771, 0.0819, 0.0638, 0.0207, 0.0076, 0.0059, 0.0041, 0.0041], [0.8345, 0.0533, 0.0367, 0.0119, 0.0093, 0.0056, 0.0044, 0.003], [0.7113, 0.1401, 0.0229, 0.0167, 0.0108, 0.009, 0.0084, 0.0062], [0.6174, 0.1769, 0.0348, 0.0225, 0.0155, 0.0155, 0.0145, 0.0113]], "ranks": {}}, {"pos": 412, "top": [[".", ",", "\u2013", " \u2013", "-", "\u2013and", ";", "the"], ["\u2013and", "   \n", " Kill", "  \n", "sville", "\u2013", "--", "kids"], [".", ",", "..", "\u2013", "\u2013and", "!!", ";", "-->"], [" Blowjob", "':''", " **>>", "\uc3df", " '--", "_kill", " ''", " Kasat"], ["--", "star", " kids", " crazy", "top", "!--", "stars", " Kill"], ["top", "stars", " crazy", "star", "   \n", " horribly", "-hit", " nasty"], ["  \n", " --", "--", "   \n", " horribly", " \n", " crazy", " killers"], [" horribly", " '**", "   \n", " **'", " --", "  \n", " killers", " **"], ["   \n\n", " killer", " killers", "  \n", "   \n", " horribly", " \n", " kill"], [" horribly", " killer", " booze", " killers", " havoc", "\u6740\u624b", " kids", "!--"], [" killer", " killers", "  \n", " horribly", " kids", " havoc", " booze", " kill"], [" killer", " killers", " booze", " **", " **'", " kids", " '**", " kill"], [" booze", " killer", " veggies", " killers", " skinny", " kids", " **'", " freaking"], [" booze", " veggies", " kids", " freaking", " skinny", " killer", " busted", " killers"], [" kids", " booze", " busted", " freaking", " skinny", " horribly", " smack", " --"], [" kids", " booze", " --", " freaking", " horribly", " smack", " busted", " nasty"], [" kids", " booze", " skinny", " freaking", " horribly", " veggies", " nasty", " smack"], [" booze", " kids", " freaking", " veggies", " skinny", " nasty", " killer", " horribly"], [" booze", " freaking", " killer", " kids", " veggies", " nasty", " skinny", " killers"], [" booze", " killer", " freaking", " kids", " horribly", " killers", " havoc", " busted"], [" booze", " killer", " freaking", " horribly", " kids", " busted", " havoc", "\u6740\u624b"], [" booze", " killer", " freaking", " kids", " killers", " horribly", " havoc", " busted"], [" booze", " killer", " havoc", " freaking", " horribly", " killers", " --", " kids"], [" booze", " havoc", " --", " killer", " horribly", " kids", " freaking", " busted"], [" booze", " \n\n", "   \n\n", " havoc", " horribly", " --", " killer", " kids"], [" booze", " killer", " havoc", " kids", " freaking", " killers", " horribly", " kill"], [" booze", " killer", " havoc", " killers", " kids", " freaking", " kills", " horribly"], [" killer", " booze", " horribly", " havoc", " kids", " --", " \n\n", " killers"], [" booze", " killer", " killers", " havoc", " kills", " kill", " Killer", " kids"], [" booze", " killer", " killers", " havoc", " kill", " kills", " kids", " doom"], [" killer", " booze", " killers", " kills", " kill", " kids", " havoc", " hell"], [" killer", " booze", " kill", " kills", " killers", " hell", " nasty", " kids"], [" killer", " booze", " kill", " kills", " havoc", " killers", " doom", " nasty"], [" killer", " booze", " havoc", " doom", " killers", " nasty", " kill", " horribly"], [" killer", " booze", " havoc", " kill", " horribly", " kills", " Killer", " killers"], [" killer", " Killer", " kill", " kills", " booze", " killers", " Kill", " Kills"], [" killer", " kill", " kills", " Killer", " booze", " Kill", " Kills", " killers"], [" killer", " kill", " kills", " Killer", " Kill", " Kills", " booze", " framerate"], [" killer", " kills", " kill", " framerate", " Killer", " Kills", " Kill", " performance"], [" framerate", " speed", " killer", " kill", " kills", " speeds", " performance", " Killer"], [" framerate", " speed", " killer", " kills", " performance", " kill", " speeds", " pace"], [" framerate", " speed", " performance", " speeds", " throughput", " killer", " jitter", " fps"], [" framerate", " performance", " speed", " speeds", " throughput", " jitter", " uptime", " pace"], [" framerate", " performance", " speeds", " speed", " jitter", " throughput", " kills", " killer"], [" framerate", " performance", " speeds", " throughput", " jitter", " speed", "\u6bcf\u79d2", " kills"], [" framerate", " jitter", " performance", " kills", " killer", " speeds", " speed", " throughput"], [" framerate", " jitter", " performance", " fps", " stability", " killer", " latency", " kills"], [" framerate", " jitter", " performance", " kills", " killer", "\u6bcf\u79d2", " Killer", " fps"], [" framerate", "\u6bcf\u79d2", " jitter", " kills", " uptime", " latency", " bursts", " stamina"], [" framerate", " viability", " throughput", " uptime", " kills", "uptime", " stamina", "\u6bcf\u79d2"], [" framerate", " viability", "_fps", " uptime", "uptime", " throughput", ".**", " fatally"], [" framerate", "_fps", " throughput", "Achie", " latency", ".**", " uptime", " scalability"], [" framerate", "_fps", " latency", "Achie", " throughput", " achieving", " uptime", " Achie"], [" framerate", " latency", "_fps", " throughput", " stability", "\u8fde\u7eed\u6027", " uptime", " your"], [" framerate", " your", "\u4f60\u7684", " latency", "-your", " throughput", "_fps", " stability"], [" framerate", "_fps", " your", " stability", " FPS", " latency", "fps", " fps"], [" framerate", " your", " consistency", "\u7684\u4e00\u81f4\u6027", "\u4f60\u7684", "_fps", " stability", " FPS"], [" your", " framerate", "\u4f60\u7684", " consistency", "your", "-your", "\u7684\u4e00\u81f4\u6027", "\u5e27"], [" your", " framerate", "\u5e27", " consistency", "\u4f60\u7684", "-your", "your", " frame"], [" your", "\u5e27", " framerate", " consistency", " frame", " frames", "/frame", "frame"], [" your", " framerate", " consistency", "\u5e27", " frame", " stability", "your", "-your"], [" your", " frame", " framerate", " consistency", "\u5e27", " frames", " you", "-frame"], [" your", " the", " frame", " consistency", " you", "\u5e27", " framerate", " stability"]], "p": [[0.5002, 0.3438, 0.032, 0.022, 0.0092, 0.0059, 0.0059, 0.0022], [0.0259, 0.0167, 0.0084, 0.0084, 0.007, 0.0061, 0.0054, 0.0051], [0.1992, 0.1208, 0.0504, 0.0504, 0.0346, 0.0082, 0.0053, 0.0053], [0.0167, 0.0101, 0.0101, 0.0065, 0.0045, 0.0042, 0.0035, 0.0033], [0.0308, 0.0199, 0.0165, 0.0145, 0.0137, 0.012, 0.0113, 0.0106], [0.0171, 0.0118, 0.0118, 0.0092, 0.0092, 0.0081, 0.0043, 0.0043], [0.0825, 0.0775, 0.0533, 0.0415, 0.0184, 0.0162, 0.0077, 0.0072], [0.0442, 0.0366, 0.0268, 0.0236, 0.0209, 0.0184, 0.0163, 0.0135], [0.0444, 0.0417, 0.0346, 0.0287, 0.0253, 0.0223, 0.0144, 0.0135], [0.0471, 0.0415, 0.0285, 0.0237, 0.0112, 0.0105, 0.0099, 0.0077], [0.0765, 0.0319, 0.03, 0.0264, 0.0233, 0.0219, 0.0193, 0.0182], [0.165, 0.0536, 0.0503, 0.0417, 0.0417, 0.0238, 0.021, 0.021], [0.1048, 0.0597, 0.034, 0.03, 0.0265, 0.0234, 0.0206, 0.0161], [0.1074, 0.0477, 0.0421, 0.0289, 0.0289, 0.0272, 0.0165, 0.0128], [0.0997, 0.0826, 0.0685, 0.0442, 0.0345, 0.0268, 0.0209, 0.0196], [0.2408, 0.0648, 0.0648, 0.0369, 0.0326, 0.0326, 0.0306, 0.0306], [0.2408, 0.0782, 0.0505, 0.0393, 0.0306, 0.0288, 0.021, 0.0186], [0.1342, 0.1261, 0.0634, 0.0559, 0.0494, 0.0281, 0.0248, 0.0233], [0.1902, 0.0844, 0.0424, 0.033, 0.0257, 0.0227, 0.0227, 0.0213], [0.1739, 0.0874, 0.0681, 0.0342, 0.0322, 0.025, 0.0172, 0.0152], [0.1, 0.0732, 0.0732, 0.0535, 0.0305, 0.0269, 0.0185, 0.0144], [0.1771, 0.0693, 0.0575, 0.0211, 0.0199, 0.0187, 0.0137, 0.012], [0.1982, 0.0776, 0.0367, 0.0344, 0.0344, 0.0196, 0.0184, 0.0173], [0.1038, 0.0759, 0.0713, 0.0555, 0.0522, 0.0192, 0.014, 0.0132], [0.1607, 0.049, 0.049, 0.046, 0.0358, 0.0262, 0.0246, 0.0204], [0.2822, 0.0759, 0.0407, 0.0382, 0.0247, 0.0192, 0.018, 0.0091], [0.2539, 0.0994, 0.0366, 0.0285, 0.0222, 0.0143, 0.0126, 0.0119], [0.1403, 0.1318, 0.0428, 0.0402, 0.026, 0.0244, 0.0229, 0.019], [0.1752, 0.1752, 0.0367, 0.0304, 0.0237, 0.0223, 0.0153, 0.0153], [0.2027, 0.1229, 0.0375, 0.0214, 0.0214, 0.0201, 0.0177, 0.013], [0.2481, 0.1172, 0.0405, 0.0381, 0.0357, 0.0246, 0.0191, 0.0169], [0.2399, 0.0535, 0.0503, 0.0368, 0.0368, 0.0287, 0.0223, 0.0197], [0.1978, 0.0684, 0.0303, 0.0252, 0.0236, 0.0196, 0.0184, 0.0184], [0.1707, 0.0913, 0.0297, 0.018, 0.0169, 0.0159, 0.0159, 0.0149], [0.1297, 0.0949, 0.0272, 0.0187, 0.0165, 0.0155, 0.0146, 0.0137], [0.3523, 0.0508, 0.0477, 0.0371, 0.0187, 0.0187, 0.0165, 0.0145], [0.2279, 0.0509, 0.0372, 0.035, 0.0328, 0.0121, 0.0113, 0.0107], [0.1798, 0.0749, 0.0515, 0.0515, 0.0312, 0.0312, 0.0189, 0.0115], [0.1307, 0.07, 0.07, 0.0257, 0.0257, 0.0242, 0.0166, 0.0129], [0.1224, 0.108, 0.0841, 0.0479, 0.0397, 0.0241, 0.0213, 0.0213], [0.304, 0.1051, 0.0562, 0.0266, 0.0266, 0.025, 0.0234, 0.0125], [0.4408, 0.0597, 0.0495, 0.0249, 0.0194, 0.0171, 0.0133, 0.0133], [0.3839, 0.0667, 0.0405, 0.0278, 0.018, 0.0158, 0.014, 0.0131], [0.4239, 0.0506, 0.0239, 0.0186, 0.0145, 0.0145, 0.0113, 0.0106], [0.4955, 0.0218, 0.018, 0.018, 0.017, 0.0117, 0.0097, 0.0097], [0.3122, 0.0226, 0.0176, 0.0121, 0.0114, 0.0107, 0.0107, 0.0107], [0.3133, 0.0177, 0.0101, 0.0083, 0.0078, 0.0074, 0.0069, 0.0069], [0.3994, 0.0106, 0.0083, 0.0073, 0.0069, 0.0065, 0.0061, 0.0054], [0.3952, 0.0064, 0.0053, 0.0053, 0.0036, 0.0036, 0.0036, 0.0036], [0.4704, 0.0142, 0.0071, 0.0052, 0.0043, 0.0038, 0.0034, 0.0032], [0.2803, 0.0123, 0.0055, 0.0048, 0.0045, 0.0043, 0.0029, 0.0029], [0.4893, 0.0229, 0.0178, 0.0074, 0.0066, 0.0045, 0.004, 0.0035], [0.4268, 0.0615, 0.0543, 0.0226, 0.0176, 0.0165, 0.0129, 0.0078], [0.5571, 0.0518, 0.0356, 0.0261, 0.0096, 0.009, 0.0075, 0.0062], [0.5101, 0.2126, 0.0306, 0.0254, 0.0136, 0.0128, 0.0113, 0.0093], [0.7599, 0.0378, 0.0334, 0.0295, 0.026, 0.0102, 0.0079, 0.0066], [0.3459, 0.3459, 0.1123, 0.0208, 0.0195, 0.0134, 0.0092, 0.0087], [0.8652, 0.0553, 0.0261, 0.0158, 0.0085, 0.0085, 0.0017, 0.0014], [0.628, 0.1588, 0.1091, 0.0354, 0.0115, 0.0048, 0.0048, 0.0042], [0.8916, 0.0346, 0.0238, 0.0144, 0.0112, 0.0036, 0.0022, 0.0022], [0.9711, 0.0108, 0.0074, 0.0024, 0.0013, 0.0013, 0.0007, 0.0005], [0.9545, 0.0106, 0.0094, 0.0064, 0.005, 0.0014, 0.0013, 0.0011], [0.9795, 0.0085, 0.0051, 0.0015, 0.0014, 0.0007, 0.0006, 0.0004]], "ranks": {}}, {"pos": 413, "top": [["\u2013", " \u2013", ",", ".", "\u2013and", ".\u2013", ";", " \u2013,"], [" \u2013", "\u2013", "\u2013and", " \u2013,", "\u2013\u2013", ",", ".\u2013", "."], ["\u2013", " \u2013", ",", "\u2013and", ".", ".\u2013", " \u2013,", ";"], [" *\u2013", "\u6700\u65b0\u53d1\u5e03", "zinho", " -->", "('--", "Advisor", "sprozess", "----</"], ["\u2013and", " (@", "\u2013", " \u2013", ".@", "@", " -->", "-->"], ["\u2013and", "\u2013", " \u2013", ",", ".\u2013", "  ", "\u2013\u2013", "."], [" \u2018", "\u2013and", " \u2013", "\u2013", "\u2018", " -->", " @", "   \n"], [" @", " -->", "   \n", "\u2013and", "   \r\n", "  ", " *@", "-->"], ["\u2013and", ".", "   \n", ",", "\u2013", "  ", "\u2018", " \u2018"], ["\u2013and", "\u2013", "  \r\n", "   \r\n", "   \n", ",", " kids", "-ish"], ["\u2013and", "\u2013", "   \n", "...", " @", " \u2013", " -->", "\\n"], [" -->", " ____", " kids", " ***", " ______", " veggies", "____", "\u2013and"], [" kids", " -->", " ____", " veggies", " folks", " funky", "\u2013and", "____"], [" kids", " folks", " funky", " savvy", " incredibly", " veggies", " pretty", " guys"], [" folks", " kids", " --", "--", " pretty", " incredibly", " savvy", " busted"], [" folks", " kids", " --", " incredibly", " pretty", "--", " savvy", " just"], [" folks", " kids", "\u2013", " incredibly", "\u2013and", " pretty", " savvy", "..."], [" kids", " folks", " incredibly", " savvy", " funky", "\u2013and", " tech", " pretty"], [" kids", " folks", " incredibly", " savvy", " funky", " guys", " freaking", " nasty"], [" folks", " kids", " incredibly", " --", " savvy", "\u2014you", " busted", " big"], ["<|endoftext|>", " folks", " kids", " incredibly", " @", " savvy", " busted", " #"], [" kids", " folks", " incredibly", " savvy", " freaking", " booze", " busted", " funky"], [" kids", " folks", " incredibly", " busted", " savvy", " tech", " big", " freaking"], [" --", " kids", " folks", " incredibly", " #", " tech", " busted", " big"], ["   \n\n", " \n\n", " folks", "  \n\n", " \r\n\r\n", "\r\n\r\n", "\n\n", " --"], [" folks", " tech", " kids", " --", " ____", " incredibly", " busted", " booze"], [" tech", " folks", " kids", " --", " incredibly", " busted", " ____", " #"], [" tech", " --", " @", " incredibly", " folks", " kids", " big", " #"], [" tech", " incredibly", " @", " #", " folks", " kids", " --", " ____"], [" tech", " incredibly", " kids", " ____", " folks", " massive", " --", " big"], [" tech", " incredibly", " ...", " --", " big", " massive", " @", " huge"], [" incredibly", " tech", " massive", " big", " ...", " @", " huge", " #"], [" tech", " incredibly", " massive", " big", " @", " huge", " high", " just"], [" tech", " incredibly", " relentless", " massive", " massively", "\u2014you", " tweaks", " crunch"], [" tech", " relentless", " crunch", " hardware", "\u2014you", " infrastructure", " massive", " tweaks"], [" tech", " hardware", " framerate", " fastest", " fast", " relentless", " sprint", " performance"], [" tech", " framerate", " hardware", " fastest", " performance", " speed", " fast", " sprint"], [" tech", " framerate", " hardware", " performance", " fastest", " speed", " gaming", " fast"], [" framerate", " tech", " performance", " fastest", " hardware", " speed", " gaming", " fast"], [" framerate", " speed", " performance", " fastest", " tech", " fast", " throughput", " gameplay"], [" framerate", " speed", " performance", " throughput", " speeds", " fastest", " fast", " FPS"], [" framerate", " performance", " throughput", " speed", " FPS", " metrics", " fps", " uptime"], [" framerate", " performance", " throughput", " metrics", " benchmarks", " speed", " FPS", " uptime"], [" framerate", " performance", " throughput", " metrics", " benchmarks", " goals", " specs", " sprint"], [" framerate", " benchmarks", " throughput", " goals", " deadlines", " metrics", " performance", " targets"], [" framerate", " requirement", " deadlines", " benchmarks", " throughput", " performance", " metrics", " goals"], [" framerate", " deadlines", " metrics", " requirement", " specs", " benchmarks", " requirements", " throughput"], [" framerate", " requirement", " requirements", " deadlines", " specs", " deadline", " goals", " benchmarks"], [" framerate", " requirement", " deadlines", " benchmarks", " **#", " requirements", " specs", "_REQUIRED"], [" framerate", " deadlines", " throughput", " **#", " viability", " uptime", " requirement", " deadline"], [" framerate", " deadlines", " uptime", " viability", " throughput", " credibility", " latency", "\u4f60\u60f3\u8981\u7684"], [" framerate", " throughput", " latency", " deadlines", " uptime", " requirement", " credibility", " performance"], [" framerate", " latency", " uptime", " throughput", " deadlines", " performance", " FPS", "performance"], [" framerate", " latency", " throughput", " uptime", " deadlines", " FPS", " runtime", " performance"], [" framerate", " latency", " throughput", " uptime", " runtime", " GPU", " FPS", " CPU"], [" framerate", " FPS", " fps", "\u5e27", " latency", "_fps", "fps", " throughput"], [" framerate", " FPS", "\u5e27", " fps", " latency", "_fps", "fps", " throughput"], [" framerate", "\u5e27", " FPS", " fps", " frame", " latency", " targeting", " target"], ["\u5e27", " framerate", " frame", " frames", " Frame", "Frame", "-frame", "frame"], [" frame", "\u5e27", " framerate", " frames", " Frame", "-frame", "Frame", "frame"], [" framerate", " frame", "\u5e27", " frames", "-frame", " Frame", " fram", "Frame"], [" framerate", " frame", "\u5e27", " frames", " Frame", "-frame", " fram", "Frame"], [" frame", " framerate", " ", " target", " frames", "\u5e27", " Frame", " fram"]], "p": [[0.4745, 0.3696, 0.1059, 0.039, 0.0087, 0.0007, 0.0003, 0.0002], [0.5077, 0.3954, 0.0882, 0.0028, 0.0015, 0.0013, 0.0009, 0.0003], [0.7821, 0.154, 0.0344, 0.0184, 0.0087, 0.0015, 0.0004, 0.0001], [0.0125, 0.0104, 0.0055, 0.0034, 0.0032, 0.0026, 0.0025, 0.0023], [0.1716, 0.0631, 0.0557, 0.036, 0.0247, 0.0205, 0.0193, 0.017], [0.4076, 0.2323, 0.0158, 0.0116, 0.0102, 0.0062, 0.0055, 0.0045], [0.1436, 0.1349, 0.0987, 0.0768, 0.0678, 0.0598, 0.0466, 0.0301], [0.174, 0.1355, 0.0931, 0.0822, 0.0413, 0.0322, 0.0208, 0.0195], [0.2126, 0.1211, 0.1069, 0.0648, 0.0648, 0.0446, 0.027, 0.027], [0.4907, 0.0908, 0.0216, 0.0179, 0.0158, 0.0131, 0.009, 0.0084], [0.3725, 0.1994, 0.0347, 0.027, 0.0224, 0.0197, 0.0185, 0.0174], [0.3809, 0.169, 0.0484, 0.0377, 0.0229, 0.0178, 0.0157, 0.0115], [0.1344, 0.1263, 0.1047, 0.056, 0.0362, 0.0265, 0.0219, 0.0171], [0.2704, 0.2106, 0.0285, 0.0251, 0.0222, 0.0196, 0.0196, 0.0196], [0.3112, 0.1565, 0.1076, 0.0421, 0.0199, 0.0176, 0.0146, 0.0113], [0.358, 0.1691, 0.0584, 0.0215, 0.0148, 0.0148, 0.0115, 0.0095], [0.2488, 0.1606, 0.0406, 0.0316, 0.0231, 0.0159, 0.0149, 0.0116], [0.2767, 0.1307, 0.0352, 0.0257, 0.0188, 0.0166, 0.0147, 0.0147], [0.2083, 0.0984, 0.0561, 0.0282, 0.0234, 0.0161, 0.0151, 0.0151], [0.1448, 0.1059, 0.05, 0.0344, 0.0196, 0.0143, 0.0119, 0.0119], [0.5717, 0.0389, 0.0173, 0.0087, 0.0064, 0.006, 0.0049, 0.0049], [0.1276, 0.047, 0.0323, 0.0285, 0.0222, 0.0173, 0.0173, 0.0173], [0.1218, 0.0837, 0.0575, 0.0199, 0.0199, 0.0137, 0.0106, 0.0078], [0.0382, 0.0337, 0.0317, 0.0297, 0.0246, 0.0116, 0.0091, 0.0091], [0.1441, 0.0681, 0.053, 0.0498, 0.0498, 0.0413, 0.0342, 0.0321], [0.1194, 0.099, 0.0724, 0.0342, 0.0302, 0.0207, 0.0195, 0.0183], [0.1124, 0.0531, 0.044, 0.0208, 0.0162, 0.0134, 0.0126, 0.0105], [0.0718, 0.0339, 0.0299, 0.0233, 0.0193, 0.0125, 0.011, 0.011], [0.1036, 0.0358, 0.0297, 0.0169, 0.014, 0.014, 0.014, 0.0109], [0.1328, 0.0431, 0.0159, 0.0159, 0.0109, 0.0102, 0.009, 0.008], [0.0872, 0.0321, 0.0235, 0.0235, 0.0161, 0.0161, 0.0126, 0.0098], [0.0469, 0.044, 0.0251, 0.0221, 0.0184, 0.0184, 0.0152, 0.0087], [0.0409, 0.0264, 0.0219, 0.0125, 0.0117, 0.008, 0.0071, 0.0067], [0.1676, 0.031, 0.0188, 0.0177, 0.0138, 0.0121, 0.0083, 0.0078], [0.2258, 0.0154, 0.0154, 0.0106, 0.0088, 0.0082, 0.0077, 0.0077], [0.1732, 0.0411, 0.032, 0.0266, 0.0151, 0.0125, 0.0118, 0.0081], [0.1679, 0.0844, 0.0425, 0.0274, 0.0258, 0.0177, 0.0166, 0.0095], [0.1169, 0.0969, 0.0295, 0.0179, 0.0149, 0.0109, 0.0109, 0.0109], [0.141, 0.0588, 0.0458, 0.0168, 0.0168, 0.0149, 0.0123, 0.0123], [0.5267, 0.0406, 0.0382, 0.014, 0.014, 0.0103, 0.0071, 0.0066], [0.7524, 0.0618, 0.0242, 0.0122, 0.0084, 0.0079, 0.0054, 0.0045], [0.7966, 0.0273, 0.0176, 0.0129, 0.0057, 0.0057, 0.0044, 0.0039], [0.7042, 0.0241, 0.0156, 0.0114, 0.0094, 0.0073, 0.0065, 0.0065], [0.6521, 0.0185, 0.0163, 0.0163, 0.0144, 0.0105, 0.0093, 0.0072], [0.6422, 0.0142, 0.0133, 0.0125, 0.0118, 0.0098, 0.0092, 0.0071], [0.5573, 0.0102, 0.0102, 0.0102, 0.0102, 0.009, 0.0085, 0.0079], [0.5782, 0.0154, 0.0106, 0.0099, 0.0082, 0.0077, 0.0077, 0.0064], [0.6285, 0.0229, 0.0148, 0.0139, 0.013, 0.0084, 0.0054, 0.0045], [0.6691, 0.0115, 0.0074, 0.0048, 0.0045, 0.0042, 0.0037, 0.0033], [0.7797, 0.0072, 0.0049, 0.0044, 0.0036, 0.0034, 0.0034, 0.0025], [0.6448, 0.0086, 0.0043, 0.0041, 0.0032, 0.0026, 0.0023, 0.0022], [0.7895, 0.0128, 0.0106, 0.0053, 0.0047, 0.002, 0.0017, 0.0016], [0.8161, 0.049, 0.0091, 0.0085, 0.0036, 0.0031, 0.002, 0.0019], [0.898, 0.0289, 0.0078, 0.0027, 0.0014, 0.0011, 0.0011, 0.001], [0.9659, 0.0122, 0.0037, 0.0015, 0.0004, 0.0004, 0.0004, 0.0004], [0.9791, 0.014, 0.0017, 0.0015, 0.0008, 0.0006, 0.0005, 0.0003], [0.969, 0.0157, 0.0051, 0.0019, 0.0015, 0.0009, 0.0007, 0.0004], [0.9657, 0.0156, 0.0057, 0.0011, 0.0011, 0.0008, 0.0008, 0.0006], [0.4344, 0.2986, 0.1598, 0.0315, 0.0191, 0.0149, 0.0116, 0.0102], [0.5297, 0.172, 0.1518, 0.0558, 0.0299, 0.016, 0.0125, 0.0125], [0.7699, 0.1516, 0.0263, 0.016, 0.0075, 0.0075, 0.0031, 0.0028], [0.4798, 0.4235, 0.0211, 0.0211, 0.0128, 0.0113, 0.006, 0.0037], [0.5905, 0.2789, 0.0622, 0.0178, 0.013, 0.0048, 0.0042, 0.0026]], "ranks": {}}, {"pos": 414, "top": [[" \u2013", "\u2013", ".", "\u00a0\u00a0", "\u2026..", ",", "\u2026.", "\u00a0"], [" \u2013", "\u2013and", "\u2013", "\u2013\u2013", " \u2013**", "**\u2013", " \u2013,", " **\u2013"], [" \u2013", "\u2013", "\u2013and", "**\u2013", ".\u2013", " \u2013,", " \u2013**", "\u2013\u2013"], [" milfs", " Shemale", " Strec", " Hidal", " pupper", "aruhi", " Blowjob", " Bbw"], [" @_", " *@", " **#", " CDI", "@g", "insip", " CFD", "plorer"], [" **\u2013", "consts", "ogh", "\u5178\u793c", " fridge", " **\u20ac", "insip", "-**"], ["-**", " **#", "\uff01", " \uffe5", " \u00b4", " @_", " *@", "\uffe5"], [" veggies", " *@", "VERY", " carbs", "-ish", " @_", " booze", " nerd"], ["athon", "VERY", " *@", "-ish", "\u53c1", "-Mar", "   \n\n", " \u00b4"], ["-ish", "\u2013and", "-heavy", " veggies", "VERY", " booze", "-safe", "-cent"], ["-", "-ish", "-tech", "-heavy", "\u2013", " #", " \ufffd", "#"], [" veggies", "Sharper", " booze", "-ish", "opolitan", " skinny", "iha", "illion"], [" veggies", "-ish", " booze", "-tech", " skinny", "Sharper", " pricey", " nerd"], [" veggies", " booze", "-ish", " skinny", "-tech", " pricey", "Sharper", " classy"], [" kids", "-ish", " guys", " booze", " veggies", "-tech", " savvy", " guts"], [" kids", " savvy", " pricey", " skinny", " veggies", " guts", " booze", " big"], [" kids", "\u2013", " skinny", " booze", "-ish", " savvy", " veggies", " pricey"], ["-tech", " kids", "-ish", "-big", " booze", " pricey", " big", "-heavy"], ["-tech", " booze", "-big", " pricey", "-ish", " nasty", "-heavy", " huge"], ["\u2013", "i", "-heavy", " hugely", " pricey", "\u2013and", "\u8ddf", " booze"], ["<|endoftext|>", "1", "2", "3", "Though", "4", "6", "7"], ["Sharper", " booze", " pricey", "iha", "\u5c31\u8ddf", " framerate", "\u76f8\u5173\u884c\u4e1a", " flashy"], [" hugely", " huge", " ''", " massively", " pricey", " tech", " booming", " incredibly"], [" hugely", " huge", " massively", " heavy", " rapidly", " wildly", " much", " heavily"], [" hugely", " \r\n\r\n", " \n\n", " pricey", " tech", "Though", "battle", "-heavy"], [" framerate", " tech", " gaming", "Sharper", " hardware", " gamers", " stunt", "-tech"], [" framerate", " gaming", " tech", " gamers", " hardware", " stunt", " robotic", " overclock"], [" speed", " tech", " hardware", " gaming", " heavily", " fast", " heavy", " rapidly"], [" tech", " speed", " gaming", " hardware", " framerate", " robotic", " technology", " speeds"], [" tech", " framerate", " hardware", " gaming", " speed", " gameplay", " technology", " robotic"], [" tech", " hardware", " technology", " speed", " game", " games", " gaming", " fast"], [" tech", " technology", " speed", " fast", " game", " hardware", " heavy", " high"], [" fast", " speed", " hardware", " heavy", " tech", " high", " technology", " game"], [" hardware", " tech", " framerate", " workflows", " overclock", " gameplay", " technology", "-tech"], [" hardware", " tech", " framerate", " workflows", " overclock", " automation", " rapid", "-tech"], [" hardware", " framerate", " overclock", " tech", " fastest", " workflows", " speed", " reboot"], [" framerate", " speed", " rapid", " hardware", " gameplay", " CPU", " fastest", " overclock"], [" speed", " framerate", " rapid", " fast", " hardware", " pixel", " rapidly", " workflows"], [" framerate", " speed", " hardware", " continuously", " stutter", " workflows", " performance", " pixel"], [" framerate", " speed", " workflows", " workflow", " milliseconds", " stutter", " CPU", " hardware"], [" framerate", " speed", "\u6bcf\u79d2", " workflows", " CPU", " workflow", " milliseconds", " fastest"], [" framerate", " workflows", "\u6bcf\u79d2", " workflow", " speed", " CPU", " milliseconds", " timeline"], [" framerate", "\u6bcf\u79d2", " cycle", " cycles", " workflows", " workflow", " nightly", " animation"], [" framerate", " cycle", "\u6bcf\u79d2", " workflow", " workflows", " nightly", " cycles", " daily"], [" cycle", " framerate", "\u6bcf\u79d2", " cycles", " workflow", " nightly", " workflows", " daily"], [" framerate", " cycle", "\u6bcf\u79d2", " cycles", " nightly", " workflow", "\u6bcf\u5206\u949f", " workflows"], [" framerate", " cycle", "\u6bcf\u79d2", " workflow", " workflows", " cycles", " loop", " every"], [" framerate", "\u6bcf\u79d2", " cycle", "\u6bcf", " workflow", " workflows", "-cycle", " lifecycle"], [" framerate", "\u6bcf\u79d2", "\u6bcf", "\u6bcf\u5206\u949f", "\u6bcf\u4e00", "-cycle", "\u6bcf\u5c0f\u65f6", " workflows"], [" framerate", "\u6bcf\u79d2", "\u6bcf", "\u6bcf\u5206\u949f", "\u6bcf\u5c0f\u65f6", "\u6bcf\u4e00", "\u6bcf\u5468", "\u6bcf\u6708"], ["\u6bcf\u79d2", " framerate", "\u6bcf", "\u6bcf\u5206\u949f", "\u6bcf\u5468", "\u6bcf\u6708", "\u6bcf\u65e5", " nightly"], [" framerate", "\u6bcf\u79d2", " CPU", "\u6bcf", " GPU", " shader", "CPU", "GPU"], [" framerate", "\u6bcf\u79d2", " shader", " renderer", "\u5e27", "\u6bcf", " GPU", " CPU"], [" framerate", " shader", " renderer", " GPU", " CPU", "\u5e27", "\u6e32\u67d3", "-frame"], ["-loop", " loop", "loop", "Loop", " loops", " renderer", " shader", " Loop"], ["\u6e32\u67d3", "/render", "-render", " renderer", " Rendering", "Rendering", " rendering", "-loop"], ["\u6e32\u67d3", " rendering", "/render", " Rendering", "-render", " renderer", " render", "Rendering"], ["\u6e32\u67d3", " rendering", " render", " Rendering", " renderer", "-render", "/render", "Rendering"], ["\u6e32\u67d3", " rendering", " render", " renderer", "-render", " Rendering", "-frame", " frame"], [" render", " rendering", "\u6e32\u67d3", " renderer", "-render", "/render", "render", " frame"], [" rendering", " render", " renderer", "\u6e32\u67d3", " frame", "-render", "-frame", "/render"], [" render", " rendering", "\u6e32\u67d3", " renderer", "-render", " frame", "/render", " per"], ["1", "6", "2", "3", "4", "8", " render", "9"]], "p": [[0.3068, 0.2543, 0.1981, 0.047, 0.0323, 0.0323, 0.0285, 0.0222], [0.0692, 0.037, 0.0239, 0.0211, 0.0175, 0.0083, 0.0053, 0.003], [0.3831, 0.2984, 0.1324, 0.0379, 0.0179, 0.0158, 0.0116, 0.0116], [0.0145, 0.0034, 0.0028, 0.0025, 0.0024, 0.0022, 0.0022, 0.0021], [0.0078, 0.0074, 0.0042, 0.0022, 0.0017, 0.0017, 0.0013, 0.0012], [0.0027, 0.0023, 0.002, 0.0017, 0.0017, 0.0015, 0.0014, 0.0013], [0.0114, 0.01, 0.0073, 0.0057, 0.005, 0.0044, 0.0042, 0.0033], [0.0118, 0.0081, 0.0072, 0.0036, 0.0034, 0.0034, 0.003, 0.0028], [0.0162, 0.0118, 0.0092, 0.0049, 0.0038, 0.0032, 0.003, 0.0028], [0.0059, 0.0032, 0.0032, 0.0026, 0.0025, 0.0023, 0.0023, 0.0022], [0.0644, 0.0324, 0.0209, 0.0184, 0.0153, 0.0144, 0.0099, 0.0082], [0.0134, 0.0052, 0.0044, 0.0036, 0.003, 0.0028, 0.0025, 0.0025], [0.0235, 0.0072, 0.0067, 0.0038, 0.0032, 0.003, 0.003, 0.0023], [0.0307, 0.0136, 0.0083, 0.0069, 0.0064, 0.0053, 0.0039, 0.0037], [0.0262, 0.0124, 0.0124, 0.0103, 0.0096, 0.0096, 0.009, 0.0075], [0.0404, 0.0158, 0.0149, 0.0123, 0.0116, 0.0116, 0.0116, 0.009], [0.0267, 0.0195, 0.0172, 0.0126, 0.0111, 0.0111, 0.0111, 0.0105], [0.0339, 0.0181, 0.016, 0.015, 0.0133, 0.0117, 0.011, 0.0103], [0.0263, 0.0263, 0.0141, 0.0103, 0.008, 0.008, 0.0075, 0.0071], [0.0076, 0.0044, 0.0041, 0.0036, 0.0036, 0.0032, 0.003, 0.0025], [0.9676, 0.0005, 0.0004, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002], [0.0045, 0.0031, 0.0025, 0.0024, 0.0011, 0.0011, 0.0011, 0.0011], [0.0058, 0.004, 0.0029, 0.0027, 0.0024, 0.0023, 0.0021, 0.002], [0.0072, 0.0044, 0.0039, 0.0027, 0.0027, 0.0022, 0.0021, 0.0019], [0.0119, 0.0112, 0.0041, 0.003, 0.0025, 0.0021, 0.0019, 0.0019], [0.0403, 0.0148, 0.0079, 0.007, 0.0051, 0.0048, 0.004, 0.0033], [0.0304, 0.0127, 0.0127, 0.0056, 0.005, 0.0039, 0.0034, 0.0032], [0.023, 0.014, 0.0102, 0.0096, 0.008, 0.008, 0.0075, 0.007], [0.0439, 0.0221, 0.0195, 0.0195, 0.0195, 0.0098, 0.0087, 0.0081], [0.0415, 0.0268, 0.0209, 0.0163, 0.0143, 0.0127, 0.0127, 0.0093], [0.0907, 0.0403, 0.0378, 0.0334, 0.0139, 0.0131, 0.0123, 0.0123], [0.039, 0.0323, 0.0252, 0.0237, 0.0222, 0.0173, 0.0163, 0.0127], [0.0252, 0.0196, 0.0173, 0.0173, 0.0127, 0.0119, 0.0112, 0.0105], [0.0696, 0.0696, 0.029, 0.0273, 0.0121, 0.0094, 0.0088, 0.0088], [0.0652, 0.0541, 0.0256, 0.0146, 0.01, 0.0088, 0.0061, 0.0057], [0.0531, 0.0343, 0.0119, 0.0119, 0.0098, 0.0092, 0.0081, 0.0077], [0.0829, 0.0503, 0.0325, 0.0253, 0.0197, 0.0163, 0.0153, 0.0144], [0.0519, 0.0404, 0.038, 0.0191, 0.0168, 0.0158, 0.0158, 0.0149], [0.0585, 0.0313, 0.0229, 0.0229, 0.0215, 0.0202, 0.0148, 0.0148], [0.0512, 0.0481, 0.0399, 0.0227, 0.0227, 0.0177, 0.0166, 0.0147], [0.1293, 0.0835, 0.0394, 0.037, 0.0327, 0.0255, 0.0211, 0.0198], [0.165, 0.0688, 0.0646, 0.0473, 0.0253, 0.0238, 0.0185, 0.0153], [0.1502, 0.0626, 0.0519, 0.0296, 0.0296, 0.0245, 0.0149, 0.014], [0.1547, 0.0535, 0.0416, 0.0367, 0.0324, 0.0237, 0.0209, 0.0174], [0.1143, 0.0947, 0.0575, 0.0395, 0.024, 0.0225, 0.0187, 0.0187], [0.1072, 0.0692, 0.0539, 0.0288, 0.0239, 0.0175, 0.0154, 0.0154], [0.0892, 0.074, 0.0576, 0.0226, 0.0199, 0.0199, 0.0176, 0.0137], [0.1701, 0.0666, 0.0357, 0.0296, 0.0179, 0.0168, 0.0131, 0.0109], [0.1927, 0.1098, 0.0458, 0.0158, 0.0149, 0.0102, 0.0096, 0.0096], [0.1538, 0.1275, 0.0499, 0.0173, 0.0126, 0.0119, 0.0082, 0.0082], [0.1058, 0.0824, 0.0303, 0.0208, 0.0135, 0.0135, 0.0126, 0.0092], [0.0588, 0.0458, 0.0179, 0.0158, 0.0131, 0.0075, 0.0075, 0.0062], [0.1504, 0.1327, 0.052, 0.0278, 0.0278, 0.0231, 0.0231, 0.0191], [0.2464, 0.0456, 0.0428, 0.0244, 0.0244, 0.0178, 0.0139, 0.0115], [0.3477, 0.1279, 0.0826, 0.0643, 0.0268, 0.0252, 0.0252, 0.0237], [0.2398, 0.1548, 0.0687, 0.0606, 0.0535, 0.0417, 0.0391, 0.0324], [0.3093, 0.1004, 0.0886, 0.0833, 0.0782, 0.0735, 0.0474, 0.0419], [0.4339, 0.205, 0.0665, 0.0587, 0.0587, 0.0404, 0.0356, 0.0168], [0.3009, 0.1825, 0.0862, 0.0862, 0.0383, 0.0338, 0.0317, 0.0298], [0.2959, 0.2034, 0.2034, 0.0961, 0.0583, 0.0189, 0.0167, 0.0147], [0.2763, 0.1479, 0.1479, 0.0955, 0.0955, 0.048, 0.0274, 0.0177], [0.279, 0.1917, 0.1092, 0.0799, 0.0663, 0.0378, 0.0244, 0.0168], [0.5898, 0.3361, 0.0079, 0.007, 0.0062, 0.0058, 0.0054, 0.0048]], "ranks": {}}, {"pos": 415, "top": [[".", ",", "a", " \u2013", "\u2013", "o", ";", "\u00a0\u00a0"], ["erweise", " \u2013", "sWith", "\ufffd", "\u00adi", "\u2013", "ly", "\u00ad"], [".", "\u2013", " \u2013", ",", ".\u2013", "\u2013and", "\u2026..", "\u2026."], [" milfs", "-------------</", "----------</", " cumshot", " pupper", " Blowjob", " ;;^", "erias"], ["erweise", "kits", "raries", "ed", "\u52a0\u62ff\u5927\u7684", "ers", "izer", "enzi"], ["kits", "erweise", "raries", "sWith", "\u52a0\u62ff\u5927\u7684", "ed", "zug", "schluss"], ["raries", "\uff01", "er", "\uff01**", "ed", "igators", "ly", " **\u25a0"], ["ly", "raries", "ed", "er", "erweise", "sWith", "ifier", "ers"], ["ly", "er", "\u00adi", "erweise", "raries", "ed", "a", "ifier"], ["er", "ly", "\u00adi", " \u00ad", "ed", "\u00adt", "a", "erweise"], ["er", "a", "ly", "o", "ed", "ers", "en", "s"], ["er", "erweise", "ly", "raries", "ian", "iard", "istic", "ers"], ["er", "ly", "erweise", "ian", "raries", "ers", "istic", "iard"], ["er", "raries", "erweise", "-esque", "ly", "ers", "\u88f3", "zinho"], ["er", "o", "-esque", "a", "ers", "istic", "ed", "ly"], ["o", "er", "a", "-esque", "ed", "ers", "aft", "an"], ["o", "a", "-esque", "er", "ed", "n", "ers", "en"], ["o", "-esque", "a", "er", "ed", "en", "n", "an"], ["o", "-esque", "a", "ed", "er", "n", "aft", "en"], ["o", "a", "ed", "d", "n", "e", "i", "er"], ["<|endoftext|>", "a", "d", "o", "n", "e", "ed", "l"], ["ed", "ly", "-esque", "ishly", "ing", "ahead", "fully", "er"], ["ed", "a", "ly", "fully", "o", "ing", " ``", "n"], ["a", "ed", "fully", "o", "ly", "e", "n", "ing"], ["  \n\n", " \n\n", "a", "\r\n\r\n", " \r\n\r\n", "ed", "\n\n", "n"], [" tech", " gaming", "-esque", " heavily", " games", " game", "ed", " crafting"], [" tech", " gaming", " complex", " software", " programming", " @", " engineering", " technology"], ["\n\n", " \n\n", " @", " heavily", " complex", " tech", " \u2019", " ,"], [" tech", " complex", " gaming", " modular", " software", " engineering", " heavily", " technologies"], [" tech", " ___", " workflows", " ...", " ____", " _____", " software", " gaming"], [" technology", " complex", " tech", " ...", " software", " developers", " core", " systems"], [" complex", " ,", " core", " heavily", " over", " technology", " modern", " @"], [" ,", " complex", " heavily", " core", " over", " technology", " mostly", " using"], [" software", " tech", " technology", " technologies", " workflows", " modular", " core", " programming"], [" software", " tech", " workflows", " modular", " transitioning", "\u2011", " foundational", " core"], ["\u2011", " software", " tech", " \u2014", " workflows", " modular", " \ufffd", " core"], [" software", " workflows", " Microsoft", " tech", "\u2011", " frameworks", "software", " core"], [" software", " workflows", "\u2011", " tech", " frameworks", " Microsoft", "software", " technology"], [" software", " workflows", " tech", " frameworks", " iOS", " Kickstarter", " Unity", "software"], [" Microsoft", " software", " frameworks", " tech", " Xamarin", "Microsoft", " Unity", " IoT"], [" software", " Microsoft", " Software", " tech", "software", " technology", " technologies", " Unity"], [" software", " Microsoft", " Software", " frameworks", " technologies", " tech", "Microsoft", " programming"], [" software", " Microsoft", " technologies", " frameworks", " Software", " programming", " tech", " technology"], [" software", " technologies", " Technologies", " tech", " frameworks", " technology", "software", " Software"], [" software", " frameworks", " tech", " technologies", " technology", " Technologies", " Software", " Framework"], [" software", " frameworks", " tech", " technologies", " technology", " Technologies", " programming", " Software"], [" frameworks", " tech", " software", " mainstream", " Framework", " technologies", " framework", " technology"], [" frameworks", " mainstream", " standard", " Traditional", " Framework", " Standard", " tech", " technologies"], ["-standard", " frameworks", "standard", "-native", "-framework", "\u6807\u51c6\u7684", "\u76f4\u63a5\u4f7f\u7528", " standard"], ["-standard", "-framework", "-native", "/Framework", "standard", "\u6807\u51c6\u7684", " mainstream", "runtime"], ["8", "9", "7", "3", "5", "2", "6", "4"], [" framerate", "CPU", " CPU", "2", "performance", "-speed", "-performance", " runtime"], [" framerate", "CPU", " CPU", ".\u2013", "\u2026**", "[\u2026", "\u2013", "performance"], ["\u2026**", ".\u2013", " framerate", "**-", "\u2013", "**\u2013", "[\u2026", "/Framework"], [" framerate", "CPU", "**-", "2", " CPU", "/Framework", "\u5e27", "\u6bcf\u79d2"], [" FPS", " fps", "fps", " framerate", "FPS", "\u5e27", "_fps", "2"], [" FPS", " fps", "fps", " framerate", "FPS", "2", "\u5e27", "-frame"], [" FPS", "fps", " fps", "FPS", "\u5e27", " framerate", "2", "-frame"], ["\u5e27", "-frame", " FPS", " frames", " frame", " fps", "2", "fps"], [" frame", "\u5e27", " frames", "-frame", "2", " fps", " FPS", "frames"], ["2", " FPS", " fps", " frame", "-frame", "\u5e27", " frames", "fps"], ["2", "4", "6", "0", " FPS", "3", " fps", "5"], ["2", "4", "3", "6", "0", "1", "5", "8"]], "p": [[0.8123, 0.16, 0.0075, 0.0062, 0.0055, 0.0011, 0.001, 0.0008], [0.0115, 0.0058, 0.0042, 0.0037, 0.0029, 0.0021, 0.0021, 0.002], [0.4301, 0.2032, 0.0847, 0.0376, 0.0312, 0.0147, 0.0147, 0.0101], [0.0161, 0.011, 0.0092, 0.0071, 0.0049, 0.0043, 0.0041, 0.0038], [0.049, 0.0204, 0.015, 0.0124, 0.0071, 0.0049, 0.0038, 0.0036], [0.0148, 0.0131, 0.0051, 0.0051, 0.0045, 0.0043, 0.0024, 0.0024], [0.1346, 0.032, 0.022, 0.022, 0.0182, 0.0151, 0.0118, 0.0098], [0.0338, 0.0247, 0.0193, 0.0193, 0.0181, 0.0067, 0.0067, 0.0043], [0.1998, 0.129, 0.0393, 0.0224, 0.0175, 0.0164, 0.0145, 0.0093], [0.1419, 0.0592, 0.0556, 0.0297, 0.0247, 0.0132, 0.0097, 0.0091], [0.6865, 0.1193, 0.0412, 0.0342, 0.0302, 0.0118, 0.0076, 0.0052], [0.0348, 0.0225, 0.0198, 0.0186, 0.0068, 0.006, 0.0053, 0.0047], [0.0532, 0.0208, 0.0173, 0.0111, 0.0098, 0.0072, 0.0041, 0.0039], [0.032, 0.0151, 0.0134, 0.0125, 0.0081, 0.0052, 0.0034, 0.0028], [0.0419, 0.0419, 0.0239, 0.0186, 0.0113, 0.01, 0.0093, 0.0093], [0.0301, 0.0266, 0.025, 0.0194, 0.0104, 0.0104, 0.0092, 0.0076], [0.1642, 0.1202, 0.0604, 0.0442, 0.0323, 0.0196, 0.0153, 0.0144], [0.2032, 0.0582, 0.0582, 0.04, 0.0275, 0.0122, 0.0122, 0.0074], [0.2031, 0.1087, 0.0795, 0.04, 0.0177, 0.0108, 0.0089, 0.0061], [0.1258, 0.0594, 0.0248, 0.0205, 0.0181, 0.015, 0.0141, 0.0141], [0.2747, 0.0508, 0.029, 0.029, 0.0155, 0.01, 0.0088, 0.0073], [0.0069, 0.0065, 0.0053, 0.0037, 0.0035, 0.0032, 0.003, 0.002], [0.0614, 0.0329, 0.0272, 0.0212, 0.0165, 0.0146, 0.0121, 0.0061], [0.0342, 0.0221, 0.0162, 0.0143, 0.0092, 0.0067, 0.0063, 0.0049], [0.0366, 0.0323, 0.0268, 0.0196, 0.0196, 0.0126, 0.0105, 0.0098], [0.0189, 0.0177, 0.0084, 0.0084, 0.0074, 0.0065, 0.0058, 0.0048], [0.0212, 0.0199, 0.0199, 0.0146, 0.0146, 0.01, 0.0083, 0.0083], [0.0532, 0.0303, 0.0236, 0.0196, 0.0184, 0.0126, 0.0111, 0.0087], [0.0347, 0.0164, 0.0154, 0.0106, 0.0106, 0.0093, 0.0088, 0.0088], [0.0519, 0.0356, 0.0335, 0.0335, 0.0315, 0.0245, 0.0191, 0.0131], [0.0522, 0.049, 0.0382, 0.0279, 0.0279, 0.0192, 0.018, 0.0159], [0.0493, 0.0264, 0.0264, 0.0248, 0.0141, 0.0125, 0.011, 0.0103], [0.0376, 0.0332, 0.0258, 0.0214, 0.0167, 0.0147, 0.0138, 0.0115], [0.0649, 0.0573, 0.0394, 0.037, 0.0288, 0.0175, 0.0164, 0.0128], [0.0445, 0.0326, 0.027, 0.0164, 0.0136, 0.0136, 0.0128, 0.0128], [0.085, 0.0705, 0.0202, 0.013, 0.0115, 0.0115, 0.0108, 0.009], [0.0782, 0.0419, 0.0326, 0.027, 0.0254, 0.0145, 0.0093, 0.0082], [0.1041, 0.036, 0.028, 0.028, 0.017, 0.016, 0.0124, 0.0097], [0.0985, 0.0282, 0.0265, 0.0249, 0.0142, 0.0142, 0.0125, 0.011], [0.0876, 0.0365, 0.0236, 0.0208, 0.0184, 0.0143, 0.0126, 0.0111], [0.1889, 0.0787, 0.0349, 0.029, 0.0226, 0.0199, 0.0165, 0.0165], [0.1324, 0.1031, 0.0261, 0.023, 0.0168, 0.0149, 0.0149, 0.0149], [0.1249, 0.0489, 0.0316, 0.0262, 0.0246, 0.0231, 0.0217, 0.0217], [0.0447, 0.0348, 0.0288, 0.0239, 0.0239, 0.0225, 0.0211, 0.0186], [0.0589, 0.0315, 0.0315, 0.0246, 0.0231, 0.0149, 0.014, 0.0116], [0.0518, 0.0356, 0.0334, 0.0216, 0.0203, 0.0158, 0.0116, 0.0116], [0.064, 0.0251, 0.0251, 0.0221, 0.0195, 0.0183, 0.0143, 0.0126], [0.0577, 0.0256, 0.0256, 0.0165, 0.0165, 0.0137, 0.0121, 0.0114], [0.0323, 0.0209, 0.0196, 0.0163, 0.0153, 0.0105, 0.0105, 0.0105], [0.034, 0.0264, 0.0264, 0.0125, 0.0104, 0.0076, 0.0049, 0.0046], [0.0561, 0.0527, 0.03, 0.022, 0.0206, 0.0194, 0.0182, 0.0125], [0.017, 0.0086, 0.0071, 0.0063, 0.0052, 0.004, 0.003, 0.003], [0.0317, 0.0232, 0.0204, 0.0159, 0.014, 0.0097, 0.0097, 0.0049], [0.0637, 0.0301, 0.0207, 0.0183, 0.0142, 0.0134, 0.0118, 0.0098], [0.0681, 0.0221, 0.0183, 0.0152, 0.0152, 0.0111, 0.0081, 0.0076], [0.4694, 0.1727, 0.1047, 0.0924, 0.03, 0.0282, 0.0182, 0.0118], [0.4732, 0.1536, 0.1274, 0.044, 0.0388, 0.0267, 0.0251, 0.0221], [0.4267, 0.2284, 0.1779, 0.0422, 0.0273, 0.0176, 0.0129, 0.0129], [0.3779, 0.1785, 0.1083, 0.0843, 0.058, 0.0352, 0.031, 0.0274], [0.2501, 0.2207, 0.1719, 0.1517, 0.0435, 0.0435, 0.0338, 0.017], [0.2976, 0.2177, 0.1321, 0.1029, 0.0801, 0.0456, 0.0429, 0.0168], [0.9964, 0.0006, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 416, "top": [[".", ",", " \u2013", "\u2013", "y", ".\u2013", ";", "\u2013and"], ["\u2013and", "een", "\u2013", " \u2013", " \u2013**", ".\u2013", "\uff5e\uff5e", "\u2011"], ["\u2013", " \u2013", ".\u2013", ".", "\u2013and", ",", "\u2026..", " \u2013,"], [" milfs", " Blowjob", " Strec", " ;;^", "*\u201c.", " Geile", " cumshot", "':''"], ["een", "@$", " *\u201c", " \\\"", "pedia", "*\u201c.", "agog", " *\u2013"], ["odiac", "\u0441\u043e\u0442", "egers", "pedia", "een", "ropol", "agog", " \n \n"], [" \n \n", " __", "-$", "__)", ".__", " \n", " *\u201c", " *\u00ab"], [" \\\"", " \\\"$", "}\\\"", ".\\\"", " \n \n", "-$", "\\\"", "__)"], [" \n \n", " \\\"$", " \\\"", "\\\"", ".\\\"", "}\\\"", "-$", "@$"], ["-$", " \n \n", "ive", " \\\"$", "een", "-J", " \\\"", "@$"], [" \\\"", "-$", " \n \n", ".\\\"", " $", "\\\"", "@$", " \\\"$"], [" \\\"", " *\u00ab", " \\\"$", " veggies", "ive", " kids", "ily", "__$"], [" veggies", "flix", " *\u00ab", "egers", " \\\"", " kids", "odiac", " skinny"], [" veggies", " kids", "flix", " skinny", "egers", " grandma", " moms", " hustle"], [" kids", " \\\"", " moms", " goodies", " veggies", " grandma", " skinny", "-ish"], [" kids", " skinny", " buzz", " veggies", " moms", "kids", " kid", " comfy"], [" kids", " skinny", "kids", " kid", " veggies", "-ish", " buzz", " moms"], [" kids", "kids", " veggies", " skinny", " comfy", " kid", "-ish", " moms"], [" kids", "kids", " skinny", " comfy", " veggies", " moms", " buzz", "bucks"], [" --", " kids", " buzz", "kids", " brav", " kid", " lucky", " skinny"], [" --", " kids", "Though", " brav", "y", "kin", " \u2014", "kids"], [" --", "bucks", "Sharper", " kids", "kids", " ``", " ;;^", " buzz"], [" --", " ``", " ''", " kids", "ily", " booming", " buzz", "ish"], [" --", " ''", " ``", "fully", " booming", " barely", " brav", "ish"], [" --", " \n\n", " \r\n\r\n", "   \n\n", " \n\n\n", " \n \n", "Though", " \u2015"], [" --", " comfy", " pricey", " gorgeous", " \r\n\r\n", " hustle", " skinny", " booming"], [" --", " skinny", " pricey", " \n\n", " kids", " comfy", " blazing", " busted"], [" --", " fast", " battling", " famously", " speed", " hugely", " tech", " barely"], [" --", " speed", " tech", " skinny", " fast", " \u2014", " pace", " lucky"], [" --", " \u2014", "\u2011", " fast", " tech", " speed", " pace", " demand"], [" -", " fast", " .", " high", " \u2014", " demand", " --", " time"], [" -", " fast", " demand", " high", " critical", " @", " \u2014", " "], [" -", " even", " fast", " demand", " critical", " .", " demanding", " high"], ["\u2011", " insanely", "\u2014if", " skinny", " hustle", " tech", " sweaty", "\u2014even"], ["\u2011", "\u2014if", " tech", "/fast", " insanely", "\u2014even", " skinny", " requirement"], ["\u2011", "\u2014if", " framerate", " *\u2013", "/fast", " insanely", " overclock", " hardware"], [" framerate", "\u2011", " overclock", " insanely", " scalability", " uptime", " requirement", " hardware"], [" framerate", " requirement", "\u2011", " overclock", " insanely", " scalability", " uptime", "\u7684\u8981\u6c42"], [" framerate", " requirement", "\u2011", " insanely", " overclock", "\u7684\u8981\u6c42", " scalability", " uptime"], [" framerate", "\u8981\u6c42", " requirement", " overclock", "\u7684\u8981\u6c42", " uptime", "\u8981\u6c42\u7684", " benchmarks"], [" framerate", " requirement", " uptime", " overclock", "-speed", " throughput", " speeds", " benchmarks"], [" framerate", " requirement", " benchmarks", " uptime", " requirements", " benchmark", " throughput", " goal"], [" framerate", " requirement", " benchmarks", " requirements", " benchmark", " goal", " goals", " deadline"], [" requirement", " achievable", " framerate", " requirements", "\u8981\u6c42\u7684", "\u76ee\u6807", "\u7684\u8981\u6c42", " goal"], [" requirement", " requirements", " framerate", " achievable", "\u8981\u6c42\u7684", "\u7684\u8981\u6c42", " goal", " goals"], [" requirement", " requirements", "\u8981\u6c42\u7684", " framerate", "-required", " achievable", " deadline", " sprint"], [" requirement", " requirements", "-required", "\u8981\u6c42\u7684", "\u7684\u8981\u6c42", " deadline", " achievable", " Requirement"], [" requirement", " requirements", "\u8981\u6c42\u7684", "-required", "\u7684\u8981\u6c42", " Requirement", "Requirement", " deadline"], [" requirement", "-required", "\u8981\u6c42\u7684", "\u5177\u4f53\u8981\u6c42", "\u7684\u8981\u6c42", " requirements", "\u5c97\u4f4d\u8981\u6c42", " framerate"], [" requirement", " framerate", "-required", "\u5177\u4f53\u8981\u6c42", "\u5c97\u4f4d\u8981\u6c42", "\u8981\u6c42\u7684", "Requirement", " deadline"], [" requirement", "\u5177\u4f53\u8981\u6c42", " framerate", "-required", "\u8981\u6c42\u7684", " deadline", "\u5c97\u4f4d\u8981\u6c42", "Requirement"], [" framerate", " Mbps", "/fast", " FPS", " fps", " uptime", " requirement", " RPM"], [" FPS", " framerate", " Mbps", " fps", " requirement", ".\u2013", " uptime", "fps"], [" FPS", " framerate", " fps", " Mbps", "fps", " MHz", " kHz", " RPM"], [" framerate", " FPS", " fps", " Mbps", "fps", " MHz", " kHz", " GHz"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", " Mbps", " TPS"], [" FPS", " fps", "FPS", "fps", " framerate", "_fps", " TPS", " Mbps"], [" FPS", " fps", "fps", "FPS", "_fps", " framerate", " TPS", "Hz"], [" FPS", " fps", "fps", "FPS", "\u5e27", "-frame", " frames", " frame"], [" fps", " FPS", "fps", "FPS", "-frame", "\u5e27", " frames", " frame"], [" FPS", " fps", "fps", "FPS", "-frame", " framerate", "\u5e27", " frames"], [" fps", " FPS", "fps", "FPS", " TPS", "0", " FP", " Hz"], ["0", " fps", " FPS", "1", "2", "4", "5", "fps"]], "p": [[0.7147, 0.1242, 0.0753, 0.0665, 0.0042, 0.0023, 0.002, 0.0017], [0.0212, 0.0165, 0.0155, 0.0155, 0.0094, 0.0061, 0.0044, 0.0039], [0.4678, 0.3643, 0.0493, 0.0493, 0.0384, 0.008, 0.003, 0.0025], [0.0125, 0.0046, 0.0046, 0.0043, 0.0036, 0.0028, 0.0026, 0.0026], [0.0082, 0.0068, 0.0056, 0.005, 0.0036, 0.0036, 0.0032, 0.003], [0.0093, 0.006, 0.0053, 0.0032, 0.0028, 0.0028, 0.0025, 0.0022], [0.0896, 0.0351, 0.0273, 0.0176, 0.0146, 0.0146, 0.0129, 0.0121], [0.1325, 0.0709, 0.0335, 0.023, 0.0203, 0.0203, 0.0158, 0.014], [0.1167, 0.0457, 0.0403, 0.0379, 0.0334, 0.0216, 0.0168, 0.0131], [0.1919, 0.0229, 0.0108, 0.0102, 0.0102, 0.0096, 0.009, 0.0084], [0.2011, 0.095, 0.0653, 0.0541, 0.0328, 0.0256, 0.0226, 0.0187], [0.0533, 0.0268, 0.0209, 0.0072, 0.005, 0.0047, 0.0044, 0.0039], [0.0097, 0.0071, 0.0067, 0.0055, 0.0055, 0.0032, 0.0025, 0.0024], [0.0134, 0.0049, 0.0049, 0.003, 0.0028, 0.0026, 0.0025, 0.002], [0.0288, 0.0083, 0.006, 0.005, 0.0047, 0.0042, 0.004, 0.0039], [0.0355, 0.0123, 0.009, 0.0079, 0.0058, 0.0058, 0.0045, 0.0042], [0.0741, 0.0241, 0.0137, 0.0121, 0.0121, 0.0083, 0.0083, 0.0065], [0.0633, 0.0248, 0.016, 0.0125, 0.0091, 0.0076, 0.0071, 0.0059], [0.0146, 0.0094, 0.0073, 0.0057, 0.0057, 0.0042, 0.0035, 0.0031], [0.063, 0.0132, 0.0071, 0.0049, 0.0043, 0.0033, 0.0029, 0.0024], [0.0669, 0.0062, 0.0043, 0.0035, 0.0035, 0.0031, 0.0029, 0.0022], [0.0059, 0.0046, 0.0032, 0.003, 0.002, 0.0017, 0.0016, 0.0016], [0.295, 0.013, 0.0065, 0.0037, 0.002, 0.0019, 0.0018, 0.0018], [0.5146, 0.0037, 0.0035, 0.0022, 0.0014, 0.0014, 0.0011, 0.0011], [0.3853, 0.1104, 0.046, 0.008, 0.0043, 0.0033, 0.002, 0.0019], [0.1854, 0.0044, 0.0041, 0.0028, 0.0028, 0.0026, 0.0026, 0.0023], [0.2106, 0.0023, 0.0023, 0.0022, 0.0019, 0.0018, 0.0017, 0.0017], [0.3596, 0.0038, 0.0029, 0.0029, 0.0026, 0.002, 0.0019, 0.0017], [0.1065, 0.0064, 0.0053, 0.0053, 0.005, 0.005, 0.0044, 0.0041], [0.0707, 0.026, 0.0158, 0.0108, 0.009, 0.0079, 0.007, 0.0058], [0.0321, 0.0207, 0.0161, 0.0134, 0.0126, 0.0126, 0.0092, 0.0092], [0.026, 0.019, 0.0158, 0.0148, 0.0139, 0.0123, 0.009, 0.0079], [0.049, 0.0358, 0.0262, 0.0149, 0.0124, 0.0109, 0.0096, 0.008], [0.0154, 0.0068, 0.0064, 0.0056, 0.0053, 0.0047, 0.0044, 0.0041], [0.0363, 0.0067, 0.0046, 0.0032, 0.0028, 0.0028, 0.0026, 0.0026], [0.133, 0.0116, 0.0075, 0.0055, 0.0048, 0.0031, 0.0031, 0.0026], [0.0143, 0.0072, 0.0072, 0.0063, 0.0056, 0.0046, 0.0041, 0.0041], [0.0191, 0.0109, 0.0109, 0.0075, 0.007, 0.007, 0.0062, 0.0051], [0.0257, 0.0121, 0.0114, 0.0083, 0.0061, 0.0057, 0.0057, 0.0054], [0.1832, 0.0125, 0.0117, 0.0117, 0.0086, 0.0086, 0.008, 0.008], [0.2789, 0.0178, 0.0139, 0.013, 0.013, 0.009, 0.009, 0.009], [0.2546, 0.0605, 0.0237, 0.0196, 0.0163, 0.0144, 0.0127, 0.0119], [0.1145, 0.0613, 0.0421, 0.0225, 0.0199, 0.0199, 0.0187, 0.0187], [0.1205, 0.0606, 0.0606, 0.0443, 0.0324, 0.0305, 0.0286, 0.0253], [0.2673, 0.0596, 0.0495, 0.041, 0.034, 0.0161, 0.0161, 0.0151], [0.4947, 0.0629, 0.0217, 0.018, 0.0159, 0.0149, 0.0132, 0.0103], [0.507, 0.0645, 0.0416, 0.0252, 0.0135, 0.0112, 0.0099, 0.0072], [0.6163, 0.0736, 0.0327, 0.0271, 0.0198, 0.0136, 0.0106, 0.0088], [0.2587, 0.0741, 0.0542, 0.0373, 0.029, 0.0212, 0.0199, 0.0199], [0.0675, 0.0436, 0.0361, 0.0319, 0.0299, 0.0248, 0.0193, 0.0193], [0.0487, 0.0379, 0.023, 0.0179, 0.0158, 0.014, 0.0131, 0.0116], [0.1696, 0.0551, 0.0314, 0.0244, 0.0158, 0.0123, 0.0123, 0.009], [0.1371, 0.1288, 0.0326, 0.0287, 0.012, 0.012, 0.0099, 0.0082], [0.292, 0.1217, 0.0652, 0.0507, 0.0137, 0.0106, 0.0106, 0.0094], [0.2248, 0.2112, 0.1281, 0.0937, 0.0286, 0.0209, 0.0163, 0.0135], [0.8275, 0.1269, 0.0321, 0.0118, 0.001, 0.0007, 0.0001, 0.0], [0.91, 0.0513, 0.0214, 0.0167, 0.0004, 0.0002, 0.0, 0.0], [0.8792, 0.0637, 0.0301, 0.0266, 0.0002, 0.0002, 0.0, 0.0], [0.9024, 0.0654, 0.0187, 0.01, 0.0015, 0.0012, 0.0003, 0.0002], [0.4824, 0.4824, 0.0272, 0.0047, 0.0011, 0.0009, 0.0006, 0.0004], [0.6122, 0.3713, 0.0127, 0.0028, 0.0002, 0.0002, 0.0001, 0.0001], [0.5225, 0.4611, 0.0139, 0.0008, 0.0005, 0.0004, 0.0001, 0.0001], [0.9963, 0.0012, 0.0008, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 417, "top": [[".", ",", "s", "?", "o", ";", "-", " \u2013"], ["\u2011", "s", "\uff20", " \u2013", ".", "sville", ",", "\u2013"], [".", ",", "s", "\u2011", "\u2013", "?", "\u2026..", " \u2013"], [" milfs", " Blowjob", " cumshot", " Shemale", " pupper", "cuci", "\uff0a\uff0a\uff0a\uff0a", " Geile"], ["s", " @", "auss", "sche", "\uff20", "sip", " *@", "es"], ["s", "sip", "!\u201d.", "auss", "phans", " @", "sver", " \u201d"], ["s", "phans", " \u201d", "\u0629", " -", "sche", "syl", "sip"], ["s", "sche", " @", "phans", "sung", "sdale", "-eyed", "syl"], ["s", " @", "\u0092", "!", "@", "!\u201d.", "sche", "sport"], ["s", "ness", ",", "ten", "-h", "sport", "-c", "scape"], ["s", " @", "-", "@", "es", "!", " -", "o"], ["s", "scape", "lymp", " fans", "-ish", "sville", "syl", "-esque"], ["s", "-esque", "scape", " fans", "ness", "-ish", " influencers", "smith"], ["s", "-esque", "-ish", "-eyed", " fans", "scape", "-centric", "-style"], ["s", "-esque", "-ish", "-st", " fans", "-h", "-style", "-f"], ["s", "-esque", "es", " buzz", " showcase", " fans", " pop", " star"], ["s", "-esque", "es", " buzz", "-ish", " fans", " pop", " pops"], ["s", "-esque", "-ish", " buzz", "-tech", "\u0627\u062a", " fans", "sky"], ["s", "-esque", "\u0627\u062a", "sche", "siz", "szeit", "-ish", "-eyed"], ["s", "-esque", "\u0627\u062a", "speed", "-ish", "scape", "-worthy", "szeit"], ["s", "<|endoftext|>", "speed", "-esque", "\u0627\u062a", "though", " {{--<", " %+"], ["s", "szeit", "speed", "\u0627\u062a", "\u817e\u817e", "bucks", " loung", "-esque"], ["s", " ''", " speed", "speed", "-esque", "&apos", " buzz", " speeds"], ["s", " speed", "speed", " ''", " speeds", "&apos", " game", " live"], ["speed", " speed", " \r\n\r\n", "-speed", " speeds", " framerate", "s", "-esque"], [" speeds", " speed", " framerate", "-speed", "speed", "-paced", " pace", " sprint"], [" speeds", " speed", " framerate", "-speed", " pixel", " sprint", " smartphone", " smartphones"], [" speed", " speeds", " pace", " sprint", " framerate", "-speed", " clock", " Instagram"], [" speeds", " sprint", " speed", " smartphone", " overclock", " Instagram", " smartphones", " selfie"], [" sprint", " speeds", " overclock", " smartphones", " smartphone", " Instagram", " framerate", " speed"], [" sprint", " speed", " speeds", " Instagram", " smartphones", " pace", " smartphone", " overclock"], [" \u200b\u200b", " Instagram", " \ufffd", " speed", " sprint", " \ufffd", " \ufffd", " speeds"], [" speed", " sprint", " fast", " speeds", " faster", " pace", " fastest", " time"], [" sprint", " \ufffd", " overclock", " speed", " speeds", " \ufffd", "/fast", " faster"], [" sprint", " overclock", " \ufffd", "/fast", " \ufffd", " \ufffd", " fastest", " smartphone"], [" sprint", " \ufffd", "\u2011", "/fast", " \ufffd", " fastest", " speed", " faster"], [" speed", " sprint", " speeds", " overclock", " framerate", " fastest", " faster", "/fast"], [" speed", " framerate", " speeds", " overclock", " sprint", " fastest", " faster", "/fast"], [" framerate", " speed", " speeds", " faster", " fastest", " overclock", " fast", " sprint"], [" framerate", " speed", " speeds", " fastest", " overclock", " faster", "/fast", " sprint"], [" framerate", " speed", " speeds", "\u6bcf\u79d2", "-speed", " fastest", " overclock", "speed"], [" framerate", "\u6bcf\u79d2", " fps", " overclock", " FPS", " speeds", "/fast", " speed"], [" framerate", " overclock", "\u6bcf\u79d2", " fps", " speeds", "/fast", " FPS", " speed"], [" framerate", "\u6bcf\u79d2", " fps", " overclock", " FPS", " speeds", " frequency", "\u6bcf\u5206\u949f"], [" framerate", "\u6bcf\u79d2", " fps", " speeds", " speed", " frequency", " FPS", " overclock"], [" framerate", "\u6bcf\u79d2", "\u6bcf\u5206\u949f", " fps", " speeds", " FPS", " speed", " rapid"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " fps", " FPS", " weekly", " speeds", "/fast"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", " weekly", "/fast", " daily", " fps", " rapid"], ["\u6bcf\u79d2", " framerate", "\u6bcf\u5206\u949f", "/fast", " weekly", " (~", "\u6bcf\u5c0f\u65f6", " fps"], [" framerate", " (~", "\u6bcf\u79d2", " (>", "/fast", "\u6bcf\u5206\u949f", " FPS", "-speed"], [" framerate", " (~", "\u6bcf\u79d2", " (>", "/fast", "-sync", "-cycle", "-speed"], [" framerate", " (~", " FPS", " (>", " fps", "/fast", "-sync", "fps"], [" framerate", " (~", " FPS", " fps", " (>", " uptime", "-frequency", "fps"], [" framerate", " FPS", " fps", " (~", "-frequency", "fps", " uptime", "FPS"], [" framerate", " FPS", " fps", "fps", " latency", " uptime", "FPS", " MHz"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "\u5e27", "-frame"], [" FPS", " fps", "fps", "FPS", " framerate", "_fps", "-frame", "\u5e27"], [" FPS", " fps", "fps", "FPS", " framerate", "Hz", "_fps", " Hz"], [" FPS", " fps", "fps", "FPS", "-frame", "\u5e27", " framerate", " frame"], [" FPS", " fps", "fps", "FPS", "-frame", " framerate", "\u5e27", " frame"], [" FPS", " fps", "fps", "FPS", " framerate", "-frame", " frame", "\u5e27"], [" FPS", " fps", "fps", "FPS", " Hz", " TPS", " framerate", "Hz"], [" fps", " FPS", "fps", " Hz", "Hz", "FPS", " framerate", " TPS"]], "p": [[0.9438, 0.0323, 0.0087, 0.0032, 0.0027, 0.001, 0.0008, 0.0006], [0.0977, 0.0317, 0.0071, 0.0059, 0.0055, 0.0023, 0.0023, 0.0019], [0.4976, 0.2074, 0.0281, 0.0219, 0.017, 0.011, 0.0046, 0.0036], [0.0313, 0.0108, 0.0051, 0.0042, 0.0035, 0.0027, 0.0027, 0.0026], [0.6912, 0.0072, 0.0047, 0.0036, 0.003, 0.0028, 0.0025, 0.0021], [0.0934, 0.0105, 0.0068, 0.0064, 0.0056, 0.0046, 0.0044, 0.0028], [0.9425, 0.0007, 0.0007, 0.0006, 0.0006, 0.0005, 0.0004, 0.0004], [0.8713, 0.0031, 0.003, 0.0018, 0.0013, 0.0012, 0.001, 0.0009], [0.9576, 0.0057, 0.0015, 0.0004, 0.0004, 0.0003, 0.0003, 0.0003], [0.9158, 0.0012, 0.0006, 0.0004, 0.0004, 0.0004, 0.0003, 0.0002], [0.9797, 0.0062, 0.0007, 0.0006, 0.0002, 0.0002, 0.0002, 0.0002], [0.2955, 0.0065, 0.0033, 0.0029, 0.0027, 0.0027, 0.0027, 0.0027], [0.362, 0.0075, 0.0066, 0.0043, 0.0038, 0.0035, 0.0017, 0.0016], [0.2739, 0.0348, 0.0064, 0.0029, 0.0025, 0.0024, 0.0018, 0.0016], [0.8333, 0.0093, 0.0006, 0.0006, 0.0004, 0.0004, 0.0004, 0.0004], [0.6502, 0.0064, 0.0018, 0.0013, 0.001, 0.001, 0.0009, 0.0008], [0.8667, 0.004, 0.001, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003], [0.5476, 0.0121, 0.0033, 0.0022, 0.0022, 0.0011, 0.001, 0.0009], [0.5515, 0.0114, 0.0029, 0.0024, 0.0023, 0.002, 0.0019, 0.0016], [0.7005, 0.0042, 0.0037, 0.0027, 0.0015, 0.001, 0.0009, 0.0009], [0.506, 0.0119, 0.0019, 0.0019, 0.0017, 0.0013, 0.0009, 0.0008], [0.009, 0.0048, 0.0029, 0.0024, 0.0023, 0.0021, 0.0019, 0.0019], [0.0129, 0.0122, 0.0039, 0.0033, 0.0029, 0.0024, 0.002, 0.0018], [0.0122, 0.0065, 0.0037, 0.0023, 0.002, 0.0018, 0.0016, 0.0015], [0.0089, 0.0074, 0.0065, 0.0057, 0.0039, 0.0031, 0.0031, 0.0027], [0.0144, 0.0127, 0.012, 0.0077, 0.006, 0.0036, 0.0034, 0.0032], [0.0295, 0.0158, 0.014, 0.0096, 0.0085, 0.008, 0.0075, 0.007], [0.0765, 0.0361, 0.0151, 0.0142, 0.0097, 0.0091, 0.0091, 0.0071], [0.0361, 0.0264, 0.0248, 0.016, 0.0151, 0.0142, 0.0133, 0.0125], [0.018, 0.018, 0.014, 0.0132, 0.0132, 0.0132, 0.0102, 0.0102], [0.0316, 0.0262, 0.0262, 0.0262, 0.0124, 0.0109, 0.0109, 0.0103], [0.0502, 0.0345, 0.0252, 0.0237, 0.0209, 0.0153, 0.0105, 0.0099], [0.099, 0.0364, 0.0284, 0.025, 0.0183, 0.0172, 0.0143, 0.0086], [0.0729, 0.0222, 0.0209, 0.0196, 0.0184, 0.0163, 0.0153, 0.0112], [0.0753, 0.0429, 0.0403, 0.0379, 0.0356, 0.0158, 0.0131, 0.0096], [0.0776, 0.0605, 0.0568, 0.039, 0.039, 0.0304, 0.0237, 0.0222], [0.1326, 0.0756, 0.071, 0.0553, 0.0519, 0.0519, 0.0404, 0.0315], [0.1206, 0.0829, 0.0606, 0.0503, 0.0472, 0.0345, 0.0286, 0.0185], [0.1406, 0.1241, 0.0664, 0.0403, 0.0334, 0.0334, 0.026, 0.0216], [0.2434, 0.0953, 0.051, 0.0397, 0.0329, 0.0273, 0.0241, 0.0213], [0.4449, 0.1444, 0.0993, 0.0284, 0.0267, 0.0251, 0.0222, 0.0208], [0.6562, 0.0784, 0.0447, 0.0271, 0.0128, 0.012, 0.0094, 0.0078], [0.5897, 0.0704, 0.0584, 0.0294, 0.019, 0.0157, 0.013, 0.0101], [0.4616, 0.1167, 0.0457, 0.0356, 0.0295, 0.0216, 0.0109, 0.0102], [0.287, 0.1196, 0.0531, 0.0531, 0.0365, 0.0267, 0.0267, 0.0221], [0.1891, 0.1891, 0.035, 0.035, 0.0309, 0.0309, 0.029, 0.0272], [0.3117, 0.2428, 0.0372, 0.0329, 0.0187, 0.0176, 0.0146, 0.0129], [0.3158, 0.2459, 0.0516, 0.0354, 0.0202, 0.013, 0.013, 0.013], [0.4809, 0.1561, 0.0785, 0.0225, 0.0175, 0.0165, 0.0136, 0.0094], [0.3078, 0.2716, 0.1283, 0.0269, 0.0269, 0.0174, 0.0119, 0.0099], [0.3118, 0.1891, 0.0478, 0.0256, 0.0176, 0.0114, 0.0073, 0.0069], [0.2892, 0.2892, 0.0444, 0.0391, 0.0223, 0.0185, 0.0135, 0.0093], [0.4069, 0.1497, 0.1406, 0.023, 0.023, 0.0115, 0.0108, 0.0096], [0.4964, 0.2069, 0.0434, 0.0232, 0.015, 0.0141, 0.0097, 0.0091], [0.6595, 0.1667, 0.0541, 0.0199, 0.0065, 0.0061, 0.0057, 0.005], [0.8244, 0.0985, 0.0465, 0.0194, 0.0104, 0.0008, 0.0001, 0.0], [0.8756, 0.0634, 0.03, 0.0264, 0.0041, 0.0003, 0.0, 0.0], [0.8581, 0.0704, 0.0427, 0.0259, 0.0019, 0.0003, 0.0002, 0.0001], [0.911, 0.0454, 0.0214, 0.0167, 0.0018, 0.0014, 0.0008, 0.0006], [0.514, 0.4003, 0.0696, 0.0107, 0.0016, 0.001, 0.0009, 0.0009], [0.7291, 0.2367, 0.0283, 0.0043, 0.001, 0.0002, 0.0001, 0.0001], [0.5941, 0.3603, 0.043, 0.0015, 0.0004, 0.0002, 0.0001, 0.0001], [0.502, 0.391, 0.0989, 0.0038, 0.0012, 0.001, 0.0002, 0.0002]], "ranks": {}}, {"pos": 418, "top": [[" \u2013", "\u0629", "@@@@", " @", "@\"", " [@", " \uff5c", " *@"], [" \u2013**", "\uff20", " \r\n \r\n", " \uff5e", "\uff5e\uff5e", " [@", " \ufffd", "@@@@"], [" \u2013**", "**\u2013", " \uff5c", " *\u2013", " \r\n \r\n", " \u2013,", " \u2013", " \uff5e"], ["\uff0a\uff0a\uff0a\uff0a", "\\xa", "\uff0d\uff0d", "\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a", "\uff5e\uff5e", "\uff3f\uff3f", " **\u3010"], ["\uff20", " *@", "\\xa", " @_", " @(", " ****", " \uffe5", " \uff5c"], [" ****", " \uff5c", "\\xa", "\uff20", " \uffe5", "\uff5e\uff5e", " @_", " @("], ["\\xa", " \uff5c", " ****", " {{$", " \uffe5", " [@", "\uff20", " @("], [" [@", "\\xa", "\uff20", " \uff5c", " @", " @(", " \uffe5", " *@"], [" [@", " \uff5c", "\\xa", "\uff20", " @(", " \uffe5", " \r\n \r\n", " *@"], ["\\xa", " [@", " {{$", " [[", " @$", " \uff5c", " #@", "\uff20"], ["\\xa", " [@", " [[", " \uff5c", " @", " ****", " #@", " {{$"], ["\\xa", " {{$", " ****", " [[", " FPS", "\\xf", "\uff5e\u300d", " **\u300c"], ["\\xa", " FPS", " ****", "\uff5e\u300d", " {{$", "\\xf", " St\u00e9ph", " **\u300c"], ["\\xa", " FPS", " St\u00e9ph", "\uff5e\u300d", " {{$", "\u2011", " showcasing", " incredibly"], [" incredibly", "\\xa", " showcasing", " \ufffd", " whilst", " FPS", "\u2011", " [["], [" incredibly", " just", " \ufffd", " showcasing", " ever", "\\xa", " even", " fully"], [" incredibly", " just", " ever", " fully", " even", " \u2013", " in", " thanks"], [" incredibly", " FPS", "\\xa", " showcasing", " contenders", " ****", " seamlessly", " showcase"], [" incredibly", " FPS", "\\xa", " [[", " \uffe5\uffe5", " arguably", " alongside", " St\u00e9ph"], [" [[", " incredibly", " --", " {{--<", " &#", " wildly", " ever", "\\xa"], ["<|endoftext|>", " @", " [[", " though", " [@", " {{--<", " alongside", " --"], [" incredibly", " FPS", " \uffe5\uffe5", " {{--<", " [[", " alongside", " ''", " St\u00e9ph"], [" incredibly", " ''", " [[", " even", " --", " {{--<", " ever", " alongside"], [" ,", " even", " [[", " ever", " incredibly", " --", " just", " alongside"], [" \n  \n", " \r\n \r\n", " [[", " --", " &#", " incredibly", " \r\n\r\n", "\\xa"], [" incredibly", " .**", " --", " ****", " FPS", " \n  \n", " wildly", " \r\n \r\n"], [" .**", " framerate", " FPS", " --", " ****", " speed", " incredibly", " atop"], [" --", " ,", " even", " @", " whilst", " speed", " heavily", " incredibly"], [" speed", " .**", " even", " framerate", " incredibly", " atop", " --", " ,"], [" .**", " speed", " framerate", " even", " incredibly", " FPS", " atop", " dramatically"], [" .", " .**", " speed", " even", " over", " ,", " during", " fast"], [" .", " even", " at", " speed", " on", " ,", " during", " over"], [" .", " even", " speed", " ,", " despite", " .**", " at", " on"], [" speed", " incredibly", " critical", " fast", " even", " rapidly", " instantly", " pace"], [" framerate", " .**", " speed", " sprint", " hardware", " overclock", " pacing", " rapidly"], [" framerate", " .**", "\u2011", " hardware", " speed", " sprint", " jitter", " overclock"], [" framerate", " jitter", " overclock", " hardware", " speed", " sprint", " .**", " latency"], [" framerate", " overclock", " .**", " jitter", " FPS", " glitch", " latency", " sprint"], [" framerate", " .**", " jitter", " overclock", " glitch", " latency", " FPS", " relentless"], [" framerate", " jitter", " FPS", " glitch", " overclock", " speed", " latency", " .**"], [" framerate", " speed", " FPS", " jitter", " performance", " latency", " overclock", " throughput"], [" framerate", " FPS", " jitter", " performance", " throughput", " latency", " pacing", " overclock"], [" framerate", " jitter", " FPS", " throughput", " performance", " sprint", " latency", " pacing"], [" framerate", " jitter", " FPS", " throughput", " sprint", " performance", " avg", " latency"], [" framerate", " jitter", " sprint", " requirement", " throughput", " FPS", " sustained", " .**"], [" framerate", " requirement", " sprint", " FPS", " jitter", " requirements", " sustained", " steady"], [" framerate", " requirement", " jitter", " requirements", " stability", " uninterrupted", " deadlines", " deadline"], [" requirement", " framerate", " requirements", " deadline", " deadlines", " threshold", ".**", " schedule"], [" framerate", " requirement", " requirements", " deadline", " deadlines", ".**", " benchmarks", " threshold"], [" framerate", " requirement", " deadline", " requirements", ".**", " deadlines", " throughput", " ambitions"], [" framerate", " requirement", " deadline", ".**", " deadlines", " uptime", " (>", " throughput"], [" requirement", " framerate", " deadline", " Requirement", " requirements", "Requirement", ".**", " mandate"], [" requirement", " Requirement", " framerate", " requirements", "Requirement", " deadline", " ambitions", "\u7684\u8981\u6c42"], [" requirement", " Requirement", "Requirement", " framerate", " requirements", " targets", " goal", " deadline"], [" requirement", " targets", " goal", " Requirement", " goals", " requirements", "\u76ee\u6807", "Requirement"], [" target", " targets", " requirement", "\u76ee\u6807", " goal", "\u7684\u76ee\u6807", " Targets", "\u76ee\u6807\u7684"], [" requirement", " target", " targets", "\u76ee\u6807", " goal", "\u7684\u76ee\u6807", "\u76ee\u6807\u7684", "\u76ee\u6a19"], [" target", " targets", "\u76ee\u6807", "target", " Target", " requirement", " Targets", " targeting"], [" target", " targets", "\u76ee\u6807", "target", " Target", " Targets", "-target", " targeting"], [" target", " targets", " requirement", " Target", "target", " targeting", " Targets", "\u76ee\u6807"], [" target", " targets", " requirement", " Target", "target", " targeting", " goal", "\u76ee\u6807"], [" target", " requirement", " targets", " Target", " targeting", "target", " frame", " goal"], [" target", " requirement", " targets", " Target", " targeting", " goal", "target", " framerate"]], "p": [[0.6953, 0.0733, 0.0185, 0.0106, 0.0077, 0.0068, 0.006, 0.0057], [0.1704, 0.0756, 0.052, 0.052, 0.0405, 0.0357, 0.0336, 0.0278], [0.2978, 0.2628, 0.0853, 0.0586, 0.0517, 0.0457, 0.023, 0.0203], [0.0929, 0.0724, 0.0724, 0.053, 0.0467, 0.0302, 0.0283, 0.0266], [0.2524, 0.0872, 0.077, 0.0439, 0.0412, 0.0387, 0.0342, 0.0283], [0.1045, 0.0765, 0.0765, 0.0595, 0.0559, 0.0409, 0.0319, 0.0264], [0.2699, 0.1538, 0.0441, 0.0365, 0.0343, 0.0303, 0.0284, 0.0184], [0.1297, 0.1076, 0.0787, 0.0652, 0.0613, 0.0576, 0.0477, 0.0421], [0.3457, 0.0771, 0.0771, 0.053, 0.044, 0.0342, 0.0284, 0.0284], [0.6375, 0.0672, 0.036, 0.0218, 0.0103, 0.0097, 0.008, 0.0062], [0.4878, 0.1398, 0.0312, 0.0293, 0.0293, 0.0228, 0.0147, 0.0101], [0.274, 0.0785, 0.0611, 0.0136, 0.012, 0.0106, 0.0073, 0.0061], [0.0748, 0.0547, 0.0228, 0.013, 0.0108, 0.0058, 0.0051, 0.0037], [0.0364, 0.025, 0.0072, 0.0059, 0.0059, 0.0049, 0.0041, 0.0038], [0.0135, 0.0119, 0.0077, 0.0077, 0.0072, 0.0056, 0.0047, 0.0044], [0.0186, 0.006, 0.0057, 0.0057, 0.005, 0.005, 0.005, 0.0041], [0.0312, 0.0084, 0.0051, 0.0051, 0.0048, 0.0042, 0.004, 0.004], [0.0179, 0.0123, 0.008, 0.0038, 0.0027, 0.0027, 0.0026, 0.0026], [0.0157, 0.0065, 0.0061, 0.0051, 0.0045, 0.0029, 0.0026, 0.0021], [0.0153, 0.0143, 0.0127, 0.0127, 0.0093, 0.0077, 0.0068, 0.0064], [0.0358, 0.0246, 0.0204, 0.0116, 0.0103, 0.0085, 0.0085, 0.0085], [0.0114, 0.0088, 0.0078, 0.0073, 0.0069, 0.0039, 0.0037, 0.0035], [0.0248, 0.0193, 0.0181, 0.0091, 0.0086, 0.0071, 0.0067, 0.0067], [0.0191, 0.0158, 0.0149, 0.0123, 0.0116, 0.0102, 0.009, 0.008], [0.0421, 0.0421, 0.0395, 0.0289, 0.0255, 0.0165, 0.0155, 0.0128], [0.0338, 0.0181, 0.017, 0.0141, 0.011, 0.0091, 0.0091, 0.0091], [0.0218, 0.015, 0.015, 0.0132, 0.0097, 0.008, 0.0075, 0.0066], [0.0321, 0.0266, 0.0142, 0.0134, 0.0118, 0.0111, 0.0076, 0.0076], [0.0198, 0.0094, 0.0064, 0.006, 0.006, 0.006, 0.0053, 0.005], [0.0275, 0.0177, 0.0074, 0.0065, 0.0061, 0.0048, 0.0042, 0.0042], [0.0434, 0.0338, 0.0218, 0.017, 0.011, 0.0103, 0.0086, 0.008], [0.0719, 0.0234, 0.0171, 0.016, 0.016, 0.0133, 0.0117, 0.0117], [0.0553, 0.0357, 0.0191, 0.0179, 0.0149, 0.0123, 0.0123, 0.0116], [0.022, 0.0111, 0.0098, 0.0092, 0.0081, 0.0076, 0.0071, 0.0071], [0.0186, 0.0154, 0.0106, 0.0093, 0.0088, 0.0073, 0.0073, 0.0073], [0.033, 0.031, 0.0257, 0.0156, 0.0156, 0.0101, 0.0094, 0.0083], [0.0677, 0.0249, 0.0234, 0.0194, 0.0194, 0.0151, 0.0142, 0.0118], [0.0687, 0.0197, 0.0174, 0.0174, 0.0163, 0.0135, 0.0135, 0.0119], [0.0797, 0.0215, 0.0215, 0.0139, 0.0115, 0.0108, 0.0101, 0.0095], [0.2948, 0.0292, 0.0227, 0.0166, 0.0138, 0.0114, 0.0114, 0.0101], [0.377, 0.0273, 0.0273, 0.0188, 0.0156, 0.0146, 0.0129, 0.0121], [0.4929, 0.0315, 0.0245, 0.018, 0.0169, 0.0123, 0.0116, 0.0096], [0.3532, 0.0329, 0.0272, 0.024, 0.0199, 0.0176, 0.0155, 0.0137], [0.258, 0.0289, 0.0289, 0.0225, 0.0225, 0.0165, 0.01, 0.0094], [0.1695, 0.026, 0.0202, 0.0202, 0.0179, 0.0168, 0.0158, 0.0148], [0.1238, 0.0456, 0.0244, 0.0229, 0.0168, 0.0168, 0.0123, 0.0108], [0.0764, 0.0674, 0.0219, 0.0219, 0.016, 0.016, 0.015, 0.015], [0.2265, 0.1139, 0.0649, 0.0186, 0.0175, 0.0154, 0.0106, 0.01], [0.2588, 0.0895, 0.0176, 0.0146, 0.0121, 0.01, 0.01, 0.01], [0.2506, 0.2506, 0.0384, 0.0361, 0.0281, 0.0171, 0.0097, 0.0071], [0.3936, 0.0643, 0.0344, 0.0127, 0.0105, 0.0068, 0.0064, 0.0056], [0.7921, 0.0574, 0.0154, 0.0088, 0.0078, 0.0073, 0.0032, 0.0027], [0.8884, 0.0163, 0.0144, 0.0112, 0.0099, 0.006, 0.0032, 0.003], [0.9315, 0.0117, 0.0091, 0.0091, 0.0081, 0.0043, 0.0025, 0.0022], [0.9308, 0.0117, 0.0081, 0.0071, 0.0063, 0.0063, 0.0049, 0.0049], [0.3029, 0.2673, 0.2673, 0.0676, 0.0151, 0.0104, 0.0081, 0.0071], [0.3428, 0.267, 0.1835, 0.0765, 0.0281, 0.0151, 0.0091, 0.0081], [0.7077, 0.2298, 0.0242, 0.0079, 0.0061, 0.0048, 0.0033, 0.0029], [0.715, 0.263, 0.0079, 0.0038, 0.0023, 0.0018, 0.0012, 0.0009], [0.8665, 0.1173, 0.0052, 0.0035, 0.0021, 0.0017, 0.0007, 0.0006], [0.9125, 0.0515, 0.0276, 0.0023, 0.0012, 0.0012, 0.0009, 0.0004], [0.9454, 0.0367, 0.0119, 0.0011, 0.0007, 0.0006, 0.0004, 0.0004], [0.9868, 0.0097, 0.0012, 0.0004, 0.0004, 0.0002, 0.0002, 0.0002]], "ranks": {}}, {"pos": 419, "top": [[",", ".", "\u00a0", "\u2013", ";", ":", "?", " \u2013"], ["ting", "shield", "\u0627\u064b", "\u2013and", "ture", "ment", "sWith", "ten"], ["\u2013and", "\u2013", "ting", ",", ".\u2013", ".", "?", "shield"], ["shield", " Blowjob", " milfs", "erias", "rowse", "welt", " Shemale", "\uff3f\uff3f"], ["ting", "shield", "ted", "\u064a\u0646", "nost", "IBUT", " TARGET", "ship"], ["ting", "(Target", "\u82b7", "\u6cd7", "itos", "nost", "GBT", "tgt"], ["ting", "ted", "\u2018", "ments", " TARGET", "(Target", " \u2018", "target"], ["ting", "ted", "(Target", "tp", "shield", "ments", "/target", "ship"], ["ting", "\u00a0", "&T", "(Target", "shield", "/target", "[target", "\u2018"], ["ting", "\u00a0", " \u0163", ".getTarget", "\ufffd", "ted", "/target", "shield"], ["ting", "\u00a0", " \u2018", " ", "ted", ",", "2", "\ufffd"], ["ting", ".getTarget", "/target", " showcasing", " showcase", " \u0163", " showcased", "(Target"], ["ting", " showcase", " showcased", " roadmap", " showcasing", " goals", " upfront", "/target"], [" showcasing", " showcased", "ting", " showcase", " overarching", " upfront", " pivotal", " atop"], [" ", " alongside", " showcasing", " pursuit", " target", " aim", " '", " goals"], [" bolster", " overarching", " arguably", " atop", " swiftly", " looming", " showcasing", " enduring"], [" looming", " bolster", " goals", " overarching", " arguably", " showcasing", " ultimately", " goal"], [" looming", " goals", " overarching", " target", " aim", " showcasing", " goal", " arguably"], [" looming", " goals", " atop", " arguably", " swiftly", " overwhelmingly", " overarching", " squarely"], [" looming", " swiftly", " ultimately", " atop", " arguably", " --", " squarely", " overwhelmingly"], ["<|endoftext|>", " swiftly", " ultimately", " atop", " looming", " --", " arguably", " heavily"], [" looming", " goals", " atop", " overwhelmingly", " ultimately", " arguably", " amid", " swiftly"], [" ultimately", " --", " looming", " atop", " swiftly", " arguably", " overwhelmingly", " uniquely"], [" --", " ultimately", " ,", " swiftly", " even", " looming", " beyond", " arguably"], [" --", " atop", " squarely", " swiftly", " ultimately", " arguably", " though", " overwhelmingly"], [" --", " .**", " atop", " **", " squarely", " ultimately", " swiftly", " looming"], [" --", " atop", " ,", " ultimately", " swiftly", " squarely", " **", " looming"], [" --", " ,", " even", " ultimately", " **", " arguably", " atop", " heavily"], [" --", " **", " atop", " ,", " ultimately", " arguably", " even", " .**"], [" --", " **", " .**", " atop", " even", " ,", " arguably", " heavily"], [" .", " ,", " even", " beyond", " for", " .**", " **", " heavily"], [" .", " even", " ,", " for", " critical", " beyond", " at", " despite"], [" even", " despite", " likely", " critical", " beyond", " only", " heavily", " ."], [" even", " critical", " heavily", " likely", " arguably", " crucial", " precisely", " despite"], [" likely", " critical", " heavily", "\u2014even", " aggressively", " looming", " arguably", " relentlessly"], [" likely", " \u2014", "\u2014even", " critical", " heavily", " .**", " \u2013", " \u201c"], ["\u2014even", " likely", " notoriously", " even", " impossible", " unlikely", "\u6839\u672c\u65e0\u6cd5", " because"], [" impossible", " even", " notoriously", " likely", "\u2014even", "\u6839\u672c\u65e0\u6cd5", " unlikely", " realistically"], [" impossible", " even", " notoriously", " realistically", "\u2014even", " likely", " relentlessly", " critical"], [" impossible", " even", " realistically", " notoriously", " relentlessly", "\u2014even", " heavily", " likely"], [" impossible", " even", " realistically", " overclock", " heavily", " hardware", " notoriously", " relentless"], [" overclock", "\u2014even", " even", " hardware", " benchmark", " heavily", " realistically", " impossible"], [" impossible", " overclock", " benchmark", " benchmarks", " even", " realistically", " hardware", " critical"], [" impossible", " even", " heavily", " achievable", " notoriously", " benchmark", " realistically", " benchmarks"], [" impossible", " heavily", " achievable", " due", " even", " critical", " targets", " heavy"], [" impossible", " heavily", " even", " critical", " due", " realistically", " unless", " aggressively"], [" impossible", " realistically", " notoriously", " critical", " inevitable", " likely", " inevitably", " heavily"], [" heavily", " anywhere", " because", " inherently", " impossible", " unless", " even", " standard"], [".", " because", " impossible", "\u6839\u672c\u65e0\u6cd5", "\u5c24\u5176\u662f\u5728", " unless", " heavily", " notoriously"], [".", ".**", "+.", ".*", ".\\", "**.", "*.", ".\\\""], [".", ".**", "+.", "*.", "++.", ".*", "().", "**."], [".", ".**", "*.", ".*", "+.", "++.", "().", "**."], [".", ".**", ".*", "*.", "+.", "**.", "++.", ".\\"], [".", ".**", ".*", "+.", "++.", "*.", ".\\", ".\u201c"], [" instantly", ".**", ".", "\u77ac\u95f4", " immediately", "\u77ac\u9593", " moment", "++."], [" mid", " Mid", "mid", "Mid", ".mid", " midway", " midpoint", " middleware"], [" mid", " Mid", "mid", "Mid", ".mid", " midway", " middleware", " instantly"], [" mid", " Mid", "mid", "Mid", ".mid", ".", " middleware", " midway"], [" mid", " Mid", "mid", "Mid", ".mid", ".", " midway", " middleware"], [" mid", " Mid", "mid", "Mid", ".mid", ",mid", " MID", "(mid"], [" mid", " Mid", "mid", "Mid", ".mid", ".", " MID", ",mid"], [" mid", ".", " Mid", "Mid", " MID", "mid", ".mid", " on"], [".", " on", " mid", " immediately", " instantly", ",", " before", " Mid"]], "p": [[0.6284, 0.3363, 0.0108, 0.009, 0.0058, 0.0011, 0.0011, 0.0009], [0.0464, 0.0097, 0.0076, 0.0046, 0.0036, 0.0034, 0.003, 0.0025], [0.1112, 0.0981, 0.0981, 0.0633, 0.0493, 0.0193, 0.0071, 0.0071], [0.0032, 0.0025, 0.0022, 0.002, 0.0019, 0.0018, 0.0018, 0.0016], [0.0505, 0.0128, 0.0044, 0.0027, 0.0027, 0.0025, 0.0025, 0.0022], [0.006, 0.0049, 0.0034, 0.003, 0.003, 0.0026, 0.0026, 0.0025], [0.5124, 0.0289, 0.0078, 0.0078, 0.0069, 0.0064, 0.0064, 0.005], [0.659, 0.0128, 0.0065, 0.0061, 0.0047, 0.0039, 0.0032, 0.0025], [0.3981, 0.1007, 0.0186, 0.012, 0.01, 0.0073, 0.0073, 0.0068], [0.1352, 0.0221, 0.0183, 0.0056, 0.0046, 0.0043, 0.0041, 0.0038], [0.2154, 0.1901, 0.0188, 0.0147, 0.0101, 0.0078, 0.0069, 0.0065], [0.0603, 0.006, 0.0056, 0.005, 0.0041, 0.0039, 0.0032, 0.0032], [0.0356, 0.009, 0.0085, 0.0079, 0.0079, 0.007, 0.0058, 0.0051], [0.0384, 0.0281, 0.0264, 0.016, 0.0133, 0.0081, 0.0076, 0.0071], [0.0184, 0.0111, 0.0098, 0.0087, 0.0081, 0.0077, 0.0077, 0.0068], [0.0209, 0.0135, 0.0127, 0.0119, 0.0087, 0.0077, 0.0077, 0.0072], [0.0155, 0.0129, 0.0129, 0.0107, 0.0094, 0.0088, 0.0088, 0.0083], [0.0231, 0.0159, 0.009, 0.009, 0.0085, 0.0085, 0.0075, 0.007], [0.0337, 0.0169, 0.014, 0.0103, 0.0091, 0.0091, 0.0075, 0.0075], [0.0277, 0.0216, 0.0168, 0.0158, 0.0148, 0.009, 0.0084, 0.0079], [0.0499, 0.0323, 0.0173, 0.0105, 0.0098, 0.0087, 0.0072, 0.0068], [0.0134, 0.0126, 0.0104, 0.0056, 0.0043, 0.0036, 0.0036, 0.0034], [0.029, 0.0272, 0.0146, 0.0129, 0.0129, 0.01, 0.0083, 0.0078], [0.05, 0.0344, 0.0222, 0.0119, 0.0105, 0.0093, 0.0093, 0.0087], [0.0885, 0.0185, 0.0174, 0.0164, 0.0127, 0.0112, 0.0106, 0.0088], [0.1431, 0.0219, 0.0206, 0.0171, 0.0125, 0.011, 0.0097, 0.0081], [0.0719, 0.0206, 0.0171, 0.0151, 0.0125, 0.0117, 0.0097, 0.0097], [0.0867, 0.0526, 0.0206, 0.016, 0.0142, 0.0133, 0.0125, 0.0097], [0.0448, 0.0328, 0.0225, 0.0212, 0.0199, 0.0187, 0.0187, 0.0175], [0.0603, 0.0344, 0.0285, 0.0222, 0.0208, 0.0208, 0.0184, 0.0153], [0.2303, 0.0483, 0.0353, 0.0258, 0.0258, 0.0178, 0.0167, 0.0147], [0.1335, 0.0523, 0.0407, 0.0337, 0.0298, 0.0205, 0.017, 0.0159], [0.1043, 0.036, 0.0318, 0.0248, 0.017, 0.016, 0.015, 0.0141], [0.0522, 0.0316, 0.0297, 0.0246, 0.0217, 0.0116, 0.0109, 0.0103], [0.0222, 0.0209, 0.0209, 0.0153, 0.0153, 0.0127, 0.0127, 0.0105], [0.0637, 0.0528, 0.0341, 0.0207, 0.0207, 0.0161, 0.0151, 0.0134], [0.034, 0.034, 0.0281, 0.0248, 0.0233, 0.0182, 0.016, 0.0151], [0.0279, 0.0279, 0.0231, 0.0217, 0.0217, 0.014, 0.0132, 0.0132], [0.0409, 0.0339, 0.0193, 0.0181, 0.016, 0.016, 0.015, 0.015], [0.0413, 0.0284, 0.0236, 0.0172, 0.0143, 0.0143, 0.0134, 0.0134], [0.0297, 0.0246, 0.0246, 0.0192, 0.0159, 0.0159, 0.0124, 0.0124], [0.0487, 0.0335, 0.0191, 0.0179, 0.0168, 0.0158, 0.0149, 0.014], [0.033, 0.0291, 0.0242, 0.0188, 0.0177, 0.0177, 0.0122, 0.0122], [0.0524, 0.036, 0.0263, 0.0205, 0.0141, 0.0132, 0.0132, 0.0132], [0.0556, 0.0298, 0.0232, 0.0181, 0.017, 0.0159, 0.0103, 0.0097], [0.0382, 0.0297, 0.0218, 0.0159, 0.0141, 0.0124, 0.0116, 0.0109], [0.04, 0.0275, 0.0178, 0.0178, 0.0167, 0.0147, 0.013, 0.013], [0.0189, 0.0178, 0.0178, 0.0178, 0.0157, 0.0157, 0.013, 0.0122], [0.0635, 0.0385, 0.0171, 0.0161, 0.0142, 0.0097, 0.0086, 0.0081], [0.4846, 0.2594, 0.0137, 0.0107, 0.0089, 0.0078, 0.0069, 0.0065], [0.4249, 0.1009, 0.1009, 0.0694, 0.0308, 0.024, 0.0225, 0.0155], [0.3549, 0.2153, 0.0699, 0.0544, 0.0374, 0.0374, 0.02, 0.0188], [0.4065, 0.3166, 0.0428, 0.0313, 0.0294, 0.0148, 0.0123, 0.0115], [0.3475, 0.2388, 0.0604, 0.0415, 0.0323, 0.0323, 0.0112, 0.0082], [0.2061, 0.0974, 0.0629, 0.046, 0.046, 0.0358, 0.0297, 0.0246], [0.9571, 0.0199, 0.0057, 0.0044, 0.0021, 0.0021, 0.0013, 0.0009], [0.9534, 0.0154, 0.0073, 0.0034, 0.0027, 0.0018, 0.0017, 0.0016], [0.9618, 0.0137, 0.0073, 0.0035, 0.0021, 0.0019, 0.0016, 0.0013], [0.9695, 0.0157, 0.0058, 0.0031, 0.001, 0.0009, 0.0008, 0.0005], [0.9812, 0.014, 0.0024, 0.0013, 0.0004, 0.0002, 0.0001, 0.0001], [0.9779, 0.0158, 0.0017, 0.0013, 0.001, 0.0008, 0.0004, 0.0003], [0.872, 0.0919, 0.0232, 0.0024, 0.0018, 0.0017, 0.0016, 0.0012], [0.9997, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 420, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", "   \n", " Hammer", " \u2013**"], ["\u2013", ",", " \u2013", "\u2013and", ".", "\u2026..", "\u2026.", ".\u2013"], [" milfs", "-------------</", " Shemale", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^", " Blowjob", "TRGL"], ["\u65b0\u52a0\u5761", " cittadin", "-------------</", "\u52a0\u62ff\u5927", " **#", ":@", "\u52a0\u62ff\u5927\u7684", " **+"], [" \u200b\u200b", "\u65b0\u52a0\u5761", ":href", "<|quad_end|>", " \u0628\u0648\u062a\u064a\u0646", "!:", "IFn", "arren"], [" **", " **\u2018", " **\"", " **\u201c", " **#", "   \n", " **(", " **+"], [" **", "   \n", " **#", " **\u20ac", " **+", " **\u201e", " **\"", "   \n\n"], ["   \n\n", " \n\n", "  \n\n", "   \n", "    \n\n", "      \n\n", "     \n\n", "       \n\n"], ["\u5750\u62e5", "\u7a81\u5982\u5176", "\u8ba4\u8ba4\u771f", "\u4fe9\u4eba", " bigger", " pricey", "Luckily", "\u6ca1\u5565"], [" even", " albeit", " bigger", " though", " incredibly", " arguably", " wouldn", " freak"], [" **", " incredibly", " hardcore", " bigger", " Hardcore", " skyrocket", " pretty", " albeit"], [" incredibly", " anyways", " skyrocket", " nonetheless", " arguably", "\u582a\u6bd4", " hardcore", " freaking"], [" incredibly", " even", " pretty", " folks", " arguably", " bigger", " skyrocket", " albeit"], [" though", " even", " incredibly", " just", " arguably", " truly", " folks", " once"], [" though", " arguably", " swiftly", " plenty", " even", " folks", " sprawling", " just"], [" incredibly", " arguably", " folks", " though", " just", " even", " savvy", " plenty"], [" incredibly", " arguably", " folks", " savvy", " sprawling", " effortlessly", " though", " hefty"], [" incredibly", " arguably", " even", " swiftly", " though", " ultimately", " effortlessly", " truly"], ["<|endoftext|>", " even", " arguably", " though", " swiftly", " incredibly", " ultimately", " seemingly"], ["<|endoftext|>", " though", " swiftly", " \n\n", " even", " ultimately", " arguably", "\n\n"], [" arguably", " even", " incredibly", " ultimately", " swiftly", " relentlessly", " truly", " eventually"], [" even", " arguably", " swiftly", " ultimately", " though", " incredibly", " merely", " eventually"], [" even", " though", " ultimately", " arguably", " eventually", " much", " swiftly", " merely"], [" \n\n", "\n\n", " though", " even", " arguably", " swiftly", " ultimately", "<|endoftext|>"], [" **", " even", " incredibly", " arguably", " swiftly", " hugely", " though", " vastly"], [" even", " arguably", " incredibly", " ultimately", " **", " heavily", " \n\n", "\n\n"], ["\n\n", " \n\n", " even", " arguably", " **", " heavily", " incredibly", " though"], [" **", " arguably", " incredibly", " even", " \n\n", " heavily", "\n\n", " famously"], [" even", " **", " \n\n", " arguably", " incredibly", " heavily", " ultimately", " eventually"], [" even", " \n\n", "<|endoftext|>", " heavily", " ,", " incredibly", " because", " ultimately"], [" **", " even", " incredibly", " heavily", " because", " ultimately", " huge", " just"], [" even", " heavily", " incredibly", " because", " truly", " essentially", " arguably", " just"], [" heavily", " essentially", " fundamentally", " incredibly", "\u2014even", " meticulously", " truly", " aggressively"], ["\u2014even", " relentlessly", " heavily", " notoriously", " relentless", " aggressively", " meticulously", " massively"], ["\u2014even", " notoriously", " relentless", " heavily", " relentlessly", " \u2014", " aggressively", " \u2013"], [" notoriously", "\u2014even", "\u6839\u672c\u65e0\u6cd5", " relentless", " relentlessly", " aggressively", " heavily", " inherently"], ["\u2014even", " notoriously", "\u6839\u672c\u65e0\u6cd5", " relentless", " relentlessly", " inherently", " aggressively", " heavily"], ["\u2014even", " notoriously", "\u6839\u672c\u65e0\u6cd5", " relentless", " relentlessly", " inherently", " insanely", " massively"], ["\u2014even", " notoriously", "\u6839\u672c\u65e0\u6cd5", " relentless", " inherently", " relentlessly", " insanely", " incredibly"], ["\u2014even", " notoriously", " relentless", " inherently", " insanely", " heavily", " massively", " relentlessly"], ["\u2014even", " notoriously", " inherently", " relentless", " aggressively", " heavily", " massively", " relentlessly"], [" inherently", " notoriously", "\u2014even", " aggressively", " massively", " heavily", " relentless", " heavy"], [" notoriously", " inherently", "\u2014even", " aggressively", " massively", " heavily", " fundamentally", "\u6839\u672c\u65e0\u6cd5"], [" notoriously", " inherently", " aggressively", " heavily", " massively", " heavy", " massive", " fundamentally"], [" notoriously", " inherently", " aggressively", " heavily", " fundamentally", "\u2014even", "\u6839\u672c\u65e0\u6cd5", " purely"], [" inherently", " notoriously", "\u2014even", " fundamentally", "\u6839\u672c\u65e0\u6cd5", "-heavy", " heavily", " aggressively"], [" inherently", "\u2014even", " notoriously", "\u6839\u672c\u65e0\u6cd5", " fundamentally", " aggressively", "-heavy", " heavily"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " \uc544\ubb34\ub9ac", " inherently", " notoriously", "\u4e0d\u662f\u56e0\u4e3a", "\u5373\u4fbf", "\u4e0d\u4f1a\u56e0\u4e3a"], [" \uc544\ubb34\ub9ac", "\u2014even", "\u5373\u4fbf", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u6839\u672c\u65e0\u6cd5", " inherently", " ANY", "\u5373\u4fbf\u662f"], [" \uc544\ubb34\ub9ac", "\u4efb\u4f55\u5f62\u5f0f\u7684", "\u5373\u4fbf", "\u2014even", "\u6839\u672c\u65e0\u6cd5", "\u54ea\u6015", "\u5373\u4f7f\u662f", "!!:"], [" \n\n", "  \n", " \uc544\ubb34\ub9ac", "  \n\n", " CPUs", "\u6839\u672c\u65e0\u6cd5", "  \n  \n", "\u505a\u4e0d\u5230"], [" \n\n", " \uc544\ubb34\ub9ac", "  \n\n", " mainstream", " CPUs", "\u5373\u4fbf", "standard", "\u505a\u4e0d\u5230"], [" standard", "standard", " Standard", "-standard", "\u7684\u6807\u51c6", " CPUs", " \n\n", "  \n"], ["standard", " standard", " CPUs", " Android", " mainstream", " Standard", " CPU", "-standard"], [" Android", " mid", " CPUs", " Mid", " CPU", " middleware", " iOS", " Middleware"], [" Android", " Mid", " Python", " Middleware", " mid", " Rendering", " middleware", " Java"], [" Android", " Rendering", " Mid", " mid", " Python", " Middleware", " OpenGL", " Java"], [" Android", " Rendering", " Mid", " mid", " Middleware", " Running", " iOS", " Mobile"], [" Mid", " mid", " Android", ".mid", "Mid", "mid", " Rendering", ",mid"], [" Mid", " mid", " Android", " Rendering", ".mid", " Mobile", " rendering", " mobile"], [" Mid", " mid", " Android", " Rendering", "\n\n", " Mobile", ".mid", " \n\n"], [" Mid", " On", " Mobile", " Rendering", " Android", " C", " Standard", " mid"]], "p": [[0.5847, 0.2762, 0.0698, 0.048, 0.0037, 0.0024, 0.0019, 0.0017], [0.2024, 0.02, 0.0074, 0.0048, 0.0035, 0.0012, 0.001, 0.0008], [0.6379, 0.1827, 0.0672, 0.0263, 0.0263, 0.017, 0.0071, 0.0036], [0.0133, 0.0117, 0.0097, 0.0086, 0.0071, 0.0059, 0.0049, 0.0038], [0.0032, 0.003, 0.0025, 0.0023, 0.0022, 0.0022, 0.002, 0.0018], [0.0021, 0.002, 0.0017, 0.0014, 0.0012, 0.0011, 0.001, 0.001], [0.0966, 0.0215, 0.0215, 0.0158, 0.0102, 0.0079, 0.0074, 0.007], [0.0465, 0.0386, 0.03, 0.0207, 0.0182, 0.0151, 0.0086, 0.0086], [0.3186, 0.2331, 0.0806, 0.0231, 0.0169, 0.0075, 0.007, 0.0052], [0.002, 0.0016, 0.0015, 0.0014, 0.0011, 0.0009, 0.0009, 0.0009], [0.0132, 0.0091, 0.0091, 0.0085, 0.0063, 0.0055, 0.0043, 0.004], [0.0065, 0.0051, 0.0035, 0.0035, 0.0033, 0.0026, 0.0021, 0.002], [0.0289, 0.0094, 0.0078, 0.0069, 0.0057, 0.0044, 0.0042, 0.0039], [0.0938, 0.0153, 0.0153, 0.0135, 0.0135, 0.0119, 0.0105, 0.0093], [0.0533, 0.047, 0.039, 0.0344, 0.0252, 0.0163, 0.0143, 0.0127], [0.0248, 0.0206, 0.016, 0.016, 0.016, 0.0151, 0.0125, 0.0125], [0.0639, 0.0439, 0.0364, 0.0321, 0.025, 0.0235, 0.0134, 0.0134], [0.0848, 0.0548, 0.0332, 0.0147, 0.0122, 0.0115, 0.0101, 0.0095], [0.0651, 0.0507, 0.0271, 0.0113, 0.0106, 0.0088, 0.0078, 0.0069], [0.1436, 0.0387, 0.0283, 0.025, 0.0161, 0.0161, 0.0134, 0.0076], [0.97, 0.0012, 0.0006, 0.0005, 0.0004, 0.0004, 0.0003, 0.0002], [0.0262, 0.0246, 0.0159, 0.0109, 0.0091, 0.0043, 0.0043, 0.004], [0.032, 0.0234, 0.0182, 0.0151, 0.0151, 0.0118, 0.011, 0.0076], [0.0535, 0.0223, 0.0197, 0.0153, 0.0127, 0.0127, 0.0119, 0.0112], [0.0599, 0.0466, 0.0411, 0.022, 0.0207, 0.0118, 0.0092, 0.0076], [0.0429, 0.0277, 0.026, 0.0203, 0.0115, 0.0102, 0.0084, 0.0084], [0.0349, 0.024, 0.0212, 0.0165, 0.0137, 0.0128, 0.0121, 0.0121], [0.1049, 0.0527, 0.0495, 0.032, 0.022, 0.0171, 0.0171, 0.0161], [0.0813, 0.0633, 0.0409, 0.0409, 0.0233, 0.0233, 0.0193, 0.0133], [0.1128, 0.106, 0.0442, 0.0415, 0.0415, 0.0344, 0.0252, 0.0173], [0.158, 0.0701, 0.0513, 0.0311, 0.0292, 0.0201, 0.0189, 0.0177], [0.194, 0.1039, 0.0433, 0.0407, 0.0337, 0.0141, 0.0124, 0.0097], [0.0993, 0.044, 0.0389, 0.0267, 0.0208, 0.0173, 0.0162, 0.0134], [0.0446, 0.0288, 0.0198, 0.0198, 0.0174, 0.0154, 0.0154, 0.0154], [0.0292, 0.0242, 0.0242, 0.02, 0.0188, 0.0166, 0.0156, 0.0129], [0.0756, 0.0627, 0.0278, 0.0261, 0.0245, 0.0245, 0.0158, 0.014], [0.0826, 0.0776, 0.039, 0.0222, 0.0184, 0.0153, 0.0144, 0.0112], [0.1655, 0.0832, 0.0288, 0.0254, 0.021, 0.0164, 0.0164, 0.0099], [0.1761, 0.0885, 0.0369, 0.027, 0.0186, 0.0174, 0.0088, 0.0082], [0.2125, 0.069, 0.0306, 0.0288, 0.021, 0.0136, 0.012, 0.0099], [0.1458, 0.0733, 0.0325, 0.0306, 0.0164, 0.0164, 0.0164, 0.0144], [0.1912, 0.0583, 0.0427, 0.0189, 0.0178, 0.0167, 0.013, 0.0115], [0.0734, 0.069, 0.0609, 0.021, 0.0174, 0.0164, 0.012, 0.0113], [0.1615, 0.092, 0.092, 0.0205, 0.0193, 0.0181, 0.0125, 0.0117], [0.1041, 0.081, 0.0218, 0.0205, 0.015, 0.0141, 0.0124, 0.0103], [0.1268, 0.1191, 0.0183, 0.0172, 0.0134, 0.0126, 0.0118, 0.0104], [0.1533, 0.1121, 0.0439, 0.0235, 0.0235, 0.0118, 0.0118, 0.0118], [0.1428, 0.1261, 0.1113, 0.0248, 0.016, 0.0133, 0.0125, 0.0117], [0.1107, 0.0862, 0.0359, 0.0263, 0.0263, 0.0218, 0.0181, 0.0091], [0.0943, 0.0474, 0.0238, 0.0154, 0.0145, 0.0136, 0.0099, 0.0099], [0.1271, 0.0235, 0.0172, 0.0152, 0.0134, 0.0081, 0.0076, 0.0072], [0.0354, 0.0259, 0.0259, 0.0215, 0.0148, 0.013, 0.0074, 0.0054], [0.0403, 0.0295, 0.0244, 0.0115, 0.0108, 0.009, 0.009, 0.007], [0.0514, 0.0426, 0.0426, 0.0228, 0.0178, 0.0157, 0.013, 0.0122], [0.0451, 0.0451, 0.0374, 0.0374, 0.031, 0.0242, 0.0213, 0.0156], [0.3932, 0.0566, 0.0414, 0.0344, 0.0303, 0.0196, 0.0184, 0.0143], [0.6105, 0.0252, 0.0196, 0.0196, 0.0173, 0.0173, 0.0144, 0.0105], [0.719, 0.059, 0.0159, 0.0109, 0.0091, 0.0085, 0.0075, 0.0058], [0.7148, 0.0854, 0.0518, 0.0158, 0.0062, 0.0062, 0.0043, 0.0035], [0.4696, 0.4144, 0.0816, 0.0059, 0.0052, 0.0041, 0.0032, 0.0015], [0.5733, 0.3477, 0.0252, 0.0153, 0.0072, 0.0044, 0.0025, 0.0025], [0.7328, 0.1273, 0.0601, 0.0195, 0.0118, 0.0105, 0.0032, 0.003], [0.8884, 0.0344, 0.0184, 0.0099, 0.0099, 0.0068, 0.0053, 0.0028]], "ranks": {}}, {"pos": 421, "top": [[",", ".", "-", "ly", "\u00ad", "\u2013", "[", " \u2013"], ["ly", "\u00ad", "\u00adi", " \u00ad", "son", "\u00ading", "\u2011", " \uff5e"], [",", ".", "\u2013", "ly", "\u00ad", "son", "\u2013and", " \u2013"], ["ly", "\uff0a\uff0a\uff0a\uff0a", "irectional", "weise", "raries", " \u0640\u0640", " \uff1c", " milfs"], ["ly", "&nbsp", "ward", "lich", "son", "ser", "\uff06", "server"], ["ly", "neighbor", ",mid", "ward", "server", "\u4e00", "ilion", "lif"], ["ly", "\u548c", "\u4e2d", "&nbsp", "\u4e00", " \uff3b", ",mid", "\u7684"], ["ly", "raries", "irectional", "\u00adi", "ronic", "ROID", "&nbsp", "ward"], ["ly", "\u00adi", "&nbsp", "irectional", "\u00ading", "ward", "athon", "\u524d"], [" \u00ad", "\u00adi", "ly", "\u00ading", "&nbsp", "\u00ad", "ward", "irectional"], [" \u00ad", "ly", "&nbsp", "\u00adi", "\u00ad", "ward", "\u00ading", "[mid"], ["ly", "irectional", "\u00adi", "ronic", "[mid", "ily", " <+", ",mid"], ["ly", "irectional", "\u00adi", "ronic", "ivial", "[mid", "ewire", ",mid"], ["irectional", ",mid", "\u00adi", "[mid", "ly", "ronic", "ewire", "-tier"], ["irectional", "ly", ",mid", "[mid", "-tier", "ronic", "\u00adi", "-ish"], ["ly", ",mid", "irectional", "[mid", "-low", "\u5982\u82e5", "-ish", "-tier"], ["ly", ",mid", "-ish", "-tier", "[mid", "-low", "-esque", "irectional"], ["ly", ",mid", "\u00adi", "irectional", "-ish", "[mid", "-tier", "ivial"], [",mid", "ly", "\u00adi", "irectional", "-tier", "[mid", "-ish", "erval"], ["ly", ",mid", "[mid", " <+", "irectional", "-tier", "--)", " //~"], ["ly", "Mid", "though", "Though", "[mid", ",mid", "\u5373\u4fbf", "\u54b1"], ["irectional", " <+", "ewire", " MEDIAM", "entimes", ",mid", " **\u25a0", "ivial"], ["ly", " {{--<", "&eacute", "irectional", " <+", "entimes", " iParam", "-market"], [" \u00ad", " {{--<", "ly", "though", " --", "\u5373\u4fbf", "Though", " \u2015"], [" \u00ad", "\u5373\u4fbf", "Though", "&nbsp", " \r\n\r\n", "though", " iParam", " {{--<"], [" <+", "amai", "\u5373\u4fbf", " pricey", "-market", " {{--<", "entimes", " iParam"], ["-market", " pricey", "amai", "-tier", "entimes", "\u5373\u4fbf", " <+", " {{--<"], [" \u00ad", " {{--<", "\n\n", "\u5373\u4fbf", " pricey", " --", "\u2011", "-tier"], ["-market", "-era", "-tier", " pricey", "-low", " infrastr", "\u5373\u4fbf", "-tech"], ["\u2011", "-era", " pricey", "-market", "-tier", "-low", " infrastr", "-heavy"], ["-era", "\u2011", " tech", " mid", "-heavy", "ly", " aggressively", "-tier"], ["\u2011", " high", " low", " mid", " tech", " \u2019", " heavily", " -"], [" notoriously", " massively", "-era", "\u2011", " low", " heavily", " aggressively", " tech"], ["-tier", "\u2011", "\u2014even", "-era", " notoriously", "-tech", "-low", "-heavy"], ["\u2011", "-tier", "-era", " notoriously", "\u2014even", "-tech", " \uc544\ubb34\ub9ac", "-heavy"], ["\u2011", "-tier", " notoriously", "\u2014even", "-era", "-tech", "/fast", " overclock"], ["-tier", "\u2011", " notoriously", " overclock", "-tech", "\u2014even", "/fast", "tech"], ["\u2011", " overclock", "-tier", " notoriously", " hardware", " tech", "-tech", "/fast"], ["\u2011", " overclock", " hardware", "-tier", "-tech", " notoriously", " CPUs", " tech"], [" overclock", "\u2011", " hardware", " CPUs", "-tier", "\u786c\u4ef6", " tech", "-tech"], [" hardware", " overclock", " CPUs", " tech", "\u786c\u4ef6", "-tech", "hardware", "\u2011"], [" hardware", " overclock", " CPUs", "\u786c\u4ef6", "hardware", " Hardware", " GPUs", " tech"], [" hardware", " overclock", " CPUs", "hardware", " budgets", "-budget", " smartphones", "\u786c\u4ef6"], [" hardware", " overclock", " CPUs", "-budget", "hardware", "\u786c\u4ef6", "-tier", " budgets"], [" hardware", " overclock", " budgets", " CPUs", "-budget", "-tier", " smartphones", " laptops"], [" hardware", " budgets", "-budget", " CPUs", "-tier", " overclock", " smartphones", "-low"], [" hardware", " budgets", " CPUs", "-tier", "-budget", "-low", " smartphones", " GPUs"], [" budgets", " hardware", " CPUs", "-budget", "-tier", "-low", " GPUs", " laptops"], [" CPUs", " budgets", "-budget", "-tier", " GPUs", " hardware", "-low", " smartphones"], ["-tier", " CPUs", " GPUs", "-budget", " budgets", "-low", " smartphones", " hardware"], ["-tier", " CPUs", "\u673a\u578b", " hardware", " GPUs", "-grade", "\u786c\u4ef6", "hardware"], ["-tier", "-range", "-grade", " CPUs", "\u2011", "\u4e2d\u77e9", " hardware", "-rated"], ["-tier", "-range", "-grade", "-priced", " CPUs", "-budget", "-rated", "\u4e2d\u77e9"], ["-tier", "-range", "-grade", "-priced", " hardware", " CPUs", "-budget", "-era"], ["-tier", "-range", "-grade", "-priced", " CPUs", "\u4e2d\u77e9", " Android", " hardware"], ["-range", "-tier", " Android", "range", "-android", "-grade", "Android", "Range"], ["-range", " Android", "-tier", "range", "-android", "Range", "Android", "_range"], ["-range", "-tier", " Android", "range", "Android", "-android", "Range", "_range"], ["-range", "-tier", "range", " Android", "-android", "Range", "_range", "Android"], ["-range", "range", " Android", " range", "-tier", "Range", "Android", "_range"], ["-range", " range", "range", "Range", " Range", "_range", " Android", ".range"], ["-range", "range", " range", " Android", "Range", " Range", "_range", "-tier"], ["-range", "-", " range", "range", "-tier", "-r", " Android", "-end"]], "p": [[0.3225, 0.2511, 0.0526, 0.03, 0.03, 0.0249, 0.0194, 0.0161], [0.3963, 0.1552, 0.0689, 0.0571, 0.0224, 0.012, 0.0093, 0.0088], [0.2774, 0.158, 0.158, 0.1231, 0.0453, 0.0156, 0.0122, 0.0101], [0.0276, 0.009, 0.0066, 0.0062, 0.0058, 0.0054, 0.0051, 0.0048], [0.9484, 0.0027, 0.0013, 0.0012, 0.001, 0.0007, 0.0006, 0.0006], [0.623, 0.0042, 0.0042, 0.0037, 0.0033, 0.0027, 0.0027, 0.0022], [0.6744, 0.0149, 0.014, 0.0075, 0.0075, 0.0066, 0.0058, 0.0058], [0.2405, 0.0082, 0.0082, 0.0073, 0.006, 0.0053, 0.0047, 0.0044], [0.0757, 0.0405, 0.0381, 0.0096, 0.0066, 0.0052, 0.0048, 0.0045], [0.1855, 0.0773, 0.0566, 0.0267, 0.0236, 0.0173, 0.0105, 0.0068], [0.2815, 0.2192, 0.1035, 0.0358, 0.0246, 0.0132, 0.008, 0.0066], [0.0346, 0.0127, 0.0106, 0.0047, 0.0044, 0.0041, 0.0039, 0.0039], [0.0301, 0.0194, 0.0081, 0.0067, 0.0052, 0.0049, 0.0041, 0.0036], [0.0198, 0.0057, 0.0057, 0.005, 0.005, 0.0039, 0.0029, 0.0024], [0.0199, 0.0175, 0.0145, 0.0073, 0.0061, 0.0057, 0.0047, 0.0032], [0.0615, 0.0166, 0.0054, 0.0042, 0.0039, 0.0035, 0.0031, 0.0029], [0.1243, 0.0203, 0.0079, 0.0058, 0.0048, 0.0043, 0.0043, 0.0043], [0.0368, 0.0163, 0.0082, 0.006, 0.0056, 0.0047, 0.0044, 0.0036], [0.0096, 0.0066, 0.0058, 0.0045, 0.004, 0.004, 0.0031, 0.0031], [0.0086, 0.0067, 0.0059, 0.0036, 0.0034, 0.0031, 0.0028, 0.0025], [0.0092, 0.0053, 0.0046, 0.0041, 0.0041, 0.003, 0.0026, 0.0026], [0.0069, 0.0033, 0.0029, 0.0029, 0.0025, 0.0024, 0.0022, 0.0022], [0.0031, 0.0031, 0.0027, 0.0027, 0.0026, 0.0021, 0.0021, 0.0017], [0.0069, 0.0044, 0.0042, 0.003, 0.0029, 0.0022, 0.0018, 0.0016], [0.0094, 0.0047, 0.0044, 0.0037, 0.0029, 0.0027, 0.002, 0.0019], [0.0035, 0.0031, 0.0026, 0.0024, 0.0023, 0.0023, 0.0017, 0.0016], [0.006, 0.0037, 0.003, 0.0029, 0.0025, 0.0022, 0.0021, 0.0017], [0.0078, 0.0045, 0.0042, 0.0031, 0.0031, 0.0029, 0.0027, 0.0024], [0.0073, 0.0068, 0.0064, 0.0064, 0.0047, 0.0042, 0.0034, 0.003], [0.019, 0.0108, 0.0096, 0.0084, 0.0079, 0.007, 0.0045, 0.0045], [0.0235, 0.0162, 0.0104, 0.0092, 0.0092, 0.0063, 0.0063, 0.0059], [0.0244, 0.0139, 0.0139, 0.0102, 0.009, 0.0074, 0.007, 0.0066], [0.0124, 0.0124, 0.0109, 0.0103, 0.0096, 0.0066, 0.0062, 0.0052], [0.0525, 0.0361, 0.016, 0.0141, 0.0086, 0.0086, 0.0059, 0.0049], [0.0325, 0.0287, 0.0087, 0.0087, 0.0072, 0.0039, 0.0028, 0.0028], [0.1935, 0.0246, 0.0124, 0.0103, 0.0062, 0.0052, 0.004, 0.004], [0.024, 0.0175, 0.0145, 0.0078, 0.005, 0.0042, 0.0039, 0.0039], [0.0384, 0.0181, 0.015, 0.011, 0.0059, 0.0052, 0.0052, 0.0046], [0.0326, 0.0306, 0.0154, 0.0136, 0.0077, 0.0073, 0.0068, 0.0068], [0.0941, 0.078, 0.0473, 0.0238, 0.0144, 0.012, 0.0112, 0.0112], [0.2191, 0.1816, 0.0489, 0.0262, 0.0204, 0.0169, 0.0159, 0.014], [0.4186, 0.1745, 0.0441, 0.0236, 0.0236, 0.0119, 0.0092, 0.0082], [0.3456, 0.1534, 0.0498, 0.0172, 0.0134, 0.0134, 0.0126, 0.0118], [0.3118, 0.1221, 0.0422, 0.0187, 0.0176, 0.0165, 0.0137, 0.0129], [0.2155, 0.0657, 0.0481, 0.0424, 0.0274, 0.0213, 0.0213, 0.0156], [0.1131, 0.0606, 0.0324, 0.0304, 0.0286, 0.0269, 0.0197, 0.0185], [0.1266, 0.0528, 0.032, 0.0265, 0.0234, 0.0142, 0.0104, 0.0104], [0.1296, 0.0507, 0.0448, 0.0371, 0.0308, 0.0308, 0.0137, 0.0121], [0.0469, 0.0414, 0.0251, 0.0236, 0.0222, 0.0152, 0.0098, 0.0082], [0.0493, 0.0435, 0.015, 0.0117, 0.0103, 0.0076, 0.0071, 0.0059], [0.0944, 0.0446, 0.0099, 0.0093, 0.0082, 0.0077, 0.0073, 0.0064], [0.1789, 0.0292, 0.0274, 0.0258, 0.0156, 0.013, 0.0122, 0.0089], [0.5176, 0.0545, 0.0375, 0.0147, 0.013, 0.0084, 0.0084, 0.0079], [0.6366, 0.063, 0.0359, 0.008, 0.008, 0.0059, 0.0046, 0.004], [0.5285, 0.3632, 0.0193, 0.011, 0.004, 0.0026, 0.0018, 0.0018], [0.9805, 0.0096, 0.0045, 0.0015, 0.0004, 0.0004, 0.0004, 0.0003], [0.9841, 0.0066, 0.0052, 0.0017, 0.0003, 0.0003, 0.0003, 0.0002], [0.9832, 0.0066, 0.0058, 0.0017, 0.0003, 0.0003, 0.0003, 0.0001], [0.9932, 0.0046, 0.0007, 0.0006, 0.0002, 0.0001, 0.0, 0.0], [0.997, 0.0019, 0.0006, 0.0003, 0.0, 0.0, 0.0, 0.0], [0.9853, 0.0085, 0.0059, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9921, 0.0041, 0.0032, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.9966, 0.0012, 0.0005, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 422, "top": [[" \u2013", "\u2013", ".", "<|endoftext|>", ",", "\u2013and", " ", ".\u2013"], [" \u2013", "\u2013", " \u2013**", "\u2013\u2013", "\u2013and", "**\u2013", " \u2013,", ".\u2013"], [" \u2013", "\u2013", ".\u2013", "\u2013and", ",", "**\u2013", " \u2013,", "\u2013\u2013"], ["ieli", " \u2013**", "enje", "**\u2013", "\u3093\u3070\u3093", "uarte", "AREN", "inaldo"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", " ", "\u2013and", " [@", "[@"], [" \u2013", ".\u2013", "\u2013", "\u2013\u2013", "\u2013and", " **\u2013", "**\u2013", " \u2013,"], [" \u2013", "\u2013\u2013", ".\u2013", "\u2013", "\u2013and", " ", " Centre", " Middle"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013and", " Centre", "\u2013", " armour", "\u0436\u0434\u0451"], [" \u2013", ".\u2013", "\u2013\u2013", "\u2013and", "\u2013", " \u2013,", " \u200b\u200b", "../../../"], [" \u2013", "\u2013", ".\u2013", "\u2013\u2013", "\u2013and", " Centre", "\u0436\u0434\u0451", ","], [" \u2013", " Centre", "\u2013", ",", ".\u2013", " armour", " centre", " neighbourhood"], [" armour", " Centre", " neighbourhood", " flavours", " centre", " favourites", " specialised", "\u0436\u0434\u0451"], [" neighbourhood", " \u2013", " flavours", " armour", " hardcore", " jewellery", " neighbours", " electronics"], [" \u2013", " neighbourhood", " hardcore", " electronics", " flavours", " armour", " popularity", " platforms"], [" \u2013", " neighbourhood", " popularity", " Centre", " armour", " favourites", " platforms", " areas"], [" \u2013", " popular", " popularity", " neighbourhood", " high", " Middle", " low", " marketing"], [" \u2013", " popular", " popularity", " Middle", " folks", " middle", " media", " platforms"], [" popularity", " ballpark", " outfits", " boutique", " electronics", " tweaks", " blockbuster", " showcase"], [" ballpark", " electronics", " upscale", " blockbuster", " boutique", " gamers", " influencers", " contenders"], [" folks", " ballpark", " midd", " blockbuster", " boutique", " electronics", " gaming", " gamers"], [" folks", " ballpark", " midd", " popularity", " pricey", " Middle", " gaming", " popular"], [" electronics", " ballpark", " gamers", " startups", " influencers", " folks", " marketers", " malls"], [" electronics", " folks", " ballpark", " gaming", " midd", " gamers", " market", " pricey"], [" popular", " high", " ultimately", " commercial", " notably", " heavily", " mid", " Middle"], [" pricey", " midd", " affordable", " hardware", " electronics", " upgrades", " market", " mid"], [" electronics", " hardware", " smartphone", " smartphones", " affordable", " upgrades", " Android", " gaming"], [" electronics", " smartphone", " smartphones", " hardware", " affordable", " Android", " gaming", " upgrades"], [" hardware", " electronics", " \n\n", " upgrades", " affordable", " low", " gaming", " tech"], [" smartphones", " smartphone", " electronics", " hardware", " Android", " affordable", " upgrades", " technologies"], [" smartphones", " smartphone", " affordable", " hardware", " electronics", " cheaper", " markets", " Android"], [" smartphones", " smartphone", " technology", " hardware", " tech", " affordable", " technologies", " electronics"], [" technology", " affordable", " smartphones", " hardware", " low", " tech", " cheap", " smartphone"], [" hardware", " technology", " low", " cheap", " affordable", " tech", " smartphones", " cheaper"], [" hardware", " smartphones", " smartphone", " tech", " affordable", " cheap", " technology", " cheaper"], [" hardware", " tech", " smartphone", " smartphones", " affordable", " cheap", " overclock", " Android"], [" hardware", " Android", " smartphones", " tech", " smartphone", " \u2013", " overclock", " electronics"], [" hardware", " Android", " smartphones", " tech", " smartphone", " overclock", " chipset", " CPUs"], [" Android", " hardware", " smartphones", " smartphone", " tech", " overclock", " android", " chipset"], [" hardware", " Android", " smartphones", " smartphone", " overclock", " CPUs", " tech", " android"], [" hardware", " Android", " smartphones", " smartphone", " overclock", " CPUs", " chipset", " android"], [" Android", " smartphones", " hardware", " smartphone", " android", " chipset", " devices", " overclock"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " chipset", " phones"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " chipset", " phones"], [" Android", " hardware", " smartphones", " smartphone", " android", " Samsung", " chipset", " devices"], [" Android", " smartphones", " hardware", " smartphone", " phones", " android", " Samsung", " devices"], [" Android", " smartphones", " hardware", " smartphone", " phones", " android", " Samsung", " CPUs"], [" Android", " hardware", " smartphones", " smartphone", " phones", " GPUs", " CPUs", " budgets"], [" Android", " smartphones", " hardware", " CPUs", " GPUs", " phones", " smartphone", " budgets"], [" Android", " smartphones", " GPUs", " CPUs", " hardware", " phones", " budgets", " laptops"], [" Android", " smartphones", " GPUs", " CPUs", " hardware", " phones", " budgets", " (~"], [" CPUs", " GPUs", " smartphones", " Android", "\u673a\u578b", " hardware", " phones", " laptops"], [" Android", " CPUs", " GPUs", "(Android", "Android", " smartphones", " hardware", " android"], [" Android", " CPUs", " GPUs", "Android", " hardware", " smartphones", "(Android", " processors"], [" Android", " CPUs", " hardware", " GPUs", "Android", " processors", " smartphones", " android"], [" Android", " CPUs", " GPUs", " hardware", " processors", "Android", " CPU", " smartphones"], [" Android", "Android", " android", "/android", " GPUs", " CPUs", "\u5b89\u5353", "(Android"], [" Android", "Android", " android", "(Android", "/android", "\u5b89\u5353", " GPUs", "_android"], [" Android", "Android", " GPUs", " chips", " Snapdragon", " chipset", " GPU", " android"], [" Android", "Android", " android", " Snapdragon", " GPUs", " chips", "-android", "(Android"], [" Android", "Android", " android", "-android", "(Android", "_android", "android", " devices"], [" Android", "Android", " android", "(Android", "-android", "_android", ".Android", "/android"], [" Android", "Android", " android", "-android", "(Android", " GPUs", " CPUs", "\u5b89\u5353"], [" Android", "Android", " Snapdragon", " android", " GPUs", " CPUs", "(Android", " devices"]], "p": [[0.9841, 0.0124, 0.0013, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001], [0.938, 0.025, 0.0104, 0.0104, 0.0063, 0.0038, 0.0026, 0.0021], [0.5241, 0.4625, 0.0058, 0.004, 0.0015, 0.0006, 0.0004, 0.0004], [0.0088, 0.0029, 0.0029, 0.0029, 0.0027, 0.0024, 0.0021, 0.002], [0.7373, 0.0345, 0.0237, 0.0223, 0.0099, 0.0068, 0.0064, 0.0041], [0.4302, 0.2163, 0.1397, 0.1022, 0.0453, 0.0037, 0.0021, 0.0018], [0.8331, 0.0209, 0.0153, 0.0119, 0.0056, 0.0015, 0.0009, 0.0007], [0.1712, 0.0433, 0.017, 0.0124, 0.0075, 0.0062, 0.0049, 0.0046], [0.185, 0.099, 0.0267, 0.025, 0.0104, 0.0056, 0.0052, 0.0044], [0.2545, 0.088, 0.0415, 0.0286, 0.0196, 0.0144, 0.0127, 0.0127], [0.5173, 0.0292, 0.0242, 0.0166, 0.0156, 0.0122, 0.0079, 0.0051], [0.0243, 0.0228, 0.0201, 0.0147, 0.0122, 0.0115, 0.0101, 0.0095], [0.0118, 0.0118, 0.0087, 0.006, 0.0049, 0.0044, 0.0044, 0.0038], [0.0091, 0.0071, 0.0062, 0.0058, 0.0046, 0.0043, 0.004, 0.0031], [0.0527, 0.0063, 0.0059, 0.0052, 0.0049, 0.0046, 0.0041, 0.0034], [0.034, 0.0076, 0.0071, 0.0052, 0.0043, 0.0043, 0.0034, 0.0034], [0.0177, 0.0084, 0.0074, 0.004, 0.0037, 0.0037, 0.0033, 0.0029], [0.0037, 0.0031, 0.0031, 0.0031, 0.0029, 0.0029, 0.0027, 0.0025], [0.0047, 0.0032, 0.003, 0.0025, 0.0025, 0.0025, 0.0024, 0.0022], [0.0078, 0.0057, 0.005, 0.003, 0.0021, 0.0021, 0.002, 0.0018], [0.0072, 0.0059, 0.0036, 0.0023, 0.0022, 0.0022, 0.0019, 0.0018], [0.0059, 0.0038, 0.0036, 0.0024, 0.0024, 0.0023, 0.0023, 0.002], [0.0069, 0.0069, 0.0057, 0.0045, 0.0033, 0.0031, 0.0031, 0.0027], [0.0039, 0.0039, 0.0034, 0.0027, 0.0025, 0.0023, 0.0022, 0.0021], [0.0066, 0.0048, 0.0048, 0.004, 0.004, 0.0037, 0.0033, 0.0024], [0.0493, 0.0299, 0.0264, 0.017, 0.0133, 0.0117, 0.0091, 0.0086], [0.0637, 0.0562, 0.0466, 0.0386, 0.0182, 0.0151, 0.0142, 0.0118], [0.0165, 0.0088, 0.0088, 0.0088, 0.0083, 0.0078, 0.0069, 0.0069], [0.0382, 0.0317, 0.0298, 0.0263, 0.0218, 0.0192, 0.0181, 0.015], [0.0779, 0.0473, 0.0346, 0.0238, 0.0238, 0.0174, 0.0153, 0.0144], [0.0632, 0.0408, 0.0339, 0.0299, 0.0248, 0.0233, 0.0205, 0.0181], [0.0425, 0.0242, 0.0228, 0.0189, 0.0166, 0.0156, 0.013, 0.013], [0.0368, 0.0324, 0.0269, 0.0253, 0.0237, 0.0135, 0.0119, 0.0099], [0.0652, 0.0575, 0.0421, 0.0371, 0.0328, 0.0212, 0.0187, 0.0165], [0.1239, 0.0906, 0.0623, 0.055, 0.026, 0.0229, 0.0178, 0.0168], [0.1818, 0.0859, 0.0712, 0.0628, 0.059, 0.018, 0.0169, 0.0132], [0.2632, 0.1409, 0.091, 0.0708, 0.0587, 0.0245, 0.0139, 0.0102], [0.2815, 0.1604, 0.1415, 0.1036, 0.0246, 0.0169, 0.0159, 0.008], [0.2986, 0.2326, 0.1411, 0.0709, 0.0216, 0.0168, 0.0158, 0.0123], [0.2644, 0.2644, 0.133, 0.0628, 0.0262, 0.0192, 0.018, 0.0169], [0.5979, 0.1039, 0.1039, 0.063, 0.0298, 0.008, 0.0062, 0.0059], [0.7521, 0.0793, 0.0481, 0.0374, 0.02, 0.0069, 0.0042, 0.0033], [0.6406, 0.1113, 0.0675, 0.0385, 0.0206, 0.0117, 0.0086, 0.0063], [0.5603, 0.1417, 0.0758, 0.0381, 0.0192, 0.0149, 0.0124, 0.0085], [0.4774, 0.1368, 0.083, 0.0646, 0.0269, 0.0223, 0.0127, 0.0082], [0.3944, 0.128, 0.0827, 0.0605, 0.0286, 0.0135, 0.0135, 0.0099], [0.2793, 0.1028, 0.0907, 0.0485, 0.0229, 0.0202, 0.0202, 0.0148], [0.2938, 0.0896, 0.0543, 0.0374, 0.033, 0.031, 0.0213, 0.02], [0.155, 0.1065, 0.0779, 0.0688, 0.0503, 0.0325, 0.0197, 0.0153], [0.1112, 0.0866, 0.0866, 0.0813, 0.0318, 0.0264, 0.0248, 0.0233], [0.1902, 0.1018, 0.0424, 0.0257, 0.0227, 0.0227, 0.0177, 0.0166], [0.6363, 0.076, 0.0407, 0.0298, 0.0232, 0.0117, 0.008, 0.0055], [0.5679, 0.1732, 0.0438, 0.0194, 0.0183, 0.0098, 0.0081, 0.0046], [0.6925, 0.0827, 0.0605, 0.0324, 0.0196, 0.0093, 0.0082, 0.0064], [0.7503, 0.1015, 0.0423, 0.033, 0.0137, 0.0101, 0.0054, 0.0045], [0.9872, 0.0067, 0.0013, 0.0008, 0.0005, 0.0005, 0.0005, 0.0005], [0.9929, 0.0041, 0.001, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9847, 0.0046, 0.0019, 0.0017, 0.0015, 0.001, 0.0006, 0.0006], [0.9888, 0.0046, 0.001, 0.001, 0.0008, 0.0007, 0.0005, 0.0004], [0.9959, 0.0036, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9986, 0.0013, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9981, 0.0015, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9994, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 423, "top": [["s", "a", "o", ".", "i", ",", "er", "ing"], ["s", "sWith", "a", "  \n\n", "\u201d,", "ing", "\u201d.", "erweise"], ["s", ",", "\u2013", "\u2026.", ".", "\u2026", "a", " \u2013"], ["sWith", "sik", "s", "szeit", "erweise", "sze", "satz", " **\u2022"], ["s", "ed", "sWith", "a", "sik", "\u0627\u062a", "s\u00f3", "sche"], ["s", "sWith", "sver", "s\u00f3", "sik", "ed", "svar", "a"], ["s", "sWith", "\u0627\u062a", "sik", "a", "sak", "(Android", " Android"], ["s", "sWith", "(Android", "sik", "sak", "sburg", "s\u00f3", "\u0627\u062a"], ["s", "sWith", "!\u201d.", "sak", "schild", "sik", "(Android", "scape"], ["s", ",", "(Android", "\u76f8\u8f85\u76f8\u6210", "sWith", "sak", " Android", "s\u00f3"], ["s", "a", " Android", ",", "...", "-style", "(Android", "scape"], ["s", " Android", "(Android", "sak", ".Android", "sWith", "\u76f8\u8f85\u76f8\u6210", "(android"], ["s", " Android", "(Android", "sak", "sWith", "\u76f8\u8f85\u76f8\u6210", "(android", ".Android"], ["s", " Android", "(Android", "sak", "(android", "sWith", "\u76f8\u8f85\u76f8\u6210", " android"], ["s", " Android", "sak", "-style", "ska", "sWith", "(android", ".Android"], ["s", "\u51ed\u501f\u7740", "-esque", " Android", " arguably", "sak", "\u65b0\u52a0\u5761", "sWith"], ["s", " Android", "-esque", "ska", "sak", "\u51ed\u501f\u7740", " apps", " arguably"], ["s", " Android", "sWith", "ska", "(Android", " apps", "sak", ".Android"], ["s", " Android", "(Android", ".Android", "ska", "sWith", "sak", " apps"], ["s", "(Android", " Android", ".Android", " hugely", "sWith", "sak", " apps"], ["s", " \r\n\r\n", " Android", "\r\n\r\n", "(Android", " {{--<", " hugely", ".Android"], [" Android", "(Android", ".Android", " android", "(android", "_android", "ANDROID", " smartphones"], [" Android", ".Android", "(Android", " android", "Android", " ``", " {{--<", "s"], [" Android", ".Android", "s", " {{--<", "Android", "(Android", " ``", " android"], [" Android", "Android", ".Android", "(Android", " android", "ANDROID", "_ANDROID", " \r\n\r\n"], [" Android", "(Android", " android", ".Android", "Android", "_ANDROID", "_android", "/android"], [" Android", " android", "(Android", ".Android", "Android", "_android", "_ANDROID", "/android"], [" Android", " android", "(Android", "Android", ".Android", "_ANDROID", "ANDROID", " \n\n"], [" Android", " android", "Android", "(Android", ".Android", " smartphones", "/android", " smartphone"], [" Android", " android", "(Android", "Android", " smartphones", ".Android", " smartphone", " apps"], [" Android", " android", "(Android", " smartphones", "Android", " smartphone", ".Android", " apps"], [" Android", " android", " technology", " smartphones", "s", " mobile", " tech", " apps"], [" Android", " android", " technology", " heavily", " smartphones", "(Android", "s", " tech"], [" Android", " android", "(Android", " smartphones", " smartphone", "Android", " tech", ".Android"], [" Android", " android", "(Android", " smartphones", " smartphone", "Android", ".Android", "/android"], [" Android", "(Android", " android", "Android", ".Android", " smartphones", "/android", " smartphone"], [" Android", "Android", "(Android", " android", ".Android", " smartphones", "/android", " smartphone"], [" Android", " android", "(Android", "Android", ".Android", "/android", " smartphones", " smartphone"], [" Android", " android", "(Android", "Android", ".Android", " smartphones", "/android", " hardware"], [" Android", "(Android", " android", "Android", ".Android", " smartphones", " hardware", "/android"], [" Android", "(Android", "Android", " android", ".Android", " smartphones", "/android", " hardware"], [" Android", "(Android", " android", "Android", ".Android", "/android", "-android", " hardware"], [" Android", "(Android", "Android", " android", ".Android", "-android", " hardware", "/android"], [" Android", "(Android", "Android", " android", ".Android", " hardware", " smartphones", "/android"], [" Android", "(Android", " android", "Android", ".Android", " hardware", " smartphones", " engines"], [" Android", "(Android", " android", " smartphones", " engines", ".Android", " hardware", "Android"], [" Android", "(Android", " engines", " hardware", " smartphones", " android", " platforms", " lacks"], [" Android", " lacks", "(Android", " engines", " android", " platforms", " smartphones", " hardware"], [" Android", " lacks", "(Android", " platforms", " smartphones", " engines", " phones", " lacked"], [" lacks", " Android", "(Android", " budgets", " platforms", " smartphones", " phones", " lacked"], [" lacks", "(Android", " Android", " budgets", " CPUs", "Android", " phones", " smartphones"], ["(Android", " CPUs", " lacks", " Android", " phones", " GPUs", " hardware", " processors"], [" CPUs", " hardware", " phones", " lacks", " GPUs", " processors", "(Android", " devices"], [" hardware", " phones", " devices", "(Android", " CPUs", " Android", " processors", " GPUs"], [" CPUs", " processors", " hardware", " Android", " phones", " GPUs", "(Android", " CPU"], [" CPUs", " hardware", " GPUs", " processors", " phones", " CPU", " Android", "(Android"], [" Android", " GPUs", "(Android", " phones", " hardware", " CPUs", " GPU", "Android"], [" GPUs", " chips", " GPU", " CPUs", " chip", " CPU", " chipset", " processors"], [" GPUs", " CPUs", " GPU", " chips", " CPU", " chip", " processors", "\u82af\u7247"], [" devices", " GPUs", " GPU", " hardware", " chips", " CPUs", " device", " chip"], [" devices", " GPUs", " CPUs", " chips", " phones", " GPU", " processors", " CPU"], [" devices", " GPUs", " CPUs", " phones", " chips", " processors", " chip", " device"], [" devices", " GPUs", " chips", " CPUs", " phones", " processors", " chip", " So"]], "p": [[0.9358, 0.0466, 0.0052, 0.0043, 0.0018, 0.0014, 0.0004, 0.0003], [0.9836, 0.002, 0.0013, 0.0008, 0.0007, 0.0005, 0.0005, 0.0004], [0.9594, 0.0094, 0.0065, 0.0047, 0.0044, 0.0033, 0.0024, 0.0017], [0.0461, 0.0433, 0.0262, 0.018, 0.0132, 0.0085, 0.0085, 0.0085], [0.9973, 0.0005, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9593, 0.0065, 0.002, 0.0014, 0.0012, 0.0008, 0.0008, 0.0007], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9971, 0.0005, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9918, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9354, 0.003, 0.0013, 0.0012, 0.0007, 0.0007, 0.0006, 0.0005], [0.988, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.2937, 0.0241, 0.0121, 0.0114, 0.0094, 0.0094, 0.0074, 0.0065], [0.337, 0.0244, 0.0139, 0.0108, 0.0102, 0.0079, 0.0079, 0.007], [0.1351, 0.0134, 0.0092, 0.0063, 0.0063, 0.0056, 0.0052, 0.0038], [0.2881, 0.0053, 0.003, 0.0023, 0.0021, 0.0018, 0.0017, 0.0016], [0.1597, 0.0066, 0.0023, 0.0021, 0.0017, 0.0016, 0.0014, 0.0014], [0.8125, 0.001, 0.0007, 0.0007, 0.0006, 0.0006, 0.0005, 0.0005], [0.4518, 0.005, 0.0037, 0.0032, 0.003, 0.0025, 0.0024, 0.0024], [0.179, 0.0089, 0.0074, 0.0058, 0.0051, 0.0042, 0.0042, 0.0029], [0.1156, 0.0065, 0.0054, 0.0037, 0.0026, 0.0023, 0.0023, 0.002], [0.1107, 0.0097, 0.0046, 0.0033, 0.0028, 0.0026, 0.0024, 0.0022], [0.0326, 0.0198, 0.0145, 0.005, 0.0034, 0.0025, 0.0022, 0.0021], [0.059, 0.0217, 0.0132, 0.0071, 0.0062, 0.0055, 0.0035, 0.0033], [0.0222, 0.0077, 0.0056, 0.0047, 0.0036, 0.0032, 0.003, 0.0027], [0.1026, 0.0294, 0.0244, 0.0244, 0.0215, 0.0079, 0.0079, 0.0074], [0.3937, 0.0775, 0.0604, 0.0442, 0.0222, 0.0153, 0.0135, 0.0135], [0.4431, 0.0638, 0.0563, 0.0364, 0.0183, 0.0134, 0.0118, 0.0118], [0.1492, 0.0244, 0.0139, 0.0115, 0.0084, 0.0062, 0.0051, 0.0051], [0.6349, 0.0669, 0.0591, 0.0381, 0.0169, 0.0062, 0.0058, 0.0048], [0.6551, 0.0649, 0.0538, 0.0306, 0.0154, 0.0145, 0.0093, 0.0039], [0.726, 0.0675, 0.0233, 0.0142, 0.0117, 0.0076, 0.0063, 0.0055], [0.552, 0.0482, 0.0189, 0.013, 0.0122, 0.0095, 0.0079, 0.0069], [0.3496, 0.0346, 0.0164, 0.0164, 0.0106, 0.0093, 0.0093, 0.0088], [0.5938, 0.0855, 0.0458, 0.0278, 0.0116, 0.0096, 0.0085, 0.0085], [0.5672, 0.087, 0.0817, 0.0386, 0.0249, 0.0234, 0.0182, 0.0151], [0.6918, 0.0936, 0.0643, 0.039, 0.0196, 0.0173, 0.0077, 0.0072], [0.7226, 0.0593, 0.0593, 0.0523, 0.0205, 0.0124, 0.0085, 0.0049], [0.8345, 0.0471, 0.0471, 0.0367, 0.0105, 0.005, 0.0041, 0.0021], [0.9051, 0.0273, 0.0273, 0.0188, 0.0054, 0.0029, 0.0029, 0.0014], [0.8556, 0.0426, 0.0332, 0.0293, 0.0089, 0.0051, 0.0037, 0.0027], [0.9129, 0.0312, 0.0215, 0.0189, 0.0054, 0.0023, 0.0012, 0.0009], [0.9551, 0.0154, 0.0106, 0.0106, 0.003, 0.0008, 0.0007, 0.0007], [0.9355, 0.022, 0.0151, 0.0118, 0.0063, 0.0014, 0.0014, 0.001], [0.9307, 0.0248, 0.0193, 0.0103, 0.0043, 0.0016, 0.0014, 0.0008], [0.9149, 0.0244, 0.0148, 0.0131, 0.0062, 0.0035, 0.0033, 0.0027], [0.8008, 0.0452, 0.0156, 0.0147, 0.0107, 0.0089, 0.0089, 0.0065], [0.6693, 0.0402, 0.026, 0.0178, 0.0178, 0.0168, 0.0108, 0.0095], [0.5723, 0.0824, 0.0344, 0.0251, 0.0153, 0.0153, 0.0143, 0.0112], [0.2825, 0.2342, 0.1039, 0.028, 0.0218, 0.0192, 0.0124, 0.0117], [0.3708, 0.1546, 0.1131, 0.0324, 0.0209, 0.0163, 0.0144, 0.0135], [0.2905, 0.2563, 0.1004, 0.0254, 0.0238, 0.0186, 0.0186, 0.0136], [0.1839, 0.1432, 0.0984, 0.0636, 0.0561, 0.0527, 0.03, 0.0265], [0.2736, 0.1465, 0.1141, 0.0888, 0.042, 0.042, 0.0307, 0.0255], [0.2918, 0.1562, 0.1073, 0.0836, 0.0836, 0.0738, 0.0507, 0.0165], [0.3226, 0.2217, 0.1187, 0.072, 0.072, 0.0561, 0.034, 0.03], [0.3226, 0.1727, 0.1524, 0.0924, 0.0561, 0.0561, 0.0495, 0.0234], [0.4581, 0.1685, 0.1487, 0.062, 0.0547, 0.0293, 0.0258, 0.0157], [0.2452, 0.2452, 0.1909, 0.0902, 0.062, 0.0483, 0.0258, 0.0258], [0.286, 0.2524, 0.1735, 0.1052, 0.1052, 0.0207, 0.0183, 0.0098], [0.7693, 0.1041, 0.0492, 0.0181, 0.0181, 0.0141, 0.011, 0.0036], [0.6001, 0.2501, 0.1043, 0.016, 0.0141, 0.0059, 0.0036, 0.0015], [0.717, 0.16, 0.0856, 0.0169, 0.0131, 0.0023, 0.0009, 0.0008], [0.8995, 0.0507, 0.024, 0.0165, 0.0061, 0.0006, 0.0004, 0.0003]], "ranks": {}}, {"pos": 424, "top": [[" \u2013", "\u2013", ".", ",", ";", "\u2013and", " ", " \u200b\u200b"], [" \u2013", "\u2013", "\u2013and", " \u200b\u200b", " \u2013,", ".\u2013", "\u2013\u2013", " \u2013**"], ["\u2013", " \u2013", ",", "\u2013and", ".", ".\u2013", " \u2013,", ";"], [" ;;^", " Shemale", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " YYS", " Blowjob", "\ufffd\ufffd", "bergen"], [" \u200b\u200b", ".", ",", "  ", ".\u2013", " ", "\u200b\u200b", "\u0103\u021b"], [" \u200b\u200b", "\u2013and", "(Device", ".\u2013", "\u30a7", "\u0103\u021b", "\u043e\u0440\u043e\u0434", "\u2026.."], [" \u200b\u200b", "   \n", "   \n\n", " **\u2013", " **\u2018", " \n\n\n", "  ", "\u200b\u200b"], [" \u200b\u200b", "(Device", " **\u20ac", "   \n", "\u200b\u200b", "\u0103\u021b", " **\u2013", ".\u2013"], [" \u200b\u200b", "\u200b\u200b", ".", ".\u201c", ".\u2013", ".\u201d", "   \n\n", " \n\n\n"], [",", "\u2013", "\u00a0", "\u2013and", ".", ".\u2013", ";", " \u2013"], [",", "\u00a0", ".", "\u2013", " \u2013", " ", ";", " [\u2026]"], [" \u2013", "\u00a0", "\u2013and", " **\u2013", " showcased", "\u2013", ".\u2013", " "], ["\u2013", "\u2013and", " \u2013", " **\u2013", " utilized", " showcased", " **\u2018", ".\u2013"], [" showcased", "\u2013and", " \u2013", "\u2013", " utilized", " infrastructure", " impactful", " healthcare"], [" \u2013", "\u2013", " ", " showcased", "\u2013and", ",", " utilized", " primarily"], [" \u2013", " utilized", " showcased", " showcasing", "\u2013", " utilizing", " renowned", " often"], [" \u2013", "\u2013", ",", "\u00a0", "\u2013and", " \u2018", " \u200b\u200b", "\u2019s"], [" \u2013", "\u2013", "\u2013and", " \u200b\u200b", ",", "\u2019s", " showcased", " \u2018"], [" \u2013", "\u2014even", " \u200b\u200b", " arguably", " \u2018", "\u2014including", " showcased", "\u2014and"], [" \u2018", " \u2013", " arguably", "\u2014even", "\u2013", "\u2013and", "\u2014and", "\u00a0"], ["<|endoftext|>", " \n\n", "  \n\n", " \n\n\n", "\u00a0", "\n\n", "   \n\n", " ultimately"], [" smartphones", " impactful", " showcased", " **\u2018", " smartphone", " fueled", " arguably", " LGBTQ"], [" \u2018", " arguably", " ultimately", " notably", " heavily", " often", " largely", " uniquely"], [" \u2018", "<|endoftext|>", " ultimately", " notably", " largely", " arguably", " often", " heavily"], [" \n\n", " \r\n\r\n", " \n\n\n", "   \n\n", "  \n\n", " arguably", " notably", " \u2018"], [" \n\n", " smartphones", " **\u2018", " \r\n\r\n", " smartphone", " showcased", " **", " heavily"], [" smartphones", " smartphone", " \n\n", " hardware", " Android", " showcased", " gaming", " heavily"], [" \n\n", "  \n\n", " \r\n\r\n", " \u2018", " heavily", "\n\n", " \n\n\n", "   \n\n"], [" \n\n", " smartphones", " smartphone", " Android", " hardware", " heavily", " \n\n\n", " \r\n\r\n"], [" smartphones", " smartphone", " hardware", " often", " Android", " typically", " heavily", " **"], [" often", " smartphones", " smartphone", " heavily", " hardware", " typically", " **", " technology"], [" \u200b\u200b", " often", " heavily", " \u2013", " smartphones", "\u2019s", " technology", " \u2018"], [" often", " heavily", " typically", " \u2013", " rapidly", " rarely", " notoriously", " smartphones"], [" often", " heavily", " typically", " \u2013", " notoriously", " rapidly", " hardware", " increasingly"], [" notoriously", " typically", " heavily", " often", " hardware", " disproportionately", " aggressively", " rapidly"], [" notoriously", " typically", " often", " hardware", " heavily", " sluggish", " increasingly", " rarely"], [" notoriously", " hardware", " typically", " heavily", " often", " slower", " sluggish", " poorly"], [" notoriously", " hardware", " typically", " often", " poorly", " rarely", " slower", " disproportionately"], [" hardware", " notoriously", " typically", " CPU", " often", " overclock", " sluggish", " lacks"], [" hardware", " CPU", " overclock", " notoriously", " CPUs", " slower", " sluggish", " typically"], [" hardware", " CPU", " overclock", " CPUs", " engines", " slower", " sluggish", " limited"], [" hardware", " CPU", " overclock", " engines", " limited", " CPUs", " Hardware", " constrained"], [" hardware", " CPU", " overclock", " engines", " limited", " CPUs", " Hardware", " slower"], [" hardware", " limited", " CPU", " overclock", " engines", " CPUs", " Hardware", " sluggish"], [" hardware", " limited", " budgets", " lacks", " CPU", " overclock", " poor", " engines"], [" limited", " hardware", " lacks", " budgets", " typically", " notoriously", " lack", " constrained"], [" limited", " hardware", " lacks", " weak", " notoriously", " typically", " budgets", " low"], [" limited", " lacks", " typically", " weak", " low", " hardware", " lacked", " lack"], [" lacks", " limited", " lacked", " typically", " hardware", " notoriously", " lack", " weaker"], [" lacks", " limited", " typically", " lacked", " notoriously", "\u6709\u9650\u7684", "Limited", " (~"], [" lacks", " lacked", " limited", "\u6709\u9650\u7684", " typically", "Limited", "\u7f3a\u4e4f", " \u0645\u062d\u062f\u0648\u062f"], [" lacks", " limited", "\u6709\u9650\u7684", " typically", "Limited", "limited", " lacked", "\u6709\u9650"], [" limited", "\u6709\u9650\u7684", "limited", " lacks", "Limited", " typically", "\u6709\u9650", " Limited"], [" limited", "\u6709\u9650\u7684", " typically", " lacks", "limited", "Limited", "\u6709\u9650", " (~"], [" typically", "\u6709\u9650\u7684", " limited", "\u6709\u9650", " lacks", "Limited", "limited", "\u662f\u6709\u9650\u7684"], [" typically", " lacks", " limited", "\u6709\u9650\u7684", " lack", "\u7f3a\u4e4f", " lacked", "\u6709\u9650"], [" typically", " lacks", " CPU", " (~", " lack", "\u6709\u9650\u7684", " limited", "\u6709\u9650"], [" typically", " CPU", " lack", " lacks", "\u7f3a\u4e4f", "CPU", " CPUs", "typically"], [" typically", " thrott", " CPU", " lack", " throttle", " often", " running", " lacks"], [" typically", " thrott", " CPU", " running", " lack", " throttle", " have", " (~"], [" have", " typically", " thrott", " throttle", " running", " CPU", " (~", " often"], [" have", " typically", " struggle", " thrott", " throttle", " lack", " do", " (~"], [" have", " struggle", " lack", " typically", " often", " throttle", " do", " ("]], "p": [[0.5204, 0.2169, 0.169, 0.0798, 0.004, 0.0021, 0.0018, 0.0007], [0.4814, 0.4248, 0.0477, 0.0073, 0.0069, 0.0035, 0.0022, 0.0012], [0.7511, 0.2152, 0.0138, 0.0083, 0.0057, 0.0035, 0.0006, 0.0006], [0.0074, 0.0065, 0.0037, 0.0037, 0.0033, 0.0031, 0.0025, 0.0016], [0.2709, 0.0105, 0.0056, 0.0044, 0.0041, 0.0034, 0.0025, 0.0023], [0.4988, 0.0015, 0.0011, 0.0011, 0.001, 0.0009, 0.0009, 0.0009], [0.1942, 0.0192, 0.011, 0.011, 0.0091, 0.0091, 0.0085, 0.0071], [0.3617, 0.0066, 0.0052, 0.0046, 0.0038, 0.0035, 0.0035, 0.0028], [0.8541, 0.0167, 0.0084, 0.0037, 0.0031, 0.0029, 0.0015, 0.0011], [0.8031, 0.0846, 0.0311, 0.0122, 0.0095, 0.0065, 0.0058, 0.0042], [0.5751, 0.1648, 0.0999, 0.0687, 0.0535, 0.0093, 0.0068, 0.0034], [0.0182, 0.0097, 0.0086, 0.0063, 0.0049, 0.0046, 0.0043, 0.0034], [0.0223, 0.0197, 0.0197, 0.012, 0.0064, 0.006, 0.0053, 0.0053], [0.012, 0.01, 0.0094, 0.0088, 0.0064, 0.006, 0.0047, 0.0047], [0.0971, 0.0315, 0.008, 0.0075, 0.0075, 0.007, 0.0058, 0.0043], [0.0403, 0.0148, 0.0148, 0.0096, 0.0079, 0.0066, 0.0055, 0.0055], [0.3306, 0.2135, 0.0575, 0.0187, 0.0136, 0.0113, 0.0083, 0.0057], [0.2076, 0.1341, 0.0674, 0.0248, 0.015, 0.0117, 0.011, 0.011], [0.0522, 0.0298, 0.028, 0.0232, 0.0232, 0.0232, 0.017, 0.017], [0.1506, 0.0628, 0.0231, 0.0217, 0.0204, 0.018, 0.018, 0.0159], [0.9569, 0.0187, 0.0027, 0.0008, 0.0006, 0.0005, 0.0005, 0.0003], [0.0155, 0.0106, 0.01, 0.0061, 0.0047, 0.0044, 0.0031, 0.0025], [0.0389, 0.0236, 0.0196, 0.0126, 0.0112, 0.0105, 0.0098, 0.0092], [0.078, 0.0571, 0.0287, 0.0174, 0.0136, 0.0136, 0.0136, 0.012], [0.3522, 0.0612, 0.0255, 0.024, 0.0155, 0.0094, 0.0083, 0.0078], [0.0729, 0.0252, 0.0209, 0.0209, 0.0163, 0.0105, 0.0082, 0.0077], [0.0806, 0.0489, 0.0204, 0.0132, 0.0096, 0.0062, 0.0058, 0.0055], [0.4444, 0.0236, 0.0183, 0.0126, 0.0081, 0.0081, 0.0072, 0.0063], [0.0963, 0.0904, 0.0455, 0.0167, 0.0122, 0.0101, 0.0095, 0.0084], [0.1727, 0.0635, 0.0171, 0.0125, 0.011, 0.011, 0.0097, 0.0097], [0.08, 0.0663, 0.0355, 0.0313, 0.0168, 0.0139, 0.0131, 0.0108], [0.0742, 0.0655, 0.02, 0.0188, 0.0156, 0.0137, 0.0121, 0.0114], [0.0733, 0.0444, 0.0253, 0.0185, 0.0154, 0.0127, 0.0112, 0.0112], [0.0679, 0.0599, 0.0563, 0.0363, 0.022, 0.0118, 0.0111, 0.0111], [0.0954, 0.0544, 0.048, 0.031, 0.0213, 0.0177, 0.0166, 0.0137], [0.2263, 0.0782, 0.0609, 0.0505, 0.0224, 0.0128, 0.0128, 0.0113], [0.2611, 0.0902, 0.0454, 0.0243, 0.0243, 0.0189, 0.0167, 0.0157], [0.1414, 0.1414, 0.0431, 0.0278, 0.0204, 0.0149, 0.0124, 0.0124], [0.303, 0.0676, 0.0385, 0.0249, 0.0206, 0.0133, 0.0125, 0.011], [0.2756, 0.1671, 0.045, 0.0329, 0.0273, 0.0241, 0.02, 0.0114], [0.3386, 0.1929, 0.0519, 0.0335, 0.0261, 0.0158, 0.014, 0.0102], [0.6534, 0.0733, 0.0287, 0.021, 0.0197, 0.0185, 0.0144, 0.0053], [0.6215, 0.0615, 0.0351, 0.0291, 0.02, 0.0166, 0.0107, 0.0083], [0.6451, 0.0387, 0.0364, 0.0266, 0.0143, 0.0126, 0.0086, 0.0076], [0.3599, 0.091, 0.0278, 0.023, 0.023, 0.0158, 0.0158, 0.0149], [0.2494, 0.1107, 0.0557, 0.0232, 0.0218, 0.0181, 0.017, 0.015], [0.2896, 0.078, 0.0646, 0.0269, 0.0223, 0.021, 0.0197, 0.0174], [0.3733, 0.1556, 0.0446, 0.0306, 0.0239, 0.0224, 0.0145, 0.0136], [0.4012, 0.115, 0.0329, 0.0291, 0.0257, 0.0213, 0.0176, 0.0156], [0.3814, 0.1403, 0.0964, 0.0355, 0.0157, 0.0157, 0.0148, 0.0148], [0.5244, 0.0519, 0.043, 0.0357, 0.023, 0.0216, 0.0203, 0.0169], [0.205, 0.1597, 0.1409, 0.0754, 0.0666, 0.0587, 0.0457, 0.0191], [0.4098, 0.1936, 0.0628, 0.0628, 0.0628, 0.0432, 0.0336, 0.018], [0.2955, 0.2301, 0.0847, 0.0659, 0.0659, 0.0513, 0.0513, 0.0189], [0.2739, 0.2133, 0.1661, 0.0611, 0.0611, 0.0371, 0.0289, 0.0175], [0.4513, 0.3102, 0.037, 0.0289, 0.0255, 0.0225, 0.0225, 0.0136], [0.5699, 0.0771, 0.0601, 0.025, 0.0235, 0.0221, 0.0172, 0.0162], [0.535, 0.093, 0.0639, 0.0498, 0.0162, 0.0143, 0.0134, 0.0126], [0.5185, 0.1157, 0.0619, 0.0331, 0.0228, 0.0201, 0.0177, 0.0147], [0.573, 0.0879, 0.047, 0.0344, 0.0285, 0.0252, 0.0209, 0.0196], [0.2494, 0.2201, 0.1714, 0.0433, 0.0383, 0.0359, 0.0338, 0.0263], [0.9415, 0.0119, 0.0077, 0.0049, 0.0049, 0.0041, 0.0023, 0.0021], [0.8874, 0.0268, 0.0209, 0.0163, 0.0077, 0.0068, 0.0047, 0.0032]], "ranks": {}}, {"pos": 425, "top": [[",", ".", "\u00a0", ";", " \u2013", "\u2013", "\u00a0\u00a0", "\u2026."], [",", "\u2013", ".", ";", " \u2013", " centre", " favourite", ".["], [",", ".", "\u2013", ";", "\u2026", "\u2026.", " \u2013", "\u00a0"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "aruhi", "uggy", "\u5982\u837c", "enticate", "ussen", "ursal", "irket"], ["\u00a0\u00a0", ".", ",", "\u00ac", "\u00a0", " \u2019", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "able"], ["\u00a0\u00a0", "\u00a0", ",", "\u2026.", " \u200b\u200b", "\u00a0\u00a0\u00a0\u00a0", ".", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0"], ["\u00a0", "\u00a0\u00a0", "  \n\n", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u2026.", " \n\n"], ["\u00a0", "able", "ighbour", "\u00a0\u00a0", " \u200b\u200b", "\u5170\u8fbe", "\u2026.", ","], ["\u00a0", ",", "\u00a0\u00a0", "\u2026.", " \n\n", "  \n\n", "        \n\n", "."], ["\u00a0", ",", "\u00a0\u00a0", " \u00ad", "\u2013", "\u4fe9\u4eba", "\u00a0\u00a0\u00a0", "\u771f\u6709"], ["\u00a0", ",", "\u00a0\u00a0", " \u00ad", "\u2013", "\u2026", ";", "\u00a0\u00a0\u00a0\u00a0"], ["\u4fe9\u4eba", "\u660c\u76db", "\u9887\u5177", "\u783c", "\u0436\u0451", "\u8471\u8471", "\u0449\u0451", "\u771f\u6709"], ["\u660c\u76db", "\u771f\u6709", "\u81ea\u5df1\u72ec\u7279\u7684", "\u4fe9\u4eba", "\u7d2f\u7d2f", "\u987a\u5229\u5f00\u5c55", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pricey"], ["\u771f\u6709", "\u751a\u81f3\u4f1a", "\u4fe9\u4eba", " sprawling", " savvy", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " pricey", " plenty"], [" sprawling", " plenty", " savvy", "\u4fe9\u4eba", "\u5e38\u5e38\u4f1a", " flashy", " kicking", " pricey"], [" sprawling", " plenty", " savvy", "\u5e38\u5e38\u4f1a", " incredibly", " folks", " skinny", " freaking"], [" sprawling", " plenty", " incredibly", " savvy", " wildly", " much", " hefty", " arguably"], [" sprawling", " plenty", " hefty", " savvy", " incredibly", " hugely", " flashy", " wildly"], [" sprawling", " flashy", " incredibly", " hefty", " hugely", " wildly", " savvy", " notoriously"], [" sprawling", " hugely", " wildly", " vastly", " myriad", " plenty", " largely", " hefty"], ["<|endoftext|>", "\n\n", " \n\n", " much", " sprawling", " hugely", " myriad", " vastly"], [" sprawling", " flashy", " hugely", "\u751a\u81f3\u6709", "\u751a\u81f3\u4f1a", " pricey", " incredibly", " plenty"], [" hugely", " vastly", " sprawling", " much", " incredibly", " wildly", " plenty", " myriad"], [" much", " hugely", " vastly", " sprawling", " heavily", " largely", " myriad", " incredibly"], [" hugely", " vastly", " sprawling", " much", " wildly", " plenty", " hefty", " myriad"], [" hugely", " sprawling", " vastly", " much", " incredibly", " wildly", " plenty", " heavily"], [" sprawling", " hugely", " vastly", " pricey", " wildly", " heavily", " notoriously", " disproportionately"], [" much", " \n\n", "\n\n", " hugely", " heavily", " vastly", " nearly", " largely"], [" heavily", " vastly", " hugely", " much", " disproportionately", " sprawling", " incredibly", " plenty"], [" disproportionately", " heavily", " much", " sprawling", " hardware", " cheap", " poorly", " enough"], [" much", " relatively", " huge", " heavily", " disproportionately", " high", " poorly", " low"], [" much", " high", " huge", " relatively", " many", " more", " heavily", " very"], [" relatively", " much", " heavily", " huge", " high", " notoriously", " incredibly", " massive"], [" notoriously", " disproportionately", " relatively", " heavily", " incredibly", " massively", " huge", " poorly"], [" notoriously", " disproportionately", " sluggish", " heavily", " hardware", " poorly", " incredibly", " vastly"], [" notoriously", " slower", " hardware", " sluggish", " limited", " disproportionately", " overclock", " poorly"], [" slower", " hardware", " notoriously", " limited", " sluggish", " overclock", " poorly", " slow"], [" limited", " hardware", " slower", " notoriously", " poorly", " sluggish", " weaker", " overclock"], [" hardware", " limited", " CPU", " slower", " limitations", " limits", " CPUs", " sluggish"], [" limited", " CPU", " slower", " limits", " limitations", " constrained", " hardware", " CPUs"], [" limited", " CPU", " capacity", " constrained", " CPUs", " hardware", " limitations", " memory"], [" limited", " constrained", " capacity", " CPU", " hardware", " limitations", " constraints", " limits"], [" limited", " capacity", " CPU", " constrained", " hardware", " capacities", " CPUs", " limitations"], [" limited", " CPU", " hardware", " constrained", "limited", " capacity", " limitations", " \u0645\u062d\u062f\u0648\u062f"], [" limited", " limitations", " constrained", "limited", " \u0645\u062d\u062f\u0648\u062f", " capacity", " limits", " constraints"], [" limited", "limited", " limitations", " constrained", " \u0645\u062d\u062f\u0648\u062f", " limits", " restricted", " Limited"], [" limited", " constrained", "limited", " constraints", " limitations", " Limited", " weaker", " limits"], [" limited", " constrained", "limited", " Limited", " restricted", " weaker", "Limited", " \u0645\u062d\u062f\u0648\u062f"], [" limited", " constrained", "limited", "Limited", " \u0645\u062d\u062f\u0648\u062f", " weaker", " restricted", "\u6709\u9650\u7684"], [" limited", "limited", "Limited", " \u0645\u062d\u062f\u0648\u062f", "\u6709\u9650\u7684", " constrained", " weaker", " Limited"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", " \u0645\u062d\u062f\u0648\u062f", " limitada", " limitado", "\u53d7\u9650"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", " \u0645\u062d\u062f\u0648\u062f", "\u6709\u9650", " limitada", " limitado"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", "\u6709\u9650", " \u0645\u062d\u062f\u0648\u062f", " limitada", " Limited"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", "\u6709\u9650", " Limited", " \u0645\u062d\u062f\u0648\u062f", " constrained"], [" limited", "limited", "Limited", "\u6709\u9650\u7684", "\u6709\u9650", " Limited", "\u53d7\u9650", " limitado"], [" limited", "limited", "Limited", "\u6709\u9650", "\u6709\u9650\u7684", " constrained", " Limited", " limitado"], [" limited", "limited", "Limited", "\u6709\u9650", "\u6709\u9650\u7684", " Limited", " CPU", " constrained"], [" limited", "limited", "Limited", "\u6709\u9650", "\u6709\u9650\u7684", " constrained", " Limited", " CPU"], [" limited", "limited", "Limited", "\u6709\u9650", " constrained", "\u6709\u9650\u7684", " Limited", " LIMITED"], [" limited", "limited", " CPU", " Limited", " constrained", "\u6709\u9650", "Limited", " aggressive"], [" limited", " thermal", " CPU", " constrained", " thrott", " Limited", "limited", "thermal"], [" limited", " thermal", " constrained", " aggressive", " thrott", " Limited", " fragmented", " CPU"], [" thermal", " limited", " aggressive", " thrott", " constrained", " fragmented", " strict", " CPU"]], "p": [[0.6708, 0.3169, 0.004, 0.0026, 0.0015, 0.0012, 0.0006, 0.0004], [0.4495, 0.0571, 0.0474, 0.0287, 0.027, 0.006, 0.0025, 0.0021], [0.8701, 0.0714, 0.0433, 0.0052, 0.0031, 0.0017, 0.0013, 0.0004], [0.0094, 0.0025, 0.002, 0.0014, 0.0012, 0.0012, 0.0011, 0.0009], [0.0409, 0.015, 0.0103, 0.0103, 0.0097, 0.0076, 0.0076, 0.0076], [0.0769, 0.0529, 0.0412, 0.0098, 0.0067, 0.0046, 0.0032, 0.0028], [0.4446, 0.0602, 0.0118, 0.0105, 0.0087, 0.0056, 0.0056, 0.0053], [0.0521, 0.0149, 0.0103, 0.0075, 0.0043, 0.004, 0.004, 0.0031], [0.7324, 0.0098, 0.0098, 0.0034, 0.003, 0.0019, 0.0017, 0.0017], [0.2854, 0.0598, 0.0133, 0.0017, 0.0014, 0.0011, 0.001, 0.0009], [0.8964, 0.0254, 0.005, 0.0011, 0.0007, 0.0004, 0.0004, 0.0003], [0.0027, 0.0014, 0.0014, 0.0013, 0.0013, 0.0013, 0.0012, 0.0012], [0.0014, 0.0014, 0.0013, 0.0013, 0.0012, 0.0012, 0.0011, 0.0011], [0.0016, 0.0015, 0.0014, 0.0013, 0.0013, 0.0013, 0.001, 0.001], [0.0053, 0.0039, 0.0036, 0.0032, 0.0025, 0.0023, 0.0018, 0.0017], [0.0076, 0.0038, 0.0038, 0.0028, 0.0028, 0.0025, 0.002, 0.002], [0.0124, 0.011, 0.0066, 0.0049, 0.0043, 0.004, 0.004, 0.0036], [0.0121, 0.0088, 0.0047, 0.0039, 0.0032, 0.0027, 0.0025, 0.0022], [0.0142, 0.0071, 0.0056, 0.0056, 0.0043, 0.0043, 0.0043, 0.0034], [0.0224, 0.0099, 0.0088, 0.006, 0.005, 0.005, 0.0047, 0.0047], [0.2379, 0.0565, 0.0152, 0.0098, 0.0098, 0.0087, 0.0081, 0.0076], [0.0039, 0.0035, 0.0033, 0.0027, 0.0019, 0.0019, 0.0019, 0.0016], [0.0091, 0.0059, 0.0055, 0.0052, 0.0049, 0.0036, 0.0033, 0.0026], [0.0181, 0.0091, 0.0075, 0.0059, 0.0049, 0.0046, 0.0046, 0.0043], [0.0077, 0.0049, 0.0041, 0.003, 0.0025, 0.0025, 0.0021, 0.0021], [0.0053, 0.0041, 0.0039, 0.003, 0.003, 0.0025, 0.0024, 0.0022], [0.0063, 0.0056, 0.0038, 0.0034, 0.0028, 0.0025, 0.0025, 0.0025], [0.0207, 0.0142, 0.0134, 0.0098, 0.0098, 0.0092, 0.0063, 0.0052], [0.0142, 0.0125, 0.0111, 0.0098, 0.0098, 0.0092, 0.0063, 0.0056], [0.0146, 0.0101, 0.0101, 0.0083, 0.0078, 0.0078, 0.0074, 0.0069], [0.0331, 0.0274, 0.0257, 0.0242, 0.0213, 0.0177, 0.0138, 0.0138], [0.0558, 0.0383, 0.0338, 0.0299, 0.0218, 0.0218, 0.0205, 0.0193], [0.028, 0.0263, 0.0218, 0.0218, 0.0205, 0.017, 0.016, 0.016], [0.0472, 0.0324, 0.0286, 0.0237, 0.0209, 0.0163, 0.0153, 0.0144], [0.111, 0.0318, 0.0181, 0.015, 0.0117, 0.0103, 0.0103, 0.0091], [0.189, 0.095, 0.0576, 0.0542, 0.0146, 0.0137, 0.0107, 0.01], [0.1645, 0.0937, 0.0777, 0.0569, 0.0534, 0.0173, 0.0163, 0.0105], [0.1937, 0.1332, 0.0432, 0.0316, 0.018, 0.0149, 0.0124, 0.0091], [0.2267, 0.2267, 0.0506, 0.0288, 0.0254, 0.0239, 0.0198, 0.0154], [0.5375, 0.0727, 0.0344, 0.0344, 0.0285, 0.0196, 0.0184, 0.0173], [0.4933, 0.1101, 0.0431, 0.0261, 0.0231, 0.0169, 0.0159, 0.0149], [0.7184, 0.0316, 0.0316, 0.0279, 0.0191, 0.0149, 0.0116, 0.0102], [0.5765, 0.0536, 0.0418, 0.0369, 0.0325, 0.0224, 0.0164, 0.0154], [0.7441, 0.0198, 0.0198, 0.0175, 0.0175, 0.0175, 0.0154, 0.0106], [0.7947, 0.0165, 0.0146, 0.0113, 0.01, 0.01, 0.0078, 0.0078], [0.8825, 0.0087, 0.0087, 0.0076, 0.0067, 0.0059, 0.0059, 0.0052], [0.7996, 0.0177, 0.0121, 0.0101, 0.0083, 0.0069, 0.0061, 0.0061], [0.877, 0.0142, 0.0125, 0.0076, 0.0076, 0.0067, 0.0046, 0.0041], [0.6843, 0.0386, 0.0386, 0.0194, 0.0171, 0.0171, 0.0133, 0.0125], [0.5479, 0.1079, 0.0578, 0.0397, 0.0273, 0.0187, 0.0165, 0.0155], [0.3484, 0.1646, 0.1282, 0.0777, 0.0605, 0.0223, 0.0135, 0.0127], [0.4401, 0.2356, 0.1113, 0.0867, 0.0193, 0.0193, 0.0133, 0.0081], [0.6744, 0.1932, 0.0431, 0.038, 0.0109, 0.0075, 0.0045, 0.0045], [0.7283, 0.1625, 0.0363, 0.032, 0.0104, 0.0049, 0.0038, 0.0034], [0.7963, 0.1384, 0.0272, 0.0114, 0.0078, 0.0037, 0.0025, 0.002], [0.8469, 0.0893, 0.0176, 0.0155, 0.0137, 0.0044, 0.0031, 0.0014], [0.8074, 0.0964, 0.0244, 0.019, 0.019, 0.0062, 0.0062, 0.0054], [0.8417, 0.0887, 0.0198, 0.0154, 0.0106, 0.0057, 0.0057, 0.003], [0.8601, 0.0706, 0.0179, 0.0158, 0.0123, 0.0074, 0.0058, 0.0027], [0.9441, 0.0153, 0.0093, 0.0044, 0.0039, 0.0034, 0.0034, 0.0021], [0.8516, 0.0792, 0.0177, 0.0074, 0.0065, 0.0045, 0.0045, 0.0035], [0.9094, 0.04, 0.013, 0.0054, 0.0048, 0.0048, 0.0023, 0.0021], [0.4236, 0.2267, 0.0945, 0.0506, 0.0419, 0.0307, 0.0164, 0.0106]], "ranks": {}}, {"pos": 426, "top": [[".", ",", "o", "\u2026.", "\u00a0", "\u2013", "\u2026", "\u2026.."], ["\u2011", "\u2013", "s", ",", "  \r\n", " \u2013", "\u2026", "\u00ad"], [",", "\u2013", "\u2026", ".", "\u2026.", "\u2026..", ".\u2013", ";"], ["aient", "eits", "\u5404\u79cd\u5404\u6837\u7684", "sache", "\uff0a\uff0a\uff0a\uff0a", "sium", "svar", " **\u201c"], ["s", "o", " \u201c.", " \u200b\u200b", ".\u201d", "\u2019.", "ed", ".\u2019"], ["s", " \u200b\u200b", " \u201c.", "!\u2019", "\u2019.", "o", "\u00a0", " **\u201c"], ["s", "\u2019**", ".\u2019", " **\u201c", "!\u2019", "\u00a0", ".\u201d", "\u2019."], ["s", " **\u201c", " **.", "\u2019**", " \u200b\u200b", "limited", "\u0441\u044c", "restricted"], ["\u00a0", " \u200b\u200b", "s", ".\u201d", "!\u2019", "!\u201d.", "!\u201d", "\u2019."], ["\u00a0", "s", "Limited", "limited", ",", " Limited", "o", " resources"], ["\u00a0", "s", "o", " access", " resources", "-focused", "&nbsp", " expertise"], [" resources", " access", " capabilities", " **", " expertise", " constraints", "eits", " showcasing"], [" resources", " access", " expertise", " capabilities", " constraints", " opportunities", " scope", "eits"], [" resources", " expertise", " access", " capabilities", " constraints", " opportunities", " impactful", " restrictions"], [" resources", " access", " expertise", " opportunities", " capabilities", " impact", " scope", " availability"], [" resources", " expertise", " access", " showcasing", " opportunities", " capabilities", " impact", " impactful"], [" resources", " access", " expertise", " capabilities", " opportunities", " showcasing", " scope", " impact"], [" resources", " expertise", " capabilities", " access", " opportunities", " showcasing", " scope", " showcase"], [" resources", " expertise", " access", " opportunities", " capabilities", " constraints", " scope", " capacities"], [" resources", " access", " opportunities", " expertise", " scope", " capabilities", " capacities", " availability"], ["<|endoftext|>", " resources", " access", " opportunities", "<|file_sep|>", " showcasing", " expertise", " capabilities"], [" resources", " expertise", " capacities", " capabilities", "edik", " access", " impactful", "oader"], [" resources", " access", " capabilities", " capacities", " expertise", "\u53d1\u5c55\u7a7a\u95f4", " availability", " capacity"], [" resources", " access", " capacity", " capacities", " capabilities", "\u53d1\u5c55\u7a7a\u95f4", " space", " resource"], [" resources", " capacities", " capabilities", " capacity", " access", "\u53d1\u5c55\u7a7a\u95f4", " availability", "resources"], [" resources", " capabilities", " capacities", " hardware", " capacity", " infrastructure", " bandwidth", " firepower"], [" resources", " capacities", " capabilities", " hardware", " infrastructure", " capacity", " bandwidth", " budgets"], [" resources", " capacity", " capacities", " hardware", " capabilities", " \n\n", " infrastructure", " space"], [" resources", " capacity", " hardware", " capacities", " capabilities", " infrastructure", " bandwidth", " budgets"], [" resources", " capacities", " capacity", " hardware", " infrastructure", " bandwidth", " budgets", " capabilities"], [" resources", " capacity", " budgets", " bandwidth", " infrastructure", " hardware", " capacities", " technology"], [" resources", " capacity", " technology", " access", " infrastructure", " hardware", " budgets", " capabilities"], [" resources", " capacity", " budgets", " hardware", " infrastructure", " technology", " capacities", " bandwidth"], [" resources", " hardware", " budgets", " infrastructure", " bandwidth", " capacity", " capacities", " budget"], [" resources", " budgets", " hardware", " capacity", " infrastructure", " budget", " bandwidth", " capacities"], [" hardware", " resources", " budgets", " capacity", " bandwidth", "limited", " firepower", " overclock"], [" hardware", " limited", " resources", " overclock", " budgets", " capacity", " bandwidth", "limited"], [" hardware", " resources", " limited", " capacity", " overclock", " budgets", " bandwidth", " technology"], [" hardware", " resources", " capacity", " CPU", " limited", " overclock", "\u6709\u9650\u7684", " bandwidth"], [" resources", " capacity", " CPU", " limited", "\u6709\u9650\u7684", " hardware", " bandwidth", " memory"], [" resources", " memory", " capacity", " CPU", "\u6709\u9650\u7684", " limited", " hardware", " capacities"], [" capacity", " resources", " memory", " limited", " capacities", " CPU", " hardware", " bandwidth"], [" capacity", " resources", " capacities", " memory", " CPU", " limited", " bandwidth", " hardware"], [" capacity", " resources", " CPU", " capacities", " limited", " memory", " bandwidth", " hardware"], [" capacity", " resources", " capacities", " bandwidth", " limited", " CPU", " budgets", " hardware"], [" capacity", " limited", " resources", " capacities", " CPU", " budgets", " bandwidth", " memory"], [" capacity", " resources", " limited", " bandwidth", " CPU", " capacities", " budgets", " memory"], [" capacity", " resources", " limited", " CPU", " bandwidth", " budgets", " capacities", " memory"], [" capacity", " bandwidth", " CPU", " resources", " budgets", " capacities", " limited", " hardware"], [" bandwidth", " CPU", " budgets", " resources", " CPUs", " capacity", " GPU", " hardware"], [" bandwidth", " CPU", " budgets", " CPUs", "\u7b97\u529b", " resources", "_cpu", "resources"], [" CPU", "CPU", " CPUs", " bandwidth", "_cpu", " GPU", "cpu", "/cpu"], [" CPU", " RAM", "CPU", " memory", "RAM", " CPUs", "memory", "\u5185\u5b58"], [" CPU", " RAM", " memory", "CPU", "RAM", "memory", " cpu", " CPUs"], [" CPU", " RAM", " memory", "CPU", "\u5185\u5b58", "RAM", " cpu", "memory"], [" CPU", " RAM", " memory", "\u5185\u5b58", "CPU", "RAM", "memory", " cpu"], [" CPU", " RAM", "CPU", "RAM", " memory", "cpu", " GPU", " cpu"], [" CPU", " RAM", "CPU", " GPU", "RAM", "cpu", " CPUs", " cpu"], [" RAM", " CPU", "RAM", "CPU", " GPU", " memory", " CPUs", " cpu"], [" CPU", " RAM", "RAM", "CPU", " memory", " GPU", " cpu", " CPUs"], [" CPU", " RAM", "RAM", " memory", " GPU", "CPU", " CPUs", " thermal"], [" RAM", " CPU", "RAM", " GPU", " memory", " thermal", " CPUs", "CPU"], [" CPU", " RAM", " thermal", " GPU", " CPUs", " memory", "CPU", " heap"]], "p": [[0.3906, 0.3447, 0.0872, 0.0321, 0.0321, 0.0283, 0.0235, 0.0072], [0.5342, 0.1351, 0.0266, 0.022, 0.0059, 0.0049, 0.0049, 0.0043], [0.3672, 0.2227, 0.1734, 0.0819, 0.0819, 0.0301, 0.0067, 0.0052], [0.0062, 0.0052, 0.0045, 0.004, 0.004, 0.0035, 0.0033, 0.0033], [0.6235, 0.0227, 0.0166, 0.0138, 0.0107, 0.0078, 0.0078, 0.0057], [0.1282, 0.0645, 0.0105, 0.0099, 0.0093, 0.0082, 0.0072, 0.0072], [0.4617, 0.0334, 0.0277, 0.023, 0.0203, 0.0168, 0.0131, 0.0102], [0.118, 0.016, 0.016, 0.0103, 0.0091, 0.0085, 0.0071, 0.0067], [0.3071, 0.1061, 0.0776, 0.0367, 0.0252, 0.0222, 0.0184, 0.0163], [0.1028, 0.0623, 0.0079, 0.0051, 0.0051, 0.0045, 0.0045, 0.0045], [0.2975, 0.1094, 0.0707, 0.0179, 0.0139, 0.0045, 0.0045, 0.0045], [0.0306, 0.0154, 0.012, 0.0106, 0.0093, 0.0064, 0.006, 0.0037], [0.0248, 0.0193, 0.0141, 0.0125, 0.0055, 0.0046, 0.0043, 0.0038], [0.0235, 0.0134, 0.0111, 0.0067, 0.0056, 0.0056, 0.003, 0.0028], [0.0394, 0.0348, 0.0154, 0.0113, 0.0064, 0.0047, 0.0044, 0.0037], [0.0211, 0.0136, 0.012, 0.0099, 0.0064, 0.006, 0.005, 0.0044], [0.0523, 0.0247, 0.017, 0.0124, 0.0097, 0.008, 0.0066, 0.0049], [0.0172, 0.0081, 0.006, 0.0041, 0.0038, 0.0036, 0.0026, 0.0022], [0.0161, 0.0049, 0.0046, 0.0041, 0.0034, 0.003, 0.0028, 0.0023], [0.0189, 0.0079, 0.0061, 0.0054, 0.0045, 0.0042, 0.0037, 0.0035], [0.3188, 0.0116, 0.0052, 0.0033, 0.0031, 0.0029, 0.0029, 0.002], [0.0111, 0.0043, 0.003, 0.0025, 0.0025, 0.0025, 0.0023, 0.0022], [0.0238, 0.0082, 0.0044, 0.0044, 0.0041, 0.0037, 0.0034, 0.0032], [0.0273, 0.0083, 0.0045, 0.0045, 0.0039, 0.0035, 0.0029, 0.0027], [0.0253, 0.0053, 0.0053, 0.0053, 0.0036, 0.0034, 0.0025, 0.0023], [0.0397, 0.0166, 0.0146, 0.0073, 0.0073, 0.0051, 0.0042, 0.0031], [0.0406, 0.0159, 0.015, 0.0124, 0.0091, 0.0085, 0.008, 0.0066], [0.0563, 0.0207, 0.0126, 0.0118, 0.0111, 0.0063, 0.0059, 0.0059], [0.1072, 0.0327, 0.0271, 0.0255, 0.0211, 0.0211, 0.0128, 0.0106], [0.1167, 0.0356, 0.0356, 0.0314, 0.0314, 0.0277, 0.0245, 0.023], [0.2401, 0.0732, 0.0444, 0.0392, 0.0392, 0.0325, 0.0287, 0.0269], [0.2157, 0.0845, 0.0452, 0.0311, 0.0292, 0.0258, 0.0227, 0.0214], [0.1989, 0.0607, 0.0417, 0.0346, 0.0305, 0.0287, 0.021, 0.0185], [0.0757, 0.0627, 0.0589, 0.0459, 0.0336, 0.0315, 0.0204, 0.018], [0.0851, 0.0622, 0.0485, 0.0378, 0.0244, 0.0202, 0.0168, 0.013], [0.1151, 0.048, 0.0424, 0.0273, 0.02, 0.0188, 0.0146, 0.0146], [0.2511, 0.0596, 0.0465, 0.0385, 0.0282, 0.0234, 0.0219, 0.0206], [0.2744, 0.0652, 0.0421, 0.0395, 0.0225, 0.0145, 0.0137, 0.0137], [0.4537, 0.0893, 0.0741, 0.0614, 0.0256, 0.0165, 0.0129, 0.0121], [0.2259, 0.137, 0.1067, 0.0831, 0.0571, 0.0504, 0.0393, 0.0369], [0.2306, 0.2035, 0.2035, 0.0749, 0.0243, 0.0243, 0.0214, 0.0189], [0.4997, 0.0868, 0.0766, 0.0676, 0.041, 0.0319, 0.0249, 0.0171], [0.494, 0.1102, 0.059, 0.0405, 0.0358, 0.0316, 0.0279, 0.0279], [0.478, 0.1067, 0.0445, 0.0445, 0.0445, 0.0346, 0.027, 0.021], [0.4101, 0.1509, 0.0713, 0.0555, 0.0555, 0.0297, 0.0297, 0.0204], [0.3128, 0.1674, 0.1016, 0.0544, 0.048, 0.0423, 0.0374, 0.02], [0.2123, 0.1654, 0.1459, 0.0781, 0.0608, 0.0418, 0.0418, 0.021], [0.2268, 0.2268, 0.0946, 0.0834, 0.0736, 0.065, 0.0307, 0.0136], [0.1451, 0.1281, 0.1281, 0.113, 0.0997, 0.0345, 0.0268, 0.0237], [0.1644, 0.0997, 0.0729, 0.0345, 0.0286, 0.0286, 0.0105, 0.0105], [0.1153, 0.0956, 0.048, 0.0398, 0.0188, 0.0138, 0.0129, 0.0121], [0.6936, 0.0645, 0.0569, 0.0305, 0.0209, 0.0135, 0.0105, 0.0064], [0.6135, 0.2257, 0.0238, 0.021, 0.0185, 0.0112, 0.0099, 0.0088], [0.7383, 0.1867, 0.0135, 0.0135, 0.0072, 0.005, 0.0039, 0.0034], [0.8194, 0.1257, 0.0193, 0.0117, 0.0043, 0.0038, 0.003, 0.003], [0.6983, 0.2267, 0.0394, 0.0078, 0.0078, 0.0047, 0.0047, 0.0015], [0.8251, 0.1434, 0.0104, 0.0056, 0.0038, 0.002, 0.002, 0.002], [0.9437, 0.0251, 0.0173, 0.0082, 0.0018, 0.001, 0.0009, 0.0009], [0.7472, 0.2141, 0.0328, 0.0021, 0.0013, 0.0011, 0.0003, 0.0002], [0.5828, 0.4006, 0.0107, 0.0021, 0.0021, 0.0008, 0.0003, 0.0002], [0.6473, 0.3465, 0.0026, 0.0011, 0.001, 0.0007, 0.0004, 0.0001], [0.6471, 0.3464, 0.003, 0.0011, 0.0009, 0.0006, 0.0004, 0.0002], [0.9086, 0.0746, 0.0089, 0.0048, 0.0011, 0.0007, 0.0002, 0.0001]], "ranks": {}}, {"pos": 427, "top": [["s", " \u2013", "er", ".", "a", "\u2013", ".\u2013", " [\u2026]"], ["s", " \u2013", " \u2013,", " *\u2013", "**\u2013", "\u2013\u2013", ".\u2013", " **\u2013"], [" \u2013", "s", ".\u2013", "\u2013", " \u2013,", "**\u2013", "\u2013\u2013", "\u2013and"], ["sium", " cumshot", "spra", "eless", " **\u00ab", " ***", " **:", "\uff0a\uff0a\uff0a\uff0a"], ["s", " ***", "\u2013\u2013", " *\u2013", " \"***", " *@", "***", "*\u201d."], ["s", " ***", " \u200b\u200b", "\u76f8\u8f85\u76f8\u6210", " **\u2013", "sium", "!\u201d.", "s\u00e4"], ["s", " ***", " \"***", "***", " \u00bb.", " ......", " *****", " \"&#"], ["s", " ***", " \"***", " \u200b\u200b", " \r\r\n", "sud", " **\u20ac", " \"&#"], ["s", " ***", " \u200b\u200b", "!\u201d.", "*\u201d.", " \"***", " *.", " \r\r\n"], ["s", " ***", "\u4e0d\u53ef\u601d\u8bae", "\u76f8\u8f85\u76f8\u6210", "\u8eab\u4e34\u5176\u5883", "\u52c7\u5f80\u76f4\u524d", "\u2013\u2013", "\u4e8b\u534a\u529f\u500d"], ["s", " ***", " \u200b\u200b", ".\u2013", " **\u2013", "\u2013\u2013", " **.", "."], [" ***", " **\u00ab", " **\u2013", " **\u20ac", " **\u300c", " **.**", "\u4e0d\u53ef\u601d\u8bae", " **."], [" **\u00ab", " ***", " **\u20ac", " Shemale", " **\u300c", " **\u2013", " \u200b\u200b", " \u00bb**"], [" \u200b\u200b", "s", "\u7ad9\u5730\u94c1\u7ad9", "\u52c7\u5f80\u76f4\u524d", "\u76f8\u8f85\u76f8\u6210", "\u4e8b\u534a\u529f\u500d", " **\u00ab", " Shemale"], ["s", "\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", "OMEM", "\u76f8\u8f85\u76f8\u6210", "\u52c7\u5f80\u76f4\u524d", " \u200b\u200b", "\u2013\u2013"], ["s", " \u200b\u200b", "\u4e0d\u53ef\u601d\u8bae", "OMEM", "\u7ad9\u5730\u94c1\u7ad9", "\u8eab\u4e34\u5176\u5883", "\u52c7\u5f80\u76f4\u524d", "\u76f8\u8f85\u76f8\u6210"], ["s", " \u200b\u200b", " ***", "\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", " \u2013", "OMEM", "edics"], [" \u200b\u200b", "s", " ***", ".\u2013", " **\u2013", "\u4e0d\u53ef\u601d\u8bae", "OMEM", " *\u2013"], [" \u200b\u200b", "s", "OMEM", " ***", " **\u2013", "\u4e0d\u53ef\u601d\u8bae", " *\u2013", "**\u2013"], ["s", " \u200b\u200b", " \u2013,", " \u2013", "\u4e0d\u53ef\u601d\u8bae", "OMEM", "\u2013\u2013", " **\u2013"], ["<|endoftext|>", "s", " and", ",", " \u2013", " &#", " [\u2026]", " ,"], ["OMEM", " ***", "\u4e0d\u53ef\u601d\u8bae", " \u2013,", " \u00bb,", "\u548c\u4fe1\u606f\u5316", "edik", "s"], [" ,", " &#", " ***", " and", "&nbsp", " $$$", " [[", " \u2013"], [" ,", " and", "<|endoftext|>", " &#", " &", " \u2013", " [[", "&nbsp"], [" \r\n\r\n", " \n\n", "&nbsp", " ***", " \n  \n", " \r\n", " $$$", " &#"], [" ***", " **,", " ****", " **", " **:", " **+", " \n  \n", " **."], [" **,", " ***", " **:", "OMEM", "/memory", " *__", " **\u20ac", " !***"], [" ,", " and", " \n\n", " **", " ***", " **,", " ___", " ****"], [" **,", " **:", " ***", " **.", " **\u20ac", " **.**", " ****", " **)"], [" **.", " **,", " **.**", " **:", " **\u20ac", " **", " .**", " ***"], [" **,", " **.", " **.**", " .**", " **\u20ac", " **:", " **", " memory"], [" **,", " **.", " **", " ***", " and", " .**", " **.**", " memory"], [" and", " **,", " memory", " **.", " **", " storage", " (**", " billions"], [" and", "-budget", " **,", " memory", " **\u2013", " budget", " budgets", " storage"], [" and", " **,", " (**", "/memory", "-budget", "\u2014and", " memory", " disproportionately"], [" and", "/memory", " memory", " overclock", "\u2014and", " **,", "-budget", " **\u2014"], ["/memory", " memory", " overclock", "-budget", " and", " RAM", " budget", "(memory"], ["/memory", " memory", " overclock", " RAM", "(memory", " Memory", "-budget", "-memory"], [" memory", "/memory", " RAM", " overclock", "(memory", " Memory", "-memory", "-budget"], [" memory", "/memory", "(memory", " Memory", "-memory", " RAM", " MEMORY", "memory"], [" memory", "/memory", "(memory", "-memory", " Memory", " MEMORY", "\u5185\u5b58", "memory"], [" memory", "/memory", "-memory", "(memory", " Memory", " RAM", "\u5185\u5b58", "memory"], [" memory", "/memory", "-memory", " limited", " budgets", " storage", " capacity", "(memory"], [" memory", "/memory", " limited", "-memory", " budgets", " capacity", "\u6709\u9650\u7684", " storage"], [" memory", " budgets", " limited", "/memory", " storage", " capacity", " budget", " bandwidth"], [" limited", " memory", " budgets", "/memory", " limits", " capacity", " budget", " storage"], [" limited", " memory", " budgets", " (~", " limits", " and", " cramped", " capacity"], [" and", " (~", " limited", " memory", " budgets", " (<", " limits", " capacity"], [" and", " (~", " (<", " budgets", " memory", "/memory", " limited", " (\u00a3"], [" and", " (~", " (<", " (\u00a3", " budgets", "/memory", " limited", " \u0438"], [" (~", " and", " (<", " (\u00a3", " (>", " limited", " \u0438", " v\u00e0"], [" (~", " and", " (<", " (>", "(~", " (\u00a3", " \u0438", " v\u00e0"], [" (~", " (<", " and", "(~", " (>", " RAM", " memory", "/memory"], [" (~", " (<", " RAM", " memory", "(~", "-memory", "RAM", "/memory"], [" (~", " RAM", " (<", "RAM", " memory", "/memory", "-memory", " CPU"], [" (~", " (<", " memory", " RAM", "-memory", "/memory", " CPU", "RAM"], [" (~", " memory", " CPU", " RAM", "/memory", "RAM", "-memory", "/cpu"], [" CPU", " (~", " bandwidth", "/cpu", "CPU", " memory", " RAM", "/memory"], [" CPU", " (~", " bandwidth", " (<", "CPU", "/cpu", "_cpu", " RAM"], [" bandwidth", " CPU", "\u5e26\u5bbd", " (~", "-band", " (<", "CPU", "/cpu"], [" bandwidth", " (~", " CPU", " thermal", " (<", "\u5e26\u5bbd", " and", "-band"], [" bandwidth", " (<", " (~", " and", " CPU", " thermal", "\u5e26\u5bbd", "-band"], [" and", " bandwidth", " (<", " CPU", " (~", " thermal", "/C", " CPUs"]], "p": [[0.991, 0.0059, 0.0006, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001], [0.9864, 0.0066, 0.0024, 0.0007, 0.0007, 0.0007, 0.0001, 0.0001], [0.501, 0.3902, 0.0363, 0.032, 0.0249, 0.0056, 0.0049, 0.0018], [0.0412, 0.0172, 0.0172, 0.0142, 0.0134, 0.0126, 0.0098, 0.0092], [0.9732, 0.0178, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.9816, 0.0019, 0.0011, 0.0005, 0.0005, 0.0004, 0.0004, 0.0003], [0.5478, 0.3765, 0.0024, 0.002, 0.0017, 0.0015, 0.0014, 0.0012], [0.4415, 0.4415, 0.0032, 0.0025, 0.0022, 0.002, 0.0018, 0.0015], [0.5093, 0.3501, 0.0326, 0.0082, 0.005, 0.0028, 0.0022, 0.0017], [0.8214, 0.0141, 0.0141, 0.0103, 0.0086, 0.0071, 0.004, 0.0038], [0.4057, 0.2461, 0.1916, 0.009, 0.0079, 0.0035, 0.0026, 0.0024], [0.3017, 0.0408, 0.0141, 0.0133, 0.0086, 0.0049, 0.0049, 0.0043], [0.0772, 0.0302, 0.0098, 0.0087, 0.0081, 0.0067, 0.0067, 0.0067], [0.0106, 0.0082, 0.0057, 0.0041, 0.0041, 0.0037, 0.003, 0.003], [0.1053, 0.0104, 0.0059, 0.0049, 0.0041, 0.0036, 0.0034, 0.0026], [0.1512, 0.0247, 0.0052, 0.0046, 0.0029, 0.0029, 0.0028, 0.0026], [0.5843, 0.0374, 0.0037, 0.0022, 0.0014, 0.0012, 0.0011, 0.0011], [0.4197, 0.113, 0.006, 0.0056, 0.0053, 0.0032, 0.0025, 0.0022], [0.1509, 0.0297, 0.0192, 0.0055, 0.0052, 0.0052, 0.0035, 0.0029], [0.062, 0.0189, 0.0108, 0.0089, 0.0084, 0.0074, 0.0074, 0.0051], [0.4945, 0.046, 0.0103, 0.0103, 0.0075, 0.0062, 0.0055, 0.0048], [0.0073, 0.0047, 0.0045, 0.0031, 0.0031, 0.0027, 0.0022, 0.0016], [0.0157, 0.0115, 0.0108, 0.0108, 0.0084, 0.0079, 0.0079, 0.0079], [0.0639, 0.0235, 0.0221, 0.0207, 0.0126, 0.0118, 0.0118, 0.0092], [0.0782, 0.0393, 0.0288, 0.0198, 0.0175, 0.0128, 0.0128, 0.012], [0.1304, 0.0423, 0.0291, 0.0291, 0.0114, 0.0114, 0.0101, 0.0101], [0.0146, 0.0114, 0.0069, 0.0069, 0.0057, 0.0054, 0.0051, 0.0047], [0.0399, 0.0311, 0.0201, 0.0189, 0.0177, 0.0108, 0.0084, 0.0074], [0.098, 0.0463, 0.0463, 0.0435, 0.0299, 0.0299, 0.0264, 0.017], [0.1291, 0.1291, 0.0691, 0.061, 0.0271, 0.0198, 0.0186, 0.0186], [0.2281, 0.2281, 0.0696, 0.0256, 0.0176, 0.0176, 0.0165, 0.0121], [0.164, 0.1059, 0.0389, 0.0303, 0.0303, 0.0236, 0.0222, 0.0173], [0.0814, 0.0525, 0.0182, 0.0133, 0.011, 0.0097, 0.0091, 0.0091], [0.047, 0.0143, 0.0135, 0.0099, 0.0077, 0.0072, 0.0068, 0.0068], [0.1148, 0.0241, 0.0165, 0.0094, 0.0083, 0.0083, 0.0073, 0.0073], [0.1665, 0.0225, 0.0199, 0.0165, 0.0155, 0.0145, 0.0078, 0.0069], [0.0703, 0.0583, 0.0376, 0.0332, 0.0201, 0.0178, 0.013, 0.0122], [0.1387, 0.1387, 0.0373, 0.0273, 0.0213, 0.0188, 0.0156, 0.0137], [0.1826, 0.1422, 0.0338, 0.0317, 0.0181, 0.017, 0.016, 0.015], [0.4615, 0.1698, 0.0314, 0.0277, 0.026, 0.0216, 0.0216, 0.0168], [0.5135, 0.2141, 0.0372, 0.0328, 0.0328, 0.0226, 0.0199, 0.0199], [0.4462, 0.2108, 0.0684, 0.0285, 0.0252, 0.0196, 0.0153, 0.0127], [0.2889, 0.1547, 0.0645, 0.0345, 0.0305, 0.0286, 0.0269, 0.0223], [0.2321, 0.1096, 0.0587, 0.0486, 0.0379, 0.0334, 0.0295, 0.026], [0.1234, 0.0848, 0.0748, 0.0661, 0.0514, 0.0376, 0.0332, 0.0259], [0.2637, 0.1246, 0.0756, 0.0488, 0.0315, 0.0315, 0.0296, 0.0216], [0.2686, 0.0988, 0.0638, 0.0529, 0.0321, 0.025, 0.022, 0.022], [0.2229, 0.1193, 0.1053, 0.082, 0.0564, 0.0364, 0.0342, 0.0221], [0.7647, 0.1035, 0.0132, 0.0096, 0.009, 0.007, 0.0066, 0.0062], [0.5534, 0.3357, 0.0167, 0.0061, 0.0048, 0.0037, 0.0037, 0.0033], [0.6455, 0.1271, 0.0771, 0.0183, 0.0118, 0.0081, 0.0063, 0.0063], [0.8923, 0.0646, 0.0185, 0.0087, 0.0053, 0.0022, 0.0009, 0.0008], [0.7233, 0.2348, 0.0103, 0.0043, 0.003, 0.003, 0.0023, 0.002], [0.8329, 0.1277, 0.0105, 0.0039, 0.003, 0.003, 0.0027, 0.0021], [0.476, 0.1751, 0.073, 0.0568, 0.0568, 0.0391, 0.0304, 0.0163], [0.7759, 0.0496, 0.0386, 0.0301, 0.0207, 0.0182, 0.0098, 0.0098], [0.4322, 0.1093, 0.1093, 0.0851, 0.0516, 0.0313, 0.0276, 0.0215], [0.4655, 0.1511, 0.1039, 0.0491, 0.0433, 0.0337, 0.0232, 0.018], [0.489, 0.3361, 0.0354, 0.0313, 0.0313, 0.0276, 0.0048, 0.0042], [0.9648, 0.0138, 0.0074, 0.0074, 0.0013, 0.0006, 0.0005, 0.0003], [0.9067, 0.031, 0.0213, 0.0147, 0.0089, 0.0037, 0.0029, 0.0015], [0.7019, 0.095, 0.0653, 0.0576, 0.0349, 0.0165, 0.0047, 0.0029], [0.4403, 0.2357, 0.0867, 0.0526, 0.0464, 0.041, 0.03, 0.0091]], "ranks": {}}, {"pos": 428, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", "\u00a0\u00a0", ",."], [" \u2013", "\u2013", ".", "\u2013and", ",", " very", " Very", " \u200b\u200b"], [",", "\u2013", ".", " \u2013", "\u2013and", ".\u2013", ";", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " Shemale", "----------</", " ;;^", " Blowjob", " Strec"], ["\u52a0\u62ff\u5927\u7684", ".@", "\u65b0\u52a0\u5761", " \u041a\u0440\u0430\u0441\u0438", "\ub370\ubbf8", " \"@", "\uff20", ":@"], [".", "<|quad_end|>", "\u65b0\u52a0\u5761", ",", "\u82b7", "!.", ":href", " \u0628\u0648\u062a\u064a\u0646"], ["\uff0e", ".", "\uff01", ".\u2019", "enje", "**!", " **\u2018", " **."], [" **\u20ac", "STANCE", "\u52a0\u52d2", "\u4e8b\u534a\u529f\u500d", "elaide", "sburg", "\u5927\u91d1", "\u8033\u719f\u80fd\u8be6"], [".", "!.", ",", "\u00a0", "!\u201d.", "\u52a0\u52d2", "\u5927\u91d1", " \u200b\u200b"], [",", ".", "\u4e8b\u534a\u529f\u500d", "\u52c7\u5f80\u76f4\u524d", "\u8033\u719f\u80fd\u8be6", "\u76f8\u8f85\u76f8\u6210", "\u4e0d\u53ef\u601d\u8bae", "\u0441\u0443\u0434\u0438"], [",", ".", "\u00a0", ";", "-ish", ",.", "\\.", "!."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " leftovers", " **\u20ac", "\u8d44\u91d1\u652f\u6301", " flavours", "erias", "ROID", "ropy"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " leftovers", " hassle", " incentiv", "\u8d44\u91d1\u652f\u6301", " resources", "\u8d22\u529b", " leverage"], [" hassle", " resources", " leftovers", " incentiv", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " savvy", " glitches", " hustle"], [" resources", " savvy", " poorly", " effortlessly", " aggressively", " tough", " tight", " stamina"], [" poorly", " savvy", " resources", " glitches", " scary", " skinny", " influencers", "\u5962\u671b"], [" poorly", " often", " resources", " effortlessly", " cheap", " incredibly", " disproportionately", " savvy"], [" glitches", " effortlessly", " resources", " poorly", " sprawling", " incredibly", " peripherals", " cheap"], [" aggressively", " poorly", " effortlessly", " comfortably", " sprawling", " incredibly", " disproportionately", " strategically"], [" sprawling", " often", " increasingly", " hugely", " largely", " effortlessly", " aggressively", " heavily"], ["<|endoftext|>", "<|file_sep|>", " often", " \n\n", " heavily", " hugely", " largely", " genuinely"], [" ``", " {{--<", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", " hugely", " sprawling", "\u5e38\u5e38\u4f1a", " disproportionately", " effortlessly"], [" ``", " {{--<", " ''", " heavily", " hugely", " often", " sprawling", " arguably"], [" ``", " {{--<", " heavily", " often", " much", " ''", " hugely", " largely"], [" \r\n\r\n", " \n\n", "\r\n\r\n", " {{--<", " \r\n", " hugely", "Whilst", "\r\n\n"], [" {{--<", " \r\n\r\n", " costly", " **", " heavily", " hugely", " sprawling", " MEDIATEK"], [" costly", " {{--<", " sprawling", " \r\n\r\n", " disproportionately", " cramped", " hardware", " pricey"], [" \n\n", "\n\n", " heavily", " \r\n\r\n", "\r\n\r\n", " ,", " often", " much"], [" heavily", " disproportionately", " sprawling", " poorly", " costly", " cramped", " **", " cheap"], [" often", " heavily", " poorly", " disproportionately", " **", " expensive", " complex", " lack"], [" often", " heavily", " high", " complex", " lack", " ,", " much", " expensive"], [" often", " heavily", " even", " high", " much", " ,", " power", " complex"], [" heavily", " often", " high", " even", " limited", " poorly", " expensive", " relatively"], [" heavily", " expensive", " limited", " poorly", " often", " cheap", " costly", " disproportionately"], [" heavily", " notoriously", " expensive", " limited", " often", " disproportionately", " cheap", " costly"], [" limited", " hardware", " notoriously", " slower", " sluggish", " expensive", " often", " increasingly"], [" hardware", " limited", " notoriously", " slower", " faster", " overclock", " sluggish", " expensive"], [" hardware", " limited", " notoriously", " overclock", " slower", " expensive", " complex", " faster"], [" hardware", " CPU", " limited", " overclock", " CPUs", " computational", "_cpu", " engines"], [" CPU", " hardware", " slower", " overclock", " faster", " limited", " CPUs", " computational"], [" CPU", " overclock", " CPUs", " hardware", " cpu", " engines", " engine", " speed"], [" CPU", " hardware", " engines", " CPUs", " engine", " overclock", " horsepower", " power"], [" CPU", " overclock", " hardware", " engines", " CPUs", " engine", " horsepower", " power"], [" CPU", " hardware", " CPUs", " overclock", " engines", " limited", " horsepower", " engine"], [" CPU", " hardware", " limited", " CPUs", " overclock", " engines", " power", " slower"], [" CPU", " limited", " CPUs", " engines", " hardware", " power", " slower", " overclock"], [" limited", " CPU", " CPUs", " engines", " slower", " hardware", " sluggish", " weaker"], [" limited", " CPU", " CPUs", " weaker", " slower", " engines", " hardware", " sluggish"], [" limited", " CPUs", " weaker", " CPU", " slower", " engines", " hardware", " sluggish"], [" weaker", " limited", " sluggish", " slower", " CPUs", "\u8f83\u5f31", " CPU", " engines"], [" weaker", " limited", " sluggish", "\u8f83\u5f31", " CPUs", "limited", " slower", "\u6709\u9650\u7684"], [" CPU", " CPUs", "CPU", " sluggish", " slower", "cpu", " weaker", "_cpu"], [" CPU", " CPUs", "CPU", " weaker", "_cpu", " sluggish", " cpu", "cpu"], [" CPU", " CPUs", "CPU", " cpu", "cpu", "_cpu", "\u7b97\u529b", "/cpu"], [" CPU", "CPU", " CPUs", " cpu", "cpu", "_cpu", "/cpu", " processors"], [" CPU", " CPUs", "CPU", " cpu", "cpu", " processor", "_cpu", "/cpu"], [" CPU", "CPU", " CPUs", " cpu", "cpu", "_CPU", "_cpu", " GPU"], [" CPU", "CPU", " CPUs", " cpu", "cpu", " processor", " GPU", "_CPU"], [" CPU", "CPU", " CPUs", " cpu", "_CPU", "cpu", " GPU", "_cpu"], [" CPU", "CPU", " CPUs", " cpu", "_CPU", "_cpu", " GPU", "cpu"], [" CPU", " thermal", " CPUs", "CPU", "_CPU", " cpu", " GPU", " Thermal"], [" CPU", " thermal", " CPUs", "CPU", " cpu", " weaker", "_CPU", " GPU"], [" CPU", " thermal", " CPUs", "CPU", " aggressive", " GPU", " slower", " weaker"]], "p": [[0.8221, 0.1619, 0.0081, 0.0043, 0.0014, 0.0007, 0.0004, 0.0002], [0.167, 0.0478, 0.0212, 0.0187, 0.0114, 0.0035, 0.0031, 0.0027], [0.424, 0.2572, 0.227, 0.0255, 0.0128, 0.01, 0.006, 0.0039], [0.016, 0.0133, 0.0103, 0.0103, 0.0086, 0.0052, 0.0032, 0.0022], [0.0055, 0.0052, 0.0038, 0.0034, 0.0028, 0.0023, 0.0022, 0.002], [0.0032, 0.003, 0.0026, 0.0021, 0.0021, 0.0018, 0.0017, 0.0016], [0.0091, 0.0076, 0.0059, 0.0046, 0.0038, 0.0034, 0.0034, 0.0034], [0.0072, 0.0038, 0.0032, 0.0032, 0.0028, 0.0019, 0.0018, 0.0018], [0.122, 0.0542, 0.0155, 0.0114, 0.0065, 0.0047, 0.0039, 0.0033], [0.2266, 0.0025, 0.0025, 0.0022, 0.002, 0.0016, 0.0015, 0.0014], [0.5713, 0.2237, 0.0184, 0.0028, 0.0018, 0.0009, 0.0008, 0.0007], [0.0072, 0.0032, 0.0023, 0.0022, 0.0014, 0.0013, 0.0013, 0.0013], [0.0042, 0.0039, 0.0017, 0.0017, 0.0017, 0.0016, 0.0013, 0.0012], [0.0024, 0.0023, 0.002, 0.0017, 0.0017, 0.0016, 0.0014, 0.0014], [0.0046, 0.0046, 0.0033, 0.0022, 0.002, 0.002, 0.0018, 0.0017], [0.0031, 0.0028, 0.0021, 0.0019, 0.0017, 0.0016, 0.0015, 0.0014], [0.0093, 0.0072, 0.005, 0.0034, 0.0032, 0.003, 0.0028, 0.0027], [0.0026, 0.0026, 0.0021, 0.002, 0.0017, 0.0017, 0.0015, 0.0015], [0.0043, 0.0036, 0.003, 0.0028, 0.0028, 0.0026, 0.0025, 0.0025], [0.0075, 0.007, 0.0066, 0.0048, 0.0046, 0.0043, 0.0038, 0.0035], [0.9347, 0.0007, 0.0006, 0.0005, 0.0005, 0.0004, 0.0004, 0.0004], [0.0051, 0.004, 0.0023, 0.0021, 0.0019, 0.0018, 0.0016, 0.0016], [0.0293, 0.0115, 0.007, 0.0035, 0.0033, 0.0033, 0.0024, 0.0021], [0.0121, 0.0094, 0.0057, 0.005, 0.0047, 0.0044, 0.0037, 0.0035], [0.0681, 0.0208, 0.0162, 0.0072, 0.0046, 0.0046, 0.0026, 0.0025], [0.0048, 0.0028, 0.0023, 0.0019, 0.0018, 0.0016, 0.0016, 0.0016], [0.0041, 0.0036, 0.0036, 0.0032, 0.003, 0.0026, 0.0026, 0.0023], [0.0533, 0.0173, 0.0143, 0.0112, 0.0077, 0.0072, 0.006, 0.0056], [0.0134, 0.0126, 0.0072, 0.0068, 0.0049, 0.0049, 0.0046, 0.0044], [0.0175, 0.0154, 0.0128, 0.0113, 0.0093, 0.0077, 0.0077, 0.0073], [0.0442, 0.0222, 0.0173, 0.0144, 0.0135, 0.0127, 0.0127, 0.0127], [0.0323, 0.0252, 0.0252, 0.0236, 0.0162, 0.0162, 0.0135, 0.0127], [0.0381, 0.0217, 0.0169, 0.0132, 0.0124, 0.0109, 0.0102, 0.0102], [0.0465, 0.0234, 0.0194, 0.0182, 0.0171, 0.0151, 0.0118, 0.0097], [0.0308, 0.0308, 0.024, 0.024, 0.0187, 0.0146, 0.0137, 0.0137], [0.1023, 0.0621, 0.0548, 0.0228, 0.0189, 0.0189, 0.0178, 0.0157], [0.1117, 0.1117, 0.0386, 0.0301, 0.0194, 0.0151, 0.0142, 0.0142], [0.155, 0.1456, 0.0223, 0.0144, 0.0127, 0.0105, 0.0105, 0.0099], [0.2786, 0.1799, 0.075, 0.0259, 0.0139, 0.0139, 0.013, 0.009], [0.4043, 0.0583, 0.0483, 0.04, 0.0258, 0.0258, 0.0243, 0.0201], [0.6387, 0.0463, 0.036, 0.036, 0.0233, 0.0233, 0.016, 0.011], [0.4779, 0.0733, 0.0733, 0.0571, 0.0504, 0.0445, 0.0185, 0.0174], [0.3977, 0.0887, 0.0691, 0.0691, 0.0691, 0.0419, 0.0239, 0.0175], [0.4311, 0.0749, 0.0661, 0.0661, 0.0515, 0.0354, 0.0215, 0.0215], [0.2349, 0.0762, 0.0762, 0.0524, 0.0524, 0.0462, 0.0462, 0.0299], [0.2257, 0.2257, 0.0473, 0.0444, 0.0325, 0.0287, 0.0287, 0.0197], [0.2217, 0.2217, 0.0635, 0.0436, 0.041, 0.0319, 0.0206, 0.0171], [0.2862, 0.1532, 0.0724, 0.0639, 0.0497, 0.0497, 0.0195, 0.0152], [0.1958, 0.1188, 0.1048, 0.1048, 0.0437, 0.034, 0.03, 0.0265], [0.156, 0.1294, 0.0835, 0.065, 0.0539, 0.0348, 0.0271, 0.0128], [0.1186, 0.0868, 0.0766, 0.056, 0.041, 0.034, 0.03, 0.0265], [0.4049, 0.2456, 0.0427, 0.0354, 0.0215, 0.0178, 0.0178, 0.0139], [0.6023, 0.2216, 0.0436, 0.0182, 0.0125, 0.0125, 0.0097, 0.0097], [0.8083, 0.0852, 0.0355, 0.0131, 0.009, 0.0079, 0.0048, 0.0048], [0.914, 0.0313, 0.0276, 0.009, 0.0054, 0.0029, 0.0023, 0.0014], [0.9177, 0.0277, 0.0277, 0.0116, 0.0062, 0.0018, 0.0016, 0.0012], [0.934, 0.0362, 0.0104, 0.0081, 0.0049, 0.0016, 0.0016, 0.0007], [0.9382, 0.0412, 0.0081, 0.0034, 0.003, 0.0021, 0.001, 0.0009], [0.9642, 0.0227, 0.0074, 0.0019, 0.0011, 0.001, 0.0005, 0.0005], [0.9836, 0.0096, 0.004, 0.0012, 0.0005, 0.0003, 0.0003, 0.0002], [0.9797, 0.0085, 0.0058, 0.0045, 0.0003, 0.0003, 0.0002, 0.0002], [0.9625, 0.02, 0.0121, 0.0021, 0.0005, 0.0004, 0.0004, 0.0004], [0.947, 0.0416, 0.0064, 0.0013, 0.0007, 0.0005, 0.0003, 0.0003]], "ranks": {}}, {"pos": 429, "top": [[".", ",", "o", "a", "u", " ", ";", "-"], [" \uff3b", "\uff20", "\uff3b", "ed", "en\u00ed", " \ufffd", ",\u201d", "\u3011,"], [",", ".", ",\u201d", "\u2026", "\uff3b", "\u064b", "\u2026\u201d", "\u3011,"], [" Blowjob", "\uff3f\uff3f", " cumshot", "\u3011,\u3010", " Shemale", " \u3010", " \u30fb", " CPU"], [" \u3010", "ed", "\u3000", " \u3011", " CPU", "\uff20", " \uff3b", ",\u201d"], [" \u3011", " \u3010", " \u201d", "ed", "\u3000", " \uff08", " \u201c", " CPU"], [" \u3010", "\u3000", ".\u201d", ",\u201d", " \u201d", " \uff3b", " \u3011", "...\u201d"], ["\u3000", " \u3010", " \uff3b", " \u3011", ".\u201d", " CPU", "...\u201d", ",\u201d"], ["\u3000", "...\u201d", ".\u201d", ",", ".", " \u3010", ",\u201d", " \uff3b"], [",", ".", "\u3000", ",\u201d", ".\u201d", " \u00ad", "\u00adt", " \uff3b"], [",", ".", "\u3000", ".\u201d", " [...]", "...\u201d", "...", " \uff3b"], [" CPU", "\u3000", " \u3010", " CPUs", " _____", " \uff3b", "CPU", "/cpu"], [" CPU", " CPUs", "(cpu", "CPU", "_CPU", "_PHP", "/cpu", "-centered"], [" CPU", ",", " CPUs", "(cpu", "_PHP", "-centric", "CPU", ".Java"], [",", " CPU", "ed", "o", ".", " Philly", "(cpu", "\u3000"], [" CPU", "ed", " CPUs", " center", "o", " centered", ",", " power"], [",", " CPU", "o", "ed", "a", " \u201c", " CPUs", " power"], [" CPU", " CPUs", "(cpu", "CPU", "_CPU", "/cpu", "-centric", "cpu"], [" CPU", " CPUs", "(cpu", "_PHP", "_CPU", "\u3011,\u3010", "\u5168\u529b\u6253\u9020", "/cpu"], [" CPU", "(cpu", " {{--<", "\u3011,\u3010", "_CPU", "/cpu", "&nbsp", " CPUs"], ["<|endoftext|>", " CPU", " [...]", " {{--<", "&nbsp", " ...", "...", " \u3010"], [" CPU", " CPUs", "/cpu", "(cpu", " {{--<", "_CPU", "CPU", "tvr"], [" CPU", " {{--<", "CPU", "/cpu", " CPUs", " $$$", "(cpu", " ``"], [" CPU", " {{--<", " power", "CPU", " ,", " hardware", " powering", "_CPU"], [" CPU", "CPU", " {{--<", "/cpu", " CPUs", "(cpu", "_CPU", "cpu"], [" CPU", " CPUs", "/cpu", " overclock", "CPU", "(cpu", "_CPU", "cpu"], [" CPU", " CPUs", " overclock", "/cpu", "CPU", " horsepower", "_CPU", "(cpu"], [" CPU", " CPUs", " ____", " hardware", "/engine", " overclock", " _____", " {{--<"], [" CPU", " CPUs", " overclock", "CPU", " ____", " cpu", "/cpu", " horsepower"], [" CPU", " CPUs", " overclock", " **.", " ____", "CPU", " **\u3010", " .**"], [" CPU", " overclock", " CPUs", " **.", " .**", " engines", " hardware", " ____"], [" CPU", " power", " CPUs", " hardware", " engines", " overclock", " .**", " engine"], [" CPU", " power", " overclock", " hardware", " CPUs", " engines", " powering", " engine"], [" CPU", " overclock", " hardware", " CPUs", " tech", " engines", " powering", " power"], [" CPU", " overclock", " CPUs", " hardware", " tech", "/cpu", " cpu", "/engine"], [" CPU", " overclock", " CPUs", "/cpu", " hardware", "CPU", " cpu", "cpu"], [" CPU", " overclock", " CPUs", "/cpu", " hardware", "CPU", " tech", " cpu"], [" CPU", " overclock", " CPUs", "/cpu", "CPU", " hardware", " cpu", "cpu"], [" CPU", " CPUs", "/cpu", " cpu", "CPU", " overclock", "cpu", "_cpu"], [" CPU", " CPUs", " cpu", "/cpu", "CPU", " overclock", "cpu", "_cpu"], [" CPU", " CPUs", " cpu", "CPU", "/cpu", "cpu", " overclock", "_cpu"], [" CPU", " CPUs", " cpu", "/cpu", " overclock", "CPU", "cpu", "_cpu"], [" CPU", " CPUs", " cpu", " overclock", "/cpu", "CPU", "cpu", "_cpu"], [" CPU", " CPUs", " cpu", " overclock", "CPU", "/cpu", "cpu", " horsepower"], [" CPU", " CPUs", " cpu", " overclock", "/cpu", " capacity", "CPU", "cpu"], [" CPU", " CPUs", " cpu", "/cpu", " capacity", " overclock", " limited", " capacities"], [" CPU", " CPUs", " cpu", "/cpu", " capacity", " overclock", "CPU", " capacities"], [" CPU", " CPUs", " cpu", " capacity", "CPU", "/cpu", " capabilities", " capacities"], [" CPU", " CPUs", "/cpu", " cpu", " capacity", "CPU", " capabilities", " capacities"], [" CPU", " CPUs", "/cpu", " overclock", "CPU", " bandwidth", " cpu", " capacity"], [" CPU", " CPUs", "/cpu", "\u7b97\u529b", " bandwidth", "CPU", "(cpu", " capacity"], [" CPU", "/cpu", "CPU", " bandwidth", " CPUs", "\u7b97\u529b", "(cpu", " cpu"], [" CPU", "CPU", "/cpu", " cpu", " CPUs", " bandwidth", "(cpu", "cpu"], [" CPU", "/cpu", "CPU", " cpu", "\u7b97\u529b", "cpu", " CPUs", " bandwidth"], [" CPU", "CPU", "/cpu", " cpu", "cpu", " CPUs", "(cpu", " processor"], [" CPU", "CPU", "/cpu", " cpu", "cpu", " processor", " CPUs", "(cpu"], [" CPU", "CPU", "/cpu", " cpu", "cpu", " processor", " CPUs", "(cpu"], [" CPU", "CPU", "/cpu", " GPU", " bandwidth", " cpu", " CPUs", "(cpu"], [" head", "head", " heads", "\u5934", " Head", " cycles", "-head", "Head"], [" cores", " head", " cycles", " heads", " bandwidth", "head", " cache", " caches"], [" cycles", " cores", " head", " heads", " thermal", " budgets", " bandwidth", " caches"], [" head", " heads", " cores", " cycles", " thermal", " headers", " bandwidth", "head"], [" head", " cores", " cycles", " thermal", " heads", " threads", " bandwidth", " caches"]], "p": [[0.5713, 0.2873, 0.0726, 0.0126, 0.0041, 0.0036, 0.0028, 0.0025], [0.0799, 0.0516, 0.0313, 0.0202, 0.0139, 0.0122, 0.0074, 0.0062], [0.5238, 0.0588, 0.0245, 0.0085, 0.0075, 0.0066, 0.0066, 0.0058], [0.0153, 0.0068, 0.006, 0.0053, 0.0039, 0.0039, 0.0034, 0.0028], [0.3948, 0.0827, 0.0686, 0.0471, 0.0345, 0.0345, 0.0269, 0.0072], [0.0613, 0.0575, 0.0508, 0.0395, 0.0272, 0.024, 0.0187, 0.0176], [0.3974, 0.2731, 0.0609, 0.0254, 0.0239, 0.0224, 0.0186, 0.0164], [0.3199, 0.3005, 0.0382, 0.0317, 0.017, 0.0124, 0.0103, 0.0097], [0.3744, 0.1073, 0.0785, 0.0539, 0.0447, 0.0348, 0.0289, 0.0255], [0.85, 0.0176, 0.0051, 0.002, 0.0019, 0.0019, 0.0016, 0.0015], [0.4064, 0.3165, 0.0585, 0.019, 0.0148, 0.0123, 0.0084, 0.0074], [0.1373, 0.0224, 0.0154, 0.0136, 0.0113, 0.0077, 0.0077, 0.0068], [0.1571, 0.0166, 0.0054, 0.0054, 0.0033, 0.0033, 0.0031, 0.0029], [0.0851, 0.0139, 0.007, 0.0058, 0.0042, 0.0037, 0.0035, 0.0031], [0.0445, 0.0393, 0.0082, 0.0077, 0.0053, 0.0032, 0.0032, 0.003], [0.036, 0.0091, 0.0046, 0.0038, 0.0031, 0.003, 0.0026, 0.0024], [0.0673, 0.0383, 0.015, 0.0124, 0.0049, 0.0038, 0.0038, 0.0023], [0.0992, 0.0152, 0.0072, 0.0032, 0.0028, 0.0019, 0.0019, 0.0015], [0.0515, 0.0054, 0.0042, 0.0035, 0.0031, 0.0026, 0.002, 0.002], [0.0284, 0.0049, 0.0034, 0.0028, 0.0025, 0.0019, 0.0016, 0.0016], [0.6008, 0.0026, 0.0022, 0.0014, 0.0013, 0.0011, 0.0009, 0.0008], [0.1149, 0.0078, 0.0073, 0.0061, 0.0061, 0.0045, 0.0039, 0.0033], [0.138, 0.0187, 0.0073, 0.0061, 0.0057, 0.0047, 0.0044, 0.0042], [0.0401, 0.0101, 0.0045, 0.0023, 0.0023, 0.002, 0.002, 0.0017], [0.1332, 0.0192, 0.0169, 0.0124, 0.0124, 0.0071, 0.0049, 0.0046], [0.4961, 0.0491, 0.0298, 0.0159, 0.0124, 0.0097, 0.0059, 0.0055], [0.4168, 0.053, 0.0388, 0.0284, 0.0087, 0.0081, 0.0081, 0.0081], [0.3595, 0.0191, 0.0109, 0.0096, 0.0085, 0.0079, 0.0079, 0.0079], [0.6414, 0.056, 0.0362, 0.0219, 0.0097, 0.0081, 0.0076, 0.0071], [0.5027, 0.0639, 0.053, 0.0195, 0.0126, 0.0111, 0.0104, 0.0086], [0.4456, 0.0323, 0.0323, 0.0251, 0.0208, 0.0173, 0.0162, 0.0105], [0.371, 0.0367, 0.0174, 0.0135, 0.0135, 0.0093, 0.0087, 0.0077], [0.2905, 0.0393, 0.0174, 0.0174, 0.0136, 0.0136, 0.0082, 0.0077], [0.3392, 0.0459, 0.0278, 0.0231, 0.0169, 0.0116, 0.0109, 0.0102], [0.4657, 0.1039, 0.0298, 0.0205, 0.017, 0.0159, 0.0075, 0.0062], [0.737, 0.088, 0.0324, 0.0196, 0.0112, 0.0087, 0.0064, 0.0041], [0.7683, 0.1178, 0.0247, 0.0141, 0.0117, 0.008, 0.0031, 0.0029], [0.8937, 0.0347, 0.0197, 0.0093, 0.006, 0.0053, 0.005, 0.0022], [0.9471, 0.0173, 0.0093, 0.0064, 0.0056, 0.0056, 0.0021, 0.0013], [0.9443, 0.0153, 0.0105, 0.0093, 0.0082, 0.0039, 0.0034, 0.0013], [0.9514, 0.0197, 0.012, 0.0039, 0.0034, 0.003, 0.0027, 0.0007], [0.9413, 0.0322, 0.0092, 0.0044, 0.003, 0.003, 0.0018, 0.0008], [0.9104, 0.04, 0.0167, 0.0101, 0.0079, 0.0026, 0.0026, 0.0012], [0.9398, 0.025, 0.0134, 0.0063, 0.0044, 0.0023, 0.0016, 0.0007], [0.9209, 0.0278, 0.0169, 0.008, 0.0043, 0.0026, 0.0021, 0.0018], [0.9126, 0.0243, 0.0148, 0.0061, 0.0054, 0.0033, 0.002, 0.0018], [0.8719, 0.0383, 0.0263, 0.0052, 0.0046, 0.004, 0.003, 0.0023], [0.8435, 0.0539, 0.0225, 0.01, 0.0083, 0.0073, 0.0053, 0.0039], [0.8359, 0.0534, 0.0173, 0.0135, 0.0099, 0.0093, 0.0053, 0.0039], [0.6865, 0.0564, 0.0387, 0.0142, 0.0118, 0.0111, 0.0111, 0.0098], [0.5112, 0.0784, 0.0506, 0.042, 0.0327, 0.0271, 0.0128, 0.0128], [0.6533, 0.0689, 0.0689, 0.0369, 0.0287, 0.0224, 0.0154, 0.0154], [0.816, 0.0591, 0.0406, 0.0149, 0.0149, 0.0132, 0.0103, 0.0055], [0.8345, 0.0605, 0.0471, 0.0173, 0.0072, 0.0072, 0.0056, 0.005], [0.894, 0.0572, 0.0238, 0.0145, 0.0047, 0.0022, 0.0015, 0.0005], [0.8845, 0.0565, 0.0236, 0.0162, 0.0077, 0.0028, 0.0025, 0.0017], [0.8622, 0.0708, 0.026, 0.0158, 0.0085, 0.004, 0.0035, 0.0031], [0.7321, 0.0772, 0.0468, 0.0251, 0.0195, 0.0104, 0.0104, 0.0092], [0.8088, 0.0456, 0.0403, 0.0216, 0.0131, 0.0131, 0.009, 0.0079], [0.5897, 0.3156, 0.0229, 0.0157, 0.0095, 0.0084, 0.0045, 0.004], [0.6462, 0.2098, 0.0875, 0.0134, 0.0081, 0.0063, 0.0049, 0.0038], [0.6391, 0.1426, 0.1258, 0.0409, 0.0103, 0.0055, 0.0043, 0.0034], [0.5679, 0.1844, 0.0987, 0.0528, 0.0283, 0.0125, 0.0071, 0.0052]], "ranks": {}}, {"pos": 430, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", ";", " ", "\u2013and"], ["\u2013and", "\u2013", " \u2013", "sville", "iness", "sWith", "kids", "less"], ["\u2013", ".\u2013", "\u2013and", ",", " \u2013", "\u2018s", ".", "sville"], ["runner", "liner", " Hidal", "sville", "lessly", "sWith", " Blowjob", "lessness"], [" \u2018", "fulness", "lessness", "runner", "lessly", "liner", "iness", "\u2018"], ["fulness", "arity", "iness", "caps", "sWith", "bed", "lessness", "runner"], ["edly", "ings", " \u2018", "fulness", "lessly", "worm", "ting", "\u2018"], ["edly", "iness", "fulness", "lessly", "manship", "ings", "sville", "lessness"], ["fulness", "iness", "edly", "lessly", "manship", "ings", "sville", "lessness"], ["iness", "edly", "fulness", "lessly", "\u0275", "manship", "\u06be\u06cc", "worm"], ["fulness", "lessly", "manship", "iness", "lessness", "gear", "mate", "\u0275"], ["lessly", "lessness", "fulness", "iness", "\u0275", "sville", "istry", "stuff"], ["lessness", "lessly", "fulness", "erness", "iness", "\u0275", "iveness", "ularity"], ["lessness", "lessly", "\u0275", "fulness", "erness", "ularity", "\u653e\u77e2", "mate"], ["lessly", "fulness", "\u0275", "edly", "lessness", "mate", "mind", "manship"], ["schuh", "lessly", "fulness", "stalk", "\u0275", " Palav", "\u653e\u77e2", "manship"], ["lessly", "fulness", "lessness", "\u653e\u77e2", "mind", "iness", "manship", "edly"], ["lessly", "fulness", "\u653e\u77e2", "lessness", "manship", "iness", "gear", "mind"], ["lessly", "schuh", "\u653e\u77e2", "\u0275", "lessness", "fulness", "erness", "ularity"], ["lessly", "schuh", "\u0275", "fulness", "erness", "lessness", "\u653e\u77e2", "edly"], ["lessly", "edly", "fulness", "mind", "ahead", "acious", "lessness", "enance"], ["lessly", "erness", "schuh", "edly", "fulness", "acious", "lessness", "enance"], ["lessly", "fulness", " --", "edly", "mind", "lessness", "acious", "erness"], [" --", "ahead", "edly", "lessly", "mind", "fulness", "iness", "lessness"], [" \r\n\r\n", " --", "lessly", "fulness", "edly", "mind", "lessness", "enance"], ["lessly", " powering", "erness", "acious", "lessness", "fulness", "enance", " \r\n\r\n"], [" powering", "lessly", "erness", " crunch", " <+", "enance", "fulness", " \r\n\r\n"], [" --", " \r\n\r\n", " powering", " crunch", "fulness", "iness", " boosting", "lessly"], [" powering", " crunch", " --", "erness", "lessly", "lessness", "acious", "fulness"], [" powering", " crunch", "erness", "lessly", " --", "lessness", " overclock", " throttle"], [" beyond", " --", " powering", " crunch", " comfortably", " tech", " up", " pace"], [" beyond", " --", " powering", " comfortably", " up", " crunch", " power", " down"], [" powering", " beyond", " crunch", " --", " comfortably", " pushing", " critical", " \u2013"], [" powering", " crunch", " tech", " beyond", " \u2013", " \u2018", " comfortably", "\u2011"], [" powering", " crunch", " tech", " overclock", "erness", "lessness", " beyond", "tech"], [" powering", " *\u2013", " overclock", " \u2013", " crunch", "\u2011", " tech", "erness"], [" overclock", " powering", " crunch", " *\u2013", "lessness", "erness", " tech", "lessly"], [" powering", " overclock", "erness", " *\u2013", " crunch", "lessness", "lessly", " tech"], [" powering", " overclock", "\u4f59\u529b", " crunch", " capacity", "erness", "\u4f59\u88d5", "\u2011"], [" overclock", " powering", " capacity", "\u4f59\u529b", " crunch", "\u4f59\u88d5", " throttle", " horsepower"], [" capacity", " overclock", "\u4f59\u529b", " powering", "\u4f59\u88d5", " CPU", " crunch", " horsepower"], ["\u4f59\u529b", " capacity", " overclock", " powering", "\u4f59\u88d5", " CPU", " crunch", " horsepower"], ["\u4f59\u529b", " capacity", "\u4f59\u88d5", " overclock", " powering", " surplus", " \uc5ec\uc720", " crunch"], ["\u4f59\u529b", "\u4f59\u88d5", " capacity", " powering", " overclock", " surplus", " \uc5ec\uc720", "\u4f59\u5730"], ["\u4f59\u529b", " capacity", "\u4f59\u88d5", " reserves", " powering", " spare", " reserve", " surplus"], ["\u4f59\u529b", " capacity", "\u4f59\u88d5", " spare", " reserves", " reserve", " powering", " limited"], ["\u4f59\u529b", "\u4f59\u88d5", " capacity", " budgets", " reserve", " spare", " reserves", " surplus"], ["\u4f59\u529b", "\u4f59\u88d5", " capacity", " spare", " reserve", " budgets", " surplus", " reserves"], ["\u4f59\u529b", "\u4f59\u88d5", "ospace", " capacity", "-budget", " budgets", "\u5145\u88d5", " spare"], ["ospace", "\u4f59\u529b", "\u4f59\u88d5", "-budget", "\u5145\u88d5", " budgets", " capacity", "\u4f59\u5730"], [".;", ";.", ";", "\u061b", "*;", "%;", "ospace", "__;"], [".;", ";.", ";", "++.", "ospace", "\u4f59\u88d5", "*;", "__;"], [" spare", "\u7559\u7ed9", ";.", ";", "\u4f59\u88d5", "udget", "room", "ospace"], [" spare", "room", "\u4f59\u88d5", "udget", ";.", "\u7559\u7ed9", "allocated", "\u4f59\u529b"], [" reserve", " spare", " reserved", " reserves", "Margin", "reserve", " margins", " margin"], [" reserved", " reserve", " reserves", " spare", "space", "room", " margin", "Margin"], ["room", "space", "ROOM", " margin", "Margin", "margin", "rooms", "-room"], [" margin", "room", "margin", "Margin", " margins", "-margin", "_margin", " Margin"], [" head", "head", " Head", "Head", "room", "-head", "/head", ".Head"], ["room", " head", "head", " room", "ROOM", " Head", "rooms", "-head"], ["room", " room", "rooms", "ROOM", "-room", "Room", " margin", " Room"], ["room", " room", "rooms", "ROOM", "-room", "Room", "oom", " Room"], ["room", "rooms", "r", " room", "rom", "-room", "rum", "ROOM"]], "p": [[0.6545, 0.1875, 0.069, 0.0609, 0.0154, 0.0013, 0.0011, 0.001], [0.0404, 0.038, 0.0216, 0.0191, 0.0055, 0.0051, 0.0021, 0.002], [0.3932, 0.0824, 0.0774, 0.0135, 0.0119, 0.0064, 0.0064, 0.006], [0.0029, 0.002, 0.0017, 0.0015, 0.0014, 0.0013, 0.0011, 0.0011], [0.019, 0.0102, 0.0058, 0.0051, 0.0048, 0.0045, 0.0042, 0.004], [0.0126, 0.0056, 0.0053, 0.0053, 0.0041, 0.0041, 0.0034, 0.0028], [0.1308, 0.0452, 0.0331, 0.0274, 0.0274, 0.0201, 0.0166, 0.0129], [0.0434, 0.0299, 0.028, 0.028, 0.0141, 0.0132, 0.0132, 0.0124], [0.0487, 0.0379, 0.0356, 0.0245, 0.0168, 0.0102, 0.009, 0.009], [0.0129, 0.0094, 0.0089, 0.0069, 0.0037, 0.0037, 0.0033, 0.0027], [0.0233, 0.0193, 0.0103, 0.0091, 0.0081, 0.0067, 0.0063, 0.0059], [0.0199, 0.0146, 0.0121, 0.0073, 0.0065, 0.0035, 0.0035, 0.0033], [0.0155, 0.01, 0.0083, 0.005, 0.0047, 0.0047, 0.0039, 0.0029], [0.0071, 0.0067, 0.0063, 0.0055, 0.0036, 0.003, 0.0026, 0.0025], [0.0093, 0.0088, 0.0047, 0.0044, 0.0034, 0.0032, 0.003, 0.0025], [0.003, 0.0027, 0.0022, 0.0022, 0.0018, 0.0017, 0.0017, 0.0017], [0.0158, 0.014, 0.0066, 0.004, 0.004, 0.004, 0.0035, 0.0031], [0.0143, 0.0098, 0.0087, 0.0067, 0.0041, 0.003, 0.003, 0.0028], [0.0079, 0.0037, 0.0037, 0.0035, 0.0035, 0.0031, 0.0027, 0.0021], [0.0074, 0.0051, 0.0045, 0.0025, 0.0025, 0.0025, 0.0022, 0.0014], [0.0074, 0.0051, 0.0042, 0.004, 0.0031, 0.0031, 0.0026, 0.0023], [0.0055, 0.0036, 0.0034, 0.0026, 0.0025, 0.0023, 0.002, 0.002], [0.0105, 0.006, 0.0044, 0.0041, 0.0039, 0.0036, 0.0034, 0.0032], [0.0108, 0.009, 0.007, 0.0058, 0.004, 0.004, 0.0037, 0.0035], [0.0091, 0.0063, 0.004, 0.003, 0.003, 0.0028, 0.0028, 0.0028], [0.0051, 0.0048, 0.004, 0.0031, 0.0031, 0.0026, 0.0024, 0.0024], [0.0057, 0.0035, 0.0033, 0.0025, 0.0024, 0.0024, 0.0022, 0.0022], [0.1114, 0.0249, 0.0161, 0.0059, 0.0036, 0.0034, 0.0026, 0.0026], [0.0189, 0.0115, 0.0108, 0.0054, 0.0045, 0.0042, 0.0037, 0.0037], [0.0175, 0.01, 0.005, 0.005, 0.005, 0.0047, 0.0032, 0.0032], [0.0444, 0.0346, 0.0287, 0.0163, 0.0093, 0.0072, 0.006, 0.006], [0.0668, 0.0246, 0.0231, 0.0159, 0.0149, 0.0096, 0.0085, 0.0085], [0.0596, 0.0385, 0.0171, 0.0142, 0.0142, 0.0081, 0.0076, 0.0067], [0.0664, 0.0215, 0.0115, 0.0084, 0.0074, 0.007, 0.0058, 0.0054], [0.0471, 0.0173, 0.0135, 0.0082, 0.0053, 0.0039, 0.0036, 0.0034], [0.0501, 0.0209, 0.0196, 0.0127, 0.0119, 0.0099, 0.0099, 0.0087], [0.0248, 0.0233, 0.0103, 0.0097, 0.0086, 0.0076, 0.0076, 0.0071], [0.0246, 0.0217, 0.008, 0.008, 0.007, 0.0066, 0.0066, 0.0058], [0.028, 0.0263, 0.0232, 0.0132, 0.0091, 0.0071, 0.0066, 0.0055], [0.0614, 0.0449, 0.0422, 0.0329, 0.0199, 0.0107, 0.0107, 0.0088], [0.1789, 0.123, 0.09, 0.0658, 0.0227, 0.0214, 0.0138, 0.0114], [0.2378, 0.2098, 0.0681, 0.0565, 0.0388, 0.0162, 0.0143, 0.0087], [0.3396, 0.1249, 0.0914, 0.0521, 0.0262, 0.0159, 0.0132, 0.0109], [0.2187, 0.193, 0.1703, 0.0245, 0.0158, 0.014, 0.0131, 0.0109], [0.2247, 0.1544, 0.1061, 0.0367, 0.0268, 0.0196, 0.0173, 0.0153], [0.2493, 0.1178, 0.0862, 0.0298, 0.028, 0.0232, 0.0232, 0.0192], [0.3492, 0.1285, 0.0646, 0.0238, 0.021, 0.0174, 0.0163, 0.0119], [0.2349, 0.1718, 0.0632, 0.0205, 0.0205, 0.0181, 0.017, 0.0141], [0.2159, 0.1681, 0.0546, 0.0166, 0.0147, 0.013, 0.0114, 0.0107], [0.0852, 0.0664, 0.0486, 0.0277, 0.019, 0.0102, 0.0084, 0.0058], [0.1448, 0.0995, 0.0825, 0.047, 0.0304, 0.0236, 0.0184, 0.0184], [0.0645, 0.0569, 0.0502, 0.0324, 0.0237, 0.0135, 0.0112, 0.0105], [0.0947, 0.0327, 0.0289, 0.0186, 0.0165, 0.0155, 0.0155, 0.0136], [0.1335, 0.0298, 0.0181, 0.0159, 0.0141, 0.0141, 0.0117, 0.0117], [0.1603, 0.1506, 0.1102, 0.0711, 0.0358, 0.0316, 0.0316, 0.0279], [0.0696, 0.0696, 0.0509, 0.0509, 0.035, 0.0309, 0.0176, 0.0155], [0.8067, 0.0259, 0.0244, 0.0139, 0.0079, 0.007, 0.0066, 0.0045], [0.32, 0.2492, 0.1039, 0.0917, 0.0714, 0.0433, 0.0117, 0.0109], [0.5247, 0.3606, 0.0335, 0.0296, 0.0261, 0.0096, 0.0085, 0.0024], [0.8756, 0.0634, 0.0436, 0.0059, 0.0017, 0.0015, 0.0015, 0.0015], [0.9851, 0.0066, 0.0026, 0.0014, 0.001, 0.0008, 0.0004, 0.0003], [0.9904, 0.0034, 0.002, 0.0014, 0.0009, 0.0003, 0.0002, 0.0001], [0.9957, 0.0016, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 431, "top": [[".", ",", "a", ";", "!", "?", "o", "er"], ["sville", "liness", "\u2013", " RI", "town", " Room", "sWith", "shire"], ["\u2013", " \u2013", "\u2026..", "\u2026.", "\u2026", "\u2013and", ",", "\u2026\u2026"], ["utnik", " \u041a\u0440\u0430\u0441\u0438", "\u5982\u837c", "deck", "----------</", " cumshot", "-------------</", "\ufffd\ufffd"], [" &", "&r", " #", "ing", "&a", ",&", ".&", " ATM"], [" Fraser", " Halifax", "mist", " Harbour", "aum", "odka", "HK", "\u969c"], [" \u2013", "\u2013\u2013", " swiftly", "\ufffd", ".\u2013", ",", " \u2019", "\u2014\u2014"], ["&nbsp", " swiftly", ",", "-pane", ".\u2013", " \ufffd", "-and", " \r\n"], ["&nbsp", ",", " \u2013", ".", "\u00a0", ".&", "\u2013", ";"], [",", "\u2013", "\u2013and", "&nbsp", "\u2013\u2013", ";", " swiftly", ".\u2013"], ["&nbsp", " \u2013", " bespoke", " albeit", ".&", " atop", " alongside", " amid"], [" albeit", " atop", " bespoke", " showcasing", " showcased", "addock", " amid", "\u5145\u88d5"], [" atop", " amid", " showcased", " albeit", " showcasing", " impactful", " incentiv", " bespoke"], [" atop", " showcased", " albeit", " showcasing", " impactful", " incentiv", " amid", " seamlessly"], [" atop", " albeit", " showcasing", " showcased", " alongside", " arguably", " akin", " amid"], [" atop", " bespoke", " bolster", " arguably", " swiftly", " whilst", " albeit", "\u52a8\u8f84"], [" atop", " bolster", " albeit", " arguably", " amidst", " akin", " showcasing", " swiftly"], [" atop", " albeit", " impactful", " showcasing", " amid", " incentiv", " showcased", " bespoke"], [" atop", " amid", " albeit", " amidst", " impactful", " arguably", " incentiv", " showcasing"], [" atop", " amidst", " amid", " albeit", " arguably", " swiftly", " alongside", " burgeoning"], [" atop", " amidst", " swiftly", " amid", " alongside", " albeit", " arguably", " burgeoning"], [" atop", " amid", " amidst", " arguably", " swiftly", " albeit", " beyond", " effortlessly"], [" atop", " amidst", " amid", " beyond", " swiftly", " arguably", " albeit", " alongside"], [" atop", " amidst", " amid", " beyond", " alongside", " arguably", " across", " swiftly"], [" atop", " amidst", " amid", "\u5373\u4fbf", "\u2014even", " bolster", " arguably", " beyond"], [" atop", " amid", " amidst", " impactful", " **", " overclock", " *__", " !***"], [" atop", " amid", " amidst", " overclock", " impactful", " powering", " **", " ___"], [" atop", " ___", " --", " amid", " amidst", " beyond", " **", " arguably"], [" atop", " amid", " **", " beyond", " amidst", " bolster", " arguably", " overclock"], [" atop", "\u2014even", " beyond", " amid", " **", " barely", "\u2014and", " arguably"], [" beyond", " even", " ,", " across", " barely", " .", " atop", " for"], [" even", " beyond", " ,", " .", " for", " barely", " critical", " comfortably"], [" even", " beyond", "\u2014even", " \u2014", " \u2013", "\u2014and", " barely", " **"], [" \u2013", " even", "\u2014even", "\u2014and", " heavily", " \u2014", " beyond", " barely"], [" heavily", "\u2014and", "\u2014even", " barely", "\u2014not", " notoriously", " \u2014", " critical"], [" \u2014", "\u2014and", " \u2013", " notoriously", " heavily", "\u2014even", "\u2014not", " critical"], [" notoriously", " heavily", "\u2014and", "\u2014even", "\u2014not", " critical", " \u2014", " barely"], [" notoriously", "\u2014even", "\u2014and", " heavily", " even", " critical", " disproportionately", " tightly"], [" notoriously", " even", "\u2014even", " heavily", " critical", " tight", " tightly", " barely"], [" notoriously", "\u2014even", " heavily", " critical", " tight", " tightly", " even", " barely"], [" tight", " critical", " heavily", " notoriously", " tightly", " demanding", " vulnerable", " barely"], [" tight", "\u2014even", " critical", " tightly", " cramped", " heavily", " demanding", " notoriously"], [" tight", " budgets", " critical", " cramped", " tightly", " budget", " heavily", " buffering"], [" critical", " tight", " barely", " budgets", " heavily", " limits", " tightly", " even"], [" critical", " tight", " tightly", " heavily", " limited", " barely", " budgets", " limits"], [" critical", " tight", " limited", " barely", " tightly", " budgets", " heavily", " notoriously"], [" tight", " critical", " budgets", " limited", " tightly", " barely", " notoriously", " limits"], [" tight", " tightly", " heavily", " critical", " notoriously", " quickly", " limited", " desperately"], [";", " tight", " ;", ";if", " budgets", " tightly", " heavily", " insufficient"], [";", ";if", "\u061b", " ;", ";\\", ".;", ";.", " relying"], [";", ";.", "\u061b", ";if", ".;", ".", " {}.", ";\\"], [";", ";.", ".", " {}.", "{}.", "().", ";if", " attempting"], [";", ".", ";.", " relying", " {}.", "{}.", "*.", "\\\\."], [";", "\u6bcf\u4e00\u6b21", ".", " every", "\u6bcf\u4e00", ";.", " relying", " Every"], ["\u6bcf\u4e00\u6b21", "\u6bcf\u4e00", " every", ";", " allocating", "\u7684\u6bcf\u4e00", " Every", "\u6bcf\u79d2"], [";", "\u6bcf\u4e00", "\u6bcf\u4e00\u6b21", " allocating", "\u7684\u6bcf\u4e00", ".", ";.", " every"], [";", ".", "\u6bcf\u4e00", ";.", " allocating", " Every", "\u6bcf\u4e00\u6b21", "\u7684\u6bcf\u4e00"], [".", ";", ";.", "\u6bcf\u4e00", " allocating", " Every", "{}.", "+."], [".", " running", " Running", ";", " Every", ";.", "-running", "\u6bcf\u4e00"], [".", " running", " managed", " Managed", ";", " Running", " every", " Every"], [".", " running", " managed", ";", " Running", " .", " rendering", " every"], [".", " running", " managed", ";", " .", " for", " Running", " Managed"], [".", ";", " for", " managed", ",", " .", ".C", " running"]], "p": [[0.878, 0.0721, 0.0171, 0.0076, 0.0043, 0.0025, 0.0022, 0.0018], [0.0114, 0.0037, 0.0037, 0.0037, 0.0035, 0.0035, 0.0024, 0.0022], [0.466, 0.104, 0.0592, 0.0263, 0.0247, 0.0085, 0.0085, 0.0071], [0.0026, 0.0025, 0.0019, 0.0018, 0.0016, 0.0016, 0.0015, 0.0015], [0.0196, 0.0162, 0.0105, 0.0098, 0.0077, 0.0068, 0.0064, 0.0047], [0.0166, 0.0083, 0.0054, 0.0031, 0.0027, 0.0024, 0.0022, 0.002], [0.0161, 0.0081, 0.0071, 0.0071, 0.0067, 0.0067, 0.0063, 0.0059], [0.014, 0.0071, 0.0066, 0.0062, 0.0052, 0.0046, 0.004, 0.004], [0.2472, 0.1408, 0.043, 0.0356, 0.0335, 0.0295, 0.0277, 0.0179], [0.0875, 0.0221, 0.0076, 0.0072, 0.006, 0.0056, 0.0053, 0.0049], [0.0572, 0.0128, 0.0113, 0.0106, 0.0099, 0.0099, 0.0099, 0.0093], [0.013, 0.0115, 0.0101, 0.0079, 0.0054, 0.0045, 0.0042, 0.0035], [0.0155, 0.0078, 0.0078, 0.0078, 0.0065, 0.0065, 0.0057, 0.0044], [0.025, 0.0126, 0.0126, 0.0104, 0.0086, 0.0059, 0.0056, 0.0046], [0.0413, 0.0342, 0.0221, 0.0143, 0.0134, 0.0098, 0.0098, 0.0098], [0.0241, 0.0146, 0.0088, 0.0065, 0.0057, 0.005, 0.0044, 0.0042], [0.0436, 0.0265, 0.0171, 0.0151, 0.0125, 0.0125, 0.0125, 0.0117], [0.0144, 0.0082, 0.0077, 0.0068, 0.0064, 0.006, 0.005, 0.0044], [0.0277, 0.0139, 0.0108, 0.0102, 0.0084, 0.0084, 0.0058, 0.0042], [0.0567, 0.0344, 0.0268, 0.0237, 0.0127, 0.0087, 0.0087, 0.0068], [0.0815, 0.056, 0.041, 0.0362, 0.0249, 0.0206, 0.0194, 0.0151], [0.0526, 0.0248, 0.0193, 0.0067, 0.0059, 0.0059, 0.0055, 0.0049], [0.089, 0.0447, 0.0371, 0.0155, 0.0145, 0.0145, 0.0113, 0.0094], [0.088, 0.0605, 0.0605, 0.039, 0.0286, 0.0222, 0.0173, 0.0163], [0.1225, 0.0291, 0.0291, 0.0146, 0.0078, 0.0074, 0.0065, 0.0057], [0.0508, 0.0165, 0.0121, 0.01, 0.0083, 0.0078, 0.0037, 0.0035], [0.0722, 0.0151, 0.0104, 0.0098, 0.0098, 0.0059, 0.0052, 0.0049], [0.1107, 0.0337, 0.0317, 0.0192, 0.0181, 0.017, 0.0159, 0.015], [0.1246, 0.018, 0.0158, 0.0116, 0.0116, 0.0096, 0.009, 0.0085], [0.0907, 0.0378, 0.0277, 0.026, 0.0216, 0.0084, 0.0084, 0.0079], [0.1056, 0.0602, 0.0531, 0.0284, 0.0267, 0.0184, 0.0172, 0.0162], [0.1005, 0.0783, 0.0538, 0.0419, 0.0271, 0.0254, 0.0186, 0.0164], [0.0748, 0.0454, 0.0353, 0.0275, 0.0259, 0.0214, 0.0214, 0.0214], [0.07, 0.0452, 0.0424, 0.0399, 0.0375, 0.0375, 0.0201, 0.0188], [0.0476, 0.0447, 0.0371, 0.0186, 0.0175, 0.0175, 0.0175, 0.0165], [0.0661, 0.0661, 0.0484, 0.0484, 0.0427, 0.0377, 0.0293, 0.0178], [0.1075, 0.0421, 0.0272, 0.0255, 0.024, 0.0187, 0.0145, 0.0137], [0.0618, 0.0274, 0.0258, 0.0258, 0.0242, 0.0201, 0.0147, 0.0147], [0.0521, 0.0316, 0.0279, 0.0262, 0.0231, 0.0231, 0.0204, 0.0192], [0.0542, 0.035, 0.0329, 0.0256, 0.0212, 0.0165, 0.0165, 0.0146], [0.0379, 0.0277, 0.026, 0.0203, 0.0179, 0.0168, 0.0158, 0.0123], [0.0397, 0.0373, 0.0273, 0.0241, 0.02, 0.0166, 0.0166, 0.0155], [0.0503, 0.0253, 0.0238, 0.021, 0.0185, 0.0144, 0.0144, 0.0127], [0.0631, 0.0462, 0.0263, 0.0247, 0.0218, 0.0192, 0.0192, 0.0181], [0.1013, 0.0654, 0.0309, 0.0256, 0.0241, 0.02, 0.0176, 0.0165], [0.0749, 0.0661, 0.0427, 0.0276, 0.0276, 0.0243, 0.0243, 0.0229], [0.1051, 0.0563, 0.0341, 0.0321, 0.0283, 0.0207, 0.0183, 0.0151], [0.1007, 0.0447, 0.042, 0.042, 0.0198, 0.0198, 0.0136, 0.0136], [0.3025, 0.0248, 0.0233, 0.0142, 0.011, 0.0063, 0.0059, 0.0055], [0.9092, 0.0074, 0.0033, 0.0026, 0.0024, 0.0023, 0.0011, 0.001], [0.9269, 0.0192, 0.0091, 0.008, 0.0052, 0.003, 0.0012, 0.0012], [0.6944, 0.0392, 0.0325, 0.0269, 0.0127, 0.0072, 0.0068, 0.0064], [0.6177, 0.054, 0.0289, 0.0094, 0.0064, 0.0064, 0.0061, 0.0057], [0.249, 0.063, 0.0461, 0.0406, 0.0218, 0.0169, 0.0169, 0.014], [0.1756, 0.1756, 0.0829, 0.057, 0.0269, 0.0253, 0.021, 0.0185], [0.1025, 0.0905, 0.0455, 0.0276, 0.019, 0.0178, 0.0167, 0.0157], [0.2341, 0.2341, 0.0556, 0.0407, 0.0132, 0.0132, 0.0117, 0.0109], [0.3791, 0.158, 0.0375, 0.0214, 0.013, 0.0089, 0.0084, 0.0084], [0.3026, 0.1343, 0.1262, 0.0923, 0.0233, 0.016, 0.0142, 0.0125], [0.361, 0.1705, 0.1328, 0.0554, 0.0431, 0.0405, 0.0217, 0.018], [0.5873, 0.1907, 0.0425, 0.0375, 0.0201, 0.013, 0.0101, 0.0084], [0.9133, 0.0276, 0.013, 0.0062, 0.004, 0.0035, 0.0033, 0.0026], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 432, "top": [[" \u2013", ".", "\u2013", ",", ";", "\u00a0", "\u00a0\u00a0", " \u200b\u200b"], [" \u2013", "\u2013", "\u2013and", " \u2013,", ",", ".", " \u200b\u200b", "\u2013\u2013"], ["\u2013", ",", ".", " \u2013", "\u2026..", "\u2013and", ";", "\u2026."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "-------------</", " Blowjob", "----------</", " ;;^", " pornstar"], [":@", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927\u7684", " Millennials", "_intf", " Krem", " (@", " cittadin"], [" \u200b\u200b", "!:", ",", " Celebrity", "!\u201d.", "<|quad_end|>", ".", " Rangers"], ["  \n\n", "<|endoftext|>", "  \n", "   \n", "\uff01", "!\u201d", "   \n\n", "\u00a0\u00a0"], ["   \n\n", "   \n", "  \n\n", "!:", "!.", "    \n\n", "<|quad_end|>", "    \n"], ["   \n\n", "  \n\n", " \n\n", "    \n\n", "     \n\n", "      \n\n", "!\u201d", "\u00a0"], ["\u7c89\u4e1d\u4eec", ",", "\u51ed\u501f\u7740", "\u7a81\u5982\u5176", "!,", "\u4e94\u82b1\u516b", "\u76f8\u8f85\u76f8\u6210", "\u8ddf\u81ea\u5df1"], ["\u00a0", ",", " even", " albeit", " arguably", " though", " savvy", " mostly"], ["\u7c89\u4e1d\u4eec", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " veggies", " hardcore", " savvy", "\u751a\u81f3\u4f1a", " pricey", " Hardcore"], ["\u7c89\u4e1d\u4eec", " arguably", " savvy", "\u51ed\u501f\u7740", " nonetheless", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " incredibly", " hardcore"], [" savvy", "\u7c89\u4e1d\u4eec", " hardcore", "\u51ed\u501f\u7740", "\u751a\u81f3\u4f1a", " even", " albeit", " gritty"], [" arguably", " savvy", " folks", " even", " though", " sprawling", " effortlessly", " plenty"], [" folks", " savvy", "\u51ed\u501f\u7740", " sprawling", " pricey", " plenty", " arguably", "\u5e38\u5e38\u4f1a"], [" arguably", " incredibly", " sprawling", " plenty", " effortlessly", " savvy", "\u51ed\u501f\u7740", " folks"], ["-esque", " incredibly", " sprawling", " savvy", " effortlessly", " arguably", "\u51ed\u501f\u7740", "\u2014even"], [" arguably", " incredibly", "\u2014even", " countless", " effortlessly", " sprawling", " savvy", "-esque"], ["<|endoftext|>", " arguably", "\u2014even", "\u5373\u4fbf", " swiftly", " even", " incredibly", " effortlessly"], ["<|endoftext|>", " swiftly", " ultimately", " even", "\u5373\u4fbf", " myriad", " arguably", "\u2014even"], [" incredibly", "\u51ed\u501f\u7740", " arguably", " effortlessly", " countless", " sprawling", " swiftly", " even"], [" swiftly", " arguably", "\u5373\u4fbf", "\u51ed\u501f\u7740", " incredibly", " even", " sprawling", " effortlessly"], [" even", " ultimately", " swiftly", "<|endoftext|>", " arguably", "\u5373\u4fbf", " incredibly", " myriad"], [" \n\n", "\n\n", "\u5373\u4fbf", "\r\n\r\n", " \r\n\r\n", " arguably", " swiftly", " vastly"], ["\u5373\u4fbf", "\u62e5\u6709\u7740", " incredibly", " sprawling", "\u5373\u4fbf\u662f", " vastly", " skyrocket", "\u51ed\u501f\u7740"], ["\u5373\u4fbf", "\n\n", " sprawling", " incredibly", " vastly", "\r\n\r\n", " arguably", " skyrocket"], ["\n\n", " \n\n", " even", " arguably", " incredibly", " vastly", "\r\n\r\n", " heavily"], ["\n\n", "\u5373\u4fbf", " incredibly", " arguably", " vastly", " \n\n", "\r\n\r\n", " sprawling"], [" incredibly", " even", "\u2014even", " arguably", " heavily", " **", " vastly", " sprawling"], [" even", " often", "<|endoftext|>", " heavily", " incredibly", " ,", " countless", " quickly"], [" even", " countless", " incredibly", " many", " heavily", " often", " only", " quickly"], [" even", " heavily", " \u201c", " incredibly", " quickly", " countless", " often", " only"], [" heavily", " incredibly", " even", " aggressively", " often", " meticulously", " deeply", " essentially"], [" heavily", "\u2014even", " aggressively", " notoriously", " meticulously", " incredibly", " relentless", " relentlessly"], [" notoriously", "\u2014even", " heavily", " relentless", " relentlessly", " aggressively", " \u2014", " meticulously"], [" notoriously", "\u2014even", " heavily", " aggressively", " relentless", " relentlessly", " inherently", "\u6839\u672c\u65e0\u6cd5"], [" notoriously", "\u2014even", " heavily", " relentless", " aggressively", " inherently", " relentlessly", " unpredictable"], ["\u2014even", " notoriously", " relentless", " relentlessly", " heavily", " inherently", " inefficient", " unpredictable"], ["\u2014even", " notoriously", " relentless", " unpredictable", " inherently", " relentlessly", " heavily", " inefficient"], [" relentless", " unpredictable", "\u2014even", " heavily", " inefficient", " notoriously", " relentlessly", " inherently"], ["\u2014even", " unpredictable", " heavily", " relentless", " inefficient", " heavy", " inherently", " notoriously"], [" heavy", " unpredictable", " heavily", " inefficient", " inherently", " relentless", " aggressively", " massive"], [" unpredictable", " heavily", " heavy", " notoriously", " inefficient", " inherently", " relentless", " massive"], [" unpredictable", " heavy", " heavily", " inherently", "-heavy", " notoriously", " inefficient", " massive"], [" unpredictable", " notoriously", " inherently", " heavily", " heavy", "-heavy", " inefficient", " aggressively"], [" inherently", "-heavy", " unpredictable", " ANY", " notoriously", " heavily", " heavy", " relentless"], [" ANY", " inherently", "-heavy", " traditional", " unpredictable", " typical", "\u52a8\u8f84", " routinely"], [" ANY", "\u4efb\u4f55\u5f62\u5f0f\u7684", " traditional", "\u52a8\u8f84", " \uc544\ubb34\ub9ac", "\u2014even", "\u7684\u4efb\u4f55", "-heavy"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", " traditional", " \uc544\ubb34\ub9ac", " Traditional", "\u52a8\u8f84", "\u5e38\u89c4\u7684"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55", " \uc544\ubb34\ub9ac", ":Any", " qualsiasi", " \u043b\u044e\u0431\u043e\u0439"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", "\u7684\u4efb\u4f55", "\u4efb\u4f55", ":Any", "-standard", "standard", "\u5e38\u89c4\u7684"], ["-standard", "\u4efb\u4f55\u5f62\u5f0f\u7684", " ANY", " standard", "standard", "\u5e38\u89c4\u7684", " traditional", " \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442"], [" standard", "-standard", "standard", "\u6bcf\u4e00\u6b21", " \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442", "\u7684\u6807\u51c6", " ANY", "\u6807\u51c6\u7684"], [" standard", "standard", "-standard", " \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442", "\u7684\u6807\u51c6", "\u6bcf\u4e00\u6b21", "\u6807\u51c6\u7684", "\u6807\u51c6"], [" standard", "standard", "-standard", " \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442", "\u7684\u6807\u51c6", "\u6807\u51c6\u7684", "\u6807\u51c6", "\u6bcf\u4e00\u6b21"], [" standard", "standard", "\u7684\u6807\u51c6", " \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442", "\u6807\u51c6\u7684", " Python", "-standard", " Standard"], [" standard", "standard", "\u7684\u6807\u51c6", " Managed", "\u6807\u51c6\u7684", "\u6807\u51c6", " Standard", " \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442"], [" Managed", " Running", " running", " Every", " Standard", " Even", " managed", " Traditional"], [" Managed", " managed", " Running", " standard", " running", " Every", " Standard", "Managed"], [" Every", " Managed", " Running", " Standard", " standard", " running", " managed", " Rendering"], [" Managed", " Running", " Every", " Standard", " standard", " running", " managed", " Even"], [" Running", " C", " Every", " Standard", " Managed", " Even", " The", " A"]], "p": [[0.6426, 0.2364, 0.0527, 0.0527, 0.0032, 0.0017, 0.0015, 0.0011], [0.4103, 0.0808, 0.0116, 0.0046, 0.0031, 0.0019, 0.0018, 0.0015], [0.6298, 0.1592, 0.0966, 0.0852, 0.0045, 0.0045, 0.0045, 0.0031], [0.0142, 0.0086, 0.0076, 0.0043, 0.0036, 0.0028, 0.0026, 0.0023], [0.0021, 0.0021, 0.0016, 0.0012, 0.001, 0.001, 0.0009, 0.0009], [0.0034, 0.003, 0.0011, 0.001, 0.001, 0.001, 0.0009, 0.0008], [0.0681, 0.0439, 0.025, 0.0183, 0.0183, 0.0134, 0.0098, 0.0067], [0.0434, 0.0181, 0.008, 0.0075, 0.004, 0.0038, 0.0033, 0.0022], [0.3252, 0.1973, 0.1196, 0.0413, 0.0118, 0.0111, 0.0111, 0.0105], [0.001, 0.0009, 0.0008, 0.0006, 0.0006, 0.0006, 0.0005, 0.0005], [0.0217, 0.0132, 0.0091, 0.0075, 0.0066, 0.0052, 0.0048, 0.0048], [0.0039, 0.0035, 0.0022, 0.0022, 0.0019, 0.0015, 0.0014, 0.0014], [0.0032, 0.0018, 0.0018, 0.0017, 0.0017, 0.0016, 0.0012, 0.0011], [0.0035, 0.0029, 0.0025, 0.0019, 0.0014, 0.0014, 0.0013, 0.0012], [0.01, 0.0089, 0.0073, 0.0073, 0.0069, 0.0045, 0.0039, 0.0037], [0.0157, 0.0074, 0.0058, 0.0042, 0.0027, 0.0027, 0.0027, 0.0026], [0.033, 0.0156, 0.0129, 0.0122, 0.0114, 0.0114, 0.0095, 0.0084], [0.0121, 0.01, 0.01, 0.0094, 0.0094, 0.0089, 0.0083, 0.0083], [0.046, 0.0297, 0.0218, 0.0159, 0.014, 0.0116, 0.0085, 0.0085], [0.075, 0.0377, 0.0333, 0.0215, 0.0202, 0.0157, 0.0157, 0.0139], [0.983, 0.0005, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.0117, 0.0117, 0.0117, 0.011, 0.0091, 0.0086, 0.0081, 0.0071], [0.0195, 0.0172, 0.0126, 0.0126, 0.0111, 0.0098, 0.0092, 0.0087], [0.0211, 0.0164, 0.0164, 0.0154, 0.0145, 0.0099, 0.0088, 0.0088], [0.0662, 0.0662, 0.0377, 0.0294, 0.019, 0.0115, 0.0108, 0.0102], [0.0153, 0.0064, 0.006, 0.006, 0.0047, 0.0044, 0.0036, 0.0034], [0.0347, 0.0136, 0.0113, 0.0088, 0.0082, 0.0073, 0.0073, 0.006], [0.5283, 0.0523, 0.0141, 0.0117, 0.0103, 0.0091, 0.0091, 0.0075], [0.2381, 0.0343, 0.0236, 0.0221, 0.0208, 0.0195, 0.0152, 0.0143], [0.0541, 0.0448, 0.0289, 0.0255, 0.0255, 0.024, 0.0225, 0.0212], [0.2306, 0.0427, 0.0401, 0.0354, 0.0259, 0.0228, 0.0157, 0.0157], [0.36, 0.0315, 0.0295, 0.0261, 0.0216, 0.0179, 0.0179, 0.0168], [0.1455, 0.0417, 0.0368, 0.0223, 0.0185, 0.0174, 0.0163, 0.0153], [0.0662, 0.0402, 0.0355, 0.0202, 0.0167, 0.0157, 0.013, 0.0123], [0.0399, 0.0274, 0.0242, 0.0227, 0.0177, 0.0166, 0.0156, 0.0138], [0.0741, 0.0542, 0.0478, 0.0187, 0.0155, 0.0137, 0.0114, 0.01], [0.0991, 0.0413, 0.0365, 0.0195, 0.0172, 0.0134, 0.0118, 0.0111], [0.0745, 0.07, 0.0213, 0.0201, 0.0201, 0.0156, 0.0147, 0.0122], [0.0821, 0.0725, 0.0302, 0.0235, 0.0162, 0.0143, 0.0134, 0.0126], [0.0793, 0.0452, 0.0399, 0.033, 0.0188, 0.0166, 0.0166, 0.0129], [0.0554, 0.0405, 0.0336, 0.0316, 0.0217, 0.0204, 0.0192, 0.0169], [0.0576, 0.035, 0.029, 0.024, 0.024, 0.0187, 0.0187, 0.0165], [0.034, 0.034, 0.0282, 0.0249, 0.0206, 0.0182, 0.0171, 0.0171], [0.0735, 0.0419, 0.0347, 0.0288, 0.0271, 0.0224, 0.0198, 0.0198], [0.0853, 0.0403, 0.0355, 0.023, 0.0203, 0.0203, 0.0179, 0.0179], [0.0771, 0.0388, 0.0364, 0.0364, 0.0267, 0.0235, 0.0152, 0.0152], [0.0745, 0.0745, 0.0481, 0.0452, 0.0274, 0.0188, 0.0188, 0.0166], [0.0826, 0.0534, 0.0501, 0.039, 0.0252, 0.0252, 0.0237, 0.0222], [0.1111, 0.0674, 0.0361, 0.0299, 0.0193, 0.017, 0.015, 0.0125], [0.2357, 0.1954, 0.0464, 0.0265, 0.0133, 0.0133, 0.0091, 0.0091], [0.4685, 0.0867, 0.0409, 0.0206, 0.0141, 0.0133, 0.0117, 0.0076], [0.1732, 0.0871, 0.0301, 0.022, 0.022, 0.0142, 0.0098, 0.0086], [0.0834, 0.0649, 0.0573, 0.0506, 0.0394, 0.0327, 0.0327, 0.0224], [0.1691, 0.1025, 0.0905, 0.0905, 0.0377, 0.0354, 0.0313, 0.0259], [0.1955, 0.1186, 0.1046, 0.0635, 0.0494, 0.0436, 0.0436, 0.0319], [0.1409, 0.0968, 0.0754, 0.0665, 0.0665, 0.0518, 0.0487, 0.0203], [0.1186, 0.0983, 0.0815, 0.0526, 0.0526, 0.0436, 0.0436, 0.041], [0.1307, 0.0898, 0.0657, 0.058, 0.0545, 0.0545, 0.0512, 0.0424], [0.4887, 0.14, 0.0584, 0.0401, 0.013, 0.0108, 0.0101, 0.0095], [0.6757, 0.0712, 0.0381, 0.0381, 0.0381, 0.0297, 0.0204, 0.0071], [0.3133, 0.2765, 0.148, 0.0699, 0.0699, 0.033, 0.0156, 0.0083], [0.4186, 0.1745, 0.154, 0.1058, 0.0196, 0.0173, 0.0152, 0.0112], [0.207, 0.1827, 0.1612, 0.1422, 0.1108, 0.0408, 0.036, 0.036]], "ranks": {}}, {"pos": 433, "top": [[".", ",", "\u00a0\u00a0", ";", "\u2026.", "  \n", " \u00a0", "-"], ["  \n", " HC", " VC", "iewicz", " WC", "\u00ad", "uell", "urent"], [".", "\u2026..", "\u2026.", ",", "\u2013", ".\u2013", "\u2013and", ",."], [" Strec", " Shemale", "\ufffd\ufffd", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "CCCCCC", " Geile", "erias"], ["&C", "&A", "CCCCCC", "&a", "CIL", "\ufffd\ufffd", "&(", "-CS"], ["-CS", "iously", "lients", "-Cs", "culos", "&C", "(ci", "CIL"], ["&C", "-Cs", "lients", "wc", "&a", "&A", "-Saharan", "....."], ["qc", "&C", "-Saharan", "iewicz", "-Cs", "iculture", "wc", "ureka"], ["&C", "iewicz", "istry", "iculture", "icide", "qc", "getc", "=&"], ["istry", "qc", "&C", "-C", "-Cs", "-Cds", "CAC", "ibility"], ["...", "&C", "-&", "&", "-C", "&nbsp", ",...", ")..."], ["istry", "lobber", "qc", "ibility", "-&", "iculture", "iless", "&eacute"], ["istry", "ibility", "&C", "-job", "lobber", "-CS", "itecture", "qc"], ["-C", "-tech", "-job", "istry", "&C", "-CS", "-talk", "-f"], ["-C", "-tech", "&C", "-&", "-f", "-o", "-h", "-big"], ["-tech", "-talk", " savvy", " veggies", "istry", "ologic", "-big", "ibility"], ["-tech", "&C", "-esque", "-heavy", "...", "-C", " savvy", "-big"], ["-tech", "-heavy", "&C", "-esque", "-o", "-C", "-big", "-lang"], ["...", ",...", "-esque", "-&", ")...", "-heavy", "&C", "-tech"], ["-&", "though", "&", "<|endoftext|>", "-heavy", "&,", "&C", "-"], ["<|endoftext|>", " \n\n", "\n\n", "though", "Though", "  \n\n", "&", " though"], ["redi", "\u8af8\u591a", "ishly", "\u5f88\u591a\u4e1c\u897f", "\u9aa8\u5b50\u91cc", "ibility", "-Cds", "iless"], ["fully", " ``", "ishly", "redi", " {{--<", "wo", " arguably", "istically"], ["fully", "wo", " ``", " arguably", "many", " {{--<", " heavily", " often"], ["\n\n", " \n\n", "  \n\n", "\t\n\n", "   \n\n", "      \n\n", "       \n\n", " \r\n\r\n"], [" \n\n", "\n\n", "istically", "-heavy", "\u62e5\u6709\u7740", "\u9aa8\u5b50\u91cc", "-tech", " arguably"], ["\n\n", " \n\n", "-heavy", " arguably", "-leaning", " {{--<", "\u62e5\u6709\u7740", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", " arguably", "\r\n\r\n", " heavily", "<|endoftext|>", " \r\n\r\n"], ["\n\n", " \n\n", "-heavy", " arguably", " heavily", " famously", "-leaning", " sprawling"], ["-heavy", " \n\n", " heavily", "  \n\n", "-leaning", " arguably", "   \n\n", "-focused"], [" \n\n", "-heavy", "\n\n", " heavily", " often", " arguably", "  \n\n", " aggressively"], [" heavily", " often", " modern", " mostly", " arguably", "-heavy", " ultimately", " even"], [" heavily", " often", " ultimately", " arguably", " even", " mostly", " only", " inherently"], ["-heavy", " inherently", " heavily", " notoriously", " arguably", "-centric", " fundamentally", " aggressively"], ["-heavy", " notoriously", " inherently", "-leaning", " arguably", "-centric", " heavily", " aggressively"], [" notoriously", "-heavy", " inherently", "-leaning", "-centric", "/software", " arguably", " traditionally"], [" notoriously", " inherently", "-heavy", "-centric", "/software", "-leaning", " arguably", " traditionally"], [" inherently", " notoriously", "-heavy", "-leaning", "/software", "\u9aa8\u5b50\u91cc", "-centric", " traditionally"], [" notoriously", " inherently", "-heavy", "/software", "-leaning", "\u9aa8\u5b50\u91cc", "-centric", " traditionally"], [" inherently", "-heavy", " notoriously", "/java", "/software", "-java", "Java", "\u9aa8\u5b50\u91cc"], ["-heavy", " inherently", "/java", "/software", " notoriously", "Java", " Java", "-runtime"], ["/java", " inherently", "-heavy", "/software", "Java", " Java", "-java", " JVM"], [" inherently", "/java", "-heavy", "/software", "Java", " optimized", " Java", " JVM"], [" inherently", "-heavy", "/java", " notoriously", "/software", " Java", " optimized", " JVM"], [" inherently", "-heavy", " notoriously", "/java", "/software", "-java", " optimized", " Java"], [" inherently", "-heavy", " notoriously", "/software", "/java", "-runtime", " optimized", " traditionally"], [" inherently", "-heavy", " notoriously", " optimized", "-runtime", "/software", " workflows", "-native"], [" inherently", "-heavy", " traditionally", " workflows", "-centric", " notoriously", "-runtime", " optimized"], [" inherently", "/Linux", "-heavy", "/C", "/java", "/software", "-runtime", "\u2014even"], [" inherently", "/C", "/Linux", "\u2014even", "-heavy", "-native", "-runtime", "/G"], ["/C", " inherently", "/Linux", "\u2019s", "-runtime", "/java", "/software", "-heavy"], ["/C", "/Linux", "/D", " inherently", "/java", "/Web", "+/", "/G"], [" inherently", "/C", "\u2019s", "/Linux", "-native", "/runtime", "/D", "/System"], ["\u2019s", " inherently", "/Linux", "/C", "-native", "'s", "\u2014even", "/native"], ["\u2019s", "/C", "'s", "/Linux", " inherently", ".NET", "-native", "GC"], ["\u2019s", "/Linux", "/C", " runtime", "\u5783\u573e", ".NET", " garbage", "'s"], ["\u2019s", "GC", " GC", " garbage", "\u5783\u573e", "/C", "gc", "/native"], ["\u2019s", " garbage", "GC", " GC", "/C", "\u5783\u573e", " runtime", "'s"], [".NET", "\u2019s", "CLR", " garbage", " CLR", " GC", "GC", " runtime"], ["\u2019s", " garbage", "#,", " runtime", "'s", "\u5783\u573e", " GC", "/C"], ["#,", "#'", "#", "#.", " #", "#/", "\u2019s", "#:"], ["#'", "#,", "\u2019s", " #'", "#", " \u2019", ")\u2019", "'s"], ["#'", "#", "#,", "#/", " #", " #'", "#.", "#:"]], "p": [[0.9364, 0.0266, 0.003, 0.0025, 0.002, 0.0019, 0.0016, 0.0015], [0.0317, 0.0116, 0.0085, 0.008, 0.0052, 0.0049, 0.0033, 0.0031], [0.3055, 0.2532, 0.0875, 0.0468, 0.0208, 0.0183, 0.0134, 0.0092], [0.0105, 0.0072, 0.0041, 0.0041, 0.0034, 0.003, 0.0028, 0.0021], [0.0196, 0.0196, 0.0153, 0.0135, 0.0099, 0.0072, 0.0053, 0.0044], [0.0082, 0.0036, 0.003, 0.0028, 0.0027, 0.0027, 0.0022, 0.0021], [0.0751, 0.0123, 0.0074, 0.0074, 0.0062, 0.0058, 0.0054, 0.0054], [0.0149, 0.0109, 0.0102, 0.008, 0.007, 0.007, 0.0066, 0.0062], [0.0255, 0.0175, 0.0145, 0.0094, 0.0088, 0.0088, 0.0073, 0.0057], [0.0065, 0.0054, 0.0042, 0.0022, 0.0022, 0.0021, 0.0021, 0.0019], [0.2321, 0.0518, 0.0356, 0.0295, 0.0277, 0.0245, 0.0179, 0.0116], [0.0266, 0.0086, 0.0049, 0.0049, 0.0036, 0.0034, 0.0034, 0.0032], [0.0191, 0.007, 0.0038, 0.0035, 0.0033, 0.0027, 0.0026, 0.0024], [0.0067, 0.0046, 0.0043, 0.0034, 0.003, 0.003, 0.0022, 0.0021], [0.0076, 0.0076, 0.0055, 0.0049, 0.0046, 0.0032, 0.003, 0.0023], [0.0063, 0.0025, 0.0023, 0.0022, 0.0019, 0.0019, 0.0017, 0.0016], [0.0194, 0.0076, 0.0063, 0.0038, 0.0034, 0.0032, 0.0026, 0.002], [0.0298, 0.008, 0.0075, 0.0046, 0.0038, 0.0038, 0.0036, 0.0023], [0.04, 0.0074, 0.007, 0.0061, 0.0058, 0.0054, 0.0054, 0.0051], [0.0117, 0.0075, 0.0071, 0.0049, 0.0046, 0.0043, 0.0036, 0.0031], [0.6098, 0.0135, 0.0099, 0.0047, 0.0039, 0.0021, 0.0017, 0.0013], [0.0028, 0.0019, 0.0016, 0.0014, 0.0011, 0.0011, 0.001, 0.001], [0.0029, 0.0027, 0.0025, 0.0024, 0.0021, 0.0015, 0.0014, 0.0013], [0.0052, 0.0041, 0.0028, 0.0026, 0.0025, 0.0018, 0.0015, 0.0014], [0.3105, 0.1216, 0.0073, 0.0053, 0.005, 0.0029, 0.0022, 0.0021], [0.0109, 0.0049, 0.0018, 0.0018, 0.0014, 0.0014, 0.0014, 0.0013], [0.5275, 0.018, 0.0014, 0.0008, 0.0007, 0.0007, 0.0007, 0.0007], [0.9375, 0.0321, 0.0007, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.2891, 0.0269, 0.0119, 0.0044, 0.0039, 0.0021, 0.0016, 0.0014], [0.1114, 0.0923, 0.0142, 0.011, 0.0071, 0.0067, 0.0067, 0.0059], [0.3347, 0.1157, 0.0426, 0.0353, 0.0138, 0.0101, 0.0101, 0.0069], [0.0982, 0.0248, 0.0193, 0.0182, 0.0182, 0.0171, 0.0117, 0.0117], [0.082, 0.0302, 0.0283, 0.0283, 0.0207, 0.0207, 0.0172, 0.0143], [0.155, 0.057, 0.0536, 0.0325, 0.0269, 0.0153, 0.0127, 0.0127], [0.0703, 0.0547, 0.0332, 0.0214, 0.013, 0.0122, 0.0115, 0.0079], [0.1035, 0.0858, 0.0431, 0.0149, 0.0149, 0.009, 0.0085, 0.0062], [0.1377, 0.0784, 0.0574, 0.0106, 0.01, 0.0094, 0.0078, 0.0073], [0.1083, 0.0898, 0.0452, 0.0095, 0.0084, 0.0069, 0.0069, 0.0054], [0.1119, 0.0818, 0.0496, 0.0118, 0.0072, 0.0063, 0.0056, 0.0049], [0.0733, 0.0504, 0.0504, 0.0392, 0.012, 0.0106, 0.0099, 0.0082], [0.0666, 0.0626, 0.0552, 0.0357, 0.0261, 0.023, 0.0158, 0.0096], [0.0938, 0.0778, 0.0645, 0.0416, 0.0252, 0.0223, 0.0185, 0.0153], [0.1862, 0.0685, 0.0442, 0.0344, 0.0173, 0.0153, 0.0153, 0.0135], [0.3026, 0.056, 0.0319, 0.0248, 0.0182, 0.0117, 0.011, 0.0097], [0.3562, 0.0659, 0.0177, 0.0147, 0.013, 0.0108, 0.0095, 0.0079], [0.4572, 0.0795, 0.0292, 0.0114, 0.0101, 0.0065, 0.0065, 0.0042], [0.5732, 0.0533, 0.0135, 0.0072, 0.0064, 0.0056, 0.005, 0.005], [0.7875, 0.0087, 0.0077, 0.0032, 0.0032, 0.0024, 0.0022, 0.0022], [0.5029, 0.0118, 0.0111, 0.0087, 0.0076, 0.0067, 0.0056, 0.0044], [0.1962, 0.0528, 0.0363, 0.0182, 0.0171, 0.0118, 0.0092, 0.0067], [0.1272, 0.0681, 0.0564, 0.0152, 0.0126, 0.0118, 0.0092, 0.0081], [0.2829, 0.1716, 0.0298, 0.0263, 0.0205, 0.0117, 0.011, 0.0103], [0.2464, 0.1094, 0.1027, 0.0852, 0.0244, 0.0215, 0.0123, 0.0102], [0.4609, 0.1165, 0.0486, 0.0429, 0.0216, 0.0158, 0.0096, 0.009], [0.4214, 0.1001, 0.083, 0.0536, 0.0185, 0.0174, 0.0163, 0.0073], [0.1636, 0.0641, 0.0531, 0.0499, 0.0469, 0.0469, 0.0389, 0.0322], [0.2233, 0.1354, 0.1354, 0.1055, 0.0565, 0.044, 0.0302, 0.0172], [0.4975, 0.0763, 0.0673, 0.0594, 0.0339, 0.0318, 0.0299, 0.0133], [0.3147, 0.1685, 0.0796, 0.0426, 0.0376, 0.0376, 0.0293, 0.0293], [0.3812, 0.1092, 0.0485, 0.0402, 0.0377, 0.0333, 0.0333, 0.0276], [0.8626, 0.0487, 0.0379, 0.0139, 0.0085, 0.0058, 0.0045, 0.0035], [0.9893, 0.0036, 0.0025, 0.0019, 0.0007, 0.0006, 0.0003, 0.0002], [0.7195, 0.2647, 0.0103, 0.0018, 0.0014, 0.0004, 0.0004, 0.0004]], "ranks": {}}, {"pos": 434, "top": [["<|endoftext|>", "  \n\n", " [\u2026]", "#", "  \n", "   \n", "\"", "\u2013"], ["\u2013", "#", "   \n", "  \n\n", "@", "   \n\n", ";", "["], ["\u2013", " \u2013", ";", ",", "?", " [\u2026]", ".", "["], ["odle", " Shemale", "\u4f46\u4e0d\u9650\u4e8e", " pornstar", "\u4eba\u554a", " Kasich", " Alqu", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["#", " (#", "\\$", " #", " (@", ":#", " [#", ",#"], [" \u200b\u200b", "#", " (#", " \\$", "\\$", " Gutenberg", " Reddit", " #"], [" \u200b\u200b", " #", " (#", "#", "s", " [#", ":", "\\$"], [" \u200b\u200b", " #", " (#", "#", " [#", " \u20ac", "\u20ac", ",#"], [" \u200b\u200b", " [#", " (#", " #", "#", ":", "\u200b\u200b", "'s"], [":", ",", "'s", ";", "s", " \u200b\u200b", "#", " (#"], [".", "'s", " #", ":", ",", "#", ";", "s"], ["'s", " #", " American", "s", " authors", " America", " Arabian", " US"], ["'s", ":", " American", ",", " \u00ab", " authors", "-friendly", "s"], [",", "'s", ":", " American", ";", "!", ".", "s"], [",", "'s", ";", "!", " American", " \u2014", "\u2014", " \""], ["'s", " American", "s", " \u2014", " authors", ",", " incredibly", " America"], [",", "'s", "s", " American", ";", " specifically", " often", " America"], ["'s", ",", " American", " professionals", " Wizards", " technology", " authors", " online"], ["'s", " American", ",", "s", " primarily", " Arabian", " online", " \u2014"], [" American", ",", " \u2014", " often", " primarily", "'s", " ultimately", "s"], [" American", "<|endoftext|>", " \u2014", " ultimately", " #", " often", " heavily", " primarily"], [" American", "utang", "\u6210\u4e86\u4e00", " Reddit", " Teixe", "\u6210\u4e3a\u4e2d\u56fd", "\u4e5f\u662f\u4e2d\u56fd", " modern"], [" American", " modern", " America", " #", " primarily", " ultimately", " heavily", " often"], [" American", " modern", " ,", " ultimately", " heavily", " often", " primarily", " and"], [" American", " heavily", " modern", " ultimately", " primarily", " #", " ,", " Turkish"], [" Microsoft", " American", " Egyptian", " Romanian", " Turkish", " heavily", " Hungarian", " modern"], [" Microsoft", " software", " American", " heavily", " Romanian", " technology", " Hungarian", " modern"], [" ,", " and", " heavily", "\n\n", " American", " often", " ultimately", " @"], [" Microsoft", " heavily", " software", " modern", " American", " \u2014", " primarily", " technology"], [" software", " Microsoft", " ...", " technology", " technologies", " modern", " [...]", "Microsoft"], [" software", " technology", " technologies", " Microsoft", " modern", " heavily", " primarily", " ..."], [" technology", " modern", " ...", " heavily", " primarily", " software", " often", " \u2014"], [" primarily", " often", " mostly", " heavily", " and", " ultimately", " ,", " modern"], [" primarily", " technology", " often", " heavily", " mostly", " software", " technologies", " typically"], [" primarily", " heavily", " software", " often", " mostly", " technology", " predominantly", " typically"], [" primarily", " \u2014", " software", " often", " heavily", " typically", " mostly", " predominantly"], [" software", " primarily", " often", " typically", " Microsoft", " heavily", " mostly", " \u2014"], [" software", " primarily", " often", " Microsoft", " typically", " mostly", " languages", " inherently"], [" software", " primarily", " often", " typically", " languages", " Microsoft", " language", " technology"], [" Java", " languages", " language", " software", " Microsoft", " native", " often", " programming"], [" software", " Java", " languages", " language", " programming", " Microsoft", " technology", " native"], [" Java", " software", " languages", " programming", " language", " Python", " Microsoft", " native"], [" software", " Java", " languages", " programming", " language", " automated", " technology", " algorithms"], [" Java", " software", " languages", " programming", " automated", " language", " technology", " Microsoft"], [" Java", " software", " inherently", " programming", " language", " languages", " technology", " automated"], [" inherently", " software", " Java", " often", " languages", " automated", " programming", " machines"], [" inherently", " software", " often", " Java", " algorithms", " workflows", " automated", " implementations"], [" inherently", " often", "'s", " typically", " frequently", " software", " workflows", " relies"], [" inherently", "'s", " frequently", " typically", " often", " constantly", " routinely", " inevitably"], [" inherently", "'s", "\u2014even", " relies", " typically", " constantly", " routinely", " workflows"], [" inherently", "/Linux", "\u2014even", "'s", " workflows", " relies", "/java", " requires"], [" inherently", "/Linux", " runtime", "\u2014even", "'s", "/XML", " requires", " relies"], [" inherently", "\u2014even", " runtime", " inherent", "\u2019s", " defaults", "\u5929\u751f\u7684", "'s"], [" inherently", "\u2014even", "\u2019s", " runtime", " inherent", " defaults", "'s", " generates"], [" garbage", " allocations", " inherently", " GC", "\u5783\u573e", " runtime", "'s", "\u2019s"], [" garbage", "\u5783\u573e", " GC", " allocations", " runtime", "GC", " IDisposable", " inherently"], [" garbage", " GC", "GC", "\u5783\u573e", "gc", "(gc", " Gar", " allocations"], [" GC", " garbage", "GC", "\u5783\u573e", " allocations", "gc", "(gc", " runtime"], [" GC", " garbage", "GC", " generates", "\u5783\u573e", "gc", " runtime", " allocations"], [" GC", " garbage", " generates", " runtime", " managed", " allocations", "GC", "\u2019s"], [" GC", " garbage", " managed", " runtime", "'s", " generates", " allocations", "\u2019s"], ["\u2019", "'", " GC", " managed", " generates", " garbage", " runtime", " allocations"], ["\u2019", "'", " GC", "\u2018", " generates", " managed", " allocations", "`"]], "p": [[0.3135, 0.1307, 0.1018, 0.0956, 0.0481, 0.0352, 0.0257, 0.0156], [0.2085, 0.1624, 0.0527, 0.0437, 0.0249, 0.0206, 0.0206, 0.0182], [0.4692, 0.0983, 0.0868, 0.072, 0.0436, 0.03, 0.0219, 0.0161], [0.0153, 0.0077, 0.0056, 0.0018, 0.0017, 0.0017, 0.0016, 0.0016], [0.2344, 0.1107, 0.0761, 0.0715, 0.0205, 0.0141, 0.0132, 0.0132], [0.1566, 0.0069, 0.005, 0.0039, 0.0037, 0.0037, 0.0027, 0.0024], [0.0634, 0.0559, 0.0436, 0.0299, 0.0133, 0.0103, 0.0091, 0.0081], [0.0419, 0.0394, 0.0239, 0.0175, 0.0113, 0.0094, 0.005, 0.0044], [0.2168, 0.0276, 0.0259, 0.0167, 0.0122, 0.0115, 0.0108, 0.0101], [0.0319, 0.0234, 0.0142, 0.0071, 0.0063, 0.0049, 0.0041, 0.0038], [0.0686, 0.0534, 0.0534, 0.0443, 0.0416, 0.0345, 0.0237, 0.0163], [0.0196, 0.0184, 0.0082, 0.0039, 0.003, 0.0023, 0.0023, 0.0022], [0.041, 0.016, 0.0091, 0.0055, 0.0046, 0.0041, 0.0034, 0.0034], [0.101, 0.0575, 0.0165, 0.0078, 0.0078, 0.0047, 0.0039, 0.0029], [0.1352, 0.0439, 0.0195, 0.0126, 0.0126, 0.0126, 0.0104, 0.0086], [0.0163, 0.0154, 0.0064, 0.0057, 0.0047, 0.0044, 0.0036, 0.003], [0.0658, 0.0274, 0.0138, 0.0101, 0.0051, 0.0035, 0.0033, 0.0024], [0.011, 0.0055, 0.004, 0.0022, 0.002, 0.0019, 0.0018, 0.0018], [0.0137, 0.0129, 0.0073, 0.0069, 0.0035, 0.0033, 0.0031, 0.0031], [0.0161, 0.0098, 0.0072, 0.0059, 0.0056, 0.0056, 0.0038, 0.0036], [0.0229, 0.0178, 0.0084, 0.007, 0.0054, 0.0051, 0.0045, 0.0042], [0.004, 0.0031, 0.0026, 0.0018, 0.0017, 0.0016, 0.0015, 0.0012], [0.0441, 0.0119, 0.0046, 0.0041, 0.0039, 0.0036, 0.003, 0.0028], [0.0268, 0.0093, 0.0087, 0.0068, 0.0068, 0.0064, 0.005, 0.0039], [0.0289, 0.0155, 0.0083, 0.0083, 0.0073, 0.0069, 0.0061, 0.0053], [0.0384, 0.0299, 0.0281, 0.0264, 0.015, 0.015, 0.0141, 0.0097], [0.0471, 0.0237, 0.0209, 0.0144, 0.0144, 0.0119, 0.0093, 0.0087], [0.0644, 0.0367, 0.0163, 0.0144, 0.0127, 0.0082, 0.0082, 0.0082], [0.0244, 0.0168, 0.0158, 0.0108, 0.0084, 0.0074, 0.007, 0.007], [0.0561, 0.0265, 0.0249, 0.0161, 0.0133, 0.0118, 0.0111, 0.0104], [0.1122, 0.0725, 0.0302, 0.0267, 0.0208, 0.0111, 0.0098, 0.0092], [0.0494, 0.03, 0.03, 0.0265, 0.0249, 0.0182, 0.0171, 0.0151], [0.0544, 0.0351, 0.031, 0.0257, 0.0241, 0.0188, 0.0156, 0.0129], [0.0918, 0.0523, 0.0383, 0.036, 0.0298, 0.0298, 0.0181, 0.0103], [0.1037, 0.0591, 0.0522, 0.0337, 0.0217, 0.0204, 0.0169, 0.0159], [0.1067, 0.1002, 0.0689, 0.0571, 0.027, 0.0253, 0.0238, 0.0154], [0.0947, 0.089, 0.0651, 0.0371, 0.0348, 0.0199, 0.0175, 0.0145], [0.0812, 0.0717, 0.0408, 0.0299, 0.0281, 0.015, 0.0117, 0.011], [0.0695, 0.0449, 0.0349, 0.029, 0.0199, 0.0199, 0.0187, 0.0146], [0.069, 0.0572, 0.0393, 0.0306, 0.0254, 0.0154, 0.0128, 0.012], [0.1204, 0.1063, 0.0569, 0.0367, 0.0324, 0.0209, 0.0174, 0.0144], [0.2064, 0.0759, 0.049, 0.0359, 0.0297, 0.0232, 0.018, 0.015], [0.0985, 0.0817, 0.0527, 0.0437, 0.0249, 0.0194, 0.0194, 0.0161], [0.071, 0.0626, 0.0357, 0.0296, 0.0261, 0.0216, 0.0179, 0.0131], [0.0626, 0.0588, 0.0203, 0.0179, 0.0169, 0.0149, 0.0149, 0.0149], [0.0485, 0.0485, 0.0378, 0.0179, 0.0158, 0.0148, 0.0139, 0.0123], [0.1426, 0.0299, 0.0264, 0.0205, 0.015, 0.011, 0.011, 0.011], [0.4263, 0.0273, 0.0226, 0.0199, 0.0165, 0.0083, 0.0073, 0.0073], [0.6801, 0.0181, 0.017, 0.016, 0.0133, 0.0076, 0.0063, 0.0049], [0.727, 0.0142, 0.0118, 0.011, 0.0092, 0.0059, 0.0056, 0.0041], [0.6483, 0.0162, 0.0077, 0.0056, 0.0053, 0.0053, 0.0049, 0.0036], [0.5806, 0.0175, 0.0121, 0.0121, 0.0083, 0.0078, 0.0069, 0.0064], [0.8973, 0.0078, 0.0073, 0.0057, 0.005, 0.0025, 0.0024, 0.0021], [0.7777, 0.0266, 0.0134, 0.0111, 0.0098, 0.0072, 0.0072, 0.0043], [0.6172, 0.0737, 0.0737, 0.0255, 0.0239, 0.0211, 0.0164, 0.0069], [0.8988, 0.0507, 0.0145, 0.0088, 0.0042, 0.0022, 0.0017, 0.0011], [0.6611, 0.2756, 0.029, 0.0256, 0.0021, 0.0014, 0.001, 0.0009], [0.5471, 0.3319, 0.074, 0.01, 0.0069, 0.0054, 0.0047, 0.0037], [0.6092, 0.2878, 0.0567, 0.0112, 0.0087, 0.0036, 0.0032, 0.0022], [0.3187, 0.1706, 0.1172, 0.1035, 0.0627, 0.0381, 0.0169, 0.0159], [0.3415, 0.1424, 0.0632, 0.0632, 0.0593, 0.0558, 0.0338, 0.0318], [0.6584, 0.1469, 0.0694, 0.0199, 0.0187, 0.0137, 0.0083, 0.0065], [0.9902, 0.0097, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 435, "top": [["\u2019", "\uff0e", "\u00ac", "i", " \u2013", " \u2018", "\u201d", " \u2019"], [" \u2019", "\u2019", "\u00ac", "\uff0e", "\u2019**", " \u2018", "i", "  \n\n"], ["\u2019", " \u2019", "i", " \u2018", "\u2018", "\u2026\u201d", "\u00ac", "\uff0e"], [" \u2019", "\u2019**", " **\u2018", "\uff0d", "\u2019)", ")\u2019", "\u2019", "i"], ["s", "i", " \u2019", "er", "\u00ac", "\u2019**", "\u2019", ")\u2019"], ["s", "i", "er", " \u2019", "\u2019**", "\u2019", "\u00ac", ")\u2019"], ["s", "i", "er", "\u00ac", " \u2019", "\u2019", "\u2019**", "es"], ["s", "i", "er", "\u00ac", " \u2019", "\u2019**", "\u2019", ")\u2019"], ["s", "i", " \u2019", "\u2019", "\u00ac", "\u2019**", "er", "\u2026\u201d"], ["s", "i", " \u2019", "\u00ac", "\u2019", "\u2019**", "er", ")\u2019"], ["s", "i", " \u2019", "\u00ac", "\u2019", "er", "\u2019**", ")\u2019"], ["s", "i", " \u2019", "\u2019**", "\u00ac", "er", ")\u2019", "\u2019"], ["s", "i", " \u2019", "\u2019**", "\u00ac", "er", ")\u2019", "\u2019"], ["s", "i", " \u2019", "\u00ac", "\u2019**", "er", ")\u2019", "\u2019"], ["s", "i", " \u2019", "\u00ac", "er", "\u2019", "\u2019**", ")\u2019"], ["s", " \u2019", "i", "\u00ac", "\u2019**", "er", ")\u2019", "\u2019"], ["s", "i", " \u2019", "er", "\u00ac", "\u2019", ")\u2019", "\u2019**"], ["s", "i", " \u2019", "\u2026\u201d", "\u00ac", "\u2019", "er", ")\u2019"], ["s", "i", " \u2019", "\u2026\u201d", "\u2019", "er", "...\u201d", "\u201d\u2014"], ["s", "i", " \u2019", "\u2019", "er", "\u2026\u201d", "\u201d\u2014", ")\u2019"], ["s", "i", " \u2019", "er", "\u2019", "\u201d\u2014", "\u2014", "\u2026\u201d"], ["s", " \u2019", "i", "er", "\u2019**", ")\u2019", "\u2019\u2019", "\u103a"], ["s", "i", " \u2019", "er", "\u2019\u2019", ")\u2019", "\u103a", "\r\n\r\n"], ["s", "i", " \u2019", "er", "es", "\r\n\r\n", "o", " myriad"], ["s", "i", " \u2019", "\r\n\r\n", " \r\n\r\n", "er", "  \n\n", " \r\n"], ["s", " \u2019", "i", "\r\n\r\n", "er", " \r\n\r\n", "\r\n\n", "\u2019**"], ["s", " \u2019", "i", "\r\n\r\n", "er", " \r\n\r\n", "\r\n\n", "\u2026\u201d"], [" \u2019", "s", "\r\n\r\n", "i", " \r\n\r\n", "er", "  \n\n", " \u00ad"], [" \u2019", "s", "\r\n\r\n", "i", " \r\n\r\n", "er", "\u2026\u201d", "  \n\n"], ["s", " \u2019", "i", "er", "\r\n\r\n", "\u2011", "\u2026\u201d", " \r\n\r\n"], ["s", " \u2019", "er", "i", "\u2011", " \u2014", "\u2019s", "\u2019"], ["s", " \u2019", "er", "i", "\u2011", " \u2014", "\u2019s", " \u2018"], ["s", " \u2019", "er", "i", "\u2011", "\u2019s", " \u2018", " heavily"], [" \u2019", "s", "\u2011", "\u2014even", "\u201d\u2014", "\u2019s", "er", "i"], [" \u2019", "s", "\u201d\u2014", "\u2014even", " notoriously", "\u2014or", "\u2011", "er"], ["\u201d\u2014", " \u2019", "\u2014even", "\u2014or", "\u2011", " \u2014", "s", " notoriously"], ["\u2014even", " notoriously", " \u2019", "\u201d\u2014", " inherently", "\u2014or", " \u2014", "\u52a8\u8f84"], ["\u2014even", " inherently", " \u2019", " notoriously", "\u201d\u2014", "\u2011", "\u2014or", " \u2014"], ["\u2014even", " inherently", " notoriously", " \u2019", "\u2011", "\u201d\u2014", " reliance", "\u2014or"], ["\u2014even", " inherently", "\u2011", "\u201d\u2014", " notoriously", " \u2019", " reliance", " garbage"], [" inherently", " garbage", " inefficient", " reliance", " notoriously", "\u2014even", "\u2011", " lifecycle"], [" inherently", " inefficient", " garbage", "\u2014even", " lifecycle", " reliance", " automated", " notoriously"], [" inherently", " inefficient", " garbage", " automated", " automatic", " reliance", " unpredictable", " notoriously"], [" inherently", " automated", " automatic", " inefficient", " reliance", " unpredictable", " notoriously", " inherent"], [" inherently", " reliance", " automated", " unpredictable", " inefficient", " automatic", " inherent", " notoriously"], [" inherently", " reliance", " automated", " automatic", " unpredictable", " inefficient", " inherent", " notoriously"], [" inherently", " reliance", " automated", " automatic", " unpredictable", " inherent", " lifecycle", " iterative"], [" inherently", " reliance", " inherent", " automated", " unpredictable", " automatic", "\u2014even", " periodic"], [" inherently", " reliance", "\u2014even", " unpredictable", " inherent", " automatic", " automated", " lifecycle"], ["\u2014even", " inherently", " reliance", " inherent", " unpredictable", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " automatic"], ["\u2014even", " inherently", " reliance", "\u2019s", " inherent", ")\u2019", "\u2019:", " unpredictable"], ["\u2014even", " reliance", " inherently", " unpredictable", "\u201d\u2014", " inherent", " automatic", " lifecycle"], [" inherently", " reliance", "\u2014even", " inherent", " unpredictable", " automatic", " JIT", " unpredict"], [" reliance", " inherent", "\u2014even", " inherently", " unpredictable", " runtime", " JIT", " unpredict"], [" garbage", " GC", "\u5783\u573e", "GC", "malloc", "gc", " JIT", " memory"], [" garbage", "\u5783\u573e", " GC", "GC", "gc", "\u5783\u573e\u5904\u7406", ".gc", "_GC"], [" GC", " garbage", "GC", "gc", "\u5783\u573e", "_GC", " gc", ".gc"], [" GC", "GC", "gc", " garbage", "_GC", " gc", "(gc", ".gc"], [" GC", "GC", " garbage", "gc", "_GC", " gc", "(gc", "\u5783\u573e"], [" GC", "GC", " garbage", " managed", "gc", "_GC", "managed", " Managed"], [" managed", " GC", " garbage", "GC", " gener", " Managed", "managed", "\u6258\u7ba1"], [" managed", " GC", " garbage", " Managed", "managed", " gener", "GC", "\u6258\u7ba1"], [" managed", " GC", "GC", "s", " garbage", "managed", " Managed", "\u6258\u7ba1"]], "p": [[0.3283, 0.3283, 0.094, 0.0732, 0.0223, 0.0154, 0.012, 0.0093], [0.3159, 0.2787, 0.0799, 0.0705, 0.0705, 0.0622, 0.0377, 0.0139], [0.8455, 0.0372, 0.0289, 0.0255, 0.0175, 0.0137, 0.005, 0.005], [0.8653, 0.0912, 0.018, 0.0031, 0.0028, 0.0024, 0.0021, 0.0019], [0.5948, 0.2479, 0.0805, 0.0627, 0.0066, 0.004, 0.0013, 0.0003], [0.9671, 0.0201, 0.0107, 0.0008, 0.0005, 0.0003, 0.0002, 0.0001], [0.9967, 0.0022, 0.0008, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9924, 0.0052, 0.0015, 0.0003, 0.0002, 0.0001, 0.0001, 0.0], [0.8922, 0.0444, 0.0305, 0.0127, 0.006, 0.0025, 0.0022, 0.002], [0.9287, 0.0318, 0.0193, 0.0117, 0.0026, 0.0016, 0.0011, 0.0008], [0.9461, 0.0367, 0.0056, 0.0056, 0.0018, 0.0014, 0.0006, 0.0004], [0.8679, 0.049, 0.0381, 0.0159, 0.008, 0.0071, 0.0023, 0.0015], [0.9247, 0.0246, 0.018, 0.0103, 0.008, 0.0043, 0.0017, 0.001], [0.9065, 0.0374, 0.0177, 0.0121, 0.0083, 0.0057, 0.002, 0.0006], [0.8605, 0.0623, 0.0428, 0.026, 0.0023, 0.0012, 0.001, 0.0005], [0.908, 0.0452, 0.0311, 0.0074, 0.0018, 0.0014, 0.001, 0.0007], [0.9705, 0.0228, 0.0051, 0.0007, 0.0005, 0.0002, 0.0, 0.0], [0.8958, 0.0649, 0.0239, 0.0032, 0.0032, 0.0017, 0.0013, 0.0011], [0.8194, 0.1614, 0.0071, 0.0038, 0.002, 0.0013, 0.0007, 0.0007], [0.8461, 0.1145, 0.0199, 0.0047, 0.0025, 0.0025, 0.0016, 0.0013], [0.8939, 0.0942, 0.0041, 0.0021, 0.0005, 0.0005, 0.0005, 0.0004], [0.8018, 0.0701, 0.0658, 0.0107, 0.0026, 0.0019, 0.0014, 0.0012], [0.7376, 0.1452, 0.0686, 0.0119, 0.0016, 0.0008, 0.0008, 0.0008], [0.8092, 0.1241, 0.0457, 0.009, 0.0003, 0.0003, 0.0003, 0.0002], [0.635, 0.1103, 0.0669, 0.0629, 0.0337, 0.0075, 0.0058, 0.0043], [0.6313, 0.0968, 0.0245, 0.0179, 0.0158, 0.0131, 0.0109, 0.0066], [0.6863, 0.0929, 0.0439, 0.0364, 0.025, 0.0067, 0.0049, 0.0032], [0.4904, 0.2044, 0.1094, 0.0294, 0.0215, 0.0102, 0.0079, 0.007], [0.4784, 0.2902, 0.0608, 0.0418, 0.012, 0.0113, 0.0037, 0.0032], [0.4889, 0.3807, 0.0294, 0.0157, 0.0051, 0.004, 0.0035, 0.0035], [0.7663, 0.1175, 0.0337, 0.0262, 0.004, 0.0017, 0.0017, 0.0014], [0.5329, 0.2853, 0.0466, 0.0249, 0.0098, 0.0036, 0.0036, 0.0032], [0.5917, 0.1921, 0.0456, 0.0168, 0.0158, 0.0042, 0.0037, 0.0037], [0.3653, 0.143, 0.056, 0.041, 0.0234, 0.0219, 0.0171, 0.0117], [0.1239, 0.1027, 0.1027, 0.0585, 0.026, 0.0178, 0.0148, 0.0096], [0.1761, 0.1554, 0.1288, 0.0347, 0.0238, 0.0238, 0.0224, 0.021], [0.1365, 0.0778, 0.0534, 0.0502, 0.0345, 0.0286, 0.0119, 0.0105], [0.1658, 0.0887, 0.0833, 0.061, 0.0419, 0.0271, 0.0271, 0.0128], [0.2073, 0.0864, 0.0558, 0.0492, 0.0408, 0.036, 0.0281, 0.0193], [0.1305, 0.0955, 0.0656, 0.0351, 0.0291, 0.0274, 0.0241, 0.0188], [0.0744, 0.0451, 0.0424, 0.0291, 0.0213, 0.02, 0.02, 0.0138], [0.0997, 0.0471, 0.0471, 0.0415, 0.0252, 0.0237, 0.0173, 0.0135], [0.1318, 0.0516, 0.0516, 0.0402, 0.0202, 0.0157, 0.0148, 0.0139], [0.1457, 0.0732, 0.0473, 0.0444, 0.0444, 0.0325, 0.021, 0.021], [0.1537, 0.1124, 0.0726, 0.0469, 0.0414, 0.0414, 0.0152, 0.0143], [0.1834, 0.1428, 0.0765, 0.0494, 0.0436, 0.0206, 0.0182, 0.0125], [0.241, 0.1462, 0.0573, 0.0393, 0.037, 0.027, 0.0186, 0.0106], [0.5052, 0.0775, 0.0415, 0.0366, 0.0285, 0.0236, 0.0196, 0.0126], [0.3211, 0.1614, 0.0435, 0.0338, 0.0299, 0.0248, 0.0233, 0.0124], [0.2639, 0.2055, 0.0805, 0.0336, 0.0278, 0.0231, 0.0131, 0.0102], [0.2277, 0.0576, 0.0308, 0.0308, 0.0225, 0.0212, 0.0199, 0.0128], [0.1951, 0.0463, 0.0409, 0.0361, 0.0206, 0.015, 0.011, 0.011], [0.1185, 0.0765, 0.0675, 0.0634, 0.0494, 0.0151, 0.0133, 0.0125], [0.142, 0.0976, 0.0809, 0.063, 0.0317, 0.017, 0.017, 0.017], [0.7995, 0.0398, 0.0351, 0.0213, 0.0114, 0.0089, 0.0078, 0.0069], [0.919, 0.0754, 0.0029, 0.0009, 0.0005, 0.0001, 0.0001, 0.0001], [0.4674, 0.364, 0.1339, 0.016, 0.0141, 0.0017, 0.001, 0.0008], [0.6966, 0.2563, 0.021, 0.0186, 0.0025, 0.002, 0.0012, 0.0009], [0.8122, 0.1599, 0.0191, 0.0048, 0.002, 0.0005, 0.0004, 0.0003], [0.6498, 0.1643, 0.1129, 0.0367, 0.0064, 0.0056, 0.0044, 0.0032], [0.3618, 0.3618, 0.1175, 0.0358, 0.0262, 0.014, 0.0116, 0.0075], [0.7216, 0.1254, 0.0263, 0.0181, 0.0132, 0.0117, 0.011, 0.0075], [0.5581, 0.2053, 0.038, 0.0335, 0.0179, 0.0149, 0.014, 0.0055]], "ranks": {}}, {"pos": 436, "top": [["\u2013", "\u00a0\u00a0", "\u00a0", "\u2013and", " ", ".", " \u2013", " \u00a0"], ["\u2013and", "**\u2013", " \u2013**", "\u2013\u2013", "\u2013", " **\u2013", "  \r\n", " V\u00e9ri"], ["\u2013and", "\u2013", "**\u2013", "\u2013\u2013", " \u2013", " **\u2013", ".\u2013", " \u2013,"], ["\uff3f\uff3f", "----------</", "\uff0d\uff0d", "-------------</", " **\u2018", "aruhi", " **:**", "---</"], ["  \n\n", "  \n  \n", "  \n\n\n", "   \n", "  \n", "  \r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", "   \n", "  \n", "  ", "  \n\n\n", " **\u2013", "   \n\n", " \n\n"], ["  \n\n", "  \n", " \n\n", " \n  \n", "\u00a0", "   \n", "  \n  \n", "  \r\n"], ["  \n\n", "  \n", "   \n", " \n  \n", "  \r\n", "   \n\n", " \n\n", "  "], ["  \n\n", "  \n", " \n\n", "   \n\n", " \n  \n", "  \n\n\n", "   \n", "  \r\n"], ["\u2013", "  \n\n", "\u2013\u2013", "  \n", "\u2013and", " \n  \n", "  \n  \n", " \u00ad"], ["  \n\n", "\u2013", "\u00a0", "...", " ", "  \n", "\u2026", " \n  \n"], ["  \n\n", " _", " \u00ad", "\u2013\u2013", " \n  \n", "  \r\n", " ______", " **"], ["\u2013\u2013", " \u00ad", "\u2013", " \u2013", " pricey", " hefty", " ", " gritty"], ["\u2013", "\u2013\u2013", " \u2013", " ", " gritty", " \u00ad", " pricey", " myriad"], [" ", " \u00ad", " myriad", "  \n\n", "\u2013", " \u2013", " \\\"", " famed"], [" myriad", " hefty", " gritty", " pricey", " sprawling", " savvy", " arguably", " \u00ad"], [" myriad", "\u2013", " \u2013", " ", " seemingly", " arguably", " heavily", " nearly"], [" myriad", " gritty", " savvy", " heavily", " \u2013", "\u2013", " sprawling", " hefty"], [" myriad", " gritty", " seemingly", " sprawling", " arguably", " heavily", " largely", " hefty"], [" myriad", " seemingly", " heavily", " largely", " sprawling", "\u2014or", " swiftly", "  \n\n"], ["<|endoftext|>", " \n\n", "  \n\n", " myriad", "\n\n", " heavily", " seemingly", " nearly"], [" ``", " heavily", " \\\"", " myriad", " ''", " sprawling", " gritty", " largely"], [" ``", " ''", " heavily", " \\\"", " --", " largely", " modern", " myriad"], [" --", " ``", " much", " ,", " heavily", " largely", " more", " nearly"], [" ``", " heavily", " \n\n", " \\\"", " largely", " \n  \n", " ''", "  \n\n"], [" heavily", " ``", " \\\"", " largely", " \n\n", " **", " \n  \n", " complex"], [" heavily", " ``", " \n\n", " complex", " \\\"", " largely", " technology", " rapidly"], [" \n\n", " ,", " heavily", "\n\n", " over", " much", " largely", " rapidly"], [" \n\n", " heavily", "\n\n", " \\\"", "  \n\n", " \n  \n", " rapidly", " complex"], [" ...", " \n  \n", " \n", " \n\n", " \\\"", " heavily", " **", " technology"], [" heavily", " technology", " complex", " \n", " \n\n", " often", " ...", " modern"], [" heavily", " ", " complex", " modern", " high", " many", " often", " technology"], [" heavily", " often", " technology", " modern", " complex", " high", " heavy", " many"], [" heavily", " technology", " complex", " often", " tech", " traditional", " heavy", " modern"], [" heavily", " complex", " technology", " tech", " traditional", " typically", " heavy", " often"], [" heavily", " complex", " often", " typically", " traditional", "-heavy", " increasingly", " multiple"], [" heavily", " complex", " multiple", " often", " internal", " myriad", " complexity", " software"], [" complex", " heavily", " often", " software", " multiple", " internal", " complexity", " many"], [" automated", " memory", " garbage", " heavily", " automation", " complex", " algorithms", " technology"], [" garbage", " memory", " automated", " cleanup", " scav", " recycling", " Java", " heavily"], [" memory", " garbage", " fragmentation", " automated", " recycling", " Java", " Memory", " scav"], [" memory", " garbage", " fragmentation", " recycling", " cleanup", " automated", " scav", " fragmented"], [" garbage", " fragmentation", " automated", " memory", " recycling", " scav", " cleanup", " automatic"], [" automated", " garbage", " fragmentation", " automatic", " memory", " fragmented", " automation", " scav"], [" fragmentation", " automated", " garbage", " fragmented", " scav", " automatic", " recycling", " memory"], [" automated", " fragmentation", " garbage", " automatic", " fragmented", " scav", " rapid", " automation"], [" automated", " fragmentation", " garbage", " frequent", " automatic", " fragmented", " constantly", " rapid"], [" automated", " fragmentation", " frequent", " fragmented", " inherently", " automatic", " frequently", " constantly"], [" fragmentation", " inherently", " automated", " frequent", " fragmented", " epis", " ubiquitous", " automatic"], [" fragmentation", " inherently", " frequent", " fragmented", " ubiquitous", " automated", "_HEAP", " reliance"], [" inherently", " fragmentation", "_HEAP", " fragmented", " automated", " reliance", " ubiquitous", "_malloc"], [" fragmentation", "_malloc", " inherently", " automated", " fragmented", " reliance", "_HEAP", " iterative"], [" inherently", " reliance", "_malloc", " runtime", " fragmentation", " JIT", "_HEAP", " inherent"], [" reliance", " inherently", " inherent", " runtime", " JIT", " garbage", "_malloc", " fragmentation"], [" garbage", "alloc", "malloc", "_malloc", " allocator", " memory", "\u5783\u573e", " GC"], [" garbage", "\u5783\u573e", " GC", " allocator", "alloc", " heap", "GC", " memory"], [" GC", " garbage", "GC", "\u5783\u573e", "gc", "_GC", ".gc", " gc"], [" GC", "GC", " garbage", "gc", "_GC", " gc", ".gc", "(gc"], [" GC", "GC", " garbage", "_GC", "gc", "_gc", " gc", "(gc"], [" GC", " managed", " garbage", " allocator", "GC", "managed", " JIT", " Managed"], [" managed", " GC", " gener", " garbage", " allocator", "managed", " Managed", " JIT"], [" managed", " GC", " allocator", " allocation", " Managed", " gener", "managed", " garbage"], [" managed", " GC", " allocator", " default", " garbage", " Managed", " allocation", " automatic"]], "p": [[0.6139, 0.1993, 0.0571, 0.0369, 0.021, 0.0144, 0.0136, 0.0053], [0.0717, 0.0633, 0.0103, 0.008, 0.0071, 0.0071, 0.0038, 0.0032], [0.4544, 0.4544, 0.0479, 0.0121, 0.0073, 0.0057, 0.0039, 0.0031], [0.0092, 0.0081, 0.0076, 0.0036, 0.0034, 0.0026, 0.0021, 0.0021], [0.7362, 0.0285, 0.0209, 0.0209, 0.0173, 0.0153, 0.0119, 0.0105], [0.7759, 0.0637, 0.0386, 0.0171, 0.0134, 0.0118, 0.0118, 0.0098], [0.8106, 0.1409, 0.009, 0.0079, 0.0062, 0.0062, 0.0033, 0.0023], [0.6122, 0.1754, 0.0731, 0.0345, 0.0237, 0.0185, 0.0077, 0.006], [0.8991, 0.024, 0.0211, 0.0165, 0.0128, 0.0078, 0.0047, 0.002], [0.3582, 0.1692, 0.0964, 0.0549, 0.0516, 0.0402, 0.0259, 0.0202], [0.3475, 0.1641, 0.0996, 0.0684, 0.0604, 0.0415, 0.039, 0.0236], [0.1051, 0.0599, 0.0496, 0.0387, 0.0363, 0.0341, 0.0321, 0.025], [0.0684, 0.0415, 0.0304, 0.0252, 0.0196, 0.0162, 0.0135, 0.0127], [0.0558, 0.0318, 0.0264, 0.0205, 0.0193, 0.016, 0.0141, 0.0141], [0.0475, 0.0394, 0.0288, 0.0271, 0.0271, 0.0186, 0.0128, 0.012], [0.0521, 0.0192, 0.0149, 0.014, 0.014, 0.0132, 0.0109, 0.0103], [0.0514, 0.0426, 0.0332, 0.0243, 0.0108, 0.0089, 0.0084, 0.0079], [0.0204, 0.0124, 0.0096, 0.0085, 0.008, 0.0075, 0.0075, 0.0075], [0.0489, 0.0231, 0.0159, 0.0124, 0.0116, 0.0116, 0.0102, 0.0102], [0.0564, 0.0195, 0.0183, 0.0152, 0.0126, 0.0104, 0.0098, 0.0092], [0.5609, 0.1176, 0.067, 0.0075, 0.0055, 0.0043, 0.0036, 0.0033], [0.0942, 0.0154, 0.0136, 0.0113, 0.0088, 0.006, 0.005, 0.005], [0.4486, 0.0646, 0.0185, 0.0174, 0.0174, 0.0064, 0.0064, 0.005], [0.0379, 0.0334, 0.0277, 0.026, 0.0245, 0.0203, 0.0168, 0.0102], [0.0607, 0.0536, 0.0473, 0.0392, 0.0238, 0.0163, 0.0127, 0.012], [0.1158, 0.0426, 0.0376, 0.0201, 0.0147, 0.0138, 0.0108, 0.0108], [0.0924, 0.041, 0.0265, 0.0194, 0.0151, 0.0151, 0.0133, 0.0117], [0.1277, 0.0603, 0.0389, 0.0303, 0.0153, 0.0143, 0.0119, 0.0112], [0.2899, 0.0536, 0.0325, 0.0238, 0.0197, 0.0144, 0.0136, 0.012], [0.0995, 0.0775, 0.05, 0.05, 0.0441, 0.0366, 0.0344, 0.0323], [0.0694, 0.0477, 0.0421, 0.0328, 0.029, 0.0199, 0.0199, 0.0176], [0.0833, 0.0288, 0.027, 0.0239, 0.0239, 0.0239, 0.0211, 0.0198], [0.1295, 0.0308, 0.024, 0.0225, 0.0225, 0.0211, 0.0187, 0.0165], [0.1712, 0.0556, 0.0359, 0.0204, 0.0169, 0.0169, 0.015, 0.014], [0.2414, 0.0307, 0.0254, 0.0211, 0.0145, 0.0145, 0.0128, 0.012], [0.1363, 0.0568, 0.0501, 0.0286, 0.0286, 0.0144, 0.0144, 0.0135], [0.08, 0.0623, 0.0294, 0.0229, 0.019, 0.0139, 0.0139, 0.0131], [0.0773, 0.0322, 0.0208, 0.0173, 0.0173, 0.0119, 0.0111, 0.0098], [0.0594, 0.0558, 0.0408, 0.0218, 0.0193, 0.0181, 0.015, 0.0141], [0.145, 0.0997, 0.0184, 0.0153, 0.0153, 0.0153, 0.0144, 0.0127], [0.2195, 0.0713, 0.0246, 0.0217, 0.0159, 0.0149, 0.014, 0.0132], [0.177, 0.1074, 0.0575, 0.0448, 0.042, 0.0395, 0.0187, 0.0113], [0.1073, 0.089, 0.0693, 0.0574, 0.042, 0.0348, 0.0307, 0.0175], [0.1645, 0.0686, 0.0605, 0.0391, 0.0268, 0.0173, 0.0163, 0.0153], [0.107, 0.0887, 0.0691, 0.0326, 0.0186, 0.0175, 0.0154, 0.0145], [0.1459, 0.0689, 0.0474, 0.027, 0.027, 0.0186, 0.0174, 0.0136], [0.1035, 0.0627, 0.0316, 0.0316, 0.0278, 0.0217, 0.0204, 0.0169], [0.1067, 0.0885, 0.0781, 0.0347, 0.0287, 0.0254, 0.0224, 0.021], [0.1774, 0.0652, 0.0613, 0.0576, 0.0541, 0.0199, 0.0165, 0.0121], [0.2469, 0.0967, 0.0518, 0.0486, 0.023, 0.0216, 0.0203, 0.0168], [0.0823, 0.0726, 0.0531, 0.0172, 0.0162, 0.0126, 0.0092, 0.0087], [0.1234, 0.0426, 0.0401, 0.0312, 0.0312, 0.0293, 0.0275, 0.0122], [0.0907, 0.0456, 0.0402, 0.0402, 0.0355, 0.0313, 0.0277, 0.0215], [0.0745, 0.058, 0.0545, 0.0512, 0.0481, 0.0331, 0.0292, 0.0166], [0.5717, 0.0877, 0.0532, 0.0414, 0.0365, 0.0222, 0.0222, 0.0196], [0.945, 0.047, 0.003, 0.0007, 0.0005, 0.0004, 0.0003, 0.0003], [0.529, 0.412, 0.0434, 0.0086, 0.0031, 0.0013, 0.0008, 0.0007], [0.8789, 0.0817, 0.0301, 0.0036, 0.0017, 0.0012, 0.0009, 0.0008], [0.9231, 0.0521, 0.0217, 0.001, 0.0008, 0.0003, 0.0003, 0.0002], [0.6568, 0.1661, 0.0476, 0.0476, 0.0327, 0.0083, 0.0064, 0.005], [0.7635, 0.1171, 0.0158, 0.0158, 0.0158, 0.0123, 0.0096, 0.0085], [0.8568, 0.0483, 0.0167, 0.0084, 0.0084, 0.0079, 0.0065, 0.0045], [0.879, 0.0722, 0.0076, 0.0049, 0.0046, 0.0041, 0.0038, 0.0019]], "ranks": {}}, {"pos": 437, "top": [[".", " \u2013", "\u2026.", " ", ",", "\u2026", "\u2013", "\u2026.."], ["  \n\n", "  \r\n\r\n", "**\u2013", " \u2013,", "  ", " **\u2013", "  \r\n", "\u2013"], ["\u2013", "\u2026.", "\u2026..", "[\u2026", " \u2013", ".\u2013", "\u2026,", "\u2026"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " **\u201e", " milfs", " **\u00ab", "ettor", " ;;^", " **\u300c"], ["ed", " )->", " gated", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "edly", "===\"", " **\u201e", "\u4e8b\u534a\u529f\u500d"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " )->", " **\"", "siz", "gregate", " **\u201c", " \").", "enticated"], [" **\u00ab", " **\"", " **\u2014", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u300c", " **\u201e", "\u17cb", "ettor"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u00ab", " **\u201e", " **\u2014", " **\"", " **\u300c", "\u17cb", " )->"], [" **\u2014", " **\u201e", " **\u00ab", "\u9053\u8fdc", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "uncio", "\u17cb", "utel"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u6e21\u5047", "\u52c7\u5f80\u76f4\u524d", "\u8eab\u4e34\u5176\u5883", "\u30ef\u30af\u30c1\u30f3", "\u4e24\u5b66\u4e00\u505a", " Gabrie", "\u8033\u719f\u80fd\u8be6"], ["\u4e0d\u53ef\u601d\u8bae", "\u8eab\u4e34\u5176\u5883", " **\u2014", " **\"", "\u6599\u7684", "\u6e21\u5047", "s", ",opt"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u00ab", "\u6e21\u5047", " **\u201e", " **\u2014", " **\"", " **>>", " **\u300c"], [" **\u00ab", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u201e", " **>>", " **", "\u6e21\u5047", " **\u300c", " **\u2014"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u6e21\u5047", " Gabrie", " **\u00ab", " ;;^", "\u6089\u6570", "\u65cb\u5373", "\uc774\uc158"], ["\u5468\u906d", " sprawling", " arguably", "\u6e21\u5047", "\u6089\u6570", " locales", " crafted", " albeit"], [" sprawling", "\u6e21\u5047", "\u62e5\u6709\u7740", "\u51ed\u501f\u7740", "\u5468\u906d", "\u8f7b\u8f7b\u677e\u677e", " entirety", " arguably"], [" sprawling", "\u5468\u906d", " spraw", " locales", " arguably", "\u6e21\u5047", " folks", " realms"], [" sprawling", "\u6d77\u91cf\u7684", " realms", " spraw", "\u8f7b\u8f7b\u677e\u677e", "\u5468\u906d", "\u6e21\u5047", " locales"], [" Gabrie", "\u6d77\u91cf\u7684", "\u5468\u906d", " sprawling", " realms", " spraw", "\u6597\u58eb", "\u305d\u3046\u3057\u305f"], ["\u5468\u906d", "\u6d77\u91cf\u7684", "\u305d\u3046\u3057\u305f", " sprawling", " realms", " \u2015", " spraw", "\u8f7b\u8f7b\u677e\u677e"], ["\u305d\u3046\u3057\u305f", "\u5468\u906d", " requisite", " sprawling", " swiftly", "\u6b64\u756a", "\u5373\u4fbf", " \u2015"], [" ;;^", " Gabrie", " MEDIAM", "Intialized", "\u9ad4\u7cfb", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u4e1a\u52a1\u7d20\u8d28", " ``"], [" ``", " Gabrie", " ;;^", " ``(", "\u6e21\u5047", " MEDIAM", " \u2015", " realms"], [" ``", " services", " portions", " \u2015", " ultimately", "\u305d\u3046\u3057\u305f", " host", " overse"], [" ``", " Gabrie", " ;;^", "\u6e21\u5047", "Intialized", " ``(", "GuidId", "edly"], [" Gabrie", " ;;^", " ``", " ``(", "\u6e21\u5047", "\u9ad4\u7cfb", "Intialized", "GuidId"], [" ``", " systems", " economies", " Gabrie", " technologies", " ;;^", " ``(", " services"], [" ``", " systems", " services", " overse", " service", " ultimately", " fully", " system"], [" systems", " ``", " services", " technologies", " overse", " technology", " economies", " engines"], [" systems", " technologies", " infrastructure", " economies", " technology", " engines", " )**", " frameworks"], [" systems", " technology", " technologies", " engines", " infrastructure", " economies", " hardware", " tools"], [" systems", " technology", " system", " technologies", " infrastructure", " services", " labor", " control"], [" systems", " technology", " system", " technologies", " power", " labor", " control", " forces"], [" systems", " technologies", " technology", " infrastructure", " tech", " system", " hardware", " engines"], [" technologies", " infrastructure", " systems", " tech", " lifecycle", " hardware", " technology", " economies"], [" software", " lifecycle", " technologies", " infrastructure", " systems", " **\u2014", " frameworks", " technology"], [" software", " runtime", " lifecycle", " systems", " infrastructure", " technologies", " frameworks", " engines"], [" software", " systems", " lifecycle", " workflows", " infrastructure", " runtime", " interoper", " frameworks"], [" software", " systems", " lifecycle", " infrastructure", " hardware", " workflows", " frameworks", " runtime"], [" memory", " lifecycle", " garbage", "_HEAP", " frameworks", " cleanup", " economies", " systems"], [" memory", " lifecycle", " runtime", " software", "_HEAP", " garbage", " JVM", " economies"], [" memory", " lifecycle", " runtime", " Java", "_HEAP", " JVM", " programming", " software"], [" runtime", " economy", " lifecycle", "_HEAP", " controlled", " economies", " memory", " controls"], [" controlled", " systems", " controls", " economy", " memory", " control", " runtime", " airspace"], [" economy", " systems", " controlled", " controls", " control", " economies", " infrastructure", " runtime"], [" economy", " controlled", " lifecycle", " control", " systems", " infrastructure", " airspace", " economies"], [" lifecycle", " infrastructure", " economy", " runtime", " controlled", " workflows", " environment", " control"], [" lifecycle", " infrastructure", " economy", " runtime", " protections", " environment", "-controlled", " controlled"], [" lifecycle", " economy", " protections", " runtime", "_HEAP", " infrastructure", " ecosystem", "-controlled"], [" lifecycle", "_HEAP", " runtime", " workflows", " ecosystem", " airspace", " infrastructure", " economy"], [" lifecycle", "_HEAP", " workflows", " airspace", " runtime", "runtime", " workflow", "-control"], [" lifecycle", " runtime", "runtime", "-runtime", "/runtime", "_HEAP", " environment", "_runtime"], [" runtime", "runtime", " lifecycle", "/runtime", "-runtime", "_runtime", " memory", "-memory"], [" runtime", " lifecycle", "runtime", " memory", "-runtime", "-memory", "/runtime", " Runtime"], [" allocations", " memory", " allocator", " allocation", " runtime", "alloc", "\u5185\u5b58", "-memory"], [" memory", " allocations", " allocator", " garbage", " runtime", " heap", "\u5185\u5b58", "alloc"], [" allocations", " memory", " allocator", " garbage", " heap", "alloc", " allocation", " runtime"], [" heap", " allocations", " memory", " allocator", " Heap", "alloc", " allocation", "Heap"], [" heap", " memory", " Heap", "Heap", "memory", "\u5806", "-memory", "\u5185\u5b58"], [" memory", " heap", " allocator", " Heap", " allocations", "memory", "-memory", "Heap"], [" memory", " heap", " runtime", "-memory", " Heap", "memory", " allocator", " allocations"], [" memory", " heap", " allocator", " allocations", " runtime", " allocation", "-memory", " nature"], [" memory", " heap", " allocator", " runtime", " allocations", " allocation", " nature", " environment"]], "p": [[0.2568, 0.2129, 0.1213, 0.114, 0.0736, 0.0348, 0.0254, 0.0211], [0.0987, 0.0341, 0.0111, 0.0111, 0.0098, 0.0098, 0.0098, 0.0063], [0.4764, 0.1205, 0.0731, 0.0569, 0.0535, 0.0472, 0.0269, 0.0269], [0.0807, 0.0103, 0.0071, 0.0058, 0.0052, 0.0048, 0.0043, 0.004], [0.0095, 0.009, 0.0074, 0.004, 0.0031, 0.0031, 0.0023, 0.0021], [0.014, 0.0102, 0.0058, 0.0045, 0.0033, 0.0023, 0.002, 0.002], [0.0387, 0.0364, 0.0126, 0.0126, 0.0072, 0.0063, 0.0063, 0.0034], [0.0446, 0.0306, 0.0254, 0.0106, 0.0093, 0.0082, 0.0057, 0.0027], [0.0139, 0.0101, 0.0101, 0.0084, 0.0079, 0.0045, 0.0045, 0.0042], [0.0321, 0.0043, 0.0036, 0.0032, 0.0026, 0.0022, 0.0021, 0.0021], [0.0031, 0.0023, 0.0021, 0.0018, 0.0018, 0.0018, 0.0017, 0.0015], [0.0441, 0.0322, 0.0111, 0.0092, 0.0063, 0.0056, 0.0046, 0.0046], [0.0527, 0.0495, 0.0182, 0.0071, 0.0041, 0.0041, 0.0036, 0.0034], [0.0161, 0.0043, 0.0025, 0.0023, 0.0016, 0.0015, 0.0015, 0.0013], [0.0044, 0.0041, 0.0032, 0.003, 0.0028, 0.0027, 0.0018, 0.0017], [0.0064, 0.0047, 0.0044, 0.0041, 0.0041, 0.0023, 0.0022, 0.0021], [0.0092, 0.0034, 0.0032, 0.0026, 0.0026, 0.0026, 0.002, 0.002], [0.0036, 0.0034, 0.0019, 0.0017, 0.0016, 0.0012, 0.0012, 0.0012], [0.0042, 0.0031, 0.0024, 0.002, 0.0019, 0.0016, 0.0015, 0.0012], [0.0043, 0.0028, 0.0026, 0.0024, 0.0019, 0.0015, 0.0015, 0.0014], [0.0036, 0.0033, 0.0026, 0.0018, 0.0017, 0.0017, 0.0013, 0.0012], [0.0067, 0.004, 0.003, 0.0016, 0.0014, 0.0014, 0.0013, 0.0011], [0.0172, 0.0072, 0.0041, 0.0032, 0.0026, 0.0025, 0.0016, 0.0012], [0.0207, 0.0015, 0.0015, 0.0015, 0.0013, 0.0012, 0.0012, 0.0011], [0.0148, 0.0074, 0.0033, 0.0026, 0.0026, 0.0023, 0.0015, 0.0014], [0.008, 0.007, 0.007, 0.0031, 0.0018, 0.0018, 0.0017, 0.0011], [0.0385, 0.0067, 0.0036, 0.0036, 0.0034, 0.0028, 0.0028, 0.0026], [0.03, 0.0059, 0.0043, 0.0036, 0.0036, 0.003, 0.0028, 0.0026], [0.0118, 0.0098, 0.0059, 0.0052, 0.0041, 0.0038, 0.0034, 0.0034], [0.0154, 0.012, 0.0088, 0.0083, 0.0078, 0.0073, 0.006, 0.006], [0.0478, 0.0396, 0.0309, 0.0129, 0.0129, 0.0121, 0.0114, 0.0114], [0.0882, 0.0569, 0.0286, 0.0237, 0.0163, 0.0112, 0.0112, 0.0099], [0.0625, 0.0379, 0.0277, 0.0158, 0.0116, 0.0109, 0.0096, 0.0085], [0.0385, 0.0339, 0.0219, 0.016, 0.0141, 0.0097, 0.0097, 0.0081], [0.0147, 0.0138, 0.0138, 0.0114, 0.0084, 0.0079, 0.0069, 0.0069], [0.0099, 0.0093, 0.0088, 0.0082, 0.0068, 0.0064, 0.0047, 0.0047], [0.0178, 0.0122, 0.0122, 0.0115, 0.0084, 0.0084, 0.0079, 0.007], [0.0158, 0.0158, 0.0148, 0.0108, 0.0102, 0.0102, 0.007, 0.0066], [0.0192, 0.0192, 0.016, 0.015, 0.0103, 0.0097, 0.0085, 0.0085], [0.0379, 0.0296, 0.0296, 0.0179, 0.014, 0.014, 0.0116, 0.009], [0.1152, 0.0351, 0.0188, 0.0188, 0.0177, 0.0177, 0.0138, 0.0121], [0.0626, 0.0519, 0.0315, 0.0278, 0.0245, 0.023, 0.0191, 0.0179], [0.0321, 0.0321, 0.0302, 0.0235, 0.0235, 0.0221, 0.0207, 0.0172], [0.0422, 0.0397, 0.0373, 0.0309, 0.0256, 0.0256, 0.0241, 0.0212], [0.065, 0.0419, 0.0348, 0.0327, 0.0327, 0.0224, 0.0224, 0.0211], [0.0666, 0.043, 0.0357, 0.0261, 0.0261, 0.0245, 0.0179, 0.0158], [0.1103, 0.0432, 0.0358, 0.0246, 0.0231, 0.018, 0.0159, 0.0149], [0.1281, 0.0345, 0.0269, 0.0223, 0.0197, 0.0197, 0.0185, 0.0185], [0.1216, 0.0225, 0.0225, 0.0211, 0.0199, 0.0186, 0.0165, 0.0165], [0.0987, 0.032, 0.0171, 0.0142, 0.0142, 0.0125, 0.0111, 0.0098], [0.0582, 0.0426, 0.0178, 0.013, 0.0095, 0.0089, 0.0074, 0.0074], [0.3011, 0.1179, 0.0492, 0.0462, 0.0193, 0.0124, 0.008, 0.0059], [0.3702, 0.1749, 0.1543, 0.0367, 0.0323, 0.0119, 0.0119, 0.0105], [0.3365, 0.2621, 0.1238, 0.0294, 0.0168, 0.013, 0.0115, 0.0102], [0.2988, 0.1813, 0.1813, 0.0519, 0.0519, 0.0404, 0.0169, 0.0149], [0.4273, 0.1081, 0.1081, 0.0655, 0.0578, 0.0397, 0.0273, 0.0273], [0.3089, 0.1459, 0.1459, 0.0885, 0.0781, 0.0537, 0.0474, 0.0224], [0.5665, 0.1432, 0.1264, 0.0465, 0.0249, 0.0171, 0.0151, 0.0118], [0.5992, 0.3635, 0.0141, 0.0067, 0.0059, 0.0019, 0.0019, 0.0015], [0.5519, 0.4298, 0.0042, 0.0037, 0.0023, 0.0012, 0.0011, 0.0011], [0.7259, 0.267, 0.0012, 0.0011, 0.0008, 0.0008, 0.0006, 0.0004], [0.8054, 0.1797, 0.0033, 0.0029, 0.0026, 0.0014, 0.0011, 0.0006], [0.6434, 0.3039, 0.0151, 0.0104, 0.0071, 0.0071, 0.0038, 0.002]], "ranks": {}}, {"pos": 438, "top": [[".", ",", " \u2013", "\u2013", ";", " ", "?", ":"], [" \u2013", "\u2013", "  \r\n", "  \n", "  \n\n", ".", " very", "   \n"], ["\u2013", " \u2013", ",", ".", ".\u2013", ";", "\u2013and", "\u2026"], [" Blowjob", " milfs", " cristi", " ;;^", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot", "alej"], [" ***", " **", "\u0627\u0644\u0627\u062a", " (**", "alej", " system", "alem", " )."], [" **", "otence", "\u0627\u0644\u0627\u062a", "sip", " **\u201c", ".cast", " \"**", " )**"], [" **", " \"**", " **\u00ab", " \u00bb**", " ***", " )**", " **-", " **\u300c"], [" **", " \"**", " **\u00ab", " \u00bb**", " **-", " )**", " **\u300c", "alej"], [" **", " \"**", " ***", " \u00bb**", " **.", "alej", " **\u00ab", " (**"], ["\u7ad9\u5730\u94c1\u7ad9", " **", "lessness", "\u03bf\u03bb\u03bf\u03c5", "alej", "-MM", "\u6d3b\u52a8\u7684\u5f00\u5c55", "\u4e0d\u53ef\u601d\u8bae"], [" **", " memory", " space", "lessness", ",", " power", " ***", "."], [" **", " \"**", " **\u00ab", " )**", " \u00bb**", " **'", "alej", " **\u300c"], [" **", " **\u00ab", " ;;^", " \u00bb**", " \"**", "alej", "\u6b21\u4e8e", "\u7ad9\u5730\u94c1\u7ad9"], ["alej", "\u7ad9\u5730\u94c1\u7ad9", " ;;^", " **", "lessness", " memory", "\u6b21\u4e8e", " space"], [" space", " memory", " resources", "\u957f\u4e45\u7684", " allocation", " service", "\u4f5c\u606f\u65f6\u95f4", " gaps"], [" space", " memory", " ;;^", " resources", " savvy", " system", " systems", " protections"], [" memory", " space", " resources", " system", "/memory", " systems", " memories", " power"], [" space", " memory", "/memory", " resources", "utang", " gaps", "-space", "-memory"], [" space", " memory", "/memory", "-space", "-memory", "utang", "lessness", " resources"], [" space", "/memory", " memory", "lessness", "-memory", "-space", " resources", " memories"], [" space", " largely", " though", " \n\n", " memory", "  \n\n", " much", " ultimately"], [" space", " memory", " ;;^", "/memory", " resources", "\u4f5c\u606f\u65f6\u95f4", "\u4f53\u7cfb\u5efa\u8bbe", " systems"], [" space", " memory", " resources", "/memory", " systems", "\u53d1\u5c55\u7a7a\u95f4", " system", " management"], [" space", " ,", " memory", " over", " power", " system", " and", " resources"], [" space", " memory", " resources", "/memory", " systems", " storage", " capacity", " system"], [" memory", " space", " storage", "/memory", " systems", " resources", " **", " memories"], [" memory", " space", " storage", " systems", " environment", " management", " memories", " resources"], [" space", " memory", " ,", " storage", " and", " complex", " management", " system"], [" memory", " space", " storage", " management", " systems", " resources", " system", " capacity"], [" space", " memory", " storage", " management", " systems", " system", " resources", " loss"], [" memory", " space", " storage", " systems", " management", " system", " complex", " environment"], [" memory", " space", " and", " system", " systems", " storage", " complex", " management"], [" memory", " space", " system", " systems", " storage", " complex", " and", " management"], [" memory", " space", " storage", " systems", " system", " fluid", " accumulation", " management"], [" memory", " storage", "/memory", " systems", " space", " accumulation", " lifecycle", " consumption"], [" memory", "/memory", "MEMORY", " storage", " Memory", " MEMORY", "-memory", "(memory"], [" memory", " Memory", "/memory", " MEMORY", "MEMORY", " storage", "-memory", "Memory"], [" memory", " Memory", "/memory", " storage", " MEMORY", "MEMORY", " allocations", "Memory"], [" memory", " Memory", "/memory", " garbage", " storage", "MEMORY", " management", " allocations"], [" memory", " garbage", " Memory", "/memory", " MEMORY", "memory", " allocations", "-memory"], [" memory", " Memory", "/memory", "-memory", "memory", " MEMORY", "\u5185\u5b58", "Memory"], [" memory", " Memory", "-memory", "/memory", " allocations", " allocation", " garbage", "\u5185\u5b58"], [" memory", " allocations", " allocation", " garbage", "-memory", " allocator", " storage", " Memory"], [" memory", " allocations", " storage", " allocation", "-memory", " Memory", " management", " allocator"], [" memory", " storage", " allocations", " allocation", " management", " garbage", " controlled", " fragmentation"], [" memory", " storage", " allocation", " allocations", " management", " controlled", " garbage", " fragmentation"], [" memory", " storage", " allocation", " allocations", " management", " lifecycle", " garbage", " budgets"], [" memory", " allocations", " allocation", " storage", " management", " constantly", " costs", " accumulation"], [" allocations", " allocation", " memory", " storage", " lifecycle", " fragmentation", "_HEAP", " allocator"], [" allocations", " allocation", " memory", " lifecycle", " fragmentation", " storage", " management", " constantly"], [" allocations", " allocation", " lifecycle", "_HEAP", " allocator", " buffers", " storage", "Allocator"], [" allocations", " allocation", " allocator", " lifecycle", "Allocator", "_HEAP", " fragmentation", " management"], [" allocations", " allocation", " allocator", "Allocator", " lifecycle", " management", "/memory", " fragmentation"], [" allocations", " allocation", "-memory", "/memory", "(memory", " allocator", " memory", " MEMORY"], [" allocations", " allocation", " allocator", "Allocator", " memory", "-memory", "/memory", "Allocation"], [" allocations", " allocation", " allocator", " alloc", "Allocator", " garbage", "alloc", " Allocation"], [" allocation", " allocations", " allocator", " garbage", " Allocation", "Allocation", "Allocator", " alloc"], [" allocation", " allocations", " allocator", " management", " Allocation", "Allocator", " heap", " alloc"], [" management", " allocations", " allocation", " model", " allocator", "management", "\u6a21\u578b", "-management"], [" allocation", " allocations", " allocator", " management", " model", " Allocation", " alloc", "Allocation"], [" allocation", " allocations", " allocator", " model", " management", " Allocation", " alloc", " heap"], [" allocation", " allocations", " model", " allocator", " management", " Allocation", " alloc", " heap"], [" allocation", " model", " allocations", " allocator", " management", " heap", " alloc", " Allocation"]], "p": [[0.66, 0.3118, 0.0088, 0.0073, 0.0057, 0.002, 0.0004, 0.0004], [0.1801, 0.0905, 0.0485, 0.0244, 0.009, 0.0035, 0.0027, 0.0023], [0.8119, 0.1099, 0.0357, 0.0158, 0.0033, 0.0033, 0.0028, 0.0018], [0.0044, 0.0025, 0.0024, 0.0022, 0.0021, 0.0018, 0.0018, 0.0017], [0.0091, 0.0085, 0.0033, 0.0031, 0.0028, 0.002, 0.0019, 0.0019], [0.0076, 0.0041, 0.0022, 0.002, 0.0019, 0.0018, 0.0017, 0.0016], [0.6906, 0.0153, 0.0135, 0.0126, 0.0112, 0.0077, 0.0072, 0.006], [0.5844, 0.0129, 0.0074, 0.0074, 0.0069, 0.0061, 0.0045, 0.0042], [0.2897, 0.0099, 0.0093, 0.0044, 0.0044, 0.0044, 0.003, 0.003], [0.0044, 0.003, 0.0019, 0.0017, 0.0016, 0.0014, 0.0014, 0.0012], [0.1353, 0.0046, 0.0041, 0.0041, 0.0032, 0.0028, 0.0026, 0.0026], [0.2396, 0.0064, 0.0056, 0.0036, 0.0027, 0.0023, 0.0023, 0.0019], [0.058, 0.0101, 0.0037, 0.0037, 0.0029, 0.0024, 0.002, 0.0019], [0.0021, 0.0019, 0.0018, 0.0016, 0.0013, 0.0013, 0.0012, 0.0011], [0.002, 0.0018, 0.0014, 0.001, 0.001, 0.0009, 0.0009, 0.0009], [0.0022, 0.0018, 0.0014, 0.0013, 0.0011, 0.0011, 0.001, 0.001], [0.0086, 0.0063, 0.004, 0.003, 0.0028, 0.0025, 0.0015, 0.0015], [0.0058, 0.004, 0.0038, 0.0024, 0.0023, 0.0017, 0.0015, 0.0013], [0.0193, 0.0124, 0.0097, 0.0043, 0.0038, 0.003, 0.0028, 0.0024], [0.0091, 0.008, 0.0075, 0.0031, 0.0019, 0.0018, 0.0017, 0.0015], [0.0081, 0.0043, 0.0034, 0.0034, 0.0023, 0.0022, 0.0018, 0.0017], [0.0116, 0.0033, 0.0026, 0.0023, 0.0013, 0.0013, 0.0013, 0.0013], [0.0622, 0.0095, 0.0042, 0.0035, 0.0031, 0.0026, 0.0026, 0.0026], [0.0844, 0.0122, 0.0101, 0.0069, 0.0065, 0.0054, 0.0051, 0.0042], [0.0812, 0.0339, 0.0067, 0.0055, 0.0055, 0.0052, 0.004, 0.0034], [0.1936, 0.0974, 0.0246, 0.014, 0.0109, 0.0091, 0.0066, 0.0058], [0.1743, 0.0773, 0.0414, 0.0111, 0.0082, 0.0082, 0.0072, 0.0072], [0.1257, 0.0716, 0.0205, 0.0193, 0.0124, 0.0097, 0.0091, 0.008], [0.1917, 0.1493, 0.0455, 0.0139, 0.0108, 0.0102, 0.009, 0.0084], [0.1551, 0.1551, 0.0473, 0.0174, 0.0127, 0.0106, 0.0093, 0.0088], [0.1444, 0.1197, 0.0284, 0.0267, 0.0221, 0.0184, 0.0119, 0.0098], [0.0929, 0.077, 0.0235, 0.0207, 0.0207, 0.0183, 0.0183, 0.0142], [0.1359, 0.0774, 0.0196, 0.0184, 0.0143, 0.0135, 0.0126, 0.0068], [0.1083, 0.0213, 0.02, 0.0177, 0.0107, 0.0084, 0.0069, 0.0065], [0.0952, 0.0213, 0.0129, 0.01, 0.0094, 0.0089, 0.0069, 0.0069], [0.2421, 0.0421, 0.0175, 0.0145, 0.0145, 0.0145, 0.0145, 0.0121], [0.4498, 0.027, 0.0254, 0.0198, 0.0145, 0.012, 0.0113, 0.0106], [0.5234, 0.0457, 0.0261, 0.0158, 0.0158, 0.0131, 0.0109, 0.0096], [0.7007, 0.0395, 0.024, 0.0187, 0.0094, 0.0083, 0.0083, 0.0073], [0.7938, 0.0395, 0.0272, 0.0165, 0.0083, 0.0078, 0.0061, 0.0061], [0.8194, 0.0318, 0.0218, 0.0117, 0.0117, 0.0117, 0.0103, 0.0103], [0.8148, 0.0217, 0.0217, 0.0149, 0.0116, 0.0103, 0.0091, 0.008], [0.5719, 0.0683, 0.0414, 0.0285, 0.0285, 0.0222, 0.0208, 0.0196], [0.5499, 0.058, 0.0398, 0.0398, 0.0188, 0.0166, 0.0166, 0.0147], [0.3307, 0.0738, 0.0651, 0.054, 0.0349, 0.0255, 0.0175, 0.0165], [0.2432, 0.0841, 0.0615, 0.0578, 0.045, 0.0273, 0.0241, 0.0166], [0.2492, 0.076, 0.0592, 0.0556, 0.0298, 0.017, 0.015, 0.0141], [0.1727, 0.0924, 0.0635, 0.0597, 0.03, 0.0171, 0.0171, 0.0133], [0.1752, 0.0644, 0.0471, 0.0269, 0.0223, 0.0173, 0.0153, 0.0135], [0.097, 0.0404, 0.0278, 0.0245, 0.023, 0.0216, 0.0169, 0.0158], [0.0964, 0.0294, 0.0259, 0.0215, 0.019, 0.0157, 0.0148, 0.0139], [0.2868, 0.1355, 0.0601, 0.0468, 0.0195, 0.0183, 0.0118, 0.0111], [0.3976, 0.1463, 0.0394, 0.0394, 0.0288, 0.0175, 0.0154, 0.0136], [0.3012, 0.1612, 0.0462, 0.0462, 0.0408, 0.0408, 0.036, 0.0181], [0.5625, 0.3411, 0.0593, 0.0043, 0.0038, 0.003, 0.0023, 0.0023], [0.6413, 0.2673, 0.0596, 0.0071, 0.0055, 0.0043, 0.0026, 0.0023], [0.4772, 0.4772, 0.0269, 0.0036, 0.0032, 0.0022, 0.002, 0.0017], [0.4952, 0.437, 0.0317, 0.0169, 0.0038, 0.0029, 0.0018, 0.0016], [0.4362, 0.2645, 0.206, 0.0406, 0.0217, 0.0055, 0.0038, 0.0033], [0.6996, 0.2271, 0.0395, 0.0186, 0.0047, 0.0037, 0.002, 0.0009], [0.6273, 0.2615, 0.0515, 0.0312, 0.0215, 0.0018, 0.0014, 0.0005], [0.6663, 0.2163, 0.0702, 0.0293, 0.0122, 0.0013, 0.001, 0.0003], [0.5001, 0.3437, 0.0985, 0.0411, 0.0104, 0.0016, 0.0012, 0.0004]], "ranks": {}}, {"pos": 439, "top": [[" \u2013", ".", "\u2013", " \u200b\u200b", ",", " ", "\u200b\u200b", "\u00a0"], [" \u2013", " \u200b\u200b", "\u2013", "  ", "\u2013and", " Stre", " \uff5e", " Pro"], ["\u2013", " \u2013", "\u2013and", "\u2026", ".\u2013", "\u2026..", ",", " \u200b\u200b"], [" Shemale", " pupper", " Blowjob", " cumshot", "odle", " milfs", " pornstar", "\ub370\ubbf8"], ["\u30ba", "sg", "arity", "st", "ed", "cast", " mdl", "kits"], ["sg", "\uff01", " \u3002", "\uff0c", "\u66f2", "\uff1a", "\u7687\u51a0", "\u3002"], [" \u3002", " __", "\u3002", "\uff1f", "\u4e2d", " ..", "\uff1a", "\u5728"], [" ..", " \u3002", "  ", " .", " __", "istic", "ized", "sg"], [" .", ".", ",", " ..", " \u2018", "istic", "ically", ":"], [",", "istically", "istic", "ically", "ized", " devised", " largely", "atively"], [",", " ", "o", ".", "istic", "ically", "er", " ."], ["ically", "isation", " structured", "istically", "\u0630\u062c", " paradigm", " frameworks", " conceptual"], ["ically", " disparate", " system", " conceptual", " akin", " established", " institution", " paradigm"], [" societal", " akin", " disparate", " governance", " overarching", " inherently", " conceptual", " transformative"], [" akin", " largely", " arguably", " disparate", " strategically", " inherently", " encompass", " util"], [" disparate", " akin", " arguably", " overarching", " largely", " encompass", " myriad", " societal"], [" akin", " disparate", " overarching", " largely", " arguably", " myriad", " encompass", " util"], [" overarching", " akin", " largely", " disparate", " arguably", "-esque", " inherently", " encompass"], [" largely", " overarching", " akin", " arguably", " disparate", " inherently", " ultimately", " broadly"], [" largely", " overarching", " arguably", " akin", " broadly", " ultimately", " disparate", " inherently"], [" largely", " ultimately", " vastly", " broadly", " myriad", " arguably", " akin", " encompass"], [" largely", " ultimately", " disparate", " overarching", " arguably", " broadly", " orchestrated", " akin"], [" largely", " ultimately", " arguably", " broadly", " encompass", " vastly", " disparate", " akin"], [" largely", " ultimately", " ,", " broadly", " arguably", " increasingly", " vastly", " encompass"], [" largely", " ultimately", " broadly", " vastly", " arguably", " overarching", " increasingly", " disparate"], [" largely", " ultimately", " broadly", " vastly", " overarching", " increasingly", " arguably", " disparate"], [" largely", " ultimately", " broadly", " increasingly", " disparate", " vastly", " arguably", " fundamentally"], [" largely", " ultimately", " ,", " arguably", " increasingly", " heavily", " broadly", " vastly"], [" largely", " ultimately", " increasingly", " ,", " broadly", " arguably", " heavily", " complex"], [" largely", " increasingly", " ultimately", " complex", " heavily", " broadly", " ,", " effectively"], [" largely", " increasingly", " ,", " ultimately", " heavily", " complex", " system", " essentially"], [" largely", " heavily", " increasingly", " ultimately", " ,", " complex", " essentially", " effectively"], [" largely", " heavily", " increasingly", " ultimately", " complex", " fundamentally", " essentially", " ,"], [" heavily", " largely", " increasingly", " inherently", " fundamentally", " essentially", " vastly", " ultimately"], [" heavily", " inherently", " notoriously", " increasingly", " aggressively", " largely", " fundamentally", " vastly"], [" notoriously", " inherently", " heavily", " increasingly", " disproportionately", " aggressively", " largely", " fundamentally"], [" notoriously", " inherently", " heavily", " increasingly", " inevitably", " aggressively", " inefficient", " disproportionately"], [" inherently", " notoriously", " inefficient", " heavily", " inevitably", " increasingly", " fundamentally", " unpredictable"], [" inherently", " notoriously", " inefficient", " unpredictable", " inevitably", " heavily", " fundamentally", " disproportionately"], [" inherently", " notoriously", " unpredictable", " inefficient", " inevitably", " heavily", " increasingly", " fundamentally"], [" unpredictable", " inherently", " notoriously", " inefficient", " heavily", " predictable", " inevitably", " increasingly"], [" unpredictable", " inherently", " notoriously", " inefficient", " unpredict", " heavily", " predictable", " typically"], [" unpredictable", " inherently", " notoriously", " inefficient", " unpredict", " erratic", " volatile", " heavily"], [" unpredictable", " inherently", " notoriously", " unpredict", " inefficient", " predictable", " typically", " volatile"], [" unpredictable", " inherently", " notoriously", " inefficient", " unpredict", " predictable", " inevitably", " typically"], [" unpredictable", " inherently", " notoriously", " inevitably", " unpredict", " inevitable", " routinely", " inefficient"], [" inherently", " unpredictable", " notoriously", " inevitably", " inevitable", " unavoidable", " unpredict", " routinely"], [" inherently", " unpredictable", " notoriously", " inevitably", " routinely", " inevitable", " inherent", " typically"], [" inherently", " unpredictable", " notoriously", " inevitably", " inevitable", " unavoidable", " routinely", " unpredict"], [" inherently", " unpredictable", " inevitably", " inevitable", " notoriously", " unpredict", " unavoidable", " routinely"], [" inherently", " unpredictable", " inevitably", " inevitable", " unavoidable", "\u4e0d\u53ef\u907f\u514d\u5730", " notoriously", " unpredict"], [" inherently", " inevitably", " unpredictable", " inevitable", " unavoidable", " creates", "\u4e0d\u53ef\u907f\u514d\u5730", " unpredict"], [" inherently", " inevitably", " unpredictable", " inevitable", " unavoidable", " unpredict", " inherent", " creates"], [" inherently", " creates", " inevitably", " inevitable", " generates", " unpredictable", " unavoidable", " inherent"], [" inherently", " creates", " inevitably", " generates", " incompatible", " unpredictable", " inevitable", " unavoidable"], [" inherently", " creates", " garbage", " inevitably", " generates", " unpredictable", " incompatible", " unpredict"], [" inherently", " garbage", " creates", " inevitably", " generates", " inevitable", " inevit", " unavoidable"], [" inherently", " creates", " generates", " garbage", " inevitably", "creates", " unpredictable", " triggers"], [" generates", " creates", " inherently", " garbage", " triggers", " inevitably", " fights", " guarantees"], [" inherently", " creates", " generates", " fights", " inevitably", " triggers", " inevit", " introduces"], [" generates", " creates", " inherently", " introduces", " inevitably", " triggers", " fights", " causes"], [" creates", " generates", " inherently", " introduces", " fights", " triggers", " is", " causes"], [" creates", " generates", " inherently", " introduces", " causes", " triggers", " fights", " alloc"]], "p": [[0.7615, 0.1168, 0.0487, 0.0379, 0.0179, 0.0051, 0.002, 0.0017], [0.2405, 0.0571, 0.0224, 0.0034, 0.0034, 0.0028, 0.0022, 0.002], [0.6621, 0.276, 0.0129, 0.0057, 0.0051, 0.0045, 0.0035, 0.0025], [0.0057, 0.0047, 0.0028, 0.0027, 0.002, 0.002, 0.002, 0.0017], [0.0045, 0.0042, 0.0042, 0.0033, 0.0027, 0.0021, 0.002, 0.0019], [0.0066, 0.0048, 0.0043, 0.004, 0.004, 0.0035, 0.0033, 0.0029], [0.055, 0.0429, 0.0244, 0.0179, 0.0123, 0.0123, 0.0115, 0.0108], [0.0441, 0.0285, 0.0162, 0.0152, 0.0152, 0.0111, 0.0111, 0.0098], [0.0554, 0.0554, 0.0521, 0.0381, 0.0116, 0.0109, 0.0096, 0.0066], [0.2824, 0.0117, 0.0097, 0.0085, 0.0052, 0.0046, 0.0043, 0.0036], [0.2892, 0.0368, 0.0368, 0.0286, 0.0223, 0.0163, 0.0163, 0.0099], [0.0155, 0.01, 0.0088, 0.0078, 0.0073, 0.0061, 0.0061, 0.0061], [0.0098, 0.0098, 0.0067, 0.0067, 0.0059, 0.0059, 0.0056, 0.0056], [0.0148, 0.0115, 0.0115, 0.0108, 0.009, 0.0084, 0.0075, 0.0066], [0.0314, 0.0216, 0.0179, 0.0168, 0.0149, 0.014, 0.0096, 0.0096], [0.0438, 0.0387, 0.025, 0.0207, 0.0207, 0.0172, 0.0134, 0.0111], [0.1059, 0.05, 0.0366, 0.0344, 0.0268, 0.0173, 0.0173, 0.0112], [0.0438, 0.0363, 0.022, 0.0207, 0.0161, 0.0086, 0.0072, 0.0067], [0.0431, 0.0431, 0.0335, 0.0278, 0.0231, 0.0116, 0.0102, 0.0085], [0.0859, 0.0337, 0.0217, 0.0217, 0.0192, 0.0192, 0.0169, 0.0132], [0.1701, 0.0666, 0.0261, 0.0191, 0.0191, 0.0168, 0.0149, 0.0149], [0.0577, 0.0273, 0.0114, 0.0107, 0.0088, 0.0073, 0.0069, 0.0069], [0.1242, 0.0665, 0.0203, 0.0158, 0.0123, 0.0123, 0.0109, 0.0102], [0.1849, 0.1194, 0.0388, 0.0172, 0.0118, 0.0118, 0.0092, 0.0081], [0.1442, 0.0681, 0.0365, 0.0267, 0.0251, 0.0183, 0.0134, 0.0126], [0.1266, 0.0678, 0.032, 0.0283, 0.0207, 0.0207, 0.0194, 0.0171], [0.2007, 0.0786, 0.0349, 0.0328, 0.0199, 0.0165, 0.0165, 0.0121], [0.1693, 0.1164, 0.0516, 0.026, 0.0244, 0.0178, 0.0139, 0.0131], [0.1594, 0.1029, 0.0356, 0.026, 0.0203, 0.0203, 0.0203, 0.0158], [0.1209, 0.0733, 0.0608, 0.0287, 0.0253, 0.0174, 0.0174, 0.0144], [0.1692, 0.0751, 0.0516, 0.0333, 0.0333, 0.0294, 0.0139, 0.013], [0.1136, 0.0689, 0.0571, 0.0347, 0.0306, 0.0287, 0.0154, 0.012], [0.0706, 0.0623, 0.055, 0.0294, 0.0244, 0.019, 0.0168, 0.0139], [0.1125, 0.0532, 0.0365, 0.0365, 0.0303, 0.0236, 0.0196, 0.0184], [0.0765, 0.0765, 0.0675, 0.0464, 0.0361, 0.0361, 0.0319, 0.0193], [0.1901, 0.1018, 0.0699, 0.0617, 0.0257, 0.0213, 0.02, 0.0166], [0.2624, 0.1239, 0.0485, 0.0277, 0.0229, 0.0229, 0.0215, 0.0179], [0.2357, 0.1954, 0.0264, 0.0264, 0.0233, 0.0219, 0.0171, 0.0151], [0.2184, 0.1928, 0.038, 0.0315, 0.0216, 0.0179, 0.0168, 0.0116], [0.2419, 0.1663, 0.1467, 0.0225, 0.0136, 0.0106, 0.01, 0.0083], [0.2062, 0.1417, 0.1037, 0.0316, 0.0169, 0.0091, 0.008, 0.0075], [0.3942, 0.128, 0.0471, 0.0222, 0.0163, 0.0112, 0.0093, 0.0056], [0.3667, 0.1732, 0.0386, 0.022, 0.0104, 0.0081, 0.0067, 0.0063], [0.4612, 0.1497, 0.0801, 0.0139, 0.0131, 0.0079, 0.0055, 0.0048], [0.5181, 0.131, 0.0546, 0.0167, 0.0167, 0.0095, 0.0054, 0.0054], [0.356, 0.2772, 0.0794, 0.0189, 0.0114, 0.0089, 0.0084, 0.0079], [0.3759, 0.3318, 0.0653, 0.0226, 0.0187, 0.0114, 0.01, 0.0061], [0.6253, 0.1395, 0.0513, 0.0275, 0.0177, 0.0147, 0.0079, 0.0074], [0.5522, 0.1582, 0.0582, 0.0453, 0.0214, 0.0108, 0.0101, 0.0065], [0.4097, 0.2816, 0.0555, 0.0336, 0.0336, 0.018, 0.0169, 0.0159], [0.5619, 0.1106, 0.0523, 0.0263, 0.0218, 0.0141, 0.011, 0.0103], [0.6131, 0.094, 0.083, 0.0163, 0.0127, 0.0112, 0.0105, 0.0099], [0.9669, 0.0095, 0.0074, 0.0015, 0.0014, 0.0013, 0.0013, 0.0011], [0.9244, 0.0116, 0.0116, 0.0055, 0.0055, 0.0055, 0.004, 0.0031], [0.8968, 0.0307, 0.0113, 0.0113, 0.0053, 0.0042, 0.0034, 0.0029], [0.6855, 0.0928, 0.0638, 0.0207, 0.0207, 0.0207, 0.0104, 0.0081], [0.6157, 0.1557, 0.0944, 0.0211, 0.0211, 0.0073, 0.0053, 0.005], [0.3463, 0.3463, 0.2101, 0.0134, 0.0134, 0.006, 0.006, 0.0049], [0.5119, 0.2418, 0.1467, 0.0225, 0.0094, 0.0073, 0.005, 0.0044], [0.4535, 0.2427, 0.189, 0.0226, 0.0137, 0.0083, 0.0054, 0.0047], [0.3848, 0.2645, 0.2334, 0.0169, 0.0149, 0.0124, 0.008, 0.0075], [0.3824, 0.3824, 0.0753, 0.0277, 0.0244, 0.0168, 0.0115, 0.0096], [0.5592, 0.2331, 0.0405, 0.0278, 0.0246, 0.0217, 0.0169, 0.0159]], "ranks": {}}, {"pos": 440, "top": [[" \u2013", "\u2013", ",", ".", "\u2026", "\u00a0", " ", "\u2026."], ["\u2013", " \u2013", "\u2013and", ".\u2013", "\u2013\u2013", " \u2013,", "**\u2013", " *\u2013"], ["\u2013", "\u2013and", " \u2013", ".\u2013", "\u2026", ",", "\u2026..", "\u2026."], [" *\u2013", "\u52a0\u62ff\u5927", "*\u201c.", "\u7b11\u7740\u8bf4\u9053", " *\u201c", " Strec", "\u65b0\u52a0\u5761", " \n \n"], ["\u2013", " \u201c.", ".\u2013", " \u201c\u2026", "\u2013\u2013", "\u2013and", " *\u2013", "\u2026.."], ["\u2013", "\u2013and", "\u2026..", ".\u2013", " **\u2013", "\u2026.", "\u2013\u2013", " *\u2013"], ["\u2026", "\u2026\u201d", "\u2013", "\u2026*", " \n\n", " **\u2013", "\u2026..", "\u2026."], [" *\u2013", " \n \n", " **\u2013", "\u2013and", "**\u2013", "\u2026*", "\u2013", "\u2026.."], [" \n\n", " \n \n", "\u2013and", "\u2026*", " *\u2013", " \n\n\n", "\u2013", "   \n\n"], ["\u2013", "\u2013and", "\u2013\u2013", " **\u2013", " *\u2013", ".\u2013", " \u2013", "\u2026"], ["\u2013", "\u2013and", " \u2013", "\u2013\u2013", "\u2026", " *\u2013", "\u2026*", "\u00a0"], [" **\u2013", " *\u2013", "\u2013and", "**\u2013", "\u2013\u2013", " havoc", "\u2026*", " **\u20ac"], [" **\u2013", " *\u2013", "**\u2013", "\u2013and", " impactful", "\u2013\u2013", "\u52a0\u62ff\u5927", "\u2026*"], [" *\u2013", "\u2013and", " impactful", " **\u2013", " transformative", "**\u2013", "\u2013\u2013", " havoc"], [" impactful", " havoc", " transformative", "\u2013and", " \u2013", " newfound", " effortlessly", " savvy"], [" impactful", " incredibly", " newfound", " sprawling", " savvy", " wildly", " myriad", "\u2013and"], ["\u2013and", "\u2013", " \u2013", " myriad", "\u2013\u2013", " *\u2013", " savvy", " sprawling"], ["\u2013and", " *\u2013", "\u2013\u2013", "\u2013", " **\u2013", " havoc", " \u2013", " savvy"], [" *\u2013", " havoc", " impactful", "\u2014even", " **\u2013", "\u2013\u2013", " myriad", "\u4e00\u6c17\u306b"], [" *\u2013", " havoc", " myriad", "\u2014even", " impactful", "\u2013\u2013", "\u2013and", " burgeoning"], [" myriad", " havoc", " vastly", " burgeoning", " *\u2013", " wildly", "\u6108\u53d1", "\u672c\u5c31"], ["\u611f\u5341\u8db3", " havoc", " *\u2013", "\u4e00\u6c17\u306b", " impactful", " ;;^", "\u72ec\u6811\u4e00\u5e1c", "\u884c\u4e1a\u8d44\u8baf"], [" havoc", "\u611f\u5341\u8db3", "\u4e00\u6c17\u306b", "\u62e5\u6709\u7740", " impactful", " disparate", "\u521b\u5148", "\u72ec\u6811\u4e00\u5e1c"], [" havoc", " myriad", " vastly", " uniquely", " looming", " sprawling", " disparate", " largely"], [" havoc", " myriad", " vastly", " hugely", "\u611f\u5341\u8db3", " disparate", " sprawling", " uniquely"], [" havoc", "\u611f\u5341\u8db3", " impactful", " *\u2013", " sprawling", " disparate", " vastly", " myriad"], [" havoc", " impactful", "\u611f\u5341\u8db3", " *\u2013", " disproportionately", " disparate", " myriad", " sprawling"], [" myriad", " vastly", " increasingly", " uniquely", " wildly", " disproportionately", " sprawling", " havoc"], [" myriad", " disproportionately", " increasingly", " havoc", " unpredictable", " disparate", " vastly", " destabil"], [" disproportionately", " **", " unpredictable", " havoc", " increasingly", " myriad", " **\u2013", " impactful"], [" disproportionately", " **", " increasingly", " unpredictable", " complex", " myriad", " massive", " countless"], [" **", " disproportionately", " increasingly", " countless", " unpredictable", " complex", " massive", " huge"], [" disproportionately", " unpredictable", " increasingly", " massive", " myriad", " potentially", " complex", " heavily"], [" disproportionately", " unpredictable", " increasingly", " inherently", " myriad", " heavily", " potentially", " vastly"], [" disproportionately", " unpredictable", " myriad", " increasingly", " inherently", " havoc", " vastly", " aggressively"], [" *\u2013", " disproportionately", " unpredictable", " increasingly", " myriad", " inherently", " notoriously", " spikes"], [" unpredictable", " disproportionately", " increasingly", " inefficient", " spikes", " *\u2013", " dozens", " notoriously"], [" unpredictable", " disproportionately", " inefficient", " spikes", " increasingly", " unsustainable", " inherently", " clutter"], [" unpredictable", " garbage", " inefficient", " spikes", " clutter", " unstable", " unsustainable", " glitches"], [" garbage", " unpredictable", " clutter", " trash", " spikes", " fragmentation", " scav", " debris"], [" garbage", " fragmentation", " fragmented", " clutter", " unpredictable", " trash", " scav", " inefficient"], [" garbage", " fragmentation", " fragmented", " cleanup", " clutter", " unpredictable", " scav", " trash"], [" fragmentation", " garbage", " unpredictable", " fragmented", " cleanup", " spikes", " clutter", " bursts"], [" fragmentation", " garbage", " unpredictable", " fragmented", " bursts", " spikes", " cleanup", " clutter"], [" fragmentation", " unpredictable", " fragmented", " bursts", " garbage", " spikes", " interruptions", " clutter"], [" unpredictable", " fragmentation", " bursts", " spikes", " fragmented", " garbage", " erratic", " unpredict"], [" unpredictable", " bursts", " spikes", " fragmentation", " unavoidable", " interruptions", " unpredict", " fragmented"], [" unpredictable", " bursts", " spikes", " unavoidable", " fragmentation", " fragmented", " unpredict", " intermittent"], [" unpredictable", " bursts", " spikes", " unavoidable", " fragmentation", " interruptions", " unpredict", " intermittent"], [" unpredictable", " bursts", " spikes", " unpredict", " unavoidable", " interruptions", " erratic", " fragmentation"], [" unpredictable", " unpredict", " unavoidable", " bursts", " interruptions", " spikes", " fragmentation", " erratic"], [" unpredictable", " unpredict", " interruptions", " spikes", " bursts", " fragmentation", " unavoidable", " intermittent"], [" unpredictable", " unpredict", " spikes", " fragmentation", " unavoidable", " intermittent", " interruptions", " bursts"], [" unpredictable", " unpredict", " spikes", " fragmentation", " unavoidable", " garbage", " intermittent", " bursts"], [" garbage", " unpredictable", "\u5783\u573e", " unpredict", " allocations", " fragmentation", " spikes", " unavoidable"], [" garbage", "\u5783\u573e", " trash", " unpredictable", " GC", "\u0e02\u0e22\u0e30", "\u5783\u573e\u5904\u7406", " unpredict"], [" garbage", "\u5783\u573e", " GC", "GC", " trash", "Gar", " Gar", "gc"], [" garbage", "\u5783\u573e", " GC", "GC", " unpredictable", "gc", "(gc", "Gar"], [" garbage", " GC", "\u5783\u573e", "GC", " unpredictable", "gc", "_gc", " gc"], [" unpredictable", " fragmentation", " garbage", " unpredict", " allocations", " GC", " pressure", " spikes"], [" unpredictable", " fragmentation", " unpredict", " garbage", " pressure", " GC", " fragmented", " spikes"], [" fragmentation", " unpredictable", " unpredict", " allocation", " garbage", " fragmented", " GC", " pressure"], [" unpredictable", " fragmentation", " allocation", " unpredict", " GC", " garbage", " allocations", " micro"]], "p": [[0.5658, 0.2673, 0.0868, 0.0676, 0.0018, 0.0017, 0.0016, 0.0014], [0.6592, 0.2748, 0.0541, 0.0032, 0.002, 0.0016, 0.0009, 0.0005], [0.9595, 0.0121, 0.0107, 0.0083, 0.0035, 0.0031, 0.0011, 0.0005], [0.01, 0.0088, 0.0083, 0.0042, 0.0039, 0.0039, 0.0027, 0.0025], [0.1486, 0.0795, 0.0659, 0.062, 0.0514, 0.0482, 0.04, 0.0312], [0.2792, 0.1319, 0.0906, 0.0663, 0.0402, 0.0313, 0.0276, 0.0244], [0.1734, 0.1734, 0.0819, 0.0638, 0.0563, 0.0497, 0.0412, 0.0321], [0.1537, 0.1444, 0.1274, 0.1197, 0.0343, 0.0322, 0.0195, 0.0184], [0.2163, 0.1158, 0.1158, 0.0847, 0.0796, 0.0747, 0.0453, 0.0189], [0.2515, 0.2085, 0.0465, 0.0194, 0.0182, 0.0118, 0.0076, 0.0059], [0.5874, 0.1311, 0.0901, 0.0376, 0.0214, 0.0201, 0.0138, 0.013], [0.1263, 0.0766, 0.0161, 0.0125, 0.011, 0.0071, 0.0043, 0.0038], [0.0856, 0.0487, 0.0116, 0.0102, 0.008, 0.007, 0.004, 0.0031], [0.027, 0.0254, 0.0198, 0.0186, 0.0093, 0.0073, 0.0068, 0.0064], [0.0262, 0.0217, 0.0159, 0.0159, 0.014, 0.0116, 0.0071, 0.0066], [0.0167, 0.0147, 0.0138, 0.0108, 0.0108, 0.0095, 0.0084, 0.007], [0.1146, 0.0893, 0.0449, 0.0176, 0.0165, 0.0113, 0.0094, 0.0088], [0.1144, 0.0371, 0.0225, 0.0165, 0.0165, 0.0088, 0.0088, 0.0078], [0.0321, 0.0195, 0.0143, 0.0098, 0.0086, 0.0076, 0.0056, 0.0052], [0.0169, 0.0124, 0.0103, 0.008, 0.0062, 0.0058, 0.0055, 0.0048], [0.0128, 0.0088, 0.0077, 0.0057, 0.0053, 0.0044, 0.0044, 0.0039], [0.006, 0.0053, 0.0021, 0.002, 0.0016, 0.0016, 0.0014, 0.0013], [0.0131, 0.008, 0.0021, 0.002, 0.0019, 0.0018, 0.0018, 0.0016], [0.0131, 0.0062, 0.0055, 0.0051, 0.004, 0.0038, 0.0035, 0.0035], [0.0161, 0.0071, 0.0067, 0.0043, 0.0041, 0.0038, 0.0036, 0.0036], [0.0229, 0.0065, 0.0054, 0.0035, 0.0031, 0.0027, 0.0026, 0.0023], [0.0218, 0.0059, 0.0043, 0.0043, 0.004, 0.004, 0.0031, 0.0031], [0.0224, 0.0154, 0.0106, 0.0099, 0.0088, 0.0082, 0.0082, 0.0082], [0.03, 0.0249, 0.0142, 0.0133, 0.0118, 0.0104, 0.0104, 0.0076], [0.0488, 0.0335, 0.0131, 0.0123, 0.0123, 0.0102, 0.0096, 0.008], [0.0633, 0.0463, 0.0384, 0.0233, 0.017, 0.017, 0.0103, 0.0086], [0.1067, 0.0418, 0.0306, 0.027, 0.021, 0.0185, 0.0136, 0.0136], [0.0327, 0.0186, 0.0186, 0.0145, 0.0113, 0.0113, 0.0113, 0.0106], [0.0451, 0.0274, 0.0156, 0.0138, 0.0129, 0.0107, 0.0101, 0.0095], [0.0345, 0.0163, 0.0135, 0.0112, 0.0087, 0.0068, 0.0064, 0.0053], [0.0668, 0.0381, 0.0246, 0.014, 0.0116, 0.008, 0.008, 0.0075], [0.0799, 0.0244, 0.0178, 0.0157, 0.0148, 0.0123, 0.0108, 0.0102], [0.0895, 0.0309, 0.0241, 0.0213, 0.0176, 0.0121, 0.0094, 0.0083], [0.146, 0.0832, 0.0393, 0.0369, 0.0186, 0.0136, 0.012, 0.0093], [0.5916, 0.1165, 0.019, 0.0168, 0.0123, 0.0108, 0.0108, 0.0102], [0.52, 0.1688, 0.0484, 0.0332, 0.0332, 0.0148, 0.0115, 0.0074], [0.4621, 0.2803, 0.043, 0.0295, 0.0203, 0.0191, 0.0131, 0.009], [0.3585, 0.2792, 0.0706, 0.055, 0.019, 0.0108, 0.0108, 0.0084], [0.4455, 0.1126, 0.0774, 0.0683, 0.0366, 0.0236, 0.0143, 0.0119], [0.3054, 0.1852, 0.0772, 0.0601, 0.0468, 0.0322, 0.0251, 0.0118], [0.4332, 0.0967, 0.0586, 0.0517, 0.0403, 0.0334, 0.0158, 0.0158], [0.541, 0.083, 0.0732, 0.0392, 0.0238, 0.0185, 0.0163, 0.0153], [0.5894, 0.0904, 0.0548, 0.0377, 0.0333, 0.0202, 0.0157, 0.0139], [0.4923, 0.0856, 0.0666, 0.0519, 0.0296, 0.0296, 0.023, 0.0203], [0.5591, 0.0668, 0.0589, 0.052, 0.0336, 0.0315, 0.0261, 0.018], [0.4074, 0.0665, 0.0518, 0.0457, 0.0403, 0.0314, 0.0277, 0.0191], [0.6752, 0.0712, 0.0297, 0.0297, 0.0246, 0.0204, 0.014, 0.0116], [0.7621, 0.0803, 0.0552, 0.0179, 0.0109, 0.0109, 0.0096, 0.0075], [0.8444, 0.1295, 0.0073, 0.005, 0.003, 0.0008, 0.0008, 0.0007], [0.8212, 0.1111, 0.0409, 0.015, 0.0038, 0.001, 0.0008, 0.0005], [0.8926, 0.1066, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9387, 0.06, 0.001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9426, 0.0323, 0.0196, 0.003, 0.0004, 0.0004, 0.0003, 0.0002], [0.9394, 0.0364, 0.0172, 0.0038, 0.001, 0.0004, 0.0002, 0.0002], [0.3925, 0.3925, 0.0602, 0.0531, 0.0195, 0.0172, 0.0134, 0.0092], [0.4622, 0.4079, 0.0552, 0.0179, 0.0075, 0.0066, 0.0051, 0.0035], [0.7686, 0.1513, 0.0141, 0.011, 0.0085, 0.0062, 0.0052, 0.0031], [0.3281, 0.3281, 0.1756, 0.0269, 0.0269, 0.0269, 0.0112, 0.0077]], "ranks": {}}, {"pos": 441, "top": [["s", "<|endoftext|>", " \u2013", ",", "\u2013", "a", ".", " [\u2026]"], ["s", " *\u2013", " @(", "sprozess", "\u2013\u2013", "   \n\n", "\u2013and", " (@"], ["s", "\u2013", "\u2013and", ".\u2013", " \ud83d\ude42", "\u2026..", " \u2013", ".."], ["\u52a0\u62ff\u5927", "sprozess", "\u65b0\u52a0\u5761", "spraak", "sik", "sste", " /**<", "innacle"], ["s", "\n\n\n", " \n\n\n", " \n\n", ".@", " @(", " (@", " \"@"], ["s", " \n\n\n", " \n\n", ".@", " @(", "\n\n\n", "<|endoftext|>", "@d"], ["\n\n", " \n\n", "<|endoftext|>", " \n\n\n", "\n\n\n", "s", "   \n\n", "\n\n\n\n"], [" \n\n", "\n\n", " \n\n\n", "\n\n\n", "   \n\n", "<|endoftext|>", "s", "    \n\n"], [" \n\n", " \n\n\n", "\n\n", "\n\n\n", "   \n\n", "<|endoftext|>", "    \n\n", "  \n\n"], [" \n\n", " \n\n\n", "s", "   \n\n", " unpredict", "\n\n\n", "<|endoftext|>", "\n\n"], [" \n\n", " \n\n\n", "<|endoftext|>", "\n\n", "\n\n\n", "s", "   \n\n", "  \n\n"], [" \n\n", " \n\n\n", " unpredict", " unpredictable", "\n\n", "\n\n\n", "   \n\n", "s"], [" \n\n", " unpredict", " unpredictable", "s", " \n\n\n", " unfore", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae"], [" \n\n", "<|endoftext|>", " unpredictable", " unpredict", "s", " \n\n\n", " unfore", "\u4e0d\u53ef\u601d\u8bae"], [" \n\n", "<|endoftext|>", " \n\n\n", "\n\n", "s", " unpredictable", " unpredict", "   \n\n"], [" \n\n", "<|endoftext|>", "s", " \n\n\n", " unpredictable", "\n\n", " unpredict", " wildly"], ["<|endoftext|>", " \n\n", "s", " unpredictable", " \n\n\n", " unpredict", "e", "\u00a0"], [" unpredict", " unpredictable", " \n\n", "s", " wildly", " \n\n\n", "<|endoftext|>", " chaotic"], [" unpredict", " unpredictable", " \n\n", " wildly", "s", " chaotic", " unsettling", " erratic"], [" unpredictable", " unpredict", " \n\n", " wildly", " unfore", " unsettling", " erratic", " looming"], [" \n\n", "<|endoftext|>", " unpredict", " unpredictable", "\n\n", " \n\n\n", "   \n\n", " wildly"], [" unpredictable", " unpredict", " chaotic", " nightmares", " behaviors", " chaos", " erratic", " skyrocket"], [" unpredictable", " unpredict", " erratic", " unfore", " wildly", " chaotic", " crises", " dramatic"], [" unpredictable", " unpredict", " wildly", " dramatic", " unfore", " erratic", " looming", " crises"], [" \n\n", " unpredictable", " unpredict", "\n\n", "   \n\n", " \n\n\n", "<|endoftext|>", "  \n\n"], [" unpredictable", " unpredict", " \n\n", "\n\n", "   \n\n", " wildly", " erratic", " chaotic"], [" unpredictable", " unpredict", " \n\n", "\n\n", " erratic", " chaotic", " volatility", " crises"], ["\n\n", " unpredictable", " \n\n", " unpredict", " wildly", " erratic", " ,", "  \n\n"], [" unpredictable", " unpredict", " \n\n", " erratic", " crises", " chaotic", " volatility", " chaos"], [" unpredictable", " unpredict", " erratic", " crises", " volatility", " chaotic", " \n\n", " chaos"], [" unpredictable", " unpredict", " erratic", " \n\n", " crises", " chaotic", " chaos", " volatility"], [" unpredictable", " unpredict", " erratic", " chaotic", " crises", " catastrophic", " chaos", " volatility"], [" unpredictable", " unpredict", " crises", " chaotic", " erratic", " catastrophic", " chaos", " volatility"], [" unpredictable", " unpredict", " erratic", " crises", " chaotic", " volatility", " chaos", " catastrophic"], [" unpredictable", " unpredict", " crises", " erratic", " volatility", " chaotic", " catastrophic", " chaos"], [" unpredictable", " unpredict", " volatility", " crises", " erratic", " jitter", " chaotic", " catastrophic"], [" unpredictable", " unpredict", " volatility", " erratic", " jitter", " chaotic", " chaos", " volatile"], [" unpredictable", " unpredict", " volatility", " erratic", " jitter", " predictable", " unstable", " chaotic"], [" unpredictable", " unpredict", " predictable", " erratic", " volatility", " jitter", " delays", " spikes"], [" unpredictable", " unpredict", " volatility", " erratic", " predictable", " jitter", " delays", " timing"], [" unpredictable", " unpredict", " erratic", " delays", " volatility", " timing", " predictable", " jitter"], [" unpredictable", " unpredict", " timing", " erratic", " delays", " jitter", " predictable", " volatility"], [" unpredictable", " unpredict", " erratic", " spikes", " delays", " bursts", " volatility", " jitter"], [" unpredictable", " unpredict", " erratic", " spikes", " timing", " bursts", " delays", " predictable"], [" unpredictable", " unpredict", " erratic", " spikes", " bursts", " delays", " interruptions", " timing"], [" unpredictable", " unpredict", " spikes", " erratic", " bursts", " delays", " interruptions", " sudden"], [" unpredictable", " unpredict", " spikes", " bursts", " erratic", " sudden", " interruptions", " delays"], [" unpredictable", " unpredict", " bursts", " spikes", " erratic", " sudden", " interruptions", " delays"], [" unpredictable", " unpredict", " bursts", " spikes", " sudden", " interruptions", " erratic", " delays"], [" unpredictable", " bursts", " unpredict", " spikes", " interruptions", " sudden", " erratic", " delays"], [" unpredictable", " bursts", " unpredict", " spikes", " interruptions", " sudden", " glitches", " erratic"], [" interruptions", " spikes", " bursts", " pauses", " downtime", " sudden", " delays", " glitches"], [" spikes", " interruptions", " pauses", " delays", " latency", " bursts", " downtime", " spike"], [" spikes", " latency", " interruptions", " pauses", " downtime", " delays", " bursts", " spike"], [" spikes", " latency", " pauses", " garbage", " interruptions", " downtime", " allocations", " delays"], [" garbage", " latency", " spikes", "\u5783\u573e", " pauses", " GC", " allocations", " interruptions"], [" GC", " garbage", "GC", "\u5783\u573e", "gc", " pauses", "(gc", "_gc"], [" GC", " latency", " garbage", "GC", " pauses", " spikes", "gc", " pause"], [" GC", " latency", " garbage", "GC", " spikes", " pauses", "gc", " gc"], [" latency", " spikes", " GC", " spike", " pauses", " allocations", " stutter", " stalls"], [" latency", " spikes", " pauses", " spike", " pause", " GC", " stutter", "-lat"], [" latency", " pauses", " pause", " stutter", " spikes", " GC", " micro", " spike"], [" latency", " micro", " GC", " pause", " pauses", " stutter", " spikes", " allocation"]], "p": [[0.4881, 0.2306, 0.0961, 0.0661, 0.0427, 0.0089, 0.0084, 0.0048], [0.2032, 0.0189, 0.0178, 0.0147, 0.0122, 0.0115, 0.0108, 0.0101], [0.5206, 0.0705, 0.0584, 0.0259, 0.0157, 0.0122, 0.0108, 0.0084], [0.0509, 0.0308, 0.0199, 0.0094, 0.0083, 0.0078, 0.0069, 0.0069], [0.4935, 0.0489, 0.0489, 0.0357, 0.0204, 0.018, 0.0169, 0.0149], [0.2631, 0.2181, 0.1408, 0.0102, 0.0085, 0.0079, 0.0055, 0.0048], [0.4891, 0.3809, 0.0584, 0.0354, 0.0276, 0.0019, 0.0011, 0.0008], [0.8172, 0.0976, 0.0522, 0.0097, 0.004, 0.0036, 0.002, 0.0007], [0.8662, 0.1035, 0.018, 0.0066, 0.0028, 0.0007, 0.0004, 0.0003], [0.4654, 0.1712, 0.0556, 0.0071, 0.0059, 0.0059, 0.004, 0.004], [0.7956, 0.095, 0.0449, 0.0328, 0.0083, 0.0035, 0.0027, 0.0011], [0.5359, 0.1442, 0.0221, 0.0134, 0.0118, 0.0104, 0.0072, 0.0049], [0.0664, 0.0486, 0.0456, 0.0295, 0.023, 0.0123, 0.0062, 0.0045], [0.0616, 0.0397, 0.0291, 0.0291, 0.0257, 0.02, 0.0078, 0.0057], [0.3858, 0.1822, 0.0522, 0.0279, 0.018, 0.0141, 0.0109, 0.0036], [0.1963, 0.0678, 0.0387, 0.0341, 0.032, 0.032, 0.0234, 0.0056], [0.411, 0.0671, 0.0407, 0.0205, 0.0159, 0.015, 0.0066, 0.0062], [0.0836, 0.0836, 0.0272, 0.0165, 0.0088, 0.0073, 0.0073, 0.0047], [0.1808, 0.1242, 0.026, 0.0079, 0.0075, 0.0062, 0.0051, 0.0043], [0.1422, 0.1336, 0.0117, 0.0091, 0.0067, 0.0043, 0.0043, 0.0043], [0.4537, 0.1473, 0.0614, 0.0449, 0.0165, 0.005, 0.0047, 0.0039], [0.1327, 0.0912, 0.0055, 0.0033, 0.0031, 0.0031, 0.0029, 0.0029], [0.348, 0.1983, 0.005, 0.0047, 0.0047, 0.0044, 0.0036, 0.003], [0.3949, 0.1365, 0.0072, 0.0044, 0.0039, 0.0036, 0.003, 0.0028], [0.5852, 0.1227, 0.0699, 0.0579, 0.0095, 0.0057, 0.0042, 0.0037], [0.4904, 0.2044, 0.1592, 0.0035, 0.0024, 0.0021, 0.002, 0.002], [0.5855, 0.2154, 0.0545, 0.0398, 0.0037, 0.002, 0.0014, 0.0014], [0.3397, 0.206, 0.1818, 0.0807, 0.0026, 0.0023, 0.0016, 0.0012], [0.7406, 0.1653, 0.0047, 0.0034, 0.0017, 0.0017, 0.0013, 0.0013], [0.7735, 0.1726, 0.0028, 0.0019, 0.0016, 0.0014, 0.0011, 0.001], [0.8244, 0.1264, 0.003, 0.0026, 0.0017, 0.0014, 0.0009, 0.0008], [0.8679, 0.0915, 0.0018, 0.0016, 0.0012, 0.0009, 0.0009, 0.0007], [0.8546, 0.0901, 0.0026, 0.0023, 0.0023, 0.0015, 0.0014, 0.0009], [0.7522, 0.1902, 0.0033, 0.0029, 0.0027, 0.002, 0.0019, 0.0015], [0.7719, 0.1952, 0.0022, 0.002, 0.0016, 0.0013, 0.0007, 0.0007], [0.8316, 0.1275, 0.0026, 0.0022, 0.0019, 0.001, 0.001, 0.0009], [0.8833, 0.1055, 0.0009, 0.0008, 0.0005, 0.0004, 0.0003, 0.0002], [0.9186, 0.0754, 0.0006, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.922, 0.0757, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9444, 0.0533, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9358, 0.0598, 0.0005, 0.0005, 0.0004, 0.0004, 0.0003, 0.0003], [0.9435, 0.0532, 0.0005, 0.0005, 0.0004, 0.0003, 0.0002, 0.0001], [0.9547, 0.0419, 0.0011, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9353, 0.0598, 0.0007, 0.0005, 0.0005, 0.0004, 0.0004, 0.0002], [0.9383, 0.0529, 0.0016, 0.0011, 0.0008, 0.0008, 0.0004, 0.0004], [0.9469, 0.0471, 0.0013, 0.001, 0.0007, 0.0003, 0.0002, 0.0002], [0.9564, 0.0371, 0.0016, 0.0013, 0.0009, 0.0004, 0.0003, 0.0003], [0.95, 0.0368, 0.005, 0.003, 0.0008, 0.0008, 0.0007, 0.0004], [0.8961, 0.0573, 0.0186, 0.0113, 0.0037, 0.0032, 0.0025, 0.0009], [0.4892, 0.2619, 0.0963, 0.0584, 0.0276, 0.013, 0.0079, 0.0079], [0.3163, 0.2464, 0.1164, 0.0906, 0.0706, 0.0202, 0.0158, 0.0158], [0.4655, 0.2492, 0.1712, 0.0232, 0.0109, 0.0075, 0.0066, 0.0059], [0.7109, 0.14, 0.0454, 0.0243, 0.0215, 0.0189, 0.013, 0.0048], [0.7807, 0.0641, 0.0499, 0.044, 0.0208, 0.0126, 0.0068, 0.0036], [0.6659, 0.1311, 0.0619, 0.0426, 0.0293, 0.0108, 0.0095, 0.0074], [0.8152, 0.0521, 0.0521, 0.0406, 0.0103, 0.0103, 0.0055, 0.0023], [0.5678, 0.3902, 0.0194, 0.0151, 0.0018, 0.0016, 0.0011, 0.0008], [0.5902, 0.1916, 0.0799, 0.0428, 0.0428, 0.0294, 0.0035, 0.0035], [0.7251, 0.1618, 0.0464, 0.0319, 0.015, 0.0071, 0.003, 0.0023], [0.6208, 0.2933, 0.0397, 0.0241, 0.0069, 0.0029, 0.0022, 0.0022], [0.653, 0.1871, 0.0884, 0.0197, 0.0197, 0.0154, 0.0044, 0.0018], [0.7161, 0.0969, 0.0588, 0.0357, 0.0278, 0.0191, 0.0149, 0.0062], [0.5206, 0.0905, 0.0905, 0.0705, 0.0622, 0.0622, 0.0259, 0.0259]], "ranks": {}}, {"pos": 442, "top": [[" \u2013", " [\u2026]", "\u2013", " |\u2013", ".\u2013", "\u20ac\u201c", ".", "\u2026.."], [" *\u2013", " *\u201c", " *\\", " \u2013**", " \u2013,", "\u20ac\u201c", " \"\\\\\"", " \\\"\""], [" \u2013", " *\u2013", " \u2013,", ".\u2013", "\u20ac\u201c", " |\u2013", "\u2013\u2013", " [\u2026]"], [" *\u201c", " Blowjob", "*\u201c.", "bti", "(\",\"", " Strec", " Geile", " *\\"], [" *\u201c", "\u20ac\u201c", " [$", "@\\", " *\u2013", " (\u201c", " *\\", " \",\""], [" *\u201c", "\u20ac\u201c", " *)\"", "(\",\"", " [\u2026]", " \u201c.", " *\u2013", " &,"], [" *\u201c", " ......", "\ufffd", "\ufffd\ufffd", " [...]", " [\u2026]", " [$", " ....."], [" *\u201c", "\ufffds", ".\ufffd", "\ufffdt", " ......", "\ufffd", "\\xe", " \ufffd"], [" [\u2026]", " [...]", " *\u201c", ".\ufffd", " ......", "\ufffd", " [$", "\ufffds"], [" [\u2026]", "\\xe", "\u2013\u2013", " \u2013,", " [...]", "\ufffdt", ".\ufffd", "\ufffds"], [" [\u2026]", " [...]", "\\xe", ".\ufffd", "\ufffd", " [$", " *\u201c", " \u2013,"], [" *\u201c", "omic", "bti", "czne", " transformative", " latency", "avanaugh", " lockdown"], [" transformative", " latency", " *\u201c", "czne", " cybersecurity", " lockdown", "avanaugh", "omic"], [" transformative", " latency", "czne", "avanaugh", " geopolitical", " cybersecurity", "t\u00e9ri", " impactful"], [" transformative", " concurrently", " strategic", " nuanced", " leveraging", " geopolitical", " intermitt", " potentially"], [" myriad", "t\u00e9ri", " disparate", " transformative", " enduring", " proximity", " concurrently", " requisite"], [" myriad", " potentially", "omic", " transformative", " disparate", " via", " nuanced", " leveraging"], ["czne", " transformative", "omic", "\u4f0f\u5929", " looming", " via", " myriad", " potentially"], [" fraught", "bti", " exacerbated", "avanaugh", " transformative", " geopolitical", "czne", " myriad"], [" myriad", " swiftly", " via", " beyond", " ostensibly", " fraught", " ensuing", " &,"], ["<|endoftext|>", " myriad", " swiftly", " [\u2026]", " prior", " ,", " across", " ostensibly"], ["\u4f0f\u5929", " beyond", "avanaugh", " exacerbated", " %+", " L\u0110", " swiftly", " geopolitical"], ["\u4f0f\u5929", " swiftly", " myriad", " %+", " across", " beyond", " ,", " amidst"], [" ,", " swiftly", " across", "<|endoftext|>", " beyond", " myriad", "\u4f0f\u5929", " amidst"], ["\r\n\r\n", " \r\n\r\n", "<|endoftext|>", " swiftly", "\u4f0f\u5929", " myriad", " {{--<", "  \n\n"], [" latency", "\u4f0f\u5929", " throughput", " *\u201c", " impactful", " impacting", " leveraging", " {{--<"], [" latency", "\u4f0f\u5929", " throughput", " disruptions", " microseconds", " impacting", " triggering", " spikes"], [" ,", " swiftly", " rapidly", " across", "\u4f0f\u5929", " speed", " {{--<", " over"], [" latency", " microseconds", " throughput", " speed", " spikes", " impact", " triggering", " unpredictable"], [" latency", " microseconds", " spikes", " throughput", " ____", " jitter", " unpredictable", " uptime"], [" speed", " spikes", " during", " latency", " impact", " unpredictable", " triggered", " hours"], [" during", " critical", " speed", " beyond", " time", " ,", " .", " impact"], [" spikes", " speed", " latency", " critical", " during", " unpredictable", " time", " triggered"], [" spikes", " unpredictable", " latency", " critical", " delays", " \u2013", " speed", " spike"], [" spikes", " unpredictable", " latency", " spike", " delays", " unpredict", " jitter", " triggered"], [" spikes", " unpredictable", " latency", " delays", " jitter", " spike", " (\u201c", " delay"], [" latency", " delays", " unpredictable", " spikes", " jitter", " delay", " spike", " delayed"], [" latency", " unpredictable", " spikes", " delays", " jitter", " spike", " delay", " due"], [" unpredictable", " spikes", " delays", " latency", " jitter", " spike", " delay", " due"], [" unpredictable", " spikes", " latency", " delays", " jitter", " spike", " milliseconds", " unpredict"], [" unpredictable", " spikes", " delays", " latency", " jitter", " delay", " milliseconds", " spike"], [" delays", " unpredictable", " spikes", " latency", " jitter", " glitches", " bursts", " delay"], [" spikes", " unpredictable", " delays", " latency", " jitter", " bursts", " interruptions", " spike"], [" spikes", " unpredictable", " delays", " latency", " bursts", " spike", " jitter", " interruptions"], [" spikes", " unpredictable", " bursts", " spike", " latency", " interruptions", " jitter", " delays"], [" spikes", " unpredictable", " bursts", " spike", " interruptions", " unpredict", " latency", " delays"], [" spikes", " unpredictable", " bursts", " spike", " interruptions", " due", " latency", " delays"], [" spikes", " bursts", " unpredictable", " spike", " due", " interruptions", " periods", " unpredict"], [" spikes", " bursts", " unpredictable", " interruptions", " spike", " due", " glitches", " unpredict"], [" spikes", " bursts", " unpredictable", " interruptions", " spike", " unpredict", " delays", " glitches"], [" spikes", " bursts", " unpredictable", " interruptions", " unpredict", " glitches", " spike", " delays"], [" spikes", " bursts", " interruptions", " spike", " pauses", " unpredictable", " unpredict", " interrupts"], [" spikes", " bursts", " spike", " interruptions", " pauses", " latency", " jitter", " glitches"], [" spikes", " spike", " bursts", " peaks", " jitter", " pauses", " latency", " interruptions"], [" spikes", " spike", " bursts", " jitter", " latency", " peaks", " fluctuations", " swings"], [" spikes", " spike", " bursts", " peaks", " jitter", "\u9ad8\u5cf0", "\u5cf0\u503c", " fluctuations"], [" spikes", " spike", " peaks", " bursts", " jitter", "\u9ad8\u5cf0", " Spike", " fluctuations"], [" spikes", " spike", " Spike", " bursts", " peaks", " spiked", " jitter", "\u9ad8\u5cf0"], [" spikes", " spike", " peaks", " Spike", " spiked", " bursts", " jitter", "\u9ad8\u5cf0"], [" spikes", " spike", " Spike", " peaks", " spiked", " bursts", " bumps", " jitter"], [" spikes", " spike", " Spike", " peaks", " spiked", " bumps", " jitter", " bursts"], [" spikes", " sp", "-sp", " spike", " Sp", "/sp", "_sp", "sp"], [" spikes", " spike", " peaks", " jitter", " stalls", " bumps", " dips", " stutter"]], "p": [[0.5761, 0.0883, 0.0368, 0.0223, 0.0197, 0.0185, 0.0127, 0.0106], [0.2658, 0.0492, 0.036, 0.0317, 0.0317, 0.0193, 0.017, 0.0132], [0.2627, 0.2318, 0.1593, 0.0586, 0.0429, 0.0356, 0.0356, 0.0334], [0.0791, 0.0101, 0.0094, 0.0089, 0.0047, 0.0047, 0.0042, 0.0033], [0.6125, 0.0099, 0.0068, 0.0064, 0.0056, 0.0041, 0.0041, 0.0041], [0.1374, 0.0106, 0.0083, 0.0078, 0.0053, 0.005, 0.005, 0.0037], [0.1605, 0.0758, 0.0336, 0.0279, 0.0246, 0.0217, 0.0192, 0.0124], [0.0545, 0.0352, 0.0352, 0.0292, 0.0257, 0.0242, 0.0177, 0.0177], [0.1585, 0.1399, 0.0848, 0.0312, 0.0214, 0.0167, 0.0138, 0.013], [0.0208, 0.0162, 0.0072, 0.0067, 0.0046, 0.0044, 0.0041, 0.0038], [0.1064, 0.0882, 0.0223, 0.0105, 0.0077, 0.0072, 0.0068, 0.0064], [0.0128, 0.0037, 0.0032, 0.0032, 0.0027, 0.0025, 0.0025, 0.0024], [0.0055, 0.0046, 0.0025, 0.0023, 0.002, 0.0019, 0.0019, 0.0018], [0.0073, 0.0036, 0.0028, 0.0021, 0.002, 0.002, 0.0018, 0.0016], [0.006, 0.0037, 0.0024, 0.0021, 0.002, 0.002, 0.0018, 0.0018], [0.0059, 0.0044, 0.0036, 0.0026, 0.0021, 0.0021, 0.0021, 0.0019], [0.0047, 0.0033, 0.0033, 0.0029, 0.0029, 0.0025, 0.0025, 0.0025], [0.0023, 0.0022, 0.002, 0.0018, 0.0017, 0.0016, 0.0016, 0.0016], [0.0031, 0.0026, 0.0026, 0.0022, 0.0022, 0.0022, 0.002, 0.002], [0.0095, 0.0078, 0.0035, 0.0031, 0.0029, 0.0029, 0.0025, 0.0025], [0.9079, 0.0009, 0.0009, 0.0004, 0.0004, 0.0004, 0.0004, 0.0003], [0.0024, 0.0021, 0.0018, 0.0017, 0.0015, 0.0014, 0.0014, 0.0013], [0.0042, 0.004, 0.0037, 0.0033, 0.0033, 0.0031, 0.0024, 0.0023], [0.0061, 0.0054, 0.0045, 0.004, 0.0037, 0.0035, 0.0026, 0.0024], [0.0098, 0.0082, 0.0064, 0.006, 0.0039, 0.0039, 0.0036, 0.0036], [0.0071, 0.0043, 0.0038, 0.0036, 0.0036, 0.0034, 0.0026, 0.0022], [0.0117, 0.0052, 0.0052, 0.0036, 0.0034, 0.0028, 0.0028, 0.0026], [0.0191, 0.0062, 0.0051, 0.0048, 0.0035, 0.0035, 0.0031, 0.0029], [0.0206, 0.0091, 0.0081, 0.0076, 0.0071, 0.0059, 0.0055, 0.0049], [0.0458, 0.0116, 0.0109, 0.009, 0.0062, 0.0058, 0.0055, 0.0051], [0.0206, 0.0193, 0.0182, 0.016, 0.0125, 0.0125, 0.0104, 0.0104], [0.0282, 0.0265, 0.0207, 0.0161, 0.0142, 0.0125, 0.0111, 0.0111], [0.0223, 0.0174, 0.0153, 0.0153, 0.0144, 0.0127, 0.0127, 0.012], [0.0374, 0.0177, 0.0166, 0.0129, 0.0107, 0.0107, 0.0101, 0.0089], [0.0534, 0.0345, 0.0269, 0.0173, 0.0163, 0.0119, 0.0112, 0.0099], [0.056, 0.0361, 0.0361, 0.0264, 0.0193, 0.016, 0.0104, 0.0097], [0.1114, 0.0719, 0.0676, 0.0526, 0.034, 0.0249, 0.0142, 0.0125], [0.1018, 0.07, 0.0657, 0.0481, 0.0375, 0.0188, 0.0166, 0.0129], [0.1491, 0.1024, 0.0849, 0.075, 0.0515, 0.0215, 0.019, 0.0167], [0.2505, 0.1722, 0.0866, 0.0764, 0.0595, 0.0206, 0.0181, 0.017], [0.2298, 0.179, 0.123, 0.0845, 0.0618, 0.0189, 0.0166, 0.0156], [0.1958, 0.1958, 0.1958, 0.0816, 0.072, 0.0234, 0.0194, 0.0182], [0.384, 0.1247, 0.0971, 0.052, 0.0459, 0.0405, 0.0357, 0.0357], [0.4107, 0.1511, 0.063, 0.0491, 0.0491, 0.0337, 0.0298, 0.0232], [0.4736, 0.1357, 0.0726, 0.0389, 0.0267, 0.0267, 0.0236, 0.0236], [0.5546, 0.1589, 0.0584, 0.0313, 0.0157, 0.013, 0.0123, 0.0115], [0.5361, 0.174, 0.0822, 0.0302, 0.0172, 0.0118, 0.0111, 0.0111], [0.5735, 0.1129, 0.1129, 0.0222, 0.0209, 0.0184, 0.0087, 0.0082], [0.6241, 0.1393, 0.0658, 0.0188, 0.0166, 0.0156, 0.0089, 0.0074], [0.6799, 0.1719, 0.0299, 0.0233, 0.0097, 0.0086, 0.0055, 0.0043], [0.6746, 0.1706, 0.0278, 0.0159, 0.0109, 0.008, 0.007, 0.004], [0.9003, 0.0576, 0.0113, 0.0061, 0.0029, 0.002, 0.0011, 0.0009], [0.9888, 0.0046, 0.0031, 0.0008, 0.0005, 0.0004, 0.0002, 0.0001], [0.9956, 0.0022, 0.001, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.9975, 0.0009, 0.0008, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9978, 0.0019, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9968, 0.0032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9972, 0.0028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9954, 0.0012, 0.0009, 0.0008, 0.0006, 0.0004, 0.0002, 0.0002], [0.9993, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 443, "top": [[" \u2013", " *\u2013", "\u2013and", " |\u2013", "\u2013", ".\u2013", "en", "\u2026.."], [" *\u2013", " \u2013**", "*\u201c.", " *\u201c", " *\\", " \\\"\"", "**\u2013", ")\",\""], [" \u2013", " *\u2013", "\u2013", "\u2013and", "\u2013\u2013", ".\u2013", " \u2013,", " |\u2013"], [" *\u201c", " *\u2013", "*\u201c.", " *\u201e", ")\",\"", " \"--", " *__", " \",\""], [" *\u201c", " *\u2013", "\u2013\u2013", " \u2018", "*\u201c.", "\u2018", " *@", " \",\""], [" *\u201c", " *\u2013", "\u2013\u2013", "*\u201c.", "\u2013and", "?\u201c", " \u2018", "\u2018s"], [" *\u201c", " *\u2013", "\u2018", " \u2018", " ____", "\ufffd\ufffd", " --", "\u2013\u2013"], [" *\u201c", " *\u2013", " ____", "*\u201c.", " --", " *@", "\ufffd\ufffd", " \n \n"], [" *\u201c", " *\u2013", " ____", " \u2018", "\u2018", "\ufffd\ufffd", " *@", "\u2013\u2013"], ["\u2013\u2013", " *\u201c", " *\u2013", "\u2013and", "--", " \u2018", " --", " |\u2013"], [" \u2018", " \u2013", "\u2013\u2013", "<|endoftext|>", "--", "\u2018", " --", " *\u201c"], [" *\u201c", " --", " \u2018", " ____", " *\u2013", "\u2013\u2013", " **\u2018", " glaring"], [" --", " *\u201c", " \u2018", " *\u2013", "\u2013\u2013", " glaring", " looming", " plummet"], [" --", " \u2018", " glaring", " looming", " dramatically", " plummet", " myriad", " *\u201c"], [" --", " \u2018", " \u2013", " dramatically", " myriad", " looming", " glaring", " plummet"], [" --", " looming", " myriad", " bolster", " glaring", " dramatically", " \u2013", " \u2018"], [" \u2013", " \u2018", " myriad", " looming", " --", " bolster", " amid", " dramatically"], [" \u2013", " looming", " amid", " myriad", " --", " dramatically", " plummet", " amidst"], [" amid", " looming", " --", " amidst", " dramatically", " glaring", " myriad", " akin"], [" --", " amid", " myriad", " amidst", " dramatically", " looming", " \u2013", " \u2018"], ["<|endoftext|>", " --", " myriad", " amid", " amidst", " dramatically", " \u2013", " swiftly"], [" amid", " amidst", " looming", " --", "\u98d9\u5347", " atop", " dramatically", " skyrocket"], [" --", " amid", " amidst", " dramatically", " looming", " \u2018", " myriad", " atop"], [" --", " amid", " \u2018", " \u2013", " amidst", " dramatically", " looming", " myriad"], [" \n\n", " --", "\n\n", " \u2013", " \u2018", " amidst", " amid", " \r\n\r\n"], [" *\u201c", " amid", " --", " amidst", " jitter", " spikes", " ____", " looming"], [" --", " spikes", " jitter", " amid", " spike", " amidst", " unpredictable", " unpredict"], [" --", " \u2018", " ,", "\n\n", " \n\n", " dramatically", " heavily", " rapidly"], [" spikes", " unpredictable", " jitter", " spike", " dramatically", " unpredict", " amid", " moments"], [" spikes", " unpredictable", " jitter", " spike", " unpredict", " triggered", " dramatically", " amid"], [" spikes", " unpredictable", " during", " spike", " dramatically", " triggered", " jitter", " moments"], [" during", " unpredictable", " spikes", " even", " dramatically", " .", " --", " over"], [" during", " even", " spikes", " unpredictable", " \u2013", " due", " dramatically", " over"], [" \u2013", " spikes", " during", " unpredictable", " even", " dramatically", " critical", " \u2018"], [" spikes", " unpredictable", " spike", " triggered", " jitter", " unpredict", " looming", " dramatically"], [" spikes", " unpredictable", " \u2014", " \u2013", " \u201c", " (\u201c", " jitter", "\u2014even"], [" unpredictable", " spikes", "\u2014even", " jitter", " spike", " \u201c", " during", " unpredict"], [" spikes", " unpredictable", " \u201c", " during", " spike", " jitter", " triggered", " (\u201c"], [" unpredictable", " spikes", " \u201c", " during", " jitter", " (\u201c", " spike", "\u2014even"], [" unpredictable", " spikes", " during", " jitter", " spike", " \u201c", " bursts", " (\u201c"], [" unpredictable", " during", " spikes", " jitter", " bursts", " spike", " triggered", " unpredict"], [" unpredictable", " spikes", " during", " jitter", " bursts", " spike", " triggered", " sudden"], [" spikes", " unpredictable", " during", " bursts", " spike", " jitter", " triggered", " sudden"], [" spikes", " during", " unpredictable", " bursts", " triggered", " spike", " jitter", " sudden"], [" unpredictable", " spikes", " during", " triggered", " bursts", " spike", " due", " unpredict"], [" unpredictable", " spikes", " during", " due", " bursts", " unpredict", " triggered", " spike"], [" unpredictable", " spikes", " during", " due", " bursts", " unpredict", " spike", " triggered"], [" during", " unpredictable", " due", " spikes", " bursts", " whenever", " when", " triggered"], [" unpredictable", " due", " during", " spikes", " whenever", " (\u201c", " bursts", " when"], [" whenever", " unpredictable", " during", " when", " spikes", " bursts", " (\"", " unpredict"], [" whenever", " (\u201c", " unpredictable", " (\"", " when", " spikes", " during", "\u6bcf\u4e00\u6b21"], [" (\"", " during", " when", " (\u201c", " whenever", "when", "during", " due"], [" when", " whenever", "when", " during", " (\u201c", " (\"", " due", " cuando"], [" during", " when", " whenever", "when", "during", " (\u201c", " due", " cuando"], [" whenever", " when", " during", "when", "\u6bcf\u4e00\u6b21", "\u6bcf\u5f53", " cuando", "during"], [" whenever", " when", " garbage", " during", "when", "\u5783\u573e", "\u6bcf\u5f53", " GC"], [" garbage", " GC", "GC", "\u5783\u573e", " during", ".gc", "gc", " whenever"], [" GC", " garbage", "GC", " during", "\u5783\u573e", "gc", ".gc", " gc"], [" GC", " garbage", "GC", " during", "\u5783\u573e", "gc", " gc", " when"], [" GC", " during", " garbage", "GC", " when", " due", " whenever", "gc"], [" GC", " during", " when", " garbage", "GC", " due", " whenever", " frame"], [" during", " GC", " when", ".", " due", " whenever", " (\u201c", "GC"], [" during", ".", " when", " GC", " (", " due", " (\"", " (\u201c"]], "p": [[0.8114, 0.0357, 0.0191, 0.0168, 0.0158, 0.0075, 0.007, 0.0045], [0.8883, 0.039, 0.0112, 0.006, 0.0036, 0.0032, 0.003, 0.0025], [0.5833, 0.2146, 0.0895, 0.0615, 0.0137, 0.0137, 0.0107, 0.005], [0.5814, 0.0949, 0.0739, 0.0106, 0.0054, 0.0024, 0.0022, 0.002], [0.7431, 0.1463, 0.0164, 0.0047, 0.0044, 0.0025, 0.0024, 0.0018], [0.3326, 0.2433, 0.0423, 0.01, 0.0073, 0.0065, 0.0051, 0.0037], [0.8854, 0.0414, 0.0064, 0.006, 0.0041, 0.003, 0.0028, 0.0022], [0.8203, 0.0493, 0.0117, 0.0059, 0.0046, 0.0043, 0.0034, 0.0028], [0.8349, 0.0416, 0.0144, 0.0087, 0.0082, 0.0068, 0.005, 0.0036], [0.2087, 0.0768, 0.0678, 0.0598, 0.0265, 0.0249, 0.0161, 0.0133], [0.1145, 0.0739, 0.0695, 0.0652, 0.0652, 0.0576, 0.0508, 0.029], [0.1955, 0.1343, 0.0385, 0.0362, 0.0194, 0.0091, 0.0067, 0.0059], [0.0545, 0.0512, 0.031, 0.0166, 0.0138, 0.0129, 0.0089, 0.0074], [0.055, 0.0295, 0.0139, 0.0139, 0.0108, 0.009, 0.0084, 0.0079], [0.2853, 0.0411, 0.0265, 0.0171, 0.0118, 0.0111, 0.0071, 0.0071], [0.106, 0.0252, 0.0196, 0.0173, 0.0112, 0.0112, 0.0105, 0.0093], [0.1335, 0.0491, 0.0263, 0.0247, 0.0247, 0.015, 0.0141, 0.0132], [0.0498, 0.0342, 0.0221, 0.0152, 0.0126, 0.0104, 0.0086, 0.0086], [0.041, 0.0362, 0.0219, 0.0182, 0.0171, 0.0161, 0.0151, 0.0097], [0.0485, 0.0333, 0.026, 0.0229, 0.0215, 0.0215, 0.0157, 0.0139], [0.8363, 0.0053, 0.0039, 0.0039, 0.0028, 0.0022, 0.0019, 0.0014], [0.0569, 0.0153, 0.0135, 0.0119, 0.0099, 0.0099, 0.0077, 0.006], [0.1046, 0.0526, 0.0282, 0.0171, 0.0142, 0.0133, 0.011, 0.0076], [0.0704, 0.0354, 0.0276, 0.0243, 0.0228, 0.0189, 0.0167, 0.0147], [0.0976, 0.0917, 0.0337, 0.0337, 0.0298, 0.0298, 0.0247, 0.015], [0.0682, 0.0441, 0.0414, 0.0322, 0.0184, 0.0184, 0.0152, 0.0098], [0.0484, 0.0454, 0.0401, 0.0333, 0.0189, 0.0178, 0.0148, 0.0122], [0.1343, 0.0436, 0.0248, 0.0206, 0.016, 0.0151, 0.011, 0.0104], [0.0752, 0.0314, 0.026, 0.026, 0.0168, 0.0158, 0.0148, 0.0123], [0.1047, 0.0494, 0.0362, 0.0319, 0.0219, 0.0151, 0.0125, 0.0125], [0.0866, 0.0595, 0.0595, 0.0264, 0.0193, 0.0181, 0.016, 0.016], [0.0824, 0.0344, 0.0285, 0.0236, 0.0196, 0.0184, 0.0173, 0.0143], [0.0859, 0.0521, 0.0432, 0.0381, 0.0316, 0.0192, 0.018, 0.0169], [0.1148, 0.0577, 0.0509, 0.0397, 0.0329, 0.0187, 0.0155, 0.0146], [0.1345, 0.072, 0.03, 0.022, 0.0206, 0.0161, 0.0118, 0.0118], [0.0918, 0.0918, 0.0523, 0.0523, 0.036, 0.0338, 0.0247, 0.0218], [0.174, 0.1273, 0.0322, 0.0302, 0.0235, 0.0221, 0.0221, 0.0208], [0.1315, 0.1236, 0.1024, 0.0377, 0.0354, 0.0312, 0.0229, 0.0202], [0.1736, 0.1532, 0.1053, 0.0467, 0.0342, 0.0342, 0.0302, 0.0207], [0.2335, 0.2061, 0.1036, 0.0381, 0.0297, 0.0279, 0.018, 0.018], [0.2315, 0.2043, 0.1803, 0.0456, 0.026, 0.026, 0.0131, 0.0115], [0.2275, 0.2007, 0.1771, 0.0612, 0.0395, 0.0308, 0.0212, 0.0145], [0.2989, 0.2054, 0.1412, 0.0589, 0.0458, 0.0315, 0.023, 0.0102], [0.2244, 0.1981, 0.1981, 0.0567, 0.0344, 0.0323, 0.0237, 0.0143], [0.2654, 0.2067, 0.1253, 0.0592, 0.0523, 0.0247, 0.017, 0.015], [0.4552, 0.1478, 0.1016, 0.0374, 0.0291, 0.0257, 0.0137, 0.0129], [0.4363, 0.1417, 0.0974, 0.0591, 0.0406, 0.0231, 0.014, 0.0096], [0.4073, 0.1698, 0.0753, 0.0708, 0.0314, 0.0216, 0.0179, 0.0148], [0.1865, 0.1131, 0.1131, 0.1063, 0.0645, 0.0502, 0.0345, 0.0286], [0.1837, 0.143, 0.1262, 0.1047, 0.0924, 0.0436, 0.0249, 0.0219], [0.1462, 0.0944, 0.0783, 0.0691, 0.061, 0.0505, 0.0446, 0.0254], [0.2126, 0.1877, 0.1656, 0.129, 0.1004, 0.0254, 0.0136, 0.0099], [0.7556, 0.0796, 0.0426, 0.0426, 0.0201, 0.0074, 0.007, 0.0037], [0.4436, 0.3915, 0.06, 0.0284, 0.0221, 0.0056, 0.0049, 0.0034], [0.4676, 0.3642, 0.0813, 0.0233, 0.0076, 0.0071, 0.0052, 0.0046], [0.3502, 0.2727, 0.1874, 0.0885, 0.0099, 0.0088, 0.0068, 0.0053], [0.6044, 0.2855, 0.0562, 0.0207, 0.0111, 0.0041, 0.0041, 0.0025], [0.4804, 0.3741, 0.0835, 0.0271, 0.0128, 0.0047, 0.0042, 0.0017], [0.624, 0.2601, 0.0745, 0.0147, 0.0101, 0.0048, 0.002, 0.0018], [0.6888, 0.1197, 0.0726, 0.0565, 0.0343, 0.0087, 0.0034, 0.0018], [0.4463, 0.3067, 0.1279, 0.0285, 0.0196, 0.0173, 0.0105, 0.0053], [0.3422, 0.2665, 0.2076, 0.0674, 0.015, 0.015, 0.0117, 0.0097], [0.4174, 0.3251, 0.1972, 0.0183, 0.0092, 0.0081, 0.0063, 0.0046]], "ranks": {}}, {"pos": 444, "top": [[".", ",", " \u2013", "\u2013", "\u00a0", "\u2026.", ";", "\u2026"], [" \u2013", "\u2013", "**\u2013", " \u2013**", " **\u2013", "\u2026**", ",", "**."], ["\u2013", ",", "\u2026", ".", "\u2026,", " \u2013", "\u2026**", "\u2026\""], [" **>>", "aruhi", " \u041a\u0440\u0430\u0441\u0438", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u00ab", " Shemale", " **\u300c", " cristi"], ["\u2026**", ".@", "(@", " **\u201c", "\u2026,", "@$", " (\u2026)", "**."], ["\u2026**", " **\u2013", " **\u201c", " **\u2018", " **\"", "-**", " **.", "**."], [" \n\n", "\u2026**", "**.", "\u2026\u201d", " **\u201c", "\u201d.", " (\u2026)", " \n"], ["\u2026**", " \n\n", "**.", " **\u2013", " \n \n", "\u201d.**", " **\u2018", " \r\n \r\n"], [" \n\n", "\u2026\u201d", " [\u2026]", "[\u2026]", "\u201d.", "\u201d,", "\u2026", "   \n\n"], ["\u2026**", "\u2026,", "[\u2026]", "\u2026", "\u2013", "[${", ",", "\u2026\""], ["\u2026", " [\u2026]", "<|endoftext|>", "[\u2026]", "\u00a0", "\u2013", "\u2026**", ","], [" **", "\u2026**", " **\u2013", " **\u2018", "ingg", " **>>", " **\u201c", " **#"], ["\u2026**", " **\u2013", "ing", "ingg", " **\u2018", "**\u2013", " **", "[\u2026]"], ["ingg", "ing", "\u2026**", "\u2013", "\u2015", "[\u2026]", " \u2013", "\u2014even"], [" \u2013", "<|endoftext|>", "\u2013", " \n\n", "\u2014", "\u2014at", " \u2014", "\u2014even"], [" \u2013", " \u2014", "\u2013", "\u2014", " sprawling", "\u2014at", "es", "\u2014even"], ["<|endoftext|>", "\u2013", " \u2013", "\u00a0", " [\u2026]", "\u2026", "\u2014", "[\u2026]"], ["<|endoftext|>", "\u2013", " \u2013", "\u2013and", "[\u2026]", "\u2014", " [\u2026]", "\u2014or"], ["\u2014or", "\u2014even", "\u2014and", "\u2014if", "\u2014at", "\u2014as", "\u2014for", "\u2014"], ["<|endoftext|>", "\u2014or", "\u2014even", "\u2014at", "\u2014as", "\u2014", "\u2014and", " \u2014"], ["<|endoftext|>", " \n\n", " \u2014", "\u2014or", "<|file_sep|>", "\u2014", "\u2014at", "\u2014and"], ["eves", "oire", "\u2014or", "kki", "\u043a\u0430\u0437\u044b", "\u2014even", "vsp", "_invoke"], [" ``", "eves", "``", " looming", "\u4f0f\u5929", "oire", " \u2015", "\u6362\u4ee3"], ["<|endoftext|>", " ``", " ,", " \u2015", "\u2015", " shifting", " looming", " battling"], [" \n\n", " \r\n\r\n", " \r\n", "\u2015", " \r\n \r\n", "<|endoftext|>", "\r\n\r\n", " \u2015"], [" ``", "eves", " \r\n", " \r\n\r\n", " **>>", "uggling", " looming", " \r\n \r\n"], [" ``", "eves", " looming", " \r\n\r\n", " unpredictable", " disrupting", " \r\n", " shifting"], [" \n\n", " ,", " ``", " \r\n\r\n", " unexpectedly", " battling", " {{--<", " shifting"], [" unpredictable", " unexpectedly", " \n\n", " \r\n\r\n", " looming", " shifting", " unpredict", " \r\n"], [" **", " **,", " unpredictable", " \r\n", " \n", " \n\n", " unexpectedly", " \r\n \r\n"], [" ...", " \n\n", " \n", " unpredictable", " **", " unexpectedly", " ,", " **,"], [" ,", " ...", " .", " **", " over", " unpredictable", " unexpectedly", " even"], [" ,", " unpredictable", " unexpectedly", " over", " \u201c", " .", " critical", " shifting"], [" unpredictable", " \n\n", " shifts", "\u2011", "\u2014even", " \u2013", " unexpectedly", " bursts"], [" unpredictable", " shifts", " shifting", " bursts", "\u2014or", " spikes", " \r\n", " exploding"], [" unpredictable", "\u2026*", " *\u2013", " bursts", "\u2014or", " accumulating", "Malloc", " collapsing"], [" unpredictable", "\u2014or", " triggered", " scav", " redistrib", "Malloc", " accumulating", " bursts"], [" triggered", " unpredictable", " scav", " redistrib", " shifts", " triggers", " triggering", " spikes"], [" garbage", " scav", " clutter", "_HEAP", " unpredictable", " triggered", " realloc", "Malloc"], [" garbage", " scav", "\u5783\u573e\u5904\u7406", " cleanup", " trash", "\u5783\u573e", " recycling", "\u6e05\u7406"], [" garbage", " scav", " cleanup", "\u5783\u573e\u5904\u7406", " trash", " recycling", "\u5783\u573e", "\u6e05\u7406"], [" cleanup", " garbage", " scav", " cleaning", "\u6e05\u7406", " recycling", "\u5783\u573e\u5904\u7406", "Cleanup"], [" cleanup", " garbage", " scav", " cleaning", "\u6e05\u7406", " recycling", " triggered", " cleaners"], [" cleanup", " scav", " garbage", " triggered", " cleaning", "\u6e05\u7406", " triggering", " triggers"], [" cleanup", " garbage", " scav", " triggered", " cleaning", " triggers", " triggering", "\u6e05\u7406"], [" cleanup", " triggered", " scav", " garbage", " cleaning", " triggers", " triggering", "\u6e05\u7406"], [" cleanup", " triggered", " scav", " triggers", " cleaning", " garbage", " triggering", " bursts"], [" cleanup", " triggered", " scav", " triggers", " cleaning", "\u6e05\u7406", " triggering", " bursts"], [" triggered", " cleanup", " scav", " triggers", " triggering", " bursts", "trigger", "-trigger"], [" cleanup", " triggered", " triggers", " bursts", " scav", "-trigger", "trigger", " triggering"], [" cleanup", " triggered", "\u6e05\u7406", " scav", " triggers", " cleaning", " cleaners", ".cleanup"], [" cleanup", "\u6e05\u7406", " garbage", " cleaners", " cleaning", ".cleanup", "\u5783\u573e\u5904\u7406", " scav"], [" cleanup", " garbage", "\u6e05\u7406", " dumping", " disposing", " cleaning", " cleaners", " realloc"], [" cleanup", " disposing", " garbage", "\u6e05\u7406", " dumping", " cleaning", " cleaners", " syncing"], [" garbage", " allocating", "\u5783\u573e", " GC", " disposing", "\u5783\u573e\u5904\u7406", "\u6e05\u7406", " cleanup"], [" garbage", "\u5783\u573e", " GC", " disposing", " allocating", "\u5783\u573e\u5904\u7406", "GC", " trash"], [" GC", " garbage", "GC", "\u5783\u573e", "gc", "_gc", "_GC", ".gc"], [" GC", "GC", " garbage", "gc", "_gc", "_GC", "(gc", " allocating"], [" GC", "GC", " garbage", "gc", "_gc", "(gc", "_GC", " gc"], [" GC", "GC", " allocating", " disposing", " garbage", "gc", " collecting", " allocations"], [" GC", " allocating", "GC", " collecting", " garbage", " disposing", " cleaning", " rendering"], [" GC", " allocating", " collecting", "GC", " rendering", " garbage", " cleaning", " collections"], [" GC", " allocating", " collecting", " rendering", " cleaning", " the", "GC", " handling"]], "p": [[0.4632, 0.4088, 0.1033, 0.014, 0.004, 0.0016, 0.0011, 0.0007], [0.2102, 0.1637, 0.0602, 0.0322, 0.0222, 0.0092, 0.0087, 0.0063], [0.4495, 0.2123, 0.0885, 0.0689, 0.0287, 0.0224, 0.0164, 0.0154], [0.0429, 0.0079, 0.0058, 0.004, 0.0029, 0.0023, 0.0021, 0.0021], [0.0302, 0.0235, 0.0081, 0.0067, 0.0067, 0.0063, 0.0043, 0.0036], [0.062, 0.0275, 0.0275, 0.0084, 0.007, 0.0065, 0.0061, 0.0058], [0.3714, 0.1206, 0.0286, 0.021, 0.0185, 0.0144, 0.0119, 0.0119], [0.0848, 0.0703, 0.0138, 0.0122, 0.0115, 0.0108, 0.0089, 0.0079], [0.7408, 0.0174, 0.0154, 0.0154, 0.0127, 0.012, 0.0112, 0.0093], [0.0413, 0.0235, 0.0162, 0.0152, 0.0087, 0.0063, 0.0063, 0.0056], [0.269, 0.1194, 0.0639, 0.06, 0.053, 0.0302, 0.0284, 0.0183], [0.0337, 0.0317, 0.018, 0.0117, 0.0091, 0.0055, 0.0052, 0.0046], [0.0845, 0.0166, 0.0101, 0.0079, 0.0042, 0.0033, 0.0026, 0.0023], [0.0075, 0.0062, 0.0052, 0.0031, 0.0029, 0.0026, 0.0024, 0.0022], [0.0603, 0.0344, 0.0251, 0.0162, 0.0098, 0.0056, 0.0049, 0.0044], [0.0263, 0.017, 0.0132, 0.0103, 0.0091, 0.0075, 0.0071, 0.0062], [0.4677, 0.1721, 0.0525, 0.017, 0.016, 0.0133, 0.0097, 0.0055], [0.1981, 0.0996, 0.0344, 0.0184, 0.0087, 0.0053, 0.005, 0.0034], [0.0223, 0.0197, 0.0087, 0.0082, 0.0072, 0.006, 0.0056, 0.005], [0.1487, 0.0167, 0.0115, 0.0084, 0.0079, 0.007, 0.007, 0.0065], [0.9934, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0023, 0.0012, 0.001, 0.001, 0.001, 0.0008, 0.0008, 0.0007], [0.0141, 0.0024, 0.0019, 0.0012, 0.001, 0.001, 0.0009, 0.0009], [0.1282, 0.0077, 0.0023, 0.0022, 0.0021, 0.0019, 0.0018, 0.0017], [0.0399, 0.0188, 0.0084, 0.0048, 0.0045, 0.0045, 0.0045, 0.0035], [0.0043, 0.0036, 0.0023, 0.0015, 0.001, 0.001, 0.001, 0.0009], [0.0045, 0.0033, 0.0016, 0.0015, 0.0014, 0.0012, 0.0011, 0.0011], [0.0148, 0.0054, 0.0033, 0.0031, 0.0029, 0.0026, 0.0024, 0.0024], [0.0086, 0.0063, 0.0063, 0.0036, 0.0036, 0.0034, 0.0026, 0.0025], [0.0834, 0.0164, 0.0164, 0.0154, 0.0128, 0.0088, 0.0078, 0.0064], [0.0648, 0.0572, 0.0288, 0.0254, 0.0239, 0.0175, 0.0136, 0.0088], [0.0379, 0.0356, 0.0295, 0.0295, 0.0139, 0.0131, 0.0123, 0.0079], [0.0155, 0.0121, 0.0107, 0.0107, 0.01, 0.0094, 0.0089, 0.0073], [0.0281, 0.0117, 0.0117, 0.0117, 0.0117, 0.011, 0.011, 0.0097], [0.0104, 0.0059, 0.0056, 0.0049, 0.0046, 0.0043, 0.0041, 0.0038], [0.0098, 0.0086, 0.0067, 0.0063, 0.0052, 0.0046, 0.0036, 0.0034], [0.0126, 0.0053, 0.005, 0.0047, 0.0044, 0.0044, 0.0041, 0.0039], [0.0191, 0.0102, 0.008, 0.0066, 0.0066, 0.0062, 0.0062, 0.0051], [0.0403, 0.0244, 0.0102, 0.009, 0.0084, 0.0084, 0.007, 0.007], [0.4993, 0.2673, 0.0362, 0.0265, 0.0219, 0.0171, 0.0133, 0.0086], [0.4762, 0.2249, 0.0644, 0.0286, 0.0237, 0.0173, 0.0163, 0.0153], [0.3114, 0.2748, 0.1471, 0.0695, 0.0372, 0.0165, 0.0146, 0.0146], [0.3545, 0.2436, 0.1675, 0.0423, 0.0156, 0.0121, 0.0107, 0.0069], [0.4504, 0.1139, 0.1139, 0.0538, 0.0394, 0.0186, 0.0164, 0.0136], [0.5846, 0.0698, 0.0616, 0.0544, 0.033, 0.0273, 0.0156, 0.0083], [0.4753, 0.0936, 0.0643, 0.0604, 0.0442, 0.0268, 0.0222, 0.0093], [0.4701, 0.0926, 0.0598, 0.0437, 0.0411, 0.0386, 0.0194, 0.0125], [0.4237, 0.1376, 0.0573, 0.0394, 0.037, 0.0211, 0.0198, 0.0164], [0.2009, 0.1297, 0.0576, 0.0448, 0.0328, 0.0272, 0.0176, 0.0155], [0.1502, 0.1326, 0.0488, 0.0357, 0.0335, 0.0278, 0.0169, 0.0169], [0.1533, 0.0467, 0.0439, 0.0302, 0.0221, 0.0152, 0.0126, 0.0126], [0.4381, 0.081, 0.0492, 0.0408, 0.0317, 0.016, 0.0132, 0.0103], [0.193, 0.0667, 0.0458, 0.0405, 0.0315, 0.0261, 0.0169, 0.0158], [0.204, 0.1237, 0.1026, 0.075, 0.0455, 0.0428, 0.0215, 0.0148], [0.8094, 0.0457, 0.0356, 0.0356, 0.0314, 0.007, 0.0026, 0.0026], [0.907, 0.058, 0.0166, 0.0089, 0.0025, 0.0022, 0.0007, 0.0007], [0.6176, 0.3306, 0.0307, 0.0165, 0.002, 0.0007, 0.0006, 0.0004], [0.8999, 0.0837, 0.0088, 0.0032, 0.0009, 0.0007, 0.0006, 0.0006], [0.9397, 0.0413, 0.0134, 0.0021, 0.001, 0.0004, 0.0004, 0.0004], [0.9372, 0.0321, 0.025, 0.0009, 0.0009, 0.0008, 0.0006, 0.0004], [0.8785, 0.0636, 0.0207, 0.0125, 0.0041, 0.0036, 0.0026, 0.0025], [0.7488, 0.1013, 0.0894, 0.0155, 0.0061, 0.005, 0.0031, 0.0024], [0.6489, 0.1641, 0.0995, 0.0135, 0.0093, 0.0082, 0.0082, 0.0068]], "ranks": {}}, {"pos": 445, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0\u00a0", "\u00a0", "\u2026."], [",", ".", "\u2013", " \u2013", ";", "\u2013and", ".\u2013", " "], [".", ",", "\u2013", " \u2013", "\u2026", "\u2026.", ";", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "aruhi", " Blowjob", "\u0e21\u0e19\u0e38\u0e29", "-------------</", "----------</"], [".", ",", "\u00a0\u00a0", " ", "\u2019.", " \u201c.", ".@", "  "], [".", "\u2026.", "!\u201d.", " \u201c.", " \u200b\u200b", "\u00a0\u00a0", "\u2026..", "=\u201d"], ["   \n", "  \n", "  \r\n", "      \n", "   \r\n", ".\u2019", "     \n", "  \n\n"], ["   \n", "  \r\n", "   \r\n", "  \n", "      \n", "       \n", "     \n", "   \n\n"], ["  \n\n", ".", "   \n", "   \n\n", "  \n", "...\u201d", "...", "    \n\n"], [",", "\u2013", "\u2013and", " \u00ad", ".", "\u00ading", "\u6709\u70b9\u513f", ",."], ["...", ".", " ", "\u2026", "...\"", "  \n", ",", "\"..."], [" **", " **'", "\u5e97\u94fa\u7ecf\u8425\u8005", "\u8d44\u8baf\u7f51", " ***", "yron", " **#", "ullan"], ["\u5e97\u94fa\u7ecf\u8425\u8005", "\u88f3", "\u4e2a\u6216\u591a\u4e2a", " impactful", "\u6216\u4ee5\u5176\u4ed6\u65b9\u5f0f", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-prepend", "iskey"], [" savvy", " impactful", " busted", "\u649e\u4e0a", "-esque", "\u4ea6\u6216\u662f", " pricey", "\u4e2a\u6216\u591a\u4e2a"], [" busted", " savvy", " folks", " teens", " teen", " sorta", "-or", " assorted"], [" savvy", " pricey", " folks", " buzz", " busted", " touted", "-esque", "kids"], ["-esque", " savvy", " buzz", " sprawling", " folks", " touted", " myriad", " potentially"], ["-esque", " savvy", " buzz", "\u5de5\u4f5c\u53ca", "\u5206\u5206\u949f", "\u4ea7\u54c1\u53ca", "\u649e\u4e0a", "\u4e2a\u6216\u591a\u4e2a"], [" buzz", "-esque", "\u5de5\u4f5c\u53ca", "\u76f8\u5173\u884c\u4e1a", "\u2014or", "-than", " savvy", " teens"], ["\u2014or", "\u305d\u3046\u3057\u305f", " myriad", "\u8ddf\u81ea\u5df1", " buzz", "\u4ed6\u8ddf", " sprawling", "\u6b64\u756a"], ["<|endoftext|>", "\u2014or", " myriad", "Though", "\u305d\u3046\u3057\u305f", " seemingly", " requisite", " swiftly"], ["\u5de5\u4f5c\u53ca", "\u793e\u4f1a\u4fe1\u7528", "\u8ddf\u4eba", "\u793e\u4f1a\u529b\u91cf", "\u76f8\u5173\u884c\u4e1a", "\u4f60\u8ddf", "\u548c\u4fe1\u606f\u5316", "\u706b\u901f"], [" ``", " ''", "\u8ddf\u4eba", "\u6362\u4ee3", "\u4f60\u8ddf", "\u305d\u3046\u3057\u305f", "\u5de5\u4f5c\u53ca", "\u52a0\u73ed\u52a0\u70b9"], [" ultimately", " subsequently", " ''", " ``", " eventually", " rapidly", " seemingly", " '"], [" requisite", " seemingly", "\u8ddf\u81ea\u5df1", " ultimately", " battling", " \n\n", " rapidly", "\u2014or"], ["\u52a0\u73ed\u52a0\u70b9", "\u5927\u6f6e", "\u5de5\u4f5c\u53ca", "\u4f0f\u5929", "\u3082\u3057\u304f\u306f", "uptime", "\u3068\u304d\u306b\u306f", "\u649e\u4e0a"], ["\u793e\u4f1a\u4fe1\u7528", " spikes", " aggressively", "\u52a0\u73ed\u52a0\u70b9", " crunch", " ;;^", "\u793e\u4f1a\u529b\u91cf", " reboot"], [" '", " rapidly", " over", " seemingly", " eventually", " ultimately", " ''", " heavily"], [" rapidly", " aggressively", " spikes", " pressure", " frantic", " unexpectedly", " shutdown", " \u2019"], [" spikes", " \n  \n", " shutdown", " **", " pressure", " crash", " aggressively", " crunch"], [" time", " fire", " forced", " hit", " fires", " pressure", " spikes", " power"], [" ", " hit", " time", " power", " heavy", " forced", " over", " fire"], [" power", " over", " time", " '", " hit", " heavy", " forced", " high"], [" forced", " time", " spikes", " aggressively", " \u2019", " power", " heavy", " critical"], [" spikes", " crunch", " tech", " shutdown", " scrub", " spike", " meltdown", " aggressively"], [" CPU", " shutdown", " reboot", "\u2026*", "\u91cd\u542f", "malloc", " scav", " meltdown"], [" CPU", " spikes", " reboot", " shutdown", " triggered", " scav", " spike", "malloc"], [" CPU", " shutdown", " spikes", " reboot", " triggered", " triggers", " downtime", " cleanup"], [" CPU", " garbage", " cleanup", " shutdown", " scav", " memory", " spikes", " scrub"], [" garbage", " cleanup", " scav", "\u5783\u573e", "\u6e05\u7406", "_HEAP", " JVM", " CPU"], [" garbage", " cleanup", " scav", "\u6e05\u7406", "_HEAP", " JVM", " CPU", "\u5783\u573e"], [" cleanup", " garbage", " scav", "\u6e05\u7406", " cleaners", " CPU", " cleaning", " JVM"], [" cleanup", " garbage", " cleaners", " engines", " automated", "\u6e05\u7406", " scav", " shutdown"], [" cleanup", " cleaners", " garbage", " triggered", " engines", " shutdown", " CPU", " JVM"], [" cleanup", " cleaners", " shutdown", " triggered", " garbage", " triggers", " engines", " JVM"], [" cleanup", " shutdown", " triggered", " cleaners", " garbage", " JVM", " triggers", " engines"], [" cleanup", " triggered", " JVM", " shutdown", " triggers", " CPU", " cleaners", " scrub"], [" cleanup", " triggered", " cleaners", " triggers", " shutdown", " JVM", " automated", " trigger"], [" triggered", " cleanup", " JVM", " triggers", "-trigger", " cleaners", " trigger", " CPU"], [" triggered", "-trigger", " cleanup", "trigger", " triggers", " JVM", "_triggered", " Trigger"], [" triggered", " cleanup", "trigger", "\u6e05\u7406", "_triggered", "-trigger", " panicked", " triggers"], [" triggered", " JVM", " cleanup", "_HEAP", "trigger", "\u6e05\u7406", "scheduler", "-trigger"], [" CPU", " triggered", " JVM", "Allocator", "_HEAP", "scheduler", " cleanup", " optimizer"], [" cleanup", " optimizer", " scheduler", "scheduler", " JVM", " triggered", "Allocator", " CPU"], [" GC", " garbage", " allocator", "Allocator", " scheduler", " CLR", " JVM", " optimizer"], [" garbage", " GC", "\u5783\u573e", " allocator", "GC", "_GC", "Allocator", " CLR"], [" GC", "GC", " garbage", "_GC", "gc", "\u5783\u573e", "_gc", ".gc"], [" GC", "GC", " garbage", "_GC", "gc", "_gc", " gc", ".gc"], [" GC", "GC", " garbage", "_GC", "gc", "_gc", " gc", "\u5783\u573e"], [" GC", "GC", " garbage", "_GC", "gc", " gc", "_gc", ".gc"], [" GC", "GC", " garbage", " collector", " CLR", " runtime", "_GC", " gc"], [" GC", " collector", "GC", " garbage", " CLR", " runtime", " gc", "_GC"], [" GC", " collector", "GC", " garbage", " CLR", " Gar", " allocator", " gc"]], "p": [[0.8153, 0.1819, 0.0007, 0.0007, 0.0005, 0.0002, 0.0002, 0.0001], [0.321, 0.321, 0.25, 0.0383, 0.0086, 0.0063, 0.0019, 0.0014], [0.5387, 0.3702, 0.0826, 0.0022, 0.0019, 0.0015, 0.0009, 0.0005], [0.008, 0.0062, 0.0031, 0.0024, 0.0022, 0.0016, 0.0016, 0.0015], [0.3195, 0.0808, 0.014, 0.0066, 0.0059, 0.0055, 0.0055, 0.0049], [0.0322, 0.0208, 0.006, 0.0053, 0.0049, 0.0049, 0.0046, 0.0041], [0.2263, 0.1997, 0.1069, 0.021, 0.0198, 0.0164, 0.0082, 0.0077], [0.2527, 0.093, 0.0564, 0.0126, 0.0072, 0.0063, 0.0056, 0.0049], [0.2599, 0.2024, 0.0745, 0.0699, 0.0657, 0.0242, 0.0242, 0.0084], [0.1394, 0.0084, 0.0061, 0.0051, 0.0031, 0.0029, 0.0023, 0.0023], [0.9233, 0.0159, 0.0055, 0.0043, 0.0035, 0.0033, 0.0019, 0.0018], [0.0099, 0.0018, 0.0017, 0.0016, 0.0013, 0.0013, 0.0013, 0.0012], [0.0025, 0.0017, 0.0017, 0.0017, 0.0017, 0.0015, 0.0013, 0.0011], [0.0021, 0.0017, 0.0016, 0.0014, 0.0014, 0.0014, 0.0014, 0.0013], [0.0081, 0.0056, 0.0046, 0.0023, 0.0023, 0.0022, 0.002, 0.0019], [0.0045, 0.0033, 0.0033, 0.0031, 0.0029, 0.0026, 0.0024, 0.0024], [0.0061, 0.0048, 0.0042, 0.0021, 0.0019, 0.0018, 0.0018, 0.0018], [0.0026, 0.0017, 0.0017, 0.0012, 0.001, 0.001, 0.0009, 0.0009], [0.0034, 0.0032, 0.0014, 0.0012, 0.0011, 0.001, 0.001, 0.0009], [0.0046, 0.0015, 0.0014, 0.0014, 0.0013, 0.0012, 0.0011, 0.001], [0.4812, 0.0011, 0.001, 0.001, 0.0008, 0.0006, 0.0005, 0.0005], [0.0014, 0.0011, 0.0011, 0.001, 0.0009, 0.0009, 0.0008, 0.0008], [0.0061, 0.0051, 0.0013, 0.0011, 0.001, 0.0009, 0.0009, 0.0009], [0.0034, 0.0017, 0.0016, 0.0014, 0.0013, 0.0013, 0.0012, 0.0011], [0.0018, 0.0013, 0.0011, 0.0011, 0.001, 0.001, 0.0009, 0.0009], [0.0015, 0.0011, 0.0011, 0.0011, 0.001, 0.001, 0.001, 0.0009], [0.0019, 0.0017, 0.0015, 0.0013, 0.0013, 0.0013, 0.0013, 0.0012], [0.0078, 0.0041, 0.0034, 0.0034, 0.003, 0.0027, 0.0025, 0.0025], [0.0052, 0.0046, 0.004, 0.0034, 0.0028, 0.0028, 0.0026, 0.0023], [0.0144, 0.0127, 0.0099, 0.0099, 0.0087, 0.0077, 0.006, 0.006], [0.0176, 0.0165, 0.0107, 0.0094, 0.0094, 0.0094, 0.0078, 0.0078], [0.0289, 0.0239, 0.0199, 0.0175, 0.0106, 0.0083, 0.0078, 0.0078], [0.0215, 0.013, 0.013, 0.0123, 0.0115, 0.0102, 0.0095, 0.0079], [0.0091, 0.0081, 0.0081, 0.0071, 0.0071, 0.0067, 0.0059, 0.0055], [0.0106, 0.0093, 0.0073, 0.0068, 0.0044, 0.0044, 0.0034, 0.0034], [0.0146, 0.0065, 0.0054, 0.0051, 0.0042, 0.0042, 0.0037, 0.0035], [0.0231, 0.0085, 0.008, 0.0066, 0.004, 0.0035, 0.0035, 0.0033], [0.0223, 0.0135, 0.0119, 0.0112, 0.0099, 0.0077, 0.0072, 0.0068], [0.0637, 0.0496, 0.0265, 0.0161, 0.0133, 0.0133, 0.0111, 0.0098], [0.4566, 0.1308, 0.1019, 0.0375, 0.0214, 0.0147, 0.0147, 0.0114], [0.3178, 0.2184, 0.0969, 0.023, 0.0203, 0.0168, 0.0158, 0.009], [0.5212, 0.1318, 0.0378, 0.0276, 0.0244, 0.0139, 0.0139, 0.0095], [0.3756, 0.0838, 0.0421, 0.0212, 0.0212, 0.0165, 0.0165, 0.0155], [0.2557, 0.0503, 0.0269, 0.0253, 0.0253, 0.0238, 0.0238, 0.0197], [0.3959, 0.0368, 0.0325, 0.0305, 0.021, 0.0163, 0.0154, 0.0135], [0.2162, 0.0513, 0.04, 0.0228, 0.0189, 0.0157, 0.0147, 0.0147], [0.102, 0.0453, 0.0258, 0.0258, 0.0242, 0.0214, 0.0201, 0.0147], [0.0935, 0.0825, 0.0222, 0.0196, 0.0173, 0.0135, 0.0119, 0.0119], [0.0697, 0.0176, 0.0176, 0.0146, 0.0129, 0.0107, 0.01, 0.0089], [0.0629, 0.0297, 0.0192, 0.018, 0.0096, 0.0085, 0.0075, 0.0066], [0.0379, 0.0216, 0.0179, 0.0139, 0.0131, 0.0131, 0.0075, 0.0066], [0.0564, 0.0364, 0.0364, 0.0208, 0.0208, 0.0143, 0.0118, 0.0098], [0.0511, 0.0451, 0.0227, 0.02, 0.0177, 0.0177, 0.0147, 0.0121], [0.0509, 0.0397, 0.0373, 0.0329, 0.029, 0.0256, 0.0241, 0.0226], [0.3164, 0.2792, 0.055, 0.0333, 0.0313, 0.0276, 0.0229, 0.0202], [0.7126, 0.2313, 0.0313, 0.0054, 0.0037, 0.0023, 0.0018, 0.0007], [0.9847, 0.0109, 0.0036, 0.0003, 0.0002, 0.0001, 0.0001, 0.0], [0.9881, 0.011, 0.0004, 0.0002, 0.0002, 0.0001, 0.0, 0.0], [0.9927, 0.0067, 0.0003, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9964, 0.0032, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9981, 0.001, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9957, 0.0022, 0.0007, 0.0006, 0.0003, 0.0001, 0.0001, 0.0], [0.9986, 0.0005, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 446, "top": [["  \n", " (\u201e", ".", "s", "\ufffd", "\u00ac", " AVC", " "], [" (\u201e", "  \n\n", "  \n", "schild", " GC", "  \n  \n", " \u00ac", "\u00ac"], ["\u201a", " GC", " (\u201e", ",.", "\u2026.", "\\.", ":\\\"", "  \n"], [" Shemale", " GC", " ``(", " milfs", ".gc", " \\\"%", " Ejem", " YYS"], [" GC", " gc", " @_", " [@", " CRC", "\u201a", " (\u201e", " _____"], [" GC", ".gc", " gc", "GC", "(gc", "avanaugh", "%C", " CRC"], [" GC", "s", " _____", ".gc", " gc", "GC", "  \n", "  \n\n"], [" GC", " gc", "  \n\n", ".gc", "(gc", " _____", "GC", "  \n"], ["  \n\n", " GC", ".gc", ",...", "(gc", " _____", " {.", "  \n    \n"], [".gc", "(gc", " GC", "\\.", "\\xc", "s", "\\n", " gc"], ["\\n", "...\\", ".", "\\.", "...", "s", ",...", "\\xc"], [".gc", " GC", "(gc", " _____", " ____", "...\\", " \\\"$", " ...\\"], [" GC", ".gc", "(gc", "s", " Teixe", "'gc", "\u4e8b\u534a\u529f\u500d", " VC"], [" GC", "s", ".gc", "(gc", "GC", ",", " VC", " gc"], ["s", ",", ".", " GC", " ", ";", "...", "-"], ["s", " GC", "\u00c3", ",", " OC", "-", " APC", " massively"], ["s", ",", " GC", "\u00c3", "...", " myriad", ".", ";"], ["s", " GC", "(gc", "\u00c3", ",...", ",", "GC", ".gc"], [" GC", ".gc", "(gc", "s", "GC", "Sci", "\u00c3", " gc"], [" GC", ".gc", "(gc", "  \n\n", "GC", "\u00c3", "QC", "s"], ["  \n\n", " \n\n", "   \n\n", "<|endoftext|>", "  \n  \n", " \n  \n", "  \n\n\n", "    \n\n"], [".gc", "(gc", " GC", "avanaugh", "Haunted", "Tumblr", "trash", "istrate"], [".gc", " GC", "Haunted", "(gc", " ``", "_GC", "GC", "\u6ed3"], [" GC", " heavily", " rapidly", " ``", ".gc", " &", " nearly", "\u00c3"], ["  \n\n", " \n\n", "   \n\n", " \n  \n", "  \n  \n", " GC", "  \n    \n", " heavily"], ["  \n\n", " \n  \n", " \n\n", "   \n\n", "  \n    \n", " reboot", " GC", "  \n  \n"], [" reboot", " meltdown", " shutdown", " ``", " GC", " garbage", " resets", " overhaul"], [" \n\n", " ,", "  \n\n", " heavily", " over", " rapidly", " nearly", " and"], [" \n\n", "  \n\n", " ...", " \n  \n", "   \n\n", "...", "\n\n", " reboot"], [" ...", " \n  \n", "...", " \n\n", "  \n\n", " ....", " ...\\", " ____"], [" ...", "  \n\n", " \n\n", "...", " \n  \n", "   \n\n", "  \n", " ."], [" ...", "  \n\n", " \n  \n", " \n\n", " .", "...", ".", " "], [" .", " re", " over", " dead", " heavily", " rapidly", "  \n\n", " \n  \n"], ["  \n\n", " \n  \n", " heavily", " scav", " reboot", " dead", " rapidly", " shutdown"], [" scav", " reboot", " shutdown", " meltdown", " resets", " \n  \n", "  \n\n", " spikes"], [" reboot", " scav", "7", "\u91cd\u542f", "3", "8", "9", "4"], [" reboot", " scav", "\u91cd\u542f", " spikes", " shutdown", " resets", " restart", " garbage"], [" reboot", " scav", " shutdown", " spikes", " downtime", " restart", " cleanup", " resets"], [" scav", " garbage", " reboot", " shutdown", " cleanup", " spikes", " pauses", " downtime"], [" scav", " garbage", " cleanup", "\u6e05\u7406", " reboot", "\u5783\u573e", "\u91cd\u542f", " shutdown"], [" scav", " garbage", " cleanup", "\u6e05\u7406", " reboot", " recycling", " restart", " shutdown"], [" cleanup", " scav", " garbage", "\u6e05\u7406", "Cleanup", " cleaning", " recycling", " shutdown"], [" cleanup", " scav", " garbage", " shutdown", " triggered", " cleaning", "\u6e05\u7406", " periodically"], [" cleanup", " scav", " triggered", " garbage", " shutdown", " cleaning", "\u6e05\u7406", " Cleanup"], [" cleanup", " triggered", " scav", " shutdown", " garbage", " cleaning", " triggers", " Cleanup"], [" cleanup", " triggered", " scav", " shutdown", " garbage", " cleaning", " triggers", " Cleanup"], [" cleanup", " triggered", " shutdown", " scav", " triggers", " cleaning", " garbage", " Cleanup"], [" cleanup", " triggered", " scav", " cleaning", " shutdown", " Cleanup", " triggers", " garbage"], [" cleanup", " triggered", " scav", " triggers", " cleaning", " shutdown", " bursts", " garbage"], [" cleanup", " triggered", " Cleanup", " scav", "\u6e05\u7406", " shutdown", " cleaning", " bursts"], [" cleanup", "\u6e05\u7406", " triggered", ".cleanup", " Cleanup", " scav", "Cleanup", "-clean"], [" cleanup", "\u6e05\u7406", " triggered", " scav", " Cleanup", "Cleanup", "cleanup", ".cleanup"], [" cleanup", " triggered", "\u6e05\u7406", " scav", " reclaim", " garbage", " suddenly", " Cleanup"], [" cleanup", " triggered", "\u6e05\u7406", " garbage", " Cleanup", " scav", " interrupts", " triggers"], [" garbage", " GC", " cleanup", "GC", "\u6e05\u7406", " triggered", "gc", " scav"], [" garbage", "\u5783\u573e", "\u56de\u6536", " GC", " trash", "GC", " reclaim", " cleanup"], [" GC", "GC", " garbage", "gc", "(gc", " gc", ".gc", "_GC"], [" GC", "GC", " kicks", "gc", "(gc", " garbage", ".gc", " gc"], [" GC", " kicks", "GC", "gc", "(gc", " kicking", " kick", " kicked"], [" kicks", " kick", " kicking", " kicked", " runs", " triggers", "Kick", "kick"], [" kicks", " kick", " kicking", " kicked", " triggers", " runs", " Kick", "Kick"], [" kicks", " kick", " triggers", " runs", " kicking", " collects", " kicked", " sweeps"], [" kicks", " kick", " triggers", " runs", " kicking", " collects", " pauses", " kicked"]], "p": [[0.0551, 0.0403, 0.026, 0.0168, 0.0123, 0.0096, 0.0085, 0.0085], [0.0704, 0.0661, 0.0548, 0.0377, 0.0354, 0.0229, 0.0202, 0.0157], [0.0804, 0.0755, 0.0552, 0.0404, 0.0191, 0.0179, 0.0168, 0.0158], [0.024, 0.0088, 0.0088, 0.0057, 0.0057, 0.005, 0.0044, 0.0044], [0.3939, 0.0184, 0.0135, 0.0099, 0.0093, 0.0087, 0.0077, 0.0072], [0.266, 0.0181, 0.0132, 0.0091, 0.0071, 0.0067, 0.0033, 0.0031], [0.4124, 0.1043, 0.0318, 0.0281, 0.0248, 0.0233, 0.0193, 0.0125], [0.4012, 0.0615, 0.051, 0.051, 0.0309, 0.0213, 0.0213, 0.0213], [0.2318, 0.0403, 0.0314, 0.0168, 0.0148, 0.0131, 0.0115, 0.0108], [0.0379, 0.0315, 0.0261, 0.0168, 0.0149, 0.014, 0.0116, 0.008], [0.0948, 0.0612, 0.0477, 0.0477, 0.0371, 0.0349, 0.0349, 0.0255], [0.0348, 0.0254, 0.0128, 0.0106, 0.0088, 0.0078, 0.0068, 0.0057], [0.0305, 0.0185, 0.0106, 0.0068, 0.006, 0.006, 0.0056, 0.0041], [0.0687, 0.0472, 0.0417, 0.0325, 0.0087, 0.0072, 0.0064, 0.0064], [0.1328, 0.0857, 0.0261, 0.018, 0.0169, 0.014, 0.0109, 0.0102], [0.375, 0.0255, 0.01, 0.0094, 0.0027, 0.0027, 0.0024, 0.0021], [0.547, 0.0509, 0.0212, 0.0137, 0.0044, 0.0021, 0.0019, 0.0019], [0.0975, 0.0433, 0.0159, 0.015, 0.0124, 0.0124, 0.0109, 0.0085], [0.0791, 0.0291, 0.0273, 0.02, 0.0166, 0.0074, 0.0061, 0.0054], [0.0479, 0.029, 0.0212, 0.0187, 0.0114, 0.0083, 0.0057, 0.0045], [0.7233, 0.0673, 0.0233, 0.0132, 0.0097, 0.0071, 0.0028, 0.002], [0.0179, 0.0051, 0.0045, 0.0043, 0.004, 0.0027, 0.0021, 0.002], [0.0172, 0.0111, 0.0072, 0.0056, 0.0032, 0.0028, 0.0026, 0.0025], [0.0107, 0.0037, 0.0035, 0.0035, 0.0031, 0.0031, 0.0024, 0.0021], [0.0685, 0.0196, 0.0163, 0.0163, 0.0068, 0.0047, 0.0039, 0.0027], [0.067, 0.0317, 0.0262, 0.0204, 0.0052, 0.0033, 0.0031, 0.0028], [0.013, 0.0042, 0.0042, 0.0031, 0.0029, 0.0029, 0.0027, 0.0027], [0.0275, 0.0189, 0.0101, 0.0095, 0.0084, 0.0058, 0.0051, 0.0048], [0.1604, 0.1102, 0.0758, 0.0381, 0.0169, 0.0075, 0.0062, 0.0048], [0.5362, 0.1196, 0.0365, 0.0134, 0.0134, 0.0087, 0.0081, 0.0081], [0.4686, 0.1185, 0.1046, 0.0634, 0.0409, 0.0091, 0.0067, 0.0059], [0.1562, 0.0738, 0.042, 0.042, 0.0371, 0.0255, 0.0145, 0.0083], [0.0225, 0.0128, 0.0113, 0.0106, 0.01, 0.0088, 0.0073, 0.0065], [0.023, 0.0123, 0.0109, 0.0066, 0.0062, 0.0055, 0.0048, 0.0045], [0.0108, 0.0079, 0.0065, 0.0062, 0.0051, 0.0042, 0.0037, 0.0035], [0.0147, 0.013, 0.013, 0.0122, 0.0074, 0.007, 0.0061, 0.0058], [0.0318, 0.0181, 0.017, 0.008, 0.0076, 0.0063, 0.0046, 0.0043], [0.0469, 0.0267, 0.0184, 0.0126, 0.0092, 0.0092, 0.0087, 0.0082], [0.0668, 0.052, 0.0316, 0.0262, 0.0246, 0.018, 0.0096, 0.008], [0.4081, 0.2184, 0.1098, 0.0149, 0.0096, 0.009, 0.008, 0.007], [0.3272, 0.1985, 0.1864, 0.0119, 0.0093, 0.0082, 0.0077, 0.0064], [0.4963, 0.2069, 0.1107, 0.015, 0.0124, 0.0091, 0.0062, 0.0059], [0.4864, 0.1789, 0.0958, 0.0177, 0.0156, 0.0107, 0.0101, 0.0058], [0.4924, 0.097, 0.0519, 0.038, 0.0296, 0.0158, 0.0131, 0.0123], [0.6214, 0.0655, 0.0397, 0.0241, 0.0241, 0.0188, 0.0121, 0.01], [0.5241, 0.0856, 0.0487, 0.0335, 0.0261, 0.0179, 0.0131, 0.009], [0.5033, 0.0931, 0.0267, 0.0267, 0.0235, 0.0208, 0.0126, 0.0118], [0.5825, 0.0614, 0.0226, 0.0187, 0.0176, 0.0121, 0.01, 0.01], [0.4408, 0.1431, 0.0282, 0.0142, 0.011, 0.011, 0.0091, 0.0091], [0.5179, 0.1309, 0.0177, 0.0147, 0.0122, 0.0107, 0.0101, 0.0084], [0.4354, 0.052, 0.0459, 0.0204, 0.0191, 0.0159, 0.0096, 0.0075], [0.4498, 0.1068, 0.0418, 0.0254, 0.021, 0.0099, 0.0099, 0.0093], [0.2088, 0.1843, 0.0411, 0.0265, 0.0151, 0.0125, 0.0104, 0.0104], [0.3871, 0.2348, 0.0632, 0.0132, 0.011, 0.0103, 0.008, 0.0075], [0.2942, 0.1575, 0.1575, 0.0843, 0.0451, 0.0351, 0.0166, 0.0138], [0.9041, 0.0273, 0.0146, 0.0129, 0.0089, 0.0078, 0.002, 0.0017], [0.5121, 0.2419, 0.1884, 0.0199, 0.0094, 0.0073, 0.0064, 0.005], [0.4432, 0.3452, 0.127, 0.0221, 0.0172, 0.0092, 0.0081, 0.0072], [0.4401, 0.2356, 0.2356, 0.0151, 0.0133, 0.0133, 0.0071, 0.0071], [0.8841, 0.0565, 0.0388, 0.0126, 0.0019, 0.0013, 0.001, 0.001], [0.9414, 0.0251, 0.0221, 0.0049, 0.0023, 0.001, 0.0004, 0.0004], [0.9766, 0.0084, 0.0045, 0.0031, 0.0024, 0.0013, 0.0009, 0.0003], [0.9884, 0.0036, 0.0028, 0.0017, 0.0007, 0.0007, 0.0004, 0.0003]], "ranks": {}}, {"pos": 447, "top": [["i", ".", "o", "  \n", " \u2013", ",", " ", "a"], [" **'", " '**", " **>>", "\u8033\u719f\u80fd\u8be6", "'**", "  \r\n", "\u0441\u043a\u0430\u0440\u043c\u043b\u0438", "\u8dc3\u8dc3\u6b32\u8bd5"], ["\u2026**", " **'", "\u2019**", "'**", " **.**", " '**", "**\u2013", "\u8033\u719f\u80fd\u8be6"], [" **\u25a0", " **>>", " **\u25cb", "---</", " ``", " ;;^", " Blowjob", "bucks"], [" $$$", " freaking", " **'", "  \n", "\u4e8b\u534a\u529f\u500d", "\u5404\u79cd\u5404\u6837\u7684", " folks", " kids"], [" $$$", " veggies", " freaking", " **\u25a0", " folks", " Aussie", "-**", "\u5404\u79cd\u5404\u6837\u7684"], ["  \n", "  \n\n", "   \n", " $$$", " freaking", "-&", "   \n\n", " kids"], ["  \n", "   \n", "   \n\n", "  \n\n", "-&", " freaking", " \n  \n", "  \n    \n"], ["  \n", "  \n\n", "   \n\n", "   \n", "  \n    \n", "-&", " Aussie", " \n  \n"], ["  \n", "\u8dc3\u8dc3\u6b32\u8bd5", "\u4e8b\u534a\u529f\u500d", " kicking", " kick", " busted", " folks", "\u5168\u5fc3\u5168\u610f"], ["  \n", "  \n\n", " kick", " kicking", "  \n  \n", "&nbsp", "kick", " \n  \n"], [" **\u25a0", " kicks", " kicking", "kick", " freaking", " folks", " kick", " veggies"], [" **\u25a0", " freaking", " veggies", " kicks", " folks", "kick", " busted", " kick"], [" freaking", " folks", " kicks", " kicking", " kick", "kick", " busted", " smack"], [" kicking", " smack", " kick", " folks", " busted", " pretty", " kicks", " freaking"], [" folks", " pretty", " kicking", " smack", " kick", " kicks", " freaking", " hefty"], [" kick", " kicking", " folks", " smack", "kick", " pretty", " kicks", " hefty"], ["kick", " kicking", " kick", " fizz", " kicks", " freaking", " smack", " busted"], ["kick", " smack", " kicking", " kick", " freaking", " hefty", " fizz", " busted"], ["kick", " kick", " kicking", " smack", "Kick", " folks", " busted", " hefty"], ["  \n\n", "kick", " kicking", " folks", " smack", "   \n\n", "Kick", " busted"], ["kick", " smack", "Kick", " kicking", " busted", " kick", " freaking", " Aussie"], [" smack", " kicking", "Kick", "kick", " kick", " kicks", " busted", " fizz"], [" kicking", " smack", " kick", " revamped", "Kick", " hefty", "kick", " wildly"], ["  \n\n", "   \n\n", " \n\n", " smack", " hefty", "\n\n", " \n  \n", " kicking"], ["kick", "Kick", "   \n\n", " smack", " fizz", " folks", " hefty", " kicking"], [" kicks", " kick", " kicking", " fizz", "kick", " smack", "Kick", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " smack", " \n  \n", " kicking", " off"], ["  \n\n", " \n\n", "\n\n", "   \n\n", " \n  \n", " \r\n\r\n", "\r\n\r\n", "  \r\n\r\n"], ["  \n\n", " \n\n", " \n  \n", "   \n\n", " ...", " ____", " _____", "\n\n"], ["  \n\n", " \n\n", "   \n\n", "\n\n", " \n  \n", " ...", " **", " pretty"], ["  \n\n", " \n\n", "\n\n", " ...", " \n  \n", " **", " .", "   \n\n"], ["  \n\n", " \n  \n", " .", " \n\n", " off", " pretty", " hit", " kick"], ["  \n\n", " \n\n", " \n  \n", "   \n\n", " wildly", " \u2019", " pretty", "\u2014and"], [" crunch", "  \n\n", " \n  \n", " nasty", " hefty", " jitter", " wildly", " kicks"], ["\u2014and", " crunch", " **\u201c", " jitter", " .**", "\u2014or", " -**", "**\u2014"], ["\u2014and", "\u2014or", " jitter", " -**", " crunch", " **\u201c", "**\u2014", " .**"], [" jitter", " crunch", " kicks", " -**", " kicking", " .**", " triggered", "kick"], [" crunch", " triggered", " jitter", " unpredictable", " timing", " kicking", "\u2014or", " kicks"], [" triggered", " crunch", " jitter", " timing", " unpredictable", " kicking", " kicks", " during"], [" triggered", " crunch", " during", " jitter", " timing", " unpredictable", " suddenly", " kicking"], [" triggered", " crunch", " during", " jitter", " unpredictable", " bursts", " periodically", " triggers"], [" triggered", " triggers", " unpredictable", " crunch", " trigger", " bursts", " triggering", " periodically"], [" triggered", " during", " trigger", " triggers", " bursts", " unpredictable", " periodically", " sudden"], [" triggered", " during", " triggers", " trigger", " unpredictable", "during", " sudden", " bursts"], [" triggered", " during", " unpredictable", " suddenly", " bursts", " triggers", " sudden", " trigger"], [" triggered", " during", "during", " unpredictable", " sudden", " suddenly", " bursts", " triggers"], [" during", " triggered", "during", "\u5c24\u5176\u662f\u5728", " anytime", " unpredictable", " bursts", " whenever"], [" triggered", " during", "\u5c24\u5176\u662f\u5728", "-trigger", "during", " unpredictable", " triggers", " bursts"], [" during", "during", " triggered", "\u5c24\u5176\u662f\u5728", "\u6216\u56e0", "-trigger", " \u0623\u062b\u0646\u0627\u0621", " amidst"], [" triggered", "during", "\u6216\u56e0", " during", " \u0623\u062b\u0646\u0627\u0621", " amidst", " amid", "-trigger"], ["during", " during", " \u0623\u062b\u0646\u0627\u0621", "During", " interrupt", " amid", " amidst", " interrupts"], ["during", " during", " amidst", " amid", " interrupt", " interrupts", "\u6216\u56e0", "Interrupt"], [" during", "during", " amidst", "During", " durante", " amid", " \u0623\u062b\u0646\u0627\u0621", "\u6216\u56e0"], [" during", "during", "During", " durante", " amidst", " amid", " During", " \u0623\u062b\u0646\u0627\u0621"], [" during", "during", " amidst", " amid", " durante", "During", " During", " interrupts"], [" during", "during", " durante", " amidst", " garbage", " interrupts", " interrupt", "During"], [" during", "during", " durante", " kicks", "During", " During", "Kick", " kicking"], [" during", "Kick", " kicks", " kick", " kicking", "during", " kicked", " Kick"], [" during", "during", " During", " durante", "During", " amidst", " kicks", " mid"], ["-in", " during", " kicking", " kicks", " kick", "in", " interrupt", ".in"], ["-in", " during", "in", " kicks", " kick", " mid", " kicking", "\u2014in"], [" in", "-in", "in", " mid", " during", "In", " In", " kick"]], "p": [[0.2895, 0.0536, 0.0473, 0.021, 0.0064, 0.0064, 0.006, 0.006], [0.0955, 0.0744, 0.0227, 0.0177, 0.0156, 0.0147, 0.0101, 0.0101], [0.1369, 0.0941, 0.0571, 0.0325, 0.021, 0.021, 0.0163, 0.012], [0.1528, 0.0466, 0.0466, 0.0249, 0.022, 0.0194, 0.0183, 0.0134], [0.0764, 0.0281, 0.0233, 0.0219, 0.0219, 0.0181, 0.016, 0.011], [0.0769, 0.0599, 0.0466, 0.0171, 0.0161, 0.0134, 0.0104, 0.0098], [0.2592, 0.045, 0.0398, 0.031, 0.031, 0.0166, 0.0166, 0.0137], [0.3683, 0.0772, 0.0365, 0.0302, 0.0235, 0.0143, 0.0143, 0.0118], [0.2407, 0.0832, 0.069, 0.0474, 0.0254, 0.0174, 0.0106, 0.0106], [0.0406, 0.0217, 0.0192, 0.0169, 0.014, 0.0103, 0.0103, 0.0085], [0.1983, 0.0826, 0.0237, 0.0184, 0.0153, 0.0153, 0.0144, 0.0144], [0.0467, 0.0266, 0.0235, 0.0221, 0.0207, 0.0207, 0.0183, 0.0152], [0.0438, 0.032, 0.0283, 0.0182, 0.0182, 0.0142, 0.0125, 0.0118], [0.0611, 0.0348, 0.0307, 0.0307, 0.0271, 0.0211, 0.0198, 0.0155], [0.0823, 0.0773, 0.0499, 0.0441, 0.0303, 0.0251, 0.0222, 0.0196], [0.0832, 0.0734, 0.0734, 0.0572, 0.0537, 0.0224, 0.0186, 0.0186], [0.0878, 0.0728, 0.0501, 0.039, 0.0285, 0.0285, 0.0209, 0.0184], [0.0882, 0.057, 0.0391, 0.0237, 0.0223, 0.021, 0.021, 0.0185], [0.0644, 0.0471, 0.0391, 0.0367, 0.0268, 0.0252, 0.0223, 0.0196], [0.0733, 0.0473, 0.0444, 0.0417, 0.0287, 0.0253, 0.0238, 0.0185], [0.043, 0.0296, 0.0261, 0.0261, 0.0245, 0.0245, 0.0203, 0.0191], [0.0379, 0.0356, 0.0334, 0.0216, 0.0203, 0.019, 0.0131, 0.0108], [0.0324, 0.0286, 0.0268, 0.0252, 0.0222, 0.0144, 0.0144, 0.0127], [0.032, 0.032, 0.0282, 0.0125, 0.0111, 0.0104, 0.0104, 0.0098], [0.1675, 0.1151, 0.0291, 0.0177, 0.0138, 0.0129, 0.0129, 0.0129], [0.0209, 0.0184, 0.0173, 0.0173, 0.0153, 0.0153, 0.0144, 0.0135], [0.0221, 0.0195, 0.0183, 0.0172, 0.0126, 0.0118, 0.0118, 0.0111], [0.1624, 0.1188, 0.1116, 0.0362, 0.0098, 0.0092, 0.0092, 0.0076], [0.4493, 0.1553, 0.0942, 0.0689, 0.0197, 0.0093, 0.0047, 0.0044], [0.3459, 0.1634, 0.1442, 0.0413, 0.0118, 0.0104, 0.0092, 0.0076], [0.5726, 0.2107, 0.0303, 0.0268, 0.0252, 0.0082, 0.0028, 0.0023], [0.3551, 0.139, 0.031, 0.031, 0.0242, 0.0227, 0.0156, 0.0138], [0.1545, 0.0471, 0.0416, 0.0304, 0.0144, 0.0144, 0.0127, 0.0105], [0.377, 0.0291, 0.0273, 0.0114, 0.0089, 0.0069, 0.0065, 0.0061], [0.0211, 0.0198, 0.0082, 0.0077, 0.0068, 0.006, 0.006, 0.006], [0.0147, 0.0138, 0.0138, 0.0101, 0.0084, 0.007, 0.0065, 0.0054], [0.0135, 0.0135, 0.0105, 0.0087, 0.0087, 0.006, 0.006, 0.006], [0.0134, 0.0118, 0.0086, 0.0076, 0.0072, 0.0067, 0.0067, 0.0067], [0.0193, 0.0181, 0.0132, 0.0097, 0.008, 0.0075, 0.0071, 0.0067], [0.0286, 0.0196, 0.0135, 0.0135, 0.0099, 0.0077, 0.0077, 0.0068], [0.0386, 0.0362, 0.0151, 0.0142, 0.0133, 0.0098, 0.0098, 0.0076], [0.0994, 0.0323, 0.0236, 0.0196, 0.0173, 0.0162, 0.0143, 0.0143], [0.2185, 0.038, 0.0357, 0.0278, 0.0278, 0.0245, 0.023, 0.0216], [0.2911, 0.0736, 0.0254, 0.0239, 0.0224, 0.0224, 0.0186, 0.0175], [0.3728, 0.1371, 0.027, 0.027, 0.0238, 0.0186, 0.0174, 0.0174], [0.3807, 0.1161, 0.0455, 0.0243, 0.019, 0.0178, 0.0178, 0.0167], [0.2655, 0.2655, 0.0523, 0.0359, 0.0263, 0.0218, 0.0205, 0.0192], [0.6717, 0.1323, 0.0708, 0.007, 0.0055, 0.0051, 0.0045, 0.0043], [0.4223, 0.1003, 0.0238, 0.0224, 0.021, 0.0198, 0.0136, 0.0136], [0.2343, 0.1335, 0.1335, 0.0382, 0.0263, 0.017, 0.0132, 0.0117], [0.155, 0.0732, 0.0444, 0.0325, 0.0223, 0.0106, 0.0099, 0.0093], [0.3539, 0.2756, 0.0397, 0.035, 0.029, 0.0273, 0.0256, 0.02], [0.1282, 0.1282, 0.1131, 0.0828, 0.0828, 0.0606, 0.0502, 0.0223], [0.3886, 0.3429, 0.0361, 0.0264, 0.0206, 0.0171, 0.016, 0.0142], [0.4287, 0.4287, 0.0311, 0.0242, 0.0147, 0.0101, 0.0095, 0.0065], [0.4894, 0.2969, 0.0428, 0.0259, 0.0202, 0.0178, 0.0102, 0.0054], [0.5432, 0.2264, 0.0198, 0.0164, 0.0164, 0.0145, 0.0145, 0.0128], [0.6174, 0.2271, 0.0198, 0.0186, 0.0165, 0.0106, 0.01, 0.0069], [0.3527, 0.1145, 0.1145, 0.101, 0.0613, 0.0613, 0.0349, 0.0308], [0.898, 0.0289, 0.0106, 0.0057, 0.0057, 0.0042, 0.0039, 0.0037], [0.5426, 0.1762, 0.0198, 0.0154, 0.0113, 0.0093, 0.0088, 0.0088], [0.2945, 0.0657, 0.0257, 0.0177, 0.0177, 0.0177, 0.0156, 0.0129], [0.5359, 0.1442, 0.1055, 0.0087, 0.0076, 0.0076, 0.0067, 0.0053]], "ranks": {}}, {"pos": 448, "top": [[".", ",", "\u2013", "\u2026.", ";", "\u00a0", " \u2013", "\u2026.."], ["\u2013", "\u2013and", " \u2013", "**\u2013", "[vi", "\u0902\u092c\u0930", " **\u2013", " HIT"], ["\u2013", " \u2013", ".", ",", "\u2026.", "\u2026..", "\u2026", "\u2013and"], [" milfs", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "aruhi", "----------</", " pornstar", " ;;^"], [" \u200b\u200b", ".", ",", " crazy", "arity", " CSI", "\u0902\u092c\u0930", " Aussie"], [" \u200b\u200b", "odka", " crazy", "SSI", " **:", " **\u2018", "\u2026..", " **\u2013"], [" **\u2018", " **'", "\u2019t", " crazy", ".\u2019", " \u2018", " '**", "\u2019**"], [" **\u2018", ".", " \u2018", " **'", ".\u2019", " pretty", " bigger", "\u2019t"], [".", ",", ".\u2019", ",\u2019", "\u2019.", " \u2018", "\u2019t", ".'"], [",", ".", "\u2013", ",'", ".'", ",\u2019", ".\"", "\u2013and"], [".", ",", " \u2013", " \u2018", "\u2019t", ".\"", "\u2013", " tough"], [" **", " pretty", " bigger", " tough", " hefty", " fizz", " tweak", " crunch"], [" tough", " hefty", " pretty", " bigger", " tweaking", " **", " tweaked", " tweaks"], [" tough", " hefty", " pretty", " tweaking", " bigger", " just", " tweaked", " tweaks"], [" just", " '", " \u2018", " \u2013", " pretty", " --", " tough", " even"], [" --", " pretty", " hefty", " tough", " just", " '", " tweaking", " plenty"], [",", " \u2013", " just", " tough", " hefty", " bolster", " pretty", " even"], [" tweaking", " hefty", " \u2013", ",", " amid", " tough", " tweaks", " tweaked"], [" tweaking", " hefty", " amid", " tweaks", " tweaked", " bolster", " even", " tougher"], [" \u2013", " amid", " even", " --", " bolster", " ,", " just", " hefty"], ["<|endoftext|>", " ,", " --", " bolster", " amid", " swiftly", " though", " just"], [" amid", " bolster", " --", " tweaking", " even", " quicker", " swiftly", " tougher"], [" ,", " --", " amid", " even", " bolster", " notably", " rather", " heavily"], [" ,", " --", " even", " much", " over", " just", " rather", " ."], [" ,", " --", "\n\n", " even", " though", " amid", " while", " \n\n"], [" **", " ,", " .**", " amid", " even", " --", " during", " heavily"], [" ,", " **", " --", " during", " amid", " even", " .**", " heavily"], [" ,", " .", " even", " --", " over", " during", " '", " while"], [" ,", " .", " even", " during", " over", " while", "\n\n", " '"], [" .", " ,", " **", " even", " during", " .**", " **.", " --"], [" .", " ,", " during", " even", " **", " for", " over", " when"], [" .", " ,", " during", " even", " -", " for", " **", " over"], [" .", " ,", " even", " during", " over", " while", " \u2013", " often"], [" .", " even", " ,", " during", " \u2013", " heavily", " over", " often"], [" even", " heavily", " unpredictable", " during", " .", " ,", " often", " crucial"], [" \u2013", " during", " .", " even", " ,", " unpredictable", " \u201c", " while"], [" during", " unpredictable", " while", " even", " ,", " critical", " .", " inevitably"], [" during", " even", " unpredictable", " ,", " while", " critical", " .", " \u201c"], [" during", " even", " unpredictable", " critical", "during", " while", " quickly", " ,"], [" during", " even", " unpredictable", "during", " critical", " while", " milliseconds", "During"], [" during", " even", " unpredictable", "during", " critical", " timing", " time", " milliseconds"], [" during", " unpredictable", "during", " even", " timing", " jitter", " milliseconds", " During"], [" during", " unpredictable", " jitter", "during", " glitches", " interruptions", " bursts", " timing"], [" during", " unpredictable", "during", " even", " jitter", " critical", " interruptions", " timing"], [" during", " unpredictable", "during", " critical", " even", " jitter", " interruptions", " bursts"], [" during", " unpredictable", " even", " critical", " disrupt", " interrupt", "during", " disrupting"], [" during", " unpredictable", " even", "during", " every", " inevitably", " moments", " bursts"], [" during", " while", "during", " even", " every", " unpredictable", " During", " moments"], [" during", "\u2014even", " disrupting", " unpredictable", " disrupt", " interrupt", " interruptions", " instantly"], [" during", "during", "\u2014even", " disrupting", " During", " interrupt", " interruptions", " disrupt"], [" during", "during", "\u2014even", "\u6216\u56e0", "\u2014a", " \u0623\u062b\u0646\u0627\u0621", " During", " disrupting"], [" during", "during", " During", "\u6216\u56e0", "During", " \u0623\u062b\u0646\u0627\u0621", "\u2014even", "\u2014a"], [" during", "during", " During", "During", " \u0623\u062b\u0646\u0627\u0621", " durante", "\u6216\u56e0", " amidst"], [" during", "during", " During", "During", " durante", " \u0623\u062b\u0646\u0627\u0621", " w\u00e4hrend", "\u2014even"], [" during", "during", "During", " During", " amidst", " durante", "\u6216\u56e0", " \u0623\u062b\u0646\u0627\u0621"], [" during", "during", " amidst", "During", "\u6216\u56e0", " garbage", " During", " durante"], [" during", "during", "During", " garbage", " During", " durante", " \u0623\u062b\u0646\u0627\u0621", " w\u00e4hrend"], [" during", "during", " garbage", "During", " During", " durante", " \u0623\u062b\u0646\u0627\u0621", " w\u00e4hrend"], [" during", "during", " mid", " garbage", " amidst", "During", " During", "mid"], [" during", "during", " During", "During", " amidst", " mid", " durante", " garbage"], [" during", "during", " amidst", " mid", "\u2014even", " During", ",", "\u2014a"], [" during", ",", " to", " amidst", " mid", ".", "\u2014even", "during"], [" during", ",", " to", ".", " mid", " amidst", "\u2014", "\u2014even"]], "p": [[0.6426, 0.344, 0.0056, 0.002, 0.0018, 0.001, 0.001, 0.0005], [0.047, 0.0222, 0.0163, 0.003, 0.0023, 0.0015, 0.0015, 0.0013], [0.4025, 0.2766, 0.1678, 0.0898, 0.02, 0.0147, 0.0095, 0.0042], [0.0144, 0.0112, 0.0077, 0.0064, 0.0047, 0.0047, 0.0036, 0.0027], [0.0908, 0.019, 0.0079, 0.0033, 0.0027, 0.0024, 0.0017, 0.0015], [0.0096, 0.0035, 0.0031, 0.0029, 0.002, 0.0019, 0.0018, 0.0017], [0.1002, 0.0418, 0.0238, 0.0154, 0.0144, 0.0099, 0.0093, 0.0077], [0.0503, 0.0346, 0.0163, 0.0153, 0.0153, 0.0112, 0.0105, 0.0105], [0.5363, 0.0875, 0.0267, 0.0208, 0.0184, 0.0105, 0.0098, 0.0092], [0.8036, 0.0275, 0.0089, 0.0021, 0.002, 0.0019, 0.0018, 0.0017], [0.1912, 0.1234, 0.1089, 0.0903, 0.0147, 0.0147, 0.0138, 0.0122], [0.0661, 0.0661, 0.0354, 0.0275, 0.0243, 0.0167, 0.0122, 0.0122], [0.0489, 0.0489, 0.0405, 0.0358, 0.0231, 0.0217, 0.018, 0.018], [0.078, 0.0646, 0.0536, 0.0325, 0.0269, 0.0238, 0.0163, 0.0153], [0.1077, 0.0577, 0.0577, 0.0478, 0.035, 0.0309, 0.0272, 0.0212], [0.1551, 0.1066, 0.078, 0.0647, 0.0418, 0.0223, 0.0174, 0.0127], [0.1492, 0.0799, 0.0455, 0.0244, 0.0215, 0.0215, 0.0178, 0.0167], [0.0388, 0.0267, 0.0251, 0.0162, 0.0162, 0.0134, 0.0126, 0.0118], [0.0329, 0.0329, 0.0188, 0.0107, 0.01, 0.0094, 0.0078, 0.0069], [0.0382, 0.0317, 0.0298, 0.0263, 0.0192, 0.018, 0.0132, 0.0124], [0.2937, 0.031, 0.0273, 0.0166, 0.0156, 0.0137, 0.0101, 0.0078], [0.0296, 0.0096, 0.008, 0.0075, 0.0051, 0.004, 0.0038, 0.0035], [0.1508, 0.1416, 0.0297, 0.0217, 0.0103, 0.0103, 0.0085, 0.008], [0.3914, 0.0564, 0.0412, 0.0152, 0.0143, 0.0134, 0.0118, 0.0111], [0.1793, 0.0796, 0.0332, 0.0243, 0.0201, 0.0147, 0.0147, 0.013], [0.1932, 0.0405, 0.0296, 0.0231, 0.018, 0.0159, 0.009, 0.008], [0.131, 0.0958, 0.0399, 0.0292, 0.0242, 0.0242, 0.0228, 0.0147], [0.6169, 0.0307, 0.0255, 0.0211, 0.0198, 0.0154, 0.0145, 0.0113], [0.4751, 0.1748, 0.0501, 0.0323, 0.0153, 0.0112, 0.0087, 0.0077], [0.385, 0.1819, 0.125, 0.0358, 0.0262, 0.0204, 0.0066, 0.0062], [0.815, 0.0973, 0.0159, 0.0132, 0.0033, 0.0026, 0.0024, 0.0022], [0.8456, 0.0694, 0.0145, 0.0069, 0.0035, 0.0025, 0.0022, 0.0022], [0.7257, 0.0867, 0.0526, 0.0281, 0.0049, 0.0038, 0.0032, 0.0025], [0.1989, 0.1284, 0.1, 0.0607, 0.0392, 0.0325, 0.0144, 0.0119], [0.0531, 0.044, 0.0322, 0.0221, 0.0195, 0.0184, 0.0162, 0.0152], [0.0835, 0.0506, 0.0476, 0.0307, 0.0307, 0.0271, 0.0211, 0.0186], [0.1885, 0.0477, 0.0448, 0.0421, 0.0289, 0.0128, 0.0128, 0.0121], [0.3326, 0.0841, 0.0479, 0.0273, 0.0257, 0.02, 0.0107, 0.01], [0.5496, 0.0511, 0.0398, 0.0146, 0.0138, 0.0129, 0.0101, 0.0095], [0.6597, 0.0422, 0.0309, 0.0272, 0.0114, 0.0054, 0.0042, 0.0039], [0.7771, 0.0207, 0.0183, 0.0142, 0.0063, 0.0046, 0.0043, 0.0034], [0.7763, 0.0234, 0.0118, 0.0118, 0.0104, 0.0056, 0.0046, 0.0043], [0.6563, 0.0475, 0.0154, 0.0088, 0.0088, 0.0083, 0.0073, 0.0073], [0.762, 0.0216, 0.0102, 0.008, 0.0055, 0.0051, 0.0043, 0.004], [0.7857, 0.0237, 0.0082, 0.006, 0.0044, 0.0039, 0.0034, 0.0034], [0.6111, 0.0686, 0.0185, 0.0087, 0.0082, 0.0077, 0.0068, 0.0064], [0.6767, 0.0246, 0.0192, 0.014, 0.0132, 0.0066, 0.0066, 0.0062], [0.8868, 0.0153, 0.0112, 0.0056, 0.0044, 0.0036, 0.003, 0.003], [0.6157, 0.0347, 0.0254, 0.0154, 0.0145, 0.0128, 0.012, 0.0113], [0.8434, 0.042, 0.0145, 0.0083, 0.0078, 0.0044, 0.0032, 0.0025], [0.7132, 0.0965, 0.0294, 0.0277, 0.0102, 0.0096, 0.0084, 0.0048], [0.8648, 0.0804, 0.0102, 0.0062, 0.0051, 0.0045, 0.0017, 0.0016], [0.8899, 0.0828, 0.0099, 0.0068, 0.0017, 0.0014, 0.0013, 0.0011], [0.8743, 0.1044, 0.0076, 0.0059, 0.0025, 0.0009, 0.0006, 0.0004], [0.784, 0.1749, 0.0099, 0.0068, 0.0047, 0.0036, 0.0027, 0.0021], [0.8101, 0.1096, 0.0102, 0.0102, 0.009, 0.0085, 0.0062, 0.0038], [0.8643, 0.1032, 0.0066, 0.0058, 0.0035, 0.0031, 0.0021, 0.0021], [0.8628, 0.103, 0.0109, 0.0058, 0.0035, 0.0027, 0.0015, 0.0015], [0.9059, 0.0351, 0.0188, 0.0129, 0.0061, 0.0022, 0.0017, 0.0014], [0.9881, 0.0067, 0.0012, 0.0008, 0.0006, 0.0004, 0.0003, 0.0003], [0.971, 0.0045, 0.0031, 0.0029, 0.0029, 0.0013, 0.0013, 0.0008], [0.9405, 0.0251, 0.0053, 0.0049, 0.0046, 0.0038, 0.0014, 0.0013], [0.7996, 0.1784, 0.0069, 0.0061, 0.0033, 0.0019, 0.001, 0.0004]], "ranks": {}}, {"pos": 449, "top": [[",", ".", "\u2013", " \u2013", ";", ".\u2013", "\u00a0", "\u2013and"], ["\u2013", " \u2013", ".\u2013", ",", ".", "\u2013and", "\u2011", "\u2026.."], ["\u2013", ".", ",", ".\u2013", "\u2026..", "\u2026", "\u2013and", " \u2013"], ["espace", "aruhi", " milfs", "HCI", "orgeous", ".\",\"", " aarhus", ".\u2013"], [".", ",", "\u2013", ".\u2013", "\u2026..", "ed", " [\u2026]", "@"], ["\u2026..", "\u2013", ".\u2013", ".", " [\u2026]", "\u2013and", ",", "\u2026."], [" [\u2026]", "\u2026\u2026", "\u2013", "\u2026..", ".", ".\u2013", ".\u201d", "\u2013and"], [" [\u2026]", "\u2013", ".\u2013", "\u2013and", "\u2026..", ".", "\u2026\u2026", ","], [" [\u2026]", "\u2013", ".", ".\u2013", ",", "[\u2026]", "\u2026..", "\u2026\u2026"], [" [\u2026]", "\u2013", "\u2013and", ",", ".\u2013", "[\u2026]", "\u00a0", "\u2026.."], [" [\u2026]", "\u2013", " \u2013", "\u00a0", ".\u2013", "\u2013and", ",", "[\u2026]"], [" [\u2026]", "\u2013and", "\u2013", " \u2013", ".\u2013", "[\u2026]", " [...]", "\u2026.."], [" [\u2026]", "\u2013and", "\u2013", " \u2013", ".\u2013", "[\u2026]", "\u2026..", "\u2013\u2013"], ["\u2013and", "\u2013", " [\u2026]", " \u2013", ".\u2013", "\u2013\u2013", "[\u2026]", " \u2013,"], [" \u2013", "\u2013", "\u2013and", " [\u2026]", ".\u2013", "\u00ad", " \u00ad", "\u2013\u2013"], [" \u2013", "\u2013and", "\u2013", "ing", " efforts", " antics", " ongoing", "ed"], ["\u2013", " \u2013", "\u2013and", ".\u2013", " [\u2026]", "-esque", "\u2013\u2013", " antics"], ["\u2013and", "\u2013", ".\u2013", " \u2013", "**\u2013", " *\u2013", " **\u2013", " antics"], ["\u2013and", ".\u2013", "-esque", " *\u2013", "osz", "\u2013", "\u7684\u4e8b\u513f", "\u2014or"], ["\u2013and", "\u2013", "\u2014or", " \u2013", "\u2013\u2013", ".\u2013", "\u2014even", " *\u2013"], ["<|endoftext|>", "\u2013and", "\u2013", "\u2014or", " [\u2026]", "-esque", " \u2013", "\u2014even"], ["osz", "tijk", "\u671f\u95f4\u7684", "ewire", "YNC", "\u4f4e\u8ff7", "\u7684\u4e8b\u513f", "asional"], ["\u671f\u95f4\u7684", " wartime", "asional", "\u5404\u9879\u6d3b\u52a8", " events", "tijk", "osz", "\u6d3b\u52a8\u671f\u95f4"], [" events", " wartime", " efforts", " tumult", " periods", " onslaught", "\u671f\u95f4\u7684", " ongoing"], ["\u2013and", "\u2013", "\u2014or", " \r\n", "\u2013\u2013", " \u2013", " wartime", " tumult"], [" events", "\u671f\u95f4\u7684", " disruptions", " hectic", "Events", " \r\n", "asional", "YNC"], [" events", " disruptions", "\u671f\u95f4\u7684", " hectic", " wartime", " periods", " bouts", " nighttime"], [" events", " periods", " mid", " efforts", " wartime", " event", " dramatic", " moments"], [" events", " periods", " disruptions", " episodes", " unpredictable", "\u671f\u95f4\u7684", " downtime", " moments"], [" events", " crises", " disruptions", " downtime", " episodes", " storms", " periods", " sessions"], [" events", " intense", " night", " moments", " mid", " event", " storms", " hours"], [" events", " critical", " night", " intense", " during", " event", " heavy", " mid"], [" events", " critical", " intense", " massive", " night", " heavy", " moments", " battles"], [" intense", " chaotic", " events", " unpredictable", " battles", " frantic", " explosions", " critical"], [" intense", " frantic", " critical", " spikes", " downtime", " explosions", " unpredictable", " chaotic"], [" intense", " rapid", "\u2026*", " downtime", " gameplay", "-heavy", " chaotic", " spikes"], [" gameplay", " gaming", " rapid", " intense", " performance", " runtime", " workflows", " deployments"], [" gameplay", " gaming", " rapid", " animations", " performance", " workflows", " runtime", " cinematic"], [" gameplay", " gaming", " rapid", " intense", " performance", " animations", " multit", " complex"], [" gameplay", " animations", " intense", " rapid", " gaming", " complex", " animation", " cinematic"], [" gameplay", " animations", " gaming", " animation", " rapid", " performance", " intense", " cinematic"], [" gameplay", " animations", " gaming", " animation", " performance", " rapid", " cinematic", " intense"], [" gameplay", " animations", " animation", " gaming", " nightly", " continuous", " cinematic", " intense"], [" gameplay", " animations", " nightly", " animation", " intense", " daily", " production", " cycles"], [" gameplay", " nightly", " animations", " cycles", " daily", " production", " animation", " workflows"], [" gameplay", " animations", " nightly", " cycles", "-heavy", " animation", " production", " intense"], [" gameplay", "-heavy", " intense", " animations", "-intensive", " workflows", " cycles", " simultaneous"], [" gameplay", "-heavy", " intense", "-intensive", " animations", " simultaneous", " intensive", " cycles"], [" gameplay", "-heavy", "-intensive", " animations", " intense", " workflows", " intensive", " cycles"], ["-heavy", " gameplay", "-intensive", " intense", " frantic", " workflows", " heavy", " animations"], ["-heavy", "-intensive", " gameplay", "\u7e41\u5fd9", "\u5bc6\u96c6\u578b", "\u5bc6\u96c6", "\u5bc6\u96c6\u7684", "heavy"], ["-intensive", "-heavy", "\u5bc6\u96c6\u578b", " gameplay", "\u7e41\u5fd9", " intensive", "\u5bc6\u96c6", " intense"], ["-intensive", " gameplay", "-heavy", " intensive", " intense", "\u5bc6\u96c6\u578b", "\u7e41\u5fd9", "\u9ad8\u5cf0\u671f"], ["-intensive", " gameplay", "-heavy", " intensive", " intense", "\u5bc6\u96c6\u578b", " animations", " framerate"], ["-intensive", " gameplay", " intensive", "\u590d\u6742", " complex", "-heavy", "\u590d\u6742\u7684", " CPU"], ["-intensive", " intensive", " gameplay", "\u590d\u6742", " complex", "-heavy", " intense", "\u590d\u6742\u7684"], [" intensive", "-intensive", "-heavy", " heavy", " intense", "\u5bc6\u96c6\u578b", "\u6e32\u67d3", " rendering"], [" intensive", " rendering", "\u6e32\u67d3", "-intensive", " render", " heavy", " intense", "-heavy"], [" frame", "\u5e27", " frames", "-frame", "frame", " Frame", "Frame", "/frame"], [" frame", " frames", "\u5e27", "-frame", " Frame", "frame", "Frame", "/frame"], [" frame", "-frame", "\u5e27", " frames", " Frame", " heavy", " intensive", "frame"], [" frame", " heavy", " intensive", "-frame", " intense", " rendering", " frames", " render"], [" frame", " heavy", " intensive", " intense", " render", " rendering", " complex", " tight"]], "p": [[0.4754, 0.2884, 0.1749, 0.0568, 0.0012, 0.001, 0.0004, 0.0003], [0.8621, 0.0429, 0.023, 0.023, 0.0203, 0.0179, 0.002, 0.0008], [0.6813, 0.1341, 0.1184, 0.0339, 0.011, 0.0052, 0.0046, 0.0046], [0.0071, 0.0038, 0.0028, 0.0028, 0.0028, 0.0028, 0.0024, 0.0024], [0.5488, 0.1896, 0.045, 0.031, 0.0156, 0.0114, 0.0114, 0.0101], [0.1716, 0.1514, 0.1422, 0.1336, 0.0672, 0.0407, 0.036, 0.028], [0.5816, 0.0695, 0.0576, 0.0541, 0.0396, 0.0212, 0.0199, 0.0094], [0.404, 0.1312, 0.0847, 0.0796, 0.0747, 0.0293, 0.0201, 0.0115], [0.8621, 0.0486, 0.0179, 0.0096, 0.0096, 0.0085, 0.0075, 0.0058], [0.4737, 0.3689, 0.0322, 0.0322, 0.0267, 0.0077, 0.0068, 0.0063], [0.8305, 0.1124, 0.0105, 0.006, 0.0056, 0.0046, 0.0044, 0.0041], [0.6478, 0.0566, 0.0532, 0.0267, 0.0162, 0.0077, 0.0077, 0.0034], [0.5097, 0.1211, 0.0886, 0.0326, 0.0238, 0.0128, 0.0041, 0.0037], [0.2969, 0.1589, 0.0851, 0.0402, 0.0313, 0.0066, 0.0051, 0.0023], [0.2436, 0.202, 0.1016, 0.0121, 0.0057, 0.0031, 0.0021, 0.002], [0.1901, 0.0481, 0.0452, 0.0048, 0.0042, 0.0037, 0.0027, 0.0025], [0.2993, 0.2331, 0.1101, 0.0217, 0.0085, 0.0018, 0.0016, 0.0014], [0.1045, 0.0436, 0.0339, 0.0219, 0.0046, 0.0041, 0.0034, 0.0028], [0.0125, 0.0043, 0.0034, 0.0032, 0.0028, 0.0025, 0.0023, 0.0023], [0.037, 0.0154, 0.0094, 0.0053, 0.0034, 0.0032, 0.0029, 0.0024], [0.0387, 0.0142, 0.0098, 0.0041, 0.0016, 0.0013, 0.0013, 0.0012], [0.002, 0.0017, 0.0016, 0.0015, 0.0014, 0.0014, 0.0013, 0.0011], [0.003, 0.0022, 0.0016, 0.0016, 0.0016, 0.0015, 0.0015, 0.0015], [0.003, 0.0026, 0.0022, 0.0021, 0.0021, 0.0019, 0.0019, 0.0018], [0.01, 0.0083, 0.0037, 0.0029, 0.0022, 0.0019, 0.0016, 0.0015], [0.005, 0.0034, 0.003, 0.003, 0.0025, 0.0023, 0.0023, 0.0022], [0.0137, 0.0083, 0.0057, 0.0042, 0.0037, 0.0035, 0.0031, 0.0029], [0.0209, 0.0053, 0.0041, 0.0041, 0.0039, 0.0034, 0.0034, 0.0034], [0.0504, 0.0077, 0.0064, 0.0057, 0.0053, 0.0053, 0.0053, 0.0053], [0.0908, 0.0108, 0.0102, 0.0096, 0.0096, 0.009, 0.009, 0.0062], [0.142, 0.0124, 0.0117, 0.0117, 0.011, 0.011, 0.011, 0.011], [0.0907, 0.0229, 0.019, 0.0179, 0.0148, 0.0139, 0.0131, 0.0131], [0.0553, 0.0278, 0.0169, 0.0158, 0.014, 0.014, 0.0109, 0.0102], [0.0332, 0.0201, 0.0201, 0.0167, 0.0157, 0.0157, 0.0147, 0.0147], [0.0334, 0.0158, 0.0139, 0.0131, 0.0108, 0.0102, 0.0096, 0.009], [0.0283, 0.025, 0.0161, 0.0161, 0.0142, 0.0134, 0.0111, 0.0111], [0.1254, 0.0461, 0.0205, 0.0181, 0.017, 0.011, 0.0097, 0.0097], [0.2832, 0.0524, 0.0218, 0.015, 0.0132, 0.0132, 0.0086, 0.0086], [0.2941, 0.0511, 0.0374, 0.0213, 0.0156, 0.0146, 0.0138, 0.0129], [0.2815, 0.0432, 0.0405, 0.0316, 0.0262, 0.0192, 0.0192, 0.014], [0.3026, 0.0814, 0.0464, 0.0409, 0.0248, 0.0248, 0.0171, 0.0142], [0.2591, 0.0697, 0.0543, 0.045, 0.0241, 0.0188, 0.0176, 0.0146], [0.2724, 0.0608, 0.0346, 0.0306, 0.0238, 0.0127, 0.0112, 0.0112], [0.236, 0.0635, 0.0561, 0.0362, 0.022, 0.0194, 0.0151, 0.0133], [0.2197, 0.0629, 0.0406, 0.0262, 0.0192, 0.0192, 0.0192, 0.014], [0.1819, 0.0555, 0.0262, 0.0231, 0.0204, 0.0192, 0.018, 0.0159], [0.1286, 0.0941, 0.0325, 0.0306, 0.0253, 0.0185, 0.0174, 0.0164], [0.2344, 0.0918, 0.0359, 0.0359, 0.0263, 0.0205, 0.0141, 0.0141], [0.245, 0.1157, 0.0547, 0.0353, 0.0275, 0.0122, 0.0122, 0.0108], [0.279, 0.1692, 0.0906, 0.0148, 0.0095, 0.0095, 0.0079, 0.0074], [0.2606, 0.1395, 0.0331, 0.0167, 0.013, 0.0122, 0.0069, 0.0065], [0.2894, 0.1755, 0.0305, 0.0287, 0.0223, 0.0185, 0.0163, 0.0144], [0.3371, 0.1405, 0.0852, 0.0456, 0.0216, 0.0168, 0.0148, 0.0108], [0.3027, 0.2358, 0.0765, 0.0675, 0.0206, 0.0142, 0.0142, 0.0133], [0.2517, 0.173, 0.0817, 0.0721, 0.0636, 0.0437, 0.0301, 0.0207], [0.4292, 0.1579, 0.0746, 0.0513, 0.0452, 0.0399, 0.0189, 0.013], [0.4037, 0.3144, 0.0425, 0.0376, 0.0331, 0.0228, 0.0177, 0.0157], [0.3075, 0.1865, 0.1131, 0.0778, 0.0534, 0.0367, 0.0324, 0.0252], [0.7504, 0.1151, 0.048, 0.0423, 0.0137, 0.0107, 0.0083, 0.0057], [0.8976, 0.0348, 0.0271, 0.0186, 0.0069, 0.0042, 0.0029, 0.002], [0.9248, 0.0246, 0.0116, 0.0103, 0.0055, 0.0055, 0.0043, 0.0023], [0.8741, 0.0264, 0.0264, 0.016, 0.011, 0.0076, 0.0067, 0.0032], [0.804, 0.1088, 0.0147, 0.013, 0.013, 0.0115, 0.0061, 0.0031]], "ranks": {}}, {"pos": 450, "top": [[",", ".", "-", " \u2013", "\u2013", "\u00a0\u00a0", " ", "\u00a0"], [" \u2013**", "\u2013", " \u2013", "  \r\n", "  \r\n\r\n", " \u2018", "\u2013and", " "], ["\u2013", ",", " \u2013", "\u2026", ".", "\u2013and", "\u2026\"", " \u2013**"], [" Blowjob", " Shemale", " Hidal", " milfs", " Pubbl", " Palav", " Prostitu", " cumshot"], ["\u8fde\u4e91", " Pul", " Hidal", "  \t\t", " Heavy", "-handed", "\u8d85\u91cd", "urst"], ["-**", "incu", "odka", "insky", " Heavy", "-_", "urst", "-load"], ["-duty", "\u91cd\u7684", "-_", " Heavy", "-handed", "-**", "weights", "incu"], ["-duty", "-handed", "-_", "-**", "-heavy", " Heavy", " -**", " **\u2018"], ["-duty", "-handed", "-heavy", "  \r\n\r\n", " Heavy", "-weight", "\u91cd\u7684", "\u2019n"], ["-duty", "-heavy", "-handed", " Heavy", "-hearted", "\u7eb6", "Heavy", "\\_"], ["-duty", "-heavy", "\\_", "-handed", "\\-", "-_", " Heavy", "\u91cd\u7684"], ["-duty", "-heavy", "-**", "-handed", "\u4ece\u91cd", " **#", " flashy", "f\u00e4llig"], ["-duty", "-heavy", "-**", "-handed", " flashy", "\u4ece\u91cd", " impactful", " **\u2018"], ["-heavy", "-duty", " flashy", " Heavy", "-handed", " heavy", "\u4ece\u91cd", " impactful"], [" Heavy", " heavy", "-heavy", " flashy", "-duty", " aggressive", " Massive", " heavier"], ["-heavy", " flashy", " showcasing", " heavy", " Heavy", " booming", " heavier", "-duty"], [" heavy", " Heavy", "-heavy", " flashy", " heavier", " showcasing", " hitters", " Massive"], ["-heavy", " flashy", " Heavy", " heavy", " hitters", " gigs", " tactics", "-duty"], [" flashy", "-heavy", " Heavy", "-duty", "\u4ece\u91cd", "ligh", " hitters", " heavy"], [" Heavy", "-heavy", " heavy", "-duty", "\u4ece\u91cd", " flashy", "\u8fc7\u91cd", " heavier"], [" Heavy", " heavy", "Heavy", "-heavy", "-duty", "\u4ece\u91cd", "\u8fc7\u91cd", " heavier"], [" flashy", "\u4ece\u91cd", " heavy", "-duty", " Heavy", "\u8fc7\u91cd", "-heavy", "ligh"], [" heavy", " Heavy", " flashy", "\u4ece\u91cd", "\u8fc7\u91cd", " heavier", "f\u00e4llig", "-duty"], [" heavy", " Heavy", " heavier", "\u8fc7\u91cd", "Heavy", "-heavy", "f\u00e4llig", "\u4ece\u91cd"], [" heavy", "-heavy", " \r\n\r\n", "Heavy", " Heavy", "\u4ece\u91cd", "-duty", " workload"], [" workload", " )**", " **\u2018", "\u4ece\u91cd", " impactful", " heavy", "-heavy", " flashy"], [" workload", " **\u2018", " )**", " heavy", "-heavy", "-duty", " impactful", "\u4ece\u91cd"], [" heavy", " workload", "-heavy", " Heavy", " massive", " heavier", " battling", " mass"], [" heavy", " workload", "-heavy", " Heavy", " )**", " tasks", " heavier", " load"], [" workload", " heavy", " workflows", "-heavy", " load", " )**", " workflow", " tasks"], [" heavy", " workload", "-heavy", " load", " labor", " heavier", " work", " tasks"], [" heavy", " work", " workload", " labor", " load", " Heavy", " tech", " heavier"], [" heavy", " Heavy", " load", " workload", " labor", " tech", " work", " fuel"], [" heavy", "-heavy", " workload", " tech", " workflows", " labor", " load", " fuel"], ["-heavy", " heavy", " workload", " workflows", " tech", " )**", " load", " .**"], ["-heavy", " heavy", " workload", " workflows", " )**", " Heavy", " load", "\u2026**"], [" workflows", " workload", "-heavy", " heavy", " workflow", " hardware", " multit", " computational"], [" workload", " workflows", "-heavy", " workflow", " load", " heavy", " gameplay", " animations"], [" workload", " workflows", "-heavy", " heavy", " workflow", " computational", " gameplay", " load"], [" workload", " workflows", " heavy", " animations", "-heavy", " computational", " processing", " workflow"], [" animations", " workload", " workflows", " animation", " processing", " computational", " gameplay", "-heavy"], [" animations", " workload", " workflows", " processing", " animation", " computational", "-heavy", " graphics"], [" animations", " processing", " animation", " workload", " workflows", " computational", "-heavy", " graphics"], [" animations", " processing", " animation", " workload", " workflows", "-heavy", " heavy", " computational"], [" animations", " workflows", " processing", " workload", "-heavy", " animation", "-intensive", " heavy"], [" animations", " workflows", " processing", "-heavy", " animation", " workload", " production", " heavy"], ["-heavy", " animations", " workflows", " workload", "-intensive", " processing", " deployments", " visuals"], ["-heavy", " animations", " workflows", "-intensive", " workload", " visuals", " processing", " interactions"], [" animations", "-heavy", "-intensive", " workflows", " workload", " visuals", " gameplay", " processing"], ["-heavy", " animations", " workflows", "-intensive", " gameplay", " visuals", " workload", "loads"], ["-heavy", " workflows", " animations", " gameplay", "-intensive", "-duty", "\u6570\u636e\u5904\u7406", " visuals"], [" animations", " workflows", "-duty", " visuals", "\u6570\u636e\u5904\u7406", " gameplay", "ndata", " multit"], [" gameplay", " visuals", " workflows", " animations", "\u6570\u636e\u5904\u7406", " allocations", "-duty", "ndata"], [" gameplay", " animations", " visuals", " GPU", "\u6570\u636e\u5904\u7406", " CPU", " multit", " computational"], [" allocations", " gameplay", " GPU", "alloc", " CPU", " loops", " shader", " graphical"], [" allocations", " GPU", " gameplay", "alloc", " serialization", " asynchronous", " graphics", " graphical"], [" GPU", " allocations", " shader", " graphics", " rendering", " graphical", " gameplay", " WebGL"], [" rendering", " shader", " GPU", " graphics", " allocations", "\u6e32\u67d3", " graphical", " Rendering"], [" geometry", " rendering", " GPU", " shader", " graphics", " graphical", " allocations", " gameplay"], [" async", " asynchronous", "async", " Async", "\u5f02\u6b65", "Async", " geometry", " rendering"], [" async", " asynchronous", " Async", "async", " rendering", " geometry", "\u5f02\u6b65", " asset"], [" async", " asynchronous", " rendering", " geometry", " asset", " frame", " Async", "async"], [" async", " rendering", " geometry", " frame", " asset", " scene", " asynchronous", " object"]], "p": [[0.6182, 0.3309, 0.0145, 0.0083, 0.0047, 0.0042, 0.0032, 0.0016], [0.0551, 0.0403, 0.0379, 0.0179, 0.0079, 0.0066, 0.0048, 0.0048], [0.5614, 0.2652, 0.0337, 0.015, 0.0124, 0.0066, 0.0066, 0.0036], [0.0094, 0.005, 0.0045, 0.0039, 0.0033, 0.0027, 0.0024, 0.0024], [0.0029, 0.0025, 0.0021, 0.0019, 0.0016, 0.0016, 0.0015, 0.0015], [0.0055, 0.0049, 0.0029, 0.0024, 0.0023, 0.0023, 0.0019, 0.0018], [0.0307, 0.0175, 0.0164, 0.0136, 0.0094, 0.0088, 0.0073, 0.006], [0.0276, 0.013, 0.0122, 0.0084, 0.0066, 0.0066, 0.0051, 0.0045], [0.1133, 0.0503, 0.0163, 0.0099, 0.0068, 0.005, 0.0047, 0.0044], [0.0782, 0.021, 0.0164, 0.0039, 0.0025, 0.0024, 0.0024, 0.0022], [0.0865, 0.0409, 0.017, 0.0141, 0.0133, 0.0117, 0.011, 0.0097], [0.0259, 0.0139, 0.0108, 0.0048, 0.0037, 0.0031, 0.0031, 0.0029], [0.0126, 0.0087, 0.0072, 0.0041, 0.0034, 0.0023, 0.0021, 0.0018], [0.0211, 0.012, 0.0073, 0.0057, 0.0053, 0.0044, 0.0034, 0.0034], [0.0299, 0.0219, 0.0133, 0.0125, 0.0076, 0.0055, 0.0036, 0.0034], [0.0079, 0.0079, 0.0079, 0.0074, 0.0066, 0.0031, 0.0029, 0.0029], [0.0156, 0.0129, 0.0114, 0.0078, 0.0047, 0.0033, 0.0029, 0.0024], [0.0077, 0.0068, 0.0064, 0.0039, 0.0028, 0.0025, 0.0023, 0.0022], [0.0136, 0.0078, 0.005, 0.0044, 0.0042, 0.0042, 0.0034, 0.0032], [0.0175, 0.0154, 0.0145, 0.0088, 0.006, 0.0053, 0.005, 0.005], [0.0141, 0.0085, 0.0075, 0.0067, 0.0046, 0.0033, 0.0033, 0.0024], [0.0041, 0.0036, 0.003, 0.0026, 0.0026, 0.002, 0.002, 0.0019], [0.0055, 0.004, 0.0038, 0.0036, 0.0026, 0.0026, 0.0026, 0.0024], [0.021, 0.0082, 0.0039, 0.0034, 0.0032, 0.003, 0.0021, 0.0021], [0.0139, 0.0074, 0.007, 0.0058, 0.0051, 0.0042, 0.004, 0.0037], [0.0122, 0.0101, 0.0065, 0.0054, 0.0048, 0.0048, 0.0042, 0.0037], [0.0204, 0.0102, 0.009, 0.0085, 0.0075, 0.0048, 0.0038, 0.0035], [0.0742, 0.0114, 0.0114, 0.0078, 0.0061, 0.0057, 0.0042, 0.0039], [0.0627, 0.0431, 0.0261, 0.0116, 0.0085, 0.007, 0.0066, 0.0066], [0.0615, 0.0423, 0.0241, 0.0165, 0.01, 0.01, 0.0094, 0.0094], [0.1419, 0.0359, 0.0204, 0.018, 0.0159, 0.015, 0.0109, 0.0091], [0.1178, 0.0181, 0.0159, 0.015, 0.015, 0.0091, 0.0091, 0.0085], [0.1342, 0.0141, 0.0133, 0.0125, 0.0117, 0.0117, 0.0097, 0.0091], [0.0795, 0.0242, 0.0189, 0.0177, 0.0157, 0.0122, 0.0101, 0.0084], [0.0696, 0.0509, 0.0329, 0.0187, 0.0165, 0.0155, 0.0089, 0.0078], [0.1155, 0.0581, 0.0482, 0.0258, 0.0114, 0.0101, 0.0089, 0.0069], [0.0741, 0.0615, 0.0509, 0.0226, 0.0129, 0.0129, 0.0107, 0.01], [0.1006, 0.1006, 0.0186, 0.0175, 0.0136, 0.012, 0.012, 0.012], [0.1297, 0.1297, 0.0308, 0.0225, 0.0199, 0.0176, 0.0155, 0.0145], [0.1088, 0.0902, 0.0293, 0.0275, 0.0214, 0.0214, 0.0201, 0.0189], [0.1449, 0.0826, 0.0643, 0.0415, 0.0366, 0.0323, 0.0184, 0.0163], [0.1467, 0.0836, 0.0651, 0.0574, 0.0574, 0.0327, 0.0175, 0.0136], [0.1236, 0.0661, 0.0455, 0.0401, 0.0401, 0.0293, 0.0189, 0.0157], [0.144, 0.0467, 0.0439, 0.0439, 0.0364, 0.025, 0.0183, 0.0172], [0.1079, 0.051, 0.0479, 0.045, 0.0329, 0.0273, 0.0188, 0.0188], [0.1527, 0.0363, 0.0341, 0.0301, 0.0283, 0.0265, 0.0161, 0.0125], [0.11, 0.0805, 0.0667, 0.0357, 0.023, 0.023, 0.0123, 0.0109], [0.1738, 0.093, 0.0468, 0.0321, 0.0235, 0.0221, 0.0162, 0.0118], [0.1532, 0.127, 0.0439, 0.0364, 0.0207, 0.0207, 0.0195, 0.0104], [0.1744, 0.0774, 0.0469, 0.0366, 0.0343, 0.0236, 0.0196, 0.0077], [0.0671, 0.0359, 0.0359, 0.0247, 0.017, 0.0124, 0.011, 0.008], [0.0817, 0.0363, 0.0301, 0.0249, 0.0234, 0.0182, 0.0171, 0.0086], [0.063, 0.0461, 0.0433, 0.0359, 0.0317, 0.018, 0.017, 0.0159], [0.1519, 0.0559, 0.0463, 0.0435, 0.0299, 0.0248, 0.0193, 0.0181], [0.3123, 0.079, 0.0479, 0.0309, 0.0226, 0.02, 0.0188, 0.0188], [0.2533, 0.0499, 0.044, 0.0388, 0.0284, 0.0267, 0.0251, 0.0236], [0.1514, 0.0919, 0.0919, 0.0811, 0.0492, 0.0492, 0.0247, 0.0181], [0.3292, 0.1069, 0.0832, 0.0648, 0.0446, 0.0306, 0.0306, 0.0186], [0.1357, 0.1357, 0.1357, 0.1057, 0.0303, 0.0267, 0.0236, 0.0143], [0.9727, 0.0108, 0.0066, 0.0035, 0.001, 0.0008, 0.0007, 0.0006], [0.9698, 0.0108, 0.0045, 0.004, 0.0019, 0.0017, 0.0007, 0.0007], [0.9453, 0.0173, 0.0064, 0.005, 0.0044, 0.003, 0.003, 0.0023], [0.8309, 0.0414, 0.0251, 0.0172, 0.0152, 0.0119, 0.0098, 0.0092]], "ranks": {}}, {"pos": 451, "top": [["s", "a", ".", " @", ",", "@", "-", " \u2022"], ["s", " *@", "\u0627\u062a", " (@", " @", " [@", " \"@", " @("], ["s", ",", ".", "\u2013", ",.", "-,", "[@", "["], ["\u52a0\u62ff\u5927", "s", "\u0627\u062a", "enticate", "schrift", "s\u00f6k", "---</", " *_"], ["s", " @_", " @", " *@", " (@", " \"@", "\u0627\u062a", " @("], ["s", " @_", " @", " (@", "\u0627\u062a", " @(", ":@", " *@"], ["s", " @", " @_", "\u0627\u062a", " (@", " *@", " @(", " :::"], ["s", " *@", " @", " @_", " `-", " :::", " `%", " `."], ["s", " @", " *@", " (@", " `.", " @_", " [@", " @("], ["s", " @", " @_", " *@", " (@", " :::", ":@", ",@"], ["s", " @", " @_", " (@", ".@", " *@", " #", " @("], ["s", " @", " @_", " *@", " meds", " :::", " combo", " `-"], ["s", " combo", " meds", " @", "\u0627\u062a", " tech", " @_", " ~>"], ["s", " combo", " meds", "\u0627\u062a", " ops", " vibe", " tech", " timeline"], ["s", " combo", " ops", " tech", " meds", "\u0627\u062a", " &", " vibe"], ["s", " tech", " combo", " ops", " meds", " folks", " stuff", " thru"], ["s", " tech", " ops", " meds", " combo", "\u0627\u062a", " vibe", " info"], ["s", " meds", " ops", " tech", " combo", "\u0627\u062a", " vibe", "-tech"], ["s", " meds", " combo", " ops", " tech", " vibe", " stuff", "\u0627\u062a"], ["s", " tech", " meds", " ops", " combo", " &,", "\u0627\u062a", "-&"], ["s", " @", "@", " &,", " tech", " folks", "-&", "\u0627\u062a"], ["s", " messaging", " meds", " timelines", " matchups", "linky", "raquo", " tech"], ["s", " stuff", " ops", " messaging", " tech", " timelines", " events", " %+"], ["s", " events", " stuff", " tech", " &", " ops", " event", " messaging"], ["s", "   \n\n", " events", " &,", " tech", " @", " --", " \n\n"], ["s", " tech", " timelines", " async", " messaging", " events", " workflows", " stuff"], [" @", "s", " tech", " events", " @_", " messaging", " telecom", " async"], [" @", " \n\n", " --", " @_", " tech", " events", "\n\n", "s"], [" @", " tech", " events", "s", " workflows", " async", " @_", " timelines"], [" tech", " events", " workflows", " async", "s", " timelines", " messaging", " timeline"], [" events", " workflows", " tech", "s", " async", " stuff", " workflow", " protocols"], [" events", " tech", "s", " workflows", " ...", " stuff", " async", " event"], [" events", " tech", "s", " workflows", " stuff", " event", " async", " projects"], [" workflows", " tech", " events", " async", " workflow", " protocols", " meds", " timelines"], [" workflows", " tech", " async", " meds", " events", " timelines", " workflow", " protocols"], [" async", " workflows", " tech", " Async", " asynchronous", " events", " meds", "Async"], [" async", " workflows", " Async", " asynchronous", " tech", "Async", " events", "s"], [" async", " workflows", " Async", " asynchronous", "Async", " multit", " workflow", " tech"], [" async", " workflows", " asynchronous", " Async", " workflow", " multit", " asynchronously", "Async"], [" async", " asynchronous", " workflows", " Async", " asynchronously", "Async", " workflow", " multit"], [" asynchronous", " async", " workflows", " Async", " asynchronously", " workflow", "Async", " multit"], [" asynchronous", " workflows", " async", " asynchronously", " Async", " workflow", " events", " processing"], [" asynchronous", " workflows", " async", " asynchronously", " Async", " events", " workflow", " processing"], [" asynchronous", " workflows", " async", " events", " Async", " asynchronously", " tasks", " processing"], [" asynchronous", " workflows", " async", " streams", " events", " Async", " asynchronously", " processing"], [" workflows", " asynchronous", " async", " streams", " events", " processing", " tasks", " interactions"], [" workflows", " asynchronous", " async", " interactions", " streams", " events", " tasks", " processing"], [" workflows", " asynchronous", " interactions", " streams", " async", " events", " workflow", " concurrent"], [" workflows", " asynchronous", " streams", " interactions", " influx", " processing", " async", " inputs"], [" workflows", " asynchronous", "-heavy", " streams", " influx", " processing", " deliveries", " tasks"], [" workflows", "-heavy", " callbacks", " deployments", " asynchronous", " processing", " deliveries", " interactions"], [" workflows", "\u6570\u636e\u5904\u7406", " processing", " callbacks", " asynchronous", "-heavy", " updates", " syncing"], [" workflows", "\u6570\u636e\u5904\u7406", " callbacks", " processing", "-processing", " updates", "\u6570\u636e\u91c7\u96c6", "-heavy"], [" callbacks", " workflows", " processing", " async", "\u6570\u636e\u5904\u7406", " asynchronous", " updates", " payloads"], [" callbacks", " workflows", " async", " Async", "\u6570\u636e\u5904\u7406", " processing", " asynchronous", " payloads"], [" callbacks", "\u6570\u636e\u5904\u7406", " workflows", " processing", "/data", " data", " async", "-data"], [" callbacks", "\u6570\u636e\u5904\u7406", " workflows", " operations", " updates", " data", " async", " processing"], [" data", " callbacks", "\u6570\u636e\u5904\u7406", "/data", "-data", " operations", " workflows", " updates"], [" data", " callbacks", " operations", "\u6570\u636e\u5904\u7406", "/data", "-data", " workflows", " updates"], [" data", " operations", " callbacks", " updates", "/data", " API", "/API", " operation"], [" data", " updates", " operations", " callbacks", " API", "/data", "/API", " pipeline"], [" data", " operations", " updates", " callbacks", " API", "/data", "/API", " workflows"], [" data", " operations", "/data", " updates", " polling", " processing", " API", " callbacks"]], "p": [[0.9911, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001], [0.9985, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9953, 0.0013, 0.0006, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.0305, 0.0163, 0.0153, 0.0087, 0.0087, 0.0056, 0.0053, 0.0053], [0.9702, 0.0058, 0.0045, 0.0035, 0.0021, 0.0015, 0.0014, 0.0007], [0.9321, 0.011, 0.0086, 0.0026, 0.0026, 0.0017, 0.0016, 0.001], [0.9892, 0.0025, 0.0007, 0.0004, 0.0004, 0.0003, 0.0002, 0.0002], [0.8657, 0.0116, 0.0109, 0.008, 0.0035, 0.0029, 0.0023, 0.002], [0.9223, 0.0217, 0.007, 0.0045, 0.0024, 0.0021, 0.0013, 0.0011], [0.9481, 0.0135, 0.003, 0.0013, 0.0012, 0.0008, 0.0008, 0.0006], [0.9416, 0.0414, 0.0016, 0.0008, 0.0008, 0.0005, 0.0005, 0.0004], [0.5119, 0.0507, 0.0128, 0.0083, 0.0078, 0.0061, 0.0061, 0.0039], [0.7298, 0.0043, 0.0043, 0.0028, 0.002, 0.0014, 0.0014, 0.0013], [0.9327, 0.0019, 0.0012, 0.0009, 0.0007, 0.0006, 0.0006, 0.0005], [0.9749, 0.0013, 0.0009, 0.0007, 0.0004, 0.0004, 0.0002, 0.0002], [0.9461, 0.0025, 0.0023, 0.0017, 0.0013, 0.001, 0.0007, 0.0006], [0.9928, 0.0004, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9361, 0.0034, 0.002, 0.0019, 0.0018, 0.0011, 0.0007, 0.0006], [0.7052, 0.0166, 0.0078, 0.0078, 0.0057, 0.0033, 0.0029, 0.0027], [0.8093, 0.0033, 0.0027, 0.0021, 0.002, 0.0019, 0.0016, 0.0016], [0.7776, 0.0059, 0.0022, 0.0019, 0.0016, 0.0016, 0.0014, 0.0012], [0.0223, 0.0082, 0.0077, 0.0072, 0.0047, 0.0047, 0.0041, 0.0041], [0.1041, 0.0075, 0.0067, 0.0067, 0.0063, 0.0049, 0.0046, 0.0043], [0.3299, 0.0128, 0.0053, 0.0047, 0.0044, 0.0037, 0.0034, 0.0025], [0.2617, 0.0066, 0.0062, 0.0054, 0.0054, 0.0051, 0.0048, 0.0045], [0.0221, 0.0207, 0.0142, 0.0126, 0.0118, 0.0098, 0.0086, 0.0076], [0.0361, 0.034, 0.0264, 0.0233, 0.0193, 0.016, 0.0104, 0.0104], [0.1954, 0.0385, 0.0385, 0.0264, 0.0233, 0.0194, 0.016, 0.0133], [0.064, 0.0468, 0.044, 0.0302, 0.0251, 0.0195, 0.0183, 0.0152], [0.0625, 0.0625, 0.0551, 0.0245, 0.023, 0.019, 0.0168, 0.0139], [0.1037, 0.0713, 0.0713, 0.0279, 0.0204, 0.0192, 0.014, 0.014], [0.1108, 0.0492, 0.0462, 0.0181, 0.0141, 0.0132, 0.0103, 0.0097], [0.1387, 0.0615, 0.0373, 0.0146, 0.01, 0.0083, 0.0074, 0.0074], [0.1318, 0.0706, 0.0378, 0.0333, 0.0168, 0.0139, 0.0131, 0.0096], [0.0862, 0.0862, 0.0761, 0.0181, 0.0141, 0.0097, 0.0097, 0.0091], [0.1464, 0.0888, 0.0692, 0.0254, 0.0254, 0.0136, 0.0136, 0.0106], [0.1811, 0.1701, 0.0357, 0.0357, 0.0296, 0.014, 0.014, 0.0116], [0.2995, 0.1707, 0.0757, 0.0489, 0.018, 0.0132, 0.0116, 0.0109], [0.2703, 0.2385, 0.0877, 0.0603, 0.0184, 0.0173, 0.0162, 0.0126], [0.2971, 0.2042, 0.1802, 0.0585, 0.0202, 0.019, 0.0157, 0.0115], [0.334, 0.2948, 0.1084, 0.0399, 0.0292, 0.0107, 0.0101, 0.0089], [0.4328, 0.2044, 0.1405, 0.0403, 0.0314, 0.0139, 0.009, 0.0058], [0.5484, 0.1387, 0.108, 0.0397, 0.0213, 0.0107, 0.0078, 0.0069], [0.4141, 0.1523, 0.0924, 0.0319, 0.0319, 0.0219, 0.0133, 0.0133], [0.2884, 0.2545, 0.0729, 0.0268, 0.0252, 0.0196, 0.0184, 0.0163], [0.2499, 0.1717, 0.0524, 0.036, 0.0318, 0.0298, 0.0193, 0.0181], [0.384, 0.1413, 0.038, 0.0261, 0.0231, 0.0191, 0.0149, 0.014], [0.2911, 0.0834, 0.037, 0.037, 0.0288, 0.0186, 0.0164, 0.0154], [0.2251, 0.0881, 0.0502, 0.0269, 0.0253, 0.0223, 0.0223, 0.0185], [0.3547, 0.033, 0.033, 0.031, 0.0257, 0.0213, 0.02, 0.0177], [0.5433, 0.0254, 0.0224, 0.0211, 0.0175, 0.0128, 0.0099, 0.0093], [0.4237, 0.0447, 0.0447, 0.0419, 0.0307, 0.0154, 0.0154, 0.0128], [0.3179, 0.1702, 0.1502, 0.0804, 0.0245, 0.0191, 0.0109, 0.0102], [0.3236, 0.1963, 0.0818, 0.0637, 0.0562, 0.0194, 0.0183, 0.0142], [0.3276, 0.2891, 0.0939, 0.0391, 0.0269, 0.0269, 0.0185, 0.0077], [0.6231, 0.0843, 0.0744, 0.0188, 0.0166, 0.0147, 0.0129, 0.0101], [0.5956, 0.0711, 0.0628, 0.0336, 0.0231, 0.0204, 0.0159, 0.014], [0.3616, 0.2193, 0.1036, 0.0712, 0.0381, 0.0336, 0.0297, 0.0297], [0.442, 0.1626, 0.0678, 0.0678, 0.0678, 0.0283, 0.0133, 0.0118], [0.4374, 0.2341, 0.0861, 0.0522, 0.0218, 0.0192, 0.015, 0.0117], [0.5695, 0.099, 0.068, 0.053, 0.0364, 0.0321, 0.0172, 0.0092], [0.6253, 0.0795, 0.0376, 0.0331, 0.0311, 0.0242, 0.0108, 0.0101], [0.8163, 0.0297, 0.0262, 0.0218, 0.0059, 0.0055, 0.0049, 0.004]], "ranks": {}}, {"pos": 452, "top": [[".", ",", ";", "\u00a0", " \u2013", " \u200b\u200b", " ", ":"], [".", " \u200b\u200b", ",", " \u2013", ";", "\u2013", "\u200b", " "], [",", ".", "\u2013", "\u2026", ";", "\u2026.", "\u2026..", " \u200b\u200b"], [" Shemale", " milfs", " pornstar", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u041a\u0440\u0430\u0441\u0438", " Guta", " pornost", " Blowjob"], [" Data", " \u200b\u200b", " system", "@d", " data", "arana", "=data", "\u043a\u0430\u0443"], [".Data", " Data", " \u200b\u200b", "=data", " Vodafone", " data", "siz", "-data"], ["ted", "s", "-data", "scape", " data", " Data", "ocracy", "edly"], [" data", "-data", "scape", ".Data", "=data", " Data", "ocracy", "ted"], ["\u00a0", ".", "scape", " \u200b\u200b", "uality", "s", " \n\n", "ually"], [",", "-al", "-d", "-data", ".GetData", "\u0451\u043c", "scape", "\u81ea\u8eab\u98ce\u9669"], ["scape", "ted", "-data", " data", "-d", "-processing", "-heavy", "lessly"], ["lessly", "ocracy", "scape", "\u826f\u673a", "-processing", "-data", "ernals", "schuss"], ["lessly", "-data", "alink", "-processing", " data", "schuss", " khi\u1ebfu", "ocracy"], [" transmission", " messaging", " processing", " resources", " data", " communications", "-processing", " distraction"], [" communications", " messaging", " resources", " processing", " impact", " collection", " distraction", " links"], [" messaging", " communications", " processing", "\u5206\u5206\u949f", " powering", " impact", " collection", " fallout"], [" messaging", " resources", " flow", " data", " processing", " impact", " center", " communications"], [" messaging", " flow", " resources", "-data", " fallout", "-heavy", " processing", " data"], [" messaging", " flow", " data", " crunch", "-data", " dumping", " resources", " stuff"], [" crunch", " messaging", " communications", " flow", " channel", " powering", " distraction", " streaming"], [" messaging", "\u6587\u5e7f", " powering", " crunch", " communications", "\u53cd\u5012\u662f", " myriad", " looming"], [" messaging", " data", " crunch", " streams", " streaming", "\u8bbe\u65bd\u5efa\u8bbe", "\u4f53\u7cfb\u5efa\u8bbe", "-data"], [" data", " messaging", " communications", " flow", " powering", " resources", " influx", " stream"], [" data", " communications", " stream", " resources", " flow", " channel", " processing", " impact"], [" data", " powering", " communications", " \r\n\r\n", " info", " messaging", "/data", " crunch"], [" data", " communications", " messaging", " streams", " processing", " streaming", " resources", " info"], [" data", " streaming", " messaging", " streams", " communications", " processing", "-data", " infrastructure"], [" data", " processing", " communications", " stream", " streams", " \n\n", " streaming", " resources"], [" data", " streams", " processing", " streaming", " communications", " messaging", "/data", " stream"], [" data", " processing", " streams", " streaming", " communications", " workflows", " messaging", " infrastructure"], [" data", " processing", " streams", " flow", " communications", " streaming", " stream", " ..."], [" data", " processing", " streams", " ...", " complex", " stream", " flow", " infrastructure"], [" data", " complex", " processing", " streams", " stream", " systems", " flow", " communications"], [" data", " streams", " infrastructure", " workflows", " processing", " streaming", " tech", " storage"], [" data", " tech", " infrastructure", " storage", "/data", " processing", " streams", " streaming"], [" data", "/data", " tech", " streaming", " processing", " workflows", " streams", " info"], [" data", " processing", " streaming", " workflows", "/data", " streams", " telemetry", " storage"], [" data", " processing", " workflows", " Data", " streams", " streaming", "/data", " storage"], [" data", " processing", " Data", "/data", " workflows", "-data", "\u8fd9\u4e9b\u6570\u636e", " streams"], [" data", " processing", " Data", " streaming", " streams", " influx", " workflows", "/data"], [" data", " processing", " Data", " streaming", "/data", " workflows", "-data", "data"], [" data", " processing", " influx", " streams", " workflows", " Data", " streaming", "/data"], [" data", " processing", " influx", " streams", " streaming", " workflows", " storage", "-data"], [" data", " processing", " influx", " streams", " streaming", " storage", " stream", " workflows"], [" data", " processing", " influx", " streams", " workflows", " streaming", " feeds", " feed"], [" processing", " data", " influx", " streams", " workflows", " inputs", " feeds", " streaming"], [" processing", " influx", " data", " workflows", " streams", " inputs", " feeds", " streaming"], [" influx", " processing", " data", " inputs", " streams", " workflows", " incoming", " feeds"], [" influx", " processing", " inputs", " streams", " feeds", "-processing", " incoming", " data"], [" influx", " processing", " workflows", " inputs", "-processing", " streams", " updates", "\u6d8c\u5165"], [" processing", " influx", " workflows", "-processing", "\u6570\u636e\u5904\u7406", " inputs", "/data", " updates"], [" processing", "-processing", " influx", "processing", " syncing", "\u6570\u636e\u5904\u7406", " workflows", " updates"], [" processing", "-processing", "processing", "Processing", "\u6570\u636e\u5904\u7406", " influx", " workflows", " Processing"], [" processing", "-processing", "processing", "Processing", " Processing", " ingestion", " updates", " influx"], [" processing", "-processing", "processing", "Processing", " ingestion", " Processing", " parsing", " updates"], [" processing", "-processing", " ingestion", "processing", "Processing", " Processing", " parsing", " updates"], [" processing", " ingestion", "-processing", " updates", "Processing", "processing", " parsing", " serialization"], [" ingestion", " processing", " updates", "-processing", " serialization", " streaming", " parsing", " influx"], [" processing", " ingestion", " streaming", " streams", "-processing", " updates", " parsing", " stream"], [" processing", " ingestion", " streaming", " updates", "-processing", " streams", " ingest", " parsing"], [" ingestion", " processing", " ingest", " updates", " streaming", " bursts", " serialization", " churn"], [" ingestion", " processing", " updates", " streaming", " ingest", " churn", " bursts", " parsing"], [" processing", " ingestion", " updates", " bursts", " churn", " parsing", " ingest", " loads"]], "p": [[0.8447, 0.1468, 0.0035, 0.0013, 0.0006, 0.0005, 0.0003, 0.0003], [0.2104, 0.154, 0.1359, 0.0642, 0.047, 0.0303, 0.0112, 0.0056], [0.5261, 0.4097, 0.0204, 0.014, 0.0096, 0.0085, 0.0035, 0.0026], [0.0036, 0.0028, 0.0023, 0.0017, 0.0012, 0.0011, 0.001, 0.001], [0.004, 0.0035, 0.0027, 0.0023, 0.0021, 0.0019, 0.0014, 0.0013], [0.0033, 0.0031, 0.0021, 0.0018, 0.0018, 0.0012, 0.0011, 0.0011], [0.0175, 0.0057, 0.0053, 0.005, 0.0034, 0.0034, 0.0032, 0.0032], [0.0076, 0.0067, 0.0049, 0.0046, 0.0046, 0.0034, 0.003, 0.0026], [0.011, 0.0097, 0.0071, 0.0071, 0.0059, 0.0059, 0.0059, 0.0036], [0.0023, 0.0019, 0.0017, 0.0016, 0.0015, 0.0013, 0.0013, 0.0012], [0.0041, 0.0038, 0.0036, 0.0028, 0.0028, 0.0025, 0.0023, 0.0022], [0.0038, 0.0017, 0.0015, 0.0014, 0.0013, 0.0012, 0.001, 0.0009], [0.0015, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008, 0.0007, 0.0007], [0.0019, 0.0019, 0.0017, 0.0016, 0.0015, 0.0014, 0.0014, 0.0014], [0.0021, 0.002, 0.0016, 0.0016, 0.0015, 0.0015, 0.0014, 0.0013], [0.0045, 0.0019, 0.0016, 0.0016, 0.0015, 0.0013, 0.0011, 0.0011], [0.0041, 0.0041, 0.0034, 0.0034, 0.003, 0.0026, 0.0022, 0.0017], [0.0057, 0.0032, 0.002, 0.0019, 0.0017, 0.0017, 0.0016, 0.0016], [0.005, 0.0041, 0.0028, 0.0028, 0.0027, 0.0025, 0.0021, 0.0019], [0.0045, 0.0043, 0.0021, 0.002, 0.0019, 0.0018, 0.0016, 0.0016], [0.0015, 0.0015, 0.0014, 0.0014, 0.001, 0.001, 0.0009, 0.0009], [0.0023, 0.0015, 0.0014, 0.0012, 0.0012, 0.0011, 0.001, 0.001], [0.0034, 0.0029, 0.0024, 0.0024, 0.0022, 0.0022, 0.0021, 0.002], [0.0065, 0.004, 0.0035, 0.0033, 0.0031, 0.0031, 0.0027, 0.0026], [0.012, 0.006, 0.0057, 0.0053, 0.0047, 0.0047, 0.0039, 0.0037], [0.0531, 0.0111, 0.0105, 0.0092, 0.0092, 0.0087, 0.0067, 0.0056], [0.0738, 0.0165, 0.0145, 0.0145, 0.0136, 0.01, 0.0078, 0.0073], [0.1232, 0.0228, 0.0201, 0.0157, 0.0157, 0.0138, 0.013, 0.007], [0.224, 0.0389, 0.0251, 0.0236, 0.0208, 0.0173, 0.0173, 0.0143], [0.1925, 0.0335, 0.0314, 0.0203, 0.0158, 0.0148, 0.0148, 0.0139], [0.3293, 0.0474, 0.021, 0.0145, 0.0136, 0.0136, 0.0128, 0.0106], [0.1642, 0.0344, 0.0323, 0.0323, 0.0196, 0.0196, 0.0163, 0.0112], [0.114, 0.0348, 0.0271, 0.0224, 0.0154, 0.012, 0.012, 0.0113], [0.1095, 0.0314, 0.023, 0.0203, 0.019, 0.0148, 0.0148, 0.0123], [0.2498, 0.0141, 0.0132, 0.0132, 0.0117, 0.0117, 0.011, 0.011], [0.3167, 0.0168, 0.0131, 0.0131, 0.0131, 0.0123, 0.0102, 0.0102], [0.4662, 0.0205, 0.017, 0.015, 0.0132, 0.0124, 0.0103, 0.0103], [0.5577, 0.0357, 0.0191, 0.0168, 0.0123, 0.0116, 0.009, 0.0085], [0.9241, 0.0192, 0.008, 0.0031, 0.002, 0.0018, 0.0016, 0.0016], [0.8727, 0.0338, 0.0091, 0.0049, 0.0043, 0.004, 0.0028, 0.0026], [0.9049, 0.031, 0.0074, 0.0033, 0.0031, 0.0025, 0.0022, 0.0022], [0.8441, 0.0785, 0.0094, 0.005, 0.0044, 0.0044, 0.0039, 0.0029], [0.7465, 0.1297, 0.0176, 0.0094, 0.0057, 0.0047, 0.0044, 0.0042], [0.5274, 0.2198, 0.0491, 0.0218, 0.0091, 0.0062, 0.0062, 0.0055], [0.3641, 0.2502, 0.0921, 0.0493, 0.0133, 0.011, 0.011, 0.0086], [0.3188, 0.1934, 0.1506, 0.0554, 0.0149, 0.0132, 0.0109, 0.0102], [0.2945, 0.1786, 0.1228, 0.0452, 0.0399, 0.0213, 0.0122, 0.0084], [0.3635, 0.1946, 0.0492, 0.0338, 0.0298, 0.017, 0.0132, 0.0132], [0.4851, 0.1784, 0.0511, 0.0166, 0.0146, 0.0138, 0.0114, 0.0114], [0.409, 0.2189, 0.038, 0.0336, 0.0336, 0.018, 0.0116, 0.0096], [0.2247, 0.1363, 0.0729, 0.0729, 0.0501, 0.0345, 0.0237, 0.0184], [0.4045, 0.1023, 0.062, 0.0547, 0.0426, 0.0332, 0.0332, 0.0228], [0.613, 0.199, 0.0305, 0.0238, 0.021, 0.021, 0.0099, 0.0077], [0.7601, 0.1166, 0.023, 0.023, 0.0123, 0.0075, 0.0066, 0.0058], [0.7907, 0.107, 0.0164, 0.0164, 0.0145, 0.0113, 0.0047, 0.0037], [0.7755, 0.105, 0.0386, 0.0142, 0.0125, 0.0098, 0.0052, 0.0041], [0.6228, 0.2022, 0.0511, 0.0351, 0.0101, 0.0078, 0.0069, 0.0069], [0.4587, 0.3572, 0.0797, 0.0202, 0.0084, 0.0074, 0.0058, 0.004], [0.5071, 0.2715, 0.0778, 0.0416, 0.0197, 0.0153, 0.0044, 0.0039], [0.8196, 0.1109, 0.0132, 0.0132, 0.0103, 0.0055, 0.0023, 0.002], [0.8751, 0.0718, 0.0206, 0.0141, 0.0017, 0.0013, 0.0009, 0.0009], [0.7414, 0.1875, 0.0198, 0.0073, 0.0044, 0.0037, 0.003, 0.0022], [0.4431, 0.3911, 0.077, 0.0086, 0.0067, 0.0059, 0.0046, 0.0046]], "ranks": {}}, {"pos": 453, "top": [[".", "ation", "\"", ",", " [\u2026]", " (\u2026)", "\u2026..", "nette"], ["cius", " Hidal", "ellaneous", " Hausti", " **\u300c", "ness", " **[", " Insg"], [" (\u2026)", "\u2026..", " **[", " **\"", "[\u2026]", " \u2026.", " \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026", "ation"], [" **\u300c", " **\u00ab", " *\u00ab", " Blowjob", " creampie", " **\u201e", " \u00bb**", " Shemale"], [" \n\n\n", " **\u201c", " \n\n\n\n", "\t\n\n\n", " \n\n\n\n\n", "ation", "  \n\n\n", " **\u00ab"], [" \n\n\n", " **\u201c", " \n\n\n\n", " \n\n\n\n\n", "  \n\n\n", " **\u00ab", " **\"", " **\u300c"], [" \n\n\n", " **\u201c", " \n\n", " **\u300c", "  \n\n", " \n\n\n\n", " \u2014\u2014", " **\u2014"], [" \n\n\n", " **\u300c", " **\u2014", " **\u00ab", " **\u201c", " \n\n", " **\"", " **\u201e"], [" \n\n\n", " \n\n", "  \n\n", "   \n\n", "  \n\n\n", " \n\n\n\n", "\t\n\n", "\t\n\n\n"], [" \n\n\n", " myriad", " **\u2014", " \u00ad", "\u2014", " entirety", " \ufffd", " purported"], [" \n\n\n", " \n\n", "  \n\n", " myriad", "  \n\n\n", " \u2014", "\u2014", " \ufffd"], [" **\u00ab", " **\u300c", " **\u201c", " **\u2014", " **\u201e", " **\"", " **+", " **["], [" **\u00ab", " **\u300c", " **\u201e", " **\u2014", " **\u201c", " *\u00ab", " impactful", " entirety"], [" entirety", " myriad", " transformative", " **\u00ab", " **\u300c", " **\u2014", " atop", " nuanced"], [" myriad", " entirety", " akin", " atop", " nuanced", " \u2014", " disparate", " sprawling"], [" myriad", " entirety", " akin", " atop", " nuanced", " overarching", " disparate", " sprawling"], [" entirety", " myriad", " akin", " overarching", " nuanced", " disparate", " via", " albeit"], [" entirety", " myriad", " **\u2014", " akin", " **\u00ab", " **\u201c", " **\u201e", " **\u300c"], [" myriad", " **\u2014", " entirety", " **\u201c", " akin", " **\u201e", " disparate", " nuanced"], [" myriad", " entirety", " akin", " **\u2014", " \u2014", " via", " disparate", " albeit"], ["<|endoftext|>", " myriad", " \n\n", " \u2014", "  \n\n", " entirety", " \n\n\n", " burgeoning"], [" myriad", " entirety", " **\u2014", " disparate", " via", " atop", " overarching", "\u6d77\u91cf\u7684"], [" myriad", " entirety", " via", " disparate", " \u2015", " atop", " burgeoning", " swiftly"], [" myriad", " via", " \u2014", " \u2015", " entirety", " swiftly", " burgeoning", " \n\n"], [" \n\n", "  \n\n", " \n\n\n", "   \n\n", " \r\n\r\n", "\t\n\n", " myriad", " \n\n\n\n"], [" **\u2014", " \n\n", " **\u201c", " **", " myriad", "  \n\n", " **[", " **+"], [" **\u2014", " \n\n", " myriad", " **", " via", " **+", " disparate", " **\u201c"], [" \n\n", " myriad", "  \n\n", " via", " **", " \n\n\n", " rapidly", " \u2014"], [" \n\n", " myriad", "  \n\n", " **\u2014", " \n  \n", " \n\n\n", " **", " **["], [" \n\n", " \n  \n", " \u2014", " myriad", " \n\n\n", " via", " **\u2014", "  \n\n"], [" \u2014", " myriad", " via", " \n\n", " rapidly", " \n  \n", " .", " rapid"], [" \u2014", " myriad", " via", " rapidly", " \n\n", "\u2011", " .", "\u2014and"], [" .", " \u2014", " via", " myriad", " rapidly", "\u2011", " rapid", " massive"], [" \u2014", " myriad", "\u2011", "\u2014and", " sprawling", " rapidly", " via", " rapid"], [" **\u201c", " .**", " **\u2014", " myriad", " sprawling", "\u2014and", " rapid", " \u2014"], [" **\u201c", " .**", " \u2014", " **\u2014", " **\"", "\u2014and", "\u2011", " )**"], [" .**", " **\u201c", " **\u2014", " **\"", " \u2014", " concurrently", " )**", "\u2014and"], [" .**", " **\u201c", " concurrently", " \u2014", " concurrent", " )**", " **\u2014", " **\""], [" .**", " **\u201c", " concurrently", " \u2014", " data", " concurrent", "\u2011", " influx"], [" **\u201c", " influx", " .**", " concurrently", " data", "\u2011", " processing", " (\u201c"], [" data", " processing", " influx", " concurrent", " concurrently", " .**", " rapid", "\u2011"], [" processing", " influx", " concurrently", " data", " concurrent", " workflows", " simultaneous", " simultaneously"], [" processing", " influx", " data", " concurrently", " concurrent", " simultaneous", " simultaneously", " streams"], [" processing", " concurrently", " simultaneous", " concurrent", " influx", " simultaneously", " data", " feeding"], [" simultaneous", " simultaneously", " concurrently", " concurrent", " processing", " influx", " feeding", " data"], [" simultaneous", " simultaneously", " concurrently", " concurrent", " processing", " influx", " combined", " feeding"], [" simultaneous", " simultaneously", " concurrently", " concurrent", " simult", " processing", " combined", " influx"], [" simultaneously", " simultaneous", " concurrently", " concurrent", " combined", " coupled", " simult", " processing"], [" simultaneously", " simultaneous", " concurrent", " concurrently", " combined", " coupled", " simult", "."], [" simultaneously", " simultaneous", " concurrently", " concurrent", " combined", " coupled", " processing", "."], [" or", "+.", " simultaneously", "++.", " simultaneous", ".", "().", "\u6216\u901a\u8fc7"], [" or", "+.", "\u6216", " \u0438\u043b\u0438", "\u6216\u901a\u8fc7", "\u6216\u76f4\u63a5", " simultaneously", " simultaneous"], [" simultaneously", " or", " simultaneous", "\u540c\u65f6", "+.", " concurrently", ".", "\u540c\u6642"], ["+.", " simultaneously", " simultaneous", " or", "\u540c\u65f6", " into", "Into", " concurrently"], [" or", " simultaneous", " simultaneously", " into", "Into", "+.", " \u0438\u043b\u0438", "\u6216"], [" or", " simultaneous", " simultaneously", "+.", " concurrent", " concurrently", " into", "\u540c\u65f6"], [" or", " \u0438\u043b\u0438", "\u6216", " simultaneous", "+.", " into", "Into", " \u0623\u0648"], [" or", " \u0438\u043b\u0438", " rendering", "+.", " into", "\u6e32\u67d3", "\u6216", "/render"], [" or", " into", " rendering", " \u0438\u043b\u0438", "Into", " simultaneous", "\u6e32\u67d3", "/render"], [" or", " into", " rendering", "Into", ".", " renders", " simultaneous", "\u6e32\u67d3"], [" or", ".", " into", " rendering", " simultaneous", " +", " renders", " concurrent"], [".", " or", " into", " +", " rendering", ",", " simultaneous", " renders"], [".", " or", " into", ",", " +", " rendering", "+", " simultaneous"]], "p": [[0.0273, 0.0199, 0.0165, 0.0146, 0.0114, 0.0089, 0.0078, 0.0076], [0.0108, 0.0096, 0.009, 0.0074, 0.0066, 0.0062, 0.0058, 0.0058], [0.3233, 0.0528, 0.0133, 0.0098, 0.0092, 0.0092, 0.0086, 0.0076], [0.2427, 0.0695, 0.024, 0.0199, 0.0078, 0.0073, 0.0073, 0.0061], [0.1853, 0.0565, 0.044, 0.0251, 0.0152, 0.0111, 0.0098, 0.0072], [0.1251, 0.0759, 0.0432, 0.0109, 0.0097, 0.0085, 0.0075, 0.0071], [0.1278, 0.0643, 0.0533, 0.0323, 0.0285, 0.0222, 0.0196, 0.0196], [0.1714, 0.076, 0.0433, 0.0359, 0.0317, 0.0317, 0.0218, 0.017], [0.4868, 0.2952, 0.0846, 0.0331, 0.0292, 0.013, 0.0084, 0.0048], [0.0507, 0.0371, 0.0145, 0.0136, 0.012, 0.0106, 0.0106, 0.0088], [0.2321, 0.1097, 0.0403, 0.0295, 0.0168, 0.0148, 0.0148, 0.0109], [0.2564, 0.1997, 0.0648, 0.0537, 0.0238, 0.0164, 0.012, 0.0113], [0.2217, 0.1838, 0.0282, 0.0194, 0.0161, 0.0076, 0.0059, 0.0052], [0.0496, 0.0207, 0.0194, 0.0183, 0.0161, 0.0118, 0.0111, 0.0104], [0.1421, 0.0433, 0.0298, 0.0218, 0.0141, 0.0141, 0.0124, 0.011], [0.1616, 0.0921, 0.0633, 0.0219, 0.0205, 0.0193, 0.0193, 0.0125], [0.1317, 0.1237, 0.0799, 0.019, 0.0178, 0.0167, 0.0167, 0.0122], [0.1151, 0.0398, 0.0374, 0.0227, 0.0213, 0.0188, 0.0156, 0.0146], [0.0732, 0.0688, 0.057, 0.0368, 0.021, 0.0144, 0.0087, 0.0087], [0.1597, 0.0803, 0.0261, 0.023, 0.023, 0.0191, 0.0158, 0.0116], [0.2849, 0.1433, 0.1188, 0.0527, 0.0282, 0.0182, 0.0171, 0.0086], [0.1103, 0.0859, 0.0406, 0.0204, 0.0124, 0.0109, 0.0096, 0.009], [0.2113, 0.0605, 0.0252, 0.0197, 0.0144, 0.0135, 0.0135, 0.0119], [0.2378, 0.0498, 0.044, 0.0284, 0.0208, 0.0152, 0.0126, 0.0126], [0.7444, 0.1466, 0.0307, 0.0175, 0.0113, 0.005, 0.0047, 0.0027], [0.1212, 0.1069, 0.0419, 0.0326, 0.027, 0.0224, 0.0211, 0.0186], [0.0663, 0.0663, 0.0428, 0.0378, 0.0148, 0.0123, 0.0115, 0.0108], [0.5569, 0.0457, 0.0403, 0.0168, 0.0168, 0.0158, 0.0116, 0.0109], [0.3078, 0.0502, 0.0502, 0.0345, 0.0324, 0.0305, 0.0286, 0.0253], [0.093, 0.093, 0.0874, 0.0724, 0.0498, 0.0284, 0.0208, 0.0195], [0.1655, 0.0782, 0.0782, 0.0648, 0.0326, 0.0306, 0.0198, 0.0145], [0.2497, 0.0715, 0.0434, 0.0247, 0.017, 0.017, 0.016, 0.0141], [0.0823, 0.0774, 0.0414, 0.0389, 0.0303, 0.0184, 0.0152, 0.0143], [0.0657, 0.0424, 0.033, 0.0257, 0.0188, 0.0188, 0.0147, 0.0122], [0.0466, 0.032, 0.022, 0.0182, 0.0118, 0.0118, 0.0118, 0.0111], [0.1345, 0.0597, 0.0561, 0.041, 0.0362, 0.022, 0.0151, 0.0133], [0.1081, 0.0791, 0.0656, 0.0291, 0.0257, 0.0137, 0.0121, 0.0107], [0.0779, 0.0606, 0.0223, 0.0174, 0.0163, 0.0153, 0.0135, 0.0127], [0.0544, 0.0511, 0.0274, 0.0257, 0.0242, 0.0156, 0.0156, 0.0156], [0.0319, 0.0319, 0.0319, 0.0265, 0.0265, 0.0219, 0.0219, 0.0171], [0.0658, 0.0581, 0.0292, 0.0242, 0.0228, 0.0138, 0.0138, 0.013], [0.1601, 0.0912, 0.0488, 0.0459, 0.0459, 0.018, 0.0159, 0.0159], [0.1607, 0.0629, 0.0522, 0.049, 0.0433, 0.0232, 0.0204, 0.014], [0.0857, 0.0668, 0.052, 0.0488, 0.0459, 0.0405, 0.0315, 0.0217], [0.1292, 0.0834, 0.0784, 0.0736, 0.0573, 0.0447, 0.0164, 0.0164], [0.2383, 0.2383, 0.0993, 0.0877, 0.0343, 0.0184, 0.0105, 0.0072], [0.2796, 0.2467, 0.1921, 0.1165, 0.0148, 0.0139, 0.0139, 0.007], [0.3422, 0.2352, 0.2075, 0.1111, 0.0361, 0.008, 0.0059, 0.003], [0.2688, 0.2372, 0.1053, 0.082, 0.0723, 0.0283, 0.0161, 0.0098], [0.2831, 0.1946, 0.0864, 0.0593, 0.028, 0.0218, 0.0205, 0.0205], [0.2133, 0.1215, 0.0348, 0.0271, 0.0255, 0.0211, 0.0175, 0.0145], [0.7328, 0.0413, 0.0221, 0.0183, 0.0126, 0.0087, 0.0076, 0.0067], [0.3049, 0.1849, 0.1122, 0.0771, 0.053, 0.0364, 0.0235, 0.0152], [0.2801, 0.1925, 0.1323, 0.0909, 0.0356, 0.0203, 0.0139, 0.0131], [0.7015, 0.0396, 0.0396, 0.0308, 0.024, 0.0165, 0.0165, 0.0146], [0.5196, 0.0903, 0.0703, 0.0427, 0.0293, 0.0228, 0.0178, 0.0157], [0.8332, 0.0196, 0.0105, 0.0099, 0.0093, 0.0077, 0.0068, 0.0056], [0.8393, 0.0136, 0.0136, 0.0099, 0.0073, 0.0068, 0.006, 0.006], [0.8892, 0.0209, 0.0112, 0.0077, 0.0044, 0.0039, 0.0036, 0.0032], [0.8751, 0.0922, 0.0059, 0.0022, 0.002, 0.0017, 0.0012, 0.0012], [0.8267, 0.0599, 0.0466, 0.0142, 0.0049, 0.0043, 0.0034, 0.0023], [0.5452, 0.3747, 0.0575, 0.0039, 0.0025, 0.0024, 0.0012, 0.0006], [0.9811, 0.0159, 0.0015, 0.001, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {}}, {"pos": 454, "top": [[".", ",", "\u2013", " \u2013", ";", "-", "\u00a0", ":"], ["\u2013", " \u2013", ",", ".", "\u2013and", ";", ".\u2013", "\u200b"], ["\u2013", ",", ".", " \u2013", ".\u2013", ";", "\u2013and", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " pornstar", "':''", " cumshot", " \u041f\u043e\u043f\u0440\u043e"], [".@", "@", ".", " (@", ".|", "#####", "/>", ","], ["-**", "\u2026..", "-\"", "#####", "!\".", "\u9650", "\u2026.", "."], ["  \n\n", "\t  ", ".\u201d", "  \n", ".\"", "\u3002", ".\u2019", ".**"], ["  \n\n", "\t  ", "   \n\n", "   \n", "#####", "  \r\n", "  \n\n\n", "  \n"], ["  \n\n", "   \n\n", " [...]", ".", "\\.", " [\u2026]", "  \n\n\n", "[...]"], ["\\.", ",", "\u2014\"", ".|", "\u2013", "\t  ", "\\-", " \u00ad"], ["\\.", ".", ",", ".\"", ".|", " [\u2026]", "\u2013", " [...]"], [" **", " potentially", " mundane", "\u5730\u5f00\u5c55", " uncomfort", "\u8fd9\u822c", "\u8d44\u8baf\u7f51", "ily"], [" mundane", " **\u00ab", " potentially", " unfavor", ".\u00bb", " uncomfort", ".\u00ab", "\u4ea6\u6216\u662f"], [" savvy", " mundane", "\u2014even", "\u4ea6\u6216\u662f", " potentially", " akin", " pricey", " newfound"], [" savvy", " potentially", " arguably", "\u2014even", " enticing", "\u2014\"", " ostensibly", " akin"], [" myriad", " potentially", " savvy", " hefty", " akin", " touted", " requisite", " arguably"], [" savvy", " hefty", " myriad", " akin", " enticing", " potentially", " touted", "\u2013"], [" hefty", " savvy", " tweaks", ".\u00bb", "\u2013and", " tweaking", " pricey", " enticing"], ["\u2014even", " savvy", " hefty", " touted", "schn", "\u5373\u4fbf\u5982\u6b64", " mundane", " tweaks"], ["\u2014even", "\u5373\u4fbf", " myriad", " burgeoning", "\u2014or", " swiftly", " hefty", " seemingly"], ["<|endoftext|>", "\u5373\u4fbf", " swiftly", " burgeoning", " myriad", "\u2014even", " seemingly", "<|file_sep|>"], ["\u76f8\u5173\u884c\u4e1a", "\u751a\u81f3\u4e8e", "schn", " mundane", "\u305d\u3046\u3044\u3063\u305f", "sprecher", "\u751a\u81f3\u4f1a", "\u751a\u81f3\u662f"], ["\u751a\u81f3\u4e8e", " mundane", " burgeoning", " myriad", "\u305d\u3046\u3057\u305f", " swiftly", "\u4ea6\u6216\u662f", " disastr"], ["<|endoftext|>", " myriad", " seemingly", " swiftly", " ensuing", " burgeoning", " mundane", " disastr"], [" \r\n\r\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "\u5373\u4fbf", "\t\n\n", "  \r\n\r\n"], [" \r\n\r\n", " **\u2014", " \n\n", "\u5373\u4fbf", "  \n\n", "   \n\n", "\r\n\r\n", " \r\n"], [" \n\n", " \r\n\r\n", "\r\n\r\n", "  \n\n", "\n\n", "   \n\n", "\t\n\n", "\u5373\u4fbf"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "<|endoftext|>", " seemingly"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", " .**", " sprawling", " \r\n", " mundane"], [" \n\n", "  \n\n", " \n  \n", " \r\n\r\n", " complex", " .**", "   \n\n", " \u2014"], [" \n\n", "  \n\n", " complex", " .", " critical", " \u2014", " .**", " heavily"], [" complex", " \n\n", " .", " critical", " \u2014", "  \n\n", " heavily", " .**"], [" complex", " critical", " heavily", " .**", " heavy", " massive", " .", " intense"], [" complex", "\u2014even", " intricate", " chaotic", " upgrades", " intense", " tactical", " sprawling"], [" **\u201c", " complex", " .**", " intricate", " **", " tactical", " intense", " sprawling"], [" complex", " tactical", "complex", "\u2011", " intricate", " **\u201c", " rapid", " deployment"], [" complex", " gaming", " tactical", "complex", " computational", " rapid", " animations", " intricate"], [" complex", " gaming", " animations", " tactical", " gameplay", "complex", " simulations", " cinematic"], [" complex", " gaming", "complex", " animations", " gameplay", " intricate", " complexity", " graphics"], [" complex", " animations", " graphics", " animation", " cinematic", " gaming", " artistic", " gameplay"], [" animations", " complex", " graphics", " animation", " artistic", " gaming", " architectural", " cinematic"], [" animations", " animation", " graphics", " complex", " architectural", " processing", " gaming", " computational"], [" animations", " animation", " complex", " graphics", " processing", " gameplay", " manipulation", " gaming"], [" animations", " animation", " complex", " processing", " graphics", " manipulation", " computational", " gameplay"], [" animations", " animation", " complex", " processing", " manipulation", " fragmentation", " graphics", " simulations"], [" animations", " animation", " manipulation", " processing", " complex", " graphics", " gameplay", " routines"], [" animations", " manipulation", " workflows", " animation", " processing", " fragmentation", " graphics", " gameplay"], [" animations", " manipulation", " animation", " gameplay", " processing", " graphics", " routines", " workflows"], [" animations", " processing", " manipulation", " gameplay", " animation", " fragmentation", " debris", " graphics"], [" animations", " gameplay", "-heavy", " processing", " graphics", " fragmentation", " manipulation", " caching"], [" animations", " fragmentation", "\u6570\u636e\u5904\u7406", " gameplay", "-heavy", "\u56fe\u50cf\u5904\u7406", " batching", "Animating"], [" animations", "\u6570\u636e\u5904\u7406", " iterative", " caching", " graphics", " animation", " visualization", " cleanup"], [" shader", " animations", " gameplay", " caching", " GPU", " graphics", "\u6570\u636e\u5904\u7406", " visualization"], [" shader", " animations", " GPU", " gameplay", " graphics", " cleanup", " iterative", " shaders"], [" shader", " garbage", " GPU", " allocations", " animations", " graphics", " shaders", "alloc"], [" shader", " GPU", " graphics", " rendering", " shaders", " garbage", " allocations", " renderer"], [" shader", " rendering", " GPU", " graphics", " renderer", " garbage", " shaders", " texture"], [" shader", " rendering", " renderer", " GPU", " shaders", " texture", " render", " Rendering"], [" shader", " GPU", " rendering", " renderer", " geometry", " texture", " mesh", " vertex"], [" shader", " plugin", " geometry", " rendering", " scene", " renderer", " particle", " render"], [" scene", " shader", " plugin", " geometry", " GPU", " particle", " mesh", " frame"], [" scene", " plugin", " shader", " geometry", " mesh", " particle", " frame", " vertex"], [" scene", " plugin", " geometry", " shader", " frame", " mesh", " object", " particle"]], "p": [[0.5831, 0.3121, 0.0789, 0.0176, 0.005, 0.0004, 0.0004, 0.0003], [0.5516, 0.216, 0.0482, 0.0453, 0.0167, 0.0089, 0.0069, 0.0023], [0.5873, 0.1907, 0.1907, 0.0084, 0.0074, 0.004, 0.0026, 0.0023], [0.0205, 0.0117, 0.0097, 0.0071, 0.0052, 0.0043, 0.004, 0.0038], [0.0859, 0.0669, 0.0316, 0.0132, 0.0124, 0.009, 0.0085, 0.008], [0.008, 0.0046, 0.0046, 0.0043, 0.0036, 0.0028, 0.0028, 0.0028], [0.1073, 0.0947, 0.0255, 0.0255, 0.0175, 0.0155, 0.012, 0.0113], [0.1008, 0.0447, 0.0271, 0.0239, 0.0175, 0.0106, 0.01, 0.0094], [0.6019, 0.0464, 0.0264, 0.0219, 0.0206, 0.0171, 0.016, 0.0151], [0.0461, 0.0192, 0.0169, 0.0124, 0.0116, 0.0075, 0.0066, 0.0055], [0.1201, 0.0995, 0.0643, 0.0442, 0.039, 0.0304, 0.0268, 0.0236], [0.0045, 0.004, 0.0037, 0.0027, 0.0027, 0.0024, 0.0021, 0.0021], [0.0037, 0.003, 0.0028, 0.0027, 0.0021, 0.0018, 0.0017, 0.0017], [0.0065, 0.005, 0.0027, 0.0024, 0.0024, 0.002, 0.002, 0.0017], [0.0083, 0.0078, 0.0069, 0.0061, 0.0051, 0.0051, 0.0051, 0.0047], [0.0204, 0.0169, 0.014, 0.0132, 0.0132, 0.0116, 0.0103, 0.0103], [0.018, 0.0159, 0.0116, 0.0103, 0.0085, 0.0085, 0.0071, 0.0066], [0.0079, 0.0058, 0.0048, 0.0033, 0.0027, 0.0026, 0.0024, 0.0023], [0.0076, 0.0059, 0.0055, 0.0034, 0.0026, 0.0026, 0.0023, 0.0022], [0.0072, 0.0049, 0.0041, 0.0038, 0.0025, 0.0022, 0.0022, 0.0018], [0.4743, 0.0021, 0.0018, 0.0018, 0.0017, 0.001, 0.001, 0.0009], [0.0026, 0.0017, 0.0012, 0.0012, 0.0009, 0.0009, 0.0009, 0.0009], [0.0025, 0.0025, 0.0015, 0.0013, 0.0013, 0.0013, 0.0012, 0.0011], [0.0238, 0.0036, 0.003, 0.003, 0.0021, 0.0021, 0.0017, 0.0016], [0.0494, 0.0494, 0.0233, 0.0086, 0.0086, 0.0041, 0.0036, 0.0022], [0.0161, 0.0036, 0.0032, 0.0023, 0.0018, 0.0014, 0.0014, 0.001], [0.0875, 0.0499, 0.0172, 0.0162, 0.006, 0.0053, 0.0023, 0.0022], [0.4255, 0.0949, 0.0477, 0.0349, 0.0121, 0.0078, 0.0031, 0.0024], [0.1766, 0.065, 0.0506, 0.0154, 0.0068, 0.0047, 0.0042, 0.0042], [0.1275, 0.0566, 0.0303, 0.0172, 0.0126, 0.0111, 0.0098, 0.0081], [0.125, 0.0432, 0.0262, 0.0231, 0.0116, 0.0103, 0.008, 0.008], [0.0346, 0.0305, 0.0287, 0.0163, 0.0144, 0.0127, 0.0127, 0.0088], [0.0315, 0.0149, 0.008, 0.008, 0.0058, 0.0055, 0.0055, 0.0051], [0.028, 0.0091, 0.0085, 0.0067, 0.0063, 0.0063, 0.0059, 0.0055], [0.0352, 0.0258, 0.0201, 0.0079, 0.0061, 0.0058, 0.0058, 0.0051], [0.1054, 0.0183, 0.0183, 0.0104, 0.0098, 0.0092, 0.0081, 0.0067], [0.0716, 0.0233, 0.0205, 0.016, 0.011, 0.008, 0.0075, 0.0071], [0.102, 0.0453, 0.0275, 0.0228, 0.0189, 0.0138, 0.0101, 0.0095], [0.3307, 0.0395, 0.024, 0.0225, 0.0165, 0.0137, 0.0128, 0.0094], [0.1674, 0.1225, 0.0398, 0.0291, 0.0273, 0.0257, 0.0227, 0.0176], [0.2678, 0.0985, 0.0767, 0.0677, 0.0234, 0.022, 0.0194, 0.0171], [0.3498, 0.1136, 0.0504, 0.0392, 0.0325, 0.0224, 0.0127, 0.012], [0.4015, 0.0896, 0.0398, 0.0351, 0.0241, 0.0156, 0.0129, 0.0114], [0.363, 0.0715, 0.0338, 0.0317, 0.028, 0.0159, 0.011, 0.008], [0.3013, 0.0462, 0.036, 0.0218, 0.0193, 0.0117, 0.011, 0.0103], [0.3, 0.0297, 0.0262, 0.0169, 0.0149, 0.0124, 0.0091, 0.0075], [0.2237, 0.0343, 0.0208, 0.0184, 0.0162, 0.0111, 0.0105, 0.0098], [0.2275, 0.024, 0.0155, 0.0155, 0.0145, 0.0137, 0.0113, 0.01], [0.2438, 0.0177, 0.0166, 0.0166, 0.0166, 0.0156, 0.0129, 0.0121], [0.0979, 0.0263, 0.0117, 0.0097, 0.0086, 0.008, 0.008, 0.0071], [0.0469, 0.0087, 0.0077, 0.0068, 0.0049, 0.0046, 0.0041, 0.0038], [0.105, 0.0171, 0.0133, 0.0125, 0.0125, 0.0098, 0.0086, 0.0081], [0.0525, 0.0525, 0.0193, 0.016, 0.015, 0.0141, 0.0133, 0.011], [0.1612, 0.0672, 0.036, 0.0247, 0.0181, 0.016, 0.0124, 0.0124], [0.3474, 0.047, 0.047, 0.0285, 0.0209, 0.0209, 0.0184, 0.0173], [0.4571, 0.0619, 0.0425, 0.0258, 0.0201, 0.0189, 0.0156, 0.0147], [0.5853, 0.0699, 0.0374, 0.0257, 0.0227, 0.02, 0.02, 0.0156], [0.5704, 0.1442, 0.0681, 0.0251, 0.0172, 0.0172, 0.0152, 0.0104], [0.4853, 0.0744, 0.0657, 0.0512, 0.0451, 0.0352, 0.0352, 0.0147], [0.2914, 0.1768, 0.0737, 0.065, 0.065, 0.0506, 0.0394, 0.0271], [0.336, 0.2309, 0.1798, 0.0455, 0.0276, 0.0243, 0.019, 0.0148], [0.4199, 0.327, 0.073, 0.0304, 0.0209, 0.0184, 0.0144, 0.0127], [0.552, 0.1396, 0.0747, 0.0453, 0.0353, 0.0214, 0.0189, 0.0167]], "ranks": {}}, {"pos": 455, "top": [[" \u2013", "\u2013", ".", "\u00a0\u00a0", "\u2026..", "\u2026.", "\u00a0", ","], [" \u2013", " \u2013**", "\u2013", "\u2013\u2013", "\u2013and", " \u2013,", "**\u2013", "  \n\n"], [" \u2013", "\u2013", "\u2013and", "**\u2013", "\u2026..", ".\u2013", " \u2013,", " \u2013**"], [" milfs", " Shemale", " Strec", " Blowjob", " pupper", " pornstar", " Bbw", " Hidal"], [" @_", " *@", " **#", "@g", "@$", "insip", "erez", "ersp"], ["-**", "consts", "_ctxt", "\u5178\u793c", "insip", "\u8f66", " **#", " fridge"], ["-**", " **#", "\u52a0", "\u9ad8", "\u662f", "consts", " @_", "\u8f66"], ["-**", " **#", " veggies", " **\u20ac", " *@", " @_", "consts", "Sharper"], ["athon", "\t\n\n", "VERY", "   \n\n", "       \n\n", " \r\n\r\n", "Sharper", "        \n\n"], ["Sharper", "\u2013and", "-ish", "VERY", "\u2013", "Wildcard", "Dollar", "-heavy"], ["-ish", "-tech", "#", "-heavy", "-", "(#", "-plus", "#@"], ["Sharper", " veggies", "opolitan", "isecond", "getc", "althy", "Feels", "isky"], [" veggies", "Sharper", " pornstar", "isky", "-tech", "flix", "opolitan", "getc"], ["Sharper", " veggies", "-tech", " pornstar", "getc", "Muon", "-ish", " booze"], ["-tech", "Sharper", " veggies", " pricey", " booze", " vibe", "-ish", " comfy"], [" veggies", " pricey", "-tech", " kids", "kids", " booze", " comfy", "-esque"], ["-esque", "-tech", " veggies", "-ish", " pricey", "-heavy", " booze", " tech"], ["-tech", "-esque", "-heavy", "-ish", " pricey", "kids", " booze", "-big"], ["-tech", "-esque", " booze", "-heavy", " pricey", "Sharper", "boost", "kids"], ["Sharper", "-tech", "-heavy", "-big", "\u8ddf", "-esque", ".shopping", " booze"], ["<|endoftext|>", "Though", "\u8ddf", " \r\n\r\n", "\t\n\n", "though", "-heavy", "\u2013"], ["Sharper", "uzzer", "\u76f8\u5173\u884c\u4e1a", "\u8ddf\u4eba", " booze", "-tech", "Muon", "\u8ddf\u4ed6\u4eec"], ["Sharper", "-tech", "\u8ddf\u4eba", "uzzer", " pricey", " booze", "umbing", " anyways"], ["Sharper", "\u8ddf\u4eba", " hugely", " booming", "umbing", "-heavy", "\u76f8\u5173\u884c\u4e1a", " massively"], [" \r\n\r\n", " \r\n", "\u8ddf", "Sharper", " \n\n", "-heavy", " hugely", "-esque"], [" framerate", "Sharper", "-tech", " tech", "\u9a6c\u5fb7\u91cc", " visuals", " futuristic", " gaming"], [" \r\n\r\n", " tech", "-tech", " visuals", " robotic", " gaming", " framerate", " optics"], [" \n\n", " tech", " \r\n\r\n", " massively", " complex", " hugely", " technologies", " sprawling"], [" tech", " technologies", " robotic", "-tech", " \r\n\r\n", "-heavy", " optics", " \n\n"], [" \n\n", " tech", " complex", "  \n\n", " \r\n\r\n", " technologies", " technology", "   \n\n"], [" complex", " tech", " \n\n", " technology", " technologies", " massively", " massive", " heavily"], [" complex", " technology", " massively", " tech", " heavily", " massive", " global", " rapidly"], [" complex", " @", " technology", " -", " heavily", " tech", " massively", " re"], [" tech", "  \n\n", " \r\n\r\n", " \n\n", "  \r\n\r\n", " technologies", " **", " technology"], ["<|endoftext|>", " \r\n\r\n", "  \n\n", " \n\n", "  \r\n\r\n", " tech", "...**", " leveraging"], ["<|endoftext|>", "  \n\n", " \n\n", " \r\n\r\n", "   \n\n", " tech", "  \r\n\r\n", " leveraging"], ["  \n\n", " \n\n", " \r\n\r\n", "   \n\n", " leveraging", " tech", "\u2026**", "  \r\n\r\n"], [" leveraging", " tech", "<|endoftext|>", " \r\n\r\n", "  \n\n", " workflows", " \n\n", " hacker"], ["<|endoftext|>", " leveraging", " tech", "  \n\n", "\u2026**", " \r\n\r\n", " workflows", " \n\n"], ["\u2026**", "<|endoftext|>", " tech", " hacker", "...**", "  \n\n", " modular", " leveraging"], [" tech", " hacker", "<|endoftext|>", "  \n\n", " customizable", " modular", " automation", " software"], [" hacker", " modular", "  \n\n", " customizable", " tech", " workflows", " leveraging", " scripting"], [" hacker", " customizable", " modular", " workflows", " hackers", " tech", " automation", " scripting"], [" hacker", " customizable", " automation", " workflows", " tech", " modular", " hackers", "  \n\n"], [" hacker", " modular", " tech", " automation", " customizable", " workflows", " hackers", " automate"], [" modular", " hacker", " automation", " tech", " workflows", " hackers", " leveraging", " flexibility"], [" modular", " hacker", " workflows", " tech", " automation", " integration", " leveraging", " programm"], [" workflows", " hacker", " modular", " loophole", " tech", " integration", " workflow", "cheap"], ["-**", " **", " workflows", " hacker", " **'", " **\"", " simplistic", "cheap"], [" workflows", "-**", "/**/*.", "-heavy", " modular", " automate", " lightweight", "-Fi"], [" workflows", "\u590d\u6742", "\u590d\u6742\u7684", " complex", "-heavy", "Complex", " modular", "complex"], ["Complex", " workflows", "\u590d\u6742\u7684", "\u590d\u6742", " animations", " complexity", " complex", " intricate"], ["-intensive", "\u590d\u6742", "Complex", " animations", " caching", " complex", "\u590d\u6742\u7684", " shader"], [" caching", " shader", " animations", " GPU", " visuals", " visualization", "-render", " pixel"], [" shader", " GPU", "\u590d\u6742", " animations", "-render", " visualization", " OpenGL", " JIT"], [" shader", " GPU", "-render", " renderer", "\u6e32\u67d3", " OpenGL", " WebGL", " graphics"], [" shader", " rendering", "\u6e32\u67d3", " renderer", " GPU", "-render", " WebGL", " render"], [" shader", " GPU", " renderer", " rendering", " texture", " geometry", " WebGL", " textures"], [" shader", " GPU", "-frame", "\u5e27", " mesh", " geometry", " texture", " frame"], ["3", " frame", " shader", " scene", "-frame", "\u5e27", " GPU", " geometry"], [" scene", " frame", " shader", " GPU", " geometry", "3", "-frame", " rendering"], ["3", " scene", " frame", " mesh", " shader", " geometry", " plugin", " Scene"], ["3", "4", "2", "6", "1", "5", "8", "7"]], "p": [[0.7323, 0.0822, 0.0772, 0.0195, 0.0183, 0.0118, 0.0036, 0.0036], [0.1591, 0.0139, 0.0123, 0.0123, 0.0108, 0.0048, 0.0033, 0.0024], [0.5217, 0.2464, 0.0402, 0.0313, 0.026, 0.0215, 0.0115, 0.0084], [0.0175, 0.0064, 0.0047, 0.0042, 0.003, 0.0029, 0.0027, 0.0025], [0.0204, 0.0124, 0.0055, 0.0038, 0.0024, 0.0024, 0.0023, 0.002], [0.0035, 0.0029, 0.0023, 0.002, 0.0019, 0.0019, 0.0018, 0.0015], [0.0213, 0.0065, 0.0057, 0.0054, 0.0037, 0.0029, 0.0029, 0.0025], [0.0054, 0.0045, 0.0033, 0.0033, 0.0031, 0.0031, 0.0026, 0.0021], [0.0123, 0.007, 0.0051, 0.004, 0.0038, 0.0029, 0.0029, 0.0029], [0.0024, 0.002, 0.0019, 0.0017, 0.0016, 0.0013, 0.001, 0.001], [0.0142, 0.0081, 0.0076, 0.0059, 0.0056, 0.0032, 0.0032, 0.0026], [0.0092, 0.0038, 0.0026, 0.0017, 0.0014, 0.0012, 0.0012, 0.0012], [0.0049, 0.0043, 0.0025, 0.0016, 0.0014, 0.0012, 0.0011, 0.0011], [0.0055, 0.0046, 0.0019, 0.0018, 0.0012, 0.0011, 0.0011, 0.001], [0.0059, 0.0049, 0.0034, 0.0025, 0.002, 0.0017, 0.0014, 0.0014], [0.0104, 0.0081, 0.0081, 0.0043, 0.0036, 0.0034, 0.003, 0.0025], [0.0173, 0.0111, 0.0077, 0.0068, 0.0056, 0.0049, 0.0044, 0.0036], [0.0263, 0.0091, 0.008, 0.0052, 0.0024, 0.0022, 0.0022, 0.0022], [0.0157, 0.0045, 0.0037, 0.0024, 0.0018, 0.0017, 0.0017, 0.0016], [0.0013, 0.0011, 0.0011, 0.001, 0.0009, 0.0009, 0.0008, 0.0008], [0.0048, 0.0029, 0.002, 0.002, 0.0013, 0.0011, 0.001, 0.0007], [0.0026, 0.0009, 0.0009, 0.0009, 0.0008, 0.0008, 0.0007, 0.0007], [0.0029, 0.0012, 0.0011, 0.001, 0.001, 0.0009, 0.0008, 0.0008], [0.0012, 0.0011, 0.001, 0.0007, 0.0006, 0.0006, 0.0006, 0.0006], [0.0181, 0.002, 0.0019, 0.0015, 0.0015, 0.0015, 0.0013, 0.0012], [0.0033, 0.0031, 0.0024, 0.0015, 0.0013, 0.0012, 0.001, 0.001], [0.0066, 0.0048, 0.0023, 0.0022, 0.002, 0.0019, 0.0018, 0.0015], [0.0269, 0.0223, 0.0112, 0.0077, 0.0064, 0.0056, 0.0041, 0.0039], [0.0658, 0.0122, 0.0095, 0.0089, 0.0079, 0.0074, 0.0074, 0.0051], [0.1474, 0.0951, 0.0309, 0.0309, 0.0226, 0.0212, 0.0176, 0.0088], [0.1115, 0.0984, 0.0561, 0.0495, 0.0182, 0.0104, 0.0092, 0.0086], [0.0797, 0.0293, 0.0189, 0.0189, 0.0167, 0.0101, 0.0084, 0.0079], [0.0603, 0.0285, 0.0268, 0.0184, 0.0126, 0.0112, 0.0082, 0.0082], [0.1249, 0.0914, 0.059, 0.0297, 0.0279, 0.0279, 0.0231, 0.0231], [0.1786, 0.0956, 0.0617, 0.0424, 0.0274, 0.0242, 0.0166, 0.0147], [0.2654, 0.2067, 0.1942, 0.0298, 0.0192, 0.008, 0.0071, 0.0043], [0.1815, 0.0972, 0.0296, 0.0231, 0.014, 0.0124, 0.0096, 0.009], [0.0355, 0.0229, 0.0157, 0.0123, 0.0123, 0.0123, 0.009, 0.0079], [0.055, 0.0378, 0.0229, 0.0158, 0.0115, 0.0115, 0.009, 0.0079], [0.0786, 0.0289, 0.0289, 0.0255, 0.0255, 0.0165, 0.0155, 0.0145], [0.0738, 0.0447, 0.042, 0.0289, 0.0186, 0.0186, 0.0165, 0.0145], [0.0564, 0.0564, 0.0498, 0.0413, 0.0302, 0.0221, 0.0172, 0.0162], [0.1365, 0.0606, 0.0472, 0.0345, 0.0286, 0.0223, 0.0209, 0.0119], [0.0955, 0.0398, 0.0374, 0.0274, 0.0257, 0.0242, 0.02, 0.0166], [0.108, 0.0841, 0.0543, 0.0329, 0.0156, 0.0146, 0.0146, 0.0114], [0.111, 0.0921, 0.0281, 0.0281, 0.0264, 0.0125, 0.0086, 0.0086], [0.0631, 0.036, 0.0338, 0.0298, 0.0218, 0.0181, 0.0117, 0.0085], [0.0265, 0.0249, 0.0092, 0.0086, 0.0081, 0.0071, 0.0059, 0.0052], [0.0322, 0.0322, 0.0173, 0.0152, 0.0111, 0.0105, 0.006, 0.006], [0.0968, 0.0079, 0.0058, 0.004, 0.0038, 0.0038, 0.0033, 0.0031], [0.0797, 0.0178, 0.0147, 0.0089, 0.0079, 0.0074, 0.0065, 0.0058], [0.0187, 0.0187, 0.0137, 0.0137, 0.0121, 0.0114, 0.0107, 0.0094], [0.028, 0.017, 0.015, 0.0141, 0.0124, 0.0124, 0.0103, 0.0103], [0.0162, 0.0162, 0.0152, 0.0152, 0.0105, 0.0098, 0.0092, 0.0077], [0.0445, 0.0326, 0.0174, 0.0154, 0.0144, 0.0136, 0.0136, 0.0127], [0.0927, 0.0466, 0.0386, 0.0363, 0.0283, 0.022, 0.0207, 0.0207], [0.1455, 0.1, 0.0882, 0.0779, 0.0444, 0.0444, 0.0417, 0.0417], [0.2876, 0.0603, 0.0414, 0.0389, 0.0389, 0.0285, 0.0236, 0.0222], [0.2406, 0.0734, 0.0571, 0.0474, 0.0418, 0.0418, 0.0347, 0.0287], [0.2926, 0.095, 0.0695, 0.0653, 0.0478, 0.0449, 0.0372, 0.0372], [0.2152, 0.1016, 0.0656, 0.0451, 0.0374, 0.0351, 0.0274, 0.0257], [0.7155, 0.0708, 0.0261, 0.014, 0.0116, 0.0102, 0.0102, 0.0075], [0.9994, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 456, "top": [[" \u2013", ".", "\u2013", "y", "\u2026..", ",", "er", "s"], [" Strec", " Geile", "  \n", "\u2013\u2013", "\u30e3\u30f3", " \u2013**", " \u2013", "  \r\n"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "**\u2013", "\u2026..", ".", "\u2013\u2013"], [" milfs", " Geile", " Strec", " Shemale", "erias", " Blowjob", " \u041a\u0440\u0430\u0441\u0438", " pornstar"], [" ***", "kits", " Geile", " \u041a\u0440\u0430\u0441\u0438", "erweise", "erias", "iern", " *\u2013"], ["-CS", "kits", " ***", " Geile", " veggies", "-**", "fst", " Vegas"], ["s", " ***", "er", "***", "  \n", "rd", "y", "es"], ["er", " ***", " veggies", "ner", "-CS", " Geile", "s", "rd"], ["er", "  \n", "\u00ad", "......", "s", "rd", "y", "..."], ["\u00ad", "\u2013", "er", " \u00ad", ",", "rd", "\u2026", "s"], ["...", "er", "-", "\u00ad", "...\\", "y", "......", "\\n"], [" veggies", "er", "orama", "ics", "illion", "ball", "-ish", "stuff"], [" veggies", "er", "orama", "ball", "illion", "ics", "-themed", "ware"], [" veggies", "-themed", "er", "orama", "ball", " vibes", " vibe", "ware"], ["er", "y", " kids", " tech", "-tech", "an", "stuff", " vibe"], [" kids", " tech", "kids", " veggies", " vibe", "kits", "-tech", " visuals"], ["s", "y", "er", "o", "n", "an", " tech", "es"], ["-tech", "kits", " tech", "ball", " vibe", "y", "kids", " veggies"], ["s", "-tech", "y", "kids", "ball", "kits", "orama", "ware"], ["orama", "ahead", "kids", "-tech", "ball", "ware", "zinho", "stuff"], ["y", "ahead", "world", "ware", "orama", "TV", "kids", "ball"], ["orama", " Teixe", "kits", "-tech", " pornstar", "zinho", "kids", "cube"], ["orama", "-tech", " gaming", "world", "ware", "kids", "cube", "ball"], ["orama", "illion", "cube", " gaming", "world", "\ufffd\ufffd", "ware", "plane"], ["orama", " visuals", "-tech", "Cube", "cube", "world", "-world", "quake"], ["orama", " visuals", " pornstar", "Cube", "cube", " gaming", " animations", "itecture"], [" visuals", "orama", " gaming", " animations", " movies", " cinematic", "Cube", " movie"], [" visuals", "orama", " gaming", " video", " movie", " movies", " visual", " tech"], [" visuals", "orama", " modeling", " architecture", " technology", " studio", " animations", " gaming"], [" ...", " ...\\", " visuals", "...", "...\\", " theater", " modeling", " architecture"], [" ...", " theater", " visuals", " technology", " architecture", " modeling", " graphics", " complex"], [" complex", " ...", " technology", " games", " theater", " tech", " studio", " video"], [" complex", " tech", " technology", " visuals", " gaming", " architecture", " theater", " modeling"], [" visuals", " tech", " gaming", " architecture", " technologies", " technology", " animations", " complex"], [" visuals", " tech", " immersive", " gaming", " visualization", " animations", " graphics", " hardware"], [" tech", " visuals", " immersive", " animations", " graphics", " gaming", " hardware", " complex"], [" animations", " visuals", " graphics", " visualization", " tech", " gaming", " immersive", " animation"], [" animations", " visuals", " graphics", " visualization", " animation", " gaming", " gameplay", " modeling"], [" animations", " visuals", " graphics", " visualization", " complex", " animation", " gaming", " gameplay"], [" animations", " visuals", " visualization", " graphics", " animation", " modeling", " visual", " complex"], [" visuals", " animations", " graphics", " visualization", " animation", " visual", " modeling", " sculpt"], [" animations", " visuals", " graphics", " visualization", " animation", " geometry", " visual", " sculpt"], [" animations", " visuals", " visualization", " graphics", " animation", " geometry", " visual", "animations"], [" animations", " visuals", " graphics", " visualization", " animation", " geometry", "animations", " simulations"], [" animations", " visuals", " visualization", " graphics", " animation", " simulations", " geometry", "animations"], [" animations", " visuals", " graphics", " visualization", " animation", " simulations", " geometry", "animations"], [" animations", " visuals", " graphics", " visualization", " animation", " simulations", " imagery", "animations"], [" animations", " visuals", " graphics", " visualization", " animation", " simulations", " imagery", "animations"], [" animations", " visuals", " graphics", " visualization", " animation", " simulations", "animations", " imagery"], [" animations", " visuals", " visualization", " graphics", "animations", " animation", " gameplay", " simulations"], [" animations", " visuals", " visualization", " graphics", " simulations", "animations", "/animations", " animation"], [" animations", " visuals", " visualization", " graphics", " animation", "animations", " optimizations", " computations"], [" animations", " visuals", " visualization", " rendering", " graphics", " shader", "\u6e32\u67d3", " textures"], [" animations", " computations", " shader", " rendering", "\u6e32\u67d3", " calculations", " visualization", " visuals"], [" rendering", " shader", "\u6e32\u67d3", " animations", " render", "-render", " renderer", " viewport"], [" rendering", " render", "\u6e32\u67d3", "-render", " Rendering", " renderer", " renders", " RENDER"], [" rendering", "\u6e32\u67d3", " render", " Rendering", "-render", " renders", " renderer", " scene"], [" rendering", " render", "\u6e32\u67d3", " renderer", " Rendering", " renders", " scene", "-render"], [" rendering", " render", " geometry", "\u6e32\u67d3", " renderer", " scene", " batching", " viewport"], [" scene", " rendering", " geometry", " Scene", " render", "scene", "Scene", " draw"], [" scene", " Scene", "scene", "Scene", " geometry", "\u573a\u666f", " rendering", " scenes"], [" scene", " Scene", "Scene", "scene", " geometry", " frame", " object", " rendering"], [" scene", "D", " Scene", " object", " geometry", "2", "0", "Scene"]], "p": [[0.4512, 0.1881, 0.1559, 0.0447, 0.0271, 0.0211, 0.0154, 0.0106], [0.0125, 0.0081, 0.0076, 0.0063, 0.0063, 0.0059, 0.0055, 0.0052], [0.3332, 0.2941, 0.2021, 0.0544, 0.0274, 0.0257, 0.0156, 0.0065], [0.0191, 0.0168, 0.0096, 0.008, 0.007, 0.0058, 0.0051, 0.0045], [0.022, 0.0142, 0.0104, 0.0098, 0.0043, 0.0034, 0.0034, 0.003], [0.0151, 0.0142, 0.0071, 0.0063, 0.0059, 0.0056, 0.0038, 0.0034], [0.2209, 0.1258, 0.1111, 0.017, 0.015, 0.0103, 0.0046, 0.004], [0.032, 0.03, 0.0282, 0.022, 0.0151, 0.0076, 0.0067, 0.0067], [0.0957, 0.0481, 0.0425, 0.0425, 0.0177, 0.0166, 0.0156, 0.013], [0.1724, 0.1429, 0.0385, 0.0281, 0.0281, 0.0264, 0.0193, 0.0171], [0.2079, 0.1619, 0.0494, 0.0436, 0.0319, 0.0281, 0.0182, 0.0171], [0.0399, 0.0177, 0.0089, 0.0079, 0.0069, 0.0069, 0.0061, 0.0054], [0.0268, 0.0222, 0.0099, 0.0099, 0.0099, 0.0064, 0.005, 0.005], [0.026, 0.0102, 0.0096, 0.0096, 0.0096, 0.007, 0.0058, 0.0054], [0.0185, 0.0135, 0.0119, 0.0105, 0.0105, 0.0099, 0.0082, 0.0082], [0.0403, 0.023, 0.0216, 0.0216, 0.0158, 0.0131, 0.0131, 0.0115], [0.0861, 0.0714, 0.0461, 0.0218, 0.0205, 0.0192, 0.0159, 0.0159], [0.0308, 0.0212, 0.0155, 0.0146, 0.0146, 0.0129, 0.0121, 0.0088], [0.0326, 0.012, 0.0112, 0.0106, 0.0106, 0.0088, 0.0077, 0.0064], [0.0106, 0.0047, 0.0041, 0.0037, 0.0037, 0.003, 0.0028, 0.0028], [0.0084, 0.0048, 0.0045, 0.0045, 0.0042, 0.0042, 0.0033, 0.0033], [0.0213, 0.0035, 0.0027, 0.0025, 0.0025, 0.0025, 0.0024, 0.002], [0.0322, 0.0046, 0.0044, 0.0036, 0.0034, 0.0032, 0.003, 0.003], [0.0122, 0.0024, 0.0021, 0.002, 0.002, 0.0017, 0.0016, 0.0016], [0.024, 0.0047, 0.0044, 0.0039, 0.0037, 0.0037, 0.003, 0.0027], [0.0365, 0.0098, 0.0092, 0.0046, 0.0038, 0.0023, 0.0022, 0.0019], [0.058, 0.0424, 0.0095, 0.0079, 0.0069, 0.0065, 0.0061, 0.0051], [0.0171, 0.0118, 0.0118, 0.0086, 0.0086, 0.0086, 0.0081, 0.0071], [0.0498, 0.0388, 0.0162, 0.0134, 0.0134, 0.0118, 0.0111, 0.0111], [0.0638, 0.0563, 0.0342, 0.0266, 0.0172, 0.0172, 0.0161, 0.0161], [0.0629, 0.0432, 0.0316, 0.0297, 0.0246, 0.0217, 0.018, 0.018], [0.0524, 0.0318, 0.028, 0.0193, 0.017, 0.017, 0.016, 0.011], [0.0529, 0.0497, 0.0266, 0.0266, 0.0134, 0.0126, 0.0111, 0.0111], [0.0838, 0.0613, 0.0176, 0.0165, 0.0155, 0.0146, 0.0137, 0.0106], [0.0939, 0.0778, 0.0209, 0.0185, 0.0127, 0.0105, 0.0099, 0.0082], [0.0501, 0.0442, 0.0222, 0.0222, 0.0173, 0.0163, 0.0153, 0.0127], [0.1439, 0.0873, 0.0321, 0.0266, 0.025, 0.0195, 0.0172, 0.0152], [0.2497, 0.1041, 0.0811, 0.0492, 0.036, 0.016, 0.016, 0.0117], [0.1962, 0.1627, 0.0927, 0.0818, 0.0363, 0.0266, 0.0183, 0.0171], [0.2766, 0.2441, 0.1018, 0.1018, 0.0481, 0.0177, 0.0138, 0.0069], [0.289, 0.2551, 0.1753, 0.1063, 0.0502, 0.0174, 0.0087, 0.006], [0.3608, 0.1931, 0.1327, 0.0912, 0.0627, 0.0123, 0.0116, 0.0096], [0.4031, 0.1904, 0.1155, 0.1019, 0.0481, 0.0107, 0.0069, 0.0058], [0.3754, 0.2277, 0.1075, 0.0739, 0.0448, 0.0106, 0.01, 0.0078], [0.4771, 0.1367, 0.0732, 0.0732, 0.0444, 0.0135, 0.0099, 0.0093], [0.6142, 0.1209, 0.0504, 0.0393, 0.0346, 0.012, 0.0068, 0.0057], [0.4535, 0.2427, 0.0542, 0.0422, 0.0199, 0.0121, 0.0078, 0.0069], [0.4807, 0.2271, 0.0651, 0.0327, 0.0186, 0.0145, 0.0061, 0.0057], [0.5656, 0.1262, 0.0596, 0.03, 0.0142, 0.0125, 0.0104, 0.0081], [0.4326, 0.1591, 0.0428, 0.0428, 0.0139, 0.0108, 0.0096, 0.0084], [0.342, 0.111, 0.0633, 0.0219, 0.0117, 0.011, 0.0086, 0.008], [0.4261, 0.029, 0.029, 0.0212, 0.0176, 0.0107, 0.0088, 0.0065], [0.2027, 0.0513, 0.0452, 0.0375, 0.0352, 0.0311, 0.0242, 0.0201], [0.1966, 0.0819, 0.0467, 0.0467, 0.0321, 0.0321, 0.0283, 0.0207], [0.1327, 0.1034, 0.0805, 0.0805, 0.0553, 0.0553, 0.0431, 0.038], [0.2773, 0.1484, 0.131, 0.09, 0.0482, 0.0425, 0.0258, 0.0201], [0.4834, 0.1385, 0.1385, 0.0397, 0.035, 0.0273, 0.0241, 0.0146], [0.5562, 0.1406, 0.0967, 0.0314, 0.0216, 0.0216, 0.019, 0.0168], [0.3558, 0.1309, 0.1155, 0.0481, 0.0292, 0.0258, 0.0227, 0.0201], [0.627, 0.0661, 0.0583, 0.0454, 0.0312, 0.0215, 0.0215, 0.0189], [0.9152, 0.0313, 0.0148, 0.0131, 0.0079, 0.0019, 0.0017, 0.001], [0.9395, 0.0221, 0.0067, 0.0063, 0.0041, 0.0023, 0.0021, 0.0015], [0.4933, 0.2189, 0.0296, 0.0278, 0.0246, 0.0246, 0.0169, 0.014]], "ranks": {}}, {"pos": 457, "top": [[".", "\u00a0", ",", " \u200b\u200b", " \u2013", "\u2013", "\u00a0\u00a0", " "], [" \u200b\u200b", "\u2013", " \u2013", ".", " ", "\u200b\u200b", "\u200b", "\u2013and"], ["\u2013", ".", " \u2013", ",", "\u2026", " \u200b\u200b", "\u2026.", "["], ["&eacute", "\u30bb\u30ec", " pornstar", "\ufffd\ufffd", " Highlander", " \u041a\u0440\u0430\u0441\u0438", "\u0902\u092c\u0930", "\u5510\u4e09"], [" \u200b\u200b", " ", " @", "&D", "&nbsp", " PD", " culture", " ND"], [" \u200b\u200b", ".", " Pro", " Star", " Hong", "&D", "\u00a0\u00a0", " "], [" \u200b\u200b", ".", " ", "-", " ......", "!", "\u200b\u200b", "..."], [" \u200b\u200b", ".", " ", "...", ",", "!", " Star", "-D"], [".", " \u200b\u200b", ",", "...", "......", "\u00a0", " [\u2026]", "...."], [",", "...", ".", "\u00a0", " [\u2026]", "\u2026.", "\u2026", "-D"], ["...", ".", "......", "&nbsp", " \u200b\u200b", " [\u2026]", "....", " [...]"], [" theater", " vision", " movies", " showcase", " complex", " kids", " visuals", " superstar"], [" theater", " vision", " complex", " movies", " artists", " technology", " \u200b\u200b", " music"], [" vision", " theater", " complex", " visuals", " music", " lifestyle", " technology", " world"], [" vision", " complex", " games", " theater", " world", " movies", " technology", " classic"], [" kids", " movies", " tech", " vision", " visuals", " complex", " showcase", " technology"], [" tech", " complex", " vision", " kids", " visuals", " movies", " games", " showcase"], [" tech", " visuals", " games", " blockbuster", " complex", " vision", " vibe", " showcase"], [" tech", " complex", " blockbuster", " drama", " games", " visuals", " vision", " theater"], [" complex", " blockbuster", " drama", " tech", " vision", " movie", " gaming", " imagery"], [" \n\n", "<|endoftext|>", " complex", " tech", " imagery", " wildly", " music", " games"], [" games", " visuals", " gaming", " gameplay", " drama", " theater", " blockbuster", " movies"], [" games", " gaming", " visuals", " gameplay", " drama", " complex", " imagery", " game"], [" complex", " games", " vision", " music", " production", " game", " drama", " movie"], [" visuals", " imagery", " complex", " architecture", " artwork", " vision", " drama", " games"], [" visuals", " architecture", " imagery", " visualization", " graphics", " artwork", " animations", " cinematic"], [" visuals", " imagery", " architecture", " artwork", " photography", " graphics", " visualization", " movies"], [" complex", " visual", " visuals", " imagery", " production", " \n\n", " architecture", " ..."], [" complex", " visuals", " architecture", " technology", " production", " technologies", " graphics", " imagery"], [" architecture", " visuals", " complex", " ...", " technology", " graphics", " production", " visualization"], [" complex", " technology", " architecture", " ...", " production", " theater", " scenes", " visuals"], [" ...", " complex", " technology", " production", " architecture", " theater", " games", " scenes"], [" complex", " ...", " technology", " production", " architecture", " visuals", " development", " equipment"], [" complex", " visuals", " technology", " architecture", " technologies", " tech", " graphics", " deployment"], [" complex", " visuals", " visualization", " tech", " hardware", " deployment", " architecture", " graphics"], [" complex", " ...", " [...]", " graphics", " ......", " animations", " hardware", " visuals"], [" complex", " animations", " graphics", " visuals", " animation", " visualization", " simulations", " simulation"], [" complex", " animations", " graphics", " visuals", " visualization", " animation", " simulation", " simulations"], [" complex", " animations", " graphics", " visualization", " visuals", " visual", " animation", " architecture"], [" complex", " animations", " graphics", " animation", " visuals", " visualization", " architecture", " sculpt"], [" animations", " graphics", " animation", " complex", " visuals", " visualization", " sculpt", " architecture"], [" animations", " animation", " sculpt", " complex", " graphics", " architecture", " visualization", " architectural"], [" animations", " graphics", " animation", " complex", " visualization", " debris", " visuals", " sculpt"], [" animations", " animation", " graphics", " debris", " complex", " visualization", " visuals", " architecture"], [" animations", " animation", " debris", " production", " graphics", " complex", " fragmentation", " arrays"], [" animations", " animation", " debris", " creation", " graphics", " arrays", " production", " construction"], [" animations", " debris", " animation", " arrays", " creation", " visuals", " projectiles", " graphics"], [" animations", " debris", " arrays", " visuals", " animation", " creation", " graphics", " projectiles"], [" animations", " debris", " projectiles", " fragmentation", " animation", " creation", " graphics", " visuals"], [" animations", " visuals", " projectiles", " workflows", " debris", " fragmentation", " graphics", " animation"], [" animations", " workflows", " fragmentation", " visuals", "animations", " projectiles", " visualization", " batching"], [" animations", " updates", " animation", "animations", " graphics", " visuals", " visualization", " workflows"], [" animations", " shader", " visuals", " animation", " updates", " visualization", " graphics", " gameplay"], [" animations", " shader", " processing", " computations", " rendering", " visualization", " visuals", " animation"], [" shader", " animations", " rendering", " textures", "-render", " render", " allocations", " renderer"], [" rendering", " shader", " render", "\u6e32\u67d3", "-render", " renderer", " renders", " animations"], [" rendering", " render", " shader", "\u6e32\u67d3", " scene", " renders", " Rendering", " renderer"], [" rendering", " render", " shader", "\u6e32\u67d3", " renderer", " geometry", " renders", " scene"], [" geometry", " rendering", " mesh", " batching", " render", " meshes", " scene", " vertex"], [" scene", " geometry", " rendering", " draw", " mesh", " Scene", " render", " asset"], [" scene", " geometry", " Scene", "scene", " mesh", " asset", "Scene", " frame"], [" scene", " geometry", " Scene", " mesh", " object", " frame", " asset", " vertex"], [" scene", " object", " geometry", " frame", " asset", " mesh", " entity", " vertex"]], "p": [[0.8355, 0.0367, 0.0209, 0.0185, 0.0119, 0.0105, 0.0093, 0.0072], [0.1276, 0.1058, 0.0642, 0.0642, 0.0184, 0.0173, 0.0135, 0.0092], [0.4023, 0.244, 0.1017, 0.0792, 0.031, 0.0274, 0.0121, 0.0101], [0.0014, 0.0013, 0.0013, 0.0011, 0.0009, 0.0009, 0.0008, 0.0008], [0.0558, 0.015, 0.0097, 0.008, 0.0059, 0.0049, 0.004, 0.0033], [0.3408, 0.0023, 0.0019, 0.0018, 0.0016, 0.0015, 0.0014, 0.0013], [0.4785, 0.0504, 0.0474, 0.0057, 0.0053, 0.0053, 0.0047, 0.0039], [0.1566, 0.0328, 0.0176, 0.0129, 0.0057, 0.0057, 0.0054, 0.005], [0.3858, 0.1333, 0.0976, 0.0522, 0.0247, 0.0232, 0.0117, 0.0085], [0.1475, 0.0146, 0.0094, 0.0069, 0.0065, 0.0054, 0.005, 0.0047], [0.5152, 0.0309, 0.0188, 0.0166, 0.0107, 0.01, 0.0083, 0.0083], [0.0108, 0.0089, 0.0079, 0.0074, 0.0074, 0.0074, 0.0054, 0.0051], [0.0197, 0.0119, 0.0087, 0.0056, 0.005, 0.005, 0.0047, 0.0044], [0.0207, 0.0142, 0.0104, 0.0086, 0.0059, 0.0059, 0.0056, 0.0056], [0.0198, 0.0175, 0.01, 0.0083, 0.0083, 0.0078, 0.0069, 0.006], [0.0106, 0.0099, 0.0099, 0.0099, 0.0093, 0.0088, 0.0082, 0.0077], [0.0144, 0.0135, 0.006, 0.006, 0.006, 0.0053, 0.0053, 0.005], [0.0152, 0.0134, 0.0092, 0.0077, 0.0068, 0.0064, 0.0064, 0.0064], [0.0084, 0.0084, 0.0084, 0.0075, 0.0075, 0.0066, 0.0058, 0.0055], [0.009, 0.0079, 0.0054, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029], [0.0066, 0.0055, 0.0051, 0.0023, 0.0021, 0.0019, 0.0018, 0.0018], [0.0059, 0.0046, 0.0046, 0.0043, 0.0038, 0.003, 0.0028, 0.0026], [0.0076, 0.0071, 0.0071, 0.0049, 0.0043, 0.004, 0.0038, 0.0038], [0.0121, 0.0069, 0.005, 0.0039, 0.0037, 0.0035, 0.0035, 0.0035], [0.0158, 0.0148, 0.0079, 0.0055, 0.0051, 0.0051, 0.0051, 0.0051], [0.0418, 0.021, 0.0113, 0.0088, 0.0088, 0.0088, 0.0077, 0.0073], [0.0928, 0.0321, 0.025, 0.0126, 0.0118, 0.0104, 0.0098, 0.0092], [0.0271, 0.0164, 0.0136, 0.0128, 0.012, 0.0094, 0.0083, 0.0083], [0.0321, 0.0321, 0.0283, 0.0221, 0.0152, 0.0118, 0.0118, 0.0104], [0.0465, 0.0362, 0.0362, 0.034, 0.0265, 0.0161, 0.0142, 0.0142], [0.0775, 0.0304, 0.0285, 0.0236, 0.0196, 0.0173, 0.0143, 0.0135], [0.1696, 0.0801, 0.0244, 0.019, 0.0131, 0.009, 0.0084, 0.0079], [0.1002, 0.0287, 0.0238, 0.0164, 0.0099, 0.0093, 0.0093, 0.0082], [0.1254, 0.0298, 0.0263, 0.0247, 0.0205, 0.015, 0.0117, 0.0103], [0.0996, 0.0442, 0.0252, 0.0222, 0.0173, 0.0153, 0.0153, 0.0135], [0.2149, 0.2149, 0.0257, 0.0146, 0.0107, 0.0089, 0.0083, 0.0078], [0.1317, 0.1026, 0.0516, 0.0313, 0.0229, 0.0215, 0.019, 0.0157], [0.1145, 0.1011, 0.0787, 0.0328, 0.0328, 0.029, 0.029, 0.0187], [0.4639, 0.0358, 0.0336, 0.0231, 0.0191, 0.0132, 0.0102, 0.009], [0.2663, 0.111, 0.0558, 0.0339, 0.0299, 0.0264, 0.0181, 0.017], [0.2099, 0.1273, 0.0725, 0.0601, 0.0531, 0.0468, 0.0413, 0.0322], [0.199, 0.094, 0.0607, 0.057, 0.0503, 0.0287, 0.0253, 0.0163], [0.1939, 0.0555, 0.0555, 0.0382, 0.0316, 0.0316, 0.0169, 0.015], [0.1862, 0.0534, 0.0471, 0.0286, 0.0222, 0.0184, 0.0184, 0.0127], [0.1656, 0.0419, 0.0326, 0.0211, 0.0198, 0.0154, 0.0145, 0.0145], [0.2527, 0.0413, 0.025, 0.0207, 0.0195, 0.0183, 0.0134, 0.0126], [0.2227, 0.025, 0.0221, 0.0207, 0.0172, 0.0152, 0.0134, 0.0134], [0.2742, 0.0289, 0.024, 0.0199, 0.0187, 0.0175, 0.0128, 0.012], [0.3346, 0.0258, 0.0201, 0.0157, 0.0157, 0.0147, 0.0147, 0.0138], [0.3816, 0.026, 0.0244, 0.0215, 0.0148, 0.0139, 0.0115, 0.0096], [0.2885, 0.0237, 0.0184, 0.0173, 0.0135, 0.0119, 0.0099, 0.0093], [0.4339, 0.0179, 0.0168, 0.0139, 0.0123, 0.0116, 0.0109, 0.0075], [0.2277, 0.0349, 0.0272, 0.0255, 0.024, 0.0225, 0.0212, 0.0199], [0.2526, 0.082, 0.0342, 0.0302, 0.0266, 0.0235, 0.0183, 0.0134], [0.2283, 0.1385, 0.0654, 0.0273, 0.0241, 0.0241, 0.0241, 0.0241], [0.253, 0.1055, 0.1055, 0.064, 0.0498, 0.0302, 0.0302, 0.0302], [0.4155, 0.119, 0.119, 0.0722, 0.0341, 0.0301, 0.0266, 0.0234], [0.5263, 0.1331, 0.0629, 0.0489, 0.0336, 0.0297, 0.0231, 0.018], [0.4032, 0.1155, 0.0701, 0.0701, 0.0546, 0.0177, 0.0177, 0.0156], [0.53, 0.2209, 0.0264, 0.0264, 0.0233, 0.0233, 0.0205, 0.011], [0.9318, 0.0219, 0.0171, 0.0055, 0.0034, 0.002, 0.002, 0.0016], [0.9517, 0.0154, 0.0057, 0.0044, 0.0044, 0.0034, 0.003, 0.0016], [0.8731, 0.0493, 0.0384, 0.0097, 0.0067, 0.0046, 0.0028, 0.0025]], "ranks": {}}, {"pos": 458, "top": [[" \u2013", "\u2026.", "\u00a0\u00a0", ".", "\u2026..", "\u2013", "[", ","], [" \u2013", "  \n\n", "\u2013", "\u2026..", " \u2013**", "[", "\u2026.", "\u2013and"], ["\u2026..", "\u2026.", " \u2013", "\u2013", "\u2026", "[", " \u2026.", "  \n\n"], [" **\u201e", " YYS", " rasseg", " **\u25a0", "_episode", "(Scene", " \u00bb**", " Shemale"], [" \u2019", "@", " @", " @(", " (@", " @_", ".@", "@g"], [" \u2019", "\u2026..", "\u2026.", "\u2019d", "\u2019S", "@", "\u2019e", "\u2019n"], ["\u00ae", "\ufffd", " \u2019", " \u2018", "\u2019d", "\u00bb", "\u2026..", "\u00b7"], [" \u201a", "\u00ae", "\ufffd", "(Scene", " \u2022", " \u00ae", " @", " \u201e"], ["\u00ae", "\u00b3", "\u201e", " \u201a", " \u201e", "\u00bb", "\u00b2", "!\u201d"], ["\u2022", ",", "-", "\u2026.", "\u00a0\u00a0", "\u2013", "[", "\u00b7"], ["\u2022", "\u00b7", "[", "\u00ae", "\u2026.", "-", "\ufffd", " \u2022"], ["(Scene", ".Scene", " Scene", " globe", "agle", " orchestra", " scen", "ruise"], ["(Scene", " Scene", " theater", " architectures", " orchestr", " panorama", " orchestra", " orchestrated"], [" reality", " orchestr", " globe", " realm", " dramatic", " Scene", " scene", " panorama"], [" dramatic", " gathering", " \u2019", " s", "i", " battle", " scene", " f"], [" gathering", " s", " dramatic", " battle", " reality", " impact", " \u2019", " area"], [" s", "i", " complex", " reality", " battle", " gathering", " dramatic", " impact"], [" reality", " scenes", " scene", " vibe", " architectures", " architecture", " globe", " realm"], ["agle", " Scene", " realm", " scene", "(Scene", "peare", " architectures", " dramatic"], ["(Scene", "\u8fd9\u4e00\u5e55", " scene", " dramatic", " realm", " orchestrated", " panorama", " spraw"], [" dramatic", " dramatically", " globe", " myriad", " spraw", "i", "\u513f", " gathering"], [" theater", "\u8fd9\u4e00\u5e55", "(Scene", " Scene", " scene", "vironments", " architectures", "orama"], [" scene", "\u8fd9\u4e00\u5e55", " Scene", " scenes", " theater", " architecture", " architectures", "(Scene"], [" scene", " scenes", " Scene", " events", " architecture", " dramatic", " theater", " complex"], [" scene", " scenes", " architecture", " Scene", " panorama", " dramatic", " events", " complex"], [" architecture", " architectures", " scene", " scenes", " theater", " Scene", "vironments", " panorama"], [" architecture", " architectures", " scenes", " scene", " visuals", " Scene", "vironments", " landscapes"], [" architecture", " scenes", " scene", " complex", " architectures", " landscape", " Scene", " visuals"], [" architecture", " architectures", " scenes", " scene", " theater", " Scene", " visuals", " landscapes"], [" architecture", " architectures", " scene", " scenes", " theater", " visuals", " landscapes", " landscape"], [" architecture", " scene", " scenes", " complex", " architectures", " theater", " landscape", " Scene"], [" architecture", " complex", " scene", " scenes", " theater", " architectures", " landscape", " production"], [" architecture", " complex", " scene", " scenes", " theater", " architectures", " landscape", " Scene"], [" architecture", " architectures", " complex", " scenes", " scene", " layouts", " visuals", " landscapes"], [" architectures", " architecture", " scene", " scenes", " visuals", " layouts", " landscapes", " complex"], [" scene", " complex", " scenes", " Scene", " architecture", " architectures", " complexity", " animations"], [" scene", " Scene", " animations", " scenes", " complex", " complexity", " architectures", " architecture"], [" scene", " animations", " Scene", " scenes", " visuals", " simulation", " animation", " architecture"], [" complex", " scene", " complexity", " scenes", " Scene", " animations", " architecture", " visuals"], [" scene", " scenes", " complex", " Scene", " animations", " complexity", " visuals", "Scene"], [" scene", " animations", " scenes", " Scene", " complex", " complexity", " animation", " architecture"], [" scene", " scenes", " Scene", " animations", " complex", " complexity", " architecture", " animation"], [" scene", " scenes", " complexity", " animations", " complex", " Scene", " layouts", " layout"], [" complexity", " scenes", " scene", " complex", " animations", " Scene", " layouts", " transitions"], [" complexity", " scenes", " scene", " animations", " complex", " changes", " transitions", " layouts"], [" animations", " complexity", " scenes", " changes", " transitions", " scene", " complex", " layouts"], [" changes", " transitions", " animations", " scenes", " complexity", " shifts", " layouts", " updates"], [" changes", " transitions", " scenes", " animations", " updates", " complexity", " shifts", " layouts"], [" animations", " transitions", " changes", " updates", " scenes", " complexity", " shifts", " revisions"], [" updates", " transitions", " animations", " complexity", " revisions", " changes", " shifts", " layouts"], [" updates", " animations", " transitions", " traversal", " layouts", " revisions", " complexity", " shifts"], [" updates", " transitions", " animations", "updates", "\u66f4\u65b0", "\u53d8\u66f4", " changes", " complexity"], [" updates", "\u66f4\u65b0", " transitions", " animations", " complexity", "updates", " updating", " rotations"], [" updates", " transitions", " changes", " transformations", "\u53d8\u66f4", " animations", "\u53d8\u5316", "\u66f4\u65b0"], [" updates", " complexity", " transitions", " changes", " manipulation", " animations", " transformations", " traversal"], [" updates", " traversal", " changes", " transitions", " complexity", " manipulation", " transformations", " modifications"], [" updates", " changes", " modifications", " manipulation", " traversal", " modification", " complexity", " Updates"], [" updates", " Updates", "updates", " update", " changes", "\u66f4\u65b0", " complexity", "_updates"], [" updates", " changes", " modifications", " Updates", "updates", " graph", "_updates", " complexity"], [" updates", " Updates", " graph", " update", "updates", " updating", " manipulation", "_updates"], [" updates", " graph", "updates", " manipulation", " Updates", " complexity", "_updates", " updating"], [" updates", " graph", " manipulation", " complexity", " traversal", " serialization", " changes", " Updates"], [" updates", " graph", " manipulation", " changes", " complexity", " instantiation", " Updates", "updates"]], "p": [[0.4876, 0.1794, 0.0796, 0.0582, 0.0454, 0.0332, 0.0243, 0.0201], [0.3166, 0.2466, 0.0229, 0.0168, 0.0079, 0.0051, 0.004, 0.004], [0.5566, 0.2048, 0.1322, 0.0203, 0.0123, 0.0102, 0.0066, 0.0042], [0.0178, 0.0051, 0.004, 0.004, 0.0027, 0.0026, 0.0021, 0.0021], [0.0342, 0.0266, 0.0195, 0.0183, 0.0118, 0.0111, 0.0092, 0.0086], [0.023, 0.0123, 0.0066, 0.0051, 0.0038, 0.0033, 0.0029, 0.0028], [0.0632, 0.0557, 0.0557, 0.0181, 0.016, 0.016, 0.0124, 0.0124], [0.0151, 0.0142, 0.0086, 0.0086, 0.0081, 0.0067, 0.0052, 0.0052], [0.0962, 0.0377, 0.0276, 0.0259, 0.0243, 0.0215, 0.0202, 0.0148], [0.0259, 0.0139, 0.0079, 0.0079, 0.0074, 0.0065, 0.0065, 0.0051], [0.0269, 0.0163, 0.0154, 0.0144, 0.0127, 0.0112, 0.0077, 0.0077], [0.0099, 0.0047, 0.0032, 0.0028, 0.0028, 0.0027, 0.0027, 0.0025], [0.0068, 0.0036, 0.0034, 0.0027, 0.0025, 0.0025, 0.0023, 0.0022], [0.0036, 0.0036, 0.0033, 0.0033, 0.0033, 0.0031, 0.0031, 0.0029], [0.0067, 0.0055, 0.0046, 0.004, 0.0033, 0.003, 0.003, 0.0026], [0.0076, 0.0063, 0.0049, 0.0036, 0.0032, 0.003, 0.0028, 0.0025], [0.0073, 0.0056, 0.0044, 0.0041, 0.0041, 0.0039, 0.0032, 0.0028], [0.0045, 0.0037, 0.0035, 0.0035, 0.0033, 0.0031, 0.0029, 0.0029], [0.0027, 0.0027, 0.0027, 0.0026, 0.0026, 0.0026, 0.0024, 0.0024], [0.0032, 0.0027, 0.0022, 0.0022, 0.0021, 0.0021, 0.002, 0.002], [0.0036, 0.0027, 0.0022, 0.0022, 0.0019, 0.0016, 0.0015, 0.0015], [0.0062, 0.0062, 0.0046, 0.004, 0.0038, 0.0036, 0.0026, 0.0026], [0.0076, 0.0059, 0.0059, 0.0041, 0.0036, 0.0036, 0.003, 0.0026], [0.0106, 0.0078, 0.006, 0.005, 0.0047, 0.0039, 0.0034, 0.0034], [0.0125, 0.0104, 0.0086, 0.0076, 0.0049, 0.0046, 0.0041, 0.0034], [0.048, 0.0351, 0.02, 0.0138, 0.0095, 0.0089, 0.0078, 0.0065], [0.0643, 0.047, 0.0285, 0.0285, 0.0163, 0.0119, 0.0099, 0.0087], [0.0369, 0.0326, 0.0306, 0.0174, 0.0154, 0.0106, 0.0077, 0.0057], [0.0776, 0.0643, 0.0304, 0.0268, 0.0163, 0.0135, 0.0112, 0.0099], [0.1059, 0.0824, 0.0389, 0.0323, 0.0208, 0.0135, 0.0119, 0.0112], [0.1134, 0.0646, 0.057, 0.0417, 0.0325, 0.0325, 0.0163, 0.0112], [0.0769, 0.0769, 0.0466, 0.0438, 0.025, 0.0118, 0.0104, 0.0098], [0.0957, 0.0746, 0.0452, 0.0399, 0.0258, 0.0227, 0.0122, 0.0101], [0.0853, 0.0707, 0.023, 0.023, 0.023, 0.0139, 0.0131, 0.0108], [0.0432, 0.0316, 0.0231, 0.0159, 0.014, 0.0109, 0.0096, 0.0091], [0.0692, 0.037, 0.037, 0.0271, 0.0239, 0.0198, 0.0136, 0.0088], [0.0691, 0.0327, 0.0307, 0.0288, 0.0211, 0.0154, 0.0145, 0.0145], [0.1165, 0.08, 0.0623, 0.0355, 0.0277, 0.026, 0.0179, 0.0158], [0.1365, 0.1282, 0.0606, 0.0472, 0.0416, 0.0367, 0.0253, 0.0174], [0.1812, 0.0804, 0.0755, 0.071, 0.0626, 0.0404, 0.0191, 0.0179], [0.1911, 0.1023, 0.0961, 0.0703, 0.0483, 0.0401, 0.0259, 0.0189], [0.225, 0.0938, 0.0606, 0.0502, 0.0502, 0.0472, 0.0345, 0.0144], [0.2003, 0.1377, 0.0574, 0.0506, 0.0447, 0.0447, 0.0186, 0.0128], [0.1192, 0.0872, 0.0872, 0.06, 0.0467, 0.0302, 0.0142, 0.0134], [0.1048, 0.0766, 0.0635, 0.0527, 0.0495, 0.0234, 0.0194, 0.0171], [0.087, 0.0768, 0.0721, 0.0363, 0.0341, 0.032, 0.032, 0.0265], [0.0857, 0.071, 0.0627, 0.052, 0.0459, 0.0336, 0.0296, 0.0296], [0.124, 0.0966, 0.0664, 0.0624, 0.0403, 0.0334, 0.0334, 0.0277], [0.0906, 0.08, 0.0585, 0.0516, 0.0428, 0.0355, 0.0294, 0.0244], [0.1099, 0.0804, 0.071, 0.0315, 0.0296, 0.0278, 0.0261, 0.0216], [0.1109, 0.0812, 0.0558, 0.0233, 0.0233, 0.0218, 0.0205, 0.017], [0.4777, 0.0392, 0.0223, 0.0197, 0.012, 0.012, 0.0112, 0.0112], [0.5424, 0.0287, 0.0287, 0.0198, 0.0174, 0.0099, 0.0088, 0.0068], [0.4432, 0.0989, 0.077, 0.0283, 0.025, 0.0195, 0.0172, 0.0104], [0.5787, 0.0783, 0.0419, 0.0288, 0.0254, 0.0154, 0.0145, 0.012], [0.6826, 0.056, 0.03, 0.0182, 0.0182, 0.0161, 0.0125, 0.0086], [0.8817, 0.0207, 0.0098, 0.0086, 0.0076, 0.0067, 0.0041, 0.0036], [0.9796, 0.0035, 0.0021, 0.0021, 0.0013, 0.0011, 0.0011, 0.001], [0.9694, 0.0035, 0.0031, 0.0027, 0.0024, 0.0017, 0.0015, 0.0015], [0.9928, 0.0015, 0.0012, 0.0012, 0.0009, 0.0005, 0.0004, 0.0003], [0.9932, 0.0013, 0.0009, 0.0008, 0.0008, 0.0003, 0.0003, 0.0002], [0.9721, 0.0139, 0.0027, 0.0009, 0.0009, 0.0009, 0.0008, 0.0007], [0.9662, 0.0177, 0.0025, 0.0018, 0.0014, 0.0008, 0.0007, 0.0005]], "ranks": {}}, {"pos": 459, "top": [[" \u2013", ".", "\u2013", ",", "\u00a0", " \u200b\u200b", " ", " [\u2026]"], [" \u200b\u200b", "\u2013and", " \u2013,", " \u2013**", "\u200b\u200b", "**\u2013", " \u2013", "\u2013"], ["\u2013", ".\u2013", "\u2013and", "\u2026..", " \u200b\u200b", ",", ".", "\u2026."], [" milfs", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Strec", "uluh", " creampie", " huyn"], [" \u200b\u200b", " @_", " (@", ":@", " @", ".@", "\">@", " @("], [" \u200b\u200b", "\ud83d\ude42", "\ud83d\ude09", "\ud83d\ude00", " \ud83d\ude42", " Podcast", " \u0628\u0648\u062a\u064a\u0646", "azah"], [" \u200b\u200b", "\">@", "<|im_end|>", "\ud83d\ude42", " @", " \u3011", "edly", " *@"], [" &_", " *@", "\">@", "edly", " *_", " **:", "\">&", "\u30a5"], [" \u200b\u200b", " \n\n\n", ".&", "\u00a0", " \n\n", " \n    \n", "!\u201d.", "&T"], ["\u2013and", ".&", "edly", "\u9700\u8c28\u614e", "\u6362\u4ee3", "\u00a0", ".${", " showcasing"], ["\u00a0", ".&", "\\u", " showcasing", "&nbsp", ".${", "\u2013and", " \ufffd"], [" showcasing", " impactful", " showcase", " showcased", " **", "\u6362\u4ee3", "onav", " leveraging"], [" impactful", " showcasing", "\u6362\u4ee3", " showcase", " showcased", " **", " updates", " enhancements"], [" showcasing", " impactful", " showcased", " showcase", " updates", " transitioning", " enhancements", " offline"], [" showcasing", " bolster", " ", " swiftly", " revamped", " transitioning", " updates", "\u6362\u4ee3"], [" bolster", " swiftly", " showcasing", " showcase", " revamped", " touted", " challenging", " sprawling"], [",", " bolster", " ", "\u00a0", "\u2013", " showcasing", " \u2013", "<|endoftext|>"], [" showcasing", " tweaks", " bolster", " revamped", "\u6362\u4ee3", " offline", " sprawling", " swiftly"], [" tweaks", " revamped", " touted", " offline", " online", " bolster", " showcasing", " sprawling"], [" bolster", " swiftly", " sprawling", " increasingly", " revamped", " across", "\u6362\u4ee3", "\u2014even"], ["<|endoftext|>", " swiftly", " bolster", " across", " --", " revamped", " alongside", "\u6362\u4ee3"], ["\u6362\u4ee3", " bolster", " updates", " swiftly", " revamped", " across", " sprawling", " shifting"], [" swiftly", " bolster", " across", " --", "\u6362\u4ee3", " shifting", " increasingly", " revamped"], [" across", " --", " swiftly", " ,", " over", " rapidly", " increasingly", " bolster"], [" --", " swiftly", " across", " bolster", " \n\n", " amidst", " seemingly", " ,"], [" **", " updates", " amidst", " .**", " transitioning", " bolster", " swiftly", " across"], [" **", " __", " updates", " _", " .**", " sprawling", " *__", " ___"], [" **", " _", " __", " --", " ,", " \n\n", " rapidly", " @"], [" **", " .**", " \n\n", " updates", " **.", " __", " rapidly", " **,"], [" **", " .**", " __", " .", " **.", " _", " updates", " --"], [" .", " ,", " **", " rapidly", " during", " increasingly", " over", " quickly"], [" .", " ,", " **", " rapidly", " over", " during", " quickly", " "], [" .", " **", " rapidly", " complex", " quickly", " *", " increasingly", " critical"], [" .", " rapidly", " **", " complex", " heavily", " increasingly", " critical", " quickly"], [" .", " .**", " **", ".**", " rapidly", " .\"", " tech", " critical"], [" .", " .**", " .\"", " **", ".**", " *", " .*", " rapidly"], [" .", " .**", ".**", " .\"", " rapidly", " critical", ".</", " unpredictable"], [" .**", " .", ".**", ".\u201d", " \u201c", " .\"", ".</", ".\u201c"], [" \u201c", " .**", " .", ".**", ".\u201d", " critical", " seamlessly", ".\u201c"], [".**", " .**", ".</", ".\u201c", ".\u201d", " .", " \u201c", "\u3002\u201c"], [".**", ".\u201c", ".\u201d", ".</", ".", "**.", " .**", ".["], [" synchronized", ".\u201d", " jitter", " timing", ".**", ".</", " unpredictable", " synchron"], [" synchronized", " jitter", " synchron", " syncing", " unpredictable", " critical", " timing", " seamlessly"], [" unpredictable", " critical", " jitter", " glitches", " synchron", " timing", " synchronized", " syncing"], [" unpredictable", " critical", " .", " jitter", " crucial", " synchronized", " synchron", " unpredict"], [" unpredictable", " critical", " .", " jitter", " crucial", " unpredict", " drastically", " seamlessly"], ["\u2014even", " unpredictable", " inevitably", " critical", " inevitable", " jitter", " seamlessly", " crucial"], [" unpredictable", ".**", "\u2014even", " inevitably", ".", " simultaneously", " seamlessly", " crucial"], ["\u2014even", ".", " disrupt", " causing", " disrupting", " interruptions", " simultaneously", " unpredictable"], [" Additionally", "\u2014even", "Additionally", " additionally", ".", " simultaneously", "\u4e5f\u4f1a\u5bfc\u81f4", "\u4e5f\u65e0\u6cd5"], [" Additionally", "\u2014even", "Additionally", " additionally", "\u6839\u672c\u65e0\u6cd5", "\u6b64\u5916", "\u4e5f\u65e0\u6cd5", " simultaneously"], ["Additionally", " Additionally", "\u6839\u672c\u65e0\u6cd5", "\u2014even", "\u4e5f\u65e0\u6cd5", " additionally", ".", "\u540c\u65f6\u8fd8\u8981"], [" Additionally", "Additionally", "\u2014even", "\u6839\u672c\u65e0\u6cd5", ".", "\u662f\u4e0d\u53ef\u80fd", " achieving", " simultaneously"], [" Additionally", "\u2014even", "Additionally", " achieving", ".", " simultaneously", "\u6839\u672c\u65e0\u6cd5", "\u662f\u4e0d\u53ef\u80fd"], [" achieving", " Additionally", "Additionally", "\u2014even", " Achie", " syncing", " simultaneously", "Attempting"], [" achieving", " Achie", " Additionally", "Additionally", " aiming", "\u2014even", "Attempting", "achie"], [" achieving", " Achie", " Additionally", "\u2014even", " Even", "Additionally", " hitting", " syncing"], [" achieving", " Achie", " Additionally", "\u2014even", ".", " Even", " hitting", "achie"], [" achieving", " Achie", " hitting", " Additionally", "achie", ".", "Achie", " Even"], [" hitting", " achieving", " hits", " hit", " Achie", " Hits", ".", ".hit"], [" hitting", " achieving", ".", " hit", " hits", " Achie", ".hit", " aiming"], [" hitting", ".", " achieving", " hit", " hits", " Achie", " hitt", " HIT"], [".", " hitting", ",", ".H", " achieving", " .", " Achie", " Attempt"]], "p": [[0.7385, 0.0778, 0.0535, 0.0368, 0.0324, 0.0135, 0.0119, 0.0068], [0.2833, 0.0632, 0.0383, 0.0248, 0.0233, 0.0218, 0.0205, 0.0205], [0.4222, 0.226, 0.0942, 0.0734, 0.0445, 0.027, 0.0154, 0.0099], [0.0129, 0.0101, 0.0083, 0.0061, 0.0037, 0.0037, 0.0033, 0.0031], [0.0762, 0.0218, 0.015, 0.0132, 0.0075, 0.0063, 0.0063, 0.0059], [0.0843, 0.0114, 0.0033, 0.0027, 0.0025, 0.002, 0.002, 0.002], [0.026, 0.0215, 0.0115, 0.0084, 0.0084, 0.0079, 0.0074, 0.007], [0.0108, 0.0102, 0.0058, 0.0058, 0.0045, 0.004, 0.004, 0.0031], [0.1205, 0.0569, 0.0237, 0.0209, 0.0185, 0.0119, 0.0093, 0.0093], [0.0104, 0.0043, 0.0034, 0.0032, 0.0026, 0.0025, 0.0023, 0.0023], [0.0417, 0.0325, 0.021, 0.0163, 0.0105, 0.0087, 0.0068, 0.0064], [0.0234, 0.0133, 0.0098, 0.0098, 0.0076, 0.0043, 0.0041, 0.0036], [0.0174, 0.0077, 0.0068, 0.0064, 0.0056, 0.005, 0.005, 0.0036], [0.0273, 0.0213, 0.0121, 0.01, 0.0094, 0.0073, 0.0073, 0.0069], [0.0186, 0.0106, 0.0082, 0.0073, 0.0068, 0.0064, 0.0044, 0.0041], [0.0513, 0.0331, 0.0311, 0.0061, 0.0051, 0.0051, 0.0048, 0.0042], [0.0435, 0.0264, 0.0248, 0.0219, 0.015, 0.0141, 0.0141, 0.0133], [0.0155, 0.0107, 0.01, 0.0094, 0.0065, 0.0065, 0.0061, 0.0057], [0.0121, 0.0094, 0.0074, 0.0074, 0.0069, 0.0065, 0.0061, 0.0051], [0.0156, 0.0146, 0.0069, 0.0061, 0.0057, 0.0057, 0.0051, 0.0051], [0.4981, 0.0103, 0.0076, 0.0036, 0.003, 0.0025, 0.0022, 0.0022], [0.0108, 0.0089, 0.0065, 0.0061, 0.0054, 0.0051, 0.0042, 0.0042], [0.0162, 0.0134, 0.0118, 0.0118, 0.0111, 0.0092, 0.0072, 0.0067], [0.0263, 0.0247, 0.0232, 0.0159, 0.0109, 0.0103, 0.0103, 0.0091], [0.087, 0.0234, 0.0133, 0.0111, 0.0104, 0.0086, 0.0081, 0.0059], [0.0574, 0.0136, 0.0057, 0.005, 0.0044, 0.0044, 0.0042, 0.0042], [0.2257, 0.0238, 0.0106, 0.0077, 0.0064, 0.005, 0.005, 0.005], [0.2298, 0.1484, 0.0794, 0.0352, 0.0292, 0.0228, 0.0156, 0.0147], [0.5218, 0.0158, 0.0115, 0.0108, 0.0102, 0.0096, 0.009, 0.0084], [0.4468, 0.0324, 0.0268, 0.0184, 0.0119, 0.0112, 0.0087, 0.0082], [0.4253, 0.0372, 0.0328, 0.0272, 0.0199, 0.0137, 0.0128, 0.0128], [0.5071, 0.0324, 0.0185, 0.0163, 0.0153, 0.0153, 0.0105, 0.0093], [0.5361, 0.044, 0.0172, 0.0092, 0.0087, 0.0087, 0.0063, 0.0063], [0.0925, 0.0362, 0.0171, 0.0171, 0.0151, 0.0142, 0.0133, 0.0133], [0.0981, 0.0595, 0.0125, 0.0117, 0.0103, 0.0091, 0.0081, 0.0063], [0.4073, 0.0708, 0.0295, 0.0148, 0.0109, 0.0102, 0.0079, 0.0079], [0.2303, 0.0514, 0.0293, 0.0275, 0.0115, 0.0108, 0.0084, 0.007], [0.0645, 0.0606, 0.0325, 0.0153, 0.0127, 0.0127, 0.0119, 0.0112], [0.0545, 0.0512, 0.0292, 0.0213, 0.0147, 0.0122, 0.0095, 0.0095], [0.0582, 0.0514, 0.0376, 0.0293, 0.0293, 0.0243, 0.0189, 0.0115], [0.1115, 0.0561, 0.0527, 0.0385, 0.0319, 0.022, 0.0206, 0.0194], [0.0265, 0.0249, 0.0249, 0.0194, 0.0151, 0.0151, 0.0142, 0.0133], [0.0342, 0.0283, 0.0235, 0.0207, 0.0152, 0.0152, 0.0134, 0.0111], [0.0316, 0.0297, 0.0262, 0.0149, 0.0116, 0.0102, 0.0102, 0.0096], [0.0514, 0.0453, 0.0426, 0.0167, 0.0108, 0.0089, 0.0074, 0.0074], [0.0619, 0.04, 0.013, 0.0122, 0.0115, 0.0095, 0.0095, 0.0095], [0.0463, 0.036, 0.0233, 0.0205, 0.0181, 0.015, 0.015, 0.015], [0.0321, 0.0302, 0.0266, 0.0235, 0.0221, 0.0207, 0.0172, 0.0142], [0.099, 0.0284, 0.0152, 0.0134, 0.0104, 0.0104, 0.0104, 0.0098], [0.1561, 0.0947, 0.054, 0.0476, 0.0348, 0.0186, 0.0145, 0.0145], [0.2609, 0.1793, 0.1793, 0.0178, 0.0178, 0.0157, 0.013, 0.0115], [0.2505, 0.2505, 0.0525, 0.0384, 0.0339, 0.016, 0.0133, 0.011], [0.2976, 0.2045, 0.0355, 0.0295, 0.026, 0.0179, 0.0179, 0.0158], [0.2031, 0.1486, 0.0702, 0.0514, 0.0228, 0.0189, 0.0167, 0.0147], [0.6504, 0.073, 0.0324, 0.0237, 0.0119, 0.0082, 0.0082, 0.0077], [0.7754, 0.0386, 0.0301, 0.0125, 0.0076, 0.0052, 0.0049, 0.0049], [0.646, 0.053, 0.0364, 0.025, 0.0092, 0.0092, 0.0092, 0.0081], [0.5784, 0.0538, 0.0326, 0.0254, 0.0224, 0.0145, 0.0113, 0.0106], [0.7683, 0.081, 0.0141, 0.0124, 0.0103, 0.0091, 0.0055, 0.0055], [0.9687, 0.0108, 0.0058, 0.0051, 0.0017, 0.0007, 0.0007, 0.0005], [0.8875, 0.0415, 0.0222, 0.0072, 0.0072, 0.0056, 0.001, 0.001], [0.4779, 0.4217, 0.0144, 0.0088, 0.0044, 0.003, 0.0027, 0.0024], [0.9993, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 460, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "\u00a0", "\u2026."], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", ".", ",", "\u2013\u2013"], ["\u2013", "\u2026..", " \u2013", ".", "\u2026.", "\u2013and", ",", "\u2026"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " Blowjob", "----------</", " pornstar", " ;;^"], [" **\u201c", " Millennials", "_CLI", "\u65b0\u52a0\u5761", " \u201c.", "  \n\n", " \u041a\u0440\u0430\u0441\u0438", "_intf"], ["!\u201d.", "<|quad_end|>", " **\u201c", "!:", "fst", "=\u201d", "\u6cd5\u62c9", "_ctxt"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "  \n", "\n\n", "    \n\n", "  \r\n\r\n"], ["  \n\n", "   \n\n", " \n\n", "    \n\n", "     \n\n", " \r\n\r\n", "\t\n\n", "       \n\n"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "\t\n\n", "     \n\n", "      \n\n", " \r\n\r\n"], ["\u5468\u906d", "  \n\n", "   \n\n", "  \r\n", "\u5373\u4fbf\u662f", "\u51ed\u501f\u7740", "\u5373\u4fbf", " swiftly"], ["<|endoftext|>", "  \n\n", "\u00a0", " swiftly", " arguably", " \n\n", "\u5373\u4fbf", "   \n\n"], [" **", " pricey", " swiftly", " arguably", "\u706b\u901f", "\u5468\u906d", " unpredict", " savvy"], [" swiftly", " arguably", "\u5468\u906d", " nonetheless", " pricey", "\u5373\u4fbf\u662f", "\u5373\u4fbf", " savvy"], [" swiftly", " arguably", "\u5373\u4fbf\u662f", "\u5373\u4fbf", "\u5468\u906d", " savvy", " pricey", " effortlessly"], [" swiftly", "<|endoftext|>", "  \n\n", " arguably", " \n\n", "\u5373\u4fbf", " effortlessly", " myriad"], [" swiftly", " myriad", " arguably", " sprawling", "\u5373\u4fbf", "\u5373\u4fbf\u662f", " savvy", " hefty"], ["<|endoftext|>", "  \n\n", " \n\n", "\u00a0", " arguably", " swiftly", " myriad", " [\u2026]"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", " \r\n\r\n", "\u5373\u4fbf", "\u2014even", "<|file_sep|>"], ["\u5373\u4fbf", " arguably", "\u2014even", "\u5373\u4fbf\u662f", "<|endoftext|>", " swiftly", "...**", "  \n\n"], ["<|endoftext|>", "\u5373\u4fbf", "\u2014even", " swiftly", " arguably", " \n\n", "\u5373\u4fbf\u662f", "  \n\n"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "<|file_sep|>", "   \n\n", "\u5373\u4fbf", " \r\n\r\n"], ["\u5373\u4fbf", "\u2014even", " swiftly", " arguably", "\u5373\u4fbf\u662f", " myriad", " effortlessly", " sprawling"], ["<|endoftext|>", "\u5373\u4fbf", " swiftly", "\n\n", " arguably", "\u2014even", "\r\n\r\n", " myriad"], ["<|endoftext|>", "\n\n", " swiftly", "\u5373\u4fbf", "\r\n\r\n", " arguably", " \n\n", " myriad"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "\u5373\u4fbf"], [" \n\n", "\r\n\r\n", " \r\n\r\n", "  \n\n", "\n\n", "...**", "   \n\n", "\u2026**"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", " **"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "   \n\n", "\u5373\u4fbf"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "<|endoftext|>", "\r\n\r\n", " **", "   \n\n"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", " even", " ...", "...", " ultimately"], [" \n\n", "<|endoftext|>", "\n\n", "  \n\n", " even", " ...", " **", " \u2026"], [" \n\n", " even", "  \n\n", "<|endoftext|>", "\u2014even", " arguably", " notoriously", " famously"], ["\u2014even", "<|endoftext|>", " heavily", "  \n\n", " famously", " even", " ultimately", " arguably"], ["\u2014even", "  \n\n", "<|endoftext|>", " relentless", " \n\n", " notoriously", "\u2014and", "\u2014or"], ["\u2014even", "  \n\n", "<|endoftext|>", " \n\n", " notoriously", "\u2014and", " **\u201c", "\u2011"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", "\u65e0\u6cd5\u6ee1\u8db3", " notoriously", "  \n\n", " relentless", "\u2014not", "\u5373\u4fbf"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", "\u5373\u4fbf", "\u2014and", " notoriously", "\u2011", "\u2014not", " relentless"], ["\u2014even", "\u6839\u672c\u65e0\u6cd5", " even", "\u2011", "\u5373\u4fbf", " notoriously", " **\u201c", "\u65e0\u6cd5\u6ee1\u8db3"], ["\u2014even", "\u2011", " even", "\u6839\u672c\u65e0\u6cd5", "\u5373\u4fbf", " unpredictable", "\u65e0\u6cd5\u6ee1\u8db3", " notoriously"], ["\u2014even", " even", " unpredictable", " relentless", " sluggish", "\u5373\u4fbf", "\u2011", "\u65e0\u6cd5\u6ee1\u8db3"], ["\u2014even", " \n\n", "  \n\n", " unpredictable", " even", " sluggish", " relentless", " notoriously"], ["\u2014even", " sluggish", " even", " unpredictable", " notoriously", "\u65e0\u6cd5\u6ee1\u8db3", " inherently", " aggressively"], ["\u2014even", " even", " notoriously", "\u65e0\u6cd5\u6ee1\u8db3", " inability", " unpredictable", " sluggish", " inherently"], ["\u2014even", " unpredictable", " inability", " notoriously", "\u65e0\u6cd5\u6ee1\u8db3", " inherently", " inefficient", " impossible"], ["\u2014even", "\u65e0\u6cd5\u6ee1\u8db3", " inability", " unpredictable", " even", " inherently", " impossible", "\u6839\u672c\u65e0\u6cd5"], ["  \n\n", "\u2014even", " \n\n", " inability", "\u65e0\u6cd5\u6ee1\u8db3", "\u6839\u672c\u65e0\u6cd5", " even", "   \n\n"], ["\u2014even", "  \n\n", "\u6839\u672c\u65e0\u6cd5", " \n\n", " inability", " even", "\u65e0\u6cd5\u6ee1\u8db3", "\u5373\u4fbf"], ["\u2014even", "\u65e0\u6cd5\u6ee1\u8db3", "\u6839\u672c\u65e0\u6cd5", "\u4e5f\u65e0\u6cd5", "  \n\n", " additionally", "\u5373\u4fbf", " inability"], [" additionally", " ALSO", "Additionally", " Additionally", " inoltre", "\u2014even", " \ub610\ud55c", "\u4e5f\u65e0\u6cd5"], ["Additionally", " Additionally", " additionally", " inoltre", " \ub610\ud55c", " ALSO", " zudem", "\u6b64\u5916"], [" Additionally", " ALSO", "Additionally", " additionally", " inoltre", " \ub610\ud55c", " \u0647\u0645\u0686\u0646\u06cc\u0646", "\u4e5f\u65e0\u6cd5"], [" Additionally", "Additionally", " additionally", "\u540c\u65f6", "\u6b64\u5916", "\u540c\u6642", " \ub610\ud55c", "\u540c\u65f6\u8fd8\u8981"], [" Additionally", "Additionally", " additionally", "\u540c\u65f6", "\u5373\u4fbf", "\u2014even", " ALSO", "\u6b64\u5916"], [" additionally", " Additionally", "Additionally", "\u6b64\u5916", " furthermore", "\u540c\u65f6", "\u4e0e\u6b64\u540c\u65f6", " inoltre"], [" additionally", " Additionally", "Additionally", "\u6b64\u5916", "\u540c\u65f6", " furthermore", " inoltre", " Worse"], [" Additionally", " additionally", " Even", "Additionally", " Worse", "\u540c\u65f6", " Furthermore", " achieving"], [" Additionally", " Even", " additionally", "Additionally", " achieving", " Worse", "\u6b64\u5916", " Furthermore"], [" Additionally", " Even", " achieving", " additionally", "Additionally", " Furthermore", " Worse", " Achie"], [" hitting", " Additionally", " achieving", " Even", " Achie", " additionally", " even", " Furthermore"], [" hitting", " Additionally", " Even", " achieving", " Achie", " Trying", " Furthermore", " Combined"], [" Additionally", " Even", " hitting", " Furthermore", " Achie", " achieving", " Trying", " Android"], [" Even", " Additionally", " You", " Achie", " At", " Meanwhile", " Furthermore", " On"]], "p": [[0.4619, 0.3597, 0.091, 0.0625, 0.0051, 0.0029, 0.0029, 0.0018], [0.2366, 0.0363, 0.0081, 0.0036, 0.0028, 0.0014, 0.0013, 0.0013], [0.6825, 0.1047, 0.0385, 0.0319, 0.03, 0.0265, 0.0171, 0.0125], [0.0156, 0.0089, 0.0061, 0.0057, 0.0048, 0.0045, 0.0029, 0.0027], [0.0086, 0.0019, 0.0017, 0.0017, 0.0016, 0.0016, 0.0014, 0.0013], [0.0025, 0.0022, 0.0019, 0.0012, 0.0012, 0.001, 0.001, 0.001], [0.8764, 0.056, 0.03, 0.0104, 0.0067, 0.0043, 0.002, 0.0009], [0.5385, 0.2544, 0.0729, 0.0237, 0.0093, 0.0056, 0.0053, 0.0041], [0.4273, 0.3771, 0.1387, 0.0213, 0.0078, 0.0051, 0.0035, 0.0033], [0.0027, 0.002, 0.0017, 0.0014, 0.0012, 0.0011, 0.0011, 0.0011], [0.5581, 0.0216, 0.0075, 0.0062, 0.004, 0.004, 0.0035, 0.0026], [0.0046, 0.0044, 0.0041, 0.0038, 0.0028, 0.0026, 0.0026, 0.0023], [0.0067, 0.0043, 0.0041, 0.0038, 0.003, 0.0025, 0.0022, 0.0022], [0.0138, 0.0058, 0.0048, 0.0045, 0.004, 0.0037, 0.0037, 0.0035], [0.0643, 0.0323, 0.0323, 0.0304, 0.0153, 0.0112, 0.0093, 0.0093], [0.0288, 0.0224, 0.0174, 0.012, 0.0093, 0.0088, 0.0088, 0.0073], [0.5184, 0.0482, 0.0214, 0.0189, 0.0115, 0.0108, 0.0095, 0.0084], [0.2564, 0.2263, 0.0648, 0.0393, 0.0077, 0.0073, 0.0068, 0.0047], [0.0398, 0.031, 0.0274, 0.0156, 0.0129, 0.0107, 0.0095, 0.0078], [0.5125, 0.0255, 0.0145, 0.0094, 0.0083, 0.0078, 0.0061, 0.0057], [0.997, 0.001, 0.0008, 0.0004, 0.0, 0.0, 0.0, 0.0], [0.0367, 0.0144, 0.0127, 0.0105, 0.0099, 0.0041, 0.0034, 0.0032], [0.0916, 0.0382, 0.0279, 0.0279, 0.0132, 0.0109, 0.0103, 0.0071], [0.2678, 0.0411, 0.0206, 0.0182, 0.0092, 0.0086, 0.0081, 0.0071], [0.5687, 0.2371, 0.0563, 0.0497, 0.025, 0.0098, 0.0067, 0.0025], [0.2875, 0.1446, 0.1058, 0.0824, 0.0824, 0.0152, 0.0143, 0.0082], [0.6758, 0.1936, 0.049, 0.0432, 0.0132, 0.0033, 0.0024, 0.0012], [0.7307, 0.1847, 0.0467, 0.0152, 0.0104, 0.0032, 0.0012, 0.0003], [0.5859, 0.2767, 0.0793, 0.0257, 0.0089, 0.0057, 0.0024, 0.0007], [0.7025, 0.1776, 0.0449, 0.01, 0.01, 0.01, 0.0073, 0.0047], [0.4488, 0.396, 0.0536, 0.0473, 0.012, 0.003, 0.0018, 0.0016], [0.438, 0.3011, 0.0523, 0.0523, 0.0205, 0.015, 0.0132, 0.0059], [0.1465, 0.0889, 0.0784, 0.0348, 0.0327, 0.0198, 0.0186, 0.0175], [0.0435, 0.0384, 0.0219, 0.0206, 0.0193, 0.0181, 0.017, 0.017], [0.1388, 0.033, 0.0188, 0.0101, 0.0094, 0.0078, 0.0074, 0.0074], [0.2218, 0.0816, 0.0437, 0.0206, 0.0171, 0.0142, 0.0118, 0.0086], [0.3243, 0.0321, 0.0221, 0.0183, 0.0126, 0.0081, 0.0076, 0.0067], [0.5954, 0.0124, 0.0102, 0.0096, 0.009, 0.0075, 0.007, 0.0066], [0.6293, 0.0115, 0.0102, 0.009, 0.0084, 0.0084, 0.0079, 0.007], [0.624, 0.0188, 0.0095, 0.0089, 0.0089, 0.0069, 0.0065, 0.0054], [0.4393, 0.0299, 0.0141, 0.0141, 0.0103, 0.0086, 0.008, 0.0076], [0.4631, 0.0357, 0.0245, 0.0149, 0.0123, 0.0123, 0.008, 0.0066], [0.2705, 0.0236, 0.0209, 0.0209, 0.0143, 0.0135, 0.0127, 0.0112], [0.3267, 0.0323, 0.0268, 0.0237, 0.0222, 0.0209, 0.0173, 0.0163], [0.0624, 0.0457, 0.0379, 0.0295, 0.0295, 0.0295, 0.0216, 0.0203], [0.1048, 0.0527, 0.0527, 0.0495, 0.0362, 0.0265, 0.0234, 0.0182], [0.5444, 0.2269, 0.0394, 0.0113, 0.0106, 0.0094, 0.0064, 0.0057], [0.6042, 0.1731, 0.0161, 0.0151, 0.0133, 0.0125, 0.0118, 0.0052], [0.5274, 0.0556, 0.0461, 0.0382, 0.0317, 0.0247, 0.0232, 0.0159], [0.2051, 0.1597, 0.1098, 0.0969, 0.0755, 0.0458, 0.0404, 0.0404], [0.2061, 0.1416, 0.1103, 0.0973, 0.0758, 0.059, 0.0406, 0.0406], [0.2782, 0.1912, 0.1687, 0.0903, 0.0427, 0.0427, 0.0228, 0.0202], [0.304, 0.1436, 0.1267, 0.1118, 0.0411, 0.032, 0.0283, 0.025], [0.3859, 0.0861, 0.0861, 0.0461, 0.0407, 0.0298, 0.0263, 0.0247], [0.4505, 0.2732, 0.061, 0.0326, 0.0326, 0.0326, 0.012, 0.0106], [0.4052, 0.2785, 0.0621, 0.0377, 0.0333, 0.0259, 0.0157, 0.0157], [0.615, 0.0832, 0.0832, 0.0505, 0.0186, 0.0128, 0.0128, 0.0113], [0.6158, 0.0944, 0.0833, 0.0505, 0.0211, 0.0145, 0.0113, 0.0083], [0.6312, 0.0968, 0.0854, 0.0518, 0.0277, 0.0116, 0.0102, 0.0102], [0.5939, 0.1928, 0.0626, 0.0626, 0.014, 0.0116, 0.0085, 0.0066], [0.4497, 0.2407, 0.1654, 0.0326, 0.0287, 0.0136, 0.0136, 0.0047], [0.5269, 0.1938, 0.151, 0.014, 0.014, 0.0109, 0.0091, 0.008], [0.5802, 0.2741, 0.0225, 0.0175, 0.0136, 0.0106, 0.0106, 0.01]], "ranks": {}}, {"pos": 461, "top": [[".", ",", "\u2013", " \u2013", ";", "?", ":", "ly"], [",", "ly", ".", "est", "\u00ad", "\u2013", "ably", "ally"], [",", ".", "\u2013", ";", "\u2026", ":", "?", "\u2013and"], [" Nues", "\u0103\u021b", " Guta", "izer", " \u0111\u1eb7n", "raries", "ly", "\u5386\u5386"], ["est", "ably", "ly", "ously", ",", "neighbor", "ively", "."], ["ably", "\u064b\u0627", "est", "ously", "neighbor", "\u0103\u021b", "favorite", "-gray"], ["ably", "ly", "\u064b\u0627", "est", "ement", "ings", "ish", "istic"], ["ly", "\u064b\u0627", "ably", "ement", "ously", "ively", "ishly", "ish"], ["ly", "\u064b\u0627", "ably", "ement", "ishly", "ish", "ously", "\u00ad"], ["ably", "\u00ad", "ly", "\u064b\u0627", ",", "-even", "\u00adt", "ish"], ["ably", "ly", "\u00ad", "est", "\u064b\u0627", "-even", "lv", "ish"], ["ably", "ly", "ively", "\u064b\u0627", "ement", "ish", "ously", "ishly"], ["\u064b\u0627", "ly", "ably", "ively", "ously", " savory", " savvy", "uate"], ["\u064b\u0627", "ly", " savvy", "ably", "-even", " savory", " flawless", " rumored"], ["ably", " savvy", "ly", "-even", "est", "ously", " flashy", "ement"], [" savvy", " skinny", " nuanced", "ly", " freaking", " impactful", " rumored", " sprawling"], [" savvy", "-even", "ably", " incredibly", " nuanced", " skinny", "\u064b\u0627", "even"], ["-even", " savvy", "\u2014even", " incredibly", "even", "ably", "\u064b\u0627", "\u5373\u4fbf"], ["\u2014even", "-even", " savvy", " siquiera", "\u5373\u4fbf", "\u54ea\u6015\u662f", "\u54ea\u6015", "even"], ["\u2014even", "\u5373\u4fbf", "-even", " savvy", "even", "\u54ea\u6015\u662f", "\u54ea\u6015", "though"], ["\u2014even", "-even", "\u5373\u4fbf", "even", "\u54ea\u6015", "though", " barely", " even"], ["-even", "\u2014even", "\u5373\u4fbf", " siquiera", "\u54ea\u6015\u662f", "\u54ea\u6015", " savvy", "even"], ["\u5373\u4fbf", "\u2014even", "-even", "even", "\u54ea\u6015", "though", " even", "\u54ea\u6015\u662f"], ["even", "\u5373\u4fbf", " even", "-even", "though", "\u2014even", " though", " barely"], ["\u5373\u4fbf", "\u2014even", "Though", "though", "  \n\n", "\n\n", "even", "-even"], ["\u5373\u4fbf", "\u54ea\u6015", "\u54ea\u6015\u662f", "\u2014even", "-even", "even", " siquiera", "\u5373\u4fbf\u662f"], ["\u5373\u4fbf", "-even", "\u54ea\u6015", "\u2014even", "\u54ea\u6015\u662f", "even", " even", "\u5373\u4fbf\u662f"], [" even", "\n\n", "\u5373\u4fbf", " though", "-even", "even", "\u2014even", " barely"], [" even", "\u5373\u4fbf", "even", "-even", "\u2014even", " though", "\u54ea\u6015", "though"], [" even", "\u5373\u4fbf", "even", "\u2014even", "-even", "\u54ea\u6015", "\u54ea\u6015\u662f", "\u5373\u4fbf\u662f"], [" even", "even", "-even", "\u5373\u4fbf", " barely", "\u2014even", "\u54ea\u6015", " dozens"], [" even", "even", "\u2014even", "\u5373\u4fbf", "-even", " barely", " though", " despite"], [" even", "even", "\u5373\u4fbf", "\u2014even", "-even", "\u54ea\u6015", "\u54ea\u6015\u662f", "\u5373\u4fbf\u662f"], [" even", "\u2014even", "\u5373\u4fbf", "even", "-even", "\u54ea\u6015", "\u54ea\u6015\u662f", "\u5373\u4fbf\u662f"], ["\u5373\u4fbf", "\u2014even", " even", "\u5373\u4fbf\u662f", "even", "\u54ea\u6015", "\u54ea\u6015\u662f", "-even"], ["\u5373\u4fbf", "\u2014even", "even", "\u5373\u4fbf\u662f", " even", "\u54ea\u6015", "-even", "\u54ea\u6015\u662f"], ["\u5373\u4fbf", "\u2014even", "even", "\u5373\u4fbf\u662f", "\u54ea\u6015", " even", "\u54ea\u6015\u662f", "-even"], ["\u5373\u4fbf", "\u2014even", "even", " even", "\u54ea\u6015", "\u5373\u4fbf\u662f", "-even", "\u54ea\u6015\u662f"], ["\u5373\u4fbf", "\u2014even", "even", "\u54ea\u6015", "\u5373\u4fbf\u662f", " even", "-even", "\u54ea\u6015\u662f"], ["\u5373\u4fbf", "\u2014even", "even", "\u54ea\u6015", "-even", "\u5373\u4fbf\u662f", " even", "Even"], ["\u5373\u4fbf", "even", "optimized", " optimized", "\u54ea\u6015", "-even", "Even", "\u2014even"], [" optimized", "\u5373\u4fbf", "\u2014even", "optimized", " optimizations", "even", "-even", " even"], [" optimized", "\u5373\u4fbf", "optimized", " optimizations", "\u2014even", "\u54ea\u6015", "even", "-even"], ["\u5373\u4fbf", " optimized", "optimized", "\u2014even", " optimizations", "even", "\u5373\u4fbf\u662f", "-even"], ["\u5373\u4fbf", " optimized", "\u5373\u4fbf\u662f", "optimized", "\u2014even", "even", "\u54ea\u6015", "-even"], ["\u5373\u4fbf", "\u5373\u4fbf\u662f", "\u54ea\u6015", " even", "even", "\u54ea\u6015\u662f", "-even", "\u2014even"], ["\u5373\u4fbf", "\u5373\u4fbf\u662f", "\u54ea\u6015", "even", " even", "-even", "\u5373\u4f7f\u662f", "\u5373\u4f7f"], ["\u5373\u4fbf", "\u5373\u4fbf\u662f", "optimized", " optimized", "\u54ea\u6015", "-even", "\u54ea\u6015\u662f", " Hybrid"], ["\u5373\u4fbf", "optimized", "\u5373\u4fbf\u662f", " optimized", "\u54ea\u6015\u662f", "\u54ea\u6015", "-even", "\u5982\u679c\u4f7f\u7528"], ["optimized", "\u5982\u679c\u4f7f\u7528", " optimized", "\u518d\u600e\u4e48", " Hybrid", "\u5982\u679c\u7528", " sekalipun", ".optim"], ["optimized", "\u5982\u679c\u4f7f\u7528", "\u518d\u600e\u4e48", "\u5982\u679c\u7528", "\u5373\u4fbf", " \uc544\ubb34\ub9ac", "\u5373\u4fbf\u662f", " optimized"], ["optimized", " optimized", "\u5982\u679c\u4f7f\u7528", "\u5982\u679c\u7528", "using", ".optim", " \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645", " usando"], ["optimized", " optimized", "\u5982\u679c\u4f7f\u7528", "using", " optimizations", " Optim", ".optim", " usando"], ["optimized", " optimized", "using", " using", " optimizations", " Optim", " v\u1edbi", "\u5982\u679c\u4f7f\u7528"], [" v\u1edbi", "optimized", " with", " avec", "with", " \u05e2\u05dd", " With", "With"], [" with", "with", " v\u1edbi", " avec", " With", "optimized", " dengan", "With"], [" Unity", " with", " Xamarin", "with", " With", " v\u1edbi", " Android", " dengan"], [" with", "with", " Unity", " With", " v\u1edbi", " Xamarin", " optimized", "optimized"], [" with", "with", " With", " Unity", " v\u1edbi", " Xamarin", " aggressive", " JIT"], [" with", " Unity", " With", "with", " aggressive", " Ahead", " dengan", " Harmony"], [" with", " Unity", " With", " Ahead", "with", " Xamarin", " aggressive", " Mono"], [" with", " With", " Ahead", " Unity", " aggressive", "with", " Profile", " ahead"], [" with", " Ahead", " ahead", " Unity", " A", " With", " aggressive", "with"]], "p": [[0.5067, 0.4471, 0.0112, 0.0105, 0.0025, 0.0014, 0.001, 0.0008], [0.1998, 0.1004, 0.0306, 0.0239, 0.0211, 0.0198, 0.0145, 0.0073], [0.8839, 0.1056, 0.0067, 0.0008, 0.0003, 0.0001, 0.0001, 0.0001], [0.0053, 0.0039, 0.0032, 0.0023, 0.0022, 0.0022, 0.0019, 0.0016], [0.216, 0.0659, 0.0513, 0.0147, 0.0108, 0.0101, 0.0084, 0.0074], [0.0222, 0.0173, 0.0163, 0.0143, 0.0135, 0.0099, 0.0099, 0.0068], [0.1163, 0.0906, 0.0799, 0.019, 0.0108, 0.0108, 0.0102, 0.007], [0.182, 0.0859, 0.0669, 0.0192, 0.0149, 0.0103, 0.0096, 0.0075], [0.1137, 0.0609, 0.0537, 0.0224, 0.0088, 0.0077, 0.006, 0.0053], [0.0397, 0.0329, 0.0176, 0.01, 0.0065, 0.0057, 0.005, 0.0039], [0.1015, 0.0743, 0.0544, 0.031, 0.0257, 0.0101, 0.0083, 0.0078], [0.0289, 0.0225, 0.0094, 0.0073, 0.0042, 0.0042, 0.0042, 0.0039], [0.0075, 0.0075, 0.0062, 0.0043, 0.004, 0.0033, 0.0024, 0.0023], [0.0061, 0.0051, 0.0035, 0.0033, 0.0026, 0.0023, 0.0021, 0.002], [0.0096, 0.0085, 0.0051, 0.0043, 0.0035, 0.0029, 0.0024, 0.0021], [0.0067, 0.0038, 0.0026, 0.0023, 0.002, 0.002, 0.0018, 0.0017], [0.0136, 0.0093, 0.0068, 0.0047, 0.0037, 0.0032, 0.0028, 0.0024], [0.0231, 0.0149, 0.0045, 0.0043, 0.0035, 0.0033, 0.0029, 0.0029], [0.0448, 0.0421, 0.0145, 0.01, 0.0078, 0.005, 0.0044, 0.0035], [0.044, 0.0236, 0.0195, 0.0087, 0.0072, 0.006, 0.006, 0.0046], [0.0439, 0.0342, 0.025, 0.0152, 0.0076, 0.0072, 0.0059, 0.0056], [0.0275, 0.0189, 0.013, 0.0114, 0.0089, 0.0084, 0.0069, 0.0045], [0.0489, 0.0358, 0.0358, 0.0191, 0.0159, 0.008, 0.0075, 0.007], [0.0495, 0.0362, 0.0362, 0.03, 0.0206, 0.0171, 0.0171, 0.0104], [0.1246, 0.0431, 0.0404, 0.0315, 0.0296, 0.0261, 0.0245, 0.023], [0.1108, 0.0338, 0.0218, 0.0205, 0.0181, 0.0132, 0.0067, 0.0067], [0.1091, 0.0243, 0.0202, 0.0167, 0.0139, 0.0115, 0.0095, 0.0058], [0.0913, 0.0857, 0.0405, 0.0315, 0.0262, 0.0231, 0.018, 0.0116], [0.1016, 0.0896, 0.0579, 0.0451, 0.0213, 0.0166, 0.0129, 0.0121], [0.1847, 0.163, 0.0638, 0.0497, 0.0342, 0.0266, 0.0118, 0.0081], [0.5554, 0.0334, 0.0294, 0.0168, 0.0131, 0.0131, 0.0051, 0.0051], [0.5631, 0.0462, 0.0247, 0.0232, 0.0218, 0.0103, 0.0063, 0.0049], [0.5828, 0.0696, 0.0422, 0.0422, 0.0422, 0.0083, 0.0061, 0.0061], [0.4832, 0.1778, 0.0696, 0.0478, 0.0309, 0.0129, 0.0107, 0.0094], [0.3278, 0.1133, 0.057, 0.0503, 0.0472, 0.0237, 0.021, 0.0174], [0.417, 0.185, 0.0601, 0.0413, 0.025, 0.0221, 0.0221, 0.0104], [0.4204, 0.1547, 0.0569, 0.0416, 0.0345, 0.0237, 0.0185, 0.0174], [0.2961, 0.1314, 0.1023, 0.0661, 0.0483, 0.0332, 0.0243, 0.0214], [0.4706, 0.1731, 0.0598, 0.0466, 0.0411, 0.0411, 0.0207, 0.0171], [0.3469, 0.1446, 0.1126, 0.0642, 0.0285, 0.0251, 0.0236, 0.0196], [0.3176, 0.1244, 0.0587, 0.0487, 0.0458, 0.043, 0.0356, 0.0356], [0.2022, 0.2022, 0.1574, 0.0897, 0.0511, 0.0213, 0.02, 0.0156], [0.2278, 0.1774, 0.1076, 0.0653, 0.0478, 0.0165, 0.0146, 0.0129], [0.2089, 0.2089, 0.105, 0.0466, 0.0363, 0.032, 0.0194, 0.0171], [0.3134, 0.0898, 0.0545, 0.0481, 0.0398, 0.031, 0.0291, 0.0291], [0.4692, 0.1047, 0.0597, 0.0526, 0.0385, 0.0282, 0.0249, 0.0249], [0.4803, 0.0835, 0.0737, 0.0737, 0.065, 0.0394, 0.0307, 0.0271], [0.2669, 0.0814, 0.0409, 0.0299, 0.0248, 0.0206, 0.0171, 0.0125], [0.0966, 0.0907, 0.0403, 0.0378, 0.0168, 0.0158, 0.0148, 0.0139], [0.1444, 0.0322, 0.0208, 0.0092, 0.0077, 0.0053, 0.0046, 0.0044], [0.0806, 0.0554, 0.0204, 0.0191, 0.0124, 0.0116, 0.008, 0.007], [0.3768, 0.0742, 0.051, 0.0137, 0.0114, 0.0069, 0.0065, 0.0065], [0.3467, 0.0933, 0.0162, 0.0152, 0.0119, 0.0119, 0.0087, 0.0072], [0.5353, 0.1054, 0.025, 0.0111, 0.0104, 0.0098, 0.0087, 0.0081], [0.1544, 0.1544, 0.0936, 0.0826, 0.0826, 0.0568, 0.0501, 0.0501], [0.1693, 0.1319, 0.1319, 0.0706, 0.0623, 0.0623, 0.055, 0.0485], [0.1853, 0.1273, 0.1124, 0.0531, 0.0468, 0.0468, 0.0468, 0.0302], [0.3289, 0.0832, 0.0648, 0.0572, 0.0393, 0.0393, 0.0393, 0.0306], [0.4094, 0.0913, 0.0913, 0.0297, 0.0297, 0.0297, 0.0262, 0.0246], [0.7349, 0.1447, 0.0366, 0.0285, 0.0039, 0.0036, 0.0034, 0.003], [0.8849, 0.0726, 0.0098, 0.0049, 0.0036, 0.0017, 0.0014, 0.0012], [0.9747, 0.0042, 0.0042, 0.0031, 0.0015, 0.0011, 0.001, 0.0007], [0.9876, 0.0036, 0.0016, 0.0013, 0.0007, 0.0005, 0.0005, 0.0003]], "ranks": {}}, {"pos": 462, "top": [[",", ".", ";", "\u00a0", "\u00a0\u00a0", "\u2026.", "\u2013", ":"], [",", "\u2013", ".", ";", "s", " \u2013", "\u2026.", ":"], [",", "\u2013", ".", "\u2026", "\u2026.", "\u2026..", ";", "\u2026,"], ["\ufffd\ufffd", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "endiz", "aruhi", " ;;^", "\ufffd\ufffd", " aarhus"], [",", "ed", "\u2026.", "\u2026..", "s", "ar", ".", "\u00a0\u00a0"], ["\u2026.", "\u2026..", ",", "\u00a0\u00a0", "\u2026,", "\u064b\u0627", "ed", "\u2026**"], ["\u2026.", "\u2026..", "  \n", "\u064b\u0627", ",", "\u2014\"", "\u2026\u2026", "\u00a0\u00a0"], ["\u064b\u0627", " **\"", "  \n", "\u2026..", "ness", "\u2026.", "!**", ","], ["\u2026.", "  \n\n", "\u2026..", "  \n", ",", "\u064b\u0627", ".", "...,"], [",", "\u2026.", "\u00a0\u00a0", "\u2014\"", "\u2014but", "\u2026", "\u00a0", "\u00ac"], [",", "\u2026", "\u00a0", "\u2026.", " [\u2026]", "...", "\u00a0\u00a0", "\u2014"], [" savvy", " garner", "ively", " newfound", " **\"", "\u2014or", "\u2014but", "ullan"], ["\u2026**", " impactful", " savvy", "...**", " matchups", " advancements", " newfound", " upfront"], [" impactful", " savvy", " advancements", " matchups", " newfound", " upfront", " transformative", " showcasing"], [" savvy", " showcasing", " garner", " impactful", " transitioning", " revamped", " advancements", " Philly"], [" savvy", " showcasing", " impactful", " hefty", " newfound", " advancements", " matchups", " garner"], [" savvy", " hefty", " tweaks", " ongoing", " plenty", " ample", " tweaking", " revamped"], [" hefty", " savvy", " tweaking", " tweaks", " revamped", "\u2026**", " pricey", "\u00ac"], [" hefty", " savvy", "\u2014even", "\u2014or", " tweaking", " tweaks", " burgeoning", " revamped"], [" hefty", " burgeoning", " savvy", " myriad", "\u2014even", " revamped", " tweaking", " pricey"], ["<|endoftext|>", " burgeoning", " myriad", " hefty", "  \n\n", " revamped", " nearly", " dozens"], [" savvy", " hefty", " tweaking", " burgeoning", "\u4e0d\u65ad\u63a2\u7d22", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", " groundbreaking", " revamped"], [" burgeoning", " myriad", " hefty", " savvy", " dozens", " lingering", " revamped", " tweaking"], ["<|endoftext|>", " ,", " fully", " much", " over", " long", " myriad", " nearly"], ["  \n\n", " \n\n", " tweaking", " myriad", " hefty", " revamped", " burgeoning", " arguably"], [" tweaking", " experimentation", " tweaks", " revamped", " hefty", " efforts", " savvy", " upgrades"], [" experimentation", " tweaking", " efforts", " tweaks", " revamped", " upgrades", " pricey", " bolster"], [" \n\n", "\n\n", "  \n\n", " efforts", " ,", " heavily", " experimentation", " arguably"], [" \n\n", "  \n\n", " efforts", " experimentation", " tweaking", " heavily", " tech", " technology"], [" efforts", " technology", " experimentation", " tweaks", " tech", " upgrades", " tweaking", " modern"], [" ...", " technology", " modern", " efforts", " tweaks", " upgrades", " tech", " high"], [" ...", " modern", " technology", " [...]", " efforts", " high", " strong", "..."], [" technology", " tech", " modern", " tweaks", " upgrades", " high", " efforts", " tweaking"], [" technology", " tech", " tweaks", " upgrades", " technologies", " tweaking", "\u2014but", " modular"], ["\u2026**", " tech", " tweaks", "\u2014but", " upgrades", " tweaking", "\u2026\u201d", "\u2026*"], ["\u2026**", " tweaks", "\u2026*", "\u2026\u201d", "\u2014but", " tech", " tweaking", "\u2026but"], [" tweaks", " optimizations", " optimized", "optimized", " optimization", " tech", " Kickstarter", " tweaking"], [" optimizations", " tweaks", " optimized", " optimization", "optimized", " Kickstarter", " tech", " tweaking"], [" optimizations", " optimized", " optimization", "optimized", " tweaks", " tech", " optimizing", " tweaking"], [" optimizations", " optimized", " optimization", "optimized", " tweaks", " Optimization", " Kickstarter", " optimizing"], [" optimizations", " optimized", " optimization", "optimized", " Optimization", " optimizing", "\u4f18\u5316", " technologies"], [" optimizations", " optimized", " optimization", "optimized", " optimizing", " Optimization", " Optim", " tweaks"], [" optimizations", " optimized", " optimization", "optimized", " optimizing", " Optimization", " tweaks", " Optim"], [" optimizations", " optimized", " optimization", "optimized", " optimizing", " Optimization", " tweaks", " Optim"], [" optimizations", " optimized", " optimization", "optimized", " tweaks", " optimizing", " Optimization", " algorithms"], [" optimizations", " optimized", " optimization", "optimized", " tweaks", " optimizing", " Optimization", " JIT"], [" optimizations", " optimized", "optimized", " optimization", " tweaks", " Optimization", " optimizing", " JIT"], [" optimizations", " optimized", "optimized", " optimization", " tweaks", " Optimization", " Optim", " optimizing"], [" optimizations", "optimized", " optimized", " optimization", " tweaks", " Optimization", " Optim", " JIT"], [" optimizations", "optimized", " optimized", " optimization", " tweaks", " Optimization", " Optim", " JIT"], ["optimized", " optimizations", " optimized", " optimization", "\u4f18\u5316\u7684", " Optimization", "\u4f18\u5316", " JIT"], [" optimizations", "optimized", " optimized", " optimization", " Optimization", " Optim", " JIT", "\u4f18\u5316"], [" optimizations", "optimized", " optimization", " optimized", " Optimization", " Xamarin", " JIT", " Optim"], [" optimizations", "optimized", " optimization", " Optimization", " optimized", " Optim", " Xamarin", "\u4f18\u5316\u7684"], [" optimizations", " Xamarin", " optimization", " Optimization", "optimized", " JIT", " optimized", " optimizing"], [" optimizations", " Xamarin", " JIT", " Mono", " GC", " optimization", " Optimization", " Optim"], [" GC", " Unity", " Xamarin", "GC", " Mono", "gc", " optimizations", " JIT"], [" GC", " Unity", " optimizations", " JIT", " aggressive", " Xamarin", " Optimization", " optimization"], [" Unity", " GC", " aggressive", " Xamarin", " Mono", " Ahead", " optimizations", "amarin"], [" Unity", " Ahead", " aggressive", "Ahead", " Mono", "Unity", " GC", " Xamarin"], [" Unity", " Ahead", " Profile", " profiling", "Ahead", " aggressive", " Xamarin", " ahead"], [" Ahead", " Profile", " Unity", " profiling", "Ahead", " aggressive", " ahead", " profile"], [" Ahead", " A", " Unity", " aggressive", " ahead", "Ahead", " Profile", " Mono"]], "p": [[0.5511, 0.4292, 0.0079, 0.0029, 0.0023, 0.0023, 0.0011, 0.0005], [0.5114, 0.1465, 0.1141, 0.0539, 0.0225, 0.0136, 0.0057, 0.0044], [0.7945, 0.0652, 0.0576, 0.0349, 0.0212, 0.01, 0.0088, 0.0009], [0.0217, 0.0051, 0.0031, 0.0028, 0.0024, 0.0021, 0.0018, 0.0015], [0.0607, 0.0535, 0.0269, 0.0174, 0.0068, 0.006, 0.005, 0.0036], [0.0972, 0.0913, 0.0116, 0.0096, 0.004, 0.0033, 0.0031, 0.0028], [0.136, 0.1128, 0.0878, 0.0775, 0.0304, 0.0209, 0.0173, 0.0153], [0.0982, 0.0436, 0.0281, 0.0206, 0.0182, 0.0182, 0.0125, 0.0117], [0.1856, 0.1358, 0.0933, 0.0727, 0.0414, 0.0251, 0.0236, 0.0152], [0.5091, 0.0346, 0.0164, 0.0136, 0.006, 0.006, 0.0053, 0.005], [0.5588, 0.0912, 0.0756, 0.0627, 0.0246, 0.0204, 0.0204, 0.0149], [0.0071, 0.0059, 0.0043, 0.004, 0.0038, 0.0038, 0.0036, 0.0034], [0.0174, 0.0127, 0.0106, 0.0093, 0.0077, 0.0073, 0.0053, 0.0053], [0.0143, 0.0126, 0.0082, 0.0056, 0.0047, 0.0044, 0.0036, 0.0027], [0.0218, 0.0103, 0.0086, 0.0075, 0.0067, 0.0063, 0.0059, 0.0059], [0.0457, 0.0277, 0.019, 0.0179, 0.0139, 0.0123, 0.0115, 0.0115], [0.0316, 0.0278, 0.0102, 0.009, 0.0085, 0.0075, 0.007, 0.0066], [0.0386, 0.0249, 0.0133, 0.0098, 0.0076, 0.0071, 0.0063, 0.0046], [0.0205, 0.0193, 0.011, 0.0063, 0.0063, 0.0055, 0.0052, 0.0049], [0.0111, 0.0098, 0.0092, 0.0056, 0.0052, 0.0041, 0.0041, 0.0034], [0.1323, 0.0055, 0.0043, 0.0029, 0.0021, 0.0019, 0.0019, 0.0019], [0.0044, 0.0024, 0.0024, 0.0021, 0.0018, 0.0018, 0.0016, 0.0015], [0.003, 0.0028, 0.0021, 0.0019, 0.0017, 0.0016, 0.0016, 0.0016], [0.006, 0.0041, 0.0036, 0.0034, 0.003, 0.0028, 0.0025, 0.0022], [0.0076, 0.0052, 0.0038, 0.0038, 0.0038, 0.0036, 0.0032, 0.0023], [0.013, 0.007, 0.0062, 0.0048, 0.0048, 0.0045, 0.0042, 0.0042], [0.0082, 0.0073, 0.0039, 0.0037, 0.0032, 0.003, 0.0027, 0.0027], [0.0225, 0.0128, 0.012, 0.005, 0.0044, 0.0039, 0.0034, 0.0034], [0.014, 0.0132, 0.0096, 0.008, 0.0075, 0.0045, 0.0045, 0.0045], [0.0177, 0.0156, 0.0138, 0.0101, 0.0101, 0.0095, 0.0095, 0.0078], [0.0217, 0.0159, 0.0124, 0.0124, 0.009, 0.0085, 0.008, 0.0066], [0.0365, 0.0152, 0.0143, 0.0134, 0.0126, 0.0111, 0.0105, 0.0098], [0.0622, 0.0167, 0.0139, 0.0095, 0.0095, 0.0074, 0.007, 0.0058], [0.0534, 0.0416, 0.0237, 0.0237, 0.0163, 0.0127, 0.0127, 0.0077], [0.0898, 0.031, 0.0291, 0.0213, 0.0121, 0.0107, 0.0107, 0.0095], [0.0907, 0.0402, 0.0378, 0.0244, 0.019, 0.0158, 0.0079, 0.0074], [0.0741, 0.0696, 0.0509, 0.0397, 0.0241, 0.0241, 0.0165, 0.0137], [0.1383, 0.0788, 0.0788, 0.0542, 0.0396, 0.0212, 0.0165, 0.0129], [0.2658, 0.1256, 0.0978, 0.0593, 0.0492, 0.0132, 0.0124, 0.011], [0.3143, 0.102, 0.0846, 0.0619, 0.0214, 0.0167, 0.0101, 0.0101], [0.5192, 0.1313, 0.1159, 0.0454, 0.0228, 0.0167, 0.007, 0.0061], [0.3475, 0.2389, 0.1278, 0.0567, 0.0442, 0.0222, 0.0127, 0.0105], [0.3406, 0.2653, 0.1253, 0.0461, 0.0337, 0.0218, 0.0103, 0.008], [0.3603, 0.2806, 0.117, 0.0626, 0.038, 0.0245, 0.0096, 0.0075], [0.3811, 0.2312, 0.1092, 0.0485, 0.0276, 0.0259, 0.009, 0.0048], [0.2947, 0.2295, 0.0657, 0.0512, 0.0292, 0.0166, 0.0114, 0.0095], [0.4199, 0.175, 0.0605, 0.0502, 0.0367, 0.0112, 0.0105, 0.0087], [0.2614, 0.1235, 0.0962, 0.0275, 0.0275, 0.0157, 0.0147, 0.0084], [0.256, 0.137, 0.0733, 0.0238, 0.021, 0.0136, 0.0112, 0.0082], [0.1895, 0.1223, 0.0397, 0.0146, 0.0114, 0.0089, 0.0078, 0.0061], [0.1594, 0.1241, 0.026, 0.0096, 0.0084, 0.0079, 0.0055, 0.0051], [0.4526, 0.1665, 0.0448, 0.0289, 0.024, 0.0187, 0.0145, 0.0106], [0.8075, 0.0355, 0.0229, 0.0215, 0.0168, 0.0115, 0.0102, 0.0084], [0.873, 0.0299, 0.0233, 0.0181, 0.016, 0.0076, 0.0052, 0.0046], [0.8739, 0.0264, 0.0233, 0.0181, 0.011, 0.011, 0.0067, 0.004], [0.6031, 0.1728, 0.0495, 0.0386, 0.0386, 0.0182, 0.0125, 0.0059], [0.752, 0.1481, 0.02, 0.0156, 0.0107, 0.0084, 0.0084, 0.0074], [0.2969, 0.2041, 0.1589, 0.0455, 0.0455, 0.0402, 0.0355, 0.0355], [0.172, 0.1518, 0.1339, 0.0812, 0.0633, 0.0558, 0.0493, 0.0299], [0.72, 0.1821, 0.0246, 0.0124, 0.0096, 0.0052, 0.0049, 0.0043], [0.4933, 0.2992, 0.052, 0.0278, 0.0169, 0.0131, 0.0109, 0.009], [0.5702, 0.0874, 0.064, 0.0498, 0.0342, 0.0302, 0.0251, 0.0221], [0.56, 0.2335, 0.0973, 0.018, 0.0124, 0.0085, 0.008, 0.0046]], "ranks": {}}, {"pos": 463, "top": [[".", " \u200b\u200b", ",", "\u00a0", "\u00a0\u00a0", ";", "?", " \u2013"], [" \u200b\u200b", " \u2013", " Reach", " Crescent", "  \n", " Alle", " West", "  \n\n"], [" \u200b\u200b", "\u3002", "\uff1f", "\u2026..", "vertiser", "visor", "[A", "AAAA"], [" Shemale", " cumshot", " Blowjob", " pornstar", " milfs", "erias", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "odle"], ["egis", "carat", " Guta", "chluss", "schluss", "dias", "&A", "\u0219a"], ["carat", "dias", " Guta", "chluss", "-CS", "ureka", "schluss", "culos"], ["\u0219", "egis", "ureka", "CAA", "vertiser", "-AA", "ropriate", " \u200b\u200b"], ["ureka", "ustralian", "isher", "\u0219", "htar", "egis", "vertiser", "iances"], ["ureka", "isher", "htar", "\u0219", "egis", " \u200b\u200b", "ustralian", "vertiser"], ["htar", "ureka", "-ish", "egis", "ught", "qa", "&A", "-da"], ["&nbsp", "\u00a0", ".&", "-ish", "-&", "pping", "qa", "&s"], ["egis", "ureka", "pping", "htar", "eya", "formance", "iances", "untlet"], ["egis", "pping", "htar", "-ish", "ureka", " veggies", "iances", "alytics"], ["pping", "-ish", "egis", "-tech", " veggies", "ureka", "eya", "htar"], ["pping", "-tech", "-ish", "-lite", " veggies", "-esque", "qa", " meds"], ["pping", "-tech", "-ish", "egis", "-lite", "-esque", " veggies", " freaking"], ["-tech", "pping", "-ish", "-esque", "ft", "if", "-lite", "qa"], ["-tech", "pping", "-ish", "-lite", "qa", "ptime", "egis", "htar"], ["-tech", "pping", "-&", "/&", "qa", "htar", "&A", "&a"], ["\u8ddf", "-&", "ai", "&amp", "pping", "qa", "ost", "Ao"], ["2", "8", "4", "6", "Though", "7", "5", "9"], ["pping", "Apps", "htar", "veled", "ureka", "eya", "-tech", "CAA"], ["pping", "Apps", "htar", "ishi", "ollo", " --", "eya", "qa"], [" --", "2", "8", "Though", "though", "7", "fully", "9"], ["\n\n", "Though", "though", "\u8ddf", "&amp", " --", "2", "8"], ["-tech", "pping", "\u5565", "Apps", "-ish", "-backed", "boost", " tech"], ["-tech", "Apps", "pping", "veled", "ueling", "ishi", "\n\n", "-backed"], ["\n\n", " --", " \n\n", " ,", " though", " @", " _", "fully"], ["\n\n", " tech", " \n\n", "-tech", " technologies", " technology", "-backed", " --"], [" technology", " tech", " technologies", " ...", "-tech", " apps", "_,", " ,"], [" technology", " tech", " technologies", " \u200b\u200b", "-tech", " even", " .", " optimization"], [" \u200b\u200b", " ,", " ...", " .", " technology", " but", ".", " even"], [".", " \u200b\u200b", " but", ".But", "but", " But", ",", "-but"], ["-but", "but", "\u2014but", "though", "But", ".But", " tech", " technology"], ["\u2014but", "but", "-but", "8", "\u4f46", "though", "But", "7"], ["\u2014but", "\u4f46", "2", "8", "but", "3", "-but", "9"], ["\u4f46", "\u2014but", "-but", "but", "optimized", "strict", "tech", " \u200b\u200b"], ["\u4f46", "optimized", "\u2014but", " \u200b\u200b", "-but", "strict", "tech", "but"], ["\u4f46", "optimized", " \u200b\u200b", "\u2014but", "strict", " optimizations", " optimized", "tech"], [" \u200b\u200b", "\u4f46", "optimized", "\uff08", "\u200b", "\u2014but", " optimizations", "\u90e8\u7f72"], [" \u200b\u200b", " optimizations", "optimized", "\u200b", " optimized", "\u4f46", " firmware", " optimization"], [" optimizations", " optimized", "optimized", " optimization", " firmware", " deployment", " technologies", " software"], [" optimizations", " optimized", " optimization", "optimized", " firmware", " deployment", " technologies", " bytecode"], [" optimizations", " optimization", " optimized", "optimized", " deployment", " firmware", " Optimization", " technologies"], [" optimizations", " optimization", " optimized", "optimized", " firmware", " deployment", " deployments", " preprocessing"], [" optimizations", " optimized", " optimization", " deployment", " firmware", "optimized", " deployments", " restrictions"], [" optimizations", " optimized", " optimization", "optimized", " deployment", " deployments", " firmware", " preprocessing"], [" optimizations", " optimized", "optimized", " optimization", " restrictions", " deployment", " deployments", " firmware"], [" optimizations", "optimized", " optimized", "-mode", " optimization", "/software", "-option", " deployments"], [" optimizations", "optimized", "\uff08", "(A", "-mode", "-heavy", " (~", " (${"], ["\uff08", " (\u201c", " (\u201e", "(A", " (${", " (**", "optimized", " (*("], [" optimizations", "optimized", " (\u201c", " (\u201e", "\uff08", " (**", "(A", " (*."], [" optimizations", "\uff08", "optimized", " (\u201c", " (\u201e", " (**", "-mode", " ("], [" optimizations", "optimized", " optimization", "\uff08", " caching", "-mode", "Inlining", "(A"], [" optimizations", "optimized", " optimization", ".NET", "-enabled", " JIT", "Inlining", " compilation"], [" optimizations", " optimization", " compilation", " JIT", "optimized", "Compilation", " caching", "/runtime"], [" optimizations", " compilation", " optimization", " JIT", "Compilation", "roid", " Mono", "optimized"], [" compilation", "Compilation", " Compilation", "\u7f16\u8bd1", "compiled", " compiling", " compiled", " compile"], [" compilation", "Compilation", " Compilation", "\u7f16\u8bd1", " compiling", "compiled", " compil", "compile"], [" compilation", " Ahead", " Compilation", "Compilation", " compiling", " ahead", "ahead", "\u7f16\u8bd1"], [" compilation", " Ahead", " profiling", " Compilation", " compiling", "OT", "Compilation", " ahead"], ["OT", " compilation", " Ahead", "ot", " OT", "/A", " Compilation", " profiling"], ["OT", "ot", "OA", " Ahead", "AO", " compilation", "FA", "OS"]], "p": [[0.9355, 0.0265, 0.0092, 0.0071, 0.0036, 0.0022, 0.0015, 0.0012], [0.0681, 0.0172, 0.0041, 0.0036, 0.0032, 0.003, 0.003, 0.0022], [0.3366, 0.0229, 0.0157, 0.0054, 0.0027, 0.0027, 0.0027, 0.0024], [0.0095, 0.0061, 0.0051, 0.004, 0.004, 0.0031, 0.002, 0.0018], [0.0071, 0.0031, 0.0028, 0.0026, 0.0023, 0.0023, 0.0023, 0.0022], [0.0059, 0.0046, 0.0043, 0.0028, 0.0023, 0.0023, 0.0023, 0.002], [0.0121, 0.0078, 0.0069, 0.0039, 0.0039, 0.0033, 0.0031, 0.0029], [0.0185, 0.0099, 0.0099, 0.0068, 0.0064, 0.006, 0.0044, 0.003], [0.0147, 0.0095, 0.0079, 0.0051, 0.0048, 0.0048, 0.0048, 0.0037], [0.0124, 0.0097, 0.0085, 0.004, 0.004, 0.004, 0.0036, 0.0033], [0.0459, 0.0296, 0.018, 0.0158, 0.0131, 0.0096, 0.008, 0.0075], [0.0057, 0.0054, 0.005, 0.0027, 0.002, 0.0019, 0.0019, 0.0017], [0.0098, 0.0056, 0.0053, 0.0044, 0.0041, 0.0041, 0.0026, 0.0023], [0.0094, 0.0068, 0.0057, 0.0047, 0.0044, 0.0034, 0.0027, 0.0025], [0.0308, 0.0187, 0.0106, 0.0057, 0.0047, 0.0042, 0.0039, 0.0037], [0.0181, 0.016, 0.0091, 0.0049, 0.0046, 0.0038, 0.0036, 0.0032], [0.034, 0.0281, 0.0133, 0.0081, 0.0071, 0.0063, 0.0055, 0.0055], [0.0451, 0.0137, 0.0069, 0.0045, 0.0037, 0.0031, 0.0029, 0.0025], [0.0188, 0.0089, 0.0065, 0.0048, 0.0048, 0.0039, 0.0035, 0.0033], [0.0216, 0.0179, 0.007, 0.0058, 0.0051, 0.0042, 0.0037, 0.0035], [0.0349, 0.0187, 0.0175, 0.0165, 0.0145, 0.012, 0.012, 0.0113], [0.0058, 0.0028, 0.0028, 0.0024, 0.0022, 0.0022, 0.0022, 0.0019], [0.0056, 0.0039, 0.0027, 0.0025, 0.0022, 0.0017, 0.0017, 0.0016], [0.0132, 0.0085, 0.0075, 0.0071, 0.0058, 0.0055, 0.0052, 0.0043], [0.1134, 0.0238, 0.0072, 0.0072, 0.0064, 0.006, 0.0056, 0.005], [0.027, 0.006, 0.0057, 0.0044, 0.0037, 0.0032, 0.0032, 0.0032], [0.0164, 0.0053, 0.005, 0.0047, 0.003, 0.0028, 0.0027, 0.0024], [0.7609, 0.0314, 0.0131, 0.0058, 0.0018, 0.0015, 0.0013, 0.001], [0.2814, 0.0169, 0.0169, 0.014, 0.0096, 0.0062, 0.0055, 0.0055], [0.0282, 0.0249, 0.0182, 0.0111, 0.0076, 0.0056, 0.0046, 0.0038], [0.0455, 0.0259, 0.0244, 0.0122, 0.0074, 0.0062, 0.0058, 0.0045], [0.2197, 0.0247, 0.0204, 0.0204, 0.0159, 0.0159, 0.0159, 0.0097], [0.1389, 0.0743, 0.048, 0.0451, 0.033, 0.0291, 0.0227, 0.02], [0.096, 0.0902, 0.0454, 0.0332, 0.0189, 0.0157, 0.0108, 0.0095], [0.0743, 0.0543, 0.0374, 0.0241, 0.0227, 0.0146, 0.0129, 0.0114], [0.1279, 0.0729, 0.039, 0.0304, 0.0268, 0.0237, 0.0173, 0.0173], [0.0792, 0.0744, 0.0188, 0.0101, 0.0083, 0.0074, 0.0069, 0.0069], [0.0338, 0.0233, 0.0219, 0.015, 0.0097, 0.0097, 0.0071, 0.0067], [0.0388, 0.0342, 0.0321, 0.025, 0.0118, 0.0086, 0.0067, 0.0063], [0.0715, 0.0461, 0.0338, 0.015, 0.0097, 0.0091, 0.0091, 0.0066], [0.0591, 0.0337, 0.0279, 0.0262, 0.0217, 0.0149, 0.0096, 0.0091], [0.0621, 0.0354, 0.0293, 0.0202, 0.0189, 0.0122, 0.0108, 0.0095], [0.0993, 0.0469, 0.0343, 0.0284, 0.0172, 0.0134, 0.0111, 0.0092], [0.0775, 0.0303, 0.0268, 0.0222, 0.0126, 0.0099, 0.0072, 0.0068], [0.1073, 0.0371, 0.0371, 0.0239, 0.0175, 0.0136, 0.0069, 0.0069], [0.0834, 0.037, 0.0271, 0.0239, 0.0136, 0.0136, 0.0136, 0.0113], [0.0897, 0.0257, 0.0227, 0.0156, 0.0138, 0.0095, 0.0089, 0.0083], [0.0684, 0.0222, 0.0162, 0.0112, 0.0098, 0.0093, 0.0077, 0.0044], [0.0397, 0.0165, 0.0083, 0.0061, 0.0054, 0.0047, 0.0035, 0.0035], [0.0178, 0.013, 0.0115, 0.0095, 0.0079, 0.0066, 0.0051, 0.0051], [0.2129, 0.0538, 0.0327, 0.0254, 0.0175, 0.0175, 0.0113, 0.0083], [0.1293, 0.0737, 0.0611, 0.0327, 0.0307, 0.0186, 0.0186, 0.012], [0.1008, 0.0889, 0.0539, 0.0395, 0.0239, 0.0186, 0.012, 0.0106], [0.2382, 0.1125, 0.0208, 0.0126, 0.0119, 0.0092, 0.0082, 0.0063], [0.3117, 0.0839, 0.0372, 0.0226, 0.0226, 0.0187, 0.0121, 0.0114], [0.3418, 0.092, 0.0558, 0.036, 0.036, 0.0205, 0.0181, 0.015], [0.1583, 0.1397, 0.0847, 0.0582, 0.0258, 0.0243, 0.0201, 0.0178], [0.7352, 0.0775, 0.0366, 0.0323, 0.0222, 0.0135, 0.0105, 0.0105], [0.763, 0.0911, 0.0626, 0.0123, 0.0096, 0.0085, 0.0051, 0.0051], [0.7022, 0.1077, 0.0396, 0.0328, 0.0146, 0.0121, 0.0121, 0.0094], [0.6352, 0.1175, 0.0432, 0.0297, 0.0231, 0.0169, 0.0159, 0.0124], [0.7413, 0.0734, 0.0393, 0.0238, 0.0186, 0.006, 0.0057, 0.0057], [0.987, 0.0019, 0.0019, 0.001, 0.0006, 0.0003, 0.0003, 0.0003]], "ranks": {}}, {"pos": 464, "top": [["ting", " \u2013", "i", "y", "rans", "er", "\u2013", "@\""], ["ting", " \u2013**", " \u2013", "\u2018", " *\u2013", "een", "\u2018s", "eenth"], ["\u2013", " \u2013", ".\u2013", ".", "\u2013and", "\u2013\u2013", "?", ","], ["\u6700\u65b0\u53d1\u5e03", " Strec", "ting", "flix", "IVOS", "\u4eba\u554a", "__)", "teggi"], ["rans", "ting", "\u6700\u65b0\u53d1\u5e03", " *@", " Zot", "\\\")", "\u064a\u062a\u0647", "\\\\/"], ["\u6700\u65b0\u53d1\u5e03", "ting", "rans", "GBT", " Zot", "iot", " VT", "rop"], ["ting", "rans", "--", "\u6700\u65b0\u53d1\u5e03", "ter", "\n", "en", "\\\")"], ["ting", "rans", ".", "\u6700\u65b0\u53d1\u5e03", ".\\\"", ".&", "ter", "--"], [".&", ".", "rans", "ting", ".\\\"", "&T", "&", "?."], [",", "rans", ".&", "ting", "\\u", "-&", "--", "\\/"], [".", "ting", ".&", ",", "rans", ".)", "&", "&#"], ["ting", "rans", "ary", "ter", "-centric", "-ish", "ronic", "&apos"], ["ting", "rans", " \u200b\u200b", ".", "ary", "ter", "ech", "en"], ["ting", "rans", ".", "en", "te", "ech", " technologies", "ter"], ["ting", "te", "g", "l", "en", "r", "rans", "est"], ["ting", "en", "g", "y", "l", "r", "t", "er"], ["ting", "t", "en", "g", "y", "l", "r", ","], ["ting", "rans", "en", "g", "t", "te", "ech", " \u200b\u200b"], ["ting", "rans", "en", "&apos", "-esque", "g", "te", " technologies"], ["ting", "t", "en", "g", "y", "&#", "f", "m"], ["@", "t", "f", "ting", "m", " myriad", "g", "en"], ["&apos", "ting", "rans", "ronic", "gart", "flix", "ectura", " advancements"], ["&apos", " --", "&quot", " technologies", "ting", "ronic", "\n", " Americas"], ["&apos", " --", " ,", "\n", " programming", " &#", " and", " ."], [" --", "&apos", "\n\n", " &#", "&#", "--", "&lt", "&quot"], [" --", " technologies", "&apos", " programming", " technology", " &#", "\n\n", " experimentation"], [" programming", " technologies", "\n", "&apos", " technology", " --", " programs", " experimentation"], [" --", " ,", "\n\n", " @", " and", "\n", " \n", " programming"], ["\n", " --", " programming", " ,", "\n\n", " technologies", " technology", " \n"], ["\n", " ...", " \n", " --", " programming", " technologies", " technology", " -->"], ["\n", " ...", " technologies", " programming", " technology", " \n", " tech", " versions"], [" ...", "\n", " technology", " .", " technologies", " programming", " ,", " \n"], ["\n", " technology", " but", " instead", " .", " ,", " and", " technologies"], [" technologies", " technology", " tech", " programming", " versions", " Technologies", " programs", " software"], [" technology", " technologies", " tech", " programming", " versions", " reboot", " vs", "tech"], [" technology", " technologies", " tech", " programming", "\u2014but", " versions", " \u200b\u200b", " \u2013"], [" technology", " technologies", " programming", " \u200b\u200b", " tech", " versions", " software", " deployment"], [" technology", " technologies", " programming", " software", " versions", " optimizations", " deployment", " \u200b\u200b"], [" technology", " technologies", " programming", " optimizations", " \u200b\u200b", " restrictions", " software", " deployment"], [" technologies", " technology", " \u200b\u200b", " optimizations", " restrictions", " programming", "\u200b", " iOS"], [" technologies", " technology", " optimizations", " software", " restrictions", " programming", " \u200b\u200b", " conversions"], [" technologies", " optimizations", " technology", " software", " restrictions", " programming", " conversions", " optimization"], [" technologies", " restrictions", " conversions", " optimizations", " technology", " software", " conversion", " programming"], [" restrictions", " technologies", " optimizations", " conversions", " conversion", " software", " technology", " limitations"], [" restrictions", " optimizations", " limitations", " technologies", " conversions", " conversion", " limited", " optimization"], [" restrictions", " limitations", " conversions", " limited", " conversion", " technologies", " optimizations", " deployment"], [" restrictions", " limitations", " limited", " optimizations", " conversions", " technologies", " conversion", " deployment"], [" restrictions", " limitations", " limited", " conversions", " optimizations", " technologies", " Limited", " conversion"], [" restrictions", " limitations", " optimizations", " conversions", " (~", " conversion", "\u7684\u9650\u5236", " ("], [" restrictions", " (", " conversions", " limitations", " (~", " optimizations", " conversion", "\u7684\u9650\u5236"], [" restrictions", " optimizations", " conversions", " (\u201c", " limitations", " (", "\u53d7\u9650", " (--"], [" optimizations", " (\u201c", " conversions", " (--", " optimization", " restrictions", " (\u201e", " ("], [" optimizations", " (", " (\u201c", " conversions", "Inlining", "-enabled", " Offline", " (~"], [" optimizations", " (", "\uff08", "-enabled", " optimization", "Inlining", " restrictions", " compilation"], [" optimizations", " (", "-enabled", " compilation", " optimization", "\uff08", "Inlining", " Xamarin"], [" optimizations", " optimization", " compilation", " Xamarin", "amarin", " (", "Inlining", "-enabled"], [" optimizations", " compilation", " optimization", " Ahead", " Xamarin", " (", "amarin", "Ahead"], [" compilation", "\u7f16\u8bd1", " Compilation", " compiled", "Compilation", " compiling", "compiled", " compile"], [" compilation", " Compilation", "Compilation", "\u7f16\u8bd1", " compiling", " compile", " compiled", " compil"], [" compilation", " Compilation", " Ahead", "Compilation", " ahead", "\u7f16\u8bd1", " compiling", " compiled"], [" compilation", " Compilation", " compiling", " (", " compil", "Compilation", "\u7f16\u8bd1", " compiled"], [" compilation", " Compilation", " (", " compiling", "Compilation", " compil", " Ahead", " ahead"], [" compilation", " (", " trimming", ",", " ahead", " profiling", " optimization", " compiling"]], "p": [[0.7197, 0.1104, 0.0149, 0.0132, 0.008, 0.0048, 0.0043, 0.0033], [0.0815, 0.0219, 0.0182, 0.0151, 0.0142, 0.0133, 0.0091, 0.0086], [0.4917, 0.1168, 0.0665, 0.0457, 0.0261, 0.0168, 0.0139, 0.007], [0.0184, 0.0053, 0.0047, 0.0041, 0.0032, 0.003, 0.0027, 0.0025], [0.0746, 0.0701, 0.0242, 0.0166, 0.0156, 0.0095, 0.0074, 0.0074], [0.029, 0.029, 0.0121, 0.0083, 0.0083, 0.0065, 0.0061, 0.0054], [0.2606, 0.1485, 0.0582, 0.0453, 0.0101, 0.0084, 0.0084, 0.0079], [0.1895, 0.1303, 0.0423, 0.0291, 0.0156, 0.0094, 0.0083, 0.0073], [0.1284, 0.1133, 0.1064, 0.057, 0.0197, 0.0144, 0.0135, 0.0105], [0.0539, 0.0419, 0.0254, 0.0211, 0.0094, 0.0094, 0.0083, 0.0068], [0.5168, 0.0452, 0.031, 0.0213, 0.0188, 0.0107, 0.0107, 0.0089], [0.1315, 0.0798, 0.0051, 0.0042, 0.0042, 0.0037, 0.0037, 0.0033], [0.1389, 0.0792, 0.0138, 0.0114, 0.0078, 0.0078, 0.0061, 0.0051], [0.0884, 0.0473, 0.0163, 0.0099, 0.0082, 0.0073, 0.0056, 0.0056], [0.0462, 0.0192, 0.0181, 0.0141, 0.0141, 0.011, 0.0103, 0.0103], [0.0367, 0.0237, 0.0223, 0.0197, 0.0185, 0.0173, 0.0163, 0.0127], [0.0722, 0.0497, 0.0412, 0.0387, 0.0321, 0.0266, 0.025, 0.022], [0.1471, 0.0137, 0.0137, 0.0088, 0.0083, 0.0073, 0.0073, 0.0065], [0.0788, 0.0212, 0.0083, 0.0069, 0.0061, 0.0057, 0.0047, 0.0044], [0.0489, 0.0358, 0.0297, 0.0231, 0.0217, 0.0204, 0.014, 0.014], [0.0299, 0.0248, 0.0181, 0.017, 0.017, 0.016, 0.015, 0.0141], [0.0211, 0.0061, 0.005, 0.0044, 0.003, 0.0029, 0.0025, 0.0021], [0.207, 0.0193, 0.0049, 0.0046, 0.004, 0.0036, 0.0033, 0.0028], [0.0735, 0.069, 0.0113, 0.0041, 0.0034, 0.0028, 0.0024, 0.0024], [0.2902, 0.0647, 0.0504, 0.0393, 0.0154, 0.0113, 0.0064, 0.0041], [0.1674, 0.0166, 0.0166, 0.0146, 0.0083, 0.0042, 0.0035, 0.0033], [0.0734, 0.027, 0.0254, 0.0224, 0.0186, 0.0113, 0.006, 0.005], [0.4443, 0.0468, 0.0172, 0.0081, 0.0072, 0.0067, 0.0067, 0.0056], [0.346, 0.1196, 0.0235, 0.0221, 0.0195, 0.0195, 0.0183, 0.0162], [0.2789, 0.2312, 0.0377, 0.0355, 0.0148, 0.0139, 0.0115, 0.0045], [0.2824, 0.0556, 0.0407, 0.0382, 0.0382, 0.0382, 0.0091, 0.008], [0.3781, 0.0956, 0.0424, 0.033, 0.0166, 0.0129, 0.0122, 0.0114], [0.1071, 0.0573, 0.0475, 0.0447, 0.042, 0.037, 0.0271, 0.0164], [0.1185, 0.1046, 0.0409, 0.0248, 0.0104, 0.0059, 0.0052, 0.0049], [0.0732, 0.0688, 0.057, 0.0223, 0.0087, 0.0077, 0.0064, 0.006], [0.0805, 0.0589, 0.0191, 0.0149, 0.0085, 0.0085, 0.007, 0.0055], [0.0645, 0.0606, 0.0237, 0.0105, 0.0099, 0.0087, 0.0068, 0.006], [0.0684, 0.0501, 0.0252, 0.0127, 0.0112, 0.0099, 0.0093, 0.0093], [0.078, 0.0473, 0.0346, 0.0287, 0.0144, 0.0144, 0.012, 0.0106], [0.058, 0.0544, 0.0511, 0.033, 0.0156, 0.0129, 0.0114, 0.0107], [0.1005, 0.0833, 0.0475, 0.0211, 0.0164, 0.012, 0.01, 0.01], [0.079, 0.0479, 0.0423, 0.0397, 0.0241, 0.02, 0.0156, 0.0129], [0.0764, 0.0674, 0.0409, 0.0409, 0.0281, 0.0206, 0.0193, 0.0181], [0.0796, 0.0453, 0.0426, 0.0312, 0.0243, 0.0201, 0.0201, 0.0167], [0.1331, 0.0358, 0.0262, 0.0246, 0.0246, 0.0192, 0.0169, 0.0149], [0.1714, 0.0556, 0.0491, 0.0317, 0.028, 0.0205, 0.0192, 0.0132], [0.2125, 0.0648, 0.0326, 0.0326, 0.0254, 0.0186, 0.0128, 0.0113], [0.242, 0.0693, 0.0395, 0.0225, 0.0145, 0.012, 0.0113, 0.0106], [0.2547, 0.0568, 0.0209, 0.0209, 0.0093, 0.0093, 0.0093, 0.0093], [0.1334, 0.0433, 0.0382, 0.0359, 0.0359, 0.0232, 0.015, 0.008], [0.0464, 0.0385, 0.0385, 0.03, 0.0206, 0.0171, 0.0125, 0.0125], [0.1756, 0.0392, 0.0223, 0.0174, 0.0174, 0.0153, 0.0127, 0.0127], [0.1937, 0.049, 0.0381, 0.0279, 0.0217, 0.0204, 0.0204, 0.018], [0.386, 0.0556, 0.0192, 0.0159, 0.0159, 0.0159, 0.0141, 0.0132], [0.4942, 0.0521, 0.0489, 0.0336, 0.0231, 0.0204, 0.0159, 0.0116], [0.7174, 0.0589, 0.0336, 0.0231, 0.0109, 0.0109, 0.0075, 0.0051], [0.3646, 0.1184, 0.0634, 0.0493, 0.0384, 0.0319, 0.0281, 0.0182], [0.8907, 0.0237, 0.0185, 0.0127, 0.0099, 0.0099, 0.0087, 0.0077], [0.9286, 0.0318, 0.0132, 0.0063, 0.0038, 0.0026, 0.0023, 0.002], [0.8954, 0.0393, 0.0113, 0.0088, 0.0077, 0.0053, 0.0053, 0.0041], [0.9639, 0.0156, 0.0065, 0.0027, 0.0027, 0.0024, 0.001, 0.0009], [0.9429, 0.0196, 0.0135, 0.0049, 0.003, 0.0017, 0.0014, 0.0012], [0.8718, 0.0632, 0.0117, 0.011, 0.0063, 0.0046, 0.004, 0.004]], "ranks": {}}, {"pos": 465, "top": [[" \u2013", "\u2013", ".", ",", "s", ";", "o", "y"], [" \u2013", "\u2013", ",", "\u2013and", "s", "\u2011", "\u2013\u2013", "."], ["\u2013", ",", ".\u2013", " \u2013", ".", "\u2013and", "\u2026", "\u2026.."], [" milfs", " Shemale", "eless", "eits", " Blowjob", "ebrit", " cumshot", "echsl"], ["ed", "e", "auf", "t", "s", "a", "ingly", "y"], ["auf", "sWith", "kits", "\u064a\u062f\u064a", "aus", "\u2026..", "ingly", "ed"], ["s", "t", "y", "a", "\u2026\u2026", "raries", " \u201c", "e"], ["s", "i\u010d", " veggies", "iest", "sdale", "\u094d\u0938", "crap", "sWith"], ["i\u010d", "sdale", " veggies", "iest", "s", " ......", "\u2026..", " \u200b\u200b"], [",", " veggies", "s", " [\u2026]", " kinda", "\u2013", "\u2026but", "\u2013and"], ["...", " [\u2026]", "s", "o", "\u2026", "y", ",", "d"], [" veggies", "ily", " vibes", " meds", "schuss", " pricey", " funky", " goodies"], [" veggies", " vibes", " meds", " vibe", " combo", " impactful", " pricey", " kinda"], [" veggies", " vibes", " vibe", " tweaking", " tweaks", " hardcore", " tweaked", " combo"], [" tech", " combo", " savvy", " tweaking", " tweaked", " veggies", " vibe", " goodies"], [" tech", " veggies", " kids", " goodies", " guys", " incredibly", " savvy", " stuff"], [" tech", "o", "s", "e", "a", " tweaking", " incredibly", " veggies"], [" tech", " veggies", " tweaking", " tweaks", " meds", " vibes", " vibe", "kits"], [" goofy", " tech", " freaking", " veggies", " tweaking", "-esque", " meds", " funky"], [" tweaking", " goofy", " tech", " freaking", " arguably", " pricey", " gaming", " touted"], ["a", " tweaking", " arguably", "ahead", " sorta", " booming", " looming", "o"], [" ;;^", "nheim", " Fortal", " booming", " goofy", " tweaking", "punk", "hium"], [" booming", " arguably", " tweaking", "ahead", " looming", "a", " popping", "ally"], ["a", " ,", " arguably", "o", "s", "e", " largely", " ever"], ["\n\n", " \n\n", "   \n\n", " arguably", "  \n\n", "\r\n\r\n", "\t\n\n", "Though"], [" tech", " impactful", "\u5565", " tweaking", " freaking", " transitioning", " leveraging", " arguably"], ["\n\n", " tech", " powering", " arguably", " tweaking", " technology", " transitioning", " optics"], ["\n\n", " \n\n", " ,", " arguably", " tech", " heavily", "  \n\n", "\r\n\r\n"], ["\n\n", " tech", " \n\n", " technology", " arguably", " heavily", " ,", " tweaking"], [" tech", " technology", " ,", " heavily", " even", " modern", " ...", " industry"], [" ,", " tech", " technology", " even", " modern", " like", " ...", " hard"], [" \n\n", " ,", " tech", " even", " ...", " technology", " like", " modern"], [" tech", " technology", " ,", " even", " modern", " but", " heavily", " like"], [" tech", " technology", " technically", " technologies", " Tech", " modern", " arguably", " techn"], [" tech", "tech", "techn", "\u2014but", " Tech", " technically", "via", " technology"], [" tech", "tech", "techn", " Tech", "\u2014but", "via", "\u2011", "paque"], [" tech", "tech", " Tech", "techn", "via", "Tech", " \u0432\u0440\u043e\u0434\u0435", "paque"], [" tech", " Tech", "tech", " Hybrid", "Tech", " \u0432\u0440\u043e\u0434\u0435", "via", "optimized"], [" tech", " Tech", "tech", "Tech", "techn", "via", "optimized", " iOS"], [" tech", " Tech", " iOS", "tech", " Hybrid", "via", "Tech", "techn"], [" tech", " Tech", "tech", " iOS", " technologies", " Hybrid", "techn", " technology"], [" iOS", " Tech", " tech", " Software", " technologies", " software", "tech", " technology"], [" iOS", " Tech", " technologies", " tech", " Hybrid", " Modular", " Technologies", " Software"], [" Tech", " iOS", " technologies", " Hybrid", " tech", "Via", " Modular", " Software"], [" Modular", " Hybrid", " iOS", " Tech", " Turbo", "Via", " technologies", "via"], [" Modular", " Tech", " Hybrid", " Turbo", " iOS", " tech", " technologies", " Agile"], [" Tech", " Modular", " Hybrid", "via", " tech", "Via", " Turbo", " Via"], ["via", "Via", " Hybrid", " Via", " Tech", " Modular", " via", " Turbo"], ["via", "Via", " Modular", " Turbo", " Hybrid", " Via", "VRT", " Mobi"], [" Modular", " ())", " Offline", "via", "(Android", " Portable", "(iOS", "Via"], [" Modular", "via", "++)", " Portable", "Portable", "Via", " Offline", "mandatory"], [" Automated", " Offline", " Automatic", " Modular", " Automation", " Static", " Ahead", "-static"], [" Offline", " Automated", "offline", " Ahead", " Modular", " Static", " Xamarin", " Automatic"], [" Offline", " Ahead", " Xamarin", "offline", " Modular", " Static", "Offline", " Automated"], [" Runtime", " Xamarin", " Offline", " Ahead", " JIT", "runtime", " Static", "/runtime"], [" Xamarin", " Mono", " Ahead", " Runtime", " Android", "Mono", "Ahead", " JIT"], [" Ahead", "Ahead", "ahead", " ahead", " Mono", " Android", " Xamarin", "\u63d0\u524d"], [" Ahead", "Ahead", "ahead", " ahead", "-ahead", " Compile", " Mono", "\u63d0\u524d"], [" Ahead", "Ahead", "ahead", " ahead", "\u63d0\u524d", "-ahead", " Mono", " Compile"], [" Ahead", " ahead", "ahead", "Ahead", "-ahead", "\u63d0\u524d", " Mono", " Android"], [" Ahead", " ahead", "ahead", "Ahead", "-ahead", " Mono", " Native", " Android"], [" Ahead", "ahead", "Ahead", " ahead", "-ahead", " Mono", " Android", " Native"], [" Ahead", "Ahead", "ahead", " ahead", "A", "Android", "-ahead", "Native"]], "p": [[0.8397, 0.0537, 0.0537, 0.0474, 0.0013, 0.0013, 0.0007, 0.0005], [0.7516, 0.19, 0.0078, 0.0042, 0.0025, 0.0018, 0.001, 0.0009], [0.7623, 0.1701, 0.0158, 0.0123, 0.0116, 0.008, 0.0062, 0.004], [0.0088, 0.0039, 0.0037, 0.0032, 0.003, 0.0025, 0.0024, 0.0022], [0.0943, 0.0419, 0.0306, 0.0186, 0.0164, 0.0154, 0.0128, 0.0113], [0.0082, 0.0068, 0.0064, 0.0053, 0.0053, 0.005, 0.0039, 0.0036], [0.7696, 0.0462, 0.0075, 0.0049, 0.0046, 0.0038, 0.0033, 0.0026], [0.0588, 0.0519, 0.043, 0.014, 0.0085, 0.0066, 0.0062, 0.0055], [0.0327, 0.0164, 0.0154, 0.0136, 0.0106, 0.0094, 0.0078, 0.0078], [0.042, 0.0198, 0.0175, 0.0164, 0.0078, 0.0073, 0.0069, 0.006], [0.4105, 0.3197, 0.0317, 0.0317, 0.0218, 0.0192, 0.015, 0.015], [0.0331, 0.0089, 0.0065, 0.0048, 0.0045, 0.0045, 0.0045, 0.0045], [0.0642, 0.0077, 0.0064, 0.0049, 0.0046, 0.0036, 0.0036, 0.0034], [0.026, 0.0102, 0.009, 0.0066, 0.0062, 0.0055, 0.0048, 0.0043], [0.0251, 0.0236, 0.0112, 0.0105, 0.0105, 0.0098, 0.0093, 0.0093], [0.0174, 0.0105, 0.0105, 0.0093, 0.0077, 0.0072, 0.0064, 0.0064], [0.0359, 0.0317, 0.0262, 0.018, 0.0159, 0.0075, 0.0071, 0.0062], [0.0216, 0.0158, 0.0102, 0.0075, 0.0062, 0.0055, 0.0055, 0.0051], [0.0129, 0.0094, 0.0094, 0.0094, 0.0088, 0.0042, 0.0039, 0.0037], [0.0118, 0.0087, 0.006, 0.0056, 0.0053, 0.0034, 0.0034, 0.0032], [0.0051, 0.0048, 0.0042, 0.0035, 0.0023, 0.0019, 0.0019, 0.0018], [0.0033, 0.0027, 0.0022, 0.0016, 0.0016, 0.0015, 0.0014, 0.0013], [0.0057, 0.0048, 0.0042, 0.0037, 0.0033, 0.0033, 0.0033, 0.0027], [0.0304, 0.0127, 0.0072, 0.006, 0.005, 0.0047, 0.0044, 0.0034], [0.0601, 0.0208, 0.0111, 0.0067, 0.0053, 0.0046, 0.0038, 0.0028], [0.0276, 0.013, 0.013, 0.0045, 0.0045, 0.0026, 0.0026, 0.0024], [0.2112, 0.0367, 0.0041, 0.0036, 0.0032, 0.003, 0.003, 0.0027], [0.7707, 0.0193, 0.008, 0.0036, 0.003, 0.002, 0.0019, 0.0016], [0.411, 0.0917, 0.0263, 0.0085, 0.0055, 0.0043, 0.0043, 0.004], [0.1388, 0.0423, 0.031, 0.0101, 0.0078, 0.0078, 0.0061, 0.0061], [0.095, 0.0613, 0.0449, 0.0272, 0.0146, 0.0146, 0.0107, 0.0073], [0.0682, 0.0602, 0.0251, 0.0236, 0.0183, 0.0183, 0.0183, 0.0134], [0.1314, 0.0548, 0.0202, 0.0189, 0.0167, 0.0139, 0.0115, 0.0115], [0.1563, 0.054, 0.0175, 0.0165, 0.0088, 0.0083, 0.0073, 0.0073], [0.0785, 0.0113, 0.0106, 0.0069, 0.005, 0.0044, 0.0042, 0.0029], [0.0465, 0.0161, 0.011, 0.0104, 0.0067, 0.0067, 0.0038, 0.0034], [0.0452, 0.0201, 0.0188, 0.0069, 0.0061, 0.0061, 0.0042, 0.0042], [0.0672, 0.0359, 0.0159, 0.0059, 0.0052, 0.0046, 0.0043, 0.0043], [0.0436, 0.0248, 0.0141, 0.0063, 0.0055, 0.0055, 0.0052, 0.0046], [0.0263, 0.0247, 0.0205, 0.0159, 0.0124, 0.0075, 0.0071, 0.0071], [0.0579, 0.0451, 0.0273, 0.0227, 0.0156, 0.0121, 0.0107, 0.0101], [0.0635, 0.034, 0.0319, 0.0206, 0.0206, 0.0151, 0.011, 0.0097], [0.032, 0.0301, 0.0283, 0.0249, 0.0161, 0.0134, 0.0118, 0.0092], [0.0315, 0.0278, 0.0278, 0.0169, 0.0158, 0.0149, 0.014, 0.0123], [0.025, 0.022, 0.022, 0.0207, 0.0142, 0.0118, 0.0111, 0.0086], [0.029, 0.0212, 0.0165, 0.0146, 0.0146, 0.0083, 0.0069, 0.0057], [0.0323, 0.0303, 0.0285, 0.0251, 0.0152, 0.0135, 0.0105, 0.0092], [0.0439, 0.0266, 0.0221, 0.0221, 0.0207, 0.0161, 0.0142, 0.0126], [0.0253, 0.0093, 0.0082, 0.0077, 0.0036, 0.0032, 0.0028, 0.0025], [0.0276, 0.0123, 0.0108, 0.007, 0.0066, 0.0051, 0.004, 0.0037], [0.0114, 0.0078, 0.0061, 0.0042, 0.0037, 0.0035, 0.0029, 0.0027], [0.0502, 0.0416, 0.0237, 0.0163, 0.0153, 0.0135, 0.0135, 0.0099], [0.2876, 0.0303, 0.0303, 0.0208, 0.0208, 0.0173, 0.0135, 0.0126], [0.3143, 0.0353, 0.0331, 0.0292, 0.0177, 0.0167, 0.0114, 0.0108], [0.2162, 0.1684, 0.1021, 0.0514, 0.0228, 0.0138, 0.0122, 0.0108], [0.1763, 0.1556, 0.0943, 0.0735, 0.0648, 0.0505, 0.0419, 0.0347], [0.6946, 0.2255, 0.0646, 0.006, 0.0028, 0.0012, 0.0012, 0.0006], [0.7423, 0.129, 0.1138, 0.0136, 0.0002, 0.0002, 0.0002, 0.0001], [0.8625, 0.0708, 0.0487, 0.0179, 0.0, 0.0, 0.0, 0.0], [0.883, 0.044, 0.0388, 0.0342, 0.0, 0.0, 0.0, 0.0], [0.8597, 0.0623, 0.0485, 0.0294, 0.0001, 0.0, 0.0, 0.0], [0.8011, 0.0844, 0.0745, 0.0399, 0.0001, 0.0, 0.0, 0.0], [0.524, 0.4081, 0.0626, 0.0051, 0.0001, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 466, "top": [[" \u2013", ".", "\u2013", ",", " [\u2026]", "<|endoftext|>", ".[", "\u00a0"], [" \u2013", " [@", " \u200b\u200b", " \u2013**", " (@", ".@", " @", " \u2013,"], [" \u2013", "\u2013", " \u200b\u200b", "\u2026..", ".\u2013", ".@", " [\u2026]", "\u2026"], ["iach", "erness", "->__", " -->", " \u041f\u043e\u043f\u0440\u043e", " @_", "spraak", ".\"&"], [" @_", ".@", " @(", " @", " @$", " (@", " #@", " #'"], [".@", " @_", " @(", "\u062c\u0631\u062f", "iach", " @", ":@", " \u200b\u200b"], [" .'", " #'", " @_", " -->", " #@", ".@", " #$", " $__"], [" #'", " #@", " @_", " |--", "].'", " .'", "erness", ".@"], [" #'", "-&", "]&", " .'", ".&", "].'", "..'", ".\"&"], ["-&", "-of", "]&", " #'", ".&", " .'", " whilst", "-'"], ["-&", " #'", ".@", ".&", " .'", " #$", ".#", "-of"], [" **>>", " #'", " ~>", " Palav", " #$", " -->", ".\"&", "-&"], [" **>>", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Palav", " pornstar", "erness", "->__", " \u041f\u043e\u043f\u0440\u043e", "eous"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Palav", " **>>", " pornstar", "erness", "\u54e5\u534e", "\u79ef\u7535", " \u041f\u043e\u043f\u0440\u043e"], ["-of", "-&", "\u60da", "\u0441\u043c\u043e\u0442\u0440\u044f", "erness", " #'", "gance", " '--"], [" whilst", "-of", " Whilst", " amongst", " Palav", "-&", "eous", "ness"], ["-of", " whilst", " Whilst", "ettagli", "\u60da", "-&", "\u0441\u043c\u043e\u0442\u0440\u044f", "ness"], [" Palav", "ettagli", "-of", "\u79ef\u7535", "\u54e5\u534e", "**\u2013", "eneg", " \u2013**"], [" Palav", "ejah", "ettagli", "\u79ef\u7535", "\u54e5\u534e", "eneg", "**\u2013", "iach"], ["-&", "-of", ">--", "edly", "iach", "\u53bb\u5f80", " \u2015", " #'"], ["-&", " --", ">--", " #'", "-of", "edly", " +#", "iach"], [" **>>", " Palav", "iach", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "ejah", " //~", "\u79ef\u7535", ">--"], [" --", "iach", " //~", " \u2015", " **>>", " Palav", " \\<^", ">--"], [" --", " \u2015", "-of", "-&", " swiftly", "ahead", ">--", "\u2015"], [" --", " \u2015", "-&", " \\<^", "-of", "&amp", " \r\n \r\n", "iach"], [" Palav", " Istitu", "amai", " **>>", "\u79ef\u7535", "iach", " //~", " --"], [" Palav", " Istitu", "\u79ef\u7535", "ejah", "-of", "amai", " **>>", " <+"], [" --", " \u2015", "-of", " Istitu", " Palav", "-&", "edly", " \u0102"], ["-of", " --", " Istitu", " \u2013**", " Palav", " \u2015", "**\u2013", "-ahead"], ["**\u2013", " \u2013**", "-of", " Istitu", " Palav", " --", " Attra", "-ahead"], ["-of", " \u2013**", "\u2010", " \u2015", " \u2013", "-ahead", " --", " technologies"], [" \u2013", "\u2013", " technology", "\u2011", "\u2010", "-of", " --", " technologies"], [" \u2013", "\u2013", " \u2013**", "\u2011", "\u2010", "**\u2013", " \u2013,", "-of"], ["\u2013", " \u2013", "\u2011", "\u2013and", " \u2013**", "\u2010", "**\u2013", "\u2013\u2013"], [" \u2013**", "**\u2013", "\u2013", "\u2011", " *\u2013", ")\u2019", "\u2010", "\u2013and"], ["\u2013", "\u2011", " \u2013**", " \u2013", " *\u2013", "**\u2013", "\u2013and", ".\u2013"], ["\u2013", " *\u2013", " \u2013**", "\u2013and", "**\u2013", "-ahead", " Ahead", "\u2011"], [" Ahead", "\u2011", "\u2013", "-ahead", "\u2013and", " *\u2013", "ahead", "-before"], ["\u2011", " Ahead", "-ahead", "\u2013", "\u9884\u5148", "\u63d0\u524d", "-before", "ahead"], ["\u2011", " Ahead", "\u2013", "\u63d0\u524d", "\u9884\u5148", "\u2013and", "-ahead", "\u200c"], [" Ahead", "\u2011", "\u63d0\u524d", "-before", " Technologies", "\u2013", " Compiler", "\u9884\u5148"], [" Ahead", "\u2013", "\u9884\u5148", "\u2011", "-before", "\u63d0\u524d", "-ahead", " Compiler"], [" Ahead", "\u9884\u5148", "\u63d0\u524d", "-ahead", " preprocessing", "-before", " preprocess", "\u2011"], [" Ahead", "\u9884\u5148", "\u63d0\u524d", " Compiler", "\u9884", "\u2011", " preprocessing", " Technologies"], [" Ahead", " Compiler", "\u9884\u5148", "\u63d0\u524d", " preprocessing", " Optimization", " Offline", "\u2011"], [" Ahead", "\u2011", " Compiler", " Modular", "\u9884\u5148", " Offline", " preprocessing", " Optimization"], ["\u2011", " Ahead", " Compiler", "\u9884\u5148", " Modular", " Offline", "/Framework", " Optimization"], ["\u2011", " Ahead", "-**", "\u200c", "\\-", "\u2010", " Offline", " Compiler"], ["\u2011", "-**", " Ahead", "\u200c", " Compiler", "/Framework", "-Language", " Offline"], ["-**", "-)", "-Language", " Ahead", "\u2011", "-backend", "/Framework", " Compiler"], [" Ahead", "-Language", "-)", "-backend", " Offline", "\u9884\u5148", "-**", " Shortcut"], [" Ahead", "-Time", "-On", " Optimization", "-backend", "-Allow", "\u9884\u5148", " Offline"], ["-of", "-Time", " Ahead", "-kit", " Compiler", " Offline", "-On", "-initialized"], [" Ahead", "-kit", "-Time", "-of", "\u9884", "\u9884\u5148", " Compiler", "-vs"], ["-Time", "-time", " Ahead", "-kit", "-of", " \u0432\u0440\u0435\u043c\u0435\u043d\u0438", "time", "\u65f6\u95f4\u7684"], ["-Time", "-of", "-time", " Compilation", " Runtime", "-With", " Compiler", "-kit"], ["-of", "-Time", "-time", " Compilation", " Compiler", " Runtime", " Compile", "-On"], ["-of", " Compiler", " Compilation", "compiled", "\u7f16\u8bd1", " Compile", "Compiler", "-Time"], ["-of", "-Time", " Compiler", " Compilation", "-time", " Time", "_Of", " Ahead"], ["-of", "-Time", " Of", "_of", " Ahead", " Time", "Of", "_OF"], ["-of", "_of", " Of", " of", "Of", "of", "_OF", ".of"], ["-of", " Of", "_of", " of", "Of", "of", "_Of", "-Time"], ["-of", "-", " Of", "Of", "_of", " of", "-Time", "_Of"]], "p": [[0.8851, 0.0389, 0.0267, 0.0105, 0.0046, 0.0044, 0.003, 0.0023], [0.7762, 0.0363, 0.0283, 0.0194, 0.0161, 0.0104, 0.0076, 0.0067], [0.5111, 0.1006, 0.061, 0.0475, 0.0348, 0.0307, 0.0271, 0.0198], [0.0138, 0.0095, 0.0084, 0.0065, 0.0061, 0.0061, 0.0054, 0.0051], [0.1418, 0.1175, 0.0915, 0.0915, 0.049, 0.0337, 0.0297, 0.0169], [0.057, 0.0346, 0.0135, 0.0127, 0.0106, 0.0106, 0.0077, 0.0056], [0.066, 0.0547, 0.0167, 0.013, 0.0115, 0.0101, 0.0095, 0.0084], [0.0431, 0.0204, 0.0116, 0.0102, 0.0096, 0.007, 0.0066, 0.0048], [0.0416, 0.0345, 0.0305, 0.0305, 0.0253, 0.0144, 0.0127, 0.0099], [0.1036, 0.0149, 0.014, 0.0132, 0.0116, 0.0116, 0.0109, 0.0091], [0.1285, 0.0607, 0.0368, 0.0346, 0.021, 0.021, 0.0185, 0.0174], [0.0204, 0.018, 0.0062, 0.0058, 0.0055, 0.0048, 0.0038, 0.0038], [0.0278, 0.0179, 0.0109, 0.0058, 0.0051, 0.0035, 0.0028, 0.0026], [0.0166, 0.0114, 0.0095, 0.0061, 0.0048, 0.0035, 0.0033, 0.0029], [0.0087, 0.0064, 0.005, 0.0039, 0.0039, 0.0039, 0.0032, 0.0032], [0.0207, 0.0134, 0.0104, 0.0052, 0.0043, 0.0041, 0.0034, 0.0032], [0.0562, 0.0266, 0.0151, 0.0086, 0.0056, 0.0052, 0.0049, 0.0043], [0.0226, 0.0137, 0.0121, 0.0061, 0.0047, 0.0045, 0.0042, 0.0042], [0.0156, 0.0074, 0.0065, 0.0061, 0.0048, 0.004, 0.004, 0.0035], [0.0182, 0.011, 0.0067, 0.0055, 0.0055, 0.0052, 0.0052, 0.0049], [0.0217, 0.0123, 0.0109, 0.0096, 0.0096, 0.0085, 0.008, 0.0066], [0.0173, 0.0134, 0.0082, 0.006, 0.0049, 0.0039, 0.003, 0.003], [0.0104, 0.0098, 0.0086, 0.0067, 0.0063, 0.0063, 0.0059, 0.0059], [0.089, 0.0255, 0.0165, 0.0106, 0.0057, 0.0047, 0.0037, 0.0035], [0.0543, 0.0212, 0.0155, 0.01, 0.0061, 0.0054, 0.005, 0.0047], [0.0217, 0.009, 0.0075, 0.007, 0.0066, 0.0062, 0.0052, 0.0045], [0.0232, 0.0205, 0.008, 0.0055, 0.0052, 0.0046, 0.0043, 0.0043], [0.0659, 0.04, 0.0101, 0.0079, 0.0069, 0.0065, 0.0058, 0.0054], [0.0211, 0.0175, 0.0165, 0.0145, 0.0145, 0.0113, 0.0088, 0.0073], [0.0191, 0.0179, 0.0102, 0.009, 0.0075, 0.0045, 0.0043, 0.0043], [0.0425, 0.0227, 0.0188, 0.0177, 0.0156, 0.0147, 0.0138, 0.013], [0.2988, 0.0404, 0.0404, 0.0357, 0.023, 0.0216, 0.0169, 0.014], [0.4255, 0.1381, 0.0787, 0.0652, 0.0328, 0.024, 0.0113, 0.01], [0.4389, 0.1517, 0.0763, 0.0492, 0.0281, 0.0248, 0.0218, 0.0218], [0.1051, 0.0638, 0.0497, 0.0466, 0.0466, 0.0207, 0.0194, 0.0194], [0.2429, 0.0951, 0.0839, 0.0696, 0.0654, 0.0542, 0.0422, 0.0176], [0.0617, 0.0399, 0.031, 0.031, 0.0242, 0.0227, 0.02, 0.0177], [0.0882, 0.0732, 0.0687, 0.0472, 0.0253, 0.021, 0.0144, 0.0144], [0.1886, 0.1217, 0.0349, 0.0328, 0.0308, 0.0272, 0.0199, 0.0175], [0.3576, 0.14, 0.0662, 0.0312, 0.019, 0.0139, 0.0122, 0.0108], [0.4302, 0.066, 0.0214, 0.0189, 0.0167, 0.0147, 0.0147, 0.0138], [0.3513, 0.0692, 0.065, 0.0447, 0.0271, 0.0225, 0.0175, 0.0164], [0.2697, 0.1197, 0.0602, 0.0251, 0.0236, 0.0221, 0.0162, 0.0143], [0.2164, 0.0547, 0.0483, 0.0201, 0.0167, 0.013, 0.013, 0.0108], [0.1845, 0.0321, 0.0151, 0.0151, 0.0134, 0.0126, 0.0126, 0.0118], [0.2255, 0.0368, 0.0325, 0.0174, 0.0153, 0.0127, 0.0077, 0.0077], [0.1732, 0.0768, 0.0151, 0.0142, 0.0142, 0.0134, 0.0076, 0.0063], [0.2537, 0.0441, 0.0251, 0.0126, 0.0098, 0.0087, 0.0082, 0.0077], [0.1228, 0.0257, 0.0227, 0.0138, 0.0095, 0.0095, 0.0069, 0.0069], [0.0365, 0.0322, 0.0184, 0.0092, 0.0087, 0.0087, 0.0081, 0.0081], [0.069, 0.0211, 0.0113, 0.0099, 0.0088, 0.0077, 0.006, 0.006], [0.0392, 0.0073, 0.0057, 0.005, 0.005, 0.005, 0.005, 0.005], [0.0341, 0.0282, 0.0265, 0.0182, 0.0098, 0.0052, 0.0049, 0.0046], [0.065, 0.065, 0.0476, 0.0175, 0.0128, 0.01, 0.0057, 0.0044], [0.8085, 0.055, 0.0051, 0.0031, 0.0029, 0.0027, 0.0017, 0.0011], [0.5458, 0.138, 0.0371, 0.0047, 0.0042, 0.0039, 0.0039, 0.0037], [0.355, 0.2943, 0.0227, 0.0114, 0.0107, 0.0095, 0.0048, 0.0045], [0.7573, 0.0549, 0.0377, 0.0294, 0.0215, 0.0139, 0.0101, 0.0079], [0.9862, 0.0085, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002], [0.9994, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9917, 0.0052, 0.0028, 0.0001, 0.0001, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 467, "top": [[" \u2013", "\u2013", "s", " \u2013,", "\u2013and", " |\u2013", ".\u2013", " *\u2013"], [" \u2013**", " *\u2013", " \u2013,", "**\u2013", " \u2013", " |\u2013", " *@", " **\u2013"], ["**\u2013", " \u2013**", " \u2013,", " *\u2013", ".\u2013", " \u2013", "\u2013", " |\u2013"], ["*\u201c.", " milfs", " handjob", "\u52a0\u62ff\u5927", " <|", " /**<", " Shemale", " *\u2013"], [" *\u2013", " @_", " *@", " @(", ":@", " @{", "*\u201c.", " \u2013**"], [" *\u2013", " \u2013**", "**\u2013", " @_", "*\u201c.", " @[", ":@", " @{"], [" *\u2013", "**\u2013", " \u2013**", "s", " #@", " |--", " @{", "@["], [" *\u2013", "**\u2013", " \u2013**", "s", " \u2013,", ".\u2013", "@\",", " |\u2013"], [" *\u2013", " \u2013,", ".\u2013", "s", " \u2013**", "**\u2013", "@\",", "\u2013and"], ["\u2013", "\u2013and", ".\u2013", "-$", "\u2013\u2013", "s", " *\u2013", " |\u2013"], ["\u2013", " \u2013", "s", "\u2013and", "@", "-&", ".\u2013", "-$"], ["**\u2013", " *\u2013", " \u2013**", " **\u2013", " **\u2018", " \u041f\u043e\u043f\u0440\u043e", "\u0441\u043e\u0432\u0435\u0441\u0442", "\u8033\u719f\u80fd\u8be6"], ["**\u2013", " \u2013**", " *\u2013", " **\u2013", "\u8033\u719f\u80fd\u8be6", " **\u2018", " \u041f\u043e\u043f\u0440\u043e", "-_"], ["**\u2013", " \u2013**", " *\u2013", " **\u2013", "\u2013and", "\u2013", "\u8033\u719f\u80fd\u8be6", " \u2013,"], ["**\u2013", "\u2013", "\u2013and", " \u2013**", " \u2013", " --", " *\u2013", "s"], [" \u2013", "\u2013", "s", "\u2013and", " --", "\u2013\u2013", "-of", " \u2013,"], ["\u2013", " \u2013", "s", "\u2013and", "n", "\u2013\u2013", "y", "-of"], ["\u2013", "**\u2013", " \u2013**", " \u2013", "\u2013and", " \u2013,", " *\u2013", "\u8eab\u4e34\u5176\u5883"], ["**\u2013", " \u2013**", " *\u2013", "\u8eab\u4e34\u5176\u5883", "\u52e4\u52e4\u6073\u6073", "\u8033\u719f\u80fd\u8be6", " --", "stuff"], [" --", "\u2013and", "--", "-&", "\u2013", " swiftly", "\u2013\u2013", ">--"], [" --", "\u2013", "--", "\u2013and", " swiftly", " myriad", "<|endoftext|>", " \u2013"], [" --", "\u8eab\u4e34\u5176\u5883", " \u2013**", "**\u2013", "\u4e0d\u53ef\u601d\u8bae", "\u8033\u719f\u80fd\u8be6", " *\u2013", "\u52e4\u52e4\u6073\u6073"], [" --", " \u2015", " ``", " swiftly", " ''", "fully", " myriad", "--"], [" --", " \u2015", "--", " \u2013", " swiftly", " ``", "fully", " myriad"], [" --", " \u2015", "--", " \r\n \r\n", " \n\n", " swiftly", " {{--<", " \n\n\n"], [" --", " \u2015", " ``", " \u2013", " myriad", "fully", " swiftly", " technologies"], [" --", " ``", " ''", " \u2015", " technologies", " @", " {{--<", " technology"], [" --", " ,", " @", " ``", " \u2013", " \u2015", " ''", " \n\n"], [" --", " \u2013", " technology", " technologies", " ,", " @", "\u2013", " myriad"], [" --", " \n", " \u2013", " technologies", " technology", " \n  \n", " @", " __"], [" technologies", " technology", " --", " \u2013", " \n", " systems", " tech", " software"], [" \u2013", " --", " ,", " technology", "\u2013", " technologies", " -", " fully"], [" \u2013", "\u2013", " --", " technology", " technologies", " \u2013,", " \u2014", " \u2013**"], [" \u2013", "**\u2013", "\u2013", " \u2013,", " technologies", " \u2013**", " *\u2013", " technology"], [" technologies", " \u2013**", "**\u2013", " *\u2013", " tech", " optimizations", " technology", "stuff"], [" \u2013**", "\u2026*", "\u2026**", "**\u2013", " *\u2013", " \u2026", "\u2026\"", " \u2013"], [" optimizations", "-runtime", "runtime", " \u2013**", " algorithms", " runtime", " technologies", " unpredictable"], [" optimizations", " \u2013", "\u2011", " technologies", " algorithms", " complex", "less", "\u2013"], [" optimizations", " unpredictable", " algorithms", " technologies", " optimization", " improvis", " runtime", "-runtime"], [" optimizations", " algorithms", " technologies", " improvis", " unpredictable", " runtime", " fragmentation", " \u200b\u200b"], [" optimizations", " technologies", " generics", " algorithms", " runtime", " programming", " adaptations", " APIs"], [" generics", " technologies", " runtime", " APIs", " algorithms", " limitations", " optimizations", " improvis"], [" dynamically", " improvis", " flexibility", " runtime", " algorithms", " dynamic", " generics", " technologies"], [" limitations", " restrictions", " limitation", "\u53d7\u9650", " improvis", " limited", "\u7684\u9650\u5236", " automation"], [" restrictions", " limitations", " limited", "\u7684\u9650\u5236", " limitation", "limited", "\u53d7\u9650", " improvis"], [" restrictions", " limitations", "\u53d7\u9650", "\u7684\u9650\u5236", " limited", "limited", " limitation", "\u9650\u5236"], [" limitations", " restrictions", "\u53d7\u9650", " limited", "limited", " limitation", " flexibility", "\u7684\u9650\u5236"], [" limitations", "\u53d7\u9650", " restrictions", "limited", " limited", "\u9650\u5236", " flexibility", " limitation"], ["\u53d7\u9650", " restrictions", " limitations", "\u9650\u5236", "\u7684\u9650\u5236", "limited", "-limit", " Restrictions"], ["-limit", "-java", "-flex", "-framework", "\u53d7\u9650", " Restrictions", "-API", " restrictions"], ["-program", "-java", "-access", "-limit", "-API", "-framework", "-Language", "-Allow"], ["-program", "-framework", "-static", "-death", "-module", "-library", "-API", "-Methods"], ["-China", "-**", "-camera", "-framework", "-static", "-machine", "-the", "-program"], ["-**", "-kit", "-death", "-Time", "-cache", "-tool", "-camera", " Compiler"], ["-Time", "-time", "-death", "-kit", "ftime", "-the", " Compiler", "-China"], ["-Time", " Compilation", "indsight", "-the", "-time", "-**", "-Line", " Execution"], [" Compilation", "-Time", " Compiler", "-the", " compilation", " Compile", "indsight", "-Type"], [" compilation", " Compilation", "\u7f16\u8bd1", " Compiler", " Compile", "compile", " compile", "_compile"], ["-time", "-Time", " time", "time", " Time", "\u65f6\u95f4", "Time", " \u0432\u0440\u0435\u043c\u0435\u043d\u0438"], ["-time", "-Time", " time", "time", " Time", "Time", " Compilation", " compilation"], ["-Time", "-time", " time", " Time", "time", "Time", " compilation", " Compilation"], ["-Time", "-time", " Time", " time", "Time", "time", "-T", "_time"], ["-Time", "-", "-T", " Time", "-A", "-time", "-The", "-Type"]], "p": [[0.9599, 0.029, 0.0035, 0.0035, 0.0009, 0.0009, 0.0006, 0.0002], [0.618, 0.2273, 0.0948, 0.024, 0.0137, 0.0024, 0.0013, 0.0012], [0.3935, 0.1859, 0.164, 0.1278, 0.0366, 0.0285, 0.0252, 0.0119], [0.0294, 0.0215, 0.0131, 0.0084, 0.0079, 0.0079, 0.0074, 0.007], [0.1282, 0.1131, 0.0686, 0.0416, 0.0305, 0.0286, 0.0185, 0.0174], [0.1119, 0.0563, 0.0341, 0.0235, 0.0142, 0.0104, 0.0104, 0.0072], [0.0769, 0.0563, 0.0467, 0.0283, 0.0283, 0.0172, 0.0151, 0.0151], [0.2052, 0.1244, 0.0666, 0.038, 0.0296, 0.0296, 0.0149, 0.0149], [0.1894, 0.0742, 0.0423, 0.0373, 0.035, 0.0309, 0.0273, 0.0176], [0.4352, 0.0857, 0.0336, 0.0296, 0.0231, 0.0204, 0.0149, 0.0123], [0.5184, 0.0453, 0.0331, 0.0275, 0.0228, 0.0189, 0.013, 0.0101], [0.0699, 0.0579, 0.048, 0.0114, 0.0074, 0.0074, 0.0069, 0.0061], [0.1673, 0.115, 0.0895, 0.0226, 0.0094, 0.0054, 0.0047, 0.0042], [0.2475, 0.1325, 0.0969, 0.0216, 0.0131, 0.0085, 0.0066, 0.0055], [0.1157, 0.0747, 0.0514, 0.0514, 0.0353, 0.0293, 0.0258, 0.0228], [0.3287, 0.2259, 0.0504, 0.0474, 0.027, 0.0112, 0.0106, 0.0099], [0.7908, 0.1374, 0.0271, 0.0186, 0.0021, 0.0017, 0.0014, 0.0009], [0.1731, 0.1435, 0.1348, 0.0927, 0.087, 0.0283, 0.0265, 0.0161], [0.1217, 0.0836, 0.0308, 0.024, 0.0128, 0.0106, 0.0106, 0.0078], [0.3269, 0.0163, 0.0153, 0.0119, 0.0119, 0.005, 0.005, 0.005], [0.2891, 0.0209, 0.0163, 0.0144, 0.0099, 0.0082, 0.0064, 0.006], [0.0919, 0.008, 0.008, 0.0071, 0.0067, 0.0055, 0.0055, 0.004], [0.858, 0.0062, 0.0051, 0.002, 0.0012, 0.001, 0.001, 0.0008], [0.8362, 0.0056, 0.005, 0.0041, 0.0018, 0.0017, 0.0016, 0.0012], [0.8542, 0.0058, 0.004, 0.0031, 0.0026, 0.0018, 0.0018, 0.0016], [0.6881, 0.0104, 0.0034, 0.0026, 0.0025, 0.0025, 0.0023, 0.0022], [0.5785, 0.0833, 0.0083, 0.0041, 0.0041, 0.0034, 0.0027, 0.0027], [0.7042, 0.0188, 0.0137, 0.0054, 0.0045, 0.0022, 0.0022, 0.002], [0.3963, 0.0306, 0.0144, 0.0144, 0.0099, 0.0082, 0.005, 0.0044], [0.5821, 0.0328, 0.0256, 0.0199, 0.0187, 0.0083, 0.0065, 0.0035], [0.1098, 0.0755, 0.0666, 0.0487, 0.0191, 0.0116, 0.0085, 0.0075], [0.1664, 0.0612, 0.024, 0.0225, 0.0187, 0.0121, 0.0073, 0.0065], [0.4454, 0.0603, 0.0389, 0.0236, 0.0208, 0.0135, 0.0056, 0.0053], [0.0727, 0.0683, 0.0603, 0.05, 0.0469, 0.0389, 0.0285, 0.0134], [0.0624, 0.0486, 0.0355, 0.0295, 0.0158, 0.0158, 0.0148, 0.0102], [0.1056, 0.0822, 0.0682, 0.0682, 0.0531, 0.0343, 0.0284, 0.0172], [0.0285, 0.0252, 0.0162, 0.0127, 0.0127, 0.0119, 0.0112, 0.0105], [0.0511, 0.0511, 0.0213, 0.0166, 0.0129, 0.0101, 0.0101, 0.0094], [0.1416, 0.0297, 0.0246, 0.018, 0.0132, 0.0132, 0.0096, 0.0096], [0.076, 0.0141, 0.0141, 0.0141, 0.0124, 0.0109, 0.0085, 0.0085], [0.0753, 0.0429, 0.0295, 0.0203, 0.0139, 0.0109, 0.0085, 0.007], [0.0365, 0.0303, 0.0251, 0.0236, 0.0221, 0.0208, 0.0162, 0.0162], [0.0611, 0.037, 0.0288, 0.0271, 0.0271, 0.0255, 0.0186, 0.0175], [0.0718, 0.0436, 0.0182, 0.0182, 0.0151, 0.0151, 0.0141, 0.0133], [0.0869, 0.0721, 0.032, 0.0249, 0.0206, 0.0182, 0.0182, 0.0151], [0.1475, 0.1014, 0.0615, 0.0423, 0.035, 0.0241, 0.0226, 0.0213], [0.1084, 0.1018, 0.0617, 0.0545, 0.0374, 0.031, 0.0292, 0.0213], [0.0904, 0.0549, 0.0515, 0.0515, 0.0354, 0.0243, 0.019, 0.0178], [0.0724, 0.0601, 0.0364, 0.0342, 0.0221, 0.0195, 0.0162, 0.0126], [0.0292, 0.02, 0.0177, 0.0147, 0.0138, 0.0114, 0.0084, 0.0084], [0.02, 0.0188, 0.0166, 0.0156, 0.0156, 0.0137, 0.0121, 0.0114], [0.0309, 0.0213, 0.0166, 0.0137, 0.0114, 0.0107, 0.01, 0.0083], [0.0291, 0.0241, 0.0137, 0.0129, 0.0114, 0.0114, 0.0101, 0.0089], [0.02, 0.02, 0.0121, 0.0107, 0.0074, 0.0074, 0.0061, 0.0061], [0.1811, 0.014, 0.0131, 0.0123, 0.0109, 0.009, 0.008, 0.0066], [0.0659, 0.0228, 0.0177, 0.0156, 0.0147, 0.0089, 0.0084, 0.0084], [0.049, 0.0406, 0.0217, 0.0192, 0.0109, 0.0103, 0.0071, 0.0071], [0.3044, 0.2092, 0.112, 0.0467, 0.0467, 0.0412, 0.0387, 0.0283], [0.4805, 0.4805, 0.0145, 0.0145, 0.0029, 0.0025, 0.0008, 0.0003], [0.4943, 0.4363, 0.0358, 0.0116, 0.0091, 0.0019, 0.0016, 0.0016], [0.6926, 0.2548, 0.0345, 0.0112, 0.0025, 0.0013, 0.0008, 0.0003], [0.9457, 0.0367, 0.0135, 0.0021, 0.0009, 0.0004, 0.0002, 0.0], [0.9938, 0.0032, 0.0009, 0.0007, 0.0003, 0.0003, 0.0001, 0.0001]], "ranks": {}}, {"pos": 468, "top": [[" \u2013", "\u2013", ".", " ", " \u2013,", ",", ".\u2013", "\u00a0"], [" \u2013", "\u2013", " *\u2013", "\u2013and", ".\u2013", " \u2013,", "\u2013\u2013", " |\u2013"], ["\u2013", "\u2013and", ".\u2013", " *\u2013", "\u2026..", " \u2013", "\u2013\u2013", "\u2026."], [" ;;^", " Shemale", " ``(", " milfs", " Prostitu", " Blowjob", " Strec", "':''"], [" *\u2013", " \"%\"", "bote", "\u66c7", " \u20ac*", " Prostitu", " cittadin", " *\u201c"], [" *\u2013", "odka", "IFn", " RTP", " Eskort", "bote", " Prostitu", " Insg"], [" *\u2013", ".'\"", "--", " --", "-$", " *\u201c", "-&", " $\""], [" *\u2013", "\u2013and", ".\u2013", ".'\"", "-esque", ",'\"", "\u2013\u2013", "\u2013"], [" *\u2013", ".'\"", ".\u201d*", ".\u2019", ".\u2013", ",\u2019\u201d", ".\"'", "-esque"], ["\u5468\u906d", "-$", "\u2013\u2013", " *\u2013", "\tTokenNameIdentifier", "\u6289", "\u76f8\u8f83", ".'\""], ["...'", "...\"", "-esque", ".'\"", " garner", " \u2013", "...*", "..."], ["\u5468\u906d", "-esque", " **\u2018", "+-+-+-+-+-+-+-+-", " *\u2013", " garner", "\u00e4v\u00e4", " showcasing"], ["-esque", " *\u2013", "\u5468\u906d", " **\u2018", " advancements", " transformative", " **\u2013", " garner"], ["-esque", "\u5468\u906d", " \u2013", " experimentation", " transformative", " advancements", " crafting", " garner"], [" --", " \u2013", " experimentation", "\u5468\u906d", " swiftly", "-esque", "\u2014or", " garner"], [" --", " \u2013", " \u2014", " swiftly", " effortlessly", " \u2019", "\u2014or", " arguably"], [" \u2013", "\u2013", " \u2018", " \u2014", ",", " --", "-esque", " swiftly"], [" \u2013", "-esque", " experimentation", " technologies", " advancements", " technology", " showcasing", " savvy"], ["-esque", " \u2014", " --", " \u2013", " experimentation", " advancements", "\u2014or", " swiftly"], [" --", " \u2014", " \u2013", " swiftly", " myriad", " \u2019", " merely", " arguably"], [" --", " \u2014", "<|endoftext|>", " swiftly", " \u2013", " myriad", " ,", " though"], [" advancements", " ;;^", " --", " experimentation", " endeavors", " technologies", " MEDIAM", " weaponry"], [" --", " \u2015", " ``", " experimentation", " ''", " advancements", " \u2019", " technologies"], [" --", " ,", " \u2014", " \u2015", " \u2013", " \u2019", " fully", " much"], [" --", " \n\n", " \u2014", " ,", " \n  \n", " \u2015", " ---", " \n\n\n"], [" --", " ,", " \u2014", " technology", " technologies", " experimentation", " \u2015", " production"], [" --", " ,", " technology", " production", " programming", " technologies", " experimentation", " ``"], [" ,", " --", " production", " and", " \u2014", " technology", " \u2019", " ;"], [" ,", " --", " technology", " production", " technologies", " \u2014", " experimentation", " programs"], [" technology", " --", " ,", " production", " technologies", " programming", " performance", " experimentation"], [" ,", " technology", " production", " technologies", " --", " programs", " programming", " performance"], [" ,", " ...", " technology", " production", " \u2013", " \u2014", " --", " and"], [" ,", " \u2013", " technology", " \u2014", " but", " production", " and", " rather"], ["\u2014but", " \u2013", " technology", " \u2014", " technologies", " but", " production", " programming"], ["\u2014but", " technology", " \u2013", " technologies", " \u2014", " but", " programming", " production"], ["\u2014but", " \u2013", " \u2014", " technology", " technologies", " \u2014\u2014", " programming", " production"], ["\u2014but", " technology", " \u2014", " technologies", " programming", " \u2013", " but", " production"], [" technology", "\u2014but", " technologies", " software", " programming", " production", " optimization", " \u2013"], [" technology", "\u2014but", " programming", " technologies", " \u2014", " software", " production", " \u2013"], [" technology", " \u2013", "\u2014but", " technologies", "\u200b", " programming", " \u201c", " optimization"], [" technology", " technologies", " software", " production", " optimizations", " programming", " compilation", " optimization"], [" technology", " software", " technologies", " production", " compilation", " programming", " deployment", " optimization"], [" technologies", " technology", " production", " compilation", " deployment", " optimizations", " software", " programming"], [" production", " technology", " technologies", " preparation", " optimized", " optimizations", " optimization", " deployment"], [" production", " technology", " preparation", " deployment", " technologies", " optimized", " optimization", " optimizations"], [" production", " technology", " preparation", " deployment", " optimized", " pre", " technologies", " training"], [" optimized", " technology", " preparation", " production", " deployment", " optimizations", " technologies", "  \n\n"], [" optimized", " technology", " preparation", " technologies", " deployment", " production", " Limited", "\u2014but"], [" optimized", "\u2014but", ")\u2014", " preparation", "),", " optimization", " deployment", " production"], ["),", ")", ")\u2014", " optimized", " optimizations", " preparation", "\u2014which", " deployment"], [")\u2014", ")", " optimizations", "),", " optimized", "\u2014which", "-static", ")-"], [" optimizations", ")\u2014", ")", " optimized", " optimization", " conversions", " Offline", "),"], [")", " optimizations", " compilation", ")\u2014", " optimization", "),", " optimized", " conversions"], [")", " optimizations", " compilation", " optimization", " optimized", "),", " conversions", " bytecode"], [" compilation", " optimizations", " optimization", ")", " caching", " Compilation", " optimized", " bytecode"], [" compilation", " optimization", " optimizations", ")", " Compilation", " compiling", " compile", " caching"], [" compilation", " optimization", ")", " Compilation", " optimizations", " compiling", " compile", "),"], [" compilation", " Compilation", " compiling", "\u7f16\u8bd1", " compile", " compiled", " compil", "Compilation"], [" compilation", " Compilation", " compiling", "\u7f16\u8bd1", " compile", "Compilation", " compiled", " compil"], [" compilation", " Compilation", " compiling", " compiled", " compile", " compil", "Compilation", "\u7f16\u8bd1"], [" compilation", " Compilation", " compiling", " compil", " compiled", "Compilation", " compile", "\u7f16\u8bd1"], [" compilation", ")", " Compilation", "),", "comp", " compiling", " Comp", "Compilation"], [")", " compilation", "),", " Compilation", "]", " )", "Compilation", " compiling"]], "p": [[0.9567, 0.0136, 0.0078, 0.0015, 0.0007, 0.0007, 0.0006, 0.0006], [0.3029, 0.1047, 0.0766, 0.0319, 0.0081, 0.0059, 0.0046, 0.0034], [0.7955, 0.1382, 0.0272, 0.0069, 0.0065, 0.0042, 0.0022, 0.0021], [0.0417, 0.0163, 0.0087, 0.0082, 0.0077, 0.0053, 0.0053, 0.0044], [0.0336, 0.0085, 0.0062, 0.0035, 0.0031, 0.0031, 0.0029, 0.0026], [0.0088, 0.0078, 0.0057, 0.0042, 0.0034, 0.0029, 0.0029, 0.0027], [0.0293, 0.0095, 0.0079, 0.0065, 0.0058, 0.0054, 0.0051, 0.0051], [0.0696, 0.0187, 0.0187, 0.0114, 0.0107, 0.0107, 0.0078, 0.0057], [0.029, 0.0155, 0.0069, 0.0065, 0.0057, 0.0057, 0.0054, 0.0054], [0.0161, 0.0032, 0.003, 0.0028, 0.0028, 0.0026, 0.0025, 0.0021], [0.0679, 0.0387, 0.025, 0.022, 0.0126, 0.0111, 0.0092, 0.0076], [0.0168, 0.0158, 0.0048, 0.0033, 0.0031, 0.0029, 0.0027, 0.0026], [0.0186, 0.012, 0.01, 0.0073, 0.0064, 0.0053, 0.0044, 0.0027], [0.0481, 0.0177, 0.0122, 0.0095, 0.0084, 0.0078, 0.0065, 0.0065], [0.231, 0.0148, 0.0139, 0.0139, 0.0139, 0.0115, 0.0115, 0.0115], [0.1865, 0.1546, 0.073, 0.0252, 0.0144, 0.0099, 0.0087, 0.0087], [0.611, 0.0286, 0.0099, 0.0072, 0.0072, 0.0072, 0.0039, 0.0036], [0.1081, 0.0257, 0.0137, 0.0069, 0.0054, 0.0051, 0.0051, 0.0048], [0.0522, 0.0297, 0.0247, 0.015, 0.0116, 0.008, 0.008, 0.0066], [0.324, 0.1438, 0.0387, 0.0235, 0.0126, 0.0086, 0.0081, 0.0076], [0.3096, 0.107, 0.0254, 0.0239, 0.0154, 0.0136, 0.0113, 0.0082], [0.0111, 0.0092, 0.0072, 0.006, 0.0041, 0.0036, 0.0022, 0.0021], [0.3448, 0.0161, 0.0142, 0.0092, 0.0059, 0.0056, 0.0056, 0.0046], [0.4264, 0.0741, 0.0165, 0.0083, 0.0065, 0.0054, 0.005, 0.0039], [0.6474, 0.0682, 0.0365, 0.0162, 0.0087, 0.0081, 0.006, 0.0049], [0.4224, 0.0347, 0.0186, 0.0145, 0.0128, 0.0106, 0.0082, 0.0077], [0.0974, 0.0591, 0.0522, 0.046, 0.0316, 0.0279, 0.0217, 0.0192], [0.3389, 0.299, 0.014, 0.008, 0.0051, 0.0051, 0.0043, 0.0038], [0.222, 0.2085, 0.0767, 0.0437, 0.0249, 0.0151, 0.0092, 0.0092], [0.2, 0.0888, 0.0783, 0.0538, 0.0475, 0.0154, 0.0145, 0.0128], [0.1878, 0.1657, 0.0735, 0.0394, 0.0211, 0.0175, 0.0164, 0.0164], [0.2905, 0.0943, 0.069, 0.0347, 0.0347, 0.0347, 0.021, 0.0164], [0.2546, 0.113, 0.0685, 0.0442, 0.0324, 0.0268, 0.0209, 0.0153], [0.3992, 0.138, 0.1296, 0.0395, 0.0371, 0.0165, 0.0106, 0.0094], [0.3448, 0.1964, 0.0497, 0.0438, 0.0266, 0.0151, 0.0142, 0.0134], [0.2531, 0.2377, 0.1634, 0.0875, 0.0152, 0.0143, 0.0081, 0.0081], [0.4534, 0.1146, 0.0542, 0.0212, 0.0212, 0.0176, 0.0176, 0.0114], [0.1876, 0.069, 0.0446, 0.0326, 0.027, 0.0211, 0.0154, 0.0145], [0.1636, 0.0682, 0.0414, 0.0343, 0.0251, 0.0236, 0.0236, 0.0236], [0.12, 0.0642, 0.047, 0.0415, 0.0196, 0.0196, 0.0184, 0.0173], [0.163, 0.0873, 0.0321, 0.0283, 0.0221, 0.0195, 0.0172, 0.0172], [0.0976, 0.063, 0.063, 0.0491, 0.0317, 0.0298, 0.0232, 0.0192], [0.0805, 0.0756, 0.0553, 0.0315, 0.0278, 0.0278, 0.0278, 0.0261], [0.0633, 0.0558, 0.0463, 0.0264, 0.0248, 0.0248, 0.0248, 0.0193], [0.0947, 0.0447, 0.0371, 0.0307, 0.0289, 0.0255, 0.0239, 0.0165], [0.0777, 0.0391, 0.0391, 0.0268, 0.0184, 0.0184, 0.0173, 0.0135], [0.0372, 0.0187, 0.0187, 0.0176, 0.0155, 0.0137, 0.0137, 0.0128], [0.028, 0.0247, 0.017, 0.016, 0.0141, 0.0141, 0.0117, 0.011], [0.0347, 0.0154, 0.0113, 0.0106, 0.0088, 0.0088, 0.0088, 0.0082], [0.0471, 0.0416, 0.0416, 0.0135, 0.0105, 0.0068, 0.0064, 0.0064], [0.0995, 0.0728, 0.0442, 0.0323, 0.0209, 0.0127, 0.0119, 0.0099], [0.1487, 0.1397, 0.062, 0.0312, 0.0258, 0.0157, 0.0101, 0.0101], [0.2443, 0.0957, 0.0618, 0.058, 0.0311, 0.0258, 0.0227, 0.0138], [0.2898, 0.1369, 0.083, 0.0504, 0.0223, 0.0163, 0.0154, 0.0106], [0.2957, 0.1233, 0.1022, 0.0702, 0.0157, 0.013, 0.0122, 0.0095], [0.6235, 0.0956, 0.0745, 0.0274, 0.02, 0.0095, 0.0054, 0.0048], [0.7212, 0.0671, 0.0592, 0.0205, 0.0117, 0.0075, 0.0046, 0.004], [0.976, 0.0096, 0.004, 0.0027, 0.0027, 0.0019, 0.0009, 0.0009], [0.9773, 0.0158, 0.0021, 0.001, 0.001, 0.0009, 0.0008, 0.0003], [0.9788, 0.014, 0.0019, 0.0013, 0.0011, 0.0008, 0.0007, 0.0006], [0.9837, 0.0124, 0.0009, 0.0008, 0.0005, 0.0004, 0.0004, 0.0003], [0.8841, 0.064, 0.0343, 0.0019, 0.0019, 0.0016, 0.0012, 0.0012], [0.972, 0.0178, 0.0074, 0.002, 0.0001, 0.0001, 0.0, 0.0]], "ranks": {}}, {"pos": 469, "top": [[".", " \u2013", ",", "\u00a0", "\u00a0\u00a0", "\u2013", " ", ";"], [" \u2013", "\u2013", " ", ".", ",", "  \n\n", ";", "\u00a0\u00a0"], [",", ".", "\u2013", " \u2013", "\u2026", "\u2026.", "\u2026..", ";"], [" Shemale", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Strec", " \u041a\u0440\u0430\u0441\u0438", " Hidal", " **\u25cb", "uggy"], [" **#", "\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", " **\u201c", " \u2019", " (#", " (@", " ***"], [" **#", " **\u201c", "\u00a0\u00a0", " \uff09", "\u00a0\u00a0\u00a0\u00a0", "undur", "estik", " \uff08"], [" ***", " \u2019", " \uff08", "\u00a0\u00a0\u00a0\u00a0", " **\u201c", "\u00a0\u00a0", " \u201d", " ______"], [" **#", " **\u300c", " **", " ***", " **\u20ac", " **\u201c", " **\"", " **\u3010"], ["  \n\n\n", "  \n\n", " **#", " \u2019", "\u00a0", " **\u201c", "\u00a0\u00a0", "  \n    \n"], ["\u00a0\u00a0", "\u00a0", " \u00ad", "\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", ",", " tweaked", "instanc"], ["\u00a0", " \u2013", " ", " yet", " \u00ad", "\u00a0\u00a0", " #", ","], [" **", " **\u300c", " ***", " **#", " pricey", " seamlessly", " flavours", " tweaked"], [" **", " savvy", " pricey", " tweaked", " seamlessly", " fueled", " showcased", " effortlessly"], [" tweaked", " yet", " arguably", " savvy", " myriad", " pricey", " sprawling", " tweaks"], [" yet", " even", " myriad", " \u2013", " arguably", " truly", " effortlessly", " savvy"], [" even", " yet", " \u2013", " still", " more", " just", " -", " all"], [",", " even", " \u2013", " yet", " \"", " more", " ", " still"], [" tweaks", " even", " tech", " tweaked", " technology", " systems", " sprawling", " yet"], [" tweaks", " tweaked", " even", " tech", " sprawling", " wildly", " tweaking", " savvy"], [" even", " wildly", " myriad", " sprawling", " largely", " arguably", " heavily", " hugely"], ["<|endoftext|>", " myriad", " swiftly", " wildly", " even", " heavily", " sprawling", " ,"], [" sprawling", " tweaks", " pricey", " even", " ;;^", " wildly", " looming", " fueled"], [" even", " ,", " swiftly", " heavily", " sprawling", " myriad", " largely", " wildly"], [" ,", " even", " largely", " long", " heavily", " much", " still", " fully"], [" \n\n", " ,", " swiftly", " heavily", " \r\n\r\n", "  \n\n", " myriad", " sprawling"], [" **", " technology", " heavily", " even", " tech", " systems", " technologies", " sprawling"], [" ,", " technology", " systems", " even", " heavily", " software", " technologies", " hardware"], [" ,", " even", " heavily", " **", " and", " long", " still", " over"], [" ,", " even", " technology", " heavily", " systems", " still", " \n\n", " and"], [" ,", " even", " technology", " still", " and", " work", " long", " ..."], [" ,", " even", " .", " ...", " still", " technology", " work", " and"], [" ,", " .", " and", " still", " even", " ...", " in", " for"], [" ,", " still", " but", " even", " and", " .", " only", " to"], [" but", " still", " even", " ,", " yet", "\u2014but", " and", " only"], [" but", "\u2014but", " still", " yet", " even", " ,", " heavily", " though"], [" but", "\u2014but", " \u2013", " still", " yet", " ,", " \u2014", " even"], [" but", "\u2014but", " ,", " limited", " yet", " still", " \u2014", " even"], [" but", "\u2014but", " limited", " ,", " technology", " restrictions", " yet", " even"], [" but", "\u2014but", " limited", " restrictions", " technology", " ,", " even", " technically"], ["\u2014but", " but", " restrictions", " limited", " technology", " \u2013", " \u200b\u200b", "\u200b"], [" but", " restrictions", " technology", " limited", " software", "\u2014but", " technologies", " tech"], [" restrictions", " technology", " limited", " but", "\u2014but", " software", " deployment", " technologies"], [" restrictions", " technology", " limited", " deployment", " limitations", " software", " deployments", " optimized"], [" restrictions", " limited", " deployment", " technology", " deployments", " optimized", " limitations", " software"], [" restrictions", " limited", " deployment", " deployments", " optimized", " limitations", " restricted", " technology"], [" restrictions", " limited", " deployment", " deployments", " limitations", " restricted", " improvements", " production"], [" restrictions", " limited", " limitations", " deployments", " deployment", " improvements", " reductions", " versions"], [" restrictions", " limited", " deployments", " limitations", " versions", " deployment", " attempts", " restricted"], [" restrictions", " deployments", " conversions", " versions", " setups", " deployment", " limited", " optimized"], [" restrictions", " conversions", " deployments", " setups", " optimizations", " optimized", " limitations", " mandated"], [" optimizations", " deployments", " conversions", " restrictions", " setups", " optimized", " deployment", " optimization"], [" optimizations", " deployments", " optimized", " optimization", " deployment", " conversions", " setups", " restrictions"], [" optimizations", " optimization", " optimized", " compilation", " deployments", " conversions", " deployment", "optimized"], [" optimizations", " optimization", " compilation", " optimized", " deployments", " conversions", " restrictions", " deployment"], [" optimizations", " compilation", " optimization", " deployment", " deployments", " restrictions", " enabled", " serialization"], [" optimizations", " compilation", " optimization", " deployment", " serialization", " deployments", " caching", " scripting"], [" compilation", " optimizations", " optimization", " serialization", " deployment", " compiling", " scripting", "Compilation"], [" compilation", " compiling", "\u7f16\u8bd1", " compile", " Compilation", " compiled", " compil", "Compilation"], [" compilation", " Compilation", " compiling", "Compilation", "\u7f16\u8bd1", " compile", " compil", " compiled"], [" compilation", " compiling", " Compilation", " compil", "Compilation", "\u7f16\u8bd1", " compile", " compiled"], [" compilation", " compiling", " compil", " Compilation", "Compilation", "\u7f16\u8bd1", " compile", " compiled"], [" compilation", " compiling", " Compilation", " compil", "Compilation", " compilers", "\u7f16\u8bd1", " compile"], [" compilation", " Compilation", " compiling", " optimization", "Compilation", " compil", " compilers", " compile"]], "p": [[0.5485, 0.1781, 0.108, 0.051, 0.0397, 0.0273, 0.0166, 0.0065], [0.556, 0.1321, 0.0203, 0.0168, 0.0131, 0.0075, 0.004, 0.0035], [0.2872, 0.2534, 0.2237, 0.1057, 0.0726, 0.0208, 0.0126, 0.0049], [0.0206, 0.017, 0.0043, 0.004, 0.0038, 0.0036, 0.0034, 0.0032], [0.0384, 0.0133, 0.0103, 0.0097, 0.0086, 0.0063, 0.0043, 0.0038], [0.0074, 0.007, 0.0066, 0.0037, 0.0033, 0.0031, 0.0027, 0.0021], [0.0781, 0.0571, 0.0504, 0.0474, 0.0445, 0.0174, 0.0127, 0.012], [0.1614, 0.0492, 0.0338, 0.0193, 0.017, 0.016, 0.0103, 0.0091], [0.0397, 0.035, 0.0187, 0.0155, 0.0155, 0.0121, 0.0114, 0.0114], [0.0259, 0.0229, 0.0148, 0.0101, 0.0079, 0.0079, 0.0048, 0.0024], [0.152, 0.0319, 0.0182, 0.0133, 0.011, 0.0097, 0.0067, 0.0063], [0.035, 0.0129, 0.0089, 0.0089, 0.0033, 0.0033, 0.0029, 0.0025], [0.0665, 0.004, 0.0035, 0.0033, 0.0029, 0.0029, 0.0027, 0.0026], [0.009, 0.0079, 0.0074, 0.0074, 0.0062, 0.0058, 0.0048, 0.0042], [0.0457, 0.0335, 0.0148, 0.0109, 0.0102, 0.0096, 0.007, 0.007], [0.0714, 0.0298, 0.0159, 0.0124, 0.0109, 0.0109, 0.0103, 0.0085], [0.0516, 0.0456, 0.0276, 0.0139, 0.0108, 0.007, 0.0066, 0.0066], [0.0135, 0.0105, 0.0105, 0.0068, 0.0056, 0.0044, 0.0039, 0.0034], [0.0345, 0.0163, 0.0135, 0.0112, 0.0082, 0.0077, 0.006, 0.0053], [0.031, 0.0274, 0.0257, 0.0166, 0.0101, 0.0095, 0.0095, 0.0078], [0.0216, 0.0179, 0.0158, 0.0116, 0.0102, 0.009, 0.0085, 0.0085], [0.0041, 0.0032, 0.003, 0.0028, 0.0023, 0.0023, 0.0022, 0.0018], [0.0102, 0.0102, 0.0066, 0.0066, 0.0051, 0.0042, 0.004, 0.0037], [0.0737, 0.0186, 0.0088, 0.0088, 0.0083, 0.0083, 0.0069, 0.006], [0.1208, 0.0163, 0.0112, 0.0106, 0.0099, 0.0099, 0.0099, 0.0082], [0.0112, 0.0105, 0.0099, 0.0099, 0.0087, 0.0082, 0.0077, 0.0068], [0.0231, 0.018, 0.0116, 0.0103, 0.0096, 0.0096, 0.0085, 0.0071], [0.384, 0.0159, 0.0109, 0.0075, 0.0075, 0.0051, 0.0051, 0.0048], [0.2676, 0.032, 0.0161, 0.0151, 0.0086, 0.0086, 0.0086, 0.0081], [0.2694, 0.0468, 0.0251, 0.0134, 0.0118, 0.0111, 0.0092, 0.0087], [0.2071, 0.0492, 0.0408, 0.0318, 0.0298, 0.015, 0.0141, 0.0132], [0.253, 0.0468, 0.0342, 0.0322, 0.0322, 0.0267, 0.0143, 0.0143], [0.1814, 0.11, 0.0912, 0.0667, 0.0335, 0.0315, 0.0109, 0.0102], [0.4871, 0.0659, 0.0582, 0.0453, 0.0177, 0.013, 0.0115, 0.0084], [0.6482, 0.1639, 0.0208, 0.0135, 0.0112, 0.0068, 0.0046, 0.0041], [0.5834, 0.2756, 0.0146, 0.0094, 0.0094, 0.0083, 0.0073, 0.0045], [0.6278, 0.231, 0.0178, 0.007, 0.0066, 0.0062, 0.0031, 0.0029], [0.5144, 0.0951, 0.0256, 0.0212, 0.0094, 0.0089, 0.0089, 0.0083], [0.2953, 0.131, 0.0453, 0.0275, 0.013, 0.0115, 0.0089, 0.0079], [0.1528, 0.1348, 0.0598, 0.0411, 0.0265, 0.0194, 0.0104, 0.0092], [0.1257, 0.0763, 0.0673, 0.0434, 0.0264, 0.0248, 0.016, 0.0141], [0.0969, 0.0625, 0.0518, 0.043, 0.0335, 0.0314, 0.023, 0.0168], [0.2293, 0.0399, 0.0374, 0.0292, 0.0227, 0.0188, 0.0177, 0.0166], [0.2639, 0.0488, 0.0459, 0.0278, 0.0245, 0.0191, 0.0149, 0.0131], [0.3304, 0.0476, 0.0289, 0.0225, 0.0155, 0.0145, 0.0145, 0.0128], [0.2708, 0.039, 0.0268, 0.0237, 0.0196, 0.0163, 0.0119, 0.0112], [0.2781, 0.0312, 0.0214, 0.0201, 0.0157, 0.0138, 0.013, 0.013], [0.3306, 0.0476, 0.0307, 0.0225, 0.0199, 0.0165, 0.0165, 0.0155], [0.167, 0.0397, 0.0187, 0.0176, 0.0165, 0.0155, 0.0146, 0.0121], [0.2337, 0.0555, 0.0432, 0.0297, 0.0204, 0.0149, 0.0149, 0.0149], [0.1481, 0.0956, 0.07, 0.0657, 0.058, 0.031, 0.02, 0.0138], [0.4536, 0.0696, 0.0696, 0.0396, 0.035, 0.0309, 0.0199, 0.0094], [0.6405, 0.0436, 0.0409, 0.0219, 0.0206, 0.0206, 0.0133, 0.0091], [0.697, 0.0419, 0.0238, 0.0238, 0.0174, 0.0145, 0.0099, 0.0088], [0.6458, 0.0874, 0.0601, 0.0364, 0.025, 0.0111, 0.0072, 0.0072], [0.6088, 0.224, 0.0824, 0.0112, 0.0056, 0.0041, 0.0036, 0.0034], [0.7028, 0.1568, 0.0741, 0.0057, 0.0047, 0.0047, 0.0037, 0.0021], [0.9911, 0.0025, 0.0019, 0.001, 0.0008, 0.0008, 0.0006, 0.0006], [0.9949, 0.0012, 0.0012, 0.0008, 0.0007, 0.0004, 0.0003, 0.0002], [0.994, 0.0017, 0.0009, 0.0008, 0.0006, 0.0005, 0.0005, 0.0005], [0.9964, 0.001, 0.0008, 0.0008, 0.0003, 0.0002, 0.0002, 0.0001], [0.9914, 0.0025, 0.0019, 0.0013, 0.0006, 0.0004, 0.0003, 0.0003], [0.996, 0.0015, 0.0009, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001]], "ranks": {}}, {"pos": 470, "top": [[".", ",", " \u00b7", "\"", "[", " [\u2026]", "\u00b7", "\u00a0"], [" \u00b7", " \uff5e", "\u00b7", " [@", "\uff5c", "\u00ad", "\u200c", "[@"], [" \u00b7", ",", "\u00b7", ".", "[", "\uff5c", ".[", "\u00b7\u00b7"], [" **\u300c", " \uff5c", "\uff5c", " *\u00ab", " \u300c", " **\u00ab", " **\u3010", " \u00bb*"], [" \uff5c", "\uff5c", " [@", "\uff3b", " \u00b7", " \n\n\n\n\n", " (*)", " \uff3b"], ["\uff5c", " \uff5c", " \n\n\n\n\n", " \u201c.", " \n\n\n", " **\u300c", " **\u3010", " \u00b7"], [" \u00b7", "\uff5c", " \uff5c", " \u3010", " *\u00ab", " **\u3010", "\uff3b", " **\u300c"], [" **\u300c", " *\u00ab", " **\u3010", " \uff5c", " **\u00ab", "\uff5c", " \n\n\n\n\n", " *\""], [" [...]", " \n\n\n", " *\u00ab", " **\u300c", "\uff5c", " \n\n\n\n\n", " \uff5c", " *\""], [" \u00ad", " [...]", "\u00ad", " \ufffd", ",", "\u00a0", " \n\n\n\n\n", "\uff3b"], [" [...]", ".", "\u00a0", " \u00ad", ",", "\uff3b", " \u00b7", "\u00ad"], [" [...]", " **\u300c", " **\u00ab", " *\u00ab", " **[", " \u00ad", " **\u201c", " *\""], [" **\u00ab", " **\u300c", " [...]", " *\u00ab", " (\u00ab", " \u00ab", " \u00bb.", " \u00ad"], [" [...]", " \u00ad", " **\u00ab", "\u8fc7\u7a0b\u5f53\u4e2d", " arte", ",", "\u2014and", " **\u300c"], [" \u00ad", " \u2014", ",", " \ufffd", "\u00ad", "\u2014and", " arguably", " honour"], [" \u2014", " \u00ad", "\u2014and", " arguably", " arte", "\u2014including", " programmes", " seamlessly"], [",", " \u2014", ".", "\u00a0", " \"", " \u201c", " (\"", " arguably"], [",", " **\u00ab", " \u2014", " **\u300c", " **\"", " **\u201c", " **[", " **\u2014"], [" \u2014", " **\u300c", ",", " **\u00ab", " **\u2014", " **\u201c", " **\"", "\u2014and"], [" \u2014", ",", "\u2014and", " ,", " largely", " arguably", " ultimately", " increasingly"], [" ,", " \u2014", " largely", " swiftly", "\u2014and", " ultimately", " yet", " arguably"], [" ,", " **\u300c", " orchestrated", " **\u00ab", " \u00bb**", " **\u2014", " \u00bb,", "matchCondition"], [" ,", " \u2014", " largely", " swiftly", " ultimately", " rapidly", " heavily", " notably"], [" ,", " \u2014", " largely", " ultimately", " much", " fully", " rapidly", " and"], [" ,", " \n\n", " \u2014", " \n\n\n", " \n  \n", "\u2014and", "  \n\n", " largely"], [" ,", " \u2014", " **", " heavily", " **[", " rapidly", " ultimately", " largely"], [" ,", " \u2014", " heavily", " technology", " ultimately", " rapidly", " \n\n", " and"], [" ,", " \n\n", " \u2014", " and", " ___", " ________", " --", " heavily"], [" ,", " \n\n", " \u2014", " [...]", " .", " for", " and", " \n  \n"], [" ,", " \u2014", " .", " [...]", " and", " \n  \n", " for", " **"], [" ,", " .", " \u2014", " and", " for", " in", " technology", " \n"], [" ,", " .", " and", " \u2014", " for", " in", " [...]", " more"], [" ,", " \u2014", ",", " and", " for", " .", " but", " yet"], [" \u2014", " ,", "\u2014but", " yet", " \u2013", " but", " heavily", " technology"], ["\u2014but", " but", " \u2014", " yet", " ,", " heavily", "\u2014and", " still"], ["\u2014but", " \u2014", " but", " ,", " \u2013", " yet", " \u201c", "\u2014and"], ["\u2014but", " \u2014", " but", " ,", " limited", " yet", "\u2014not", " complex"], ["\u2014but", " \u2014", " \u201c", " ,", "\u2011", " but", " limited", " \u2013"], [" \u2014", "\u2014but", " \u201c", " ,", " limited", "\u2011", " complex", " \u2013"], ["\u2014but", " \u2014", " \u201c", " limited", " complex", "\u2011", " difficult", " ,"], [" limited", " restrictions", " complex", " ,", "\u2014but", " technology", " limitations", " but"], [" limited", " restrictions", " \u2014", " limitations", "\u2014but", " technology", " complex", " ,"], [" restrictions", " limited", " limitations", " complex", " technology", " technologies", " difficult", " technically"], [" restrictions", " limited", " limitations", " technology", " complex", " technologies", " restrictive", " restricted"], [" restrictions", " limited", " limitations", " restrictive", " restricted", " technology", " complex", " technologies"], [" restrictions", " limited", " limitations", " restrictive", " restricted", " complex", " limits", " constraints"], [" restrictions", " limitations", " limited", " constraints", " difficulties", " restrictive", " restricted", " complexities"], [" restrictions", " limitations", " limited", " restricted", " restrictive", " difficulties", " restrict", " constraints"], [" restrictions", " limitations", "\u2014which", " limited", " lacks", " difficulties", " restrictive", " required"], [" restrictions", " limitations", "\u2014which", " limited", " constraints", "\u7684\u9650\u5236", " restrictive", " limits"], ["\u2014which", " restrictions", " limitations", "(which", "\u7684\u9650\u5236", " constraints", " required", "\u53d7\u9650"], ["\u2014which", " required", "required", " restrictions", " via", "(which", " mandated", " (*"], ["\u2014which", "(which", " required", " restrictions", " limitations", "required", "\u2014a", " which"], ["\u2014which", "(which", " limitations", " restrictions", " required", "required", "\u2014a", " mandatory"], ["\u2014which", " limitations", " restrictions", "(which", " required", " mandatory", "required", "limitations"], ["\u2014which", " restrictions", " limitations", " mandatory", " optimizations", " required", "(which", "required"], ["\u2014which", " required", " via", " Xamarin", " mandatory", " limitations", " restrictions", " optimizations"], ["\u2014which", " limitations", " restrictions", " Xamarin", " via", " Android", " required", " mandatory"], ["\u2014which", " limitations", " via", " required", " Xamarin", " constraints", " mandatory", " restrictions"], [" via", "\u2014which", " mobile", " Xamarin", " required", " limitations", " enforced", " ("], [" mobile", " via", "\u2014which", " Xamarin", "/mobile", " (", " for", " Mobile"], [",", " (", " mobile", " for", " via", " Xamarin", " required", " Mobile"], [",", " for", " via", " required", " on", " (", " plugins", ",."]], "p": [[0.4215, 0.1757, 0.0536, 0.0392, 0.0368, 0.0253, 0.0238, 0.021], [0.6199, 0.0449, 0.035, 0.0199, 0.0199, 0.0088, 0.0061, 0.0061], [0.2679, 0.1526, 0.1347, 0.1347, 0.0636, 0.0386, 0.0133, 0.0125], [0.1981, 0.0729, 0.0366, 0.0344, 0.0082, 0.0056, 0.0053, 0.005], [0.1656, 0.1004, 0.0944, 0.0254, 0.0224, 0.0224, 0.0186, 0.0145], [0.0975, 0.0861, 0.0809, 0.0204, 0.0169, 0.0159, 0.0124, 0.0091], [0.2027, 0.0618, 0.0512, 0.0481, 0.0311, 0.0292, 0.0274, 0.0227], [0.2266, 0.1291, 0.0475, 0.037, 0.0224, 0.0186, 0.0186, 0.0164], [0.1036, 0.0973, 0.0914, 0.0554, 0.0521, 0.0381, 0.0297, 0.0192], [0.258, 0.0838, 0.0508, 0.0421, 0.0396, 0.0396, 0.0328, 0.0212], [0.701, 0.0371, 0.0349, 0.024, 0.0165, 0.0165, 0.0155, 0.0155], [0.3647, 0.0764, 0.0525, 0.0525, 0.0182, 0.0182, 0.0151, 0.0086], [0.1359, 0.0642, 0.0566, 0.0532, 0.0222, 0.0105, 0.0105, 0.0072], [0.0313, 0.0178, 0.0148, 0.0139, 0.0102, 0.009, 0.0074, 0.007], [0.0863, 0.0593, 0.0434, 0.0193, 0.0181, 0.016, 0.0063, 0.0063], [0.1449, 0.0237, 0.0112, 0.0093, 0.0068, 0.0064, 0.006, 0.0056], [0.7787, 0.0087, 0.0056, 0.0043, 0.0023, 0.0023, 0.0018, 0.0017], [0.1178, 0.0298, 0.0263, 0.0218, 0.0192, 0.015, 0.0091, 0.0066], [0.0119, 0.0098, 0.0087, 0.0077, 0.0072, 0.0068, 0.0068, 0.006], [0.0871, 0.0235, 0.0161, 0.0151, 0.0142, 0.0104, 0.0081, 0.0081], [0.1727, 0.1115, 0.0171, 0.0118, 0.0118, 0.0118, 0.0097, 0.0081], [0.0094, 0.0083, 0.0078, 0.0051, 0.0045, 0.0045, 0.0042, 0.0035], [0.2237, 0.0184, 0.0111, 0.0105, 0.0105, 0.0087, 0.0077, 0.0072], [0.5966, 0.0132, 0.0116, 0.0085, 0.0071, 0.0058, 0.0052, 0.0052], [0.2283, 0.1474, 0.1148, 0.0615, 0.0114, 0.01, 0.0078, 0.0073], [0.2991, 0.0405, 0.0159, 0.0116, 0.0075, 0.0075, 0.0066, 0.0062], [0.6221, 0.0241, 0.0065, 0.0057, 0.0054, 0.0048, 0.0048, 0.0039], [0.7659, 0.0231, 0.0169, 0.0075, 0.0038, 0.0035, 0.0035, 0.0033], [0.6972, 0.0419, 0.0347, 0.0239, 0.0113, 0.0057, 0.0057, 0.005], [0.6227, 0.0424, 0.0241, 0.0166, 0.0101, 0.0095, 0.0078, 0.0078], [0.7379, 0.0534, 0.0135, 0.0119, 0.0112, 0.0039, 0.0032, 0.003], [0.5791, 0.0539, 0.0307, 0.0225, 0.0211, 0.0106, 0.0094, 0.0078], [0.3251, 0.064, 0.0302, 0.0267, 0.0251, 0.0221, 0.0221, 0.0152], [0.1868, 0.0829, 0.057, 0.0269, 0.0237, 0.0223, 0.021, 0.0119], [0.6294, 0.0852, 0.0752, 0.0202, 0.0168, 0.0074, 0.0054, 0.0048], [0.5329, 0.2517, 0.0562, 0.0194, 0.0151, 0.0118, 0.0059, 0.0052], [0.6369, 0.0862, 0.0491, 0.0181, 0.017, 0.008, 0.0066, 0.0055], [0.4287, 0.1392, 0.0452, 0.0352, 0.0274, 0.0257, 0.0201, 0.0138], [0.2795, 0.2177, 0.0586, 0.0456, 0.0355, 0.0168, 0.0139, 0.0102], [0.153, 0.0769, 0.0679, 0.0599, 0.0438, 0.0412, 0.0266, 0.022], [0.1023, 0.0621, 0.0621, 0.0454, 0.0401, 0.0332, 0.0293, 0.0157], [0.1152, 0.1152, 0.0511, 0.0511, 0.0511, 0.0451, 0.0424, 0.0241], [0.2027, 0.09, 0.0794, 0.0794, 0.0482, 0.0189, 0.0138, 0.0122], [0.3483, 0.1062, 0.073, 0.0443, 0.0269, 0.0209, 0.0112, 0.0105], [0.5166, 0.0898, 0.0792, 0.0274, 0.0129, 0.0107, 0.0095, 0.0084], [0.4105, 0.151, 0.1038, 0.0204, 0.018, 0.0124, 0.0091, 0.008], [0.5077, 0.1133, 0.0779, 0.0119, 0.0112, 0.0093, 0.0093, 0.0087], [0.5558, 0.124, 0.0966, 0.0139, 0.0131, 0.0084, 0.0084, 0.0084], [0.3272, 0.1364, 0.0644, 0.0443, 0.0209, 0.0153, 0.0135, 0.0119], [0.5289, 0.1337, 0.0524, 0.0247, 0.0232, 0.0141, 0.0117, 0.0103], [0.8235, 0.0465, 0.0151, 0.0059, 0.0052, 0.0036, 0.0032, 0.002], [0.9028, 0.0146, 0.0061, 0.0057, 0.0039, 0.0035, 0.0027, 0.0019], [0.9958, 0.0028, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9948, 0.0017, 0.0005, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.9159, 0.0148, 0.0131, 0.0058, 0.0058, 0.0051, 0.002, 0.0017], [0.8889, 0.0099, 0.0093, 0.0087, 0.0072, 0.0072, 0.0047, 0.0025], [0.7639, 0.0169, 0.014, 0.0123, 0.0109, 0.0096, 0.0085, 0.0066], [0.6706, 0.0429, 0.0158, 0.0158, 0.0139, 0.0115, 0.0115, 0.009], [0.3898, 0.0527, 0.0437, 0.0411, 0.0341, 0.0249, 0.0234, 0.0234], [0.3688, 0.1537, 0.0823, 0.0682, 0.0284, 0.0195, 0.0184, 0.0143], [0.4331, 0.1241, 0.0403, 0.0334, 0.0334, 0.0334, 0.0244, 0.023], [0.3835, 0.1245, 0.097, 0.0804, 0.038, 0.0245, 0.0216, 0.0096], [0.9957, 0.0019, 0.0008, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 471, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", ":"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", ":"], [",", "\u2013", ".", "\u2026", ";", " \u2013", "\u2013and", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " Shemale", "----------</", " Blowjob", " ;;^", "\ufffd\ufffd"], [",", ".", ".@", ",@", "(@", "\u00a0\u00a0", ":", ":@"], [",", ".", "\u2026.", "\u2026..", "\u2013and", "\u00a0\u00a0", "!:", ":"], [",", ".", "\u00a0\u00a0", "\u00a0", "  \n", "\u2026\u201d", "!\"", ".\u2019"], [",", ".", "\u2013and", "!:", "\u2026..", "!.", "\u2026.", "\u2026but"], [",", ".", "\u2013and", "\u2026\u201d", "\u2026.", "!\u201d", "...\u201d", "\u00a0"], [",", "\u2013", "\u2013and", "\u2026but", "\u2026the", "\u00a0", "\u2026", "\u2026it"], [",", "\u00a0", "\u2026", "\u2013", " [\u2026]", "...", " \u2013", "\u2026."], [" albeit", " arguably", " pricey", " savvy", " unpredictable", " incredibly", " effortlessly", " oddly"], [" albeit", " arguably", " incredibly", " savvy", " pricey", "\u5c55\u73b0\u51fa\u4e86", " plenty", " hefty"], [" savvy", " albeit", " impactful", " arguably", " incredibly", " pricey", " hefty", "\u5c55\u73b0\u51fa\u4e86"], [" arguably", " savvy", " albeit", " showcasing", " effortlessly", " transitioning", " truly", " showcased"], [" myriad", " arguably", " sprawling", " hefty", " effortlessly", " plenty", " incredibly", " savvy"], [" myriad", " incredibly", " arguably", " countless", " sprawling", " hefty", " plenty", " seemingly"], [" countless", " hefty", " arguably", " relentless", " incredibly", " sprawling", " myriad", " savvy"], [" arguably", " savvy", " hefty", " myriad", " countless", " nuanced", " incredibly", " sprawling"], [" myriad", " arguably", "\u2014even", " swiftly", " largely", " seemingly", " effortlessly", " countless"], ["<|endoftext|>", " myriad", " swiftly", " burgeoning", " arguably", " seemingly", " relentlessly", " sprawling"], ["\u62e5\u6709\u7740", "\u5f88\u591a\u95ee\u9898", " ;;^", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", " skyrocket", "\u6211\u4e00\u5b9a\u4f1a", "\u5374\u4f9d\u7136", "\u5750\u62e5"], [" myriad", " arguably", " swiftly", "\u62e5\u6709\u7740", " {{--<", " unpredictable", " looming", " lingering"], [" myriad", " much", " arguably", " swiftly", " ultimately", " barely", " truly", " seemingly"], [" myriad", " arguably", " swiftly", " seemingly", " burgeoning", " looming", " hefty", " lingering"], ["\u62e5\u6709\u7740", " pricey", " arguably", " lingering", " relentless", " myriad", " sprawling", " struggles"], [" lingering", " unpredictable", " arguably", "\u62e5\u6709\u7740", " {{--<", " pricey", " skyrocket", " sprawling"], [" arguably", " heavily", " myriad", " much", " ultimately", " barely", " truly", " even"], [" heavily", " arguably", " much", " myriad", " even", " lingering", " ultimately", " still"], [" even", " still", " heavily", " much", " massive", " many", " countless", " remains"], [" even", " still", " heavily", " much", " many", " more", " ,", " remains"], [" still", " even", " heavily", " many", " much", " more", " ,", " long"], [" still", " even", " heavily", " much", " many", " largely", " often", " arguably"], [" heavily", " still", " complex", " even", " unpredictable", " deeply", " arguably", " aggressively"], [" heavily", " complex", " still", " unpredictable", " lingering", " arguably", " deeply", " aggressively"], [" complex", " unpredictable", " still", " notoriously", " heavily", " limited", " lingering", "\u2014even"], [" unpredictable", " complex", " slower", " limited", " limitations", " complexities", " notoriously", " poorly"], [" complex", " unpredictable", " limited", " slower", " limitations", " complexities", " complexity", " poorly"], [" complex", " unpredictable", " slower", " limited", " limitations", " complexities", " complexity", " flexibility"], [" complex", " unpredictable", " limitations", " limited", " complexities", " complexity", " slower", " flexibility"], [" complex", " limitations", " complexity", " unpredictable", " complexities", " slower", " limited", " optimizations"], [" limitations", " complex", " limited", " complexities", " flexibility", " complexity", " unpredictable", " restrictions"], [" limitations", " complex", " complexities", " restrictions", " flexibility", " limited", " complexity", " unpredictable"], [" limitations", " limited", " restrictions", " complex", " complexities", " flexibility", " unpredictable", " complexity"], [" limitations", " limited", " restrictions", " unpredictable", " restrictive", " complex", " slower", " restricted"], [" limitations", " limited", " restrictions", " unpredictable", " restrictive", " restricted", " lack", " complex"], [" limitations", " limited", " restrictions", " unavoidable", " complexities", " unpredictable", " constraints", " lack"], [" lack", " limited", " lacks", " limitations", " restrictions", "\u7f3a\u4e4f", " unavoidable", " unpredictable"], [" lacks", " limitations", " restrictions", " lack", " limited", "\u7f3a\u4e4f", " inability", " delays"], [" restrictions", " limitations", " lacks", " limited", " lack", " constraints", " restricted", " restrictive"], [" limitations", " restrictions", "\u7f3a\u4e4f", "limitations", " lacks", "\u9650\u5236\u4e86", " complexities", "\u53d7\u9650"], ["\u7f3a\u4e4f", " inability", " limitations", " restrictions", " accessing", " lacks", " dynamic", " optimizations"], [" accessing", " limitations", "\u7f3a\u4e4f", " restrictions", " inability", " runtime", " dynamic", " lacks"], [" accessing", " runtime", " limitations", " constraints", " dynamic", " restrictions", " inability", " debugging"], [" runtime", " accessing", "runtime", "-runtime", " allocating", "/runtime", " Runtime", "_runtime"], [" runtime", "-runtime", "runtime", " dynamic", "/runtime", " dynamically", " JIT", "_runtime"], [" runtime", " JIT", " dynamic", "runtime", " initializing", " allocating", "/runtime", "-runtime"], [" runtime", " JIT", " dynamic", " allocating", " initializing", "-runtime", " dynamically", " reflection"], [" reflection", " Reflection", "Reflection", " JIT", " runtime", "reflection", " reflective", "\u53cd\u5c04"], [" reflection", " Reflection", " runtime", " reflective", "Reflection", " dynamic", " allocating", " reflections"], [" dynamic", " reflection", " dynamically", " Reflection", " reflective", " runtime", " JIT", " initializing"], [" dynamic", " reflection", " marsh", " dynamically", " allocating", " startup", " initializing", " emitting"], [" dynamic", " reflection", " allocating", " emitting", " JIT", " the", " marsh", " binding"]], "p": [[0.766, 0.2195, 0.0109, 0.0015, 0.0015, 0.0003, 0.0001, 0.0], [0.5524, 0.3796, 0.0353, 0.0214, 0.0058, 0.0023, 0.0004, 0.0002], [0.8446, 0.1143, 0.0371, 0.0013, 0.001, 0.0009, 0.0002, 0.0002], [0.0108, 0.0042, 0.0033, 0.0023, 0.0023, 0.0017, 0.0015, 0.0014], [0.6113, 0.0416, 0.0072, 0.0028, 0.0016, 0.0015, 0.0014, 0.0014], [0.1314, 0.0101, 0.0095, 0.007, 0.0042, 0.0035, 0.0029, 0.0019], [0.6613, 0.1223, 0.0188, 0.0166, 0.0129, 0.0094, 0.0069, 0.0057], [0.4837, 0.0309, 0.0213, 0.0042, 0.0039, 0.0035, 0.0033, 0.0033], [0.8566, 0.0354, 0.0074, 0.0065, 0.0054, 0.0045, 0.0037, 0.0037], [0.5755, 0.0127, 0.0082, 0.006, 0.0027, 0.0025, 0.0017, 0.0015], [0.8146, 0.059, 0.0336, 0.0316, 0.0066, 0.0052, 0.004, 0.0033], [0.0058, 0.0048, 0.0033, 0.0031, 0.0028, 0.0026, 0.0024, 0.0023], [0.0055, 0.0049, 0.0049, 0.0033, 0.0029, 0.0023, 0.0023, 0.0022], [0.0081, 0.0056, 0.0056, 0.0052, 0.0046, 0.0038, 0.0036, 0.0032], [0.0179, 0.0123, 0.0115, 0.0102, 0.0079, 0.007, 0.0066, 0.0058], [0.0413, 0.0322, 0.0284, 0.0267, 0.0235, 0.0235, 0.0221, 0.0221], [0.0683, 0.0469, 0.0303, 0.0267, 0.0184, 0.0184, 0.0152, 0.0135], [0.0353, 0.0312, 0.0258, 0.0228, 0.0214, 0.0167, 0.0147, 0.0147], [0.0183, 0.0143, 0.0134, 0.0126, 0.0118, 0.0105, 0.0092, 0.0072], [0.0351, 0.0227, 0.0137, 0.0094, 0.0083, 0.0074, 0.0069, 0.0065], [0.0164, 0.0145, 0.0128, 0.006, 0.006, 0.0039, 0.0034, 0.003], [0.0045, 0.0028, 0.0024, 0.002, 0.0018, 0.0015, 0.0013, 0.0013], [0.0069, 0.0047, 0.0042, 0.0039, 0.003, 0.003, 0.0029, 0.0029], [0.0136, 0.0083, 0.0073, 0.0064, 0.006, 0.0042, 0.0042, 0.0042], [0.0183, 0.0092, 0.0092, 0.0049, 0.0046, 0.0036, 0.0036, 0.0036], [0.0059, 0.0046, 0.0038, 0.0036, 0.0034, 0.0034, 0.0034, 0.0032], [0.0054, 0.0047, 0.0042, 0.0039, 0.0035, 0.0035, 0.0035, 0.0035], [0.012, 0.0068, 0.0068, 0.0068, 0.0047, 0.0044, 0.0044, 0.0041], [0.0165, 0.0155, 0.0137, 0.0129, 0.0113, 0.0107, 0.0088, 0.0078], [0.0412, 0.0207, 0.0207, 0.0152, 0.0104, 0.0104, 0.0098, 0.0086], [0.0691, 0.0505, 0.0198, 0.0186, 0.0175, 0.0154, 0.0154, 0.0145], [0.0798, 0.0622, 0.0313, 0.0276, 0.0276, 0.0167, 0.0115, 0.0108], [0.1147, 0.0478, 0.035, 0.0199, 0.0176, 0.0146, 0.01, 0.0094], [0.0622, 0.0354, 0.0333, 0.0167, 0.0139, 0.0139, 0.0108, 0.0101], [0.0372, 0.0329, 0.024, 0.0212, 0.0129, 0.0121, 0.0114, 0.0094], [0.0626, 0.0487, 0.0245, 0.0158, 0.0158, 0.014, 0.0109, 0.0102], [0.0802, 0.0518, 0.0356, 0.0295, 0.019, 0.0148, 0.0139, 0.0131], [0.0714, 0.0592, 0.0491, 0.0407, 0.0232, 0.015, 0.015, 0.0103], [0.1193, 0.0724, 0.0497, 0.0412, 0.0342, 0.0266, 0.0266, 0.0134], [0.1658, 0.1071, 0.0475, 0.0394, 0.037, 0.0348, 0.0327, 0.0271], [0.1753, 0.1063, 0.0645, 0.0569, 0.0502, 0.0416, 0.0391, 0.0305], [0.1792, 0.1087, 0.0582, 0.0513, 0.0482, 0.04, 0.0292, 0.0292], [0.1958, 0.0925, 0.0465, 0.0437, 0.041, 0.032, 0.032, 0.0249], [0.3248, 0.0931, 0.0931, 0.0342, 0.0235, 0.0208, 0.0195, 0.0183], [0.1971, 0.1195, 0.0931, 0.0221, 0.0208, 0.0208, 0.0183, 0.0162], [0.1474, 0.1078, 0.0741, 0.0187, 0.0176, 0.0176, 0.0165, 0.0165], [0.1026, 0.085, 0.0584, 0.019, 0.0178, 0.0178, 0.0148, 0.0148], [0.1076, 0.0949, 0.0892, 0.0838, 0.0477, 0.0176, 0.0155, 0.0155], [0.1089, 0.0903, 0.0848, 0.0583, 0.0376, 0.0178, 0.0178, 0.0167], [0.1887, 0.1887, 0.0787, 0.0448, 0.0255, 0.024, 0.0212, 0.0137], [0.0712, 0.0432, 0.0204, 0.018, 0.018, 0.0169, 0.0169, 0.014], [0.041, 0.0282, 0.0264, 0.0264, 0.0248, 0.0206, 0.0182, 0.016], [0.0998, 0.0391, 0.0324, 0.0223, 0.0185, 0.0163, 0.0163, 0.0144], [0.3646, 0.0319, 0.0219, 0.0141, 0.0133, 0.0125, 0.0117, 0.0091], [0.5265, 0.1037, 0.0555, 0.0337, 0.0297, 0.0204, 0.0116, 0.0116], [0.6187, 0.0508, 0.0508, 0.0448, 0.0308, 0.0165, 0.0165, 0.0165], [0.5603, 0.0591, 0.0591, 0.0279, 0.0246, 0.0217, 0.0192, 0.0169], [0.3778, 0.2291, 0.0511, 0.0451, 0.0274, 0.0188, 0.0114, 0.0107], [0.4766, 0.1366, 0.0939, 0.0645, 0.0569, 0.0391, 0.0305, 0.0237], [0.5618, 0.1106, 0.0523, 0.0523, 0.0359, 0.0247, 0.015, 0.015], [0.5221, 0.1921, 0.0801, 0.0295, 0.026, 0.0179, 0.0096, 0.0096], [0.4783, 0.137, 0.0287, 0.027, 0.0238, 0.0224, 0.0185, 0.0174], [0.4701, 0.0562, 0.0341, 0.0265, 0.022, 0.0207, 0.0207, 0.0207]], "ranks": {}}, {"pos": 472, "top": [[".", ",", ";", "\u2013", " \u2013", "\u00a0", "\u00a0\u00a0", " "], [",", ".", "\u2013", " \u2013", ";", "\u2013and", " ", ":"], [",", ".", "\u2013", " \u2013", ";", "\u2026", "\u2026.", ".\u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "aruhi", "----------</", "-------------</", " Shemale", "TRGL", "\u0e21\u0e19\u0e38\u0e29"], [".", ",", "\u00a0\u00a0", " \u201c.", "\u2019.", "\u2026.", " \u200b\u200b", ":"], [".", " \u200b\u200b", "\u2026.", "\u00a0\u00a0", ",", "\u2026..", "!\u201d.", "=\u201d"], [".", "  \n", "  \n\n", "   \n", ".\u2019", ".\u201d", "\u00a0\u00a0", " **\""], ["   \n", " **\"", "  \n", "   \n\n", "  \n\n", "  \r\n", "       \n", "."], [".", "  \n\n", ",", " \n\n", "   \n\n", "\u00a0", "   \n", "...\u201d"], [",", "\u2013", "\u00a0\u00a0", "\u2013and", "\u00a0", "\u2026", "\u2026.", " \u00ad"], [",", "\u00a0", "...", "\u2026", ".", " [\u2026]", "\u2013", " "], [" **", " **'", " ***", " **\"", "...**", " **\u2013", "\u8d44\u8baf\u7f51", " pricey"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " impactful", " pricey", " savvy", "\u582a\u6bd4", " **\u2013", "...**", "\u8d44\u8baf\u7f51"], [" impactful", " savvy", " pricey", "-esque", "\u708e\u708e\u590f\u65e5", " showcased", " vibe", "\u5468\u906d"], [" savvy", " arguably", " effortlessly", " touted", " pricey", " hefty", " albeit", " potentially"], [" savvy", " folks", " pricey", " touted", " hefty", " sprawling", " arguably", "-esque"], [" myriad", " savvy", "-esque", " hefty", " arguably", " potentially", " sprawling", " touted"], [" hefty", " savvy", "-esque", " sprawling", " myriad", " pricey", " potentially", " touted"], [" myriad", " seemingly", " ultimately", " arguably", " sprawling", " hefty", "-esque", " potentially"], [" myriad", " seemingly", " ultimately", " arguably", " sprawling", " vastly", " hugely", " swiftly"], ["<|endoftext|>", " myriad", " ultimately", " seemingly", " swiftly", " much", " vastly", " heavily"], [" ;;^", "\u60f3\u5c3d", " myriad", "\u5e7f\u5927\u515a\u5458\u5e72\u90e8", "\u751a\u81f3\u4f1a", " ultimately", " sprawling", "\u5f88\u591a\u95ee\u9898"], [" myriad", " ultimately", " seemingly", " arguably", " sprawling", " vastly", " much", " eventually"], [" ultimately", " much", " myriad", " seemingly", " eventually", " continually", " largely", " heavily"], [" myriad", " ultimately", " seemingly", " vastly", " much", " arguably", " heavily", " hugely"], [" ultimately", " myriad", " heavily", " seemingly", " vastly", " sprawling", " arguably", " complexities"], [" ultimately", " myriad", " heavily", " arguably", " vastly", " seemingly", " eventually", " massive"], [" ultimately", " much", " heavily", " myriad", " rapidly", " eventually", " seemingly", " arguably"], [" myriad", " ultimately", " heavily", " rapidly", " much", " massive", " vastly", " complex"], [" myriad", " heavily", " complex", " ultimately", " impact", " rapidly", " massive", " much"], [" complex", " heavily", " ultimately", " much", " massive", " impact", " myriad", " heavy"], [" complex", " more", " over", " heavily", " much", " ultimately", " power", " high"], [" complex", " ultimately", " over", " still", " much", " more", " heavily", " eventually"], [" complex", " complexity", " complexities", " heavily", " technology", " potentially", " tech", " impact"], [" complex", " complexity", " complexities", " myriad", " hardware", " tech", " infrastructure", " heavily"], [" complexity", " complex", " complexities", " flexibility", " slower", " \u2026", " broader", "complex"], [" complexity", " slower", " complex", " complexities", " optimizations", " hardware", " faster", " flexibility"], [" complexity", " complex", " slower", " optimizations", " complexities", " hardware", " optimized", " flexibility"], [" complexity", " complex", " slower", " optimizations", " flexibility", " complexities", " optimized", " optimization"], [" complexity", " complex", " slower", " optimizations", " flexibility", " complexities", " optimized", " optimization"], [" complexity", " slower", " optimizations", " optimized", " optimization", " complex", " flexibility", " complexities"], [" complexity", " optimizations", " optimized", " optimization", " complexities", " efficiency", " flexibility", " complex"], [" complexity", " optimizations", " slower", " complexities", " optimized", " optimization", " flexibility", " complex"], [" complexity", " slower", " optimizations", " inefficient", " optimized", " efficiency", " complexities", " optimization"], [" slower", " complexity", " inefficient", " efficiency", " costs", " optimizations", " heavier", " complexities"], [" complexity", " slower", " inefficient", " heavier", " complexities", " indirect", " costs", " efficiency"], [" complexity", " slower", " inherently", " heavier", " complexities", " optimizations", " indirect", " inefficient"], [" lack", " complexity", " slower", " inherently", " heavier", " inherent", " indirect", " costs"], [" lack", " slower", " inherently", " complexity", " lacks", " indirect", " inherent", " heavier"], [" lack", " lacks", " complexity", " limitations", " restrictions", " constraints", " complexities", " inherent"], [" complexity", "\u7f3a\u4e4f", " lack", " inability", " overhead", " complexities", " inherent", " lacks"], [" inability", " overhead", " complexity", "\u7f3a\u4e4f", " lack", " latency", " fragmentation", " flexibility"], [" overhead", " inability", "\u7f3a\u4e4f", " lack", " inherent", " complexity", " runtime", " sheer"], [" overhead", " inability", " sheer", " lack", " runtime", " inherent", " latency", "\u7f3a\u4e4f"], [" overhead", " runtime", " lack", " inability", "\u7f3a\u4e4f", " sheer", "-runtime", "runtime"], [" runtime", " overhead", " lack", "\u7f3a\u4e4f", "-runtime", " sheer", " inability", "runtime"], [" lack", " runtime", " overhead", " JIT", " sheer", "\u7f3a\u4e4f", " inability", " memory"], [" JIT", " lack", " runtime", " sheer", " overhead", " JVM", " memory", " verbosity"], [" overhead", " JIT", " runtime", " lack", " sheer", " memory", "runtime", " inability"], [" overhead", " runtime", " CLR", " JIT", " sheer", " lack", " startup", " memory"], [" overhead", " runtime", " CLR", " JIT", " sheer", " startup", " lack", " memory"], [" overhead", " runtime", " CLR", " JIT", " sheer", " startup", " lack", " memory"], [" overhead", " CLR", " sheer", " JIT", " startup", " lack", " IL", " runtime"]], "p": [[0.7276, 0.2677, 0.0014, 0.0011, 0.0009, 0.0003, 0.0002, 0.0002], [0.4764, 0.289, 0.1547, 0.0502, 0.0135, 0.001, 0.001, 0.0007], [0.5505, 0.3783, 0.0657, 0.0022, 0.0012, 0.0007, 0.0004, 0.0002], [0.0152, 0.006, 0.003, 0.0023, 0.0021, 0.0018, 0.0017, 0.0015], [0.2316, 0.0966, 0.0355, 0.0062, 0.0048, 0.0045, 0.0037, 0.0029], [0.1734, 0.0638, 0.0599, 0.0599, 0.0221, 0.0126, 0.0076, 0.0067], [0.4225, 0.1655, 0.0782, 0.0734, 0.0254, 0.0186, 0.0145, 0.0136], [0.3921, 0.044, 0.0235, 0.0221, 0.0195, 0.0152, 0.0152, 0.0118], [0.3844, 0.2994, 0.0972, 0.0405, 0.0405, 0.0149, 0.014, 0.0102], [0.7485, 0.0329, 0.0089, 0.0089, 0.0083, 0.0069, 0.0069, 0.0057], [0.447, 0.1644, 0.113, 0.0685, 0.0685, 0.0324, 0.0324, 0.0153], [0.01, 0.006, 0.0053, 0.005, 0.0034, 0.003, 0.0027, 0.0025], [0.0076, 0.0067, 0.0025, 0.0023, 0.0021, 0.0019, 0.0018, 0.0018], [0.0084, 0.0061, 0.0048, 0.0045, 0.0035, 0.0027, 0.0021, 0.0019], [0.0123, 0.0116, 0.0109, 0.0055, 0.0051, 0.0048, 0.0048, 0.0048], [0.0184, 0.0143, 0.0135, 0.0119, 0.0119, 0.0082, 0.0068, 0.0064], [0.0118, 0.0118, 0.0098, 0.0081, 0.0076, 0.0072, 0.0068, 0.006], [0.0117, 0.0097, 0.008, 0.0076, 0.0071, 0.0063, 0.0063, 0.0059], [0.0091, 0.0086, 0.0063, 0.0059, 0.0049, 0.0038, 0.0032, 0.0032], [0.0174, 0.0082, 0.0073, 0.006, 0.0053, 0.0044, 0.0039, 0.0034], [0.5915, 0.0062, 0.0027, 0.0023, 0.0019, 0.0019, 0.0018, 0.0014], [0.0023, 0.0019, 0.0015, 0.0014, 0.0013, 0.0012, 0.0012, 0.001], [0.0125, 0.0086, 0.0038, 0.0036, 0.0034, 0.0034, 0.0034, 0.0028], [0.022, 0.0183, 0.0142, 0.0071, 0.0067, 0.0049, 0.0049, 0.0049], [0.0251, 0.0183, 0.0126, 0.0087, 0.0081, 0.0076, 0.0067, 0.006], [0.0139, 0.0109, 0.0079, 0.0062, 0.0051, 0.0051, 0.0051, 0.0043], [0.0239, 0.0136, 0.0113, 0.0057, 0.0057, 0.0057, 0.0057, 0.0053], [0.0258, 0.0189, 0.0138, 0.013, 0.0095, 0.0095, 0.0095, 0.0074], [0.0434, 0.028, 0.0232, 0.017, 0.0132, 0.0097, 0.0097, 0.0085], [0.039, 0.0345, 0.0324, 0.0196, 0.0184, 0.0173, 0.0173, 0.0105], [0.0313, 0.026, 0.026, 0.0229, 0.0168, 0.0139, 0.0131, 0.0123], [0.0618, 0.0166, 0.0166, 0.0156, 0.0147, 0.0138, 0.0138, 0.0138], [0.035, 0.0329, 0.0212, 0.0187, 0.0187, 0.0176, 0.0165, 0.0165], [0.2422, 0.0371, 0.0289, 0.0175, 0.0175, 0.0137, 0.0137, 0.0106], [0.2352, 0.1259, 0.0921, 0.0133, 0.0117, 0.011, 0.0103, 0.0097], [0.3259, 0.2538, 0.0642, 0.0196, 0.0184, 0.0082, 0.0072, 0.0064], [0.3381, 0.2051, 0.1098, 0.0335, 0.0158, 0.0131, 0.0085, 0.0066], [0.4086, 0.11, 0.071, 0.0261, 0.0245, 0.0123, 0.0116, 0.0096], [0.497, 0.0864, 0.0864, 0.028, 0.0263, 0.0232, 0.0132, 0.0091], [0.4543, 0.0895, 0.0697, 0.0397, 0.0373, 0.0273, 0.0187, 0.0114], [0.4127, 0.0921, 0.0921, 0.0318, 0.0281, 0.0281, 0.0264, 0.0219], [0.3916, 0.0874, 0.053, 0.0364, 0.0284, 0.025, 0.0221, 0.0221], [0.2871, 0.0822, 0.0389, 0.0343, 0.0322, 0.0251, 0.0208, 0.0162], [0.1733, 0.0723, 0.0723, 0.0283, 0.0266, 0.0266, 0.025, 0.0183], [0.1215, 0.1215, 0.0348, 0.0255, 0.0225, 0.0211, 0.0198, 0.0186], [0.1337, 0.0919, 0.0338, 0.0298, 0.0263, 0.0205, 0.0193, 0.0193], [0.1611, 0.0631, 0.0338, 0.0317, 0.028, 0.0232, 0.0232, 0.017], [0.1748, 0.0826, 0.0729, 0.047, 0.0268, 0.0268, 0.0252, 0.0196], [0.1796, 0.0583, 0.0483, 0.0401, 0.0259, 0.0243, 0.0228, 0.0147], [0.1838, 0.0527, 0.0527, 0.0495, 0.0319, 0.0282, 0.022, 0.0206], [0.0735, 0.0475, 0.0288, 0.0271, 0.0224, 0.0198, 0.0164, 0.0128], [0.1024, 0.1024, 0.0661, 0.0454, 0.0332, 0.0215, 0.0157, 0.0148], [0.5033, 0.0681, 0.0322, 0.0267, 0.0195, 0.0183, 0.0183, 0.0162], [0.7372, 0.0252, 0.0223, 0.0153, 0.0144, 0.0135, 0.0119, 0.0087], [0.6179, 0.0948, 0.0836, 0.0349, 0.0349, 0.024, 0.01, 0.01], [0.2738, 0.2416, 0.1465, 0.0476, 0.042, 0.042, 0.0327, 0.0255], [0.4079, 0.1324, 0.091, 0.0709, 0.0552, 0.0487, 0.023, 0.0158], [0.4812, 0.1379, 0.1217, 0.0395, 0.0271, 0.024, 0.024, 0.0145], [0.9527, 0.0224, 0.0174, 0.0018, 0.0007, 0.0007, 0.0006, 0.0004], [0.6157, 0.2265, 0.0394, 0.0347, 0.0239, 0.01, 0.01, 0.006], [0.3735, 0.2909, 0.107, 0.0944, 0.0394, 0.0211, 0.0128, 0.0068], [0.4264, 0.1222, 0.1078, 0.0951, 0.0577, 0.0509, 0.035, 0.0107], [0.5357, 0.0931, 0.0725, 0.0725, 0.0388, 0.0251, 0.0195, 0.0195]], "ranks": {}}, {"pos": 473, "top": [[",", ".", " \u2013", "\u2013", ";", "-", " ", "\u00a0"], [" \u2013", "\u00ad", ",", "\u2013", "\u2013and", " ", ".", ";"], [",", "\u2013", ".", " \u2013", "\u2013and", ";", ".\u2013", "\u2026"], ["enzie", "ingly", " fkk", " Golk", " knull", "raries", "tus", "uggy"], ["ingly", "ness", "itude", "tus", "y", "ened", "eur", "nowled"], ["ness", "ingly", "tus", "itude", "nowled", "iveness", "eur", "enstein"], ["ness", " havoc", "nowled", "lust", "tus", "rak", "ened", "raries"], ["ness", "iveness", "nowled", " havoc", "erness", "ingly", "fully", "-of"], ["ness", "nowled", "\u00ad", "iveness", "erness", "rance", " havoc", "\u00a0"], ["ness", "\u00ad", "\u2013", "\u00a0", "\u2013and", "iveness", "nowled", "fully"], ["\u00a0", "\u00ad", "\u2013", "ness", "l", " \u00ad", "y", " \u2013"], ["ness", "iveness", " havoc", "nowled", "fully", "ful", "erness", " detriment"], ["ness", "iveness", " havoc", " detriment", "nowled", " entirety", "fully", "erness"], [" havoc", " entirety", "ness", " detriment", "iveness", " reliance", "nowled", "fully"], [" entirety", " havoc", " albeit", " detriment", " reliance", " effortless", "\u52bf\u5934", "fully"], [" entirety", " havoc", " effortless", " standout", " touted", " detriment", " reliance", "\u52bf\u5934"], [" entirety", " effortless", " standout", " touted", " havoc", " potentially", "fully", " reliance"], [" entirety", " effortless", " havoc", " standout", "\u5b58\u5728\u611f", " reliance", " touted", " effortlessly"], [" entirety", " havoc", " touted", "\u5b58\u5728\u611f", " standout", " effortless", " reliance", " effortlessly"], [" entirety", " seemingly", " havoc", " touted", " effortless", " myriad", "fully", " effortlessly"], [" seemingly", " myriad", "<|endoftext|>", " entirety", "fully", " requisite", "ably", "\u52a0\u4e4b"], ["\u5b58\u5728\u611f", "\u52bf\u5934", " havoc", "iveness", "acerb", " entirety", "\u548c\u4e0d\u8db3", " detriment"], ["\u5b58\u5728\u611f", " entirety", " reliance", "iveness", " detriment", "\u52bf\u5934", " effortless", " havoc"], [" lack", "fully", " entirety", "\u5b58\u5728\u611f", " absence", " myriad", " reliance", " seemingly"], ["\u5b58\u5728\u611f", " reliance", " effortless", " entirety", "iveness", " requisite", "\u5145\u88d5", "\u76f8\u8f83"], ["\u5b58\u5728\u611f", " reliance", "acerb", "iveness", "ailability", " flexibility", " impactful", " effortless"], [" reliance", "iveness", " flexibility", "\u5b58\u5728\u611f", " absence", " lack", " detriment", " weaponry"], [" reliance", " lack", " myriad", " arguably", " absence", " flexibility", " requisite", " weaponry"], [" reliance", " reliant", " flexibility", " absence", " lack", "\u5b58\u5728\u611f", " impactful", "acerb"], [" reliance", " flexibility", " lack", " absence", " reliant", " availability", " inability", " infrastructure"], [" lack", " reliance", " absence", " flexibility", " dominance", " infrastructure", " ability", " access"], [" lack", " flexibility", " reliance", " critical", " dominance", " access", " technology", " infrastructure"], [" lack", " flexibility", " reliance", " critical", " technology", " dominance", " access", " technological"], [" flexibility", " reliance", " infrastructure", " lack", " technological", " absence", " nuanced", " priorit"], [" flexibility", " reliance", " infrastructure", " lack", " nuanced", " priorit", " absence", " limitations"], [" flexibility", " limitations", " reliance", " scalability", " infrastructure", " restrictive", " inherently", " nuanced"], [" flexibility", " optimizations", " optimization", " hardware", " scalability", " inherently", " optimized", " flexible"], [" flexibility", " optimization", " optimizations", " optimized", " inherently", " hardware", " scalability", " infrastructure"], [" flexibility", " optimizations", " optimization", " optimized", " access", " flexible", " unrestricted", " inherently"], [" flexibility", " optimizations", " optimization", " optimized", " access", " unrestricted", " flexible", " hardware"], [" optimizations", " optimization", " optimized", " flexibility", " hardware", " access", " unrestricted", " direct"], [" optimizations", " optimization", " optimized", " flexibility", " hardware", " access", " control", " optimizing"], [" optimizations", " optimization", " optimized", " flexibility", " direct", " access", " hardware", " control"], [" optimizations", " optimization", " flexibility", " optimized", " unrestricted", " access", " optimizing", " direct"], [" optimization", " optimizations", " flexibility", " direct", " access", " unrestricted", " optimized", " control"], [" access", " direct", " unrestricted", " optimizations", " flexibility", " optimization", " control", " optimized"], [" direct", " access", " flexibility", " optimizations", " unrestricted", " optimization", " optimized", " flexible"], [" direct", " unrestricted", " access", " flexibility", " optimizations", "\u76f4\u63a5\u63a5\u89e6", " optimization", " explicit"], [" direct", " unrestricted", " optimizations", "\u76f4\u63a5\u63a5\u89e6", " flexibility", " access", "\u76f4\u63a5\u4f7f\u7528", "\u4e25\u683c\u63a7\u5236"], ["\u76f4\u63a5\u63a5\u89e6", " direct", " unrestricted", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7684", "\u4e25\u683c\u63a7\u5236", "\u7684\u76f4\u63a5", " optimizations"], ["\u76f4\u63a5\u63a5\u89e6", " optimizations", " direct", " flexibility", "\u4e25\u683c\u63a7\u5236", "\u76f4\u63a5\u7684", "\u76f4\u63a5", "\u76f4\u63a5\u4f7f\u7528"], [" optimizations", "optimized", " flexibility", "native", " optimization", " optimized", "\u4e25\u683c\u63a7\u5236", "-native"], [" optimizations", " optimization", "optimized", "native", " flexibility", " optimized", " direct", "control"], [" optimizations", "native", " optimization", "optimized", "control", "-native", " native", " control"], ["control", " control", " access", " optimizations", "\u63a7\u5236", "/control", "Control", "-control"], ["control", " control", "\u63a7\u5236", " access", "/control", " optimizations", "Control", "-control"], [" control", "control", "/control", " direct", "\u63a7\u5236", " access", " JIT", "native"], [" JIT", " control", " optimizations", " native", "native", " access", " manual", " direct"], [" control", " JIT", "control", "Fine", "fine", " fine", " manual", "/control"], [" control", " fine", " JIT", " manual", "Fine", "fine", " direct", " native"], [" fine", "fine", "Fine", " direct", " JIT", " Fine", " native", " pointer"], [" fine", " direct", " of", " JIT", " pointer", " native", " manual", " deterministic"], [" of", " fine", " direct", " JIT", " manual", " native", " pointer", " true"]], "p": [[0.5571, 0.3379, 0.0335, 0.0191, 0.009, 0.0062, 0.0058, 0.0045], [0.15, 0.15, 0.1324, 0.1244, 0.0191, 0.0191, 0.0131, 0.0109], [0.5126, 0.3992, 0.0371, 0.0255, 0.0083, 0.0073, 0.0011, 0.0007], [0.0056, 0.0036, 0.0034, 0.0032, 0.0028, 0.0022, 0.0021, 0.0019], [0.0906, 0.0751, 0.009, 0.0079, 0.0074, 0.0066, 0.0051, 0.004], [0.1186, 0.03, 0.0133, 0.0086, 0.0071, 0.0055, 0.0041, 0.0036], [0.0903, 0.0178, 0.0108, 0.0084, 0.0079, 0.0074, 0.0054, 0.0054], [0.1553, 0.0393, 0.0254, 0.0154, 0.0113, 0.0099, 0.0077, 0.0077], [0.1888, 0.0349, 0.0212, 0.0199, 0.0129, 0.0129, 0.0088, 0.0088], [0.1527, 0.0637, 0.0528, 0.0207, 0.0142, 0.0118, 0.0111, 0.0092], [0.1779, 0.1475, 0.084, 0.0789, 0.045, 0.02, 0.0176, 0.0146], [0.2073, 0.0524, 0.0218, 0.0141, 0.0103, 0.0091, 0.0076, 0.0071], [0.0591, 0.0297, 0.0169, 0.0109, 0.0096, 0.0075, 0.0048, 0.0048], [0.0124, 0.0117, 0.011, 0.0085, 0.008, 0.0029, 0.0028, 0.0028], [0.0195, 0.0172, 0.0067, 0.0063, 0.0044, 0.0041, 0.0036, 0.0034], [0.0614, 0.0078, 0.0061, 0.0061, 0.0061, 0.0039, 0.0039, 0.0037], [0.0362, 0.0125, 0.0118, 0.0081, 0.0081, 0.0059, 0.0052, 0.0052], [0.0213, 0.0156, 0.0121, 0.0095, 0.0083, 0.0074, 0.0069, 0.0051], [0.0182, 0.0142, 0.0118, 0.011, 0.0086, 0.0081, 0.0067, 0.0043], [0.0159, 0.0109, 0.0109, 0.0085, 0.008, 0.0075, 0.0066, 0.0062], [0.0076, 0.0067, 0.006, 0.006, 0.0053, 0.0038, 0.0038, 0.0038], [0.0097, 0.008, 0.0043, 0.0033, 0.003, 0.0024, 0.0024, 0.0023], [0.012, 0.0068, 0.0064, 0.0047, 0.0044, 0.0042, 0.0039, 0.0034], [0.0088, 0.0061, 0.0054, 0.0042, 0.0037, 0.0037, 0.0035, 0.0033], [0.0082, 0.0064, 0.0047, 0.0047, 0.0041, 0.0032, 0.0028, 0.0028], [0.0079, 0.0065, 0.0065, 0.0065, 0.0048, 0.0048, 0.004, 0.0031], [0.0113, 0.0057, 0.0053, 0.0053, 0.0042, 0.0037, 0.0037, 0.0037], [0.012, 0.0113, 0.0057, 0.0053, 0.005, 0.0047, 0.0044, 0.0044], [0.0269, 0.0112, 0.0099, 0.0064, 0.0064, 0.006, 0.0053, 0.0047], [0.0393, 0.0197, 0.0185, 0.012, 0.012, 0.0068, 0.0064, 0.0053], [0.1113, 0.0361, 0.0248, 0.0233, 0.0133, 0.0091, 0.0091, 0.0086], [0.1361, 0.0304, 0.0285, 0.0184, 0.0153, 0.0143, 0.0135, 0.0119], [0.063, 0.0382, 0.0247, 0.0169, 0.0132, 0.0124, 0.0116, 0.0103], [0.074, 0.0328, 0.0199, 0.0199, 0.0113, 0.0107, 0.0094, 0.0094], [0.0524, 0.0383, 0.017, 0.016, 0.0124, 0.0091, 0.0091, 0.0075], [0.2471, 0.0116, 0.0116, 0.0109, 0.0096, 0.0085, 0.0079, 0.0075], [0.2801, 0.0245, 0.023, 0.0148, 0.0148, 0.0139, 0.0116, 0.009], [0.2333, 0.0459, 0.0405, 0.0204, 0.0204, 0.0116, 0.0109, 0.0102], [0.2242, 0.12, 0.1127, 0.047, 0.0173, 0.0143, 0.0119, 0.0112], [0.2087, 0.1347, 0.1117, 0.0562, 0.0282, 0.0234, 0.0207, 0.0104], [0.2563, 0.1996, 0.0943, 0.0572, 0.0288, 0.0288, 0.0224, 0.0198], [0.2107, 0.1859, 0.0775, 0.0684, 0.05, 0.039, 0.0323, 0.0196], [0.213, 0.1659, 0.0784, 0.0573, 0.037, 0.0348, 0.0225, 0.0186], [0.2915, 0.2004, 0.065, 0.0574, 0.0327, 0.0255, 0.0225, 0.0225], [0.1561, 0.1377, 0.0835, 0.0835, 0.0651, 0.0447, 0.0327, 0.0271], [0.1441, 0.1272, 0.0725, 0.0681, 0.0564, 0.0439, 0.0267, 0.0195], [0.15, 0.1168, 0.1031, 0.0803, 0.0803, 0.0314, 0.0179, 0.0116], [0.3511, 0.1006, 0.0888, 0.0446, 0.0348, 0.0254, 0.012, 0.0106], [0.1287, 0.0608, 0.0537, 0.0537, 0.0418, 0.0185, 0.0144, 0.0127], [0.1072, 0.1072, 0.0574, 0.0348, 0.0288, 0.0271, 0.0255, 0.0255], [0.0436, 0.0436, 0.0248, 0.0248, 0.0206, 0.0193, 0.0193, 0.0151], [0.1883, 0.0785, 0.0507, 0.042, 0.0327, 0.0128, 0.012, 0.01], [0.3468, 0.0877, 0.0683, 0.0532, 0.0389, 0.0222, 0.0196, 0.0119], [0.3236, 0.1528, 0.0927, 0.0386, 0.0301, 0.0234, 0.0234, 0.0183], [0.2457, 0.2457, 0.1914, 0.0377, 0.0377, 0.0333, 0.0293, 0.0229], [0.2625, 0.2625, 0.0586, 0.0456, 0.0403, 0.0403, 0.0314, 0.0277], [0.4434, 0.2094, 0.0467, 0.0321, 0.0321, 0.0283, 0.0195, 0.0195], [0.2809, 0.071, 0.071, 0.071, 0.0627, 0.0431, 0.038, 0.038], [0.4016, 0.1477, 0.0896, 0.048, 0.0423, 0.033, 0.0257, 0.0227], [0.3317, 0.1567, 0.0653, 0.0396, 0.035, 0.035, 0.0309, 0.0272], [0.6732, 0.0553, 0.0553, 0.043, 0.0335, 0.0278, 0.0149, 0.009], [0.2416, 0.1661, 0.1465, 0.065, 0.0447, 0.0225, 0.0211, 0.0198], [0.7173, 0.0667, 0.0131, 0.009, 0.0085, 0.008, 0.0075, 0.0062]], "ranks": {}}, {"pos": 474, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", ",.", "?"], [" \u2013", "\u2013", ".", " \u200b\u200b", "\u2013and", "\u200b\u200b", ".\u2013", ","], ["\u2013", ".", ",", " \u2013", ".\u2013", "\u2026..", "\u2013and", "\u2026."], [" milfs", " Shemale", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", " Strec", "*\u201c.", " ;;^"], [" \u200b\u200b", "\u200b\u200b", ".\u201c", ".@", ".", " Pop", ".\u2013", ":@"], [" \u200b\u200b", ".\u2013", "\u2026..", " Guta", "\u2013and", "!\u201c", "\u2026.", "\ud83d\ude42"], [" *\u201c", " \u201a", ".\u201c", " \u201e", " \u200b\u200b", " *\u201e", "..\"", ".\u2013"], [" *\u201c", " \u200b\u200b", "*\u201c.", ".\u2013", " \n \n", " *\u201e", " \u201a", "\u2018s"], [".\u201c", ".\u2013", " \u200b\u200b", " \n \n", " \u2013", ".", " *\u201c", "\u2013and"], ["\u2013", ".\u2013", "\u2013and", ",", " \u2013", "\u00a0", "\u2013\u2013", "\u2026"], [" \u2013", "\u2013", "\u00a0", ",", " ", "\u2026", ".\u2013", "."], [" \u2013", " weaponry", " *\u201c", " showcasing", " potential", " supportive", " potentially", " scrambling"], [" \u2013", "\u2013", " weaponry", " potential", " supportive", " transformative", " \u2018", " showcasing"], [" \u2013", "\u2013", " weaponry", "\u2013and", " access", " transformative", " potential", " experimentation"], [" \u2013", "\u2013", " potential", " offering", " access", " weaponry", " experimentation", " "], [" \u2013", " potential", " potentially", " showcasing", " myriad", " impact", " offering", " access"], [" \u2013", "\u2013", " myriad", " potential", " bolster", " potentially", "\u2013and", " access"], [" \u2013", " resources", " access", " tweaking", " flexibility", " potential", " tech", " showcasing"], [" weaponry", " critical", " access", " groundwork", " potentially", " flexibility", " resources", " impact"], [" myriad", " weaponry", " sprawling", " heavily", " potentially", " arguably", " critical", " impact"], ["<|endoftext|>", " \n\n", " myriad", " much", " heavily", " numerous", " \u2013", " ultimately"], [" ``", " commercial", " critical", " performance", " impact", " resources", " heavily", " modern"], [" ``", " --", " heavily", " commercial", " myriad", " much", " fully", " ultimately"], ["<|endoftext|>", " --", " much", " more", " ,", " ``", " fully", " heavily"], [" \n\n", " ``", " --", " heavily", " myriad", " arguably", " ultimately", " much"], [" ``", " technology", " hardware", " modern", " technological", " technologies", " heavily", " weaponry"], [" ``", " technology", " hardware", " technologies", " technological", " modern", " weaponry", " heavily"], [" --", " heavily", " ,", " ultimately", " modern", " technology", " ``", " much"], [" technology", " heavily", " modern", " technologies", " hardware", " tech", " weaponry", " ultimately"], [" technology", " technologies", " hardware", " modern", " infrastructure", " tech", " tools", " performance"], [" technology", " modern", " technologies", " global", " tools", " hardware", " tech", " performance"], [" technology", " modern", " power", " high", " global", " traditional", " heavily", " technical"], [" technology", " modern", " power", " traditional", " global", " direct", " technological", " technologies"], [" technology", " technologies", " flexibility", " technological", " hardware", " tech", " global", " technical"], [" technology", " flexibility", " hardware", " infrastructure", " technologies", " tech", " inherently", " immersive"], [" hardware", " flexibility", " direct", " infrastructure", " native", " directly", " inherently", " technology"], [" direct", " hardware", " directly", " optimization", " optimizations", " optimized", " native", " flexibility"], [" direct", " optimization", " directly", " optimizations", " optimized", " native", " hardware", " inherently"], [" optimization", " optimizations", " optimized", " direct", " directly", " native", " hardware", " optimizing"], [" direct", " directly", " optimization", " optimizations", " optimized", " native", " hardware", " Direct"], [" direct", " directly", " optimizations", " optimization", " optimized", " Direct", " hardware", " native"], [" direct", " directly", " optimization", " optimizations", " optimized", " Direct", " optimizing", " hardware"], [" direct", " directly", " Direct", " optimization", " optimizations", " optimized", "Direct", "direct"], [" direct", " directly", " Direct", " optimizations", " optimization", " optimized", "Direct", "direct"], [" direct", " directly", " Direct", " optimization", " optimizations", " optimized", "direct", "Direct"], [" direct", " directly", " Direct", " optimizations", " optimization", "direct", " optimized", "Direct"], [" direct", " Direct", " directly", "direct", " optimizations", "Direct", "\u7684\u76f4\u63a5", " optimization"], [" direct", " Direct", " directly", "Direct", "direct", "\u7684\u76f4\u63a5", "\u76f4\u63a5\u63a5\u89e6", "\u76f4\u63a5"], [" direct", " Direct", " directly", "direct", "Direct", "\u7684\u76f4\u63a5", "\u76f4\u63a5\u7684", "\u76f4\u63a5\u63a5\u89e6"], [" direct", " Direct", "\u76f4\u63a5\u63a5\u89e6", "\u76f4\u63a5\u7684", "\u7684\u76f4\u63a5", " directly", "Direct", "\u76f4\u63a5\u4f7f\u7528"], [" direct", "\u76f4\u63a5\u63a5\u89e6", "\u76f4\u63a5\u7684", "\u76f4\u63a5", "\u76f4\u63a5\u4f7f\u7528", "\u7684\u76f4\u63a5", "Direct", "direct"], [" direct", " optimizations", "\u76f4\u63a5\u63a5\u89e6", "\u7684\u76f4\u63a5", " optimization", " seamless", "\u76f4\u63a5\u4f7f\u7528", "\u76f4\u63a5\u7684"], [" direct", " optimizations", " optimization", "\u76f4\u63a5\u63a5\u89e6", " optimized", "\u76f4\u63a5", "Direct", "\u76f4\u63a5\u4f7f\u7528"], [" optimizations", " direct", " optimization", " optimized", " optimizing", "optimized", "-native", " SIMD"], [" direct", " optimizations", " control", " optimization", "control", " optimized", "/control", "-control"], [" direct", " optimizations", " control", " garbage", " JIT", " SIMD", " memory", "-native"], [" direct", " control", " garbage", " native", " Direct", " JIT", " SIMD", "Direct"], [" direct", " manual", " JIT", " native", " memory", " optimizations", " pointers", " control"], [" control", " direct", " manual", " JIT", " SIMD", " tight", " GC", " Control"], [" direct", " control", " native", " pointer", " pointers", " manual", " Control", " fine"], [" direct", " fine", " deterministic", " native", " manual", " control", " SIMD", " pointer"], [" direct", " deterministic", " fine", " native", " pointer", " manual", " true", " precise"], [" direct", " fine", " manual", " deterministic", " native", " true", " pointer", " precise"]], "p": [[0.8984, 0.0737, 0.0186, 0.0053, 0.0009, 0.0008, 0.0003, 0.0002], [0.5677, 0.0871, 0.0678, 0.0496, 0.0104, 0.0104, 0.0076, 0.0056], [0.3709, 0.3273, 0.1364, 0.1063, 0.0185, 0.0105, 0.0082, 0.0068], [0.0453, 0.0114, 0.0101, 0.0079, 0.0074, 0.0054, 0.0048, 0.0048], [0.2481, 0.0045, 0.0033, 0.0029, 0.0024, 0.0024, 0.0021, 0.0019], [0.4382, 0.0218, 0.0036, 0.003, 0.0024, 0.002, 0.0018, 0.0014], [0.1317, 0.0851, 0.0485, 0.0313, 0.0229, 0.0167, 0.0167, 0.0108], [0.0609, 0.0572, 0.0369, 0.0288, 0.021, 0.0186, 0.0164, 0.0145], [0.1801, 0.1317, 0.1163, 0.0549, 0.0485, 0.0402, 0.0377, 0.0244], [0.3876, 0.0717, 0.0558, 0.0361, 0.0248, 0.008, 0.008, 0.0046], [0.39, 0.39, 0.0678, 0.0265, 0.0265, 0.0142, 0.0111, 0.0092], [0.0099, 0.0064, 0.0034, 0.0028, 0.0027, 0.0022, 0.0022, 0.0018], [0.0239, 0.0047, 0.0047, 0.0039, 0.0025, 0.0024, 0.0024, 0.0021], [0.0177, 0.0089, 0.0045, 0.0022, 0.002, 0.0017, 0.0017, 0.0016], [0.0225, 0.0094, 0.0044, 0.0042, 0.0034, 0.0032, 0.0032, 0.003], [0.008, 0.0066, 0.0046, 0.0036, 0.0033, 0.0033, 0.0031, 0.0026], [0.0604, 0.0415, 0.0056, 0.0047, 0.0034, 0.0032, 0.0032, 0.003], [0.0031, 0.0024, 0.0021, 0.002, 0.0018, 0.0016, 0.0015, 0.0015], [0.0022, 0.0022, 0.0017, 0.0017, 0.0017, 0.0017, 0.0017, 0.0016], [0.0044, 0.003, 0.003, 0.0027, 0.0022, 0.0015, 0.0015, 0.0014], [0.7378, 0.0041, 0.0019, 0.0013, 0.0012, 0.001, 0.0009, 0.0009], [0.0042, 0.0035, 0.002, 0.0019, 0.0019, 0.0017, 0.0017, 0.0017], [0.0898, 0.0242, 0.0057, 0.0051, 0.0051, 0.0042, 0.0039, 0.0037], [0.0188, 0.0166, 0.0121, 0.0078, 0.0074, 0.0069, 0.0069, 0.0061], [0.0253, 0.0238, 0.0163, 0.012, 0.0112, 0.005, 0.0041, 0.0041], [0.0265, 0.0265, 0.0206, 0.0133, 0.011, 0.011, 0.0097, 0.0086], [0.0436, 0.0282, 0.0133, 0.0125, 0.011, 0.0097, 0.0091, 0.0063], [0.0267, 0.0152, 0.0134, 0.0082, 0.0072, 0.0072, 0.0068, 0.0063], [0.0276, 0.0148, 0.0139, 0.013, 0.0102, 0.0095, 0.0074, 0.007], [0.0962, 0.0312, 0.019, 0.0157, 0.0148, 0.0139, 0.0139, 0.0079], [0.0724, 0.0321, 0.0161, 0.0104, 0.0098, 0.0098, 0.0086, 0.0086], [0.0529, 0.0195, 0.0142, 0.0104, 0.0098, 0.0098, 0.0086, 0.0086], [0.0494, 0.0248, 0.0125, 0.0117, 0.0104, 0.0091, 0.0081, 0.0081], [0.1093, 0.055, 0.0294, 0.026, 0.0244, 0.0168, 0.0123, 0.0115], [0.0499, 0.0389, 0.0322, 0.0251, 0.0221, 0.0184, 0.0118, 0.0105], [0.1383, 0.0576, 0.0449, 0.024, 0.0226, 0.0212, 0.0129, 0.0121], [0.1149, 0.108, 0.0953, 0.0479, 0.0479, 0.0329, 0.0329, 0.02], [0.151, 0.1038, 0.1038, 0.067, 0.0522, 0.0359, 0.0337, 0.0159], [0.2406, 0.1874, 0.1288, 0.1137, 0.0781, 0.0186, 0.0154, 0.0145], [0.2969, 0.1589, 0.1026, 0.0799, 0.0549, 0.0229, 0.0167, 0.009], [0.6091, 0.1359, 0.0642, 0.05, 0.0268, 0.0251, 0.0092, 0.0047], [0.6066, 0.0821, 0.0639, 0.0639, 0.0302, 0.0302, 0.0076, 0.0072], [0.8016, 0.0658, 0.0512, 0.0147, 0.013, 0.0065, 0.0037, 0.0027], [0.7991, 0.0511, 0.0451, 0.0188, 0.0188, 0.0094, 0.0065, 0.0061], [0.8737, 0.0435, 0.0233, 0.0076, 0.0067, 0.0032, 0.003, 0.0028], [0.8719, 0.0298, 0.0263, 0.0075, 0.0046, 0.0036, 0.0023, 0.0018], [0.925, 0.0247, 0.0218, 0.0043, 0.0028, 0.0019, 0.0014, 0.0012], [0.9354, 0.0282, 0.0133, 0.0056, 0.0043, 0.0016, 0.0007, 0.0007], [0.9096, 0.0214, 0.0189, 0.0079, 0.0061, 0.0061, 0.0033, 0.0029], [0.733, 0.0365, 0.0322, 0.0284, 0.0284, 0.0221, 0.0172, 0.0172], [0.4075, 0.0802, 0.0625, 0.0552, 0.0552, 0.043, 0.0295, 0.023], [0.3701, 0.1543, 0.0344, 0.0268, 0.0252, 0.0237, 0.0237, 0.0222], [0.3518, 0.3104, 0.0539, 0.0255, 0.0198, 0.0128, 0.0113, 0.0106], [0.5049, 0.1277, 0.0683, 0.0366, 0.0119, 0.0119, 0.0119, 0.0098], [0.2984, 0.2051, 0.1098, 0.0356, 0.0278, 0.0216, 0.0131, 0.0116], [0.6393, 0.0525, 0.0361, 0.017, 0.0133, 0.0133, 0.0133, 0.0117], [0.8915, 0.0269, 0.0053, 0.0053, 0.0053, 0.0047, 0.0047, 0.0041], [0.7108, 0.0454, 0.0312, 0.0276, 0.0276, 0.0148, 0.0115, 0.0101], [0.3463, 0.2101, 0.0773, 0.0682, 0.0221, 0.0221, 0.0195, 0.0172], [0.492, 0.2051, 0.0458, 0.0404, 0.0245, 0.0245, 0.0216, 0.0149], [0.7378, 0.0606, 0.0416, 0.0286, 0.0197, 0.0135, 0.0105, 0.0105], [0.7003, 0.0575, 0.0507, 0.0211, 0.0211, 0.0211, 0.012, 0.0106], [0.4443, 0.1273, 0.0601, 0.0498, 0.0413, 0.0365, 0.0302, 0.0221]], "ranks": {}}, {"pos": 475, "top": [[".", ",", "\u00a0", ";", "-", "\u2013", " ", "\u2026"], ["  \n", "  \n\n", "\u2013", " \u2013", "  \r\n", "  \n  \n", ".", "   \n"], [".", ",", "\u2013", "\u2026", ";", "[", "\u2026.", "\u2026.."], ["ivity", " Hidal", "halter", "odal", " Blowjob", "iveness", "\u0e19\u0e32\u0e04\u0e21", "ivism"], ["@", "ivity", "\\_", "&", "  \n", "ness", "ively", "tion"], ["  \n", "ivity", "ness", "\\_", "  \n\n\n", "ively", "\u00a0", "  "], ["  \n", "ity", "ness", "  \n\n\n", "ivity", "  \n\n", "ship", "  \r\n"], ["ness", "ity", "ivity", "ively", "  \n", "iveness", "ment", "arial"], ["  \n\n", "  \n\n\n", "  \n", "ness", "ity", "\u00a0", " \n\n", " \n\n\n"], ["\\_", "ness", "ity", "ivity", "  \n", "\u00a0", "ively", "  \n  \n"], ["\\_", "  \n\n", "\u00a0", "  \n", " [\u2026]", "@", "ness", "ity"], ["ivity", "ness", "ity", "ively", "ive", " involvement", "iveness", " access"], ["ivity", "ness", "ively", "ity", " access", " involvement", " via", "iveness"], ["ivity", " access", "ness", " via", "ity", " involvement", " impact", "ively"], [" via", " access", " engagement", " involvement", " impact", " pursuit", "ness", " personal"], [" access", " via", " involvement", " impact", "ness", " personal", " engagement", " ongoing"], [" access", " via", "ness", " impact", "ity", "ivity", " proximity", " involvement"], [" access", "ness", " via", " involvement", " impact", " proximity", " showcase", " connection"], [" access", "ivity", "ness", " via", " impact", " involvement", "ity", " connection"], [" access", "ness", " via", "ivity", " involvement", " impact", " connection", "ively"], ["<|endoftext|>", " via", " access", " Direct", "ness", "i", "via", " impact"], [" access", "ivity", "ness", " involvement", " impact", " via", " connection", " Direct"], [" access", " via", " involvement", " impact", " Direct", " connection", " direct", "ivity"], [" access", " via", " involvement", " contact", " through", " impact", " Direct", " link"], [" access", " involvement", " via", " impact", "ness", " contact", " interaction", "ivity"], [" access", " involvement", " via", " interaction", " impact", "ivity", " connection", "ness"], [" access", " involvement", " via", " interaction", "ivity", " connection", " impact", " connectivity"], [" access", " via", " involvement", " contact", " interaction", " impact", " direct", " connections"], [" access", " via", " involvement", " interaction", " connections", " impact", " connection", " contact"], [" access", " via", " interaction", " connection", " direct", " connections", " involvement", " contact"], [" access", " direct", " via", " contact", " connection", " connections", " interaction", " impact"], [" access", " direct", " connection", " via", " contact", " Direct", " connections", " communication"], [" access", " direct", " via", " Direct", " connection", " interaction", " connections", " impact"], [" access", " direct", " connectivity", " hardware", " interaction", " interactions", " Direct", "-access"], [" access", " direct", " Direct", "\u76f4\u63a5\u63a5\u89e6", " connectivity", "direct", "irect", "DIRECT"], [" direct", " Direct", " access", "\u76f4\u63a5\u63a5\u89e6", "direct", " directly", "Direct", "\u76f4\u63a5\u4e0e"], [" direct", " Direct", " directly", "direct", " access", "\u76f4\u63a5\u63a5\u89e6", "\u76f4\u63a5\u4e0e", " langsung"], [" direct", " Direct", " access", " directly", "direct", "\u76f4\u63a5\u63a5\u89e6", "Direct", "\u76f4\u63a5\u4e0e"], [" direct", " Direct", " access", " directly", "direct", "\u76f4\u63a5\u63a5\u89e6", "Direct", "\u7684\u76f4\u63a5"], [" access", " direct", " Direct", " directly", "direct", "irect", "\u76f4\u63a5\u63a5\u89e6", " control"], [" direct", " Direct", " access", "direct", " directly", "Direct", "\u76f4\u63a5\u63a5\u89e6", "\u76f4\u63a5"], [" direct", " access", " Direct", " directly", "direct", "Direct", "\u76f4\u63a5\u63a5\u89e6", " hardware"], [" direct", " Direct", " access", " directly", "\u76f4\u63a5\u63a5\u89e6", "Direct", "direct", "\u7684\u76f4\u63a5"], [" direct", " access", " Direct", "direct", " directly", "Direct", "\u76f4\u63a5\u63a5\u89e6", " DIRECT"], [" direct", " Direct", " access", " directly", "Direct", "direct", "\u76f4\u63a5\u63a5\u89e6", " DIRECT"], [" direct", " access", " Direct", " directly", "\u76f4\u63a5\u63a5\u89e6", "direct", "Direct", "\u7684\u76f4\u63a5"], [" direct", " Direct", " access", " directly", "direct", "\u76f4\u63a5\u63a5\u89e6", "Direct", "\u76f4\u63a5\u4f7f\u7528"], [" direct", " access", " Direct", "Direct", "direct", "\u76f4\u63a5\u63a5\u89e6", " directly", " DIRECT"], [" access", " direct", " Direct", "-access", "\u76f4\u63a5\u63a5\u89e6", "direct", "Direct", "\u7684\u76f4\u63a5"], [" direct", " access", " Direct", "\u76f4\u63a5\u63a5\u89e6", "-access", "Direct", "direct", "\u76f4\u63a5\u4f7f\u7528"], ["Direct", "\u76f4\u63a5\u63a5\u89e6", " direct", "-access", " Direct", "\u76f4\u63a5", "\u76f4\u63a5\u7684", "direct"], ["-access", " access", " hardware", "/native", " GPU", "-native", "hardware", " optimizations"], [" access", "-access", " hardware", "-memory", "access", "Access", " accesses", " GPU"], [" access", " hardware", "-access", "-memory", " memory", "access", " GPU", "Access"], [" access", "-access", "access", "Access", " accesses", " Access", "-memory", " acceso"], [" access", " GPU", "-memory", " memory", "-access", "memory", " hardware", "access"], [" access", " control", " GPU", " pointers", " memory", "control", "-access", " pointer"], [" memory", " GPU", " access", "memory", "-memory", " pointers", " pointer", " Memory"], [" memory", "memory", "-memory", " GPU", " Memory", " control", "Memory", "\u5185\u5b58"], [" memory", " GPU", " pointer", " hardware", " metal", " pointers", " control", "-metal"], [" memory", " metal", " GPU", " Metal", "-metal", " control", " hardware", "-memory"], [" memory", " GPU", " metal", " control", " pointer", " SIMD", " hardware", " Metal"], [" memory", " control", " GPU", " hardware", " pointer", " SIMD", " metal", " access"]], "p": [[0.8198, 0.1425, 0.0086, 0.0076, 0.004, 0.0034, 0.0019, 0.0016], [0.6564, 0.0475, 0.0145, 0.0083, 0.0068, 0.0057, 0.0057, 0.0042], [0.6176, 0.1216, 0.1073, 0.0574, 0.0211, 0.0106, 0.0088, 0.0057], [0.007, 0.0051, 0.0026, 0.002, 0.0019, 0.0018, 0.0016, 0.0015], [0.0334, 0.0295, 0.0244, 0.0229, 0.0158, 0.0115, 0.0108, 0.0058], [0.0311, 0.0292, 0.0258, 0.0147, 0.0107, 0.0089, 0.0065, 0.0051], [0.153, 0.1052, 0.0988, 0.0321, 0.0321, 0.0301, 0.0098, 0.0086], [0.3468, 0.1126, 0.0642, 0.0173, 0.0152, 0.0152, 0.0134, 0.0105], [0.402, 0.1479, 0.1082, 0.048, 0.031, 0.0156, 0.0121, 0.0101], [0.2029, 0.0747, 0.0275, 0.0201, 0.0189, 0.0147, 0.0122, 0.0108], [0.1905, 0.1019, 0.1019, 0.0958, 0.0581, 0.0331, 0.0227, 0.0122], [0.0985, 0.0926, 0.0341, 0.0265, 0.0151, 0.0133, 0.0098, 0.0081], [0.0732, 0.0646, 0.021, 0.0174, 0.0144, 0.0127, 0.0099, 0.0077], [0.0223, 0.0153, 0.0135, 0.0135, 0.0105, 0.0099, 0.0068, 0.0064], [0.0227, 0.0213, 0.0129, 0.0089, 0.0065, 0.0057, 0.0057, 0.0057], [0.0201, 0.0147, 0.0101, 0.0084, 0.0065, 0.0061, 0.0058, 0.0051], [0.0251, 0.0236, 0.0126, 0.0092, 0.0087, 0.0072, 0.0072, 0.0068], [0.0244, 0.009, 0.0084, 0.0074, 0.0074, 0.0051, 0.0051, 0.0045], [0.0254, 0.0198, 0.0175, 0.012, 0.012, 0.0093, 0.0064, 0.006], [0.024, 0.0225, 0.0199, 0.0187, 0.0121, 0.01, 0.0047, 0.0047], [0.0648, 0.0288, 0.021, 0.0077, 0.0073, 0.0068, 0.006, 0.006], [0.0511, 0.0213, 0.0146, 0.0129, 0.0107, 0.0101, 0.0083, 0.0069], [0.1277, 0.0285, 0.0222, 0.0143, 0.0126, 0.0112, 0.0098, 0.0098], [0.1076, 0.0176, 0.0137, 0.0113, 0.0078, 0.0073, 0.0073, 0.0069], [0.1536, 0.0302, 0.0236, 0.0098, 0.0087, 0.0081, 0.0072, 0.0063], [0.1914, 0.0215, 0.0157, 0.0101, 0.0095, 0.0095, 0.0084, 0.0058], [0.2534, 0.0098, 0.0098, 0.0092, 0.0077, 0.0072, 0.0072, 0.006], [0.1834, 0.0264, 0.0125, 0.0091, 0.0063, 0.0063, 0.0063, 0.0059], [0.4483, 0.0253, 0.0105, 0.0077, 0.0077, 0.0072, 0.0072, 0.0068], [0.5445, 0.012, 0.0113, 0.01, 0.0088, 0.0083, 0.0078, 0.0073], [0.6198, 0.0146, 0.0107, 0.0088, 0.0083, 0.0069, 0.005, 0.005], [0.5433, 0.0288, 0.0113, 0.0078, 0.0073, 0.0073, 0.0068, 0.0064], [0.4054, 0.0354, 0.0095, 0.0095, 0.007, 0.0062, 0.0062, 0.0058], [0.2189, 0.0204, 0.0169, 0.0116, 0.0116, 0.0096, 0.009, 0.007], [0.106, 0.0936, 0.0568, 0.0209, 0.0144, 0.0119, 0.0112, 0.0099], [0.3271, 0.2248, 0.0568, 0.0391, 0.0391, 0.0185, 0.0163, 0.0119], [0.541, 0.199, 0.057, 0.0269, 0.0223, 0.021, 0.0087, 0.0082], [0.4791, 0.3293, 0.0572, 0.0306, 0.0186, 0.0077, 0.0073, 0.005], [0.6182, 0.1771, 0.1074, 0.0448, 0.0145, 0.0042, 0.0037, 0.0029], [0.4927, 0.3386, 0.0667, 0.0169, 0.0149, 0.0045, 0.0038, 0.0033], [0.6831, 0.1524, 0.0816, 0.0234, 0.0161, 0.0097, 0.0059, 0.0032], [0.5013, 0.3445, 0.0987, 0.0104, 0.0104, 0.0072, 0.0038, 0.0023], [0.6714, 0.1698, 0.103, 0.0139, 0.0096, 0.0066, 0.0066, 0.0021], [0.6755, 0.133, 0.133, 0.0109, 0.0109, 0.0109, 0.0046, 0.0021], [0.7778, 0.082, 0.082, 0.0126, 0.0098, 0.0098, 0.0076, 0.0017], [0.7875, 0.0941, 0.0733, 0.0099, 0.0099, 0.0068, 0.0036, 0.0013], [0.8466, 0.0787, 0.0226, 0.0155, 0.0094, 0.0065, 0.005, 0.0019], [0.6672, 0.1489, 0.1023, 0.0178, 0.0138, 0.0122, 0.0074, 0.0024], [0.3349, 0.3349, 0.0847, 0.0275, 0.0243, 0.0243, 0.0214, 0.0074], [0.2778, 0.1312, 0.1158, 0.0702, 0.0547, 0.0483, 0.0353, 0.0201], [0.16, 0.0756, 0.0667, 0.0553, 0.0553, 0.0488, 0.0458, 0.0404], [0.182, 0.182, 0.0713, 0.0358, 0.0204, 0.0169, 0.0132, 0.0109], [0.424, 0.2572, 0.1072, 0.0239, 0.0106, 0.01, 0.0083, 0.0083], [0.344, 0.2087, 0.1841, 0.0411, 0.0194, 0.0133, 0.0118, 0.0104], [0.8835, 0.0822, 0.0111, 0.006, 0.0022, 0.0019, 0.0015, 0.0013], [0.2168, 0.1913, 0.149, 0.149, 0.116, 0.0332, 0.0178, 0.0139], [0.4501, 0.1461, 0.069, 0.0538, 0.0369, 0.0288, 0.0288, 0.0254], [0.5924, 0.1167, 0.1029, 0.0429, 0.0379, 0.0179, 0.0139, 0.0085], [0.8882, 0.0304, 0.0268, 0.0144, 0.0077, 0.0068, 0.0047, 0.0036], [0.5662, 0.2674, 0.0362, 0.0282, 0.0171, 0.0171, 0.0151, 0.0081], [0.7425, 0.0887, 0.0783, 0.0254, 0.0154, 0.0073, 0.0064, 0.0057], [0.7809, 0.0499, 0.0499, 0.0236, 0.0236, 0.0184, 0.0143, 0.0053], [0.6511, 0.0999, 0.0606, 0.0534, 0.0416, 0.0324, 0.0174, 0.0053]], "ranks": {}}, {"pos": 476, "top": [[".", ",", " \u2013", ";", "\u2013", " ", "?", ":"], [" \u2013", "\u2013", ".", "  \n", ",", "  \r\n", ";", " very"], ["\u2013", ".", ",", " \u2013", ";", "\u2026", ".\u2013", ":"], [" Blowjob", " Shemale", " milfs", " cumshot", " cristi", " Strec", " ;;^", "alej"], [" Pro", " system", " Zer", "\u0627\u0644\u0627\u062a", " ***", " \u2019", " memory", " Frag"], [" Zer", ".cast", " client", " Pro", " Frag", " Depos", " Retrie", "\u0627\u0644\u0627\u062a"], ["  \n", " ***", "  \r\n", " **", " \u2019", "\u2019s", "\u00ac", "."], [" **", "  \r\n", " ***", "  \n", "lessness", ".", "\u00ac", ","], [" ***", " **", ".", ",", "  \n", "lessness", "  \n\n", " \u2019"], [",", "\u00ac", ";", "  \r\n", "\\_", "lessness", " **", " power"], [" **", " ***", " loss", " memory", "  \n", " power", "  \r\n", " space"], [" **", " ***", "lessness", " **\u20ac", " **'", " )**", " memory", " **-"], [" **", " memory", " allocation", "lessness", " consumption", " control", " space", " resources"], [" memory", " consumption", " resources", " allocation", " space", " impact", " control", " acquisition"], [" power", " memory", " control", " space", " impact", " resources", " loss", " security"], [" power", " memory", " security", " space", " impact", " loss", " defense", " control"], [" memory", " resources", " space", " loss", " impact", " power", " access", " security"], [" memory", " space", " loss", " resources", " security", " allocation", " power", " impact"], [" memory", " space", " loss", " Memory", " impact", " sacrifice", " resources", " power"], [" memory", " space", " loss", "/memory", " impact", " security", " sacrifice", "lessness"], ["<|endoftext|>", " \n\n", "  \n\n", " space", " power", " via", " memory", " over"], [" space", " memory", " access", " power", " loss", " resources", " impact", " security"], [" space", " memory", " power", " access", " loss", " resources", " impact", " via"], [" space", " memory", " ,", " power", " over", " through", " via", " down"], [" \n\n", " memory", " \n  \n", " space", " \r\n\r\n", "  \n\n", " Memory", " \n"], [" memory", " space", " storage", " \n\n", "/memory", " Memory", " \n  \n", " memories"], [" memory", " storage", " space", " security", " memories", " destruction", "/memory", " Memory"], [" \n\n", " memory", " space", " storage", " access", " via", " ,", " loss"], [" memory", " storage", " space", " access", " memories", " loss", " Memory", " security"], [" memory", " storage", " space", " access", " security", " control", " defense", " loss"], [" memory", " storage", " space", " access", " control", " security", " defense", " power"], [" memory", " storage", " space", " access", " control", " power", " security", " defense"], [" memory", " storage", " space", " access", " control", " destruction", " power", " memories"], [" memory", " storage", "/memory", "-memory", " fluid", "(memory", " protections", " hardware"], [" memory", " storage", "/memory", "-memory", "(memory", " Memory", " fluid", " mem"], [" memory", " storage", "/memory", "-memory", " Memory", "(memory", " mem", "memory"], [" memory", " Memory", " storage", "-memory", "/memory", "(memory", " mem", "memory"], [" memory", " Memory", " storage", "/memory", "(memory", "-memory", " mem", " access"], [" memory", " control", " storage", " management", " direct", " Memory", " directly", " access"], [" memory", " control", " management", " Memory", " controlled", " storage", "-memory", " access"], [" memory", " Memory", "-memory", "/memory", " control", "(memory", " allocation", " storage"], [" memory", "-memory", " control", " storage", " Memory", "/memory", " allocation", " allocations"], [" memory", " control", "-memory", " storage", " controlled", " allocation", " allocations", "/memory"], [" memory", " control", " management", " controlled", "-memory", " manipulation", " storage", " allocation"], [" control", " management", " memory", " controlled", " manipulation", " storage", " allocation", " allocations"], [" control", " management", " memory", " controlled", " manipulation", " storage", " access", " allocation"], [" control", " management", " memory", " manipulation", " access", " controlled", " storage", " allocation"], [" control", " management", " manipulation", " memory", " controls", " controlled", " access", " storage"], [" control", " memory", " manipulation", " allocations", "-memory", " management", " controls", "/memory"], [" control", " manipulation", "-control", " controls", "/control", "-memory", " allocations", "-controlled"], ["-control", " control", " manipulation", "/control", " optimizations", " controls", "-memory", "/memory"], [" allocations", " control", "-memory", "/memory", " optimizations", "-control", "control", "/control"], [" control", "-control", "control", "-memory", "\u63a7\u5236", "Control", "/memory", " allocations"], ["-memory", "/memory", " control", "(memory", " memory", "memory", ".Memory", " manipulation"], [" control", "-memory", " manipulation", "control", "/memory", " memory", "(memory", "-control"], [" manipulation", " control", "control", " allocations", " allocator", "\u64cd\u63a7", "-memory", " allocation"], [" control", "control", " manipulation", " controls", " allocation", "-control", "\u63a7\u5236", " allocations"], [" management", " memory", " manipulation", " control", "-memory", " access", " allocation", "memory"], [" layout", " management", " layouts", " control", "layout", " access", "\u5e03\u5c40", " manipulation"], [" layout", " management", " layouts", " control", " manipulation", " access", "layout", " Layout"], [" management", " control", " manipulation", " layout", " access", " layouts", " safety", " ownership"], [" management", " control", " manipulation", " access", " layout", " pooling", " layouts", " ownership"], [" management", " control", " access", " manipulation", " layout", " pooling", " mapping", " allocation"]], "p": [[0.7755, 0.1961, 0.0104, 0.0056, 0.0056, 0.0022, 0.0007, 0.0006], [0.1677, 0.0843, 0.0617, 0.0166, 0.0147, 0.0114, 0.0095, 0.0054], [0.4025, 0.2766, 0.1481, 0.1481, 0.0114, 0.0031, 0.0012, 0.0011], [0.0083, 0.0042, 0.0033, 0.0031, 0.0021, 0.0021, 0.002, 0.0015], [0.0031, 0.0031, 0.0027, 0.0021, 0.0021, 0.0015, 0.0014, 0.0013], [0.0018, 0.0018, 0.0015, 0.0014, 0.0011, 0.0011, 0.0011, 0.0009], [0.0865, 0.0463, 0.0435, 0.0339, 0.0264, 0.015, 0.011, 0.0076], [0.0356, 0.019, 0.0179, 0.0123, 0.0066, 0.0062, 0.0033, 0.0033], [0.0346, 0.0306, 0.0197, 0.0088, 0.0077, 0.006, 0.0047, 0.0044], [0.0364, 0.0046, 0.0043, 0.0041, 0.0025, 0.0023, 0.0019, 0.0018], [0.0419, 0.0145, 0.0128, 0.0113, 0.0106, 0.0093, 0.0088, 0.0077], [0.3323, 0.0176, 0.0035, 0.0033, 0.0029, 0.0029, 0.0025, 0.002], [0.0441, 0.0044, 0.0036, 0.0036, 0.0032, 0.003, 0.003, 0.0028], [0.0054, 0.0047, 0.0047, 0.0042, 0.0035, 0.0035, 0.0033, 0.0029], [0.0114, 0.0089, 0.0069, 0.0065, 0.0057, 0.0057, 0.0054, 0.0051], [0.0108, 0.009, 0.0066, 0.0062, 0.0054, 0.0051, 0.0045, 0.0042], [0.0311, 0.0107, 0.0101, 0.0095, 0.0079, 0.0079, 0.0065, 0.0061], [0.0178, 0.0095, 0.0079, 0.0079, 0.0054, 0.0054, 0.0051, 0.0048], [0.0484, 0.0259, 0.0095, 0.0084, 0.007, 0.0062, 0.0058, 0.0051], [0.0291, 0.0101, 0.0057, 0.0051, 0.0047, 0.0045, 0.0042, 0.0039], [0.0329, 0.0121, 0.0057, 0.0054, 0.005, 0.0042, 0.0042, 0.0037], [0.0197, 0.0144, 0.005, 0.0047, 0.0041, 0.0032, 0.0032, 0.0032], [0.0321, 0.0143, 0.0072, 0.0059, 0.0056, 0.0056, 0.0046, 0.0046], [0.0167, 0.013, 0.009, 0.007, 0.0062, 0.0062, 0.004, 0.0035], [0.1083, 0.0511, 0.0227, 0.02, 0.0095, 0.0089, 0.0078, 0.0057], [0.3062, 0.0323, 0.0285, 0.0173, 0.0135, 0.0119, 0.0112, 0.0112], [0.251, 0.0635, 0.0182, 0.0086, 0.0086, 0.0081, 0.0076, 0.0055], [0.0923, 0.0765, 0.0264, 0.0219, 0.0086, 0.0081, 0.0067, 0.0063], [0.2886, 0.0644, 0.0286, 0.0127, 0.0087, 0.0082, 0.0082, 0.0077], [0.2596, 0.0792, 0.0351, 0.0166, 0.0083, 0.0083, 0.0074, 0.0074], [0.1963, 0.0599, 0.0387, 0.025, 0.0161, 0.0126, 0.0098, 0.0081], [0.1302, 0.035, 0.0329, 0.0241, 0.0188, 0.0146, 0.0114, 0.0107], [0.2019, 0.0423, 0.031, 0.0137, 0.0089, 0.0078, 0.0074, 0.0069], [0.1455, 0.0346, 0.0163, 0.0153, 0.0112, 0.0068, 0.0056, 0.005], [0.1799, 0.075, 0.0276, 0.0229, 0.013, 0.0074, 0.0074, 0.0054], [0.378, 0.0451, 0.033, 0.031, 0.0257, 0.0213, 0.0156, 0.0101], [0.4658, 0.0407, 0.0247, 0.0218, 0.0205, 0.017, 0.0141, 0.0071], [0.4536, 0.1012, 0.0577, 0.0199, 0.0146, 0.0129, 0.0088, 0.0069], [0.3205, 0.0593, 0.0557, 0.0434, 0.0408, 0.0383, 0.0383, 0.0247], [0.5013, 0.1051, 0.0363, 0.0266, 0.022, 0.0172, 0.0104, 0.0104], [0.7098, 0.0353, 0.0293, 0.0243, 0.0138, 0.0115, 0.0095, 0.0095], [0.6989, 0.0394, 0.0307, 0.0186, 0.0186, 0.0186, 0.0145, 0.01], [0.4711, 0.0638, 0.0563, 0.0341, 0.0321, 0.0266, 0.025, 0.0194], [0.2677, 0.1433, 0.1116, 0.0597, 0.032, 0.0249, 0.0249, 0.0234], [0.181, 0.1244, 0.1244, 0.0855, 0.0487, 0.0315, 0.0315, 0.0261], [0.255, 0.1365, 0.0828, 0.0828, 0.0472, 0.0324, 0.0305, 0.0252], [0.223, 0.1053, 0.082, 0.06, 0.0412, 0.0388, 0.0388, 0.0284], [0.3741, 0.0737, 0.0611, 0.0476, 0.0447, 0.0327, 0.0271, 0.0239], [0.102, 0.0845, 0.0746, 0.0619, 0.0399, 0.0399, 0.0331, 0.0292], [0.1846, 0.0769, 0.0638, 0.0638, 0.0467, 0.0341, 0.0283, 0.0207], [0.0758, 0.059, 0.0489, 0.0489, 0.0336, 0.0316, 0.0297, 0.0246], [0.0918, 0.081, 0.0631, 0.0491, 0.0491, 0.0491, 0.0383, 0.0338], [0.3096, 0.1005, 0.0783, 0.0691, 0.0538, 0.0288, 0.0224, 0.0224], [0.346, 0.1123, 0.0681, 0.0468, 0.0468, 0.0365, 0.0284, 0.0284], [0.3299, 0.1766, 0.065, 0.0573, 0.0506, 0.0348, 0.0348, 0.0239], [0.4591, 0.2169, 0.0427, 0.0259, 0.0259, 0.0259, 0.0229, 0.0229], [0.7475, 0.0788, 0.0541, 0.0155, 0.0107, 0.0083, 0.0065, 0.0057], [0.2082, 0.1622, 0.1115, 0.0984, 0.0676, 0.0597, 0.0362, 0.0362], [0.4706, 0.2519, 0.1528, 0.0265, 0.0161, 0.0098, 0.0086, 0.0086], [0.4876, 0.261, 0.1088, 0.0582, 0.0275, 0.0167, 0.0079, 0.0042], [0.5202, 0.1689, 0.1315, 0.0704, 0.0427, 0.0178, 0.0074, 0.0065], [0.3647, 0.284, 0.1045, 0.0814, 0.0814, 0.0151, 0.0151, 0.0086], [0.4925, 0.3385, 0.0588, 0.0357, 0.0245, 0.0085, 0.0066, 0.0058]], "ranks": {}}, {"pos": 477, "top": [[".", ",", "\u2013", " \u2013", "  \n", " ", ";", "\u00a0"], ["  \n", "  \r\n", "  \n\n", "\u2013", "   \n", "  \n\n\n", " \u2013", "sWith"], ["\u2013", ".\u2013", "\u2013and", "\u2026", "\u2026.", "  \n", " \u2013", "."], ["\ufffd\ufffd", " Strec", " Shemale", " Fonse", "\u0e19\u0e32\u0e04\u0e21", " councill", " Hidal", "TRGL"], ["  \n\n\n", "  \n", "  \n\n", "  \r\n", "\ufffd\ufffd", "system", " system", "  \n  \n"], ["  \n", "  \n\n\n", "  \n\n", "  \r\n", "\ufffd\ufffd", "(Control", "\u00a0\u00a0\u00a0", " \u0420\u043e\u0434\u0438"], ["  \n", "  \n\n", "  \n\n\n", "  \r\n", "--", "  \n  \n", ")--", "   \n"], ["  \n", "  \n\n\n", "  \r\n", "  \n\n", "  \n  \n", "--", "\u7232", "   \n"], ["  \n\n\n", "  \n", "  \n\n", "  \n  \n", "  \r\n", " \n\n\n", "  \n    \n", "\u00a0\u00a0\u00a0"], ["\u2013", "\\_", "--", ",", "  \n", "\u00a0", "\u00a0\u00a0\u00a0", "  \n  \n"], ["  \n", "  \n\n", "\u00a0", "\\_", "\u2013", "--", "<|endoftext|>", "  \n\n\n"], ["  \n", "  \n\n", "--", "  \r\n", "  \n\n\n", "\\_", "  \n  \n", " "], ["  \n", " control", " ", " power", "--", " force", "  \r\n", " stabil"], [" ", " power", " control", " force", " strateg", " stabil", " manoe", "  \n"], [" ", "  \n\n", "--", "  \n", " strateg", " via", " power", " force"], [" power", " via", " ", " through", " strateg", " utilizing", " force", " over"], [" ", " via", " \u2013", " power", "i", " strateg", "e", " over"], [" via", "\u628a\u63a7", " strateg", " autonom", " oversight", " strategic", " overseeing", " power"], ["\u628a\u63a7", " via", " control", " autonom", " maneuver", " overseeing", " power", " strategic"], [" via", " through", " beyond", " ,", " over", " within", " power", "\u628a\u63a7"], ["<|endoftext|>", "  \n\n", " ,", " ", " via", " over", " \n\n", " through"], [" via", " ,", " control", " beyond", " through", " maneuver", " over", " power"], [" ,", " via", " through", " beyond", " over", " control", " within", " ``"], [" ,", " over", " through", " via", " .", " in", " and", " within"], [" ,", " via", " through", " over", " within", " beyond", " .", " --"], [" via", " **", " control", " ,", " beyond", " through", " within", " impacting"], [" via", " **", " control", " ,", " through", " beyond", " impacting", " wield"], [" \n\n", " ,", "  \n\n", " _", " **", " --", " via", " __"], [" **", " via", " ,", " control", " beyond", " __", " through", " over"], [" via", " **", " ,", " control", " beyond", " through", " over", " power"], [" ,", " via", " over", " control", " .", " beyond", " through", " power"], [" ,", " via", " control", " over", " beyond", " power", " .", " and"], [" beyond", " via", " over", " ,", " heavily", " critical", " power", " under"], [" heavily", " beyond", " meticulously", " via", " flexibility", " forced", " fluid", " critical"], [" beyond", " heavily", " meticulously", " flexibility", " increasingly", " fluid", " vastly", " limiting"], [" increasingly", " beyond", " heavily", " flexibility", " limited", " inherently", " via", " limitations"], [" limited", " increasingly", " heavily", " inherently", " beyond", " flexibility", " limitations", " aggressively"], [" flexibility", " limited", " inherently", " increasingly", " optimized", " limitations", " control", " limits"], [" control", " flexibility", " allowing", "/control", " unrestricted", " controls", " limitations", " limited"], [" control", "/control", " flexibility", " controls", " controlling", " Control", " allowing", " unrestricted"], [" control", " controls", " controlling", " flexibility", "/control", " Control", " allowing", " unrestricted"], [" control", " controlling", " controls", "/control", " flexibility", " controlled", " Control", " managing"], [" control", " controls", " controlling", "/control", " Control", " flexibility", " controlled", " manipulation"], [" control", " controlling", " controls", "/control", " flexibility", " Control", " limitations", " access"], [" control", " controls", " controlling", " access", " controlled", " flexibility", "/control", " limitations"], [" control", " lack", " access", " controlling", " controls", " limited", " compared", " controlled"], [" control", " lack", " lacks", " controls", " compared", " allows", " flexibility", " access"], [" compared", " control", " allows", " lacks", " lack", " allow", " controls", " access"], [" compared", " allows", " control", " allow", " lacks", " prevents", "/control", " allowing"], [" compared", " allows", " lacks", " prevents", " Compared", "/control", " unlike", "\u76f8\u6bd4"], [" compared", " allows", " lacks", "/control", " inability", " prevents", "\u76f8\u6bd4", "\u5bb9\u6613\u5bfc\u81f4"], [" compared", " inability", " allows", "\u5bb9\u6613\u5bfc\u81f4", "\u6bd4\u4e0d\u4e0a", " lacks", " inevitable", "\u76f8\u6bd4"], [" compared", "\u5bb9\u6613\u5bfc\u81f4", " allows", " inability", " prevents", "\u6bd4\u4e0d\u4e0a", "\u76f8\u6bd4", " inevitably"], [" compared", " prevents", " inability", " inevitable", " violates", "\u6bd4\u4e0d\u4e0a", " inherent", " slows"], [" compared", " prevents", "\u6bd4\u4e0d\u4e0a", " makes", " violates", " inevitable", "\u5bb9\u6613\u5bfc\u81f4", " khi\u1ebfn"], [" compared", " prevents", " makes", "\u76f8\u6bd4", " leads", " inevitable", "\u5bb9\u6613\u5bfc\u81f4", " means"], [" compared", " prevents", " makes", "\u76f8\u6bd4", " optimizations", " inherent", " inevitable", " leads"], [" makes", " compared", " prevents", "\u76f8\u6bd4", "makes", " versus", " leads", " optimizations"], [" makes", " compared", " prevents", "makes", "\u76f8\u6bd4", " leads", " Compared", " optimizations"], [" compared", " makes", " prevents", " and", " means", " leads", " versus", "makes"], [" makes", " compared", " and", " prevents", " means", " leads", "makes", " versus"], [" makes", " and", " compared", " leads", " prevents", " means", " causes", " creates"], [" and", " makes", " compared", " means", " prevents", " causes", " leads", " over"]], "p": [[0.8352, 0.0777, 0.0286, 0.0153, 0.0068, 0.0056, 0.0044, 0.0034], [0.3653, 0.0282, 0.0182, 0.0059, 0.0049, 0.0043, 0.0043, 0.0038], [0.6097, 0.0604, 0.0209, 0.0196, 0.0105, 0.0053, 0.0053, 0.0041], [0.0045, 0.0035, 0.0024, 0.0021, 0.0015, 0.0014, 0.0013, 0.0013], [0.0497, 0.0302, 0.0161, 0.0052, 0.0032, 0.0021, 0.0018, 0.0017], [0.0773, 0.0389, 0.0092, 0.0041, 0.0018, 0.0016, 0.0014, 0.0012], [0.8759, 0.0815, 0.0233, 0.0076, 0.0038, 0.0018, 0.0002, 0.0002], [0.7556, 0.066, 0.062, 0.04, 0.0029, 0.0024, 0.0008, 0.0007], [0.3506, 0.273, 0.273, 0.0099, 0.0093, 0.0034, 0.0024, 0.001], [0.2004, 0.0947, 0.0947, 0.0651, 0.0539, 0.0327, 0.012, 0.0106], [0.2796, 0.2796, 0.0753, 0.0517, 0.0456, 0.0355, 0.0314, 0.0203], [0.0818, 0.0721, 0.032, 0.032, 0.0207, 0.0142, 0.0052, 0.0038], [0.0301, 0.0142, 0.0125, 0.0092, 0.0076, 0.0059, 0.0059, 0.0049], [0.0128, 0.0082, 0.0077, 0.0047, 0.0047, 0.0039, 0.0039, 0.0039], [0.1091, 0.0148, 0.0139, 0.0115, 0.0084, 0.0074, 0.007, 0.0066], [0.0139, 0.0123, 0.0116, 0.0079, 0.0075, 0.0075, 0.007, 0.0058], [0.0286, 0.0197, 0.0099, 0.0087, 0.0082, 0.0077, 0.0064, 0.006], [0.0189, 0.0177, 0.0054, 0.0045, 0.0045, 0.004, 0.0037, 0.0037], [0.0227, 0.0213, 0.0069, 0.0065, 0.0054, 0.0051, 0.0042, 0.0037], [0.0569, 0.0119, 0.0119, 0.0112, 0.0072, 0.0068, 0.0068, 0.005], [0.2246, 0.0936, 0.0685, 0.0534, 0.0184, 0.0153, 0.0105, 0.0105], [0.0151, 0.0091, 0.0086, 0.0081, 0.0076, 0.0067, 0.0052, 0.0043], [0.0498, 0.0321, 0.0235, 0.0152, 0.0152, 0.0134, 0.0092, 0.0076], [0.2062, 0.049, 0.0297, 0.018, 0.018, 0.014, 0.0132, 0.0109], [0.1446, 0.0603, 0.0366, 0.0344, 0.0184, 0.0173, 0.0143, 0.0112], [0.0796, 0.0582, 0.0214, 0.0189, 0.0147, 0.0147, 0.0084, 0.007], [0.0612, 0.0507, 0.0187, 0.0113, 0.0088, 0.0083, 0.0073, 0.0069], [0.1246, 0.1246, 0.0756, 0.0756, 0.0431, 0.0405, 0.0315, 0.0231], [0.1637, 0.0993, 0.0208, 0.0162, 0.0111, 0.0105, 0.0098, 0.0072], [0.101, 0.0372, 0.0349, 0.0272, 0.0165, 0.0146, 0.0121, 0.0083], [0.0727, 0.0683, 0.0268, 0.0268, 0.0236, 0.0222, 0.0173, 0.0105], [0.032, 0.0234, 0.022, 0.022, 0.0151, 0.0142, 0.0133, 0.0133], [0.0287, 0.0238, 0.0185, 0.0185, 0.0112, 0.0106, 0.0106, 0.0099], [0.0166, 0.0121, 0.0094, 0.0078, 0.0065, 0.0061, 0.0061, 0.0061], [0.0171, 0.011, 0.0086, 0.0086, 0.0081, 0.0071, 0.0059, 0.0052], [0.0237, 0.0196, 0.0163, 0.0144, 0.0099, 0.0093, 0.0072, 0.0072], [0.0148, 0.0115, 0.0108, 0.0101, 0.0101, 0.0095, 0.0079, 0.0074], [0.0134, 0.0118, 0.0118, 0.0104, 0.0098, 0.0098, 0.0087, 0.0072], [0.1018, 0.0292, 0.0114, 0.0114, 0.0107, 0.0107, 0.0101, 0.0095], [0.2543, 0.0237, 0.0222, 0.0196, 0.0127, 0.0112, 0.0105, 0.0093], [0.3389, 0.0315, 0.0204, 0.0191, 0.0169, 0.0116, 0.0116, 0.0102], [0.5765, 0.0445, 0.0418, 0.021, 0.0144, 0.0136, 0.0127, 0.0068], [0.5795, 0.0394, 0.037, 0.0289, 0.0136, 0.012, 0.0094, 0.0064], [0.5999, 0.0463, 0.0299, 0.0264, 0.0141, 0.0133, 0.0086, 0.0076], [0.5743, 0.0304, 0.0252, 0.0153, 0.0144, 0.0119, 0.0112, 0.0087], [0.461, 0.0277, 0.026, 0.0229, 0.0158, 0.0158, 0.0139, 0.0115], [0.3713, 0.0345, 0.0324, 0.0269, 0.0253, 0.0237, 0.0223, 0.0223], [0.2599, 0.2293, 0.0844, 0.0374, 0.0257, 0.0188, 0.0177, 0.0177], [0.6218, 0.1782, 0.0137, 0.0129, 0.0114, 0.0107, 0.0083, 0.0074], [0.8127, 0.0589, 0.0102, 0.007, 0.007, 0.0062, 0.004, 0.0038], [0.3462, 0.0875, 0.0565, 0.0413, 0.0284, 0.0267, 0.0183, 0.0162], [0.3867, 0.0408, 0.0383, 0.0298, 0.0232, 0.015, 0.0141, 0.0124], [0.4387, 0.0338, 0.0299, 0.0263, 0.0263, 0.0193, 0.0124, 0.011], [0.0756, 0.0627, 0.0458, 0.0296, 0.023, 0.0203, 0.0191, 0.0158], [0.2896, 0.1991, 0.0197, 0.0163, 0.0135, 0.0135, 0.0127, 0.0112], [0.3119, 0.1568, 0.0256, 0.0146, 0.0137, 0.0137, 0.0129, 0.0129], [0.3053, 0.0772, 0.0601, 0.0183, 0.0134, 0.0111, 0.0092, 0.0087], [0.4887, 0.2309, 0.0202, 0.0167, 0.0157, 0.0065, 0.0065, 0.0062], [0.5673, 0.268, 0.0133, 0.0118, 0.0104, 0.0041, 0.0036, 0.0032], [0.4621, 0.4078, 0.0245, 0.0203, 0.009, 0.0062, 0.0035, 0.0029], [0.6815, 0.1184, 0.0922, 0.016, 0.016, 0.0125, 0.0022, 0.0022], [0.741, 0.1288, 0.0287, 0.0238, 0.021, 0.021, 0.0021, 0.0014], [0.7146, 0.0967, 0.0379, 0.0334, 0.0277, 0.0179, 0.0168, 0.0062]], "ranks": {}}, {"pos": 478, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0\u00a0", "\u00a0", ",."], [" \u2013", "\u2013", ".", ",", "\u2013and", ";", ".\u2013", " \u200b\u200b"], [",", ".", "\u2013", " \u2013", ";", ".\u2013", "\u2013and", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", "----------</", " Shemale", " ;;^", " Strec", " Blowjob"], ["\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", ".@", "\u82db", "\ub370\ubbf8", " \u041a\u0440\u0430\u0441\u0438", "\u52a0\u62ff\u5927\u7684", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], ["-**", "<|quad_end|>", " **\u2013", "(**", "\u00a0\u00a0", "\u65b0\u52a0\u5761", "\u82db", " **\""], [" **\u2018", ".**", " **\"", ".\u2019", "\uff0e", "\uff09**", "\u2019**", "\u3002**"], [" **\"", "<|quad_end|>", " **'", " **\u20ac", " **\u2018", "  \r\n", "ulance", " uncomfort"], ["\u00a0", "  \n\n", ".", "!.", " \n\n", "   \n\n", "\u00a0\u00a0", "\u2019."], [",", "Whilst", "\u00a0", "\u0436\u0451", " \u0442\u0440\u0451", "\u0434\u044c\u043c\u0438", " flavours", " traumatis"], ["\u00a0", ",", "\u2013", " albeit", "\u00a0\u00a0", " whilst", " potentially", " favour"], [" flavours", " uncomfort", " potentially", " traumatis", " albeit", " arguably", "\u5468\u906d", " organisation"], [" albeit", " potentially", " flavours", " effortlessly", " impactful", " prec", " incentiv", " reliant"], [" albeit", " reliant", "\u5171\u540c\u6253\u9020", "\u592a\u8fc7\u4e8e", "\u708e\u708e\u590f\u65e5", "\u51ed\u501f\u7740", "\u5468\u906d", "\u65e9\u5df2\u7ecf"], [" amongst", " albeit", " effortlessly", " utilizing", " arguably", " inherently", " seemingly", " via"], [" showcasing", " utilizing", " effortlessly", " leveraging", " hefty", " utilized", " showcased", " touted"], ["\u00a0", " effortlessly", " showcasing", " hefty", " myriad", " swiftly", " leveraging", " sprawling"], [" effortlessly", " hefty", " swiftly", " sprawling", " showcasing", " reliant", " leveraging", " seamlessly"], [" effortlessly", " hefty", " myriad", " sprawling", " swiftly", " hugely", " seemingly", " arguably"], [" myriad", " swiftly", " largely", " seemingly", " burgeoning", " effortlessly", " ultimately", " sprawling"], ["<|endoftext|>", " swiftly", " myriad", " largely", " seemingly", " burgeoning", " ultimately", " heavily"], [" largely", "\u5145\u65a5\u7740", "\u62e5\u6709\u7740", " sprawling", " myriad", "\u65e0\u65f6\u65e0\u523b", " ultimately", " overly"], [" largely", " ultimately", " increasingly", " notably", " myriad", " swiftly", " heavily", " seemingly"], [" largely", " ultimately", " notably", " myriad", " heavily", " swiftly", " increasingly", " seemingly"], [" \n\n", " \r\n\r\n", "  \n\n", " myriad", " swiftly", " largely", " seemingly", " notably"], [" complexities", "\u62e5\u6709\u7740", " impactful", " heavily", "\u5750\u62e5", " reliance", " pervasive", " notably"], [" \n\n", " heavily", " complexities", " myriad", " notably", " \r\n\r\n", " pervasive", " reliance"], [" \n\n", " heavily", " ultimately", " largely", " arguably", " myriad", " notably", " seemingly"], [" myriad", " heavily", " arguably", " ultimately", " largely", " complexities", " sprawling", " reliance"], [" heavily", " myriad", " ultimately", " increasingly", " largely", " lack", " reliance", " overly"], [" heavily", " ultimately", " largely", " lack", " increasingly", " myriad", " complex", " much"], [" heavily", " ultimately", " largely", " much", " increasingly", " lack", " more", " over"], [" heavily", " ultimately", " complex", " largely", " increasingly", " lack", " arguably", " critical"], [" heavily", " technological", " broader", " complex", " inherently", " limitations", " flexibility", " technology"], [" lack", " heavily", " complex", " inherently", " reliance", " limitations", " technological", " limited"], [" limitations", " inherently", " lack", " flexibility", " heavily", " complex", " restrictions", " increasingly"], [" optimizations", " optimized", " optimization", " complex", " inherently", " lack", " flexibility", " heavily"], [" optimizations", " optimized", " optimization", " lack", " inherently", " complex", " inefficient", " flexibility"], [" optimizations", " optimized", " lack", " optimization", " inefficient", " flexibility", " faster", " optimizing"], [" optimized", " optimizations", " optimization", " lack", " inefficient", " faster", " flexibility", " slower"], [" optimizations", " optimized", " optimization", " inefficient", " lack", " faster", " optimizing", " slower"], [" optimized", " optimizations", " optimization", " inefficient", " optimizing", " efficiency", " efficient", " hardware"], [" optimizations", " optimized", " optimization", " inefficient", " optimizing", " lack", " fragmentation", " efficiency"], [" optimized", " optimizations", " inefficient", " optimization", " lack", " efficiency", " direct", " efficient"], [" inefficient", " lack", " optimized", " optimizations", " direct", " efficiency", " fragmentation", " optimization"], [" lack", " inefficient", " optimizations", " optimized", " direct", " avoidance", " fragmentation", " optimization"], [" lack", " optimizations", " inefficient", " reliance", " optimized", " indirect", " inability", " avoidance"], [" lack", " reliance", " indirect", " optimizations", " inability", " avoidance", " inefficient", " direct"], [" reliance", " lack", " inability", " optimizations", " avoidance", " indirect", " lacks", " protections"], [" reliance", " optimizations", " lack", " inability", " avoidance", " delays", " indirect", " limitations"], [" reliance", " inability", " optimizations", " lack", " interoper", " inherent", "\u7f3a\u4e4f", " limitations"], [" reliance", " optimizations", " inability", " fragmentation", " inefficient", " costly", " delays", " overhead"], [" reliance", " optimizations", " inherent", " overhead", " fragmentation", " inefficient", " inability", " buffering"], [" reliance", " optimizations", " inherent", " overhead", " inability", " buffering", " dependency", " indirect"], [" reliance", " optimizations", " optimization", " overhead", " inherent", " optimized", " serialization", " memory"], [" reliance", " garbage", " optimizations", " serialization", " inherent", " overhead", " SIMD", " interoper"], [" reliance", " garbage", " SIMD", " pointers", " pointer", " JIT", " inherent", " heap"], [" reliance", " pointers", " pointer", " optimizations", " SIMD", " JIT", " optimization", " heap"], [" cache", " pointer", "cache", " JIT", " SIMD", " reliance", " caching", " pointers"], [" pointer", " cache", " pointers", " reliance", " SIMD", "cache", " caching", " inherent"], [" pointer", " cache", " pointers", " SIMD", " reliance", " implicit", " allocator", " Pointer"], [" pointer", " cache", " SIMD", " pointers", " allocator", " native", " Pointer", "-pointer"], [" pointer", " cache", " SIMD", " struct", " the", " allocator", " native", " layout"]], "p": [[0.8676, 0.1174, 0.0066, 0.0046, 0.0013, 0.0005, 0.0004, 0.0003], [0.1071, 0.0691, 0.065, 0.0211, 0.012, 0.0044, 0.003, 0.003], [0.4987, 0.3025, 0.1619, 0.011, 0.0041, 0.0038, 0.0032, 0.0019], [0.0135, 0.0127, 0.0087, 0.0068, 0.0056, 0.0053, 0.0023, 0.0023], [0.0079, 0.0025, 0.0023, 0.0017, 0.0017, 0.0013, 0.0011, 0.0011], [0.0052, 0.0049, 0.0032, 0.0025, 0.0022, 0.002, 0.0019, 0.0018], [0.0419, 0.0254, 0.0224, 0.0154, 0.0106, 0.0088, 0.0073, 0.0073], [0.0055, 0.0046, 0.0043, 0.0031, 0.0022, 0.002, 0.0019, 0.0016], [0.2364, 0.0194, 0.0171, 0.0142, 0.0133, 0.0111, 0.0104, 0.0041], [0.0048, 0.004, 0.0037, 0.0037, 0.0027, 0.0026, 0.0023, 0.0018], [0.5693, 0.0497, 0.0086, 0.0067, 0.0059, 0.0041, 0.0041, 0.003], [0.0065, 0.0044, 0.0044, 0.0035, 0.0033, 0.0021, 0.002, 0.0019], [0.0038, 0.003, 0.0023, 0.002, 0.0019, 0.0019, 0.0019, 0.0017], [0.0025, 0.0022, 0.002, 0.002, 0.0016, 0.0013, 0.0013, 0.0013], [0.0149, 0.007, 0.0028, 0.0026, 0.0024, 0.0023, 0.0023, 0.0021], [0.0088, 0.0078, 0.0053, 0.0039, 0.0037, 0.0037, 0.0037, 0.0035], [0.019, 0.0084, 0.007, 0.0058, 0.0054, 0.0048, 0.0045, 0.0042], [0.0111, 0.0105, 0.0067, 0.0056, 0.0056, 0.0056, 0.0053, 0.0046], [0.0179, 0.0109, 0.0109, 0.0096, 0.0085, 0.008, 0.008, 0.0066], [0.0149, 0.0132, 0.0103, 0.0096, 0.0085, 0.0071, 0.0062, 0.0055], [0.369, 0.0072, 0.0063, 0.0053, 0.0046, 0.0039, 0.0036, 0.0032], [0.0023, 0.0021, 0.0018, 0.0017, 0.0016, 0.0014, 0.0014, 0.0013], [0.0074, 0.0039, 0.0037, 0.0035, 0.0033, 0.0031, 0.0029, 0.0025], [0.0125, 0.0076, 0.0056, 0.0052, 0.0046, 0.0041, 0.0041, 0.0038], [0.0222, 0.0087, 0.0077, 0.0068, 0.0046, 0.0046, 0.0046, 0.0044], [0.0065, 0.0035, 0.0031, 0.0029, 0.0027, 0.0025, 0.0025, 0.0022], [0.0179, 0.009, 0.0085, 0.0075, 0.0066, 0.0051, 0.0051, 0.0051], [0.0246, 0.0192, 0.0149, 0.014, 0.014, 0.014, 0.0124, 0.0085], [0.0239, 0.0211, 0.012, 0.0113, 0.0094, 0.0078, 0.0073, 0.0068], [0.0302, 0.025, 0.0172, 0.0161, 0.0126, 0.0098, 0.0098, 0.0098], [0.031, 0.0257, 0.0242, 0.0227, 0.0188, 0.0095, 0.0095, 0.0095], [0.0418, 0.0368, 0.0238, 0.0164, 0.0136, 0.0136, 0.0136, 0.0112], [0.0526, 0.0319, 0.0194, 0.0171, 0.0161, 0.0133, 0.0104, 0.0104], [0.0285, 0.0268, 0.0237, 0.0196, 0.0153, 0.0127, 0.0112, 0.0112], [0.0346, 0.0269, 0.0223, 0.0153, 0.0144, 0.0144, 0.0112, 0.0112], [0.0261, 0.0203, 0.0203, 0.0203, 0.0191, 0.0191, 0.0179, 0.0149], [0.0323, 0.0236, 0.0196, 0.0184, 0.0163, 0.0153, 0.0135, 0.0127], [0.0657, 0.048, 0.0398, 0.0177, 0.0156, 0.0147, 0.0138, 0.0129], [0.0673, 0.0594, 0.0462, 0.0462, 0.0383, 0.0181, 0.0141, 0.0103], [0.0767, 0.0636, 0.0385, 0.034, 0.032, 0.0234, 0.0142, 0.0133], [0.1565, 0.1381, 0.0694, 0.0477, 0.0289, 0.0212, 0.0137, 0.0128], [0.2124, 0.1654, 0.0885, 0.0504, 0.0347, 0.0154, 0.0154, 0.0106], [0.1805, 0.1405, 0.0801, 0.0429, 0.0179, 0.0158, 0.0139, 0.0139], [0.1116, 0.1116, 0.0869, 0.0561, 0.034, 0.0265, 0.0171, 0.0171], [0.1008, 0.0693, 0.042, 0.0327, 0.0289, 0.0225, 0.0211, 0.0199], [0.1313, 0.0483, 0.0454, 0.0332, 0.0167, 0.0167, 0.0157, 0.0138], [0.1129, 0.0996, 0.0442, 0.0304, 0.0285, 0.0252, 0.0237, 0.0237], [0.1614, 0.0632, 0.0383, 0.036, 0.0338, 0.0264, 0.0205, 0.017], [0.1779, 0.084, 0.0479, 0.0397, 0.035, 0.02, 0.0176, 0.0146], [0.1735, 0.0638, 0.0467, 0.0439, 0.0283, 0.0172, 0.0152, 0.0152], [0.0592, 0.0523, 0.0491, 0.0192, 0.0159, 0.015, 0.015, 0.0132], [0.1408, 0.1096, 0.0403, 0.0216, 0.0216, 0.0216, 0.0191, 0.0168], [0.4075, 0.0379, 0.0379, 0.0295, 0.023, 0.0216, 0.0203, 0.0179], [0.5324, 0.0495, 0.0386, 0.0265, 0.0161, 0.0151, 0.0142, 0.0118], [0.245, 0.1486, 0.0376, 0.0311, 0.0258, 0.0177, 0.0167, 0.0138], [0.1933, 0.1035, 0.0806, 0.0358, 0.0316, 0.0278, 0.0278, 0.0204], [0.2088, 0.1435, 0.0678, 0.0598, 0.0363, 0.032, 0.022, 0.0194], [0.1693, 0.0906, 0.08, 0.0623, 0.0485, 0.0428, 0.0428, 0.0333], [0.3339, 0.1084, 0.058, 0.0512, 0.0452, 0.0399, 0.0311, 0.0274], [0.3033, 0.2085, 0.0527, 0.0465, 0.0362, 0.0194, 0.0161, 0.0118], [0.3854, 0.2338, 0.0316, 0.0231, 0.0149, 0.0124, 0.0103, 0.0103], [0.6092, 0.154, 0.0184, 0.0143, 0.0082, 0.0072, 0.0064, 0.006], [0.5937, 0.1325, 0.0216, 0.0131, 0.0131, 0.0116, 0.0109, 0.0109]], "ranks": {}}, {"pos": 479, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0\u00a0", "\u00a0", " "], [".", ",", "\u2013", " \u2013", ";", ":", " ", "\u2013and"], [".", ",", "\u2013", " \u2013", ";", "\u2026", "\u2026.", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " Shemale", "----------</", "\ufffd\ufffd", "aruhi", " Blowjob"], [".", "\u00a0\u00a0", ",", " \u201c.", ".@", "\u2026.", " \u201c", "\u00a0\u00a0\u00a0\u00a0"], [".", "\u2026.", "\u00a0\u00a0", " \u200b\u200b", " \u201c.", "\u2026..", ",", "\u2019."], [".", "\u3002", ".\u201d", "\uff0e", "\u00a0\u00a0", "  \n", ".\u2019", "\u00a0"], [".", "   \n", ":.", ",", "  \n", " \u200b\u200b", "\u00a0\u00a0", ",."], [".", "\u00a0", ",", "...", "\u00a0\u00a0", ",.", ":.", ":"], [",", "\u00a0", "\u00a0\u00a0", "\u00a0\u00a0\u00a0", ".", "\u00ad", " \u00a0", "\u00a0\u00a0\u00a0\u00a0"], ["\u00a0", ",", "\u00a0\u00a0", "...", ".", "\u00ad", "\u00a0\u00a0\u00a0", " \u00a0"], [" potentially", " stark", " flavours", " unpredict", "-esque", " traumatis", " lack", "\u0930\u0923"], [" potentially", " impactful", " \u00ab", " lack", " disruptive", "...", " potential", " crucial"], [" impactful", "\u708e\u708e\u590f\u65e5", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " \u00ab", " impact", "-esque", "\u0930\u0923", " disruptive"], [" albeit", " potentially", " massively", " massive", " impact", " effortlessly", " arguably", " lack"], [" massive", " especially", " more", " huge", " tough", " even", " numerous", " potential"], [",", "\u00a0", " seemingly", " \"", " potentially", " numerous", " ", " massive"], ["<|endoftext|>", " seemingly", "\u00a0", " potentially", ",", " numerous", " massive", " myriad"], [" seemingly", " myriad", " potentially", " largely", " numerous", " arguably", " heavily", " massive"], ["<|endoftext|>", " seemingly", " myriad", " numerous", " largely", " ultimately", " burgeoning", " swiftly"], ["<|endoftext|>", " numerous", " seemingly", " myriad", " \n\n", " largely", " ultimately", " heavily"], [" increasingly", "\u79cd\u79cd\u539f\u56e0", "\u65e0\u5f62\u4e2d", " myriad", " fraught", "\u60f3\u5c3d", " seemingly", " complexities"], [" increasingly", " myriad", " seemingly", " numerous", " rapidly", " ultimately", " lack", " ``"], [" numerous", " ultimately", " much", " largely", " increasingly", " rapidly", " seemingly", " more"], [" seemingly", " myriad", " ultimately", " numerous", " heavily", " rapidly", " largely", " notably"], [" heavily", " complexities", " increasingly", " ultimately", " rapidly", " myriad", " complexity", " seemingly"], [" heavily", " myriad", " complexities", " rapidly", " ultimately", " increasingly", " notably", " vastly"], ["\n\n", " heavily", " ultimately", " myriad", " seemingly", " \n\n", " rapidly", " largely"], [" myriad", " heavily", " ultimately", " increasingly", " complex", " rapidly", " seemingly", " largely"], [" complex", " heavily", " increasingly", " myriad", " complexities", " rapidly", " aggressively", " disproportionately"], [" heavily", " complex", " increasingly", " ultimately", " lack", " myriad", " largely", " rapidly"], [" heavily", " complex", " increasingly", " ultimately", " more", " much", " largely", " long"], [" heavily", " complex", " ultimately", " increasingly", " largely", " lack", " potentially", " critical"], [" complex", " heavily", " complexities", " inherently", " complexity", " potentially", " lack", " priorit"], [" complex", " heavily", " lack", " reliance", " complexities", " inherently", " complexity", " increasingly"], [" complex", " complexity", " limitations", " complexities", " reliance", " slower", " restrictions", " inherently"], [" slower", " complexity", " complex", " inefficient", " complexities", " limitations", " sluggish", " inherently"], [" complexity", " complex", " slower", " inefficient", " complexities", " inherently", " limitations", " reliance"], [" complexity", " slower", " inefficient", " complex", " complexities", " reliance", " inherently", " limitations"], [" complexity", " slower", " complex", " inefficient", " complexities", " inherently", " reliance", " limitations"], [" slower", " complexity", " inefficient", " complexities", " complex", " overhead", " constraints", " optimizations"], [" inefficient", " complexity", " complexities", " slower", " overhead", " complex", " interoper", " layered"], [" inefficient", " overhead", " complexity", " indirect", " interoper", " slower", " layered", " layers"], [" inefficient", " indirect", " overhead", " slower", " interfaces", " complexity", " interface", " layers"], [" indirect", " inefficient", " slower", " overhead", " layers", " complexity", " layered", " interfaces"], [" indirect", " inefficient", " slower", " overhead", " layers", " complexity", " reliance", " cumbersome"], [" indirect", " reliance", " complexity", " inefficient", " bottleneck", " cumbersome", " overhead", " complexities"], [" indirect", " reliance", " inherent", " overhead", " complexities", " layers", " delays", " complexity"], [" indirect", " reliance", " inherent", " delays", " bottleneck", " overhead", " interoper", " complexities"], [" reliance", " bottleneck", " indirect", " inherent", " delays", " sluggish", " overhead", " latency"], [" overhead", " reliance", " inherent", " latency", " bottleneck", " buffering", " complexities", " complexity"], [" overhead", " latency", " buffering", " inherent", " bottleneck", " reliance", " ineff", "\u5f00\u9500"], [" overhead", " inherent", "\u5f00\u9500", " latency", " bottleneck", " buffering", " ineff", " reliance"], [" overhead", " inherent", " buffering", "\u5f00\u9500", " abstraction", " layers", " latency", "-layer"], [" overhead", "\u5f00\u9500", " layers", "-layer", " layer", " inherent", "\u6210\u672c", " abstraction"], [" overhead", " layers", " abstraction", " layer", "\u5f00\u9500", "-layer", "Layers", " wrappers"], [" overhead", " abstraction", " verbosity", " layers", " JIT", "\u5f00\u9500", " layer", " JNI"], [" overhead", " JIT", " verbosity", " abstraction", " latency", " JNI", "\u5f00\u9500", " layers"], [" overhead", "\u5f00\u9500", " JIT", " verbosity", " abstraction", "\u6210\u672c", " cost", " latency"], [" overhead", "\u5f00\u9500", " abstraction", " verbosity", " cost", " JIT", " costs", " layer"], [" overhead", " abstraction", " verbosity", "\u5f00\u9500", " JIT", " cost", " JNI", " runtime"], [" overhead", " abstraction", " verbosity", " cost", " JIT", " JNI", "\u5f00\u9500", " marsh"], [" overhead", " abstraction", " cost", " verbosity", " JIT", " marsh", " JNI", " boxing"]], "p": [[0.7732, 0.2215, 0.0015, 0.0012, 0.0012, 0.0003, 0.0002, 0.0001], [0.4936, 0.2994, 0.1035, 0.0405, 0.0159, 0.0013, 0.0013, 0.0011], [0.7102, 0.2613, 0.0214, 0.002, 0.0016, 0.0012, 0.0009, 0.0003], [0.0068, 0.0064, 0.003, 0.0025, 0.0023, 0.0022, 0.0019, 0.0016], [0.4275, 0.1151, 0.0273, 0.0083, 0.0069, 0.0069, 0.0061, 0.0057], [0.4319, 0.1026, 0.0377, 0.0259, 0.0215, 0.0148, 0.013, 0.0048], [0.8311, 0.0414, 0.0143, 0.0068, 0.006, 0.0056, 0.0046, 0.0046], [0.7189, 0.018, 0.0109, 0.007, 0.0055, 0.0055, 0.0035, 0.0028], [0.8537, 0.09, 0.0331, 0.0018, 0.0015, 0.0015, 0.0013, 0.0012], [0.6993, 0.227, 0.0211, 0.0073, 0.0057, 0.0053, 0.0009, 0.0008], [0.9632, 0.0176, 0.0051, 0.0033, 0.0025, 0.0022, 0.0015, 0.0007], [0.0101, 0.0024, 0.0023, 0.0021, 0.0021, 0.0019, 0.0019, 0.0015], [0.0055, 0.0046, 0.0043, 0.0023, 0.0015, 0.0015, 0.0014, 0.0014], [0.0039, 0.0028, 0.0025, 0.0025, 0.0012, 0.001, 0.0009, 0.0008], [0.0112, 0.0064, 0.005, 0.005, 0.0041, 0.003, 0.0028, 0.0028], [0.0121, 0.0121, 0.0107, 0.0101, 0.0089, 0.0083, 0.0065, 0.0057], [0.0885, 0.0781, 0.0174, 0.0144, 0.012, 0.0093, 0.0068, 0.006], [0.054, 0.0255, 0.0212, 0.0121, 0.0106, 0.0106, 0.0094, 0.0073], [0.0551, 0.0131, 0.009, 0.007, 0.007, 0.0066, 0.0066, 0.0048], [0.0784, 0.0327, 0.0164, 0.01, 0.0083, 0.0064, 0.0057, 0.0053], [0.8042, 0.0031, 0.0027, 0.0024, 0.0011, 0.0011, 0.0011, 0.0011], [0.0032, 0.0027, 0.0019, 0.0019, 0.0018, 0.0017, 0.0016, 0.0015], [0.0072, 0.0063, 0.0052, 0.0046, 0.0046, 0.0041, 0.0038, 0.0034], [0.0182, 0.0151, 0.0104, 0.0092, 0.0076, 0.0076, 0.0067, 0.0067], [0.0148, 0.0115, 0.0102, 0.0096, 0.0084, 0.0074, 0.0062, 0.0062], [0.0116, 0.0103, 0.007, 0.0058, 0.0055, 0.0055, 0.0052, 0.0052], [0.0156, 0.0147, 0.0138, 0.0084, 0.0084, 0.0074, 0.0069, 0.0061], [0.0236, 0.0222, 0.0196, 0.0162, 0.0152, 0.0152, 0.0126, 0.0111], [0.0481, 0.0399, 0.0188, 0.0188, 0.0156, 0.0138, 0.0101, 0.0101], [0.0548, 0.0515, 0.0377, 0.0312, 0.0139, 0.013, 0.013, 0.0115], [0.0469, 0.0414, 0.0303, 0.0184, 0.0172, 0.0143, 0.0143, 0.0126], [0.0455, 0.0401, 0.0157, 0.0157, 0.0139, 0.0139, 0.0115, 0.0115], [0.0425, 0.0353, 0.0228, 0.0138, 0.0122, 0.0095, 0.0089, 0.0089], [0.0908, 0.0752, 0.0148, 0.0139, 0.0131, 0.0131, 0.0131, 0.0123], [0.0867, 0.056, 0.0264, 0.0264, 0.0233, 0.0233, 0.0219, 0.016], [0.115, 0.0791, 0.0351, 0.033, 0.0273, 0.0241, 0.0227, 0.0188], [0.175, 0.1544, 0.0729, 0.0345, 0.0286, 0.0237, 0.0196, 0.0144], [0.201, 0.0838, 0.0695, 0.0308, 0.0272, 0.0256, 0.0256, 0.0146], [0.1525, 0.0925, 0.0816, 0.0527, 0.0249, 0.0249, 0.0206, 0.0171], [0.1421, 0.0761, 0.0557, 0.0338, 0.0338, 0.0263, 0.0247, 0.0181], [0.1498, 0.1242, 0.0518, 0.0334, 0.0295, 0.0245, 0.0139, 0.0123], [0.0921, 0.0865, 0.0318, 0.0299, 0.0299, 0.0264, 0.0193, 0.017], [0.0542, 0.0479, 0.0479, 0.0422, 0.035, 0.035, 0.0309, 0.0256], [0.0995, 0.0825, 0.039, 0.0366, 0.0366, 0.0344, 0.0285, 0.0252], [0.1325, 0.1032, 0.0626, 0.0626, 0.0278, 0.0261, 0.0191, 0.0168], [0.1825, 0.0592, 0.0433, 0.0433, 0.028, 0.0247, 0.0232, 0.0218], [0.2307, 0.0661, 0.0312, 0.0293, 0.0259, 0.0259, 0.0228, 0.0202], [0.3109, 0.0612, 0.0421, 0.0289, 0.0225, 0.0187, 0.0165, 0.0165], [0.1983, 0.0827, 0.0367, 0.0268, 0.0196, 0.0153, 0.0153, 0.0153], [0.1513, 0.0557, 0.0491, 0.0433, 0.0383, 0.0263, 0.0247, 0.0232], [0.0561, 0.0282, 0.0265, 0.0161, 0.0151, 0.0142, 0.0142, 0.011], [0.346, 0.0388, 0.0267, 0.0251, 0.0251, 0.0221, 0.0172, 0.0162], [0.8779, 0.0386, 0.0111, 0.0063, 0.0052, 0.0046, 0.0036, 0.0036], [0.92, 0.0216, 0.0062, 0.0048, 0.0043, 0.0043, 0.0038, 0.0023], [0.9385, 0.0134, 0.0063, 0.0043, 0.003, 0.0026, 0.0023, 0.0023], [0.8592, 0.0202, 0.0202, 0.0095, 0.0084, 0.0058, 0.0058, 0.0051], [0.8644, 0.0179, 0.0158, 0.0085, 0.0075, 0.0066, 0.0045, 0.004], [0.7029, 0.0741, 0.0397, 0.0241, 0.0241, 0.0146, 0.0078, 0.0078], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9983, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9978, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0]], "ranks": {}}, {"pos": 480, "top": [["s", " \u2013", "\u2013", "\u044b", "\u0627\u062a", "es", "\u2026..", ".\u2013"], ["s", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "schild", "ske", "ska", "sburg"], ["s", "\u2026..", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "\u2026\"", "ska", " \u2026."], ["s", "\u05d9\u05dd", "\u044b", "\u0627\u062a", "schnitt", "satz", "ske", "schrift"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "es", "ske", "ska", "schild"], ["s", "\u0627\u062a", "\u044b", " \u200b\u200b", "\u05d9\u05dd", "es", "siz", "ske"], ["s", "es", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "ske", "siz", "ska"], ["s", "\u044b", "\u0627\u062a", "\u05d9\u05dd", "schild", "ske", "es", "ska"], ["s", " [\u2026]", " \u2026.", "schild", "\u2026..", "\u044b", "es", " \u200b\u200b"], ["s", ",", "es", "\u044b", "\u2013", ".\u2013", "schild", " [\u2026]"], ["s", "es", " [\u2026]", ",", ".\u2013", "\u044b", "\u2013", ".\u2026"], ["s", "es", "\u044b", "\u05d9\u05dd", "schild", "\u0627\u062a", "ska", "siz"], ["s", "es", "\u044b", "\u05d9\u05dd", "siz", "schild", ".\u2013", "\u0627\u062a"], ["s", "es", "\u044b", "\u05d9\u05dd", "siz", "ska", ".\u2013", "ske"], ["s", "es", " of", " \u2013", "siz", "ska", "\u0627\u062a", "\u044b"], ["s", "es", " of", "siz", "\u0627\u062a", "\u044b", "ed", " \u2013"], ["s", "es", " \u2013", " of", "\u2013", ",", "siz", "y"], ["s", "es", "siz", "\u0627\u062a", "\u2013", " of", "\u044b", "ska"], ["s", "es", "siz", "\u0627\u062a", " of", "\u044b", " myriad", "ska"], ["s", "es", " of", " myriad", "siz", "\u2013\u2013", " requisite", "\u044b"], ["s", "<|endoftext|>", "es", " myriad", " of", "\u2013", " \n\n", " requisite"], ["s", "es", "siz", "svar", "sze", "\u044b", "sste", "\u0627\u062a"], ["s", "es", " of", "siz", " requisite", " shifting", " myriad", " diminishing"], ["s", " of", "es", "of", " beyond", " myriad", " shifting", " ensuing"], ["s", " \n\n", " \r\n\r\n", " of", "of", "\n\n", "\r\n\r\n", "es"], ["s", " **\u2018", " of", " \r\n\r\n", " **\u2013", " **\u201c", " *\u201c", " \n\n"], ["s", " of", "\u5f00\u9500", "es", " complexities", " thereof", " **\u2018", " powering"], ["s", " of", "\n\n", " myriad", " \n\n", " shifting", " powering", " requisite"], ["s", " of", "\n\n", "of", " overhead", " powering", "es", " complexities"], ["s", " of", " **\u2018", " **\u201c", " **\u2013", " overhead", "**\u2013", "of"], ["s", " of", " overhead", "es", " costs", "of", " machinery", " beyond"], [" of", "s", " **", " costs", " overhead", "es", " cost", " machinery"], [" of", "s", " overhead", " costs", "es", " outsourcing", " balancing", " machinery"], [" of", "s", " overhead", " machinery", " powering", " tech", " complexities", "-heavy"], [" overhead", " powering", "s", " complexities", " tech", "-heavy", " shifting", " costly"], [" complexities", "-heavy", " overhead", " complexity", "s", " of", "\u5f00\u9500", " powering"], [" overhead", "\u5f00\u9500", " complexity", " complexities", " costly", "-heavy", " burden", " slower"], [" overhead", "\u5f00\u9500", " complexity", " transitioning", " layered", " brid", " costly", " balancing"], [" overhead", "\u5f00\u9500", " transitioning", " brid", " handling", " transferring", " translating", " managing"], [" overhead", " transitioning", "\u5f00\u9500", " translating", " transferring", " brid", " handling", " converting"], [" overhead", "\u5f00\u9500", " translating", " transferring", " transitioning", " converting", " of", " costs"], [" overhead", " transitioning", " handling", " transferring", " interf", " brid", " translating", " processing"], [" overhead", " interfaces", " interf", " transferring", " transfers", " brid", " interface", " transitioning"], [" overhead", " interfaces", " transfers", " transferring", " interf", " brid", " interface", " processing"], [" overhead", " transfers", " interfaces", " transferring", " brid", " interf", " conversions", " layers"], [" overhead", " transfers", " brid", " transferring", " interf", " interfaces", " conversions", " transfer"], [" overhead", " brid", " transferring", " transfers", " interfaces", " interf", " intermedi", " layers"], [" transferring", " overhead", " brid", " interf", " transfers", " interfaces", " transitioning", " transfer"], [" interf", " transferring", " overhead", " brid", " interfaces", " transfers", " transitioning", " interoper"], [" transferring", " interf", " overhead", " interfaces", " brid", " interoper", " transfers", " transitioning"], [" overhead", " interf", " interfaces", " transferring", " transitioning", " interoper", "-heavy", " brid"], [" interf", " transferring", " brid", " translating", " interfaces", " converting", " interoper", " wrappers"], [" converting", " translating", " brid", " wrappers", " transferring", " conversions", " syncing", " buffering"], [" brid", " translating", " converting", " transferring", " wrappers", " syncing", " accessing", " interf"], [" converting", " syncing", " translating", " interoper", " interf", " brid", " transferring", " wrappers"], [" wrappers", "marshal", "marsh", " marsh", " wrapping", " interoper", " interf", "Marsh"], [" marsh", "marsh", " wrappers", "Marsh", " marshal", " Marsh", "marshal", " JNI"], [" marsh", "marsh", "Marsh", " Marsh", " marshal", " wrappers", "marshal", " Marshal"], [" marsh", "marsh", " marshal", " Marsh", "Marsh", " Marshal", "marshal", " brid"], [" marsh", " Marshal", " marshal", " brid", " wrapping", " Marsh", " crossing", "marsh"], [" marsh", " Marshal", " marshal", " brid", " of", " Marsh", " crossing", " wrapping"], [" marsh", " of", " marshal", " Marshal", " Marsh", " brid", " marshaller", " crossing"], [" of", " marsh", " boxing", " managed", " brid", " IL", " Marshal", " marshal"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.994, 0.0018, 0.001, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9981, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.991, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9397, 0.0439, 0.0008, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.9348, 0.0018, 0.0011, 0.0007, 0.0006, 0.0005, 0.0005, 0.0004], [0.9387, 0.0023, 0.0018, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003], [0.9431, 0.0222, 0.0018, 0.0016, 0.0005, 0.0004, 0.0003, 0.0002], [0.881, 0.0104, 0.0092, 0.0038, 0.0023, 0.0023, 0.0019, 0.001], [0.5843, 0.0101, 0.0057, 0.0054, 0.0042, 0.0039, 0.0033, 0.0027], [0.6589, 0.0069, 0.0042, 0.0032, 0.0022, 0.0022, 0.0021, 0.0021], [0.4556, 0.0656, 0.0617, 0.0078, 0.0078, 0.0045, 0.0042, 0.0042], [0.513, 0.0508, 0.0113, 0.0106, 0.0061, 0.005, 0.0039, 0.0037], [0.4349, 0.0553, 0.0217, 0.0158, 0.009, 0.009, 0.007, 0.0066], [0.3823, 0.3591, 0.0108, 0.0055, 0.0045, 0.0042, 0.0029, 0.0027], [0.543, 0.1656, 0.0145, 0.0073, 0.006, 0.0041, 0.0025, 0.0022], [0.3086, 0.1758, 0.0136, 0.0077, 0.0057, 0.0053, 0.0047, 0.0047], [0.0738, 0.042, 0.0165, 0.0145, 0.0145, 0.0128, 0.012, 0.012], [0.0271, 0.0198, 0.0186, 0.0164, 0.0154, 0.0145, 0.0113, 0.01], [0.0244, 0.0229, 0.0215, 0.019, 0.0158, 0.0139, 0.0108, 0.0096], [0.0975, 0.0461, 0.0317, 0.0204, 0.015, 0.0109, 0.0103, 0.0091], [0.2154, 0.0699, 0.0138, 0.0138, 0.0095, 0.0095, 0.0084, 0.0084], [0.1405, 0.055, 0.0334, 0.019, 0.0148, 0.0123, 0.0123, 0.0123], [0.1283, 0.0443, 0.0391, 0.0368, 0.0286, 0.0253, 0.0163, 0.0144], [0.3274, 0.0534, 0.0269, 0.0237, 0.0197, 0.0174, 0.0153, 0.0127], [0.2791, 0.0333, 0.0333, 0.0313, 0.0244, 0.0202, 0.019, 0.019], [0.3029, 0.034, 0.0319, 0.0282, 0.0249, 0.0219, 0.0219, 0.0182], [0.1965, 0.0563, 0.0529, 0.0412, 0.0301, 0.0266, 0.0266, 0.022], [0.2176, 0.0586, 0.0428, 0.0378, 0.0334, 0.0277, 0.0244, 0.0179], [0.1261, 0.0675, 0.0526, 0.0526, 0.0494, 0.0319, 0.0206, 0.0193], [0.097, 0.0488, 0.0458, 0.0431, 0.038, 0.0315, 0.0179, 0.0179], [0.1069, 0.1004, 0.0782, 0.0609, 0.0474, 0.0369, 0.027, 0.0186], [0.1455, 0.1, 0.0607, 0.0417, 0.0392, 0.0325, 0.0223, 0.0153], [0.1093, 0.1026, 0.0485, 0.0378, 0.0215, 0.0168, 0.0168, 0.0157], [0.025, 0.025, 0.0161, 0.0152, 0.0098, 0.0092, 0.0086, 0.0067], [0.0671, 0.0461, 0.0382, 0.0359, 0.0338, 0.0247, 0.0192, 0.015], [0.0717, 0.0558, 0.0493, 0.0384, 0.0361, 0.0181, 0.0181, 0.0141], [0.0761, 0.0671, 0.0592, 0.0557, 0.0407, 0.0407, 0.0359, 0.0317], [0.1313, 0.0797, 0.066, 0.0376, 0.0332, 0.0332, 0.0312, 0.0293], [0.2369, 0.0599, 0.0563, 0.0438, 0.0412, 0.0387, 0.0301, 0.0266], [0.2201, 0.1335, 0.0917, 0.0556, 0.0491, 0.0491, 0.0491, 0.0298], [0.3394, 0.1415, 0.0858, 0.0668, 0.0405, 0.0316, 0.0279, 0.0217], [0.5125, 0.0891, 0.0891, 0.0694, 0.0612, 0.0421, 0.0328, 0.0255], [0.583, 0.0894, 0.0696, 0.0373, 0.0329, 0.029, 0.0256, 0.0226], [0.6179, 0.0836, 0.0738, 0.0308, 0.0308, 0.0308, 0.0272, 0.0106], [0.4665, 0.4117, 0.0298, 0.0298, 0.017, 0.0052, 0.0033, 0.0033], [0.921, 0.0335, 0.0048, 0.0029, 0.0028, 0.0028, 0.002, 0.0019]], "ranks": {}}, {"pos": 481, "top": [[".", ",", " \u2013", "\u2013", ";", "\u2026..", "\u2026.", "\u00a0"], [" \u2013", "\u2013", "\u2013and", ".", " \u200b\u200b", ".\u2013", "\u2026..", ","], ["\u2013", ".", ",", " \u2013", "\u2026", "\u2026..", "\u2026.", ".\u2013"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Guta", " Shemale", " Blowjob", " Strec", " \u041a\u0440\u0430\u0441\u0438", " Gabrie"], [".@", " \u200b\u200b", ".", "@", ":@", " (@", ".\u201c", ",@"], [" \u200b\u200b", ".", "\u2026..", ",", "\u2026.", "\u2026", ".\u2013", "\u2026\u2026\u2026\u2026"], [".", "..\"", ",", "\u2026..", "..", "\u2026.", ".\"", ".\u201c"], [".", ",", "..\"", "..", "\u2026..", ".\u2013", ",.", "\u2026."], [".", ",", ",.", "\u00a0", ".\u201c", ".\u201d", ".\u2013", "..\""], [",", "\u2013", "\u00a0", ".\u2013", "\u2013and", ".", "\u2026", "-$"], [",", "\u00a0", ".", "\u2013", "\u2026", " \u2013", " ", ".."], [" showcasing", " **\u2013", " tackling", " pushing", " *\u2013", " crafting", "**\u2013", " *\u201c"], [" \u2013", " pushing", "\u2013", " shaping", " crafting", "\u2013and", " manipulating", " **\u2013"], [" \u2013", "\u2013", " tackling", " pushing", " digging", " shaping", "\u2013and", " spending"], [" \u2013", "\u2013", " ", " \u2018", " \u201c", " w", "\u2013and", " going"], [" \u2013", " \u2018", " ", " going", "\u2013", " \u201c", " ch", " getting"], [" \u2013", ",", "\u2013", " ", " \u201c", " \u2018", "\u00a0", " \""], ["\u2013", " \u2013", "\u2013and", ",", " \u201c", " tweaking", " pushing", " spending"], [" \u201c", " \u2013", " \u2018", "\u2013", " myriad", " pushing", " absorbing", " launching"], [" \u201c", " myriad", " \u2018", " burgeoning", " sprawling", " absorbing", " shifting", " expanding"], ["<|endoftext|>", " myriad", " \n\n", " swiftly", " \"", " burgeoning", " nearly", " seemingly"], [" ``", " collapsing", " sprawling", " deploying", " overseeing", " ''", " shifting", " managing"], [" ``", " ''", " myriad", " shifting", " collapsing", " overseeing", " absorbing", " competing"], [" ``", " \u2018", " ''", " --", " over", " myriad", " \u201c", " ultimately"], [" ``", " \n\n", " \n \n", " ''", "   \n\n", " \n\n\n", " \r\n \r\n", " transitioning"], [" ``", " **", " transitioning", " *\u201c", " complex", " collapsing", " **\u2018", " managing"], [" ``", " ''", " complex", " managing", " transitioning", " heavily", " competing", " hacking"], [" ``", " \n\n", " ,", " complex", "\n\n", " over", " --", " ''"], [" complex", " ``", " technology", " labor", " myriad", " over", " heavily", " commercial"], [" **", " __", " \n\n", " complex", " \n  \n", " \n \n", " **\u201c", " technology"], [" complex", " technology", " \n\n", " **", " \u201c", " ", " technologies", " labor"], [" complex", " **", " technology", " ", " commercial", " multiple", " over", " modern"], [" complex", " technology", " over", " modern", " multiple", " non", " commercial", " internal"], [" complex", " technology", " technologies", " tech", " infrastructure", " multiple", " transitioning", " hybrid"], [" complex", " \u201c", " technology", " *\u201c", " technologies", " tech", " multiple", " infrastructure"], [" \u201c", "\u2026*", " \u2026", " complex", " \u2013", " *\u201c", " [\u2026]", "\u2026\u201d"], [" \u201c", " complex", " software", " translation", " internal", " translations", " translating", " \u2026"], [" \u201c", " complex", " translation", " internal", " interoper", " translations", " translating", " European"], [" \u201c", " translation", " translations", " translating", " interoper", "\u7ffb\u8bd1", " translators", " translator"], [" translation", " translations", " Java", " interoper", " translating", "\u7ffb\u8bd1", " \u201c", " European"], [" Java", " translation", " interoper", " translations", " translating", " conversion", " internal", "Java"], [" Java", " interoper", " translation", " interfaces", " interface", " translations", " internal", " translating"], [" interfaces", " interoper", " Java", " interface", " translation", " translations", " interf", " brid"], [" interfaces", " interface", " translation", " interoper", " protections", " Java", " translations", " automated"], [" interfaces", " interface", " protections", " interoper", " Java", " translation", " safety", " brid"], [" interfaces", " interoper", " translation", " interface", " translations", " protections", " interf", " Java"], [" interfaces", " interoper", " protections", " indirect", " protection", " interface", " translation", " translations"], [" interfaces", " protections", " interoper", " protection", " interface", " indirect", " translation", " translations"], [" interfaces", " protections", " interoper", " interf", " indirect", " interface", " APIs", " protection"], [" interfaces", " interoper", " interf", " protections", " APIs", " translations", " interface", " indirect"], [" interfaces", " interoper", " translating", " wrappers", " interf", " APIs", " Interfaces", " converting"], [" interfaces", " interoper", " wrappers", " interf", " accessing", " translating", " Interfaces", " APIs"], [" interoper", " wrappers", " accessing", " interfaces", " translating", " APIs", " converting", "Interop"], [" accessing", " wrappers", " interfaces", " interoper", " translating", " APIs", " abstraction", " converting"], [" accessing", " interoper", " wrappers", "Interop", " converting", " translating", " interfaces", " APIs"], [" wrappers", " interoper", "Interop", " bindings", "interop", " wrapping", " JNI", " interfaces"], [" JNI", " wrappers", " bindings", " marsh", " interoper", "Interop", "Marsh", "marsh"], [" JNI", " wrappers", " marsh", "Marsh", "Interop", "marsh", " Marsh", " invoking"], [" marsh", "Interop", " JNI", "Marsh", " marshal", "marsh", " JIT", " Marsh"], [" marsh", " bindings", " marshal", " binding", " Marshal", " interoper", " bounds", "marsh"], [" marsh", " marshal", " Marshal", " Marsh", " marshaller", " interoper", "marsh", " IL"], [" marsh", " marshal", " Marsh", " Marshal", " marshaller", " boxing", "marsh", " interoper"], [" marsh", " binding", " boxing", " IL", " bounding", " brid", " marshal", " bounds"]], "p": [[0.7854, 0.1063, 0.0731, 0.0269, 0.0019, 0.001, 0.001, 0.0008], [0.6162, 0.1464, 0.0239, 0.0094, 0.0053, 0.0047, 0.0042, 0.0022], [0.5582, 0.1599, 0.1599, 0.0667, 0.0191, 0.0169, 0.0055, 0.0043], [0.016, 0.0086, 0.0076, 0.0067, 0.0063, 0.0052, 0.004, 0.0028], [0.137, 0.0571, 0.0445, 0.0325, 0.0253, 0.0224, 0.0185, 0.0185], [0.2328, 0.2055, 0.16, 0.0971, 0.0756, 0.0085, 0.0075, 0.0038], [0.6247, 0.0375, 0.0311, 0.0311, 0.0214, 0.0166, 0.0166, 0.0156], [0.5565, 0.1697, 0.0624, 0.026, 0.0245, 0.019, 0.0179, 0.0123], [0.7928, 0.1769, 0.0039, 0.0034, 0.003, 0.0017, 0.0016, 0.0016], [0.8731, 0.0633, 0.0125, 0.0071, 0.0055, 0.0026, 0.0022, 0.001], [0.6334, 0.1413, 0.0857, 0.0589, 0.0405, 0.0066, 0.004, 0.0028], [0.0073, 0.0068, 0.006, 0.0057, 0.0041, 0.0039, 0.0039, 0.0037], [0.0235, 0.0076, 0.0076, 0.0072, 0.0072, 0.0067, 0.0067, 0.0056], [0.04, 0.0228, 0.0147, 0.0108, 0.0079, 0.0079, 0.0065, 0.0054], [0.2389, 0.1129, 0.0776, 0.0604, 0.0077, 0.006, 0.0053, 0.005], [0.1287, 0.0369, 0.0185, 0.0164, 0.0113, 0.0099, 0.0082, 0.0053], [0.2518, 0.1435, 0.1348, 0.0249, 0.022, 0.0161, 0.0086, 0.0076], [0.0935, 0.0775, 0.0162, 0.0143, 0.0135, 0.0068, 0.0053, 0.005], [0.1173, 0.018, 0.0096, 0.0096, 0.007, 0.0062, 0.004, 0.004], [0.0426, 0.0178, 0.0157, 0.007, 0.007, 0.0061, 0.0054, 0.0045], [0.2565, 0.0106, 0.0064, 0.0044, 0.0039, 0.0037, 0.003, 0.0027], [0.0669, 0.0046, 0.0038, 0.0035, 0.0035, 0.0031, 0.0028, 0.0028], [0.5733, 0.0153, 0.0041, 0.0032, 0.003, 0.0027, 0.0022, 0.0022], [0.1302, 0.02, 0.0094, 0.0078, 0.0065, 0.0065, 0.0065, 0.0054], [0.27, 0.0469, 0.0098, 0.0082, 0.0072, 0.0063, 0.006, 0.0056], [0.5234, 0.0203, 0.0079, 0.0062, 0.004, 0.0038, 0.0033, 0.0031], [0.5585, 0.0116, 0.0096, 0.0031, 0.0023, 0.0023, 0.0021, 0.002], [0.0504, 0.0238, 0.0198, 0.0154, 0.0136, 0.012, 0.0113, 0.0113], [0.0406, 0.0358, 0.0109, 0.0103, 0.0085, 0.0075, 0.007, 0.007], [0.3711, 0.0882, 0.0443, 0.0305, 0.0185, 0.0144, 0.0135, 0.0127], [0.0799, 0.0516, 0.0354, 0.0333, 0.0202, 0.019, 0.0139, 0.0122], [0.0548, 0.0312, 0.0259, 0.0178, 0.0115, 0.0115, 0.0108, 0.0101], [0.0505, 0.0254, 0.0175, 0.0128, 0.0113, 0.0094, 0.0083, 0.0068], [0.122, 0.0892, 0.0508, 0.0256, 0.0176, 0.0165, 0.0155, 0.0129], [0.1578, 0.0618, 0.0425, 0.0311, 0.0258, 0.0201, 0.0156, 0.0147], [0.3369, 0.1094, 0.1027, 0.0428, 0.0229, 0.0215, 0.0115, 0.0108], [0.0926, 0.0721, 0.0341, 0.0282, 0.0234, 0.022, 0.0207, 0.0194], [0.1059, 0.0642, 0.0366, 0.0285, 0.0236, 0.0222, 0.0184, 0.0143], [0.1365, 0.1063, 0.0778, 0.0416, 0.0324, 0.0305, 0.0253, 0.0185], [0.1083, 0.0744, 0.0544, 0.0424, 0.0398, 0.0374, 0.0274, 0.0257], [0.1777, 0.0788, 0.0577, 0.0372, 0.0272, 0.0226, 0.0199, 0.0176], [0.2285, 0.0423, 0.0397, 0.0309, 0.0226, 0.0226, 0.0155, 0.0137], [0.1372, 0.0943, 0.0572, 0.0474, 0.0306, 0.0254, 0.0224, 0.0164], [0.143, 0.0464, 0.0361, 0.034, 0.03, 0.0264, 0.0219, 0.0193], [0.1522, 0.0436, 0.034, 0.034, 0.0265, 0.0219, 0.0219, 0.0171], [0.1363, 0.039, 0.0324, 0.0286, 0.0252, 0.0209, 0.0196, 0.0173], [0.1279, 0.0604, 0.0568, 0.0285, 0.0285, 0.0222, 0.0196, 0.0173], [0.1495, 0.0706, 0.0586, 0.0277, 0.0244, 0.0244, 0.0179, 0.0168], [0.1731, 0.0986, 0.0768, 0.022, 0.022, 0.0182, 0.0151, 0.0151], [0.1569, 0.1301, 0.0309, 0.0226, 0.0176, 0.0137, 0.0129, 0.0121], [0.1027, 0.0623, 0.0168, 0.0131, 0.0123, 0.0115, 0.0108, 0.009], [0.2583, 0.1382, 0.0653, 0.0541, 0.0256, 0.0199, 0.0146, 0.0146], [0.1483, 0.1483, 0.0658, 0.0618, 0.0311, 0.0311, 0.0292, 0.0177], [0.1968, 0.1968, 0.0724, 0.0724, 0.0235, 0.0195, 0.0183, 0.0162], [0.1618, 0.1112, 0.1112, 0.0595, 0.0281, 0.0264, 0.0206, 0.0193], [0.3213, 0.1182, 0.092, 0.0717, 0.0219, 0.0193, 0.0181, 0.0181], [0.2702, 0.1276, 0.0774, 0.0414, 0.0414, 0.0366, 0.0285, 0.0285], [0.2571, 0.1215, 0.065, 0.0447, 0.0348, 0.0348, 0.0307, 0.0271], [0.2195, 0.1037, 0.0713, 0.0629, 0.0629, 0.0555, 0.049, 0.049], [0.3361, 0.085, 0.075, 0.0662, 0.0516, 0.0354, 0.0244, 0.0244], [0.5938, 0.1032, 0.0487, 0.0335, 0.0158, 0.0158, 0.0149, 0.0096], [0.7874, 0.0646, 0.0238, 0.0238, 0.0154, 0.012, 0.0087, 0.0039], [0.4067, 0.0966, 0.0908, 0.0403, 0.0355, 0.0229, 0.0229, 0.0179]], "ranks": {}}, {"pos": 482, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0\u00a0", " ", "\u00a0"], [".", ",", " \u2013", "\u2013", ";", " \u200b\u200b", "\u2013and", " "], [".", ",", "\u2013", " \u2013", "\u2026", "\u2026.", ";", "\u2026.."], [" milfs", "-------------</", " Shemale", "----------</", " Blowjob", " cumshot", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ;;^"], [".", ".@", " (@", " \u201c.", "(@", "\uff20", " CIF", " \"@"], [".", " \u200b\u200b", " \u201c.", ",", "\u00a0\u00a0", "\u2019.", "!\u201d.", " )."], [".", ".\u2019", ".\u201d", "  \n", ".\"", ".\u201c", "   \n", "\u2019."], [".", "   \n", " \u200b\u200b", ".@", ":.", "\u4e94\u989c\u516d\u8272\u7684", " Geile", "(@"], [".", ",", ",.", ".\u201d", ":.", ":", "!.", ".\u201c"], [",", ".", ",.", ";", " \u00ad", ":", "-J", "-,"], [".", ",", "...", " ", "-", "o", "d", "er"], ["\u4e94\u989c\u516d\u8272\u7684", "ian", "ician", " ***", " **'", "er", "igan", " junk"], ["er", "\u88f3", "-esque", " DRM", "ian", "\u4e94\u989c\u516d\u8272\u7684", "-ish", "-prepend"], ["-esque", " albeit", "\u88f3", " inventive", "\u52c7\u5f80\u76f4\u524d", ",", "an", " massive"], ["an", " ", " '", "o", " \"", " \ufffd", " requisite", " albeit"], ["an", " myriad", "o", "-esque", " sprawling", " arguably", " tech", " potentially"], ["o", ",", " \"", "an", " myriad", "-esque", "a", "e"], ["-esque", " tech", " myriad", " sprawling", "o", "\u6b64\u756a", " revamped", " savvy"], ["-esque", " myriad", "o", " sprawling", "\u6b64\u756a", " ultimately", " arguably", " \""], [" myriad", "-esque", " ultimately", " sprawling", " arguably", "\u6b64\u756a", " seemingly", "\u5373\u4fbf"], ["<|endoftext|>", " myriad", "\n\n", "  \n\n", " \n\n", " ultimately", " \"", "\u5373\u4fbf"], [" ``", " ;;^", " Gabrie", "\u5171\u540c\u6253\u9020", "\u7cfb\u7edf\u7b49", "\u6b64\u756a", "-esque", " ''"], [" ``", " ''", " --", " ;;^", " Gabrie", "(\"\"", " \"\"", " ``("], [" ``", " --", " ultimately", " ''", " '", " subsequently", " complex", " \"\""], [" ``", " ''", " --", " ultimately", " \\\"", " \"\"", " hugely", " heavily"], [" ``", " \\\"", " ;;^", " tech", " complex", " technology", " **>>", " system"], [" ``", " complex", " technology", " software", " ''", " industrial", " system", " engine"], [" ultimately", " ``", " complex", " ''", " ,", " --", " '", " system"], [" tech", " technology", " system", " complex", " System", " \\\"", " infrastructure", " software"], [" technology", " ____", " tech", " complex", " **", " infrastructure", " system", " ___"], [" technology", " system", " complex", " tech", " System", ".", " software", " systems"], [" technology", " system", " complex", " System", " .", " modern", " systems", " "], [" system", " technology", " complex", " .", " System", " modern", " power", " Central"], [" technology", " tech", " system", " System", " complex", " infrastructure", " systems", " software"], [" tech", " technology", " system", " infrastructure", " complex", " System", " software", " hardware"], [" System", " \u201c", " technology", " infrastructure", " tech", " software", " engine", " complex"], [" System", " engine", " infrastructure", " Microsoft", " software", " JVM", " technology", " Java"], [" infrastructure", " System", " engine", " system", " Infrastructure", " Core", " \u201c", " internal"], [" infrastructure", " System", " system", " engine", " framework", " Infrastructure", " Core", " systems"], [" JVM", " Java", " Microsoft", " Framework", " framework", " System", " infrastructure", " system"], [" JVM", " Java", " Framework", " System", " Microsoft", " framework", " engine", " runtime"], [" JVM", " Java", " System", " Framework", " engine", " framework", " system", " runtime"], [" JVM", " runtime", " engine", " Java", " Framework", " interoper", " framework", " infrastructure"], [" JVM", " Framework", " runtime", " Runtime", " engine", " Java", " Engine", " framework"], [" JVM", " runtime", " engine", " Framework", " infrastructure", " Java", " engines", " framework"], [" JVM", " runtime", " engine", " infrastructure", " MCU", " engines", " Infrastructure", " machinery"], [" JVM", " runtime", " infrastructure", " Infrastructure", " Framework", "-framework", " Runtime", "runtime"], [" Framework", " Infrastructure", " Runtime", " runtime", " infrastructure", " JVM", "runtime", "/runtime"], ["runtime", "/runtime", " Runtime", " runtime", " Infrastructure", "-runtime", " Framework", "-framework"], ["-framework", " interoper", "-platform", "/runtime", " JVM", "runtime", " Runtime", " Framework"], ["-framework", " JVM", " interoper", "runtime", "/Framework", "-runtime", " bootloader", "/framework"], [" interoper", "runtime", "-runtime", " JVM", " runtime", " Runtime", "-framework", "Interop"], ["runtime", " runtime", "/runtime", " Runtime", "-runtime", "-framework", "Interop", "_runtime"], [" runtime", "runtime", " Runtime", "/Framework", "Interop", "-framework", "/runtime", " JIT"], [" runtime", " Runtime", "runtime", "Interop", " JIT", " Xamarin", "/runtime", "-runtime"], [" runtime", " Runtime", " JIT", " Xamarin", "runtime", "interpreter", "Interop", "_runtime"], [" runtime", " JIT", " Runtime", " Xamarin", " Android", " Mono", "runtime", "interpreter"], [" JIT", " VM", " runtime", " Xamarin", "interpreter", " Runtime", " JVM", " JNI"], [" runtime", " Mono", " JIT", " Runtime", " CLR", "runtime", " Xamarin", "CLR"], [" runtime", " Runtime", " CLR", " Mono", "runtime", "CLR", "/runtime", " Unity"], [" runtime", " CLR", " Runtime", " CLI", " Mono", "runtime", "CLR", "/runtime"], [" runtime", " CLR", " CLI", " Mono", " Runtime", " Unity", " mono", "CLR"], [" CLR", " Mono", " CLI", " runtime", " binder", " Unity", " IL", " mono"]], "p": [[0.8885, 0.1061, 0.0022, 0.0009, 0.0008, 0.0003, 0.0002, 0.0002], [0.3478, 0.1861, 0.0996, 0.0776, 0.0112, 0.0028, 0.0027, 0.0027], [0.7453, 0.1884, 0.042, 0.0175, 0.0016, 0.0013, 0.0011, 0.0008], [0.0202, 0.0074, 0.0066, 0.0062, 0.0054, 0.0045, 0.0045, 0.004], [0.0301, 0.025, 0.0172, 0.0118, 0.0067, 0.0059, 0.0059, 0.0056], [0.483, 0.1669, 0.0129, 0.0057, 0.0031, 0.0025, 0.0024, 0.0022], [0.8652, 0.0553, 0.0335, 0.0043, 0.0031, 0.0028, 0.0026, 0.0024], [0.1956, 0.0385, 0.0194, 0.0117, 0.0086, 0.0067, 0.0049, 0.0046], [0.9826, 0.0124, 0.001, 0.0008, 0.0002, 0.0002, 0.0002, 0.0001], [0.8244, 0.0767, 0.0026, 0.0015, 0.0013, 0.0009, 0.0007, 0.0006], [0.8228, 0.0983, 0.0182, 0.0133, 0.0059, 0.0043, 0.0023, 0.0022], [0.0039, 0.0032, 0.0027, 0.0027, 0.0025, 0.0024, 0.0022, 0.0021], [0.0041, 0.0036, 0.0034, 0.0034, 0.0023, 0.0022, 0.0016, 0.0016], [0.0026, 0.0016, 0.0014, 0.0013, 0.0012, 0.0012, 0.0011, 0.001], [0.0184, 0.0127, 0.0127, 0.0112, 0.0099, 0.0064, 0.0039, 0.0036], [0.0099, 0.0093, 0.0088, 0.0064, 0.0047, 0.0044, 0.0041, 0.0039], [0.0751, 0.0706, 0.026, 0.0148, 0.0115, 0.009, 0.0079, 0.0074], [0.038, 0.0075, 0.007, 0.0048, 0.0048, 0.0038, 0.0028, 0.0028], [0.0325, 0.0082, 0.0053, 0.005, 0.0047, 0.0041, 0.0032, 0.0032], [0.0359, 0.0132, 0.0124, 0.0091, 0.0091, 0.0091, 0.004, 0.0038], [0.3103, 0.0175, 0.012, 0.012, 0.0088, 0.0057, 0.005, 0.0039], [0.0121, 0.0088, 0.0022, 0.0015, 0.0014, 0.0014, 0.0013, 0.0012], [0.5581, 0.0296, 0.0038, 0.0038, 0.0024, 0.002, 0.0019, 0.0017], [0.1868, 0.0325, 0.0253, 0.0238, 0.006, 0.0044, 0.0041, 0.0039], [0.0709, 0.0168, 0.0149, 0.0123, 0.0085, 0.0045, 0.0024, 0.0024], [0.0626, 0.0096, 0.009, 0.0055, 0.0051, 0.0045, 0.0045, 0.0045], [0.1463, 0.0154, 0.0145, 0.0113, 0.01, 0.0088, 0.0083, 0.0073], [0.0279, 0.0204, 0.018, 0.0159, 0.0159, 0.014, 0.0103, 0.009], [0.0417, 0.0392, 0.0223, 0.0223, 0.0144, 0.0135, 0.0127, 0.0127], [0.0853, 0.0403, 0.0379, 0.0277, 0.0244, 0.0244, 0.023, 0.023], [0.1783, 0.0544, 0.048, 0.033, 0.031, 0.0241, 0.0188, 0.0177], [0.0781, 0.0689, 0.0369, 0.0287, 0.0164, 0.0144, 0.0144, 0.0099], [0.0535, 0.0535, 0.0345, 0.0223, 0.0185, 0.0144, 0.0127, 0.0099], [0.1606, 0.0807, 0.0629, 0.0316, 0.0297, 0.0204, 0.0169, 0.0124], [0.1207, 0.1065, 0.0417, 0.0368, 0.0305, 0.0287, 0.0153, 0.0144], [0.04, 0.0311, 0.0275, 0.0258, 0.0243, 0.0214, 0.0157, 0.0157], [0.0596, 0.041, 0.0385, 0.03, 0.0282, 0.0264, 0.0206, 0.0193], [0.0822, 0.0681, 0.0302, 0.0284, 0.0235, 0.0208, 0.0195, 0.0126], [0.1165, 0.0752, 0.055, 0.0402, 0.0294, 0.026, 0.0158, 0.0158], [0.0608, 0.0608, 0.0571, 0.0473, 0.0473, 0.0393, 0.0253, 0.0136], [0.1211, 0.1068, 0.0609, 0.0609, 0.0537, 0.0347, 0.0198, 0.0174], [0.1186, 0.0676, 0.0635, 0.0494, 0.034, 0.0319, 0.0319, 0.03], [0.1367, 0.0535, 0.0417, 0.0325, 0.0253, 0.0238, 0.021, 0.0174], [0.0982, 0.0526, 0.0494, 0.0361, 0.0264, 0.0233, 0.016, 0.016], [0.0711, 0.0459, 0.0296, 0.0246, 0.0217, 0.0204, 0.018, 0.0149], [0.0519, 0.0278, 0.0216, 0.0216, 0.0116, 0.0109, 0.0109, 0.0102], [0.0631, 0.0407, 0.0359, 0.0205, 0.0192, 0.016, 0.016, 0.0141], [0.0332, 0.0332, 0.0332, 0.0293, 0.0258, 0.0189, 0.0147, 0.0095], [0.0247, 0.0232, 0.0218, 0.018, 0.0159, 0.015, 0.0141, 0.0132], [0.0239, 0.0164, 0.012, 0.0113, 0.0113, 0.0106, 0.0088, 0.0083], [0.0132, 0.0132, 0.0124, 0.0103, 0.0071, 0.0055, 0.0055, 0.0052], [0.0448, 0.0349, 0.0328, 0.0328, 0.0328, 0.0211, 0.0187, 0.0175], [0.1437, 0.1268, 0.0988, 0.0679, 0.0529, 0.0266, 0.025, 0.025], [0.0991, 0.0991, 0.0531, 0.0468, 0.0413, 0.0413, 0.0284, 0.0208], [0.3457, 0.1272, 0.0771, 0.0771, 0.0468, 0.0468, 0.0162, 0.0111], [0.3746, 0.1073, 0.0836, 0.0651, 0.0651, 0.0348, 0.0271, 0.0239], [0.243, 0.167, 0.1148, 0.0894, 0.0329, 0.029, 0.029, 0.0226], [0.3869, 0.1256, 0.1108, 0.0762, 0.0408, 0.036, 0.0247, 0.017], [0.4296, 0.1395, 0.1231, 0.0959, 0.0581, 0.0275, 0.0214, 0.0147], [0.7236, 0.1257, 0.0463, 0.0318, 0.017, 0.0071, 0.0071, 0.0034], [0.6942, 0.1755, 0.0444, 0.0163, 0.0127, 0.0099, 0.0087, 0.0039], [0.5489, 0.2019, 0.0743, 0.0351, 0.0176, 0.0121, 0.0074, 0.0069], [0.2266, 0.2, 0.2, 0.0945, 0.0506, 0.0307, 0.0254, 0.0198]], "ranks": {}}, {"pos": 483, "top": [[" \u2013", ".", "\u2013", ",", " ", ".\u2013", " \u2013,", ",."], [" \u2013", "\u2013", " \u2013,", " *\u2013", " \n \n", "\u2013and", ".\u2013", " *@"], [" \u2013", ".\u2013", "\u2013", "\u2013and", " \u2013,", " *\u2013", ".", " \n \n"], [" ``(", "*\u201c.", " *\u201e", "\\\":\\\"", "``", "\\\",\\\"", " ``", " Strec"], [" *\u201e", ".\",\"", " *\u201c", "\\\",\\\"", " *@", "\\\":\\\"", "\\\"\\", " \n \n"], [" \n \n", "*\u201c.", " *\u201c", " RTX", ".rt", "(rt", "(runtime", ".\",\""], [" *\u201c", " \n \n", " *\u201e", ".\u201d*", ".\",\"", "\u3011\u3010", "\u201d*", "."], [" \n \n", ".\",\"", ".", "\\\"\\", ".\\\"", " *\u201e", ".\u201d*", ",\\\""], [".", ".\",\"", ",.", ".\u201d*", " \n \n", ".\\\"", ",", "__."], [".\",\"", ",", " \n \n", ".\\\"", ".", "\\\"\\", ",.", ",\\\""], [".", ".\",\"", ",", ".\\\"", " \n \n", ",.", "...", ",\\\""], [".\",\"", " ``", " \n \n", " *\u201c", " ``(", "(runtime", "\\\",\\\"", ".\\\""], [" ``", " transformative", " \n \n", "(runtime", ".\",\"", "-esque", " lifecycle", " expansive"], [",", "-esque", " transformative", ".", "(runtime", " lifecycle", " akin", " expansive"], [" ", " requisite", ",", " akin", " arguably", " alongside", " ultimately", " largely"], ["-esque", " arguably", " bolster", " akin", " myriad", " ultimately", "\u5468\u906d", " requisite"], ["-esque", " bolster", " akin", " myriad", " arguably", " ultimately", " disparate", " requisite"], ["-esque", " akin", " bolster", " arguably", " entirety", " ultimately", " myriad", " overarching"], ["-esque", " arguably", " akin", " ultimately", " myriad", "\u5468\u906d", " requisite", " alongside"], [" \u2015", " ultimately", " arguably", " requisite", " alongside", " myriad", " swiftly", "-esque"], ["<|endoftext|>", " \n\n", " ultimately", " swiftly", " \n \n", " requisite", " myriad", " alongside"], [" ``", " ``(", " RuntimeObject", " \u2015", "``", " '\\\"", " ultimately", " ''"], [" ``", " ``(", "``", " \u2015", " ''", " --", " ultimately", "&quot"], [" ``", " --", " ultimately", " ,", " \u2015", " ''", " alongside", " ``("], [" ``", " ``(", " \u2015", "``", " --", " ultimately", " ''", " alongside"], [" ``", " ``(", "``", " technologies", " \\\"", " --", " \u2015", " \n \n"], [" ``", " ``(", " technologies", "``", " technology", " ''", " infrastructure", " ultimately"], [" ``", " --", " ,", " technologies", " ''", " ultimately", " technology", " alongside"], [" ``", " technologies", " technology", " infrastructure", " runtime", " capabilities", " \\\"", " __"], [" __", " ____", " ...", " ...\\", " ___", " technologies", "__.", " technology"], [" .", " technology", " technologies", " infrastructure", " __", " systems", " \n  \n", " system"], [" technology", " .", " technologies", " system", " infrastructure", " systems", " complex", " life"], [" technology", " technologies", " .", " system", " infrastructure", " systems", " life", " ultimately"], [" technologies", " technology", " infrastructure", " system", " systems", " ultimately", " heavily", " hardware"], [" technologies", " infrastructure", " technology", " hardware", " fundamentally", " system", " systems", " heavily"], [" infrastructure", " technologies", " hardware", " technology", " runtime", " complexity", " increasingly", " fundamentally"], [" runtime", " hardware", " infrastructure", " complexity", " technology", " technologies", " engine", " ultimately"], [" runtime", " hardware", " infrastructure", " complexity", " engine", " fundamentally", " complexities", " ultimately"], [" runtime", " infrastructure", " hardware", " complexity", " system", " engine", " mechanics", " lifecycle"], [" runtime", " infrastructure", " lifecycle", " hardware", " system", " complexity", " engine", " managing"], [" runtime", " infrastructure", " engine", " software", " lifecycle", " system", " complexity", " hardware"], [" runtime", " engine", " infrastructure", " system", " systems", " software", " engines", " hardware"], [" runtime", " engine", " infrastructure", " systems", " software", " engines", " system", " hardware"], [" runtime", " infrastructure", " systems", " engine", " system", " software", " engines", " hardware"], [" runtime", " infrastructure", " systems", " engine", " system", " software", " overhead", " machinery"], [" runtime", " infrastructure", " engine", " systems", " system", " machinery", " overhead", " hardware"], [" runtime", " infrastructure", " machinery", " costs", " overhead", " hardware", " engine", " mechanisms"], [" runtime", " compared", " infrastructure", " itself", " machinery", " overhead", " costs", " systems"], [" runtime", " compared", " overhead", " protections", " costs", " infrastructure", " itself", " machinery"], [" runtime", " compared", " overhead", " infrastructure", " costs", " itself", " outweigh", " protections"], [" runtime", " inevitably", " overhead", " inevitable", "\u4e0d\u8db3\u4ee5", "/runtime", " undermines", " itself"], [" runtime", " overhead", "/runtime", " internals", " itself", " interface", " interfaces", "\u4e0d\u8db3\u4ee5"], [" runtime", " overhead", "/runtime", " scheduler", " internals", "runtime", " prevents", " kernel"], [" itself", " runtime", " overhead", " scheduler", "/runtime", "runtime", " lifecycle", " internals"], [" runtime", " scheduler", "runtime", " overhead", "/runtime", " Runtime", " itself", " prevents"], [" scheduler", " wrapper", " interpreter", " overhead", " allocator", " loader", " dispatcher", " runtime"], [" scheduler", " garbage", " wrapper", " allocator", " loader", " JIT", " stack", " interpreter"], [" scheduler", " JIT", " garbage", " interpreter", " VM", " JVM", " wrapper", " stack"], [" scheduler", " interpreter", " JIT", " garbage", " VM", "interpreter", " runtime", " wrapper"], [" scheduler", " interpreter", " wrapper", " allocator", " initialization", " VM", " stack", " sandbox"], [" scheduler", " VM", " binder", " wrapper", " allocator", " interpreter", " sandbox", " stack"], [" scheduler", " binder", " wrapper", " sandbox", " interpreter", "\u2019s", " abstraction", " allocator"], [" binder", " scheduler", " layer", " wrapper", "\u2019s", " abstraction", " sandbox", " profiler"]], "p": [[0.8233, 0.1263, 0.0125, 0.0125, 0.0028, 0.0028, 0.0014, 0.0014], [0.7955, 0.0165, 0.0137, 0.0129, 0.0113, 0.0088, 0.0069, 0.0047], [0.3367, 0.2623, 0.2042, 0.0402, 0.0333, 0.0313, 0.0178, 0.007], [0.0446, 0.0327, 0.0136, 0.0128, 0.0113, 0.01, 0.0094, 0.006], [0.0378, 0.026, 0.026, 0.019, 0.0158, 0.0139, 0.0139, 0.0123], [0.0055, 0.0048, 0.0048, 0.0043, 0.004, 0.0038, 0.0035, 0.0033], [0.0503, 0.0472, 0.0391, 0.0391, 0.0185, 0.0135, 0.0119, 0.0112], [0.098, 0.0633, 0.0525, 0.0384, 0.0299, 0.0193, 0.0181, 0.016], [0.5159, 0.1081, 0.033, 0.0291, 0.0273, 0.0177, 0.0137, 0.0089], [0.0546, 0.0292, 0.0228, 0.0201, 0.0201, 0.0177, 0.0122, 0.0107], [0.4585, 0.0483, 0.0293, 0.0293, 0.0214, 0.0178, 0.0147, 0.007], [0.0302, 0.0302, 0.0152, 0.0111, 0.0092, 0.006, 0.0046, 0.0041], [0.0103, 0.0052, 0.0049, 0.0046, 0.0036, 0.0034, 0.0034, 0.003], [0.0134, 0.0072, 0.0052, 0.0046, 0.0036, 0.0036, 0.0032, 0.0032], [0.0232, 0.0075, 0.0071, 0.0066, 0.0062, 0.0055, 0.0052, 0.0043], [0.0179, 0.0158, 0.0115, 0.0102, 0.0096, 0.0066, 0.0062, 0.0058], [0.024, 0.0145, 0.0128, 0.0106, 0.0094, 0.0061, 0.0061, 0.0061], [0.023, 0.0048, 0.0043, 0.004, 0.0035, 0.0033, 0.0029, 0.0027], [0.0157, 0.0074, 0.0061, 0.0058, 0.0045, 0.0037, 0.0033, 0.0033], [0.0087, 0.0087, 0.0063, 0.0056, 0.0053, 0.0049, 0.0049, 0.0044], [0.0497, 0.0183, 0.0092, 0.0086, 0.0059, 0.0056, 0.0056, 0.0056], [0.1726, 0.0091, 0.0043, 0.0034, 0.0025, 0.0019, 0.0019, 0.0017], [0.5877, 0.0138, 0.0108, 0.0065, 0.0048, 0.0023, 0.0021, 0.0017], [0.4797, 0.0154, 0.0106, 0.0053, 0.005, 0.005, 0.0044, 0.0039], [0.447, 0.0112, 0.0082, 0.0072, 0.0068, 0.0039, 0.0036, 0.0032], [0.5638, 0.0233, 0.0067, 0.0046, 0.0038, 0.0034, 0.0031, 0.003], [0.7199, 0.014, 0.0109, 0.0096, 0.0049, 0.0024, 0.0024, 0.0022], [0.3547, 0.0156, 0.0129, 0.0129, 0.0107, 0.0095, 0.0089, 0.0074], [0.1718, 0.0762, 0.0299, 0.0248, 0.0103, 0.0086, 0.0071, 0.0059], [0.1445, 0.0993, 0.0566, 0.0566, 0.0441, 0.0343, 0.0208, 0.0162], [0.119, 0.0818, 0.0722, 0.0266, 0.0182, 0.0125, 0.0118, 0.0118], [0.0887, 0.0691, 0.0538, 0.0224, 0.0211, 0.0198, 0.0136, 0.0106], [0.0803, 0.0587, 0.043, 0.023, 0.023, 0.0168, 0.0168, 0.0123], [0.1089, 0.0797, 0.0483, 0.0214, 0.0157, 0.013, 0.0122, 0.0108], [0.0957, 0.0657, 0.058, 0.0257, 0.0122, 0.0114, 0.0101, 0.0095], [0.0458, 0.0357, 0.0315, 0.0315, 0.0216, 0.0149, 0.0131, 0.0116], [0.0555, 0.0432, 0.0358, 0.0204, 0.0192, 0.018, 0.0169, 0.0159], [0.066, 0.0354, 0.0332, 0.0293, 0.0147, 0.0138, 0.013, 0.0115], [0.1136, 0.0445, 0.0287, 0.0174, 0.0174, 0.0154, 0.012, 0.0099], [0.2239, 0.0343, 0.0196, 0.0134, 0.0126, 0.0119, 0.0105, 0.0092], [0.327, 0.0324, 0.0252, 0.0223, 0.0196, 0.0196, 0.0105, 0.0093], [0.3928, 0.0532, 0.0441, 0.0267, 0.0251, 0.0251, 0.0126, 0.0111], [0.3929, 0.0566, 0.0532, 0.0267, 0.0208, 0.0162, 0.0143, 0.0126], [0.3414, 0.0523, 0.0408, 0.0383, 0.0193, 0.017, 0.0124, 0.011], [0.2047, 0.0518, 0.0379, 0.0277, 0.0245, 0.0168, 0.0168, 0.0123], [0.1265, 0.0598, 0.0265, 0.022, 0.0182, 0.0171, 0.0151, 0.0111], [0.174, 0.0565, 0.0172, 0.0118, 0.0111, 0.0111, 0.0111, 0.0105], [0.0737, 0.0476, 0.0327, 0.0225, 0.0225, 0.0211, 0.0165, 0.0113], [0.0846, 0.0846, 0.0258, 0.0214, 0.0189, 0.0167, 0.013, 0.0074], [0.1167, 0.0314, 0.026, 0.0179, 0.0148, 0.0148, 0.0109, 0.0109], [0.0738, 0.0175, 0.0175, 0.0175, 0.0165, 0.0155, 0.0137, 0.0121], [0.1029, 0.0429, 0.0216, 0.0179, 0.0168, 0.0148, 0.0139, 0.0115], [0.169, 0.1316, 0.0662, 0.0229, 0.0202, 0.0139, 0.0115, 0.0095], [0.2326, 0.1598, 0.0911, 0.0404, 0.038, 0.0191, 0.0096, 0.009], [0.4739, 0.1743, 0.0441, 0.0389, 0.0303, 0.0285, 0.0111, 0.0072], [0.4855, 0.0657, 0.0292, 0.0292, 0.0292, 0.0227, 0.0122, 0.0114], [0.5411, 0.0473, 0.0444, 0.0269, 0.0253, 0.0153, 0.0144, 0.0127], [0.2237, 0.1125, 0.0773, 0.0682, 0.0641, 0.0303, 0.0222, 0.0208], [0.4625, 0.0911, 0.0911, 0.0261, 0.0245, 0.0245, 0.0216, 0.0168], [0.3991, 0.0448, 0.0371, 0.0308, 0.0289, 0.0272, 0.0272, 0.0212], [0.4369, 0.0556, 0.049, 0.0461, 0.0297, 0.0279, 0.0232, 0.0204], [0.4559, 0.0511, 0.0424, 0.0352, 0.0213, 0.0188, 0.0166, 0.0166], [0.278, 0.1686, 0.0547, 0.0547, 0.0312, 0.0293, 0.0243, 0.0214]], "ranks": {}}, {"pos": 484, "top": [["s", " \u2013", "\u2013", ",", ".", "\u2013and", "t", "y"], ["s", " \u2013", "\u2013", "\u2013and", "sWith", "\u0627\u062a", " \u2013**", " \u2013,"], ["s", "\u2013", " \u2013", "\u2013and", ",", ".", ".\u2013", " \u2013,"], ["s", "sWith", "sprozess", "sula", "schrift", "\u0627\u062a", "erias", "sste"], ["s", "\u0627\u062a", "sWith", "sche", "en", "er", "sense", "sider"], ["s", "sWith", "\u0627\u062a", "sver", "sider", "svar", "sense", "\u2013and"], ["s", "\u0627\u062a", "t", "sWith", "er", "sor", "sand", "en"], ["s", "\u0627\u062a", "sWith", "sburg", "saf", "sense", "svar", "er"], ["s", "sWith", "\u0627\u062a", "   \n\n", "......", "saf", "\u2013and", "    \n\n"], ["s", "sWith", "\u2013and", "\u0627\u062a", ",", "\u2013", "t", "er"], ["s", "t", "\u2013", "er", "\u0627\u062a", "\u2013and", "l", " [\u2026]"], ["s", "sWith", "\u0627\u062a", "sburg", "svar", "er", "sense", "sste"], ["s", "sWith", "\u0627\u062a", "svar", "\u2013and", "ingly", "saf", "sste"], ["s", "sWith", "\u2013and", "\u0627\u062a", "ingly", "saf", "svar", "sste"], ["s", " amongst", "\u2013and", " hopefully", " \u2013", " thankfully", " ultimately", " though"], ["s", " amongst", " incredibly", " rightfully", " anyways", "\u2013and", " thankfully", "\u0627\u062a"], ["s", "t", "\u2013and", " amongst", " [\u2026]", "l", "\u00a0", "\u2013"], ["s", "   \n\n", "\u2013and", "<|endoftext|>", "t", "  \n\n", " [\u2026]", "\u2013"], ["s", "t", " hugely", "\u0627\u062a", " arguably", " inevitably", " ultimately", " utterly"], ["s", "<|endoftext|>", "t", " hugely", " utterly", " ultimately", " swiftly", "much"], ["<|endoftext|>", "s", "\n\n", " \n\n", "  \n\n", "   \n\n", " \r\n\r\n", "\r\n\r\n"], ["s", " hugely", "\u6253\u9020\u51fa", "sWith", " utterly", "\u0627\u062a", " inevitably", "sste"], ["s", " hugely", " ultimately", " utterly", " swiftly", " inevitably", " drastically", " arguably"], ["s", " ultimately", " hugely", "<|endoftext|>", " swiftly", " eventually", " utterly", " inevitably"], ["\n\n", " \n\n", " \r\n\r\n", "   \n\n", "\r\n\r\n", "s", "  \n\n", "<|endoftext|>"], ["s", " hugely", " \r\n\r\n", " utterly", " ultimately", " drastically", " vastly", "\r\n\r\n"], ["\n\n", "s", "\r\n\r\n", " \r\n\r\n", " \n\n", " hugely", " ultimately", " utterly"], ["\n\n", " ultimately", " \n\n", " hugely", "\r\n\r\n", "s", " \r\n\r\n", " arguably"], [" ultimately", "s", " hugely", " incredibly", "\n\n", " \n\n", " drastically", " vastly"], [" \n\n", " ultimately", "s", " \r\n\r\n", " incredibly", "  \n\n", " drastically", "   \n\n"], [" \n\n", " ultimately", " eventually", "s", "<|endoftext|>", " much", " inevitably", "\n\n"], [" ultimately", " eventually", " even", " heavily", " much", " inevitably", "s", " incredibly"], [" ultimately", " inevitably", " eventually", " heavily", " drastically", " dramatically", " even", " inevitable"], [" ultimately", " inevitably", " drastically", " heavily", " massively", " vastly", " dramatically", " aggressively"], [" inevitably", " ultimately", " inevitable", " drastically", " heavily", " vastly", " relentlessly", " aggressively"], [" inevitably", " inevitable", " sluggish", " heavily", " disproportionately", " ultimately", " drastically", " aggressively"], [" inevitably", " sluggish", " inefficient", " inevitable", " slower", " unsustainable", " ineff", " drastically"], [" inevitably", " sluggish", " inevitable", " slower", " inefficient", " unsustainable", " disproportionately", " notoriously"], [" sluggish", " slower", " inevitably", " inevitable", " inefficient", " unsustainable", " bottleneck", " unpredictable"], [" sluggish", " slower", " inefficient", " inevitable", " inevitably", " slow", " unsustainable", " overclock"], [" sluggish", " slower", " slow", " inefficient", " slowing", " slowdown", " inevitable", " bottleneck"], [" sluggish", " slower", " inefficient", " overclock", " slow", " bottleneck", " slowing", " inevitable"], [" sluggish", " slower", " inefficient", " bottleneck", " slowing", " slow", " inevitable", " unpredictable"], [" sluggish", " slower", " inevitable", " bottleneck", " inevitably", " inefficient", " unpredictable", " slow"], [" slower", " inevitable", " bottleneck", " sluggish", " inevitably", " inefficient", " inability", " unpredictable"], [" inevitable", " inevitably", " sluggish", "\u65e0\u6cd5\u6ee1\u8db3", " inability", " slower", " bottleneck", " unpredictable"], [" inevitable", " inevitably", "\u65e0\u6cd5\u6ee1\u8db3", " sluggish", " bottleneck", " inability", "\u8fbe\u4e0d\u5230", " unavoidable"], ["\u65e0\u6cd5\u6ee1\u8db3", " inevitable", " inevitably", " inability", "\u8fbe\u4e0d\u5230", " sluggish", " unavoidable", " bottleneck"], ["\u65e0\u6cd5\u6ee1\u8db3", " inevitable", " inevitably", " sluggish", " inability", "\u8fbe\u4e0d\u5230", " unavoidable", " unsustainable"], ["\u65e0\u6cd5\u6ee1\u8db3", " inability", "\u8fbe\u4e0d\u5230", " sluggish", " inevitable", " inevitably", " bottleneck", "\u505a\u4e0d\u5230"], ["\u65e0\u6cd5\u6ee1\u8db3", "\u8fbe\u4e0d\u5230", "\u505a\u4e0d\u5230", "\u4e0d\u8db3\u4ee5", " inability", "\u65e0\u6cd5", " bottleneck", " inevitably"], ["\u65e0\u6cd5\u6ee1\u8db3", "\u8fbe\u4e0d\u5230", "\u505a\u4e0d\u5230", "\u65e0\u6cd5", " inability", " inevitably", "\u4e0d\u8db3\u4ee5", " sluggish"], ["\u65e0\u6cd5\u6ee1\u8db3", " bottleneck", " inability", "\u8fbe\u4e0d\u5230", "\u65e0\u6cd5", "\u505a\u4e0d\u5230", "\u4e0d\u8db3\u4ee5", "\u62d6\u7d2f"], ["\u65e0\u6cd5\u6ee1\u8db3", " bottleneck", " inability", "\u65e0\u6cd5", "\u5c06\u65e0\u6cd5", "\u62d6\u7d2f", "\u4e0d\u8db3\u4ee5", "\u505a\u4e0d\u5230"], [" prevents", " preventing", " bottleneck", " prevent", "\u65e0\u6cd5\u6ee1\u8db3", "\u963b\u6b62", "\u5bfc\u81f4", "\u62d6\u7d2f"], [" prevents", "\u65e0\u6cd5\u6ee1\u8db3", " prevent", " bottleneck", " preventing", "\u5bfc\u81f4", "\u65e0\u6cd5", "prevent"], [" prevent", " bottleneck", " prevents", " preventing", "\u5bfc\u81f4", "\u65e0\u6cd5\u6ee1\u8db3", "prevent", " causing"], [" prevent", " bottleneck", " prevents", " struggle", " preventing", " make", "make", " khi\u1ebfn"], [" bottleneck", " prevent", " bott", " struggle", " prevents", " preventing", "\u74f6\u9888", " make"], [" prevent", " bottleneck", " preventing", " prevents", "prevent", " Prevent", " struggle", " make"], [" prevent", " bottleneck", " make", " prevents", " cause", " preventing", " struggle", " bott"], [" prevent", " bottleneck", " make", " cause", " struggle", " fight", " throttle", " bleed"], [" prevent", " cause", " bottleneck", " struggle", " make", " throttle", " fight", " violate"]], "p": [[0.9932, 0.0046, 0.0017, 0.0003, 0.0, 0.0, 0.0, 0.0], [0.991, 0.0067, 0.0013, 0.0003, 0.0, 0.0, 0.0, 0.0], [0.8533, 0.1019, 0.0375, 0.0035, 0.0031, 0.0003, 0.0002, 0.0001], [0.047, 0.0222, 0.0162, 0.0126, 0.0105, 0.0064, 0.006, 0.005], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9984, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9968, 0.0004, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9918, 0.0011, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9332, 0.0034, 0.001, 0.0008, 0.0005, 0.0003, 0.0003, 0.0003], [0.7079, 0.0107, 0.0054, 0.0023, 0.0023, 0.0021, 0.0018, 0.0015], [0.5339, 0.0056, 0.0036, 0.003, 0.0028, 0.0028, 0.0026, 0.002], [0.9212, 0.0051, 0.002, 0.0014, 0.001, 0.0009, 0.0008, 0.0008], [0.7704, 0.0193, 0.011, 0.0076, 0.0067, 0.0049, 0.0034, 0.0025], [0.893, 0.0044, 0.0014, 0.0013, 0.0013, 0.0012, 0.0011, 0.001], [0.6281, 0.0484, 0.009, 0.0054, 0.0045, 0.004, 0.0037, 0.0033], [0.9436, 0.0112, 0.0098, 0.0044, 0.003, 0.0013, 0.0007, 0.0006], [0.0164, 0.0078, 0.0069, 0.0064, 0.006, 0.0047, 0.0034, 0.0032], [0.0524, 0.0141, 0.0124, 0.011, 0.0091, 0.008, 0.0049, 0.0049], [0.1324, 0.0404, 0.0191, 0.0158, 0.0123, 0.0102, 0.009, 0.0085], [0.1988, 0.1366, 0.0606, 0.0503, 0.0503, 0.0444, 0.0444, 0.0286], [0.0301, 0.0282, 0.0207, 0.0133, 0.0104, 0.0086, 0.0086, 0.0076], [0.0641, 0.0499, 0.0469, 0.0303, 0.0267, 0.0236, 0.0222, 0.0184], [0.1461, 0.0505, 0.0505, 0.0306, 0.0211, 0.0175, 0.0154, 0.0145], [0.0711, 0.0431, 0.0358, 0.0279, 0.0279, 0.0279, 0.0246, 0.0231], [0.0898, 0.0617, 0.0544, 0.0374, 0.033, 0.031, 0.0242, 0.0242], [0.1225, 0.1081, 0.0351, 0.031, 0.0291, 0.0257, 0.0227, 0.0227], [0.1322, 0.0457, 0.0403, 0.0295, 0.0277, 0.026, 0.0245, 0.0216], [0.1445, 0.0602, 0.0389, 0.0251, 0.0222, 0.0222, 0.0222, 0.0173], [0.0678, 0.0496, 0.0386, 0.0386, 0.025, 0.022, 0.0207, 0.0183], [0.0854, 0.0277, 0.0277, 0.0261, 0.023, 0.0179, 0.0158, 0.0158], [0.088, 0.0269, 0.0223, 0.0209, 0.0196, 0.0173, 0.0163, 0.0135], [0.112, 0.0989, 0.0563, 0.0529, 0.0412, 0.0161, 0.0134, 0.0134], [0.105, 0.0722, 0.0637, 0.0598, 0.0411, 0.0194, 0.0171, 0.0118], [0.1445, 0.0726, 0.0641, 0.0566, 0.0499, 0.0222, 0.0134, 0.0105], [0.2885, 0.1983, 0.0416, 0.0268, 0.0252, 0.0222, 0.0153, 0.0119], [0.3223, 0.251, 0.0526, 0.0436, 0.0219, 0.016, 0.016, 0.0142], [0.2229, 0.1736, 0.0467, 0.0283, 0.0266, 0.025, 0.025, 0.0235], [0.2409, 0.1876, 0.0419, 0.0288, 0.0224, 0.0224, 0.0211, 0.0164], [0.1278, 0.1128, 0.0533, 0.0442, 0.0415, 0.0304, 0.0209, 0.0184], [0.0929, 0.0723, 0.0563, 0.0529, 0.0529, 0.0301, 0.025, 0.025], [0.1557, 0.1374, 0.0538, 0.0446, 0.0347, 0.0347, 0.0254, 0.0224], [0.2385, 0.1639, 0.0774, 0.047, 0.0389, 0.0303, 0.0196, 0.0184], [0.1634, 0.1442, 0.0991, 0.0875, 0.0498, 0.0302, 0.0251, 0.0235], [0.3488, 0.0882, 0.0778, 0.0606, 0.0535, 0.0345, 0.0237, 0.0197], [0.7403, 0.0369, 0.0369, 0.0224, 0.0174, 0.0136, 0.012, 0.0099], [0.747, 0.0328, 0.0226, 0.0155, 0.0129, 0.0094, 0.0088, 0.0078], [0.8898, 0.0237, 0.0087, 0.0077, 0.0077, 0.006, 0.006, 0.0036], [0.759, 0.0428, 0.0333, 0.0294, 0.0229, 0.0139, 0.0058, 0.0054], [0.5958, 0.1707, 0.0297, 0.0149, 0.014, 0.0116, 0.007, 0.0062], [0.2415, 0.166, 0.1293, 0.0889, 0.0784, 0.0476, 0.0154, 0.0145], [0.2002, 0.1559, 0.1559, 0.1214, 0.1072, 0.0307, 0.0136, 0.0094], [0.273, 0.1656, 0.1656, 0.1138, 0.0538, 0.0254, 0.0154, 0.0099], [0.2477, 0.1702, 0.0911, 0.071, 0.071, 0.0278, 0.0216, 0.0191], [0.9085, 0.0214, 0.013, 0.0114, 0.0069, 0.0061, 0.0029, 0.0016], [0.6483, 0.1857, 0.0683, 0.0603, 0.0105, 0.0049, 0.0039, 0.003], [0.4617, 0.28, 0.0708, 0.0314, 0.0295, 0.0295, 0.0216, 0.0058], [0.4933, 0.2056, 0.0857, 0.0756, 0.0431, 0.0204, 0.009, 0.0058], [0.4929, 0.3387, 0.0667, 0.0191, 0.018, 0.0149, 0.0058, 0.0033]], "ranks": {}}, {"pos": 485, "top": [[",", ".", ";", "\u2013", "\u00a0", "\u00a0\u00a0", " \u2013", ":"], ["\u00ad", ",", ".", "\u2013", "\u00ac", ";", "  \n", "\u200b"], [",", ".", "\u2013", "\u2026", ";", "\u2026.", ",\u2026", "\u200b"], ["\u00ading", "ively", "zeitig", "emente", "\u6027\u76ae\u708e", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "\u52c7\u5f80\u76f4\u524d"], [".", "\u00ac", ",", "\u00a0\u00a0", "ively", "\u00ad", ",...", "ably"], [".", "\u00a0\u00a0", ",", "\u00a0", "\u2026.", "\u00a0\u00a0\u00a0\u00a0", "  \n", "\u2026"], ["  \n", "  \n\n", "\u00ac", "\uff0e", "\u00a0\u00a0", "...", "\u00a0\u00a0\u00a0\u00a0", "\u00ad"], ["  \n", "  \n\n", "\u00a0\u00a0", "   \n", "ively", "\u00a0", ".", "\u00ad"], ["  \n\n", "\u00a0", "  \n", "\u00a0\u00a0", "...", "\u2026", "[...]", " \n\n"], ["\u00a0", "\u00a0\u00a0", "\u00ad", "  \n", "\ufffd", "\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0", "...\\"], ["\u00a0", "\u00a0\u00a0", "\u00ad", "  \n", "  \n\n", "...", "\u00a0\u00a0\u00a0\u00a0", "\u2026"], ["ive", "\u00a0", "ively", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0", "...\\", "ably"], ["ive", "ively", "\u52c7\u5f80\u76f4\u524d", "...\\", "\u00ading", "ably", "ible", "...**"], ["\u52c7\u5f80\u76f4\u524d", "ively", "ably", "ive", "\u09c1\u09b7", "\u00a0", "\u4e00\u6276", "\u00ading"], ["ably", "ively", "\u52c7\u5f80\u76f4\u524d", "\u00a0", " showcasing", "\u62e5\u6709\u7740", "\u5468\u906d", "\u00ad"], ["\u62e5\u6709\u7740", " utilizing", "\u00a0", "ively", "\u80fd\u591f\u5feb\u901f", "\u52c7\u5f80\u76f4\u524d", "util", "\tutil"], ["\u00a0", "\u00a0\u00a0", "ively", "\u00ad", "\u00a0\u00a0\u00a0", "\ufffd", " \u00ad", "ably"], ["  \n\n", "\u00a0", "\u00a0\u00a0", "\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0", "\u00a0\u00a0\u00a0", "   \n\n", "\u00a0\u00a0\u00a0\u00a0", "...\\"], ["\u2014even", "\u80fd\u591f\u5feb\u901f", "itably", "\u2014or", "  \n\n", "\u52c7\u5f80\u76f4\u524d", "\u80fd\u591f\u6709\u6548", "\u2014and"], ["ably", "ively", "\u2014even", "itably", "\u2014or", "\u80fd\u591f\u5feb\u901f", "\u80fd\u591f\u6709\u6548", "\u80fd\u591f\u8fbe\u5230"], ["ively", "ably", "  \n\n", "<|endoftext|>", "\u2014even", "\u80fd\u591f\u8fbe\u5230", "\u80fd\u591f\u5feb\u901f", "_fixture"], ["ewire", "itably", "\u65f6\u523b\u523b", "ively", "\u52c7\u5f80\u76f4\u524d", "ivec", "\u8db3\u8db3", "ationToken"], ["ively", "itably", "ewire", "\u80fd\u591f\u8fbe\u5230", "ably", "\u80fd\u591f\u5feb\u901f", "\u8db3\u8db3", "\u4f60\u6c38\u8fdc"], ["ively", "ably", "\u80fd\u591f\u8fbe\u5230", "fully", " ultimately", " truly", " achieving", "\u80fd\u591f\u5feb\u901f"], ["  \n\n", " \n\n", "ably", "ively", "   \n\n", "\u00a0", " \u00ad", "\u80fd\u591f\u8fbe\u5230"], ["ively", "\u80fd\u591f\u8fbe\u5230", "ably", "itably", "ewire", "\u80fd\u591f\u5feb\u901f", " achieving", "\u80fd\u591f\u5b9e\u73b0"], ["ively", "\u80fd\u591f\u8fbe\u5230", "ably", " achieving", "itably", "\u80fd\u591f\u5feb\u901f", "\u80fd\u591f\u6709\u6548", "ewire"], ["ively", "ably", " truly", " achieving", "\u80fd\u591f\u8fbe\u5230", " ultimately", " fully", "fully"], ["ively", "ably", " achieving", " truly", " ultimately", "\u80fd\u591f\u8fbe\u5230", "itably", "fully"], ["ively", " achieving", "ably", " truly", "\u80fd\u591f\u8fbe\u5230", " ultimately", " critical", "itably"], [" ultimately", " truly", " much", "ably", " future", "ively", " fully", " massive"], [" ultimately", " critical", " fully", " massive", " much", " truly", " even", " future"], [" critical", " ultimately", " truly", " fully", " massive", "ably", " future", "ively"], [" truly", " critical", " fully", "ably", " massive", " ultimately", " viable", "ively"], [" truly", " fully", "ably", " critical", " genuinely", " arguably", " potentially", "fully"], [" truly", " fully", " achieving", "ably", " reliably", " critical", " rapid", " optimized"], [" optimized", " rapid", " optimizations", " optimal", " optimization", " reliably", " flawless", " truly"], [" optimized", " optimization", " optimizations", " optimal", " reliably", " rapid", " achieving", " truly"], [" optimized", " achieving", " reliably", " optimizations", " achievable", " optimization", " optimal", " flawless"], [" achieving", " achievable", " optimized", " optimizations", " reliably", " optimization", " flawless", " rapid"], [" optimized", " optimizations", " achieving", " optimization", " achievable", " rapid", " performance", " reliably"], [" optimized", " optimization", " optimizations", " achieving", " reliably", " performance", " achievable", " optimizing"], [" achieving", " optimized", " reliably", " optimizations", " optimization", " performance", " achievable", " consistently"], [" achieving", " achievable", " reliably", " Achie", " optimized", " performance", " consistently", " achieve"], [" achieving", " achievable", " reliably", " consistently", " stable", " sustained", " achieve", " guaranteed"], [" reliably", " achieving", " achievable", " consistently", " stable", " guaranteed", " sustained", " guarantees"], [" reliably", " consistently", " achievable", " achieving", " stable", " guaranteed", " sustained", " reliable"], [" reliably", " consistently", " achieving", " achievable", " guaranteed", " stable", " sustained", " reliable"], [" reliably", " consistently", " achieving", " sustained", " guaranteed", " achievable", " guarantees", " stable"], [" reliably", " consistently", " achieving", " sustained", " stable", " achievable", " guaranteed", " reliable"], [" reliably", " consistently", " flawless", " seamless", " achieving", " guaranteed", " reliable", " cleanly"], [" reliably", " consistently", " achieving", " flawless", "consistent", " stable", " sustained", " consistent"], [" consistently", " reliably", " consistent", "consistent", " sustained", " achieving", "\u6052\u5b9a", " stable"], [" consistently", " reliably", " consistent", "consistent", " sustained", " stable", "\u6052\u5b9a", " achieving"], [" consistently", " consistent", "consistent", " reliably", " stable", " sustained", " continuous", "\u6052\u5b9a"], [" stable", " consistently", " consistent", "stable", "consistent", "\u7a33\u5b9a\u7684", "\u7a33\u5b9a", " Stable"], [" consistent", "consistent", " consistently", " consistency", " consistente", "-cons", " Cons", " konsisten"], [" consistent", "consistent", " consistently", " sustained", " consistency", " konsisten", " Cons", "-cons"], [" consistent", "consistent", " sustained", " consistently", " sustaining", " consistency", " Sust", " stable"], [" consistent", "consistent", " consistently", "-cons", " sustained", "Cons", " Cons", "cons"], [" consistent", " sustained", "consistent", "-cons", " consistently", " Cons", "Cons", " sustaining"], [" consistent", " sustained", " sustaining", "-cons", "consistent", " consistently", " Cons", " sustainable"], [" consistent", " sustained", " you", " sustaining", " consistently", " sustainable", " hitting", " stable"]], "p": [[0.4931, 0.4931, 0.0048, 0.0048, 0.0005, 0.0004, 0.0004, 0.0003], [0.3797, 0.2032, 0.096, 0.0902, 0.0376, 0.0214, 0.0178, 0.0079], [0.747, 0.214, 0.0256, 0.0057, 0.0039, 0.0008, 0.0003, 0.0002], [0.0016, 0.0016, 0.0015, 0.0012, 0.0011, 0.0009, 0.0008, 0.0008], [0.1796, 0.0401, 0.0401, 0.0401, 0.0243, 0.0115, 0.0101, 0.0095], [0.2194, 0.1819, 0.0521, 0.0217, 0.0204, 0.0159, 0.0109, 0.0109], [0.333, 0.276, 0.0451, 0.0351, 0.0257, 0.02, 0.0176, 0.0114], [0.2975, 0.2045, 0.0295, 0.0202, 0.0179, 0.0168, 0.0148, 0.0148], [0.6855, 0.1191, 0.0723, 0.0172, 0.0076, 0.0076, 0.0063, 0.0063], [0.3603, 0.1411, 0.0804, 0.0315, 0.0278, 0.0245, 0.0158, 0.0149], [0.8205, 0.0594, 0.0181, 0.0141, 0.0117, 0.0097, 0.0086, 0.008], [0.0739, 0.0421, 0.0289, 0.0212, 0.0212, 0.0128, 0.0121, 0.0106], [0.0368, 0.0253, 0.0077, 0.005, 0.005, 0.0044, 0.0041, 0.0039], [0.0132, 0.0071, 0.004, 0.0038, 0.003, 0.0028, 0.0019, 0.0016], [0.0051, 0.0045, 0.004, 0.0029, 0.0024, 0.002, 0.0018, 0.0016], [0.0069, 0.0061, 0.0042, 0.0027, 0.0022, 0.0021, 0.002, 0.002], [0.0544, 0.0074, 0.0037, 0.0029, 0.0029, 0.0027, 0.0025, 0.0024], [0.0457, 0.026, 0.0102, 0.0042, 0.0035, 0.0033, 0.0026, 0.0026], [0.0041, 0.0032, 0.003, 0.0025, 0.0021, 0.0021, 0.0019, 0.0016], [0.0053, 0.0053, 0.0053, 0.0032, 0.0028, 0.0027, 0.0025, 0.0022], [0.0057, 0.0044, 0.0044, 0.0037, 0.002, 0.002, 0.0017, 0.0016], [0.0079, 0.0048, 0.0026, 0.0023, 0.0021, 0.002, 0.002, 0.0019], [0.009, 0.0042, 0.0035, 0.0035, 0.0031, 0.0031, 0.0021, 0.0021], [0.012, 0.0099, 0.006, 0.0041, 0.0032, 0.0028, 0.0028, 0.0027], [0.0371, 0.0175, 0.0106, 0.0088, 0.0088, 0.0065, 0.0061, 0.0057], [0.0168, 0.009, 0.0079, 0.0075, 0.0058, 0.0051, 0.0031, 0.0029], [0.0235, 0.0098, 0.0098, 0.0056, 0.0049, 0.0046, 0.0036, 0.0036], [0.0218, 0.0159, 0.0124, 0.0103, 0.008, 0.0075, 0.0055, 0.0049], [0.0235, 0.0161, 0.0111, 0.0081, 0.0076, 0.0067, 0.0043, 0.0041], [0.0237, 0.0173, 0.0144, 0.0077, 0.0056, 0.0056, 0.0056, 0.0047], [0.0331, 0.0242, 0.0242, 0.0177, 0.0177, 0.0156, 0.0147, 0.013], [0.0267, 0.0267, 0.0196, 0.0162, 0.0162, 0.0152, 0.0143, 0.0134], [0.0371, 0.0272, 0.0187, 0.0165, 0.0113, 0.0106, 0.01, 0.0083], [0.0315, 0.0246, 0.0149, 0.014, 0.0116, 0.009, 0.008, 0.008], [0.0553, 0.0217, 0.0191, 0.0169, 0.0169, 0.0116, 0.009, 0.008], [0.0368, 0.0163, 0.0144, 0.0135, 0.0119, 0.0119, 0.0105, 0.0099], [0.0616, 0.0423, 0.0241, 0.0241, 0.0241, 0.02, 0.0137, 0.0114], [0.0785, 0.042, 0.0395, 0.0225, 0.0211, 0.0186, 0.0155, 0.0155], [0.0658, 0.0658, 0.0482, 0.0482, 0.0482, 0.0352, 0.0258, 0.0228], [0.0717, 0.0633, 0.0633, 0.0525, 0.0463, 0.0409, 0.0281, 0.0181], [0.1172, 0.0912, 0.0756, 0.0756, 0.0357, 0.0296, 0.0278, 0.0278], [0.1393, 0.0958, 0.0958, 0.0845, 0.0546, 0.0399, 0.0375, 0.0375], [0.1171, 0.1033, 0.0805, 0.0667, 0.0589, 0.052, 0.0488, 0.0296], [0.5195, 0.2166, 0.0548, 0.013, 0.0122, 0.0122, 0.0115, 0.0101], [0.3732, 0.2263, 0.0833, 0.0306, 0.0239, 0.0211, 0.0145, 0.0136], [0.2172, 0.1917, 0.1493, 0.0549, 0.0378, 0.0355, 0.0355, 0.0178], [0.4633, 0.1327, 0.071, 0.0488, 0.0336, 0.0231, 0.0204, 0.0169], [0.5604, 0.2647, 0.0279, 0.0192, 0.0169, 0.0149, 0.0132, 0.0116], [0.4353, 0.264, 0.0296, 0.0278, 0.0246, 0.0191, 0.014, 0.0131], [0.4913, 0.1242, 0.0314, 0.0314, 0.0158, 0.0158, 0.0148, 0.0131], [0.3738, 0.0348, 0.0288, 0.0164, 0.0164, 0.0113, 0.01, 0.0088], [0.3889, 0.1837, 0.0676, 0.0265, 0.0219, 0.0219, 0.0133, 0.0133], [0.7187, 0.1102, 0.0521, 0.0405, 0.0279, 0.0103, 0.007, 0.0033], [0.7278, 0.0869, 0.0597, 0.0527, 0.0282, 0.0081, 0.0038, 0.0034], [0.8039, 0.0847, 0.0514, 0.0243, 0.0054, 0.0054, 0.0037, 0.0033], [0.5593, 0.1816, 0.0972, 0.052, 0.0316, 0.0316, 0.0246, 0.0048], [0.7945, 0.1773, 0.0272, 0.0003, 0.0001, 0.0001, 0.0001, 0.0001], [0.8213, 0.1427, 0.0318, 0.003, 0.0003, 0.0001, 0.0001, 0.0001], [0.8391, 0.0884, 0.0369, 0.0325, 0.0009, 0.0003, 0.0003, 0.0003], [0.9345, 0.0362, 0.0092, 0.0081, 0.0038, 0.003, 0.003, 0.0008], [0.9539, 0.0175, 0.0094, 0.0064, 0.0034, 0.0034, 0.0016, 0.0014], [0.9139, 0.0516, 0.009, 0.0054, 0.0042, 0.0037, 0.0023, 0.0012], [0.7558, 0.1686, 0.0228, 0.0214, 0.0045, 0.0042, 0.0031, 0.0023]], "ranks": {}}, {"pos": 486, "top": [["\u2013", " \u2013", ",", ".", "\u2013and", ";", ":", " [\u2026]"], ["\u2013and", "\u2013", "\u6700\u65b0\u53d1\u5e03", " \u2013", "   \n", " \u2013**", " \u2013,", "(\\\""], ["\u2013", "\u2013and", ".\u2013", ",", " \u2013", "\u6700\u65b0\u53d1\u5e03", ".", "**\u2013"], ["\u6700\u65b0\u53d1\u5e03", "\u52a0\u62ff\u5927", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", "\\\":\\\"", " behaviors", "~\":\""], ["\u2013", "\u6700\u65b0\u53d1\u5e03", " \u00a0", "   \n", "\u2013and", ".\u2013", "&", "@"], ["   \n", "\u2013", " \u00a0", "  \n", "\u2013and", "\u6700\u65b0\u53d1\u5e03", ".\u2013", "\u00a0"], ["   \n", "  \n", "\u6700\u65b0\u53d1\u5e03", "  \n\n", "\n\n\n", "   \n\n", " \n \n", " \n\n\n"], ["\u6700\u65b0\u53d1\u5e03", "   \n", "   \n\n", " \n \n", "  \n", " \n\n\n", "=\\\"", "  \n\n\n"], ["\u6700\u65b0\u53d1\u5e03", "   \n\n", " \n\n", "  \n\n", " \n\n\n", "  \n\n\n", "   \n", "    \n\n"], ["\u2013", "\u00a0", "\u2013and", " \u00a0", "\u6700\u65b0\u53d1\u5e03", " [\u2026]", "  \n", ","], ["\u00a0", "\u2013", "<|endoftext|>", "  \n\n", " \u00a0", "&", " \n\n", "  \n"], ["\u6700\u65b0\u53d1\u5e03", " adherence", " \n\n\n", "  \n\n", "   \n\n", " foundational", " \n \n", "  \n\n\n"], ["\u6700\u65b0\u53d1\u5e03", " adherence", " impactful", " leveraging", " overarching", " foundational", " behaviors", " transformative"], [" overarching", "\u2013", " impactful", " adherence", " leveraging", " foundational", " transformative", "\u00a0"], ["\u2013", "\u00a0", " overarching", " utilizing", " leveraging", " engagement", " adherence", " showcasing"], [" overarching", "\u00a0", " showcasing", " utilizing", " leveraging", " foundational", " impactful", " entirety"], ["\u00a0", "\u2013", " overarching", " \u00a0", " leveraging", " adherence", " impactful", " priorit"], [" impactful", " overarching", " adherence", " leveraging", "\u00a0", "\u6700\u65b0\u53d1\u5e03", " showcase", " showcasing"], [" impactful", " overarching", " adherence", " leveraging", " transformative", " ongoing", " priorit", " engagement"], [" overarching", " impactful", " adherence", " ongoing", " thorough", " leveraging", "\u2013", " trending"], ["<|endoftext|>", " \n\n", "  \n\n", "   \n\n", "\u00a0", " overarching", " thorough", " \n\n\n"], [" impactful", " adherence", " uptime", " reliability", " ongoing", " overarching", " messaging", " proactive"], [" adherence", " ongoing", " reliability", " performance", " impactful", " thorough", " continual", " pursuit"], [" continual", " thorough", " ongoing", " enduring", " performance", " steady", " efforts", " reliability"], [" \n\n", "   \n\n", "  \n\n", " continual", " enduring", " thorough", " overarching", " robust"], ["   \n\n", " \n\n", " impactful", "  \n\n", " performance", " uptime", " reliability", " robust"], [" performance", " reliability", " robust", " uptime", " impactful", " steady", " sustained", " impact"], [" \n\n", " performance", " steady", " sustained", " continual", " robust", "  \n\n", " enduring"], [" performance", " robust", " reliability", " sustained", " steady", " relentless", " uptime", " impact"], [" performance", " robust", " reliability", " uptime", " impactful", " peak", " steady", " impact"], [" performance", " robust", " reliability", " steady", " reliable", " impact", " sustained", " quality"], [" performance", " robust", " high", " relentless", " reliability", " reliable", " sustained", " steady"], [" performance", " reliable", " robust", " high", " stable", " relentless", " reliability", " quality"], [" performance", " robust", " relentless", " reliability", " peak", " reliable", " uptime", " resilience"], [" relentless", " robust", " performance", " uptime", " reliability", " resilience", " peak", " stability"], [" performance", " uptime", " relentless", " peak", " uninterrupted", " overclock", " rapid", " framerate"], [" performance", " framerate", " uptime", " rapid", " reliably", " stable", " overclock", " speed"], [" performance", " framerate", " uptime", " overclock", " stability", " uninterrupted", " peak", " rapid"], [" performance", " framerate", " reliably", " consistently", " stable", " uptime", " stability", " uninterrupted"], [" performance", " stability", " framerate", " stable", " consistently", " speed", " peak", " uptime"], [" performance", " framerate", " consistently", " speed", " speeds", " uptime", " latency", " throughput"], [" performance", " framerate", " consistently", " uptime", " latency", " throughput", " stability", " stable"], [" consistently", " performance", " framerate", " stable", " stability", " uptime", " steady", " consistent"], [" consistently", " stable", " framerate", " uptime", " performance", " uninterrupted", " reliably", " stability"], [" stable", " uninterrupted", " consistently", " stability", " performance", " uptime", " reliably", " framerate"], [" uninterrupted", " stable", " consistently", " reliably", " stability", " continuous", " framerate", " uptime"], [" uninterrupted", " consistently", " stable", " reliably", " uptime", " stability", " framerate", " continuous"], [" uninterrupted", " consistently", " reliably", " stable", " framerate", " stability", " continuous", " uptime"], [" framerate", " uninterrupted", "\u6bcf\u79d2", " uptime", " consistently", "uptime", " latency", " rhyth"], [" framerate", " uninterrupted", "\u6bcf\u79d2", " uptime", "uptime", " latency", " milliseconds", " throughput"], [" framerate", "\u6bcf\u79d2", " uninterrupted", " uptime", "uptime", "\u5300\u901f", " throughput", "Continuous"], [" framerate", "\u6bcf\u79d2", " throughput", " latency", " milliseconds", " uptime", " uninterrupted", " microseconds"], [" latency", " framerate", " milliseconds", "\u6beb\u79d2", "\u6bcf\u79d2", " microseconds", " throughput", "Milliseconds"], [" latency", " framerate", " milliseconds", "\u6beb\u79d2", " throughput", " microseconds", "\u5e27", "Milliseconds"], [" latency", " framerate", " GPU", " milliseconds", " shader", " WebGL", " overclock", "\u5e27"], [" framerate", "\u5e27", " latency", "-frame", " GPU", "/frame", " milliseconds", " Tick"], [" latency", " framerate", "\u5e27", " WebGL", " shader", "-frame", "-render", "/frame"], ["\u5e27", " framerate", "-frame", "/frame", " latency", " shader", " frame", " Frame"], [" frame", "\u5e27", "-frame", " Frame", "/frame", "frame", "Frame", " frames"], [" frame", "-frame", "\u5e27", " Frame", "frame", "/frame", "Frame", " frames"], [" frame", " sub", "-frame", "\u5e27", " Frame", "/frame", "frame", "Frame"], [" sub", " frame", "-frame", " Frame", " fram", " high", "\u5e27", " frames"], [" frame", " sub", " high", " fram", " low", "-frame", " Frame", " frames"]], "p": [[0.5898, 0.217, 0.1025, 0.0704, 0.0066, 0.0016, 0.0013, 0.0011], [0.3026, 0.267, 0.1835, 0.0464, 0.0091, 0.0081, 0.0071, 0.0059], [0.8835, 0.0725, 0.0267, 0.0076, 0.0025, 0.0021, 0.0014, 0.0006], [0.183, 0.004, 0.0036, 0.002, 0.0018, 0.0012, 0.0012, 0.001], [0.0543, 0.051, 0.0329, 0.0226, 0.0156, 0.0114, 0.0073, 0.0065], [0.081, 0.0359, 0.028, 0.0159, 0.0159, 0.0117, 0.008, 0.0049], [0.2334, 0.2192, 0.0758, 0.046, 0.0406, 0.0297, 0.0204, 0.0204], [0.5737, 0.039, 0.0144, 0.0099, 0.0068, 0.0064, 0.005, 0.0044], [0.2362, 0.1346, 0.1188, 0.0925, 0.0869, 0.0282, 0.0282, 0.0194], [0.3138, 0.2157, 0.0352, 0.0292, 0.0188, 0.0156, 0.0114, 0.0101], [0.4196, 0.128, 0.1202, 0.0286, 0.0286, 0.0209, 0.0196, 0.0184], [0.1152, 0.0166, 0.0166, 0.0101, 0.0101, 0.0089, 0.0089, 0.0078], [0.0427, 0.0276, 0.0202, 0.0167, 0.0122, 0.0115, 0.0115, 0.0108], [0.0227, 0.0227, 0.0201, 0.0188, 0.0156, 0.0138, 0.013, 0.0114], [0.0244, 0.0216, 0.0158, 0.0139, 0.0102, 0.0102, 0.009, 0.0079], [0.0454, 0.0202, 0.0178, 0.0167, 0.0122, 0.0101, 0.0101, 0.0101], [0.1771, 0.0448, 0.0289, 0.0137, 0.012, 0.01, 0.0088, 0.0088], [0.0249, 0.0206, 0.0133, 0.0118, 0.0104, 0.0097, 0.0067, 0.0067], [0.0448, 0.024, 0.0137, 0.0113, 0.0088, 0.0088, 0.0073, 0.0057], [0.0175, 0.0145, 0.01, 0.0088, 0.0073, 0.006, 0.0057, 0.005], [0.4756, 0.0222, 0.0135, 0.0068, 0.0068, 0.0053, 0.0044, 0.0034], [0.0143, 0.0059, 0.0056, 0.0034, 0.0034, 0.0028, 0.0028, 0.0025], [0.0126, 0.0092, 0.0072, 0.0067, 0.0063, 0.0059, 0.0059, 0.0056], [0.0249, 0.0117, 0.0097, 0.0081, 0.0067, 0.0063, 0.0063, 0.0049], [0.0771, 0.068, 0.0388, 0.0183, 0.0081, 0.0067, 0.0056, 0.0049], [0.0565, 0.0469, 0.0284, 0.0236, 0.0184, 0.0162, 0.0152, 0.0143], [0.0432, 0.018, 0.0169, 0.014, 0.0096, 0.0096, 0.008, 0.008], [0.0388, 0.0302, 0.0134, 0.0134, 0.0098, 0.0092, 0.0076, 0.0076], [0.066, 0.0178, 0.0147, 0.0138, 0.0138, 0.0101, 0.0095, 0.0084], [0.07, 0.0375, 0.0227, 0.0213, 0.0138, 0.0129, 0.0114, 0.0107], [0.1245, 0.038, 0.0203, 0.0149, 0.0149, 0.0149, 0.0131, 0.0131], [0.0854, 0.0356, 0.0245, 0.019, 0.0179, 0.0179, 0.0168, 0.0168], [0.0888, 0.0225, 0.0225, 0.0225, 0.0186, 0.0175, 0.0175, 0.0164], [0.0477, 0.0395, 0.0349, 0.0225, 0.0212, 0.0187, 0.0175, 0.0155], [0.0632, 0.0299, 0.0263, 0.0181, 0.0132, 0.0124, 0.0124, 0.0117], [0.0895, 0.051, 0.0329, 0.0165, 0.0165, 0.0137, 0.0137, 0.0137], [0.163, 0.0342, 0.0342, 0.025, 0.0221, 0.0221, 0.0221, 0.0183], [0.2196, 0.0432, 0.0382, 0.018, 0.018, 0.0169, 0.0169, 0.0159], [0.3527, 0.0349, 0.0255, 0.0255, 0.024, 0.0212, 0.0212, 0.0187], [0.334, 0.0658, 0.0618, 0.058, 0.0452, 0.0188, 0.0188, 0.0166], [0.2981, 0.1596, 0.0518, 0.0518, 0.0356, 0.0314, 0.026, 0.023], [0.3739, 0.1071, 0.0736, 0.0447, 0.0271, 0.0239, 0.0239, 0.0211], [0.199, 0.094, 0.0646, 0.0646, 0.0646, 0.0392, 0.0305, 0.0305], [0.0939, 0.0828, 0.0828, 0.0645, 0.0645, 0.0569, 0.0502, 0.0368], [0.1415, 0.0972, 0.0972, 0.0668, 0.0459, 0.0459, 0.0405, 0.0358], [0.2343, 0.1107, 0.0761, 0.0382, 0.0338, 0.0317, 0.0317, 0.0298], [0.2761, 0.1151, 0.0743, 0.0616, 0.0291, 0.0273, 0.0241, 0.0241], [0.2728, 0.1137, 0.0537, 0.0505, 0.0418, 0.0254, 0.021, 0.021], [0.1592, 0.1165, 0.0378, 0.0378, 0.019, 0.0179, 0.0158, 0.0115], [0.1688, 0.1024, 0.0661, 0.0354, 0.0167, 0.0157, 0.0148, 0.0148], [0.1269, 0.077, 0.0723, 0.0301, 0.0126, 0.0111, 0.0111, 0.0104], [0.1956, 0.0465, 0.034, 0.03, 0.03, 0.0265, 0.0182, 0.0171], [0.5234, 0.0909, 0.0708, 0.0261, 0.0179, 0.0148, 0.0116, 0.0109], [0.3435, 0.1524, 0.0984, 0.0234, 0.0234, 0.0171, 0.0092, 0.0092], [0.2508, 0.1953, 0.0264, 0.0219, 0.0219, 0.0206, 0.0206, 0.0193], [0.3822, 0.0966, 0.0966, 0.0314, 0.0203, 0.019, 0.0179, 0.0139], [0.13, 0.1078, 0.0741, 0.0542, 0.0542, 0.0373, 0.0309, 0.0226], [0.2452, 0.1487, 0.1313, 0.0547, 0.0426, 0.0376, 0.0376, 0.0178], [0.306, 0.306, 0.1638, 0.0603, 0.0469, 0.0414, 0.0414, 0.0134], [0.6284, 0.1237, 0.0964, 0.0402, 0.0313, 0.0276, 0.0215, 0.0167], [0.4121, 0.2206, 0.1718, 0.0492, 0.0383, 0.0181, 0.0141, 0.0141], [0.8137, 0.1101, 0.0278, 0.0062, 0.0038, 0.0033, 0.0033, 0.0021], [0.4637, 0.4637, 0.0124, 0.0075, 0.0066, 0.004, 0.0033, 0.0023]], "ranks": {}}, {"pos": 487, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", "\u2026.", "\u2026..", "\u00a0", ","], [" \u2013", "\u2013and", " \u2013**", "\u2013\u2013", "\u2013", "**\u2013", " **\u2013", " \u2013,"], ["\u2013", "**\u2013", " \u2013", "\u2013and", ".\u2013", "\u2026..", " \u2013**", " **\u2013"], [" milfs", " Shemale", " pupper", " Strec", " Hidal", " Blowjob", " Bbw", "aruhi"], [" @_", " *@", " **#", " \n\n\n\n\n", "ieli", "@g", "ersp", "insip"], ["-**", "\u8f66", "consts", " \n\n\n\n\n", "iha", "\u5178\u793c", "ogh", " **#"], ["-**", " **#", " \r\n\r\n", "iha", "\u4e86", "\u662f", "       \n\n", "\u9ad8"], ["-**", "iha", " **#", " **\u20ac", " *@", "uler", "\u5178\u793c", " @_"], [" \r\n\r\n", "\t\n\n", "       \n\n", "   \n\n", "athon", "        \n\n", "    \n\n", " *@"], ["\u2013and", "\u2013", "iha", "Sharper", "-heavy", "-cent", "\\-", "-ish"], ["\u2013", "-", "#", "-heavy", "-ish", "\\-", "\u00a0", " \r\n\r\n"], ["Sharper", "opolitan", "iha", "Feels", " veggies", "isecond", "-ish", "althy"], [" veggies", "-ish", "Sharper", "iha", "opolitan", "-safe", "-solid", "flix"], ["Sharper", "-ish", " veggies", "iha", " framerate", " booze", "Feels", "-tier"], ["Sharper", "-ish", " pricey", "iha", "-tech", "-heavy", "-esque", " booze"], [" pricey", "-ish", "-esque", " savvy", " veggies", "kids", " skinny", " booze"], ["-ish", "-esque", "-tech", " skinny", " pricey", " vibe", "-heavy", "kids"], ["-ish", "-tech", "-esque", "kids", " vibe", " booze", "Sharper", "-heavy"], ["-ish", "Sharper", "-tech", "-esque", " booze", " pricey", "-big", " comfy"], ["-ish", "Sharper", "-esque", " pricey", "\u54ea\u6015\u662f", " booze", "-hit", "-heavy"], ["<|endoftext|>", " \n\n", "\u2013", "Though", " \r\n\r\n", " hugely", "  \n\n", "\u5373\u4fbf"], ["Sharper", "\u54ea\u6015\u662f", " booze", "uptime", " pricey", " framerate", "iha", "-esque"], [" \u2019", " effortlessly", " hugely", " wildly", " incredibly", " pricey", " massively", " booming"], [" \u2019", " hugely", " massively", " wildly", " effortlessly", " \u2013", " arguably", " vastly"], [" \r\n\r\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", "  \r\n\r\n", "    \n\n"], [" \r\n\r\n", "  \n\n", " \n\n", "   \n\n", "\t\n\n", "  \r\n\r\n", " **#", "\r\n\r\n"], [" \n\n", " \r\n\r\n", "  \n\n", "\t\n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", "\u2011"], [" \n\n", "  \n\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n", "\u2011", "\t\n\n", "\r\n\r\n"], ["  \n\n", " \n\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n", "\u2011", "\u2026**", "\t\n\n"], ["  \n\n", " \n\n", " \r\n\r\n", "   \n\n", "\u2011", "  \r\n\r\n", "<|endoftext|>", " \n\n\n"], ["  \n\n", " \n\n", "\u2011", "<|endoftext|>", "   \n\n", "\ufffd", " \r\n\r\n", " \n  \n"], [" \n\n", "<|endoftext|>", "  \n\n", "\u2011", " \u2018", " \u2019", "\ufffd", " "], ["  \n\n", "<|endoftext|>", " \n\n", "\u2011", " \r\n\r\n", "   \n\n", "  \r\n\r\n", "\ufffd"], ["  \n\n", " \r\n\r\n", "<|endoftext|>", "  \r\n\r\n", " \n\n", "   \n\n", "<|object_ref_end|>", "\u2011"], ["  \n\n", "  \r\n\r\n", " \r\n\r\n", "\u2026**", "<|object_ref_end|>", "\u2019**", "   \n\n", " **\u201c"], ["  \n\n", "  \r\n\r\n", "\u2026**", " \r\n\r\n", "<|endoftext|>", "   \n\n", " **\u201c", "\u2019**"], ["  \n\n", "  \r\n\r\n", "<|endoftext|>", "\u2026**", " \r\n\r\n", "!**", "   \n\n", "\u2019**"], ["  \n\n", "\u2026**", "<|endoftext|>", "\u2019**", " **\u201c", "!**", "  \r\n\r\n", "**\u2014"], ["\u2026**", "!**", "<|endoftext|>", "\u2019**", "  \n\n", "\u2011", "**\u2014", " **\u2013"], ["\u2026**", "!**", "\u2011", "<|endoftext|>", "  \n\n", "**\u2014", "\u2019**", " **\u2013"], ["\u2026**", "<|endoftext|>", "!**", "  \n\n", "\u2011", "**\u2014", "\u2019**", "**\u201d"], ["<|endoftext|>", "**\u2014", "\u2026**", " **\u2014", "  \n\n", "!**", "\u2019**", "**\u201d"], ["\u2026**", " **\u2014", "**\u2014", "!**", "\u2019**", " **\u201c", "**\u201d", " **\u2013"], [" **\u2014", "\u2026**", "\uff1a**", "\u2019**", "**\u2014", "\uff1f**", "!**", "**\u201d"], ["\u2026**", " **\u2014", "\u2019**", " **\u2018", "**\u2014", " **\u2013", " **\u201c", "!**"], ["\u2019**", "\u2026**", " **\u2014", " **\u2018", " **\u2013", "!**", "**\u2014", " **\u201c"], ["\u2019**", " **\u2014", "**\u2014", "!**", " **\u2013", " **\u201c", " **\u2018", "\u2026**"], ["\u2019**", " **\u2014", "**\u2014", " **\u2013", "\u2026**", " **\u201c", "!**", ";**"], ["\u2019**", "!**", " **\u2014", ";**", " **\u201c", " **\u2013", " **\u2018", "-**"], ["\u2019**", " **\u2014", " **\u2013", "!**", ";**", "?**", " **\u201c", " **\u20ac"], ["\u2019**", "!**", "?**", ";**", "**\u201d", "**\u2014", "%**", " **\u2014"], ["\u2019**", "!**", ";**", "?**", "**\u2014", "**\u201d", "%**", ">**"], ["\u2019**", ";**", "-**", ">**", "?**", "\u2026**", "**\u2014", "!**"], ["\u2019**", "-**", ";**", "%**", ">**", "**\u201d", "?**", "(**"], ["\u2019**", "-**", ";**", ">**", "%**", "?**", "*</", "**\u201d"], ["\u2019**", "-**", ";**", ">**", "%**", "?**", "*</", "(**"], ["\u2019**", "-**", ";**", ">**", "%**", "?**", "*</", "\u2019ll"], ["\u2019**", "-**", ";**", "%**", ">**", "?**", "\u2019ll", " ultra"], ["\u2019**", "-**", "%**", "\u2019ll", ";**", ">**", "?**", "\u2019d"], ["\u2019**", "-**", " ultra", "\u2019ll", "-cycle", " milliseconds", "-grid", "\u2013"], ["-cycle", " ultra", " frame", "-frame", "1", " high", " milliseconds", "6"], ["1", " ultra", "-frame", "-cycle", " frame", "6", " high", "-second"], ["1", "6", "9", "8", "7", "5", "4", "3"]], "p": [[0.4411, 0.1524, 0.1524, 0.0597, 0.0437, 0.041, 0.0171, 0.0118], [0.0564, 0.0235, 0.0221, 0.0207, 0.0172, 0.0172, 0.0032, 0.003], [0.3008, 0.2201, 0.1039, 0.0976, 0.0359, 0.0359, 0.0232, 0.015], [0.014, 0.0051, 0.0043, 0.0035, 0.0033, 0.0029, 0.0024, 0.0024], [0.0101, 0.0095, 0.0069, 0.0048, 0.0026, 0.0026, 0.0026, 0.0024], [0.0046, 0.0038, 0.0036, 0.0028, 0.0026, 0.0025, 0.002, 0.0019], [0.0398, 0.0166, 0.0101, 0.0094, 0.0094, 0.0065, 0.0061, 0.0057], [0.0102, 0.0096, 0.0062, 0.0055, 0.0055, 0.0033, 0.0029, 0.0028], [0.0243, 0.0157, 0.0115, 0.0108, 0.0089, 0.0079, 0.0065, 0.0051], [0.0044, 0.0039, 0.0026, 0.0022, 0.0017, 0.0015, 0.0014, 0.0013], [0.0289, 0.0255, 0.024, 0.0106, 0.0094, 0.0094, 0.0069, 0.0065], [0.0092, 0.0049, 0.0049, 0.003, 0.0028, 0.0026, 0.0022, 0.0016], [0.0063, 0.0056, 0.0052, 0.0022, 0.0022, 0.0019, 0.0018, 0.0018], [0.0082, 0.0047, 0.0044, 0.0034, 0.0032, 0.0019, 0.0017, 0.0014], [0.0046, 0.0031, 0.0022, 0.002, 0.0018, 0.0017, 0.0016, 0.0016], [0.0054, 0.0039, 0.0039, 0.0033, 0.0029, 0.0025, 0.0025, 0.0023], [0.0174, 0.0153, 0.0068, 0.0056, 0.0053, 0.0053, 0.005, 0.005], [0.0268, 0.0196, 0.0087, 0.0053, 0.0053, 0.005, 0.0047, 0.0044], [0.0136, 0.0113, 0.0099, 0.0082, 0.0077, 0.0047, 0.0021, 0.002], [0.0084, 0.0061, 0.0051, 0.0039, 0.0033, 0.0031, 0.0022, 0.0022], [0.1182, 0.0097, 0.0097, 0.0071, 0.0052, 0.0036, 0.0028, 0.0026], [0.0083, 0.0029, 0.0022, 0.002, 0.0017, 0.0014, 0.0014, 0.0013], [0.0104, 0.0067, 0.0063, 0.0041, 0.0034, 0.0034, 0.0026, 0.0023], [0.0063, 0.0059, 0.0052, 0.0049, 0.0046, 0.0034, 0.0028, 0.0026], [0.4841, 0.1896, 0.0578, 0.0373, 0.0114, 0.0107, 0.0074, 0.0047], [0.439, 0.1425, 0.098, 0.0435, 0.0193, 0.015, 0.0117, 0.0117], [0.3031, 0.1345, 0.0816, 0.0234, 0.0104, 0.0081, 0.0049, 0.0036], [0.602, 0.2215, 0.1185, 0.0097, 0.0043, 0.0038, 0.0036, 0.0032], [0.6089, 0.2538, 0.0934, 0.0184, 0.0068, 0.0041, 0.0028, 0.0013], [0.6797, 0.2833, 0.0181, 0.0086, 0.0022, 0.0019, 0.001, 0.0007], [0.4092, 0.3611, 0.1328, 0.0296, 0.009, 0.007, 0.0062, 0.004], [0.2758, 0.2434, 0.2148, 0.051, 0.045, 0.0121, 0.0114, 0.01], [0.4957, 0.3006, 0.142, 0.0247, 0.011, 0.0046, 0.0031, 0.0017], [0.4934, 0.1414, 0.0972, 0.0554, 0.052, 0.0191, 0.0149, 0.0131], [0.3166, 0.1592, 0.132, 0.026, 0.0244, 0.0202, 0.019, 0.0179], [0.4859, 0.0793, 0.07, 0.0512, 0.0375, 0.0274, 0.0227, 0.0214], [0.4725, 0.0771, 0.0601, 0.053, 0.0413, 0.0364, 0.0322, 0.0208], [0.3101, 0.2415, 0.065, 0.042, 0.0348, 0.0327, 0.0307, 0.0255], [0.2614, 0.1023, 0.0703, 0.0703, 0.0583, 0.0515, 0.0483, 0.0312], [0.3189, 0.0806, 0.0806, 0.0712, 0.0554, 0.0521, 0.0459, 0.0336], [0.2292, 0.2292, 0.0744, 0.0699, 0.0544, 0.0511, 0.0274, 0.0213], [0.2411, 0.1212, 0.1139, 0.0573, 0.0326, 0.0326, 0.0326, 0.0211], [0.2871, 0.1537, 0.0992, 0.0773, 0.0469, 0.0303, 0.0284, 0.0284], [0.2031, 0.1087, 0.0847, 0.0847, 0.0747, 0.0659, 0.0547, 0.0258], [0.4333, 0.1242, 0.0967, 0.0429, 0.0356, 0.0356, 0.0244, 0.0158], [0.3096, 0.2128, 0.1462, 0.0691, 0.0538, 0.0419, 0.0288, 0.0254], [0.2737, 0.2416, 0.0889, 0.0692, 0.0611, 0.042, 0.037, 0.0289], [0.345, 0.1847, 0.1438, 0.0467, 0.0467, 0.0364, 0.0321, 0.025], [0.3902, 0.1626, 0.1626, 0.0528, 0.0266, 0.0249, 0.0182, 0.0161], [0.3676, 0.1532, 0.06, 0.0467, 0.0321, 0.0266, 0.0266, 0.025], [0.3179, 0.1325, 0.0666, 0.0588, 0.0519, 0.0261, 0.0179, 0.0169], [0.2465, 0.2465, 0.0907, 0.0517, 0.0428, 0.0294, 0.0277, 0.026], [0.3869, 0.1423, 0.1041, 0.0383, 0.0298, 0.0247, 0.0232, 0.0181], [0.7308, 0.077, 0.068, 0.0126, 0.0111, 0.0092, 0.0067, 0.0049], [0.6838, 0.0677, 0.0386, 0.0182, 0.0125, 0.0086, 0.0076, 0.0067], [0.5059, 0.1449, 0.0729, 0.0442, 0.0153, 0.0135, 0.0093, 0.0093], [0.3756, 0.1011, 0.0449, 0.024, 0.0187, 0.0088, 0.0083, 0.0065], [0.2196, 0.0759, 0.0231, 0.0217, 0.0192, 0.0091, 0.0085, 0.0062], [0.2653, 0.0433, 0.0232, 0.017, 0.015, 0.0103, 0.0097, 0.0071], [0.0304, 0.0173, 0.0119, 0.0082, 0.0056, 0.005, 0.0047, 0.0047], [0.0219, 0.0206, 0.017, 0.017, 0.0091, 0.0076, 0.0076, 0.0046], [0.1103, 0.0489, 0.0381, 0.0231, 0.0217, 0.0124, 0.0124, 0.0071], [0.4756, 0.4197, 0.0729, 0.0082, 0.0064, 0.0053, 0.005, 0.0028]], "ranks": {}}, {"pos": 488, "top": [[".", ",", "a", " \u2013", "\u2013", "o", "\u00a0\u00a0", ";"], ["erweise", "sWith", "ly", "\ufffd", "\uff0e", "  \r\n", "\u0902\u092c\u0930", "\u00adi"], [".", "\u2013", "\u2026..", "\u3002", "\u2026.", ".\u2013", "\u2026\u2026", " \u2013"], [" milfs", "-------------</", " cumshot", "----------</", " pupper", " Blowjob", " ;;^", " Shemale"], ["erweise", "raries", "ed", "kits", "sWith", "izer", "\u52a0\u62ff\u5927\u7684", "enzi"], ["erweise", "kits", "sWith", "ed", "raries", "zug", "dias", "\u52a0\u62ff\u5927\u7684"], ["raries", "\uff01**", "ed", "er", " **\u25a0", "ly", "\uff01", "erweise"], ["raries", "erweise", "ly", "svar", " **\u25a0", "sWith", "ifier", "enner"], ["ly", "er", "\u00adi", "erweise", "raries", "ifier", "\u00adt", "ed"], ["er", "\u00adi", "ly", " \u00ad", "\u00adt", "ed", "\u00adtion", "erweise"], ["er", "a", "o", "ly", "\u00adi", "ed", " \u00ad", "en"], ["erweise", "er", "ly", "raries", "enner", "isecond", "\u00adi", "iens"], ["erweise", "er", "ly", "iens", "erator", "-esque", "raries", "\u88f3"], ["erweise", "-esque", "er", "raries", "\u88f3", "iens", "ly", "erator"], ["-esque", "o", "er", "erweise", "aft", "raries", "a", "snap"], ["-esque", "erweise", "er", "aft", "o", "kids", "ed", "a"], ["o", "a", "er", "-esque", "n", "ed", "en", "an"], ["o", "-esque", "er", "a", "ed", "en", "erweise", "n"], ["-esque", "o", "ed", "er", "ahead", "a", "aft", "n"], ["ed", "o", "-esque", "ahead", "er", "a", "aft", "fully"], ["<|endoftext|>", "  \n\n", " \n\n", " \u00ad", "   \n\n", "\n\n", "a", "o"], ["-esque", " impactful", " busted", " gritty", " sprawling", " skyrocket", " standout", "\u6253\u9020\u7684"], ["  \n\n", "\r\n\r\n", " \u00ad", " \u2019", " \r\n\r\n", "<|endoftext|>", "&nbsp", "ed"], ["<|endoftext|>", "  \n\n", "\r\n\r\n", " \n\n", "\n\n", " \r\n\r\n", "   \n\n", " \u00ad"], ["  \n\n", " \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "\n\n", "  \r\n\r\n", "\t\n\n"], ["  \n\n", " \r\n\r\n", "\r\n\r\n", "\u2026**", "   \n\n", " \n\n", "  \r\n\r\n", "\t\n\n"], ["  \n\n", "\r\n\r\n", " \n\n", "\n\n", " \r\n\r\n", "\t\n\n", "   \n\n", "\u2026**"], ["  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\t\n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "  \r\n\r\n", "\u2026**", "\u2011"], ["  \n\n", " \n\n", "\u2011", " \r\n\r\n", "   \n\n", "<|endoftext|>", "\ufffd", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\u2011", " @", " \u2026", " \u2019", "\n\n"], ["<|endoftext|>", "\u2011", " \u2019", " \u2018", "  \n\n", " @", " \u2014", " ["], ["\u2011", " @", "<|endoftext|>", " \u2019", "  \n\n", " **", " \u2014", " \u2018"], ["\u2026**", "  \n\n", "...**", "\u2011", "  \r\n\r\n", "\u2026*", " foundational", " \r\n\r\n"], ["<|endoftext|>", "\u2026**", "  \n\n", " leveraging", "\u2011", "  \r\n\r\n", "...**", " \r\n\r\n"], ["<|endoftext|>", "  \n\n", "\u2011", "\u2026**", "<|im_end|>", " leveraging", "  \r\n\r\n", "\u2026*"], [" leveraging", "\u2011", "  \n\n", "\u2026**", "<|endoftext|>", " aggressively", "**\u2014", " optimized"], ["\u2011", " leveraging", "\u2026**", "<|im_end|>", "  \n\n", " optimized", " workaround", "<|endoftext|>"], ["\u2011", " leveraging", "\u2026**", " optimized", " optimizations", " workaround", " optimizing", "optimized"], ["\u2011", " leveraging", "\u2026**", " optimized", " optimizations", " optimizing", " tech", "optimized"], ["\u2011", " leveraging", " tech", " optimized", " optimizations", " optimizing", " optimization", "optimized"], [" leveraging", " optimizing", " optimized", " optimizations", "\u2011", " engineering", " modular", " tech"], [" leveraging", " optimized", " optimizations", " optimizing", " engineering", " tech", " optimization", " modular"], [" leveraging", " optimizations", " optimizing", " optimized", " strategy", " optimization", " workaround", " tech"], [" strategy", " leveraging", " modular", " strategies", " tech", " optimized", " optimizing", " workaround"], [" strategy", " leveraging", " strategies", " modular", " optimized", " tech", " optimizations", " engineering"], [" leveraging", " strategy", " strategies", " workaround", " optimizations", " optimized", " optimization", " rigor"], [" leveraging", " STRICT", " strategy", " strict", "\u2011", " leverage", " workaround", " tech"], [" STRICT", " leveraging", "-tier", ";**", "!**", "nowrap", "\u7b56\u7565", " workflows"], ["nowrap", " STRICT", " flawless", "-framework", "-tier", "-zero", "/Framework", "\u4e25\u683c\u6267\u884c"], ["nowrap", "\u6bcf\u79d2", "-tier", "-zero", " flawless", "-minute", " uninterrupted", "-flat"], ["\u6bcf\u79d2", " framerate", " microseconds", " milliseconds", "\u5e27", " flawless", "-minute", "\u6bcf\u5206\u949f"], [" latency", " milliseconds", "\u6beb\u79d2", " microseconds", "\u6bcf\u79d2", " framerate", "\u5e27", "Milliseconds"], [" milliseconds", " latency", "\u6beb\u79d2", " framerate", " microseconds", "-frame", "\u5e27", "-minute"], [" milliseconds", "\u5e27", "\u6beb\u79d2", " latency", " framerate", " microseconds", "-frame", "-cycle"], ["\u5e27", "-frame", "frame", " framerate", "/frame", "Frame", " frame", " milliseconds"], ["-frame", "\u5e27", " frame", "frame", "/frame", " Frame", "-render", "Frame"], ["-frame", "\u5e27", "frame", " frame", "Frame", "/frame", "frames", " frames"], ["-frame", " frame", "Frame", "\u5e27", "frame", " Frame", " frames", "frames"], ["-frame", " frame", " Frame", "Frame", "\u5e27", " frames", "frame", "/frame"], ["-frame", " ms", " frame", " Frame", "ms", "Frame", " frames", "frame"], ["2", " ms", "ms", "-frame", "6", "1", "-ms", "0"], ["2", "6", "1", "3", "4", "8", "5", "7"]], "p": [[0.8669, 0.1035, 0.0116, 0.0031, 0.0023, 0.0023, 0.0012, 0.0009], [0.0122, 0.0084, 0.0042, 0.0042, 0.0024, 0.0023, 0.0021, 0.0021], [0.2287, 0.0841, 0.0743, 0.0698, 0.033, 0.0291, 0.0257, 0.0176], [0.017, 0.0103, 0.0103, 0.0085, 0.0063, 0.0052, 0.0043, 0.0036], [0.0511, 0.0146, 0.0129, 0.0121, 0.0065, 0.0061, 0.0051, 0.0039], [0.0106, 0.01, 0.0083, 0.0069, 0.0042, 0.0037, 0.0037, 0.0032], [0.1363, 0.0286, 0.0163, 0.0153, 0.0135, 0.0119, 0.0112, 0.0099], [0.0358, 0.0204, 0.0116, 0.0096, 0.009, 0.008, 0.008, 0.0055], [0.1273, 0.0875, 0.0565, 0.0322, 0.0221, 0.0134, 0.0126, 0.0092], [0.0934, 0.0877, 0.0303, 0.0285, 0.0251, 0.0119, 0.0112, 0.0092], [0.6751, 0.059, 0.0459, 0.0405, 0.0169, 0.0169, 0.0169, 0.0096], [0.0295, 0.0115, 0.0102, 0.0075, 0.007, 0.0062, 0.0058, 0.0037], [0.0273, 0.0188, 0.0094, 0.0069, 0.0054, 0.0047, 0.0045, 0.0042], [0.017, 0.0125, 0.0103, 0.0076, 0.0046, 0.0031, 0.0028, 0.0026], [0.0245, 0.0131, 0.0123, 0.007, 0.007, 0.0058, 0.004, 0.0038], [0.0311, 0.0177, 0.0147, 0.0108, 0.0089, 0.0061, 0.004, 0.0037], [0.3092, 0.0943, 0.0886, 0.0735, 0.0288, 0.027, 0.0198, 0.0128], [0.2295, 0.1229, 0.0512, 0.0201, 0.0177, 0.0129, 0.0114, 0.0114], [0.1601, 0.0553, 0.0191, 0.0131, 0.0066, 0.0058, 0.0058, 0.0048], [0.0287, 0.0153, 0.0127, 0.012, 0.0047, 0.0041, 0.0028, 0.0027], [0.7472, 0.1146, 0.0121, 0.0044, 0.0037, 0.0031, 0.0024, 0.0021], [0.0114, 0.0078, 0.0037, 0.0035, 0.0027, 0.0024, 0.0021, 0.0016], [0.1595, 0.023, 0.0139, 0.0123, 0.0123, 0.0116, 0.0102, 0.0096], [0.3041, 0.2684, 0.0266, 0.0266, 0.0234, 0.0172, 0.0104, 0.0098], [0.8635, 0.043, 0.0261, 0.023, 0.0158, 0.009, 0.004, 0.0033], [0.6622, 0.0791, 0.0511, 0.0291, 0.0188, 0.0166, 0.0137, 0.0121], [0.3984, 0.1007, 0.0737, 0.0692, 0.0611, 0.0136, 0.01, 0.0083], [0.6075, 0.1741, 0.1056, 0.044, 0.0343, 0.0053, 0.0041, 0.0026], [0.8441, 0.0693, 0.0371, 0.0145, 0.0069, 0.0053, 0.0042, 0.0034], [0.8328, 0.0995, 0.0162, 0.0119, 0.0053, 0.0053, 0.005, 0.0034], [0.3958, 0.3493, 0.1285, 0.0346, 0.0077, 0.005, 0.0044, 0.0039], [0.1747, 0.0643, 0.0643, 0.0415, 0.039, 0.0366, 0.0162, 0.0127], [0.1898, 0.0896, 0.0698, 0.0398, 0.0351, 0.0213, 0.02, 0.0101], [0.4162, 0.0872, 0.082, 0.0266, 0.0207, 0.0161, 0.0134, 0.0134], [0.5499, 0.0398, 0.0291, 0.0188, 0.0147, 0.0095, 0.0065, 0.0051], [0.7942, 0.0786, 0.0128, 0.0088, 0.0078, 0.0039, 0.0024, 0.0021], [0.0907, 0.08, 0.0663, 0.0378, 0.0294, 0.0102, 0.009, 0.0066], [0.221, 0.0981, 0.0409, 0.0264, 0.0193, 0.0117, 0.0086, 0.0081], [0.1273, 0.1196, 0.0468, 0.0251, 0.0152, 0.0134, 0.0118, 0.0104], [0.2787, 0.1091, 0.085, 0.0229, 0.013, 0.0115, 0.0095, 0.0095], [0.253, 0.1634, 0.0388, 0.0322, 0.0267, 0.0208, 0.0111, 0.0087], [0.1771, 0.0693, 0.0693, 0.054, 0.0395, 0.0289, 0.0255, 0.0255], [0.173, 0.0598, 0.0496, 0.0496, 0.0301, 0.0265, 0.0265, 0.0194], [0.1595, 0.0379, 0.0356, 0.0334, 0.0277, 0.0245, 0.0216, 0.0191], [0.0895, 0.0895, 0.0423, 0.035, 0.0273, 0.0256, 0.0213, 0.02], [0.1197, 0.0726, 0.0566, 0.0469, 0.0251, 0.0251, 0.0221, 0.0221], [0.0655, 0.0655, 0.0373, 0.0213, 0.02, 0.02, 0.0176, 0.0146], [0.0634, 0.0193, 0.0151, 0.0141, 0.011, 0.0103, 0.0097, 0.0097], [0.017, 0.015, 0.015, 0.0103, 0.0091, 0.0067, 0.0049, 0.0046], [0.0225, 0.0176, 0.01, 0.0069, 0.0057, 0.0054, 0.0039, 0.0037], [0.0245, 0.0216, 0.0123, 0.0102, 0.0096, 0.0043, 0.0043, 0.004], [0.0744, 0.0257, 0.0242, 0.0121, 0.0083, 0.0074, 0.0057, 0.0051], [0.2997, 0.133, 0.0669, 0.0554, 0.0489, 0.0432, 0.0336, 0.0124], [0.1377, 0.1073, 0.0651, 0.0371, 0.0348, 0.0211, 0.0198, 0.0128], [0.1008, 0.0836, 0.054, 0.054, 0.0476, 0.0476, 0.0476, 0.0447], [0.2433, 0.2433, 0.0309, 0.0273, 0.0241, 0.02, 0.02, 0.0188], [0.5981, 0.0809, 0.0263, 0.0247, 0.0159, 0.015, 0.0141, 0.0124], [0.806, 0.0427, 0.0401, 0.0354, 0.0115, 0.0095, 0.0095, 0.007], [0.6805, 0.134, 0.0493, 0.0384, 0.0339, 0.0233, 0.0125, 0.011], [0.5357, 0.2868, 0.0498, 0.0388, 0.0267, 0.0235, 0.0126, 0.0067], [0.4842, 0.2287, 0.1781, 0.031, 0.0241, 0.0166, 0.0065, 0.0061], [0.6133, 0.2256, 0.083, 0.0305, 0.0144, 0.0036, 0.0034, 0.0034], [0.9907, 0.0076, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 489, "top": [[".", ",", "\u2013", " \u2013", "y", ".\u2013", ";", "\u2013and"], ["\u2013and", "een", "\u2013", " \u2013**", ".\u2013", " Hidal", "\uff5e\uff5e", "al"], ["\u2013", " \u2013", ".\u2013", ".", "\u2013and", "\u2026..", ",", ".."], [" milfs", " Strec", " Blowjob", " ;;^", "':''", "*\u201c.", " cumshot", " Geile"], [" \\\"", "@$", "*\u201c.", " \\\"$", "een", "pedia", " *\u201c", "odiac"], ["odiac", "egers", "\u0441\u043e\u0442", "pedia", "een", " \n \n", "flix", "ropol"], [" \n \n", "__)", " *\u00ab", "\u0629", " *\u201c", "een", ".\\\"", ".__"], [" \\\"", " \\\"$", "}\\\"", ".\\\"", " *\u00ab", "__)", "\\\"\\", "=\\\""], [" \n \n", " \\\"$", ".\\\"", "}\\\"", "\\\"", " \\\"", "athon", " \n    \n"], ["-$", " \n \n", " \\\"$", ".\\\"", "ive", "}\\\"", "\\\",\\", "een"], [" \\\"", ".\\\"", " \n \n", " \\\"$", "\\\"", "-$", "}\\\"", "\\\"\\"], ["ily", " \\\"$", " veggies", "egger", "ilian", " \\\"", " *\u00ab", "Sharper"], [" veggies", "flix", "egers", "odiac", "Sharper", "ive", "ily", "egger"], [" veggies", "Sharper", "flix", "\u4e3d\u4e1d", "egers", "odiac", "-ish", "kids"], ["horn", " kids", " veggies", "Sharper", "-ish", "kids", " vibe", " tease"], [" veggies", "kids", " kids", "\u5982\u82e5", " buzz", " skinny", "-ish", "\u4e3d\u4e1d"], ["es", "kids", "al", "-ish", "y", " veggies", " buzz", "ic"], ["-ish", "kids", "Sharper", " vibe", " buzz", "-tech", " veggies", "poke"], ["Sharper", "-ish", "flix", "kids", " buzz", "\u4e3d\u4e1d", " veggies", "buzz"], ["Sharper", " buzz", "-ish", "buzz", "\u0629", "ly", "\u4ea6\u6216\u662f", " buzzing"], [" \n\n", " --", " \n \n", "Though", "y", " \r\n\r\n", "   \n\n", "ly"], ["Sharper", "flix", " ;;^", "ronic", " buzz", " anyways", "ovski", "buzz"], [" --", " ``", " ''", "ly", " \n \n", "Sharper", " buzz", "ive"], [" --", " ''", " ``", "ly", " \\\"", "fully", " hugely", " battling"], [" \n\n", " \r\n\r\n", "   \n\n", " \n \n", " \n\n\n", " --", "    \n\n", " \n  \n"], [" \n\n", " __", " tech", " \r\n\r\n", " --", " *__", "   \n\n", " \n \n"], [" \n\n", " --", " __", " tech", " \r\n\r\n", " ___", " battling", ".__"], [" \n\n", " --", " __", " tech", " @", " battling", " arguably", "\n\n"], [" \n\n", " tech", " __", " --", " @", " technology", " hardware", " powering"], [" __", " ___", " ____", " \n\n", " tech", " ______", " --", " ________"], [" __", " tech", " \n\n", " technology", " @", " \\\"", " ___", " --"], [" technology", " tech", " ,", " even", " technical", " complex", " hybrid", " \\\""], [" even", " technology", " ,", " fully", " hybrid", " focused", " tech", " \u2013"], [" tech", " technology", " \u2026", " hardware", " technologies", " technical", " engineering", " optimized"], [" tech", " \u2026", " technology", " hybrid", "\u2026*", "\u2011", " hardware", " engineering"], [" \u2026", "\u2026\u2026", " [\u2026]", "\u2026\"", " ...\"", "\u2026*", "\u2026", "\u2026\u201d"], [" \u2026", "\u2026\u2026", " optimized", " [\u2026]", "\u2026\"", "\u2011", "\u2026\u201d", "\u2026"], [" \u2026", " [\u2026]", " optimized", " ...\"", "<|im_end|>", "\u2026\u2026", "\u2026\u201d", "\u2026\""], [" optimized", " \u2026", " technical", " optimization", " optimizations", " [\u2026]", " engineering", " ...\""], [" optimized", " [\u2026]", " \u2026", " optimizations", " optimization", " engineering", " hardware", " technical"], [" optimized", " hardware", " engineering", " engine", " optimizations", " technical", " native", " algorithms"], [" engineering", " hardware", " optimized", " engine", " computational", " engineers", " tech", " technology"], [" engineering", " hardware", " optimized", " engine", " engineers", " computational", " technologies", " tech"], [" engineering", " engine", " hardware", " workflows", " technologies", " engineers", " tech", " optimized"], [" engineering", " engine", " hardware", " core", " workflows", " engineers", " technologies", " optimized"], [" engineering", " engine", " core", " hardware", " engineers", " optimized", " hybrid", " tech"], [" hybrid", " engineering", " engine", " hardware", " core", " optimized", " workflows", " retrofit"], [" workflows", " hardware", " interface", " internals", " engine", " hybrid", " engineering", " core"], [" **", " internals", " workflows", " **.", " hybrid", " **\u00ab", " interfaces", " workaround"], ["-language", "\u2014even", "-core", " internals", " workflows", "-heavy", "-**", "-coded"], ["-heavy", "-speed", "-hour", "-grade", "-minute", " milliseconds", "-fast", "-tier"], ["\u6bcf\u79d2", " framerate", " milliseconds", " microseconds", " throughput", "-speed", " CPU", "-hour"], [" milliseconds", " latency", " framerate", "-frame", "\u5e27", " microseconds", "\u6bcf\u79d2", "-hour"], [" milliseconds", "-frame", " framerate", " microseconds", " FPS", "-hour", " fps", " latency"], [" framerate", "-frame", " milliseconds", "\u5e27", "-cycle", " microseconds", " fps", "fps"], [" fps", "fps", " FPS", "-frame", "\u5e27", " framerate", " frames", "FPS"], ["-frame", " fps", "fps", " FPS", "\u5e27", " framerate", " frames", "FPS"], ["-frame", "fps", " fps", " FPS", "\u5e27", " frames", "FPS", " frame"], ["-frame", " frames", " frame", "\u5e27", "Frame", " Frame", "frames", "frame"], ["-frame", " frames", " frame", " Frame", "\u5e27", "Frame", " Frames", "frames"], ["-frame", " frame", " frames", " Frame", "\u5e27", "Frame", " ms", " FPS"], [" ms", "-frame", "ms", "0", " FPS", " frames", " fps", " frame"], ["0", "ms", " ms", "1", "2", "-ms", "-frame", "4"]], "p": [[0.7528, 0.1019, 0.0618, 0.0618, 0.0045, 0.0023, 0.0021, 0.0015], [0.0158, 0.0148, 0.0102, 0.0058, 0.0048, 0.0045, 0.0045, 0.004], [0.5429, 0.1373, 0.0943, 0.0886, 0.0609, 0.0136, 0.0113, 0.0034], [0.0144, 0.005, 0.005, 0.0044, 0.0039, 0.0039, 0.0028, 0.0027], [0.0093, 0.0072, 0.0068, 0.0068, 0.0053, 0.005, 0.0047, 0.0044], [0.0147, 0.0095, 0.0051, 0.0048, 0.0029, 0.0024, 0.0024, 0.0024], [0.0633, 0.0264, 0.015, 0.015, 0.0097, 0.0097, 0.0097, 0.0091], [0.054, 0.0507, 0.0477, 0.0175, 0.0113, 0.01, 0.0094, 0.0088], [0.0523, 0.0491, 0.0359, 0.0337, 0.0298, 0.0192, 0.0117, 0.0103], [0.0351, 0.02, 0.0166, 0.0129, 0.0094, 0.0083, 0.0069, 0.0065], [0.1672, 0.1387, 0.0697, 0.045, 0.0329, 0.0256, 0.0213, 0.0121], [0.0079, 0.0062, 0.0051, 0.0045, 0.0042, 0.0037, 0.0035, 0.0033], [0.0076, 0.0071, 0.0046, 0.0038, 0.002, 0.002, 0.0019, 0.0019], [0.0073, 0.005, 0.0044, 0.0021, 0.002, 0.0015, 0.0012, 0.001], [0.0046, 0.0036, 0.0036, 0.003, 0.0026, 0.0021, 0.0015, 0.0015], [0.0062, 0.0045, 0.0035, 0.0029, 0.0025, 0.0024, 0.0021, 0.0017], [0.0106, 0.0099, 0.0093, 0.0082, 0.0073, 0.006, 0.0056, 0.0053], [0.0111, 0.0086, 0.0038, 0.0038, 0.0034, 0.0032, 0.0028, 0.0028], [0.0058, 0.0035, 0.0029, 0.0024, 0.0021, 0.0021, 0.0021, 0.0016], [0.0053, 0.0039, 0.003, 0.0025, 0.0019, 0.0018, 0.0015, 0.0015], [0.1314, 0.0275, 0.0147, 0.0095, 0.0084, 0.0048, 0.004, 0.004], [0.008, 0.0031, 0.0017, 0.0016, 0.0013, 0.0012, 0.0012, 0.001], [0.0274, 0.0188, 0.0074, 0.0054, 0.0042, 0.0035, 0.0035, 0.0031], [0.0849, 0.0139, 0.013, 0.0115, 0.0084, 0.0048, 0.0042, 0.0035], [0.8305, 0.0499, 0.0322, 0.0134, 0.0081, 0.0036, 0.0026, 0.0022], [0.08, 0.0277, 0.0148, 0.0131, 0.0123, 0.0108, 0.009, 0.0079], [0.1148, 0.0696, 0.051, 0.0137, 0.0114, 0.0089, 0.0065, 0.0057], [0.2258, 0.1458, 0.0224, 0.0088, 0.0073, 0.0068, 0.0068, 0.0057], [0.1735, 0.1193, 0.0321, 0.0161, 0.0142, 0.0142, 0.0092, 0.0086], [0.7337, 0.0876, 0.0602, 0.0152, 0.0119, 0.0111, 0.006, 0.0044], [0.1134, 0.1001, 0.0646, 0.0503, 0.0112, 0.0099, 0.0093, 0.0093], [0.0401, 0.0215, 0.0148, 0.0115, 0.0095, 0.009, 0.0084, 0.0084], [0.0355, 0.0294, 0.0244, 0.0131, 0.0131, 0.0123, 0.0108, 0.0108], [0.2502, 0.098, 0.0524, 0.0299, 0.0248, 0.0233, 0.0125, 0.011], [0.1288, 0.1003, 0.0326, 0.0198, 0.0174, 0.0164, 0.0164, 0.0136], [0.6927, 0.1062, 0.0502, 0.0197, 0.0197, 0.0153, 0.0135, 0.0127], [0.4214, 0.0368, 0.0346, 0.0325, 0.0223, 0.0163, 0.0144, 0.0144], [0.2449, 0.04, 0.0376, 0.0275, 0.0258, 0.0228, 0.0201, 0.0189], [0.1744, 0.1276, 0.0323, 0.0285, 0.0208, 0.0184, 0.0184, 0.0152], [0.183, 0.0408, 0.0384, 0.0339, 0.0318, 0.0299, 0.0299, 0.0181], [0.116, 0.0584, 0.0584, 0.0354, 0.0332, 0.0276, 0.0215, 0.0189], [0.1531, 0.1351, 0.077, 0.06, 0.0321, 0.0266, 0.0207, 0.0207], [0.1323, 0.0968, 0.0665, 0.0587, 0.0314, 0.0277, 0.023, 0.0203], [0.0653, 0.0478, 0.0449, 0.0372, 0.0226, 0.0212, 0.0212, 0.0187], [0.1327, 0.0667, 0.0405, 0.0405, 0.038, 0.0357, 0.0231, 0.0204], [0.1059, 0.0683, 0.047, 0.0344, 0.0222, 0.0208, 0.0208, 0.0184], [0.0445, 0.0392, 0.0325, 0.0306, 0.0238, 0.0174, 0.0154, 0.0154], [0.0186, 0.0164, 0.0164, 0.0154, 0.0154, 0.0154, 0.0136, 0.0128], [0.0251, 0.0162, 0.0134, 0.0111, 0.0104, 0.0092, 0.0081, 0.0081], [0.0184, 0.0126, 0.0119, 0.0087, 0.0087, 0.0087, 0.0053, 0.0053], [0.0374, 0.0177, 0.0146, 0.0137, 0.0121, 0.0121, 0.0114, 0.0114], [0.0621, 0.0293, 0.0276, 0.0276, 0.0167, 0.0157, 0.0139, 0.0115], [0.1347, 0.0985, 0.0817, 0.0677, 0.0561, 0.0495, 0.0411, 0.022], [0.1614, 0.0716, 0.0594, 0.0434, 0.0383, 0.0338, 0.0281, 0.0281], [0.1389, 0.1305, 0.0843, 0.0792, 0.0656, 0.0544, 0.0511, 0.0274], [0.4225, 0.2261, 0.1761, 0.0572, 0.0393, 0.027, 0.0164, 0.0145], [0.3825, 0.2047, 0.1807, 0.1407, 0.0244, 0.0148, 0.0148, 0.0131], [0.5455, 0.2007, 0.0948, 0.0738, 0.0308, 0.0187, 0.0088, 0.0047], [0.7348, 0.1127, 0.0774, 0.0366, 0.0153, 0.0135, 0.003, 0.003], [0.6449, 0.163, 0.127, 0.0283, 0.0172, 0.0104, 0.0026, 0.0021], [0.7862, 0.0829, 0.0829, 0.0163, 0.0127, 0.0047, 0.0028, 0.0022], [0.287, 0.2533, 0.1973, 0.1536, 0.0267, 0.0195, 0.0152, 0.0046], [0.9651, 0.0257, 0.0078, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 490, "top": [[".", ",", "s", "?", "o", ";", "-", "!"], ["s", "\u2011", ".", "\uff20", "sville", ",", " \u2013", "_VARS"], [".", ",", "s", "\u2011", "?", "\u2026..", "\u2013", "\u2026"], [" milfs", " Blowjob", " Shemale", " cumshot", " pupper", "\uff0a\uff0a\uff0a\uff0a", "cuci", " St\u00e9ph"], ["s", " @", " *@", "auss", " @_", "\uff20", "sche", "sip"], ["s", "!\u201d.", "sip", " @", "sver", "auss", " Aussie", "phans"], ["s", "sip", "\u0629", "!\u201d.", "sie", "sche", "phans", "sms"], ["s", "sche", "sung", "scheid", "-eyed", "phans", "sce", "syl"], ["s", " @", "\u0092", ",", ".", "!", "!\u201d.", "\u201d."], ["s", ",", "ness", "sport", "-h", "-", "-R", "-c"], ["s", " @", ",", "-", ".", "!", "@", "o"], ["s", "sville", "scape", "-ish", "-esque", "lymp", " fans", "syl"], ["s", "-esque", "-ish", "scape", "ness", " fans", "ing", "lymp"], ["s", "-esque", "-ish", " fans", "-eyed", "-style", "scape", "-cent"], ["s", "-esque", "-st", "-ish", "-ton", " fans", " star", "-style"], ["s", "-esque", " buzz", " loung", " fans", "es", " pops", "-ish"], ["s", "-esque", "es", " buzz", "-ish", "siz", " stall", " fans"], ["s", "-esque", "siz", "-ish", " buzz", "\u0627\u062a", "snap", "-tech"], ["s", "-esque", "siz", "\u0627\u062a", "szeit", "sche", " buzz", "schn"], ["s", "-esque", "\u0627\u062a", "siz", "speed", "-worthy", "-ish", " buzz"], ["s", "<|endoftext|>", " though", "-esque", " ever", " @", " \n\n", " {{--<"], ["s", " ''", "szeit", "siz", "-esque", " loung", "\u0627\u062a", "&apos"], [" ''", "s", "-esque", " speed", "speed", "&apos", " loung", " speeds"], ["s", " ''", " speed", " even", " ever", "speed", " live", " speeds"], [" \r\n\r\n", "-esque", " framerate", "speed", " speed", "s", "-paced", "-speed"], [" framerate", " speeds", "-paced", " speed", " pace", "-speed", "-esque", "speed"], [" framerate", " speeds", " sprint", " speed", " pace", " uptime", " clock", "-paced"], [" speed", " pace", " framerate", " speeds", " sprint", " clock", "-speed", " uptime"], [" speed", " pace", " speeds", " sprint", " framerate", " uptime", " clock", " stamina"], [" pace", " sprint", " speeds", " framerate", " speed", " Instagram", " uptime", " overclock"], [" pace", " speed", " speeds", " sprint", " Instagram", " peak", " performance", " fans"], [" \u200b\u200b", " speed", " Instagram", " pace", " sprint", " time", " peak", " performance"], [" speed", " even", " fast", " -", " pace", " sprint", " .", " time"], [" sprint", " speed", " pace", " speeds", " fast", " faster", " peak", " tech"], [" sprint", " pace", " speed", "/fast", " overclock", " \ufffd", " tech", " fastest"], [" sprint", "\u2011", " speed", " pace", " fastest", " \ufffd", "/fast", " speeds"], [" speed", " sprint", " framerate", " speeds", " overclock", " fastest", " pace", " fast"], [" speed", " framerate", " speeds", " sprint", " overclock", " fastest", " pixel", " fps"], [" framerate", " speed", " speeds", " fastest", " overclock", " sprint", " fps", " pace"], [" framerate", " speed", " speeds", " fps", " fastest", " pace", " FPS", " overclock"], [" framerate", " speed", " speeds", " fps", "speed", " fastest", "-speed", "\u6bcf\u79d2"], [" framerate", " fps", " speeds", " FPS", "\u6bcf\u79d2", " speed", " overclock", " pace"], [" framerate", " speeds", " fps", "\u6bcf\u79d2", " FPS", " speed", " overclock", "-speed"], [" framerate", " speeds", " fps", "\u6bcf\u79d2", " speed", " FPS", "-speed", " pace"], [" framerate", " speeds", " speed", " fps", "\u6bcf\u79d2", " FPS", " pace", "-speed"], [" framerate", " speeds", " fps", " FPS", "\u6bcf\u79d2", " speed", " pace", "/fast"], [" framerate", " fps", "\u6bcf\u79d2", " speeds", " FPS", " pace", "/fast", "-speed"], [" framerate", "\u6bcf\u79d2", " fps", "/fast", " speeds", " FPS", " continuous", " throughput"], [" framerate", "\u6bcf\u79d2", "/fast", " fps", " FPS", " speeds", "-speed", " throughput"], [" framerate", "\u6bcf\u79d2", "/fast", "-speed", " FPS", " fps", " throughput", " speeds"], [" framerate", "\u6bcf\u79d2", "-speed", "/fast", " uptime", " throughput", " FPS", " speeds"], [" framerate", "/fast", " FPS", " throughput", " uptime", " fps", "\u6bcf\u79d2", "fps"], [" FPS", " framerate", " fps", "fps", " latency", "\u6bcf\u79d2", " throughput", " uptime"], [" FPS", " framerate", " fps", "fps", " throughput", " Hz", "-frequency", " latency"], [" framerate", " FPS", " fps", "fps", " latency", " cycles", " throughput", " Hz"], [" FPS", " fps", "fps", " framerate", "FPS", "\u5e27", "_fps", "-frame"], [" FPS", " fps", "fps", "FPS", " framerate", "-frame", "\u5e27", "_fps"], [" FPS", "fps", " fps", "FPS", "Hz", " framerate", "\u5e27", " Hz"], [" FPS", "\u5e27", "-frame", " frames", " fps", "fps", " frame", " Frame"], [" FPS", " frames", "-frame", " frame", "\u5e27", " fps", "fps", " Frame"], [" FPS", "-frame", " fps", " frames", " frame", "fps", "\u5e27", " Frame"], [" FPS", " Hz", " fps", "fps", "Hz", " frames", "-frame", "FPS"], [" FPS", " Hz", " fps", "fps", "Hz", "ms", "-frame", " frames"]], "p": [[0.9457, 0.0286, 0.0093, 0.0039, 0.0027, 0.0011, 0.0008, 0.0007], [0.0445, 0.0369, 0.0057, 0.0053, 0.0025, 0.0021, 0.0018, 0.0016], [0.6065, 0.1632, 0.0284, 0.0134, 0.0104, 0.0052, 0.0052, 0.0041], [0.0317, 0.0103, 0.0052, 0.0049, 0.0038, 0.0029, 0.0026, 0.0024], [0.7349, 0.0268, 0.005, 0.0034, 0.0032, 0.0027, 0.0022, 0.0021], [0.2178, 0.0115, 0.0102, 0.007, 0.0062, 0.0055, 0.0026, 0.0024], [0.9168, 0.0007, 0.0005, 0.0004, 0.0004, 0.0004, 0.0004, 0.0004], [0.698, 0.0083, 0.0044, 0.0039, 0.0022, 0.002, 0.002, 0.002], [0.9532, 0.0021, 0.0017, 0.0015, 0.0013, 0.0012, 0.0008, 0.0005], [0.9155, 0.0045, 0.0007, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003], [0.9782, 0.0038, 0.0012, 0.0011, 0.0008, 0.0007, 0.0006, 0.0002], [0.1935, 0.0052, 0.004, 0.0038, 0.0035, 0.0035, 0.0033, 0.0023], [0.2372, 0.0111, 0.0056, 0.0046, 0.0041, 0.0038, 0.0023, 0.0017], [0.1495, 0.0456, 0.0058, 0.0018, 0.0015, 0.0014, 0.0012, 0.0011], [0.566, 0.0194, 0.0012, 0.0012, 0.0009, 0.0009, 0.0009, 0.0008], [0.3746, 0.0145, 0.0021, 0.0015, 0.0015, 0.0013, 0.0012, 0.0012], [0.8128, 0.008, 0.0012, 0.0009, 0.0007, 0.0007, 0.0004, 0.0004], [0.4898, 0.0131, 0.004, 0.0027, 0.0024, 0.0012, 0.0011, 0.0009], [0.3319, 0.0129, 0.0073, 0.0029, 0.0025, 0.0024, 0.0024, 0.0016], [0.4742, 0.0068, 0.003, 0.0028, 0.0017, 0.0013, 0.0013, 0.0013], [0.4846, 0.0156, 0.0029, 0.002, 0.0019, 0.0017, 0.0014, 0.0014], [0.0116, 0.0033, 0.0033, 0.0031, 0.0028, 0.0023, 0.0016, 0.0016], [0.0296, 0.0132, 0.0033, 0.0033, 0.0023, 0.0021, 0.002, 0.002], [0.0186, 0.0057, 0.0053, 0.0028, 0.0025, 0.0025, 0.0022, 0.0017], [0.0103, 0.0055, 0.0052, 0.0052, 0.004, 0.004, 0.0029, 0.0028], [0.0189, 0.0074, 0.0051, 0.0051, 0.004, 0.0037, 0.0035, 0.0033], [0.0192, 0.0132, 0.0075, 0.0075, 0.007, 0.0062, 0.0055, 0.0055], [0.028, 0.0205, 0.0193, 0.015, 0.0097, 0.008, 0.0052, 0.0049], [0.0365, 0.0284, 0.0267, 0.0183, 0.0118, 0.0081, 0.0072, 0.0049], [0.0231, 0.018, 0.0159, 0.014, 0.014, 0.0116, 0.009, 0.0075], [0.0267, 0.025, 0.0195, 0.0172, 0.0126, 0.0111, 0.0098, 0.0081], [0.0456, 0.0215, 0.0115, 0.0095, 0.0095, 0.0084, 0.0074, 0.0066], [0.0437, 0.032, 0.0171, 0.0161, 0.0151, 0.0098, 0.0092, 0.0086], [0.0526, 0.0319, 0.0264, 0.0125, 0.0091, 0.0081, 0.0076, 0.0071], [0.0672, 0.0247, 0.0181, 0.016, 0.015, 0.0141, 0.0124, 0.011], [0.0506, 0.0506, 0.0419, 0.0271, 0.0239, 0.0211, 0.0186, 0.0164], [0.1632, 0.06, 0.0564, 0.0564, 0.0364, 0.0342, 0.0266, 0.0207], [0.1244, 0.091, 0.0588, 0.0458, 0.0404, 0.0245, 0.0168, 0.0158], [0.1368, 0.094, 0.0607, 0.0346, 0.0269, 0.0269, 0.021, 0.0153], [0.3339, 0.1154, 0.0793, 0.0452, 0.0292, 0.0188, 0.0147, 0.0138], [0.4191, 0.198, 0.1542, 0.039, 0.0173, 0.0163, 0.0163, 0.0153], [0.6589, 0.0787, 0.0421, 0.0308, 0.029, 0.024, 0.0078, 0.0044], [0.5692, 0.068, 0.06, 0.0412, 0.0302, 0.0302, 0.0142, 0.0081], [0.3823, 0.1095, 0.0664, 0.0551, 0.0457, 0.0429, 0.0168, 0.0158], [0.2334, 0.1604, 0.0758, 0.0758, 0.0432, 0.0381, 0.0262, 0.0231], [0.1816, 0.1101, 0.0668, 0.0627, 0.0627, 0.0431, 0.0217, 0.0191], [0.2334, 0.1036, 0.0807, 0.0628, 0.0554, 0.0204, 0.018, 0.0159], [0.1573, 0.0896, 0.0656, 0.0511, 0.0398, 0.033, 0.0213, 0.0177], [0.1845, 0.135, 0.0819, 0.0563, 0.0321, 0.0321, 0.0235, 0.0207], [0.1726, 0.1114, 0.0635, 0.056, 0.041, 0.0385, 0.0219, 0.0194], [0.2064, 0.0591, 0.0522, 0.0522, 0.0433, 0.0337, 0.0218, 0.0116], [0.1163, 0.1092, 0.1026, 0.0906, 0.0485, 0.0355, 0.019, 0.0157], [0.3912, 0.2373, 0.0497, 0.0283, 0.0221, 0.0207, 0.0207, 0.0143], [0.3585, 0.2792, 0.0906, 0.0378, 0.019, 0.0148, 0.0148, 0.0148], [0.377, 0.2591, 0.1387, 0.051, 0.0121, 0.0114, 0.0107, 0.01], [0.5339, 0.2858, 0.153, 0.0161, 0.0076, 0.0012, 0.001, 0.0003], [0.6698, 0.1919, 0.1164, 0.0108, 0.0074, 0.0011, 0.0009, 0.0005], [0.5909, 0.2174, 0.1693, 0.0096, 0.0035, 0.0031, 0.0019, 0.0015], [0.4112, 0.1335, 0.1178, 0.104, 0.0917, 0.0714, 0.0491, 0.0059], [0.3137, 0.2156, 0.1679, 0.1154, 0.1018, 0.0258, 0.0177, 0.0177], [0.8388, 0.0418, 0.0325, 0.0325, 0.0174, 0.012, 0.012, 0.003], [0.8431, 0.0784, 0.0476, 0.0175, 0.0064, 0.0015, 0.0009, 0.0008], [0.6786, 0.1612, 0.0492, 0.0408, 0.0317, 0.0085, 0.0031, 0.003]], "ranks": {}}, {"pos": 491, "top": [[" \u2013", "\u0629", "@@@@", " @", "@\"", " [@", " \uff5c", " *@"], [" \u2013**", "\uff5e\uff5e", "\uff20", " \uff5e", " \r\n \r\n", " \ufffd", "@@@@", " [@"], [" \u2013**", "**\u2013", " \uff5c", " \u2013,", " \r\n \r\n", " *\u2013", " \u2013", ".\u2013"], ["\uff0d\uff0d", "\uff0a\uff0a\uff0a\uff0a", "\\xa", "\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a", "\uff5e\uff5e", "\uff3f\uff3f", "\uff63"], ["\uff20", "\\xa", " *@", " ****", " \uffe5", " @_", " @(", " [@"], [" ****", "\\xa", " \uffe5", " \uff5c", "\uff20", "\uff5e\uff5e", " \uff5e", " {{$"], ["\\xa", " \uff5c", " ****", " {{$", " \uffe5", " [@", "\uff20", "\uff5e\uff5e"], ["\uff20", " [@", "\\xa", " ****", " \uff5c", " \uffe5", " *@", " @"], [" [@", "\\xa", "\uff20", " \uff5c", " \ufffd", " \uffe5", " \r\n \r\n", " *@"], ["\\xa", " [@", " [[", " {{$", "\uff20", " @$", " #@", " \".$"], ["\\xa", " [@", " [[", " @", " ****", " #@", " \uff5c", ".@"], ["\\xa", " {{$", " ****", " [[", "\\xf", " FPS", "\uff5e\u300d", " \u0442\u0440\u0451"], ["\\xa", " FPS", "\uff5e\u300d", " ****", "\u2011", " {{$", "\\xf", " [["], [" whilst", "\u2011", "\\xa", " \u0442\u0440\u0451", " FPS", " {{$", " St\u00e9ph", "\u0436\u0434\u0451"], [" whilst", " amongst", " alongside", "\u2011", " showcasing", " arguably", " \ufffd", " \ufffd"], [" whilst", " amongst", " showcasing", " incredibly", " via", "\\xa", " arguably", " FPS"], [" whilst", " via", " incredibly", " alongside", " in", " across", " showcasing", " amongst"], [" alongside", " FPS", " contenders", " via", " across", " showcasing", "\\xa", " incredibly"], [" alongside", " across", " throughout", " via", " incredibly", " even", " FPS", " arguably"], [" across", " alongside", " even", " throughout", " at", " ever", " on", " ,"], ["<|endoftext|>", " across", " ,", " alongside", " @", " though", " even", " as"], [" alongside", " even", " across", " throughout", " despite", " ''", " through", " ever"], [" even", " across", " ,", " alongside", " throughout", " ''", " at", " in"], [" ,", " even", " across", " .", " in", " on", " at", " throughout"], [" ,", " across", " whilst", " alongside", " even", " --", " throughout", " though"], [" .**", " across", " even", " ,", " .", " alongside", " --", " despite"], [" .**", " ,", " even", " across", " atop", " despite", " .", " --"], [" ,", " even", " across", " .", " whilst", " despite", " --", " alongside"], [" .", " ,", " even", " across", " despite", " on", " at", " during"], [" .", " ,", " even", " at", " across", " on", " during", " in"], [" .", " ,", " in", " even", " on", " at", " during", " for"], [" .", " ,", " in", " on", " even", " at", " during", " for"], [" .", " even", " on", " despite", " at", " ,", " in", " only"], [" even", " .", " despite", " only", " fully", " at", " across", " over"], [" even", " despite", " .", " without", " fully", " heavily", " unless", " .**"], [" despite", " .", " even", " without", " .\"", " .**", " unless", " across"], [" despite", " even", " without", " unless", " .", " .**", " hardware", " .\""], [" even", " despite", " without", " .", " .**", " unless", " .\"", " hardware"], [" even", " despite", " without", " unless", " across", " .", " .**", " performance"], [" even", " without", " despite", " .", " across", " hardware", " unless", " performance"], [" even", " without", " performance", " despite", " hardware", " .", " sustained", " due"], [" performance", " even", " hardware", " without", " .", " despite", " consistently", " due"], [" performance", " even", " hardware", " .", " without", " consistently", " sustained", " due"], [" even", " performance", " despite", " due", " without", " sustained", " heavily", " complex"], [" even", " due", " without", " performance", " unless", " complex", " .", " sustained"], [" even", " without", " unless", " due", " complex", " sustained", " performance", " consistently"], [" even", " unless", " without", " due", " consistently", " reliably", " anywhere", " complex"], [" unless", " without", " even", " reliably", " anywhere", " consistently", ".**", " WITHOUT"], [" unless", ".", " without", "\u5c24\u5176\u662f\u5728", " WITHOUT", ".**", " reliably", " sustained"], [" unless", ".", ".**", " sustained", "-heavy", " reliably", "+.", "\u5c24\u5176\u662f\u5728"], [" unless", "\u5c24\u5176\u662f\u5728", " reliably", "+.", "-heavy", "\u9664\u975e", " sustained", "++."], [" unless", "\u5c24\u5176\u662f\u5728", "-heavy", " alongside", " complex", "+.", "-intensive", " reliably"], [" unless", " alongside", " reliably", "-intensive", " sustained", "-heavy", " consistently", " latency"], [" unless", " alongside", "\u5c24\u5176\u662f\u5728", "-heavy", "-intensive", " gameplay", " framerate", " simultaneous"], [" unless", " complex", " alongside", "\u590d\u6742", "complex", " gameplay", "\u590d\u6742\u7684", " framerate"], [" gameplay", " unless", " complex", "-render", "\u590d\u6742", " rendering", " alongside", " latency"], [" rendering", "-render", "\u6e32\u67d3", " unless", "Rendering", " GPU", " gameplay", " Rendering"], [" rendering", "-render", "\u6e32\u67d3", " sustained", " GPU", " raster", " renders", " render"], [" rendering", "-render", " frame", "\u5e27", "\u6e32\u67d3", " frames", " sustained", " framerate"], [" rendering", "-render", " frame", " render", "\u6e32\u67d3", " shader", " frames", " unless"], [" frame", " frames", " rendering", "\u5e27", " sustained", " Frame", " raster", " under"], [" frame", " rendering", " frames", " under", " sustained", " sustain", " unless", " without"], [" under", " rendering", " frames", " sustained", " frame", " sustain", " without", " unless"]], "p": [[0.715, 0.0854, 0.0203, 0.0096, 0.0079, 0.0062, 0.0045, 0.0043], [0.1528, 0.0637, 0.0562, 0.0562, 0.0528, 0.0301, 0.0249, 0.0249], [0.2568, 0.2266, 0.0736, 0.0649, 0.0573, 0.0573, 0.037, 0.0271], [0.0835, 0.0835, 0.0737, 0.0611, 0.0394, 0.0371, 0.0255, 0.0186], [0.251, 0.0923, 0.0765, 0.056, 0.0385, 0.0385, 0.0362, 0.0233], [0.1184, 0.0866, 0.0814, 0.0718, 0.0525, 0.0409, 0.0193, 0.0193], [0.2742, 0.1379, 0.0693, 0.0395, 0.0349, 0.0289, 0.0199, 0.0175], [0.1035, 0.1035, 0.0973, 0.0521, 0.0489, 0.0489, 0.0405, 0.0381], [0.322, 0.0675, 0.0596, 0.0464, 0.0385, 0.0281, 0.0248, 0.0206], [0.4477, 0.1283, 0.0345, 0.0305, 0.0105, 0.0072, 0.0072, 0.0068], [0.4023, 0.244, 0.0398, 0.033, 0.0129, 0.0101, 0.0101, 0.0095], [0.2329, 0.0667, 0.052, 0.0169, 0.0116, 0.0102, 0.009, 0.007], [0.0624, 0.0457, 0.0179, 0.0179, 0.0158, 0.0102, 0.0066, 0.0055], [0.029, 0.0187, 0.0114, 0.01, 0.0083, 0.0057, 0.005, 0.0047], [0.0687, 0.0174, 0.0072, 0.005, 0.0044, 0.0044, 0.0036, 0.0032], [0.019, 0.0084, 0.0048, 0.004, 0.0035, 0.0035, 0.0033, 0.0033], [0.0123, 0.0108, 0.0084, 0.007, 0.0066, 0.0062, 0.0058, 0.0054], [0.0112, 0.0082, 0.0064, 0.0064, 0.006, 0.0056, 0.0056, 0.0053], [0.0137, 0.0113, 0.0065, 0.0065, 0.0061, 0.005, 0.0047, 0.0039], [0.033, 0.031, 0.02, 0.0138, 0.0114, 0.0101, 0.0101, 0.0095], [0.038, 0.0245, 0.0245, 0.0245, 0.018, 0.018, 0.0149, 0.014], [0.025, 0.0221, 0.0221, 0.0152, 0.0063, 0.0063, 0.0049, 0.0049], [0.0426, 0.0332, 0.0312, 0.0243, 0.0178, 0.0157, 0.013, 0.013], [0.0797, 0.0426, 0.0312, 0.0275, 0.0243, 0.0243, 0.0243, 0.0167], [0.0447, 0.0419, 0.0307, 0.0307, 0.0271, 0.0225, 0.0198, 0.0186], [0.0927, 0.0301, 0.0301, 0.0207, 0.0194, 0.0171, 0.0171, 0.0151], [0.0436, 0.034, 0.03, 0.0282, 0.0219, 0.0194, 0.0194, 0.0182], [0.0922, 0.0494, 0.0319, 0.0299, 0.0219, 0.0206, 0.0193, 0.016], [0.1057, 0.0682, 0.0641, 0.0303, 0.0251, 0.0196, 0.0196, 0.0152], [0.2408, 0.0648, 0.0609, 0.027, 0.027, 0.0254, 0.0224, 0.0198], [0.6209, 0.0543, 0.0256, 0.0241, 0.0241, 0.0212, 0.0146, 0.0121], [0.6204, 0.035, 0.0309, 0.0273, 0.0273, 0.0226, 0.0165, 0.0129], [0.3965, 0.0733, 0.0369, 0.0325, 0.0325, 0.0306, 0.0238, 0.0185], [0.1361, 0.0643, 0.0415, 0.0237, 0.0173, 0.0153, 0.0119, 0.0105], [0.0673, 0.0673, 0.0299, 0.0248, 0.017, 0.0141, 0.0117, 0.011], [0.0928, 0.0872, 0.0769, 0.0363, 0.0183, 0.0151, 0.0126, 0.0111], [0.1407, 0.0967, 0.0334, 0.0277, 0.026, 0.0158, 0.0139, 0.0116], [0.1195, 0.0821, 0.053, 0.0342, 0.0302, 0.0302, 0.0221, 0.0134], [0.095, 0.0788, 0.0653, 0.0256, 0.0187, 0.0146, 0.0121, 0.0121], [0.0789, 0.0397, 0.0329, 0.0226, 0.0176, 0.0165, 0.0155, 0.0146], [0.0856, 0.0552, 0.0458, 0.0261, 0.0245, 0.0216, 0.0123, 0.0116], [0.0831, 0.0781, 0.027, 0.021, 0.0185, 0.0185, 0.0144, 0.0136], [0.0877, 0.0774, 0.0196, 0.0196, 0.0184, 0.0173, 0.0135, 0.0135], [0.1358, 0.0499, 0.0322, 0.0251, 0.0222, 0.0152, 0.0152, 0.0134], [0.0743, 0.0398, 0.0351, 0.0257, 0.0241, 0.0241, 0.0227, 0.0213], [0.1031, 0.0588, 0.0458, 0.0296, 0.0203, 0.0191, 0.0149, 0.014], [0.1104, 0.0759, 0.0381, 0.0337, 0.0297, 0.0279, 0.0262, 0.0169], [0.2977, 0.2319, 0.0356, 0.0277, 0.0244, 0.0216, 0.019, 0.0139], [0.6082, 0.0726, 0.0566, 0.0184, 0.0152, 0.0119, 0.0081, 0.0056], [0.7464, 0.0199, 0.0146, 0.0113, 0.0078, 0.0078, 0.0073, 0.0069], [0.3446, 0.1051, 0.0301, 0.0283, 0.022, 0.0207, 0.0134, 0.0104], [0.2855, 0.0466, 0.0341, 0.032, 0.0161, 0.0151, 0.0142, 0.0142], [0.3575, 0.14, 0.0229, 0.0148, 0.013, 0.0122, 0.0108, 0.009], [0.2807, 0.1502, 0.0335, 0.023, 0.0191, 0.0109, 0.0096, 0.0085], [0.088, 0.088, 0.0827, 0.0605, 0.0443, 0.0324, 0.0237, 0.0185], [0.0448, 0.0421, 0.0395, 0.0371, 0.0308, 0.0289, 0.0272, 0.0272], [0.2029, 0.179, 0.0482, 0.0292, 0.0275, 0.0275, 0.0214, 0.0189], [0.3097, 0.1463, 0.0887, 0.0326, 0.0239, 0.0224, 0.0198, 0.0186], [0.2479, 0.1171, 0.0805, 0.071, 0.0488, 0.0296, 0.0245, 0.0203], [0.293, 0.0839, 0.0741, 0.035, 0.0329, 0.0256, 0.024, 0.0226], [0.3728, 0.2261, 0.0504, 0.0306, 0.0287, 0.0198, 0.0154, 0.0145], [0.169, 0.1401, 0.075, 0.0704, 0.0549, 0.0294, 0.0259, 0.0243], [0.1737, 0.1631, 0.1271, 0.0873, 0.0873, 0.0467, 0.0284, 0.0266]], "ranks": {}}, {"pos": 492, "top": [[".", ",", "\u2013", ";", " \u2013", "\u00a0", "\u2026.", "\u00a0\u00a0"], ["\u2013", ",", ".", " \u2013", ";", "\u2013and", " \u200b\u200b", ".["], [",", ".", "\u2013", ";", "\u2026.", "\u2026", "\u2026..", " \u2013"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</", " milfs", "aruhi", " Hidal", " \u041a\u0440\u0430\u0441\u0438", " linni", "----------</"], ["zer", "pop", "iously", "arity", "\u0902\u092c\u0930", " \u0628\u0648\u062a\u064a\u0646", "mir", "_PCIE"], ["iously", " \u0628\u0648\u062a\u064a\u0646", "odka", "IFn", "\u8d75\u4e3d\u9896", "fst", "odd", ":href"], ["ning", "ness", "ners", ".\u2019", "\u2019t", "set", "sson", "iously"], ["ners", "ning", "ness", "sson", "iveness", "ighbour", "ager", "iously"], [".", ",", "!.", ",.", "ners", "ning", "\u00a0", ".\""], [",", "\u2013", "ning", "\u00a0", "!,", "-but", "though", "!."], [",", "\u00a0", "ning", "\u2013", "-", "\u2014", ".", "though"], ["ning", "ish", "ature", "ian", "\u611f\u5341\u8db3", "nings", "ably", "ance"], ["ning", "\u611f\u5341\u8db3", "ature", "ish", "-ish", "-esque", "tures", "iveness"], ["-esque", "ning", "-ish", "\u611f\u5341\u8db3", "ature", "tures", "ish", "atively"], [" arguably", "ably", "wo", "ning", "fully", "back", "going", "via"], [" arguably", " folks", " tough", " even", " comfortably", " largely", " sprawling", "ish"], ["\u2013", ",", "o", " \u2013", " arguably", "out", " tough", "ably"], ["\u2013", " \u2013", "ably", "-down", " arguably", "-ish", " comfortably", "-out"], ["\u2014even", " arguably", "\u2013", "-esque", " comfortably", " even", " \u2013", " largely"], ["\u2013", " arguably", " even", " largely", "\u2014even", " \u2013", " much", "\u2014"], ["<|endoftext|>", "\u2013", "\u2014", " even", " largely", " \u2013", " much", " though"], ["\u611f\u5341\u8db3", "\u76f8\u5173\u884c\u4e1a", " even", " arguably", "\u751a\u81f3\u4f1a", " comfortably", "\u54ea\u6015\u662f", "\u53cd\u5012\u662f"], [" even", " arguably", " much", " largely", " comfortably", " ''", "\u611f\u5341\u8db3", " fully"], [" even", " largely", " much", " arguably", " --", " notably", " fully", " ,"], [" {{--<", " --", " arguably", " notably", " though", " largely", " heavily", " \r\n"], [" {{--<", "\u54ea\u6015\u662f", "\u611f\u5341\u8db3", " arguably", "\u76f8\u5173\u884c\u4e1a", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u751a\u81f3\u4e8e", " --"], [" {{--<", " arguably", " heavily", " sprawling", "\u611f\u5341\u8db3", " --", " notably", "\u76f8\u5173\u884c\u4e1a"], [" arguably", " heavily", " even", " sprawling", " massively", " notably", " largely", " --"], [" heavily", " sprawling", " arguably", " complex", " massively", "\u611f\u5341\u8db3", "\u54ea\u6015\u662f", " even"], [" complex", " heavily", " sprawling", " arguably", " environments", " even", " heavy", " massively"], [" .", " complex", " heavily", " even", " over", " heavy", " arguably", " large"], [" .", " even", " complex", " over", " heavily", " ,", " long", " large"], [" even", " complex", " .", " heavily", " over", " arguably", " fully", " critical"], [" complex", " arguably", " heavily", " massively", " critical", " potentially", " environments", " massive"], [" complex", " arguably", " heavily", "complex", " massively", " potentially", " robust", " sprawling"], [" complex", "complex", " arguably", " hardware", "\u590d\u6742", "-heavy", " heavily", " complexity"], [" complex", "complex", " hardware", " arguably", " complexity", " heavily", " tech", "-heavy"], [" complex", "complex", " workflows", " hardware", " scenarios", " heavily", " optimized", " complexity"], [" complex", "complex", " complexity", "\u590d\u6742", "\u590d\u6742\u7684", " scenarios", " workflows", " environments"], [" complex", "complex", " scenarios", " complexity", "\u590d\u6742", " environments", "\u590d\u6742\u7684", " immersive"], [" complex", "complex", " complexity", " scenarios", " environments", " workflows", " immersive", "\u590d\u6742"], [" complex", "complex", " scenarios", " environments", " complexity", " workflows", " optimized", " scenes"], [" complex", "complex", " scenarios", " environments", " complexity", " workflows", "-intensive", " scenes"], [" complex", "complex", " scenarios", " complexity", " environments", " workflows", " dense", "-intensive"], [" complex", "complex", " dense", " scenarios", " environments", " complexity", " workflows", " densely"], [" complex", "complex", " dense", " scenarios", " densely", "-heavy", " complexity", " environments"], [" complex", "complex", "-heavy", " scenarios", " dense", " workflows", " complexity", "-intensive"], [" complex", "complex", "-heavy", " scenarios", "-intensive", " dense", " densely", " immersive"], ["-heavy", "-intensive", "complex", " complex", " immersive", " scenarios", "\u590d\u6742", " dense"], ["-heavy", "-intensive", " complex", "complex", "\u590d\u6742\u7684", "\u590d\u6742", " \ub300\uaddc\ubaa8", " dense"], ["-heavy", "-intensive", "\u590d\u6742", "complex", "\u590d\u6742\u7684", " complex", " \ub300\uaddc\ubaa8", " \ubcf5\uc7a1\ud55c"], ["\u590d\u6742", "complex", "\u590d\u6742\u7684", " complex", "Complex", "-intensive", "-heavy", "\u8907\u96dc"], ["\u590d\u6742", "complex", " complex", "\u590d\u6742\u7684", "Complex", "\u8907\u96dc", "-intensive", " complexity"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", " Complex", "-intensive", "-heavy"], ["\u590d\u6742", " complex", "complex", "\u590d\u6742\u7684", "Complex", " Complex", "\u8907\u96dc", "_complex"], ["\u590d\u6742", " complex", "complex", "\u590d\u6742\u7684", "Complex", "_complex", " Complex", "\u8907\u96dc"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", " Complex", "_complex", "\u8907\u96dc"], [" complex", "\u590d\u6742", "complex", "Complex", "\u590d\u6742\u7684", " Complex", "_complex", "\u8907\u96dc"], [" complex", "\u590d\u6742", "complex", "Complex", " Complex", "\u590d\u6742\u7684", "_complex", " GPU"], [" complex", "complex", "Complex", "\u590d\u6742", " Complex", "_complex", " GPU", "\u590d\u6742\u7684"], [" complex", "complex", "\u590d\u6742", "Complex", " Complex", " GPU", "_complex", " CPU"], [" complex", " GPU", " CPU", " a", " compute", "complex", " scenes", " Complex"], [" complex", " a", " GPU", " CPU", " compute", " Complex", " graphics", " scenes"]], "p": [[0.4907, 0.4907, 0.009, 0.0033, 0.0023, 0.0012, 0.0008, 0.0004], [0.3613, 0.1934, 0.059, 0.0381, 0.0132, 0.0085, 0.0026, 0.002], [0.6459, 0.2376, 0.0991, 0.0038, 0.0038, 0.0028, 0.0017, 0.001], [0.0072, 0.0034, 0.0032, 0.0032, 0.0025, 0.0022, 0.0021, 0.0021], [0.0025, 0.0022, 0.0018, 0.0018, 0.0013, 0.0013, 0.0013, 0.0011], [0.0024, 0.002, 0.0012, 0.0012, 0.0012, 0.0012, 0.0011, 0.0011], [0.0615, 0.0129, 0.0121, 0.0074, 0.0069, 0.0069, 0.0057, 0.0054], [0.0633, 0.0339, 0.0193, 0.0063, 0.0059, 0.0059, 0.0055, 0.0055], [0.1067, 0.0831, 0.0689, 0.0154, 0.0099, 0.0099, 0.0088, 0.006], [0.2013, 0.0129, 0.0073, 0.0044, 0.0029, 0.0019, 0.0019, 0.0017], [0.0954, 0.0896, 0.033, 0.0188, 0.0101, 0.0083, 0.0078, 0.0065], [0.086, 0.0116, 0.0085, 0.0066, 0.0066, 0.0049, 0.0043, 0.0043], [0.0361, 0.0086, 0.0076, 0.0067, 0.0049, 0.0046, 0.0046, 0.0046], [0.0077, 0.005, 0.0041, 0.0039, 0.0019, 0.0018, 0.0017, 0.0016], [0.0053, 0.0036, 0.0036, 0.0032, 0.003, 0.0026, 0.0023, 0.0022], [0.0077, 0.006, 0.0041, 0.0041, 0.0034, 0.003, 0.0028, 0.0027], [0.0189, 0.0074, 0.007, 0.0065, 0.0048, 0.0035, 0.0033, 0.0033], [0.0184, 0.0046, 0.0032, 0.003, 0.0028, 0.0026, 0.0025, 0.0023], [0.006, 0.0047, 0.0044, 0.0034, 0.0034, 0.003, 0.0028, 0.0025], [0.0094, 0.0061, 0.0061, 0.0057, 0.0057, 0.0047, 0.0035, 0.0033], [0.6772, 0.0036, 0.0028, 0.0023, 0.0019, 0.0019, 0.0019, 0.0015], [0.003, 0.0025, 0.0024, 0.0022, 0.002, 0.0015, 0.0015, 0.0013], [0.0086, 0.0049, 0.0032, 0.003, 0.0028, 0.0023, 0.0023, 0.0022], [0.0099, 0.0057, 0.0053, 0.0041, 0.0041, 0.0037, 0.0037, 0.0037], [0.0057, 0.0053, 0.0053, 0.003, 0.0027, 0.0022, 0.002, 0.0018], [0.0045, 0.0035, 0.0027, 0.0024, 0.0022, 0.0015, 0.0014, 0.0011], [0.0048, 0.0035, 0.0022, 0.002, 0.0018, 0.0016, 0.0015, 0.0015], [0.0112, 0.0093, 0.0044, 0.0039, 0.0036, 0.0032, 0.003, 0.003], [0.0055, 0.0051, 0.0045, 0.0033, 0.0031, 0.0026, 0.0018, 0.0017], [0.0181, 0.0124, 0.0067, 0.0059, 0.0049, 0.0036, 0.0034, 0.003], [0.0731, 0.0503, 0.0286, 0.0286, 0.0197, 0.0105, 0.0087, 0.0077], [0.0841, 0.0423, 0.0397, 0.0241, 0.0188, 0.0137, 0.0129, 0.0114], [0.0448, 0.0371, 0.0289, 0.0212, 0.0199, 0.0128, 0.0106, 0.0106], [0.1412, 0.0315, 0.0261, 0.0158, 0.014, 0.0085, 0.0066, 0.0062], [0.1355, 0.0725, 0.0251, 0.0251, 0.0111, 0.0104, 0.0087, 0.0081], [0.2916, 0.1142, 0.0307, 0.0145, 0.0145, 0.0136, 0.012, 0.0094], [0.2346, 0.0919, 0.0523, 0.016, 0.016, 0.015, 0.0103, 0.0091], [0.1941, 0.0522, 0.0337, 0.0298, 0.0232, 0.0159, 0.0124, 0.0124], [0.7012, 0.1075, 0.0199, 0.0165, 0.0094, 0.0073, 0.0054, 0.0047], [0.6885, 0.1056, 0.0134, 0.0126, 0.0105, 0.0081, 0.006, 0.0056], [0.6741, 0.0553, 0.0191, 0.0169, 0.0149, 0.0123, 0.007, 0.0055], [0.6278, 0.0354, 0.0243, 0.0229, 0.013, 0.013, 0.009, 0.0074], [0.6438, 0.0301, 0.0283, 0.022, 0.0134, 0.0118, 0.0063, 0.0063], [0.6368, 0.0461, 0.0247, 0.017, 0.0141, 0.0132, 0.0132, 0.0103], [0.6106, 0.0286, 0.0237, 0.0196, 0.0127, 0.0119, 0.0099, 0.0087], [0.6811, 0.0248, 0.0219, 0.0125, 0.0097, 0.0091, 0.0081, 0.0076], [0.4338, 0.0754, 0.0518, 0.0429, 0.0295, 0.0216, 0.0168, 0.0131], [0.3262, 0.0728, 0.0603, 0.0303, 0.0268, 0.0222, 0.0143, 0.0143], [0.0813, 0.0718, 0.0409, 0.0384, 0.015, 0.0141, 0.0125, 0.011], [0.2084, 0.0985, 0.0282, 0.0265, 0.0097, 0.0092, 0.0081, 0.0081], [0.0955, 0.0698, 0.0351, 0.031, 0.0291, 0.0166, 0.0156, 0.0114], [0.1887, 0.1887, 0.1297, 0.101, 0.0541, 0.0396, 0.0289, 0.0155], [0.2735, 0.188, 0.1659, 0.1006, 0.0784, 0.0154, 0.0154, 0.0136], [0.3023, 0.2354, 0.1618, 0.0981, 0.0764, 0.0133, 0.0117, 0.0103], [0.4324, 0.3816, 0.0851, 0.0585, 0.0276, 0.0037, 0.0033, 0.0029], [0.4023, 0.4023, 0.0792, 0.0617, 0.0291, 0.0065, 0.0057, 0.0035], [0.4273, 0.3328, 0.0953, 0.0578, 0.045, 0.01, 0.0078, 0.0047], [0.6281, 0.2039, 0.085, 0.0455, 0.0167, 0.009, 0.0054, 0.0016], [0.7182, 0.1101, 0.0757, 0.0459, 0.0149, 0.0116, 0.0116, 0.0033], [0.9021, 0.0272, 0.0212, 0.0187, 0.0114, 0.0047, 0.0047, 0.0033], [0.9566, 0.012, 0.0073, 0.0057, 0.0044, 0.0039, 0.0024, 0.0018], [0.8123, 0.0357, 0.0335, 0.0062, 0.0058, 0.0048, 0.0045, 0.004], [0.4845, 0.4845, 0.0054, 0.0031, 0.0024, 0.0011, 0.0008, 0.0007]], "ranks": {}}, {"pos": 493, "top": [[".", ",", "\u2013", ";", " \u2013", "\u2026.", ",.", "\u00a0\u00a0"], ["\u2013", ".", ",", " \u2013", ";", "\u2013and", " \u200b\u200b", ":."], [".", "\u2013", ",", "\u2026.", "\u2026", "\u2026..", " \u2013", ";"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " milfs", " Blowjob", "aruhi", " pornstar", "sprozess", " \u041a\u0440\u0430\u0441\u0438"], [".@", "\u7fe1", "@d", ".", ":.", "\u2026.", "@a", "@c"], ["\u2026.", "\u2026..", "\u7fe1", "sver", "!.", " \u200b\u200b", ".ac", "."], ["s", ".\"", " .....", ".....", "\u2026.", ".\u201d", "\u2026..", ":."], ["sburg", "!.", " \u062c\u062f\u064b\u0627", "sver", "sprozess", ":.", "sdale", "onderen"], [".", ",", ",.", "!.", "...", "!", "\u2026.", ":."], [",", ".", "\u2013", ",.", "\u2026.", "\u2026", "!,", ";"], ["...", ".", ",", "2", "1", "\u2026", ".\"", "s"], ["-ish", "s", " sorta", " unpredict", " somewhat", " potentially", " funky", "\u611f\u5341\u8db3"], ["-ish", "s", " hardcore", " savvy", "...", "-esque", " funky", " showcase"], ["-esque", "-ish", " savvy", " hardcore", " showcase", " sorta", " funky", " bigger"], [" savvy", " sorta", " folks", " hefty", " potentially", " showcase", " multi", "s"], [" savvy", " sprawling", " folks", " potentially", " pricey", " sorta", " hefty", " wildly"], ["s", " savvy", " folks", " hefty", " potentially", " plenty", "-esque", " myriad"], [" savvy", " hefty", "-esque", " revamped", " bigger", " big", " pricey", " sprawling"], ["s", " savvy", " hefty", "-esque", " sorta", " sprawling", " hugely", " revamped"], [" hugely", "s", " myriad", " genuinely", " largely", " much", " hefty", " though"], ["<|endoftext|>", " much", " hugely", " largely", " genuinely", " though", " w", " myriad"], ["\u76f8\u5173\u884c\u4e1a", "\u5c0f\u5eb7\u793e\u4f1a", "\u5171\u540c\u6253\u9020", "\u8e0f\u8e0f\u5b9e\u5b9e", " comfortably", " sprawling", "\u548c\u4fe1\u606f\u5316", "\u6e38\u5203\u6709\u4f59"], [" sprawling", " fully", " hugely", " comfortably", " much", " massively", " largely", " truly"], [" fully", " much", " largely", " --", " ,", " just", " long", " ultimately"], [" hugely", " --", " genuinely", " heavily", " sprawling", " &#", " largely", " fully"], [" massively", " sprawling", " complex", " hugely", " dramatic", " heavily", " massive", " modular"], [" sprawling", " complex", " massively", " heavily", " massive", " hugely", " commercial", " modular"], [" complex", " heavily", " sprawling", " massively", " massive", " commercial", " rapidly", " fully"], [" complex", " massive", " commercial", " modular", " sprawling", " massively", " industry", " heavily"], [" complex", " commercial", " massive", " modular", " industry", " sprawling", " modern", " massively"], [" complex", " massive", " heavily", " modern", " large", " full", " commercial", " ."], [" complex", " massive", " large", " long", " modern", " heavily", " high", " multi"], [" complex", " massive", " large", " modern", " long", " multi", " high", " heavily"], [" complex", " hybrid", " multi", " massive", " modular", " massively", " global", " mega"], [" complex", " hybrid", " massively", " massive", " modular", " multi", " heavily", "complex"], [" complex", "complex", " hybrid", " complexity", " multi", " multit", " modular", " massively"], [" complex", " complexity", "complex", " multit", " hybrid", " multi", " massively", " massive"], [" complex", " multi", " complexity", "complex", " hybrid", " multit", " massively", " massive"], [" complex", " complexity", "complex", " multi", "\u590d\u6742", " Complex", " multit", "\u590d\u6742\u7684"], [" complex", "complex", " complexity", "\u590d\u6742", " Complex", " multi", "\u590d\u6742\u7684", " multit"], [" complex", " complexity", "complex", " multi", " Complex", " multit", " massive", "\u590d\u6742"], [" complex", " complexity", "complex", " Complex", " multit", " multi", " massive", " complexities"], [" complex", " complexity", "complex", " multit", " Complex", " multi", " massive", " complexities"], [" complex", " complexity", "complex", " massive", " multit", " Complex", " heavily", " multi"], [" complex", " complexity", "complex", " heavily", " massive", " heavy", " complicated", " dense"], [" complex", " complexity", "complex", " heavily", " dense", " massive", " heavy", "-heavy"], [" complex", "complex", " complexity", "-heavy", " dense", "\u590d\u6742", " heavy", " multit"], [" complex", "complex", " complexity", "-heavy", " multi", "\u590d\u6742", " sophisticated", " multit"], [" complex", "-heavy", "complex", "-intensive", " complexity", " immersive", "\u590d\u6742", " sophisticated"], [" complex", "-heavy", "-intensive", "complex", " complexity", "\u590d\u6742", "\u590d\u6742\u7684", " sophisticated"], [" complex", "\u590d\u6742", "complex", "-heavy", "\u590d\u6742\u7684", "-intensive", "Complex", " komplex"], [" complex", "complex", "\u590d\u6742", "\u590d\u6742\u7684", "Complex", "-intensive", "-heavy", " complexity"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", " complexity", " komplex", "_complex"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", " komplex", " Complex", "_complex"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", " complexity", "_complex", " Complex"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", "_complex", " complexity", " Complex"], [" complex", "\u590d\u6742", "complex", "\u590d\u6742\u7684", "Complex", "_complex", " komplex", " Complex"], [" complex", "\u590d\u6742", "complex", "Complex", "\u590d\u6742\u7684", " Complex", "_complex", " kompleks"], [" complex", "\u590d\u6742", "complex", "Complex", "\u590d\u6742\u7684", " Complex", "_complex", " complexity"], [" complex", "complex", "\u590d\u6742", "Complex", " Complex", "\u590d\u6742\u7684", "_complex", " GPU"], [" complex", "complex", "\u590d\u6742", " GPU", "Complex", " Complex", "\u590d\u6742\u7684", " CPU"], [" complex", " GPU", " CPU", " compute", "complex", " viewport", " physics", " Complex"], [" complex", " GPU", " compute", " data", " CPU", " graphics", "complex", " physics"]], "p": [[0.8833, 0.1055, 0.0053, 0.0017, 0.0015, 0.0005, 0.0005, 0.0002], [0.2435, 0.2287, 0.0479, 0.0241, 0.0188, 0.0156, 0.0137, 0.0107], [0.6312, 0.1408, 0.1408, 0.0356, 0.0168, 0.0148, 0.0062, 0.0033], [0.0126, 0.0081, 0.0052, 0.0034, 0.0032, 0.0032, 0.003, 0.003], [0.0226, 0.0083, 0.0054, 0.0047, 0.0044, 0.0044, 0.0042, 0.0039], [0.0304, 0.0184, 0.0119, 0.0044, 0.0041, 0.0041, 0.0028, 0.0025], [0.0939, 0.0687, 0.0237, 0.0223, 0.0163, 0.0144, 0.0119, 0.0112], [0.0172, 0.0143, 0.0086, 0.0086, 0.0076, 0.0052, 0.0041, 0.0038], [0.7339, 0.1125, 0.0251, 0.0236, 0.0092, 0.0072, 0.0072, 0.0072], [0.5291, 0.0318, 0.015, 0.0097, 0.008, 0.008, 0.0067, 0.0055], [0.5087, 0.1369, 0.0473, 0.0197, 0.0185, 0.0174, 0.012, 0.0093], [0.0053, 0.0032, 0.0028, 0.0023, 0.0022, 0.0022, 0.0021, 0.0019], [0.0058, 0.0031, 0.0029, 0.0029, 0.0027, 0.0024, 0.002, 0.002], [0.0089, 0.0069, 0.0051, 0.0045, 0.0037, 0.0033, 0.0031, 0.0027], [0.0096, 0.009, 0.008, 0.0043, 0.004, 0.0038, 0.0038, 0.0035], [0.0109, 0.0066, 0.0059, 0.0055, 0.0052, 0.0046, 0.0046, 0.0031], [0.0124, 0.011, 0.0091, 0.0085, 0.0071, 0.0055, 0.0052, 0.0049], [0.0214, 0.0147, 0.0089, 0.0057, 0.0057, 0.0057, 0.0051, 0.0048], [0.0145, 0.0093, 0.0088, 0.0088, 0.0073, 0.0044, 0.0041, 0.0041], [0.0091, 0.0063, 0.0052, 0.0046, 0.0038, 0.0036, 0.0034, 0.0034], [0.3577, 0.0037, 0.0026, 0.0026, 0.0026, 0.0024, 0.0021, 0.0021], [0.002, 0.002, 0.002, 0.0017, 0.0016, 0.0015, 0.0014, 0.0013], [0.0042, 0.0042, 0.0042, 0.0039, 0.0037, 0.0032, 0.0029, 0.0027], [0.0083, 0.0073, 0.0069, 0.0042, 0.0039, 0.0039, 0.0037, 0.0034], [0.0068, 0.005, 0.0047, 0.0041, 0.0039, 0.0036, 0.0036, 0.0032], [0.0084, 0.0065, 0.0061, 0.0054, 0.004, 0.004, 0.004, 0.0029], [0.0146, 0.0138, 0.0078, 0.0065, 0.0061, 0.0054, 0.0051, 0.0042], [0.0462, 0.017, 0.0141, 0.0141, 0.0132, 0.0103, 0.008, 0.008], [0.1518, 0.0233, 0.0205, 0.0133, 0.0133, 0.011, 0.0097, 0.0091], [0.2602, 0.0292, 0.0227, 0.0214, 0.0147, 0.0114, 0.0114, 0.0089], [0.2391, 0.0367, 0.0184, 0.0173, 0.0153, 0.0135, 0.0112, 0.0099], [0.2296, 0.0274, 0.0214, 0.0177, 0.0138, 0.013, 0.013, 0.0122], [0.1937, 0.0316, 0.0169, 0.0149, 0.014, 0.0124, 0.0124, 0.0116], [0.5869, 0.0292, 0.0228, 0.0228, 0.0177, 0.0122, 0.0114, 0.0108], [0.6617, 0.0241, 0.0213, 0.0213, 0.01, 0.01, 0.0083, 0.0078], [0.8443, 0.0187, 0.0155, 0.0094, 0.0057, 0.0047, 0.0042, 0.0037], [0.82, 0.0248, 0.0248, 0.008, 0.0076, 0.0067, 0.0052, 0.0046], [0.7989, 0.0177, 0.0166, 0.0137, 0.0107, 0.0101, 0.0051, 0.0045], [0.9539, 0.0154, 0.012, 0.0024, 0.0024, 0.0017, 0.0014, 0.001], [0.9642, 0.0121, 0.0083, 0.0019, 0.0014, 0.0013, 0.0006, 0.0006], [0.9521, 0.0136, 0.0082, 0.0025, 0.0022, 0.0017, 0.0013, 0.0012], [0.9543, 0.0175, 0.0057, 0.0018, 0.0017, 0.0015, 0.001, 0.0006], [0.9374, 0.022, 0.0072, 0.0026, 0.0022, 0.0013, 0.0012, 0.001], [0.9327, 0.0219, 0.0104, 0.0022, 0.0017, 0.0017, 0.0014, 0.0013], [0.9439, 0.0135, 0.0064, 0.0034, 0.003, 0.0023, 0.0016, 0.0015], [0.9312, 0.0117, 0.0081, 0.0032, 0.003, 0.0026, 0.0026, 0.0023], [0.8844, 0.0267, 0.0184, 0.0098, 0.0038, 0.0034, 0.0025, 0.0021], [0.8795, 0.0266, 0.0098, 0.0098, 0.0046, 0.0034, 0.0028, 0.0025], [0.6433, 0.0466, 0.0363, 0.0283, 0.0171, 0.0092, 0.0076, 0.0076], [0.2863, 0.223, 0.1053, 0.0498, 0.0162, 0.0152, 0.0134, 0.0076], [0.18, 0.1237, 0.1237, 0.085, 0.0751, 0.0455, 0.0244, 0.0215], [0.2867, 0.1971, 0.1971, 0.1195, 0.064, 0.0162, 0.0111, 0.0111], [0.3946, 0.3073, 0.1281, 0.0777, 0.0416, 0.0093, 0.0044, 0.0034], [0.5661, 0.2083, 0.0868, 0.0676, 0.041, 0.0038, 0.0038, 0.0034], [0.5687, 0.3044, 0.0529, 0.0529, 0.0134, 0.0012, 0.0011, 0.0011], [0.5872, 0.2774, 0.0546, 0.0482, 0.0177, 0.0031, 0.0016, 0.0016], [0.6592, 0.214, 0.0613, 0.029, 0.0199, 0.0031, 0.0021, 0.0021], [0.8778, 0.0721, 0.034, 0.0086, 0.0041, 0.0013, 0.0007, 0.0003], [0.9158, 0.0402, 0.0277, 0.0079, 0.0029, 0.0018, 0.0018, 0.0003], [0.9753, 0.0084, 0.0084, 0.0031, 0.0017, 0.0011, 0.0005, 0.0003], [0.9892, 0.0028, 0.0025, 0.0015, 0.001, 0.0008, 0.0005, 0.0004], [0.9623, 0.0107, 0.005, 0.0019, 0.0011, 0.0009, 0.0008, 0.0006], [0.9876, 0.0022, 0.0013, 0.0009, 0.0008, 0.0005, 0.0003, 0.0003]], "ranks": {}}, {"pos": 494, "top": [[".", ",", "\u2013", " \u2013", "\u2026", " ", "\u2026.", "-"], ["\u2013", " \u2013", "  \n", "  \n\n", "\uff0e", "  \r\n", "  ", "\u2026"], ["\u2013", " \u2013", ",", "\u2026", ".", "\u2026..", "\u2026.", ".\u2013"], ["\u52a0\u62ff\u5927", " Shemale", " CSG", "ELIT", " Guta", " milfs", " YYS", " pupper"], [" (@", "ed", ":@", "@", " \u201c", "  ", " hyper", " Frag"], [" Frag", "\uff0c", "\uff01", " Complex", ",", "\uff08", "\uff1a", "\u6e2f"], ["\uff08", "  \n", "\u4e2d", "\u548c", "\u5728", "\uff0c", "  \n\n", "\u7684"], [" `_", "raries", " LCS", " complex", "\u793e", "ities", "  \n", " Complex"], ["  \n", ",", "ly", " complex", ".", "  \n\n", "\u2026", "\uff08"], [",", "\u2013", "\\_", "\u2026", " complex", " Complex", ".\\", " \u2013"], ["\\_", " complex", ",", " Complex", "\u2013", ".\\", "\u2026", "  \n"], [" complex", " Complex", " complexity", " complexities", " strategic", " hybrid", " architectural", " scenarios"], [" complex", " hybrid", " strategic", " architectural", " complexity", " Complex", " diverse", " scenarios"], [" complex", " Complex", " hybrid", " strategic", " complexity", " architectural", " scenarios", " sophisticated"], [" complex", " Complex", " strategic", " sophisticated", " hybrid", " \u2013", " architectural", " diverse"], [" complex", " Complex", " strategic", " sophisticated", " sprawling", "\u2013", " hybrid", " \u2013"], [" complex", "\u2013", " Complex", " myriad", " \u2013", " sprawling", " strategic", " complexities"], [" complex", " Complex", " sprawling", " strategic", " complexities", " hybrid", " sophisticated", " complexity"], [" complex", " Complex", " complexities", " complexity", " Complexity", "complex", "Complex", " sprawling"], [" complex", " Complex", " complexities", " complexity", "complex", " Complexity", " sprawling", " myriad"], [" complex", " Complex", "complex", " myriad", "Complex", " complexities", " sprawling", " complexity"], [" complex", " Complex", " complexities", " complexity", " Complexity", " labyrinth", " scenarios", " sophisticated"], [" complex", " Complex", " complexities", " complexity", " Complexity", "complex", "Complex", " labyrinth"], [" complex", " Complex", "complex", " complexities", " complexity", "Complex", " myriad", " complexes"], [" complex", " Complex", " complexities", "complex", "Complex", " complexity", " myriad", " Complexity"], [" complex", " Complex", " complexities", " complexity", "complex", " Complexity", "Complex", " architectures"], [" complex", " complexities", " Complex", " complexity", "complex", "Complex", " Complexity", " architectures"], [" complex", " Complex", " complexities", " complexity", "complex", " sprawling", " complexes", " systems"], [" complex", " Complex", " complexity", "complex", " complexities", " complexes", " Complexity", "Complex"], [" complex", " complexity", " Complex", "complex", " complexities", " complexes", " Complexity", " architectures"], [" complex", " Complex", " complexity", " complexes", " systems", " multi", " complexities", "complex"], [" complex", " Complex", " multi", " complexity", " systems", " complexes", " technology", "complex"], [" complex", " Complex", " complexity", " multi", " systems", " complexes", " technology", "complex"], [" complex", " complexity", " Complex", "complex", " complexities", " complexes", " multi", " modular"], [" complex", "complex", " complexity", " Complex", " complexities", "\u590d\u6742", "Complex", "\u590d\u6742\u7684"], [" complex", "complex", " complexity", "\u590d\u6742", " Complex", "Complex", "\u590d\u6742\u7684", " complexities"], [" complex", "complex", " complexity", "\u590d\u6742", "Complex", "\u590d\u6742\u7684", " Complex", " complexities"], [" complex", " complexity", "complex", " Complex", "\u590d\u6742", "Complex", " Complexity", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", "\u590d\u6742", " Complex", "Complex", "\u590d\u6742\u7684", " complexities"], [" complex", "complex", " complexity", "\u590d\u6742", " Complex", "Complex", "\u590d\u6742\u7684", " Complexity"], [" complex", " complexity", "complex", "\u590d\u6742", "Complex", " Complex", "\u590d\u6742\u7684", " Complexity"], [" complex", " complexity", "complex", " Complex", "\u590d\u6742", "Complex", " complexities", " Complexity"], [" complex", " complexity", "complex", " Complex", "Complex", "\u590d\u6742", " complexes", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", " Complex", "\u590d\u6742", "Complex", "\u590d\u6742\u7684", " complexes"], [" complex", " complexity", "complex", " complexes", "\u590d\u6742", " complexities", " Complex", "Complex"], [" complex", " complexity", "complex", " complexes", " Complex", " complexities", "\u590d\u6742", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", " complexities", "\u590d\u6742", " complexes", " Complex", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", " complexities", "\u590d\u6742", "Complex", "\u590d\u6742\u7684", " complexes"], [" complex", " complexity", "complex", "\u590d\u6742", " scenarios", " complexities", " environments", "\u590d\u6742\u7684"], [" complex", " complexity", "complex", "\u590d\u6742", "Complex", " scenarios", " complexities", "\u590d\u6742\u7684"], ["\u590d\u6742", "Complex", "complex", "\u590d\u6742\u7684", " complex", " complexity", "\u590d\u6742\u5ea6", " Complexity"], ["Complex", " visuals", "complex", " interactive", "\u590d\u6742", " scenarios", "\u590d\u6742\u7684", " complex"], [" interactive", " visuals", " scenarios", "Complex", " multiplayer", "interactive", " visualization", "complex"], [" interactive", " visuals", "interactive", " scenarios", " environments", " visualization", " multiplayer", " viewport"], [" interactive", " multiplayer", " visualization", " scenario", " viewport", " scenarios", " visuals", " shader"], [" viewport", " visualization", "\u573a\u666f", " scene", " scenarios", " interactive", " scenario", " scenes"], [" scene", "\u573a\u666f", " viewport", " scenes", "scene", " renderer", "Scene", " Scene"], [" scene", "\u573a\u666f", " viewport", " scenes", "scene", " scenario", "Scene", " Scene"], [" scene", " viewport", "\u573a\u666f", " renderer", " scenes", "scene", " scenario", " Scene"], [" scene", " viewport", " scenes", "\u573a\u666f", "scene", " Scene", "Scene", " scenario"], [" scene", " viewport", " scenes", " async", " Scene", "\u573a\u666f", "scene", " renderer"], [" scene", " viewport", " async", " scenes", " Scene", "scene", " scenario", " renderer"], [" scene", " viewport", ",", " async", " scenario", " renderer", " scenes", " Scene"]], "p": [[0.5138, 0.3116, 0.0695, 0.0614, 0.0107, 0.0073, 0.0039, 0.0035], [0.3169, 0.2468, 0.1806, 0.0551, 0.0158, 0.0131, 0.0066, 0.0062], [0.7736, 0.1186, 0.0385, 0.034, 0.0076, 0.0071, 0.0067, 0.0026], [0.0039, 0.0029, 0.0029, 0.0022, 0.0022, 0.002, 0.0017, 0.0016], [0.0149, 0.008, 0.007, 0.0055, 0.0055, 0.0045, 0.0043, 0.0035], [0.0103, 0.0091, 0.0046, 0.0041, 0.0036, 0.0036, 0.003, 0.0028], [0.2015, 0.0789, 0.0256, 0.0212, 0.0187, 0.0187, 0.0155, 0.0129], [0.0204, 0.0116, 0.008, 0.007, 0.0043, 0.0043, 0.0043, 0.004], [0.0269, 0.0269, 0.0253, 0.0135, 0.0112, 0.0105, 0.0047, 0.0044], [0.2572, 0.1293, 0.0476, 0.0078, 0.0064, 0.005, 0.0032, 0.0032], [0.1266, 0.0562, 0.0562, 0.0207, 0.0194, 0.0194, 0.0142, 0.0133], [0.0699, 0.0166, 0.0114, 0.0107, 0.0101, 0.0101, 0.0089, 0.0083], [0.0839, 0.0107, 0.0088, 0.0083, 0.0083, 0.0078, 0.0078, 0.0069], [0.0945, 0.0175, 0.0128, 0.0128, 0.012, 0.0106, 0.0088, 0.0083], [0.1347, 0.0265, 0.0194, 0.0104, 0.0104, 0.0081, 0.0071, 0.0059], [0.0835, 0.0154, 0.0145, 0.0145, 0.0113, 0.0094, 0.0078, 0.0078], [0.0877, 0.0441, 0.0222, 0.0143, 0.0135, 0.0105, 0.0098, 0.0082], [0.0638, 0.025, 0.0104, 0.0086, 0.0081, 0.0072, 0.0063, 0.0056], [0.1358, 0.0641, 0.0251, 0.0222, 0.0173, 0.0143, 0.0111, 0.0082], [0.1963, 0.0496, 0.0301, 0.022, 0.0194, 0.0104, 0.0098, 0.0092], [0.1207, 0.0607, 0.0473, 0.0392, 0.0325, 0.0253, 0.0077, 0.0068], [0.0398, 0.0177, 0.0156, 0.0129, 0.0095, 0.0074, 0.0042, 0.0042], [0.1709, 0.0555, 0.0358, 0.0231, 0.0132, 0.0124, 0.0103, 0.0091], [0.5562, 0.0586, 0.023, 0.0123, 0.0084, 0.0079, 0.0058, 0.0042], [0.491, 0.0624, 0.0624, 0.0517, 0.0277, 0.019, 0.0131, 0.0066], [0.5039, 0.0602, 0.0565, 0.0565, 0.0251, 0.0221, 0.0184, 0.0172], [0.6398, 0.0595, 0.0463, 0.0463, 0.0133, 0.011, 0.0103, 0.0076], [0.8658, 0.0231, 0.0131, 0.0124, 0.0058, 0.0035, 0.0033, 0.0024], [0.8346, 0.0367, 0.0304, 0.0127, 0.0127, 0.0068, 0.006, 0.0032], [0.8721, 0.0318, 0.017, 0.0091, 0.0086, 0.0063, 0.003, 0.0024], [0.9346, 0.0118, 0.0067, 0.0026, 0.0026, 0.0018, 0.0013, 0.0012], [0.9159, 0.0123, 0.0033, 0.0033, 0.0029, 0.002, 0.0015, 0.0013], [0.8959, 0.0154, 0.0068, 0.0034, 0.003, 0.0022, 0.0018, 0.0017], [0.8795, 0.0207, 0.0134, 0.0071, 0.0043, 0.0032, 0.0028, 0.0026], [0.8832, 0.0302, 0.0267, 0.0092, 0.0063, 0.0056, 0.0041, 0.0022], [0.841, 0.0538, 0.0288, 0.0198, 0.0113, 0.0093, 0.0073, 0.0047], [0.7643, 0.0711, 0.0711, 0.0231, 0.0159, 0.0124, 0.0109, 0.0075], [0.8586, 0.0484, 0.0294, 0.0139, 0.0074, 0.007, 0.0031, 0.0029], [0.913, 0.0312, 0.0243, 0.0115, 0.007, 0.0048, 0.0029, 0.0014], [0.9053, 0.0351, 0.0241, 0.0129, 0.0078, 0.0061, 0.0029, 0.0009], [0.8791, 0.0438, 0.0341, 0.0125, 0.0086, 0.0086, 0.0032, 0.0025], [0.9119, 0.0354, 0.0243, 0.007, 0.0054, 0.0054, 0.0016, 0.0016], [0.9187, 0.0314, 0.0216, 0.007, 0.0048, 0.0048, 0.0023, 0.0018], [0.8705, 0.0556, 0.0338, 0.0066, 0.0066, 0.0059, 0.004, 0.0031], [0.912, 0.0454, 0.0189, 0.0042, 0.0029, 0.0026, 0.0026, 0.0023], [0.9344, 0.0282, 0.0133, 0.0043, 0.0034, 0.0026, 0.0023, 0.0014], [0.8204, 0.0763, 0.0408, 0.0071, 0.0071, 0.0055, 0.0055, 0.0043], [0.7964, 0.0654, 0.0509, 0.01, 0.0088, 0.0069, 0.0061, 0.0061], [0.5449, 0.1378, 0.0574, 0.0239, 0.0239, 0.0239, 0.0211, 0.0186], [0.2121, 0.1286, 0.0884, 0.0536, 0.0445, 0.0418, 0.0346, 0.0325], [0.2281, 0.1568, 0.1568, 0.1221, 0.1078, 0.0577, 0.0137, 0.0129], [0.1171, 0.0912, 0.0805, 0.0589, 0.0488, 0.0488, 0.0431, 0.0431], [0.1495, 0.1495, 0.0623, 0.0355, 0.0355, 0.0294, 0.0276, 0.0229], [0.2277, 0.0838, 0.0448, 0.0421, 0.0396, 0.0396, 0.0396, 0.0272], [0.133, 0.0521, 0.0432, 0.0432, 0.0432, 0.0406, 0.0336, 0.0336], [0.6208, 0.035, 0.0309, 0.0273, 0.0241, 0.0212, 0.0187, 0.0187], [0.4904, 0.1405, 0.0966, 0.0752, 0.0355, 0.0215, 0.019, 0.0131], [0.5362, 0.2533, 0.0499, 0.044, 0.0267, 0.0183, 0.0162, 0.0143], [0.4653, 0.3198, 0.0713, 0.0297, 0.0262, 0.0159, 0.014, 0.0066], [0.6208, 0.3323, 0.0187, 0.0078, 0.0054, 0.0047, 0.002, 0.0014], [0.6808, 0.2838, 0.0125, 0.0076, 0.0036, 0.0028, 0.0019, 0.0007], [0.7105, 0.2614, 0.007, 0.0061, 0.0029, 0.0014, 0.0011, 0.0009], [0.4874, 0.3796, 0.0747, 0.0214, 0.0058, 0.0027, 0.0026, 0.0012]], "ranks": {}}, {"pos": 495, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", "\u2026.", "\u2026..", ",", "\u00a0"], [" \u2013", "\u2013and", "\u2013", "\u2013\u2013", " \u2013**", "**\u2013", " \u2013,", " *\u2013"], ["\u2013", " \u2013", "\u2013and", "**\u2013", ".\u2013", "\u2026..", "\u2013\u2013", " \u2013,"], [" milfs", " Hidal", " Strec", " pupper", " Shemale", "aruhi", " Pubbl", " Geile"], [" @_", " Hidal", " *@", "@g", "insip", " CSI", " \n\n\n\n\n", "_ctxt"], ["consts", "\u5178\u793c", "_ctxt", "ogh", " \n\n\n\n\n", "\u8f66", "insip", "-cent"], ["-**", " \r\n\r\n", " **#", "iha", "consts", "       \n\n", " @_", "plorer"], [" Hidal", " veggies", "VERY", " \u0441\u043a\u0430\u043d\u0434\u0430", "consts", "\u5178\u793c", " *@", "iha"], ["   \n\n", "\t\n\n", " \r\n\r\n", "athon", "       \n\n", " \n\n", "VERY", "        \n\n"], ["-cent", "-ish", "VERY", "-heavy", "illion", "-C", "-grand", "\u2013"], ["-", "-tech", "-ish", "-heavy", "-C", "#", "-d", "-style"], ["opolitan", "illion", "Sharper", "-ish", " veggies", "althy", " \u0441\u043a\u0430\u043d\u0434\u0430", "VERY"], ["illion", " veggies", " nerd", "-ish", "flix", "opolitan", "Sharper", "iphone"], ["-tech", " nerd", "Sharper", " veggies", " pornstar", "flix", "-ish", "iha"], ["-tech", "illion", " vibe", " nerd", "Sharper", " combo", " veggies", " visuals"], ["-tech", " tech", " veggies", " nerd", "illion", " vibe", "kids", " pricey"], ["-tech", " tech", " vibe", "-esque", " nerd", "-ish", " visuals", " veggies"], ["-tech", "-esque", " vibe", " tech", "-heavy", "-ish", "plex", "-centric"], ["-tech", " vibe", "-esque", " tech", " booze", " veggies", "itech", "-ish"], ["-tech", "-esque", "Sharper", "iha", " booze", " vibe", "boost", " veggies"], [" \n\n", "<|endoftext|>", "  \n\n", " \r\n\r\n", "\t\n\n", "   \n\n", "      \n\n", "    \n\n"], ["Sharper", "iha", "-tech", " pornstar", "itech", " hacker", "flix", "isky"], [" tech", " gaming", "-tech", " apps", " futuristic", " Hollywood", " mega", " hacker"], [" global", " world", " tech", " complex", " technology", " modern", " mega", " worlds"], [" \n\n", " \r\n\r\n", "  \n\n", "   \n\n", "\r\n\r\n", "\t\n\n", " \n\n\n", "    \n\n"], [" tech", " multiplayer", " robotics", " technologies", " gaming", " technology", " software", " gamers"], [" tech", " \n\n", " technology", " global", " gaming", " software", " technologies", " apps"], [" \n\n", " tech", " \r\n\r\n", " global", "  \n\n", " software", " globally", " complex"], [" \n\n", "  \n\n", " \r\n\r\n", " tech", "   \n\n", " global", " \n  \n", " globally"], [" \n\n", "  \n\n", " \r\n\r\n", " tech", "   \n\n", " \n  \n", " global", " ___"], [" \n\n", "  \n\n", " tech", " global", "   \n\n", " \n  \n", " \r\n\r\n", " technology"], [" global", " \n\n", " complex", " tech", " globally", " technology", " hybrid", " multiple"], [" global", " complex", " hybrid", " technology", " globally", " worldwide", " tech", " international"], [" tech", " global", " workflows", " software", " toolkit", " IoT", " hybrid", " technology"], [" \n\n", "  \n\n", " \r\n\r\n", "\u2026**", " tech", "  \r\n\r\n", " global", " IoT"], ["  \n\n", " \n\n", " interoper", "\u2026**", "   \n\n", " IoT", " tech", " software"], [" interoper", "  \n\n", " workflows", " \n\n", " IoT", " software", " tech", "   \n\n"], [" interoper", " workflows", " software", " IoT", " tech", " synced", " sync", " APIs"], [" interoper", " software", " workflows", " IoT", " tech", " firmware", " iOS", " synced"], [" interoper", " workflows", " software", " IoT", "\u8de8", "\u5171\u4eab", " tech", " desktop"], [" interoper", " software", "\u5171\u4eab", " workflows", " unified", "\u8de8", " shared", " tech"], [" interoper", " software", "\u5171\u4eab", " unified", " shared", " workflows", "Unified", "\u8de8"], [" interoper", "\u5171\u4eab", " unified", " software", "\u7edf\u4e00", " shared", "Unified", " Unified"], ["\u7edf\u4e00", " interoper", "\u5171\u4eab", "Unified", " software", " unified", " Unified", "\u8de8"], [" unified", " shared", "\u7edf\u4e00", "Unified", " interoper", "\u5171\u4eab", " unify", " Unified"], [" shared", " unified", " interoper", "\u5171\u4eab", " Shared", "\u5171\u7528", " Unified", " sync"], ["\u5171\u4eab", " shared", " unified", "\u5171\u7528", "\u7edf\u4e00", " Shared", " unify", " interoper"], [" unified", "\u7edf\u4e00", " unify", "\u5171\u4eab", "\u7edf\u4e00\u7684", " interoper", "Unified", "\u5171\u7528"], ["\u7edf\u4e00\u7684", "\u7edf\u4e00", " unified", " unify", " interoper", "Unified", " synced", " Unified"], ["\u7edf\u4e00\u7684", " interoper", "Unified", "\u7edf\u4e00", " unify", " unified", "\u5171\u4eab", " synced"], ["\u7edf\u4e00", " interoper", "\u7edf\u4e00\u7684", " unified", "\u5171\u4eab", "Unified", " unify", "\u5171\u7528"], [" interoper", "\u7edf\u4e00", "-platform", "\u7edf\u4e00\u7684", "\u8de8", "Unified", "\u5171\u4eab", " compatibility"], ["\u8de8", " interoper", "\u7edf\u4e00", "\u7edf\u4e00\u7684", " compatibility", "Unified", "-platform", " unified"], ["\u8de8", " interoper", "-platform", " UI", " multiplayer", "Cross", "/UI", " compatibility"], ["\u8de8", "-platform", " UI", " interoper", " Xamarin", "\u4ee3\u7801", "-code", " iOS"], [" desktop", "-platform", "/desktop", " UI", "\u8de8", " platform", "\u5e73\u53f0", "/Linux"], [" desktop", "-platform", "/desktop", " UI", "\u8de8", " platform", " Linux", "/Linux"], [" desktop", "/desktop", " Desktop", "desktop", "-platform", " platform", " Linux", "Desktop"], [" desktop", " Desktop", "/desktop", "desktop", "Desktop", "-desktop", "\u684c\u9762", "/Desktop"], [" desktop", " Desktop", " async", "/desktop", "desktop", " plugin", "-desktop", "Desktop"], [" desktop", " cross", " Desktop", " Cross", " async", "-desktop", "desktop", "-cross"], [" desktop", " cross", "-desktop", " Desktop", " async", " plugin", "/desktop", " Cross"], ["3", "2", "4", "1", "6", "5", "8", "7"]], "p": [[0.637, 0.1335, 0.1107, 0.0205, 0.015, 0.0141, 0.0103, 0.0055], [0.1335, 0.0359, 0.0359, 0.0247, 0.0124, 0.0071, 0.0038, 0.0016], [0.6533, 0.1652, 0.0831, 0.0164, 0.0136, 0.012, 0.0057, 0.0044], [0.0126, 0.0063, 0.0044, 0.0041, 0.0036, 0.003, 0.0026, 0.0023], [0.0051, 0.0029, 0.0024, 0.0021, 0.0019, 0.0017, 0.0017, 0.0016], [0.0024, 0.0019, 0.0017, 0.0015, 0.0014, 0.0013, 0.0011, 0.0011], [0.0103, 0.0075, 0.0071, 0.0055, 0.0043, 0.0036, 0.0033, 0.0029], [0.0049, 0.0046, 0.0046, 0.0041, 0.0032, 0.0032, 0.0028, 0.0026], [0.0185, 0.0144, 0.0135, 0.0135, 0.0127, 0.0082, 0.0077, 0.006], [0.0045, 0.0024, 0.0022, 0.0022, 0.0019, 0.0015, 0.0015, 0.0015], [0.0495, 0.0206, 0.0182, 0.0161, 0.0117, 0.0104, 0.0071, 0.0067], [0.0058, 0.0042, 0.0042, 0.004, 0.004, 0.0024, 0.0021, 0.0016], [0.0058, 0.0048, 0.0038, 0.0029, 0.0026, 0.0024, 0.0021, 0.0019], [0.0039, 0.0035, 0.0033, 0.0031, 0.0029, 0.0021, 0.002, 0.0019], [0.009, 0.0051, 0.0048, 0.0043, 0.0033, 0.0029, 0.0029, 0.0023], [0.0083, 0.0037, 0.0033, 0.0033, 0.0021, 0.002, 0.0018, 0.0017], [0.0333, 0.019, 0.0168, 0.0148, 0.0074, 0.0054, 0.0045, 0.004], [0.0887, 0.0145, 0.0136, 0.0106, 0.0064, 0.006, 0.0034, 0.0034], [0.1074, 0.0137, 0.0094, 0.0083, 0.0039, 0.0039, 0.0032, 0.003], [0.0097, 0.0059, 0.004, 0.0028, 0.0026, 0.0025, 0.0023, 0.0018], [0.5254, 0.0711, 0.0668, 0.0336, 0.0191, 0.0149, 0.0029, 0.0021], [0.0052, 0.0036, 0.0032, 0.0026, 0.0022, 0.0018, 0.0018, 0.0016], [0.0083, 0.0078, 0.0029, 0.0029, 0.0029, 0.0027, 0.0027, 0.0025], [0.0244, 0.0102, 0.009, 0.0084, 0.0074, 0.0066, 0.0054, 0.0054], [0.7661, 0.1331, 0.0246, 0.0159, 0.0071, 0.0052, 0.0014, 0.0013], [0.0587, 0.0216, 0.0179, 0.0148, 0.0139, 0.0109, 0.0109, 0.0096], [0.1235, 0.0484, 0.0312, 0.0276, 0.0243, 0.0243, 0.0228, 0.0115], [0.6153, 0.027, 0.0224, 0.0186, 0.0128, 0.0073, 0.0073, 0.0068], [0.7474, 0.0695, 0.0396, 0.0137, 0.01, 0.0073, 0.0033, 0.0029], [0.7764, 0.0528, 0.032, 0.0151, 0.0142, 0.0104, 0.0056, 0.0036], [0.8703, 0.0433, 0.0159, 0.0141, 0.0059, 0.0033, 0.0029, 0.0029], [0.1877, 0.1556, 0.1069, 0.0306, 0.0254, 0.0224, 0.0164, 0.0113], [0.1802, 0.0706, 0.0402, 0.0244, 0.0229, 0.0202, 0.0157, 0.0148], [0.0964, 0.0455, 0.0259, 0.0202, 0.019, 0.0157, 0.0148, 0.013], [0.0689, 0.0504, 0.0473, 0.0306, 0.0253, 0.0224, 0.0224, 0.0224], [0.1454, 0.0778, 0.0269, 0.0253, 0.0209, 0.0197, 0.0163, 0.0144], [0.0772, 0.0468, 0.0322, 0.0284, 0.0221, 0.0221, 0.0172, 0.0098], [0.1129, 0.0442, 0.0344, 0.0285, 0.0209, 0.0119, 0.0112, 0.0087], [0.1133, 0.057, 0.0392, 0.0286, 0.0223, 0.0135, 0.0119, 0.0105], [0.1111, 0.0409, 0.0281, 0.0281, 0.0233, 0.0181, 0.0125, 0.0117], [0.1665, 0.0652, 0.0508, 0.024, 0.0212, 0.0199, 0.0187, 0.0165], [0.2029, 0.0659, 0.0453, 0.0331, 0.0311, 0.0258, 0.0258, 0.0242], [0.3078, 0.0502, 0.0472, 0.0391, 0.0368, 0.0324, 0.0286, 0.0253], [0.0733, 0.0733, 0.0504, 0.0473, 0.0392, 0.0346, 0.027, 0.027], [0.1542, 0.0728, 0.0604, 0.047, 0.0415, 0.039, 0.0366, 0.0344], [0.1502, 0.1502, 0.0626, 0.0519, 0.0357, 0.0278, 0.0245, 0.023], [0.1687, 0.1314, 0.1023, 0.0703, 0.0583, 0.0454, 0.0401, 0.0312], [0.175, 0.1544, 0.0729, 0.0685, 0.0605, 0.0568, 0.0471, 0.0345], [0.1102, 0.0972, 0.0972, 0.0858, 0.0628, 0.0316, 0.0316, 0.0297], [0.105, 0.0768, 0.0598, 0.0562, 0.0341, 0.032, 0.0194, 0.0171], [0.1419, 0.1252, 0.0975, 0.0522, 0.0359, 0.0337, 0.0279, 0.0204], [0.0535, 0.0503, 0.021, 0.021, 0.0144, 0.0135, 0.0127, 0.0127], [0.5143, 0.0509, 0.0155, 0.0129, 0.0114, 0.01, 0.0094, 0.0069], [0.5487, 0.0291, 0.02, 0.0057, 0.0051, 0.0047, 0.0039, 0.0039], [0.2414, 0.0736, 0.0327, 0.0198, 0.0128, 0.0113, 0.01, 0.0094], [0.2227, 0.1269, 0.0529, 0.0364, 0.025, 0.0235, 0.0221, 0.0221], [0.2747, 0.0652, 0.0576, 0.0396, 0.0272, 0.0272, 0.0212, 0.0187], [0.783, 0.0728, 0.0366, 0.0236, 0.0077, 0.006, 0.0053, 0.005], [0.874, 0.0435, 0.0435, 0.0206, 0.0059, 0.0036, 0.0036, 0.0015], [0.86, 0.0294, 0.026, 0.0202, 0.0158, 0.0096, 0.007, 0.0054], [0.5419, 0.3724, 0.0136, 0.0106, 0.0093, 0.0068, 0.0068, 0.005], [0.5841, 0.1782, 0.0373, 0.0257, 0.0226, 0.0114, 0.0114, 0.0101], [0.9975, 0.0007, 0.0005, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 496, "top": [[".", " \u2013", ",", "\u2013", "y", "\u2026..", ";", "s"], ["\u2013\u2013", "\u2013and", "\u30e3\u30f3", "er", " \u2013", " Strec", "s", "\u2011"], ["\u2013", ".\u2013", " \u2013", "\u2013and", "\u2026..", ".", "**\u2013", "\u2013\u2013"], [" Geile", " milfs", " Strec", " \u041a\u0440\u0430\u0441\u0438", " Hidal", " Shemale", " Nuest", "erias"], ["kits", "s", " \u041a\u0440\u0430\u0441\u0438", "es", " ***", " Geile", "er", "ilion"], ["-CS", "kits", "s", "fst", "salt", " Geile", "-**", " ***"], ["s", "er", " ***", "  \n", "***", "rd", "es", "y"], ["er", "-CS", " veggies", "ner", " ***", " Geile", "illion", "s"], ["er", "  \n", "\u00ad", "\u2011", "s", "y", "  \n\n", " \u00ad"], [",", "\u00ad", "er", "\u2013", "s", "\u2011", "y", " \u00ad"], ["er", "s", "y", ".", "\u00ad", "-", "...", "\u2011"], ["er", "illion", "y", " veggies", "ics", "ive", "rd", "eur"], ["er", "illion", " veggies", "y", "ics", "ive", "rd", "ball"], ["er", "rd", "s", "ball", "y", " veggies", "ics", "illion"], ["er", "s", "y", "an", "\u2013", "\u00ad", "o", "illion"], ["s", "er", "es", "y", "kids", " kids", " veggies", " tech"], ["s", "er", "y", "es", "o", "an", "n", "ball"], ["s", "er", "y", "es", "kids", "-tech", "kits", "o"], ["s", "er", "es", "y", "kids", "orama", "ahead", "ware"], ["s", "y", "es", "ahead", "er", "ware", "kids", "orama"], ["s", "  \n\n", "y", "o", "n", "d", "er", "es"], ["orama", "world", "kids", "ware", "ics", "plex", "kits", "ways"], ["orama", "world", "ware", " games", " tech", " gaming", "kids", "ways"], [" games", "world", " TV", "orama", " world", " technology", " gaming", " game"], ["  \n\n", " \n\n", "   \n\n", "world", "orama", " tech", "-world", " gaming"], ["orama", " visuals", " gaming", " robotics", " pornstar", " animations", " tech", "Cube"], [" gaming", " visuals", "\n\n", "orama", " tech", " movies", " studios", " movie"], [" \n\n", "\n\n", " games", "  \n\n", " tech", " gaming", " technology", " video"], [" games", " technology", " tech", " gaming", " studio", " video", " technologies", " studios"], [" technology", " tech", " games", " studio", " video", " technologies", " ...", " complex"], [" technology", " ...", " games", " complex", " tech", " world", " .", " video"], [" ...", " technology", " complex", " .", " games", " tech", " video", " world"], [" technology", " tech", " complex", " games", " video", " technologies", " film", " game"], [" technology", " tech", " technologies", " complex", " games", " architecture", " software", " gaming"], [" tech", " technology", " technologies", " complex", " software", " gaming", " immersive", " architecture"], [" tech", " technology", "\u2011", " immersive", " visuals", " software", " technologies", "\ufe0f"], [" tech", " technology", " software", " visuals", " animations", " immersive", " technologies", " hardware"], [" tech", " graphics", " technology", " animations", " visuals", " software", " animation", " immersive"], [" tech", " graphics", " visuals", " complex", " software", " visualization", " technology", " immersive"], [" visuals", " graphics", " visualization", " tech", " immersive", " animations", " technology", " software"], [" graphics", " visuals", " visualization", " visual", " animations", " animation", " tech", " software"], [" graphics", " visuals", " visualization", " visual", " animations", " architecture", " animation", " immersive"], [" visuals", " graphics", " visualization", " animations", " animation", " immersive", " visual", " architecture"], [" visuals", " graphics", " visualization", " animations", " immersive", " animation", " architecture", " interactive"], [" visuals", " graphics", " animations", " visualization", " architecture", " complex", " architectures", " immersive"], [" visuals", " graphics", " animations", " complex", " environments", " visualization", " architecture", " architectures"], [" visuals", " environments", " graphics", " immersive", " visualization", " animations", " WebGL", " complex"], [" visuals", " environments", " graphics", " immersive", " visualization", " animations", " environment", " simulations"], [" visuals", " environments", " visualization", " graphics", " animations", " immersive", " environment", " simulations"], [" visuals", " environments", " visualization", " workflows", " animations", " graphics", " contexts", " scenarios"], [" environments", " contexts", " visuals", " scenarios", " environment", " workflows", " scenes", " immersive"], [" environments", " contexts", "\u573a\u666f", " viewport", " scenarios", " visuals", " scenes", " environment"], [" environments", "\u573a\u666f", " scenarios", " contexts", " scenes", " viewport", " scene", " environment"], [" environments", "\u573a\u666f", " viewport", " scenes", " scenarios", " environment", " scene", " visualization"], [" environments", "\u573a\u666f", " environment", " viewport", " scene", " scenarios", " scenes", " contexts"], [" environments", " environment", "\u573a\u666f", " viewport", " scene", " scenarios", "-render", " scenes"], ["\u573a\u666f", " scene", " scenes", " renderer", "\u6e32\u67d3", " viewport", " rendering", "-render"], ["\u573a\u666f", " scene", " viewport", " scenes", "\u573a\u666f\u4e2d", " scenarios", " scenario", " environment"], ["\u573a\u666f", " scene", " viewport", " environment", " scenes", " renderer", " scenario", "scene"], [" scene", "\u573a\u666f", " viewport", " scenes", " Scene", "scene", "Scene", " scenario"], [" scene", " viewport", "\u573a\u666f", " environment", " scenes", " Scene", "scene", " scenario"], [" scene", " viewport", "\u573a\u666f", " scenes", " environment", " Scene", " scenario", " engine"], ["D", " scene", " viewport", "2", "\u573a\u666f", "4", "6", "0"]], "p": [[0.5898, 0.1316, 0.0904, 0.0904, 0.0229, 0.009, 0.0079, 0.0079], [0.0092, 0.0081, 0.0081, 0.0076, 0.0076, 0.0067, 0.0067, 0.0063], [0.6123, 0.1366, 0.1064, 0.057, 0.0345, 0.0087, 0.0082, 0.0053], [0.0163, 0.0144, 0.0112, 0.0087, 0.0064, 0.006, 0.005, 0.005], [0.0139, 0.0123, 0.0108, 0.0058, 0.0058, 0.0054, 0.0045, 0.0035], [0.016, 0.0091, 0.0067, 0.0052, 0.0046, 0.0034, 0.0028, 0.0028], [0.3104, 0.1294, 0.0785, 0.0145, 0.0094, 0.0083, 0.0078, 0.0053], [0.045, 0.0176, 0.0156, 0.0146, 0.0107, 0.0089, 0.0083, 0.0083], [0.172, 0.0525, 0.0435, 0.0318, 0.0281, 0.0233, 0.0219, 0.0141], [0.1759, 0.1067, 0.0885, 0.0885, 0.0445, 0.0418, 0.021, 0.0197], [0.6035, 0.0677, 0.0561, 0.0362, 0.0249, 0.0171, 0.0161, 0.0133], [0.1696, 0.0131, 0.0102, 0.009, 0.0084, 0.0079, 0.0058, 0.0048], [0.1219, 0.0256, 0.0073, 0.0069, 0.0061, 0.0061, 0.0054, 0.0047], [0.0794, 0.0089, 0.0084, 0.0079, 0.0079, 0.0079, 0.0058, 0.0054], [0.04, 0.0332, 0.0312, 0.0157, 0.0138, 0.0101, 0.007, 0.0065], [0.0691, 0.0446, 0.0239, 0.0211, 0.0128, 0.0083, 0.0078, 0.0073], [0.3287, 0.1067, 0.0781, 0.0474, 0.0197, 0.0164, 0.0106, 0.005], [0.0845, 0.0482, 0.0352, 0.0214, 0.0101, 0.0095, 0.0089, 0.0084], [0.2172, 0.0377, 0.0333, 0.0259, 0.0084, 0.0062, 0.0062, 0.0062], [0.0764, 0.0339, 0.016, 0.0141, 0.0125, 0.0071, 0.0059, 0.0055], [0.1208, 0.1002, 0.078, 0.0197, 0.0144, 0.0136, 0.0106, 0.0099], [0.0396, 0.0054, 0.0054, 0.005, 0.0042, 0.0037, 0.0031, 0.0031], [0.0333, 0.0148, 0.0102, 0.0102, 0.0095, 0.009, 0.0062, 0.0062], [0.0163, 0.0119, 0.0082, 0.0077, 0.006, 0.0056, 0.0053, 0.0047], [0.0776, 0.0304, 0.0184, 0.0163, 0.0135, 0.0087, 0.006, 0.0056], [0.0703, 0.0167, 0.0157, 0.0115, 0.0101, 0.0101, 0.0089, 0.0074], [0.0418, 0.0369, 0.0369, 0.0238, 0.021, 0.0185, 0.0127, 0.0127], [0.1077, 0.0788, 0.0309, 0.029, 0.024, 0.0226, 0.0199, 0.0146], [0.0537, 0.0537, 0.0474, 0.0288, 0.0254, 0.0224, 0.0154, 0.0136], [0.0837, 0.054, 0.0448, 0.024, 0.0212, 0.0175, 0.0155, 0.0145], [0.1026, 0.0622, 0.0516, 0.0294, 0.0276, 0.0229, 0.0202, 0.019], [0.1083, 0.058, 0.0374, 0.0291, 0.0242, 0.0188, 0.0156, 0.0138], [0.1254, 0.0557, 0.0491, 0.028, 0.015, 0.0141, 0.0132, 0.0132], [0.1596, 0.1596, 0.043, 0.0261, 0.0216, 0.0191, 0.0123, 0.0116], [0.2557, 0.083, 0.027, 0.0223, 0.0197, 0.0185, 0.0174, 0.0154], [0.1761, 0.0572, 0.0445, 0.0198, 0.0198, 0.0174, 0.0136, 0.0128], [0.2681, 0.0678, 0.032, 0.0265, 0.0234, 0.022, 0.022, 0.0194], [0.1404, 0.0516, 0.0485, 0.0456, 0.0378, 0.0378, 0.0294, 0.0244], [0.081, 0.0715, 0.0671, 0.0491, 0.0461, 0.0383, 0.0383, 0.0359], [0.1241, 0.0908, 0.0586, 0.0403, 0.0355, 0.0355, 0.026, 0.023], [0.2323, 0.205, 0.0968, 0.0552, 0.0379, 0.0277, 0.0203, 0.0191], [0.2325, 0.1811, 0.1098, 0.038, 0.0357, 0.0357, 0.0296, 0.0191], [0.225, 0.1753, 0.1205, 0.0502, 0.0305, 0.0269, 0.0252, 0.0237], [0.2335, 0.1416, 0.0712, 0.0629, 0.0358, 0.0316, 0.0217, 0.0204], [0.1395, 0.1086, 0.0581, 0.0453, 0.04, 0.0331, 0.0311, 0.0311], [0.1074, 0.0738, 0.054, 0.0448, 0.042, 0.0371, 0.0327, 0.0308], [0.1743, 0.0727, 0.0683, 0.0532, 0.0414, 0.0251, 0.0236, 0.0236], [0.1916, 0.0905, 0.0584, 0.0402, 0.0377, 0.0294, 0.0276, 0.019], [0.2026, 0.0745, 0.0581, 0.0545, 0.0425, 0.0352, 0.0227, 0.0188], [0.2411, 0.0944, 0.0394, 0.0347, 0.0271, 0.0254, 0.0254, 0.0239], [0.2309, 0.0963, 0.0662, 0.0515, 0.0312, 0.0215, 0.0215, 0.019], [0.1999, 0.0887, 0.0649, 0.0649, 0.0573, 0.0446, 0.0446, 0.0347], [0.2029, 0.179, 0.0846, 0.0846, 0.0659, 0.0375, 0.0311, 0.0228], [0.3144, 0.131, 0.0901, 0.0701, 0.0546, 0.0353, 0.0311, 0.0258], [0.3033, 0.2677, 0.1264, 0.0869, 0.041, 0.0249, 0.0194, 0.0133], [0.3003, 0.265, 0.1607, 0.067, 0.0359, 0.0192, 0.0169, 0.0169], [0.381, 0.3362, 0.0354, 0.0313, 0.0313, 0.0244, 0.0244, 0.019], [0.6182, 0.2577, 0.0212, 0.0187, 0.0128, 0.0113, 0.01, 0.0078], [0.3404, 0.3404, 0.2065, 0.0218, 0.0116, 0.0103, 0.0091, 0.008], [0.7276, 0.1433, 0.0677, 0.0171, 0.0092, 0.0081, 0.0081, 0.0063], [0.839, 0.0884, 0.0325, 0.0093, 0.0082, 0.0044, 0.0032, 0.003], [0.8232, 0.1114, 0.0171, 0.0063, 0.0063, 0.0049, 0.0043, 0.0032], [0.8627, 0.0487, 0.0148, 0.0085, 0.0075, 0.004, 0.0035, 0.0035]], "ranks": {}}, {"pos": 497, "top": [[".", "\u00a0", ",", " \u200b\u200b", " \u2013", "\u00a0\u00a0", "\u2013", " "], [" \u200b\u200b", "\u2013", ".", " \u2013", "\u200b\u200b", " ", "\u200b", "["], ["\u2013", ".", ",", " \u2013", "\u2026", " \u200b\u200b", "\u2026.", "["], ["\u30bb\u30ec", " \u200b\u200b", "\ufffd\ufffd", " pornstar", " Highlander", " \u041a\u0440\u0430\u0441\u0438", "&eacute", "\u5510\u4e09"], [" \u200b\u200b", " ", ".", " @", "&D", " PD", " culture", " rein"], [" \u200b\u200b", ".", ",", " Pro", " Hong", " ", " Star", "!"], [" \u200b\u200b", ".", " ", "\u200b\u200b", ",", "!", " .", " Star"], [" \u200b\u200b", ".", ",", " ", "!", " Star", " complex", "-D"], [".", ",", " \u200b\u200b", "...", "\u00a0", " [\u2026]", "!", "......"], [",", ".", " \u200b\u200b", " [\u2026]", " ", "...", "\u00a0", "\u2026."], [".", "...", ",", " \u200b\u200b", " [\u2026]", " ", " [...]", "&nbsp"], [" complex", " vision", " movies", " world", " Hollywood", " culture", " theater", " European"], [" complex", " vision", " world", " technology", " classic", " theater", " artists", " movies"], [" complex", " vision", " world", " technology", " artists", " theater", " lifestyle", " classic"], [" complex", " vision", " world", " technology", " movies", " classic", " games", " movie"], [" movies", " complex", " technology", " world", " vision", " movie", " showcase", " games"], [" complex", " tech", " technology", " world", " showcase", " movies", " movie", " vision"], [" showcase", " tech", " complex", " visuals", " games", " movies", " blockbuster", " movie"], [" complex", " movie", " Hollywood", " games", " drama", " blockbuster", " tech", " theater"], [" complex", " blockbuster", " movie", " Hollywood", " drama", " movies", " showcase", " world"], [" \n\n", "  \n\n", " Hollywood", " complex", "<|endoftext|>", " movie", " TV", " games"], [" gameplay", " games", " gaming", " Hollywood", " Lego", " drama", " movies", " movie"], [" games", " gaming", " game", " gameplay", " movie", " movies", " world", " Hollywood"], [" games", " complex", " world", " game", " gaming", " music", " movie", " movies"], [" games", " gaming", " visuals", " imagery", " gameplay", " architecture", " movie", " drama"], [" visuals", " gameplay", " architecture", " gaming", " artwork", " games", " animations", " landscapes"], [" visuals", " architecture", " gaming", " gameplay", " imagery", " movies", " artwork", " games"], [" games", " gaming", " complex", " video", " movie", " game", " movies", " technology"], [" games", " complex", " technology", " architecture", " gaming", " video", " game", " film"], [" games", " complex", " technology", " architecture", " video", " film", " game", " theater"], [" complex", " games", " technology", " game", " world", " film", " video", " ."], [" complex", " technology", " games", " game", " .", " film", " video", " world"], [" complex", " technology", " games", " game", " film", " video", " world", " architecture"], [" complex", " technology", " architecture", " games", " technologies", " tech", " theater", " game"], [" complex", " technology", " tech", " architecture", " games", " technologies", " gaming", " immersive"], [" complex", " technology", " tech", " architecture", " games", " hardware", " immersive", " technologies"], [" complex", " technology", " tech", " hardware", " architecture", " video", " games", " gaming"], [" complex", " graphics", " animation", " animations", " games", " technology", " architecture", " gameplay"], [" complex", " environments", " graphics", " environment", " scene", " scenarios", " Complex", " games"], [" complex", " visuals", " scene", " graphics", " scenes", " environments", " animation", " architecture"], [" complex", " graphics", " visuals", " animation", " scene", " animations", " architecture", " scenes"], [" complex", " graphics", " visuals", " architecture", " animation", " environments", " scenes", " scene"], [" complex", " graphics", " environments", " visuals", " scenes", " animation", " architecture", " animations"], [" complex", " environments", " scenes", " visuals", " graphics", " animation", " animations", " architecture"], [" complex", " environments", " scenes", " architecture", " environment", " animation", " visuals", " scene"], [" complex", " environments", " scenes", " environment", " architecture", " animation", " visuals", " scenarios"], [" environments", " complex", " environment", " scenes", " scenarios", " visuals", " scene", " contexts"], [" environments", " complex", " scenes", " environment", " scenarios", " visuals", " contexts", " scene"], [" environments", " environment", " scenarios", " visuals", " complex", " scenes", " contexts", " workflows"], [" environments", " scenarios", " contexts", " visuals", " scenes", " environment", " workflows", " complex"], [" environments", " scenarios", " contexts", " environment", " scenes", " visuals", " workflows", " scenario"], [" environments", " scenarios", " contexts", " environment", " scenes", " visuals", " scenario", " viewport"], [" environments", " scenarios", " contexts", " scenes", " scenario", "\u573a\u666f", " environment", " viewport"], [" environments", " scenarios", " viewport", " scenes", " environment", "\u573a\u666f", " contexts", " scenario"], [" environments", " environment", " viewport", "\u573a\u666f", " scenarios", " scenario", " workflows", " scene"], [" environment", " viewport", " environments", "\u573a\u666f", " scenarios", " scene", " scenario", " scenes"], [" scene", "\u573a\u666f", " viewport", " scenes", " renderer", " scenarios", " scenario", " rendering"], ["\u573a\u666f", " scene", " scenario", " viewport", " scenarios", " scenes", "\u573a\u666f\u4e2d", " environment"], [" scene", " viewport", "\u573a\u666f", " scenario", " environment", " scenarios", " scenes", " renderer"], [" scene", " viewport", "\u573a\u666f", " scenario", " scenes", " scenarios", " Scene", "scene"], [" scene", " viewport", " environment", " scenario", "\u573a\u666f", " scenes", " pipeline", " Scene"], [" scene", " viewport", " environment", " scenario", "\u573a\u666f", " pipeline", " scenes", " renderer"], [" scene", " viewport", " environment", " scenario", " pipeline", " engine", " loop", "\u573a\u666f"]], "p": [[0.8439, 0.042, 0.0239, 0.0165, 0.0106, 0.0088, 0.0088, 0.0069], [0.1287, 0.0781, 0.0608, 0.0504, 0.0185, 0.0154, 0.0127, 0.0088], [0.4348, 0.2054, 0.1099, 0.097, 0.023, 0.023, 0.0123, 0.008], [0.0013, 0.0011, 0.001, 0.001, 0.001, 0.0009, 0.0009, 0.0008], [0.1863, 0.0173, 0.005, 0.0041, 0.0039, 0.0034, 0.003, 0.0027], [0.5128, 0.0039, 0.002, 0.0015, 0.0014, 0.0013, 0.0009, 0.0009], [0.6936, 0.0731, 0.0237, 0.0053, 0.0036, 0.0027, 0.0017, 0.0012], [0.345, 0.0723, 0.0183, 0.0104, 0.0036, 0.0028, 0.0026, 0.0016], [0.6522, 0.1284, 0.1206, 0.005, 0.0041, 0.0036, 0.003, 0.0025], [0.4615, 0.0625, 0.0096, 0.0062, 0.0048, 0.0043, 0.0035, 0.0024], [0.4919, 0.1097, 0.0625, 0.0245, 0.0116, 0.0116, 0.0051, 0.0048], [0.0165, 0.0083, 0.0047, 0.0044, 0.0039, 0.0039, 0.0039, 0.0039], [0.014, 0.0085, 0.0043, 0.004, 0.0038, 0.0035, 0.0035, 0.0033], [0.0135, 0.0112, 0.0056, 0.0056, 0.0039, 0.0036, 0.0034, 0.0034], [0.0175, 0.0137, 0.0128, 0.0073, 0.0061, 0.0061, 0.0057, 0.0044], [0.0099, 0.0099, 0.0093, 0.0093, 0.0077, 0.0072, 0.0064, 0.0056], [0.0141, 0.008, 0.0075, 0.0071, 0.0067, 0.0067, 0.0059, 0.0052], [0.0137, 0.0114, 0.0094, 0.0083, 0.0083, 0.0069, 0.0065, 0.0061], [0.0145, 0.012, 0.0106, 0.0093, 0.0088, 0.0082, 0.0077, 0.0077], [0.0101, 0.0074, 0.0074, 0.0062, 0.0058, 0.0045, 0.0042, 0.004], [0.0153, 0.0053, 0.0053, 0.0047, 0.0041, 0.0034, 0.0034, 0.0025], [0.006, 0.0056, 0.0053, 0.0041, 0.0034, 0.0034, 0.0034, 0.0032], [0.0208, 0.0172, 0.0098, 0.0098, 0.0098, 0.0081, 0.0076, 0.0072], [0.0204, 0.0169, 0.0109, 0.009, 0.007, 0.0062, 0.0062, 0.0055], [0.0162, 0.0162, 0.0119, 0.0105, 0.0098, 0.0092, 0.0081, 0.0081], [0.0361, 0.0361, 0.0281, 0.0219, 0.0133, 0.0117, 0.0097, 0.0091], [0.0618, 0.0399, 0.0399, 0.0242, 0.0201, 0.0177, 0.0177, 0.0156], [0.0323, 0.0285, 0.0268, 0.0196, 0.0162, 0.0152, 0.0152, 0.0152], [0.0549, 0.0354, 0.0333, 0.0294, 0.0259, 0.0215, 0.0178, 0.0139], [0.0541, 0.0508, 0.0477, 0.0308, 0.024, 0.0212, 0.0212, 0.0187], [0.0774, 0.0532, 0.0366, 0.0236, 0.0208, 0.0196, 0.0184, 0.0173], [0.0902, 0.0332, 0.0312, 0.0214, 0.0189, 0.0189, 0.0167, 0.0138], [0.1026, 0.0428, 0.0276, 0.0167, 0.0157, 0.013, 0.0115, 0.0102], [0.1847, 0.077, 0.0302, 0.0283, 0.025, 0.025, 0.0172, 0.0118], [0.3263, 0.047, 0.0366, 0.0285, 0.0162, 0.0135, 0.0127, 0.0093], [0.4853, 0.0424, 0.0274, 0.0156, 0.0107, 0.0095, 0.0084, 0.0084], [0.4574, 0.0425, 0.0353, 0.0214, 0.0147, 0.0147, 0.0138, 0.013], [0.3734, 0.027, 0.0254, 0.0198, 0.0198, 0.0198, 0.0186, 0.0175], [0.802, 0.0107, 0.0095, 0.0089, 0.0079, 0.0065, 0.0065, 0.0061], [0.6491, 0.0222, 0.0196, 0.0184, 0.0135, 0.0127, 0.0112, 0.0099], [0.3581, 0.0905, 0.0705, 0.0428, 0.0276, 0.0259, 0.0244, 0.0244], [0.2779, 0.1159, 0.0703, 0.0426, 0.0426, 0.0332, 0.0293, 0.0293], [0.3771, 0.0655, 0.0578, 0.051, 0.0373, 0.0329, 0.031, 0.0257], [0.4055, 0.0584, 0.0484, 0.0455, 0.0401, 0.0313, 0.0259, 0.0229], [0.4723, 0.0724, 0.0564, 0.0284, 0.0207, 0.0172, 0.0172, 0.0172], [0.4325, 0.1094, 0.055, 0.0313, 0.0215, 0.0179, 0.0168, 0.0158], [0.261, 0.2304, 0.066, 0.0582, 0.0514, 0.0454, 0.0157, 0.0115], [0.3294, 0.1069, 0.0833, 0.0833, 0.0735, 0.0446, 0.0254, 0.0145], [0.3425, 0.0866, 0.0866, 0.0493, 0.0435, 0.0435, 0.0339, 0.0193], [0.264, 0.1413, 0.0756, 0.0668, 0.0589, 0.0405, 0.038, 0.0278], [0.3305, 0.1378, 0.1378, 0.0447, 0.0271, 0.0198, 0.0175, 0.0175], [0.3335, 0.1227, 0.1083, 0.0657, 0.0291, 0.0257, 0.0227, 0.0213], [0.2873, 0.1974, 0.0933, 0.0566, 0.0441, 0.0441, 0.0441, 0.0236], [0.456, 0.1153, 0.0699, 0.0545, 0.0545, 0.0292, 0.0257, 0.0227], [0.2622, 0.1403, 0.1238, 0.0964, 0.0851, 0.0516, 0.0402, 0.0355], [0.2643, 0.2058, 0.2058, 0.0757, 0.059, 0.0358, 0.0279, 0.0217], [0.4212, 0.199, 0.0829, 0.0503, 0.0444, 0.0305, 0.0269, 0.0238], [0.4362, 0.3397, 0.059, 0.0406, 0.0406, 0.0246, 0.0091, 0.0071], [0.4038, 0.2775, 0.1683, 0.0482, 0.0201, 0.0177, 0.0138, 0.0095], [0.7529, 0.168, 0.0331, 0.0177, 0.0122, 0.0035, 0.0027, 0.0024], [0.752, 0.1901, 0.033, 0.0074, 0.0045, 0.0035, 0.0019, 0.001], [0.7917, 0.1559, 0.0271, 0.01, 0.0018, 0.0018, 0.0015, 0.0011], [0.8321, 0.0683, 0.0469, 0.0366, 0.0025, 0.0016, 0.0015, 0.0013]], "ranks": {}}, {"pos": 498, "top": [[" \u2013", "\u2026.", "\u00a0\u00a0", ".", "\u2013", "\u2026..", "[", ","], [" \u2013", "  \n\n", "\u2026..", "\u2013", "\u2026.", "[", "\u00a0\u00a0", "\u2013and"], ["\u2026..", "\u2026.", " \u2013", "\u2013", ".", "\u2026", "[", ","], [" **\u201e", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " rasseg", "_episode", " YYS", "\ufffd\ufffd", "(Scene", " \u2019"], [" \u2019", "\u2026.", "\u2026..", " (@", ".@", " \u201d", " Figure", "\u2019s"], ["\u2026..", "\u2026.", " \u2019", "!", " \u201d", "\u2019s", "!.", "."], [".", "\u2026.", "\u2026..", "!", " \u2019", "\u00ae", " \u201d", "\u2019s"], [" \u201a", "!.", "\u00ae", " \u201e", " \u00bb", " \u00ae", "agle", ".\u00bb"], [".", "!.", ",", "!", "\u00b3", "\u00ae", ".\u00bb", ".\u201d"], [",", ".", ";", "!", ":", "\u2026.", "!.", ",."], [".", ",", ";", "!", "\u2026.", "!.", "\u00b3", ":"], [" rapidly", " orchestrated", " spectacular", " gathering", " arguably", "\u2019s", " largely", " complex"], [" \u00bb", " \u00ab", ",", " orchestrated", " rapidly", ".\u00bb", ".", " spectacular"], [",", " rapidly", " \u2013", " largely", " orchestrated", " as", " arguably", " dramatically"], [" perhaps", " as", " rapidly", " dramatically", " along", " that", " ", ","], [" perhaps", " arguably", " as", " dramatically", " rapidly", " once", " along", " much"], [" arguably", " largely", " rapidly", " notably", " dramatically", " heavily", ",", " perhaps"], [" arguably", " orchestrated", " notably", " rapidly", " heavily", " dubbed", " dramatically", " sprawling"], [" arguably", " orchestrated", " dubbed", " notably", " dramatically", " sprawling", " heavily", " largely"], [" arguably", " notably", " orchestrated", " ultimately", " dramatically", " largely", " rapidly", " sprawling"], [" notably", " arguably", " ultimately", " largely", " dramatically", " rapidly", " perhaps", " heavily"], [" orchestrated", "\u8fd9\u4e00\u5e55", " arguably", " notably", "\u53cd\u5012\u662f", " ultimately", " dramatically", " complex"], [" notably", " orchestrated", " arguably", " ultimately", "\u8fd9\u4e00\u5e55", " dramatically", " complex", " rapidly"], [" ,", " notably", " ultimately", " .", " complex", " rapidly", " dramatically", " largely"], [" notably", " arguably", " dramatically", " ,", " rapidly", " ultimately", " complex", " amidst"], [" complex", " orchestrated", "\u8fd9\u4e00\u5e55", " dramatically", " arguably", " sprawling", " notably", "\u6ce2\u53ca"], [" ___", " complex", " sprawling", " orchestrated", " dramatically", " arguably", " rapidly", " \n\n"], [" complex", " ,", " rapidly", " heavily", " notably", " dramatically", " arguably", " _"], [" complex", " heavily", " .", " rapidly", " dramatically", " sprawling", " ,", " ?"], [" complex", " .", " heavily", " ,", " dramatically", " rapidly", " modern", " during"], [" .", " complex", " ,", " during", " over", " heavily", " with", " that"], [" .", " complex", " ,", " with", " during", " in", " that", " over"], [" .", " complex", " even", " ,", " with", " that", " heavily", " under"], [" .", " complex", " heavily", " even", " potentially", " rapidly", " under", " typically"], [" .", " complex", " .\"", " heavily", " potentially", " likely", " arguably", " even"], [" .", " complex", " .\"", " likely", " heavily", " without", " \u2014", " potentially"], [" .", " complex", " .\"", " even", " likely", " without", " .**", " heavily"], [" .", " complex", " .\"", " without", " even", " likely", " .**", " potentially"], [" complex", " .", " without", " .\"", " even", " complexity", " despite", " .**"], [" complex", " .", " without", " .\"", " even", " .**", " complexity", " with"], [" complex", " .", " without", " .\"", " with", ".[", " even", " complexity"], [" complex", " .", " .\"", " without", " even", " complexity", " heavily", "complex"], [" complex", " .", " without", " complexity", " .**", " .\"", "complex", " even"], [" complex", " without", " .", " complexity", " even", " combined", "complex", " heavily"], [" complex", " .", " without", " complexity", " combined", " even", " heavily", " with"], [" complex", " without", " .", " combined", " even", " complexity", " mixed", " unless"], [" complex", " even", " without", " complexity", ".**", " unless", "complex", "\u2014even"], [".**", " without", " complex", ".\\", " WITHOUT", ".", " combined", " unless"], [".", ".**", " unless", "+.", ".\\", " without", " WITHOUT", "++."], [".", " unless", ".**", "+.", "++.", ".\"", ".\\", "**."], [".", "+.", ".**", " unless", "++.", "**.", "\u5c24\u5176\u662f\u5728", "*."], [".**", "+.", ".", "**.", "++.", "*.", " unless", ".\\"], [" unless", "+.", ".", " without", ".**", "++.", "\u540c\u65f6\u8fd8\u8981", "**."], [" unless", " with", "\u540c\u65f6\u8fd8\u8981", " without", "+.", "++.", "with", " WITHOUT"], [" unless", " with", "\u540c\u65f6\u8fd8\u8981", " without", "with", " WITHOUT", " involving", "+."], [" with", " unless", " without", "\u540c\u65f6\u8fd8\u8981", " WITHOUT", "with", " interacting", " synced"], [" unless", " with", " without", "\u5c24\u5176\u662f", "\u5c24\u5176\u662f\u5728", " WITHOUT", " especially", "with"], [" unless", " with", " without", "\u5c24\u5176\u662f", "with", " involving", " especially", "-render"], [" with", " unless", " without", "with", " involving", " especially", "\u5c24\u5176\u662f", "."], [" with", " async", "async", " unless", " without", " Async", " asynchronously", "."], [" with", " async", ".", " unless", " without", " driven", "async", " synced"], [".", " with", " without", " unless", " async", " driven", ",", " populated"], [".", " with", ",", " without", " unless", " driven", " async", " populated"]], "p": [[0.4765, 0.1647, 0.0828, 0.0731, 0.0391, 0.0367, 0.0286, 0.0269], [0.2153, 0.0744, 0.0699, 0.033, 0.0257, 0.0078, 0.0045, 0.0033], [0.2854, 0.2519, 0.2223, 0.105, 0.0341, 0.0301, 0.0151, 0.0142], [0.006, 0.0025, 0.0021, 0.0016, 0.0015, 0.0014, 0.0014, 0.0012], [0.0661, 0.0101, 0.0058, 0.0058, 0.0045, 0.0045, 0.0037, 0.0035], [0.0283, 0.0283, 0.0104, 0.0059, 0.0052, 0.0052, 0.0049, 0.0041], [0.0446, 0.0419, 0.0394, 0.0326, 0.0288, 0.0239, 0.0154, 0.0154], [0.0098, 0.0092, 0.0072, 0.0056, 0.0036, 0.003, 0.0025, 0.0022], [0.2843, 0.0464, 0.0385, 0.0361, 0.0319, 0.03, 0.0264, 0.0219], [0.5739, 0.0237, 0.0112, 0.0053, 0.0047, 0.0036, 0.0034, 0.0021], [0.3922, 0.3461, 0.0134, 0.0126, 0.0072, 0.0063, 0.0053, 0.0044], [0.004, 0.0033, 0.0023, 0.0018, 0.0018, 0.0015, 0.0014, 0.0012], [0.0057, 0.0044, 0.0034, 0.0032, 0.0029, 0.0029, 0.0029, 0.0024], [0.0233, 0.0059, 0.0038, 0.0036, 0.0036, 0.0032, 0.0032, 0.0032], [0.0087, 0.0082, 0.0072, 0.0068, 0.0064, 0.0056, 0.0056, 0.0053], [0.0078, 0.0065, 0.0061, 0.0057, 0.0054, 0.005, 0.005, 0.0044], [0.0166, 0.0084, 0.0069, 0.0065, 0.0065, 0.0065, 0.0051, 0.0045], [0.0137, 0.0094, 0.0054, 0.0044, 0.0039, 0.0032, 0.0032, 0.0032], [0.0268, 0.0196, 0.0064, 0.0053, 0.0053, 0.0041, 0.0041, 0.0039], [0.0228, 0.0167, 0.0114, 0.0079, 0.0069, 0.0065, 0.0048, 0.0042], [0.0213, 0.0166, 0.0156, 0.0101, 0.0078, 0.0061, 0.0051, 0.0048], [0.0111, 0.0046, 0.0041, 0.0038, 0.0025, 0.002, 0.0017, 0.0016], [0.0097, 0.0091, 0.0066, 0.0049, 0.004, 0.0038, 0.0038, 0.0038], [0.0297, 0.0246, 0.0149, 0.014, 0.0124, 0.0096, 0.0085, 0.0085], [0.0154, 0.012, 0.0099, 0.0099, 0.0077, 0.0064, 0.0057, 0.0047], [0.0073, 0.0069, 0.0039, 0.0037, 0.0037, 0.0035, 0.0032, 0.0027], [0.0228, 0.0177, 0.0107, 0.0089, 0.0074, 0.0061, 0.0058, 0.0058], [0.0515, 0.0354, 0.0243, 0.0229, 0.0157, 0.0139, 0.013, 0.0115], [0.2517, 0.0265, 0.022, 0.0182, 0.0142, 0.0125, 0.0104, 0.0081], [0.3271, 0.1062, 0.0185, 0.0144, 0.0127, 0.0119, 0.0064, 0.0064], [0.7071, 0.07, 0.0258, 0.0095, 0.0065, 0.0057, 0.0057, 0.0054], [0.7057, 0.0398, 0.0188, 0.0083, 0.0083, 0.0078, 0.0065, 0.0057], [0.7065, 0.0617, 0.0095, 0.0051, 0.0051, 0.0048, 0.0039, 0.0035], [0.2008, 0.1664, 0.0308, 0.0212, 0.0113, 0.0088, 0.0083, 0.0078], [0.5072, 0.1205, 0.0269, 0.0153, 0.0093, 0.0093, 0.0056, 0.0056], [0.7299, 0.0679, 0.0438, 0.0056, 0.0049, 0.0043, 0.003, 0.0026], [0.6115, 0.0998, 0.0569, 0.0093, 0.0087, 0.0087, 0.0082, 0.006], [0.4455, 0.1126, 0.0727, 0.0222, 0.0184, 0.0126, 0.0105, 0.0082], [0.4914, 0.1698, 0.0334, 0.0168, 0.0168, 0.007, 0.0055, 0.0051], [0.4892, 0.2311, 0.0259, 0.0178, 0.0122, 0.0095, 0.0054, 0.0042], [0.5491, 0.1304, 0.0398, 0.02, 0.0114, 0.0114, 0.0094, 0.0069], [0.5985, 0.0862, 0.015, 0.0097, 0.0085, 0.0075, 0.0062, 0.0055], [0.6783, 0.0631, 0.0085, 0.0085, 0.0055, 0.0055, 0.0055, 0.0043], [0.6652, 0.0214, 0.0138, 0.0138, 0.0089, 0.0084, 0.0069, 0.0069], [0.6998, 0.0307, 0.0239, 0.0094, 0.0088, 0.0047, 0.0044, 0.0044], [0.6425, 0.0598, 0.0171, 0.0125, 0.0125, 0.0046, 0.0038, 0.0034], [0.3887, 0.0282, 0.0233, 0.0206, 0.0182, 0.0171, 0.016, 0.0133], [0.1671, 0.1474, 0.0789, 0.0789, 0.0422, 0.0309, 0.029, 0.0256], [0.7054, 0.0842, 0.0451, 0.0241, 0.0241, 0.0241, 0.0241, 0.0107], [0.4313, 0.14, 0.109, 0.0661, 0.0229, 0.0157, 0.013, 0.0122], [0.3227, 0.2218, 0.0816, 0.072, 0.0495, 0.0385, 0.0151, 0.0133], [0.1978, 0.1745, 0.154, 0.0825, 0.0825, 0.0344, 0.0323, 0.0268], [0.4484, 0.0779, 0.0473, 0.0473, 0.0473, 0.0417, 0.0417, 0.0368], [0.5181, 0.09, 0.0425, 0.0331, 0.0275, 0.0258, 0.0147, 0.0138], [0.3373, 0.1593, 0.0551, 0.0517, 0.023, 0.0216, 0.019, 0.0131], [0.217, 0.1915, 0.0549, 0.0313, 0.0215, 0.0202, 0.0167, 0.0157], [0.3501, 0.1654, 0.0734, 0.0445, 0.021, 0.0164, 0.0164, 0.0144], [0.2758, 0.2434, 0.051, 0.0241, 0.0166, 0.0129, 0.0129, 0.0121], [0.5155, 0.1897, 0.0351, 0.0146, 0.0129, 0.0078, 0.0069, 0.0069], [0.3423, 0.3021, 0.0525, 0.0463, 0.0384, 0.0361, 0.0206, 0.0125], [0.4185, 0.154, 0.1199, 0.047, 0.0414, 0.0184, 0.0173, 0.0112], [0.5968, 0.2819, 0.0231, 0.0169, 0.0149, 0.0071, 0.0062, 0.0031], [0.9088, 0.0581, 0.0242, 0.0033, 0.002, 0.0005, 0.0003, 0.0002]], "ranks": {}}, {"pos": 499, "top": [[" \u2013", ".", "\u2013", ",", ";", "\u00a0\u00a0", "\u00a0", " \u200b\u200b"], [" \u2013", "\u2013", "\u2013and", " \u200b\u200b", " \u2013,", "  \n", " very", " Hammer"], ["\u2013", " \u2013", ",", ".", "\u2026..", "\u2013and", "\u2026.", "\u2026"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Blowjob", "-------------</", " ;;^", "----------</", " pornstar"], [" **\u201c", " \u041a\u0440\u0430\u0441\u0438", " Millennials", " cittadin", "\u65b0\u52a0\u5761", " tysi\u0119", "_CLI", "\u52a0\u62ff\u5927"], ["<|quad_end|>", "!\u201d.", " **\u201c", ":href", "!:", "fst", " \u0628\u0648\u062a\u064a\u0646", " Klimas"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\n\n", "  \n", "    \n\n", " **\u201c"], ["  \n\n", "   \n\n", " \n\n", "    \n\n", "     \n\n", "      \n\n", "       \n\n", "   \n"], [" \n\n", "  \n\n", "   \n\n", "    \n\n", "     \n\n", "\t\n\n", "      \n\n", "       \n\n"], ["\u51ed\u501f\u7740", "\u62e5\u6709\u7740", "<|object_ref_start|>", "\u53ef\u9009\u4e2d", "\tHX", "\u5468\u906d", "\u63d0\u4f9b\u66f4\u52a0", "   \n\n"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "\u00a0", "\n\n", " arguably", "  \n  \n"], [" arguably", " **", " swiftly", " incredibly", "\u51ed\u501f\u7740", "\u706b\u901f", "\u751a\u81f3\u4f1a", "\u7c89\u4e1d\u4eec"], [" anyways", " arguably", "\u51ed\u501f\u7740", "\u62e5\u6709\u7740", " swiftly", " nonetheless", "\u7c89\u4e1d\u4eec", " incredibly"], ["<|endoftext|>", " arguably", " swiftly", "\u5373\u4fbf\u662f", "\u62e5\u6709\u7740", "\u51ed\u501f\u7740", "\u5373\u4fbf", " Thankfully"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "\t\n\n", " swiftly", " arguably", "   \n\n"], ["\u62e5\u6709\u7740", "\u51ed\u501f\u7740", "<|endoftext|>", "\u9760\u7740", "\u5373\u4fbf\u662f", " arguably", "\u5373\u4fbf", " transitioning"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", " [\u2026]", "...", "<|file_sep|>", "\u00a0"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "...**", "    \n\n", " \r\n\r\n", "<|im_end|>"], ["...**", "  \n\n", " \n\n", "   \n\n", "\r\n\r\n", "\u2026**", " \r\n\r\n", " **"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "...**"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>"], ["\n\n", " \n\n", "\r\n\r\n", "...**", "  \n\n", " \r\n\r\n", "   \n\n", " **"], ["\n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "...**", "\t\n\n"], ["\n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", "...**", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n", "   \n\n", "<|im_end|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "...**", " \r\n\r\n", "\u2026**", "   \n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", "...**", " \r\n\r\n", "\u2026**"], ["\n\n", " \n\n", "<|endoftext|>", "  \n\n", "\r\n\r\n", "...**", "   \n\n", " ..."], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "...**", "...", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "...", "   \n\n", " \r\n\r\n"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "...", " ...", " [...]", "\r\n\r\n"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", " ...", "...", "\r\n\r\n", " \u2026"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", " **", " \u2026", " ...", " even"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\u2026**", " \u2026", "\r\n\r\n", "...**"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\u2026**", "   \n\n", " \r\n\r\n", "\r\n\r\n"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", "\u2026**", "   \n\n", " \u2026", " [\u2026]"], ["<|endoftext|>", "  \n\n", "\n\n", " \n\n", "\u2026**", "   \n\n", "\u2014even", "!**"], ["<|endoftext|>", "  \n\n", "\n\n", "\u2026**", " \n\n", "\u2026\u2026", "\u2014even", "\u2026"], ["<|endoftext|>", "  \n\n", "\u2026**", "\n\n", "\u2014even", "\u2026\u2026", " **\u201c", " \u2026"], ["<|endoftext|>", "  \n\n", "\u2026**", " [\u2026]", "\u2026\u2026", "!**", " **\u201c", "\u2014even"], ["<|endoftext|>", "  \n\n", "\u2026\u2026", " [\u2026]", "<|im_end|>", "\u2026**", "\u2014even", "[\u2026]"], ["<|endoftext|>", "\n\n", "  \n\n", " \n\n", "\u2014even", "   \n\n", "\u2014if", "\u2014and"], ["  \n\n", "<|endoftext|>", "\n\n", "\u2014even", " \n\n", "\u65e0\u6cd5\u6ee1\u8db3", "\u6839\u672c\u65e0\u6cd5", "\u505a\u4e0d\u5230"], ["  \n\n", "\n\n", "\u2014even", "<|endoftext|>", " \n\n", " even", " inability", " \u2014"], ["  \n\n", "\n\n", "<|endoftext|>", " even", "\u2014even", " \n\n", " inability", " impossible"], ["  \n\n", "\n\n", " \n\n", " even", "\u2014even", "<|endoftext|>", "   \n\n", " impossible"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "    \n\n", "\t\n\n", "\r\n\r\n", "\u2014even"], ["\n\n", "  \n\n", " \n\n", "   \n\n", "    \n\n", "\t\n\n", "\r\n\r\n", "     \n\n"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", " additionally", "    \n\n", " **\""], ["\n\n", "  \n\n", " additionally", " \n\n", "Additionally", " ALSO", " Additionally", "\u6b64\u5916"], ["\n\n", "  \n\n", "Additionally", " additionally", "\u6b64\u5916", " \n\n", " Additionally", " ALSO"], ["\n\n", "  \n\n", " \n\n", "Additionally", " Additionally", " ALSO", " additionally", "\u6b64\u5916"], ["Additionally", "\n\n", " additionally", "\u6b64\u5916", " Additionally", "  \n\n", " **\"", " **+"], ["\n\n", " **", " **\"", " **+", "Additionally", " **\u201c", " Additionally", "  \n\n"], [" additionally", " Additionally", "\n\n", "Additionally", "\u6b64\u5916", " **", " **+", " **\""], [" additionally", " **", " **+", " Additionally", "\n\n", "\u6b64\u5916", "Additionally", " **\""], ["\n\n", " Additionally", "Additionally", " additionally", " **", "\u6b64\u5916", " **+", " **\""], ["\n\n", " Additionally", "Additionally", " additionally", "\u6b64\u5916", "  \n\n", " \n\n", " **"], ["\n\n", " Additionally", "Additionally", " additionally", " \n\n", " **", "\u6b64\u5916", "  \n\n"], ["\n\n", " Plugins", " plugins", " Additionally", " Plugin", " plugin", " **", " scripting"], ["\n\n", " Plugins", " plugins", " Additionally", " plugin", " Plugin", " **", " \n\n"], ["\n\n", " Plugins", " **", " Additionally", " plugins", " \n\n", " Plugin", "  \n\n"], [" Additionally", " Plugins", "\n\n", " Mobile", " Plugin", " The", " Android", " Linux"]], "p": [[0.8025, 0.1086, 0.0453, 0.0311, 0.0023, 0.0011, 0.0009, 0.0009], [0.1758, 0.0144, 0.0047, 0.0034, 0.0025, 0.0011, 0.001, 0.001], [0.525, 0.11, 0.0805, 0.0627, 0.0488, 0.0357, 0.018, 0.0123], [0.0089, 0.0069, 0.0057, 0.0035, 0.0035, 0.0033, 0.0027, 0.0022], [0.0018, 0.0017, 0.0016, 0.0015, 0.0013, 0.0012, 0.0011, 0.0011], [0.0017, 0.0013, 0.0011, 0.0011, 0.0009, 0.0009, 0.0008, 0.0006], [0.7279, 0.1347, 0.0249, 0.0194, 0.0171, 0.0171, 0.0052, 0.0038], [0.3259, 0.3061, 0.1276, 0.0414, 0.0162, 0.0077, 0.0077, 0.0072], [0.5837, 0.1895, 0.1476, 0.0329, 0.0083, 0.0083, 0.005, 0.0031], [0.0018, 0.0015, 0.0009, 0.0007, 0.0007, 0.0007, 0.0006, 0.0006], [0.5726, 0.0173, 0.0162, 0.0064, 0.005, 0.0019, 0.0016, 0.0015], [0.0035, 0.0021, 0.0019, 0.0011, 0.0011, 0.001, 0.0009, 0.0009], [0.0022, 0.0022, 0.0014, 0.0013, 0.0013, 0.0012, 0.0012, 0.0012], [0.0088, 0.0047, 0.0042, 0.0027, 0.0024, 0.002, 0.002, 0.0015], [0.6853, 0.0466, 0.0161, 0.0134, 0.0025, 0.0022, 0.0019, 0.0016], [0.015, 0.0059, 0.0038, 0.0036, 0.0034, 0.0023, 0.0023, 0.0022], [0.7451, 0.042, 0.0327, 0.01, 0.0078, 0.005, 0.0029, 0.0021], [0.5488, 0.2592, 0.0743, 0.051, 0.0114, 0.0083, 0.0065, 0.0057], [0.3794, 0.1486, 0.0311, 0.0275, 0.0177, 0.0115, 0.0108, 0.0108], [0.4574, 0.1907, 0.1231, 0.1086, 0.0177, 0.013, 0.0089, 0.0051], [0.9775, 0.0123, 0.0058, 0.004, 0.0001, 0.0001, 0.0, 0.0], [0.4123, 0.0673, 0.0594, 0.036, 0.0281, 0.0091, 0.0052, 0.0052], [0.8361, 0.0778, 0.0324, 0.0269, 0.0056, 0.0023, 0.0017, 0.0007], [0.6626, 0.313, 0.0107, 0.0074, 0.0019, 0.0005, 0.0004, 0.0003], [0.9289, 0.0462, 0.015, 0.0049, 0.0026, 0.0008, 0.0005, 0.0002], [0.8361, 0.0881, 0.0324, 0.0223, 0.0093, 0.0039, 0.0014, 0.0013], [0.9901, 0.0059, 0.0017, 0.0012, 0.0005, 0.0004, 0.0001, 0.0], [0.9961, 0.0025, 0.0008, 0.0005, 0.0001, 0.0, 0.0, 0.0], [0.9928, 0.0046, 0.0012, 0.001, 0.0003, 0.0, 0.0, 0.0], [0.7778, 0.1532, 0.0387, 0.0266, 0.0012, 0.0008, 0.0003, 0.0002], [0.9226, 0.0668, 0.008, 0.0016, 0.0005, 0.0003, 0.0001, 0.0], [0.9542, 0.0419, 0.0021, 0.0005, 0.0004, 0.0004, 0.0001, 0.0001], [0.8072, 0.1801, 0.0054, 0.0029, 0.0011, 0.0006, 0.0003, 0.0003], [0.9802, 0.0085, 0.0051, 0.0045, 0.0004, 0.0003, 0.0001, 0.0001], [0.9554, 0.0327, 0.0064, 0.0012, 0.0009, 0.0003, 0.0002, 0.0002], [0.975, 0.0158, 0.0051, 0.0027, 0.0004, 0.0001, 0.0001, 0.0001], [0.7503, 0.1674, 0.0544, 0.0074, 0.0033, 0.0014, 0.0006, 0.0005], [0.925, 0.0461, 0.0075, 0.0049, 0.0019, 0.0012, 0.0011, 0.0006], [0.9588, 0.0199, 0.0042, 0.0027, 0.0016, 0.001, 0.0008, 0.0006], [0.8471, 0.0449, 0.029, 0.0069, 0.0065, 0.0054, 0.0054, 0.0047], [0.9315, 0.0281, 0.0055, 0.0038, 0.0022, 0.0016, 0.0015, 0.0015], [0.5849, 0.1899, 0.1676, 0.033, 0.0069, 0.0014, 0.0004, 0.0004], [0.3052, 0.2377, 0.1055, 0.0725, 0.0195, 0.0067, 0.0053, 0.0041], [0.4449, 0.2102, 0.0933, 0.0566, 0.0092, 0.0046, 0.0041, 0.0028], [0.3827, 0.1698, 0.0708, 0.0191, 0.0168, 0.0102, 0.0066, 0.0066], [0.8328, 0.0603, 0.0173, 0.0072, 0.006, 0.0019, 0.0017, 0.0014], [0.7843, 0.175, 0.039, 0.001, 0.0002, 0.0001, 0.0, 0.0], [0.5949, 0.3609, 0.0431, 0.0007, 0.0001, 0.0001, 0.0, 0.0], [0.8504, 0.0791, 0.0616, 0.0039, 0.0016, 0.0004, 0.0004, 0.0002], [0.3495, 0.2402, 0.212, 0.078, 0.0368, 0.0253, 0.0253, 0.0073], [0.4911, 0.2047, 0.0967, 0.0518, 0.0403, 0.0403, 0.0216, 0.0148], [0.7851, 0.1063, 0.0569, 0.0163, 0.0068, 0.0053, 0.0053, 0.0036], [0.2446, 0.1483, 0.1155, 0.1155, 0.1155, 0.0701, 0.0546, 0.0331], [0.4568, 0.1309, 0.1019, 0.0482, 0.0375, 0.0375, 0.0375, 0.0258], [0.372, 0.1369, 0.1208, 0.0941, 0.0733, 0.057, 0.0238, 0.0238], [0.2199, 0.1334, 0.1039, 0.0917, 0.0714, 0.063, 0.063, 0.0433], [0.9394, 0.025, 0.0063, 0.0044, 0.0032, 0.0028, 0.0026, 0.0017], [0.9615, 0.0176, 0.0039, 0.0031, 0.0021, 0.0014, 0.0014, 0.0012], [0.9489, 0.0325, 0.0034, 0.0034, 0.0015, 0.0014, 0.0011, 0.001], [0.8108, 0.0666, 0.0666, 0.0131, 0.007, 0.0062, 0.0035, 0.0033], [0.9626, 0.0121, 0.0073, 0.0065, 0.0013, 0.0012, 0.001, 0.0009], [0.9749, 0.0074, 0.004, 0.004, 0.0024, 0.0015, 0.0006, 0.0006], [0.3232, 0.2221, 0.2221, 0.0562, 0.0437, 0.0182, 0.0098, 0.0092]], "ranks": {}}, {"pos": 500, "top": [[".", " \u200b\u200b", "\u00a0\u00a0", "  \n\n", "  ", "   \n", "  \n", " \u2013"], [" **:", " **'", " **:**", " Blowjob", " \u062f\u0645\u0634", "\uff1a**", "\uff1f**", " (**"], ["\u2026**", "\u3002", "**?", "\uff1f**", "\u2026..", "\u2026\"", "**\u3002", "**!"], ["\uff1f**", " **\u201c", "\uff1a**", " **\u25a0", " **\u3010", " **\u25cb", " Blowjob", " milfs"], [" **\u201c", "  \n\n", "\uff1a**", "\uff1f**", "**\u3002", " \n\n\n\n", " **\u3010", "\u2019**"], [" **\u201c", "\uff1f**", "\uff1a**", " **\u3010", "**\u3002", "\u2019**", "\u662f", "\u3002"], [" **\u201c", " **\u3010", "  \n\n", "\uff1f**", "\u201d**", "\uff1a**", "**\u3002", "\uff09**"], ["  \n\n", " **\u3010", " **\u201c", "   \n\n", "\uff1f**", "  \r\n\r\n", "\uff1a**", " \n\n"], ["  \n\n", " \n\n", "   \n\n", "    \n\n", "     \n\n", "       \n\n", "      \n\n", "\r\n\r\n"], [" **#", " **\u201c", " **\u3010", "  \n\n", "  \r\n\r\n", "   \n\n", " **+", "\u2019**"], ["  \n\n", " \n\n", " **\u201c", "<|im_end|>", "   \n\n", "  \r\n\r\n", "\r\n\r\n", "\n\n"], [" **\u201c", " **#", " **\u3010", " **", " **\u2018", " **+", " **'", "\u2019**"], [" **\u201c", " **#", " **\u3010", " **", " **+", " **'", " **\u2018", "...**"], [" **\u201c", " **#", " **'", " **\u2018", " **+", "\u2026**", " **", "\u2019**"], ["  \n\n", "\r\n\r\n", " \n\n", "\t\n\n", "  \r\n\r\n", "\n\n", " \r\n\r\n", "\t\t\n\n"], ["  \n\n", "\r\n\r\n", "\t\t\n\n", "\t\n\n", "\u2026**", "  \r\n\r\n", " mithilfe", "   \n\n"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n", "\r\n\r\n", "<|im_end|>"], ["  \n\n", " \n\n", "   \n\n", "  \r\n\r\n", " \r\n\r\n", "<|endoftext|>", "\t\n\n", "\r\n\r\n"], ["  \n\n", " **", " **#", " **\u201c", " **'", " **\u3010", "...**", " **\u2018"], ["  \n\n", " \n\n", " **", " **\u201c", " **#", "\r\n\r\n", "<|endoftext|>", " \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>"], [" **", " **\u201c", "  \n\n", " **#", " **\u2018", " \n\n", " **'", " **\u3010"], ["  \n\n", "<|endoftext|>", " \n\n", "\r\n\r\n", "\n\n", " \r\n\r\n", " **", "<|im_end|>"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "<|im_end|>", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|im_end|>"], ["  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "<|endoftext|>", "\n\n", "  \r\n\r\n", "   \n\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n", "   \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", " \r\n\r\n", "\r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "  \r\n\r\n", " \r\n\r\n", "\r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", " @", "\r\n\r\n", " \u2018"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", " **", "\r\n\r\n", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n", "\r\n\r\n", "\n\n"], ["  \n\n", "<|endoftext|>", " \n\n", "  \r\n\r\n", "\u2026**", "   \n\n", " **\u201c", " \r\n\r\n"], ["  \n\n", "<|endoftext|>", "\u2026**", " \n\n", " **\u201c", "  \r\n\r\n", "   \n\n", "<|im_end|>"], ["  \n\n", "<|endoftext|>", " \n\n", " **\u201c", "   \n\n", "  \r\n\r\n", "\u2026**", "!**"], ["  \n\n", "<|endoftext|>", " **\u201c", "\u2026**", "**\u2014", " \n\n", " **", "!**"], ["<|endoftext|>", "  \n\n", "\u2026**", " **\u201c", "!**", "?**", "**\u2014", "**"], ["  \n\n", "<|endoftext|>", " **\u201c", "\u2026**", "!**", "**\u2014", "?**", " **\u2014"], ["<|endoftext|>", "  \n\n", "\u2026**", " **\u201c", "**\u2014", "!**", "?**", "**"], ["<|endoftext|>", "  \n\n", " **\u201c", "**\u2014", "\u2026**", " **\u2014", "!**", "?**"], [" **\u201c", "\u2026**", "**\u2014", "  \n\n", " **\u2014", "!**", "\uff1a**", "<|endoftext|>"], [" **\u201c", "  \n\n", "\uff1a**", "**\u2014", "\u2026**", " **\u2014", "<|endoftext|>", "\uff1f**"], ["  \n\n", "\u2026**", " **\u201c", "<|endoftext|>", "**\u2014", " **", "\uff1a**", " **\u2018"], ["  \n\n", " **\u201c", "\u2026**", " **", "\uff1a**", "**", " **\u2018", "\u2019**"], ["  \n\n", " **\u201c", "**", "\uff1a**", ":**", "\u2026**", "!**", "**\u2014"], ["  \n\n", " **\u201c", ":**", "**", "\uff1a**", "!**", "**\u2014", "\u2026**"], ["  \n\n", " **\u201c", " **", "**", "!**", " **\"", "\u2019**", "\uff1a**"], ["  \n\n", " **\u201c", " **\"", " **", " **+", "!**", " **#", "**"], ["  \n\n", " **\u201c", " **\"", " \n\n", " **", "\u2019**", "   \n\n", "**"], [" **", "**", " **\u201c", " **\"", "  \n\n", ";**", "-**", "\u2019**"], [" **", "**", " **\"", " **\u201c", "-**", ";**", "\u2019**", ">**"], [" **", "**", "\u2019**", " **\u201c", " **\"", "-**", ";**", ">**"], [" **", "**", "\u2019**", "-**", " **\u201c", " **\"", ";**", ">**"], [" **", "**", "\u2019**", "-**", " **\u201c", " **\"", ">**", ";**"], ["**", " **", "\u2019**", " **\"", " **\u201c", "-**", " Additionally", ";**"], ["**", " **", "\u2019**", "Additionally", " **\"", " **\u201c", " Additionally", "\u5176\u6b21"], ["**", " **", "\u2019**", " **\"", " **\u201c", "Additionally", " Additionally", "-**"], ["**", " **", " **\"", "-**", "\u2019**", " **\u201c", " Additionally", ";**"], [" **", "**", " **\"", " **\u201c", " Additionally", "-**", "\u2019**", "Additionally"], ["**", " **", " **\"", "***", " ***", " Additionally", "-**", " **\u201c"], ["**", " **", "***", "Additionally", " Additionally", "\"**", "*", "---"]], "p": [[0.2578, 0.1297, 0.1218, 0.0949, 0.0575, 0.0212, 0.0199, 0.0165], [0.015, 0.0124, 0.0091, 0.0071, 0.0071, 0.0066, 0.0062, 0.0062], [0.3202, 0.0977, 0.0298, 0.028, 0.028, 0.0218, 0.0181, 0.0141], [0.0525, 0.0339, 0.0206, 0.0181, 0.0181, 0.0181, 0.017, 0.0125], [0.5586, 0.0971, 0.0553, 0.052, 0.0158, 0.0149, 0.014, 0.0109], [0.7917, 0.0573, 0.0211, 0.0136, 0.0106, 0.0094, 0.0088, 0.0057], [0.2629, 0.1807, 0.103, 0.0967, 0.0379, 0.0314, 0.0295, 0.0277], [0.2556, 0.2255, 0.094, 0.083, 0.0646, 0.0197, 0.0174, 0.0163], [0.7219, 0.1254, 0.0862, 0.0132, 0.0091, 0.0071, 0.0055, 0.0043], [0.2322, 0.1323, 0.1031, 0.0803, 0.0356, 0.0277, 0.023, 0.023], [0.8829, 0.044, 0.0208, 0.0183, 0.0067, 0.0052, 0.0036, 0.0022], [0.7271, 0.1115, 0.0319, 0.0319, 0.022, 0.0194, 0.0194, 0.0071], [0.4149, 0.2221, 0.0636, 0.0386, 0.0386, 0.032, 0.0301, 0.0234], [0.3628, 0.0977, 0.0556, 0.0523, 0.0491, 0.0407, 0.028, 0.028], [0.4105, 0.1176, 0.0359, 0.0247, 0.0218, 0.0192, 0.0169, 0.014], [0.1184, 0.0299, 0.0182, 0.0141, 0.0086, 0.0086, 0.0076, 0.0076], [0.6629, 0.1899, 0.0792, 0.0146, 0.0065, 0.0065, 0.0061, 0.0037], [0.8648, 0.038, 0.0203, 0.009, 0.0075, 0.0075, 0.0051, 0.0051], [0.2962, 0.1399, 0.109, 0.0962, 0.0454, 0.0332, 0.0332, 0.0312], [0.7434, 0.0888, 0.0288, 0.0154, 0.0136, 0.0113, 0.0106, 0.0088], [0.5353, 0.3679, 0.0821, 0.0087, 0.0019, 0.0008, 0.0007, 0.0005], [0.2249, 0.2249, 0.1204, 0.0937, 0.0827, 0.0304, 0.0286, 0.0237], [0.5032, 0.1634, 0.1272, 0.053, 0.0322, 0.0172, 0.0172, 0.0134], [0.47, 0.2851, 0.1188, 0.0437, 0.03, 0.0142, 0.0052, 0.0043], [0.7765, 0.1529, 0.0301, 0.0086, 0.0086, 0.0076, 0.0052, 0.0036], [0.7655, 0.1174, 0.0204, 0.0204, 0.0159, 0.0116, 0.0075, 0.007], [0.6836, 0.1729, 0.0636, 0.034, 0.0125, 0.0111, 0.0041, 0.0036], [0.6575, 0.2419, 0.0693, 0.0255, 0.0018, 0.0013, 0.001, 0.0005], [0.8804, 0.0928, 0.0111, 0.0086, 0.0015, 0.0013, 0.0013, 0.0008], [0.5119, 0.3986, 0.0785, 0.0083, 0.0007, 0.0005, 0.0004, 0.0003], [0.8507, 0.0897, 0.0544, 0.0035, 0.0003, 0.0002, 0.0002, 0.0002], [0.9193, 0.0458, 0.0278, 0.0048, 0.0002, 0.0002, 0.0001, 0.0001], [0.8045, 0.1584, 0.0312, 0.0037, 0.0003, 0.0003, 0.0002, 0.0002], [0.7672, 0.194, 0.0337, 0.0008, 0.0008, 0.0007, 0.0005, 0.0005], [0.8137, 0.1248, 0.0191, 0.009, 0.0055, 0.0052, 0.0048, 0.0043], [0.505, 0.4456, 0.0119, 0.0092, 0.0064, 0.0047, 0.0036, 0.0014], [0.7161, 0.2325, 0.0102, 0.0066, 0.0058, 0.0058, 0.0051, 0.0015], [0.5678, 0.2682, 0.0598, 0.0466, 0.0056, 0.0056, 0.0043, 0.0043], [0.3723, 0.29, 0.1067, 0.1067, 0.0197, 0.0164, 0.0144, 0.005], [0.3491, 0.2719, 0.1455, 0.0779, 0.0253, 0.0223, 0.0223, 0.006], [0.4126, 0.3213, 0.1182, 0.0339, 0.0181, 0.016, 0.0133, 0.0055], [0.6548, 0.1289, 0.0609, 0.0419, 0.021, 0.0099, 0.0064, 0.0041], [0.3423, 0.1259, 0.1259, 0.1111, 0.0633, 0.0318, 0.0219, 0.0206], [0.3514, 0.166, 0.0784, 0.0784, 0.0692, 0.0476, 0.042, 0.0211], [0.3721, 0.2898, 0.1551, 0.0346, 0.0185, 0.0185, 0.012, 0.0093], [0.689, 0.1197, 0.0566, 0.0389, 0.0162, 0.0126, 0.0111, 0.0087], [0.9539, 0.012, 0.0083, 0.0073, 0.005, 0.003, 0.0016, 0.0014], [0.8774, 0.0495, 0.0182, 0.0125, 0.0125, 0.0052, 0.0052, 0.0025], [0.693, 0.1546, 0.073, 0.0237, 0.0209, 0.006, 0.006, 0.0036], [0.934, 0.0249, 0.0104, 0.0092, 0.003, 0.003, 0.0016, 0.0014], [0.9543, 0.0288, 0.003, 0.0027, 0.0021, 0.0014, 0.001, 0.0009], [0.5258, 0.1173, 0.1035, 0.0712, 0.0712, 0.0231, 0.0159, 0.0159], [0.4991, 0.208, 0.0867, 0.0596, 0.0319, 0.0219, 0.0219, 0.0194], [0.4981, 0.2666, 0.0674, 0.0463, 0.0361, 0.0318, 0.0117, 0.0081], [0.4705, 0.3234, 0.0637, 0.0341, 0.0265, 0.0207, 0.0182, 0.0125], [0.4751, 0.4193, 0.0268, 0.0268, 0.0163, 0.0143, 0.0068, 0.0053], [0.5943, 0.2477, 0.0488, 0.023, 0.0203, 0.014, 0.0096, 0.0085], [0.5352, 0.2865, 0.0439, 0.0266, 0.0235, 0.0208, 0.0183, 0.0076], [0.4707, 0.3666, 0.0341, 0.0301, 0.0234, 0.0234, 0.0207, 0.0076], [0.6327, 0.3386, 0.008, 0.0048, 0.0048, 0.0033, 0.0016, 0.001], [0.4941, 0.4941, 0.0062, 0.002, 0.001, 0.0007, 0.0003, 0.0002], [0.7955, 0.2011, 0.0012, 0.0006, 0.0003, 0.0002, 0.0001, 0.0001], [0.9995, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 501, "top": [["**", "**.", ".", "**\u2013", "-**", "\u2026**", "**?", "?**"], [" **", "'**", "\uff1f**", "-**", "(**", "\u2019**", "**", "\u2026**"], ["\u2026**", "**", "\uff1f**", "'**", "\u2019**", "-**", "**?", "(**"], ["\uff1f**", "\u300d**", "'**", "\u2019**", " **\u300c", "\uff1a**", " **", " **\u00ab"], ["**", "...**", " **", "\uff1f**", "-**", "'**", ">**", "\u2019**"], ["-**", " **", "\uff1f**", "**", "(**", "\u2019**", ">**", "\uff01**"], ["**", " **", "\uff1f**", "...**", "\u2019**", "'**", "-**", "\uff09**"], ["**", "-**", "...**", "\uff1f**", " **", "'**", "(**", "\u2019**"], ["**", "...**", "\uff1f**", "'**", "\u2019**", " **", "(**", "-**"], ["...**", "**", "-**", "'**", " **", "\u2019**", "\u2026**", "\uff1f**"], ["**", "...**", " **", "-**", "\u2026**", "'**", "!**", "(**"], ["...**", " **", "**", "'**", "-**", "\uff1f**", " **#", " **'"], ["...**", " **", "**", "'**", "-**", "\u2026**", " **\u00ab", " **'"], ["...**", "**", " **", "'**", "-**", "\u2026**", " **\u00ab", "(**"], ["...**", "**", " **", "\u2026**", "'**", "-**", "!**", "(**"], ["...**", "**", "'**", "-**", "\uff1f**", ">**", "\u2026**", "?**"], ["...**", "**", "\u2026**", " **", ">**", "?**", "'**", "!**"], ["...**", "**", "\u2026**", "'**", ">**", "-**", "(**", " **"], ["...**", "**", "\u2026**", "'**", " **", "\u2019**", ">**", "-**"], ["...**", "**", "\u2026**", "  \n\n", "**:", "\u2019**", "**,", " \n\n"], ["<|endoftext|>", "  \n\n", "...**", " \n\n", "**", "\n\n", "\u2026**", "**:"], ["...**", "**", " **", "\u2026**", "'**", "\u2019**", " **#", ">**"], ["...**", "**", " **", "\u2026**", "\u2019**", "'**", "  \n\n", " **'"], ["  \n\n", " \n\n", "\n\n", "...**", "**", "<|endoftext|>", "\u2026**", " **"], ["  \n\n", " \n\n", "\n\n", "...**", "   \n\n", " \r\n\r\n", "\r\n\r\n", "\t\n\n"], ["  \n\n", " \n\n", "\n\n", "...**", "\u2026**", "**", "\t\n\n", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "...**", "\u2026**", "\r\n\r\n", "\t\n\n", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\t\n\n", "...**", "<|endoftext|>"], ["\n\n", "  \n\n", " \n\n", "...**", "\r\n\r\n", "\u2026**", "\t\n\n", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "...**", "\u2026**", "<|endoftext|>", "   \n\n", "\r\n\r\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "\r\n\r\n", "...**", "   \n\n", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "...**", "   \n\n", " \r\n\r\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "\t\n\n", "...**"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", "\t\n\n", "...**"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\u2026**", "...**", "\r\n\r\n", "\t\n\n"], ["\n\n", "  \n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "    \n\n", "\r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "\r\n\r\n", "    \n\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\t\n\n", "    \n\n", "\r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", "\u2026**", "**:", "   \n\n", "...**"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\u2026**", "\u89e3\u51b3\u65b9\u6848", "**:", "?**"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "\u89e3\u51b3\u65b9\u6848", "?**", "\u2026**", "**:"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", " remed", " strategies", " strategy", "\u89e3\u51b3\u65b9\u6848"], ["  \n\n", "\n\n", " \n\n", " strategies", " remed", " solutions", "**:", " strategy"], ["  \n\n", "\n\n", " \n\n", "\u89e3\u51b3\u65b9\u6848", "<|endoftext|>", " solutions", " strategies", " remed"], ["  \n\n", "\n\n", " \n\n", "<|endoftext|>", " strategies", " solutions", " remed", " strategy"], ["  \n\n", "\n\n", " \n\n", " strategies", " Strategy", " strategy", " remed", " solutions"], ["  \n\n", " \n\n", "\n\n", "**:", ":**", "\uff1a**", ":\\", " Strategy"], ["  \n\n", " \n\n", ":\\", " Strategy", ":**", " Solution", "**:", " Specific"], [" Solutions", "  \n\n", " Solution", " Specific", " specifics", " Strategy", "\u5177\u4f53\u63aa\u65bd", ":**"], [" Immediate", "\u5982\u4f55\u5e94\u5bf9", " specifics", " Solution", " Solutions", " Strategy", "\u5e94\u5bf9\u63aa\u65bd", "\u5982\u4f55\u89e3\u51b3"], ["?**", "\u5982\u4f55\u5e94\u5bf9", " Immediate", "\u5e94\u5bf9\u63aa\u65bd", " Strategy", "\uff1f**", "\u5982\u4f55\u89e3\u51b3", ":**"], [":**", "\u5177\u4f53\u63aa\u65bd", "\u5e94\u5bf9\u63aa\u65bd", "\u5982\u4f55\u5e94\u5bf9", " specifics", " Immediate", "\u600e\u4e48\u529e", "what"], ["\u5e94\u5bf9\u63aa\u65bd", "\u5177\u4f53\u63aa\u65bd", "\u5982\u4f55\u5e94\u5bf9", "\u600e\u4e48\u529e", "\u8865\u6551", "\u5982\u4f55\u89e3\u51b3", "\u89e3\u51b3\u65b9\u6848", " specifics"], ["\u8865\u6551", "\u89e3\u51b3\u65b9\u6848", "\u5e94\u5bf9\u63aa\u65bd", " Immediate", " why", "\u5177\u4f53\u63aa\u65bd", " Fixes", "\u5982\u4f55\u5e94\u5bf9"], ["\u8865\u6551", "\u89e3\u51b3\u65b9\u6848", " Fixes", " why", " Solution", "\u5982\u4f55\u89e3\u51b3", " fixes", " mitigation"], [" Exactly", " exactly", " Exact", " what", "Exactly", "what", " What", "Exact"], [" Exactly", " what", "what", " Exact", " What", " exactly", "Exactly", "\u8865\u6551"], [" Exactly", " exactly", " what", " Exact", "Exactly", "what", " What", "Exact"], [" Exactly", " what", " exactly", " What", " Exact", "Exactly", "what", "What"], [" Exactly", " exactly", " Exact", " exact", "Exactly", " what", " What", "Exact"], [" What", " Exactly", " what", " Exact", " exactly", "What", " Why", "Exactly"], [" What", " Exactly", " what", "What", " Exact", " exactly", "Exactly", " Why"], ["What", " What", "Why", " Exactly", "Exactly", "How", " Why", " How"]], "p": [[0.4064, 0.2316, 0.0706, 0.0277, 0.026, 0.0229, 0.0215, 0.0168], [0.1644, 0.1644, 0.1451, 0.1281, 0.0997, 0.0686, 0.0471, 0.0196], [0.3773, 0.2019, 0.2019, 0.0511, 0.0241, 0.0241, 0.0188, 0.0166], [0.5389, 0.0568, 0.0501, 0.0442, 0.0442, 0.0268, 0.0268, 0.0222], [0.2894, 0.1755, 0.1367, 0.1065, 0.094, 0.0646, 0.0305, 0.0305], [0.3131, 0.2438, 0.1899, 0.0699, 0.0424, 0.0257, 0.0156, 0.0121], [0.6221, 0.0954, 0.0954, 0.0351, 0.0273, 0.0241, 0.0213, 0.0166], [0.5552, 0.0965, 0.0965, 0.0751, 0.0585, 0.0276, 0.0148, 0.0131], [0.5387, 0.3267, 0.0304, 0.0127, 0.0112, 0.0112, 0.0112, 0.0087], [0.502, 0.3045, 0.0529, 0.0321, 0.0221, 0.0134, 0.0134, 0.0118], [0.5148, 0.4543, 0.0137, 0.0024, 0.0024, 0.0021, 0.0016, 0.0011], [0.4533, 0.353, 0.0788, 0.0328, 0.0226, 0.0155, 0.0083, 0.0083], [0.7656, 0.1036, 0.0914, 0.0096, 0.0075, 0.0052, 0.004, 0.0022], [0.8051, 0.0583, 0.0312, 0.0243, 0.0215, 0.0189, 0.007, 0.0048], [0.7375, 0.1282, 0.0416, 0.0324, 0.0223, 0.0064, 0.0056, 0.005], [0.5317, 0.1523, 0.0815, 0.0436, 0.041, 0.0249, 0.0206, 0.0171], [0.8557, 0.1158, 0.0108, 0.0024, 0.0021, 0.0021, 0.0021, 0.0014], [0.6331, 0.2639, 0.0191, 0.0149, 0.0131, 0.0116, 0.0055, 0.0048], [0.7256, 0.1835, 0.0193, 0.0171, 0.0091, 0.0081, 0.0063, 0.0055], [0.4905, 0.382, 0.0403, 0.0139, 0.0084, 0.0062, 0.0058, 0.0051], [0.311, 0.2137, 0.1886, 0.1469, 0.0612, 0.0328, 0.0145, 0.0022], [0.7271, 0.0676, 0.0527, 0.041, 0.0194, 0.0142, 0.0097, 0.0092], [0.4948, 0.1418, 0.0629, 0.049, 0.0231, 0.0192, 0.018, 0.0116], [0.211, 0.175, 0.1544, 0.113, 0.0252, 0.0237, 0.0144, 0.0119], [0.5714, 0.2699, 0.1445, 0.0034, 0.0016, 0.0015, 0.0014, 0.0014], [0.5424, 0.2261, 0.0832, 0.0832, 0.0164, 0.005, 0.0047, 0.0044], [0.5748, 0.1866, 0.1866, 0.0253, 0.006, 0.0047, 0.0028, 0.0019], [0.8006, 0.1228, 0.0745, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001], [0.6143, 0.226, 0.1553, 0.0015, 0.0007, 0.0006, 0.0004, 0.0003], [0.5869, 0.2772, 0.131, 0.0013, 0.0008, 0.0006, 0.0004, 0.0003], [0.3911, 0.3911, 0.2093, 0.0021, 0.0009, 0.0008, 0.0006, 0.0006], [0.5831, 0.2431, 0.1671, 0.0057, 0.0004, 0.0001, 0.0001, 0.0001], [0.852, 0.0898, 0.0545, 0.0035, 0.0001, 0.0, 0.0, 0.0], [0.4153, 0.3235, 0.2519, 0.0086, 0.0002, 0.0001, 0.0001, 0.0001], [0.5453, 0.2006, 0.177, 0.0738, 0.0006, 0.0004, 0.0004, 0.0003], [0.4163, 0.3242, 0.2525, 0.0067, 0.0001, 0.0, 0.0, 0.0], [0.5117, 0.2739, 0.2133, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.618, 0.2576, 0.1217, 0.0007, 0.0005, 0.0002, 0.0002, 0.0001], [0.6094, 0.1978, 0.1746, 0.0112, 0.0022, 0.0006, 0.0005, 0.0004], [0.7996, 0.1082, 0.0451, 0.0095, 0.0061, 0.0022, 0.002, 0.0012], [0.7419, 0.1138, 0.0782, 0.0288, 0.003, 0.0024, 0.0024, 0.0024], [0.4226, 0.3291, 0.1996, 0.0099, 0.0039, 0.0034, 0.0022, 0.0018], [0.2594, 0.0954, 0.0743, 0.0579, 0.048, 0.048, 0.0291, 0.0273], [0.4997, 0.2675, 0.0766, 0.0133, 0.0118, 0.0104, 0.0097, 0.0071], [0.4249, 0.2274, 0.0507, 0.0308, 0.0199, 0.0175, 0.0165, 0.0165], [0.5178, 0.1155, 0.09, 0.0331, 0.0201, 0.0201, 0.0156, 0.0147], [0.7879, 0.083, 0.0444, 0.021, 0.0144, 0.0077, 0.0068, 0.0027], [0.5472, 0.1776, 0.035, 0.0256, 0.0187, 0.0165, 0.0137, 0.0137], [0.0741, 0.0741, 0.0696, 0.0577, 0.0509, 0.0509, 0.035, 0.0309], [0.0969, 0.0626, 0.0552, 0.0519, 0.0519, 0.0458, 0.0379, 0.023], [0.0992, 0.0773, 0.0388, 0.0322, 0.0284, 0.0267, 0.0236, 0.0221], [0.1358, 0.0877, 0.0727, 0.0532, 0.0441, 0.0323, 0.0267, 0.0236], [0.1559, 0.1559, 0.0946, 0.0539, 0.0506, 0.0447, 0.0394, 0.0186], [0.0828, 0.0606, 0.0569, 0.0534, 0.0534, 0.0443, 0.0304, 0.0304], [0.1876, 0.1656, 0.0369, 0.0347, 0.0347, 0.0288, 0.0288, 0.027], [0.7298, 0.1437, 0.0363, 0.0283, 0.022, 0.0172, 0.0026, 0.0023], [0.6685, 0.1162, 0.0705, 0.0377, 0.0333, 0.0294, 0.0178, 0.0021], [0.783, 0.106, 0.0344, 0.0268, 0.0236, 0.0112, 0.0077, 0.0015], [0.7645, 0.0628, 0.0628, 0.0431, 0.0262, 0.0262, 0.0085, 0.0017], [0.6219, 0.2593, 0.0743, 0.0146, 0.0114, 0.0089, 0.0047, 0.0025], [0.4718, 0.3674, 0.0723, 0.0342, 0.0183, 0.0142, 0.0041, 0.0038], [0.5593, 0.2994, 0.0381, 0.0316, 0.0132, 0.0102, 0.0085, 0.007], [0.7285, 0.1626, 0.0249, 0.0249, 0.0171, 0.0111, 0.0059, 0.003]], "ranks": {}}, {"pos": 502, "top": [["\u00a0", ".", ",", "?", "\u00a0\u00a0", " \u2013", "<|endoftext|>", "\u2013"], ["?", "??", "?,", ",", "\u00a0", "?\u201d", "?.", "\u200c"], [",", "?", ".", "\u2026", "\u2013", "\u2026.", "?,", "\uff1f"], [" Shemale", "\uc3df", "\uff3f\uff3f", " \u300e", "\uad49\uc7a5", " ``", "\ufffd\ufffd", "\uff0a\uff0a\uff0a\uff0a"], [" \"@", "\ufffd\ufffd", "\uff1f", "InView", "?!", "\uff20", "@@@@", "ariat"], ["\uff1f", " \u300d", "\ufffd\ufffd", "\uff01", " **\u201e", " **\u300c", " **:", "letin"], ["\uff1f", " \u300d", "\uff01", " **\u300c", " \u300e", "\u300e", "\u3000\u3000", " \u300c"], [" **\u300c", " **\u201e", "\uff1f", " **\u3010", "\uff1f\u300d", " \u300e", "\uff01\uff1f", "ness"], [" **\u300c", "\uff1f", " **\u201e", "\uff01\uff1f", "!?", "?!", "\uff1f\u300d", "?\u00bb"], ["?!", "!?", "soever", "\u00a0", " \u00a0 \u00a0", "?=", " \u00a0 \u00a0 \u00a0 \u00a0", "?\\"], ["?!", "?", "?...", "\u00a0", "...", "???", "\uff1f", "!?"], [" **\u300c", " ''", "soever", " **\u201e", "?!", "UGHT", "\uff1f\u300d", "\u4ec0\u4e48\u5462"], [" **\u300c", "?!", "\uff1f\u300d", " ''", "soever", "\uff01\uff1f", "!?", "ness"], ["?!", "\uff1f\u300d", "!?", "\uff01\uff1f", " ''", "stuff", "soever", "???"], ["?!", " ''", "!?", "stuff", "soever", "ness", " Philly", " savvy"], ["?!", " goodies", " guys", "!?", " really", "\uff1f\u300d", "???", "stuff"], ["?!", "...", "?...", "??", "???", "?", "!?", "\u00a0"], ["...", "?!", "?...", "?", "??", "\u00a0", "\n\n", "<|endoftext|>"], ["...", "?!", "\n\n", "?...", "...</", "??", "...(", " ..."], ["\n\n", "<|endoftext|>", "...", " \n\n", "?...", "...\\", " ...", "...("], ["\n\n", "<|endoftext|>", " \n\n", "...", "...\\", "?...", "\n\n\n", " \n\n\n"], ["\n\n", "\u4ec0\u4e48", " g\u00ec", "\u662f\u4ec0\u4e48", "\u505a\u4ec0\u4e48", " ???", " WHAT", "?="], ["\n\n", " \n\n", "\u4ec0\u4e48", "\u662f\u4ec0\u4e48", " ...\\", " ...", " g\u00ec", "\n\n\n"], ["\n\n", " \n\n", " ...", " \n\n\n", "<|endoftext|>", "\n\n\n", "\u4ec0\u4e48", "..."], ["\n\n", " \n\n", "  \n\n", " \n\n\n", "\r\n\r\n", " \r\n\r\n", "\n\n\n", "...\\"], ["\n\n", " \n\n", "\r\n\r\n", "  \n\n", " \n\n\n", " \r\n\r\n", "\u4ec0\u4e48", "\n\n\n"], ["\n\n", " \n\n", "\r\n\r\n", "\n\n\n", " ___", "  \n\n", " \n\n\n", "___"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\n\n\n", " \n\n\n", " \r\n\r\n", " ___"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "\n\n\n", "\n\n\n\n", " ...\\", " \n\n\n"], ["\n\n", " \n\n", "  \n\n", " \n\n\n", "\r\n\r\n", "\n\n\n", "<|im_end|>", " ...\\"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \n\n\n", " \r\n\r\n", "\n\n\n", " ...\\"], ["\n\n", " \n\n", "  \n\n", " \n\n\n", "<|endoftext|>", "\r\n\r\n", " ...", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", " \n\n\n", "<|im_end|>", "\n\n\n"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", " what", "<|im_end|>", " ?", " \r\n\r\n"], ["<|endoftext|>", " \n\n", "\n\n", "  \n\n", "?:", "?):", "\uff1f", "?"], [" \n\n", "\n\n", "  \n\n", "<|endoftext|>", "?:", "*:", "?):", "\uff1f"], [" \n\n", "  \n\n", "\n\n", "?):", "?:", " WHY", "\u505a\u4ec0\u4e48", "?!"], ["?):", "?:", "\u505a\u4ec0\u4e48", " WHY", "\u600e\u4e48\u505a", "\u5e72\u4ec0\u4e48", "?!", " WHAT"], ["\u505a\u4ec0\u4e48", "\u600e\u4e48\u505a", "?:", "\u5e72\u4ec0\u4e48", "?):", " WHY", "?!", "\u600e\u4e48\u529e"], ["\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", "\u600e\u4e48\u5904\u7406", "\u5e72\u4ec0\u4e48", "\u505a\u4e86\u4ec0\u4e48", "?\u201d", "\u600e\u4e48\u529e", "\u5982\u4f55\u89e3\u51b3"], ["\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", "?:", "?):", "?\u201d", "?\"", " remed", "\u600e\u4e48\u5904\u7406"], ["\u600e\u4e48\u505a", " remed", "\u505a\u4ec0\u4e48", "?):", "?:", "\n\n", "?\u201d", "\u600e\u4e48\u5904\u7406"], [" remed", "\u600e\u4e48\u505a", "\u505a\u4ec0\u4e48", " actionable", "\u505a\u4e86\u4ec0\u4e48", "?):", "\u5e72\u4ec0\u4e48", "?:"], [" remed", "\u505a\u4ec0\u4e48", "\u600e\u4e48\u505a", " actionable", " solutions", " Solutions", "\u8865\u6551", "\u89e3\u51b3\u65b9\u6848"], [" remed", "\u505a\u4ec0\u4e48", "\u600e\u4e48\u505a", "<|im_end|>", " actionable", " solutions", " YOU", "\n\n"], [" remed", " actionable", " solutions", " Immediate", " YOU", " Solutions", " strategy", " Solution"], [" Immediate", " YOU", " remed", " actionable", " immediate", " you", "\u5177\u4f53\u63aa\u65bd", " Solutions"], [" Immediate", " Specific", ":\\", " YOU", " you", "/how", " Strategy", " Exactly"], [" Immediate", " YOU", "\u5177\u4f53\u63aa\u65bd", "/how", " Specific", "\u600e\u4e48\u505a", "\u600e\u4e48\u529e", ":\\"], [" Immediate", "\u600e\u4e48\u505a", "?):", "/how", " YOU", "\u600e\u9ebc\u8fa6", "\u600e\u4e48\u529e", ":\\"], ["?):", "?**", "\u5177\u4f53\u63aa\u65bd", "\u600e\u4e48\u505a", "?*", "?!", "?:", "?</"], [" Exactly", "?:", "?):", "\u5177\u4f53\u63aa\u65bd", " Happ", "*:", " happens", "?**"], [" happens", " Exactly", " Happ", "\u5177\u4f53\u63aa\u65bd", " YOU", " you", "?):", "[]):"], [" happens", " Exactly", " Happ", " you", " YOU", "\u4f60\u5fc5\u987b", "\u4f60\u9700\u8981", " Exists"], [" you", " Exactly", " happens", " YOU", " Happ", "\u4f60\u5fc5\u987b", "\u4f60\u8981", " Doing"], [" Exactly", " exactly", "Exactly", " Exact", " exactamente", " exatamente", " exactement", " precisely"], [" Exactly", " exactly", " Exact", "Exactly", " exatamente", " exactamente", " exactement", " you"], [" Exactly", " exactly", " Exact", "Exactly", " you", " exactamente", " exatamente", " Break"], [" Exactly", " Exact", " exactly", " you", "Exactly", " You", " Break", " Doing"], [" Exactly", " exactly", " Exact", " Break", "Exactly", " breaks", " you", " exact"], [" Exactly", " exactly", " You", " you", " Exact", " Break", "Exactly", " breaks"], [" Exactly", " You", " exactly", " Do", " Break", " To", " breaks", "Exactly"], [" Exactly", " You", " To", " Do", " Break", " exactly", " We", " Ex"]], "p": [[0.532, 0.1727, 0.1187, 0.0635, 0.0362, 0.0362, 0.0063, 0.0046], [0.0255, 0.0175, 0.0175, 0.0165, 0.0073, 0.0069, 0.0064, 0.0053], [0.3702, 0.1749, 0.1749, 0.0471, 0.0222, 0.0209, 0.0153, 0.0119], [0.0087, 0.0077, 0.0072, 0.0072, 0.0053, 0.0053, 0.005, 0.0047], [0.0201, 0.0147, 0.0054, 0.0029, 0.0027, 0.0026, 0.0021, 0.0021], [0.0441, 0.0072, 0.0072, 0.006, 0.005, 0.0036, 0.0036, 0.0027], [0.3791, 0.0292, 0.0292, 0.0258, 0.0228, 0.0156, 0.0122, 0.0095], [0.0837, 0.0328, 0.0113, 0.0069, 0.0061, 0.0044, 0.0042, 0.0042], [0.0733, 0.0253, 0.0238, 0.0185, 0.0185, 0.0174, 0.0154, 0.0136], [0.016, 0.0075, 0.0071, 0.0038, 0.0031, 0.003, 0.0028, 0.0028], [0.1229, 0.0581, 0.0452, 0.0452, 0.0274, 0.0258, 0.0227, 0.0201], [0.0295, 0.004, 0.0038, 0.0038, 0.0035, 0.0031, 0.0027, 0.0024], [0.0195, 0.0162, 0.0098, 0.0081, 0.0081, 0.0049, 0.0044, 0.0044], [0.0408, 0.0086, 0.0075, 0.0071, 0.004, 0.0036, 0.0033, 0.0028], [0.0295, 0.0244, 0.0075, 0.0058, 0.0037, 0.0035, 0.0031, 0.0031], [0.0624, 0.0066, 0.0055, 0.0045, 0.0042, 0.0035, 0.0029, 0.0029], [0.3029, 0.0719, 0.034, 0.0234, 0.0234, 0.0219, 0.0067, 0.0055], [0.1796, 0.1796, 0.0797, 0.0621, 0.0202, 0.0189, 0.013, 0.0108], [0.2459, 0.1491, 0.1401, 0.1236, 0.0401, 0.013, 0.0108, 0.0108], [0.8289, 0.0771, 0.068, 0.0081, 0.0022, 0.0015, 0.0013, 0.0012], [0.891, 0.057, 0.0391, 0.0077, 0.0005, 0.0004, 0.0004, 0.0003], [0.1407, 0.1242, 0.0457, 0.0295, 0.0277, 0.0131, 0.0123, 0.0109], [0.8946, 0.021, 0.0136, 0.002, 0.0017, 0.0016, 0.0015, 0.0014], [0.9243, 0.0358, 0.0049, 0.0022, 0.002, 0.0018, 0.0012, 0.0011], [0.9132, 0.0849, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9501, 0.0473, 0.0005, 0.0004, 0.0002, 0.0002, 0.0001, 0.0001], [0.9951, 0.0046, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.997, 0.0028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.83, 0.1634, 0.0049, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001], [0.8914, 0.1065, 0.0017, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.8146, 0.1818, 0.0033, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9194, 0.0755, 0.0048, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5037, 0.4445, 0.0365, 0.0118, 0.0003, 0.0002, 0.0002, 0.0002], [0.3476, 0.3068, 0.1449, 0.0996, 0.0135, 0.0077, 0.0056, 0.005], [0.5284, 0.2496, 0.1179, 0.0918, 0.0013, 0.0008, 0.0007, 0.0007], [0.3681, 0.253, 0.1195, 0.0162, 0.0118, 0.0118, 0.0111, 0.0059], [0.0584, 0.0584, 0.0548, 0.0294, 0.0276, 0.0243, 0.0202, 0.0202], [0.1038, 0.0461, 0.0406, 0.0317, 0.0317, 0.0232, 0.0192, 0.0159], [0.123, 0.0958, 0.0311, 0.0227, 0.0227, 0.0227, 0.0214, 0.0214], [0.111, 0.092, 0.0492, 0.0318, 0.0218, 0.0218, 0.0218, 0.0205], [0.0811, 0.0672, 0.0557, 0.0557, 0.0434, 0.0218, 0.0205, 0.0181], [0.1152, 0.0792, 0.0744, 0.0274, 0.0257, 0.0213, 0.0166, 0.0166], [0.0927, 0.0722, 0.0438, 0.0249, 0.0234, 0.022, 0.0161, 0.0161], [0.0622, 0.0516, 0.0402, 0.0354, 0.0354, 0.0229, 0.0157, 0.0157], [0.0839, 0.0329, 0.0273, 0.0226, 0.0187, 0.0165, 0.0146, 0.0129], [0.084, 0.0373, 0.035, 0.0256, 0.0226, 0.0129, 0.0114, 0.0114], [0.1194, 0.0302, 0.0221, 0.0195, 0.0152, 0.0143, 0.0126, 0.0118], [0.0574, 0.042, 0.0327, 0.0271, 0.0211, 0.0175, 0.0164, 0.0154], [0.0571, 0.0418, 0.0418, 0.0368, 0.0287, 0.0223, 0.0185, 0.0185], [0.1813, 0.0856, 0.0278, 0.0245, 0.023, 0.0191, 0.0158, 0.014], [0.242, 0.054, 0.0507, 0.0371, 0.0272, 0.024, 0.0225, 0.0175], [0.2014, 0.1892, 0.0839, 0.035, 0.0256, 0.0146, 0.0073, 0.0069], [0.3565, 0.1396, 0.1158, 0.0747, 0.0514, 0.0074, 0.0061, 0.0058], [0.3054, 0.2379, 0.1635, 0.0365, 0.0284, 0.0208, 0.0126, 0.0081], [0.8348, 0.1451, 0.0082, 0.005, 0.0021, 0.0016, 0.0013, 0.0004], [0.9298, 0.0525, 0.0071, 0.0043, 0.0012, 0.001, 0.0007, 0.0007], [0.9447, 0.0415, 0.0072, 0.003, 0.0006, 0.0005, 0.0004, 0.0004], [0.9833, 0.0096, 0.0035, 0.0012, 0.0006, 0.0006, 0.0003, 0.0001], [0.9638, 0.02, 0.0083, 0.0051, 0.0008, 0.0005, 0.0003, 0.0003], [0.9529, 0.0419, 0.0011, 0.0009, 0.0008, 0.0007, 0.0005, 0.0005], [0.9609, 0.029, 0.0057, 0.0011, 0.0007, 0.0004, 0.0003, 0.0003], [0.553, 0.4307, 0.0101, 0.0014, 0.0009, 0.0006, 0.0004, 0.0003]], "ranks": {}}, {"pos": 503, "top": [["er", "o", ".", ",", "?", "a", "e", " \u2013"], ["er", "\uff20", " Very", "sWith", " We", " VERY", " You", " very"], [",", ".", "?", "er", "\u3002", "!", "\u2026", "a"], ["\uff0a\uff0a\uff0a\uff0a", "erias", "enner", "\uff0d\uff0d\uff0d\uff0d", "\uff20", "\u2605\u2606", "aruhi", " \uffe5\uffe5"], ["er", "\uff20", " \u201c", "ed", "auf", " (@", " @", "a"], ["er", " \u201c", " \u201d", " \u201c.", "\uff01", "\uff20", "auf", "sWith"], ["er", "\uff20", " \u2019", " \u201d", "\u2019re", " \ufffd", " \u201c", "\uff01"], ["er", "\uff20", " @", "\u0092", "sung", "ey", "erstand", "AVED"], ["!\u201d.", "er", "\uff20", "\u0092", "!\u201d", "\u3000", "\uff3b", "\u201d?"], [" \u00ad", "\u00ading", "\u00adtion", "er", "\u00ad", "\u00ads", "\u0092", "\u00adt"], ["er", "\\n", "\u0092", "\u2019re", " \u00ad", "\u2019ll", "\\xc", "...\\"], ["er", "erias", "erstand", "asley", "tiful", "eurs", " _____", "\uff0a\uff0a\uff0a\uff0a"], ["er", " ...\\", "erias", " ...", "erstand", " Philly", "...\\", " _____"], ["er", " Philly", " savvy", "...", " YOUR", "\u0092", " YOU", " guys"], ["er", " Philly", "...", " savvy", " nicely", " folks", " hopefully", " pretty"], ["er", " savvy", " nicely", " folks", " pretty", " guys", " \u2019", " hopefully"], ["...", "er", " savvy", "s", "\u2019re", "\u2019ll", " Philly", "?..."], ["...", "...\\", "er", "?...", "\u2019ll", "\\n", " savvy", " smarter"], ["...", "...\\", " ...\\", " ...", " _____", " \u3010", "\\n", "?..."], ["...\\", "...", " ...\\", " \u3010", " \u2014", " @", "\n\n", " ---"], ["\n\n", "  \n\n", "<|endoftext|>", " \u2014", " \n\n", " @", "...", "...\\"], [" _____", " ...\\", " \u2019", "...\\", " ---", "\u2014you", " smarter", " \u2014"], ["\n\n", " \u2019", "  \n\n", " ...\\", "\r\n\r\n", " --", " \u2014", "...\\"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", " \u2014", " \u2019", " ...", "..."], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "...\\", "<|im_end|>"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " ___", " ...\\", "...\\", " ____"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " ...\\", "...\\", " ___", " ____"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", " ___", " _____", " ...\\", " ____"], ["\n\n", "  \n\n", " _____", " \n\n", " ___", " ____", " ______", " @"], [" ____", " _____", "  \n\n", " ___", " ______", "____", " ...\\", " ________"], [" @", " _____", " ...", " ____", " ___", " ______", " ?", " \u2014"], [" @", " \u2014", " \u2019", " ...", " #", " --", " just", " aggressively"], [" @", " _____", " #", " ___", " ?", " **", " ______", " ____"], [" _____", " **", " @", " ___", " ____", " ______", " \u2014", " leveraging"], [" _____", " ____", " ______", " \u2014", " ___", " ...", " **", " @"], [" \u2014", " @", " \u2014\u2014", " \u2026", "  \n\n", " _____", " MUST", " ______"], [" \u2014", " @", " MUST", " workaround", " redesign", " leveraging", " tech", " aggressively"], [" MUST", " workaround", "\u2014you", " redesign", " tech", " \u2014", " @", " desperately"], [" workaround", " MUST", " redesign", "\u2014you", " tech", " desperately", " @", " \u2014"], [" workaround", " redesign", " MUST", " tech", " strategy", "\u2014you", " leveraging", "\u7b56\u7565"], [" workaround", " redesign", " tech", " strategy", " engineering", " MUST", " leveraging", " engineers"], [" workaround", " engineering", " redesign", " strategy", " engineers", " tech", " leveraging", " engineered"], [" workaround", " redesign", " engineering", " strategy", " tech", " engineers", " leveraging", " strategically"], [" workaround", " strategy", " redesign", " engineering", " leveraging", " engineers", " desperately", " forced"], [" workaround", " strategy", " redesign", " engineering", " tech", " forced", " MUST", " strategies"], [" workaround", " strategy", " redesign", " MUST", " forced", " Strategy", " engineering", " desperately"], [" MUST", " workaround", " forced", " must", " desperately", " strategy", " Must", " Strategy"], [" MUST", " workaround", " forced", " Required", " must", " Must", " ONLY", " desperately"], [" workaround", " MUST", "\u4f60\u5fc5\u987b", "\u4e0d\u5f97\u5df2", " forced", " Required", " Strategy", " Impossible"], [" MUST", "\u4f60\u5fc5\u987b", " Needed", " workaround", " Required", ":\\", " Strategy", " Impossible"], [" MUST", "\u4f60\u5fc5\u987b", " Needed", "\u4f60\u9700\u8981", " Needs", " Yourself", " Exactly", " Immediate"], [" MUST", " Doing", " Exactly", ":**", "*:", ":*", " Must", " gotta"], [" MUST", ":**", "\u2019ll", " Doing", " gotta", ":*", " Exactly", "\u2019d"], [" MUST", "\u2019ll", " Doing", "\u2019d", ":**", " gotta", "\u2019re", " Must"], [" MUST", " Doing", "\u2019ll", " Must", "\u2019d", " must", "Doing", "\u5fc5\u987b"], [" Doing", " MUST", " Exactly", " doing", "Doing", "doing", " exactly", "\u2019ll"], [" Doing", " doing", "Doing", " MUST", " Exactly", "doing", "\u2019ll", " Must"], [" Doing", " Exactly", " MUST", " doing", "Doing", "\u2019ll", " Exact", " Must"], [" Doing", " Exactly", " doing", "Doing", " Done", " Must", " MUST", " Exact"], [" Exactly", " Doing", " About", " Exact", " Must", " doing", " Do", " exactly"], [" Exactly", " Doing", " Must", " Do", " doing", " do", " About", " MUST"], [" Do", " do", " Exactly", " Must", "_do", ".do", " About", "-do"], [" Do", " Must", " Exactly", " Have", " Need", " do", " Actually", " About"]], "p": [[0.5011, 0.1627, 0.1349, 0.0599, 0.0249, 0.022, 0.0134, 0.0081], [0.0717, 0.0233, 0.0076, 0.0049, 0.0036, 0.0034, 0.0034, 0.003], [0.203, 0.1311, 0.0258, 0.0214, 0.0189, 0.0177, 0.0177, 0.0115], [0.0057, 0.0054, 0.0048, 0.0048, 0.0033, 0.0022, 0.0022, 0.002], [0.1855, 0.0499, 0.0173, 0.0092, 0.0087, 0.0063, 0.0053, 0.0053], [0.0414, 0.0208, 0.0143, 0.0126, 0.0105, 0.0098, 0.0077, 0.0046], [0.3427, 0.0193, 0.0182, 0.0171, 0.0097, 0.0071, 0.0059, 0.0052], [0.292, 0.0328, 0.0061, 0.003, 0.0029, 0.0029, 0.0027, 0.0027], [0.0504, 0.0346, 0.0306, 0.0287, 0.0238, 0.0224, 0.0164, 0.0164], [0.1075, 0.0448, 0.0395, 0.0328, 0.0328, 0.0255, 0.0121, 0.0073], [0.3258, 0.0208, 0.0173, 0.0162, 0.0152, 0.0126, 0.0098, 0.0077], [0.018, 0.0109, 0.0049, 0.004, 0.0033, 0.0029, 0.0028, 0.0028], [0.0982, 0.0103, 0.0071, 0.0071, 0.0055, 0.0049, 0.0046, 0.0043], [0.1618, 0.0171, 0.0086, 0.0076, 0.0067, 0.0059, 0.0049, 0.0049], [0.1567, 0.0272, 0.0256, 0.0212, 0.0176, 0.0137, 0.0107, 0.0088], [0.0503, 0.0346, 0.0223, 0.0135, 0.0087, 0.0077, 0.0072, 0.0068], [0.1154, 0.1084, 0.0227, 0.0201, 0.0122, 0.0122, 0.0114, 0.0101], [0.4943, 0.0628, 0.018, 0.014, 0.0091, 0.0085, 0.0085, 0.0071], [0.3753, 0.2138, 0.0837, 0.0396, 0.0137, 0.0106, 0.01, 0.0083], [0.1726, 0.1263, 0.0676, 0.056, 0.0526, 0.0219, 0.0206, 0.0194], [0.5201, 0.14, 0.1315, 0.0157, 0.0157, 0.0122, 0.0122, 0.0089], [0.0518, 0.0379, 0.0261, 0.0216, 0.0139, 0.0123, 0.0109, 0.0102], [0.435, 0.038, 0.0296, 0.0217, 0.0203, 0.0191, 0.0158, 0.014], [0.6124, 0.1284, 0.0223, 0.0163, 0.0163, 0.0144, 0.0127, 0.0112], [0.8083, 0.124, 0.0586, 0.0048, 0.0014, 0.0011, 0.0006, 0.0003], [0.6785, 0.1944, 0.0557, 0.0181, 0.0071, 0.0071, 0.0067, 0.0062], [0.9908, 0.0028, 0.0028, 0.0017, 0.0004, 0.0004, 0.0003, 0.0002], [0.9503, 0.0223, 0.0197, 0.0027, 0.0009, 0.0005, 0.0004, 0.0004], [0.6403, 0.1113, 0.0361, 0.0339, 0.0339, 0.0281, 0.0206, 0.016], [0.2028, 0.1789, 0.1579, 0.1394, 0.123, 0.0274, 0.0227, 0.0214], [0.1042, 0.0811, 0.0557, 0.0557, 0.036, 0.0338, 0.0338, 0.0247], [0.2538, 0.0303, 0.0236, 0.0208, 0.0173, 0.0152, 0.0126, 0.0112], [0.5283, 0.0232, 0.0181, 0.015, 0.0117, 0.0117, 0.0103, 0.0097], [0.1413, 0.0971, 0.0711, 0.0627, 0.0589, 0.0405, 0.018, 0.0109], [0.1367, 0.0688, 0.0535, 0.0392, 0.0392, 0.0269, 0.0253, 0.021], [0.1827, 0.0672, 0.0462, 0.0434, 0.0317, 0.0263, 0.017, 0.0124], [0.045, 0.0309, 0.0291, 0.0176, 0.0176, 0.0156, 0.0156, 0.0146], [0.0363, 0.032, 0.0207, 0.0207, 0.0161, 0.0161, 0.0125, 0.0111], [0.0349, 0.0308, 0.029, 0.0187, 0.0176, 0.0146, 0.0146, 0.0121], [0.0667, 0.0357, 0.0296, 0.0278, 0.0158, 0.0116, 0.0109, 0.009], [0.1115, 0.0676, 0.0495, 0.034, 0.03, 0.0182, 0.0151, 0.0125], [0.1402, 0.0799, 0.0622, 0.0584, 0.0294, 0.0294, 0.0157, 0.0123], [0.1301, 0.0697, 0.0654, 0.0543, 0.0309, 0.0256, 0.0146, 0.0121], [0.189, 0.074, 0.0372, 0.0256, 0.0176, 0.0165, 0.0155, 0.0155], [0.152, 0.0922, 0.0339, 0.0219, 0.0171, 0.016, 0.0151, 0.0151], [0.1296, 0.054, 0.0308, 0.0272, 0.0212, 0.0187, 0.0165, 0.0165], [0.1595, 0.1499, 0.0487, 0.0295, 0.0191, 0.0179, 0.0158, 0.0123], [0.2084, 0.0925, 0.0362, 0.03, 0.0282, 0.0265, 0.0234, 0.0206], [0.2397, 0.1754, 0.0185, 0.0185, 0.0185, 0.0174, 0.0163, 0.0144], [0.197, 0.0413, 0.0342, 0.0342, 0.0267, 0.0235, 0.0221, 0.0134], [0.0693, 0.0447, 0.042, 0.0255, 0.0211, 0.0199, 0.0155, 0.0155], [0.1274, 0.0992, 0.0499, 0.0343, 0.0267, 0.0184, 0.0184, 0.0162], [0.2731, 0.0609, 0.0609, 0.0538, 0.027, 0.0198, 0.0164, 0.0164], [0.3111, 0.1564, 0.101, 0.0739, 0.0225, 0.0145, 0.0145, 0.0106], [0.6712, 0.1322, 0.0707, 0.0334, 0.0115, 0.0084, 0.0066, 0.0062], [0.7142, 0.0967, 0.0853, 0.0356, 0.0277, 0.007, 0.0042, 0.0037], [0.888, 0.0344, 0.0268, 0.0184, 0.0112, 0.0047, 0.0036, 0.0015], [0.7627, 0.1325, 0.0296, 0.0203, 0.0158, 0.0096, 0.0051, 0.0024], [0.9632, 0.0137, 0.0083, 0.0074, 0.0013, 0.0011, 0.0011, 0.001], [0.6092, 0.2241, 0.0642, 0.0567, 0.0112, 0.006, 0.0053, 0.0053], [0.3707, 0.3271, 0.0827, 0.0502, 0.0391, 0.0391, 0.0209, 0.0135], [0.8691, 0.1176, 0.0059, 0.004, 0.0004, 0.0004, 0.0003, 0.0003], [0.9938, 0.0046, 0.0008, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 504, "top": [["?", ".", "\u00a0\u00a0", " \u00a0", ",", " \u2013", "\u2022", "!"], [" @", " @(", " Went", "?\u201d", "@", "very", "\uc368", " Harbor"], [".", "?", ",", "\u2026", "\u2026.", "?\u201d", "\u2026..", "!"], [" \u041f\u043e\u043f\u0440\u043e", " Guta", "\uc368", " Shemale", "chini", " milfs", " \uc544\ub2c8\uc624", " \u0412\u0441\u0442\u0440\u0435"], [" \u201c", ",\u201d", "!", "?", " Do", "\uc368", " @", " Des"], ["?\u201d", "?", " \u201c", ",\u201d", "!\u201d", " Do", "!", " \u201c."], ["?", "?\u201d", "!", "!\u201d", ",\u201d", ".\u201d", "things", "?!"], ["!", "?", "things", "!\u201d", ".", ":", " Done", " Make"], [".", "?", "!", "!\u201d", "?\u201d", ".\u201d", ",\u201d", ":"], [",", "?", ":", "!", ".", "things", "-done", " things"], ["?", ".", "!", ",", ":", "...", " things", ";"], [" stuff", " Done", "things", " things", "-done", " thing", " happen", "?"], [" stuff", " Done", " thing", " things", " really", " pretty", "things", " done"], [" stuff", " pretty", " really", " things", " Done", " thing", " guys", "things"], [" stuff", " pretty", " doing", " really", " things", "--", " going", "\n\n"], [" --", "--", " stuff", " doing", " really", " Doing", " pretty", " Done"], ["...", "--", "?", " stuff", "\n\n", " pretty", " doing", " really"], ["\n\n", "...", "--", " --", " stuff", "?", " pretty", " Done"], ["\n\n", "...", " --", "--", " ...", " stuff", "?", " pretty"], ["\n\n", " --", "--", "\u2014\u2014", "...", "?", " ?", " @"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", " --", "\n\n\n", "--", "..."], ["\n\n", " --", " ____", " ?", " :", " ___", " stuff", "--"], ["\n\n", " --", " ?", "--", " :", " ____", " ...", "\n\n\n"], ["\n\n", " --", " ?", "--", " :", " ...", " \u2014", " ,"], ["\n\n", " \n\n", "  \n\n", " --", "\n\n\n", " ____", "\r\n\r\n", "   \n\n"], ["\n\n", " --", " ____", " \n\n", "  \n\n", " ___", " ?", " :"], ["\n\n", " \n\n", " ____", " --", " ___", "  \n\n", " :", " ?"], ["\n\n", " \n\n", "  \n\n", " --", " ____", " ___", "\r\n\r\n", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", " ____", " ___", "\n\n\n", "\r\n\r\n", " --"], ["\n\n", " ____", "  \n\n", " \n\n", " ___", " ______", " _____", "____"], ["\n\n", " :", " ____", " \n\n", "  \n\n", " ?", " ___", " \u2014"], ["\n\n", " :", " \n\n", " ?", " \u2014", " ____", "  \n\n", " --"], [" :", " ?", "\n\n", " \u2014", " ____", ":", " :\\", " ___"], [" :", " \u2014", " ?", "\n\n", "  \n\n", " \n\n", " ____", " ?:"], [" :", " \u2014", "  \n\n", " \n\n", " ?", "\n\n", " :\\", ":"], [" :", "  \n\n", " \n\n", " \u2014", "\n\n", " \uff1a", "\u2014\u2014", "\uff1a"], [" :", " \u2014", "  \n\n", " \n\n", "\n\n", " ?:", " \uff1a", " @"], [" :", " \u2014", " ?:", ":", " \uff1a", "?:", "  \n\n", "\uff1a"], [" :", " \uff1a", "\uff1a", ":", " ?:", " \u2014", " strategy", "?:"], ["\uff1a", " :", " \uff1a", ":", " strategy", " workaround", " ?:", " ASAP"], ["\uff1a", " :", " strategy", ":", " workaround", " \uff1a", "\u6765\u89e3\u51b3", " ?:"], [" :", " strategy", " remed", " workaround", ":", "\u6765\u89e3\u51b3", " redesign", " Strategy"], [" :", " strategy", " remed", " redesign", " workaround", " strategies", "\u6765\u89e3\u51b3", ":"], [" :", " strategy", ":", " workaround", "\uff1a", " redesign", " Strategy", " remed"], [" :", " strategy", " redesign", " workaround", " remed", ":", " solution", " Strategy"], [" :", " strategy", " Strategy", " redesign", ":", " remed", " workaround", " immediately"], [":", " :", ":\\", " strategy", " Strategy", " :\\", ":*", ":**"], [":", " :", ":\\", ":*", " :\\", ":**", " :**", "*:"], [":", ":\\", " :", ":**", " :**", "*:", ":*", " :</"], [":\\", ":", ":**", ":*", ":<", "*:", ":\\\\", ":</"], [":", "*:", ":*", ":\\", ":**", " **:", " **:**", "**:"], [":**", ":*", "*:", ":", "**:", ":</", " :**", ":\\"], [":**", ":*", ":</", "*:", " :**", "**:", ":", "\uff1a**"], [":**", ":</", ":*", " :**", ":\\", ":", ":\")", " **:**"], [":</", ":*", ":**", "/do", ":\\", ":", "(do", ":\")"], [" about", " About", "\u5173\u4e8e", " ABOUT", "-about", "About", "about", "_about"], [" about", " About", " ABOUT", "About", "about", "-about", "\u5173\u4e8e", "_about"], [" about", " About", "About", "about", " ABOUT", "\u5173\u4e8e", "-about", "_about"], [" About", " about", "About", "about", " ABOUT", "_about", "\u5173\u4e8e", "-about"], [" About", " about", "About", "about", "_about", " ABOUT", "-about", "\u5173\u4e8e"], [" about", " About", "About", "about", "-about", "_about", " ABOUT", ">About"], [" About", " about", "About", "_about", ">About", " ABOUT", "-about", "about"], [" About", "About", " about", " Exactly", "_about", ":**", " Instead", " With"]], "p": [[0.217, 0.169, 0.0798, 0.0662, 0.0294, 0.0259, 0.0243, 0.0178], [0.0062, 0.0043, 0.0038, 0.0035, 0.0035, 0.0033, 0.002, 0.0018], [0.3018, 0.1948, 0.0633, 0.0384, 0.0233, 0.0181, 0.015, 0.015], [0.0072, 0.0063, 0.0049, 0.0023, 0.0017, 0.0016, 0.0015, 0.0012], [0.008, 0.008, 0.0062, 0.0055, 0.0051, 0.0048, 0.0045, 0.0038], [0.013, 0.0095, 0.0074, 0.0074, 0.007, 0.0062, 0.0054, 0.0045], [0.0981, 0.0464, 0.0361, 0.0319, 0.0233, 0.0133, 0.0117, 0.011], [0.0661, 0.0483, 0.0138, 0.0101, 0.0089, 0.0089, 0.007, 0.0065], [0.1588, 0.1401, 0.1025, 0.085, 0.0584, 0.0243, 0.019, 0.019], [0.1228, 0.0399, 0.033, 0.033, 0.0147, 0.0129, 0.0101, 0.0074], [0.2963, 0.2308, 0.0962, 0.0401, 0.0259, 0.0058, 0.0051, 0.0051], [0.0275, 0.0214, 0.0167, 0.0147, 0.0147, 0.0095, 0.0058, 0.0054], [0.0644, 0.0416, 0.0222, 0.0163, 0.0153, 0.0144, 0.0135, 0.0099], [0.1153, 0.0955, 0.0843, 0.0511, 0.0291, 0.0291, 0.0177, 0.0147], [0.0627, 0.0431, 0.0357, 0.0315, 0.0315, 0.0296, 0.0246, 0.0191], [0.0374, 0.033, 0.0147, 0.0114, 0.0101, 0.0089, 0.0084, 0.0078], [0.0903, 0.0583, 0.0426, 0.0353, 0.0259, 0.0243, 0.0228, 0.0214], [0.1977, 0.0934, 0.0603, 0.0389, 0.0236, 0.0222, 0.0196, 0.0143], [0.5747, 0.0828, 0.0502, 0.0305, 0.0174, 0.0135, 0.0087, 0.0082], [0.8392, 0.0325, 0.0185, 0.0077, 0.0053, 0.0044, 0.0044, 0.0032], [0.9946, 0.0014, 0.0012, 0.0009, 0.0004, 0.0003, 0.0002, 0.0002], [0.3052, 0.2098, 0.0874, 0.0601, 0.0172, 0.0092, 0.0087, 0.0063], [0.8536, 0.09, 0.0114, 0.0054, 0.0045, 0.0033, 0.0015, 0.0011], [0.6969, 0.1997, 0.0145, 0.0106, 0.0093, 0.0044, 0.0025, 0.0021], [0.9817, 0.0096, 0.0066, 0.0007, 0.0001, 0.0001, 0.0001, 0.0001], [0.9284, 0.017, 0.015, 0.0132, 0.0059, 0.004, 0.0015, 0.0014], [0.9946, 0.0015, 0.0013, 0.0006, 0.0005, 0.0003, 0.0002, 0.0001], [0.9987, 0.0008, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9984, 0.0008, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.881, 0.0563, 0.0183, 0.0126, 0.0111, 0.0046, 0.0036, 0.0032], [0.8331, 0.0533, 0.0252, 0.0222, 0.0153, 0.0135, 0.0053, 0.0044], [0.8072, 0.0333, 0.0178, 0.0168, 0.0157, 0.013, 0.0123, 0.0108], [0.558, 0.1411, 0.0804, 0.0203, 0.0191, 0.0131, 0.008, 0.0048], [0.3365, 0.0964, 0.0705, 0.0549, 0.0455, 0.019, 0.0157, 0.0139], [0.2631, 0.1596, 0.1323, 0.0457, 0.0203, 0.0148, 0.0139, 0.0139], [0.2573, 0.2004, 0.1661, 0.1073, 0.0737, 0.0307, 0.012, 0.01], [0.2944, 0.1391, 0.1153, 0.0398, 0.0227, 0.0166, 0.0156, 0.0138], [0.5454, 0.0395, 0.0349, 0.0349, 0.0289, 0.0145, 0.0137, 0.0137], [0.5352, 0.0564, 0.0413, 0.0302, 0.0302, 0.0208, 0.0092, 0.0081], [0.1587, 0.1236, 0.0622, 0.0333, 0.0276, 0.0243, 0.0229, 0.0178], [0.113, 0.1062, 0.0534, 0.0502, 0.0443, 0.0391, 0.0237, 0.0209], [0.1842, 0.1527, 0.0411, 0.0386, 0.032, 0.0249, 0.022, 0.0171], [0.1878, 0.1764, 0.0394, 0.0347, 0.0306, 0.0239, 0.0224, 0.0198], [0.3186, 0.0757, 0.038, 0.0296, 0.018, 0.0169, 0.0149, 0.014], [0.5243, 0.0667, 0.0179, 0.0149, 0.014, 0.0131, 0.0116, 0.0109], [0.4527, 0.0613, 0.0212, 0.0212, 0.0199, 0.0176, 0.0165, 0.0113], [0.633, 0.2055, 0.0245, 0.007, 0.0055, 0.0045, 0.004, 0.0035], [0.7121, 0.0964, 0.0964, 0.0074, 0.0066, 0.0058, 0.0033, 0.0026], [0.3997, 0.2424, 0.0949, 0.0176, 0.0176, 0.0137, 0.0137, 0.0121], [0.4429, 0.1846, 0.0387, 0.0283, 0.0235, 0.0207, 0.0207, 0.0207], [0.0849, 0.0661, 0.0661, 0.0621, 0.0621, 0.0583, 0.0354, 0.0215], [0.2381, 0.1636, 0.1636, 0.0641, 0.0602, 0.0365, 0.0343, 0.0322], [0.5719, 0.1446, 0.0532, 0.0414, 0.0389, 0.0267, 0.0152, 0.0077], [0.5314, 0.1186, 0.056, 0.056, 0.0282, 0.016, 0.0151, 0.0125], [0.2019, 0.115, 0.115, 0.048, 0.0398, 0.033, 0.0257, 0.0188], [0.4959, 0.161, 0.161, 0.0523, 0.0247, 0.0159, 0.0141, 0.0103], [0.6052, 0.3239, 0.0207, 0.0161, 0.0142, 0.0059, 0.0052, 0.0041], [0.6605, 0.312, 0.0073, 0.0073, 0.0065, 0.0027, 0.0016, 0.0014], [0.8437, 0.1466, 0.0044, 0.0021, 0.0014, 0.001, 0.0003, 0.0003], [0.4976, 0.4976, 0.0023, 0.0016, 0.0004, 0.0004, 0.0002, 0.0], [0.5593, 0.4356, 0.0023, 0.0014, 0.0005, 0.0004, 0.0004, 0.0001], [0.9968, 0.0025, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 505, "top": [["s", ".", ",", ",.", "?", "!", ";", "@"], ["s", "sville", " @@", " @(", " @", "@@", " (@", " About"], ["\u2026", ".", ",", "s", "\u2026.", "..", "\u2026..", "?"], [" ``", "---</", "\ufeff#", "schrift", " \ufeff", "smith", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ``("], ["s", "\ufeff", "ed", " \u00a0 \u00a0", " \u00c2", " \ufeff", "\u00c2", " everybody"], ["\u8358", " \u00c2", " \u00a0 \u00a0", "-your", " Rangers", "\u00c2", "says", "@a"], [" \u00c2", " ``", " \ufeff", "s", " \u30fb", " \"\"", "\u00c2", " ,,"], [" \u00c2", "-&", "s", " ``", " ,,", " \ufeff", " \u00ae", "\u00c2"], [" \u00c2", "!\u201d", "-&", " \u00a0 \u00a0", " \u00ae", " \ufeff", " ..", "\u00c2"], [" \u00c2", "going", " \u00a0 \u00a0", "\u00c2", "_stuff", "-&", " stuff", " everybody"], [" \u00c2", " \u00a0 \u00a0", "-&", "\u00c2", "going", " stuff", " \\$", " \ufeff"], [" ``", "_stuff", " stuff", " ___", " ``(", " ''", " '''", " ---"], [" ``", " stuff", "_stuff", " ``(", " ___", " ''", "\u0441\u044f", ":''"], [" ``", " stuff", "_stuff", " everybody", " anybody", " somebody", " ''", " nasty"], [" stuff", " everybody", " ``", "_stuff", " anybody", " somebody", " smack", "going"], [" stuff", " anybody", " everybody", " --", " smack", " ``", " somebody", "_stuff"], [" stuff", " everybody", " anybody", "going", " somebody", "_stuff", " smack", "s"], [" stuff", " everybody", "_stuff", " anybody", " nasty", " somebody", "\u4ec0\u4e48\u5462", "going"], [" stuff", "_stuff", " everybody", " somebody", " anybody", " ---", "-&", " smack"], [" stuff", "\u2014\"", "_stuff", " everybody", " somebody", "-&", " ---", "\u2014and"], ["\u2014\"", "\n\n", " stuff", " ---", " \u2014", "\u2014and", "_stuff", " Somebody"], [" stuff", "_stuff", " ---", " everybody", "\u4ec0\u4e48\u5462", " somebody", " ___", " things"], [" stuff", " \u2014", " things", " everybody", " ---", "\u2014and", "\u2014\"", " \u2015"], [" \u2014", " stuff", " \u2015", " things", " everybody", " --", "\u2014and", " ''"], [" ___", " \n\n", "\n\n", " ---", " \u2014", "___", " \u2015", " --"], [" ___", "___", " __", " ---", " stuff", " ____", ":__", " _____"], [" ___", " \u2014", " __", " stuff", " \u2015", "___", " things", "\n\n"], ["\n\n", " ___", " \n\n", " __", "___", " \u2014", " ---", " ____"], ["\n\n", " ___", " \n\n", " \u2014", " __", "___", " ?", " ---"], [" ___", "\n\n", " __", " ____", " \u2014", "___", " _____", " \n\n"], [" ___", " \u2014", " __", " ?", "\n\n", " ____", " _____", " \u2014\u2014"], [" \u2014", "\n\n", " ___", " ?", " --", " \u2026", " \u2019", " ..."], [" \u2014", " ?", " ___", "\n\n", " :", " __", " what", " \u2026"], [" \u2014", " ?", "\n\n", " :", " ___", " \u2014\u2014", " \u2026", "\u2014and"], [" \u2014", " :", "<|endoftext|>", " \u2026", "\n\n", "\u2014and", "\u2014but", " \n\n"], [" \u2014", " \u2026", "\n\n", " \n\n", "<|endoftext|>", " :", "\u2014and", "  \n\n"], [" \u2014", " :", "\u2014and", " \n\n", "\n\n", "\u2014but", ":", "\u201d:"], [" :", " \u2014", ":", "\u2014and", "\u201d:", " \uff1a", " ?", " :</"], [" :", " \u2014", ":", " \uff1a", " ?", " \u2026", "\u201d:", " :\\"], [" :", ":", " \u2014", "\u201d:", " \uff1a", " \u2026", " ?", " :\\"], [":", " :", "\u201d:", " \u2014", " \uff1a", "?:", "\uff1a", " ?"], [":", " :", " \u2014", "\u201d:", "\u2014and", " strategy", "\u2014but", ":\\\""], [":", " :", ":\\", ":\\\"", " \u2014", " :\\", " strategy", "__:"], [" :", ":", " \u2014", ":\\", ":\\\"", " :\\", " Problem", "__:"], [" :", " \u2014", ":", " :\\", " strategy", " problem", " Problem", " ?"], [" :", " \u2014", ":", ":\\", " :\\", " Strategy", " strategy", " Problem"], [":", " :", ":\\", ":**", " :**", " :\\", ":*", "\uff1a"], [":", ":\\", " :", ":**", ":*", " :\\", " :**", ":</"], [":", ":\\", ":**", ":*", ":</", "**:", " :", " :**"], [":", ":\\", ":**", ":*", ":</", "**:", ":\\\"", " :**"], [":", ":**", ":\\", ":*", ":</", "\uff1a**", " :</", " :**"], [":*", ":**", "\uff1a**", " :**", ":\\", "*:", ":", " :</"], [":**", ":*", " :**", ":</", ":\"", "\uff1a**", ":", "*:"], [":**", ":*", " :**", ":</", ":\\", ":\"", ":", "\uff1a**"], [":**", ":*", " it", ":</", " :**", "\u5b83", ":", ":("], [" it", "\u5b83", "\u5b83\u5728", ":**", "\u5b83\u662f", ":*", " \u043e\u043d\u043e", " n\u00f3"], [" it", "\u5b83", ":**", "\u5b83\u5728", ":*", " :**", " n\u00f3", " It"], [" it", "\u5b83", "\u5b83\u5728", " It", " n\u00f3", " \u043e\u043d\u043e", "_it", "-it"], [" it", "\u5b83", " It", "\u5b83\u5728", "_it", ":**", " n\u00f3", "-it"], [" it", " It", "\u5b83", "_it", "\u5b83\u5728", "-it", "It", " n\u00f3"], [" it", " It", "_it", "-it", "\u5b83", "It", "it", ":**"], [" It", " it", "_it", "It", "-it", "\u5b83", " (", " Each"], [" It", "It", " it", "_it", " Each", "\tIt", " That", " Its"]], "p": [[0.4173, 0.325, 0.1123, 0.0104, 0.0092, 0.0092, 0.0087, 0.0087], [0.1033, 0.0278, 0.0245, 0.0158, 0.014, 0.0096, 0.0096, 0.007], [0.152, 0.1045, 0.0982, 0.0718, 0.0675, 0.0634, 0.0281, 0.0193], [0.0127, 0.005, 0.005, 0.0032, 0.0028, 0.0027, 0.0025, 0.0025], [0.0715, 0.0159, 0.015, 0.0132, 0.0097, 0.0091, 0.008, 0.0075], [0.0049, 0.0046, 0.0041, 0.003, 0.003, 0.003, 0.0023, 0.0022], [0.074, 0.0577, 0.0542, 0.0509, 0.024, 0.0226, 0.0187, 0.0137], [0.1072, 0.0348, 0.0239, 0.0211, 0.0186, 0.0175, 0.0175, 0.0175], [0.0835, 0.0539, 0.0506, 0.0271, 0.0239, 0.0211, 0.0198, 0.0145], [0.044, 0.0343, 0.0322, 0.0162, 0.0143, 0.0134, 0.0118, 0.0111], [0.0762, 0.0557, 0.0462, 0.0462, 0.0318, 0.0263, 0.0218, 0.016], [0.2192, 0.0358, 0.0336, 0.0159, 0.0124, 0.0096, 0.0052, 0.0048], [0.3041, 0.0363, 0.0301, 0.0142, 0.0134, 0.0104, 0.0086, 0.0046], [0.15, 0.1409, 0.0457, 0.0191, 0.014, 0.0131, 0.007, 0.0066], [0.2338, 0.046, 0.0382, 0.0337, 0.0297, 0.0204, 0.0124, 0.0116], [0.057, 0.0346, 0.0325, 0.0269, 0.0163, 0.0135, 0.0127, 0.0119], [0.2693, 0.0874, 0.0302, 0.0235, 0.0208, 0.0152, 0.0152, 0.0143], [0.2854, 0.0363, 0.0341, 0.0171, 0.0161, 0.0151, 0.0118, 0.0111], [0.2397, 0.0535, 0.0286, 0.0163, 0.0144, 0.0135, 0.0127, 0.0119], [0.1347, 0.0386, 0.0362, 0.0282, 0.0249, 0.0249, 0.0171, 0.0171], [0.0831, 0.0733, 0.0473, 0.0369, 0.0287, 0.0238, 0.0185, 0.0154], [0.1386, 0.0655, 0.035, 0.0273, 0.0256, 0.02, 0.02, 0.0176], [0.1339, 0.0493, 0.0408, 0.0408, 0.0281, 0.0281, 0.0264, 0.0264], [0.0989, 0.0873, 0.0771, 0.053, 0.0387, 0.0266, 0.025, 0.0207], [0.1162, 0.0798, 0.0549, 0.0455, 0.0427, 0.0354, 0.0313, 0.0313], [0.6281, 0.0484, 0.0377, 0.0259, 0.0229, 0.0157, 0.0102, 0.0079], [0.514, 0.0422, 0.0372, 0.0329, 0.024, 0.0212, 0.0155, 0.0146], [0.8431, 0.0889, 0.0327, 0.0136, 0.0032, 0.0024, 0.002, 0.0018], [0.9191, 0.0315, 0.0278, 0.007, 0.0027, 0.0009, 0.0008, 0.0007], [0.6917, 0.1061, 0.0501, 0.0304, 0.0237, 0.0209, 0.0163, 0.0127], [0.4334, 0.2979, 0.0518, 0.0518, 0.0429, 0.0131, 0.0102, 0.007], [0.6467, 0.1273, 0.0343, 0.0322, 0.0195, 0.0098, 0.0076, 0.0072], [0.5447, 0.1377, 0.065, 0.065, 0.0507, 0.0164, 0.0113, 0.0094], [0.7391, 0.0472, 0.0269, 0.0269, 0.0163, 0.0105, 0.0105, 0.0072], [0.422, 0.0781, 0.0689, 0.0445, 0.0418, 0.0306, 0.0287, 0.0287], [0.3492, 0.1285, 0.1, 0.0779, 0.0779, 0.0732, 0.0238, 0.0174], [0.4473, 0.1646, 0.0534, 0.0324, 0.0286, 0.0237, 0.0185, 0.0144], [0.3611, 0.219, 0.0757, 0.0336, 0.0278, 0.0231, 0.0204, 0.0169], [0.4775, 0.1207, 0.0536, 0.0346, 0.0287, 0.021, 0.0197, 0.0185], [0.1421, 0.0918, 0.0715, 0.0631, 0.0523, 0.0407, 0.0263, 0.0247], [0.3422, 0.0921, 0.0463, 0.0299, 0.0233, 0.017, 0.016, 0.015], [0.1661, 0.0889, 0.0611, 0.0507, 0.0447, 0.0271, 0.0198, 0.0145], [0.1578, 0.1229, 0.07, 0.0452, 0.0352, 0.0331, 0.0292, 0.0242], [0.2975, 0.1593, 0.0586, 0.026, 0.0229, 0.0179, 0.0168, 0.0168], [0.5418, 0.0647, 0.0238, 0.0136, 0.0127, 0.0112, 0.0112, 0.0099], [0.4525, 0.0575, 0.0575, 0.0289, 0.024, 0.0128, 0.0128, 0.0094], [0.68, 0.092, 0.0717, 0.0248, 0.0117, 0.011, 0.0103, 0.008], [0.6125, 0.1989, 0.0392, 0.0346, 0.0305, 0.0082, 0.0082, 0.0053], [0.5464, 0.2581, 0.0653, 0.0212, 0.0128, 0.01, 0.01, 0.0083], [0.3631, 0.3205, 0.0918, 0.036, 0.028, 0.0124, 0.0124, 0.0117], [0.1835, 0.1185, 0.0675, 0.0596, 0.0526, 0.0464, 0.0464, 0.0361], [0.2085, 0.2085, 0.0677, 0.0677, 0.0527, 0.0527, 0.0527, 0.0465], [0.4735, 0.2237, 0.0641, 0.0343, 0.0267, 0.0208, 0.0208, 0.0184], [0.5476, 0.1569, 0.0654, 0.0449, 0.0309, 0.0273, 0.0241, 0.0146], [0.2255, 0.1756, 0.1756, 0.057, 0.0503, 0.0392, 0.0223, 0.0197], [0.6944, 0.2555, 0.0238, 0.0036, 0.0032, 0.0022, 0.002, 0.0017], [0.773, 0.1725, 0.0182, 0.016, 0.0022, 0.0019, 0.0019, 0.0017], [0.8932, 0.0941, 0.0041, 0.0022, 0.001, 0.001, 0.0008, 0.0007], [0.786, 0.1064, 0.0731, 0.0099, 0.006, 0.0041, 0.0022, 0.0022], [0.8963, 0.0945, 0.0053, 0.0015, 0.0006, 0.0006, 0.0002, 0.0001], [0.8283, 0.1631, 0.0049, 0.0011, 0.001, 0.0008, 0.0002, 0.0001], [0.9489, 0.0472, 0.0013, 0.0011, 0.0006, 0.0001, 0.0001, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 506, "top": [[" \u2013", ".", ",", "\u2013", "y", "i", "\u2026..", "t"], [" \u2013", "\u2013", ".", "\u2013and", ",", " very", " Very", ".\u2013"], [" \u2013", "\u2013", ".", "\u2026", "\u2026..", ",", "\u2026.", "\u2013and"], [" Shemale", " Guta", " Geile", " milfs", " Blowjob", "ICAST", " Pubbl", " Strec"], [" Guta", "(IT", " HIT", "ICAST", " crazy", "rost", " \u201c.", " Geile"], ["(IT", " \u201d", " \u201c.", "!", ".", ".rt", "\uff01", "!."], [" \u201d", "!", ".", " !", "\uff01", "!\u201d", "(IT", " \u2013"], [".", "!", " \u201e", " !", " !!", "!.", " \u201d", "(IT"], [".", "!", "!.", "!\u201d", ".\u201d", ",.", "\uff01", ","], [",", "!", ".", "!.", "!\\", "(IT", "!!", ",."], [".", "!", ",", " .", "?", ":", ",.", " \u2013"], [" ****", " !", "(IT", "ting", "!--", ".\\\"", "inerary", " pretty"], [" !", " pretty", " \\\"", " --", " **.**", " :", " ****", " ''"], [" pretty", " --", " !", " stuff", " anyway", " :", " ''", " trouble"], [" --", "--", " ,", " !", " \u2013", " pretty", "!", " :"], [" --", " \u2013", " ,", " pretty", " \u2014", "--", " even", ","], [",", " \u2013", "--", ".", ":", " --", "!", " ,"], [",", ".", " \u2013", ":", " ,", " --", "--", "!"], [" --", " ,", " :", " !", " .", "--", " \u2013", " rather"], [" --", " ,", "--", " \u2013", " \u2014", " !", ",", " rather"], [" --", "<|endoftext|>", " ,", "\n\n", " @", " :", "--", " ;"], [" :", " --", " ?", " ,", " !", " !**", " **:", " \u061f"], [" --", " ,", " :", " ?", " .", " ;", " !", " ---"], [" ,", " --", " :", " .", " ;", " ?", "\n\n", " !"], ["\n\n", " \n\n", " --", " __", " :", " ,", " ___", " ____"], [" ___", " :", " __", " **", " ____", " **:", " --", " :**"], ["\n\n", " :", " ___", " __", " --", " ,", " ____", " **"], ["\n\n", " ,", " --", " :", " \n\n", " ...", " __", " _"], ["\n\n", " ,", " :", " --", " \n\n", " ?", " ...", " @"], [" ...", " ___", " ,", " __", " ____", " ______", "\n\n", " :"], [" ...", " .", " :", " ,", " ?", " \u2026", " \n\n", "\n\n"], [" ,", " ...", " .", " :", " instead", " ?", " \u2026", " !"], [" ,", " .", " ...", " :", " instead", " ?", " !", " \u2026"], [" \u2026", " ...", " technology", " \u2014", " seamlessly", " ...\"", " tech", " instead"], [" \u2026", "<|endoftext|>", " ...", " \u2013", " \u2014", " seamlessly", " leveraging", " technology"], [" \u2026", "<|endoftext|>", " ...", "\u2026\u2026", " \u2013", " \u2014", " [\u2026]", "\n\n"], [" \u2026", " \u2014", " \u2013", "<|endoftext|>", "\n\n", " leveraging", " ...", "\u2026\u2026"], [" \u2026", " \u2013", "\n\n", " \u2014", "<|im_end|>", " leveraging", "<|endoftext|>", " \n\n"], [" \u2026", " \u2013", " leveraging", " \u2014", " via", "<|endoftext|>", " hybrid", " :"], [" \u2026", " \u2013", " leveraging", " [\u2026]", " via", "<|endoftext|>", " [...]", " hybrid"], [" leveraging", " \u2026", " via", " using", " specialized", " engineering", " hybrid", " hardware"], [" engineering", " leveraging", " using", " via", " hardware", " software", " technology", " \u2026"], [" engineering", " specialized", " leveraging", " hardware", " interoper", " technology", " software", " via"], [" via", " leveraging", " using", " specialized", " engineering", " technology", " embedded", " hardware"], [" via", " using", " leveraging", " embedded", " engineering", " hybrid", " technology", " specialized"], [" via", " using", " leveraging", " hybrid", " embedded", " specialized", " modular", " engineering"], [" leveraging", " via", " using", " hybrid", " Hybrid", " embedded", " workaround", " Embedded"], [":", " **", " :", " Hybrid", " via", " leveraging", " hybrid", " using"], [" **", " **:", ":", " :**", " :", ":**", " **(", " **\u201c"], [":", ":**", ":\\", " **:", "**:", " :**", "\uff1a**", " :"], [":", "\n\n", " **:", "**:", "  \n\n", ":**", " :**", " :"], [":", "\n\n", ":**", ":*", " :**", "**:", "*:", ":\\"], [":**", " :**", ":*", ":", "\uff1a**", "**:", ":\"", "*:"], [":**", " :**", ":*", ":", "\uff1a**", ":\"", ":\\", "**:"], [":**", ":*", " :**", ":", "\uff1a**", " (", ":</", "**:"], [":**", ":*", " :**", ":", "\uff1a**", "**:", ":\"", ":</"], [":**", " :**", "\uff1a**", ":*", "**:", ":", ":\"", ".:**"], [":**", " :**", ":*", "\uff1a**", " (", ":", "**:", ":\""], [":**", " (", " :**", "**:", ":", "\uff1a**", ":*", " ():"], [":**", " (", " :**", ":*", "**:", ":", ":\"", "\uff1a**"], [" (", ":**", ":", ":*", " :**", ":\"", "**:", " ():"], [":**", " (", ":", ":*", " :**", "\n\n", "**:", ":\""], [":**", " (", " :**", "\uff1a**", ":", " **(", "**:", "**"]], "p": [[0.7479, 0.1473, 0.0422, 0.0422, 0.002, 0.0019, 0.0017, 0.001], [0.3132, 0.1082, 0.0699, 0.0291, 0.0156, 0.0146, 0.0095, 0.0061], [0.5947, 0.1704, 0.0912, 0.038, 0.0315, 0.0203, 0.0149, 0.0085], [0.0301, 0.0142, 0.0104, 0.0081, 0.0067, 0.0036, 0.0034, 0.0028], [0.0138, 0.0069, 0.0058, 0.0045, 0.0033, 0.0031, 0.0027, 0.0024], [0.0298, 0.0181, 0.0141, 0.0117, 0.0103, 0.0059, 0.0052, 0.0043], [0.2139, 0.0652, 0.0508, 0.0372, 0.0272, 0.024, 0.0199, 0.0176], [0.1489, 0.1399, 0.0548, 0.0454, 0.0259, 0.0214, 0.0189, 0.0178], [0.7033, 0.0615, 0.035, 0.0226, 0.0114, 0.0065, 0.0057, 0.0054], [0.1982, 0.1129, 0.0826, 0.0442, 0.0415, 0.0252, 0.0144, 0.0105], [0.8965, 0.0446, 0.0198, 0.0034, 0.0024, 0.0022, 0.0022, 0.002], [0.0227, 0.0166, 0.0114, 0.0114, 0.0089, 0.0089, 0.0084, 0.0084], [0.0333, 0.0123, 0.0115, 0.0102, 0.0102, 0.0102, 0.0102, 0.009], [0.0754, 0.0518, 0.0356, 0.026, 0.0179, 0.0148, 0.0096, 0.009], [0.4284, 0.1391, 0.0657, 0.0291, 0.0257, 0.0188, 0.0177, 0.0156], [0.2928, 0.1012, 0.074, 0.0422, 0.0256, 0.0199, 0.0176, 0.0121], [0.7768, 0.0723, 0.0142, 0.0111, 0.0098, 0.0086, 0.0086, 0.0086], [0.5982, 0.161, 0.0461, 0.028, 0.0232, 0.0117, 0.0066, 0.0059], [0.5094, 0.0537, 0.0306, 0.027, 0.0164, 0.0154, 0.012, 0.0113], [0.7668, 0.0713, 0.0232, 0.0124, 0.0124, 0.0103, 0.0055, 0.0046], [0.4368, 0.2649, 0.1251, 0.0555, 0.0262, 0.0103, 0.0091, 0.0052], [0.2836, 0.2351, 0.0633, 0.0384, 0.0339, 0.0248, 0.017, 0.016], [0.5418, 0.2559, 0.1209, 0.0306, 0.0144, 0.0127, 0.0057, 0.0014], [0.746, 0.1144, 0.0371, 0.0289, 0.0225, 0.0094, 0.0029, 0.0025], [0.9319, 0.0319, 0.0091, 0.0043, 0.0038, 0.003, 0.0026, 0.002], [0.2332, 0.1817, 0.1415, 0.1102, 0.0858, 0.0405, 0.0358, 0.0246], [0.2804, 0.1927, 0.17, 0.1031, 0.0552, 0.0379, 0.0261, 0.0261], [0.9555, 0.0225, 0.005, 0.0039, 0.0039, 0.0016, 0.0011, 0.0008], [0.8935, 0.0393, 0.0185, 0.0093, 0.0053, 0.0037, 0.0037, 0.0025], [0.6217, 0.0578, 0.0397, 0.0397, 0.0351, 0.0273, 0.0273, 0.0241], [0.3396, 0.2645, 0.1604, 0.1416, 0.0246, 0.0066, 0.0046, 0.0043], [0.397, 0.2125, 0.2125, 0.0369, 0.0073, 0.0068, 0.0047, 0.0047], [0.3274, 0.1986, 0.0778, 0.0645, 0.0345, 0.0185, 0.0153, 0.0112], [0.3962, 0.3497, 0.012, 0.0106, 0.0093, 0.0077, 0.0068, 0.0057], [0.3138, 0.1154, 0.0899, 0.0658, 0.0452, 0.0147, 0.0107, 0.0107], [0.4551, 0.3128, 0.0544, 0.0257, 0.0227, 0.0146, 0.0129, 0.0114], [0.2088, 0.119, 0.0927, 0.0496, 0.0438, 0.0301, 0.0125, 0.0104], [0.1532, 0.0989, 0.0497, 0.0342, 0.0302, 0.0283, 0.025, 0.0143], [0.1112, 0.0866, 0.0435, 0.0361, 0.0318, 0.0248, 0.017, 0.017], [0.2692, 0.053, 0.0388, 0.0302, 0.0267, 0.0162, 0.0162, 0.0143], [0.0539, 0.0327, 0.0327, 0.0307, 0.0254, 0.0239, 0.0211, 0.0164], [0.074, 0.0696, 0.0577, 0.0509, 0.0396, 0.0329, 0.0272, 0.0226], [0.0749, 0.0621, 0.0621, 0.0427, 0.0354, 0.0332, 0.0312, 0.0276], [0.1396, 0.0901, 0.0453, 0.0332, 0.0332, 0.0311, 0.0258, 0.0214], [0.3074, 0.0686, 0.0686, 0.0345, 0.0223, 0.0173, 0.0173, 0.0163], [0.2815, 0.133, 0.0914, 0.0521, 0.0521, 0.0159, 0.0132, 0.0116], [0.1256, 0.1042, 0.0762, 0.0462, 0.0434, 0.036, 0.0205, 0.0193], [0.2553, 0.057, 0.0503, 0.0472, 0.0444, 0.0417, 0.0174, 0.0163], [0.3628, 0.0977, 0.0761, 0.0491, 0.0461, 0.0382, 0.0298, 0.028], [0.2695, 0.1852, 0.1442, 0.0991, 0.0531, 0.0413, 0.0322, 0.0143], [0.4587, 0.1314, 0.0903, 0.0548, 0.0548, 0.0427, 0.0215, 0.0215], [0.5577, 0.141, 0.1098, 0.0519, 0.0216, 0.0168, 0.0131, 0.0116], [0.7646, 0.0711, 0.0554, 0.0489, 0.014, 0.014, 0.0096, 0.004], [0.7927, 0.0651, 0.0651, 0.0348, 0.0145, 0.0061, 0.0053, 0.0025], [0.7365, 0.088, 0.0534, 0.0471, 0.0135, 0.0082, 0.0072, 0.0064], [0.8286, 0.06, 0.0413, 0.0195, 0.0118, 0.0081, 0.0056, 0.0043], [0.9454, 0.0367, 0.0082, 0.005, 0.0014, 0.0007, 0.0006, 0.0004], [0.9203, 0.0519, 0.008, 0.008, 0.0048, 0.0026, 0.0014, 0.0007], [0.7578, 0.1026, 0.0905, 0.0157, 0.0108, 0.0058, 0.0058, 0.0019], [0.7271, 0.1838, 0.0676, 0.0081, 0.0034, 0.0023, 0.0012, 0.001], [0.543, 0.4229, 0.0145, 0.0068, 0.0047, 0.0013, 0.0009, 0.0008], [0.5746, 0.3485, 0.0416, 0.0105, 0.0105, 0.0028, 0.0014, 0.0012], [0.987, 0.011, 0.0007, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001]], "ranks": {}}, {"pos": 507, "top": [[" \u2013", "\u2013", ".", ",", "s", "o", "y", ";"], [" \u2013", "\u2013", "\u2013and", "s", "\u2013\u2013", ".\u2013", "sWith", ","], ["\u2013", ",", " \u2013", "\u2026", ".", ".\u2013", "\u2013and", "\u2026.."], ["auff", " milfs", "\uff0a\uff0a\uff0a\uff0a", "eits", "erias", "erdale", "aald", "eias"], ["a", "auf", "auss", "ing", "auff", "e", "aient", "i\u010d"], ["auf", "aik", "aip", "a", "aat", "kits", "auff", "aum"], ["a", "\u2026\u2026", "o", "e", "aft", "aat", "ing", "y"], ["i\u010d", "a", "auf", "o", "aat", "ing", "y", "e"], ["i\u010d", "\u2026\u2026", " ......", "......", " [\u2026]", "...\u201d", "\u2026..", "\u2026\u201d"], ["\u2013and", "\u2013\u2013", "\u2013", "o", "aide", "oine", " goodies", "aft"], ["o", "a", "l", "y", "e", "i", "d", "n"], [" thru", " kinda", "stuff", " anyways", " goodies", "aire", " veggies", " REALLY"], [" kinda", " anyways", " freaking", " veggies", "a", " REALLY", "o", " goodies"], [" kinda", " REALLY", " goodies", " folks", " thru", " freaking", " veggies", " anyways"], ["o", " thru", " kinda", " goodies", "l", " folks", " stuff", "a"], ["o", " thru", "a", "e", "n", " folks", " kinda", " goodies"], ["a", "o", "n", "e", " folks", " kinda", "l", "r"], ["o", "a", "n", " tweaking", "e", " thankfully", " goodies", " tweaked"], [" thankfully", "o", " tweaking", "a", " tweaked", " arguably", " savvy", "e"], [" --", "a", "o", " arguably", "--", "e", " thankfully", " tweaking"], ["\n\n", " --", "<|endoftext|>", "a", " \n\n", " :", " arguably", " @"], [" :**", " ?**", " ;;^", " :", " !**", " :</", " tweaking", " :\\"], [" :**", " --", " :", " arguably", " tweaking", " ?**", " :\\", " :*"], [" --", " :", " arguably", " :**", " ultimately", "fully", " notably", " tweaking"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " --", "\t\n\n"], [" :**", " --", " arguably", " tweaking", " leveraging", " :", " :\\", " overarching"], [" :", "\n\n", " arguably", " leveraging", " --", " :**", " tweaking", " ultimately"], ["\n\n", " \n\n", " arguably", " --", " ultimately", "\r\n\r\n", " notably", "  \n\n"], ["\n\n", " \n\n", " leveraging", " arguably", "  \n\n", "\r\n\r\n", " tweaking", " ultimately"], [" \n\n", "\n\n", "  \n\n", " leveraging", " \n  \n", " \u2014", "\r\n\r\n", " arguably"], ["\n\n", " \n\n", " :", "  \n\n", " ultimately", " --", " arguably", " :\\"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", " :", " --", " \u2018", " ultimately"], [" :", "\n\n", " :\\", " :**", " ultimately", " \u2013", ":\\", " leveraging"], [" \n\n", "  \n\n", "<|endoftext|>", " leveraging", "\n\n", " :", " strategy", " priorit"], [" :", " :**", " leveraging", "__:", ":**", " :\\", "<|endoftext|>", "  \n\n"], ["\n\n", " :", " \n\n", "  \n\n", "<|endoftext|>", " :**", " leveraging", "\u201d:"], [" leveraging", " strategy", " :", " strategically", " Strategy", " strategies", " priorit", "\n\n"], [" strategy", " leveraging", " Strategy", " strategically", " strategies", " strategic", " :", " priorit"], [" strategy", " Strategy", " leveraging", " strategies", " strategically", " strategic", " pragmatic", " :"], [" strategy", " Strategy", " leveraging", " strategies", " strategically", " strategic", "\u7b56\u7565", " redesign"], [" strategy", " Strategy", " strategies", " leveraging", "\u7b56\u7565", " strategic", " redesign", " strategically"], [" strategy", " Strategy", " strategies", " leveraging", " redesign", " strategic", " restructuring", " implementation"], [" strategy", " strategies", " Strategy", " leveraging", " restructuring", " redesign", " strategic", " implementation"], [" strategy", " Strategy", " strategies", " leveraging", " redesign", " workaround", " restructuring", " implementation"], [" strategy", " Strategy", " strategies", " leveraging", " redesign", " restructuring", " strategic", " implementation"], [" strategy", " Strategy", " leveraging", " strategies", " strategic", " restructuring", " pragmatic", " redesign"], [" Strategy", " strategy", " leveraging", " strategies", " workaround", " restructuring", " Strategies", " strategic"], [" Strategy", " leveraging", " strategy", " Survival", " Solutions", " strategies", " ONLY", " Strategies"], [" Strategy", " leveraging", " strategy", " workaround", " Solutions", " Survival", " STILL", " strategies"], [" Strategy", " workaround", " leveraging", " Survival", " Solutions", " strategy", " Strategies", "\u8865\u6551"], [" Strategy", " Survival", "\u7b56\u7565", "\u5177\u4f53\u63aa\u65bd", "\u7684\u7b56\u7565", " leveraging", " workaround", " STRICT"], [" Strategy", "\u5177\u4f53\u63aa\u65bd", " Solutions", " workaround", " STRICT", " Tactics", "\u7b56\u7565", "\u4f9d\u7136"], [" Strategy", " Reality", "\u5177\u4f53\u63aa\u65bd", "\u8865\u6551", "\u52a1\u5b9e", " STILL", "\u7b56\u7565", " pragmatic"], [" Reality", " Strategy", " Still", "\u4f9d\u7136", " STILL", "still", " Constraints", "within"], [" Reality", "within", " within", " Within", " Fixes", " Remaining", " Strategy", " Survival"], [" Reality", " Fixes", " Retrofit", "\u52a1\u5b9e", " STRICT", " Survival", "\u4f9d\u7136", " Hardcore"], [" Strict", "Strict", " STRICT", " strict", "strict", " Reality", " strictly", "\u4e25\u683c\u7684"], [" Strict", "Strict", " strict", " strictly", " STRICT", " Reality", "strict", " within"], [" Strict", "Strict", " Within", " ruthless", " Reality", " Remaining", " strictly", " strict"], [" Strict", "Strict", " strict", " strictly", "strict", " STRICT", "\u4e25\u683c\u7684", "\u4e25\u683c"], [" Strict", " strict", "Strict", " strictly", " STRICT", "strict", " Still", " ruthless"], [" Strict", "Strict", "strict", " strictly", " strict", " Within", " STRICT", " Still"], ["C", "The", "Strict", "In", "in", "Hard", " Strict", " The"]], "p": [[0.9536, 0.0326, 0.0064, 0.0044, 0.001, 0.0004, 0.0003, 0.0003], [0.8538, 0.1156, 0.0035, 0.0027, 0.0009, 0.0004, 0.0004, 0.0004], [0.8493, 0.0543, 0.0291, 0.02, 0.0137, 0.0073, 0.0065, 0.0065], [0.0076, 0.0055, 0.0052, 0.0052, 0.0049, 0.0046, 0.0041, 0.0034], [0.1149, 0.0742, 0.0373, 0.035, 0.0165, 0.0146, 0.0146, 0.0129], [0.0258, 0.0177, 0.0147, 0.0147, 0.0138, 0.0114, 0.0101, 0.0095], [0.3874, 0.0763, 0.0558, 0.036, 0.016, 0.015, 0.0103, 0.0103], [0.0695, 0.0396, 0.0272, 0.0272, 0.0155, 0.0155, 0.0155, 0.01], [0.0433, 0.0407, 0.0247, 0.0205, 0.0205, 0.0192, 0.0192, 0.015], [0.0172, 0.0134, 0.0119, 0.0063, 0.0041, 0.0041, 0.0038, 0.0036], [0.5726, 0.1859, 0.0285, 0.0252, 0.0196, 0.0093, 0.0082, 0.0077], [0.0162, 0.0134, 0.0111, 0.0111, 0.0105, 0.0068, 0.0056, 0.0053], [0.1084, 0.058, 0.0274, 0.0242, 0.0188, 0.0177, 0.0177, 0.0107], [0.1662, 0.0476, 0.0447, 0.0289, 0.0271, 0.0225, 0.0175, 0.0155], [0.0961, 0.0661, 0.0427, 0.0332, 0.0202, 0.0189, 0.0178, 0.0139], [0.0871, 0.0496, 0.0266, 0.022, 0.022, 0.0194, 0.0194, 0.0183], [0.1798, 0.1091, 0.075, 0.0584, 0.0215, 0.0139, 0.0139, 0.013], [0.0768, 0.0768, 0.0363, 0.0182, 0.0142, 0.0125, 0.0118, 0.0111], [0.0221, 0.0208, 0.0208, 0.0184, 0.0126, 0.0118, 0.0118, 0.0111], [0.0946, 0.0239, 0.0186, 0.0154, 0.0145, 0.0145, 0.0136, 0.0106], [0.2807, 0.0278, 0.0216, 0.0179, 0.0169, 0.0158, 0.009, 0.0066], [0.1009, 0.0145, 0.0137, 0.01, 0.0057, 0.0057, 0.0053, 0.0035], [0.0766, 0.041, 0.0319, 0.011, 0.0071, 0.0055, 0.0046, 0.0041], [0.0587, 0.0277, 0.0116, 0.009, 0.007, 0.0045, 0.0045, 0.0043], [0.2592, 0.2149, 0.0616, 0.045, 0.0423, 0.0137, 0.0121, 0.0107], [0.0205, 0.0181, 0.011, 0.0085, 0.008, 0.0071, 0.0052, 0.0038], [0.012, 0.0113, 0.0106, 0.0106, 0.01, 0.0082, 0.0082, 0.006], [0.4431, 0.0321, 0.0195, 0.0126, 0.0086, 0.0081, 0.0046, 0.0043], [0.2142, 0.0509, 0.0396, 0.0256, 0.0146, 0.0129, 0.0088, 0.0088], [0.2781, 0.2165, 0.1584, 0.0189, 0.0101, 0.0101, 0.0101, 0.0089], [0.4497, 0.1137, 0.0572, 0.0306, 0.0145, 0.0099, 0.0082, 0.0077], [0.3684, 0.1196, 0.0601, 0.0251, 0.0183, 0.0183, 0.0111, 0.0105], [0.2439, 0.0374, 0.033, 0.0227, 0.0177, 0.0166, 0.0156, 0.0138], [0.1073, 0.1008, 0.0947, 0.0575, 0.054, 0.0199, 0.0199, 0.0165], [0.1907, 0.1683, 0.0353, 0.0292, 0.0275, 0.0228, 0.0214, 0.0201], [0.1989, 0.1755, 0.1549, 0.0732, 0.0417, 0.0392, 0.0253, 0.0174], [0.2416, 0.0946, 0.037, 0.037, 0.0271, 0.0175, 0.0154, 0.0154], [0.2278, 0.1382, 0.0787, 0.0349, 0.029, 0.0212, 0.0212, 0.0137], [0.3287, 0.1067, 0.0781, 0.0346, 0.0325, 0.0224, 0.0174, 0.0136], [0.4625, 0.1702, 0.043, 0.0404, 0.0203, 0.0191, 0.014, 0.0116], [0.5298, 0.172, 0.0525, 0.0361, 0.0125, 0.0117, 0.0117, 0.0097], [0.6326, 0.097, 0.0755, 0.0278, 0.014, 0.0131, 0.009, 0.008], [0.5688, 0.0872, 0.0679, 0.0364, 0.0283, 0.0283, 0.0161, 0.0098], [0.5229, 0.1322, 0.0909, 0.0429, 0.0148, 0.0131, 0.0123, 0.0109], [0.5484, 0.0953, 0.0742, 0.0291, 0.0188, 0.0176, 0.0114, 0.0094], [0.3943, 0.128, 0.0568, 0.0568, 0.0173, 0.0173, 0.0135, 0.0135], [0.2639, 0.2056, 0.0627, 0.0553, 0.0231, 0.0123, 0.0116, 0.0109], [0.2886, 0.113, 0.073, 0.0304, 0.0223, 0.0173, 0.0173, 0.0127], [0.2479, 0.0971, 0.071, 0.0357, 0.0245, 0.0217, 0.018, 0.014], [0.244, 0.0744, 0.0657, 0.0424, 0.0274, 0.0213, 0.0177, 0.0121], [0.2808, 0.0315, 0.0245, 0.0245, 0.018, 0.0169, 0.0169, 0.0149], [0.1276, 0.05, 0.0285, 0.0236, 0.0196, 0.0184, 0.0173, 0.0152], [0.1555, 0.069, 0.0306, 0.0238, 0.021, 0.0198, 0.0186, 0.0186], [0.0968, 0.0754, 0.0587, 0.0379, 0.0295, 0.0203, 0.0191, 0.0179], [0.078, 0.0733, 0.0646, 0.057, 0.0346, 0.0305, 0.0253, 0.0238], [0.0607, 0.0325, 0.0287, 0.0253, 0.0253, 0.0223, 0.021, 0.021], [0.2172, 0.0705, 0.0705, 0.0485, 0.0377, 0.0333, 0.0333, 0.0229], [0.1891, 0.0788, 0.0696, 0.0509, 0.0478, 0.0449, 0.0422, 0.0329], [0.2493, 0.1039, 0.063, 0.0461, 0.0407, 0.028, 0.028, 0.028], [0.3846, 0.2059, 0.2059, 0.1102, 0.0279, 0.0191, 0.007, 0.0038], [0.4606, 0.132, 0.132, 0.1028, 0.026, 0.0148, 0.0079, 0.0074], [0.4073, 0.2799, 0.0457, 0.0379, 0.0356, 0.0116, 0.0066, 0.0058], [0.8607, 0.0801, 0.0334, 0.0074, 0.0023, 0.0018, 0.0017, 0.0015]], "ranks": {}}, {"pos": 508, "top": [[" \u2013", ".", ",", "\u2013", "<|endoftext|>", "\u00a0", ";", " "], [" \u2013", "\u2013", "\u2013and", " Very", " \u2013,", "  \n", " ", "."], [" \u2013", "\u2013", ".", ",", "\u2018", "[", "\u2013and", "\u2026"], [" milfs", " Shemale", "aruhi", " Guta", "TRGL", " Strec", "-------------</", "----------</"], ["@$", ":@", " (@", " @", "(@", "=@", " @$", "\uff20"], ["\uff01", "emble", " \uff0c", "\uff1f", "\uff1a", " \uff1a", "wine", " \u2018"], ["\u2018", "\uff01", "\uff06", "\uff08", "   \n", "\uff1f", "\u4e2d", " \n"], ["   \n", "       \n", " \n \n", "     \n", " \n    \n", " \n", "\uff06", "   \n\n"], ["   \n\n", " \n\n", "   \n", " \n    \n", " \n\n\n", "    \n\n", "\uff06", "  \n\n"], ["\u00a0", "  \n  \n", "\\-", "   \n", " \\@", " busted", " yummy", "\\\\\""], ["\u00a0", " \n", "...", " @", "   \n", "...\\", " \\\"", " \n  \n"], [" Philly", " \\\"", " busted", " veggies", " goodies", " freaking", " vibe", " \\\"$"], [" vibe", " freaking", " Philly", " veggies", " vibes", " busted", " comfy", "-esque"], [" vibe", " freaking", " Philly", " busted", " goodies", " vibes", " veggies", "-esque"], [" Philly", " busted", " vibe", " savvy", " goodies", " \\\"", " vibes", " combo"], [" busted", " savvy", " goodies", " folks", " Aussie", " incredibly", " amazing", " vibe"], [" savvy", " busted", "-esque", " folks", " vibe", " crunch", " goodies", " showcase"], [" savvy", " busted", " crunch", " Philly", "-esque", " vibe", " Aussie", " tweaks"], [" savvy", " busted", " crunch", "-esque", " tweaks", " Philly", " Aussie", " tweaking"], [" savvy", " crunch", "...", " busted", " truly", " incredibly", "-esque", " --"], [" savvy", "<|endoftext|>", " busted", " crunch", " truly", " myriad", " tweaking", " --"], [" savvy", " crunch", " busted", " tweaks", " tweaking", " backstory", " freaking", " Philly"], [" savvy", " busted", " crunch", " tweaks", " tweaking", " --", " \\\"", " smarter"], [" --", " busted", " savvy", " crunch", " tweaking", " \\\"", " tweaks", " &#"], ["\n\n", " \n\n", " busted", " savvy", "  \n\n", "   \n\n", " --", " &#"], [" busted", " savvy", " crunch", " tweaks", " tweaking", " backstory", " tweak", " gritty"], [" busted", " savvy", " crunch", " tweaking", " tweaks", " strategy", " gritty", " --"], ["\n\n", " --", " strategy", " savvy", " busted", " crunch", " tweaking", " \n\n"], [" strategy", " savvy", " crunch", " busted", " tweaks", " tweaking", " leveraging", " tech"], ["  \n\n", " strategy", " \n\n", "\n\n", " savvy", " tweaks", " crunch", "   \n\n"], ["\n\n", " \n\n", " strategy", " @", "  \n\n", " \\\"", " --", " truly"], [" truly", " strategy", " \u2018", " key", " incredibly", " @", " \\\"", " strategic"], [" strategy", " \\\"", " truly", " key", " ultimately", " strategic", " core", " massive"], [" strategy", " tech", " tweaks", " strategic", " leveraging", " Strategy", " crunch", "  \n\n"], [" strategy", " tech", " Strategy", " tweaks", " tweak", " leveraging", " leverage", " crunch"], [" strategy", " Strategy", " tech", " tweaks", "  \n\n", " tweak", " workaround", " \n\n"], [" strategy", " Strategy", " tweaks", " workaround", " tech", " leveraging", " strategies", " tweak"], [" strategy", " Strategy", " workaround", " tweaks", "\u7b56\u7565", " Solution", " tech", " strategies"], [" strategy", " Strategy", " workaround", " Solution", " solution", "\u89e3\u51b3\u65b9\u6848", "\u7b56\u7565", " Solutions"], [" strategy", " Strategy", " workaround", "\u7b56\u7565", " Solution", "\u89e3\u51b3\u65b9\u6848", " solution", " strategies"], [" strategy", " Strategy", " workaround", " Solution", " solution", "\u7b56\u7565", " strategies", "\u89e3\u51b3\u65b9\u6848"], [" strategy", " Strategy", " workaround", " strategies", " solution", " Solution", "\u7b56\u7565", " redesign"], [" strategy", " Strategy", " workaround", " solution", " strategies", " Solution", " redesign", " Solutions"], [" strategy", " Strategy", " workaround", " Solution", " solution", " strategies", "\u89e3\u51b3\u65b9\u6848", " Solutions"], [" strategy", " Strategy", " workaround", " solution", " Solution", " compromise", " strategies", " redesign"], [" strategy", " Strategy", " workaround", " solution", " Solution", " compromise", " Hybrid", " Solutions"], [" Strategy", " strategy", " workaround", " Solution", " tweaks", " compromise", " solution", " Solutions"], [" Strategy", " workaround", " strategy", " Solution", " Solutions", " tweaks", " Hybrid", " solution"], [" workaround", " Strategy", " strategy", " Solution", " Reality", " Hybrid", " tweaks", " Solutions"], [" workaround", " Strategy", "\u8865\u6551", " strategy", " Reality", " Survival", " pragmatic", "\u59a5\u534f"], [" Strategy", " workaround", "\u8865\u6551", "\u7b56\u7565", "\u59a5\u534f", " Reality", " Impossible", "\u89e3\u51b3\u65b9\u6848"], [" workaround", " Strategy", "\u7b56\u7565", "\u89e3\u51b3\u65b9\u6848", "\u8865\u6551", "\u59a5\u534f", " Fixes", " Reality"], [" workaround", " Reality", "\u52a1\u5b9e", " pragmatic", " Strategy", "\u8865\u6551", "\u7b56\u7565", " Prag"], [" workaround", " Reality", "\u52a1\u5b9e", " pragmatic", " Strategy", " Prag", " Fixes", "\u8865\u6551"], [" Reality", " workaround", "\u52a1\u5b9e", " Fixes", " pragmatic", " Survival", "\u8865\u6551", " mitigation"], [" Reality", " workaround", "\u52a1\u5b9e", " Fixes", " pragmatic", "\u8865\u6551", " Survival", " ruthless"], [" workaround", " Reality", "\u52a1\u5b9e", " pragmatic", " Fixes", " ruthless", " Retrofit", " Survival"], [" Fixes", " Reality", " workaround", " Fix", "\u52a1\u5b9e", " pragmatic", " mitigation", " ruthless"], [" Reality", " Fixes", " ruthless", " brutal", " pragmatic", " workaround", " Prag", "\u52a1\u5b9e"], [" Reality", " ruthless", " brutal", " Plan", " Fixes", " Survival", " pragmatic", " salvage"], [" brutal", " Reality", " ruthless", " Survival", " Fixes", " Hard", " pragmatic", " Brut"], [" C", " Reality", " Survival", " Fixes", " Plan", " Brut", " Hard", " brutal"], [" C", " Hard", " Plan", " Reality", " Fix", " Only", " Survival", " Mit"]], "p": [[0.4509, 0.398, 0.0888, 0.0198, 0.0154, 0.012, 0.0047, 0.0034], [0.945, 0.0135, 0.0025, 0.0006, 0.0006, 0.0005, 0.0004, 0.0004], [0.613, 0.2896, 0.0444, 0.0153, 0.0053, 0.0053, 0.0041, 0.0036], [0.0029, 0.0023, 0.002, 0.0019, 0.0017, 0.0016, 0.0016, 0.0015], [0.0379, 0.0191, 0.0191, 0.0139, 0.0139, 0.0131, 0.0123, 0.0109], [0.0169, 0.0062, 0.0031, 0.0029, 0.0026, 0.0024, 0.0021, 0.002], [0.0767, 0.0561, 0.0561, 0.032, 0.03, 0.0282, 0.0282, 0.0234], [0.2303, 0.0376, 0.0201, 0.0178, 0.0157, 0.013, 0.0108, 0.0101], [0.2468, 0.1594, 0.0967, 0.0753, 0.0707, 0.0551, 0.0403, 0.0334], [0.0353, 0.0201, 0.0138, 0.0114, 0.0084, 0.0058, 0.0051, 0.0048], [0.1405, 0.0517, 0.0456, 0.0295, 0.0244, 0.0202, 0.0179, 0.0168], [0.0104, 0.0092, 0.0086, 0.0076, 0.0056, 0.0056, 0.0056, 0.0056], [0.0146, 0.0121, 0.0121, 0.0114, 0.0073, 0.0045, 0.0045, 0.0037], [0.0491, 0.0359, 0.0298, 0.028, 0.0159, 0.0141, 0.0124, 0.0124], [0.0774, 0.0389, 0.0365, 0.0267, 0.0162, 0.0152, 0.0105, 0.0087], [0.0454, 0.0354, 0.0178, 0.0167, 0.0139, 0.0108, 0.0095, 0.0089], [0.0676, 0.0282, 0.0171, 0.0151, 0.0151, 0.0125, 0.0104, 0.0097], [0.0799, 0.0215, 0.019, 0.0167, 0.013, 0.0123, 0.0108, 0.0108], [0.0729, 0.0323, 0.0323, 0.0237, 0.0082, 0.0072, 0.0068, 0.0056], [0.0413, 0.0221, 0.0221, 0.0172, 0.0152, 0.0134, 0.0126, 0.0092], [0.0119, 0.0105, 0.0099, 0.006, 0.0056, 0.0053, 0.005, 0.0047], [0.0206, 0.0182, 0.0151, 0.0097, 0.0049, 0.0046, 0.0034, 0.0032], [0.0279, 0.0232, 0.0218, 0.0097, 0.0059, 0.0052, 0.0049, 0.004], [0.0253, 0.0163, 0.0153, 0.0105, 0.0056, 0.0053, 0.0053, 0.0053], [0.0599, 0.0411, 0.0301, 0.025, 0.025, 0.0234, 0.0207, 0.0207], [0.0618, 0.0425, 0.0399, 0.0201, 0.0166, 0.0114, 0.0089, 0.0084], [0.0374, 0.0273, 0.0273, 0.0101, 0.0101, 0.0083, 0.0074, 0.0069], [0.0681, 0.0195, 0.0172, 0.0172, 0.0152, 0.0118, 0.0081, 0.0076], [0.0413, 0.0322, 0.0208, 0.0183, 0.0172, 0.0118, 0.0092, 0.0081], [0.0758, 0.0521, 0.0432, 0.0316, 0.018, 0.0149, 0.014, 0.014], [0.1156, 0.0353, 0.0275, 0.0242, 0.0189, 0.013, 0.0101, 0.0101], [0.0241, 0.0227, 0.0177, 0.0129, 0.0114, 0.0107, 0.0101, 0.0083], [0.0303, 0.0236, 0.0111, 0.0098, 0.0087, 0.0081, 0.0053, 0.0053], [0.0967, 0.0295, 0.019, 0.0158, 0.0148, 0.0139, 0.0123, 0.0115], [0.1545, 0.0345, 0.0304, 0.0268, 0.0153, 0.0135, 0.0135, 0.0127], [0.2656, 0.1178, 0.0232, 0.0205, 0.0181, 0.0124, 0.0117, 0.0097], [0.369, 0.1358, 0.0236, 0.0222, 0.0196, 0.0143, 0.0111, 0.0111], [0.3808, 0.217, 0.0294, 0.0157, 0.0108, 0.0101, 0.0084, 0.0074], [0.4275, 0.2593, 0.0273, 0.0241, 0.0176, 0.0146, 0.0101, 0.0094], [0.5074, 0.2716, 0.0223, 0.0153, 0.0135, 0.0127, 0.0112, 0.0087], [0.5269, 0.282, 0.0192, 0.018, 0.0116, 0.0103, 0.0103, 0.0091], [0.6637, 0.2155, 0.0129, 0.0122, 0.0074, 0.0069, 0.0057, 0.0042], [0.6244, 0.1393, 0.0292, 0.0201, 0.0147, 0.013, 0.0114, 0.0058], [0.4897, 0.2042, 0.0751, 0.0215, 0.0202, 0.0115, 0.009, 0.0084], [0.5067, 0.1281, 0.0605, 0.0416, 0.0185, 0.0135, 0.0093, 0.0082], [0.3264, 0.198, 0.0501, 0.0268, 0.0252, 0.0196, 0.0105, 0.0093], [0.2265, 0.1999, 0.1764, 0.0254, 0.0164, 0.0154, 0.0154, 0.012], [0.2208, 0.111, 0.0864, 0.0463, 0.0264, 0.0248, 0.0205, 0.0133], [0.2365, 0.2087, 0.0562, 0.0265, 0.0171, 0.0133, 0.0125, 0.0125], [0.3725, 0.1553, 0.021, 0.0185, 0.0185, 0.0174, 0.0144, 0.0112], [0.2709, 0.2109, 0.0442, 0.0304, 0.0209, 0.0163, 0.0135, 0.0119], [0.5432, 0.107, 0.0326, 0.0254, 0.0239, 0.0106, 0.0106, 0.0093], [0.2463, 0.1918, 0.08, 0.08, 0.0751, 0.0402, 0.0313, 0.0202], [0.304, 0.1844, 0.1118, 0.0927, 0.0283, 0.0234, 0.0142, 0.0125], [0.4375, 0.1824, 0.0671, 0.0461, 0.0337, 0.0298, 0.0232, 0.0097], [0.2808, 0.1326, 0.1326, 0.0458, 0.0458, 0.0404, 0.0315, 0.0203], [0.3851, 0.2647, 0.0758, 0.0337, 0.0297, 0.0217, 0.0132, 0.0132], [0.5192, 0.191, 0.0483, 0.0293, 0.0258, 0.0228, 0.0167, 0.0157], [0.3629, 0.2494, 0.0556, 0.0433, 0.0382, 0.0263, 0.0232, 0.0232], [0.1965, 0.1192, 0.1052, 0.0928, 0.0819, 0.0497, 0.0363, 0.0301], [0.1446, 0.1446, 0.1446, 0.0727, 0.0323, 0.0323, 0.0303, 0.0285], [0.2125, 0.1004, 0.0832, 0.0537, 0.0505, 0.0474, 0.0418, 0.0393], [0.9148, 0.0516, 0.0062, 0.0026, 0.0017, 0.0015, 0.0013, 0.0013]], "ranks": {}}, {"pos": 509, "top": [[".", ",", "\u00a0\u00a0", " \u00a0", ";", "\u2026.", "  \n", "\u00a0"], ["  \n", " HC", "   \n", "\u00ad", "  \n    \n", " VC", " \u00a0", "  \n\n"], ["\u2026..", "\u2026.", ".", "\u2013and", "\u2013", "\u2026and", ".\u2013", "\u2026I"], ["\ufffd\ufffd", " Strec", " Shemale", " milfs", "CCCCCC", " Blowjob", "&eacute", " Geile"], ["\ufffd\ufffd", "CCCCCC", "&C", "CCCC", "&A", "CIL", "-CS", "culos"], ["-CS", "\ufffd\ufffd", "culos", "ubic", "lients", "-Cs", "CCCC", "CCCCCC"], ["&C", "\ufffd\ufffd", " ......", "-Cs", "ubic", "  \n", "-CS", "&eacute"], ["&C", "istry", "-Cs", "-CS", "uC", "-Saharan", "icide", "ubic"], ["&C", "istry", "iewicz", "icide", "/&", "&nbsp", "<|fim_suffix|>", "=&"], ["istry", "-C", "LC", "&C", "-Cds", "qc", "VC", "-&"], ["...", "&nbsp", "-C", "&C", "-&", "istry", ":...", "&quot"], ["istry", "lobber", "ularity", "&eacute", "uC", "urent", "itecture", "stuff"], ["istry", "lobber", "urent", "ularity", "ifiers", "stuff", "jsc", "utors"], ["istry", " veggies", "stuff", "lobber", "ularity", "-big", "-ish", "-tech"], ["stuff", "istry", "-tech", "-&", "-big", "lec", "-esque", "ularity"], [" savvy", "-esque", "-&", "istry", "lec", "uC", "-tech", "ace"], ["-esque", "-tech", "lec", "ace", "istry", "uC", "-ish", "ball"], ["-tech", "-C", "lec", "-esque", "-big", "istry", "...", "-"], ["...", "-&", "-esque", "ace", "/&", "-big", ")...", "\"..."], ["-&", "...", "&", "-", "&#", " &#", "Though", "though"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "Though", "...", "&", "2"], ["&quot", "-&", "ishly", "istry", "fully", " ``", "\ubc16", "lec"], [" ``", "&quot", "fully", "-&", "ishly", " ''", "istry", " --"], [" ``", "fully", "&quot", " --", " ''", " &#", "-&", "wo"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "&quot", "...\\", "\t\n\n"], ["\n\n", " \n\n", "___", "  \n\n", "   \n\n", "...**", " ___", " ...\\"], ["\n\n", " \n\n", "___", "...**", " ...\\", "  \n\n", "...\\", "\r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "...", "\r\n\r\n", " ...", " ___", "___"], ["\n\n", " \n\n", "  \n\n", "___", "   \n\n", " ____", " ___", "____"], [" \n\n", "\n\n", "____", "___", " ____", "  \n\n", " ___", " _____"], ["\n\n", " \n\n", "  \n\n", " ____", " __", " ___", " ...", "..."], [" \n\n", " ...", "\n\n", " @", "...", "  \n\n", "@", " -"], [" ...", "...", " @", " ?", " despite", " -", " ultimately", " even"], ["<|endoftext|>", " \n\n", "  \n\n", "-centric", "-focused", " \r\n\r\n", "   \n\n", "-leaning"], ["<|endoftext|>", "  \n\n", " \n\n", "...**", "?...", "<|im_end|>", "...*", "   \n\n"], ["<|endoftext|>", " \n\n", "\u2026\u2026", "  \n\n", "<|im_end|>", " \u2026", "\u2026", "\u2026*"], ["-centric", "-compatible", "-only", " workaround", "-leaning", "\u89e3\u51b3\u65b9\u6848", "-focused", " tweak"], [" workaround", "-compatible", "-centric", "-only", "\u89e3\u51b3\u65b9\u6848", " tweak", "-leaning", "-focused"], [" workaround", "\u89e3\u51b3\u65b9\u6848", "-compatible", "-centric", "-only", " optimizations", " optimization", " tweak"], [" workaround", "\u89e3\u51b3\u65b9\u6848", "-compatible", "-centric", "-only", " tech", " tweak", " optimized"], [" workaround", " tech", "-compatible", "-only", "-centric", "\u89e3\u51b3\u65b9\u6848", "-tech", " Tech"], [" workaround", "-compatible", "-only", " tech", "-centric", "\u89e3\u51b3\u65b9\u6848", "-tech", "-focused"], ["-only", "-compatible", " workaround", "-centric", "-exclusive", " tech", "\u89e3\u51b3\u65b9\u6848", "-focused"], ["-only", "-compatible", "-centric", " workaround", "-exclusive", "\u89e3\u51b3\u65b9\u6848", "-safe", "-focused"], ["-only", "-compatible", " workaround", "-centric", "-exclusive", "-focused", "-safe", " solutions"], ["-only", "-compatible", " workaround", "-centric", " ONLY", "-exclusive", "-safe", " solutions"], ["-only", "-compatible", " workaround", "-centric", " ONLY", "-exclusive", "-focused", "-approved"], ["-only", "-compatible", " ONLY", "-centric", " workaround", "-exclusive", "-safe", "-focused"], ["-only", "-compatible", "-exclusive", "-centric", " workaround", " Constraints", "-Compatible", " constraint"], ["-only", "-compatible", "-Compatible", " workaround", "-exclusive", "-centric", "-safe", " Constraints"], ["-only", "-compatible", "-exclusive", "-Compatible", "-centric", " workaround", "-safe", "ONLY"], ["-only", "-compatible", "-exclusive", "-centric", "-Compatible", " workaround", "ONLY", "-safe"], ["-only", "-compatible", "-exclusive", "-centric", "-Compatible", "ONLY", " ONLY", " workaround"], ["-only", "-compatible", "-exclusive", "-Compatible", "-centric", "-specific", " Constraints", " constrained"], ["-only", " constrained", " Constraints", "-compatible", " constraint", " Constraint", "\u7ea6\u675f", "-exclusive"], ["-only", " Constraints", " Constraint", " constrained", " constraint", "\u7ea6\u675f", "-exclusive", "-compatible"], ["-only", " Only", " ONLY", "ONLY", "Only", "_only", "only", "_ONLY"], ["-only", " Only", "Only", "ONLY", " ONLY", "only", "_only", "_ONLY"], ["-only", " Only", " Constraint", "Only", "ONLY", " Constraints", " ONLY", "only"], ["-only", " Only", "only", " only", "Only", "_only", " Constraint", " ONLY"], ["-only", " Only", "#", " only", " constraint", " Constraint", "only", " constrained"], ["-only", " Only", "#", "#+", " Constraint", " only", "++", " #"], ["#", "-", " #", "#+", " #-", "+-", "#.", "+#"]], "p": [[0.9359, 0.0386, 0.0034, 0.0023, 0.0022, 0.0016, 0.001, 0.0009], [0.1093, 0.0108, 0.009, 0.0066, 0.0054, 0.0048, 0.0042, 0.0029], [0.2717, 0.0829, 0.0779, 0.0237, 0.0174, 0.0119, 0.0105, 0.0077], [0.007, 0.0066, 0.0048, 0.0038, 0.0029, 0.0024, 0.0019, 0.0019], [0.0389, 0.0267, 0.0126, 0.0064, 0.0064, 0.006, 0.0053, 0.0046], [0.0144, 0.005, 0.0036, 0.0034, 0.0032, 0.0032, 0.003, 0.0025], [0.0305, 0.0163, 0.0153, 0.0105, 0.0105, 0.0099, 0.0064, 0.0064], [0.0165, 0.0113, 0.0088, 0.0088, 0.0073, 0.0073, 0.0065, 0.0065], [0.0302, 0.0221, 0.0172, 0.0118, 0.0118, 0.0072, 0.0063, 0.0063], [0.0127, 0.0072, 0.0034, 0.0034, 0.003, 0.0028, 0.0022, 0.0017], [0.361, 0.0489, 0.0217, 0.0191, 0.0169, 0.0169, 0.0159, 0.0109], [0.0491, 0.0132, 0.0038, 0.0036, 0.0036, 0.0036, 0.0029, 0.0028], [0.0327, 0.0094, 0.0044, 0.0042, 0.003, 0.0029, 0.0029, 0.0024], [0.0134, 0.0063, 0.0049, 0.0046, 0.0036, 0.0036, 0.0032, 0.0028], [0.006, 0.0047, 0.0039, 0.0036, 0.0034, 0.0032, 0.0028, 0.0028], [0.0076, 0.0063, 0.0041, 0.0036, 0.0032, 0.0026, 0.0026, 0.0026], [0.0156, 0.0147, 0.0138, 0.0101, 0.0095, 0.0065, 0.0045, 0.0042], [0.0178, 0.0167, 0.0139, 0.0115, 0.0101, 0.009, 0.0084, 0.0074], [0.1594, 0.0148, 0.0131, 0.0062, 0.0058, 0.0055, 0.0055, 0.0051], [0.0605, 0.0367, 0.0197, 0.0093, 0.0093, 0.0077, 0.0053, 0.0053], [0.3813, 0.262, 0.0202, 0.013, 0.007, 0.0062, 0.0054, 0.0042], [0.0079, 0.004, 0.0033, 0.0033, 0.0026, 0.0024, 0.0023, 0.0021], [0.015, 0.011, 0.0091, 0.0076, 0.004, 0.0034, 0.0028, 0.0028], [0.0333, 0.0157, 0.0122, 0.0074, 0.0074, 0.0066, 0.0048, 0.0048], [0.9573, 0.0328, 0.0039, 0.0009, 0.0003, 0.0002, 0.0002, 0.0002], [0.5498, 0.0451, 0.0188, 0.0057, 0.0045, 0.0042, 0.0037, 0.0031], [0.9833, 0.0071, 0.0007, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002], [0.9927, 0.0067, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9757, 0.0203, 0.0018, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001], [0.4067, 0.2467, 0.0707, 0.0624, 0.0624, 0.055, 0.0229, 0.0168], [0.5966, 0.3618, 0.014, 0.0046, 0.0031, 0.0031, 0.0029, 0.0016], [0.3423, 0.134, 0.0718, 0.0525, 0.0463, 0.0193, 0.0181, 0.017], [0.032, 0.03, 0.0282, 0.0265, 0.0234, 0.022, 0.0182, 0.0151], [0.1164, 0.1164, 0.08, 0.0355, 0.0123, 0.0102, 0.009, 0.0084], [0.5503, 0.0844, 0.0617, 0.0242, 0.0122, 0.0114, 0.0095, 0.0069], [0.4327, 0.0852, 0.0313, 0.0313, 0.026, 0.0244, 0.0148, 0.0074], [0.0732, 0.0536, 0.0368, 0.0287, 0.0135, 0.0087, 0.0072, 0.0072], [0.0637, 0.0496, 0.032, 0.022, 0.0182, 0.0076, 0.0071, 0.0059], [0.1325, 0.0519, 0.0335, 0.023, 0.0191, 0.0085, 0.0075, 0.0075], [0.0831, 0.0418, 0.0418, 0.0326, 0.0254, 0.0082, 0.006, 0.006], [0.0713, 0.0591, 0.0382, 0.0317, 0.0246, 0.0246, 0.0204, 0.0204], [0.1031, 0.0803, 0.0625, 0.0487, 0.0379, 0.0191, 0.0191, 0.0116], [0.1638, 0.1276, 0.0683, 0.0366, 0.0173, 0.0162, 0.0105, 0.0105], [0.3338, 0.0745, 0.0512, 0.0352, 0.0188, 0.0129, 0.0107, 0.0101], [0.6453, 0.0498, 0.0321, 0.0302, 0.0104, 0.0063, 0.0056, 0.0049], [0.7263, 0.0265, 0.0265, 0.0233, 0.0104, 0.0067, 0.0036, 0.0034], [0.7349, 0.0389, 0.0285, 0.0251, 0.0105, 0.0077, 0.0041, 0.0041], [0.851, 0.0188, 0.0129, 0.0114, 0.0089, 0.0089, 0.0029, 0.0027], [0.7798, 0.0413, 0.0221, 0.0172, 0.0152, 0.0063, 0.006, 0.0049], [0.6229, 0.139, 0.0351, 0.033, 0.0291, 0.0146, 0.0089, 0.0065], [0.988, 0.0031, 0.0024, 0.0024, 0.0008, 0.0005, 0.0002, 0.0001], [0.9858, 0.004, 0.0031, 0.0015, 0.0013, 0.0007, 0.0006, 0.0002], [0.9948, 0.0009, 0.0009, 0.0006, 0.0004, 0.0004, 0.0002, 0.0002], [0.972, 0.0108, 0.0031, 0.0024, 0.0019, 0.0009, 0.0008, 0.0008], [0.9364, 0.0092, 0.0092, 0.0063, 0.0063, 0.0049, 0.0026, 0.0026], [0.9899, 0.0015, 0.0012, 0.0012, 0.0008, 0.0006, 0.0006, 0.0005], [0.9882, 0.0085, 0.0007, 0.0007, 0.0006, 0.0004, 0.0003, 0.0001], [0.9883, 0.0075, 0.0009, 0.0008, 0.0007, 0.0005, 0.0004, 0.0001], [0.9388, 0.0467, 0.003, 0.003, 0.0018, 0.0014, 0.0012, 0.0012], [0.5623, 0.3865, 0.0103, 0.0091, 0.008, 0.0062, 0.0033, 0.0023], [0.7892, 0.1372, 0.0093, 0.0088, 0.0053, 0.0053, 0.0034, 0.0032], [0.8677, 0.0629, 0.0204, 0.0046, 0.0026, 0.0026, 0.0022, 0.002], [0.508, 0.4483, 0.0105, 0.0056, 0.005, 0.0028, 0.0025, 0.0013]], "ranks": {}}, {"pos": 510, "top": [["<|endoftext|>", "#", " [\u2026]", "  \n\n", "  \n", "\"", "   \n", "\u2013"], ["\u2013", "#", "   \n", "  \n\n", ";", "[", "@", "?"], ["\u2013", " \u2013", ";", ",", "?", " [\u2026]", ".", "["], ["odle", "\u4f46\u4e0d\u9650\u4e8e", " Shemale", "\u4eba\u554a", " Kasich", "angible", "\u6a0b", "ftware"], ["#", "\\$", " (#", " #", " [#", "@", " (@", " \\$"], [" \u200b\u200b", " Gutenberg", " Reddit", "#", " Nvidia", "\\$", " \\$", " Nah"], ["\u4f46\u4e0d\u9650\u4e8e", " \u200b\u200b", " #", " (#", "\\$", " Arabian", "\u200b\u200b", " \\$"], [" \u200b\u200b", " \u20ac", "\u4f46\u4e0d\u9650\u4e8e", " #", " [#", "\\\"", "utang", "#"], [" \u200b\u200b", " [#", "\u200b\u200b", ":", ".", " (#", "?", "#"], [",", ":", ";", ".", "s", "\\$", "'s", "#"], ["...", ".", "&", ";", ",", ":", "#", " ..."], [" American", " #", "s", " ...", "...", "'s", " Arabian", " US"], ["s", " American", "'s", ":", "...", " authors", " US", "-friendly"], [",", "'s", "s", " American", "...", "&", ":", ";"], ["&", " \u2014", "s", ",", " American", "\u2014", " genuinely", "'s"], [" \u2014", " American", "s", " genuinely", "&", " incredibly", "'s", " America"], [" American", "s", "'s", " America", ",", " blockbuster", "...", " tech"], ["'s", ",", "...", " American", " blockbuster", "s", " Wizards", " America"], ["...", " [...]", "s", "...\"", " ...", " American", "'s", " [\u2026]"], ["s", " \u2014", " American", "&", " genuinely", "&#", " #", " incredibly"], ["<|endoftext|>", " American", "s", " \u2014", " #", "@", "&", " genuinely"], [" Reddit", "utang", " trivia", " American", " blockbuster", " classics", " Wizards", " Teixe"], [" American", " modern", " Modern", " America", " #", " technology", " Cambridge", " Microsoft"], [" American", " modern", " Modern", " #", " US", " English", " ultimately", " Microsoft"], ["\n\n", " \n\n", "...", " ...", "   \n\n", " American", "  \n\n", " #"], [" Microsoft", " American", " Turkish", " Romanian", " Hungarian", " Egyptian", " technology", " Arabic"], ["\n\n", " Microsoft", " ...", " \n\n", " software", " @", " American", " technology"], ["\n\n", " \n\n", " ...", " [...]", "...", " @", "  \n\n", " ___"], ["\n\n", " \n\n", " [...]", " ...", " Microsoft", "  \n\n", " software", "   \n\n"], [" ___", " ____", " ...", " ______", " __", " [...]", " _____", "____"], [" ...", " ___", " technology", " \n\n", " ____", " \n", " software", " __"], [" ...", " ", " @", " technology", " [...]", " and", " modern", " ,"], [" technology", " primarily", " and", " ,", " /", " ultimately", " modern", " ."], [" technology", " tech", " software", " technologies", " hybrid", " functionality", " legacy", " transitioning"], [" technology", " tech", " software", " hybrid", " ...", "<|endoftext|>", " [...]", " technologies"], [" [\u2026]", " \u2026", "<|endoftext|>", " ...", " [...]", " technology", " tech", "\u2026"], [" technology", " [\u2026]", " tech", " software", " \u2026", " hybrid", " leveraging", " technologies"], [" technology", " software", " tech", " hybrid", " technologies", " [\u2026]", " leveraging", " Hybrid"], [" technology", " software", " tech", " technologies", " hybrid", " Software", " leveraging", " Tech"], [" technology", " [\u2026]", " tech", " software", " technologies", " [...]", " Microsoft", " Tech"], [" technology", " tech", " software", " technologies", " Tech", " Software", " technical", " Microsoft"], [" technology", " software", " technologies", " tech", " Software", " Tech", " programming", " technical"], [" technology", " software", " technologies", " tech", " programming", " technical", " Software", " techniques"], [" technology", " technologies", " tech", " software", " techniques", " technical", " leveraging", " optimization"], [" technology", " technologies", " tech", " software", " techniques", " technical", " engineering", " tools"], [" technology", " tech", " technologies", " techniques", " software", " technique", " technical", " strategy"], [" technology", " tech", " technologies", " optimized", " optimization", " leveraging", " techniques", " strategy"], [" technology", " technologies", " tech", " version", " strategy", " leveraging", " workaround", " Hybrid"], [" workaround", " version", "-centric", " technology", " leveraging", " adaptation", " strategy", "-specific"], [" workaround", "-compatible", "-centric", " Survival", "-only", " adaptation", " survival", " strategy"], ["-only", " workaround", "-compatible", "-centric", "-Compatible", " Survival", "-exclusive", " loophole"], [" workaround", "-only", "-compatible", "-centric", "\u89e3\u51b3\u65b9\u6848", " Strategy", " Survival", "-Compatible"], [" workaround", "-only", "-compatible", "-centric", " Survival", " Strategy", " Reality", " mitigation"], [" workaround", "-only", "-compatible", "-centric", "-specific", " Survival", " Reality", "-focused"], [" Survival", "-only", " workaround", " survival", "-compatible", " constrained", " constraint", " Surv"], [" Survival", "-only", " workaround", " survival", " constrained", "-centric", " Surv", " constraint"], ["-only", " workaround", " Survival", " Only", " survival", "-centric", "ONLY", " ONLY"], ["-only", " workaround", " Survival", " compromise", " compromises", "\u59a5\u534f", " Reality", " Only"], ["-only", " Survival", " workaround", " Only", " Constraint", " Reality", " Constraints", " compromise"], [" Survival", "-only", " survival", " Only", " Reality", " compromise", " Constraint", " workaround"], [" Survival", "-only", " compromise", " Only", " survival", " Reality", " Comp", " compromises"], [" Survival", "-only", " Only", " compromise", " Comp", " Reality", " survival", " Constraint"], ["-", " Survival", " Reality", " Constraint", " Comp", " Only", " Work", "-only"]], "p": [[0.347, 0.0994, 0.0994, 0.0934, 0.0441, 0.0414, 0.0323, 0.0222], [0.193, 0.1246, 0.071, 0.0488, 0.038, 0.038, 0.0315, 0.0245], [0.4355, 0.1705, 0.0857, 0.0554, 0.0431, 0.0296, 0.0278, 0.018], [0.0108, 0.0066, 0.004, 0.0024, 0.0021, 0.0019, 0.0017, 0.0016], [0.1601, 0.0857, 0.0667, 0.0431, 0.0149, 0.014, 0.0131, 0.0131], [0.0725, 0.0044, 0.0038, 0.0028, 0.0025, 0.0025, 0.0022, 0.0021], [0.0228, 0.0189, 0.0101, 0.0089, 0.007, 0.007, 0.0058, 0.0054], [0.0134, 0.0046, 0.0044, 0.0041, 0.0041, 0.0038, 0.0036, 0.0036], [0.0587, 0.0261, 0.0191, 0.0148, 0.0096, 0.0085, 0.0058, 0.0055], [0.182, 0.0713, 0.0432, 0.0124, 0.0096, 0.0085, 0.0075, 0.0058], [0.1067, 0.1002, 0.0346, 0.0287, 0.0287, 0.0253, 0.0253, 0.0238], [0.0197, 0.0164, 0.0099, 0.0099, 0.0099, 0.0082, 0.0047, 0.0034], [0.0235, 0.0172, 0.0162, 0.0063, 0.0044, 0.0038, 0.0038, 0.0034], [0.0157, 0.0123, 0.0115, 0.0102, 0.0062, 0.0048, 0.004, 0.0037], [0.0388, 0.0322, 0.0322, 0.0221, 0.0152, 0.0152, 0.0105, 0.0087], [0.0198, 0.0136, 0.0088, 0.0073, 0.0069, 0.0064, 0.0042, 0.0039], [0.0111, 0.0072, 0.0068, 0.0036, 0.0036, 0.0032, 0.003, 0.003], [0.0126, 0.0098, 0.0092, 0.0067, 0.0044, 0.0032, 0.003, 0.0026], [0.0982, 0.0595, 0.0384, 0.011, 0.0091, 0.0071, 0.0071, 0.0059], [0.0761, 0.0181, 0.0141, 0.0124, 0.0071, 0.0062, 0.0059, 0.0049], [0.1518, 0.0219, 0.015, 0.0141, 0.0091, 0.0086, 0.008, 0.0067], [0.0066, 0.0052, 0.0033, 0.0031, 0.0029, 0.0028, 0.0024, 0.0022], [0.0379, 0.0123, 0.0079, 0.0058, 0.0051, 0.0045, 0.004, 0.004], [0.0372, 0.0187, 0.01, 0.0083, 0.0073, 0.0065, 0.0061, 0.0057], [0.347, 0.1199, 0.0389, 0.0135, 0.0119, 0.0105, 0.0105, 0.0098], [0.1406, 0.0356, 0.0203, 0.0168, 0.0148, 0.0148, 0.0148, 0.0139], [0.3239, 0.0638, 0.0341, 0.0235, 0.0161, 0.0126, 0.0104, 0.0092], [0.8133, 0.0589, 0.0589, 0.0191, 0.018, 0.0026, 0.0012, 0.0009], [0.445, 0.1855, 0.0162, 0.0152, 0.0111, 0.0068, 0.0068, 0.0068], [0.2406, 0.1873, 0.0608, 0.0326, 0.0306, 0.0185, 0.0174, 0.0174], [0.1579, 0.0701, 0.0513, 0.0292, 0.0274, 0.0228, 0.0166, 0.0156], [0.1757, 0.0163, 0.0144, 0.0127, 0.012, 0.0112, 0.0112, 0.0106], [0.0339, 0.0193, 0.017, 0.0125, 0.0125, 0.011, 0.011, 0.0097], [0.1292, 0.0539, 0.0348, 0.0327, 0.0154, 0.0136, 0.0136, 0.0073], [0.0666, 0.0552, 0.043, 0.0261, 0.0245, 0.0216, 0.0203, 0.0179], [0.2044, 0.1695, 0.0402, 0.0313, 0.0313, 0.0215, 0.019, 0.0148], [0.0617, 0.0512, 0.0481, 0.0352, 0.0257, 0.0188, 0.0177, 0.0166], [0.0887, 0.0538, 0.0475, 0.0198, 0.0154, 0.0128, 0.0113, 0.01], [0.1078, 0.084, 0.0478, 0.0155, 0.0146, 0.0146, 0.0137, 0.0137], [0.1014, 0.0615, 0.0479, 0.0397, 0.0241, 0.0156, 0.0156, 0.0146], [0.1848, 0.0929, 0.0929, 0.0439, 0.025, 0.0195, 0.0152, 0.0143], [0.2528, 0.1054, 0.0639, 0.0639, 0.0172, 0.0152, 0.0152, 0.0134], [0.3561, 0.1086, 0.09, 0.0619, 0.013, 0.013, 0.013, 0.0108], [0.4034, 0.1156, 0.0399, 0.0375, 0.0242, 0.0156, 0.0101, 0.0079], [0.3287, 0.1002, 0.0571, 0.0418, 0.0325, 0.0174, 0.0099, 0.0093], [0.2948, 0.0481, 0.0481, 0.0292, 0.0227, 0.0188, 0.0177, 0.0122], [0.1074, 0.0476, 0.0395, 0.0199, 0.0199, 0.0175, 0.0165, 0.0165], [0.0596, 0.0193, 0.0193, 0.016, 0.016, 0.0142, 0.0133, 0.0125], [0.0524, 0.0408, 0.0384, 0.0264, 0.0219, 0.0219, 0.0219, 0.0205], [0.3912, 0.1053, 0.0439, 0.0342, 0.0118, 0.0118, 0.0111, 0.0098], [0.6499, 0.2391, 0.0415, 0.0144, 0.005, 0.0036, 0.0025, 0.0019], [0.8477, 0.0789, 0.0199, 0.0061, 0.0022, 0.002, 0.0016, 0.0015], [0.6861, 0.1735, 0.0142, 0.0142, 0.0111, 0.0104, 0.0086, 0.0063], [0.6187, 0.2276, 0.0396, 0.0146, 0.0106, 0.0106, 0.0061, 0.0044], [0.4925, 0.1812, 0.1812, 0.0755, 0.0062, 0.0055, 0.0043, 0.0038], [0.4426, 0.3447, 0.0769, 0.0769, 0.0072, 0.0043, 0.0038, 0.0034], [0.7683, 0.1513, 0.0557, 0.0059, 0.0031, 0.0019, 0.0017, 0.0012], [0.7319, 0.0991, 0.0874, 0.0284, 0.0104, 0.0063, 0.0063, 0.0056], [0.5581, 0.2987, 0.0357, 0.0278, 0.0216, 0.0102, 0.007, 0.007], [0.7715, 0.1044, 0.0384, 0.0233, 0.0097, 0.0086, 0.0059, 0.0052], [0.6983, 0.1766, 0.0271, 0.0271, 0.0239, 0.01, 0.006, 0.0047], [0.623, 0.1785, 0.0451, 0.0351, 0.0351, 0.0188, 0.0129, 0.0114], [0.9995, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 511, "top": [[" \u2013", "\u2013", " \u200b\u200b", ".", "\u200b\u200b", "\u00a0\u00a0", " -.", "\u00a0"], [" \u2013", "\u2013", "s", " \u2013,", "  \n\n", "**\u2013", "   \n\n", " \u2013**"], [" \u2013", "\u2013", "s", " \u2013,", "**\u2013", ".\u2013", "er", "\u2026.."], [" milfs", " **\u00ab", " Blowjob", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Geile", " cumshot", " Shemale", " pupper"], ["s", "er", "a", "ing", "\u0627\u062a", "scape", "sider", "\u05d9\u05dd"], ["s", "er", "a", "ing", "\u0627\u062a", "en", "sver", "sider"], ["s", "er", "a", "ing", "en", "\u0627\u062a", "ly", "es"], ["s", "er", "ing", "a", "ly", "en", "sider", "\u0627\u062a"], ["s", "er", "ing", "ly", "en", "scape", "a", "sider"], ["s", "er", "ing", "ly", "a", "en", "scape", "\u76f8\u8f85\u76f8\u6210"], ["s", "er", "ing", "a", "ly", "en", "scape", "o"], ["s", "er", "ing", "ly", "en", "scape", "a", "es"], ["s", "er", "ing", "ly", "scape", "en", "ive", "ful"], ["s", "er", "ing", "ly", "scape", "en", "alet", "ful"], ["s", "er", "ing", "ly", "a", "en", "scape", "o"], ["s", "er", "ing", "ly", "en", "scape", "a", "ful"], ["s", "er", "ing", "ly", "en", "es", "ful", "a"], ["s", "er", "ing", "en", "ly", "a", "scape", "es"], ["s", "er", "ing", "a", "en", "ly", "scape", "es"], ["s", "er", "ing", "a", "ly", "en", "o", "es"], ["s", "er", "ing", "a", "ly", "en", "o", "ful"], ["s", "ing", "er", "ly", "scape", "ful", "fully", "\u52a0\u62ff\u5927"], ["s", "ing", "er", "ly", "scape", "ful", "fully", "es"], ["s", "ing", "ly", "er", "a", "ful", "fully", "scape"], ["s", "ing", "ly", "er", "a", "ful", "scape", "fully"], ["s", "ing", "ly", "scape", "ful", "er", " -**", "edly"], ["s", "ing", "ly", "scape", "er", "ful", "fully", "edly"], ["s", "ing", "ly", "scape", "fully", "ful", "er", " **"], ["s", "ing", "ly", "scape", "er", "ful", "fully", "a"], ["s", "ing", "ly", "er", "a", "scape", " **", "ful"], ["s", "ing", "er", "ly", "a", " **", " -", "ful"], ["s", "ing", " -", "\u2011", "er", "a", " even", "ly"], ["s", "ing", " -", " even", "er", "ly", "a", " **"], ["s", "\u2011", "ing", "er", "scape", "fully", "ly", " tech"], ["s", "\u2011", "ing", "scape", "fully", " \r\n\r\n", "er", "o"], ["s", "\u2011", "ing", "<|im_end|>", "o", "er", "fully", "scape"], ["s", "\u2011", "scape", "ing", "fully", "-only", " ONLY", "ly"], ["s", "\u2011", " ONLY", "-only", "scape", "fully", " tech", "ing"], ["s", "\u2011", " ONLY", "-only", "fully", " tech", "scape", "able"], ["s", "\u2011", " ONLY", "-only", " compliant", " strict", " tech", " strictly"], ["s", "\u2011", " ONLY", "-only", " tech", " compliant", " strict", " exclusively"], ["-only", "\u2011", " compliant", " strict", " ONLY", " tech", "s", " strictly"], ["-only", " compliant", " exclusively", " ONLY", " strict", "-approved", " strictly", " mandated"], ["-only", " exclusively", " compliant", " strict", " ONLY", " mandated", " strictly", "-approved"], ["-only", " ONLY", " strict", " compliant", " exclusively", " strictly", " mandated", "-approved"], ["-only", " ONLY", " compliant", " strict", "-approved", " exclusively", " mandated", " strictly"], ["-only", "-approved", " compliant", " ONLY", " strict", " mandated", " strictly", "-compatible"], ["-only", "-approved", " compliant", " ONLY", " mandated", "-exclusive", " strictly", " strict"], ["-only", "-approved", "-exclusive", " mandated", " constraint", " compliant", " strict", "-compatible"], ["-only", "-approved", "-compatible", "-centric", "-exclusive", " mandated", " Constraint", " constraint"], ["-only", "-compatible", "-centric", "-exclusive", "-approved", "-Compatible", "ONLY", " ONLY"], ["-only", "ONLY", "-compatible", "-centric", " ONLY", "-exclusive", "only", " compliant"], ["-only", "-centric", " constrained", "-compatible", " compliant", "ONLY", "-exclusive", " ONLY"], ["-only", "-compatible", " constrained", "-centric", " compliant", "-exclusive", "-focused", "pliant"], ["-only", " constrained", "restricted", " restricted", " Restricted", "\u53d7\u9650", "\u9650\u5236", "-exclusive"], ["-only", "only", " constrained", " Only", "ONLY", " ONLY", "_only", "restricted"], ["-only", " Only", "only", "Only", " ONLY", "ONLY", "_only", " only"], ["-only", " Only", "only", "Only", " ONLY", "ONLY", "_only", " only"], ["-only", " Only", "Only", "only", " ONLY", "_only", "ONLY", " only"], [" Only", "-only", "only", " only", "Only", " constrained", "_only", " ONLY"], [" Only", " only", "only", "-only", " constrained", "Only", " compliant", " ONLY"], [" Only", "only", "Only", " only", " constrained", "-only", " compliant", "_only"], ["Only", " Only", "only", " only", "ONLY", "Com", "_only", " constrained"]], "p": [[0.9901, 0.004, 0.0007, 0.0005, 0.0004, 0.0002, 0.0002, 0.0002], [0.9893, 0.0076, 0.0016, 0.0004, 0.0003, 0.0001, 0.0001, 0.0], [0.9434, 0.0532, 0.0014, 0.001, 0.0002, 0.0002, 0.0001, 0.0001], [0.0242, 0.0228, 0.0138, 0.0101, 0.0095, 0.0079, 0.0048, 0.0045], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9971, 0.0028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9978, 0.0022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9922, 0.0076, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9776, 0.0203, 0.0009, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9456, 0.0415, 0.0041, 0.0013, 0.0004, 0.0004, 0.0002, 0.0001], [0.9406, 0.0388, 0.0046, 0.0014, 0.0005, 0.0005, 0.0003, 0.0002], [0.9735, 0.0229, 0.0017, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001], [0.9783, 0.0158, 0.0031, 0.0007, 0.0003, 0.0002, 0.0002, 0.0002], [0.9724, 0.0202, 0.004, 0.0011, 0.0005, 0.0002, 0.0002, 0.0002], [0.9819, 0.014, 0.0019, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001], [0.9955, 0.0032, 0.0008, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9979, 0.0013, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9988, 0.0006, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9913, 0.0022, 0.0013, 0.0007, 0.0005, 0.0002, 0.0001, 0.0001], [0.9958, 0.0017, 0.0006, 0.0006, 0.0002, 0.0001, 0.0001, 0.0], [0.9984, 0.0008, 0.0003, 0.0003, 0.0001, 0.0001, 0.0, 0.0], [0.9973, 0.0015, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9499, 0.0106, 0.0036, 0.003, 0.001, 0.001, 0.0008, 0.0006], [0.9855, 0.0055, 0.0026, 0.0012, 0.0006, 0.0005, 0.0002, 0.0001], [0.9532, 0.0128, 0.005, 0.0032, 0.0018, 0.0013, 0.0013, 0.0009], [0.9841, 0.0062, 0.0016, 0.0012, 0.0008, 0.0005, 0.0005, 0.0005], [0.985, 0.0071, 0.001, 0.0007, 0.0007, 0.0005, 0.0005, 0.0004], [0.9913, 0.0032, 0.001, 0.0005, 0.0005, 0.0004, 0.0002, 0.0002], [0.9667, 0.0045, 0.0024, 0.0021, 0.0014, 0.0011, 0.0009, 0.0009], [0.9712, 0.0037, 0.0026, 0.0018, 0.0015, 0.0008, 0.0007, 0.0006], [0.9611, 0.0065, 0.0037, 0.0017, 0.0014, 0.0012, 0.0009, 0.0008], [0.9358, 0.0104, 0.003, 0.0022, 0.002, 0.0016, 0.0016, 0.0014], [0.8266, 0.0987, 0.0052, 0.0041, 0.0034, 0.0026, 0.0025, 0.0023], [0.676, 0.0629, 0.0132, 0.0103, 0.008, 0.0062, 0.0058, 0.0052], [0.6819, 0.1046, 0.011, 0.0067, 0.0067, 0.0043, 0.0043, 0.0032], [0.429, 0.1308, 0.0352, 0.0177, 0.0079, 0.0074, 0.0069, 0.0045], [0.2137, 0.1772, 0.0694, 0.0349, 0.0187, 0.0121, 0.0106, 0.0094], [0.1342, 0.126, 0.1112, 0.0814, 0.0206, 0.0193, 0.0103, 0.0091], [0.1972, 0.0822, 0.0565, 0.0322, 0.0267, 0.0221, 0.0221, 0.0195], [0.255, 0.0731, 0.0286, 0.0286, 0.0286, 0.0252, 0.0252, 0.0209], [0.3162, 0.0706, 0.0663, 0.0516, 0.0428, 0.0378, 0.0294, 0.019], [0.5865, 0.0546, 0.0452, 0.0331, 0.0331, 0.0227, 0.0214, 0.0147], [0.7333, 0.0303, 0.0267, 0.0221, 0.0208, 0.0162, 0.0143, 0.0134], [0.5653, 0.0596, 0.0526, 0.0264, 0.0264, 0.0248, 0.0182, 0.011], [0.7611, 0.0429, 0.0277, 0.0179, 0.0123, 0.0123, 0.0109, 0.0109], [0.7812, 0.0285, 0.0236, 0.0134, 0.0105, 0.0087, 0.0087, 0.0082], [0.7005, 0.0477, 0.0477, 0.0175, 0.0155, 0.0106, 0.01, 0.0094], [0.9966, 0.0009, 0.0005, 0.0004, 0.0003, 0.0001, 0.0001, 0.0001], [0.9877, 0.0019, 0.0014, 0.0013, 0.001, 0.001, 0.0007, 0.0006], [0.9813, 0.004, 0.0019, 0.0017, 0.0017, 0.001, 0.0008, 0.0005], [0.9613, 0.0083, 0.0065, 0.0057, 0.0039, 0.0016, 0.0013, 0.001], [0.9285, 0.0318, 0.0132, 0.0055, 0.0033, 0.0023, 0.0016, 0.0014], [0.9944, 0.0013, 0.001, 0.0007, 0.0006, 0.0006, 0.0004, 0.0002], [0.9709, 0.0138, 0.0084, 0.0021, 0.0019, 0.0013, 0.001, 0.0004], [0.9569, 0.0225, 0.0094, 0.0044, 0.0035, 0.0013, 0.0011, 0.0006], [0.6007, 0.3215, 0.0493, 0.0125, 0.0067, 0.0032, 0.0025, 0.0017], [0.829, 0.0468, 0.0364, 0.0321, 0.0321, 0.0118, 0.0038, 0.0023], [0.7871, 0.0646, 0.0346, 0.0346, 0.0346, 0.021, 0.0087, 0.0041], [0.7993, 0.0743, 0.0398, 0.0398, 0.0156, 0.0065, 0.0057, 0.0045], [0.9076, 0.0745, 0.0074, 0.0015, 0.0009, 0.0009, 0.0008, 0.0007]], "ranks": {}}, {"pos": 512, "top": [[".", ",", "  \n", "?", " \u2013", " ", "!", "o"], ["  \n", "  \n\n", "  \r\n", " (\u201c", " \u2013", "   \n", " \\\"", " \u2192"], ["\u2013", " \u2013", "\u3002", "\u200b", "  \n", "\u2026", "\u2026\u2026", "."], [" Blowjob", " cumshot", " milfs", "---</", "\uff0a\uff0a\uff0a\uff0a", " Busty", " Shemale", "schrift"], ["\uff20", " @_", "sir", " $#", "evo", " #@", " canceled", " $$$"], [" \uff08", "\u7687\u51a0", ".neighbors", " canceled", " Oops", "\u0670", "\uff01", "evo"], [" \uff08", "\uff01", "  \n", " $($", " OK", "\uff06", " $$$", " @_"], [" @_", " #@", "\uff01", " @", "   \r\n", "  \n", "  \r\n", "   \n"], ["\uff06", " #@", " @_", " #{@", " \n    \n", "\uff01", " <?=", "\uff01\","], [" @_", "@\\", "\u0670", " #$", " #@", "  \r\n", "   \r\n", "oader"], [" ...\\", " @_", " #@", "@\\", " @", "\\n", " %+", " @["], [" %+", " &_", " ____", "-ish", " stash", " _)", " <$", " _$"], [" stash", " upfront", "-ish", " pricey", "yip", " reboot", " safezone", " booze"], [" stash", " pricey", "-ish", "yip", " reboot", " booze", " perks", " standout"], [" pricey", " --", " upfront", " standalone", " standout", " perks", " revamped", " stash"], [" reboot", " pricey", " upfront", " stash", " standalone", " standout", " faux", " tweaks"], [" reboot", " stash", " upfront", " standalone", " DIY", " tweaks", " perks", " pricey"], [" upfront", " reboot", " tweaks", " stash", " DIY", "-ish", " standalone", " perks"], [" tweaks", " %+", " reboot", " stash", "-ish", " upfront", " perks", " DIY"], [" %+", " ...\\", " --", " ...", " tweaks", " pricey", " reboot", " stash"], [" ...\\", " ...", " %+", " --", " pricey", " outright", " _", " tweaks"], [" %+", " reboot", " upfront", " tweaks", " perks", "\u6210\u7ae0", " Blowjob", " fallback"], [" ...\\", " %+", " ____", " ...", " ___", " --", " ?**", " upfront"], [" ...", " --", " ...\\", " %+", " options", " ____", " #", " -"], [" ____", " ...\\", " ...", " ___", " ______", " _____", " _", " <"], [" ____", " ___", " ...\\", " ...", " ______", " _____", " <!--", " _:"], [" ___", " ____", " ...", " ...\\", " _:", " ______", " _", " _____"], [" ___", " ____", " ...", " ...\\", " --", " _", " _____", " ______"], [" ____", " ___", " ???", " ______", " ?**", " _____", " ?", " ..."], [" ____", " ___", " ______", " ...", " ?", " _____", " ???", " ?**"], [" ____", " ?", " ???", " ___", " ...", " strategy", " ?**", " !"], [" ...", " ONLY", " -", " options", " tech", " strategy", " hardware", " ?"], [" ?", " ONLY", " ???", " only", " strategy", " -", " ?**", " despite"], [" ONLY", " strategy", " tech", " hardware", " workaround", " options", " frameworks", " restrictions"], [" ONLY", " strategy", " tech", " BUT", " workaround", " hardware", " MUST", " restrictions"], [" ONLY", " strategy", " ...", " BUT", " tech", " -", " workaround", " MUST"], [" ONLY", " workaround", " strategy", " restrictions", " exclusively", " tech", "-only", " technically"], [" ONLY", " strategy", " workaround", " restrictions", " tech", " loophole", " exclus", " constraints"], [" workaround", " strategy", " restrictions", " ONLY", " solution", " constraints", " restriction", " solutions"], [" strategy", " workaround", " restrictions", " ONLY", " Strategy", " solution", " tech", " constraints"], [" strategy", " workaround", " restrictions", " tech", " solution", " ONLY", " Strategy", " solutions"], [" strategy", " workaround", " solution", " solutions", " strategies", " restrictions", " Strategy", " tech"], [" strategy", " workaround", " restrictions", " solution", " solutions", " strategies", " constraints", " Strategy"], [" strategy", " restrictions", " workaround", " solution", " solutions", " restriction", " constraints", " strategies"], [" strategy", " workaround", " solution", " restrictions", " restriction", " strict", " solutions", " constraints"], [" strategy", " solution", " restriction", " workaround", " restrictions", " ONLY", " strict", " solutions"], [" strategy", " workaround", " restriction", " limited", " restrictions", " solution", " strict", " constraints"], [" strategy", " workaround", " strict", " solution", " restriction", " constraints", " limited", " Strategy"], [" workaround", " constraints", " constraint", " restriction", " strategy", " restrictions", " Constraints", " limitations"], [" workaround", " strategy", " constraints", " Strategy", " Constraints", " constraint", " loophole", " restriction"], [" workaround", " loophole", " strategy", " constraints", " Strategy", "\u89e3\u51b3\u65b9\u6848", " Constraints", " constraint"], [" workaround", "\u89e3\u51b3\u65b9\u6848", " strategy", " Strategy", " solution", " Solutions", " Solution", " solutions"], [" workaround", " Strategy", " strategy", "\u89e3\u51b3\u65b9\u6848", " solution", "\u7b56\u7565", " Solutions", " Solution"], [" workaround", "\u89e3\u51b3\u65b9\u6848", " solution", " Solution", " Solutions", " solutions", " strategy", " Strategy"], [" workaround", "\u89e3\u51b3\u65b9\u6848", " solution", " Solution", " Solutions", " solutions", " Survival", "solution"], [" workaround", "\u89e3\u51b3\u65b9\u6848", " solution", " Solution", " Survival", " Solutions", "solution", " solutions"], [" workaround", " Solution", " Survival", " solution", "\u89e3\u51b3\u65b9\u6848", " hacks", " Solutions", " hack"], [" workaround", " compromise", " compromises", " Survival", "\u59a5\u534f", " Solution", " hacks", " hack"], [" workaround", " Survival", " Constraint", " Solution", " compromise", " compromises", " Constraints", "\u59a5\u534f"], [" workaround", " Survival", " compromise", " Constraint", " compromises", " Solution", " Constraints", " constraint"], [" Survival", " compromise", " workaround", " Comp", " compromises", " Constraint", " Solution", " Reality"], [" Survival", " Comp", " compromise", " Constraint", " workaround", " compromises", " Reality", " Solution"], [" Comp", " Work", " Constraint", " Survival", " Reality", " Solution", " Constraints", " Strategy"]], "p": [[0.5472, 0.1384, 0.1012, 0.035, 0.024, 0.0187, 0.0137, 0.0094], [0.3126, 0.0479, 0.0129, 0.01, 0.0094, 0.0089, 0.0051, 0.0039], [0.2, 0.1071, 0.0783, 0.0475, 0.0288, 0.0239, 0.0186, 0.0154], [0.0264, 0.0097, 0.0086, 0.0038, 0.0036, 0.003, 0.003, 0.0028], [0.0422, 0.0372, 0.0107, 0.0083, 0.0069, 0.0069, 0.0065, 0.0044], [0.0048, 0.0042, 0.0033, 0.0031, 0.0026, 0.0024, 0.0021, 0.002], [0.0162, 0.0153, 0.0053, 0.0044, 0.0039, 0.0037, 0.0036, 0.0036], [0.0148, 0.0139, 0.0116, 0.0096, 0.0055, 0.0045, 0.0043, 0.0038], [0.0382, 0.015, 0.0066, 0.0066, 0.0062, 0.0059, 0.0052, 0.0049], [0.0074, 0.0069, 0.0061, 0.0061, 0.0051, 0.0045, 0.0045, 0.0042], [0.0485, 0.0333, 0.0244, 0.0157, 0.0148, 0.0139, 0.0139, 0.009], [0.0059, 0.0052, 0.0049, 0.0038, 0.0034, 0.0034, 0.0034, 0.0032], [0.0058, 0.0051, 0.0035, 0.0032, 0.0027, 0.0025, 0.0019, 0.0019], [0.0142, 0.0091, 0.0067, 0.0052, 0.0046, 0.0043, 0.0032, 0.0026], [0.011, 0.0071, 0.0071, 0.0059, 0.0052, 0.0052, 0.0052, 0.0052], [0.02, 0.0129, 0.0107, 0.0089, 0.0065, 0.0061, 0.0057, 0.0054], [0.0191, 0.0109, 0.009, 0.0066, 0.0062, 0.0058, 0.0045, 0.0035], [0.0087, 0.0082, 0.0077, 0.0056, 0.0041, 0.0041, 0.0039, 0.0032], [0.0087, 0.0052, 0.0049, 0.0046, 0.0044, 0.0041, 0.0034, 0.0032], [0.0193, 0.017, 0.017, 0.0091, 0.008, 0.0063, 0.0036, 0.0036], [0.21, 0.0499, 0.0208, 0.0172, 0.006, 0.0056, 0.0044, 0.0038], [0.0062, 0.0033, 0.0024, 0.0023, 0.0021, 0.002, 0.0016, 0.0014], [0.0242, 0.0213, 0.0147, 0.0061, 0.0061, 0.0057, 0.0051, 0.0037], [0.3991, 0.0308, 0.0289, 0.0083, 0.0078, 0.0057, 0.0057, 0.0053], [0.4033, 0.2446, 0.1309, 0.09, 0.0147, 0.0107, 0.0101, 0.0054], [0.3125, 0.1781, 0.0895, 0.0188, 0.0156, 0.0129, 0.0089, 0.0089], [0.1548, 0.1454, 0.1283, 0.0882, 0.0093, 0.0077, 0.0077, 0.0068], [0.2166, 0.1687, 0.1687, 0.0376, 0.0201, 0.0147, 0.0138, 0.013], [0.1777, 0.0696, 0.024, 0.0226, 0.0187, 0.0176, 0.0165, 0.0165], [0.1545, 0.0443, 0.0173, 0.0163, 0.0163, 0.0153, 0.0144, 0.0105], [0.033, 0.0257, 0.0188, 0.0129, 0.0129, 0.0121, 0.0089, 0.0083], [0.0177, 0.0157, 0.013, 0.0115, 0.0108, 0.0108, 0.0089, 0.0079], [0.0764, 0.0525, 0.0264, 0.0219, 0.0133, 0.0125, 0.0097, 0.0076], [0.0267, 0.0236, 0.0162, 0.0111, 0.0092, 0.0072, 0.0072, 0.0063], [0.103, 0.026, 0.0131, 0.0131, 0.0109, 0.0102, 0.0085, 0.0075], [0.081, 0.0218, 0.0205, 0.0141, 0.0117, 0.0085, 0.008, 0.008], [0.086, 0.0382, 0.0359, 0.018, 0.014, 0.0124, 0.0091, 0.0075], [0.0752, 0.0517, 0.0456, 0.0334, 0.0139, 0.0084, 0.0079, 0.0079], [0.1009, 0.089, 0.0575, 0.0421, 0.0255, 0.0175, 0.0128, 0.012], [0.1004, 0.0943, 0.0393, 0.0238, 0.021, 0.0174, 0.0174, 0.0154], [0.113, 0.0685, 0.0391, 0.0324, 0.0324, 0.0252, 0.0223, 0.0184], [0.2517, 0.0721, 0.0411, 0.032, 0.0282, 0.0282, 0.0249, 0.0151], [0.156, 0.0611, 0.0539, 0.042, 0.0348, 0.0239, 0.0198, 0.0164], [0.1389, 0.0897, 0.0698, 0.0374, 0.031, 0.0291, 0.0213, 0.02], [0.1404, 0.0706, 0.0663, 0.0663, 0.0517, 0.0485, 0.0402, 0.0202], [0.1288, 0.0571, 0.0537, 0.0445, 0.0347, 0.0326, 0.0287, 0.0254], [0.096, 0.096, 0.0453, 0.0426, 0.0332, 0.0332, 0.0312, 0.0275], [0.0719, 0.0675, 0.034, 0.0319, 0.03, 0.03, 0.0265, 0.0248], [0.1344, 0.1262, 0.0815, 0.0676, 0.0494, 0.0385, 0.0249, 0.0206], [0.4279, 0.0792, 0.0656, 0.0451, 0.0351, 0.033, 0.0274, 0.0146], [0.7571, 0.0427, 0.0229, 0.0202, 0.0202, 0.0178, 0.0178, 0.0148], [0.8641, 0.038, 0.0203, 0.0203, 0.0096, 0.0066, 0.0051, 0.0051], [0.8292, 0.0413, 0.0364, 0.0364, 0.0081, 0.0063, 0.0056, 0.0056], [0.8398, 0.0537, 0.0326, 0.0154, 0.0106, 0.0093, 0.0073, 0.0064], [0.4885, 0.2308, 0.1235, 0.0661, 0.0243, 0.0215, 0.013, 0.0115], [0.7801, 0.0565, 0.0565, 0.0388, 0.0236, 0.0076, 0.0046, 0.0046], [0.9976, 0.0007, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9673, 0.0201, 0.0058, 0.0019, 0.0015, 0.0007, 0.0005, 0.0003], [0.911, 0.0214, 0.0167, 0.0167, 0.0147, 0.0048, 0.0042, 0.0016], [0.5786, 0.1658, 0.1291, 0.0326, 0.0224, 0.0154, 0.0064, 0.005], [0.3642, 0.2836, 0.1518, 0.0633, 0.0339, 0.0299, 0.0181, 0.0086], [0.3095, 0.3095, 0.1657, 0.0691, 0.0419, 0.0175, 0.012, 0.0113], [0.3392, 0.2331, 0.2057, 0.0668, 0.0246, 0.0217, 0.0217, 0.0116]], "ranks": {}}, {"pos": 513, "top": [[".", " \u00a0", ",", "  \n", "\u00a0\u00a0", " \u2022", "[", "\u2022"], [" \u00a0", "  \n", "  \n  \n", " \u2022", "ions", "\uc368", "   \n", "  \n\n"], [" \u00a0", ",\u2026", "\u2026.", "\u2022", "\u2026and", "\u2026..", " \u2022", ".\u2022"], ["\uc368", "ions", " \u300e", "unky", "IONS", "iversary", "igrant", "ierce"], ["ions", " \u00a0", "\uc368", " \u2022", " \u25c6", "ifications", "IONS", "ifiers"], [" \u00a0", "ions", " \u00a0 \u00a0", "  \n", "   \n", " \uff09", "\u00a0\u00a0", "\uc368"], [" \u00a0", "ioni", " \u2022", "\u7684", " \u25c6", " \u00a0 \u00a0", "\uc368", "ions"], ["ioni", " \u00a0", "ions", " \u25c6", "ifications", " \u2022", "\uc368", "ifiers"], [" \u00a0", " \u25c6", "   \n", "ioni", "  \n\n", "ifiers", "   \n\n", "ilege"], ["ioni", " \u00a0", "ions", "\uc368", "unky", "igungs", "ilation", "unities"], [" \u00a0", "ioni", "&nbsp", "ions", " \u2022", " \u00a0 \u00a0", " \u25c6", "ifying"], ["ioni", "ions", "ifications", "iances", "ilation", "unky", "itions", "igungs"], ["ilation", "iances", "ioni", "ions", "ifications", "ifiers", "igungs", "unky"], ["ioni", "ions", "iances", "unky", "itions", "ilation", "ifications", "uliar"], ["ioni", "ions", "itions", "iances", "iled", "ilation", "ifying", "ollo"], ["ioni", "ions", "unky", "iances", "akin", "ilation", "itions", "iled"], ["ioni", "ions", "iffe", "ities", "akin", "iances", "itions", "aged"], ["ioni", "ions", "agn", "iances", "romise", "iffe", "ifying", "aged"], ["ioni", "ions", "agn", "iances", "itudes", "romise", "ilation", "ifying"], ["ioni", "ions", "romise", "agn", "ollo", "iances", " \uff1c", "aged"], ["  \n\n", "ioni", "  \n  \n", "Though", " utterly", "   \n\n", "aged", "  \n"], ["uliar", "ioni", "ollo", "iances", "igno", "\u2501", " \uff1c", "atever"], [" ``", " ''", "ollo", "ioni", " \uff1c", "uliar", "igno", " ---"], [" --", " ''", " ``", " utterly", "ioni", " \ufffd", " ---", " &#"], [" --", "  \n\n", " ''", " ---", "   \n\n", " utterly", " ``", " &#"], [" ___", " ____", " ---", " _____", " --", " ``", " \uff1c", " ...\\"], [" ___", " ``", " ''", " ____", " _____", " --", " ---", " __"], [" --", "  \n\n", "\n\n", " \n\n", " ---", " ``", " ''", " arguably"], ["  \n\n", " \n\n", " --", "\n\n", "   \n\n", "  \n  \n", " arguably", " ultimately"], ["  \n\n", " \n\n", " _____", "   \n\n", " \n  \n", " ____", " --", "  \n  \n"], ["  \n\n", " ...", " .", " ,", " \u2026", " \n\n", " ultimately", " --"], [" ,", " \u2014", " --", " .", " over", " rather", " ultimately", " much"], [" ,", " .", " -", " rather", " \u2014", " --", " over", " ultimately"], ["  \n\n", "<|endoftext|>", " \u2026", " \n\n", "   \n\n", " \u2014", "  \n  \n", "    \n\n"], ["  \n\n", "<|endoftext|>", " \u2026", " \n\n", "   \n\n", " ...", " ......", "\n\n"], [" \u2026", "  \n\n", "<|endoftext|>", " ...", " \n\n", "\u2026\u2026", " ......", " [\u2026]"], ["  \n\n", "\n\n", " \n\n", " \u2026", "<|endoftext|>", "   \n\n", "    \n\n", " ..."], [" \u2026", "  \n\n", "<|endoftext|>", " ...", "\u2026\u2026", " ......", " \n\n", "   \n\n"], [" \u2026", " ...", "<|endoftext|>", "  \n\n", " ......", "\u2026\u2026", " [\u2026]", "\u2026"], [" \u2026", "  \n\n", " ...", " [\u2026]", "<|endoftext|>", "\u2026\u2026", " [...]", " ......"], [" \u2026", "  \n\n", "<|endoftext|>", "\u2026\u2026", " ......", " flexibility", " modular", " tech"], ["  \n\n", "\n\n", " modular", " flexibility", " \u2026", " leveraging", "<|endoftext|>", " hacker"], [" modular", " flexibility", " hacker", "  \n\n", " leveraging", " flexible", " software", " automation"], ["  \n\n", " modular", " flexibility", " ......", " ...", " ...\\", " hacker", " tech"], [" modular", " flexibility", " ...", " hacker", " security", " tech", " safety", " innov"], [" modular", " flexibility", " innov", " hacker", " design", " tech", " leveraging", " complex"], [" modular", " flexibility", "  \n\n", " tech", " scalability", " integration", " leveraging", " hacker"], ["  \n\n", " leveraging", " flexibility", " modular", " tech", " hacker", " workflow", " Modular"], ["  \n\n", " **:", " leveraging", "**", ":**", " flexibility", "  \n", ":*"], [" Constraints", " workaround", ":*", "?*", "?**", "romise", " loophole", " Constraint"], [" workaround", "\u59a5\u534f", "romise", " loophole", "*</", "*)", "?*", " Constraints"], [" workaround", "romise", "\u59a5\u534f", ":*", "*</", "\u2026*", "  \n  \n", "*)"], ["\u59a5\u534f", " compromises", " workaround", "romise", "\u7b56\u7565", " Strategy", "):**", ".):"], [" compromises", "):**", "\u59a5\u534f", "romise", ":**", " compromise", " workaround", " comprom"], ["romise", " compromises", "\u59a5\u534f", " compromise", "(comp", "):**", " workaround", " comprom"], ["romise", "):**", " compromises", ":**", " workaround", "):", ".:**", ":</"], ["romise", " workaround", "artment", "):**", " compromises", ":**", "\u59a5\u534f", "pliance"], [" compromise", " compromises", "\u59a5\u534f", "romise", " comprom", " Comp", " compromised", " Komp"], [" compromise", " compromises", "romise", "\u59a5\u534f", " comprom", " Comp", " compromised", " Komp"], ["romise", " compromise", " compromises", "\u59a5\u534f", " comprom", " compromised", " compromis", " Comp"], [" Comp", "Comp", "comp", " Komp", "-comp", " compromise", "(comp", "romise"], [" Comp", "Comp", "romise", " Komp", "comp", "-comp", " compromise", "komp"], ["romise", " Comp", "rom", "comp", " Komp", "Comp", " compromise", "komp"]], "p": [[0.7397, 0.0688, 0.0607, 0.0185, 0.0154, 0.005, 0.0041, 0.0034], [0.1625, 0.1434, 0.032, 0.0234, 0.0142, 0.0142, 0.0142, 0.0081], [0.2388, 0.0501, 0.039, 0.039, 0.0285, 0.0252, 0.0196, 0.0184], [0.0259, 0.0095, 0.0062, 0.0062, 0.0051, 0.0045, 0.0042, 0.004], [0.0693, 0.0507, 0.0395, 0.0348, 0.0211, 0.01, 0.0078, 0.0078], [0.5807, 0.0289, 0.0106, 0.01, 0.0083, 0.0078, 0.0069, 0.0053], [0.0929, 0.0321, 0.0321, 0.0195, 0.0152, 0.0152, 0.0134, 0.0086], [0.0296, 0.018, 0.0158, 0.014, 0.0123, 0.0123, 0.008, 0.008], [0.0229, 0.0148, 0.0115, 0.0102, 0.0096, 0.0084, 0.0074, 0.007], [0.0198, 0.0175, 0.0113, 0.0077, 0.0073, 0.006, 0.006, 0.0053], [0.1093, 0.0485, 0.026, 0.0244, 0.0131, 0.0115, 0.009, 0.0074], [0.0316, 0.0204, 0.0116, 0.0109, 0.0091, 0.0066, 0.0066, 0.0062], [0.0127, 0.0127, 0.0127, 0.0119, 0.0077, 0.0068, 0.0053, 0.005], [0.0288, 0.012, 0.0113, 0.0088, 0.0083, 0.0078, 0.0053, 0.0041], [0.0412, 0.0118, 0.0086, 0.0059, 0.0049, 0.0038, 0.0034, 0.003], [0.0112, 0.0105, 0.0036, 0.0036, 0.0034, 0.0034, 0.003, 0.0027], [0.053, 0.025, 0.0059, 0.0043, 0.0041, 0.0038, 0.0036, 0.0036], [0.0874, 0.0134, 0.0049, 0.0038, 0.0038, 0.0038, 0.0036, 0.0034], [0.1032, 0.0149, 0.0062, 0.0051, 0.0048, 0.0043, 0.0043, 0.0038], [0.0429, 0.0058, 0.0055, 0.0038, 0.0035, 0.0035, 0.0033, 0.0031], [0.0286, 0.0163, 0.0127, 0.0087, 0.0072, 0.0053, 0.005, 0.005], [0.0072, 0.0056, 0.0049, 0.0046, 0.0043, 0.0043, 0.0034, 0.0032], [0.0081, 0.0081, 0.0071, 0.0071, 0.0063, 0.0049, 0.0041, 0.0041], [0.0555, 0.0406, 0.0382, 0.0071, 0.0055, 0.0052, 0.0046, 0.004], [0.0291, 0.0257, 0.0121, 0.0114, 0.0094, 0.0089, 0.0083, 0.0078], [0.0307, 0.0225, 0.0211, 0.0198, 0.0113, 0.0106, 0.01, 0.0057], [0.0272, 0.0226, 0.0176, 0.0146, 0.0121, 0.0121, 0.0107, 0.005], [0.1619, 0.1184, 0.0464, 0.0436, 0.0219, 0.0182, 0.0182, 0.0133], [0.4957, 0.063, 0.0218, 0.0205, 0.0181, 0.008, 0.0071, 0.0055], [0.6501, 0.0568, 0.0196, 0.0196, 0.0144, 0.0099, 0.0099, 0.0087], [0.1408, 0.0587, 0.0404, 0.0335, 0.0295, 0.0179, 0.0158, 0.0148], [0.0681, 0.0468, 0.0251, 0.0183, 0.0134, 0.0126, 0.0118, 0.0118], [0.118, 0.0557, 0.0232, 0.0232, 0.0218, 0.0205, 0.017, 0.015], [0.8574, 0.0583, 0.0178, 0.0167, 0.0051, 0.0042, 0.0011, 0.0011], [0.6071, 0.1971, 0.0302, 0.0221, 0.0081, 0.0076, 0.0028, 0.0026], [0.4375, 0.2654, 0.0592, 0.0592, 0.0317, 0.017, 0.0103, 0.0091], [0.618, 0.0507, 0.0448, 0.0328, 0.0165, 0.012, 0.0044, 0.0032], [0.1871, 0.1286, 0.027, 0.0224, 0.0144, 0.0127, 0.0073, 0.0057], [0.3864, 0.0761, 0.0523, 0.0317, 0.016, 0.0103, 0.0066, 0.0055], [0.4566, 0.0618, 0.0581, 0.0311, 0.0311, 0.0292, 0.0242, 0.0201], [0.0661, 0.0484, 0.0243, 0.0189, 0.0167, 0.0148, 0.0139, 0.013], [0.2024, 0.0452, 0.0352, 0.0227, 0.0188, 0.0147, 0.0122, 0.0122], [0.0571, 0.0418, 0.0253, 0.0238, 0.0144, 0.0099, 0.0093, 0.0082], [0.0462, 0.028, 0.028, 0.0141, 0.0132, 0.0124, 0.0117, 0.008], [0.0857, 0.0357, 0.0315, 0.0131, 0.0116, 0.0109, 0.009, 0.0085], [0.1191, 0.0599, 0.0118, 0.0118, 0.0111, 0.0098, 0.0086, 0.0086], [0.0485, 0.0428, 0.0276, 0.0131, 0.0108, 0.009, 0.009, 0.0084], [0.0403, 0.0158, 0.0148, 0.009, 0.0062, 0.0051, 0.0051, 0.0045], [0.0919, 0.0317, 0.0091, 0.0075, 0.0067, 0.0063, 0.0063, 0.0059], [0.0626, 0.0552, 0.038, 0.0261, 0.0261, 0.0158, 0.014, 0.0123], [0.13, 0.0577, 0.0329, 0.0309, 0.029, 0.0199, 0.0187, 0.0155], [0.1288, 0.0572, 0.0369, 0.0238, 0.021, 0.0198, 0.0174, 0.0154], [0.2155, 0.1083, 0.0745, 0.0452, 0.0292, 0.0292, 0.0274, 0.0188], [0.3322, 0.0789, 0.0741, 0.0577, 0.0397, 0.0273, 0.0256, 0.0256], [0.6875, 0.093, 0.044, 0.0235, 0.0162, 0.0134, 0.0104, 0.0098], [0.8209, 0.0181, 0.0133, 0.0091, 0.0086, 0.0071, 0.0049, 0.0049], [0.8586, 0.0167, 0.0108, 0.0102, 0.009, 0.0062, 0.0058, 0.0048], [0.5789, 0.2735, 0.0538, 0.0475, 0.037, 0.0034, 0.0027, 0.0011], [0.4331, 0.2977, 0.1593, 0.0853, 0.0168, 0.0033, 0.0023, 0.0007], [0.8224, 0.1261, 0.0361, 0.0091, 0.003, 0.0018, 0.0002, 0.0002], [0.9082, 0.0581, 0.0214, 0.0079, 0.0029, 0.0006, 0.0003, 0.0002], [0.902, 0.0309, 0.0309, 0.0129, 0.0129, 0.0047, 0.0033, 0.0005], [0.8919, 0.0732, 0.0112, 0.0068, 0.0053, 0.0041, 0.0025, 0.001]], "ranks": {}}, {"pos": 514, "top": [[".", ",", "\u2013", " \u2013", "<|endoftext|>", ";", "[", " "], ["  \n\n", "  \n  \n", " \u2013", "   \n", "  \n", " \n  \n", "   \n\n", "\u2013"], ["\u2013", " \u2013", "  \n  \n", "[", "\u2013and", "\u2026", ",", "?"], [" ___", " ---", "\n \n", "\uc3df", "(___", "\u0e23\u0e31\u0e21\u0e22\u0e4c", "atria", " \ufeff"], [" ---", "  \n  \n", " ___", " \n\n\n\n", " \u2019", "  \n\n", "\n\n\n\n", " \n  \n"], [" \n  \n", "  \n  \n", " \n\n\n\n", " \u2019", " ___", "  \n\n", " \uff08", " \uff0c"], [" ___", "  \n  \n", "  \n\n", " \n  \n", " ---", "  \n", " \n\n\n\n", " \u2019"], [" ___", "  \n  \n", "\u201a", "  \n\n", " \n  \n", "  \n", " \u201a", " \u2019"], ["  \n\n", " \n\n", " \n  \n", "  \n  \n", "  \n", " \n\n\n\n", " \n\n\n", "  \n\n\n"], ["  \n  \n", " \n  \n", " \n \n", "  \n", "\\_", " \n\n\n\n", "\u201a", "  \n\n"], ["  \n  \n", " \n  \n", "  \n", "  \n\n", "<|endoftext|>", "\\_", " compromise", "&#"], [" compromise", " ___", " compromises", " ---", "\u59a5\u534f", "\n \n", " \n  \n", "$__"], [" compromise", " compromises", " consensus", " compromising", " compromised", " pragmatic", " strategy", " arguably"], [" compromise", " arguably", " consensus", " compromises", " strategy", " compromising", " compromised", " modest"], [" compromise", " arguably", " --", " yet", " -", " albeit", " modest", " \u2014"], [" compromise", " arguably", " \u2014", " akin", " bolster", " swiftly", " ultimately", " albeit"], [" arguably", " compromise", " ultimately", " akin", " albeit", " bolster", " yet", " alongside"], [" compromise", " ultimately", " strategy", " arguably", " \u2014", " albeit", " approach", " alongside"], [" compromise", " arguably", " \u2014", " .", " --", " -", " ultimately", " strategy"], [" --", " \u2014", " compromise", " \n  \n", " arguably", " ultimately", " ,", " -"], [" \n\n", "<|endoftext|>", "  \n\n", " \n  \n", " --", " ,", " \u2014", "  \n"], [" compromise", " --", " ---", " ?", " :", " ___", " compromises", " \n  \n"], [" --", " ---", " compromise", " ?", " :", " ''", " \n  \n", "\n \n"], [" --", " ,", " :", " .", " ;", " ?", " -", " compromise"], [" \n\n", " --", "  \n\n", " \n  \n", " ---", " ?", "\n\n", " :"], [" ___", " --", " ---", " \n\n", " __", " \n  \n", " compromise", " ?**"], [" ___", " --", " __", " compromise", " \n\n", " ---", " ?", " :"], [" \n\n", " ___", " --", "\n\n", " ?", " __", " ---", " compromise"], [" \n\n", " compromise", " ___", " ?", " --", " \n  \n", " ---", " __"], [" ___", " \n\n", " ?", " \n  \n", " __", "  \n\n", " --", " compromise"], [" ?", " .", " \n\n", " :", " ,", " ___", " compromise", " __"], [" .", " ,", " compromise", " -", " :", " ?", " strategy", " ___"], [" compromise", " .", " :", " ?", " ,", " \n  \n", " \n\n", "  \n\n"], [" \n\n", " compromise", "  \n\n", " \n  \n", " compromises", " pragmatic", " compromised", " \u2014"], [" compromise", " \n\n", "  \n\n", " \n  \n", " compromises", " pragmatic", " compromised", " strategy"], [" \n\n", " compromise", "  \n\n", " :", " strategy", " \n  \n", "<|endoftext|>", " compromises"], [" compromise", " :", " \n\n", " strategy", " compromises", "  \n\n", " compromised", " pragmatic"], [" compromise", " :", " compromises", " strategy", "\u59a5\u534f", " \n\n", " compromised", " pragmatic"], [" compromise", " compromises", " :", " strategy", "\u59a5\u534f", " compromised", " workaround", " pragmatic"], [" compromise", " compromises", " strategy", "\u59a5\u534f", " compromised", " workaround", " pragmatic", " :"], [" compromise", " compromises", " strategy", "\u59a5\u534f", " workaround", " compromised", " Strategy", " pragmatic"], [" compromise", " compromises", " strategy", "\u59a5\u534f", " workaround", " compromised", " strategies", " pragmatic"], [" compromise", " compromises", " strategy", "\u59a5\u534f", " compromised", " workaround", " strategies", " :"], [" compromise", " compromises", " strategy", " workaround", "\u59a5\u534f", " compromised", " strategies", " Strategy"], [" compromise", " compromises", " strategy", " workaround", " :", "\u59a5\u534f", " compromised", " strategies"], [" compromise", " :", " compromises", " strategy", "\u59a5\u534f", " workaround", " compromised", " Strategy"], [":", " compromise", " :", " compromises", " workaround", "\u59a5\u534f", " strategy", " compromised"], [":", " :", " compromise", " compromises", " workaround", " strategy", "\u59a5\u534f", ":\\"], [":", " :", " compromise", " compromises", " **:", ":\\", "\u59a5\u534f", ":**"], [":", ":\\", "):", ":*", "*:", ":**", " **:", "\uff1a"], ["):", ":", "  \n\n", "*:", "**:", " **:", ":\\", ":*"], [":", ":*", ":**", "*:", ":\\", "):", "  \n\n", ":\")"], [":**", "):", ":*", ":\")", "):**", ":", ":</", " :**"], [":**", "):", ":\")", "):**", ":*", ":]", ":", ":')"], ["):", ":**", ":*", ":\")", "):**", ":</", ":')", ":]"], ["):", ":**", "):**", ":*", ":\")", ":</", ":')", ":]"], [":**", "):**", "):", " :**", "\n\n", "**:", ":*", "\uff1a**"], [":**", "):**", "):", " :**", "**:", ":*", "\uff1a**", ":</"], [":**", "):**", "):", " :**", "**:", ":\")", ":*", ":')"], [":**", "):**", "):", " :**", ":*", "**:", ")**", ":\")"], ["):**", "):", ":**", " ):", "\n\n", ":*", ".):", "**:"], ["):", "):**", " ):", "\n\n", ":**", ":", " Strategy", " Plan"], ["):**", "):", ")**", ":**", " Plan", " Strategy", ").**", "):\\"]], "p": [[0.5433, 0.2567, 0.0833, 0.0505, 0.0271, 0.0113, 0.0068, 0.006], [0.296, 0.1795, 0.1089, 0.0454, 0.0401, 0.0312, 0.0228, 0.0214], [0.5825, 0.3118, 0.0256, 0.0212, 0.0078, 0.0073, 0.0069, 0.0035], [0.0828, 0.0391, 0.0135, 0.0099, 0.0093, 0.0056, 0.0053, 0.0047], [0.2179, 0.1241, 0.0908, 0.0753, 0.0517, 0.026, 0.0168, 0.0131], [0.1072, 0.0946, 0.0889, 0.0737, 0.0289, 0.0239, 0.0145, 0.012], [0.3251, 0.1635, 0.1355, 0.0499, 0.044, 0.0302, 0.0267, 0.0235], [0.1411, 0.1325, 0.0804, 0.0755, 0.0552, 0.0458, 0.023, 0.023], [0.4375, 0.1177, 0.0917, 0.0861, 0.0317, 0.028, 0.028, 0.0218], [0.4036, 0.2299, 0.04, 0.0228, 0.0228, 0.0122, 0.0084, 0.0079], [0.1625, 0.1049, 0.0561, 0.022, 0.0171, 0.0171, 0.0161, 0.0118], [0.2068, 0.0263, 0.0124, 0.011, 0.0091, 0.0091, 0.0071, 0.0066], [0.1669, 0.0129, 0.0094, 0.0078, 0.0065, 0.0042, 0.0037, 0.0037], [0.1563, 0.0145, 0.0088, 0.0078, 0.0069, 0.0065, 0.0061, 0.0053], [0.0728, 0.0184, 0.0112, 0.0072, 0.0068, 0.0064, 0.006, 0.006], [0.0275, 0.0177, 0.0074, 0.0069, 0.0069, 0.0069, 0.0054, 0.004], [0.0265, 0.0151, 0.0111, 0.0098, 0.0098, 0.0081, 0.0063, 0.0063], [0.0515, 0.0089, 0.0089, 0.0089, 0.0061, 0.0058, 0.0054, 0.0042], [0.0705, 0.0178, 0.0178, 0.0157, 0.0157, 0.0108, 0.0102, 0.0079], [0.0596, 0.0464, 0.0362, 0.0219, 0.0206, 0.0182, 0.0182, 0.0125], [0.3544, 0.1573, 0.1081, 0.0579, 0.0351, 0.0227, 0.0146, 0.0101], [0.0733, 0.0536, 0.0253, 0.0136, 0.0064, 0.0057, 0.005, 0.005], [0.2947, 0.0545, 0.0481, 0.0258, 0.0227, 0.0214, 0.0188, 0.0114], [0.3385, 0.1245, 0.0519, 0.0519, 0.0278, 0.0261, 0.0245, 0.023], [0.4849, 0.1784, 0.0792, 0.0544, 0.0227, 0.0156, 0.0129, 0.0089], [0.2937, 0.1303, 0.1015, 0.0743, 0.045, 0.0397, 0.0241, 0.0226], [0.3646, 0.0764, 0.0634, 0.0634, 0.0559, 0.0384, 0.0264, 0.0219], [0.2462, 0.2173, 0.1692, 0.0799, 0.0455, 0.0428, 0.0333, 0.019], [0.1307, 0.1307, 0.1227, 0.0792, 0.0512, 0.0292, 0.0213, 0.02], [0.339, 0.1814, 0.0912, 0.0627, 0.0589, 0.0336, 0.0336, 0.0296], [0.1853, 0.1197, 0.0992, 0.0992, 0.0682, 0.0531, 0.0343, 0.0322], [0.0958, 0.0701, 0.0619, 0.0619, 0.0353, 0.0228, 0.0114, 0.0114], [0.1245, 0.0969, 0.0855, 0.0588, 0.0357, 0.0357, 0.0245, 0.0191], [0.3049, 0.1968, 0.144, 0.0439, 0.0266, 0.0152, 0.0134, 0.0098], [0.2718, 0.2398, 0.0687, 0.0392, 0.0325, 0.0223, 0.0174, 0.0163], [0.2899, 0.1369, 0.0647, 0.0392, 0.0238, 0.0238, 0.0197, 0.0174], [0.2258, 0.1552, 0.0689, 0.0571, 0.0418, 0.027, 0.0224, 0.021], [0.3552, 0.1678, 0.0657, 0.058, 0.0227, 0.02, 0.0188, 0.0114], [0.4636, 0.0913, 0.0857, 0.0627, 0.0336, 0.0191, 0.0169, 0.0149], [0.5218, 0.1495, 0.0623, 0.0585, 0.0215, 0.0168, 0.0148, 0.0115], [0.5588, 0.1413, 0.0805, 0.0459, 0.0217, 0.0169, 0.0096, 0.008], [0.5391, 0.175, 0.1203, 0.0391, 0.0237, 0.0144, 0.0127, 0.0087], [0.5681, 0.1844, 0.1119, 0.032, 0.0142, 0.0134, 0.0134, 0.0063], [0.5248, 0.1931, 0.1033, 0.0357, 0.0261, 0.018, 0.0149, 0.009], [0.5726, 0.1448, 0.0775, 0.0415, 0.0303, 0.0285, 0.0143, 0.0105], [0.5385, 0.1361, 0.106, 0.0643, 0.0237, 0.0196, 0.0163, 0.0077], [0.4065, 0.1694, 0.1165, 0.0664, 0.0485, 0.0355, 0.019, 0.0108], [0.4682, 0.1952, 0.1184, 0.0319, 0.0193, 0.0125, 0.0117, 0.0097], [0.4458, 0.0934, 0.0684, 0.047, 0.0323, 0.0236, 0.0236, 0.0184], [0.6027, 0.1187, 0.0385, 0.0234, 0.0234, 0.0234, 0.0206, 0.0206], [0.1896, 0.1896, 0.115, 0.079, 0.0616, 0.0616, 0.0479, 0.0257], [0.2473, 0.1699, 0.1168, 0.0552, 0.043, 0.043, 0.0379, 0.0261], [0.5305, 0.1184, 0.1045, 0.0634, 0.0384, 0.0264, 0.0182, 0.016], [0.422, 0.1993, 0.0942, 0.0942, 0.0647, 0.0185, 0.0164, 0.0164], [0.34, 0.2648, 0.1104, 0.0759, 0.0669, 0.046, 0.0217, 0.0169], [0.5695, 0.2374, 0.053, 0.0413, 0.0284, 0.0221, 0.0081, 0.0072], [0.8503, 0.1151, 0.0156, 0.0065, 0.0039, 0.0027, 0.0014, 0.0013], [0.8669, 0.0914, 0.0231, 0.0085, 0.0028, 0.0015, 0.0012, 0.0012], [0.4757, 0.327, 0.175, 0.0087, 0.0047, 0.0025, 0.001, 0.0009], [0.6155, 0.3294, 0.0393, 0.0099, 0.0017, 0.0009, 0.0004, 0.0004], [0.5302, 0.3644, 0.0921, 0.0076, 0.0012, 0.0008, 0.0005, 0.0005], [0.5397, 0.3709, 0.0391, 0.0237, 0.0127, 0.0028, 0.0025, 0.0011], [0.9836, 0.0159, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 515, "top": [[" (\u201e", " \u200b\u200b", "   \n", " \u2014\u2014", " ......", "\u2026\u2026", "  \n", "\u200b\u200b"], ["\uff1a**", "\uff1f**", " \"**", " **\u3010", " \u2014\u2014", " .**", "\uff01**", " **:**"], ["\uff1f**", "\uff1a**", " \u2014\u2014", ".:**", ",__", "\uff01**", "\u3002**", ";**"], [" **\u3010", " **\u25cb", " **\u300c", " **>>", " **:**", "\uff1a**", " **\u201e", " ``("], [" **\u3010", " *\u201c", "\uff1a**", " *@", " \u2014\u2014", " **)", " \"--", " //@"], [" **\u3010", " **)", "\uff1a**", " *\u201c", " \u2014\u2014", " **\u25cb", ".:**", ":__"], [" **\u3010", " \u2014\u2014", "\uff1a**", " *\u201c", ":__", " ......", " **)", " ~~"], [" **\u3010", ":__", " *\u201c", " **\u201e", " **)", " **\u300c", "\uff1a**", ",__"], [" **\u3010", " *\u201c", ":__", " **\u201e", " **\u300c", " ......", " *@", ",__"], [":__", " **\u3010", " **>>", " \"--", " *\u201c", ",__", " |--", " **\""], [":__", " *\u201c", " **\u3010", " ~~", " |--", " *@", " //@", " \"--"], [" **\u3010", " ~~", " --", " \"--", ":__", " *\u201c", " __", " **\u300c"], [" ~~", " --", " \"--", " **\u300c", " __", ":__", " **\u3010", " |--"], [" --", " \"--", " //--", " '--", " ~~", " |--", " **\u300c", "('--"], [" --", " \"--", " ``", " ``(", " '--", " sprawling", "\"--", " revamped"], [" --", " ``", " \"--", " sprawling", " Gabrie", " tweaked", " revamped", " tweaking"], [" --", " sprawling", " \"--", " revamped", " tweaked", " tweaking", " swiftly", " arguably"], [" --", " \"--", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", " tweaking", "\ufffd\ufffd", " tweaked", "\ufffd"], [" --", " \"--", " //--", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", " ;;^", "\ufffd\ufffd", " Gabrie"], [" --", " //--", " \"--", "\u4e0d\u53ef\u601d\u8bae", " ~~", " |--", "//--", "\ufffd\ufffd"], ["\n\n", " \n\n", "<|endoftext|>", " --", " \n\n\n", "\n\n\n", " swiftly", "<|file_sep|>"], [" ``", " --", " **>>", " **", " ``(", " **\u3010", " ;;^", " !**"], [" ``", " --", "\n\n", " __", " ''", " ``(", " {{--<", " **"], ["\n\n", " --", " ``", " \n\n", "<|endoftext|>", "\n\n\n", " __", " ''"], ["\n\n", " \n\n", "\n\n\n", " __", " \n\n\n", " --", "  \n\n", "\r\n\r\n"], [" **", " __", "\n\n", " \n\n", " **\u3010", " *__", " **'", " --"], ["\n\n", " __", " \n\n", " **", " --", " ``", " ___", " ____"], ["\n\n", " \n\n", " __", " --", " **", "\n\n\n", " ...", " _"], ["\n\n", " \n\n", " __", " --", " **", "\n\n\n", " \n\n\n", " ..."], [" __", "\n\n", " \n\n", " ____", " ...", " **", " ______", " ___"], [" __", "\n\n", " **", " \n\n", " ...", " ____", " ______", " ___"], [" ,", " ...", " __", " .", " --", "\n\n", " **", " -"], [" ,", " **", " using", " __", " .", " :", " heavily", " rather"], [" **", " \n\n", " __", " specialized", " strategies", " optimized", " strategy", " strategically"], [" **", " strategically", " optimized", " hybrid", " leveraging", " specialized", " unconventional", " strategies"], ["<|endoftext|>", " \n\n", " optimized", "<|im_end|>", " specialized", " **", " \u2026", "\n\n"], [" optimized", " \n\n", " specialized", "\n\n", "<|im_end|>", " optimizations", " optimization", " leveraging"], [" optimized", "\n\n", " \n\n", "<|im_end|>", " specialized", " optimization", " leveraging", " optimizations"], [" optimized", "\n\n", " specialized", " optimization", "<|endoftext|>", " optimizations", " optimizing", " \n\n"], [" optimized", " optimizations", " optimization", " specialized", " optimizing", "<|endoftext|>", " strategies", "<|im_end|>"], [" optimized", " optimizations", " optimization", " optimizing", " strategies", " strategy", " Optimization", " specialized"], [" optimized", " optimizations", " optimization", " optimizing", " strategies", " techniques", " strategy", " specialized"], [" optimized", " optimizations", " optimization", " optimizing", " strategies", " techniques", " strategy", " specialized"], [" optimized", " strategies", " techniques", " optimization", " optimizations", " optimizing", " strategy", " leveraging"], [" optimized", " strategies", " techniques", " strategy", " optimization", " optimizing", " optimizations", " leveraging"], [" optimized", " strategies", " techniques", " leveraging", " strategy", " meticulously", " strict", " optimizing"], [" \n\n", "\n\n", "  \n\n", " optimized", " **", " meticulously", " strategies", ":\\"], [" **", ":", " \n\n", " **\"", " meticulously", ":<", "  \n\n", "\n\n"], [" **", " **\"", "\uff1a**", " **\u201c", "  \n\n", ":**", " **:", "**"], ["  \n\n", " **", ":\\", "\n\n", " \n\n", ":**", "\uff1a**", ":<"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " **", "  \n", " **\"", "  \n  \n"], ["\n\n", " \n\n", "  \n\n", "   \n\n", "    \n\n", "\r\n\r\n", "\n\n\n", " **"], ["\n\n", "  \n\n", " \n\n", " **", "   \n\n", " **\"", "    \n\n", "**"], ["\n\n", "  \n\n", " \n\n", " **", " **\"", "   \n\n", "\r\n\r\n", "    \n\n"], ["\n\n", " \n\n", "  \n\n", " since", "\u65e2\u7136", "Since", " Since", " **"], ["\n\n", " \n\n", "  \n\n", " since", " Since", "Since", "\u65e2\u7136", "since"], ["\n\n", " \n\n", "  \n\n", " Since", "Since", " since", "    \n\n", "\n\n\n\n"], ["\n\n", " \n\n", "  \n\n", " Since", "Since", " since", "    \n\n", "since"], ["\n\n", " Since", " \n\n", "  \n\n", "Since", " since", " You", "since"], ["\n\n", " Since", " since", "Since", " \n\n", "  \n\n", " You", "since"], ["\n\n", " \n\n", " Since", "  \n\n", " since", "Since", "\n\n\n", " You"], ["\n\n", " \n\n", "  \n\n", " Since", "\n\n\n", "\n\n\n\n", "Since", " since"], ["\n\n", " Since", "\n", "  \n\n", " You", "\n\n\n", "\n\n\n\n", " \n\n"]], "p": [[0.0884, 0.0504, 0.0445, 0.0224, 0.0197, 0.0164, 0.0154, 0.0106], [0.1475, 0.0615, 0.051, 0.0479, 0.0479, 0.035, 0.035, 0.0256], [0.1047, 0.0868, 0.0526, 0.0465, 0.034, 0.0249, 0.0249, 0.0234], [0.221, 0.0813, 0.0493, 0.0384, 0.0318, 0.0299, 0.0281, 0.0248], [0.2219, 0.0767, 0.0437, 0.0362, 0.0362, 0.034, 0.0282, 0.0265], [0.5442, 0.0447, 0.042, 0.0255, 0.0175, 0.0164, 0.0164, 0.0128], [0.5245, 0.1412, 0.0357, 0.0315, 0.0203, 0.0149, 0.014, 0.009], [0.4969, 0.118, 0.0462, 0.028, 0.0181, 0.017, 0.016, 0.015], [0.3742, 0.2003, 0.0611, 0.0289, 0.0255, 0.0255, 0.0154, 0.0136], [0.1064, 0.0828, 0.0472, 0.0368, 0.0305, 0.0286, 0.0269, 0.0223], [0.1052, 0.077, 0.0638, 0.0529, 0.0467, 0.0467, 0.0439, 0.0387], [0.1653, 0.137, 0.0781, 0.0608, 0.0504, 0.0474, 0.0369, 0.0306], [0.2005, 0.089, 0.0507, 0.042, 0.0371, 0.0348, 0.0307, 0.0186], [0.2236, 0.1274, 0.0152, 0.0152, 0.0111, 0.0098, 0.0063, 0.006], [0.9414, 0.0098, 0.0077, 0.0015, 0.0007, 0.0007, 0.0006, 0.0006], [0.9502, 0.0027, 0.002, 0.001, 0.0006, 0.0005, 0.0004, 0.0004], [0.3338, 0.0147, 0.0138, 0.0129, 0.0095, 0.0078, 0.0042, 0.0039], [0.0862, 0.0205, 0.0192, 0.0159, 0.0097, 0.0097, 0.0091, 0.0085], [0.0565, 0.0499, 0.0267, 0.0183, 0.0172, 0.0172, 0.0172, 0.0126], [0.4352, 0.0315, 0.0191, 0.0123, 0.009, 0.0085, 0.008, 0.0066], [0.6518, 0.1284, 0.1284, 0.0391, 0.005, 0.0027, 0.0015, 0.0013], [0.2846, 0.0868, 0.0249, 0.0234, 0.0219, 0.0206, 0.0125, 0.0125], [0.4982, 0.3022, 0.1112, 0.0059, 0.0055, 0.0052, 0.003, 0.0025], [0.6435, 0.1844, 0.0871, 0.0142, 0.0098, 0.0071, 0.0041, 0.0023], [0.903, 0.0952, 0.0003, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.427, 0.259, 0.1223, 0.0841, 0.0309, 0.01, 0.0078, 0.0047], [0.9084, 0.0658, 0.0114, 0.0069, 0.0009, 0.0009, 0.0007, 0.0007], [0.9894, 0.0097, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9805, 0.018, 0.0005, 0.0003, 0.0002, 0.0001, 0.0, 0.0], [0.4538, 0.3119, 0.0893, 0.0478, 0.0372, 0.0176, 0.0121, 0.0107], [0.4061, 0.3584, 0.0623, 0.0485, 0.0485, 0.0229, 0.0095, 0.0084], [0.1905, 0.0452, 0.0425, 0.0352, 0.0274, 0.0274, 0.0242, 0.0122], [0.1304, 0.0579, 0.0188, 0.0188, 0.0177, 0.0156, 0.0137, 0.0129], [0.3276, 0.0502, 0.0324, 0.0269, 0.0253, 0.0197, 0.0197, 0.0185], [0.1083, 0.0424, 0.0374, 0.031, 0.031, 0.0274, 0.0257, 0.0257], [0.3296, 0.0833, 0.0538, 0.0538, 0.0326, 0.0224, 0.0186, 0.0175], [0.2666, 0.0463, 0.0435, 0.0384, 0.0384, 0.0339, 0.0299, 0.0299], [0.1484, 0.1394, 0.0659, 0.0581, 0.0331, 0.0214, 0.0189, 0.0189], [0.2226, 0.2091, 0.0412, 0.0387, 0.0363, 0.0363, 0.025, 0.0161], [0.2026, 0.0618, 0.0512, 0.0331, 0.0311, 0.0274, 0.0242, 0.0227], [0.2949, 0.123, 0.0794, 0.0452, 0.0274, 0.0242, 0.0214, 0.0214], [0.3424, 0.126, 0.0981, 0.0764, 0.0384, 0.0233, 0.0233, 0.0193], [0.3576, 0.1161, 0.1025, 0.0621, 0.0548, 0.0427, 0.0243, 0.019], [0.2136, 0.1143, 0.1009, 0.0738, 0.0652, 0.0612, 0.0328, 0.0165], [0.2071, 0.1108, 0.0811, 0.0492, 0.0462, 0.0462, 0.0298, 0.0193], [0.1544, 0.128, 0.0568, 0.0442, 0.0442, 0.0268, 0.0222, 0.0209], [0.1608, 0.151, 0.1252, 0.0382, 0.0359, 0.0247, 0.0218, 0.0192], [0.3127, 0.048, 0.031, 0.0273, 0.0257, 0.0241, 0.0241, 0.0241], [0.9668, 0.0057, 0.004, 0.0024, 0.0019, 0.0019, 0.0016, 0.0015], [0.2613, 0.1585, 0.1399, 0.0583, 0.0583, 0.0454, 0.0401, 0.0401], [0.4024, 0.3134, 0.2765, 0.0021, 0.0021, 0.0007, 0.0003, 0.0002], [0.9801, 0.0158, 0.004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.8483, 0.0789, 0.0696, 0.0011, 0.0008, 0.0004, 0.0002, 0.0001], [0.9954, 0.0025, 0.0017, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9975, 0.0009, 0.0009, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.995, 0.0013, 0.0013, 0.0007, 0.0003, 0.0003, 0.0002, 0.0001], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 516, "top": [[".", " \u2013", " \u200b\u200b", "\u00a0\u00a0", "  \n\n", "\u00a0", ",", "?"], ["\uff1a**", "\uff1f**", " **'", " **:**", " **:", "\uff01**", " .**", " **\u201c"], ["\u2026**", "\u2026\"", "\u3002", "\u2026..", "\u2026\u2026", "\u2026\u2026\u2026\u2026", "**\u3002", "\u2026."], ["\uff1f**", " **\u201e", "\uff1a**", " **\u3010", " **\u201c", " **\u25cb", " **:**", " **\u25a0"], [" **\u201c", "  \n\n", " **\"", "\n\n\n\n", "\uff1a**", " -**", " **\u201e", " \n\n\n\n"], [" **\u201c", " **\"", " **\u3010", "\uff1a**", "\uff1f**", " **\u201e", "**!", " **."], [" **\u201c", " **\u3010", " **\"", "\n\n\n\n", "\n\n", " \n\n", "  \n\n", "\uff1a**"], [" \n\n", " **\u3010", "  \n\n", " **\"", " **\u201c", " **'", "   \n\n", "       \n\n"], [" \n\n", "  \n\n", "   \n\n", "\n\n", "       \n\n", "\n\n\n\n", "     \n\n", "      \n\n"], [" **\"", " **'", " **\u3010", " **\u201c", " **#", " **\u201e", " $__", " **^"], [" **\"", " **\u3010", " **'", " \n\n", " **\u201c", "\n\n", "\n\n\n\n", " ...\""], [" **\u3010", " **'", " **\"", " **\u201e", " **\u201c", " **#", " **+", " **"], [" **\u3010", " **'", " **\"", " **\u201e", " **\u201c", " **#", " **\u00ab", " **:"], [" **\"", " **'", "\u2026**", " **\u3010", " **\u201c", " **\u201e", " **", " **#"], ["\n\n", " \n\n", "  \n\n", "\n\n\n\n", " **\"", " savvy", " folks", "\r\n\r\n"], ["\n\n", " folks", " savvy", "  \n\n", " \n\n", "\n\n\n\n", " arguably", " garner"], ["<|endoftext|>", " \n\n", "  \n\n", "\n\n", "   \n\n", "\n\n\n\n", "\u2026**", " **\""], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "\n\n", "\u2026**", " **\"", "...**"], [" **\"", " **'", " **\u201c", " **", " **#", " **\u3010", "...**", "  \n\n"], ["  \n\n", " \n\n", "\n\n", " **\"", " **'", "<|endoftext|>", " **\u201c", " **"], ["<|endoftext|>", "\n\n", " \n\n", "  \n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", "\t\n\n"], [" **'", " **", "\n\n", " **#", " **\u201c", " **\"", " \n\n", " **\u3010"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "<|endoftext|>", " **", " **'", "\r\n\r\n\r\n"], ["\n\n", "<|endoftext|>", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\r\n\r\n\r\n"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|endoftext|>", "  \r\n\r\n"], [" \n\n", "  \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "  \r\n\r\n", " **"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "\t\n\n", "<|endoftext|>"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", "<|endoftext|>", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \r\n\r\n", "\t\n\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", "<|endoftext|>", "  \r\n\r\n"], [" \n\n", "  \n\n", "\n\n", "<|endoftext|>", "   \n\n", "\r\n\r\n", " **", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " **", " \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", "<|endoftext|>", "   \n\n", " **", "\r\n\r\n", " \u2014"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", "  \r\n\r\n", " \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", "   \n\n", " **\u201c", "  \r\n\r\n", "\r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " **", "  \r\n\r\n", " **\u201c"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " **", " **\u201c", "  \r\n\r\n"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", " **", " **\u201c", "   \n\n", " **\""], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " **\u201c", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " **\u201c", "<|im_end|>", "\r\n\r\n"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " **\u201c", "\r\n\r\n", " **"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", " **\u201c", " **", "\r\n\r\n", "   \n\n"], ["  \n\n", " **", " \n\n", " **\u201c", "<|endoftext|>", "\n\n", "\uff1a**", "<|im_end|>"], ["  \n\n", " **", "<|endoftext|>", " **\u201c", " \n\n", " **\"", "<|im_end|>", "\uff1a**"], ["  \n\n", " **", " **\u201c", " **\"", "\uff1a**", " \n\n", ":**", " **#"], ["  \n\n", " **", "\uff1a**", " \n\n", ":**", " **\u201c", " **\"", ":\\"], [" **", "  \n\n", " **\u201c", "\uff1a**", ":**", " **\"", "**", ":\\"], [" **", " **\u201c", " **\"", "**", "\uff1a**", "-**", " **'", ":**"], [" **", " **\"", "\uff1a**", " **\u201c", "-**", "**", "  \n\n", " **#"], ["  \n\n", " **", " **\u201c", " **\"", "-**", "\uff1a**", " **#", " **:"], [" **", " **\"", "  \n\n", " **\u201c", "-**", ";**", " **#", "**"], [" **", " **\"", " **\u201c", "  \n\n", "-**", "**", ";**", " **#"], [" **", " **\u201c", " **\"", "**", "-**", ";**", " **#", "\u2019**"], [" **", " **\u201c", "**", " **\"", "-**", ";**", "\u2019**", " **("], [" **", " **\u201c", "**", " **\"", "-**", ";**", " **(", "\u2019**"], [" **\u201c", " **", "**", " **\"", "1", ";**", "\u2019**", "Since"], ["Since", " **\u201c", " **", " Since", "1", "**", " **\"", " since"], [" Since", "Since", " since", "1", " **", " **\u201c", " **\"", "since"], [" Since", " since", "Since", "since", " **", "1", " **\u201c", "**"], ["1", " Since", " since", "Since", " **", " You", "since", "###"], ["1", " Since", "Since", "###", " since", " You", " ###", "You"], ["1", "2", "3", "4", "5", "0", "9", "7"]], "p": [[0.8012, 0.0512, 0.0331, 0.0227, 0.013, 0.013, 0.0101, 0.0061], [0.0909, 0.0753, 0.0403, 0.0295, 0.0203, 0.0109, 0.0109, 0.0102], [0.4388, 0.1614, 0.1338, 0.0233, 0.0181, 0.016, 0.0133, 0.0091], [0.0649, 0.0446, 0.0419, 0.0306, 0.0288, 0.027, 0.0186, 0.0164], [0.428, 0.0843, 0.0544, 0.0451, 0.033, 0.0188, 0.0166, 0.0166], [0.6303, 0.1497, 0.0379, 0.019, 0.0179, 0.0179, 0.0102, 0.0062], [0.2335, 0.2194, 0.0973, 0.0489, 0.0489, 0.0406, 0.0279, 0.0262], [0.37, 0.1748, 0.106, 0.0729, 0.0729, 0.0415, 0.0285, 0.0153], [0.8492, 0.0895, 0.0256, 0.0073, 0.0045, 0.0031, 0.0029, 0.0024], [0.3184, 0.1327, 0.071, 0.018, 0.018, 0.0085, 0.008, 0.0051], [0.2084, 0.1623, 0.0767, 0.072, 0.041, 0.03, 0.0234, 0.0142], [0.3277, 0.2252, 0.0606, 0.0345, 0.0286, 0.0223, 0.0119, 0.0099], [0.2781, 0.2034, 0.0903, 0.0426, 0.0401, 0.0189, 0.0157, 0.013], [0.3227, 0.2848, 0.0194, 0.0118, 0.011, 0.0071, 0.0067, 0.0059], [0.6622, 0.0698, 0.0257, 0.0089, 0.0074, 0.0051, 0.0051, 0.0025], [0.2402, 0.0346, 0.0127, 0.0077, 0.0073, 0.0053, 0.005, 0.0044], [0.5109, 0.188, 0.114, 0.1006, 0.0128, 0.006, 0.0022, 0.0013], [0.5358, 0.2531, 0.1535, 0.0152, 0.0081, 0.006, 0.0046, 0.0022], [0.3796, 0.1793, 0.1232, 0.0796, 0.04, 0.0228, 0.0228, 0.0189], [0.2014, 0.1777, 0.1013, 0.0951, 0.0741, 0.0577, 0.0422, 0.035], [0.6246, 0.2028, 0.0958, 0.0746, 0.0009, 0.0004, 0.0001, 0.0001], [0.2817, 0.2817, 0.0712, 0.0712, 0.0521, 0.0336, 0.0297, 0.0231], [0.6394, 0.2076, 0.0361, 0.0318, 0.0281, 0.017, 0.0086, 0.0028], [0.4225, 0.3728, 0.1554, 0.0306, 0.0099, 0.0013, 0.0011, 0.0006], [0.3938, 0.3475, 0.2388, 0.0105, 0.0039, 0.0023, 0.001, 0.0006], [0.4431, 0.2372, 0.2372, 0.0467, 0.0092, 0.0072, 0.0025, 0.0022], [0.7429, 0.1878, 0.0475, 0.0154, 0.0018, 0.0011, 0.0004, 0.0003], [0.8627, 0.103, 0.0295, 0.0035, 0.0004, 0.0003, 0.0002, 0.0001], [0.7043, 0.1781, 0.108, 0.0069, 0.0008, 0.0008, 0.0002, 0.0001], [0.4002, 0.3532, 0.2428, 0.0021, 0.0007, 0.0003, 0.0003, 0.0001], [0.5561, 0.2318, 0.2046, 0.0029, 0.0016, 0.0012, 0.0004, 0.0003], [0.406, 0.3583, 0.2173, 0.0139, 0.0017, 0.0007, 0.0003, 0.0002], [0.3712, 0.2891, 0.2251, 0.1064, 0.0014, 0.0011, 0.0009, 0.0004], [0.4197, 0.3269, 0.2246, 0.0268, 0.001, 0.0003, 0.0002, 0.0002], [0.5234, 0.3597, 0.1031, 0.0096, 0.0017, 0.0006, 0.0005, 0.0004], [0.6763, 0.1937, 0.1175, 0.0096, 0.0015, 0.0003, 0.0002, 0.0002], [0.8888, 0.0827, 0.0209, 0.0047, 0.0017, 0.0002, 0.0002, 0.0002], [0.8815, 0.0929, 0.0142, 0.0076, 0.0013, 0.0012, 0.0006, 0.0001], [0.847, 0.0788, 0.0541, 0.0137, 0.0019, 0.0016, 0.0014, 0.0003], [0.9234, 0.0521, 0.0169, 0.0038, 0.0016, 0.0008, 0.0004, 0.0002], [0.873, 0.0812, 0.0338, 0.0076, 0.0017, 0.0006, 0.0005, 0.0003], [0.6552, 0.1462, 0.1139, 0.0783, 0.0016, 0.0011, 0.0011, 0.0005], [0.7875, 0.0646, 0.057, 0.0305, 0.0163, 0.0144, 0.006, 0.0032], [0.8217, 0.0464, 0.0361, 0.0219, 0.0219, 0.0091, 0.0071, 0.0038], [0.7422, 0.1138, 0.037, 0.0198, 0.0198, 0.0136, 0.0057, 0.0041], [0.6247, 0.2604, 0.0453, 0.0147, 0.0114, 0.0079, 0.0042, 0.0037], [0.9352, 0.022, 0.0133, 0.0081, 0.0063, 0.0038, 0.003, 0.0018], [0.7151, 0.0854, 0.0587, 0.0457, 0.0356, 0.0245, 0.009, 0.0033], [0.9903, 0.0036, 0.0025, 0.0013, 0.0006, 0.0003, 0.0002, 0.0002], [0.9576, 0.0106, 0.0065, 0.0044, 0.0039, 0.0035, 0.003, 0.0027], [0.5453, 0.3307, 0.0395, 0.0271, 0.0113, 0.01, 0.0069, 0.0042], [0.5688, 0.1438, 0.112, 0.0679, 0.0221, 0.0172, 0.0118, 0.0118], [0.6658, 0.0901, 0.0795, 0.0482, 0.0331, 0.0293, 0.0157, 0.0074], [0.7286, 0.087, 0.0598, 0.0411, 0.022, 0.0133, 0.0092, 0.0049], [0.5846, 0.1016, 0.0698, 0.0616, 0.0374, 0.02, 0.0177, 0.0156], [0.6244, 0.0746, 0.0658, 0.0513, 0.0399, 0.0166, 0.0166, 0.0147], [0.2358, 0.1621, 0.0983, 0.0676, 0.0676, 0.0526, 0.041, 0.0362], [0.1727, 0.1524, 0.1048, 0.1048, 0.1048, 0.0816, 0.0495, 0.0385], [0.3414, 0.3414, 0.0978, 0.0672, 0.036, 0.0318, 0.017, 0.015], [0.4715, 0.2524, 0.2227, 0.0126, 0.0098, 0.0056, 0.0046, 0.003], [0.6955, 0.1993, 0.0571, 0.0346, 0.0027, 0.0022, 0.001, 0.0009], [0.6585, 0.1665, 0.0786, 0.0289, 0.0199, 0.01, 0.0073, 0.0032], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 517, "top": [[".", ",", " \u2013", "a", "\u2013", "o", "\u2026.", ";"], ["erweise", "sWith", "\uff0e", "\ufffd", "\u00adi", "enner", "\u0647", "ufer"], ["**\u2013", ".", "\u3002", "\u0d30\u0d4d", " **\u2013", "sWith", "\u5728", "CENTER"], [" milfs", " Shemale", " cumshot", "\uff0a\uff0a\uff0a\uff0a", "enzi", " Blowjob", "schluss", " **\u201e"], ["\u5728", "ed", " **.", " **.**", " Savior", "abeled", "\u0d30\u0d4d", "\uff08"], ["\u5728", "\uff01", " \u200b\u200b", "\u3002", "!\u201d.", " **.", "aveled", "**!"], ["\u3002", ".", "\uff08", "\u5728", "\uff01", "\uff1a", "\uff09**", "\uff0c"], [" **\u201e", " **.**", "aveled", " **\u3010", " \u200b\u200b", "**!", " **.", " (**"], ["  \n\n", " \u200b\u200b", "   \n\n", "\n\n", "    \n\n", " \n\n", " **\u201e", "!\u201d."], [",", "\\n", ":", "\\.", "!\\", "\\_", ".", ",\\"], [".", "\\n", ",", ":", "!", " \u200b\u200b", ".\\", "\n\n"], [" **\u201e", " **", " **\u3010", " **#", " **+", " **\u00ab", " **.**", " (**"], [" **\u201e", "ighborhood", "\u0d19\u0d4d\u0d19\u0d33\u0d4d", " **", " Savior", "\u0d33\u0d4d", "=\\\"", " **\u00ab"], ["ighborhood", " Savior", "\u0d33\u0d4d", "\u0d19\u0d4d\u0d19\u0d33\u0d4d", "aveled", " behavioral", "Canceled", "\u0d30\u0d4d"], [" \\\"", "(\\\"", "\u0d33\u0d4d", " Savior", "ighborhood", "\u06cc\u06a9\u06cc", " behavioral", "=\\\""], [" transitioning", " modeling", " behaviors", " LGBTQ", " showcasing", " flavorful", " behavioral", " mithilfe"], ["  \n\n", " overarching", " transitioning", " showcasing", " utilizing", " leveraging", " priorit", " partnering"], ["  \n\n", "   \n\n", "<|endoftext|>", " \n\n", "     \n\n", "    \n\n", "       \n\n", "      \n\n"], ["  \n\n", " \u200b\u200b", " **", "   \n\n", " **#", " \n\n", "<|endoftext|>", " **\u201c"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", " **", "\n\n", " **#", "  \r\n\r\n"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "\n\n", "    \n\n", "      \n\n", "     \n\n"], ["ueling", " **", " **#", " **\u201e", " **:", " unlocking", " **+", " LGBTQ"], [" **", "  \n\n", " overarching", "ueling", "\n\n", " strategically", " unlocking", " transitioning"], ["<|endoftext|>", " overarching", " strategically", "\n\n", " \n\n", "  \n\n", " ,", " priorit"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "\r\n\r\n", " \r\n\r\n", "    \n\n", "  \r\n\r\n"], ["  \n\n", " \n\n", "\n\n", " **", "   \n\n", "\r\n\r\n", " \r\n\r\n", "    \n\n"], [" \n\n", "\n\n", "  \n\n", "\r\n\r\n", " **", "   \n\n", "       \n\n", " \r\n\r\n"], ["\n\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", " \r\n\r\n", " **", "    \n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "   \n\n", " leveraging", " priorit", " \r\n\r\n"], ["  \n\n", "\n\n", " \n\n", "   \n\n", "\r\n\r\n", " **", " \u2026", " ..."], ["\n\n", "  \n\n", " \n\n", " **", " :", " priorit", "<|endoftext|>", " strategically"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", " **", " :", "\r\n\r\n", " ..."], ["\n\n", "  \n\n", "<|endoftext|>", " \n\n", " **", " :", " ,", " -"], ["<|endoftext|>", "  \n\n", " \n\n", "\n\n", " **", " strategically", " priorit", "   \n\n"], ["<|endoftext|>", "  \n\n", " \n\n", " **", "\n\n", "  \r\n\r\n", "   \n\n", " leveraging"], ["  \n\n", "<|endoftext|>", " \n\n", "\n\n", " leveraging", " strategically", " priorit", "   \n\n"], ["  \n\n", " leveraging", " strategically", " \n\n", " priorit", "<|endoftext|>", " aggressively", " meticulously"], [" leveraging", "  \n\n", " strategically", " priorit", " aggressively", "<|endoftext|>", " \n\n", " **"], [" leveraging", "<|endoftext|>", " priorit", " strategically", "  \n\n", " aggressively", " prioritize", " strategic"], [" leveraging", "<|endoftext|>", " priorit", " strategically", "  \n\n", " aggressively", " prioritize", " strategic"], [" leveraging", "<|endoftext|>", " priorit", " strategically", " aggressively", " strategy", " prioritize", " Strategy"], [" leveraging", " priorit", " redesign", " strategically", " restructuring", " strategy", " aggressively", " optimizing"], [" leveraging", " priorit", " redesign", " restructuring", " aggressively", " optimizing", " strategically", " strategy"], [" leveraging", " priorit", " redesign", " optimizing", " restructuring", " aggressively", " optimized", " strategy"], [" leveraging", " redesign", " priorit", " aggressively", " optimized", " restructuring", " strategy", " optimizing"], [" leveraging", " **", " redesign", " aggressively", " restructuring", " optimized", " priorit", " meticulously"], [" **", ":**", " **:", "**:", " **\u201c", " :**", " leveraging", " **\""], [" **", "**:", ":**", " :**", "\uff1a**", " **:", " leveraging", " aggressively"], [" **", " **\"", ":**", " **:", "**:", "\uff1a**", " **\u201c", " **'"], [" **", " **\"", ":**", " **:", " **\u201c", " **+", "\uff1a**", "**:"], [" **", " **:", " **\"", ":**", "**:", " **+", "\uff1a**", " **\u201c"], [" **", ":**", " **\"", " **:", "\uff1a**", " :**", "**:", "):**"], [" **", " **\"", " **\u201c", ":**", "\uff1a**", " **:", "**", " **+"], [" **", " **\u201c", " **\"", " **+", " **#", ":**", " **:", "**"], [" **", " **\u201c", " **+", " **\"", " **#", " **[", " **\u2014", "]**"], [" **", " **\u201c", " **\"", "**", " **+", "]**", " **#", ".**"], [" **", "**", " **\"", " **\u201c", " **+", ".**", "\u3002**", " **#"], [" **", "**", " aggressive", " **+", " **\"", " **\u201c", "\u3002**", " aggressively"], [" **", "**", " **+", " aggressive", " **\"", "\u3002**", " **\u201c", ".**"], [" **", " aggressive", " aggressively", "**", " ruthless", " **+", " kill", " **\""], [" **", " aggressive", " Nuclear", " kernel", " nuk", "\u6838", " aggressively", ".**"], [" **", " aggressive", ".**", " Ag", " .**", " Nuclear", " aggressively", " "], [".", ".**", " ", " **", ".?", "\\.", " Nuclear", " aggressive"]], "p": [[0.8951, 0.0833, 0.0088, 0.0022, 0.0016, 0.0015, 0.0008, 0.0008], [0.0226, 0.0199, 0.0155, 0.0078, 0.0069, 0.0029, 0.0027, 0.0025], [0.067, 0.0263, 0.015, 0.0132, 0.0117, 0.0103, 0.008, 0.008], [0.0077, 0.0063, 0.006, 0.0053, 0.0036, 0.0036, 0.0034, 0.0026], [0.0332, 0.0201, 0.0189, 0.0115, 0.0115, 0.0115, 0.0095, 0.0065], [0.1079, 0.0615, 0.0373, 0.0309, 0.0309, 0.0165, 0.0107, 0.01], [0.2784, 0.0548, 0.0427, 0.0377, 0.0276, 0.0178, 0.0139, 0.013], [0.1845, 0.0563, 0.0528, 0.0301, 0.0301, 0.0183, 0.0183, 0.0118], [0.7394, 0.057, 0.0223, 0.0163, 0.0144, 0.0093, 0.006, 0.0056], [0.1978, 0.1746, 0.05, 0.0415, 0.0389, 0.0268, 0.0222, 0.0196], [0.8356, 0.0471, 0.0416, 0.0197, 0.0105, 0.0082, 0.005, 0.005], [0.2009, 0.1076, 0.0396, 0.0349, 0.0128, 0.01, 0.0094, 0.005], [0.1, 0.0099, 0.0087, 0.0077, 0.0072, 0.0064, 0.0053, 0.0044], [0.0273, 0.0256, 0.0129, 0.0078, 0.0069, 0.0065, 0.0061, 0.0057], [0.0143, 0.0077, 0.0056, 0.0036, 0.0032, 0.0032, 0.0025, 0.0023], [0.0095, 0.0074, 0.0069, 0.0057, 0.0054, 0.0045, 0.0042, 0.0035], [0.0355, 0.0202, 0.0202, 0.0108, 0.009, 0.0062, 0.0051, 0.0037], [0.8859, 0.0196, 0.0184, 0.0162, 0.0015, 0.0015, 0.0011, 0.0011], [0.8004, 0.033, 0.0166, 0.0122, 0.0084, 0.0078, 0.0061, 0.0048], [0.8028, 0.0513, 0.0453, 0.0122, 0.0061, 0.0042, 0.0023, 0.0015], [0.6283, 0.3363, 0.0276, 0.0027, 0.0023, 0.0003, 0.0001, 0.0001], [0.0213, 0.0213, 0.0122, 0.0089, 0.0061, 0.0045, 0.0045, 0.0042], [0.0191, 0.0102, 0.0096, 0.0075, 0.0075, 0.0058, 0.0048, 0.0045], [0.0258, 0.0242, 0.0201, 0.0167, 0.0114, 0.0108, 0.0074, 0.0061], [0.5627, 0.3413, 0.0863, 0.0055, 0.001, 0.0006, 0.0006, 0.0004], [0.4652, 0.2822, 0.0461, 0.0232, 0.0169, 0.0085, 0.0038, 0.0036], [0.3322, 0.3322, 0.2283, 0.01, 0.0094, 0.0078, 0.0024, 0.0024], [0.6709, 0.1922, 0.1321, 0.0012, 0.0009, 0.0003, 0.0002, 0.0001], [0.3899, 0.3441, 0.2365, 0.0046, 0.0036, 0.003, 0.001, 0.0009], [0.6593, 0.1889, 0.1471, 0.0011, 0.0005, 0.0004, 0.0003, 0.0003], [0.3994, 0.3524, 0.2138, 0.0054, 0.0042, 0.0014, 0.0012, 0.0011], [0.9198, 0.0357, 0.0357, 0.0024, 0.0014, 0.0004, 0.0004, 0.0003], [0.8257, 0.0411, 0.0249, 0.0234, 0.0111, 0.0081, 0.0036, 0.0028], [0.5396, 0.3273, 0.073, 0.0443, 0.0044, 0.0008, 0.0005, 0.0005], [0.71, 0.2305, 0.0312, 0.0045, 0.0023, 0.0009, 0.0008, 0.0008], [0.4462, 0.3938, 0.1128, 0.0093, 0.0028, 0.0016, 0.0015, 0.0015], [0.2726, 0.1068, 0.0571, 0.0445, 0.0418, 0.0393, 0.0254, 0.0127], [0.2044, 0.0752, 0.055, 0.0486, 0.0244, 0.0215, 0.019, 0.0123], [0.1215, 0.0785, 0.0574, 0.0447, 0.0447, 0.0271, 0.0113, 0.0113], [0.1671, 0.0952, 0.0577, 0.0479, 0.0309, 0.0256, 0.0107, 0.01], [0.2094, 0.082, 0.0724, 0.0364, 0.0195, 0.0172, 0.0118, 0.0111], [0.1867, 0.0606, 0.0324, 0.0305, 0.0269, 0.0237, 0.0237, 0.0174], [0.1851, 0.0565, 0.0498, 0.0468, 0.0221, 0.0195, 0.0195, 0.0183], [0.2368, 0.0678, 0.0387, 0.0341, 0.0234, 0.022, 0.0207, 0.0161], [0.173, 0.0528, 0.0437, 0.0363, 0.022, 0.022, 0.0161, 0.0151], [0.1081, 0.0743, 0.0398, 0.0351, 0.0291, 0.0257, 0.0227, 0.0176], [0.615, 0.0347, 0.0198, 0.0198, 0.0186, 0.0174, 0.0174, 0.0113], [0.4314, 0.0904, 0.0798, 0.0294, 0.0215, 0.019, 0.0148, 0.0115], [0.8407, 0.0238, 0.0198, 0.0198, 0.0186, 0.0113, 0.0093, 0.0068], [0.9088, 0.0242, 0.0095, 0.0084, 0.0079, 0.0061, 0.0042, 0.004], [0.922, 0.0246, 0.009, 0.007, 0.0062, 0.0062, 0.004, 0.0038], [0.8529, 0.0292, 0.0166, 0.0138, 0.013, 0.0089, 0.0051, 0.0045], [0.895, 0.021, 0.0145, 0.0088, 0.0053, 0.0047, 0.0034, 0.0034], [0.9875, 0.0031, 0.0024, 0.001, 0.0007, 0.0006, 0.0004, 0.0004], [0.9859, 0.0024, 0.0015, 0.0013, 0.001, 0.0006, 0.0005, 0.0005], [0.9866, 0.0019, 0.0017, 0.0013, 0.0009, 0.0007, 0.0007, 0.0006], [0.9894, 0.0017, 0.0013, 0.0012, 0.0007, 0.0007, 0.0005, 0.0004], [0.9809, 0.0031, 0.0021, 0.0015, 0.0013, 0.0011, 0.0011, 0.001], [0.9856, 0.0022, 0.0013, 0.0013, 0.0009, 0.0009, 0.0007, 0.0006], [0.9821, 0.0033, 0.0014, 0.0011, 0.0008, 0.0007, 0.0005, 0.0004], [0.7609, 0.0356, 0.0356, 0.0139, 0.0102, 0.0096, 0.0096, 0.0085], [0.7445, 0.0574, 0.0175, 0.0113, 0.0073, 0.0073, 0.0073, 0.0069], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 518, "top": [[".", ",", " \u2013", ";", "\u00a0", "\u00a0\u00a0", "\u2013", " \u200b\u200b"], [".", " \u200b\u200b", ",", " \u2013", "\u2013", "\u200b", " ", "\ufffd"], [".", ",", " \u200b\u200b", "\u2013", "\u2026.", "\u2026..", " \u2013", ";"], [" Blowjob", " milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot", " pornstar", " Guta", "odle"], [" \u200b\u200b", " \u201c", " \u201c.", " ", ".\u201c", ".", " (\u201c", " Del"], [" \u200b\u200b", ".", " \u201c", " \u201c.", ".\u201c", ":", " \u201d", ","], [" \u200b\u200b", ".\u201d", ".", ".\u201c", " \u201c", " \u201d", " ", ".\""], [" \u200b\u200b", " \u201e", "\u064b\u0627", " (\u201e", "  ", "\u0103\u021b", ".\u201c", "\u200b\u200b"], [" \u200b\u200b", " \n\n", "  \n\n", ".\u201c", ".\u201d", "\u200b\u200b", "!\u201d.", "   \n\n"], [",", "\u00a0", "\u00a0\u00a0", " ", "\ufffd", ":", " $\\", "."], [",", "\u00a0", "<|endoftext|>", " ", ".", ";", " [\u2026]", "\u00a0\u00a0"], [" ", " @", " $\\", " $", " pre", " thr", " \"", " \u201c"], [" ", " pre", " $\\", " mostly", " hybrid", " solid", " specialized", " \u200b\u200b"], [" ", " mostly", " hybrid", " strategically", ",", " pre", " shared", " thr"], [" ", " mostly", " strategically", " \"", " shared", " all", " '", " anti"], [" strategically", " ", " mostly", " more", " largely", " s", " pro", " all"], [",", "\u00a0", " ", " \"", "<|endoftext|>", "a", " strategically", " mostly"], ["<|endoftext|>", ",", "\u00a0", " ", "a", " strategically", " mostly", " \u200b\u200b"], ["<|endoftext|>", " largely", " strategically", " heavily", " arguably", " \"", " mostly", "\u00a0"], ["<|endoftext|>", " largely", " strategically", "\u00a0", " heavily", " arguably", " uniquely", " \""], ["<|endoftext|>", " \n\n", "\n\n", " @", "  \n\n", "@", " \n\n\n", "<|file_sep|>"], [" strategically", " globally", " workflows", " frameworks", " conceptual", " multit", " global", " collaborative"], [" ``", " heavily", " strategically", " uniquely", " \n\n", " globally", " modern", " multiple"], ["<|endoftext|>", " ,", "\n\n", " \n\n", " largely", " heavily", " much", " fully"], [" \n\n", "\n\n", "  \n\n", " \r\n\r\n", " \n\n\n", "\r\n\r\n", "   \n\n", "<|endoftext|>"], [" \n\n", " hardware", " technologies", " engineering", " technology", " heavily", " **", " software"], [" ``", " technologies", " software", " technology", " engineering", " hardware", " engineers", "\n\n"], ["\n\n", " \n\n", " ,", " @", " heavily", " complex", " technology", " mostly"], ["\n\n", " \n\n", " technologies", " technology", " software", " complex", " engineering", " hardware"], [" ...", " \n\n", " technologies", " technology", " \u2026", " software", "\n\n", " \n"], [" ...", " \n\n", " \u2026", " technology", " technologies", " \n", " [...]", " work"], [" ...", " [...]", " work", " \u2026", " using", " technology", " ,", " complex"], [" ...", " \u2026", " technology", " using", " [...]", " ...\"", " complex", " via"], [" workflows", " technologies", " technology", " \u2026", " ...", " tech", " software", " engineering"], [" technologies", " technology", " \u2026", "<|endoftext|>", " workflows", " tech", " engineering", " hardware"], [" \u2026", " [\u2026]", "<|endoftext|>", " [...]", " ...", " ...\"", "[\u2026]", "<|im_end|>"], [" [\u2026]", " \u2026", " workflows", " technologies", " leveraging", " \u200b\u200b", " [...]", " hardware"], [" [\u2026]", " \u2026", "<|endoftext|>", " [...]", "\n\n", "<|im_end|>", " workflows", " ..."], [" [\u2026]", " [...]", " leveraging", " specialized", " \u2026", " technical", "<|endoftext|>", " workflows"], [" [\u2026]", " [...]", " leveraging", " technologies", " \u2026", " technology", " workflows", " specialized"], [" Native", " technologies", " software", " algorithms", " workflows", " optimized", " leveraging", " engineering"], [" technologies", " software", " engineering", " algorithms", " workflows", " optimized", " leveraging", " technology"], [" technologies", " algorithms", " software", " workflows", " technology", " engineering", " optimized", " Technologies"], [" technologies", " workflows", " algorithms", " software", " Technologies", " technology", " leveraging", " optimized"], [" technologies", " workflows", " via", " leveraging", " algorithms", " Technologies", " software", " technology"], [" via", " leveraging", " technologies", " Via", " Technologies", "Via", " workflows", " using"], [" via", "Via", " leveraging", " Via", "via", " workflows", " technologies", " using"], ["Via", " Via", "via", " via", " leveraging", " workflows", " Using", " Technologies"], ["Via", "via", " Via", " via", " leveraging", "\u901a\u8fc7", " workflows", "\u501f\u52a9"], ["Via", "via", " leveraging", " Via", " workflows", "\u901a\u8fc7\u4f7f\u7528", "\u5229\u7528", "\u501f\u52a9"], ["Via", "\u4f7f\u7528", " leveraging", "\u5229\u7528", " usando", "via", " utilisant", "\u901a\u8fc7\u4f7f\u7528"], ["Via", " leveraging", "!**", ";**", "\u5229\u7528", " APIs", "interop", " interoper"], [" Xamarin", ".NET", "Via", " leveraging", "interop", " JIT", " ReSharper", " SIMD"], [" SIMD", " Xamarin", " JIT", "codegen", "Interop", " JetBrains", "interop", "Mono"], [".NET", " Xamarin", " SIMD", " JIT", "interop", "Interop", " WebGL", " JetBrains"], [" Xamarin", "interop", " SIMD", ".NET", "Mono", "Native", " JIT", " Mono"], ["Native", "unsafe", "native", " Unsafe", "interop", "Unsafe", " Native", " unsafe"], ["unsafe", " Unsafe", "Native", "Unsafe", " Native", "native", "interop", " Mono"], ["unsafe", "Unsafe", " Unsafe", " unsafe", " Dangerous", "Danger", "interop", "Interop"], ["unsafe", " unsafe", " Unsafe", "Unsafe", " Native", " System", " Dangerous", "[System"], ["unsafe", " unsafe", " Unsafe", "Unsafe", " Native", " **[", "Native", " **#"], [" **", " **[", " **#", "unsafe", " **.", " **\u201c", " unsafe", "**"], [" ", " **", " **[", " **#", " **\u201c", " **\"", " unsafe", " **."]], "p": [[0.9133, 0.0662, 0.0051, 0.004, 0.0019, 0.0019, 0.0015, 0.0008], [0.0679, 0.0497, 0.0207, 0.0207, 0.0142, 0.0118, 0.0118, 0.0059], [0.846, 0.0787, 0.0155, 0.0155, 0.0146, 0.0088, 0.0044, 0.0031], [0.0116, 0.009, 0.0055, 0.0051, 0.0045, 0.0024, 0.0023, 0.0023], [0.3597, 0.0854, 0.023, 0.0062, 0.0043, 0.004, 0.0033, 0.0026], [0.9809, 0.0026, 0.0018, 0.0017, 0.0003, 0.0002, 0.0002, 0.0001], [0.8436, 0.0371, 0.0327, 0.0186, 0.0106, 0.0053, 0.0044, 0.0018], [0.9976, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.995, 0.0016, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.7514, 0.0374, 0.0129, 0.0095, 0.0065, 0.0057, 0.0054, 0.0042], [0.4945, 0.1605, 0.1417, 0.0974, 0.0521, 0.0058, 0.0035, 0.0033], [0.078, 0.0325, 0.0306, 0.0077, 0.0057, 0.0053, 0.0053, 0.0047], [0.0193, 0.0142, 0.0091, 0.0071, 0.0071, 0.0059, 0.0055, 0.0041], [0.0107, 0.0065, 0.0061, 0.0045, 0.0045, 0.0045, 0.0035, 0.0033], [0.0556, 0.0132, 0.0097, 0.0049, 0.0049, 0.0046, 0.004, 0.004], [0.0127, 0.0112, 0.0082, 0.006, 0.0056, 0.005, 0.0047, 0.0041], [0.159, 0.0355, 0.0276, 0.0131, 0.0123, 0.0123, 0.0084, 0.0074], [0.37, 0.0643, 0.0237, 0.0135, 0.0053, 0.0036, 0.0028, 0.0027], [0.6682, 0.0045, 0.0035, 0.0015, 0.0015, 0.0015, 0.0014, 0.0012], [0.8469, 0.0025, 0.0019, 0.0013, 0.0011, 0.0011, 0.0008, 0.0008], [0.9978, 0.0013, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0137, 0.0107, 0.0107, 0.0083, 0.0057, 0.0051, 0.0042, 0.0039], [0.1647, 0.0174, 0.0135, 0.0119, 0.0105, 0.0099, 0.0077, 0.0077], [0.5649, 0.0133, 0.0103, 0.0097, 0.0067, 0.0059, 0.003, 0.0026], [0.8837, 0.0931, 0.0098, 0.0019, 0.0016, 0.0015, 0.0008, 0.0004], [0.3653, 0.0233, 0.0182, 0.0182, 0.0117, 0.0117, 0.011, 0.011], [0.0687, 0.0345, 0.0305, 0.0305, 0.0269, 0.0185, 0.0144, 0.0135], [0.5122, 0.2742, 0.0113, 0.0042, 0.0029, 0.0024, 0.0017, 0.0015], [0.1794, 0.1398, 0.0583, 0.0426, 0.0147, 0.0122, 0.0115, 0.0115], [0.3259, 0.2876, 0.0344, 0.0323, 0.0126, 0.0119, 0.0119, 0.0092], [0.7107, 0.0704, 0.0189, 0.0167, 0.0139, 0.013, 0.007, 0.0045], [0.7251, 0.0103, 0.0091, 0.0081, 0.0081, 0.0081, 0.0071, 0.0063], [0.4747, 0.0366, 0.0252, 0.0209, 0.0184, 0.0099, 0.0087, 0.0087], [0.2037, 0.1315, 0.0749, 0.0548, 0.0354, 0.0215, 0.0202, 0.0148], [0.1415, 0.0913, 0.0554, 0.0405, 0.0381, 0.0262, 0.0169, 0.0149], [0.4506, 0.2128, 0.1005, 0.0573, 0.0446, 0.0271, 0.01, 0.0088], [0.0778, 0.0645, 0.0345, 0.0286, 0.0237, 0.0237, 0.0197, 0.0185], [0.0728, 0.0603, 0.0303, 0.0285, 0.0285, 0.0236, 0.0173, 0.0162], [0.0424, 0.0274, 0.0257, 0.0242, 0.0242, 0.0242, 0.0227, 0.0227], [0.1119, 0.0497, 0.0321, 0.0266, 0.0207, 0.0195, 0.0183, 0.0183], [0.0407, 0.0382, 0.0338, 0.028, 0.0263, 0.0263, 0.0263, 0.0247], [0.079, 0.0655, 0.0578, 0.045, 0.0351, 0.0351, 0.031, 0.0291], [0.1452, 0.0605, 0.0605, 0.0569, 0.0345, 0.0324, 0.0269, 0.0252], [0.1816, 0.0757, 0.0431, 0.0431, 0.0405, 0.0358, 0.0336, 0.018], [0.1116, 0.0677, 0.0597, 0.0437, 0.0386, 0.034, 0.032, 0.0282], [0.117, 0.0667, 0.0626, 0.043, 0.0404, 0.038, 0.0357, 0.0296], [0.1348, 0.0986, 0.087, 0.0817, 0.0768, 0.0341, 0.0171, 0.0161], [0.3267, 0.1202, 0.1129, 0.0936, 0.0285, 0.0105, 0.0093, 0.0087], [0.6535, 0.1287, 0.0445, 0.0445, 0.012, 0.0044, 0.0041, 0.0032], [0.2994, 0.0806, 0.0381, 0.0246, 0.0132, 0.0109, 0.0109, 0.0096], [0.1095, 0.0801, 0.0314, 0.026, 0.0244, 0.023, 0.0216, 0.0203], [0.0657, 0.0242, 0.0201, 0.0188, 0.0156, 0.0147, 0.0147, 0.0147], [0.0268, 0.0252, 0.0222, 0.0163, 0.0163, 0.0153, 0.0153, 0.0144], [0.0333, 0.0276, 0.019, 0.0168, 0.0168, 0.0157, 0.0139, 0.0123], [0.0778, 0.0569, 0.0443, 0.0324, 0.0324, 0.0269, 0.0223, 0.0185], [0.1398, 0.0454, 0.0376, 0.0354, 0.0354, 0.0243, 0.0214, 0.0201], [0.1754, 0.1754, 0.0731, 0.0687, 0.0645, 0.0569, 0.0503, 0.021], [0.1433, 0.1188, 0.1188, 0.1048, 0.0597, 0.0495, 0.034, 0.0234], [0.7286, 0.0986, 0.087, 0.0528, 0.0059, 0.0036, 0.0016, 0.0014], [0.6303, 0.1806, 0.0624, 0.0379, 0.0079, 0.0066, 0.0058, 0.0042], [0.3673, 0.3241, 0.0563, 0.0497, 0.0321, 0.0092, 0.0067, 0.0046], [0.5907, 0.1918, 0.0799, 0.0123, 0.0115, 0.0102, 0.0079, 0.0045], [0.901, 0.0478, 0.0044, 0.0014, 0.0014, 0.0014, 0.0014, 0.0012]], "ranks": {}}, {"pos": 519, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", "\u2026.", "\u2026..", "\u00a0", ","], [" \u2013", "\u2013", " \u2013**", "\u2013\u2013", "\u2013and", " \u2013,", "**\u2013", ".\u2013"], [" \u2013", "\u2013", "\u2013and", ".\u2013", ".", "**\u2013", " \u2013,", "\u2026.."], [" milfs", " **:**", " Blowjob", " pornstar", "*\u201c.", "ieli", " Shemale", " **:"], [" \n\n\n\n\n", " *@", "  \r\n\r\n", "  \n\n", "   \n", "       \n\n", " **#", " \n\n"], ["   \n", " \n\n\n\n\n", " \uff1a", "     \n", " **\u20ac", "       \n", "ropa", " **\u2013"], ["   \n", "       \n", "\uff01", "  \n", "     \n", " \n", "  \n\n", "         \n"], ["   \n", "       \n", "   \n\n", "    \n", "     \n", " \n\n", " **\u20ac", "   \r\n"], [" \n\n", "  \n\n", "   \n\n", "   \n", "       \n", "       \n\n", "    \n", "    \n\n"], [" **\u20ac", " **\u2013", "   \n", " **", " **\"", "\u6587\u534e", "       \n", "\u84ee"], [" ", " \n", " \u2013", "   \n", "\u00a0", " \\\"", "       \n", " **"], [" **", " **'", " **\u20ac", " ***", " \\\"", " *", " **#", " ****"], [" **", " \\\"", " *", " prec", " advancements", " showcase", " solid", " hybrid"], [" advancements", " transition", " showcase", " prec", " \\\"", " robotic", " priorit", " upfront"], [" ", " heavily", " transition", " \\\"", " showcase", " showcasing", " anti", " inter"], [" showcasing", " heavily", " advancements", " incredibly", " utilizing", " showcase", " amongst", " entirety"], [" \u2013", " priorit", " heavily", " showcasing", " entirety", " overarching", " advancements", " "], [" \u2013", " priorit", " heavily", " overarching", " transitioning", " entirety", " showcasing", " advancements"], [" heavily", " priorit", " overarching", " entirety", " strategically", " \u2013", " swiftly", " aggressively"], [" heavily", " overarching", " priorit", " entirety", " amongst", " transitioning", " swiftly", " strategically"], ["<|endoftext|>", " \n\n", " heavily", " swiftly", "  \n\n", " uniquely", " vastly", " ultimately"], [" **", " heavily", " upfront", " contractual", " advancements", " priorit", " aggressively", " conceptual"], [" --", " heavily", " uniquely", " ''", " ``", " aggressively", " ultimately", " commercial"], [" heavily", " ultimately", " ,", " --", " fully", " more", " much", " re"], [" \n\n", "  \n\n", " \r\n\r\n", "\r\n\r\n", "   \n\n", "\n\n", " ___", " heavily"], [" **", " **'", " ___", " technology", " technologies", " **\u2018", " *__", " heavily"], [" **", " ___", " \n\n", " technology", " infrastructure", " technologies", " heavily", " __"], [" \n\n", " **", " heavily", " technology", "\n\n", " ___", " --", " ,"], [" \n\n", " **", " technology", " technologies", " heavily", " infrastructure", " ___", " systems"], [" **", " ___", " ______", " technology", " \n\n", " __", " ...", " infrastructure"], [" **", " technology", " ...", " hybrid", " complex", " heavily", " focus", " systems"], [" **", " complex", " ,", " technology", " focus", " re", " heavily", " ..."], [" **", " ,", " pre", " re", " complex", " heavily", " hybrid", " only"], [" hybrid", " **", " optimized", " technology", " heavily", " priorit", " focus", " complex"], [" hybrid", " optimized", " **", " dual", " meticulously", " priorit", " aggressively", " technology"], [" optimized", " hybrid", " \u2013", " **", " dual", " hardware", " limited", " \u201c"], [" optimized", " optimization", " hybrid", " hardware", " specialized", " dual", " optimizing", " limited"], [" optimized", " optimization", " hybrid", " hardware", " limited", " dual", " software", " specialized"], [" optimized", " optimization", " hybrid", " optimizing", " specialized", " priorit", " optimizations", " limited"], [" optimized", " optimization", " optimizations", " optimizing", " redesign", " hardware", " hybrid", " specialized"], [" optimized", " optimization", " optimizations", " hardware", " optimizing", " software", " optim", " technology"], [" optimized", " optimization", " optimizations", " optimizing", " hardware", " software", " redesign", " specialized"], [" optimized", " optimization", " optimizations", " software", " optimizing", " specialized", " hardware", " redesign"], [" optimized", " optimization", " optimizations", " specialized", " software", " optimizing", " technology", " hardware"], [" optimized", " specialized", " optimization", " minimalist", " software", " redesign", " strategy", " strict"], [" optimized", " redesign", " specialized", " minimalist", " strict", " using", " optimization", " limited"], [" optimized", " specialized", " meticulously", " strict", " minimalist", " redesign", " optimization", " limited"], [" specialized", " exclusively", " strict", " optimized", " use", " using", " meticulously", " redesign"], [" strict", " exclusively", " leveraging", " specialized", " optimized", " Strict", " **", " Limited"], [" Strict", " strict", " **", " leveraging", "\u4e25\u683c\u63a7\u5236", " Limited", " exclusively", "Strict"], ["\u5f3a\u5236", " Strict", " **", "\u6539\u7528", "\u4e25\u683c\u63a7\u5236", " leveraging", "\u653e\u5f03", "Strict"], [" **", "\u6539\u7528", " **\"", " Use", " Strict", " Switch", "\u5f3a\u5236", " leveraging"], [" **", "\u5f3a\u5236", " **\"", " Use", "\u6539\u7528", " Switch", " bypass", "\u653e\u5f03"], [" **", " Switch", " **\"", "\u5f3a\u5236", " Hybrid", " Shift", " **#", " switch"], [" Switch", " switch", " **", " Hybrid", "Switch", "\u5207\u6362\u5230", " switched", "switch"], [" Switch", " switch", " **", " Hybrid", "Switch", " Hardcore", " abandon", " Replace"], [" **", " Switch", " Shift", " switch", " Hybrid", " Hardcore", "Switch", " Replace"], [" aggressive", " aggressively", " **", " agress", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " agres", " ruthless", " Hardcore"], [" aggressive", " aggressively", " **", " Hybrid", " ruthless", " Hardcore", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " agres"], [" aggressive", " aggressively", " **", " Shift", " Hybrid", " ruthless", " Strict", " agress"], [" **", " aggressive", " aggressively", " Shift", " Hybrid", " ruthless", " Hardcore", " Kernel"], [" **", " **\"", " **\u201c", " **:", " **.", " aggressive", " **'", "**"], [" **", " **\"", " **\u201c", " **.", " **[", " aggressive", " **'", " **#"]], "p": [[0.4847, 0.3775, 0.0451, 0.0166, 0.0137, 0.0107, 0.0051, 0.0037], [0.2044, 0.0355, 0.0202, 0.0179, 0.0179, 0.009, 0.0074, 0.0031], [0.4675, 0.3641, 0.0361, 0.0299, 0.017, 0.0141, 0.0125, 0.0086], [0.0066, 0.0033, 0.0022, 0.0018, 0.0018, 0.0018, 0.0016, 0.0011], [0.086, 0.0085, 0.008, 0.008, 0.0059, 0.0049, 0.0043, 0.0038], [0.028, 0.0232, 0.0205, 0.0059, 0.0055, 0.0052, 0.004, 0.0038], [0.21, 0.064, 0.0365, 0.0343, 0.0343, 0.0322, 0.0322, 0.0267], [0.3885, 0.0634, 0.0385, 0.0361, 0.0281, 0.0264, 0.0219, 0.0193], [0.2586, 0.1078, 0.1078, 0.0789, 0.0478, 0.0373, 0.0256, 0.0187], [0.0095, 0.0042, 0.004, 0.0037, 0.0029, 0.002, 0.0018, 0.0017], [0.2129, 0.1071, 0.0419, 0.0254, 0.0175, 0.0164, 0.012, 0.0094], [0.2893, 0.0127, 0.0127, 0.0072, 0.0068, 0.006, 0.0053, 0.005], [0.0541, 0.0088, 0.0054, 0.003, 0.0029, 0.0027, 0.0022, 0.0021], [0.0043, 0.0036, 0.0031, 0.0023, 0.0023, 0.0017, 0.0017, 0.0017], [0.0154, 0.0068, 0.006, 0.0047, 0.0039, 0.0036, 0.0034, 0.0028], [0.0076, 0.0063, 0.0056, 0.0043, 0.0041, 0.0038, 0.0036, 0.0036], [0.029, 0.0094, 0.0094, 0.0088, 0.0078, 0.0065, 0.0065, 0.0047], [0.0278, 0.0158, 0.0116, 0.0075, 0.0055, 0.0051, 0.0048, 0.004], [0.0214, 0.0157, 0.0122, 0.0079, 0.0065, 0.0061, 0.0058, 0.0058], [0.0334, 0.0148, 0.0139, 0.0116, 0.0109, 0.0096, 0.0096, 0.009], [0.6259, 0.0243, 0.0108, 0.0051, 0.004, 0.0037, 0.0026, 0.0026], [0.007, 0.0066, 0.0066, 0.004, 0.0035, 0.0035, 0.0033, 0.0031], [0.0272, 0.0212, 0.0155, 0.0121, 0.0113, 0.0083, 0.0061, 0.0057], [0.0202, 0.0167, 0.013, 0.013, 0.0095, 0.0095, 0.0089, 0.007], [0.7411, 0.0393, 0.0369, 0.0106, 0.0093, 0.0041, 0.0041, 0.0041], [0.5462, 0.0255, 0.0165, 0.0121, 0.0083, 0.0073, 0.0057, 0.0054], [0.135, 0.0599, 0.022, 0.0194, 0.0118, 0.0098, 0.0092, 0.0067], [0.0802, 0.0356, 0.023, 0.0158, 0.0139, 0.0116, 0.0102, 0.0085], [0.1059, 0.05, 0.0366, 0.0209, 0.0184, 0.0162, 0.0126, 0.0093], [0.2231, 0.1194, 0.0364, 0.0342, 0.0284, 0.0221, 0.0143, 0.0134], [0.0754, 0.0457, 0.0379, 0.0148, 0.0148, 0.0139, 0.0123, 0.0116], [0.042, 0.0164, 0.0154, 0.0145, 0.012, 0.0113, 0.0106, 0.0088], [0.0216, 0.019, 0.0131, 0.0115, 0.0115, 0.0102, 0.0102, 0.0102], [0.036, 0.0318, 0.0233, 0.0193, 0.017, 0.015, 0.0133, 0.0125], [0.1003, 0.0347, 0.0306, 0.0224, 0.0185, 0.0174, 0.0127, 0.0127], [0.1284, 0.0779, 0.0368, 0.0305, 0.0197, 0.0163, 0.0153, 0.0144], [0.4756, 0.0367, 0.0345, 0.0222, 0.0184, 0.0163, 0.0105, 0.0099], [0.3704, 0.0416, 0.0367, 0.0184, 0.0144, 0.0135, 0.0135, 0.0135], [0.4796, 0.0538, 0.0154, 0.0154, 0.0154, 0.0136, 0.0113, 0.0113], [0.5592, 0.0668, 0.0169, 0.014, 0.0132, 0.0116, 0.0109, 0.0102], [0.5371, 0.0641, 0.0251, 0.0184, 0.0173, 0.0143, 0.0105, 0.0092], [0.6167, 0.0574, 0.0271, 0.0239, 0.0128, 0.0128, 0.012, 0.01], [0.6247, 0.0482, 0.0242, 0.0156, 0.0156, 0.0147, 0.0114, 0.0079], [0.5371, 0.0469, 0.0222, 0.0208, 0.0196, 0.0173, 0.0098, 0.0098], [0.3521, 0.0371, 0.024, 0.024, 0.0187, 0.0187, 0.0165, 0.0155], [0.3228, 0.032, 0.032, 0.022, 0.0206, 0.0182, 0.0161, 0.0142], [0.3464, 0.0343, 0.0343, 0.0322, 0.0267, 0.0208, 0.0162, 0.0143], [0.0723, 0.0723, 0.0638, 0.0529, 0.0364, 0.0364, 0.0207, 0.0207], [0.0859, 0.0432, 0.0381, 0.0381, 0.0358, 0.0297, 0.0246, 0.0204], [0.0941, 0.0607, 0.0504, 0.0325, 0.0238, 0.021, 0.0197, 0.0164], [0.0397, 0.0373, 0.0309, 0.0273, 0.0212, 0.0187, 0.0176, 0.0165], [0.0677, 0.0386, 0.0362, 0.032, 0.0282, 0.0282, 0.022, 0.0151], [0.1738, 0.0821, 0.0564, 0.0342, 0.0284, 0.025, 0.0208, 0.0183], [0.4344, 0.0666, 0.043, 0.0245, 0.0123, 0.0116, 0.0102, 0.0102], [0.3383, 0.1598, 0.0588, 0.0458, 0.0458, 0.0296, 0.0245, 0.0216], [0.2764, 0.1676, 0.1306, 0.0398, 0.031, 0.0227, 0.0188, 0.0177], [0.4334, 0.1594, 0.0429, 0.0356, 0.0295, 0.0203, 0.0179, 0.0148], [0.3932, 0.347, 0.0877, 0.0222, 0.0196, 0.0143, 0.0119, 0.0082], [0.3343, 0.2604, 0.1085, 0.0581, 0.0311, 0.0156, 0.0147, 0.0138], [0.3123, 0.2146, 0.1149, 0.029, 0.0226, 0.0213, 0.0129, 0.01], [0.5118, 0.1466, 0.0785, 0.0145, 0.0145, 0.0094, 0.0078, 0.0073], [0.9921, 0.0012, 0.0006, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003], [0.9915, 0.0028, 0.0008, 0.0006, 0.0002, 0.0002, 0.0002, 0.0002]], "ranks": {}}, {"pos": 520, "top": [["s", "**\u2013", "**.", " \u2013", " **\u2013", "**:", "**\u3002", "**"], ["**\u2013", "**\u3002", " **\u2013", "\uff1f**", "\u2026**", "**.", " \u2013**", "-**"], ["**\u2013", "\u2026**", "s", "**\u3002", "**.", " **\u2013", "**", " \u2013**"], ["\uff1f**", "\u300d**", "\u3002**", "**\u3002", "\uff1a**", " **:", " **\u300c", " **\u00ab"], ["s", " **", "**\u3002", "\u2026**", "**.", "-**", " **.", "**"], [" **", "-**", "**\u3002", "**.", "\uff1f**", "\u2026**", " **.", "s"], ["s", " **", "**\u3002", "**", "**.", "\u2019**", "\uff1f**", "\u201d**"], [" **", "s", "**", "-**", "**\u3002", "**.", "\uff1f**", " **#"], [" **", "**", "**\u3002", "**.", "...**", "s", "\u2026**", "!**"], [" **", "s", "\u2026**", "-**", "...**", " **#", "**", ">**"], ["s", " **", "...**", "**", "\u2026**", " **#", "-**", "**."], [" **", " **#", "...**", "-**", " **\u00ab", ">**", "**", "\u2019**"], [" **", "s", "...**", "\u2026**", "-**", " **\u00ab", " **#", "**"], [" **", "s", "\u2026**", "...**", "-**", " **\u2013", "ing", " **#"], ["s", " **", "ing", "a", "\u2026**", "...**", "-**", " **\u2013"], ["s", " **", "ing", "a", "o", " showcasing", "\u2026**", "...**"], ["s", " **", "...**", "\u2026**", "ing", "a", " **\u2013", "**\u2013"], ["s", " **", " **\u2013", "\u2026**", "...**", "**\u2013", "a", "ing"], ["s", " **", "a", "...**", "\u2026**", "ing", " **\u2013", "o"], ["s", "a", "...**", " **", "\u2026**", "ing", "**,", "<|endoftext|>"], ["s", "<|endoftext|>", "a", " \n\n", " **", "ing", "<|file_sep|>", "...**"], [" **", "s", " **#", "ing", "\u300d**", ">**", "\u2019**", " **\u2013"], [" **", "s", "a", "ing", " **#", " priorit", " strategically", " foundational"], ["s", "a", "<|endoftext|>", " **", "ing", " \n\n", " ultimately", " largely"], [" \n\n", "  \n\n", "\r\n\r\n", " \r\n\r\n", "\n\n", " **", "\t\n\n", "   \n\n"], [" **", " \n\n", "...**", "\r\n\r\n", " **#", " \r\n\r\n", " **'", " **\u2018"], [" **", " \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", " priorit", "  \n\n", " foundational"], ["\n\n", " \n\n", " **", "  \n\n", "\r\n\r\n", " \r\n\r\n", " heavily", "<|endoftext|>"], [" \n\n", "\n\n", " **", " priorit", "  \n\n", " strategically", "\r\n\r\n", " heavily"], [" **", " \n\n", "  \n\n", " priorit", "...**", "\n\n", "a", "\r\n\r\n"], [" **", " \n\n", " priorit", " strategically", " focused", " strategic", " focus", " aggressively"], [" **", " priorit", " focused", " heavily", " strategically", " focus", " core", " high"], [" **", " priorit", " strategically", " focused", " strategic", " fully", " dual", " hybrid"], [" modular", " priorit", " **", " strategically", " redesign", " aggressively", " hybrid", " strategic"], [" modular", " meticulously", " priorit", " strategically", " hybrid", " redesign", " aggressively", " leveraging"], [" modular", " meticulously", " priorit", " optimized", " hybrid", " dual", " aggressively", " strategically"], [" optimized", " modular", " aggressively", " priorit", " meticulously", " leveraging", " redesign", " strategically"], [" modular", " optimized", " redesign", " leveraging", " priorit", " meticulously", " aggressively", " Modular"], [" optimized", " modular", " priorit", " meticulously", " redesign", " aggressively", " leveraging", " strategically"], [" optimized", " meticulously", " modular", " priorit", " aggressively", " strategically", " redesign", " leveraging"], [" optimized", " modular", " priorit", " aggressively", " meticulously", " strategically", " optimization", " leveraging"], [" optimized", " modular", " priorit", " optimizing", " optimization", " redesign", " strategy", " strategically"], [" modular", " optimized", " meticulously", " priorit", " optimization", " Modular", " avoidance", " redesign"], [" optimized", " modular", " avoidance", " meticulously", " optimization", " Modular", " strict", " optimizing"], [" modular", " strict", " optimized", " Modular", " avoidance", " meticulously", " minimalist", " strategy"], [" modular", " strict", " Modular", " optimized", " meticulously", " Strict", " avoidance", " minimalist"], [" meticulously", " strict", " Strict", " modular", " Modular", " optimized", " avoidance", "\u4e25\u683c\u63a7\u5236"], [" Strict", " strict", " meticulously", "\u4e25\u683c\u63a7\u5236", " Modular", " strictly", " modular", " avoidance"], [" Strict", " strict", "\u4e25\u683c\u63a7\u5236", " meticulously", " Modular", " Restricted", " strictly", " Controlled"], [" Strict", "\u4e25\u683c\u63a7\u5236", " strict", " meticulously", "Strict", " STRICT", "\u5f3a\u5236", " Controlled"], [" Strict", "\u4e25\u683c\u63a7\u5236", "Strict", " STRICT", " strict", "\u5f3a\u5236", ";**", " meticulously"], [" Strict", " strict", "Strict", "\u4e25\u683c\u63a7\u5236", "\u5f3a\u5236", " STRICT", ";**", " Seamless"], ["\u5f3a\u5236", " Strict", " Hardcore", "Strict", " ruthless", " Forced", " strict", " Split"], ["\u5f3a\u5236", " Strict", " Hardcore", " ruthless", " Forced", " strict", "Strict", " Split"], ["\u5f3a\u5236", " Switch", " Hardcore", " Hybrid", " Strict", " ruthless", " Forced", " Mandatory"], [" Hardcore", "\u5f3a\u5236", " ruthless", " aggressively", " Hybrid", " Switch", " aggressive", " Forced"], [" Strict", " ruthless", " Hardcore", "Strict", " aggressively", " strict", "\u5f3a\u5236", " aggressive"], [" aggressive", " aggressively", " agress", " agres", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " ruthless", " aggress", " Hardcore"], [" aggressive", " aggressively", " ruthless", " agres", " Strict", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " agress", " Hardcore"], [" aggressive", " aggressively", " Strict", " ruthless", " strict", "Strict", " agress", " agres"], [" aggressive", " aggressively", " Strict", " ruthless", " Hardcore", " Nuclear", " agress", " Shift"], [" aggressive", " Strict", " Hardcore", " aggressively", " Ag", " ruthless", " Nuclear", "Strict"], ["Ag", "Strict", "Kill", "Zero", " aggressive", "Force", "Hard", "Shift"]], "p": [[0.9972, 0.001, 0.0008, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.6237, 0.0844, 0.0512, 0.0352, 0.0311, 0.0274, 0.0213, 0.0147], [0.5053, 0.1641, 0.1278, 0.0684, 0.0533, 0.047, 0.0072, 0.0056], [0.3123, 0.0697, 0.051, 0.0479, 0.035, 0.0329, 0.0241, 0.0241], [0.8471, 0.0372, 0.0199, 0.0176, 0.0121, 0.0094, 0.0073, 0.0073], [0.3024, 0.1834, 0.0675, 0.0526, 0.0409, 0.0319, 0.0319, 0.0319], [0.3144, 0.2449, 0.1157, 0.0795, 0.0292, 0.0258, 0.0258, 0.0228], [0.4824, 0.1382, 0.095, 0.0576, 0.0508, 0.0308, 0.0113, 0.0113], [0.2465, 0.2465, 0.0907, 0.0623, 0.055, 0.0485, 0.0428, 0.0229], [0.5253, 0.1328, 0.0711, 0.0711, 0.0296, 0.0231, 0.0231, 0.018], [0.7263, 0.1836, 0.0362, 0.0194, 0.0117, 0.0026, 0.0023, 0.002], [0.9844, 0.004, 0.0031, 0.0017, 0.0013, 0.0005, 0.0004, 0.0003], [0.9723, 0.0108, 0.0058, 0.0031, 0.0021, 0.0015, 0.0008, 0.0007], [0.8379, 0.1001, 0.0174, 0.0174, 0.0082, 0.0025, 0.0018, 0.0018], [0.8927, 0.0941, 0.005, 0.0025, 0.0008, 0.0005, 0.0002, 0.0002], [0.9438, 0.0285, 0.0153, 0.0077, 0.0003, 0.0002, 0.0001, 0.0001], [0.816, 0.0975, 0.0204, 0.0192, 0.0109, 0.0071, 0.0062, 0.0014], [0.2914, 0.2571, 0.1215, 0.1141, 0.0737, 0.0239, 0.0198, 0.0094], [0.6864, 0.1053, 0.0723, 0.0563, 0.025, 0.0104, 0.0056, 0.0026], [0.7411, 0.0832, 0.0306, 0.021, 0.0174, 0.0113, 0.0064, 0.003], [0.2318, 0.2318, 0.1805, 0.0334, 0.023, 0.0179, 0.0075, 0.0058], [0.7323, 0.0251, 0.0221, 0.0092, 0.0053, 0.0049, 0.0038, 0.0036], [0.3753, 0.147, 0.0308, 0.0255, 0.005, 0.0035, 0.0025, 0.0022], [0.097, 0.0856, 0.0216, 0.0191, 0.014, 0.0075, 0.0051, 0.0035], [0.7411, 0.0781, 0.0648, 0.0418, 0.0287, 0.0053, 0.003, 0.0028], [0.8792, 0.0171, 0.0067, 0.0059, 0.0052, 0.0038, 0.0026, 0.0025], [0.3313, 0.1145, 0.0787, 0.0652, 0.0113, 0.0061, 0.0042, 0.0039], [0.3165, 0.2465, 0.0334, 0.0179, 0.0179, 0.0045, 0.0035, 0.0029], [0.1563, 0.0575, 0.0328, 0.0187, 0.0165, 0.0128, 0.0113, 0.0078], [0.2483, 0.2332, 0.0336, 0.018, 0.0132, 0.0116, 0.0085, 0.0062], [0.3726, 0.0287, 0.0144, 0.0073, 0.0068, 0.0057, 0.0053, 0.005], [0.1659, 0.0145, 0.012, 0.0094, 0.0088, 0.0083, 0.0073, 0.0073], [0.033, 0.0156, 0.0146, 0.0121, 0.0101, 0.0095, 0.0095, 0.0095], [0.0444, 0.0368, 0.027, 0.0238, 0.021, 0.0174, 0.0164, 0.0164], [0.0526, 0.0436, 0.041, 0.0282, 0.0282, 0.0265, 0.0194, 0.0182], [0.0819, 0.0467, 0.0387, 0.0321, 0.0301, 0.022, 0.0195, 0.0183], [0.0699, 0.0657, 0.0424, 0.0424, 0.0374, 0.031, 0.0257, 0.0242], [0.085, 0.0662, 0.0354, 0.0354, 0.0259, 0.0215, 0.0202, 0.0178], [0.0736, 0.0539, 0.0447, 0.037, 0.0255, 0.0239, 0.0225, 0.0186], [0.0659, 0.0426, 0.04, 0.0376, 0.0353, 0.0258, 0.0177, 0.0167], [0.0901, 0.0426, 0.0258, 0.0242, 0.0228, 0.0201, 0.0201, 0.0177], [0.0924, 0.0766, 0.0234, 0.0219, 0.0219, 0.0206, 0.0194, 0.0182], [0.0906, 0.0751, 0.0244, 0.0202, 0.019, 0.019, 0.0178, 0.0139], [0.1013, 0.0542, 0.0397, 0.029, 0.0226, 0.0187, 0.0187, 0.0155], [0.1158, 0.0514, 0.0454, 0.0312, 0.0228, 0.0201, 0.0178, 0.0178], [0.1112, 0.0674, 0.0493, 0.0339, 0.0318, 0.0233, 0.0206, 0.0133], [0.1239, 0.08, 0.055, 0.0378, 0.0313, 0.0244, 0.0229, 0.0215], [0.1531, 0.112, 0.0872, 0.0301, 0.0235, 0.0207, 0.0142, 0.0134], [0.2353, 0.0813, 0.0764, 0.0595, 0.017, 0.0133, 0.0117, 0.0103], [0.3048, 0.1053, 0.0724, 0.0283, 0.0195, 0.0143, 0.0098, 0.0086], [0.1686, 0.0848, 0.0293, 0.0275, 0.0259, 0.0228, 0.0189, 0.0167], [0.2052, 0.038, 0.0335, 0.0278, 0.0245, 0.0168, 0.0158, 0.014], [0.2158, 0.1681, 0.0375, 0.0258, 0.0258, 0.0242, 0.0189, 0.013], [0.1945, 0.118, 0.0434, 0.0383, 0.0338, 0.0141, 0.0132, 0.0124], [0.2331, 0.0554, 0.0489, 0.0431, 0.0357, 0.0336, 0.0296, 0.0159], [0.1298, 0.1011, 0.1011, 0.0838, 0.0349, 0.0349, 0.0328, 0.024], [0.4228, 0.1069, 0.0832, 0.0505, 0.0446, 0.0224, 0.0186, 0.0186], [0.6073, 0.3251, 0.0143, 0.0143, 0.0126, 0.0098, 0.0032, 0.0025], [0.5955, 0.2482, 0.0628, 0.0159, 0.0124, 0.0124, 0.0124, 0.0096], [0.5658, 0.1837, 0.1262, 0.041, 0.0171, 0.0091, 0.0067, 0.0059], [0.5554, 0.1094, 0.055, 0.0485, 0.0229, 0.0123, 0.0102, 0.0102], [0.368, 0.0771, 0.0498, 0.0468, 0.0322, 0.0267, 0.0152, 0.0143], [0.1704, 0.1247, 0.0756, 0.0488, 0.038, 0.0336, 0.0261, 0.0169]], "ranks": {}}, {"pos": 521, "top": [[" \u2013", "\u2013", ".", ".\u2013", " \u2013,", "\u2013and", " |\u2013", ","], [" \u2013", " \u2013**", " \u2013,", "\u2013", " *\u2013", "\u2013and", ".\u2013", "\u2013\u2013"], [" \u2013", "\u2013", ".\u2013", " \u2013,", "\u2013and", " \u2013**", "\u2026..", "."], [" \u2013**", "\u6700\u65b0\u53d1\u5e03", "*\u201c.", " *\u2013", " Shemale", " Guta", "raries", " milfs"], [" *\u2013", " \u2013", " \u2013**", ":@", "@g", "@\"", "\u0647", "\u30f3"], [" \u2013**", "\u2026..", " \u2013", " *\u2013", ".\u2013", " **\u2013", " |\u2013", "auge"], [" \u2013**", " *\u2013", " **\u2013", " \u2014\u2014", "\u2026\u2026", " \u2013", "**\u2013", "..\""], [" \u2013**", " *\u2013", "ant", " **\u2013", "@\"", "\u6700\u65b0\u53d1\u5e03", ":@", ".\u2013"], [" \u2013**", "ant", " *\u2013", "ic", "istic", "\u6700\u65b0\u53d1\u5e03", ".\u2013", "..\""], ["\u2013", " \u2013", "ant", ".\u2013", "ic", "istic", " \u2013**", "\u2013and"], [" \u2013", "\u2013", " [\u2026]", "ant", "ic", "istic", " \u2013**", "@"], ["istic", " \u2013**", "ic", "ant", "ive", "itarian", "ions", "ative"], ["istic", " \u2013**", "itarian", "ic", "ant", "ive", "ative", "izational"], ["istic", "ant", "ic", "itarian", " \u2013**", "etic", "ative", "ive"], ["istic", "ant", "ic", "etic", "ian", "itarian", "ative", "ive"], ["istic", "ant", "ic", "ions", "ative", "ive", "ging", "ian"], ["ic", " \u2013", "ant", "\u2013", "istic", "ging", "en", "ative"], ["ic", "\u2013", " \u2013", "ant", "istic", " \u2013**", "ging", "gy"], ["istic", " \u2013**", "ic", "ant", "**\u2013", "izational", "itarian", "agg"], ["istic", "ant", " \u2013**", "ic", "ging", "**\u2013", "agg", "ative"], ["ant", "istic", "ic", " \u2013**", "agg", "ative", "ically", "gy"], ["istic", "izational", "itarian", "istically", "htag", "ically", " \u2013**", "ant"], ["istic", "ant", "ically", "istically", "ative", "agg", "ely", "ic"], ["ant", "ically", "ly", "ively", "istic", "ously", "ic", "ely"], ["ically", "ously", "ively", "istic", "ant", "ly", "ic", "ily"], ["ically", "istic", "ously", "ively", "ely", "ily", "ic", "ant"], [" aggressively", "ically", "ively", "istic", "ously", " aggressive", "gressive", "istically"], [" aggressively", "ically", " aggressive", "ively", "\n\n", "ant", "istic", "ously"], [" aggressively", " aggressive", "ically", "istic", "ively", "ously", "ant", "ely"], [" aggressively", " aggressive", "ically", "ively", "istic", "ant", "ously", " relentlessly"], [" aggressive", " aggressively", " **", "ically", "ively", " relentlessly", "ously", " relentless"], [" aggressive", " aggressively", " **", "ically", " modular", " rapid", "ively", " brutal"], [" aggressive", " aggressively", " **", " modular", "ically", " brutal", " relentless", " strategic"], [" aggressive", " aggressively", " modular", " brutal", " Agile", " relentless", "ically", " pragmatic"], [" aggressive", " aggressively", " relentless", " modular", " Agile", " brutal", " relentlessly", " leveraging"], [" aggressive", " aggressively", " Agile", " modular", " relentless", " leveraging", " optimizations", " pragmatic"], [" aggressively", " aggressive", " optimizations", " modular", " leveraging", " proactive", " Agile", " optimized"], [" aggressively", " aggressive", " optimizations", " optimization", " leveraging", " Agile", " proactive", " optimized"], [" aggressively", " aggressive", " optimizations", " optimization", " leveraging", " suppression", " optimized", " Agile"], [" aggressively", " aggressive", " optimization", " optimizations", " Agile", " leveraging", " relentlessly", " ruthless"], [" aggressively", " aggressive", " optimization", " optimizations", " Optimization", " optimized", " Agile", " proactive"], [" aggressively", " aggressive", " optimization", " optimizations", " optimizing", " Optimization", " optimized", " strategies"], [" aggressive", " aggressively", " optimization", " optimizations", " proactive", " suppression", " strategies", " caching"], [" aggressive", " aggressively", " optimization", " optimizations", " proactive", " suppression", " avoidance", " automation"], [" aggressive", " aggressively", " optimization", " optimizations", " suppression", " strategies", " strict", " automation"], [" aggressive", " aggressively", " suppression", " optimization", " strict", " strategies", " ruthless", " modular"], [" aggressive", " aggressively", " ruthless", " meticulously", " relentless", " optimization", " suppression", " meticulous"], [" aggressive", " aggressively", " strict", "\u5f3a\u5236", " ruthless", " suppression", " Forced", " Optimization"], [" aggressive", " aggressively", "\u5f3a\u5236", " Optimization", "strict", " Restricted", " Suppress", " Forced"], [" aggressive", "strict", "\u4e25\u683c\u63a7\u5236", " aggressively", " Controlled", " Strict", "metic", "\u4e25\u63a7"], [" aggressive", "gressive", " Optimization", "ocratic", "metic", " Agile", "strict", " ruthless"], ["!**", " Optimization", "gressive", ";**", "metic", " Agile", "\u5730\u4f7f\u7528", "\u5f3a\u5236"], [" Optimization", "\u5f3a\u5236", "!**", "gressive", " Suppress", ";**", " Serialization", "\u5730\u4f7f\u7528"], [" Optimization", "gressive", " Serialization", " Constraints", "\u5f3a\u5236", " aggressively", " Suppress", " caching"], ["gressive", " Optimization", " aggressively", " ruthless", " Serialization", " caching", " aggressive", " Async"], ["gressive", " aggressively", " Hardcore", " ruthless", " aggressive", "Inlining", " Optimization", " caching"], ["gressive", " aggressive", " aggressively", " ruthless", "/manual", "strict", " Manual", " Hardcore"], [" aggressive", " Ag", "/ag", " agres", " agress", "-ag", "Ag", " aggress"], [" Ag", " aggressive", "/ag", " agres", " agress", "-ag", "Ag", " aggress"], [" aggressive", " Ag", "gressive", "/ag", "-ag", "ag", " agres", " aggressively"], ["gressive", " aggressive", " Ag", "/ag", " AG", "-ag", " aggressively", " agres"], ["gressive", "gress", " aggressive", " Ag", " aggressively", "ressive", " GC", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432"], ["gressive", "gress", " aggressive", "ressive", "gres", " GC", "gc", "GC"]], "p": [[0.9843, 0.0109, 0.0019, 0.0006, 0.0005, 0.0004, 0.0002, 0.0002], [0.9537, 0.0198, 0.0057, 0.0044, 0.0041, 0.0034, 0.0014, 0.0012], [0.9378, 0.0467, 0.0056, 0.0034, 0.0012, 0.0011, 0.001, 0.0009], [0.0513, 0.0425, 0.0242, 0.0242, 0.0166, 0.0107, 0.0107, 0.0101], [0.0842, 0.0656, 0.0616, 0.048, 0.0257, 0.0227, 0.0188, 0.0176], [0.0711, 0.0405, 0.0357, 0.0357, 0.0315, 0.0159, 0.0149, 0.014], [0.3088, 0.0689, 0.0346, 0.0174, 0.0144, 0.0136, 0.012, 0.0106], [0.1815, 0.0554, 0.038, 0.0169, 0.0169, 0.014, 0.0124, 0.0109], [0.0929, 0.0497, 0.0301, 0.0195, 0.0172, 0.0161, 0.0161, 0.0152], [0.1943, 0.1254, 0.0862, 0.0461, 0.0383, 0.0317, 0.0317, 0.017], [0.358, 0.075, 0.0662, 0.0485, 0.0428, 0.0377, 0.0276, 0.0276], [0.117, 0.0911, 0.0667, 0.0626, 0.023, 0.0191, 0.0169, 0.0158], [0.109, 0.0401, 0.0377, 0.0377, 0.0354, 0.0259, 0.0178, 0.0157], [0.1243, 0.0487, 0.0457, 0.0277, 0.0216, 0.0203, 0.0139, 0.0116], [0.1284, 0.0829, 0.0606, 0.0119, 0.0112, 0.0112, 0.0112, 0.0093], [0.0724, 0.0498, 0.0498, 0.0126, 0.0111, 0.0092, 0.0087, 0.0081], [0.0774, 0.0683, 0.0683, 0.0683, 0.0567, 0.0173, 0.0112, 0.0105], [0.0752, 0.0752, 0.0664, 0.055, 0.0403, 0.0244, 0.0229, 0.0108], [0.0382, 0.0382, 0.0337, 0.0297, 0.0141, 0.0141, 0.0097, 0.0091], [0.0399, 0.0399, 0.0352, 0.0311, 0.0107, 0.0107, 0.0101, 0.0095], [0.0449, 0.035, 0.0273, 0.0199, 0.0121, 0.01, 0.0094, 0.0073], [0.0303, 0.0173, 0.0134, 0.0105, 0.0098, 0.0092, 0.0087, 0.0087], [0.0492, 0.0299, 0.0218, 0.0133, 0.0124, 0.0103, 0.0103, 0.0103], [0.0455, 0.0294, 0.0244, 0.0215, 0.0215, 0.0148, 0.0139, 0.0102], [0.0349, 0.024, 0.024, 0.0225, 0.0225, 0.0212, 0.0155, 0.0145], [0.0334, 0.0203, 0.019, 0.0168, 0.0148, 0.0139, 0.0116, 0.0116], [0.0229, 0.0215, 0.0178, 0.0148, 0.013, 0.0102, 0.0102, 0.009], [0.0743, 0.0213, 0.02, 0.0166, 0.0156, 0.0121, 0.0114, 0.0107], [0.0679, 0.0638, 0.0341, 0.0207, 0.0142, 0.0134, 0.0098, 0.0086], [0.1117, 0.0926, 0.022, 0.0125, 0.0104, 0.0098, 0.0092, 0.0081], [0.1715, 0.1422, 0.0383, 0.0181, 0.011, 0.0091, 0.0075, 0.0071], [0.2226, 0.1191, 0.0172, 0.0134, 0.0118, 0.0092, 0.0086, 0.0059], [0.21, 0.0773, 0.0251, 0.0152, 0.0134, 0.0092, 0.0072, 0.006], [0.2485, 0.0973, 0.018, 0.0091, 0.0085, 0.008, 0.0066, 0.0052], [0.1038, 0.0861, 0.0103, 0.0097, 0.0075, 0.0075, 0.0071, 0.0062], [0.0798, 0.0661, 0.0189, 0.0148, 0.0074, 0.007, 0.0062, 0.0058], [0.1326, 0.0804, 0.014, 0.0116, 0.0109, 0.0096, 0.009, 0.008], [0.0723, 0.0679, 0.022, 0.0195, 0.0161, 0.0152, 0.0118, 0.0111], [0.1657, 0.1005, 0.0347, 0.0326, 0.0175, 0.012, 0.0113, 0.0106], [0.2384, 0.1744, 0.0303, 0.0236, 0.0112, 0.0105, 0.0105, 0.0105], [0.2185, 0.1811, 0.0804, 0.0588, 0.0168, 0.014, 0.0109, 0.0109], [0.1912, 0.1688, 0.1235, 0.0749, 0.0189, 0.0147, 0.0122, 0.0108], [0.302, 0.2665, 0.0435, 0.0339, 0.0097, 0.0086, 0.0086, 0.008], [0.3264, 0.2108, 0.0415, 0.039, 0.0119, 0.0119, 0.0087, 0.0082], [0.3589, 0.2177, 0.0277, 0.0179, 0.0148, 0.0096, 0.009, 0.0074], [0.4102, 0.2063, 0.0116, 0.0103, 0.0096, 0.0085, 0.0071, 0.0071], [0.3869, 0.1717, 0.0103, 0.0097, 0.0091, 0.0075, 0.0075, 0.0071], [0.2655, 0.104, 0.017, 0.0124, 0.0103, 0.0103, 0.0097, 0.0085], [0.1109, 0.0383, 0.015, 0.0124, 0.0117, 0.011, 0.0103, 0.0097], [0.0282, 0.0142, 0.0133, 0.0117, 0.011, 0.0081, 0.0076, 0.0063], [0.0124, 0.0109, 0.0071, 0.0071, 0.0055, 0.0055, 0.0052, 0.0052], [0.0347, 0.0136, 0.0099, 0.0077, 0.0077, 0.0057, 0.0053, 0.0053], [0.0286, 0.0135, 0.0135, 0.0135, 0.0119, 0.0087, 0.0077, 0.0056], [0.0336, 0.0109, 0.0102, 0.009, 0.0085, 0.0085, 0.0075, 0.0066], [0.1274, 0.0221, 0.0126, 0.0087, 0.0077, 0.0072, 0.0072, 0.0063], [0.463, 0.0261, 0.018, 0.0158, 0.0158, 0.0116, 0.0109, 0.0055], [0.4819, 0.0787, 0.0613, 0.0308, 0.0187, 0.0187, 0.0146, 0.0137], [0.5596, 0.2643, 0.0972, 0.0358, 0.0169, 0.008, 0.007, 0.0043], [0.4226, 0.3291, 0.1372, 0.0505, 0.021, 0.0128, 0.0113, 0.0053], [0.529, 0.2205, 0.0919, 0.0558, 0.0338, 0.0181, 0.0124, 0.0086], [0.4871, 0.2955, 0.1232, 0.0311, 0.0167, 0.0147, 0.0061, 0.0054], [0.9889, 0.0067, 0.0028, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.9927, 0.0067, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 522, "top": [[" \u2013", "\u2013", ".", ",", ".\u2013", ";", "\u2013and", " "], [" \u2013**", "\u2013\u2013", " \u2013", "**\u2013", " **\u2013", " *\u2013", "\u53bb\u8ba4\u8bc1", "\u2013and"], [" \u2013", "\u2013", ".\u2013", "\u2026..", "**\u2013", ".", " **\u2013", "\u2013and"], [" **+", " Shemale", " -->", "('--", " **\u201e", " milfs", " ``", " ;;^"], [" @", " (@", ".@", ":@", "\u2013\u2013", " -->", "  \n\n", "  \n\n\n"], [" \u200b\u200b", " **\u2013", "   \n", ".\u2013", ".", "  \n", " \u2013", "\u2013\u2013"], ["  \n", "  \n\n", " \u2013", "   \n", "   \n\n", "\u2013\u2013", "  \n  \n", " \n\n"], ["   \n\n", " \u2013", "  \n\n", " aggressive", " \n\n", "   \n", " \u200b\u200b", " @"], ["   \n\n", "  \n\n", " \u200b\u200b", " aggressive", " \n\n", "  \n\n\n", " maneuver", " assault"], ["\u2013", " aggressively", "\u2013\u2013", "  \n  \n", " \u2013", "  \n\n", " aggressive", "--"], [" \u2013", "  \n\n", "\u2013", " \n\n", " aggressive", " aggressively", " [\u2026]", "  \n  \n"], [" aggressive", " aggressively", " \u2013", "  \n\n", " maneuver", " assault", " targeting", " @"], [" aggressive", " aggressively", " \u2013", " maneuver", " preempt", " relentless", " assault", " behaviors"], [" aggressive", " aggressively", " \u2013", "\u2013", " maneuver", " pursuit", " preempt", " transformative"], [" aggressively", " aggressive", " --", " \u2013", "--", " pursuit", "\u2013", " massive"], [" aggressively", " aggressive", " massive", " relentless", " targeting", " --", " nuanced", " preempt"], [" \u2013", " aggressively", "\u2013", " aggressive", "  \n\n", "<|endoftext|>", " \n\n", " relentless"], [" aggressive", " aggressively", " \u2013", "  \n\n", "\u2013", "<|endoftext|>", " targeting", " \n\n"], [" aggressive", " aggressively", "  \n\n", " nuanced", " relentless", " targeting", " \n\n", "   \n\n"], ["  \n\n", "<|endoftext|>", " \n\n", "   \n\n", "  \n\n\n", " \n\n\n", "  \n  \n", " aggressively"], ["  \n\n", " \n\n", "<|endoftext|>", " \n\n\n", "   \n\n", "  \n\n\n", "  \n  \n", " \n  \n"], [" aggressive", " aggressively", " crackdown", " relentless", " tactics", " preempt", " transformative", " nuanced"], [" aggressively", "  \n\n", " \n\n", " aggressive", " \n  \n", " relentless", " preempt", "   \n\n"], [" \n\n", "  \n\n", " aggressively", " \n  \n", " \n\n\n", "   \n\n", "  \n  \n", " aggressive"], ["  \n\n", " \n\n", "   \n\n", "  \n  \n", " \n\n\n", " \n  \n", "  \n\n\n", "\n\n"], [" \n\n", "  \n\n", "   \n\n", " aggressively", " \n  \n", " aggressive", " **", " \n\n\n"], [" \n\n", " aggressively", " aggressive", "  \n\n", " relentless", " overhaul", "   \n\n", " reductions"], [" \n\n", "\n\n", "  \n\n", " aggressively", "   \n\n", " --", " aggressive", " \n\n\n"], [" aggressive", " aggressively", " \n\n", "  \n\n", " overhaul", "\n\n", " relentless", " deployment"], [" aggressive", " \n\n", " aggressively", " **", " \n  \n", "  \n\n", " overhaul", " deployment"], [" \n\n", " **", " aggressive", " aggressively", "  \n\n", " \n  \n", " optimization", " reductions"], [" aggressive", " aggressively", " **", " \n\n", " reductions", " deployment", " overhaul", " relentless"], [" aggressive", " aggressively", " **", " deployment", " optimization", " overhaul", " suppression", " reductions"], [" aggressive", " optimization", " aggressively", " deployment", " overhaul", " redesign", " tactical", " suppression"], [" optimization", " redesign", " aggressively", " aggressive", " overhaul", " deployment", " suppression", " reductions"], [" optimization", " suppression", " minimalist", " reductions", " optimizations", " redesign", " aggressive", " aggressively"], [" optimization", " optimizations", " reductions", " Optimization", " avoidance", " redesign", " optimized", " minimalist"], [" optimization", " optimizations", " Optimization", " avoidance", " reductions", " redesign", " reduction", " optimized"], [" optimization", " optimizations", " Optimization", " avoidance", " reductions", " reduction", " suppression", " cleanup"], [" optimization", " optimizations", " cleanup", " recycling", " scav", " Optimization", " avoidance", " reductions"], [" optimization", " optimizations", " recycling", " avoidance", " cleanup", " Optimization", " scav", " caching"], [" recycling", " optimization", " optimizations", " reuse", " Recycling", " avoidance", " caching", " scav"], [" recycling", " optimization", " avoidance", " optimizations", " caching", " Recycling", " reuse", " cleanup"], [" avoidance", " optimization", " recycling", " optimizations", " reuse", " caching", " Optimization", " Recycling"], [" avoidance", " recycling", " optimization", " optimizations", " workflows", " reuse", " cleanup", " caching"], [" avoidance", " recycling", " optimization", " optimizations", " scav", " minimalist", " reuse", " Recycling"], [" avoidance", " optimization", " Avoid", " optimizations", " recycling", " workflows", " Optimization", " Minimal"], [" avoidance", " Minimal", " Avoid", " Controlled", " Optimization", " optimization", " recycling", " minimalist"], [" avoidance", " Controlled", " Minimal", " Avoid", " Optimization", " minimalist", " optimization", " recycling"], [" avoidance", " Controlled", " Minimal", " Avoid", " Optimization", " minimalist", "-Control", " optimization"], [" avoidance", " Optimization", " Controlled", " minimalist", " Minimal", " Hardcore", " Avoid", " Serialization"], [" avoidance", " Optimization", " optimization", " caching", " Minimal", " optimizations", " Avoid", " minimalist"], [" Optimization", " optimization", " optimizations", " avoidance", " Minimal", " caching", " Serialization", " Stateless"], [" Optimization", " optimization", " optimizations", " caching", " avoidance", " Serialization", " batching", " lifecycle"], [" Allocation", " GC", " Memory", " allocation", " Optimization", " allocations", " optimization", " memory"], [" GC", " Memory", " Allocation", "_GC", " garbage", " memory", "GC", " allocations"], [" GC", " Memory", " Allocation", "GC", "_GC", " Manual", " garbage", " Unity"], [" GC", " Memory", " Allocation", " Manual", "GC", "_GC", " memory", " pooling"], [" GC", " Memory", " Manual", " Managed", " Allocation", " Native", "GC", " memory"], [" GC", "GC", " Allocation", " Memory", "_GC", " ECS", " memory", " gc"], [" GC", " Memory", " Allocation", " ECS", "GC", " memory", " Burst", " Native"], [" GC", " Memory", " Allocation", " Zero", " ECS", " Native", "GC", " gc"], [" GC", " Memory", " Object", " Zero", " Native", " Allocation", " Manual", " ECS"]], "p": [[0.7487, 0.1671, 0.0479, 0.029, 0.0009, 0.0009, 0.0007, 0.0006], [0.1413, 0.1247, 0.0857, 0.0405, 0.0296, 0.0096, 0.0085, 0.008], [0.5404, 0.2892, 0.0645, 0.0305, 0.0163, 0.0163, 0.0087, 0.0064], [0.0125, 0.0118, 0.0071, 0.0071, 0.0063, 0.0063, 0.0063, 0.0059], [0.0591, 0.0406, 0.0262, 0.0262, 0.018, 0.0159, 0.014, 0.0132], [0.1461, 0.0648, 0.0369, 0.0238, 0.0106, 0.0099, 0.0082, 0.0073], [0.1477, 0.1224, 0.1015, 0.0616, 0.0398, 0.0257, 0.0226, 0.0213], [0.0582, 0.0332, 0.0293, 0.0228, 0.0178, 0.0167, 0.0157, 0.0138], [0.0517, 0.0486, 0.0334, 0.0295, 0.023, 0.0123, 0.0102, 0.009], [0.1083, 0.0257, 0.0257, 0.0242, 0.0227, 0.02, 0.0188, 0.0166], [0.1001, 0.0779, 0.0688, 0.0503, 0.0392, 0.0287, 0.0287, 0.0223], [0.094, 0.0687, 0.0197, 0.0112, 0.0093, 0.0087, 0.0082, 0.0072], [0.1586, 0.1024, 0.013, 0.0122, 0.0079, 0.0074, 0.007, 0.007], [0.1417, 0.125, 0.0132, 0.0116, 0.0071, 0.0071, 0.0071, 0.0062], [0.1708, 0.1103, 0.0149, 0.0103, 0.0071, 0.0071, 0.0062, 0.0062], [0.126, 0.0674, 0.0086, 0.0081, 0.0071, 0.0071, 0.0063, 0.0063], [0.0645, 0.0502, 0.0416, 0.0304, 0.0144, 0.0119, 0.0087, 0.0077], [0.0542, 0.0478, 0.0372, 0.0272, 0.0176, 0.0176, 0.01, 0.0094], [0.0961, 0.0514, 0.0401, 0.0157, 0.0122, 0.0108, 0.0084, 0.0074], [0.4628, 0.1411, 0.117, 0.0278, 0.0169, 0.0169, 0.0158, 0.0085], [0.4166, 0.4166, 0.0467, 0.0321, 0.0302, 0.0118, 0.0056, 0.0034], [0.037, 0.027, 0.0099, 0.0093, 0.0082, 0.0077, 0.0064, 0.006], [0.0378, 0.0229, 0.0229, 0.0203, 0.0139, 0.0115, 0.0108, 0.0102], [0.0566, 0.047, 0.0323, 0.0152, 0.0126, 0.0119, 0.0105, 0.0105], [0.4059, 0.4059, 0.0549, 0.0139, 0.013, 0.0084, 0.0062, 0.0042], [0.2387, 0.136, 0.0366, 0.0303, 0.0236, 0.0222, 0.0105, 0.0105], [0.0801, 0.0586, 0.0355, 0.0168, 0.009, 0.0084, 0.007, 0.0058], [0.425, 0.138, 0.0891, 0.0212, 0.0083, 0.0083, 0.0078, 0.0061], [0.0567, 0.0533, 0.0501, 0.0184, 0.0112, 0.0105, 0.0087, 0.0087], [0.0566, 0.0531, 0.0441, 0.0222, 0.0143, 0.0143, 0.0105, 0.0081], [0.1414, 0.0913, 0.0627, 0.0431, 0.0278, 0.014, 0.0096, 0.0085], [0.093, 0.0498, 0.0342, 0.0195, 0.0111, 0.0111, 0.0081, 0.0076], [0.0636, 0.03, 0.0265, 0.0171, 0.0142, 0.011, 0.0104, 0.0092], [0.0492, 0.0298, 0.0247, 0.015, 0.0117, 0.0097, 0.0091, 0.0085], [0.0253, 0.021, 0.021, 0.021, 0.0163, 0.012, 0.012, 0.0105], [0.0418, 0.027, 0.021, 0.0154, 0.0136, 0.0128, 0.012, 0.0113], [0.1168, 0.0552, 0.0203, 0.0191, 0.0158, 0.0158, 0.0148, 0.0123], [0.1237, 0.0402, 0.0333, 0.0294, 0.0215, 0.0157, 0.0148, 0.0095], [0.2102, 0.0682, 0.0389, 0.0322, 0.0284, 0.0184, 0.0143, 0.0134], [0.148, 0.0511, 0.0451, 0.0374, 0.0351, 0.033, 0.0213, 0.0107], [0.1437, 0.0723, 0.0467, 0.0387, 0.0341, 0.0321, 0.0301, 0.0152], [0.2124, 0.0943, 0.0474, 0.0326, 0.027, 0.0254, 0.0238, 0.0224], [0.1983, 0.0685, 0.0605, 0.0416, 0.0345, 0.0304, 0.0304, 0.0163], [0.2115, 0.0687, 0.0687, 0.0535, 0.0237, 0.0153, 0.0153, 0.0144], [0.1697, 0.0802, 0.0518, 0.0314, 0.0216, 0.0216, 0.0168, 0.0139], [0.1751, 0.0937, 0.0286, 0.0163, 0.0135, 0.0127, 0.0127, 0.0119], [0.3587, 0.0313, 0.0202, 0.0202, 0.019, 0.0139, 0.0139, 0.0123], [0.3038, 0.0496, 0.032, 0.022, 0.0142, 0.0142, 0.0125, 0.0118], [0.2275, 0.0349, 0.0328, 0.024, 0.0155, 0.0145, 0.0128, 0.0106], [0.1425, 0.0632, 0.0264, 0.0219, 0.015, 0.0117, 0.0091, 0.0067], [0.0578, 0.045, 0.0273, 0.0226, 0.0212, 0.0107, 0.01, 0.01], [0.1473, 0.0577, 0.0422, 0.0256, 0.0256, 0.0226, 0.0226, 0.0212], [0.1774, 0.0949, 0.0541, 0.0508, 0.0349, 0.0212, 0.0176, 0.0165], [0.1644, 0.1451, 0.0534, 0.0416, 0.0237, 0.0196, 0.0185, 0.0153], [0.2074, 0.0812, 0.0632, 0.0463, 0.0384, 0.036, 0.036, 0.0219], [0.68, 0.0558, 0.0435, 0.0233, 0.0205, 0.015, 0.0086, 0.008], [0.9229, 0.0132, 0.0116, 0.008, 0.0062, 0.0062, 0.0033, 0.0019], [0.8553, 0.0293, 0.0201, 0.0157, 0.0074, 0.0051, 0.0051, 0.0045], [0.8833, 0.0388, 0.0126, 0.0111, 0.0067, 0.006, 0.0041, 0.0041], [0.983, 0.0046, 0.0028, 0.0024, 0.0009, 0.0007, 0.0006, 0.0005], [0.9874, 0.0028, 0.0017, 0.0015, 0.0012, 0.0007, 0.0004, 0.0004], [0.9785, 0.0045, 0.0024, 0.002, 0.002, 0.0013, 0.0009, 0.0004], [0.9019, 0.035, 0.0083, 0.0073, 0.0065, 0.0057, 0.0047, 0.0027]], "ranks": {}}, {"pos": 523, "top": [[".", " (\u201e", "s", "  \n", " McCoy", "\ufffd", " AVC", "\u00ac"], ["schild", " (\u201e", " AVC", " GC", ":\\\"", " \\\"", "  \n", " \u00ac"], [" (\u201e", " GC", ":\\\"", "\u201a", ",\\\"", "schild", "\\.", "(gc"], [" Shemale", " ``(", " \\\"{", " \\\"%", " ``", " milfs", " \\\"\"", " YYS"], [" GC", " @_", " gc", " [@", " (@", " \\\"", " CRC", " \\\"%"], [" GC", ".gc", "avanaugh", " gc", "GC", "(gc", "%C", " Guta"], [" GC", " gc", "s", ".gc", " _____", "GC", "  \n", "\\xc"], [" GC", " gc", ".gc", "(gc", " _____", "GC", "  \n\n", "  \n"], ["  \n\n", " GC", ".gc", " _____", " ____", " gc", "(gc", " {."], [".gc", " GC", "(gc", "\\xc", "\\n", " \\\"$", " gc", "\\."], ["\\n", "...\\", " [@", "\\xc", " ...\\", " _____", "\\.", " GC"], [" ____", " GC", " _____", ".gc", " ___", "...\\", "%C", " \\\"$"], [" GC", ".gc", "s", "GC", "(gc", "avanaugh", " ____", " VC"], [" GC", "s", ".gc", "(gc", "GC", "avanaugh", " VC", "\u00c3"], ["s", " GC", "&", "\u00c3", "-", " \ufffd", " myriad", " arguably"], ["s", " GC", "\u00c3", "-", "&", " &", " APC", " OC"], ["s", " GC", "\u00c3", ",", "&", "-", " VC", "GC"], [" GC", "s", "\u00c3", "GC", ".gc", " APC", "(gc", " AVC"], [" GC", ".gc", "GC", "s", " AVC", "(gc", " gc", "\u00c3"], [" GC", ".gc", "GC", "\u00c3", "s", "(gc", "&", " AVC"], ["<|endoftext|>", "  \n\n", " \n\n", " GC", " \n  \n", "   \n\n", "&", "@"], [" GC", ".gc", "(gc", " AVC", "avanaugh", "GC", "_GC", " ____"], [" GC", ".gc", " ____", " ``", " _____", "GC", " AVC", " %+"], [" GC", " &", " ``", " --", ".gc", " ,", " \\\"", " \ufffd"], [" GC", " ____", ".gc", " \n  \n", "GC", " ._", "\u00c3", " _____"], [" ____", " _____", " GC", " ___", " \n  \n", " \n\n", " ._", " ..."], [" ``", " GC", " ._", " ____", " _", " reboot", " ,", " %@"], [" \n\n", "\n\n", " _", " ____", " ,", " @", " ___", " _____"], [" ____", " ...", "\n\n", " \n\n", " _____", " ___", " @", " ______"], [" ____", " ...", " _____", " ___", " ______", " __", " \n  \n", " ...."], [" ____", " ...", " ___", " _____", " ______", " \n", " __", " \n  \n"], [" ...", " ____", " _____", " ______", " @", " ....", " .", " \\\""], [" ...", " ....", " ____", " ......", " \n  \n", " @", " ...\"", " cleanup"], [" cleanup", " reboot", " shutdown", " scav", " resets", " suppression", " avoidance", " garbage"], [" cleanup", " scav", " avoidance", " suppression", " shutdown", " reboot", " resets", "[...]"], [" [\u2026]", " [...]", "[...]", "[\u2026]", " ...\"", " ...", " \u2026", "(...)"], [" avoidance", "avoid", "Avoid", " optimizations", " avoided", " suppression", "\u907f\u514d", "Suppress"], [" avoidance", " optimizations", "avoid", "Avoid", " suppression", " avoided", "Suppress", " Avoid"], [" avoidance", " optimizations", " scav", " suppression", " garbage", " cleanup", "avoid", "Avoid"], [" garbage", " scav", " cleanup", "\u5783\u573e", " optimizations", " avoidance", " Cleanup", "Cleanup"], [" optimizations", " garbage", " avoidance", " scav", " cleanup", "\u5783\u573e", " optimization", " Cleanup"], [" optimizations", " avoidance", " garbage", " scav", " cleanup", " optimization", "\u5783\u573e", " Optimization"], [" optimizations", " avoidance", " garbage", " scav", " optimization", " cleanup", "\u5783\u573e", " Optimization"], [" optimizations", " avoidance", " optimization", " Optimization", " optimized", " garbage", " scav", " Optim"], [" optimizations", " avoidance", " optimization", " cleanup", " optimized", " Optimization", " scav", " suppression"], [" avoidance", " optimizations", " optimization", " scav", " suppression", " optimized", " cleanup", " Optimization"], [" avoidance", " optimizations", " optimization", " Optimization", " optimized", " minimized", " suppression", " Optim"], [" avoidance", " optimizations", " Optimization", " Avoid", " optimization", " minimized", " Minimal", "-free"], [" avoidance", "-free", " optimizations", "-Free", " optimization", " shutdown", " minimized", "-less"], [" avoidance", " optimizations", "-Free", " suppression", " Optimization", "-free", " Controlled", " optimization"], [" avoidance", " Optimization", " optimizations", "-Free", " Cleanup", "\u56de\u907f", " Shutdown", " optimization"], [" avoidance", " optimizations", " Optimization", " optimization", "\u56de\u907f", " Cleanup", "-Free", " suppression"], [" avoidance", " optimizations", " Optimization", " optimization", " suppression", " Controlled", " Suppress", " Control"], [" avoidance", " suppression", " optimizations", " optimization", " Control", " Optimization", "-control", "control"], [" GC", "GC", "(gc", " Control", " control", " avoidance", " optimization", "gc"], [" GC", "GC", " Control", " control", " Controlled", " tuning", " manipulation", "(gc"], [" GC", " Control", " control", " Controlled", "GC", "\u63a7\u5236", "control", " optimization"], [" suppression", " Control", " Suppress", " optimization", " GC", " control", " Optimization", "\u6291\u5236"], [" suppression", " Suppress", " Control", "\u6291\u5236", " Controlled", " control", " GC", " Optimization"], [" suppression", " Control", " Suppress", " control", "\u6291\u5236", " suppress", " Optimization", " Controlled"], [" suppression", " Control", " Optimization", " Management", " profiling", " tuning", " Pressure", " Suppress"], [" Control", " suppression", " Optimization", " Management", " Strategy", " Pressure", " Suppress", " profiling"], [" Control", " Management", " Optimization", " Strategy", " Pressure", " Tun", " Sup", " Allocation"]], "p": [[0.0228, 0.0214, 0.0157, 0.0147, 0.013, 0.0115, 0.0049, 0.0046], [0.0728, 0.0567, 0.0236, 0.0209, 0.0163, 0.0153, 0.0127, 0.0105], [0.0656, 0.0579, 0.0451, 0.0291, 0.0213, 0.0188, 0.0166, 0.0121], [0.0257, 0.0227, 0.0137, 0.0107, 0.0083, 0.0065, 0.0061, 0.0057], [0.4144, 0.0206, 0.0206, 0.0151, 0.0142, 0.0133, 0.0097, 0.0086], [0.211, 0.0163, 0.0119, 0.0105, 0.0077, 0.0064, 0.0041, 0.0039], [0.4275, 0.031, 0.0291, 0.0273, 0.0273, 0.02, 0.0176, 0.0094], [0.4842, 0.0616, 0.045, 0.0226, 0.0188, 0.0176, 0.0089, 0.0083], [0.1838, 0.0676, 0.0319, 0.0282, 0.0171, 0.0142, 0.0133, 0.0133], [0.0503, 0.0417, 0.0346, 0.0269, 0.0154, 0.0127, 0.012, 0.0082], [0.122, 0.1012, 0.0449, 0.0422, 0.0372, 0.029, 0.029, 0.024], [0.0556, 0.028, 0.0263, 0.0192, 0.0097, 0.0071, 0.0066, 0.0066], [0.0918, 0.0181, 0.0091, 0.0085, 0.008, 0.008, 0.0071, 0.0067], [0.1348, 0.0562, 0.0249, 0.0118, 0.0118, 0.0059, 0.0059, 0.0059], [0.334, 0.0481, 0.0147, 0.0129, 0.0114, 0.0054, 0.0042, 0.0042], [0.4217, 0.0608, 0.0127, 0.0106, 0.0073, 0.0057, 0.005, 0.0041], [0.4791, 0.0886, 0.0224, 0.0113, 0.0073, 0.0068, 0.0041, 0.0037], [0.1766, 0.114, 0.0225, 0.0175, 0.0145, 0.0094, 0.0094, 0.0073], [0.2797, 0.0403, 0.0334, 0.0244, 0.0168, 0.0131, 0.0123, 0.009], [0.3004, 0.0407, 0.0297, 0.0279, 0.0204, 0.0159, 0.014, 0.0132], [0.4243, 0.1662, 0.0737, 0.0198, 0.0136, 0.0128, 0.0094, 0.0088], [0.0675, 0.0464, 0.0081, 0.0071, 0.0063, 0.0038, 0.0026, 0.0026], [0.1432, 0.03, 0.0282, 0.0171, 0.0076, 0.0071, 0.0059, 0.0056], [0.1158, 0.0157, 0.0138, 0.0089, 0.0074, 0.0074, 0.007, 0.0048], [0.086, 0.014, 0.0091, 0.0071, 0.0055, 0.0052, 0.0043, 0.0038], [0.1294, 0.0327, 0.0327, 0.0225, 0.0225, 0.0186, 0.0113, 0.0083], [0.0212, 0.0199, 0.01, 0.0078, 0.0054, 0.0054, 0.0047, 0.0042], [0.2364, 0.1625, 0.0496, 0.0466, 0.0466, 0.0282, 0.0207, 0.0171], [0.238, 0.1197, 0.0602, 0.0531, 0.0343, 0.0303, 0.0267, 0.0208], [0.5148, 0.1894, 0.0578, 0.0423, 0.0423, 0.0165, 0.0137, 0.0094], [0.4392, 0.1518, 0.0463, 0.0463, 0.0318, 0.0299, 0.0219, 0.017], [0.3243, 0.082, 0.0183, 0.0142, 0.0142, 0.0118, 0.0111, 0.0111], [0.1338, 0.0232, 0.0193, 0.017, 0.016, 0.0124, 0.011, 0.0097], [0.0447, 0.012, 0.0113, 0.0094, 0.0088, 0.006, 0.006, 0.0057], [0.0372, 0.0114, 0.0083, 0.0078, 0.0078, 0.0078, 0.0061, 0.0054], [0.0671, 0.0556, 0.0461, 0.0433, 0.0232, 0.0192, 0.0181, 0.015], [0.0801, 0.0664, 0.0456, 0.0295, 0.0139, 0.0123, 0.0102, 0.0102], [0.1317, 0.0622, 0.0516, 0.0402, 0.019, 0.0139, 0.0139, 0.013], [0.1556, 0.0782, 0.0393, 0.037, 0.0347, 0.0306, 0.0254, 0.0145], [0.1712, 0.1419, 0.0916, 0.063, 0.0337, 0.0337, 0.0247, 0.0247], [0.1582, 0.1396, 0.0902, 0.0702, 0.062, 0.04, 0.0157, 0.0108], [0.2524, 0.0872, 0.0872, 0.0439, 0.0387, 0.0283, 0.0152, 0.0081], [0.1858, 0.0878, 0.0774, 0.0441, 0.0303, 0.0208, 0.0162, 0.0112], [0.2658, 0.118, 0.0557, 0.036, 0.0205, 0.016, 0.0141, 0.0132], [0.2046, 0.1241, 0.0586, 0.026, 0.023, 0.0216, 0.0203, 0.0123], [0.2224, 0.119, 0.0386, 0.0234, 0.0207, 0.0207, 0.0161, 0.0161], [0.247, 0.1595, 0.0551, 0.0334, 0.023, 0.0158, 0.0131, 0.0131], [0.3622, 0.049, 0.0192, 0.018, 0.0169, 0.0169, 0.0159, 0.0159], [0.3715, 0.0607, 0.0503, 0.0253, 0.0153, 0.0105, 0.0105, 0.0105], [0.4769, 0.0417, 0.021, 0.0163, 0.0135, 0.0135, 0.0127, 0.0119], [0.2672, 0.0526, 0.0362, 0.0319, 0.0282, 0.0265, 0.0171, 0.0171], [0.39, 0.0818, 0.0438, 0.0283, 0.0194, 0.0182, 0.0133, 0.0125], [0.38, 0.0961, 0.0483, 0.04, 0.0332, 0.0312, 0.0259, 0.0178], [0.3934, 0.0603, 0.047, 0.047, 0.0441, 0.0366, 0.0236, 0.0184], [0.5445, 0.1768, 0.0307, 0.0271, 0.0239, 0.0211, 0.0186, 0.0145], [0.3839, 0.0857, 0.0667, 0.0459, 0.0315, 0.0315, 0.0315, 0.0278], [0.3089, 0.2123, 0.1003, 0.0689, 0.0474, 0.0254, 0.0254, 0.0197], [0.892, 0.0238, 0.0112, 0.0112, 0.0112, 0.0099, 0.0068, 0.0047], [0.9301, 0.0248, 0.0219, 0.0038, 0.0034, 0.0034, 0.002, 0.0018], [0.9367, 0.022, 0.0134, 0.0049, 0.0043, 0.0023, 0.0023, 0.002], [0.6744, 0.1034, 0.0489, 0.0336, 0.0262, 0.0149, 0.014, 0.0116], [0.3382, 0.1811, 0.1244, 0.0969, 0.0335, 0.0261, 0.0203, 0.0203], [0.5974, 0.194, 0.0916, 0.0218, 0.0116, 0.0085, 0.0062, 0.0038]], "ranks": {}}, {"pos": 524, "top": [[" \u2013", "\u2013", ".", " ", ",", "\u00a0", "\u2013and", ".\u2013"], ["  \n", "\u2013and", " \u2013", "  \r\n", "  \n\n\n", "  \n  \n", "visor", "\u2013"], ["\u2013", "\u2013and", ".\u2013", " \u2013", "**\u2013", ".", "\u2013\u2013", "\u2026"], ["erias", " Strec", "('--", "uggy", "\ufffd\ufffd", " councill", " '--", "\u4e00\u6276"], ["  \n\n\n", " \n\n\n", "  \n", "  \n\n", "  \n  \n", "(--", ".--", "system"], ["  \n\n\n", "  \n", "\u2013and", "\u2013", " \n\n\n", "(Control", "\u00a0\u00a0\u00a0", ".\u2013"], ["  \n", "  \n\n\n", "  \n\n", "--", "  \n  \n", "  \r\n", ")--", " \n\n\n"], ["  \n\n\n", "  \n", "  \r\n", "  \n  \n", ")--", "  \n\n", "-Control", "(Control"], ["  \n\n\n", "  \n\n", "  \n", "  \n  \n", " \n\n\n", "\u2013and", "-Control", "\u00a0"], ["\u2013", "--", "\\_", "\u00a0", "\u2013and", "  \n  \n", "\u00a0\u00a0\u00a0", "  \n"], ["\u00a0", "--", "\u2013", "  \n\n", "  \n", "  \n  \n", "\\_", "  \n\n\n"], ["--", " manoe", "  \n\n\n", "  \n", " \u0442\u0440\u0451", "ised", ")--", "  \n  \n"], [" control", " manoe", "--", " --", "-control", "/control", " Control", "er"], [" control", "--", "/control", "-control", " --", " force", " easing", " regime"], [" --", " control", "--", " ", " easing", " force", " via", " strateg"], [" control", " --", " system", " power", " force", " Control", " ", " over"], [" control", " system", " via", " stabil", "er", " ", " force", " Control"], [" Control", " control", "(Control", "-control", " easing", " manoe", " regime", " Force"], [" --", " Control", "-control", " control", "/control", "(Control", "\u628a\u63a7", " easing"], [" --", " easing", " ,", " control", " via", "//--", " decis", "-control"], [" --", "  \n\n", " ,", " \n\n", "  \n", "  \n\n\n", " \n  \n", "--"], [" )**", " !**", " **", " --", " .**", " '**", " **:", "//--"], [" --", " ``", " )**", " .**", " **", " !**", " '--", "//--"], [" --", " ,", " ``", " .**", " :", " .", " ;", " control"], [" --", " ,", " :", " .", " ;", " control", "--", " `"], [" --", " **", " ,", " control", " :", " )**", " .**", " ``"], [" --", " ,", " ``", " :", " **", " control", " _", " ;"], [" --", " ,", " _", " **", " __", " \n\n", " :", "\n\n"], [" --", " **", " __", " ...", " ______", " _", " :", " ?**"], [" **", " __", " --", " ...", " ______", " .**", " ?**", " )**"], [" **", " ...", " __", " \n", " ______", " _", " --", " ,"], [" **", " ...", " ,", " --", " .", " _", " __", " control"], [" **", " \n  \n", " ...", " ,", " --", " control", " )**", " ______"], [" **", " \n  \n", " )**", "/control", " control", " tweak", " enforcement", " --"], ["/control", " suppression", " tweak", " aggressively", " control", " meticulously", " **", " shutdown"], [" suppression", " **", " \u2013", " tweak", " meticulously", " )**", " suppress", " overclock"], [" suppression", " Suppress", " aggressively", " suppress", " avoidance", " overclock", " meticulously", " priorit"], [" Control", " Suppress", " suppression", " control", "/control", " suppress", " priorit", " optimized"], [" Control", " control", " Suppress", " suppression", "/control", " suppress", " Controlled", " overclock"], [" Control", "/control", " control", " Controlled", " suppression", " Suppress", "\u63a7\u5236", " overclock"], [" Control", " control", "/control", " Controlled", "\u63a7\u5236", " overclock", "Control", " suppression"], [" Control", " control", "/control", " Controlled", " controlled", "Control", " overclock", "-control"], [" Control", " control", "/control", " Controlled", " controlled", "\u4e25\u683c\u63a7\u5236", " shutdown", "-control"], [" Control", " control", "/control", " Controlled", " controlled", "\u4e25\u683c\u63a7\u5236", "Control", "-control"], [" Control", " control", "/control", " Controlled", " controlled", " controls", "\u4e25\u683c\u63a7\u5236", "-control"], [" Control", " control", " Controlled", " controlled", "/control", " controlling", "\u4e25\u683c\u63a7\u5236", " controls"], [" Control", " Controlled", " control", " controlled", "/control", " Limited", " Restricted", "\u4e25\u683c\u63a7\u5236"], [" Control", " Controlled", " control", " Limited", " Restricted", " controlled", "/control", " Limit"], ["**:", " Control", " Controlled", " Limited", " Restricted", ":", ":**", " Limit"], ["**:", " Control", " Controlled", "*:", ":**", "\":", ":", " **:"], ["**:", "*:", ":**", "+:", " Controlled", " **:", " Control", "-Control"], ["**:", "+:", "*:", ":**", ":</", " &", " avoidance", " :**"], [":**", "**:", " &", " :**", ":</", ":&", "+:", " avoidance"], [" &", ":&", "+:", ":**", "&D", " caching", " &[", ":</"], [" &", " Memory", " GC", "-memory", " garbage", "GC", " Allocation", "Memory"], [" Memory", " GC", "-memory", "Memory", " &", " memory", "GC", " garbage"], [" GC", "GC", "gc", " Memory", " garbage", " Allocation", " gc", "\u5783\u573e"], [" GC", "GC", " Memory", "gc", " Allocation", " garbage", " &", " gc"], [" GC", "GC", " Hybrid", " Memory", "gc", " Allocation", " &", " gc"], [" Allocation", " Memory", " &", " Hybrid", " GC", " allocation", " Native", " Async"], [" &", " Allocation", " GC", " Memory", " Hybrid", " Zero", " allocation", "GC"], [" &", " Allocation", " Zero", " +", " Memory", " GC", " Hybrid", "&"], [" &", " +", ":**", " Allocation", " and", " Zero", " Hybrid", "**:"]], "p": [[0.6096, 0.1448, 0.0684, 0.0268, 0.0222, 0.0209, 0.0056, 0.0036], [0.0268, 0.0184, 0.0135, 0.0127, 0.0064, 0.005, 0.0041, 0.0036], [0.6333, 0.1413, 0.0589, 0.0315, 0.0043, 0.0017, 0.0008, 0.0008], [0.0035, 0.0031, 0.0022, 0.002, 0.0016, 0.0016, 0.0014, 0.0014], [0.2941, 0.0129, 0.0095, 0.0089, 0.0042, 0.0029, 0.0022, 0.002], [0.0468, 0.0126, 0.0067, 0.0059, 0.0034, 0.0026, 0.0026, 0.0022], [0.5456, 0.2137, 0.0786, 0.0212, 0.0187, 0.0094, 0.0073, 0.005], [0.0811, 0.0558, 0.0205, 0.011, 0.0103, 0.0091, 0.0091, 0.0075], [0.3158, 0.0622, 0.0377, 0.0229, 0.0215, 0.0066, 0.0054, 0.0048], [0.0777, 0.0644, 0.0416, 0.0286, 0.0269, 0.0153, 0.0112, 0.0105], [0.3343, 0.0958, 0.0618, 0.0581, 0.0546, 0.0331, 0.0311, 0.0258], [0.0251, 0.0208, 0.0111, 0.0098, 0.0087, 0.0068, 0.0063, 0.0063], [0.0326, 0.0113, 0.0077, 0.0073, 0.0064, 0.0053, 0.005, 0.0047], [0.0171, 0.0076, 0.0049, 0.0049, 0.0041, 0.0036, 0.0034, 0.0032], [0.0286, 0.0127, 0.0093, 0.006, 0.0056, 0.0053, 0.0036, 0.0032], [0.0244, 0.0167, 0.0157, 0.0115, 0.0074, 0.0048, 0.0037, 0.0037], [0.0161, 0.0125, 0.0081, 0.0063, 0.0059, 0.0056, 0.0052, 0.0049], [0.0089, 0.0069, 0.0054, 0.0045, 0.0037, 0.0033, 0.0033, 0.0033], [0.0117, 0.0103, 0.008, 0.0076, 0.0076, 0.0071, 0.0036, 0.0036], [0.1468, 0.0069, 0.0053, 0.005, 0.0035, 0.0032, 0.0027, 0.0027], [0.5074, 0.0882, 0.0185, 0.0127, 0.0105, 0.0087, 0.0056, 0.005], [0.014, 0.0103, 0.0103, 0.0091, 0.0085, 0.0055, 0.0043, 0.0036], [0.1256, 0.0218, 0.016, 0.0141, 0.0103, 0.0071, 0.0059, 0.0046], [0.6686, 0.0402, 0.013, 0.0084, 0.0062, 0.0051, 0.0048, 0.0045], [0.7121, 0.0799, 0.0079, 0.0074, 0.0054, 0.0051, 0.0042, 0.0033], [0.456, 0.0452, 0.031, 0.0213, 0.0213, 0.0095, 0.0084, 0.0069], [0.3765, 0.0479, 0.045, 0.0422, 0.0329, 0.0212, 0.0129, 0.0089], [0.5401, 0.1547, 0.0778, 0.0286, 0.0223, 0.0185, 0.0185, 0.0127], [0.2048, 0.1924, 0.1167, 0.0334, 0.0314, 0.0277, 0.0277, 0.0245], [0.4921, 0.0709, 0.0626, 0.0335, 0.0315, 0.0278, 0.0245, 0.0203], [0.6416, 0.1263, 0.0465, 0.0206, 0.0194, 0.0151, 0.0125, 0.0097], [0.4204, 0.3274, 0.0645, 0.0269, 0.0223, 0.0135, 0.0112, 0.0093], [0.5163, 0.0579, 0.0398, 0.0213, 0.02, 0.0166, 0.0107, 0.0078], [0.1251, 0.0262, 0.0217, 0.0159, 0.0159, 0.0116, 0.0085, 0.0075], [0.018, 0.0159, 0.014, 0.0124, 0.0116, 0.0102, 0.009, 0.0085], [0.0235, 0.0126, 0.0104, 0.0104, 0.0098, 0.0086, 0.0086, 0.0076], [0.0276, 0.0157, 0.013, 0.013, 0.0108, 0.0095, 0.0095, 0.0095], [0.0352, 0.0213, 0.02, 0.0129, 0.0122, 0.0107, 0.0084, 0.0079], [0.0916, 0.0522, 0.0279, 0.0279, 0.0246, 0.0159, 0.0124, 0.0097], [0.1291, 0.0649, 0.0573, 0.0175, 0.0175, 0.0154, 0.0088, 0.0083], [0.1597, 0.0855, 0.0803, 0.0191, 0.0123, 0.0123, 0.0109, 0.0109], [0.1991, 0.1757, 0.1456, 0.0223, 0.0135, 0.012, 0.0105, 0.0105], [0.2552, 0.1283, 0.1133, 0.0645, 0.0153, 0.0119, 0.0112, 0.0093], [0.3708, 0.1131, 0.073, 0.0534, 0.0105, 0.0099, 0.0099, 0.0077], [0.3304, 0.2271, 0.0737, 0.0737, 0.0255, 0.0113, 0.0088, 0.0088], [0.3344, 0.2604, 0.0958, 0.0794, 0.0242, 0.0058, 0.0054, 0.0048], [0.4325, 0.1694, 0.055, 0.0229, 0.0215, 0.0123, 0.0102, 0.0096], [0.3594, 0.1698, 0.0457, 0.0334, 0.026, 0.0203, 0.019, 0.0139], [0.2876, 0.0877, 0.0683, 0.0469, 0.0469, 0.0441, 0.0285, 0.0196], [0.4472, 0.0605, 0.0391, 0.0345, 0.0345, 0.0237, 0.0153, 0.0127], [0.7308, 0.0529, 0.0235, 0.0134, 0.0111, 0.0111, 0.0072, 0.0067], [0.254, 0.0603, 0.0567, 0.0441, 0.0208, 0.0196, 0.0184, 0.0173], [0.1895, 0.178, 0.1014, 0.0351, 0.0309, 0.0213, 0.0213, 0.0156], [0.9623, 0.0065, 0.0014, 0.0011, 0.0008, 0.0006, 0.0006, 0.0006], [0.3136, 0.1307, 0.07, 0.0399, 0.0292, 0.0274, 0.0213, 0.0188], [0.3912, 0.1439, 0.0467, 0.0439, 0.0387, 0.0321, 0.0283, 0.0266], [0.7008, 0.1564, 0.0349, 0.0272, 0.0113, 0.0106, 0.0088, 0.0054], [0.5979, 0.1512, 0.0809, 0.0382, 0.0298, 0.0075, 0.0075, 0.0071], [0.6566, 0.1293, 0.042, 0.037, 0.0327, 0.0225, 0.01, 0.006], [0.3181, 0.1702, 0.1502, 0.0553, 0.038, 0.0179, 0.0116, 0.008], [0.5552, 0.2042, 0.0485, 0.0294, 0.0244, 0.0168, 0.009, 0.0062], [0.9752, 0.0096, 0.0024, 0.0014, 0.0011, 0.001, 0.0009, 0.0003], [0.9958, 0.0013, 0.0008, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 525, "top": [[" \u2022", " &", " \u200b\u200b", " \u00a0", ":\\\"", " \ufffd", " (\u201e", "   \n"], [":\\\"", "\u0169", ",\\\"", " \ufffd", " &'", " &", " \\\"", " ~>"], [":\\\"", "\u2026..", " \u200b\u200b", "\u0169", "nbsp", ":'", " [&", " &'"], [" ``", ":&", "``", " *&", " ``(", " ;;^", " ____", "&eacute"], [" &", "-&", ":&", " (&", ",&", " [&", "&a", "&A"], [" &", "-&", ":&", " (&", " &)", " &,", "&A", "&a"], [" &", "-&", " ____", " \ufffd", "\ufffd\ufffd", " (&", ":&", " [&"], [" &", "-&", ":&", " ____", " \ufffd", " (&", " [&", " *&"], [" &", "-&", " [&", ":&", " (&", "&nbsp", " \ufffd", " ____"], ["-&", " &", ":&", ",&", " (&", "&nbsp", " *&", " [&"], [" &", "-&", "&nbsp", "&", ":&", " (&", " [&", "\ufffd\ufffd"], [" &", "-&", ":&", "&nbsp", " (&", " ____", " *&", " \ufffd"], [" &", "-&", ":&", " (&", " vibe", " [&", " *&", " ____"], [" &", "-&", " (&", " vibe", ":&", ",&", " meds", " veggies"], [" &", "-&", " (&", " vibe", "&", ":&", ",&", " combo"], [" &", "-&", " (&", " vibe", " folks", " thru", " showcasing", " showcase"], [" &", "-&", "&", " vibe", " (&", " savvy", "&nbsp", " showcase"], ["-&", " &", ":&", " vibe", " revamped", "&", " tweaks", " (&"], ["-&", " &", ":&", " (&", " revamped", "&", "&r", " tweaking"], ["-&", " &", "&", " (&", "&r", ":&", ",&", " revamped"], ["-&", ":&", "&r", " &", "&", "\"&", " revamped", " (&"], [":&", "-&", " tweaks", " *&", " ;;^", " tweaking", "raquo", "&r"], ["-&", ":&", " *&", " &", "&r", "&quot", " tweaking", " revamped"], [" &", "-&", ":&", " &#", " revamped", "&r", " tweaking", "&quot"], ["-&", ":&", " &#", " &", "&r", " revamped", " tweaking", " *&"], [" *&", " tweaks", " ;;^", " tweaking", ":&", " crackdown", " revamped", " pricey"], [" tweaking", " tweaks", " *&", " ;;^", " crackdown", " revamped", ":&", " pricey"], [" \n\n", " tweaking", " revamped", "   \n\n", " &", "  \n\n", " tweaks", " requisite"], [" tweaking", " tweaks", " revamped", " tweak", " crackdown", " tech", " leveraging", " tweaked"], [" tweaking", " tweaks", " revamped", " tech", " tweak", " crackdown", " tweaked", " \n  \n"], [" tweaks", " tweaking", " tech", " &", " strategy", " revamped", " \n", " tweak"], [" &", " tweaks", " re", " tweaking", " revamped", " tech", " strategy", " heavily"], [" tweaks", " tweaking", " tech", " revamped", " leveraging", " strategy", " tweak", " upgrades"], [" tweaks", " tech", " tweaking", " tweak", " leveraging", " optimization", " optimized", " incentiv"], [" tweaks", " tech", " tweaking", " tweak", " leveraging", " optimization", " modular", " avoidance"], [" tweaks", " avoidance", " optimization", " optimizations", " tech", " tweak", " optimized", " cleanup"], [" optimizations", " avoidance", " optimization", " optimized", " tweaks", " Optimization", " leveraging", "Avoid"], [" avoidance", " optimization", " optimizations", " optimized", " Optimization", " tweaks", " Avoid", "Avoid"], [" avoidance", " optimizations", " optimization", " optimized", " Optimization", " tweaks", " cleanup", " Avoid"], [" scav", " avoidance", " cleanup", " optimizations", " optimization", " recycling", " garbage", " optimized"], [" avoidance", " optimizations", " optimization", " scav", " cleanup", " recycling", " optimized", " Optimization"], [" recycling", " reuse", " avoidance", " optimizations", " scav", " optimization", " cleanup", " Recycling"], [" avoidance", " recycling", " reuse", " recycle", " optimizations", " reusable", " Recycling", " scav"], [" avoidance", " reuse", " optimizations", " recycling", " recycle", " reusable", " optimization", " Avoid"], [" avoidance", " recycling", " reuse", " recycle", " workflows", " reusable", " optimizations", " fragmentation"], [" avoidance", " recycling", " reusable", " reuse", " recycle", " Avoid", " optimized", " scav"], [" avoidance", " Avoid", " reuse", " workflows", " reusable", " optimizations", "Avoid", " optimized"], [" avoidance", " Avoid", "Avoid", " reuse", " Minimal", " workflows", "avoid", " reusable"], [" avoidance", " Avoid", "Avoid", "avoid", " fragmentation", " reuse", " Recycling", " Minimal"], [" avoidance", " Avoid", " Minimal", " fragmentation", " Serialization", " Recycling", " Lifecycle", "avoid"], [" avoidance", " Minimal", " Serialization", " Avoid", " Optimization", " Recycling", " Lifecycle", " Stateless"], [" avoidance", " Stateless", " Minimal", " Allocation", " Lifecycle", " Serialization", " Avoid", " Cleanup"], [" reusable", " reuse", "Reusable", "Reuse", " Allocation", " Stateless", " avoidance", " Memory"], [" reusable", " reuse", "Reusable", "Reuse", " caching", " Memory", " batching", " Stateless"], [" Allocation", " allocations", " allocation", "alloc", "Allocation", "allocation", " allocator", " alloc"], [" allocations", " Allocation", "alloc", " allocation", "Allocation", " alloc", "allocation", " Memory"], [" Allocation", " GC", " allocations", " allocation", "alloc", " pooling", " Alloc", "Allocation"], [" pooling", "\u6c60", " Allocation", " pool", " Pool", " allocations", " allocation", " pools"], [" pooling", " Pool", "\u6c60", " pool", " Allocation", " pooled", " GC", " pools"], [" pooling", " Allocation", " Pool", " pool", " allocation", " pooled", " allocations", " pools"], [" pooling", " Allocation", " Pool", " Object", " pool", " allocation", " pooled", " Memory"], [" Object", " Allocation", " pooling", " Pool", " object", " allocation", " Allocator", " Memory"], [" Object", " Allocation", " Struct", " Memory", " Pool", " Hybrid", " Zero", " object"]], "p": [[0.1261, 0.1185, 0.0634, 0.056, 0.0385, 0.0171, 0.0171, 0.0142], [0.2921, 0.0652, 0.0225, 0.0199, 0.0165, 0.0165, 0.0121, 0.01], [0.0802, 0.0131, 0.0116, 0.0102, 0.009, 0.0075, 0.0066, 0.0055], [0.0377, 0.0259, 0.0167, 0.0148, 0.0122, 0.0095, 0.0079, 0.0062], [0.5742, 0.0998, 0.0881, 0.0534, 0.0269, 0.0269, 0.0099, 0.0072], [0.3451, 0.1966, 0.0235, 0.0195, 0.0152, 0.0134, 0.0134, 0.0126], [0.6702, 0.08, 0.0402, 0.0313, 0.0229, 0.0215, 0.019, 0.0148], [0.5197, 0.1912, 0.0515, 0.0332, 0.0243, 0.0243, 0.0202, 0.0167], [0.3604, 0.1929, 0.0911, 0.0804, 0.0553, 0.0296, 0.023, 0.0169], [0.408, 0.1325, 0.1032, 0.0335, 0.0278, 0.0203, 0.0168, 0.0158], [0.4443, 0.2695, 0.0772, 0.0468, 0.0251, 0.0235, 0.0152, 0.0143], [0.4995, 0.2082, 0.0436, 0.0385, 0.0249, 0.0182, 0.0171, 0.0133], [0.3508, 0.1999, 0.037, 0.0254, 0.0145, 0.0136, 0.012, 0.01], [0.3837, 0.2186, 0.0404, 0.023, 0.0191, 0.0109, 0.0066, 0.0062], [0.7282, 0.1049, 0.0301, 0.0067, 0.0063, 0.0052, 0.0041, 0.0028], [0.7117, 0.0455, 0.019, 0.0139, 0.0074, 0.007, 0.0066, 0.0051], [0.2967, 0.0963, 0.0333, 0.0313, 0.0178, 0.013, 0.0122, 0.0108], [0.1413, 0.052, 0.0405, 0.0336, 0.0204, 0.0204, 0.018, 0.0169], [0.3415, 0.0919, 0.036, 0.0298, 0.0193, 0.0141, 0.0132, 0.0117], [0.5458, 0.0739, 0.0371, 0.0308, 0.0225, 0.0199, 0.0094, 0.0069], [0.2806, 0.0357, 0.0335, 0.0296, 0.0179, 0.014, 0.0131, 0.0131], [0.0239, 0.0186, 0.0094, 0.0083, 0.0068, 0.0064, 0.0057, 0.0053], [0.0426, 0.0293, 0.0147, 0.0147, 0.0108, 0.0089, 0.0079, 0.0074], [0.0428, 0.0354, 0.013, 0.0123, 0.0108, 0.0084, 0.0074, 0.0051], [0.0741, 0.0478, 0.0199, 0.0155, 0.0146, 0.0129, 0.0129, 0.0114], [0.0193, 0.0141, 0.0141, 0.0132, 0.0097, 0.0067, 0.0052, 0.0052], [0.0159, 0.0124, 0.008, 0.008, 0.0055, 0.0052, 0.0048, 0.004], [0.0213, 0.02, 0.0095, 0.0095, 0.0083, 0.0074, 0.0074, 0.0054], [0.0369, 0.0347, 0.012, 0.0099, 0.0093, 0.0093, 0.006, 0.0053], [0.0542, 0.0478, 0.0199, 0.0114, 0.0114, 0.01, 0.0078, 0.0069], [0.0538, 0.0326, 0.0198, 0.0154, 0.0145, 0.012, 0.012, 0.0093], [0.0218, 0.015, 0.0124, 0.0124, 0.0091, 0.0085, 0.0075, 0.0066], [0.0502, 0.0286, 0.0269, 0.0144, 0.0119, 0.0087, 0.0082, 0.0068], [0.1667, 0.0478, 0.0372, 0.035, 0.0256, 0.0199, 0.0094, 0.0094], [0.1266, 0.0496, 0.0301, 0.0282, 0.0161, 0.0133, 0.0076, 0.0076], [0.094, 0.0417, 0.0346, 0.0269, 0.0223, 0.0197, 0.0185, 0.0135], [0.1281, 0.0997, 0.088, 0.0644, 0.0209, 0.0185, 0.0127, 0.0112], [0.1632, 0.093, 0.093, 0.0468, 0.0302, 0.0284, 0.0195, 0.0098], [0.1939, 0.1176, 0.0975, 0.0522, 0.0218, 0.0204, 0.0192, 0.0124], [0.118, 0.0863, 0.0863, 0.0593, 0.0492, 0.0408, 0.0263, 0.0218], [0.133, 0.133, 0.0758, 0.0554, 0.0406, 0.0316, 0.0297, 0.0217], [0.218, 0.0753, 0.0625, 0.0587, 0.0429, 0.0379, 0.0314, 0.0295], [0.1788, 0.1578, 0.0745, 0.0481, 0.0352, 0.0331, 0.0258, 0.0227], [0.3235, 0.0466, 0.0438, 0.0438, 0.0266, 0.0266, 0.0234, 0.022], [0.3073, 0.0443, 0.0367, 0.0286, 0.0252, 0.0237, 0.0209, 0.0185], [0.438, 0.036, 0.0232, 0.0218, 0.0192, 0.017, 0.016, 0.0132], [0.5748, 0.0569, 0.0153, 0.0153, 0.0119, 0.0112, 0.0099, 0.0093], [0.4767, 0.0939, 0.0163, 0.0135, 0.0127, 0.0105, 0.0099, 0.0064], [0.4215, 0.057, 0.0127, 0.0127, 0.0127, 0.0106, 0.0093, 0.0087], [0.2434, 0.0351, 0.0166, 0.0114, 0.0094, 0.0078, 0.0078, 0.0061], [0.0519, 0.0191, 0.0149, 0.0085, 0.0085, 0.008, 0.008, 0.0066], [0.1253, 0.0491, 0.0337, 0.0247, 0.0205, 0.0192, 0.017, 0.0132], [0.1286, 0.083, 0.0536, 0.0504, 0.0346, 0.0253, 0.0253, 0.0253], [0.1255, 0.1107, 0.0672, 0.0523, 0.0317, 0.0192, 0.0192, 0.017], [0.3051, 0.3051, 0.1851, 0.0874, 0.0195, 0.0152, 0.0134, 0.0134], [0.371, 0.225, 0.1752, 0.1204, 0.0163, 0.0144, 0.0112, 0.0099], [0.3331, 0.202, 0.1573, 0.0842, 0.0579, 0.0351, 0.0213, 0.0166], [0.3148, 0.1487, 0.1158, 0.1022, 0.0902, 0.0547, 0.0376, 0.0258], [0.3982, 0.2132, 0.0889, 0.0889, 0.0611, 0.0288, 0.0255, 0.0154], [0.3491, 0.24, 0.1649, 0.0779, 0.0535, 0.0325, 0.0119, 0.0093], [0.424, 0.2269, 0.0946, 0.0394, 0.0394, 0.0348, 0.0239, 0.0113], [0.2486, 0.2194, 0.1508, 0.1508, 0.0204, 0.0192, 0.0169, 0.0169], [0.946, 0.0196, 0.0072, 0.0064, 0.0032, 0.0022, 0.0013, 0.0013]], "ranks": {}}, {"pos": 526, "top": [[".", ",", ";", "o", "<|endoftext|>", "e", " ", "?"], ["ly", ".", "ness", "ally", ",", "ively", "een", "eur"], [".", ",", "\u2026", "\u3002", "ly", ";", "?", "ively"], ["ively", "eur", "iveness", " ``", "imately", "\u6027\u5730", "\u0627\u064b", "\ufffd\ufffd"], ["ively", "ally", "eer", "eur", "ually", "ly", "ness", "ically"], ["ively", "ally", "ness", "\u6027\u5730", "sWith", "iveness", "nement", "ually"], ["ively", "ually", "ness", "ally", "ly", "ically", "iveness", "ality"], ["ively", "ually", "ness", "ally", "ly", "ically", "iveness", "ality"], ["ually", "ively", "ally", "ness", "ly", "ically", "ality", "ially"], ["ively", "ness", "ually", "ly", "ally", "\u6027\u5730", "ically", "iveness"], ["ually", "ly", "ively", "ness", "ally", "ically", "o", "ality"], ["ually", "ively", "ality", "ly", "ally", "ically", "ially", "\u6027\u5730"], ["ively", "ally", "ality", "ually", "ically", "ly", "iveness", "ness"], ["ally", "ually", "ality", "ly", "ively", "ically", "ness", "o"], ["o", "ally", "d", "a", "ly", "ually", "ically", "ed"], ["o", "ally", "a", "e", "ly", "ed", "d", "-"], ["o", "e", "a", "d", "ally", "ly", "al", "ed"], ["o", "ally", "ality", "e", "ly", "a", "hood", "ically"], ["o", "e", "ally", "ality", "a", "ically", "hood", "ually"], ["o", "ality", "e", "hood", "ly", "ally", "ically", "ually"], ["<|endoftext|>", "o", "a", " \n\n", "e", "d", "m", "ly"], ["ality", "hood", " ``", "ally", "ically", "ized", "ually", "ly"], [" ``", "ality", "hood", "ly", "ically", "ally", "ually", "o"], ["o", "e", "a", " O", "ed", "d", "m", "ality"], ["ality", "hood", " \n\n", "o", "ally", "ically", "ed", "ually"], ["ality", "hood", "ically", "ively", " creation", "ness", " labor", "ally"], ["ality", "hood", " storage", " labor", " space", " memory", " garbage", " objects"], [" __", " labor", " creation", " space", " self", " life", " storage", " ^"], ["hood", " storage", "ality", "ization", " labor", " memory", " garbage", " creation"], [" __", " storage", "ality", "hood", "ization", " garbage", " trash", " ___"], [" __", " storage", "ality", "ization", " garbage", "hood", " labor", " memory"], [" storage", " labor", " __", " space", " garbage", " destruction", " memory", " dead"], [" storage", "ality", " memory", "hood", "ization", " garbage", " dead", " labor"], ["storage", " lifecycle", " storage", "ality", "hood", " trash", "stuff", " behaviors"], ["\u2026**", "storage", " lifecycle", "\u2026*", " refactor", "...**", "aliz", "hood"], ["\u2026*", "\u2026**", " lifecycle", "storage", "\u5783\u573e", " Lifecycle", "ality", "hood"], [" Optimization", "\u56de\u6536", " reuse", " Recycling", " lifecycle", "Reuse", " optimizations", " recycl"], [" reuse", " Optimization", " Objects", " Lifecycle", " avoidance", " Avoid", "\u56de\u6536", " Recycling"], [" garbage", " reuse", " Recycling", " avoidance", " recycl", "\u56de\u6536", " Optimization", " Objects"], [" reuse", " Recycling", " recycle", " recycling", "\u56de\u6536", " recycl", "Reuse", "reuse"], [" reuse", " Recycling", " recycling", " recycle", " recycl", " reused", " recycled", "\u56de\u6536"], [" reuse", " recycling", " Recycling", " reusable", " recycle", " reused", "reuse", "Reuse"], [" reuse", " Recycling", " recycling", " recycle", " reusable", " reused", " recycled", "reuse"], [" reuse", " Recycling", " recycle", " reusable", " recycling", "reuse", "Reusable", " reused"], [" reuse", " Recycling", " recycle", " reusable", " recycling", "reuse", "Reusable", " reused"], [" reuse", " Recycling", " recycle", " recycling", " reusable", " reused", "reuse", "Reuse"], [" reuse", " Recycling", " recycle", " reusable", "reuse", "Reuse", " recycling", " reused"], [" reuse", " Recycling", "reuse", "Reuse", " recycle", " reusable", "\u56de\u6536", "Reusable"], [" reuse", " Recycling", "Reuse", "reuse", "Reusable", " recycle", " Lifecycle", " reusable"], [" Recycling", " reuse", "Reuse", "Reusable", "reuse", " recycle", " recycling", " Lifecycle"], [" reuse", " Recycling", "reuse", "Reusable", "Reuse", " recicl", " Lifecycle", "\u56de\u6536"], [" reuse", "Reuse", "reuse", " Recycling", "Reusable", "\u590d\u7528", " recicl", " recycling"], [" reuse", "Reuse", "reuse", "Reusable", "\u590d\u7528", " reusable", " Recycling", " reused"], [" reuse", "Reuse", "reuse", "Reusable", "\u590d\u7528", " reusable", " Recycling", " reused"], [" reuse", "Reuse", "reuse", "\u590d\u7528", "Reusable", " Recycling", " Allocation", " pooling"], [" reuse", "Reuse", "reuse", "\u590d\u7528", " Recycling", " recycling", "Reusable", " pooling"], ["\u6c60", " pooling", "pool", " Pool", " pool", " pools", "Pool", "Pooling"], ["\u6c60", " pooling", " Pool", "pool", " pool", " pools", "Pool", "_pool"], ["\u6c60", " pooling", " Pool", "pool", " pool", "Pool", " pools", "Pooling"], [" pooling", " Pool", " pools", "\u6c60", " pool", "pool", "Pooling", "Pool"], [" pooling", " Pool", " pools", "Pooling", " pool", "pool", "\u6c60", "Pool"], [" pooling", " Pool", " pools", "\u6c60", "Pooling", "pool", " pool", "_pool"], [" Pool", " pooling", "Pooling", " Recycling", " Allocation", " pools", "pool", " Rental"]], "p": [[0.6289, 0.3366, 0.0095, 0.007, 0.0026, 0.0021, 0.0012, 0.001], [0.1492, 0.0662, 0.0549, 0.0516, 0.0313, 0.0215, 0.019, 0.019], [0.5155, 0.2759, 0.0543, 0.0226, 0.0107, 0.0094, 0.0065, 0.0054], [0.0301, 0.0098, 0.0067, 0.0046, 0.0043, 0.0043, 0.0041, 0.0038], [0.2483, 0.0757, 0.0217, 0.0204, 0.0169, 0.0132, 0.0124, 0.0116], [0.0672, 0.011, 0.0085, 0.0075, 0.0067, 0.0067, 0.0059, 0.0059], [0.15, 0.0709, 0.0625, 0.0518, 0.0314, 0.014, 0.0123, 0.0123], [0.2846, 0.1726, 0.1263, 0.0635, 0.0385, 0.0265, 0.0249, 0.0234], [0.2845, 0.1114, 0.1114, 0.0924, 0.0924, 0.0362, 0.0182, 0.0142], [0.2733, 0.1006, 0.0834, 0.0506, 0.0446, 0.0348, 0.0186, 0.0175], [0.2034, 0.1398, 0.1023, 0.0454, 0.0426, 0.0376, 0.0167, 0.0157], [0.1095, 0.0908, 0.0664, 0.0457, 0.0429, 0.0356, 0.0314, 0.0244], [0.0739, 0.0652, 0.0652, 0.0575, 0.0289, 0.0272, 0.0255, 0.0255], [0.089, 0.0575, 0.054, 0.0371, 0.0308, 0.0289, 0.0271, 0.0199], [0.1686, 0.0514, 0.0259, 0.0189, 0.0178, 0.0138, 0.013, 0.0122], [0.1296, 0.0395, 0.0289, 0.0272, 0.0187, 0.0175, 0.0137, 0.0121], [0.4593, 0.0704, 0.0584, 0.0243, 0.0229, 0.0167, 0.0148, 0.0139], [0.332, 0.0509, 0.0309, 0.0212, 0.0212, 0.0199, 0.0165, 0.0165], [0.1999, 0.0419, 0.0326, 0.0307, 0.0254, 0.0224, 0.0175, 0.0154], [0.066, 0.0376, 0.0275, 0.0228, 0.0214, 0.0214, 0.0189, 0.0147], [0.0818, 0.0386, 0.0265, 0.0265, 0.0249, 0.0234, 0.0111, 0.0092], [0.0373, 0.0329, 0.0226, 0.02, 0.0188, 0.0137, 0.0089, 0.0089], [0.1115, 0.0234, 0.0161, 0.0151, 0.0133, 0.0133, 0.011, 0.0081], [0.0346, 0.0223, 0.0135, 0.0087, 0.0082, 0.0064, 0.006, 0.0053], [0.0433, 0.0218, 0.0181, 0.015, 0.0132, 0.011, 0.0091, 0.0091], [0.0227, 0.0166, 0.0078, 0.0054, 0.0054, 0.0051, 0.0048, 0.0042], [0.016, 0.0086, 0.0076, 0.0046, 0.0043, 0.0043, 0.0036, 0.0034], [0.0098, 0.0081, 0.0076, 0.0076, 0.0063, 0.0059, 0.0056, 0.0052], [0.0131, 0.0116, 0.0109, 0.0051, 0.0051, 0.004, 0.0038, 0.0033], [0.0356, 0.0131, 0.0123, 0.0116, 0.0062, 0.0055, 0.0048, 0.0048], [0.0265, 0.0194, 0.0133, 0.0104, 0.0086, 0.0081, 0.0056, 0.0052], [0.0153, 0.0087, 0.0087, 0.0068, 0.0068, 0.0064, 0.0064, 0.006], [0.0171, 0.0117, 0.0059, 0.0055, 0.0052, 0.0046, 0.0043, 0.0043], [0.0079, 0.0069, 0.0065, 0.0051, 0.0045, 0.0033, 0.0033, 0.0033], [0.01, 0.0083, 0.0078, 0.0054, 0.0045, 0.0037, 0.0031, 0.0029], [0.0262, 0.0191, 0.0075, 0.0045, 0.004, 0.004, 0.0038, 0.0035], [0.0132, 0.0124, 0.011, 0.0075, 0.0075, 0.0063, 0.0055, 0.0052], [0.0227, 0.0214, 0.0107, 0.0095, 0.0089, 0.0089, 0.0074, 0.0069], [0.0432, 0.0381, 0.018, 0.018, 0.014, 0.0132, 0.0116, 0.0109], [0.358, 0.0799, 0.0622, 0.0485, 0.0354, 0.0313, 0.0313, 0.0294], [0.3694, 0.0994, 0.0566, 0.0414, 0.0344, 0.0303, 0.0251, 0.0236], [0.7347, 0.047, 0.0414, 0.0366, 0.0323, 0.0323, 0.0173, 0.0173], [0.6273, 0.0749, 0.0661, 0.0583, 0.0515, 0.0312, 0.0215, 0.0148], [0.5328, 0.1049, 0.0677, 0.0636, 0.0437, 0.0301, 0.0207, 0.0182], [0.583, 0.0789, 0.0696, 0.0479, 0.0329, 0.029, 0.0273, 0.0212], [0.5805, 0.089, 0.0693, 0.0612, 0.0476, 0.0199, 0.0199, 0.0145], [0.6895, 0.0566, 0.0414, 0.0343, 0.0322, 0.0184, 0.0162, 0.0111], [0.4686, 0.1342, 0.056, 0.0526, 0.0361, 0.0206, 0.016, 0.0151], [0.3266, 0.1981, 0.0936, 0.0643, 0.047, 0.0285, 0.0135, 0.0135], [0.2682, 0.1962, 0.0528, 0.0528, 0.0363, 0.0301, 0.0194, 0.0194], [0.1794, 0.1686, 0.0848, 0.0796, 0.0703, 0.0228, 0.0147, 0.0138], [0.2715, 0.1866, 0.1282, 0.1132, 0.0367, 0.0269, 0.0144, 0.0112], [0.6298, 0.2626, 0.0517, 0.0355, 0.007, 0.0062, 0.0026, 0.0023], [0.6402, 0.3024, 0.0361, 0.0103, 0.0055, 0.0016, 0.0014, 0.0007], [0.8, 0.1227, 0.0451, 0.0078, 0.0042, 0.0029, 0.0029, 0.0017], [0.8731, 0.0812, 0.0181, 0.0125, 0.0067, 0.0036, 0.001, 0.0007], [0.4796, 0.3296, 0.0735, 0.0649, 0.0164, 0.0164, 0.0128, 0.002], [0.5898, 0.169, 0.1025, 0.0798, 0.0294, 0.0139, 0.0139, 0.0009], [0.4822, 0.2925, 0.1382, 0.0396, 0.0187, 0.0146, 0.0113, 0.0012], [0.9109, 0.04, 0.0147, 0.0115, 0.0101, 0.0079, 0.002, 0.002], [0.9805, 0.0109, 0.0035, 0.0028, 0.001, 0.0006, 0.0005, 0.0001], [0.5816, 0.3998, 0.0065, 0.0044, 0.0027, 0.0021, 0.0021, 0.0004], [0.9198, 0.0666, 0.0048, 0.0043, 0.0026, 0.0004, 0.0001, 0.0001]], "ranks": {}}, {"pos": 527, "top": [[" \u2013", "i", "\u2013", "a", "ing", "y", "e", "er"], ["\u2013", " \u2013", "ing", "i", "\u2013and", "\u2013\u2013", "e", "er"], [" \u2013", "\u2013", "\u2026", "i", ".", "\u2013and", " [\u2026]", ","], ["ing", "hound", "\u0629", "\ub9c1", "\ufe0f", "i\u0173", "iog", "ingly"], ["i", "ing", " @", "hound", "ers", "ingly", "\u064a", "e"], ["ing", "i", "hound", " Pool", "ingly", "\u064a", "(pool", "ers"], ["ing", "i", "ers", "ster", " _", " @", "a", "age"], ["ing", "i", "ers", "ster", "age", "ity", "sters", "ery"], ["ing", "i", "ers", "\ufe0f", "ery", "age", "ster", "ity"], ["ing", "i", "ers", "ery", "ster", "ity", "age", "\ufe0f"], ["ing", "i", "ers", "a", "er", " @", "e", "age"], ["ing", "ers", "sters", "ier", "ster", "ation", "er", "ery"], ["ing", "ers", "er", "sters", "ster", "ier", "ery", "ation"], ["ing", "ers", "er", "ation", "ed", "ster", "sters", "ery"], ["ing", "ers", "i", "er", "ed", "ation", "age", "ity"], ["ing", "ers", "i", "er", "ed", "ation", "e", "es"], ["ing", "ers", "i", "er", "ed", "e", "ation", "es"], ["ing", "ers", "er", "i", "ed", "ings", "ity", "ation"], ["ing", "ers", "i", "ation", "ed", "ity", "es", "age"], ["ing", "i", "ers", "ed", "e", "\u513f", "ation", "es"], ["ing", "i", "ed", "e", "ers", "a", "es", "er"], ["ing", "ers", "ed", "ings", "ation", "age", "\ufe0f", "ier"], ["ing", "ers", "ed", "ation", "ings", "i", "es", "age"], ["ing", "ers", "ed", "er", "e", "es", "i", "ation"], ["ing", "ers", "ed", "i", "e", "er", "\ufe0f", "es"], ["ing", "ers", "ed", "\ufe0f", "er", "ings", "ation", "ity"], ["ing", "ers", "\ufe0f", "ed", "er", "ings", "ity", " Pool"], ["ing", "ers", "ed", "er", "\ufe0f", "ings", " pool", "ation"], ["ing", "ers", "ed", "er", "ings", " pool", "\ufe0f", "ation"], ["ing", "ers", "ed", " pool", "ings", " pools", "sters", "er"], ["ing", "ers", "ed", " ...", "ings", "er", " pools", " pool"], ["ing", "ers", " ...", "ed", "er", " \n", " .", " pool"], ["ing", "ers", "ed", "er", "ation", "es", " games", " pool"], ["ing", "ers", "\ufe0f", "ed", "ware", " pools", "ings", "er"], ["ing", "ers", "\ufe0f", "ed", "ware", "sters", "ings", "edList"], ["ing", "\ufe0f", "ers", "ed", "\u513f", "er", "sters", "es"], ["ing", "ers", "\ufe0f", "ed", "edList", " reuse", "er", "ware"], ["ing", "ers", "\ufe0f", " reuse", "ed", "edList", "er", "ware"], ["ing", "\ufe0f", "ers", " reuse", "ed", " reused", " reusable", "edList"], ["ing", " reuse", "\ufe0f", " pools", " reusable", " Pool", "ers", " reused"], ["ing", " reuse", "\ufe0f", "ers", " pools", " reusable", " Pool", " reused"], [" reuse", "ing", " reusable", " reused", " recycling", " recycle", " pools", " Recycling"], [" reuse", " reusable", " pools", " recycle", " reused", "ing", " recycling", " Recycling"], [" reuse", " reusable", " pools", "ing", " recycle", " reused", " Recycling", " recycling"], [" reuse", " reusable", " pools", " recycle", "ing", " reused", " recycling", " Recycling"], [" reuse", " reusable", " pools", " recycle", " recycling", "ing", " reused", " Recycling"], [" reuse", " reusable", "ing", " recycle", " pools", " reused", " Recycling", " recycling"], [" reuse", " reusable", "ing", " recycle", " pools", " reused", " Recycling", "reuse"], [" reuse", " pools", " reusable", "ing", " caches", " recycle", " Recycling", "\u6c60"], [" reuse", " pools", " Everywhere", "\u6c60", " Pool", " Entire", "ing", " Recycling"], [" Everywhere", " reuse", " Everything", "\u6c60", "**:", " Recycling", " Entire", "\u6240\u6709"], [" Everywhere", " Everything", " reuse", "\u6c60", "reuse", " reusable", " Recycling", " everywhere"], [" reuse", " reusable", "**:", "reuse", ":**", "Reusable", " Everywhere", " Everything"], [" reuse", " reusable", " Everything", "reuse", "\u6c60", " Everywhere", "Reuse", "Reusable"], ["\u6c60", " Everywhere", " Everything", " Pool", " pools", ".Pool", " reuse", ".pool"], [" Everything", " everything", "ing", " reuse", "everything", "Everything", "\u4e00\u5207", "\u6c60"], ["\u6c60", " pools", " Pool", " pooling", "pool", " pool", ".pool", ".Pool"], ["\u6c60", " pools", " pooling", " Pool", "pool", " pool", ".pool", "Pool"], ["\u6c60", " pools", " pooling", " Pool", " pool", ".pool", "pool", ".Pool"], ["ing", " Everything", " pools", " pooling", " everything", "\u6c60", " Pool", "everything"], ["ing", " pooling", " pools", " Everything", " Pool", " recycling", " Recycling", " everything"], ["ing", " Everything", " everything", " Recycling", " Everywhere", " recycling", " pooling", " caching"], ["ing", " Everything", " Recycling", ":**", "ING", " Object", "ding", "ting"]], "p": [[0.8224, 0.0982, 0.0319, 0.0133, 0.0086, 0.0046, 0.0043, 0.0028], [0.2785, 0.2038, 0.0798, 0.0484, 0.0294, 0.0157, 0.0079, 0.0079], [0.697, 0.2906, 0.0028, 0.0025, 0.001, 0.0007, 0.0006, 0.0004], [0.0304, 0.0222, 0.0112, 0.0099, 0.0077, 0.0072, 0.0064, 0.006], [0.2075, 0.1949, 0.0763, 0.016, 0.0141, 0.0133, 0.008, 0.0059], [0.1131, 0.0304, 0.0127, 0.0105, 0.0105, 0.0072, 0.0047, 0.0039], [0.6298, 0.3371, 0.0074, 0.0014, 0.0011, 0.0009, 0.0009, 0.0008], [0.9574, 0.0165, 0.0044, 0.0027, 0.0013, 0.0012, 0.0011, 0.001], [0.9448, 0.0252, 0.0072, 0.0047, 0.0021, 0.0021, 0.0019, 0.0011], [0.9709, 0.0101, 0.0058, 0.0019, 0.0009, 0.0007, 0.0007, 0.0005], [0.8888, 0.0644, 0.0144, 0.0105, 0.0036, 0.0019, 0.0016, 0.0008], [0.9582, 0.0225, 0.0016, 0.0011, 0.0011, 0.0009, 0.0008, 0.0007], [0.9332, 0.0436, 0.0026, 0.0012, 0.001, 0.0007, 0.0006, 0.0005], [0.9568, 0.0327, 0.0024, 0.0006, 0.0005, 0.0004, 0.0003, 0.0003], [0.9622, 0.0188, 0.0039, 0.0027, 0.0022, 0.0015, 0.0006, 0.0005], [0.9798, 0.0123, 0.0018, 0.0013, 0.0011, 0.0005, 0.0004, 0.0003], [0.9911, 0.0046, 0.0015, 0.001, 0.0004, 0.0003, 0.0002, 0.0002], [0.9881, 0.0097, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9964, 0.0022, 0.0007, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.997, 0.0012, 0.0012, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9851, 0.0085, 0.0013, 0.0012, 0.0012, 0.0005, 0.0002, 0.0002], [0.9976, 0.0017, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9969, 0.0017, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.997, 0.001, 0.0009, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9982, 0.0006, 0.0006, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9955, 0.0019, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.97, 0.0138, 0.0037, 0.0008, 0.0006, 0.0006, 0.0005, 0.0005], [0.9816, 0.0038, 0.0029, 0.0014, 0.0007, 0.0005, 0.0004, 0.0003], [0.9746, 0.0084, 0.0017, 0.001, 0.0007, 0.0005, 0.0004, 0.0004], [0.9591, 0.0113, 0.0013, 0.0012, 0.0011, 0.0008, 0.0007, 0.0007], [0.9472, 0.0153, 0.0017, 0.0015, 0.0013, 0.0011, 0.001, 0.001], [0.8942, 0.012, 0.0073, 0.0073, 0.0047, 0.0032, 0.0016, 0.0015], [0.9315, 0.0091, 0.0059, 0.0041, 0.0014, 0.0011, 0.001, 0.0009], [0.926, 0.0117, 0.0062, 0.0018, 0.0012, 0.001, 0.0009, 0.0008], [0.9415, 0.0092, 0.0077, 0.0023, 0.0012, 0.0009, 0.0007, 0.0007], [0.9601, 0.0114, 0.0069, 0.0015, 0.0006, 0.0005, 0.0004, 0.0004], [0.9633, 0.0065, 0.0057, 0.0013, 0.0006, 0.0006, 0.0005, 0.0005], [0.9418, 0.0092, 0.0081, 0.0019, 0.0016, 0.0009, 0.0009, 0.0007], [0.9079, 0.0147, 0.0095, 0.0079, 0.0018, 0.0014, 0.0013, 0.0013], [0.7832, 0.039, 0.0237, 0.0093, 0.0087, 0.0072, 0.0072, 0.0068], [0.8449, 0.0272, 0.0106, 0.0078, 0.0057, 0.0053, 0.0044, 0.0042], [0.4716, 0.1735, 0.0819, 0.0439, 0.0301, 0.0283, 0.025, 0.0172], [0.5375, 0.154, 0.0366, 0.0366, 0.0344, 0.0323, 0.0303, 0.0208], [0.3872, 0.1042, 0.092, 0.0864, 0.0408, 0.0248, 0.0193, 0.0193], [0.4928, 0.0912, 0.0553, 0.0519, 0.0405, 0.0335, 0.0203, 0.0191], [0.441, 0.1048, 0.0766, 0.072, 0.0465, 0.034, 0.034, 0.0206], [0.4532, 0.1011, 0.0695, 0.0372, 0.0349, 0.0308, 0.0176, 0.0146], [0.3038, 0.0637, 0.0598, 0.0411, 0.0386, 0.0301, 0.0207, 0.0151], [0.0877, 0.0441, 0.0303, 0.0267, 0.0267, 0.0208, 0.0208, 0.0184], [0.0576, 0.029, 0.0272, 0.0256, 0.0212, 0.0199, 0.0176, 0.0176], [0.0668, 0.0405, 0.0297, 0.0246, 0.0246, 0.0159, 0.0149, 0.0124], [0.1173, 0.0913, 0.052, 0.0358, 0.0231, 0.0169, 0.0149, 0.014], [0.2277, 0.1011, 0.0613, 0.0448, 0.0448, 0.0396, 0.0372, 0.029], [0.2606, 0.0846, 0.0619, 0.0482, 0.0425, 0.0353, 0.0353, 0.0258], [0.4026, 0.0956, 0.0898, 0.0352, 0.033, 0.0257, 0.02, 0.0166], [0.3466, 0.0876, 0.0727, 0.0641, 0.0532, 0.0499, 0.0414, 0.0414], [0.5626, 0.1826, 0.0978, 0.0761, 0.0218, 0.015, 0.0103, 0.0071], [0.5226, 0.2179, 0.1166, 0.0908, 0.0158, 0.0158, 0.0075, 0.0031], [0.4567, 0.1904, 0.168, 0.1308, 0.0138, 0.0107, 0.0095, 0.004], [0.7771, 0.0638, 0.0497, 0.0341, 0.0235, 0.0098, 0.0081, 0.003], [0.9861, 0.0059, 0.0036, 0.0007, 0.0007, 0.0005, 0.0003, 0.0003], [0.9982, 0.0005, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9996, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 528, "top": [[".", "\u2013", ",", " ", " \u2013", ";", "\u00a0", " \u200b\u200b"], [" \u200b\u200b", "\u2013", "   \n", "  ", "\u2013and", " HG", " Hyper", " \u2013"], ["\u2026..", "\u2013", "\u2026.", " \u2013", "\u2026", "\u2013and", " \u200b\u200b", "\u2026\u2026"], [" ;;^", " milfs", " Blowjob", " Strec", " **\u25cb", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</", "-------------</"], ["undur", " rasseg", " CSL", " *_", " Gabrie", " Strec", "grafie", " pueb"], ["incu", " Insg", "undur", " **\u201c", " **\"", " **\u25cb", " rasseg", "po\u015bred"], [" ____", " ___", " _____", " ______", " ._", " _$", " _", " *_"], [" ____", " *_", " ___", " _$", " ._", " **\u25cb", " **\u25a0", " _____"], [" ____", " \n", " *_", " _$", " \n  \n", " ._", " \n    \n", " &_"], [" _$", ")(_", " weaponry", " &_", " (!_", ".\"_", " outf", " "], [" \n", " ._", " _", " ", " &", " \n  \n", " ____", " _$"], [" _$", " *_", " weaponry", " ._", " &_", " booze", ")(_", " incentiv"], [" incentiv", " St\u00e9ph", " ;;^", " weaponry", " matchups", " impactful", " synced", " cohorts"], [" incentiv", " weaponry", " St\u00e9ph", " disparate", "-esque", " networking", " matchups", " orchestrated"], [" incentiv", " weaponry", " myriad", " heavily", " &", " akin", " partnered", " aggressively"], [" myriad", " incentiv", " akin", " arguably", " &", " showcasing", " weaponry", " crafting"], [" myriad", " akin", " heavily", " disparate", " via", " showcasing", " bolster", "-esque"], [" incentiv", " myriad", " heavily", "-esque", " revamped", " weaponry", " akin", " tweaked"], [" myriad", " incentiv", " heavily", " revamped", " akin", "-esque", " amidst", " weaponry"], [" myriad", " \n  \n", " &", " heavily", " amidst", " &#", " alongside", " revamped"], [" \n\n", " \n  \n", " \n\n\n", " \n", " myriad", " ,", " heavily", " --"], [" ;;^", " myriad", " .**", " heavily", " incentiv", " MEDIAM", " revamped", " weaponry"], [" --", " myriad", " ,", " heavily", " .**", " \n  \n", " \n", " &"], [" ,", " --", " .", " heavily", " myriad", " &", " ;", " and"], [" \n\n", " \n  \n", " \n", " \n\n\n", " \r\n\r\n", " \n    \n", " --", " ,"], [" ,", " heavily", " \n  \n", " .**", " \n", " --", " ;;^", " .*"], [" \n\n", " ,", " \n", " heavily", " incentiv", " weaponry", " \n  \n", " myriad"], [" \n\n", " ,", " heavily", " --", " \n", " \n  \n", " and", " myriad"], [" \n\n", " incentiv", " \n", " heavily", " ,", " \n  \n", " weaponry", " strategically"], [" \n", " \n  \n", " ,", " ...", " heavily", " \n\n", " .**", " incentiv"], [" \n", " \n  \n", " \n\n", " .", " heavily", " ,", " ...", " .**"], [" ,", " heavily", " .", " and", " \n", " systems", " \n  \n", " over"], [" heavily", " ,", " meticulously", " .", " strategically", " and", " aggressively", " massively"], [" heavily", " meticulously", " aggressively", " massively", " incentiv", " strategically", " incredibly", " strategies"], [" meticulously", " heavily", " aggressively", " incentiv", " massively", " strategically", " incredibly", " leveraging"], [" meticulously", " heavily", " aggressively", " massively", " incredibly", " strategically", " relentlessly", " relentless"], [" meticulously", " heavily", " aggressively", " massively", " strategically", " relentlessly", " optimized", " leveraging"], [" meticulously", " heavily", " aggressively", " massively", " strategically", " relentlessly", " algorithms", " optimized"], [" meticulously", " heavily", " aggressively", " massively", " relentlessly", " strategically", " optimized", " ubiquitous"], [" meticulously", " heavily", " aggressively", " massively", " strategically", " relentlessly", " relentless", " ubiquitous"], [" meticulously", " heavily", " aggressively", " massively", " algorithms", " strategies", " techniques", " strategy"], [" meticulously", " aggressively", " techniques", " heavily", " strategies", " strategy", " massively", " strategically"], [" meticulously", " techniques", " aggressively", " strategies", " heavily", " workflows", " massively", " algorithms"], [" meticulously", " techniques", " heavily", " aggressively", " massively", " extensively", " strategies", " workflows"], [" meticulously", " techniques", " heavily", " aggressively", " rigor", " extensively", " massively", " strict"], [" meticulously", " heavily", " aggressively", " strict", " massively", " techniques", " ubiquitous", " extensively"], [" meticulously", " everywhere", " EVERY", " Everywhere", " massively", " aggressively", " rigor", " strict"], [" meticulously", " everywhere", " EVERY", " Everywhere", " relentlessly", " heavily", " aggressively", " Entire"], ["**:", ":**", " EVERY", ":", "*:", " **:", " meticulously", " Everywhere"], ["**:", ":", ":**", "*:", " **:", ":*", " **:**", ":<"], ["*:", "**:", ":", ":*", " **:", ":**", ":<", "():"], [":*", "*:", ":**", ":", "**:", ":<", " :**", ":</"], [":**", ":*", " :**", "**:", "*:", ":</", " :</", ":"], [":**", ":*", ":</", " :**", "*:", "**:", " :</", ":"], [":**", ":*", ":</", " :**", "*:", " :</", "**:", ":<"], [":**", ":*", ":</", " :**", "*:", " :</", "**:", ":"], [":**", " :**", ":*", "**:", ":</", "\uff1a**", " :</", "*:"], [":**", " :**", ":*", "**:", "\uff1a**", ":</", " :</", "*:"], [":**", " :**", ":*", "**:", ":</", "\uff1a**", "*:", " :</"], [":**", " :**", ":*", "**:", ":</", "\uff1a**", "*:", " :</"], [":**", ":*", " :**", ":", "**:", ":</", "*:", ":\""], [":**", ":*", ":", " :**", "**:", ":</", " :", "\uff1a**"], [":**", "**:", " :**", "\uff1a**", ":", ":*", "**", ":</"]], "p": [[0.3362, 0.2039, 0.2039, 0.0905, 0.075, 0.0215, 0.0058, 0.0051], [0.0047, 0.0041, 0.0034, 0.0032, 0.0022, 0.0019, 0.0019, 0.0017], [0.4819, 0.3753, 0.0837, 0.0187, 0.0065, 0.005, 0.0047, 0.0037], [0.0099, 0.0093, 0.0057, 0.005, 0.0039, 0.0039, 0.0039, 0.0037], [0.0047, 0.0041, 0.0041, 0.0036, 0.0032, 0.0032, 0.0032, 0.003], [0.0097, 0.0075, 0.0067, 0.0052, 0.0043, 0.0038, 0.0033, 0.003], [0.4724, 0.0468, 0.0267, 0.025, 0.0195, 0.0118, 0.0076, 0.0056], [0.0859, 0.0159, 0.0149, 0.0103, 0.009, 0.0062, 0.0062, 0.0055], [0.0617, 0.0452, 0.0352, 0.0227, 0.0227, 0.02, 0.0188, 0.0147], [0.009, 0.004, 0.0035, 0.0031, 0.0026, 0.0026, 0.0024, 0.0024], [0.0748, 0.0454, 0.0293, 0.0293, 0.0228, 0.0201, 0.0095, 0.0084], [0.013, 0.0061, 0.0037, 0.0031, 0.0029, 0.0029, 0.0027, 0.0027], [0.0087, 0.0056, 0.0049, 0.0028, 0.0025, 0.0021, 0.0021, 0.0015], [0.016, 0.0062, 0.0055, 0.0031, 0.0031, 0.0028, 0.0028, 0.0024], [0.0147, 0.0084, 0.0084, 0.0079, 0.0065, 0.0065, 0.0058, 0.0058], [0.0212, 0.0107, 0.0094, 0.0078, 0.0078, 0.0069, 0.0069, 0.0069], [0.0384, 0.0141, 0.0125, 0.0097, 0.0091, 0.0086, 0.0086, 0.008], [0.0159, 0.0132, 0.0103, 0.0103, 0.0062, 0.0055, 0.0055, 0.0052], [0.0355, 0.026, 0.0148, 0.0139, 0.0115, 0.0115, 0.0084, 0.0079], [0.0847, 0.0312, 0.0258, 0.0243, 0.0157, 0.0147, 0.013, 0.0122], [0.3081, 0.1, 0.0346, 0.0346, 0.0287, 0.0269, 0.0112, 0.0087], [0.0161, 0.0118, 0.0071, 0.0071, 0.0067, 0.0049, 0.0043, 0.0041], [0.0447, 0.0348, 0.0327, 0.0175, 0.0145, 0.0136, 0.0083, 0.0083], [0.2299, 0.0482, 0.0242, 0.0228, 0.0214, 0.0122, 0.0114, 0.0114], [0.6534, 0.078, 0.0154, 0.0112, 0.0082, 0.0077, 0.0077, 0.0073], [0.0284, 0.0251, 0.0172, 0.0152, 0.0134, 0.0111, 0.0104, 0.0098], [0.0337, 0.0298, 0.0263, 0.0247, 0.0205, 0.0132, 0.0132, 0.0071], [0.2124, 0.0943, 0.0326, 0.0099, 0.0093, 0.0088, 0.0082, 0.0064], [0.0431, 0.0336, 0.0336, 0.0316, 0.0262, 0.0246, 0.0124, 0.009], [0.2283, 0.0654, 0.0479, 0.0309, 0.029, 0.0212, 0.0137, 0.0083], [0.7133, 0.0378, 0.0334, 0.0123, 0.0102, 0.0102, 0.009, 0.0079], [0.1306, 0.0744, 0.0744, 0.0481, 0.0398, 0.0069, 0.0069, 0.0061], [0.1523, 0.0362, 0.0319, 0.0234, 0.0171, 0.0171, 0.0142, 0.0125], [0.1791, 0.131, 0.0311, 0.0275, 0.0177, 0.0108, 0.0101, 0.0079], [0.381, 0.0963, 0.0276, 0.0148, 0.0148, 0.0108, 0.009, 0.0066], [0.4052, 0.14, 0.0427, 0.0167, 0.0084, 0.0074, 0.0058, 0.0051], [0.3777, 0.0897, 0.0843, 0.0166, 0.0095, 0.0083, 0.0057, 0.0054], [0.3499, 0.0885, 0.0504, 0.021, 0.0112, 0.0082, 0.0073, 0.0073], [0.4769, 0.0778, 0.0472, 0.021, 0.0099, 0.0087, 0.006, 0.006], [0.4065, 0.0517, 0.0485, 0.0179, 0.0123, 0.0102, 0.009, 0.0084], [0.3075, 0.0569, 0.0443, 0.0197, 0.0173, 0.0153, 0.0153, 0.0135], [0.2474, 0.0552, 0.0487, 0.0487, 0.0356, 0.023, 0.0191, 0.0149], [0.3448, 0.0467, 0.0341, 0.0235, 0.0235, 0.0126, 0.0118, 0.0118], [0.1987, 0.0778, 0.0368, 0.0305, 0.0223, 0.0223, 0.0163, 0.0163], [0.1853, 0.0641, 0.0469, 0.0414, 0.0195, 0.0195, 0.0172, 0.0172], [0.2814, 0.0521, 0.0489, 0.0459, 0.0262, 0.0231, 0.0204, 0.0192], [0.385, 0.059, 0.0555, 0.046, 0.0204, 0.0169, 0.0159, 0.0159], [0.2664, 0.0763, 0.0674, 0.0493, 0.0248, 0.0205, 0.0181, 0.0181], [0.2397, 0.0999, 0.0687, 0.0535, 0.0535, 0.0472, 0.0324, 0.0305], [0.3761, 0.1221, 0.1078, 0.0951, 0.0449, 0.035, 0.0309, 0.0309], [0.3071, 0.3071, 0.088, 0.0416, 0.0416, 0.0286, 0.0252, 0.0173], [0.2573, 0.227, 0.1072, 0.0835, 0.0835, 0.0395, 0.0307, 0.0307], [0.6771, 0.194, 0.0382, 0.0298, 0.0204, 0.018, 0.0046, 0.0036], [0.5972, 0.249, 0.049, 0.0433, 0.0124, 0.0097, 0.0085, 0.0066], [0.4913, 0.298, 0.0854, 0.0403, 0.0277, 0.0191, 0.0102, 0.0038], [0.619, 0.201, 0.0838, 0.0349, 0.0165, 0.0146, 0.0128, 0.0017], [0.9386, 0.0364, 0.0152, 0.0043, 0.0018, 0.0018, 0.0005, 0.0004], [0.9191, 0.0519, 0.0168, 0.0055, 0.0023, 0.002, 0.0007, 0.0005], [0.8833, 0.064, 0.0388, 0.006, 0.0022, 0.0017, 0.0013, 0.0009], [0.9364, 0.032, 0.0283, 0.0012, 0.0005, 0.0003, 0.0002, 0.0001], [0.9459, 0.0416, 0.0072, 0.0016, 0.0014, 0.0008, 0.0003, 0.0002], [0.9262, 0.0359, 0.017, 0.0132, 0.0026, 0.0011, 0.0005, 0.0004], [0.9991, 0.0004, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 529, "top": [[" \u2013", "  \n", " (\u201e", ".", "\u2026..", "   \n", "\u201e", "\u2026\u2026"], [" \u2013**", "  \n", ",**", "   \n", ":**", " **\u2013", ",\\\"", ";**"], ["\u2026..", "\u2026\u2026", "\u2013", "\u2013and", " \u2013**", "\u2026.", " **\u2013", ".\u2013"], [" ;;^", "\u52a0\u62ff\u5927", " **\u201e", " ``(", " ``", " **:**", " Guta", "``"], [":@", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", " ##", ":**", "\u52c7\u5f80\u76f4\u524d", "\u0103\u021b", "ed"], ["\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u4e8b\u534a\u529f\u500d", " **\u201e", ":**", "\u0d3f\u0d32\u0d4d", ".:**", "\u0103\u021b"], [" ##", ":**", " ......", " ..........", "raries", " .....", " ~~", " ``"], [" **\u201e", ":**", " ......", ",..", " ~~", "raries", "\u52a0\u62ff\u5927", " ##"], [",..", " ......", " **\u201e", ":**", " ~~", "\u52c7\u5f80\u76f4\u524d", " ##", "raries"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u52e4\u52e4\u6073\u6073", "\u4e8b\u534a\u529f\u500d", "\u8033\u719f\u80fd\u8be6", "\u4e0d\u53ef\u601d\u8bae", "\u767d\u765c"], [" ##", ",..", "...", ":**", " ......", ":@", "\u52c7\u5f80\u76f4\u524d", " ~~"], [" ``", " ``(", " ~~", " ##", "\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", " **\u201e", " -->"], ["\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u0d19\u0d4d\u0d19\u0d33\u0d4d", " ``", " flavorful", "\u0d33\u0d4d", " ~~", "aviors"], ["\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u65b0\u52a0\u5761", " flavorful", " savvy", "\u4e8b\u534a\u529f\u500d", "\u52e4\u52e4\u6073\u6073", " ``"], [" --", " savvy", " ``", " arguably", " revamped", " sprawling", " maneuver", " fueled"], [" savvy", " arguably", " --", " sprawling", " incredibly", " swiftly", " revamped", " myriad"], [" \u2013", " arguably", ",", " swiftly", " savvy", " sprawling", " myriad", " incredibly"], ["<|endoftext|>", " \u2013", " incredibly", " swiftly", " savvy", ",", " arguably", " showcasing"], [" swiftly", " arguably", " incredibly", " sprawling", " savvy", " myriad", " aggressively", " effortlessly"], ["<|endoftext|>", " swiftly", " arguably", " myriad", " sprawling", " largely", " ultimately", " incredibly"], ["<|endoftext|>", " swiftly", "\n\n", " largely", " ultimately", " nearly", " heavily", " though"], [" swiftly", " sprawling", " arguably", " aggressively", "\u4e0d\u53ef\u601d\u8bae", " effortlessly", " endeavors", " --"], [" swiftly", " --", " ``", " ...", " arguably", " sprawling", " aggressively", "<|endoftext|>"], [" --", " swiftly", "<|endoftext|>", " ``", " ...", " ,", "\n\n", " largely"], ["\n\n", " \n\n", "  \n\n", "   \n\n", " --", " swiftly", "    \n\n", "<|endoftext|>"], [" **", " \n\n", "\n\n", " leveraging", "...**", " --", "   \n\n", " swiftly"], ["\n\n", " \n\n", " leveraging", " swiftly", " --", "   \n\n", "  \n\n", " sprawling"], ["\n\n", " \n\n", "  \n\n", " --", "<|endoftext|>", "   \n\n", " ...", " ,"], ["\n\n", " \n\n", " ...", "  \n\n", " leveraging", " heavily", " aggressively", " --"], [" ...", " \n\n", "\n\n", " \u2026", " --", " heavily", " aggressively", "..."], [" ...", "\n\n", " \n\n", " ,", " \u2026", " heavily", " aggressively", " even"], [" ...", " heavily", " **", " ,", "\n\n", " \u2026", " aggressively", " even"], [" heavily", " ,", " even", " aggressively", " meticulously", " ...", " strategically", " largely"], [" heavily", " meticulously", " aggressively", " leveraging", " strategically", " incredibly", " utilizing", " priorit"], [" meticulously", " aggressively", " heavily", " leveraging", " strategically", "<|endoftext|>", " rigor", " relentlessly"], [" meticulously", " aggressively", " heavily", "<|endoftext|>", " rigor", " leveraging", " \u2013", " rigorous"], [" aggressively", " meticulously", " leveraging", " heavily", " rigor", " strategically", " priorit", " relentlessly"], [" aggressively", " meticulously", " leveraging", " heavily", " rigor", " relentlessly", " relentless", " strategically"], [" aggressively", " meticulously", " leveraging", " heavily", " relentlessly", " rigor", " relentless", " deliberately"], [" aggressively", " meticulously", " leveraging", " rigor", " relentless", " relentlessly", " heavily", " priorit"], [" aggressively", " meticulously", " leveraging", " rigor", " relentless", " relentlessly", " heavily", " optimized"], [" aggressively", " meticulously", " leveraging", " optimized", " optimizing", " rigor", " heavily", " strategies"], [" aggressively", " meticulously", " leveraging", " rigor", " optimized", " strict", " optimizing", " rigorous"], [" aggressively", " meticulously", " leveraging", " optimized", " strict", " rigor", " optimizing", " heavily"], [" aggressively", " meticulously", " strict", " rigor", " rigorous", " mandatory", " stringent", " heavily"], [" aggressively", " strict", " meticulously", " rigor", " mandatory", " rigorous", " stringent", "\u4e25\u683c\u63a7\u5236"], [" meticulously", " aggressively", " strict", " rigor", " mandatory", " stringent", "\u4e25\u683c\u63a7\u5236", " rigorous"], [" meticulously", " aggressively", " strict", " rigor", " mandatory", " relentless", " strictly", "\u4e25\u683c\u63a7\u5236"], [" meticulously", ":", " aggressively", " rigor", " strict", "  \n", " mandatory", ":\\"], ["  \n", " \n", ":", "   \n", ":\\", ":<", "    \n", " meticulously"], ["  \n", " \n", "   \n", "\n", ":<", "    \n", "  \r\n", ":\\"], ["  \n", " \n", "\n", "   \n", "    \n", "        \n", "  \r\n", "\t\n"], ["  \n", " \n", "   \n", "\n", "\u7981\u7528", "    \n", "\u5f3a\u5236", "\u4e25\u7981"], ["  \n", "\n", " \n", "   \n", "    \n", "        \n", "<br", "      \n"], ["\n", "  \n", " \n", "\u7981\u7528", "   \n", "    \n", "        \n", "\u5f3a\u5236"], ["\n", "  \n", "\u7981\u7528", " \n", " disable", " abandon", "    \n", "   \n"], ["\n", "  \n", "   \n", "    \n", " \n", "\u7981\u7528", "\n   \n", "        \n"], ["\n", "  \n", " eliminate", "   \n", "    \n", "\u7981\u7528", " \n", " eliminates"], ["\n", "  \n", " eliminate", "\u7981\u7528", "   \n", "    \n", " disable", " Elim"], ["\n", " eliminate", "  \n", " Elim", " implement", "\u7981\u7528", " disable", " eliminates"], ["\n", "  \n", " eliminate", " \n", " implement", "    \n", "   \n", " Elim"], ["\n", "  \n", " eliminate", " \n", " Elim", " implement", "    \n", "   \n"], ["\n", "  \n", " Implement", " \n", " Elim", " implement", " You", " Move"]], "p": [[0.6185, 0.0739, 0.0694, 0.0508, 0.0328, 0.0165, 0.0155, 0.0121], [0.1378, 0.1142, 0.0651, 0.0371, 0.0348, 0.0307, 0.0307, 0.0239], [0.3135, 0.2442, 0.0292, 0.0292, 0.0292, 0.0177, 0.0156, 0.0156], [0.032, 0.0301, 0.0283, 0.0283, 0.0172, 0.0161, 0.0118, 0.0111], [0.0589, 0.0459, 0.0405, 0.0231, 0.0159, 0.0159, 0.014, 0.014], [0.03, 0.0282, 0.0206, 0.0206, 0.0206, 0.0182, 0.0171, 0.0161], [0.0973, 0.0712, 0.0554, 0.0489, 0.0358, 0.0316, 0.0316, 0.0262], [0.0851, 0.0377, 0.0355, 0.0313, 0.0276, 0.0276, 0.0244, 0.0244], [0.1143, 0.0612, 0.0507, 0.0371, 0.0328, 0.0272, 0.0272, 0.0225], [0.0736, 0.0475, 0.0475, 0.0186, 0.0175, 0.0175, 0.0094, 0.0094], [0.136, 0.0323, 0.0268, 0.0173, 0.0143, 0.0143, 0.0143, 0.0135], [0.0905, 0.0401, 0.0354, 0.0276, 0.0148, 0.0108, 0.0108, 0.0095], [0.0495, 0.0249, 0.0219, 0.0194, 0.0194, 0.0171, 0.0125, 0.0097], [0.0382, 0.0279, 0.0116, 0.0097, 0.0091, 0.0085, 0.0085, 0.0085], [0.0741, 0.024, 0.0226, 0.0155, 0.0129, 0.0129, 0.0088, 0.0078], [0.0347, 0.027, 0.027, 0.0254, 0.0128, 0.012, 0.0082, 0.0082], [0.0332, 0.0228, 0.0214, 0.0201, 0.0147, 0.0122, 0.0115, 0.0108], [0.0209, 0.0153, 0.0153, 0.0135, 0.0105, 0.0099, 0.0099, 0.0093], [0.0311, 0.0122, 0.0115, 0.0095, 0.0084, 0.0065, 0.0061, 0.0058], [0.7531, 0.0147, 0.0029, 0.0024, 0.0023, 0.0021, 0.0018, 0.0016], [0.9815, 0.0011, 0.0004, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.0237, 0.0064, 0.0044, 0.0044, 0.0044, 0.0036, 0.0028, 0.0027], [0.0552, 0.0518, 0.0191, 0.0102, 0.0075, 0.0066, 0.0066, 0.0062], [0.0928, 0.0467, 0.0412, 0.025, 0.0195, 0.0126, 0.0111, 0.0081], [0.5642, 0.2352, 0.0299, 0.0248, 0.0086, 0.0055, 0.0015, 0.0013], [0.0913, 0.0459, 0.0315, 0.0169, 0.0131, 0.0124, 0.009, 0.0085], [0.7496, 0.0423, 0.0047, 0.0027, 0.0025, 0.0022, 0.002, 0.0019], [0.9202, 0.0458, 0.0066, 0.0013, 0.0011, 0.0009, 0.0007, 0.0005], [0.8412, 0.0288, 0.0068, 0.0044, 0.0044, 0.0032, 0.003, 0.0022], [0.5542, 0.0516, 0.0516, 0.0354, 0.0167, 0.0139, 0.0102, 0.0095], [0.4541, 0.2145, 0.0373, 0.0309, 0.029, 0.0176, 0.0107, 0.0054], [0.4407, 0.0464, 0.0436, 0.041, 0.0142, 0.0142, 0.0133, 0.0097], [0.0897, 0.0843, 0.0291, 0.0227, 0.0138, 0.0138, 0.0089, 0.0083], [0.1187, 0.0984, 0.0984, 0.03, 0.0161, 0.0118, 0.0081, 0.0076], [0.1398, 0.1159, 0.0961, 0.0293, 0.0157, 0.013, 0.0115, 0.0101], [0.2418, 0.1216, 0.0836, 0.0693, 0.0211, 0.0155, 0.0145, 0.012], [0.311, 0.138, 0.0477, 0.0477, 0.0225, 0.0137, 0.0113, 0.0106], [0.252, 0.1436, 0.0678, 0.0438, 0.0234, 0.0161, 0.0161, 0.0118], [0.2526, 0.1736, 0.0439, 0.0321, 0.025, 0.0195, 0.0183, 0.0118], [0.2295, 0.1788, 0.0793, 0.0242, 0.0227, 0.0177, 0.0147, 0.0101], [0.21, 0.1124, 0.0875, 0.0208, 0.0195, 0.0172, 0.0172, 0.0134], [0.2226, 0.0928, 0.0679, 0.025, 0.022, 0.0183, 0.0172, 0.0142], [0.1776, 0.1568, 0.0509, 0.035, 0.0256, 0.0199, 0.0155, 0.0155], [0.1882, 0.0889, 0.0394, 0.0371, 0.0371, 0.0348, 0.0225, 0.0186], [0.3664, 0.0817, 0.0528, 0.0341, 0.022, 0.0194, 0.0182, 0.0182], [0.3575, 0.149, 0.1315, 0.0484, 0.0293, 0.0259, 0.0229, 0.0139], [0.4189, 0.12, 0.0935, 0.0642, 0.0323, 0.0209, 0.0184, 0.0162], [0.2951, 0.179, 0.123, 0.0453, 0.0311, 0.0292, 0.0258, 0.0242], [0.1067, 0.0885, 0.0885, 0.0733, 0.0689, 0.0504, 0.0369, 0.0346], [0.9215, 0.0131, 0.0116, 0.0102, 0.008, 0.0055, 0.0038, 0.0028], [0.9582, 0.0225, 0.005, 0.0035, 0.003, 0.0018, 0.001, 0.0008], [0.8286, 0.1121, 0.0364, 0.0104, 0.0034, 0.0009, 0.0008, 0.0006], [0.7332, 0.1636, 0.0195, 0.0195, 0.0087, 0.0049, 0.0046, 0.0032], [0.5088, 0.2724, 0.1002, 0.0473, 0.0224, 0.0064, 0.0047, 0.0018], [0.3779, 0.3335, 0.0955, 0.0579, 0.031, 0.031, 0.0069, 0.0054], [0.2833, 0.1947, 0.1338, 0.0812, 0.0338, 0.0299, 0.0218, 0.0193], [0.6742, 0.281, 0.0159, 0.0075, 0.0051, 0.0035, 0.001, 0.001], [0.8193, 0.1424, 0.0132, 0.0043, 0.0033, 0.002, 0.0017, 0.0016], [0.8649, 0.0912, 0.0109, 0.0058, 0.004, 0.0031, 0.0021, 0.0019], [0.9575, 0.0175, 0.0106, 0.0016, 0.0013, 0.0013, 0.0011, 0.0009], [0.9778, 0.0109, 0.0033, 0.0009, 0.0007, 0.0007, 0.0005, 0.0004], [0.9731, 0.0139, 0.0021, 0.0019, 0.0008, 0.0006, 0.0006, 0.0003], [0.9898, 0.008, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 530, "top": [[" \u2013", ".", " \u2013,", "\u2013", "   \n", "\u200b\u200b", " \u200b\u200b", "\u2013and"], ["**\u2013", " \u2013**", "\u52a0\u62ff\u5927\u7684", "   \n", " **\u2013", " Guta", "\u2013and", "CallCheck"], ["\u2026..", "\u3002", "\u2026.", ".", ".\u2013", "\u2013", "\u2026\u2026", "\u2013and"], [" **\u201e", "\u52a0\u62ff\u5927", " ``(", "\uff0a\uff0a\uff0a\uff0a", "---</", "----------</", "\uff3f\uff3f", " milfs"], ["\u0627", " \u201e", " (\u201e", ".\u201c", "ly", " \uff0c", "!\u201c", "a"], ["\uff01", "\u5728", "\u3002", " \u200b\u200b", "\u0627", " \uff0c", "\u4e2d", " \uff08"], ["\u4e2d", "\u3002", "\uff01", "\u5728", "\uff08", "\n\n", "\u548c", ".\u201c"], [" **\u201e", "\uff01", "\u5728", ".:**", "\u4e2d", "\u3002", "\u201e", "!\u201c"], ["   \n\n", "\n\n", " \n\n", "    \n\n", "  \n\n", " \u200b\u200b", ".\u201c", "\ufe0e"], [" **\u201e", ".:**", "\u9ecf", "aviors", "avior", "\ufe0e", "\u0103\u021b", " nonprofits"], [" \u200b\u200b", "\u0627", "\n\n", "ly", "  \n  \n", ".\u201c", " ......", " \u201e"], [" **\u201e", " **\u3010", " *\u201e", "(___", " *\u201c", "aviors", " ***", "avirus"], [" **\u201e", "ly", " *\u201e", "aviors", " freaking", "avior", ".:**", " impactful"], [" **\u201e", " freaking", " impactful", "aviors", "avior", "unky", " nonprofits", " (\u201e"], [" savvy", " showcasing", " arguably", " impactful", " transitioning", " \u201e", " incredibly", " freaking"], [" showcasing", " incredibly", " savvy", " simplistic", " arguably", " seamlessly", "a", " skyrocket"], [" showcasing", " arguably", " \u2013", "\u2013and", " overarching", " transitioning", " priorit", "\u2013"], [" showcasing", " transitioning", " priorit", " overarching", " impactful", " savvy", "\u2013and", " incredibly"], [" transitioning", " savvy", " arguably", " showcasing", " incredibly", " simplistic", " priorit", " overarching"], ["<|endoftext|>", " arguably", " overarching", " transitioning", " swiftly", " heavily", " simplistic", " showcasing"], ["<|endoftext|>", "a", " \n\n", " swiftly", " heavily", " arguably", " overarching", "  \n\n"], [" arguably", " **\u201e", " priorit", " transitioning", " swiftly", " heavily", " simplistic", " overarching"], [" arguably", " swiftly", " heavily", " --", " overarching", " transitioning", " priorit", " ``"], [" arguably", " --", "<|endoftext|>", " swiftly", " heavily", " ultimately", " ``", " \n\n"], [" \n\n", "\n\n", "  \n\n", "   \n\n", " \n\n\n", "  \n  \n", "    \n\n", "     \n\n"], [" **\u2018", " \n\n", " **", " *\u201c", " **\u201c", " transitioning", " arguably", " impactful"], [" \n\n", "\n\n", " leveraging", " transitioning", " priorit", " arguably", " heavily", " overarching"], ["\n\n", " \n\n", "  \n\n", " arguably", "   \n\n", " heavily", " --", " priorit"], ["\n\n", " \n\n", "  \n\n", " leveraging", "   \n\n", " arguably", " priorit", " heavily"], [" \n\n", "\n\n", "  \n\n", " priorit", " --", " \u2014", " heavily", "   \n\n"], [" \n\n", "  \n\n", "\n\n", " heavily", " \u2014", " priorit", " aggressively", " arguably"], [" heavily", " \n\n", " priorit", " aggressively", " meticulously", "  \n\n", " --", " \u2014"], [" heavily", " ,", " \u2014", " aggressively", " over", " arguably", " strategically", " \u2013"], ["<|endoftext|>", " heavily", " aggressively", " meticulously", " priorit", " \u2014", " strategically", " \u2013"], ["<|endoftext|>", " meticulously", " heavily", " aggressively", " priorit", " \u2013", " strategically", " leveraging"], ["<|endoftext|>", " meticulously", " \u2013", " aggressively", " priorit", " heavily", " \u2014", " leveraging"], [" aggressively", " priorit", " meticulously", " leveraging", " heavily", "<|endoftext|>", " strategically", " \u2014"], [" aggressively", " priorit", " meticulously", "<|endoftext|>", " leveraging", " heavily", " strategically", " targeting"], ["<|endoftext|>", " aggressively", " priorit", " meticulously", " leveraging", " \u2014", " \u2013", " heavily"], ["<|endoftext|>", " aggressively", " priorit", " leveraging", " meticulously", "  \n\n", " strategically", " \u2013"], ["<|endoftext|>", " aggressively", " leveraging", " priorit", " meticulously", "\ufffd", " strategically", " heavily"], [" aggressively", " leveraging", " priorit", " meticulously", " implementing", " strategically", " heavily", " tweaking"], [" aggressively", " leveraging", " priorit", " meticulously", " implementing", " targeting", " strategically", " tweaking"], [" aggressively", " leveraging", " priorit", " meticulously", " targeting", " implementing", " aggressive", " heavily"], [" aggressively", " priorit", " leveraging", " meticulously", " aggressive", " relentless", " forced", " implementing"], [" aggressively", " meticulously", " priorit", " leveraging", " **", " aggressive", " strict", " rigor"], [" **", "-**", " aggressively", " meticulously", " **-", " **\"", ":**", " leveraging"], [" aggressively", " meticulously", " **", " leveraging", " relentless", "-**", " priorit", " drastically"], [" **", "-**", ":<", "  \n", " **-", "\uff1a**", ":**", ":\\"], [":<", "-**", "  \n", " **", ":\\", ":**", "\uff1a<", "<strong"], ["  \n", "-**", ":<", "   \n", "  \r\n", ":*", ":\\", ":"], ["-**", " **", " *", " **\u2013", "  \n", "  ", " **-", " **\u2014"], ["-**", " **", " **\u2013", " *", " **-", " **\u2014", " *\u201c", " **\""], [" *", "-**", " **", "   ", " **-", " **\u2013", " *\u201c", " *\\"], [" *", "   ", "-**", " **", " *\u201c", " *\u2013", " **\u2013", " **-"], [" *", " *\u2013", "-**", " *\u201c", " *\\", " *</", " **", "-*"], [" *", " *\u201c", " *\u2013", "-*", " *\\", "*", " *\"", "   "], [" *", "   ", " *\u201c", " *\u2013", " *\\", " *\"", "*", " *\u00ab"], [" *", "   ", " *\u201c", " *\u2013", " *\"", " *\\", " *-", " *\u00ab"], [" *", "   ", " *\u201c", " *\"", " *\u2013", "  ", "*", " *-"], [" *", "   ", " *\u201c", "  ", " *\"", " *-", "*", "    "], ["   ", " *", "  ", "    ", "       ", "     ", " *-", "*"], ["   ", " *", "  ", "    ", "       ", "*", "    \n", "     "]], "p": [[0.8818, 0.0771, 0.0076, 0.0052, 0.0032, 0.003, 0.0022, 0.0021], [0.0586, 0.0139, 0.0058, 0.0048, 0.0048, 0.0048, 0.0042, 0.004], [0.193, 0.1412, 0.1326, 0.097, 0.0667, 0.0589, 0.0553, 0.0245], [0.1062, 0.0119, 0.0064, 0.006, 0.0056, 0.0044, 0.0044, 0.0039], [0.0857, 0.0805, 0.0589, 0.0553, 0.0488, 0.038, 0.0315, 0.0315], [0.2484, 0.1102, 0.0973, 0.0521, 0.0381, 0.0358, 0.0279, 0.0262], [0.1965, 0.1965, 0.112, 0.1052, 0.0638, 0.0283, 0.0266, 0.0142], [0.1329, 0.0668, 0.059, 0.052, 0.0489, 0.0489, 0.0358, 0.0316], [0.3331, 0.1478, 0.0791, 0.0656, 0.048, 0.048, 0.031, 0.0166], [0.0495, 0.0282, 0.0206, 0.0161, 0.011, 0.0104, 0.0097, 0.0076], [0.0958, 0.0581, 0.0453, 0.0353, 0.0214, 0.0189, 0.0189, 0.0189], [0.2967, 0.0215, 0.0108, 0.0102, 0.0095, 0.009, 0.0084, 0.0079], [0.3379, 0.0148, 0.0096, 0.0085, 0.0058, 0.0058, 0.0048, 0.004], [0.0584, 0.0167, 0.0157, 0.0157, 0.007, 0.0065, 0.0051, 0.0045], [0.0262, 0.0192, 0.0192, 0.0169, 0.014, 0.0116, 0.0109, 0.0103], [0.0457, 0.0404, 0.0216, 0.0116, 0.0116, 0.0096, 0.0096, 0.0096], [0.0544, 0.0351, 0.033, 0.031, 0.0274, 0.0257, 0.0213, 0.0213], [0.0547, 0.0513, 0.0258, 0.0189, 0.0167, 0.0157, 0.0157, 0.0147], [0.0295, 0.0277, 0.0202, 0.0202, 0.019, 0.0148, 0.0148, 0.0139], [0.058, 0.0257, 0.0242, 0.0227, 0.0213, 0.0156, 0.0147, 0.0138], [0.9385, 0.0028, 0.0023, 0.0022, 0.0012, 0.0012, 0.0008, 0.0007], [0.0394, 0.0145, 0.0136, 0.0113, 0.0113, 0.01, 0.01, 0.0094], [0.0467, 0.0235, 0.0152, 0.0143, 0.0092, 0.0086, 0.0086, 0.0086], [0.0419, 0.0271, 0.0254, 0.0239, 0.0186, 0.01, 0.0088, 0.0078], [0.7134, 0.1405, 0.0965, 0.0179, 0.0018, 0.0015, 0.0014, 0.0011], [0.0483, 0.0376, 0.0243, 0.0243, 0.0189, 0.0178, 0.0167, 0.0167], [0.1411, 0.0335, 0.0191, 0.0149, 0.0131, 0.0131, 0.0123, 0.0116], [0.4736, 0.4179, 0.0414, 0.003, 0.0025, 0.0023, 0.0021, 0.0009], [0.4718, 0.3674, 0.068, 0.0056, 0.0046, 0.0041, 0.0025, 0.0021], [0.5757, 0.1456, 0.1285, 0.0068, 0.0068, 0.0064, 0.0056, 0.0053], [0.3815, 0.1164, 0.0623, 0.0294, 0.026, 0.0178, 0.0115, 0.0115], [0.0829, 0.0687, 0.0269, 0.0237, 0.0223, 0.0185, 0.0185, 0.0185], [0.0466, 0.0265, 0.0171, 0.0133, 0.0133, 0.0125, 0.0098, 0.0098], [0.0823, 0.0602, 0.0389, 0.0365, 0.0303, 0.0303, 0.0221, 0.0172], [0.3978, 0.0307, 0.0288, 0.0288, 0.0198, 0.0106, 0.01, 0.0094], [0.5508, 0.0375, 0.0331, 0.0292, 0.0242, 0.0227, 0.0114, 0.0095], [0.1309, 0.0958, 0.0746, 0.0399, 0.0311, 0.0292, 0.0228, 0.0089], [0.1106, 0.0671, 0.063, 0.0491, 0.0461, 0.0218, 0.0192, 0.011], [0.1139, 0.0887, 0.0573, 0.0475, 0.0288, 0.0198, 0.0145, 0.0128], [0.2325, 0.0755, 0.0552, 0.038, 0.0335, 0.0203, 0.014, 0.009], [0.1455, 0.1, 0.057, 0.0472, 0.0286, 0.0099, 0.0093, 0.0082], [0.1884, 0.0693, 0.0575, 0.0255, 0.0155, 0.0145, 0.01, 0.01], [0.196, 0.0817, 0.0636, 0.032, 0.0125, 0.0125, 0.0118, 0.0086], [0.3112, 0.0739, 0.0613, 0.0212, 0.0137, 0.0106, 0.0106, 0.0094], [0.3678, 0.0439, 0.0413, 0.0195, 0.0134, 0.0081, 0.0072, 0.0067], [0.4955, 0.0522, 0.0382, 0.0337, 0.028, 0.0124, 0.0071, 0.0062], [0.1756, 0.1207, 0.1065, 0.1, 0.0325, 0.0287, 0.0287, 0.0287], [0.3003, 0.265, 0.0522, 0.0218, 0.0169, 0.0124, 0.0116, 0.0097], [0.696, 0.1994, 0.0185, 0.0164, 0.0144, 0.0099, 0.0088, 0.0068], [0.4337, 0.2049, 0.1096, 0.0587, 0.0457, 0.0191, 0.0191, 0.0168], [0.7075, 0.1085, 0.0658, 0.0166, 0.0147, 0.013, 0.0079, 0.0069], [0.6961, 0.0831, 0.0347, 0.021, 0.021, 0.0127, 0.0113, 0.0093], [0.725, 0.126, 0.0361, 0.0248, 0.0103, 0.0076, 0.0055, 0.0034], [0.4953, 0.234, 0.1105, 0.0522, 0.0218, 0.015, 0.0132, 0.0103], [0.6104, 0.1202, 0.1061, 0.0237, 0.0184, 0.0184, 0.0163, 0.0144], [0.9556, 0.0083, 0.0073, 0.0064, 0.005, 0.0039, 0.0018, 0.0018], [0.9936, 0.0025, 0.0017, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9933, 0.0022, 0.0022, 0.001, 0.0003, 0.0002, 0.0002, 0.0001], [0.9915, 0.0036, 0.0025, 0.0009, 0.0003, 0.0003, 0.0001, 0.0001], [0.9945, 0.0036, 0.0008, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9804, 0.018, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.6134, 0.3721, 0.0068, 0.0024, 0.0017, 0.0004, 0.0003, 0.0002], [0.9986, 0.001, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 531, "top": [[".", " \u2013", "  \n\n", "    \n", "  \n", "\u201d.", ",", "\u00a0"], ["\u2011", "    \n", "  \r\n", "    \r\n", " Harbour", "sville", "\u0d7c", "avour"], [".", ",", "\u2013", "\u2011", ".\u2013", "\u2026..", "\u2013and", "\u3002"], ["\uff3f\uff3f", "\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", "\uff0d\uff0d\uff0d\uff0d", " \u041a\u0440\u0430\u0441\u0438", "erdale", " milfs", "ielen"], ["\uff20", "(@", " (@", ".@", "\uff06", " @", " \"@", " \ufffd"], [" \uff08", " \uff09", "\uff01", "!\u201d.", "\u3002", "\uff1a", "\uff0c", " */,"], ["\u3002", "\uff01", " \ufffd", "\u201d.", " \uff08", "\u201d\u3002", "\u5728", "\uff0c"], ["    \n", "\uff20", "   ", "     ", "    \n\n", "    \r\n", " \ufffd", "(@"], ["!\u201d.", "    \n", "\u201d.", " \n\n", "    \n\n", "  \n\n", "\u201d,", " \n    \n"], [",", "\u0451\u0440", "\u0436\u0451", "ness", "\u2011", " */,", " \u0442\u0440\u0451", "sWith"], [" ", " \ufffd", "   ", ",", " @", "er", "\\n", "."], [" **", " **\u300c", " ***", " \u00bb**", " **+", " **#", "erweise", " '''"], [" **", " **\u300c", " \u00bb**", "iante", " \u00bb,", "erweise", "erdale", "\u83f8"], [" vibes", "aan", "er", "erweise", " visuals", "\u0436\u0451", " tyres", "ation"], [" critically", " strategically", " ", " heavily", " key", " numerous", " intric", " \ufffd"], [" strategically", " savvy", " myriad", " numerous", " back", " multiple", " heavily", " arguably"], [",", " numerous", "a", " myriad", " heavily", " util", "o", " many"], [" numerous", " various", " savvy", " heavily", " strategically", " typically", " many", " myriad"], [" myriad", " arguably", " numerous", " heavily", " strategically", " seemingly", " savvy", " typically"], [" myriad", " numerous", " heavily", " seemingly", " arguably", " largely", " typically", " swiftly"], ["<|endoftext|>", " myriad", " numerous", " \n\n", " heavily", " swiftly", " typically", " seemingly"], [" heavily", " rapidly", " many", " myriad", " numerous", " strategically", " various", " largely"], [" heavily", " numerous", " many", " rapidly", " various", " ,", " much", " quickly"], [" ,", " numerous", " many", " heavily", " various", " much", " over", " rapidly"], [" heavily", " \n\n", " many", " ,", " rapidly", " much", " numerous", " various"], [" heavily", " rapidly", " many", " various", " large", " eventually", " over", " numerous"], [" heavily", " many", " rapidly", " ,", " large", " **", " systems", " games"], [" ,", " many", " heavily", " over", " rapidly", " various", " large", " much"], [" heavily", " ,", " many", " rapidly", " large", " over", " quickly", " during"], [" **", " rapidly", " heavily", " many", " large", " multiple", " ,", " quickly"], [" many", " during", " ,", " large", " rapidly", " heavily", " over", " quickly"], [" many", " ,", " during", " large", " over", " rapidly", " work", " in"], [" many", " during", " ,", " rapidly", " over", " large", " numerous", " various"], [" multiple", " many", " workflows", " games", " systems", " technologies", " rapidly", " dozens"], [" workflows", " algorithms", " multiple", " technologies", " games", " rapidly", " countless", " continuously"], [" countless", " algorithms", " workflows", " games", " multiple", " dozens", " continuously", " \u2026"], [" algorithms", " multiple", " games", " countless", " continuously", " workflows", " rapidly", " dozens"], [" games", " continuously", " game", " gameplay", " reuse", " constantly", " countless", " animations"], [" garbage", " during", " games", " discarded", " recycling", " continuously", " constantly", " recycled"], [" continuously", " during", " constantly", " recycling", " garbage", " games", " countless", " every"], [" during", " continuously", " During", " recycling", " constantly", " memory", " garbage", " repeatedly"], [" recycling", " recycled", " reuse", " recycle", " recycl", " reusable", " Recycling", " garbage"], [" recycling", " recycle", " transient", " recycled", " reusable", " reuse", " recycl", " garbage"], [" during", " During", "During", " avoid", " Avoid", "during", " recycling", " transient"], [" during", " During", "during", "During", " recycling", " durante", " avoid", " recycle"], [" during", " During", " avoid", "during", " Avoid", " recycling", "During", " avoidance"], [" during", " During", " avoid", " Avoid", "during", "During", " avoidance", " durante"], [" During", " during", "During", "during", " durante", " Avoid", " Every", " avoid"], [" during", " During", "during", " durante", "During", " durant", " EVERY", " selama"], [" During", " during", "during", " EVERY", " durante", " **", "During", " NEVER"], [" **", " During", " EVERY", " **:", " **-", "-**", "**:", " NEVER"], [" During", " **", " NEVER", "-**", " **:", "\u675c\u7edd", " EVERY", " **-"], [" **", "-**", " **-", "\u675c\u7edd", " **:", " NEVER", "\u4e25\u7981", " **#"], [" **", "-**", " **-", "\u675c\u7edd", " eliminate", " **\u25a0", " -**", "\u4e25\u7981"], [" allocations", " alloc", " allocate", "alloc", " Allocate", " allocation", " allocating", "Alloc"], [" allocations", " alloc", "alloc", " allocate", " allocation", " Allocate", " allocating", " Alloc"], [" allocations", "alloc", " alloc", " allocate", " Allocate", " allocation", " Alloc", " allocating"], [" allocations", " allocate", " alloc", "alloc", " Allocate", " allocation", " Alloc", " allocating"], [" allocations", " allocate", " alloc", " Allocate", " allocation", "alloc", " Allocation", " Alloc"], [" allocate", " allocations", " alloc", " allocation", " Allocate", "alloc", " Allocation", " Alloc"], [" Allocate", " allocate", " alloc", " allocations", " Alloc", " allocation", " Allocation", "Allocate"], [" Allocate", " allocate", " *", " alloc", " Zero", " allocations", " Alloc", " eliminate"], [" *", " -", " Allocate", "*", " *\u201c", " *-", " \u2022", " Zero"]], "p": [[0.2902, 0.1459, 0.0571, 0.0537, 0.0306, 0.027, 0.021, 0.0185], [0.0911, 0.0096, 0.0062, 0.0051, 0.004, 0.0031, 0.0017, 0.0017], [0.2296, 0.2157, 0.0957, 0.0375, 0.0352, 0.0201, 0.0177, 0.0122], [0.0114, 0.01, 0.0042, 0.0039, 0.002, 0.0019, 0.0017, 0.0017], [0.2503, 0.0233, 0.015, 0.0117, 0.0086, 0.0067, 0.0067, 0.0067], [0.0628, 0.059, 0.059, 0.0336, 0.0204, 0.0116, 0.0102, 0.0096], [0.1725, 0.0867, 0.0676, 0.0436, 0.0436, 0.0385, 0.03, 0.0282], [0.2492, 0.0592, 0.0433, 0.0218, 0.018, 0.017, 0.015, 0.0132], [0.1178, 0.1178, 0.081, 0.081, 0.063, 0.0407, 0.0298, 0.028], [0.0457, 0.0216, 0.0158, 0.0055, 0.004, 0.0038, 0.0038, 0.0033], [0.1239, 0.1094, 0.055, 0.0517, 0.0355, 0.0277, 0.026, 0.019], [0.2069, 0.0263, 0.0066, 0.0052, 0.0046, 0.0026, 0.0026, 0.0026], [0.0661, 0.0167, 0.009, 0.0033, 0.0029, 0.0026, 0.0024, 0.0023], [0.0032, 0.0021, 0.0021, 0.0018, 0.0017, 0.0016, 0.0016, 0.0016], [0.0053, 0.0036, 0.0034, 0.0032, 0.0032, 0.003, 0.003, 0.0028], [0.005, 0.0036, 0.0036, 0.0036, 0.0034, 0.0034, 0.003, 0.003], [0.0165, 0.0107, 0.0083, 0.0083, 0.0065, 0.0057, 0.0054, 0.0047], [0.0057, 0.0032, 0.003, 0.003, 0.0027, 0.0024, 0.0024, 0.002], [0.0181, 0.0091, 0.0067, 0.0067, 0.0063, 0.0049, 0.0046, 0.0043], [0.0359, 0.015, 0.0103, 0.0091, 0.008, 0.0066, 0.0066, 0.0052], [0.662, 0.0065, 0.0054, 0.0042, 0.0029, 0.0025, 0.0019, 0.0017], [0.0105, 0.0044, 0.0039, 0.0032, 0.0032, 0.0028, 0.0028, 0.0023], [0.0216, 0.0148, 0.0139, 0.0123, 0.0084, 0.0066, 0.0062, 0.0051], [0.0345, 0.0163, 0.0163, 0.0153, 0.0127, 0.0127, 0.0099, 0.0082], [0.0276, 0.0244, 0.019, 0.0148, 0.0139, 0.0131, 0.0095, 0.0079], [0.031, 0.0121, 0.0107, 0.0074, 0.0057, 0.0047, 0.0047, 0.0047], [0.0152, 0.0134, 0.0086, 0.0086, 0.0086, 0.0081, 0.0063, 0.0059], [0.101, 0.0289, 0.0255, 0.0165, 0.0137, 0.0128, 0.01, 0.0083], [0.0304, 0.0268, 0.0237, 0.0196, 0.0127, 0.0119, 0.0087, 0.0087], [0.0581, 0.0258, 0.0242, 0.0214, 0.0177, 0.013, 0.0122, 0.0095], [0.0571, 0.0306, 0.0287, 0.0254, 0.0238, 0.021, 0.0128, 0.012], [0.0885, 0.0537, 0.0306, 0.0224, 0.0164, 0.0128, 0.0113, 0.0106], [0.0936, 0.0323, 0.0304, 0.0222, 0.0173, 0.0144, 0.0144, 0.0144], [0.0317, 0.0279, 0.0279, 0.0192, 0.0192, 0.0169, 0.0159, 0.0124], [0.0442, 0.039, 0.0304, 0.0268, 0.0143, 0.0135, 0.0093, 0.0093], [0.0335, 0.0314, 0.0295, 0.0277, 0.0216, 0.0179, 0.0158, 0.0131], [0.0414, 0.0267, 0.0251, 0.0221, 0.0184, 0.0172, 0.0162, 0.0162], [0.0373, 0.0351, 0.0146, 0.0137, 0.0129, 0.0129, 0.0121, 0.0114], [0.0451, 0.0398, 0.033, 0.0257, 0.0257, 0.0213, 0.0137, 0.0129], [0.0649, 0.0419, 0.0419, 0.0288, 0.0239, 0.0211, 0.0211, 0.0145], [0.0641, 0.0441, 0.0389, 0.0285, 0.0267, 0.0184, 0.0143, 0.0143], [0.2022, 0.0656, 0.0544, 0.0511, 0.0374, 0.0257, 0.0241, 0.0213], [0.1577, 0.0657, 0.0617, 0.0481, 0.0452, 0.0374, 0.0352, 0.0242], [0.1781, 0.1303, 0.0291, 0.0213, 0.02, 0.02, 0.0176, 0.0129], [0.4157, 0.1964, 0.0387, 0.0283, 0.0172, 0.0126, 0.0104, 0.0086], [0.4627, 0.1599, 0.0296, 0.0179, 0.0169, 0.0158, 0.0109, 0.0085], [0.2917, 0.2005, 0.0693, 0.0574, 0.0289, 0.0186, 0.0186, 0.0128], [0.4154, 0.4154, 0.0528, 0.0341, 0.0125, 0.0056, 0.0038, 0.0032], [0.5712, 0.3058, 0.0414, 0.0322, 0.0195, 0.0026, 0.0015, 0.0009], [0.3211, 0.1338, 0.0524, 0.0492, 0.0435, 0.0408, 0.0281, 0.0124], [0.099, 0.0724, 0.053, 0.0468, 0.0302, 0.0284, 0.0221, 0.0207], [0.0688, 0.0607, 0.0444, 0.0368, 0.0287, 0.021, 0.0174, 0.0163], [0.3487, 0.1547, 0.0443, 0.0345, 0.0174, 0.0144, 0.0144, 0.0127], [0.4436, 0.1737, 0.0439, 0.0266, 0.0143, 0.0092, 0.0056, 0.0056], [0.2707, 0.2389, 0.2108, 0.1128, 0.047, 0.0285, 0.0252, 0.0173], [0.3916, 0.2096, 0.1632, 0.099, 0.0284, 0.0284, 0.0195, 0.0195], [0.4598, 0.1317, 0.1317, 0.0905, 0.0428, 0.0333, 0.0333, 0.0229], [0.4179, 0.2237, 0.1197, 0.0823, 0.0641, 0.0303, 0.0162, 0.0143], [0.4325, 0.2043, 0.0965, 0.0852, 0.0456, 0.0313, 0.0148, 0.0131], [0.3467, 0.2103, 0.1638, 0.0993, 0.0877, 0.0285, 0.0152, 0.0134], [0.5203, 0.3156, 0.0621, 0.0294, 0.0202, 0.0122, 0.0065, 0.0058], [0.4691, 0.2511, 0.1726, 0.034, 0.0086, 0.0086, 0.0076, 0.0076], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 532, "top": [[" *", " \u2013", " *\u2013", "-*", ".", ".*", "\u20ac\u201c", "e"], [" *\u2013", ";*", " *\u201c", "\u20ac\u201c", "*\u201c.", " *.*", " *\\", "-*"], [" *\u2013", ";*", "\u2026*", ".\u2013", "\u20ac\u201c", "\u2013", "\u2013and", " *\u201c"], [" *\u201c", " *__", " *}", " Guta", "*\u201c.", " *\u2013", " Blowjob", " *"], [" *", " *\u201c", " *}", " *\u2013", "-*", ":*", " *&", "\u20ac\u201c"], [" *\u201c", " *", " *\u2013", ":*", " *}", "\u20ac\u201c", "-*", ";*"], [" *", " *\u201c", " *\u2013", ":*", ".\ufffd", "!*", "-*", "e"], [" *\u201c", " *", " *\u2013", "-*", "\ufffds", ":*", " *}", ".\ufffd"], [" *\u201c", " *", " *&", " *}", " *\u2013", "\ufffds", "-*", " *__"], [" *\u201c", "\ufffds", "\ufffdt", " *&", " *", ":*", " *\u2013", "\ufe0f"], ["\ufe0f", " *", "e", " *\u201c", "ers", "\ufffds", ".\ufffd", ":*"], [" *", " *\u201c", " *__", " *&", "\ufe0f", "\ufffdt", " *}", "ers"], ["\ufe0f", "ers", " *", " *\u201c", "ity", " *__", " *&", "ation"], ["ers", "\ufe0f", "ity", " *", "ation", "e", "ingly", "iest"], ["ers", "e", "\ufe0f", "ity", "i", "ation", " &", "ingly"], ["\ufe0f", "ers", "e", "i", "ity", "ation", " *", "ing"], ["e", "ers", "\ufe0f", "i", "ity", "ation", "\u2013", "ing"], ["\ufe0f", "e", "ers", "i", "ity", " *", "\u20ac\u201c", "ation"], ["\ufe0f", "i", "e", " *", "ers", "ity", "ation", " *\u201c"], ["\ufe0f", "e", "i", " &", " *", "ers", "&", "&nbsp"], ["e", "i", " *", "\ufe0f", "ers", " &", "ity", "<|endoftext|>"], [" *", "ers", "\ufe0f", "ity", "ation", "ier", " *&", "e"], [" *", " &", "i", "ers", "e", "\ufe0f", "ation", "ity"], [" *", " &", "e", "i", "ers", " ,", "\ufe0f", " heavily"], [" *", "i", " &", "\ufe0f", "e", "\n\n", "  \n\n", "&nbsp"], [" *", "\ufe0f", " *\u201c", "ers", " *&", " **", " &", " heavily"], [" *", "\ufe0f", "ers", " *\u201c", " **", " heavily", "i", " :"], [" *", "\ufe0f", " heavily", "\n\n", "  \n\n", " \n\n", " **", " &"], [" *", "\ufe0f", "i", "  \n\n", " heavily", "e", "ers", " \n\n"], [" *", "\ufe0f", "  \n\n", " **", "i", " heavily", "e", " strategy"], [" *", " ,", " heavily", "  \n\n", " :", " .", " ", " \n\n"], [" *", " heavily", " &", " ,", "  \n\n", " key", " -", "i"], [" *", " heavily", " ,", " only", " on", " -", " just", " under"], [" *", " heavily", " strategically", "\ufe0f", " key", " **", " priorit", " focused"], [" *", "\ufe0f", " **", " heavily", " \u2013", "\u2011", " *\u201c", " strategically"], [" *", "\ufe0f", " \u2013", " **", "\u2011", " heavily", "<|endoftext|>", "\u200b"], [" *", "\ufe0f", " **", " heavily", " leveraging", " priorit", " aggressively", " strategically"], [" *", " **", "\ufe0f", " leveraging", " strategy", " heavily", " meticulously", " strategically"], [" *", " **", "\ufe0f", " strategy", " leveraging", " heavily", " aggressively", " meticulously"], [" **", " *", " strategy", "\ufe0f", " leveraging", " aggressively", " meticulously", " strategically"], [" *", " **", " strategy", " leveraging", "\ufe0f", " tech", " aggressively", " strategies"], [" strategy", " **", " *", " leveraging", " implementation", " aggressively", " strategies", " tech"], [" **", " strategy", " *", " leveraging", " implementation", " strategies", " meticulously", " aggressively"], [" **", " strategy", " leveraging", " implementation", " aggressively", " strategies", " *", " priorit"], [" **", " strategy", " aggressively", " *", " leveraging", " strict", " priorit", " implementation"], [" **", " *", " strategy", " aggressively", " strict", " meticulously", " rigor", " *@"], [" **", " *", " **+", ":**", " meticulously", " **#", " **-", " **\""], [" **", " *", " **+", ":**", " **#", "<strong", "\uff1a**", " meticulously"], [" **", " **+", " *", " **#", " **\"", "-**", " **:", " **:**"], [" **", " **+", " **#", " **:**", " **\"", ":**", "-**", "\uff1a**"], [" **", " **+", " **:**", " **#", " **:", " *", ":**", "\uff1a**"], [" **", ":**", " **+", " **#", "\uff1a**", " **\"", "-**", " **:**"], [" **", " **#", " **\"", " **+", "-**", "\uff1a**", "**", ":**"], [" **", " **+", " **#", " **\"", " **[", "**", "-**", ":**"], [" **", " **+", " *", " **#", "-**", " **\"", " **[", "\u7981\u7528"], [" **", " **+", "-**", " **#", " **\"", "**", "\uff1a**", ",**"], [" **", " **+", "-**", "  ", " **#", "**", " **\"", ";**"], [" **", " **+", "-**", " **#", "  ", " **\"", "**", ";**"], [" **", "  ", "-**", " **+", " **\"", "**", " **#", ";**"], [" **", "  ", " implement", " **\"", " **+", "-**", " disable", " **#"], [" **", "  ", " mandate", " implement", " mandates", " Implement", " mand", "\u5f3a\u5236"], [" **", "  ", " Zero", " mandate", " Force", " Implement", " implement", " Disable"], ["  ", " **", " Implement", " Allocate", " implement", " Zero", " Elim", " Force"]], "p": [[0.3656, 0.2675, 0.0676, 0.034, 0.0171, 0.0125, 0.0092, 0.0076], [0.4366, 0.0297, 0.014, 0.008, 0.0075, 0.004, 0.0038, 0.0035], [0.8155, 0.0204, 0.014, 0.0096, 0.0096, 0.008, 0.0062, 0.0031], [0.047, 0.0442, 0.0323, 0.0304, 0.0285, 0.0135, 0.0099, 0.0087], [0.7128, 0.1027, 0.0276, 0.026, 0.0096, 0.0054, 0.004, 0.0037], [0.4002, 0.1776, 0.1012, 0.0155, 0.0137, 0.0107, 0.0107, 0.01], [0.4133, 0.3648, 0.0206, 0.0193, 0.016, 0.0125, 0.0117, 0.0103], [0.3418, 0.2349, 0.0632, 0.0434, 0.0338, 0.0264, 0.0233, 0.017], [0.5526, 0.2304, 0.0201, 0.0201, 0.0178, 0.0138, 0.013, 0.013], [0.1375, 0.0784, 0.065, 0.0539, 0.0475, 0.0419, 0.0327, 0.0254], [0.3945, 0.1644, 0.088, 0.0605, 0.0471, 0.0304, 0.0237, 0.0163], [0.216, 0.1231, 0.1156, 0.04, 0.0228, 0.0214, 0.0214, 0.0147], [0.2338, 0.1252, 0.1105, 0.0232, 0.0217, 0.0169, 0.0132, 0.0124], [0.1959, 0.1729, 0.0465, 0.0182, 0.0125, 0.0111, 0.0092, 0.0071], [0.1699, 0.1323, 0.0968, 0.0802, 0.0625, 0.0429, 0.0096, 0.0079], [0.2568, 0.2129, 0.1765, 0.0506, 0.0327, 0.0254, 0.0083, 0.0057], [0.2155, 0.2155, 0.1577, 0.1084, 0.0213, 0.0074, 0.0065, 0.0061], [0.2128, 0.1999, 0.1557, 0.061, 0.0154, 0.0106, 0.0068, 0.0057], [0.199, 0.1065, 0.0829, 0.0829, 0.0503, 0.0287, 0.0127, 0.0112], [0.2838, 0.2211, 0.1833, 0.0409, 0.0264, 0.0206, 0.0181, 0.0141], [0.2494, 0.1254, 0.0592, 0.0523, 0.0407, 0.011, 0.0075, 0.0055], [0.1027, 0.0623, 0.0229, 0.0084, 0.0066, 0.0051, 0.004, 0.0037], [0.248, 0.0668, 0.0336, 0.0296, 0.0296, 0.014, 0.0055, 0.004], [0.1471, 0.0787, 0.0372, 0.0328, 0.0137, 0.0094, 0.0083, 0.0065], [0.3358, 0.0749, 0.0583, 0.0548, 0.0312, 0.0178, 0.0157, 0.013], [0.7282, 0.0265, 0.0092, 0.0052, 0.0041, 0.003, 0.003, 0.0019], [0.7176, 0.0405, 0.007, 0.0058, 0.0033, 0.0029, 0.0017, 0.0016], [0.4924, 0.0179, 0.014, 0.014, 0.0123, 0.0116, 0.0116, 0.009], [0.418, 0.0441, 0.0236, 0.0208, 0.0119, 0.0111, 0.0081, 0.0077], [0.419, 0.0323, 0.0236, 0.0184, 0.0143, 0.0143, 0.0112, 0.0072], [0.1631, 0.0235, 0.0221, 0.0195, 0.0152, 0.0118, 0.0098, 0.0098], [0.1027, 0.0355, 0.0229, 0.0168, 0.0168, 0.0084, 0.0084, 0.0079], [0.0754, 0.0277, 0.0203, 0.0075, 0.0075, 0.007, 0.0066, 0.0066], [0.081, 0.0434, 0.0181, 0.0132, 0.0117, 0.0117, 0.0091, 0.0085], [0.1486, 0.0312, 0.0293, 0.0258, 0.0201, 0.0138, 0.0095, 0.0089], [0.1872, 0.0884, 0.0418, 0.0287, 0.027, 0.027, 0.0106, 0.0088], [0.1211, 0.0445, 0.0254, 0.021, 0.0154, 0.0154, 0.0136, 0.0136], [0.3507, 0.1005, 0.0347, 0.0106, 0.0093, 0.0082, 0.0068, 0.0057], [0.2452, 0.0547, 0.0514, 0.0167, 0.0095, 0.0089, 0.0089, 0.0084], [0.2044, 0.2044, 0.0313, 0.0277, 0.0108, 0.0102, 0.0096, 0.0084], [0.126, 0.0982, 0.0814, 0.0248, 0.0206, 0.0171, 0.0117, 0.0117], [0.1119, 0.0412, 0.0363, 0.025, 0.022, 0.0195, 0.0172, 0.0134], [0.1773, 0.0892, 0.0421, 0.0289, 0.024, 0.0187, 0.0137, 0.0113], [0.1239, 0.0965, 0.0334, 0.0277, 0.0277, 0.0229, 0.0215, 0.019], [0.1524, 0.072, 0.0561, 0.0319, 0.0161, 0.0151, 0.0142, 0.0142], [0.8844, 0.0236, 0.006, 0.0056, 0.0044, 0.003, 0.0018, 0.0012], [0.9956, 0.0006, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.9987, 0.0005, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9977, 0.0006, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9875, 0.0022, 0.0012, 0.0012, 0.0008, 0.0007, 0.0005, 0.0005], [0.9988, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.9994, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.999, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9981, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001], [0.9982, 0.0004, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9985, 0.0004, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001, 0.0], [0.982, 0.0159, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9128, 0.0749, 0.0027, 0.0007, 0.0006, 0.0004, 0.0004, 0.0004], [0.9517, 0.0326, 0.0013, 0.0009, 0.0008, 0.0007, 0.0006, 0.0005], [0.9993, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 533, "top": [["  \n", "  ", "   \n", "  \n\n", "\u2026..", " \u00a0", "\u00a0\u00a0", "  \r\n"], ["  \r\n", "   \n", "  \n", "  ", "\u7687\u5c9b", " Geile", "'gc", "   \r\n"], ["\u2026..", "   \n", "  \n", "  ", "\u2026.", "\u2013", "\u200b", " \u200b\u200b"], [" milfs", " Blowjob", " cumshot", "enzi", " ;;^", "utnik", "\u0e40\u0e2a\u0e49\u0e19\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e02\u0e2d\u0e14", " Geile"], ["  ", "   \n", "  \n", "  \r\n", " theater", "  \n\n\n", "\u0103\u021b", "luss"], ["  ", "   \n", "  \n", "  \r\n", " theater", " \u200b\u200b", "\u0670", " \u062c\u062f\u064b\u0627"], ["  \n", "  ", "   \n", "  \r\n", "      \n", " \u00a0", "  \n\n", " ....."], ["   \n", "  \n", "  ", "  \r\n", "   \r\n", "   \n\n", "      \n", "  \n\n\n"], ["  \n", "   \n", "  ", "  \r\n", "   \n\n", "  \n    \n", "  \n\n", "  \n\n\n"], ["  ", "  \n", "  \r\n", "   \n", "\u0670", "  \n    \n", "   \r\n", "\u5a9b\u5a9b"], ["  ", "  \n", "   \n", " ", " \u00a0", "  \r\n", ",", "\u00a0\u00a0"], ["  ", " backup", "\ufffdt", "pike", "\u09cd\u09a1", "  \r\n", " showcase", " impactful"], [" impactful", " backup", " theater", " wellness", " theaters", " savory", "pike", " backups"], [" impactful", " theater", " backup", " wellness", " backups", " theaters", " transformative", " artifacts"], ["  ", " showcase", " strategically", " theater", " ", " diverse", " backup", " launch"], [" showcase", " strategically", " multiple", " folks", " showcasing", " savvy", " diverse", " impactful"], [" multiple", " strategically", " heavily", "  ", " mostly", " massive", " well", " showcase"], [" strategically", " heavily", "  ", " showcase", " massive", " savvy", " multiple", " systems"], [" strategically", " heavily", " aggressively", "-esque", " savvy", " impactful", " complex", " multiple"], [" heavily", " aggressively", " strategically", " largely", " dramatically", " multiple", " rapidly", " complex"], ["<|endoftext|>", "  \n\n", " heavily", " nearly", " largely", " much", " aggressively", " rapidly"], [" ``", " heavily", " aggressively", " ;;^", " strategically", " commercial", " complex", " industry"], [" ``", " ,", " rapidly", " heavily", " quickly", " early", " high", " commercial"], [" ,", " ``", " more", " over", " much", " rapidly", " long", " many"], [" ,", " rapidly", " heavily", " over", " ``", " much", " many", " long"], [" ,", " ``", " heavily", " rapidly", " over", " many", " ...", " much"], [" ``", " ,", " heavily", " rapidly", " over", " large", " many", " high"], [" ,", "\n\n", " \n\n", " **", " _", " over", " in", " __"], [" ...", "\n\n", " **", " ,", " ___", " __", " @", " heavily"], [" ...", " ___", " **", " __", " ____", " _____", " ______", " ``"], [" ...", " **", " ,", " heavily", " high", " @", " \n\n", " "], [" ...", " ,", " @", " high", " ", " **", " heavily", " over"], [" modern", " heavily", " rapidly", " high", " ...", " mostly", " using", " ,"], [" technology", " modern", " optimized", " specialized", " systems", " heavily", " technologies", " tech"], [" technology", " optimized", " heavily", " priorit", " tech", " technologies", " specialized", " modern"], [" \u2026", " [\u2026]", "[\u2026]", " optimized", " priorit", " faster", " rapidly", " Global"], [" Microsoft", " priorit", " Azure", " optimized", " optimizations", " faster", " offline", "Microsoft"], [" Microsoft", " Azure", " priorit", " optimizations", " optimized", " Kickstarter", " unrestricted", " avoidance"], [" optimizations", " Microsoft", " optimized", " avoidance", " garbage", " priorit", " specialized", " Azure"], [" garbage", " scav", " optimizations", " CPU", " cleanup", "\u5783\u573e", " Microsoft", " Memory"], [" optimizations", " CPU", " optimized", " Microsoft", "_HEAP", " garbage", " algorithms", " Memory"], [" optimizations", " optimized", " CPU", "_HEAP", " optimization", " algorithms", " avoidance", " Optimization"], [" Ambient", " optimizations", " CPU", " avoidance", " optimized", " Acceler", " algorithms", " Restart"], [" optimized", " Ambient", " Optimization", " optimizations", " Automated", " Automatic", " Modern", " Acceler"], [" Ambient", " optimized", " Automated", " Automatic", " optimizations", " Suppress", " Active", " Optimization"], [" Ambient", " Controlled", " Automatic", " Restricted", " Automated", " Suppress", " optimized", " Active"], [" Ambient", " Continuous", " Suppress", " Shift", " optimized", " Minimal", " Restricted", " Controlled"], [" Ambient", " Continuous", " Shift", " Suppress", " Restricted", " Controlled", " Automatic", " Active"], [" Ambient", " Shift", " Controlled", " Suppress", " Restricted", " Shutdown", " optimized", " Automatic"], [" Controlled", " **+", " Suppress", " **", " Shutdown", " Ambient", " **#", "\uff1a**"], [" **", "\uff1a**", " Shutdown", " **:**", " Suppress", " **:", " Ambient", " **\u3010"], ["\u4f7f\u7528", " **", "\uff1a**", "\u5207\u6362", " Use", " Switch", " Suppress", "\u6539\u7528"], ["\u7981\u7528", " Disable", "-disable", " Suppress", " disable", " Use", "Disable", " **"], ["-disable", " Suppress", " Disable", "\u7981\u7528", " Shutdown", " disable", " Use", " **"], ["alloc", " GC", " allocate", " allocations", " alloc", " Allocate", " Disable", "-disable"], [" GC", "GC", " garbage", "_gc", "\u5783\u573e", " gc", "(gc", "_GC"], [" GC", "GC", " gc", "gc", "_gc", "(gc", "_GC", ".gc"], [" GC", "GC", " gc", "gc", "_gc", "(gc", "_GC", ".gc"], [" GC", "GC", " Disable", " disable", " Suppress", "-disable", "gc", " disabling"], [" Disable", " Suppress", " disable", " GC", " Allocate", " disabling", " **", " suppress"], [" Disable", " Allocate", " **", " disable", " Use", " Suppress", " allocate", " suppress"], [" **", " Disable", " Use", " disable", " Allocate", " **-", " **.", " Suppress"], [" **", " Disable", " Implement", " Allocate", " Force", " Use", " Suppress", " Elim"]], "p": [[0.6784, 0.1715, 0.1336, 0.0062, 0.0017, 0.0008, 0.0007, 0.0006], [0.1529, 0.0411, 0.0301, 0.0118, 0.0038, 0.0032, 0.0032, 0.0022], [0.4157, 0.1191, 0.1119, 0.0637, 0.0496, 0.0387, 0.0172, 0.0126], [0.0104, 0.0067, 0.0049, 0.0046, 0.0041, 0.003, 0.0025, 0.0023], [0.4166, 0.1736, 0.144, 0.0195, 0.0038, 0.0032, 0.0026, 0.0025], [0.6618, 0.2149, 0.045, 0.0033, 0.0012, 0.0011, 0.0008, 0.0007], [0.6925, 0.1751, 0.1203, 0.0087, 0.0005, 0.0003, 0.0003, 0.0001], [0.3672, 0.3241, 0.286, 0.0183, 0.0006, 0.0005, 0.0004, 0.0003], [0.3964, 0.3498, 0.2122, 0.0174, 0.006, 0.0037, 0.0028, 0.0022], [0.3066, 0.1448, 0.0878, 0.0728, 0.0041, 0.0018, 0.0018, 0.0015], [0.7869, 0.1367, 0.0287, 0.0197, 0.0039, 0.0022, 0.001, 0.001], [0.0294, 0.0048, 0.0031, 0.0029, 0.0027, 0.0024, 0.0023, 0.0021], [0.004, 0.0035, 0.0029, 0.0027, 0.0019, 0.0019, 0.0018, 0.0018], [0.0049, 0.0034, 0.0028, 0.0028, 0.0023, 0.0023, 0.0023, 0.002], [0.0065, 0.0033, 0.0033, 0.0029, 0.0026, 0.0021, 0.0019, 0.0019], [0.0039, 0.0039, 0.0031, 0.0027, 0.0025, 0.0024, 0.0024, 0.002], [0.0043, 0.0036, 0.0031, 0.0029, 0.0029, 0.0026, 0.0024, 0.0024], [0.0026, 0.0023, 0.0023, 0.002, 0.0018, 0.0018, 0.0018, 0.0015], [0.008, 0.008, 0.0063, 0.0052, 0.0046, 0.003, 0.003, 0.003], [0.0234, 0.0161, 0.0104, 0.0092, 0.0067, 0.0059, 0.0056, 0.0049], [0.1259, 0.0233, 0.016, 0.0086, 0.008, 0.008, 0.0076, 0.0043], [0.0249, 0.0049, 0.0038, 0.0026, 0.0023, 0.0015, 0.0014, 0.0014], [0.5652, 0.0052, 0.0038, 0.0034, 0.0032, 0.003, 0.003, 0.0025], [0.0728, 0.0304, 0.0143, 0.0135, 0.0112, 0.0105, 0.0105, 0.0099], [0.0364, 0.0195, 0.0172, 0.0126, 0.0118, 0.0111, 0.0104, 0.0076], [0.0393, 0.0306, 0.0224, 0.0136, 0.012, 0.012, 0.0112, 0.0106], [0.0919, 0.0673, 0.0205, 0.015, 0.0075, 0.0067, 0.0067, 0.0063], [0.1982, 0.1362, 0.0173, 0.0127, 0.0127, 0.0119, 0.0119, 0.0112], [0.0832, 0.0446, 0.0369, 0.0347, 0.0347, 0.0306, 0.0288, 0.027], [0.595, 0.1172, 0.1034, 0.0711, 0.0431, 0.0261, 0.0096, 0.0033], [0.6421, 0.0265, 0.0142, 0.0076, 0.0056, 0.0056, 0.0049, 0.0046], [0.1697, 0.0216, 0.0168, 0.0158, 0.0148, 0.0123, 0.0116, 0.009], [0.0364, 0.0266, 0.0235, 0.0134, 0.0134, 0.0111, 0.0098, 0.0098], [0.0248, 0.0219, 0.0182, 0.0151, 0.0141, 0.0141, 0.011, 0.0097], [0.0215, 0.0202, 0.0167, 0.0157, 0.013, 0.0122, 0.0122, 0.0089], [0.067, 0.0246, 0.0169, 0.0116, 0.0109, 0.0091, 0.0075, 0.0075], [0.1244, 0.0203, 0.0191, 0.0116, 0.009, 0.0085, 0.0085, 0.0066], [0.118, 0.0181, 0.016, 0.0124, 0.0124, 0.0097, 0.0091, 0.0091], [0.0351, 0.033, 0.0177, 0.0114, 0.0107, 0.0101, 0.0089, 0.0089], [0.033, 0.031, 0.02, 0.0166, 0.0101, 0.0095, 0.0078, 0.0074], [0.0639, 0.0235, 0.0208, 0.0172, 0.0162, 0.0134, 0.0126, 0.0118], [0.0472, 0.0305, 0.0253, 0.0163, 0.0127, 0.0105, 0.0099, 0.0082], [0.0184, 0.0134, 0.0134, 0.0134, 0.0126, 0.0092, 0.0077, 0.0068], [0.0256, 0.0212, 0.0176, 0.0155, 0.0155, 0.0155, 0.0129, 0.01], [0.0243, 0.0178, 0.0138, 0.0138, 0.0108, 0.0101, 0.0089, 0.0089], [0.0179, 0.0179, 0.0179, 0.0168, 0.0148, 0.0115, 0.0115, 0.0108], [0.0324, 0.0185, 0.0163, 0.0144, 0.0135, 0.0135, 0.0119, 0.0112], [0.0314, 0.0229, 0.0168, 0.0148, 0.0139, 0.0131, 0.0131, 0.0096], [0.0189, 0.0079, 0.0069, 0.0069, 0.0061, 0.0051, 0.0045, 0.0042], [0.0137, 0.0107, 0.0107, 0.0089, 0.0089, 0.0089, 0.0065, 0.0054], [0.0235, 0.0183, 0.0134, 0.0134, 0.0092, 0.0081, 0.0081, 0.0076], [0.0644, 0.0223, 0.0196, 0.0163, 0.0144, 0.0144, 0.0119, 0.0112], [0.1284, 0.0829, 0.0607, 0.0368, 0.0346, 0.0238, 0.021, 0.0185], [0.0833, 0.0735, 0.069, 0.0572, 0.0326, 0.0306, 0.0254, 0.0224], [0.1521, 0.1343, 0.0923, 0.0814, 0.0634, 0.0436, 0.0436, 0.0385], [0.9113, 0.0583, 0.0089, 0.0048, 0.0029, 0.0026, 0.0026, 0.0026], [0.9102, 0.0847, 0.0016, 0.0014, 0.0008, 0.0006, 0.0006, 0.0001], [0.8908, 0.0939, 0.006, 0.0028, 0.0022, 0.0022, 0.0012, 0.0003], [0.8532, 0.07, 0.0292, 0.0074, 0.0065, 0.004, 0.0035, 0.0031], [0.3662, 0.1189, 0.1049, 0.0466, 0.0341, 0.0301, 0.0301, 0.0249], [0.5129, 0.0891, 0.0891, 0.0787, 0.0541, 0.0396, 0.0128, 0.0065], [0.9829, 0.0058, 0.0018, 0.0013, 0.0012, 0.0007, 0.0006, 0.0006], [0.8024, 0.0453, 0.0311, 0.0311, 0.0214, 0.0189, 0.0045, 0.0042]], "ranks": {}}, {"pos": 534, "top": [["s", "**\u2013", "**.", " \u2013", " **\u2013", "**:", "er", "**"], ["**\u2013", "s", " **\u2013", " **", "-**", " \u2013**", "**.", "\u2019**"], ["**\u2013", " **\u2013", "\u2026**", "s", "**.", "**\u3002", " \u2013**", "\u2019**"], ["\uff1f**", "\u300d**", " **\u300c", " **\u00ab", " **", " **:", "\u3002**", "\u2019**"], ["s", " **", " **.", "-**", "**.", ">**", "**\u3002", " **#"], [" **", "-**", " **.", "**.", " **\u201c", "**:", "**\u3002", "\u2019**"], [" **", "s", "**.", "**", "**\u3002", "-**", " **.", "\u300d**"], [" **", "**.", "**", "-**", " **\u00ab", " **.", " **#", "**-"], [" **", "**.", "**", " **#", " **.", " **\u00ab", "**\u3002", "s"], [" **", " **#", "-**", "s", " **\u00ab", "**.", ">**", "**:"], [" **", "s", " **#", "er", "**", "**.", "-**", "...**"], [" **", " **\u00ab", " **#", " **\u300c", "-**", " **.", " **'", "\u300d**"], [" **", " **\u00ab", "-**", " **\u300c", " **#", " **.", "\u300d**", " \u00bb**"], [" **", " **\u00ab", "-**", " **#", " **\u300c", " \u00bb**", "\u300d**", " **'"], [" **", "s", "ing", "er", "-**", " **#", "\u300d**", "**-"], [" **", "ing", "s", "-**", " **#", "er", " **\u2013", "**\u2013"], [" **", "ing", " **\u2013", "**\u2013", "s", "-**", " **#", "er"], [" **", " **\u2013", "-**", "**\u2013", " **#", "...**", ">**", "**-"], [" **", "-**", "...**", "**-", "**:", "**", " **#", "**,"], [" **", "...**", "**", "**:", "-**", "**,", "**-", "\u2019**"], [" **", "**:", "...**", "**", "**,", " **#", "ing", "-**"], [" **", " **#", "-**", ">**", " **:", " **+", "\u300d**", "**-"], [" **", " **#", "...**", "ing", ">**", " **'", "-**", "\u300d**"], [" **", "ing", "er", " :**", "s", "...**", " -**", " **#"], [" **", "**:", "...**", " **#", "\uff1a**", "**", "-**", "**,"], [" **", " **#", " **'", "**:", "\uff1a**", "-**", " :**", " **:"], [" **", " **#", " :**", " **'", "**:", " **:", "-**", " -**"], [" **", " **'", " :**", " **#", " impact", "ing", " \n\n", "  \n\n"], [" **", "**:", "**", " :**", "...**", " **#", " **'", "\u2011"], [" **", "...**", "**", "**:", " :**", "\u2026**", "\u2011", " -**"], [" **", " high", " impact", " power", " focus", " strategy", " key", "\u2011"], [" **", " high", "\u2011", " key", " focus", " focused", " power", " priorit"], [" **", "\u2011", " high", " key", " power", " focused", " Black", " critical"], [" **", "\u2011", " priorit", "**:", " key", " strategy", " core", ":**"], [" **", "**:", "\u2011", ":**", "\uff1a**", "**\u2013", "\u2026**", "-**"], ["\u2011", "**:", " **", ":**", "\u2026**", " priorit", "**\u2013", "!**"], ["\u2011", " priorit", " avoidance", "**:", " Avoid", " **", " strategy", " modular"], ["\u2011", " avoidance", " Avoid", " priorit", " strategy", " modular", "**:", " Strategy"], [" avoidance", " Avoid", " priorit", "\u2011", " strategy", " Strategy", " strict", " suppression"], ["\u2011", " avoidance", " Avoid", " priorit", " Strategy", " strategy", " strict", " **"], [" Strategy", " Avoid", " avoidance", " strategy", "\u2011", " priorit", "**:", " relentless"], [" strategy", " avoidance", " Strategy", " priorit", " Avoid", " strict", " proactive", " relentless"], [" avoidance", " Avoid", " strategy", " Strategy", " strict", " Strict", " priorit", " proactive"], [" avoidance", " Avoid", " Strict", " strict", " Strategy", " proactive", " strategy", " mandatory"], [" strict", " Strict", " avoidance", " mandatory", " Avoid", " Zero", " Strategy", " Control"], [" strict", " Strict", " Avoid", " mandatory", " Zero", " Restricted", " avoidance", " Mandatory"], ["**:", ":**", " Strict", "\uff1a**", " Avoid", " strict", "!**", " Zero"], ["**:", ":**", " **", "\uff1a**", " Strict", ";**", "!**", " Avoid"], ["**:", ":**", " **:", "\uff1a**", " **", " Strict", " :**", ";**"], [":**", " Strict", " Immediate", " Mandatory", "\uff1a**", "\u4e25\u7981", "**:", " Avoid"], [":**", "**:", "\uff1a**", " :**", " Immediate", "\u4e25\u7981", ".:**", " Mandatory"], [":**", " Mandatory", " Immediate", "\uff1a**", "**:", "\u4e25\u7981", "\u5f3a\u5236", "\u675c\u7edd"], [" Mandatory", ":**", "\u5f3a\u5236", "\u675c\u7edd", "\u4e25\u7981", "\u7981\u7528", " Immediate", " Disable"], [" Mandatory", "\u675c\u7edd", " Immediate", "\u5f3a\u5236", " Disable", "\u4e25\u7981", ":**", " Zero"], [" Disable", "\u7981\u7528", " Mandatory", "\u5f3a\u5236", " disable", "-disable", "\u7981\u6b62", " mandatory"], [" Disable", "-disable", "\u7981\u7528", " disable", " Mandatory", "disable", "\u7981\u6b62", "\u5f3a\u5236"], [" Disable", "\u7981\u7528", "-disable", " Mandatory", " disable", " Immediate", "\u5f3a\u5236", "\u675c\u7edd"], [" Disable", " Mandatory", " disable", "-disable", " eliminate", "\u7981\u7528", "\u5f3a\u5236", " Immediate"], [" Disable", " disable", " Mandatory", "-disable", "\u7981\u7528", " Suppress", " Immediate", "Disable"], [" Disable", " disable", " Zero", "-disable", " eliminate", " Action", " zero", " Mandatory"], [" mandate", " Zero", " Disable", " zero", " Mandatory", " disable", " Action", " mandatory"], [" Zero", " Disable", " mandate", " Mandatory", " disable", " Action", " zero", "Zero"], ["Zero", "Action", "Disable", "Force", " Disable", "Do", " Zero", "Ban"]], "p": [[0.9969, 0.0009, 0.0009, 0.0008, 0.0001, 0.0001, 0.0, 0.0], [0.3782, 0.2024, 0.0745, 0.0657, 0.0352, 0.0352, 0.031, 0.0213], [0.657, 0.0889, 0.0785, 0.0785, 0.0327, 0.0198, 0.012, 0.0034], [0.1633, 0.1354, 0.1195, 0.0931, 0.044, 0.0388, 0.0251, 0.0221], [0.3199, 0.3199, 0.0714, 0.0433, 0.0433, 0.0337, 0.0263, 0.0263], [0.4792, 0.1373, 0.0649, 0.0649, 0.0211, 0.0186, 0.0186, 0.0186], [0.6129, 0.0732, 0.0646, 0.0503, 0.021, 0.0185, 0.0185, 0.0163], [0.7316, 0.0681, 0.0284, 0.0221, 0.0221, 0.0195, 0.0152, 0.0104], [0.5982, 0.1335, 0.0433, 0.0337, 0.0298, 0.0181, 0.011, 0.011], [0.6651, 0.0619, 0.0425, 0.0375, 0.0375, 0.0258, 0.0108, 0.0108], [0.5743, 0.2713, 0.0252, 0.0223, 0.0197, 0.0197, 0.0072, 0.0064], [0.9397, 0.0195, 0.0134, 0.0063, 0.0034, 0.0021, 0.0018, 0.0018], [0.9414, 0.0284, 0.0056, 0.0056, 0.0056, 0.0021, 0.0014, 0.001], [0.7768, 0.0819, 0.0266, 0.0161, 0.0142, 0.0134, 0.0067, 0.0056], [0.7814, 0.0389, 0.0303, 0.0196, 0.0126, 0.0077, 0.0053, 0.0039], [0.7501, 0.0578, 0.033, 0.0213, 0.0107, 0.0107, 0.0042, 0.0042], [0.5912, 0.1027, 0.0294, 0.0244, 0.0244, 0.0179, 0.0168, 0.0102], [0.667, 0.0703, 0.0548, 0.0312, 0.0243, 0.0178, 0.013, 0.0115], [0.843, 0.0288, 0.0288, 0.0154, 0.0136, 0.012, 0.0106, 0.0039], [0.5579, 0.1411, 0.0458, 0.0335, 0.0278, 0.023, 0.0191, 0.0168], [0.4427, 0.0988, 0.0769, 0.0679, 0.0387, 0.0283, 0.0266, 0.0183], [0.737, 0.0502, 0.0173, 0.0112, 0.0105, 0.0099, 0.0093, 0.0082], [0.8612, 0.019, 0.0075, 0.0055, 0.0055, 0.0051, 0.0048, 0.0048], [0.5679, 0.0363, 0.0111, 0.0098, 0.0059, 0.0056, 0.0052, 0.0052], [0.7564, 0.0312, 0.0276, 0.0157, 0.0139, 0.0139, 0.0089, 0.0074], [0.937, 0.0111, 0.0052, 0.0036, 0.0032, 0.0028, 0.0028, 0.0026], [0.9164, 0.0051, 0.0037, 0.0035, 0.0024, 0.0018, 0.0016, 0.0016], [0.8547, 0.0024, 0.0018, 0.0012, 0.0011, 0.0009, 0.0008, 0.0007], [0.9296, 0.0036, 0.0018, 0.0016, 0.0013, 0.0012, 0.0011, 0.0011], [0.9444, 0.0036, 0.0018, 0.0017, 0.0012, 0.0012, 0.0012, 0.0008], [0.42, 0.0056, 0.0044, 0.0044, 0.0044, 0.0041, 0.0039, 0.0036], [0.2063, 0.0096, 0.0085, 0.008, 0.0055, 0.0049, 0.0049, 0.0043], [0.1598, 0.007, 0.0066, 0.0062, 0.0045, 0.0038, 0.0038, 0.0031], [0.472, 0.0283, 0.0086, 0.0059, 0.0046, 0.0043, 0.0034, 0.0034], [0.4247, 0.1074, 0.0507, 0.0476, 0.0145, 0.0094, 0.0083, 0.0083], [0.2405, 0.1209, 0.0689, 0.0418, 0.0144, 0.012, 0.0106, 0.0106], [0.0318, 0.0263, 0.0218, 0.0141, 0.0132, 0.0132, 0.011, 0.0086], [0.0392, 0.0286, 0.0237, 0.0153, 0.0135, 0.0119, 0.0093, 0.0093], [0.032, 0.0265, 0.0194, 0.0161, 0.0151, 0.0125, 0.0092, 0.0059], [0.0698, 0.0241, 0.0213, 0.0188, 0.0176, 0.0166, 0.0094, 0.0074], [0.0348, 0.0327, 0.0307, 0.0271, 0.0175, 0.0154, 0.01, 0.01], [0.0417, 0.0305, 0.0269, 0.0197, 0.0127, 0.0112, 0.0082, 0.0077], [0.0714, 0.0337, 0.017, 0.0159, 0.015, 0.0103, 0.0103, 0.0097], [0.0445, 0.0445, 0.0369, 0.0326, 0.027, 0.0164, 0.0136, 0.0136], [0.0708, 0.0457, 0.023, 0.023, 0.0168, 0.0158, 0.0109, 0.0109], [0.075, 0.075, 0.0313, 0.0276, 0.0202, 0.019, 0.0157, 0.0139], [0.2129, 0.1658, 0.0573, 0.037, 0.0211, 0.0198, 0.0164, 0.01], [0.1891, 0.1568, 0.1221, 0.0542, 0.0509, 0.029, 0.0199, 0.0176], [0.5008, 0.1266, 0.0466, 0.0363, 0.032, 0.0234, 0.0234, 0.0086], [0.1727, 0.1263, 0.0676, 0.0495, 0.0265, 0.022, 0.022, 0.0182], [0.3895, 0.184, 0.1265, 0.0437, 0.0182, 0.0182, 0.0161, 0.0161], [0.1892, 0.0696, 0.0654, 0.0256, 0.0256, 0.0241, 0.0241, 0.0199], [0.1299, 0.0893, 0.0653, 0.0613, 0.0478, 0.0372, 0.0372, 0.0308], [0.0956, 0.0512, 0.0481, 0.0452, 0.0374, 0.0352, 0.031, 0.031], [0.1922, 0.1497, 0.1497, 0.0707, 0.0486, 0.0334, 0.0334, 0.026], [0.3049, 0.144, 0.1271, 0.1122, 0.0321, 0.0183, 0.0162, 0.0162], [0.4107, 0.0809, 0.0714, 0.063, 0.0556, 0.0247, 0.018, 0.0159], [0.3566, 0.0902, 0.0796, 0.062, 0.0376, 0.0312, 0.0293, 0.0178], [0.6343, 0.1102, 0.0358, 0.0358, 0.0192, 0.0132, 0.0109, 0.009], [0.5121, 0.1295, 0.0371, 0.0289, 0.0255, 0.0175, 0.0175, 0.0155], [0.2387, 0.2107, 0.2107, 0.0604, 0.0604, 0.0366, 0.0196, 0.0127], [0.2384, 0.2384, 0.1199, 0.0532, 0.0366, 0.0236, 0.0208, 0.0143], [0.3451, 0.1439, 0.0873, 0.0638, 0.0563, 0.0439, 0.0221, 0.0183]], "ranks": {}}, {"pos": 535, "top": [[" \u2013", ".", "\u2013", "i", "-", ",", "\u201d", "?"], [" \u2013**", " \u2013", "**\u2013", "  \r\n", " **\u2013", "iho", "   \r\n", "?\u201d"], [" \u2013", " \u2013**", "**\u2013", " **\u2013", "\u2013", "\uff1f", " \u2013,", "i"], ["ieli", " milfs", " cumshot", " Blowjob", " knull", "enze", "eszt", " pupper"], ["ihi", " @_", "iho", " *@", " @(", " @}", " *\\", " @"], ["-zero", "\u5728", "ihi", "\u96f6", "zep", "-**", "   \r\n", "  \r\n"], ["\u5728", "-zero", "   \r\n", "  \r\n", "\uff08", " -**", "\u6709", "\uff01"], ["-zero", "   \r\n", " **-", "  \r\n", "-**", " -**", " @_", "**-"], ["-zero", "   \r\n", "  \r\n", "    \r\n", " @_", "     \r\n", " *\\", "-dollar"], ["-zero", "-plus", "  \r\n", "-dollar", "%\\", "   \r\n", "@\\", "-minus"], ["-zero", "\\n", "-plus", "@\\", " @_", "  \r\n", " \r\n", "   \r\n"], ["-zero", "-plus", " -**", "  \r\n", "-minus", "   \r\n", " *\\", "    \r\n"], ["-zero", "-plus", "-minus", " -**", "-**", "-billion", " ZERO", "istic"], ["-zero", "-plus", "-minus", "istic", "-tier", "-dollar", " Zero", "-ever"], ["-zero", "-plus", " Zero", "istic", "-ever", " mega", " zero", "-minus"], ["-plus", "-zero", " -", "-ever", " effortlessly", " effortless", " Zero", " mega"], ["-zero", "-plus", "-ever", "i", " Zero", "-minus", "istic", " ZERO"], ["-zero", "-plus", "-minus", "-ever", "-density", " ZERO", "-dollar", "-billion"], ["-zero", "-minus", " %+", "-plus", " -**", "-ever", "-billion", "ZERO"], ["-zero", " %+", "-plus", "ZERO", "-ever", " ZERO", "-minus", "-billion"], ["-zero", " %+", " ...\\", "-plus", "ZERO", " #%", " ZERO", "Zero"], ["-zero", " %+", " ZERO", "ZERO", " Zero", "bucks", "-billion", " impactful"], ["-zero", " %+", " ZERO", " Zero", "ZERO", " zero", "-billion", " impact"], ["-zero", " Zero", " %+", " ZERO", " impact", " ...\\", " zero", "Zero"], ["-zero", " Zero", " %+", " ZERO", "Zero", " ...\\", "ZERO", " impactful"], ["-zero", " impactful", " ZERO", " Zero", " %+", " zero", " ...\\", "ZERO"], ["-zero", " zero", " impactful", " Zero", " %+", " ZERO", "_zero", " impact"], ["-zero", " Zero", " @", " zero", " impact", " ...", " ...\\", " ZERO"], ["-zero", " Zero", " zero", " impactful", " impact", " ZERO", " infrastructure", " reboot"], ["-zero", " Zero", " zero", " impactful", " impact", " infrastructure", " reboot", " ZERO"], [" Zero", "-zero", " zero", " impact", " infrastructure", " ZERO", " mega", " reboot"], [" Zero", " zero", "-zero", " impact", " mega", " ZERO", " infrastructure", " global"], [" Zero", "-zero", " zero", " ZERO", " impact", " mega", " infrastructure", " automation"], ["-zero", " Zero", " ZERO", "Zero", " zero", " lifecycle", "-tier", " mindset"], ["-zero", "Zero", " ZERO", " Zero", "ZERO", "zero", " zero", "/non"], ["-zero", " Zero", "Zero", " ZERO", "zero", " zero", "ZERO", "\u2011"], ["-zero", " Zero", "Zero", " ZERO", "zero", " zero", "ZERO", "\u96f6"], ["-zero", " Zero", " zero", "Zero", " ZERO", "zero", "ZERO", "\u96f6"], ["-zero", " Zero", " zero", "Zero", " ZERO", "zero", "\u96f6", " garbage"], ["-zero", " Zero", " zero", " garbage", "Zero", " scav", " ZERO", "\u96f6"], ["-zero", " Zero", " zero", "Zero", " ZERO", " garbage", "\u96f6", "zero"], ["-zero", " Zero", " zero", "Zero", "\u96f6", "zero", " ZERO", " garbage"], ["-zero", " Zero", " zero", "Zero", " ZERO", "\u96f6", "zero", " avoidance"], ["-zero", " Zero", "Zero", " ZERO", " zero", "\u96f6", "ZERO", "zero"], ["-zero", " Zero", "Zero", " ZERO", " zero", "ZERO", "zero", "\u96f6"], [" Zero", "-zero", " ZERO", "Zero", " zero", "zero", "ZERO", " Minimal"], ["-zero", " Zero", " ZERO", "Zero", " zero", "ZERO", "zero", " Minimal"], ["-zero", " Zero", "Zero", " ZERO", "\u96f6", "ZERO", "zero", " Minimal"], ["-zero", " Zero", "Zero", "\u96f6", " ZERO", "_zero", "-null", "ZERO"], ["-zero", " Zero", "Zero", "-null", "/no", "/null", "_zero", "-byte"], ["-zero", " Zero", "/null", "Zero", ".Zero", "-null", "\u96f6", "_zero"], ["-zero", "/no", "-byte", "-trash", "/min", "/null", " Zero", "-null"], ["-zero", "-byte", "/no", " allocations", "-hit", "-buffer", "/min", "-create"], ["-zero", "-byte", "-runtime", "-copy", "-trash", " IDisposable", " allocations", "-net"], [" allocations", " allocation", "alloc", " Allocation", " alloc", "Alloc", "allocation", " Alloc"], [" allocations", "alloc", " allocation", " Allocation", " alloc", "Alloc", " Alloc", " garbage"], [" allocations", " GC", " allocation", " Allocation", "alloc", " garbage", "GC", " alloc"], [" allocations", " allocation", " Allocation", "alloc", " GC", " alloc", " Alloc", "Alloc"], [" allocations", " GC", " Allocation", " allocation", "GC", "alloc", " Alloc", "Alloc"], [" allocations", " allocation", " Allocation", "alloc", " alloc", "Alloc", " Alloc", "Allocation"], [" allocations", " allocation", " Allocation", " Alloc", " alloc", "alloc", "Alloc", " allo"], [" Allocation", " allocations", " allocation", " Alloc", "-Al", "-al", " alloc", "alloc"], ["-Al", "-al", "-G", " Allocation", "-", " allocations", " allocation", " Alloc"]], "p": [[0.9727, 0.013, 0.0031, 0.0018, 0.0012, 0.0009, 0.0006, 0.0003], [0.6647, 0.123, 0.0214, 0.0089, 0.0033, 0.0027, 0.0021, 0.0016], [0.8979, 0.0476, 0.0154, 0.0047, 0.0034, 0.0011, 0.0006, 0.0005], [0.0179, 0.0115, 0.0066, 0.0048, 0.0037, 0.0037, 0.0035, 0.0035], [0.0637, 0.0466, 0.0387, 0.0283, 0.025, 0.0183, 0.0172, 0.0151], [0.0642, 0.0285, 0.0236, 0.0135, 0.0126, 0.0082, 0.0072, 0.0056], [0.1549, 0.0325, 0.0269, 0.0253, 0.0238, 0.0185, 0.0153, 0.0135], [0.099, 0.0467, 0.0364, 0.0321, 0.0143, 0.0143, 0.0143, 0.0086], [0.1273, 0.0565, 0.0413, 0.0208, 0.0105, 0.0067, 0.0063, 0.0063], [0.2544, 0.0415, 0.0196, 0.0119, 0.0099, 0.0082, 0.0072, 0.0068], [0.204, 0.0662, 0.0584, 0.0484, 0.0354, 0.0276, 0.0244, 0.0139], [0.0905, 0.0259, 0.013, 0.0102, 0.0102, 0.0074, 0.0058, 0.0054], [0.1377, 0.0239, 0.0094, 0.0078, 0.0057, 0.0053, 0.005, 0.005], [0.146, 0.0369, 0.012, 0.0088, 0.0047, 0.0047, 0.0044, 0.0044], [0.0622, 0.0484, 0.0115, 0.0095, 0.0074, 0.007, 0.0066, 0.0051], [0.0662, 0.0243, 0.0148, 0.0122, 0.0101, 0.0065, 0.0054, 0.0054], [0.1205, 0.0417, 0.0099, 0.0082, 0.0068, 0.0068, 0.0056, 0.0056], [0.208, 0.0133, 0.0133, 0.0052, 0.0049, 0.0049, 0.0043, 0.0041], [0.1099, 0.0096, 0.0085, 0.0066, 0.0055, 0.0045, 0.0043, 0.004], [0.1649, 0.0174, 0.0174, 0.0099, 0.0087, 0.0068, 0.0064, 0.0053], [0.1054, 0.0468, 0.0195, 0.0172, 0.0118, 0.0111, 0.0087, 0.0076], [0.0288, 0.005, 0.0044, 0.0032, 0.003, 0.0022, 0.0022, 0.0021], [0.0639, 0.0195, 0.0118, 0.0081, 0.0059, 0.0038, 0.0034, 0.0032], [0.0982, 0.0264, 0.0233, 0.0193, 0.0125, 0.0117, 0.0117, 0.0086], [0.1391, 0.0257, 0.02, 0.0188, 0.0156, 0.0147, 0.0114, 0.0101], [0.0803, 0.023, 0.0148, 0.0116, 0.0109, 0.0079, 0.0066, 0.0062], [0.0994, 0.0134, 0.0126, 0.0126, 0.0082, 0.0068, 0.006, 0.0044], [0.0598, 0.0341, 0.0234, 0.0234, 0.0134, 0.0125, 0.0118, 0.0092], [0.0822, 0.0388, 0.0152, 0.0092, 0.0087, 0.0072, 0.0063, 0.0063], [0.0553, 0.0246, 0.018, 0.0131, 0.009, 0.007, 0.0066, 0.0062], [0.0688, 0.0473, 0.0444, 0.0127, 0.0088, 0.0068, 0.0068, 0.0039], [0.0788, 0.0478, 0.0226, 0.0121, 0.0107, 0.0088, 0.0083, 0.005], [0.0905, 0.0549, 0.0402, 0.0157, 0.013, 0.0102, 0.0062, 0.0033], [0.2105, 0.0236, 0.0162, 0.0082, 0.0082, 0.006, 0.0056, 0.0056], [0.3155, 0.0293, 0.0259, 0.0178, 0.013, 0.0051, 0.0045, 0.0042], [0.5737, 0.0776, 0.0776, 0.0304, 0.0196, 0.0144, 0.0127, 0.0064], [0.4886, 0.1161, 0.1024, 0.0259, 0.0202, 0.0157, 0.0148, 0.0058], [0.3988, 0.2741, 0.0476, 0.042, 0.0348, 0.0113, 0.0083, 0.0042], [0.3662, 0.344, 0.0721, 0.0265, 0.0151, 0.0076, 0.0067, 0.0059], [0.4124, 0.2501, 0.0493, 0.0299, 0.0281, 0.0248, 0.0193, 0.015], [0.472, 0.2526, 0.06, 0.0283, 0.0207, 0.0195, 0.0134, 0.0118], [0.5643, 0.2352, 0.0764, 0.0339, 0.0125, 0.011, 0.0086, 0.0067], [0.6454, 0.2095, 0.0468, 0.0284, 0.0126, 0.0072, 0.0067, 0.0063], [0.5152, 0.2758, 0.0697, 0.0373, 0.0291, 0.0129, 0.0129, 0.0107], [0.6098, 0.2542, 0.0643, 0.0236, 0.0162, 0.0077, 0.0068, 0.0047], [0.5318, 0.3655, 0.034, 0.0234, 0.0206, 0.0036, 0.0034, 0.0022], [0.6756, 0.2486, 0.0262, 0.018, 0.0048, 0.0029, 0.0026, 0.0023], [0.8255, 0.1117, 0.022, 0.0133, 0.0026, 0.0026, 0.0015, 0.0013], [0.9358, 0.022, 0.0056, 0.0022, 0.0022, 0.0012, 0.0012, 0.0009], [0.9186, 0.0148, 0.0027, 0.0024, 0.0024, 0.0023, 0.0019, 0.0016], [0.9568, 0.0061, 0.0024, 0.0024, 0.0017, 0.0016, 0.0015, 0.0014], [0.5895, 0.0157, 0.009, 0.009, 0.009, 0.0084, 0.0058, 0.0051], [0.3336, 0.0177, 0.0156, 0.0129, 0.0129, 0.0114, 0.0089, 0.0084], [0.1476, 0.1014, 0.0423, 0.0351, 0.0226, 0.0129, 0.0129, 0.0114], [0.8451, 0.054, 0.054, 0.0175, 0.0121, 0.0065, 0.0021, 0.0021], [0.774, 0.0816, 0.0635, 0.0385, 0.0161, 0.0067, 0.0052, 0.0032], [0.5462, 0.258, 0.0652, 0.0508, 0.0308, 0.0128, 0.0113, 0.0078], [0.825, 0.0598, 0.0362, 0.0282, 0.0249, 0.0071, 0.0063, 0.0056], [0.5211, 0.2789, 0.0705, 0.0705, 0.0202, 0.0123, 0.0108, 0.0051], [0.5266, 0.2487, 0.0915, 0.0555, 0.0337, 0.0262, 0.0124, 0.0024], [0.5759, 0.1456, 0.1456, 0.0368, 0.0325, 0.0287, 0.0197, 0.0044], [0.4142, 0.2847, 0.1524, 0.0385, 0.0265, 0.0206, 0.0161, 0.0125], [0.9695, 0.0108, 0.0084, 0.0074, 0.0008, 0.0007, 0.0004, 0.0004]], "ranks": {}}, {"pos": 536, "top": [["s", "\u0627\u062a", " \u2013", "\u044b", "\u2013", "sor", "\u05d9\u05dd", "\u2026."], ["s", "\u0627\u062a", "\u044b", "sider", "\u05d9\u05dd", "siz", "sche", "sium"], ["s", "\u0627\u062a", "\u044b", "\u05d9\u05dd", "sider", " \u2013,", "sene", "schrift"], ["schrift", "sium", "s", "\u05d9\u05dd", "sula", "\u0627\u062a", "sene", "satz"], ["s", "\u0627\u062a", "\u05d9\u05dd", "\u044b", "sider", "siz", "sene", "svar"], ["s", "\u0627\u062a", "\u05d9\u05dd", "\u044b", "siz", "sider", "svar", "sium"], ["s", "\u0627\u062a", "\u7684", "\u044b", "\u5728", "\u4e2d", "\u05d9\u05dd", "siz"], ["s", "\u044b", "\u7684", "\u0627\u062a", "\u05d9\u05dd", "sene", "schrift", " {})."], ["s", "\u044b", "\u05d9\u05dd", "\u0627\u062a", "sene", "schrift", "satz", "sium"], ["s", "siz", "\u044b", "\u05d9\u05dd", "s\u00f6k", "sium", "phabet", "\u0627\u062a"], ["s", "\u0627\u062a", " |\u2022", "\u044b", "\u05d9\u05dd", "\u5728", "siz", "sene"], ["s", "\u05d9\u05dd", "iances", "\u044b", "\u0627\u062a", " **\u2022", " |\u2022", "sene"], ["s", "\u52a0\u62ff\u5927", "\u05d9\u05dd", "iances", "igators", "igator", " **\u2022", "izion"], ["s", "igators", "\u52a0\u62ff\u5927", "\u05d9\u05dd", "iances", "siz", "igator", "igated"], ["s", "ated", "\u0627\u062a", "aute", "igated", "siz", "igator", "istic"], ["s", "siz", "\u0627\u062a", "\u05d9\u05dd", "nolog", "igators", "igator", "ated"], ["s", "\u0627\u062a", "siz", "ated", "es", "ashing", "\u05d9\u05dd", "aute"], ["s", "siz", "aute", "\u0627\u062a", "ashing", "iances", "igator", " booze"], ["s", "iances", "igator", "aute", " booze", "siz", "\u0627\u062a", "ughs"], ["s", " booze", "igator", "igned", "aute", "phabet", "siz", "gorith"], ["s", "<|endoftext|>", "u", "\n\n", "il", "Though", "ated", " \u043f\u0440\u043e\u0447\u0438\u0445"], ["s", "ated", "izion", "igator", "\u0627\u062a", "igned", "siz", "izational"], ["s", "ed", "ated", "es", "igned", "\u0627\u062a", "ifer", "ing"], ["s", "<|endoftext|>", "ed", "a", "o", "ated", "u", "at"], ["s", " \n\n", "\n\n", "ed", "a", "ated", "ing", "u"], ["s", "ed", " \n\n", " ...", " [...]", "\n\n", "ated", " \ufffd"], ["s", "\n\n", " *_", " @_", " allocator", "ed", " _", " <$"], ["\n\n", "s", " \n\n", " _", " @", " @_", " ____", "ed"], ["s", "ed", " @", " @_", "ing", " scav", " ...", "ated"], ["s", "ed", "ing", " scav", " trash", " allocator", " stash", " _"], ["s", "ed", " scav", " trash", "ing", " allocator", "ated", " stash"], ["s", "ed", " scav", " trash", "ing", " non", " garbage", " stuff"], ["s", " scav", "ed", " trash", " anything", " allocator", "ing", " stash"], [" allocator", " scav", " stash", " *\u2013", " Allocator", " trash", "s", " amort"], [" allocator", " stash", " scav", " *\u2013", "**\u2013", " Allocator", " amort", "s"], [" *\u2013", "*\u201d", "**\u2013", "*\u201d,", " allocator", "s", " stash", " **\u2014"], [" allocator", " scav", " amort", " *\u2013", " Allocator", " optimizations", "*\u201d,", "*\u201d"], [" allocator", " Allocator", " amort", " scav", " optimizations", "Allocator", " Async", " allocations"], [" allocator", " scav", " Allocator", " amort", " allocations", "Allocator", " garbage", " realloc"], [" allocator", " Allocator", " scav", "Allocator", " allocations", " amort", " Alloc", " optimizations"], [" allocator", " allocations", " Allocator", "Allocator", " Allocation", " allocation", " malloc", " optimizations"], [" allocator", " allocations", " allocation", " Allocator", " amort", " Allocation", "Allocator", " Alloc"], [" allocations", " allocator", " amort", " Allocation", " allocation", " Alloc", " budgets", " alloc"], [" allocations", " allocator", " Allocation", " amort", " allocation", " Alloc", " optimizations", " Allocator"], [" allocations", " allocator", " During", " Allocation", " amort", " allocation", " optimizations", " Alloc"], [" During", " allocations", " Allocation", " allocator", " allocation", " amort", ".alloc", " budgets"], [" During", " Allocation", " allocator", " Alloc", " allocations", " durante", "during", ".alloc"], [" During", " Allocation", " durante", "during", " Alloc", "During", " during", " Allocator"], [" During", " Allocation", "during", " Alloc", " allocations", " allocator", " durante", " Allocator"], [" Allocation", " allocations", " Alloc", " allocator", " During", "/non", ".alloc", "during"], [" Allocation", " allocations", " Alloc", " allocator", " optimizations", " Algorithms", " Allocator", "-zero"], [" Allocation", " optimizations", " Algorithms", " allocations", " allocator", " Runtime", " workflows", " Alloc"], [" Allocation", " allocations", " optimizations", " Algorithms", " allocator", " Gameplay", " Alloc", "alloc"], [" optimizations", " allocations", " Algorithms", " Gameplay", " Allocation", " gameplay", " runtime", " allocator"], [" allocations", " Allocation", " allocator", " allocation", " Alloc", "alloc", " alloc", " Allocate"], [" allocations", " Allocation", " allocation", " allocator", "alloc", " Alloc", " loops", "-loop"], [" allocations", " Allocation", " allocation", " Alloc", " allocator", "alloc", " loops", "-loop"], [" allocations", " Allocation", " allocation", " allocator", " Alloc", "alloc", " loops", " runtime"], [" Allocation", " allocations", " Gameplay", " allocation", " Alloc", " allocator", " Rendering", "GC"], [" Allocation", " allocations", " allocation", " Alloc", " allocator", "alloc", " Allocate", " alloc"], [" Allocation", " allocation", " allocations", " Alloc", " allocator", " Allocate", " alloc", "alloc"], [" Allocation", " allocation", " Alloc", " allocations", " Allocate", " alloc", "alloc", " allocator"], ["loc", "location", "locate", "lo", "lok", " allocation", " Allocation", " allocations"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0424, 0.0424, 0.033, 0.033, 0.031, 0.0291, 0.0242, 0.0188], [0.9972, 0.0017, 0.0002, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9821, 0.004, 0.002, 0.0016, 0.0007, 0.0007, 0.0003, 0.0002], [0.9803, 0.002, 0.0015, 0.0008, 0.0007, 0.0005, 0.0004, 0.0003], [0.6612, 0.0073, 0.0065, 0.0054, 0.0054, 0.0047, 0.0031, 0.0022], [0.3854, 0.0096, 0.0075, 0.0066, 0.0059, 0.0059, 0.004, 0.0038], [0.4171, 0.0072, 0.0067, 0.0063, 0.0049, 0.0049, 0.0044, 0.0044], [0.104, 0.0075, 0.0071, 0.0059, 0.0059, 0.0049, 0.0043, 0.004], [0.023, 0.0096, 0.0045, 0.0045, 0.004, 0.0038, 0.0038, 0.0038], [0.0157, 0.0061, 0.0061, 0.0058, 0.0048, 0.0042, 0.0037, 0.0033], [0.0703, 0.007, 0.0065, 0.0065, 0.0054, 0.0051, 0.0048, 0.0042], [0.6326, 0.0051, 0.0035, 0.0026, 0.0026, 0.0024, 0.002, 0.0018], [0.208, 0.0052, 0.0046, 0.0034, 0.0033, 0.003, 0.0029, 0.0027], [0.9232, 0.0012, 0.0007, 0.0005, 0.0005, 0.0004, 0.0004, 0.0004], [0.2397, 0.0056, 0.005, 0.0041, 0.0039, 0.0032, 0.0028, 0.0028], [0.1445, 0.0044, 0.0039, 0.0034, 0.0032, 0.003, 0.0026, 0.0026], [0.0688, 0.0032, 0.0032, 0.0032, 0.0032, 0.003, 0.0028, 0.0025], [0.1765, 0.0175, 0.0073, 0.0047, 0.0047, 0.0042, 0.0042, 0.0037], [0.0757, 0.0262, 0.014, 0.0062, 0.0055, 0.0048, 0.0048, 0.0043], [0.6043, 0.0438, 0.0411, 0.0046, 0.0036, 0.0025, 0.0025, 0.0022], [0.644, 0.0819, 0.0283, 0.0111, 0.0056, 0.0056, 0.0056, 0.0043], [0.7467, 0.0421, 0.0212, 0.0212, 0.0069, 0.0031, 0.0029, 0.0027], [0.4066, 0.0355, 0.0314, 0.0123, 0.0096, 0.009, 0.0079, 0.0066], [0.1613, 0.0263, 0.015, 0.015, 0.011, 0.0091, 0.0091, 0.008], [0.6755, 0.0669, 0.059, 0.0554, 0.008, 0.008, 0.0035, 0.0035], [0.5358, 0.0221, 0.0126, 0.0087, 0.0072, 0.006, 0.006, 0.0044], [0.3979, 0.0175, 0.0094, 0.0068, 0.0064, 0.006, 0.0057, 0.0057], [0.3362, 0.0157, 0.013, 0.0102, 0.0074, 0.0074, 0.0051, 0.0051], [0.4685, 0.0182, 0.0133, 0.0049, 0.0046, 0.0032, 0.0026, 0.0026], [0.1631, 0.0162, 0.0143, 0.0104, 0.0059, 0.0059, 0.0046, 0.0043], [0.0093, 0.0077, 0.0068, 0.006, 0.0041, 0.0036, 0.0033, 0.0029], [0.0095, 0.0057, 0.0054, 0.0048, 0.0035, 0.0035, 0.0031, 0.0027], [0.0245, 0.0131, 0.008, 0.0058, 0.0055, 0.0048, 0.0034, 0.0032], [0.0246, 0.0103, 0.0075, 0.0075, 0.0075, 0.0055, 0.0052, 0.0043], [0.0608, 0.0253, 0.0112, 0.0106, 0.0077, 0.0057, 0.0053, 0.0047], [0.0701, 0.0581, 0.0228, 0.0138, 0.0114, 0.0108, 0.0101, 0.0095], [0.0681, 0.0221, 0.0208, 0.0172, 0.0118, 0.0104, 0.0081, 0.0081], [0.0774, 0.0267, 0.0222, 0.0222, 0.0152, 0.0143, 0.0119, 0.0112], [0.1118, 0.0637, 0.0301, 0.0266, 0.0249, 0.0249, 0.0234, 0.0151], [0.072, 0.0635, 0.0527, 0.0385, 0.0362, 0.0171, 0.0142, 0.0133], [0.0293, 0.0275, 0.0189, 0.0167, 0.0138, 0.0138, 0.013, 0.0084], [0.034, 0.0234, 0.022, 0.0194, 0.0182, 0.0151, 0.0125, 0.0092], [0.0358, 0.0336, 0.0262, 0.0204, 0.0159, 0.014, 0.0132, 0.0109], [0.0646, 0.0346, 0.021, 0.0174, 0.0135, 0.0135, 0.0112, 0.0105], [0.2167, 0.0377, 0.0178, 0.0178, 0.0147, 0.0122, 0.0074, 0.0061], [0.0547, 0.0483, 0.0189, 0.0189, 0.0178, 0.0147, 0.0147, 0.0084], [0.0414, 0.0236, 0.0152, 0.0098, 0.0098, 0.0092, 0.0082, 0.0072], [0.0602, 0.0134, 0.0105, 0.0098, 0.0072, 0.006, 0.006, 0.0056], [0.0618, 0.0292, 0.0201, 0.0188, 0.0166, 0.0074, 0.0074, 0.0057], [0.1237, 0.0798, 0.0427, 0.0294, 0.0215, 0.0202, 0.0167, 0.0095], [0.0758, 0.0629, 0.046, 0.046, 0.0297, 0.0297, 0.0231, 0.0231], [0.6684, 0.1162, 0.1025, 0.0333, 0.0157, 0.0122, 0.0108, 0.0066], [0.5686, 0.1438, 0.0363, 0.0363, 0.0321, 0.0195, 0.0195, 0.0161], [0.427, 0.3326, 0.0578, 0.0273, 0.0241, 0.0137, 0.0137, 0.0078], [0.4054, 0.2786, 0.0905, 0.0377, 0.0333, 0.0178, 0.0122, 0.0079], [0.2757, 0.1895, 0.079, 0.045, 0.0373, 0.0309, 0.02, 0.02], [0.4549, 0.2435, 0.1673, 0.0423, 0.02, 0.02, 0.0137, 0.0137], [0.4454, 0.2701, 0.1446, 0.0603, 0.0184, 0.0134, 0.0105, 0.0053], [0.5541, 0.1799, 0.0963, 0.0704, 0.0167, 0.0108, 0.009, 0.007], [0.2993, 0.2057, 0.1815, 0.1248, 0.0589, 0.0204, 0.0149, 0.0109]], "ranks": {}}, {"pos": 537, "top": [[",", ".", " \u2013", ";", "<|endoftext|>", "\u2013", "e", "\","], ["een", "\u0627\u064b", "eer", "@@@@", "er", " \u2013", " (\u201c", "e"], [".", ",", " \u2013", "er", " (\"", ";", "e", "\u3002"], ["erio", "aire", " Strec", "\uff0a\uff0a\uff0a\uff0a", " Blowjob", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\uff1d\uff1d\uff1d\uff1d", "erias"], ["aire", "\uff06", " (\u201c", "\uff20", " (@", "@@@@", " \u201c.", "eer"], [" \u201c.", " (\u201c", "\uff1a", " Modification", " (\"-", "\uff06", "aire", "\uff1d\uff1d\uff1d\uff1d"], [" (\u201c", " \u201c.", "aire", " (\"", "\uff06", " ().", " \u2014\u2014", " \ufffd"], ["aire", " AAC", " ().", "c\u00e9", " (\u201c", " Allocation", " Allocator", " (\""], ["aire", " \u201c.", " (\u201c", " ().", "\u00bb.**", "c\u00e9", "u\u00e9", "\u201d.*"], ["aire", " \u0420\u0430\u0437\u0443", "\u2011", " Allocator", " (\"", " \u041f\u043e\u043f\u0440\u043e", "\u5a06", "Allocator"], ["\u2011", "aire", " (\u201c", " $", ").*", ".\u2013", " \ufffd", " [$"], ["aire", "itrine", " [$", " allocation", "\u00bb.**", " entirety", "\uff0d\uff0d", " Allocator"], ["aire", " entirety", " Allocator", " allocation", " assignment", " transformative", " cryptocurrency", "itrine"], [" entirety", "aire", " assignment", " \u0420\u0430\u0437\u0443", "\u2014including", " weaponry", " allocation", " timeframe"], [" entirety", "aire", " \ufffd", " --", " \u2014", " weaponry", "\u2014including", " solely"], [" entirety", " \u2014", "\u2014including", " --", " potentially", "aire", " massively", " ostensibly"], [" entirety", "e", "aire", " potentially", " (\"", " massively", "al", " resources"], [" entirety", "aire", " massively", " resources", " downtime", " allocation", "e", " scrap"], [" entirety", "aire", "e", " allocator", " \"--", " space", " massively", " scrap"], [" entirety", "e", "aire", " \ufffd", " $", " allocator", " --", " \"$"], ["e", " \ufffd", " $", " entirety", " --", " \u2014", "<|endoftext|>", "t"], [" entirety", " allocator", " space", " resources", " downtime", "aire", " Allocator", " workspace"], ["e", " space", " entirety", " resources", " resource", "aire", " ,", " pool"], ["e", " ,", " [...]", " .", " ;", "<|endoftext|>", " ...", " /"], [" ,", "e", " [...]", " [[", " .", " ...", " for", " :"], [" [...]", " ,", " ...", " ____", " @", "e", " ________", " :"], [" @", " ,", " $", " *", " /", " for", " space", " #"], [" ,", " @", " _", " __", " --", " ________", " ____", " $"], [" ,", " @", " /", " and", " [[", " :", " ...", " non"], [" **", " ____", " ...", " __", " ________", " ,", " \n", " [...]"], [" ,", " free", " \n", " **", " non", " ...", " space", " for"], [" ...", " ,", " /", " [...]", " .", " and", " for", " **"], [" [...]", " ...", " **", " /", " *", " ,", " ________", " everything"], [" Kickstarter", " tools", " [...]", "\u2011", " scav", " /", " programming", " workflows"], [" [...]", "\u2011", " Kickstarter", " tools", " /", " programming", " ...", " algorithms"], ["\u2011", " /", " \u2013", " [...]", " Kickstarter", " \u2026", " [\u2026]", " \u200b\u200b"], ["\u2011", " algorithms", " Kickstarter", " workflows", " programming", " scav", " Zero", " /"], ["\u2011", " workflows", " algorithms", " Kickstarter", " programming", " /", " tools", " algorithm"], [" algorithms", " workflows", " games", "\u2011", " programming", " game", " algorithm", " Kickstarter"], ["\u2011", " algorithms", " workflows", " games", " programming", " routines", " game", " Kickstarter"], [" algorithms", " workflows", " games", " programming", " routines", " /", " algorithm", " optimizations"], [" routines", " algorithms", " workflows", " programming", " techniques", " games", " storage", " protocols"], [" routines", " algorithms", " workflows", " techniques", " programming", " protocols", " implementations", " optimizations"], [" routines", " workflows", " techniques", " protocols", " algorithms", " workflow", " frameworks", " optimizations"], [" routines", " workflows", " protocols", " techniques", " algorithms", " workflow", " frameworks", " programming"], [" routines", " techniques", " workflows", " protocols", " algorithms", " strategy", " workflow", " systems"], [" routines", " workflows", " techniques", " protocols", " algorithms", " workflow", " strategy", " strategies"], [" routines", " workflows", " techniques", " protocols", " Everything", " algorithms", " workflow", " Techniques"], [" routines", " workflows", " protocols", " techniques", " algorithms", " workflow", " toolkit", " loops"], [" routines", " workflows", " protocols", " toolkit", " algorithms", " techniques", " loops", " workflow"], [" routines", " workflows", " protocols", " workflow", " Algorithms", " toolkit", " algorithms", " Routine"], [" routines", " workflows", " protocols", " Gameplay", " algorithms", " lifecycle", " workflow", " APIs"], [" workflows", " routines", " Gameplay", " pipelines", " gameplay", " pipeline", " lifecycle", " runtime"], [" Gameplay", " gameplay", " loops", " routines", " pipelines", " workflows", " runtime", " pipeline"], [" loops", " loop", " Loop", "\u5faa\u73af", "-loop", "loop", "Loop", "loops"], [" loops", " loop", " Loop", "-loop", "loop", "\u5faa\u73af", "Loop", "loops"], [" loops", " loop", " Loop", "loop", "\u5faa\u73af", "-loop", "Loop", "loops"], [" loops", " loop", " Loop", "loop", "-loop", "\u5faa\u73af", " Rendering", "Loop"], [" loops", " Loop", " loop", " Gameplay", " pipeline", " Rendering", " Pipeline", " Architecture"], [" loops", " Rendering", " Updates", " Loop", " loop", " Gameplay", " Update", " Frame"], [" loops", " Rendering", " Loop", " Hot", " hot", " Gameplay", " Frames", " rendering"], [" Rendering", " Frame", " loops", " Frames", " Hot", " Loop", " Gameplay", " rendering"], [" Rendering", " Frame", " Hot", " Frames", " Updates", " Paths", " Render", " Loop"]], "p": [[0.7278, 0.184, 0.032, 0.0118, 0.0086, 0.0052, 0.0036, 0.0022], [0.0165, 0.0146, 0.0073, 0.0061, 0.0061, 0.0061, 0.0057, 0.0042], [0.1257, 0.1042, 0.0558, 0.0299, 0.017, 0.017, 0.0141, 0.0124], [0.0478, 0.0113, 0.0083, 0.0078, 0.0073, 0.0061, 0.0061, 0.0042], [0.0324, 0.0304, 0.0304, 0.0222, 0.0184, 0.0093, 0.0087, 0.0082], [0.0311, 0.013, 0.0042, 0.0035, 0.0035, 0.0035, 0.0033, 0.0029], [0.0624, 0.0379, 0.0203, 0.0131, 0.009, 0.0079, 0.007, 0.0066], [0.0388, 0.0118, 0.0059, 0.0056, 0.0046, 0.0044, 0.0036, 0.0036], [0.0333, 0.0139, 0.0095, 0.0074, 0.0058, 0.004, 0.0035, 0.0033], [0.0117, 0.0067, 0.0049, 0.0036, 0.0036, 0.003, 0.0028, 0.0026], [0.0201, 0.0157, 0.0061, 0.0048, 0.0045, 0.0045, 0.004, 0.004], [0.0159, 0.0036, 0.0026, 0.0024, 0.0024, 0.0024, 0.0023, 0.0023], [0.0083, 0.0083, 0.0044, 0.003, 0.0025, 0.0022, 0.0022, 0.0022], [0.0409, 0.016, 0.0026, 0.0025, 0.0019, 0.0019, 0.0017, 0.0016], [0.0628, 0.0066, 0.0052, 0.0043, 0.0035, 0.0029, 0.0028, 0.0024], [0.033, 0.0107, 0.0065, 0.0042, 0.0039, 0.0031, 0.0027, 0.0024], [0.0323, 0.0196, 0.006, 0.0049, 0.0039, 0.0032, 0.0028, 0.0023], [0.0207, 0.0086, 0.0023, 0.0019, 0.0019, 0.0019, 0.0018, 0.0017], [0.0259, 0.0084, 0.0058, 0.0021, 0.0018, 0.0018, 0.0016, 0.0016], [0.0297, 0.0159, 0.0149, 0.0066, 0.0033, 0.0031, 0.0029, 0.0026], [0.0885, 0.0224, 0.0164, 0.012, 0.0112, 0.0112, 0.0093, 0.0044], [0.0159, 0.0062, 0.0052, 0.004, 0.0035, 0.0035, 0.0029, 0.0024], [0.017, 0.0132, 0.0066, 0.0059, 0.0046, 0.0043, 0.0043, 0.004], [0.108, 0.079, 0.0309, 0.0256, 0.0089, 0.0083, 0.0078, 0.0078], [0.1767, 0.0692, 0.0611, 0.0175, 0.0175, 0.0128, 0.0083, 0.0069], [0.1571, 0.0697, 0.051, 0.0176, 0.0156, 0.0121, 0.0107, 0.0089], [0.1418, 0.1105, 0.0116, 0.0097, 0.008, 0.0075, 0.0075, 0.0071], [0.2572, 0.1215, 0.0307, 0.0198, 0.0128, 0.012, 0.0106, 0.01], [0.0965, 0.0485, 0.0115, 0.0102, 0.0102, 0.0084, 0.007, 0.007], [0.1162, 0.0622, 0.0484, 0.0455, 0.0402, 0.0244, 0.0215, 0.019], [0.043, 0.0158, 0.0149, 0.0123, 0.0116, 0.0116, 0.0109, 0.0102], [0.0664, 0.0355, 0.0202, 0.019, 0.0148, 0.0148, 0.0139, 0.0139], [0.0793, 0.0657, 0.0399, 0.0274, 0.0188, 0.0101, 0.0101, 0.0095], [0.0228, 0.0157, 0.013, 0.0101, 0.0101, 0.0095, 0.0089, 0.0079], [0.0614, 0.0256, 0.0212, 0.0129, 0.0129, 0.01, 0.0094, 0.0061], [0.0952, 0.0479, 0.0329, 0.0273, 0.0114, 0.0114, 0.0107, 0.0094], [0.0397, 0.02, 0.0156, 0.0146, 0.0121, 0.0094, 0.0094, 0.0089], [0.0463, 0.0206, 0.0193, 0.0141, 0.0125, 0.0103, 0.0091, 0.0063], [0.0328, 0.0226, 0.0212, 0.0212, 0.0146, 0.0129, 0.01, 0.0094], [0.0385, 0.0319, 0.0206, 0.0171, 0.0133, 0.0117, 0.0097, 0.0086], [0.0404, 0.0216, 0.0149, 0.014, 0.014, 0.0131, 0.0109, 0.0085], [0.0325, 0.0305, 0.0269, 0.0185, 0.0144, 0.0135, 0.0087, 0.0087], [0.0669, 0.046, 0.0406, 0.0246, 0.0149, 0.0132, 0.0124, 0.0085], [0.1013, 0.0614, 0.035, 0.029, 0.0241, 0.0121, 0.0114, 0.0107], [0.1784, 0.0843, 0.0544, 0.0424, 0.0274, 0.0121, 0.0101, 0.0101], [0.1915, 0.0516, 0.0484, 0.0276, 0.0202, 0.009, 0.009, 0.0079], [0.1915, 0.1492, 0.0427, 0.0313, 0.0229, 0.0157, 0.009, 0.0084], [0.1813, 0.1033, 0.0278, 0.0231, 0.0158, 0.0123, 0.0109, 0.0102], [0.3697, 0.1127, 0.0366, 0.0222, 0.0126, 0.0077, 0.0072, 0.0064], [0.4116, 0.1514, 0.0218, 0.011, 0.0103, 0.0091, 0.0071, 0.0071], [0.2489, 0.1938, 0.0297, 0.0109, 0.0097, 0.0097, 0.0091, 0.008], [0.2297, 0.1578, 0.0399, 0.0201, 0.0189, 0.0189, 0.0166, 0.0166], [0.1254, 0.1254, 0.0976, 0.0809, 0.0382, 0.0382, 0.0232, 0.0205], [0.131, 0.131, 0.09, 0.0701, 0.0701, 0.0425, 0.0375, 0.0331], [0.6856, 0.2226, 0.0497, 0.0111, 0.0111, 0.0086, 0.0052, 0.0015], [0.7989, 0.1225, 0.0398, 0.0114, 0.0078, 0.0069, 0.0025, 0.0015], [0.7222, 0.1611, 0.0761, 0.0103, 0.0103, 0.008, 0.0023, 0.0011], [0.6969, 0.1762, 0.0832, 0.0128, 0.0099, 0.006, 0.0022, 0.002], [0.4412, 0.1264, 0.1115, 0.0597, 0.032, 0.0282, 0.0282, 0.022], [0.301, 0.1422, 0.0761, 0.0523, 0.0407, 0.0317, 0.0317, 0.028], [0.4337, 0.1808, 0.0356, 0.0356, 0.0314, 0.0277, 0.0277, 0.0277], [0.2685, 0.1629, 0.1268, 0.0638, 0.0497, 0.0341, 0.0266, 0.0235], [0.4026, 0.1307, 0.07, 0.0545, 0.0374, 0.0292, 0.0292, 0.0213]], "ranks": {}}, {"pos": 538, "top": [[".", ",", " \u2013", "i", "-", "ting", "y", "u"], ["ting", " \u2018", "en", " *@", "u", "i", "ie", "ter"], [" \u2013", "\u2013", "\u2018", " \u2018", ",", "ting", ".", ".\u2013"], ["ting", "erweise", " Strec", "erot", "isserie", "illion", " *\u201c", " Geile"], ["ting", " *@", " \u2018", "bed", " HOT", "@", "en", " \u201c"], ["ting", " HOT", "-HT", "tem", "bed", "HOT", "dream", "resher"], ["ting", "ter", " *@", "-&", "ty", "en", "ly", "bies"], ["ting", "ter", " *@", "ness", "ty", "bies", "ly", "ish"], ["ting", "ness", "ty", "ter", "ly", " *@", "ish", "-HT"], ["ting", "ness", "-&", "-HT", "ty", "ish", "mary", " *@"], ["ting", "-&", "ty", "ness", "ter", "ish", "ly", "@"], ["ting", "ness", "ly", "ish", "ty", "-HT", "ron", "ter"], ["ting", "ness", "ly", "ty", "ter", "ish", "bies", "htag"], ["ting", "ness", "ty", "ly", "ter", "ish", "ron", "ware"], ["ting", "ty", "ness", "ron", "ish", "ter", "ly", "est"], ["ting", "ness", "ty", "ly", "ish", "ron", "ter", "est"], ["ting", "ness", "ty", "ly", "y", "i", "est", "ish"], ["ting", "ness", "ty", "ron", "ish", "ly", "bies", "ware"], ["ting", "ness", "ty", "bies", "ish", "ron", "te", "ware"], ["ting", "ty", "ness", "ish", "te", "kin", "i", "ron"], ["ting", "ty", "ness", "te", "f", "d", "ct", "HOT"], ["ting", "htag", "ness", "htags", "kins", "bies", "punk", "ware"], ["ting", "ness", "bies", "kins", "htag", "ty", "ware", "ish"], ["ting", "ness", "ty", "spot", "ish", "stuff", "ware", "ct"], [" \r\n\r\n", "  \n\n", "ting", "\r\n\r\n", "   \n\n", " \n\n", "  \r\n\r\n", "ness"], ["ting", "ness", " \ufffd", "htag", "punk", "stuff", "kins", "ware"], ["ting", "ness", "ware", " \ufffd", "htag", "stuff", "punk", "htags"], ["ting", "ness", " \ufffd", "\r\n\r\n", " \r\n\r\n", "\n\n", "ware", "ty"], ["ting", "ness", "ware", "kin", "stream", "punk", "stuff", "pace"], ["ting", "ness", " workflows", "ware", "stream", "pace", "stuff", "punk"], [" workflows", "ting", "ness", "ware", "punk", "stuff", "stream", "pace"], ["ting", " workflows", "ness", "ware", " tech", " stuff", "stream", "stuff"], ["ting", " tech", "ness", " HOT", "ware", " stuff", " hot", " engine"], [" workflows", " tech", "ware", "ting", " workflow", "stuff", "punk", "tech"], [" workflows", " tech", "ware", "stuff", "ting", "tech", "shit", " workflow"], [" workflows", " \ufffd", "ware", "\u2011", "ting", " HOT", "zens", "stuff"], [" workflows", "ware", " HOT", " workflow", " runtime", "zens", " tech", "punk"], [" workflows", " workflow", "ware", " runtime", " HOT", " tech", "lemetry", " engine"], [" workflows", " workflow", "\u5173\u952e\u73af\u8282", " optimizations", " runtime", "zens", " Workflow", "lemetry"], [" workflows", " workflow", " Workflow", "\u5173\u952e\u73af\u8282", " optimizations", " loop", " loops", " gameplay"], [" workflows", " workflow", " Workflow", " optimizations", " CPU", " runtime", " loop", " loops"], [" workflows", " workflow", " loops", " loop", " optimizations", " Workflow", " CPU", " circuits"], [" workflows", " loops", " loop", " workflow", " circuits", " routines", "-loop", " runtime"], [" workflows", " loops", " loop", " workflow", " circuits", " routines", "-loop", " runtime"], [" workflows", " loops", " loop", " workflow", " circuits", " routines", "-loop", " cycles"], [" workflows", " loops", " loop", " circuits", " routines", " workflow", " cycles", "-loop"], [" workflows", " loops", "-loop", " loop", " Loop", " workflow", " circuits", " routines"], [" workflows", " loops", " Loop", " Workflow", " circuits", "-loop", " loop", " workflow"], [" workflows", " loops", "-loop", "\u5173\u952e\u73af\u8282", " Loop", " Workflow", "loops", " circuits"], [" workflows", " loops", "-loop", "loops", " Workflow", " Loop", "\u5173\u952e\u73af\u8282", " circuits"], ["*:", "**:", " workflows", " **:", "*</", "loops", " loops", "-loop"], ["*:", "**:", ":*", " **:", "loops", "*</", ":**", "!:"], [":**", ":*", "**:", "*:", "!:", " **:", "!**", "izontal"], [":**", " loops", "!:", "!**", "**:", ":*", "loops", "-loop"], [" loops", " loop", "-loop", "loop", " Loop", "loops", "Loop", "\u5faa\u73af"], [" loops", "-loop", " loop", "loop", " Loop", "loops", "Loop", " paths"], [" loops", " loop", " paths", "loop", "-loop", " Paths", " Loop", "\u8def\u5f84"], [" loops", " paths", " loop", "loop", " Paths", "-loop", " Loop", "\u8def\u5f84"], [" Paths", " paths", " Path", "paths", "\u8def\u5f84", " loops", "-path", "path"], [" Path", " Paths", " paths", " path", " loops", "path", " loop", " Loop"], [" path", " Path", " paths", " Paths", "path", " loops", " loop", "-path"], [" Path", " Paths", " paths", " path", " Loop", "path", " loops", "paths"], [" Path", " Paths", " Loop", " paths", " path", "path", "paths", " Lo"]], "p": [[0.4047, 0.0797, 0.0548, 0.0454, 0.0376, 0.0354, 0.0201, 0.0201], [0.4681, 0.0463, 0.0409, 0.0248, 0.017, 0.011, 0.0081, 0.0081], [0.2572, 0.2003, 0.1377, 0.1293, 0.0394, 0.0255, 0.0211, 0.0128], [0.035, 0.0089, 0.0054, 0.0047, 0.0045, 0.0045, 0.0037, 0.0035], [0.1036, 0.0555, 0.046, 0.0116, 0.0109, 0.0103, 0.0103, 0.0075], [0.0743, 0.0095, 0.0083, 0.0078, 0.0069, 0.0065, 0.0057, 0.0054], [0.599, 0.0181, 0.0124, 0.0103, 0.0067, 0.0063, 0.0052, 0.0036], [0.6488, 0.0173, 0.0162, 0.0072, 0.0056, 0.005, 0.0047, 0.0047], [0.7419, 0.0224, 0.0136, 0.012, 0.0113, 0.0113, 0.0044, 0.0039], [0.254, 0.0366, 0.0173, 0.0143, 0.0143, 0.0082, 0.0077, 0.006], [0.5218, 0.0517, 0.0456, 0.026, 0.0139, 0.0115, 0.0108, 0.007], [0.3608, 0.038, 0.0149, 0.0116, 0.0109, 0.0075, 0.0066, 0.0058], [0.3835, 0.0666, 0.0131, 0.0102, 0.0085, 0.008, 0.0055, 0.0048], [0.6107, 0.0442, 0.0196, 0.0127, 0.0093, 0.0087, 0.0072, 0.0036], [0.4605, 0.0517, 0.0402, 0.0168, 0.0123, 0.0102, 0.0084, 0.0062], [0.4023, 0.058, 0.033, 0.0156, 0.0107, 0.0089, 0.0074, 0.0061], [0.6367, 0.0491, 0.0317, 0.0132, 0.0085, 0.0075, 0.0071, 0.0066], [0.5991, 0.036, 0.0338, 0.0097, 0.0075, 0.0059, 0.0055, 0.0049], [0.4416, 0.0437, 0.0437, 0.0098, 0.0086, 0.0067, 0.0067, 0.0063], [0.3316, 0.0478, 0.0328, 0.0088, 0.0083, 0.0065, 0.0057, 0.0054], [0.1922, 0.0403, 0.0168, 0.0139, 0.0131, 0.0131, 0.0108, 0.0096], [0.1718, 0.0318, 0.0193, 0.016, 0.0141, 0.011, 0.004, 0.004], [0.2271, 0.0271, 0.0113, 0.0106, 0.0088, 0.0069, 0.0064, 0.0057], [0.2174, 0.0355, 0.019, 0.0084, 0.0066, 0.0054, 0.0054, 0.0054], [0.0706, 0.0313, 0.026, 0.0229, 0.0148, 0.009, 0.0079, 0.0066], [0.052, 0.0191, 0.0085, 0.007, 0.007, 0.0062, 0.0045, 0.0045], [0.0548, 0.0215, 0.0089, 0.0084, 0.007, 0.007, 0.0061, 0.0045], [0.0552, 0.0261, 0.0148, 0.0116, 0.0096, 0.0079, 0.0079, 0.0062], [0.0641, 0.0284, 0.0152, 0.0068, 0.0063, 0.006, 0.006, 0.0046], [0.058, 0.0274, 0.0227, 0.0107, 0.0089, 0.0054, 0.0054, 0.0051], [0.0264, 0.0248, 0.0103, 0.0059, 0.0052, 0.0046, 0.0046, 0.004], [0.038, 0.0191, 0.0123, 0.008, 0.007, 0.007, 0.0062, 0.0051], [0.0259, 0.0101, 0.0095, 0.0084, 0.0061, 0.0061, 0.0058, 0.004], [0.0603, 0.0112, 0.0105, 0.0092, 0.0068, 0.0064, 0.0053, 0.0049], [0.0466, 0.0104, 0.0092, 0.0076, 0.0067, 0.0063, 0.0059, 0.0056], [0.042, 0.0225, 0.0073, 0.0069, 0.0069, 0.0064, 0.0057, 0.0053], [0.0644, 0.0064, 0.006, 0.0047, 0.0047, 0.0047, 0.0044, 0.0041], [0.1273, 0.0111, 0.0056, 0.0049, 0.0046, 0.0044, 0.0038, 0.0036], [0.2368, 0.0234, 0.0071, 0.0067, 0.0043, 0.0041, 0.0038, 0.0038], [0.2758, 0.0423, 0.0083, 0.0078, 0.0074, 0.0057, 0.0054, 0.0054], [0.421, 0.0732, 0.0127, 0.0099, 0.0099, 0.0093, 0.0082, 0.0077], [0.5017, 0.0819, 0.0341, 0.022, 0.0134, 0.0126, 0.0104, 0.0092], [0.3388, 0.1412, 0.0857, 0.0589, 0.0191, 0.0131, 0.0102, 0.0102], [0.3566, 0.1158, 0.0796, 0.0796, 0.0201, 0.0178, 0.0115, 0.0101], [0.3995, 0.1665, 0.0694, 0.0421, 0.0176, 0.0137, 0.0137, 0.0121], [0.2319, 0.2319, 0.0801, 0.026, 0.0203, 0.0203, 0.0158, 0.0148], [0.4004, 0.1568, 0.0396, 0.0372, 0.0212, 0.0176, 0.0155, 0.0121], [0.3889, 0.0924, 0.0494, 0.0249, 0.0206, 0.0142, 0.0117, 0.011], [0.2426, 0.0478, 0.0226, 0.0226, 0.0137, 0.0137, 0.0129, 0.0113], [0.1094, 0.0355, 0.0277, 0.0158, 0.0139, 0.0139, 0.0096, 0.0096], [0.0717, 0.0409, 0.0361, 0.0233, 0.0193, 0.0133, 0.0125, 0.0091], [0.215, 0.0954, 0.0227, 0.0146, 0.0137, 0.0137, 0.0129, 0.0107], [0.0695, 0.0478, 0.0449, 0.0449, 0.0422, 0.0212, 0.0187, 0.0176], [0.0591, 0.0521, 0.0358, 0.0231, 0.0217, 0.0217, 0.0192, 0.018], [0.3865, 0.2069, 0.1611, 0.1107, 0.0523, 0.0317, 0.0218, 0.0192], [0.3088, 0.2122, 0.1873, 0.1287, 0.0608, 0.0287, 0.0136, 0.012], [0.2836, 0.134, 0.134, 0.0921, 0.0812, 0.0717, 0.0493, 0.0339], [0.3812, 0.1402, 0.1092, 0.0585, 0.0516, 0.0455, 0.0402, 0.0313], [0.3677, 0.2527, 0.1353, 0.0498, 0.0498, 0.0302, 0.0207, 0.0183], [0.292, 0.2577, 0.2007, 0.0738, 0.0395, 0.0395, 0.0211, 0.0145], [0.3697, 0.2243, 0.2243, 0.0825, 0.039, 0.0184, 0.0112, 0.0099], [0.4154, 0.3235, 0.1528, 0.0637, 0.0098, 0.0086, 0.0076, 0.0067], [0.5811, 0.3994, 0.0083, 0.0057, 0.0016, 0.0008, 0.0008, 0.0003]], "ranks": {}}, {"pos": 539, "top": [[" \u2013", ".", ",", " ", "\u00a0", "\u2013", " \u200b\u200b", "y"], [" \u2013", "\u2013", " \u200b\u200b", " ", "\u2013and", "\u200b\u200b", "y", "\u200c"], ["\u2013", "\u2026", " \u2013", "\u2013and", "\u2026..", ",", "\u200b", "\u2026."], ["ologies", "iveness", "aroo", "ively", "buster", "lander", "ivity", "enticate"], ["ed", "es", "ively", "fully", "y", "edly", " @", "ologies"], ["ively", "ologies", "edly", "fully", " myriad", "ed", " via", "ways"], ["ed", " @", "edly", " &", " myriad", "es", " [", "ting"], ["ting", "edly", "ively", " myriad", " via", "fully", "ed", " arguably"], [" [&", "ting", " [#", "edly", " &", " ____", " [$", " myriad"], [" myriad", " requisite", "edly", " arguably", "\\_", " egregious", "ively", "ting"], ["ed", " myriad", " ${", "\\_", " arguably", " \\", " requisite", " @"], [" arguably", " atop", "edly", "es", "ed", "ologies", " egregious", " myriad"], [" arguably", " leveraging", " egregious", "es", "ed", " myriad", "ologies", "edly"], [" arguably", " egregious", " leveraging", " myriad", "es", " atop", "ed", " via"], [" arguably", " --", " myriad", " requisite", " atop", " egregious", " ostensibly", " squarely"], [" arguably", " requisite", " myriad", " egregious", " --", " leveraging", " atop", "es"], [" arguably", " myriad", "es", " requisite", " via", " egregious", " ostensibly", " leveraging"], [" arguably", "es", " myriad", " egregious", "edly", " requisite", "ologies", "ting"], [" arguably", " --", " myriad", "es", " requisite", " egregious", "s", "edly"], [" --", " myriad", " arguably", " requisite", "s", "edly", "es", " atop"], [" --", "s", " myriad", " requisite", " arguably", "es", " \u2014", "edly"], [" --", " egregious", "edly", " Palav", "sWith", "sPid", " atop", " arguably"], [" --", " arguably", " atop", "edly", " myriad", "es", " requisite", "s"], [" --", "s", " arguably", " ;", " ,", " :", " myriad", "es"], [" --", " _", "s", " arguably", " \u2014", " myriad", "--", " \n\n"], [" --", " :", " _", " ---", " arguably", "s", " ___", " ?"], [" --", " :", " _", " ,", " ;", " ?", "s", "es"], [" --", " ,", " _", " ^", " ?", " :", " [", " ;"], [" --", " ,", " ?", " :", "s", " arguably", " via", " ["], [" ?", " _", " --", " ____", " :", "s", " ___", " __"], [" :", " ?", " ,", " ;", " via", " .", "es", "s"], [" ,", " .", " for", " :", " [", " ;", " ?", "s"], [" ,", " [", " :", " for", " .", " via", " ;", "s"], [" tech", "es", " via", " core", " critical", " \u2014", " rapid", " engine"], ["es", " tech", " \u2014", " bypass", " via", " engine", " workflows", " route"], [" \u2014", "es", " [", " \u2013", " \u2026", " tech", " \u200b", "s"], [" \u2014", "es", " bypass", "s", " via", " cleanly", " tech", " workflows"], ["es", " \u2014", " workflows", " bypass", " via", "s", " critical", " protocols"], [" \u2014", "es", " workflows", " bypass", " critical", " protocols", " route", " routes"], ["es", " workflows", " route", " bypass", " routes", " critical", " protocols", " algorithms"], [" workflows", "es", " algorithms", " routes", " route", " routines", " optimizations", " protocols"], [" workflows", " routes", " route", " workflow", " routines", " algorithms", " protocols", " optimizations"], [" workflows", " routes", " route", " algorithms", " routines", " bypass", " protocols", " workflow"], [" workflows", " routes", " route", " protocols", " routines", " workflow", " bypass", " algorithms"], [" workflows", " protocols", " routes", " route", " workflow", " protocol", " routines", " bypass"], [" routes", " route", " core", " protocols", " workflows", " bypass", " critical", " via"], [" workflows", " protocols", " meticulously", " Avoid", " :", " routes", " workflow", " route"], [" meticulously", " :", " Critical", " Core", " Route", " Avoid", " Everything", " workflows"], [" :", ":", "*:", " meticulously", "**:", " }:", " ensures", " **:"], [" meticulously", ":", " :", "**:", "*:", "\u4e25\u683c\u63a7\u5236", " strict", " rigor"], ["*:", "**:", " :", ":", " }:", " **:", "():", "$:"], ["*:", "**:", " :", ":**", ":", ":*", " **:", " :**"], [":**", "**:", ":*", "*:", " :**", ":</", ":", " :*"], [":**", ":*", ":</", " :**", "*:", "**:", " rewrite", " Rewrite"], [":**", ":*", " rewrite", ":</", "*:", " Rewrite", " :**", " redesign"], [" rewrite", ":**", " Rewrite", " refactor", ":*", "rewrite", " rewriting", " redesign"], [":**", " rewrite", " Rewrite", ":*", "rewrite", " refactor", " :**", " rewriting"], [" rewrite", " Rewrite", ":**", " refactor", "rewrite", "\u91cd\u6784", " rewriting", " redesign"], [" rewrite", " Rewrite", "rewrite", " rewriting", " redesign", ":**", "\u91cd\u6784", " refactor"], [" rewrite", " Rewrite", "rewrite", " rewriting", ":**", " refactor", " rewritten", " redesign"], [" rewrite", ":**", " Rewrite", ":", ":*", " rewriting", " refactor", "rewrite"], [":**", ":", " refactor", " Ref", " Rewrite", ":*", " ref", " rewrite"], [":**", "**:", " :**", "\uff1a**", ":</", ":", "):**", ":*"]], "p": [[0.4796, 0.2265, 0.1374, 0.0446, 0.0239, 0.0164, 0.0094, 0.0057], [0.6638, 0.1084, 0.0107, 0.0084, 0.0074, 0.0054, 0.0048, 0.0029], [0.7699, 0.0812, 0.0434, 0.0299, 0.0141, 0.011, 0.0071, 0.0059], [0.0034, 0.0024, 0.002, 0.002, 0.0018, 0.0017, 0.0017, 0.0017], [0.0743, 0.0656, 0.0451, 0.0213, 0.0137, 0.0129, 0.0065, 0.0065], [0.0494, 0.0182, 0.0151, 0.0133, 0.0097, 0.0071, 0.0041, 0.0041], [0.0928, 0.077, 0.0467, 0.0412, 0.0342, 0.0283, 0.0266, 0.025], [0.1899, 0.1305, 0.0511, 0.0274, 0.0213, 0.0101, 0.0074, 0.0057], [0.0828, 0.0569, 0.0535, 0.0535, 0.0237, 0.0163, 0.0153, 0.0144], [0.0816, 0.034, 0.0206, 0.0206, 0.0151, 0.0104, 0.0104, 0.0092], [0.0479, 0.045, 0.0373, 0.0351, 0.0351, 0.0291, 0.0273, 0.0241], [0.0476, 0.0198, 0.0198, 0.0198, 0.0186, 0.0164, 0.0154, 0.0145], [0.0376, 0.0311, 0.0293, 0.0293, 0.0167, 0.0138, 0.013, 0.0115], [0.0685, 0.0268, 0.0209, 0.0209, 0.0196, 0.0144, 0.0119, 0.0112], [0.1117, 0.0817, 0.0768, 0.0562, 0.0161, 0.0133, 0.0125, 0.0086], [0.0652, 0.0328, 0.0308, 0.0289, 0.0137, 0.0121, 0.01, 0.0083], [0.0966, 0.0517, 0.0378, 0.0314, 0.0131, 0.0115, 0.009, 0.0084], [0.0161, 0.0117, 0.0117, 0.0104, 0.0071, 0.0067, 0.0063, 0.0049], [0.0338, 0.0338, 0.0264, 0.0141, 0.0133, 0.0124, 0.0091, 0.0067], [0.1224, 0.0373, 0.033, 0.02, 0.0107, 0.0107, 0.0101, 0.0074], [0.1313, 0.0547, 0.0426, 0.0201, 0.0138, 0.0122, 0.0115, 0.0095], [0.0071, 0.0038, 0.0038, 0.0036, 0.0033, 0.0028, 0.0024, 0.0022], [0.0778, 0.005, 0.0041, 0.0039, 0.0036, 0.0034, 0.003, 0.0027], [0.4944, 0.0116, 0.0085, 0.0075, 0.0075, 0.0062, 0.0058, 0.0058], [0.4927, 0.0158, 0.0158, 0.0096, 0.0085, 0.008, 0.0075, 0.007], [0.4101, 0.0406, 0.0262, 0.0159, 0.0103, 0.0071, 0.0062, 0.0062], [0.2421, 0.0948, 0.0612, 0.0212, 0.0155, 0.0121, 0.0094, 0.0088], [0.2953, 0.1086, 0.0901, 0.0275, 0.0242, 0.0214, 0.0214, 0.013], [0.0641, 0.0602, 0.0414, 0.0343, 0.0221, 0.0172, 0.0172, 0.0152], [0.0571, 0.0536, 0.0418, 0.0325, 0.0306, 0.027, 0.027, 0.027], [0.0979, 0.0434, 0.0299, 0.0248, 0.0193, 0.016, 0.016, 0.0132], [0.081, 0.0631, 0.0317, 0.0263, 0.0192, 0.015, 0.0141, 0.0124], [0.0643, 0.0323, 0.0268, 0.0236, 0.0196, 0.0143, 0.0135, 0.0119], [0.0171, 0.0125, 0.0125, 0.0125, 0.0118, 0.011, 0.0059, 0.0052], [0.0383, 0.036, 0.0091, 0.008, 0.0063, 0.0055, 0.0052, 0.0052], [0.1733, 0.0769, 0.0283, 0.022, 0.0126, 0.0104, 0.0092, 0.0092], [0.128, 0.0685, 0.0135, 0.0105, 0.0082, 0.0082, 0.0072, 0.0068], [0.0619, 0.0352, 0.0138, 0.0101, 0.0084, 0.0084, 0.0065, 0.0065], [0.0349, 0.0308, 0.024, 0.0175, 0.0155, 0.0106, 0.01, 0.0094], [0.042, 0.0394, 0.0225, 0.0211, 0.0175, 0.0154, 0.0136, 0.012], [0.0948, 0.0395, 0.0328, 0.0255, 0.024, 0.024, 0.0225, 0.0212], [0.1372, 0.0446, 0.0369, 0.0306, 0.0306, 0.0306, 0.0198, 0.0186], [0.1085, 0.0546, 0.0453, 0.0352, 0.0311, 0.0258, 0.0258, 0.0214], [0.0875, 0.0725, 0.0565, 0.044, 0.0251, 0.0235, 0.0162, 0.0152], [0.0952, 0.0696, 0.051, 0.045, 0.0241, 0.0241, 0.0226, 0.0212], [0.0561, 0.0527, 0.0362, 0.034, 0.0282, 0.0234, 0.0207, 0.0161], [0.0482, 0.04, 0.0353, 0.0228, 0.0214, 0.0177, 0.0157, 0.013], [0.0417, 0.0269, 0.021, 0.0127, 0.012, 0.012, 0.0106, 0.0106], [0.2844, 0.0719, 0.0719, 0.0526, 0.0265, 0.0194, 0.0063, 0.0059], [0.1831, 0.0921, 0.0763, 0.0674, 0.0493, 0.0205, 0.017, 0.0141], [0.4087, 0.3607, 0.071, 0.0204, 0.0131, 0.0109, 0.0102, 0.0096], [0.3707, 0.3271, 0.0471, 0.0252, 0.0196, 0.0196, 0.0163, 0.0144], [0.5821, 0.1299, 0.0788, 0.0695, 0.0541, 0.0155, 0.01, 0.0069], [0.6506, 0.1281, 0.0416, 0.0286, 0.0252, 0.0173, 0.0173, 0.0105], [0.2983, 0.1243, 0.1097, 0.0754, 0.0587, 0.0356, 0.0295, 0.0261], [0.3242, 0.1735, 0.1352, 0.0638, 0.0563, 0.0439, 0.0235, 0.0221], [0.4087, 0.193, 0.1327, 0.0431, 0.038, 0.0315, 0.0231, 0.0231], [0.4345, 0.1598, 0.097, 0.0666, 0.0458, 0.0357, 0.0315, 0.0245], [0.4024, 0.3134, 0.0481, 0.0481, 0.0424, 0.033, 0.0291, 0.0291], [0.5017, 0.3908, 0.0321, 0.025, 0.0081, 0.0081, 0.0049, 0.0043], [0.3045, 0.2688, 0.2093, 0.0467, 0.025, 0.0221, 0.0221, 0.0195], [0.4248, 0.2006, 0.1379, 0.0371, 0.0308, 0.0272, 0.0211, 0.0145], [0.9977, 0.0012, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 540, "top": [[" \u2013", ".", ",", "\u2026..", "  \n", "\u2013", " (\u201e", " \u00a0"], ["  \n", " \u2013**", ",**", ",\\\"", "\u52c7\u5f80\u76f4\u524d", "   \n", ":**", " **\u2013"], ["\u2026..", "\u2026\u2026", ".", "\u2013", ",", "\u2013and", ".\u2013", " \u2013"], [" ;;^", "\u52a0\u62ff\u5927", " **\u201e", " **:**", " ``(", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " Shemale"], ["\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", ":@", ":**", " ##", "\u0103\u021b", "\u52c7\u5f80\u76f4\u524d", "\u0d3f\u0d32\u0d4d"], ["\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u0d4d\u0d1f", ":**", "\u4e8b\u534a\u529f\u500d", " **\u201e", ".:**", "raries"], [":**", " ##", "raries", "\u30f3", "\u201e", " //@", " ~~", "  \n"], [" **\u201e", "raries", ":**", "\u52a0\u62ff\u5927", " ##", " (\u201e", ".:**", "\u52c7\u5f80\u76f4\u524d"], [" **\u201e", ":**", "raries", " (\u201e", ",..", ".:**", "  \n", " ##"], ["\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", "\u65b0\u52a0\u5761", "\u52e4\u52e4\u6073\u6073", "\u8033\u719f\u80fd\u8be6", "raries", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u5162\u5162\u4e1a\u4e1a"], [" ##", "  \n", "\u30f3", "...", ":**", ",\\\"", ",..", ":@"], ["raries", " ``", "\u52a0\u62ff\u5927", " **\u201e", " ;;^", " ``(", " **\u2022", "\u52c7\u5f80\u76f4\u524d"], ["\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", " Savior", " ``", " flavorful", "raries", "\u0d33\u0d4d", "\u8033\u719f\u80fd\u8be6"], ["\u52a0\u62ff\u5927", "\u52c7\u5f80\u76f4\u524d", " flavorful", " savvy", " LGBTQ", " Savior", "raries", "\u65b0\u52a0\u5761"], [" savvy", " folks", " arguably", " fueled", " effortlessly", " seamlessly", " --", " ``"], [" behaviors", " gray", " showcasing", " leveraging", " savvy", " fueled", " showcased", " seamlessly"], [" arguably", " savvy", " showcasing", " incredibly", " effortlessly", " leveraging", " folks", " showcased"], [" savvy", "\u52c7\u5f80\u76f4\u524d", " seamlessly", " incredibly", " \u201e", " effortlessly", " showcasing", " leveraging"], [" savvy", "\u52e4\u52e4\u6073\u6073", "\u52c7\u5f80\u76f4\u524d", " Gabrie", " effortlessly", " cozy", " incredibly", " fueled"], [" effortlessly", " arguably", " swiftly", " sprawling", " savvy", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927"], [" swiftly", " arguably", " effortlessly", "\u4e0d\u53ef\u601d\u8bae", "\u52c7\u5f80\u76f4\u524d", " myriad", " sprawling", "\u52a0\u62ff\u5927"], [" ;;^", "\u52a0\u62ff\u5927", " Gabrie", "\u52e4\u52e4\u6073\u6073", "\u884c\u4e1a\u8d44\u8baf", "\u306f\u4e00\u5207", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae"], [" ``", " ;;^", " arguably", " swiftly", "\u4e0d\u53ef\u601d\u8bae", " Gabrie", "\u670d\u52a1\u7406\u5ff5", " ``("], [" ``", " swiftly", " even", " arguably", " nearly", " ultimately", " merely", " just"], [" swiftly", " arguably", "\n\n", "  \n\n", "   \n\n", " myriad", " nearly", " uniquely"], [" ;;^", " arguably", " swiftly", "\u52a0\u62ff\u5927", " seamlessly", " leveraging", "\u6253\u9020\u51fa", " effortlessly"], [" ;;^", " arguably", " leveraging", " ``", " aggressively", "\u52e4\u52e4\u6073\u6073", "\u306f\u4e00\u5207", " incentiv"], ["\n\n", " arguably", " ,", " heavily", " --", " even", " nearly", " ultimately"], [" arguably", " aggressively", " heavily", " meticulously", " leveraging", " strategically", " sprawling", " myriad"], [" **", " aggressively", " heavily", " leveraging", " meticulously", " strategically", " priorit", " sprawling"], [" ,", " heavily", " even", " aggressively", " meticulously", " every", " strategically", " all"], [" ,", " heavily", " even", " meticulously", " all", " many", " every", " countless"], [" heavily", " meticulously", " even", " ,", " aggressively", " massive", " only", " strategically"], [" meticulously", " heavily", " aggressively", " strategically", " priorit", " routinely", " often", " exclusively"], [" meticulously", " heavily", " aggressively", " strategically", " priorit", " rigor", " incredibly", " routinely"], [" meticulously", " heavily", " aggressively", " strictly", " rigor", " tightly", " priorit", " carefully"], [" meticulously", " aggressively", " heavily", " strictly", " rigor", " explicitly", " priorit", " tightly"], [" meticulously", " aggressively", " heavily", " rigor", " strictly", " relentlessly", " deliberately", " priorit"], [" meticulously", " aggressively", " heavily", " strictly", " relentlessly", " rigor", " tightly", " deliberately"], [" meticulously", " aggressively", " heavily", " relentlessly", " strictly", " rigor", " deliberately", " entirely"], [" meticulously", " aggressively", " heavily", " redesign", " everything", " relentlessly", " entirely", " completely"], [" meticulously", " redesign", " aggressively", " designing", " redesigned", " design", " heavily", " entirely"], [" meticulously", " redesign", " designing", " design", " redesigned", " aggressively", " strict", " entirely"], [" meticulously", " redesign", " designing", " strict", " heavily", " redesigned", " aggressively", " entirely"], [" meticulously", " redesign", " strict", " redesigned", " designing", " aggressively", " heavily", " entirely"], [" meticulously", " strict", " strictly", " redesign", " aggressively", " rigor", " entirely", " everything"], [" meticulously", " strict", " strictly", " rigor", " EVERY", " meticulous", " everything", " redesign"], [" meticulously", " strictly", " strict", " entirely", " rigor", " EVERY", " everything", " completely"], [" meticulously", " strictly", " strict", " rigor", " entirely", "\u4e25\u7981", "\u5fb9\u5e95", "\u4e25\u683c\u63a7\u5236"], [" meticulously", "\u4e25\u7981", "\u4e25\u683c\u63a7\u5236", " strictly", " strict", " rigor", "\u7d76\u5bfe\u306b", "\u5fb9\u5e95"], ["\u4e25\u7981", " meticulously", "\u4e25\u683c\u63a7\u5236", " rigor", "\u7d76\u5bfe\u306b", "\u5fb9\u5e95", "\u5f7b\u5e95", "\u7edd\u5bf9\u4e0d\u80fd"], ["\u4e25\u7981", " meticulously", "\u4e25\u683c\u63a7\u5236", " redesign", "\u5f7b\u5e95", "\u5fb9\u5e95", "\u5fc5\u987b\u5728", " rigor"], [" redesign", "\u4e25\u7981", " meticulously", "\u91cd\u6784", " rewrite", " rewriting", " redesigned", "\u5f3a\u5236"], [" redesign", " rewrite", "\u91cd\u6784", " rewriting", " Rewrite", " refactor", " redesigned", "rewrite"], [" redesign", " rewrite", " refactor", "\u91cd\u6784", " rewriting", " Rewrite", "rewrite", "\u6539\u9020"], [" rewrite", " Rewrite", "rewrite", " redesign", " rewriting", " refactor", "\u91cd\u5199", "_rewrite"], [" rewrite", " Rewrite", "rewrite", " rewriting", " refactor", " redesign", "\u91cd\u5199", "_rewrite"], [" rewrite", " Rewrite", " refactor", "\u91cd\u6784", " rewriting", "rewrite", " redesign", "\u91cd\u5199"], [" rewrite", " Rewrite", " rewriting", "rewrite", "\u91cd\u6784", "\u91cd\u5199", " refactor", "_rewrite"], [" rewrite", " Rewrite", " rewriting", "rewrite", "_rewrite", " refactor", "\u91cd\u5199", " rewritten"], [" rewrite", " Rewrite", " refactor", "rewrite", " rewriting", "_rewrite", " Every", " redesign"], [" refactor", " Ref", " Rewrite", " rewrite", " ref", " Restr", " Every", " Ensure"], [" Ref", " Rewrite", " refactor", " Every", " Restr", " Identify", " Ensure", " Profile"]], "p": [[0.5657, 0.2672, 0.0249, 0.0206, 0.0182, 0.016, 0.0151, 0.0059], [0.1518, 0.0763, 0.0435, 0.0361, 0.0318, 0.0318, 0.0264, 0.0233], [0.1956, 0.1837, 0.1114, 0.0676, 0.0676, 0.0362, 0.0265, 0.0219], [0.0306, 0.0306, 0.0224, 0.0197, 0.0174, 0.0127, 0.0113, 0.0106], [0.06, 0.0467, 0.0412, 0.025, 0.0235, 0.0161, 0.0134, 0.0126], [0.0508, 0.0477, 0.0187, 0.0176, 0.0155, 0.0155, 0.0146, 0.01], [0.0892, 0.0892, 0.0613, 0.0199, 0.0187, 0.0176, 0.0176, 0.0176], [0.103, 0.0708, 0.0403, 0.0356, 0.026, 0.0203, 0.0179, 0.0158], [0.0686, 0.0502, 0.0502, 0.0502, 0.0324, 0.0237, 0.0223, 0.0209], [0.0627, 0.0488, 0.0315, 0.0246, 0.0231, 0.0131, 0.0102, 0.009], [0.08, 0.0378, 0.0313, 0.0244, 0.0215, 0.0202, 0.0139, 0.0139], [0.0319, 0.0319, 0.0182, 0.0182, 0.0171, 0.0151, 0.0133, 0.0125], [0.037, 0.0198, 0.0175, 0.0136, 0.0136, 0.0099, 0.0088, 0.0082], [0.0175, 0.0106, 0.0099, 0.0073, 0.0068, 0.0064, 0.0053, 0.005], [0.0149, 0.0109, 0.0102, 0.0096, 0.0096, 0.009, 0.009, 0.007], [0.0094, 0.0069, 0.0064, 0.0064, 0.0061, 0.0061, 0.0061, 0.0061], [0.0112, 0.0105, 0.0105, 0.0099, 0.0093, 0.0082, 0.0077, 0.0072], [0.0099, 0.0082, 0.0068, 0.0057, 0.0053, 0.0047, 0.0044, 0.0037], [0.01, 0.0083, 0.0073, 0.0073, 0.0054, 0.0054, 0.0042, 0.0042], [0.0075, 0.0066, 0.0066, 0.0059, 0.0059, 0.0055, 0.0052, 0.0052], [0.0187, 0.0044, 0.0042, 0.0042, 0.0039, 0.0039, 0.0033, 0.0029], [0.0128, 0.0039, 0.0035, 0.003, 0.002, 0.002, 0.0018, 0.0015], [0.0207, 0.0067, 0.0032, 0.0028, 0.0026, 0.0022, 0.0017, 0.0017], [0.012, 0.0064, 0.006, 0.0057, 0.0041, 0.0041, 0.0037, 0.0032], [0.0127, 0.0093, 0.0087, 0.0041, 0.0039, 0.0036, 0.0032, 0.0028], [0.0058, 0.0031, 0.0026, 0.0021, 0.002, 0.0017, 0.0016, 0.0016], [0.0073, 0.0025, 0.0022, 0.002, 0.0018, 0.0017, 0.0016, 0.0015], [0.0263, 0.0193, 0.0117, 0.0103, 0.0075, 0.0071, 0.0067, 0.0055], [0.0177, 0.0156, 0.0138, 0.0138, 0.0122, 0.0089, 0.0069, 0.0054], [0.0362, 0.032, 0.0182, 0.0182, 0.0151, 0.0104, 0.0086, 0.0076], [0.0248, 0.0206, 0.0182, 0.0125, 0.0117, 0.0076, 0.0071, 0.0071], [0.0375, 0.0227, 0.0201, 0.0177, 0.0177, 0.0156, 0.0147, 0.0138], [0.0314, 0.0203, 0.0191, 0.0123, 0.0116, 0.0075, 0.0075, 0.007], [0.0832, 0.0505, 0.0326, 0.0136, 0.0082, 0.0073, 0.0068, 0.0064], [0.1209, 0.0504, 0.0418, 0.0144, 0.0088, 0.0077, 0.0077, 0.0073], [0.2219, 0.0816, 0.0386, 0.0161, 0.0161, 0.0104, 0.0097, 0.0092], [0.1482, 0.0957, 0.0399, 0.0201, 0.0166, 0.0129, 0.0129, 0.0122], [0.1999, 0.0783, 0.0347, 0.0164, 0.012, 0.0106, 0.0106, 0.0093], [0.3, 0.0669, 0.0279, 0.0149, 0.0132, 0.0124, 0.0116, 0.0109], [0.286, 0.0723, 0.025, 0.0183, 0.0134, 0.0134, 0.0134, 0.0126], [0.2198, 0.0556, 0.0263, 0.0204, 0.0204, 0.018, 0.0132, 0.0132], [0.1318, 0.0964, 0.0455, 0.0294, 0.0244, 0.0244, 0.0244, 0.019], [0.2062, 0.0808, 0.0316, 0.0262, 0.0246, 0.0231, 0.018, 0.0169], [0.2126, 0.0538, 0.0306, 0.027, 0.0224, 0.0198, 0.0186, 0.0186], [0.2013, 0.0839, 0.0422, 0.035, 0.0272, 0.024, 0.0226, 0.0226], [0.341, 0.0977, 0.0671, 0.0247, 0.0181, 0.017, 0.017, 0.017], [0.6766, 0.0555, 0.0555, 0.0192, 0.0132, 0.0091, 0.0075, 0.0071], [0.5605, 0.0974, 0.0669, 0.0204, 0.0169, 0.0132, 0.0109, 0.0103], [0.3955, 0.1133, 0.0472, 0.0346, 0.0325, 0.0325, 0.0163, 0.0153], [0.495, 0.067, 0.046, 0.0406, 0.0406, 0.0406, 0.0132, 0.0132], [0.2279, 0.2012, 0.074, 0.0576, 0.0308, 0.0272, 0.024, 0.0199], [0.2215, 0.2215, 0.0494, 0.034, 0.03, 0.0265, 0.0182, 0.0182], [0.4006, 0.167, 0.0542, 0.0479, 0.0329, 0.0256, 0.0226, 0.0176], [0.6372, 0.1255, 0.0672, 0.0462, 0.028, 0.0247, 0.0117, 0.0103], [0.5491, 0.1783, 0.0954, 0.0511, 0.0398, 0.0213, 0.0146, 0.0078], [0.5956, 0.0913, 0.0806, 0.0711, 0.0628, 0.0554, 0.0124, 0.0096], [0.5523, 0.1793, 0.0847, 0.0748, 0.0353, 0.0147, 0.013, 0.013], [0.6, 0.1339, 0.0493, 0.0493, 0.0435, 0.0435, 0.0264, 0.016], [0.6483, 0.1639, 0.0603, 0.0414, 0.0222, 0.0196, 0.0119, 0.0119], [0.7344, 0.2104, 0.0173, 0.0152, 0.0072, 0.0044, 0.0039, 0.0016], [0.5905, 0.3161, 0.0202, 0.0157, 0.0139, 0.0123, 0.0108, 0.004], [0.4106, 0.2491, 0.1712, 0.063, 0.0263, 0.0109, 0.0097, 0.0062], [0.8354, 0.0777, 0.0223, 0.0135, 0.0093, 0.0064, 0.006, 0.0028]], "ranks": {}}, {"pos": 541, "top": [["s", "o", "saf", "es", "e", "y", "\u2026", "a"], ["s", "saf", "es", "\u0627\u062a", "sburg", "sWith", "sor", "sand"], ["s", "saf", "\u2026", "\u2013", "t", "es", "sand", "\u2026."], ["s", "saf", "sburg", "\u05d9\u05dd", "sWith", "satz", "\u0627\u062a", "sik"], ["s", "es", "saf", "sand", "sel", "\u0627\u062a", "sWith", "spr"], ["s", "siz", "sand", "saf", "sWith", "sel", "san", "es"], ["s", "sand", "saf", "siz", "sut", "sor", "sel", "sburg"], ["s", "saf", "sand", "sburg", "sut", "siz", "sing", "sul"], ["s", "saf", "sburg", "sand", "scheid", "\u05d9\u05dd", "satz", "sut"], ["s", "saf", "sand", "siz", "sburg", "sans", "s\u00f6k", "sula"], ["s", "saf", "ing", "sand", "es", "ska", "sing", "\u2026**"], ["s", "saf", "satz", "a\u00e7", "sweise", "sburg", "erator", "iants"], ["s", "saf", "a\u00e7", "satz", "sburg", "erator", "\u2026**", "sweise"], ["s", "ties", "saf", "iants", "a\u00e7", "mate", "ing", "sburg"], ["s", "ties", "saf", "snap", "mate", "siz", "ing", "iants"], ["s", "ing", "ties", "saf", "siz", "snap", "es", "sans"], ["s", "ing", "es", "sel", "saf", "siz", "sans", "ties"], ["s", "ing", "es", "saf", "sel", "siz", "sing", "kits"], ["s", "saf", "ing", "i", "sburg", "siz", "es", "iants"], ["s", "i", "ing", "saf", "snap", "siz", "sing", "iop"], ["s", "i", "ing", "midd", "saf", "iop", "ential", "snap"], ["s", "iop", "iante", "resher", "iative", "sweise", "iants", "snap"], ["s", "iante", "iop", "i", "midd", "iative", "ential", "ties"], ["s", "i", "ing", "iante", "midd", "ties", "iop", "ential"], [" \r\n\r\n", "\r\n\r\n", "i", "  \n\n", "  \r\n\r\n", "s", "midd", "\t\n\n"], [" \r\n\r\n", "\u2026**", "iop", "iante", "iative", "midd", "i", "s"], [" \r\n\r\n", "\r\n\r\n", "\u2026**", "iante", "iative", "iha", "iop", "\t\n\n"], ["  \n\n", " \r\n\r\n", " \n\n", "\r\n\r\n", "  \r\n\r\n", "\t\n\n", "   \n\n", "i"], [" \r\n\r\n", "  \n\n", "\r\n\r\n", "  \r\n\r\n", " \n\n", "i", "\u2026**", "\u2011"], [" \r\n\r\n", "  \n\n", "  \r\n\r\n", "ing", "\u2026**", "i", "\r\n\r\n", "s"], [" \r\n\r\n", "ing", "  \n\n", "s", "\u2026**", " \n\n", "\u2011", "i"], [" **", "ing", "s", "\u2011", " redesign", "i", " meticulously", " \r\n\r\n"], ["\u2011", " meticulously", " aggressively", "s", "ing", " redesign", " crafting", " tech"], [" meticulously", " redesign", " aggressively", " optimized", " tech", " refactor", " crafting", "\u2011"], [" meticulously", " redesign", " aggressively", " refactor", " rigor", " tech", "\u2011", " redesigned"], [" meticulously", " redesign", "\u2011", " aggressively", " rigor", " refactor", " optimized", "ing"], [" meticulously", " redesign", " aggressively", " refactor", " optimized", " redesigned", " rigor", " optimizations"], [" redesign", " meticulously", " refactor", " redesigned", " optimized", " optimizations", " aggressively", " rigor"], [" redesign", " meticulously", " refactor", " redesigned", " optimized", " optimizations", " optimizing", " aggressively"], [" redesign", " refactor", " redesigned", " meticulously", " optimized", " restructuring", " optimizations", " optimizing"], [" redesign", " refactor", " redesigned", " meticulously", " optimized", " optimizations", " optimizing", " restructuring"], [" redesign", " refactor", " redesigned", " optimized", " restructuring", " optimizations", " optimizing", " meticulously"], [" redesign", " refactor", " redesigned", " optimized", " meticulously", " restructuring", " optimizing", " optimizations"], [" redesign", " refactor", " redesigned", " meticulously", " optimized", " optimizing", " restructuring", " optimizations"], [" redesign", " redesigned", " refactor", " meticulously", " restructuring", " optimized", " optimizing", " designing"], [" redesign", " redesigned", " meticulously", " refactor", " restructuring", " meticulous", " optimized", " rigor"], [" redesign", " redesigned", " meticulously", " refactor", " restructuring", " meticulous", " rigor", " rewriting"], [" redesign", " meticulously", " redesigned", " refactor", " rigor", " restructuring", " meticulous", "\u5fb9\u5e95"], [" redesign", " meticulously", " redesigned", " refactor", "\u5fb9\u5e95", " entire", " restructuring", " rigor"], [" meticulously", " redesign", "\u5fb9\u5e95", " entire", " Entire", "_rewrite", " refactor", " EVERY"], [" redesign", "_rewrite", " meticulously", "\u5fb9\u5e95", "\u91cd\u6784", "\u4e00\u5207", "\u5f7b\u5e95", " Entire"], [" entire", "everything", " EVERY", "\u4e00\u5207", "\u4e86\u6574\u4e2a", "\u6240\u6709\u5185\u5bb9", " Entire", "\u3059\u3079\u3066\u306e"], ["\u91cd\u6784", " redesign", " EVERY", "\u4e00\u5207", " entire", "\u4e2d\u7684\u6240\u6709", "\u4e86\u6574\u4e2a", "strict"], [" redesign", "\u91cd\u6784", " EVERY", " Rewrite", " refactor", "actoring", "everything", "Rew"], ["actoring", " refactor", "resher", "\u91cd\u6784", " redesign", " Rewrite", " EVERY", "/ref"], ["actoring", " Rewrite", "rew", " rewrite", " rewriting", "resher", " entire", " refactor"], ["actoring", " rewrite", " refactor", " Rewrite", "resher", "strict", "rew", " rewriting"], ["actoring", " refactor", "\u91cd\u6784", " rewrite", "rew", "/ref", " Rewrite", " rewriting"], ["actoring", " refactor", "\u91cd\u6784", " rewrite", " rewriting", "/ref", "rew", " Rewrite"], [" refactor", "actoring", " rewrite", "\u91cd\u6784", "actor", "/ref", "rew", "actors"], ["actoring", " refactor", "actor", " rewrite", "actors", "\u91cd\u6784", "act", "/ref"], ["actor", "actoring", " refactor", "act", "actors", "aktor", "/ref", " architect"], ["actor", "actoring", " refactor", " Factor", "actors", "act", "factor", "Factor"]], "p": [[1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9985, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9969, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9918, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9994, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7252, 0.0049, 0.0028, 0.0023, 0.0018, 0.0016, 0.0016, 0.0014], [0.4251, 0.0057, 0.005, 0.0047, 0.0037, 0.0032, 0.0032, 0.003], [0.427, 0.0045, 0.0039, 0.0039, 0.0035, 0.0035, 0.0031, 0.0029], [0.8137, 0.0043, 0.0026, 0.0026, 0.0016, 0.0012, 0.0011, 0.0011], [0.9127, 0.0013, 0.0011, 0.0011, 0.0009, 0.0007, 0.0006, 0.0006], [0.9934, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9705, 0.0006, 0.0004, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002], [0.9783, 0.0003, 0.0003, 0.0003, 0.0003, 0.0002, 0.0002, 0.0002], [0.8871, 0.0016, 0.0015, 0.001, 0.0007, 0.0007, 0.0007, 0.0006], [0.7534, 0.0101, 0.0031, 0.0015, 0.0011, 0.0011, 0.001, 0.0009], [0.0281, 0.0133, 0.0133, 0.0063, 0.0052, 0.004, 0.0038, 0.0036], [0.0366, 0.0119, 0.0105, 0.0077, 0.0044, 0.0041, 0.0041, 0.0036], [0.0514, 0.0157, 0.007, 0.0051, 0.0051, 0.0035, 0.0033, 0.0033], [0.0321, 0.0111, 0.0092, 0.0092, 0.0059, 0.0046, 0.0043, 0.0038], [0.0077, 0.005, 0.0047, 0.0041, 0.003, 0.0028, 0.0022, 0.0021], [0.0147, 0.0061, 0.0054, 0.0033, 0.0026, 0.0024, 0.0024, 0.002], [0.1992, 0.1369, 0.0884, 0.0733, 0.0127, 0.0112, 0.0073, 0.0068], [0.1111, 0.0865, 0.0594, 0.017, 0.015, 0.0133, 0.0103, 0.0097], [0.0995, 0.0415, 0.0209, 0.0209, 0.0196, 0.0153, 0.0126, 0.0126], [0.0819, 0.0412, 0.0387, 0.0321, 0.0266, 0.0235, 0.0221, 0.0207], [0.0563, 0.0364, 0.0342, 0.0301, 0.0207, 0.0134, 0.0134, 0.0098], [0.0603, 0.0603, 0.0303, 0.0285, 0.0222, 0.0222, 0.0098, 0.0098], [0.0519, 0.0261, 0.023, 0.0075, 0.007, 0.0058, 0.0055, 0.0055], [0.0601, 0.0235, 0.0126, 0.0081, 0.0053, 0.0046, 0.0046, 0.0038], [0.1036, 0.0316, 0.0204, 0.0192, 0.0103, 0.0085, 0.0075, 0.0055], [0.0813, 0.0633, 0.0193, 0.016, 0.011, 0.0086, 0.0076, 0.0063], [0.2338, 0.0916, 0.0591, 0.0204, 0.014, 0.0085, 0.0071, 0.0066], [0.3285, 0.1209, 0.0473, 0.0346, 0.0238, 0.0106, 0.0082, 0.0077], [0.5318, 0.0868, 0.0527, 0.0495, 0.0206, 0.0076, 0.0071, 0.0067], [0.6565, 0.1007, 0.0574, 0.0154, 0.0154, 0.0088, 0.006, 0.0057], [0.8284, 0.06, 0.0467, 0.0072, 0.0059, 0.0041, 0.0038, 0.0026], [0.7886, 0.0734, 0.0571, 0.0077, 0.0077, 0.0073, 0.0044, 0.0032], [0.8098, 0.0587, 0.0518, 0.009, 0.0075, 0.0058, 0.0058, 0.0029], [0.8578, 0.0484, 0.0333, 0.0074, 0.0054, 0.0029, 0.0024, 0.0019], [0.8264, 0.0678, 0.022, 0.0172, 0.0072, 0.003, 0.0025, 0.0023], [0.7184, 0.0858, 0.059, 0.0405, 0.0116, 0.0062, 0.004, 0.0029], [0.5783, 0.129, 0.0538, 0.0394, 0.0128, 0.0099, 0.0099, 0.005], [0.3826, 0.0909, 0.0486, 0.0334, 0.023, 0.019, 0.0123, 0.009], [0.0959, 0.0959, 0.0331, 0.0292, 0.0242, 0.0201, 0.0189, 0.0189], [0.0604, 0.0442, 0.0366, 0.0304, 0.0304, 0.0252, 0.0252, 0.0153], [0.0341, 0.0341, 0.0341, 0.0301, 0.0283, 0.025, 0.0207, 0.0172], [0.1287, 0.0571, 0.021, 0.0185, 0.0185, 0.0174, 0.0164, 0.0164], [0.1216, 0.1216, 0.0612, 0.0447, 0.0447, 0.024, 0.0199, 0.0165], [0.5537, 0.14, 0.0515, 0.0454, 0.0259, 0.013, 0.0108, 0.0095], [0.5555, 0.0663, 0.0456, 0.0378, 0.0294, 0.026, 0.0179, 0.0115], [0.7385, 0.0253, 0.0223, 0.0197, 0.0185, 0.0135, 0.0127, 0.0105], [0.6475, 0.1445, 0.0876, 0.0414, 0.0134, 0.0119, 0.0105, 0.0092], [0.5757, 0.272, 0.1, 0.0223, 0.0034, 0.0027, 0.0027, 0.0027], [0.529, 0.412, 0.0232, 0.0086, 0.0086, 0.002, 0.0014, 0.001], [0.5299, 0.2503, 0.172, 0.011, 0.008, 0.0046, 0.0036, 0.0011], [0.7573, 0.1161, 0.0704, 0.0333, 0.0095, 0.0009, 0.0007, 0.0007], [0.9804, 0.0075, 0.004, 0.0011, 0.001, 0.0008, 0.0006, 0.0006]], "ranks": {}}, {"pos": 542, "top": [[" \u2013", ".", ",", "\u2013", "?", ";", " ", "-"], ["  \n", ":\\\"", " \u2013", "   \n", "(\\\"", " (@", " \\\"", "  "], [".", ",", "\u2013", "?", "[", ";", "\u2013and", " \u2013"], ["izer", "ECTR", "tery", "':''", "igor", " \u0e15\u0e38\u0e25", "\u624e\u514b", "TRGL"], ["ized", "ings", "ers", " (@", "ible", "@", ".@", "."], ["ible", "ized", "ize", "ers", "ings", "izer", "ment", "ana"], ["ings", "ized", "ers", "ors", "ize", "ible", "ment", "ists"], ["ings", "ible", "ized", "ment", "ers", "ize", "ant", "izer"], ["ings", "ible", "ment", "ized", ".", "ian", "ers", "ize"], ["ible", "\\-", "ized", "ings", "ize", "\\'", "ment", ","], ["\\-", ",", "\\.", ".\\", "\\'", "ized", "\\_", " \\"], ["ible", "ized", "ize", "izing", "ian", "ers", "ings", "ment"], ["ize", "ized", "ible", "ers", "izing", "izer", " seamlessly", " incentiv"], ["ize", "ized", "ers", " seamlessly", " incentiv", "ible", " toolkit", "izing"], [" seamlessly", "ized", " incentiv", " critiques", "ize", "-style", "izing", "ers"], [" seamlessly", " incentiv", " Redux", " tweaks", " critiques", " priorit", "ized", " conceptual"], [" seamlessly", ",", " priorit", "\u2013", " myriad", " tweaks", "ers", " revamped"], [" seamlessly", " tweaks", "-heavy", " overhaul", " critiques", " priorit", " revamped", " TF"], ["\u2013", " seamlessly", "\u2014", "\u2014and", ",", " revamped", " myriad", "  \n\n"], ["<|endoftext|>", "  \n\n", "\u2014", "\u2013", "\u2014and", ",", " myriad", "\u2014or"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "\n\n", "\u2014", "\u2013", "  \n  \n"], [" seamlessly", " into", " overhaul", "izing", " myriad", " aggressively", " tweaks", " redesign"], [" seamlessly", " myriad", " into", " aggressively", " meticulously", " revamped", " foundational", " redesign"], ["<|endoftext|>", " into", " myriad", " seamlessly", " aggressively", " heavily", "\n\n", "  \n\n"], ["  \n\n", " \n\n", "\n\n", "   \n\n", "  \n  \n", "    \n\n", "  \r\n\r\n", "\\u"], ["  \n\n", " seamlessly", " \n\n", " **", " meticulously", " redesign", " into", " modular"], [" seamlessly", " modular", " redesign", " meticulously", " \n\n", "  \n\n", "\n\n", " aggressively"], ["\n\n", " \n\n", "  \n\n", " heavily", " myriad", "<|endoftext|>", " into", " meticulously"], ["  \n\n", " redesign", "\n\n", " meticulously", " **", " modular", " \n\n", " myriad"], [" **", " redesign", " modular", " overhaul", " workflows", " work", " meticulously", " seamlessly"], [" **", " redesign", " work", " into", " \n\n", " modular", " overhaul", " complex"], [" **", " work", " redesign", " modular", " systems", " meticulously", " complex", " into"], [" work", " meticulously", " redesign", " heavily", " complex", " dozens", " modular", " systems"], [" meticulously", " redesign", " heavily", " modular", " workflows", " aggressively", " complex", " systems"], [" meticulously", " heavily", " redesign", " modular", " aggressively", " systems", " workflows", " complex"], [" heavily", " meticulously", " redesign", " entire", " aggressively", " complex", " dozens", " workflows"], [" heavily", " redesign", " meticulously", " dozens", " aggressively", " workflows", " entire", " internal"], [" redesign", " heavily", " workflows", " dozens", " meticulously", " algorithms", " entire", " into"], [" redesign", " workflows", " entire", " heavily", " algorithms", " meticulously", " core", " internal"], [" redesign", " workflows", " entire", " algorithms", " core", " heavily", " internal", " meticulously"], [" algorithms", " workflows", " redesign", " entire", " core", " routines", " code", " internal"], [" workflows", " redesign", " algorithms", " routines", " core", " code", " software", " internal"], [" workflows", " algorithms", " redesign", " routines", " core", " software", " restructuring", " code"], [" workflows", " redesign", " routines", " algorithms", " core", " entire", " redesigned", " code"], [" workflows", " redesign", " algorithms", " routines", " entire", " core", " redesigned", " code"], [" redesign", " workflows", " entire", " core", " routines", " algorithms", " redesigned", " code"], [" workflows", " redesign", " entire", " algorithms", " routines", " core", " everything", " redesigned"], [" workflows", " entire", " core", " routines", " redesign", " everything", " algorithms", " critical"], [" entire", " everything", " workflows", " EVERY", " routines", " algorithms", " core", " redesign"], [" entire", " workflows", " everything", " EVERY", " Entire", "everything", " routines", " entirety"], [" entire", "\u6240\u6709\u5185\u5bb9", " everything", " EVERY", "everything", "\u4e00\u5207", " workflows", "\u4e86\u4e00\u5207"], [" entire", " everything", "\u6240\u6709\u5185\u5bb9", " EVERY", "\u4e2d\u7684\u6240\u6709", "everything", "\u4e00\u5207", "\u4e86\u6574\u4e2a"], [" entire", " everything", " EVERY", "\u4e00\u5207", "everything", "\u6240\u6709\u5185\u5bb9", "\u4e86\u6574\u4e2a", "\u4e86\u4e00\u5207"], [" everything", " EVERY", " entire", "everything", "\u4e00\u5207", "\u4e86\u4e00\u5207", "\u3059\u3079\u3066\u306e", "\u6240\u6709\u5185\u5bb9"], [" entire", " EVERY", " everything", " ALL", "\u6240\u6709", "\u4e00\u5207", "\u4e86\u6574\u4e2a", "\u4e86\u4e00\u5207"], [" entire", " EVERY", "\u6574\u4e2a", " everything", "\u4e86\u6574\u4e2a", " Entire", " ALL", "\u6240\u6709"], [" entire", " EVERY", " everything", " ALL", "\u6240\u6709", "\u4e00\u5207", " every", "\u6574\u4e2a"], [" entire", " EVERY", " ALL", " everything", "\u6240\u6709", "\u6574\u4e2a", " every", " Entire"], [" entire", " EVERY", " everything", " ALL", " every", " all", "\u6240\u6709", " rendering"], [" entire", " all", " rendering", " everything", " every", " ALL", " renderer", " EVERY"], [" entire", " all", " *", " every", " rendering", " ALL", " everything", " **"], [" *", " entire", " all", " the", " every", " rendering", " entirely", " everything"], [" the", " *", " all", " every", " your", " ALL", " everything", " rendering"]], "p": [[0.3337, 0.3337, 0.2024, 0.1083, 0.0061, 0.0025, 0.0024, 0.0015], [0.0604, 0.0323, 0.0304, 0.0237, 0.0196, 0.0173, 0.0163, 0.0163], [0.7065, 0.1786, 0.0374, 0.0213, 0.0037, 0.0037, 0.0022, 0.002], [0.0223, 0.0082, 0.0044, 0.0034, 0.0034, 0.0032, 0.0028, 0.0028], [0.0541, 0.0349, 0.0349, 0.0272, 0.0272, 0.024, 0.0155, 0.0137], [0.0762, 0.0523, 0.036, 0.0232, 0.0218, 0.017, 0.015, 0.0117], [0.2377, 0.1123, 0.0725, 0.0498, 0.0498, 0.0413, 0.0208, 0.0104], [0.2789, 0.204, 0.0799, 0.0662, 0.0402, 0.0377, 0.0148, 0.0084], [0.1625, 0.1189, 0.0562, 0.0528, 0.0411, 0.0386, 0.022, 0.0207], [0.0947, 0.0575, 0.0575, 0.0447, 0.0255, 0.0225, 0.0175, 0.0145], [0.1473, 0.0542, 0.0509, 0.0449, 0.0372, 0.035, 0.0212, 0.0176], [0.0816, 0.0386, 0.03, 0.0206, 0.0161, 0.0161, 0.0142, 0.0142], [0.0271, 0.0198, 0.0198, 0.012, 0.0094, 0.0083, 0.006, 0.0047], [0.0174, 0.0127, 0.0112, 0.0087, 0.0068, 0.0068, 0.006, 0.0056], [0.0227, 0.0147, 0.0114, 0.0061, 0.0061, 0.0057, 0.0054, 0.0054], [0.0325, 0.012, 0.0077, 0.0073, 0.0068, 0.0064, 0.0057, 0.0053], [0.0324, 0.0135, 0.0099, 0.0093, 0.0087, 0.0082, 0.0077, 0.0072], [0.0341, 0.0194, 0.0071, 0.0067, 0.0067, 0.0059, 0.0059, 0.0059], [0.0273, 0.0256, 0.0226, 0.0226, 0.0137, 0.0129, 0.0114, 0.0114], [0.7213, 0.0317, 0.0205, 0.0192, 0.0117, 0.011, 0.0043, 0.0033], [0.9549, 0.0225, 0.0037, 0.0009, 0.0009, 0.0006, 0.0005, 0.0005], [0.0355, 0.009, 0.007, 0.0066, 0.0062, 0.0062, 0.0048, 0.0048], [0.0411, 0.0182, 0.0125, 0.0098, 0.0092, 0.0067, 0.0049, 0.0049], [0.0555, 0.0262, 0.018, 0.0109, 0.008, 0.0066, 0.0062, 0.0052], [0.5767, 0.1652, 0.1287, 0.0253, 0.0044, 0.0032, 0.0027, 0.0024], [0.0528, 0.0411, 0.0194, 0.0151, 0.0133, 0.0104, 0.0098, 0.0098], [0.0235, 0.0183, 0.0183, 0.0183, 0.0152, 0.0134, 0.0118, 0.0111], [0.5145, 0.1301, 0.0789, 0.0054, 0.0045, 0.0045, 0.0039, 0.0039], [0.0287, 0.0238, 0.0223, 0.0185, 0.0174, 0.0174, 0.0163, 0.0163], [0.1091, 0.0401, 0.0294, 0.0157, 0.0157, 0.0157, 0.0139, 0.013], [0.152, 0.0339, 0.0299, 0.0182, 0.0182, 0.0182, 0.0103, 0.0103], [0.2104, 0.0414, 0.0268, 0.0135, 0.0135, 0.0119, 0.0119, 0.0112], [0.0314, 0.026, 0.0245, 0.0179, 0.0158, 0.0116, 0.0109, 0.0102], [0.0678, 0.0411, 0.032, 0.0234, 0.0182, 0.0182, 0.0161, 0.0151], [0.0689, 0.0689, 0.0647, 0.0164, 0.0164, 0.0136, 0.0127, 0.0127], [0.1179, 0.0918, 0.0462, 0.0232, 0.017, 0.017, 0.016, 0.015], [0.1117, 0.0767, 0.0598, 0.0265, 0.0234, 0.022, 0.0207, 0.0194], [0.1412, 0.052, 0.0357, 0.0231, 0.0203, 0.0191, 0.0191, 0.018], [0.1046, 0.0675, 0.056, 0.0494, 0.0385, 0.0362, 0.0265, 0.0194], [0.0812, 0.0633, 0.0558, 0.0524, 0.0384, 0.0299, 0.0233, 0.0205], [0.1023, 0.1023, 0.0848, 0.04, 0.0275, 0.0228, 0.0214, 0.0178], [0.1442, 0.1123, 0.0875, 0.0468, 0.0284, 0.0284, 0.0267, 0.0195], [0.1154, 0.1018, 0.1018, 0.0545, 0.0452, 0.0274, 0.0213, 0.0188], [0.1673, 0.1303, 0.079, 0.051, 0.0423, 0.0351, 0.0213, 0.02], [0.2174, 0.1693, 0.0585, 0.055, 0.0485, 0.0378, 0.026, 0.0168], [0.1597, 0.1597, 0.0666, 0.0587, 0.0487, 0.0458, 0.0261, 0.0149], [0.3627, 0.0917, 0.0491, 0.0461, 0.0407, 0.0407, 0.0247, 0.0192], [0.2481, 0.1328, 0.0711, 0.0554, 0.0459, 0.0357, 0.0336, 0.0131], [0.4119, 0.118, 0.1041, 0.036, 0.028, 0.0181, 0.016, 0.0117], [0.3316, 0.1077, 0.0576, 0.0396, 0.0199, 0.0187, 0.0129, 0.0113], [0.0878, 0.0603, 0.0603, 0.0532, 0.047, 0.0389, 0.0285, 0.0196], [0.2596, 0.1082, 0.0843, 0.048, 0.0451, 0.0424, 0.0424, 0.0274], [0.2092, 0.1629, 0.0988, 0.0529, 0.0387, 0.0364, 0.0341, 0.0283], [0.4542, 0.0894, 0.0789, 0.0615, 0.0479, 0.0373, 0.0187, 0.0165], [0.3511, 0.188, 0.1292, 0.0419, 0.0288, 0.0254, 0.0175, 0.0175], [0.7764, 0.0387, 0.0266, 0.0266, 0.0234, 0.0207, 0.0207, 0.0098], [0.3569, 0.2164, 0.1159, 0.0703, 0.062, 0.0259, 0.0201, 0.0157], [0.572, 0.1446, 0.0603, 0.0366, 0.0196, 0.0135, 0.0135, 0.0119], [0.5286, 0.1337, 0.0715, 0.0557, 0.0298, 0.0232, 0.0124, 0.0124], [0.2464, 0.1919, 0.1319, 0.0485, 0.0428, 0.0378, 0.0378, 0.0294], [0.4424, 0.1844, 0.1628, 0.0466, 0.0266, 0.0183, 0.0172, 0.0092], [0.476, 0.1545, 0.1364, 0.0686, 0.0324, 0.0304, 0.0153, 0.0119], [0.6538, 0.1653, 0.1287, 0.0144, 0.0082, 0.006, 0.0041, 0.003]], "ranks": {}}, {"pos": 543, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", " ", "\u00a0\u00a0"], [" \u2013", "\u2013", ",", ".", "\u2013and", ";", " ", "  \n"], ["\u2013", ",", ".", " \u2013", "\u2026.", "\u2026", ";", "\u2026.."], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "TRGL", "----------</", "-------------</", " Shemale", " Blowjob", " ;;^"], [".@", " (@", "(@", " \"@", " ", " CIF", ":@", " \u2019"], [" \u200b\u200b", ".", ",", "\u00a0\u00a0", ".cast", " \u201c.", ":", "\u2026."], [".", " ", "  \n", ".\u2019", ".\u201d", "  ", ".\"", ","], ["   \n", "  ", "  \n", " *@", ".", "(@", " @", " "], [".", ",", "  \n\n", "   \n\n", "  \n", ",.", "   \n", ":."], [",", " \u00ad", ".", "\u00ad", "\u2013", ":", ";", " "], [",", " ", ".", " \u00ad", "\u00ad", "\u2013", "\u00a0", "-"], [" \u00ad", " ", " potentially", " ***", " $", " core", " **", " thr"], [" **", " ***", " savvy", " potentially", " core", " \u00ad", " impactful", " disparate"], [" savvy", " vibe", " impactful", " potentially", " tweaked", " key", " multiple", " tweaks"], [" potentially", " ", " multiple", " key", " tweaked", " arguably", " savvy", " aggressively"], [" potentially", " myriad", " savvy", " folks", " multiple", " arguably", " sprawling", " back"], [",", "\u2013", " potentially", " myriad", " ", " \u2013", " multiple", " \""], [" savvy", " potentially", " sprawling", " myriad", " tweaks", " tweaked", " revamped", " tech"], [" myriad", " sprawling", " arguably", " potentially", " savvy", "-esque", " revamped", " seemingly"], [" myriad", " sprawling", " arguably", " seemingly", " potentially", " largely", " ostensibly", " aggressively"], ["<|endoftext|>", " myriad", "  \n\n", " \n\n", "\n\n", " various", " seemingly", " numerous"], [" ;;^", " sprawling", "\u60f3\u5c3d", "\u5171\u540c\u6253\u9020", "\u4e94\u82b1\u516b", " myriad", "\u5de5\u4f5c\u53ca", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435"], [" myriad", " sprawling", " various", " complex", " ``", " heavily", " aggressively", " arguably"], [" various", " myriad", " complex", " much", " heavily", " ultimately", " largely", " ,"], [" \n\n", " myriad", "  \n\n", " heavily", " various", " seemingly", "\n\n", " arguably"], [" systems", " complex", " system", " engineering", " heavily", " software", " technology", " infrastructure"], [" systems", " software", " engineering", " complex", " infrastructure", " technology", " system", " subsystem"], [" complex", " \n\n", " systems", "\n\n", " ,", " system", " heavily", " various"], [" systems", " complex", " engineering", " software", " technology", " system", " infrastructure", " tech"], [" systems", " workflows", " **", " software", " engineering", " workflow", " infrastructure", " tech"], [" systems", " complex", " technology", " system", " software", " engineering", " workflows", " tech"], [" complex", " systems", " technology", " system", " work", " engineering", " ", " core"], [" complex", " systems", " system", " work", " ,", " technology", " core", " "], [" systems", " complex", " tech", " workflows", " core", " technology", " software", " technical"], [" systems", " workflows", " tech", " complex", " core", " algorithms", " \u201c", " infrastructure"], [" workflows", " hardware", " \u201c", " complex", " tech", " technical", " core", " \u2026"], [" workflows", " hardware", " core", " workflow", " algorithms", " complex", " technical", " tech"], [" workflows", " workflow", " core", " hardware", " algorithms", " gameplay", " technical", " software"], [" workflows", " core", " workflow", " algorithms", " gameplay", " hardware", " algorithm", " technical"], [" gameplay", " core", " workflows", " workflow", " hardware", " gaming", " algorithms", " graphics"], [" gameplay", " workflows", " graphics", " animation", " workflow", " animations", " hardware", " gaming"], [" animation", " gameplay", " processing", " workflows", " graphics", " workflow", " animations", " gaming"], [" gameplay", " animation", " routines", " animations", " workflows", " processing", " algorithms", " workflow"], [" routines", " gameplay", " animation", " core", " workflows", " daily", " workflow", " animations"], [" workflows", " routines", " core", " workflow", " processing", " gameplay", " daily", " animation"], [" core", " workflows", " routines", " workflow", " gameplay", " processing", " daily", " animations"], [" workflows", " core", " routines", " workflow", " gameplay", " lifecycle", " loop", " daily"], [" routines", " workflows", " core", " workflow", " gameplay", " lifecycle", " daily", " processing"], [" gameplay", " workflows", " routines", " framerate", " lifecycle", " workflow", " core", " animations"], [" gameplay", " workflows", " framerate", " workflow", " lifecycle", " Gameplay", " routines", " runtime"], ["\u6838\u5fc3\u7684", " framerate", " gameplay", "/**/*.", " lifecycle", " workflows", " workflow", "\u5173\u952e\u73af\u8282"], [" framerate", " CPU", " core", " GPU", " lifecycle", "/**/*.", "\u5e27", "-core"], [" framerate", " pipeline", " shader", " renderer", " gameplay", " FPS", " GPU", " CPU"], [" pipeline", " framerate", " renderer", " shader", " gameplay", " loop", " FPS", "AnimationFrame"], [" loop", "-loop", " Loop", "loop", "Loop", " loops", "\u5faa\u73af", ".loop"], [" loop", "-loop", " Loop", "loop", " loops", " renderer", ".loop", "Loop"], [" loop", " renderer", "-loop", " rendering", "/render", " Rendering", " render", " Loop"], [" rendering", " render", " renderer", "/render", "\u6e32\u67d3", " Rendering", " loop", " Render"], [" rendering", " render", " renderer", " Rendering", "\u6e32\u67d3", "/render", "-render", " Render"], [" render", " rendering", "\u6e32\u67d3", " renderer", " Rendering", "/render", "-render", "render"], [" entire", " Entire", " rendering", " render", " ENT", " renderer", " entirety", "\u6e32\u67d3"], [" entire", " render", " rendering", " Entire", " ENT", " renderer", " entirety", " async"], [" entire", " render", " rendering", " renderer", " ENT", " async", " main", " core"]], "p": [[0.6745, 0.3186, 0.0028, 0.0015, 0.001, 0.0005, 0.0003, 0.0002], [0.4136, 0.4136, 0.0634, 0.0464, 0.0071, 0.0059, 0.0038, 0.0025], [0.3756, 0.2925, 0.2582, 0.0653, 0.0017, 0.0017, 0.0015, 0.0008], [0.0151, 0.0086, 0.0049, 0.0046, 0.0046, 0.0038, 0.0036, 0.0036], [0.015, 0.0125, 0.0071, 0.0071, 0.0059, 0.0052, 0.0052, 0.0046], [0.0188, 0.0129, 0.0083, 0.0065, 0.0054, 0.0037, 0.0021, 0.0019], [0.4937, 0.1414, 0.0858, 0.052, 0.0381, 0.0204, 0.014, 0.0116], [0.1385, 0.084, 0.0696, 0.045, 0.0329, 0.0309, 0.02, 0.0155], [0.6794, 0.0979, 0.0632, 0.017, 0.017, 0.0091, 0.0086, 0.0063], [0.8836, 0.0221, 0.0046, 0.0044, 0.0025, 0.0019, 0.001, 0.0009], [0.6548, 0.1876, 0.0537, 0.0474, 0.0128, 0.0082, 0.0044, 0.0032], [0.1221, 0.0226, 0.0165, 0.0165, 0.005, 0.005, 0.0044, 0.0044], [0.0139, 0.009, 0.007, 0.007, 0.0054, 0.0031, 0.0027, 0.0026], [0.013, 0.0074, 0.0074, 0.0061, 0.0061, 0.0051, 0.0048, 0.0042], [0.0274, 0.0177, 0.0101, 0.0095, 0.0095, 0.0089, 0.0089, 0.0051], [0.0231, 0.0132, 0.0096, 0.0085, 0.008, 0.0075, 0.007, 0.0052], [0.1331, 0.049, 0.0159, 0.0116, 0.0091, 0.0071, 0.0059, 0.0052], [0.0077, 0.0072, 0.0053, 0.0053, 0.0041, 0.0036, 0.0028, 0.0028], [0.016, 0.0103, 0.0067, 0.0062, 0.0062, 0.0052, 0.0028, 0.0028], [0.0362, 0.0092, 0.0071, 0.0056, 0.0056, 0.0032, 0.003, 0.0028], [0.912, 0.0015, 0.0014, 0.001, 0.0004, 0.0003, 0.0002, 0.0002], [0.003, 0.0019, 0.0019, 0.0017, 0.0015, 0.0014, 0.0013, 0.0012], [0.0061, 0.0035, 0.0027, 0.0025, 0.0025, 0.0022, 0.0017, 0.0016], [0.0081, 0.0056, 0.0049, 0.0043, 0.0036, 0.0032, 0.0026, 0.0026], [0.0232, 0.0116, 0.0103, 0.0052, 0.0052, 0.0049, 0.0046, 0.0043], [0.0131, 0.0096, 0.0066, 0.0048, 0.0048, 0.0042, 0.0037, 0.0037], [0.0364, 0.0208, 0.0172, 0.0172, 0.0104, 0.0104, 0.0092, 0.0072], [0.0274, 0.0188, 0.0166, 0.0129, 0.0107, 0.0095, 0.0084, 0.0084], [0.1249, 0.0489, 0.0381, 0.0336, 0.0262, 0.0262, 0.0246, 0.0159], [0.0882, 0.0882, 0.0444, 0.0391, 0.0368, 0.0345, 0.0345, 0.0305], [0.1701, 0.0666, 0.0519, 0.038, 0.0335, 0.0315, 0.0216, 0.0191], [0.0982, 0.0718, 0.0319, 0.0299, 0.0206, 0.0151, 0.0141, 0.0125], [0.0521, 0.0246, 0.0204, 0.014, 0.0132, 0.0132, 0.0124, 0.0124], [0.0767, 0.0767, 0.0411, 0.0362, 0.034, 0.022, 0.0182, 0.0133], [0.0519, 0.0488, 0.0458, 0.0405, 0.0296, 0.0245, 0.0191, 0.018], [0.0638, 0.0563, 0.0412, 0.0387, 0.0321, 0.0283, 0.0235, 0.0235], [0.1303, 0.079, 0.0397, 0.0329, 0.0291, 0.0241, 0.0226, 0.02], [0.1919, 0.0663, 0.0428, 0.0355, 0.026, 0.0244, 0.019, 0.0131], [0.1795, 0.1023, 0.0902, 0.0293, 0.0275, 0.0214, 0.0178, 0.0157], [0.0836, 0.0785, 0.0612, 0.0476, 0.0348, 0.0289, 0.0289, 0.0187], [0.1088, 0.062, 0.0582, 0.0582, 0.0514, 0.0453, 0.04, 0.0332], [0.0801, 0.0624, 0.0624, 0.0517, 0.0456, 0.0378, 0.0378, 0.0355], [0.0943, 0.0734, 0.0572, 0.0393, 0.0326, 0.0306, 0.027, 0.027], [0.077, 0.0563, 0.0529, 0.0529, 0.0467, 0.0467, 0.0439, 0.0301], [0.075, 0.0662, 0.0662, 0.0584, 0.0402, 0.0377, 0.0333, 0.0313], [0.0788, 0.0653, 0.0613, 0.0372, 0.0372, 0.0308, 0.024, 0.0187], [0.1046, 0.0634, 0.0634, 0.056, 0.0281, 0.0248, 0.0219, 0.0206], [0.0695, 0.0695, 0.0542, 0.0396, 0.0372, 0.0272, 0.0272, 0.0226], [0.0554, 0.0405, 0.0297, 0.0262, 0.0262, 0.0262, 0.0217, 0.0132], [0.0884, 0.0346, 0.0346, 0.0305, 0.0174, 0.0127, 0.0082, 0.0068], [0.016, 0.016, 0.0142, 0.0117, 0.011, 0.0097, 0.0091, 0.0081], [0.0335, 0.0158, 0.0123, 0.0102, 0.0102, 0.0096, 0.009, 0.009], [0.1083, 0.0699, 0.0374, 0.033, 0.0274, 0.0188, 0.0177, 0.0121], [0.1797, 0.14, 0.0962, 0.0515, 0.0276, 0.0178, 0.0139, 0.013], [0.8035, 0.1087, 0.0275, 0.0167, 0.0147, 0.013, 0.0048, 0.0033], [0.607, 0.2233, 0.0267, 0.0235, 0.0208, 0.0183, 0.0162, 0.0111], [0.4273, 0.1572, 0.108, 0.0351, 0.0351, 0.031, 0.0241, 0.0213], [0.2524, 0.2227, 0.1531, 0.0819, 0.0723, 0.0723, 0.0301, 0.0207], [0.322, 0.2841, 0.0922, 0.0718, 0.0634, 0.056, 0.0233, 0.0182], [0.5331, 0.2518, 0.0562, 0.0562, 0.0207, 0.0207, 0.0182, 0.0111], [0.9898, 0.0028, 0.0022, 0.0015, 0.001, 0.0009, 0.0003, 0.0002], [0.9926, 0.0028, 0.0015, 0.0013, 0.0006, 0.0002, 0.0002, 0.0001], [0.7217, 0.1825, 0.0592, 0.0062, 0.004, 0.0031, 0.0031, 0.0024]], "ranks": {}}, {"pos": 544, "top": [[" \u2013", "\u2013", ".", ",", "\u00a0\u00a0", "\u00a0", "\u2026..", "\u2026."], [" \u2013", "\u2013", "\u2013and", "\u2013\u2013", " \u2013**", " \u2013,", "**\u2013", ".\u2013"], [" \u2013", "\u2013", "\u2013and", ".\u2013", "\u2013\u2013", "**\u2013", " \u2013,", "\u2026.."], [" milfs", " Shemale", " Hidal", " Strec", "aruhi", " pupper", " Blowjob", " Pubbl"], [" **#", " *@", " @_", " CDI", "plorer", " CFD", "insip", "\u2013\u2013"], [" **\u2013", "\u5178\u793c", "consts", "ropa", "insip", "aleigh", "ogh", "odd"], ["-**", "enco", " **\u2013", "ropa", " \u00b4", "plorer", "retti", " **#"], ["\u5178\u793c", " veggies", "iha", " *@", "VERY", "-cent", "consts", " **\u20ac"], ["athon", "VERY", "-Mar", "althy", "\u5178\u793c", "\u2013and", "ilename", " *@"], ["\u2013", "-heavy", "\u2013and", "-cent", "\u2013\u2013", "illion", "-down", "-dollar"], ["\u2013", "-", " \u2013", "-heavy", "\u2013and", "\u2013\u2013", "-tech", "#"], ["Sharper", "iha", " veggies", "illion", "althy", "opolitan", " pricey", "-ish"], [" veggies", "Sharper", "illion", "althy", "-tech", "altungs", " booze", " pricey"], [" veggies", " booze", "Sharper", " pricey", "-tech", "iha", "-heavy", " skinny"], [" pricey", "-tech", " booze", "-heavy", " skinny", " savvy", " vibe", " guts"], [" pricey", " guts", " savvy", " skinny", " booze", " kids", " tech", " veggies"], ["\u2013", " \u2013", "-", "-heavy", " tech", "\u2013and", " pricey", "-tech"], ["\u2013", "-tech", " \u2013", "-heavy", " tech", " pricey", "-ish", " booze"], ["-tech", " pricey", " booze", "-heavy", " tech", "-esque", "iha", "-ish"], ["-heavy", "iha", " booze", " pricey", "-tech", " hugely", "Sharper", "-big"], ["<|endoftext|>", "\u2013", " hugely", "-heavy", " myriad", "Though", " \n\n", "though"], ["iha", " booze", "Sharper", " pricey", "-heavy", " bigger", " massively", "\u76f8\u5173\u884c\u4e1a"], [" massively", " huge", " big", " hugely", " bigger", " massive", "-heavy", " complex"], [" massively", " huge", " hugely", " heavily", " much", " massive", " heavy", " big"], [" hugely", " massively", " heavily", " myriad", " \n\n", " wildly", "-heavy", " seemingly"], [" massively", " massive", " hardware", " heavily", " complex", " systems", " huge", " infrastructure"], [" hardware", " modular", " systems", " infrastructure", " zombie", " gaming", " equipment", " reboot"], [" multiple", " complex", " systems", " heavily", " massively", " equipment", " hardware", " production"], [" systems", " modular", " multiple", " infrastructure", " hardware", " reusable", " subsystem", " reuse"], [" **", " workflows", " systems", " reuse", " infrastructure", " reusable", " modular", " toolkit"], [" systems", " workflows", " tools", " multiple", " infrastructure", " equipment", " modular", " hardware"], [" dozens", " multiple", " many", " ...", " systems", " large", " work", " -"], [" multiple", " dozens", " systems", "\u2011", " various", " many", " \u2013", " hundreds"], [" workflows", " multiplayer", " systems", " modular", " algorithms", " stash", " multiple", "\u2011"], [" workflows", " algorithms", "\u2026*", "\u2026**", " multiplayer", " modular", " systems", " stash"], ["\u2026*", " [\u2026]", " workflows", "\u2011", " \u2026", "\u2026**", " algorithms", "[\u2026]"], [" reuse", " [\u2026]", "\u2011", " reusable", "Reuse", " algorithms", "[\u2026]", " reused"], [" reuse", " reusable", "\u2011", " algorithms", " reused", " workflows", "Reuse", " [\u2026]"], [" reuse", " algorithms", " reusable", " reused", " recycl", " recycling", " algorithm", " recycled"], [" reuse", " algorithms", " reusable", " [\u2026]", " workflows", " hardware", " algorithm", " arrays"], [" algorithms", " reuse", " reusable", " memory", " Memory", " Allocator", " Algorithm", " algorithm"], [" reuse", " reusable", " recycle", " recycl", " recycling", " Recycling", " recycled", " reused"], [" reusable", " reuse", " recycle", " recycl", " Recycling", " recycling", "Reusable", " reused"], [" reusable", " recycle", " reuse", " recycl", " Recycling", " recycling", " storage", " containers"], [" reusable", " recycle", " reuse", " recycl", " recycling", " Recycling", " recycled", " reused"], [" reusable", " recycle", " reuse", " recycling", " recycl", " Recycling", " recycled", " pools"], [" reusable", " reuse", " recycle", " recycl", " Recycling", " recycling", " reused", " structs"], [" reusable", " reuse", " recycle", " recycl", " structs", " arrays", " Recycling", "Reusable"], [" reusable", " reuse", " recycle", "Reusable", " structs", " recycl", "reuse", " caches"], ["Reusable", " reusable", " reuse", " recycle", "reuse", " structs", "Reuse", "\u5faa\u73af\u5229\u7528"], ["Reusable", " reusable", " reuse", "reuse", " structs", "Reuse", "\u5faa\u73af\u5229\u7528", " reused"], [" reusable", " reuse", "Reusable", "reuse", "Reuse", " reused", " structs", " caches"], [" reusable", "Reusable", " reuse", "Reuse", "reuse", " reused", "\u590d\u7528", "_REUSE"], ["Reusable", " reusable", " reuse", "Reuse", "reuse", " reused", "_REUSE", "\u590d\u7528"], ["alloc", "Reusable", " allocations", " reuse", " reusable", " allocator", "reuse", "Alloc"], [" allocations", "alloc", "Reusable", " structs", " allocator", "alloca", " alloc", " IDisposable"], ["\u6c60", " pools", " pool", "pool", "Pool", " pooling", " Pool", "_pool"], ["\u6c60", " pool", " pools", "pool", "Pool", " pooling", " Pool", "_pool"], ["\u6c60", " pool", " pools", " pooling", "pool", " Pool", "Pool", " pooled"], [" structs", " Span", " pools", ".Span", " spans", "Span", " pooling", " struct"], [" struct", " structs", "struct", "Struct", " structural", " Struct", " `", ".struct"], [" struct", " structs", " `", "struct", "Struct", " stack", " Struct", "-stack"], ["3", " structs", " struct", "1", " `", "6", "2", "4"]], "p": [[0.5561, 0.2627, 0.1095, 0.023, 0.0084, 0.0079, 0.0062, 0.0055], [0.3592, 0.1498, 0.0624, 0.0379, 0.0123, 0.009, 0.0058, 0.0026], [0.4973, 0.4389, 0.0318, 0.008, 0.0043, 0.004, 0.0038, 0.0026], [0.0122, 0.0035, 0.0027, 0.0027, 0.0026, 0.0023, 0.0021, 0.002], [0.0029, 0.0027, 0.0027, 0.002, 0.0018, 0.0017, 0.0016, 0.0015], [0.0043, 0.0028, 0.0021, 0.0018, 0.0017, 0.0016, 0.0016, 0.0012], [0.0059, 0.0049, 0.0046, 0.0036, 0.0032, 0.0032, 0.003, 0.0027], [0.0065, 0.0042, 0.0037, 0.0037, 0.0032, 0.0032, 0.0032, 0.003], [0.0113, 0.0044, 0.0034, 0.003, 0.0024, 0.0024, 0.0022, 0.0022], [0.0041, 0.0036, 0.0034, 0.003, 0.0017, 0.0015, 0.0014, 0.0013], [0.2921, 0.0891, 0.0289, 0.0187, 0.0137, 0.0094, 0.0057, 0.0053], [0.0055, 0.0038, 0.0036, 0.003, 0.0026, 0.0022, 0.0022, 0.0019], [0.0039, 0.0032, 0.0024, 0.0022, 0.0021, 0.0017, 0.0017, 0.0017], [0.0044, 0.0039, 0.0037, 0.0033, 0.0033, 0.0022, 0.0022, 0.002], [0.0085, 0.0055, 0.0043, 0.0043, 0.0033, 0.0033, 0.0033, 0.0027], [0.0165, 0.0078, 0.0069, 0.0057, 0.0057, 0.0057, 0.005, 0.0047], [0.3776, 0.048, 0.0065, 0.0057, 0.0054, 0.0045, 0.0045, 0.0045], [0.0721, 0.034, 0.0182, 0.0171, 0.0076, 0.0059, 0.0052, 0.0046], [0.029, 0.0155, 0.0155, 0.0137, 0.0057, 0.0047, 0.0045, 0.0042], [0.0085, 0.0058, 0.0055, 0.0043, 0.0033, 0.0028, 0.0028, 0.002], [0.4914, 0.0026, 0.0024, 0.0014, 0.0014, 0.0008, 0.0006, 0.0006], [0.006, 0.0027, 0.0016, 0.0013, 0.0013, 0.0012, 0.0012, 0.0012], [0.0054, 0.0054, 0.0027, 0.0027, 0.0019, 0.0019, 0.0017, 0.0016], [0.0059, 0.0038, 0.0031, 0.0028, 0.0026, 0.0025, 0.0023, 0.0019], [0.008, 0.0075, 0.0043, 0.0038, 0.0033, 0.0026, 0.0026, 0.0026], [0.0126, 0.0039, 0.0036, 0.0032, 0.0023, 0.0022, 0.0022, 0.0017], [0.0049, 0.004, 0.0038, 0.0038, 0.0033, 0.0031, 0.0031, 0.0028], [0.0082, 0.0053, 0.0053, 0.005, 0.005, 0.0036, 0.0034, 0.0034], [0.0129, 0.0114, 0.01, 0.0083, 0.0069, 0.005, 0.0047, 0.0047], [0.0671, 0.0317, 0.0141, 0.0124, 0.0117, 0.0109, 0.0097, 0.0091], [0.0472, 0.0269, 0.0163, 0.0144, 0.0105, 0.0105, 0.0093, 0.0093], [0.022, 0.0194, 0.0182, 0.0171, 0.0171, 0.0117, 0.0097, 0.0092], [0.0386, 0.0249, 0.0249, 0.0161, 0.0118, 0.0098, 0.0092, 0.0086], [0.076, 0.0247, 0.0181, 0.017, 0.015, 0.0117, 0.011, 0.0103], [0.0656, 0.0257, 0.0121, 0.0121, 0.0114, 0.0114, 0.0101, 0.0083], [0.0654, 0.0542, 0.0309, 0.024, 0.024, 0.0199, 0.0199, 0.0165], [0.0698, 0.0374, 0.033, 0.031, 0.0291, 0.0291, 0.02, 0.0166], [0.1301, 0.035, 0.0309, 0.0273, 0.0226, 0.02, 0.0146, 0.0089], [0.0991, 0.0725, 0.0267, 0.0195, 0.0195, 0.0183, 0.0183, 0.0162], [0.0429, 0.0429, 0.0216, 0.0123, 0.0123, 0.0116, 0.0109, 0.0109], [0.0289, 0.0255, 0.0225, 0.0155, 0.0145, 0.0121, 0.0113, 0.0106], [0.2468, 0.2468, 0.0664, 0.0429, 0.0429, 0.0295, 0.023, 0.0216], [0.3406, 0.1609, 0.0671, 0.0407, 0.0298, 0.0298, 0.0218, 0.0159], [0.1317, 0.0964, 0.0622, 0.0355, 0.0333, 0.0202, 0.0115, 0.0115], [0.2296, 0.1578, 0.1578, 0.0481, 0.0452, 0.0331, 0.0177, 0.0156], [0.2071, 0.1717, 0.0863, 0.0632, 0.0524, 0.0524, 0.0205, 0.0103], [0.2503, 0.1043, 0.0763, 0.0318, 0.0264, 0.0205, 0.0181, 0.016], [0.1043, 0.0594, 0.0318, 0.016, 0.0133, 0.011, 0.0103, 0.0103], [0.0632, 0.0338, 0.0299, 0.0219, 0.011, 0.0103, 0.0103, 0.0071], [0.0578, 0.0543, 0.0257, 0.0176, 0.0166, 0.0107, 0.0101, 0.0094], [0.1228, 0.0699, 0.0352, 0.0352, 0.0166, 0.0166, 0.0114, 0.0078], [0.0826, 0.0604, 0.0568, 0.0442, 0.0304, 0.0163, 0.0153, 0.0135], [0.3273, 0.2888, 0.2249, 0.0827, 0.0502, 0.0163, 0.0019, 0.0016], [0.506, 0.1861, 0.145, 0.0879, 0.0533, 0.0093, 0.0019, 0.0016], [0.1953, 0.1724, 0.1521, 0.056, 0.056, 0.056, 0.0339, 0.03], [0.2584, 0.2584, 0.0695, 0.0577, 0.0396, 0.0309, 0.0256, 0.0212], [0.7889, 0.0734, 0.0648, 0.0306, 0.0186, 0.0099, 0.0037, 0.0028], [0.7432, 0.1292, 0.0538, 0.0419, 0.0106, 0.0094, 0.0073, 0.0021], [0.5198, 0.1688, 0.0797, 0.0703, 0.0621, 0.0293, 0.0293, 0.0202], [0.4225, 0.1004, 0.0648, 0.0572, 0.0393, 0.0369, 0.0326, 0.0326], [0.4443, 0.4443, 0.0772, 0.0134, 0.0063, 0.0023, 0.0022, 0.0018], [0.3729, 0.3092, 0.1211, 0.0572, 0.0113, 0.0106, 0.0099, 0.0082], [0.4972, 0.1042, 0.0979, 0.0218, 0.0205, 0.0205, 0.0124, 0.0097]], "ranks": {}}, {"pos": 545, "top": [[".", " \u2013", "\u2013", ",", "y", "\u2026..", "s", ";"], [" \u2013", "\u2013and", "\u2013\u2013", "\u2011", "  \n", "\u2013", "er", "\u30e3\u30f3"], ["\u2013", " \u2013", ".\u2013", "\u2013and", "\u2026..", ".", "**\u2013", "\u2013\u2013"], [" milfs", " Geile", " Strec", "erias", " \u041a\u0440\u0430\u0441\u0438", " Shemale", " Blowjob", " Hidal"], ["kits", "s", "er", " ***", "es", " *\u2013", "erweise", " \u041a\u0440\u0430\u0441\u0438"], ["kits", "-CS", "s", " **\u2013", " veggies", " ***", "salt", "er"], ["s", "er", " ***", "  \n", "es", "y", "***", "rd"], ["er", "s", " veggies", "ner", "gable", " ***", "\u4e8b\u534a\u529f\u500d", "-CS"], ["er", "s", "\u2011", "\u00ad", "  \n", " \u00ad", "y", "gable"], ["er", "s", "\u00ad", "\u2013", " \u00ad", "\u2011", ",", "y"], ["er", "s", "\u00ad", "y", " \u00ad", "\u2013", "-", "..."], ["er", "y", "ian", " veggies", "\u2011", " \u00ad", "ics", "ive"], ["er", " veggies", "illion", "y", "ian", "ics", "ive", "ball"], ["er", " veggies", "ball", "y", "-themed", "ics", " vibes", "rd"], ["er", "y", "an", "s", "\u2013", " kids", "es", "o"], ["er", "y", "s", "es", "an", "o", " kids", " tech"], ["er", "y", "s", "es", "\u2013", "o", "an", "n"], ["er", "y", "es", "kits", "an", "s", "o", "\u2013"], ["er", "s", "es", "y", "an", "zinho", "kids", "kits"], ["y", "er", "s", "es", "ahead", "o", "an", "teen"], ["<|endoftext|>", "y", "d", "\u2013", "an", "s", "o", "n"], ["s", "y", "zinho", "ahead", "es", " games", "er", "kids"], ["y", "s", "es", "er", " games", "fully", "ahead", "an"], ["y", "an", "er", "s", "fully", "ahead", "d", " --"], ["y", "s", "an", "d", "&#", "\u2013", " \u00ad", "n"], [" tech", " hardware", " technology", " gaming", " games", "ware", " technologies", " weapons"], [" hardware", " gaming", " architecture", " engineering", " tech", " equipment", " technology", " infrastructure"], [" hardware", " equipment", " architecture", " engineering", " complex", " music", " technology", " gaming"], [" architecture", " hardware", " infrastructure", " architectures", " engineering", " tech", " visuals", " weapons"], [" architecture", " infrastructure", " architectures", " visuals", " workflows", " animations", " ____", " hardware"], [" architecture", " technology", " equipment", " systems", " weapons", " tech", " complex", " infrastructure"], [" complex", " technology", " equipment", " projects", " tech", " systems", " models", " weapons"], [" complex", " technology", " tech", " multiple", " equipment", " projects", " systems", " hardware"], [" tech", " hardware", " technology", " technologies", " weapons", " architecture", " complex", " equipment"], [" tech", " hardware", " technologies", " technology", " software", " weapons", " architecture", " infrastructure"], [" [\u2026]", " [...]", " \u2026", "\u2026\u2026", "\u2026", " ...", "\u2026*", " ......"], [" animations", " hardware", " gameplay", " animation", " software", " [\u2026]", "\u2011", " tech"], [" animations", " animation", " gameplay", " graphics", " pixel", " [\u2026]", " software", " architecture"], [" animations", " [\u2026]", " [...]", " gameplay", " animation", " graphics", " architecture", " geometry"], [" animations", " animation", " [...]", " [\u2026]", " graphics", " hardware", " geometry", " architecture"], [" animations", " animation", " architecture", " graphics", " geometry", " architectural", " visuals", " hardware"], [" animations", " animation", " geometry", " motion", " hardware", " architecture", " graphics", " physics"], [" animations", " animation", " geometry", " physics", " motion", " spatial", " hardware", " graphics"], [" animations", " animation", " geometry", " graphics", " motion", " coordinate", " objects", " coordinates"], [" animations", " animation", " geometry", " hardware", " objects", " graphics", " software", " motion"], [" animations", " animation", " geometry", " graphics", " hardware", " objects", " coordinates", " coordinate"], [" animations", " hardware", " animation", " coordinate", " geometry", " graphics", " software", " objects"], [" animations", " animation", " hardware", " objects", " graphics", " gameplay", " visuals", " data"], [" animations", " animation", " graphics", " gameplay", " visuals", " hardware", " updates", " coordinates"], [" animations", " gameplay", " workflows", " animation", " lifecycle", " visuals", " workflow", " projectiles"], [" animations", " lifecycle", " traversal", " animation", " gameplay", " visuals", " visualization", " trajectory"], [" visualization", " animation", " animations", " viewport", " visuals", " lifecycle", " graphics", " shader"], [" renderer", " visualization", " shader", " rendering", " visuals", " viewport", " animation", " gameplay"], [" renderer", " shader", " visualization", " pipeline", " viewport", " rendering", " lifecycle", " animation"], [" loop", " renderer", " rendering", " shader", "-loop", " viewport", " pipeline", " render"], [" renderer", " rendering", " render", "-render", "\u6e32\u67d3", " viewport", "/render", " Rendering"], [" rendering", " renderer", " render", "\u6e32\u67d3", " Rendering", "-render", "/render", " Renderer"], [" rendering", " render", " renderer", "\u6e32\u67d3", " Rendering", "-render", "render", "/render"], [" rendering", " render", " renderer", "\u6e32\u67d3", "-render", " Rendering", "render", " Render"], [" rendering", " render", " renderer", "\u6e32\u67d3", " viewport", "-render", "render", " Rendering"], [" rendering", " viewport", " render", " renderer", "\u6e32\u67d3", " update", "-render", "Viewport"], [" viewport", " rendering", " render", " renderer", " update", "\u6e32\u67d3", "-render", " engine"], [" rendering", " render", " viewport", "D", " update", "2", "6", " renderer"]], "p": [[0.49, 0.2315, 0.1404, 0.0623, 0.0139, 0.0096, 0.0062, 0.0054], [0.0283, 0.0171, 0.0142, 0.0098, 0.0081, 0.0076, 0.0071, 0.0067], [0.5378, 0.254, 0.1059, 0.039, 0.0184, 0.0126, 0.0068, 0.0056], [0.0148, 0.0102, 0.007, 0.007, 0.0055, 0.0048, 0.004, 0.0037], [0.0355, 0.0229, 0.0115, 0.0108, 0.0096, 0.0055, 0.0051, 0.0048], [0.0222, 0.0135, 0.0112, 0.0056, 0.0056, 0.0039, 0.0036, 0.0036], [0.6552, 0.0833, 0.0224, 0.0082, 0.0073, 0.0053, 0.003, 0.003], [0.054, 0.0477, 0.024, 0.012, 0.0106, 0.01, 0.0088, 0.0088], [0.1081, 0.048, 0.0257, 0.02, 0.0188, 0.0156, 0.0146, 0.0114], [0.0978, 0.0919, 0.0811, 0.0673, 0.0558, 0.0434, 0.0298, 0.017], [0.5247, 0.071, 0.0589, 0.052, 0.0335, 0.0335, 0.0278, 0.0245], [0.3532, 0.0272, 0.0114, 0.01, 0.0078, 0.0078, 0.0069, 0.0065], [0.2911, 0.0106, 0.0094, 0.0088, 0.0078, 0.0064, 0.0053, 0.0047], [0.1342, 0.0141, 0.0071, 0.0067, 0.0046, 0.0043, 0.0038, 0.0038], [0.1414, 0.0358, 0.0262, 0.0149, 0.0132, 0.009, 0.0075, 0.0075], [0.1529, 0.0637, 0.0562, 0.0466, 0.0387, 0.0161, 0.0151, 0.0118], [0.1843, 0.1267, 0.1118, 0.0818, 0.0438, 0.0438, 0.0438, 0.0183], [0.1016, 0.0351, 0.02, 0.0129, 0.0121, 0.0095, 0.0078, 0.0069], [0.0651, 0.0476, 0.0175, 0.0175, 0.0083, 0.0069, 0.0064, 0.0057], [0.0543, 0.035, 0.0273, 0.0176, 0.0137, 0.0094, 0.0089, 0.0042], [0.3187, 0.0262, 0.0231, 0.0217, 0.0159, 0.0124, 0.0124, 0.009], [0.004, 0.004, 0.0037, 0.0035, 0.0035, 0.0035, 0.0033, 0.0031], [0.0103, 0.0059, 0.0055, 0.0049, 0.0043, 0.004, 0.0038, 0.0033], [0.0067, 0.0036, 0.0033, 0.0031, 0.0028, 0.002, 0.0018, 0.0017], [0.0099, 0.0077, 0.0053, 0.005, 0.0047, 0.0047, 0.0034, 0.0032], [0.0052, 0.0043, 0.0034, 0.0032, 0.0032, 0.0026, 0.0023, 0.0018], [0.006, 0.0056, 0.0053, 0.0049, 0.0041, 0.0038, 0.0036, 0.0032], [0.0058, 0.0048, 0.0045, 0.0043, 0.004, 0.0033, 0.0031, 0.0031], [0.0275, 0.0147, 0.0115, 0.0089, 0.0065, 0.0061, 0.0061, 0.0061], [0.0533, 0.0184, 0.0173, 0.0135, 0.0127, 0.0099, 0.0093, 0.0087], [0.0363, 0.0235, 0.0207, 0.0194, 0.0161, 0.0161, 0.0151, 0.0142], [0.0353, 0.0167, 0.0138, 0.013, 0.013, 0.013, 0.0095, 0.0089], [0.0379, 0.0168, 0.0123, 0.0116, 0.0109, 0.009, 0.009, 0.0085], [0.0428, 0.0354, 0.0276, 0.0259, 0.0244, 0.0244, 0.0157, 0.0157], [0.0602, 0.0284, 0.0208, 0.0162, 0.0134, 0.0119, 0.0111, 0.0105], [0.2382, 0.0993, 0.0933, 0.0876, 0.0469, 0.0365, 0.0322, 0.0208], [0.0795, 0.0275, 0.0201, 0.0201, 0.0167, 0.0156, 0.0147, 0.0147], [0.0973, 0.0406, 0.0297, 0.0246, 0.0169, 0.0109, 0.0096, 0.0096], [0.0535, 0.0392, 0.0346, 0.0253, 0.0197, 0.0163, 0.0153, 0.0127], [0.1092, 0.0485, 0.0313, 0.0244, 0.0215, 0.0167, 0.0167, 0.0139], [0.1574, 0.0897, 0.0351, 0.033, 0.0241, 0.02, 0.0156, 0.0121], [0.1553, 0.1067, 0.0608, 0.0238, 0.0224, 0.021, 0.0185, 0.0144], [0.1859, 0.0935, 0.0442, 0.0209, 0.0162, 0.0153, 0.0153, 0.0135], [0.1587, 0.0798, 0.0294, 0.0202, 0.0167, 0.0108, 0.0108, 0.0108], [0.1471, 0.0653, 0.0256, 0.0176, 0.0176, 0.0165, 0.0137, 0.0128], [0.1839, 0.0677, 0.0282, 0.022, 0.0161, 0.0151, 0.0133, 0.0125], [0.0839, 0.0372, 0.0273, 0.0155, 0.0146, 0.0137, 0.0129, 0.0114], [0.1059, 0.0304, 0.0184, 0.0135, 0.0135, 0.0112, 0.0105, 0.0105], [0.153, 0.0363, 0.0142, 0.0142, 0.0126, 0.0104, 0.0092, 0.0092], [0.1161, 0.0621, 0.0276, 0.0276, 0.0148, 0.013, 0.0122, 0.0101], [0.098, 0.0339, 0.0281, 0.0233, 0.0206, 0.0181, 0.0141, 0.0141], [0.1427, 0.0764, 0.0764, 0.0633, 0.0525, 0.0219, 0.016, 0.0117], [0.2407, 0.1137, 0.069, 0.0474, 0.0418, 0.0326, 0.0287, 0.0254], [0.326, 0.0642, 0.0566, 0.0566, 0.0566, 0.0414, 0.0389, 0.0162], [0.3978, 0.2413, 0.0538, 0.0419, 0.037, 0.037, 0.0288, 0.0175], [0.5744, 0.1452, 0.0686, 0.0416, 0.0286, 0.0286, 0.0197, 0.0173], [0.5202, 0.2457, 0.1024, 0.0484, 0.0229, 0.0178, 0.0074, 0.0045], [0.7195, 0.1605, 0.0521, 0.0358, 0.0091, 0.008, 0.0029, 0.0029], [0.7427, 0.1657, 0.037, 0.0254, 0.0083, 0.0064, 0.0027, 0.0018], [0.5622, 0.3009, 0.0523, 0.0317, 0.0247, 0.008, 0.0071, 0.0026], [0.4337, 0.4337, 0.0457, 0.0403, 0.0085, 0.0055, 0.0045, 0.0027], [0.414, 0.3224, 0.1523, 0.03, 0.011, 0.0067, 0.0063, 0.0041], [0.3362, 0.231, 0.1162, 0.0377, 0.0333, 0.0244, 0.0157, 0.0148]], "ranks": {}}, {"pos": 546, "top": [[".", "\u00a0", ",", " \u200b\u200b", " \u2013", " ", "\u00a0\u00a0", "\u2013"], [" \u200b\u200b", "\u2013", " \u2013", ".", "\u200b\u200b", " ", "\u200b", "  "], ["\u2013", ".", " \u2013", ",", " \u200b\u200b", "\u2026", "\u2026.", "\u2026.."], ["\ufffd\ufffd", "\u30bb\u30ec", " pornstar", "&eacute", " \u200b\u200b", " Highlander", " \u041a\u0440\u0430\u0441\u0438", "\u5510\u4e09"], [" \u200b\u200b", " ", "&D", " @", " culture", " PD", " Don", " D"], [" \u200b\u200b", " Star", " Hollywood", "&D", "\u00a0\u00a0", " Pro", ".", " Hong"], [" \u200b\u200b", ".", " ", "\u200b\u200b", " ......", "!", " \u200b", ","], [" \u200b\u200b", ".", " ", "\u200b\u200b", " Star", " complex", " theater", " TV"], [" \u200b\u200b", ".", ",", "\u00a0", " \n\n", "......", "  \n\n", "\u200b\u200b"], [",", "&nbsp", " \u200b\u200b", "\u00a0", ".", "...", " \u00ad", "\u00a0\u00a0"], ["...", ".", "&nbsp", " [\u2026]", " \u200b\u200b", ",", "......", " "], [" complex", "&nbsp", " vision", " theater", " showcase", " movies", " kids", " culture"], [" complex", " vision", " theater", " artists", " classic", " visuals", " architecture", " technology"], [" vision", " complex", " theater", " visuals", " technology", " artists", " lifestyle", " architecture"], [" vision", " complex", " tech", " classic", " movies", " visuals", " technology", " games"], [" tech", " kids", " showcase", " visuals", " movies", " technology", " vision", " complex"], [" tech", " complex", " visuals", " showcase", " kids", " technology", " vibe", " movies"], [" visuals", " tech", " vibe", " showcase", "-esque", " kids", " games", " movies"], [" tech", " complex", " visuals", " movie", " music", " Hollywood", " TV", " theater"], [" complex", " imagery", " movie", " blockbuster", "-esque", " tech", " music", " visuals"], ["<|endoftext|>", " \n\n", "  \n\n", " complex", " TV", " imagery", " movie", " Hollywood"], [" games", " gameplay", " visuals", " theater", " movie", " movies", " gaming", " game"], [" games", " movie", " technology", " game", " movies", " music", " gaming", " vision"], [" complex", " games", " music", " vision", " movie", " technology", " world", " movies"], [" imagery", " visuals", " \n\n", " complex", " architecture", " movie", " games", " technology"], [" architecture", " visuals", " artwork", " gameplay", " imagery", " animations", " technology", " animation"], [" visuals", " architecture", " imagery", " artwork", " animations", " movies", " animation", " photography"], [" imagery", " architecture", " technology", " complex", " video", " \n\n", " visuals", " film"], [" architecture", " visuals", " technology", " imagery", " technologies", " animations", " artwork", " gameplay"], [" architecture", " visuals", " technology", " theater", " animations", " technologies", " gameplay", " visualization"], [" architecture", " technology", " theater", " visuals", " technologies", " graphics", " ...", " scenes"], [" ...", " technology", " complex", " architecture", " tech", " studio", " film", " equipment"], [" complex", " technology", " architecture", " tech", " hardware", " visual", " equipment", " video"], [" technology", " architecture", " complex", " tech", " technologies", " hardware", " visuals", " software"], [" tech", " technology", " hardware", " complex", " architecture", " visuals", " software", " technologies"], [" tech", " hardware", " complex", " technology", " architecture", " software", " visuals", " technologies"], [" animations", " hardware", " tech", " architecture", " software", " animation", " complex", " visuals"], [" animations", " animation", " gameplay", " graphics", " architecture", " software", " tech", " hardware"], [" animations", " graphics", " visuals", " gameplay", " animation", " architecture", " software", " complex"], [" animations", " graphics", " animation", " visuals", " gameplay", " visualization", " architecture", " visual"], [" graphics", " animations", " animation", " visuals", " visualization", " architecture", " visual", " gameplay"], [" graphics", " animation", " animations", " visuals", " architecture", " visualization", " visual", " software"], [" graphics", " animations", " animation", " visuals", " architecture", " visualization", " software", " gameplay"], [" animations", " animation", " graphics", " visuals", " architecture", " visualization", " gameplay", " software"], [" animations", " animation", " graphics", " architecture", " visuals", " visualization", " software", " gameplay"], [" animations", " animation", " graphics", " visuals", " architecture", " visualization", " gameplay", " software"], [" animations", " visuals", " graphics", " animation", " architecture", " gameplay", " visualization", " hardware"], [" visuals", " animations", " graphics", " animation", " gameplay", " architecture", " visualization", " hardware"], [" visuals", " animations", " gameplay", " animation", " graphics", " visualization", " imagery", " architecture"], [" visuals", " gameplay", " animations", " workflows", " graphics", " workflow", " visualization", " animation"], [" animations", " visuals", " gameplay", " visualization", " workflows", " workflow", " lifecycle", " animation"], [" animations", " workflow", " lifecycle", " viewport", " visuals", " visualization", " animation", " gameplay"], [" renderer", " shader", " gameplay", " pipeline", " visuals", " visualization", " viewport", " lifecycle"], [" renderer", " pipeline", " shader", " viewport", " visualization", " visuals", " lifecycle", " gameplay"], [" loop", " renderer", " pipeline", " shader", " loops", " viewport", " rendering", "-loop"], [" renderer", " rendering", " loop", " viewport", " render", "-render", " pipeline", " Rendering"], [" rendering", " renderer", " render", "\u6e32\u67d3", " Rendering", "-render", " loop", " pipeline"], [" rendering", " renderer", " render", "\u6e32\u67d3", " Rendering", "-render", "render", "/render"], [" rendering", " render", " renderer", " engine", " pipeline", "\u6e32\u67d3", " Rendering", "-render"], [" rendering", " render", " renderer", "\u6e32\u67d3", " viewport", "-render", " Rendering", "render"], [" rendering", " viewport", " renderer", " engine", " render", " pipeline", " update", "\u6e32\u67d3"], [" rendering", " viewport", " render", " renderer", " engine", " pipeline", " update", " scene"], [" rendering", " render", " viewport", " update", " renderer", " engine", " pipeline", " scene"]], "p": [[0.8395, 0.0347, 0.0224, 0.021, 0.0136, 0.0093, 0.0077, 0.0077], [0.1565, 0.0448, 0.0421, 0.0349, 0.0187, 0.0155, 0.0137, 0.0088], [0.3977, 0.2, 0.1213, 0.0736, 0.0506, 0.0254, 0.0154, 0.0094], [0.0013, 0.0012, 0.0012, 0.0011, 0.001, 0.0009, 0.0009, 0.0009], [0.1384, 0.0176, 0.0069, 0.0054, 0.0042, 0.0039, 0.0035, 0.0033], [0.5762, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008, 0.0008, 0.0007], [0.8275, 0.0221, 0.0161, 0.0063, 0.0016, 0.0013, 0.001, 0.0008], [0.5545, 0.0048, 0.0027, 0.0024, 0.0018, 0.0017, 0.0016, 0.0016], [0.5575, 0.1031, 0.0245, 0.0149, 0.0149, 0.0109, 0.0109, 0.0102], [0.0604, 0.0077, 0.0072, 0.0053, 0.005, 0.0047, 0.0044, 0.0036], [0.3379, 0.0587, 0.043, 0.0314, 0.0245, 0.0191, 0.0158, 0.0139], [0.012, 0.0082, 0.0082, 0.0057, 0.0047, 0.0047, 0.0044, 0.0044], [0.0135, 0.0126, 0.0112, 0.006, 0.0053, 0.0044, 0.0044, 0.0044], [0.014, 0.0103, 0.0075, 0.0075, 0.0071, 0.0066, 0.0048, 0.0046], [0.0144, 0.0112, 0.0088, 0.0073, 0.0073, 0.0068, 0.0068, 0.006], [0.0208, 0.0183, 0.0118, 0.0105, 0.0081, 0.0072, 0.0063, 0.006], [0.0276, 0.0108, 0.0095, 0.0084, 0.0084, 0.0079, 0.007, 0.0066], [0.0278, 0.0261, 0.0131, 0.0102, 0.007, 0.0066, 0.0066, 0.0062], [0.0126, 0.0092, 0.0087, 0.0076, 0.0072, 0.0063, 0.0063, 0.006], [0.0081, 0.0052, 0.0052, 0.0043, 0.0043, 0.0043, 0.0036, 0.0034], [0.2127, 0.0136, 0.0044, 0.0027, 0.0025, 0.0022, 0.002, 0.0018], [0.0093, 0.0077, 0.0068, 0.0068, 0.0064, 0.0064, 0.006, 0.0039], [0.0141, 0.0103, 0.0086, 0.008, 0.0075, 0.0071, 0.0071, 0.0063], [0.0101, 0.0079, 0.007, 0.0058, 0.0054, 0.0051, 0.0048, 0.0045], [0.0099, 0.0068, 0.0068, 0.0064, 0.0064, 0.006, 0.0057, 0.0053], [0.0329, 0.024, 0.0121, 0.0121, 0.0107, 0.0078, 0.0073, 0.0073], [0.0499, 0.044, 0.0267, 0.0172, 0.0111, 0.0098, 0.0098, 0.0098], [0.0171, 0.016, 0.016, 0.0125, 0.011, 0.0103, 0.0103, 0.0103], [0.0701, 0.0513, 0.0242, 0.0214, 0.0157, 0.0115, 0.0108, 0.0101], [0.0934, 0.05, 0.0251, 0.0222, 0.0208, 0.0143, 0.0135, 0.0112], [0.0758, 0.059, 0.0406, 0.0279, 0.0169, 0.0159, 0.0149, 0.0149], [0.0724, 0.0467, 0.0467, 0.0266, 0.0172, 0.0126, 0.0118, 0.0104], [0.0536, 0.0473, 0.0154, 0.0154, 0.0106, 0.0106, 0.0093, 0.0087], [0.0575, 0.0421, 0.0396, 0.0308, 0.0255, 0.024, 0.0155, 0.0121], [0.0822, 0.044, 0.044, 0.0365, 0.0322, 0.0251, 0.0208, 0.0195], [0.0618, 0.0481, 0.0481, 0.0452, 0.0331, 0.0274, 0.013, 0.0114], [0.0632, 0.0594, 0.0434, 0.0434, 0.0408, 0.0318, 0.0299, 0.0247], [0.0976, 0.0556, 0.0407, 0.0382, 0.0337, 0.0317, 0.0263, 0.0232], [0.0592, 0.0556, 0.0433, 0.0407, 0.0382, 0.0359, 0.0337, 0.0263], [0.1174, 0.1103, 0.0973, 0.0859, 0.0406, 0.0406, 0.0381, 0.0279], [0.2031, 0.1582, 0.1582, 0.1087, 0.0353, 0.0353, 0.0243, 0.0189], [0.2446, 0.1483, 0.1309, 0.09, 0.0701, 0.0331, 0.0274, 0.0156], [0.1913, 0.149, 0.1315, 0.1024, 0.0484, 0.0427, 0.0243, 0.0228], [0.1737, 0.1533, 0.1533, 0.093, 0.0413, 0.0284, 0.0207, 0.0195], [0.1489, 0.1159, 0.1023, 0.0797, 0.0621, 0.0275, 0.0259, 0.0259], [0.1603, 0.1101, 0.0757, 0.0757, 0.059, 0.0262, 0.0246, 0.018], [0.1189, 0.105, 0.0562, 0.0496, 0.0283, 0.0283, 0.0265, 0.0234], [0.1557, 0.1213, 0.0506, 0.0419, 0.037, 0.0254, 0.0211, 0.0154], [0.1816, 0.1414, 0.0554, 0.0459, 0.0431, 0.0315, 0.0149, 0.0132], [0.145, 0.113, 0.0997, 0.0344, 0.0344, 0.0324, 0.0304, 0.0286], [0.1317, 0.085, 0.0705, 0.0428, 0.0402, 0.0377, 0.0313, 0.0294], [0.0741, 0.0615, 0.051, 0.051, 0.0479, 0.045, 0.045, 0.035], [0.2702, 0.0877, 0.0877, 0.0774, 0.0603, 0.0414, 0.0323, 0.0222], [0.3593, 0.2179, 0.0802, 0.0379, 0.0379, 0.023, 0.023, 0.023], [0.722, 0.0977, 0.0593, 0.0247, 0.017, 0.0103, 0.0091, 0.0071], [0.6637, 0.1018, 0.0793, 0.0257, 0.0257, 0.0156, 0.0156, 0.0107], [0.518, 0.3142, 0.0619, 0.0258, 0.0228, 0.0122, 0.0095, 0.0058], [0.808, 0.0752, 0.0752, 0.019, 0.009, 0.0042, 0.002, 0.0018], [0.8201, 0.0594, 0.0594, 0.017, 0.017, 0.0103, 0.0063, 0.0038], [0.704, 0.178, 0.0742, 0.0166, 0.0089, 0.0054, 0.0037, 0.0029], [0.4376, 0.3408, 0.0977, 0.0407, 0.0359, 0.0247, 0.0049, 0.0029], [0.5131, 0.2747, 0.0892, 0.0372, 0.0372, 0.0155, 0.0106, 0.0017], [0.6007, 0.221, 0.0921, 0.0299, 0.0206, 0.0086, 0.0076, 0.0015]], "ranks": {}}, {"pos": 547, "top": [[" \u2013", "\u2013", ".", " ", ",", "\u2013and", "\u00a0\u00a0", "["], [" \u2013**", "  \n\n", "**\u2013", " **\u2013", "  \n  \n", "   \n\n", "\u2013\u2013", "aleigh"], ["\u2013", " \u2013", "\u2013\u2013", "\u2013and", " **\u2013", "**\u2013", "  \n\n", " \u2013,"], [" **\u201e", "aleigh", " **\u300c", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ``(", "entication", " **\u201c", " **\u00ab"], [" \n\n\n\n", " **\"", " **\u201e", " **\u201c", " **[", " \n\n\n\n\n", " \n\n\n", " \n\n"], [" \n\n\n\n", " **\"", " **\u201c", " **\u201e", " **\u2013", " **[", " \n\n\n\n\n", " \n\n\n"], [" **\"", " \n\n\n\n", " \n\n", " **[", " \n\n\n", " **\u201e", " **\u2013", " **\u201c"], [" **\u201e", " **\"", " \n\n\n\n", " \n\n\n", " **\u2013", " **[", " \n\n", " \n\n\n\n\n"], [" \n\n\n", " \n\n", " **\u201e", " \n\n\n\n", " \n\n\n\n\n", "  \n\n\n", " **\"", " \n \n"], ["\u2013\u2013", " **\"", " **\u201e", " showcased", " **\u2013", " showcasing", "ation", "entication"], ["\u2013\u2013", " **\u2013", " **\u201e", " **\"", " **[", " showcasing", " \n\n\n", " \n\n\n\n"], [" **\u201e", " **\"", " **", " **\u2013", " **\u300c", " **\u00ab", " **[", " **\u201c"], [" **\u201e", " **\u00ab", " **", " **\u300c", " **\u2013", " **\"", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " showcase"], [" showcase", " showcasing", " showcased", " advancements", " capabilities", " **\u201e", " architecture", "\u2013\u2013"], [" showcase", " showcasing", " showcased", " advancements", " capabilities", " showcases", " architecture", " entirety"], [" showcasing", " showcase", " advancements", " showcased", " entirety", " capabilities", " arguably", " technology"], [" showcase", " showcasing", " entirety", " showcased", " capabilities", " arguably", " advancements", "\u2013\u2013"], [" showcase", " showcasing", " **\u2013", " showcased", " entirety", " capabilities", "\u2013\u2013", " advancements"], [" showcase", " showcasing", " arguably", " showcased", " entirety", "\u2013\u2013", " capabilities", " seamlessly"], ["\u2013\u2013", " arguably", " entirety", " showcase", " vastly", " showcasing", " ultimately", " showcased"], [" arguably", " vastly", "\u2013\u2013", " ultimately", " showcasing", " entirety", " showcase", " seemingly"], [" showcase", " ``", "\u8bbe\u65bd\u8bbe\u5907", " capabilities", " showcasing", " ;;^", " artwork", "\u5171\u540c\u6253\u9020"], [" ``", " showcase", " ``(", " artwork", " capabilities", " showcasing", " architecture", " arguably"], [" ``", " ultimately", " complex", " arguably", " alongside", " showcase", " vastly", " architecture"], [" artwork", " vastly", " showcase", " architecture", " arguably", " showcasing", " ultimately", " capabilities"], [" architecture", " artwork", " architectures", " showcase", " pixel", " visuals", " visualization", " artworks"], [" architecture", " artwork", " pixel", " architectures", " visuals", " visualization", " graphics", " architectural"], [" architecture", " visual", " artwork", " technology", " imagery", " painting", " visuals", " architectures"], [" architecture", " architectures", " pixel", " visuals", " artwork", " technology", " visualization", " technologies"], [" architecture", " architectures", " pixel", " visuals", " workflows", " visualization", " technology", " technologies"], [" architecture", " technology", " technologies", " architectures", " engines", " visuals", " graphics", " visualization"], [" technology", " architecture", " complex", " systems", " technologies", " engine", " system", " equipment"], [" technology", " complex", " system", " systems", " architecture", " visual", " equipment", " engine"], [" technology", " technologies", " architecture", " systems", " complex", " hardware", " architectures", " engines"], [" technology", " architecture", " technologies", " hardware", " visuals", " complex", " architectures", " engine"], [" technology", " complex", " engine", " architecture", " hardware", " engines", " technologies", " workflows"], [" workflows", " animations", " pixel", " hardware", " algorithms", " engine", " architecture", " techniques"], [" workflows", " animations", " pixel", " architecture", " algorithms", " engine", " graphics", " techniques"], [" workflows", " architecture", " graphics", " pixel", " algorithms", " animations", " engine", " complex"], [" workflows", " architecture", " graphics", " animations", " algorithms", " pixel", " workflow", " visuals"], [" graphics", " architecture", " workflows", " animations", " visuals", " workflow", " animation", " hardware"], [" graphics", " workflows", " architecture", " visuals", " animations", " workflow", " processes", " animation"], [" graphics", " architecture", " workflows", " visuals", " animations", " workflow", " routines", " algorithms"], [" workflows", " graphics", " workflow", " architecture", " processes", " routines", " animations", " visuals"], [" workflows", " architecture", " routines", " workflow", " graphics", " processes", " pipeline", " cycle"], [" workflows", " routines", " architecture", " workflow", " graphics", " pipeline", " processes", " pipelines"], [" workflows", " routines", " workflow", " pipeline", " processes", " visuals", " cycle", " pipelines"], [" workflows", " routines", " pipeline", " workflow", " visuals", " graphics", " pipelines", " loop"], [" pipeline", " routines", " and", " workflows", " visuals", " workflow", " pipelines", " cycle"], [" and", " workflows", " workflow", " pipeline", " interface", " routines", " visuals", " interfaces"], [" workflows", " workflow", " pipeline", " lifecycle", " toolkit", " and", " interface", " routines"], [" pipeline", " loop", " toolkit", " lifecycle", " and", " workflow", " pipelines", " shader"], [" pipeline", " shader", " renderer", " pipelines", " loop", " lifecycle", "Pipeline", " engine"], [" pipeline", " renderer", " shader", " pipelines", " loop", "Pipeline", "pipeline", " engine"], [" loop", " loops", "loop", " pipeline", "-loop", "Loop", " Loop", "\u5faa\u73af"], [" loop", "loop", " pipeline", " loops", "-loop", "Loop", " Loop", "\u5faa\u73af"], [" loop", " pipeline", "loop", " loops", "-loop", " Loop", "Loop", "pipeline"], [" loop", " pipeline", "loop", " loops", "-loop", " Loop", "pipeline", "Loop"], [" pipeline", " loop", "pipeline", "Pipeline", " Pipeline", "loop", " pipelines", "_pipeline"], [" pipeline", " loop", "pipeline", "Pipeline", "loop", " Pipeline", " pipelines", "_pipeline"], [" pipeline", " loop", "pipeline", "loop", "Pipeline", " Pipeline", " loops", " Loop"], [" pipeline", " loop", "pipeline", " engine", " and", "Pipeline", "loop", " Pipeline"], [" pipeline", " loop", " and", " engine", " logic", "pipeline", " update", " thread"]], "p": [[0.6518, 0.1754, 0.0472, 0.0391, 0.0105, 0.0068, 0.0056, 0.0039], [0.1065, 0.094, 0.0417, 0.0417, 0.0269, 0.0238, 0.021, 0.0197], [0.6476, 0.1358, 0.0441, 0.0343, 0.0184, 0.0173, 0.0162, 0.0098], [0.0534, 0.0185, 0.0153, 0.0087, 0.0087, 0.006, 0.0036, 0.0034], [0.2877, 0.047, 0.0303, 0.0196, 0.0173, 0.0143, 0.0098, 0.0082], [0.0879, 0.0501, 0.039, 0.0304, 0.0268, 0.0087, 0.0072, 0.0072], [0.1006, 0.0692, 0.0447, 0.0394, 0.0327, 0.0225, 0.0211, 0.0198], [0.1512, 0.0917, 0.0461, 0.028, 0.0181, 0.017, 0.0091, 0.0085], [0.3384, 0.2052, 0.0856, 0.0588, 0.0168, 0.0102, 0.0075, 0.0062], [0.0251, 0.0072, 0.0068, 0.0064, 0.005, 0.0044, 0.0032, 0.0025], [0.058, 0.0512, 0.0452, 0.0452, 0.0258, 0.0188, 0.0114, 0.0107], [0.3072, 0.0502, 0.0345, 0.0324, 0.0185, 0.0144, 0.0135, 0.0082], [0.1764, 0.0347, 0.0211, 0.0186, 0.01, 0.006, 0.0053, 0.0047], [0.0142, 0.0098, 0.0086, 0.0076, 0.0071, 0.0071, 0.0046, 0.0036], [0.0361, 0.0299, 0.0141, 0.0103, 0.0071, 0.0052, 0.0049, 0.0046], [0.0412, 0.0301, 0.0152, 0.0152, 0.0098, 0.0081, 0.0056, 0.0038], [0.0306, 0.0288, 0.0164, 0.0128, 0.0128, 0.0088, 0.0082, 0.0073], [0.0157, 0.0115, 0.0089, 0.0089, 0.0079, 0.0061, 0.0054, 0.0045], [0.0142, 0.0098, 0.0081, 0.0076, 0.0067, 0.0052, 0.0038, 0.0036], [0.0315, 0.014, 0.0075, 0.0055, 0.0051, 0.0048, 0.0043, 0.0035], [0.011, 0.011, 0.0097, 0.0086, 0.0063, 0.0046, 0.0041, 0.0041], [0.0079, 0.0038, 0.0026, 0.0024, 0.0024, 0.0024, 0.0024, 0.0023], [0.0256, 0.0094, 0.0057, 0.0039, 0.0037, 0.0035, 0.0035, 0.0033], [0.0093, 0.0087, 0.005, 0.0041, 0.0041, 0.0034, 0.0032, 0.0032], [0.0107, 0.0073, 0.0065, 0.005, 0.005, 0.0042, 0.0042, 0.0039], [0.0274, 0.0227, 0.0177, 0.0095, 0.0079, 0.0069, 0.0065, 0.0061], [0.0365, 0.0303, 0.0172, 0.0172, 0.0172, 0.0119, 0.0111, 0.0077], [0.0168, 0.0131, 0.0116, 0.0085, 0.0075, 0.007, 0.0062, 0.0058], [0.0285, 0.0196, 0.0163, 0.0153, 0.0143, 0.0093, 0.0093, 0.0082], [0.0519, 0.0315, 0.0203, 0.0203, 0.0191, 0.0158, 0.0149, 0.0131], [0.063, 0.0433, 0.0232, 0.0192, 0.0181, 0.017, 0.0159, 0.0132], [0.0593, 0.0317, 0.0232, 0.017, 0.016, 0.0124, 0.0124, 0.0103], [0.0409, 0.0281, 0.0151, 0.0141, 0.0141, 0.0117, 0.0103, 0.0103], [0.0322, 0.0235, 0.0221, 0.0143, 0.0134, 0.0118, 0.0118, 0.0111], [0.0258, 0.0189, 0.0166, 0.0147, 0.0122, 0.0122, 0.0101, 0.0101], [0.0326, 0.0287, 0.021, 0.0198, 0.0198, 0.0136, 0.0128, 0.0113], [0.0266, 0.0266, 0.0221, 0.0195, 0.0195, 0.0183, 0.0183, 0.0134], [0.0371, 0.0328, 0.0328, 0.0225, 0.0199, 0.0199, 0.0175, 0.0155], [0.0451, 0.0351, 0.0273, 0.0257, 0.0213, 0.0188, 0.0177, 0.0129], [0.057, 0.0503, 0.0472, 0.0305, 0.0253, 0.021, 0.0197, 0.0174], [0.138, 0.0694, 0.0612, 0.0448, 0.0328, 0.0255, 0.0225, 0.0165], [0.1652, 0.078, 0.0689, 0.0504, 0.0325, 0.0287, 0.021, 0.0185], [0.1226, 0.0744, 0.0744, 0.0424, 0.0291, 0.0274, 0.0257, 0.0213], [0.0975, 0.086, 0.046, 0.046, 0.0432, 0.0382, 0.0316, 0.0262], [0.1242, 0.0551, 0.0518, 0.0518, 0.0379, 0.0314, 0.026, 0.023], [0.0641, 0.0566, 0.0441, 0.0343, 0.0322, 0.0303, 0.0267, 0.0251], [0.1531, 0.0723, 0.068, 0.0321, 0.0283, 0.025, 0.0235, 0.0221], [0.0909, 0.0625, 0.0487, 0.0457, 0.0379, 0.0295, 0.0261, 0.0261], [0.08, 0.0485, 0.0456, 0.0428, 0.0333, 0.0276, 0.0276, 0.0244], [0.1088, 0.066, 0.062, 0.0514, 0.0454, 0.0426, 0.0214, 0.0214], [0.0665, 0.0587, 0.0587, 0.0356, 0.0334, 0.0203, 0.0203, 0.0179], [0.2277, 0.0838, 0.0308, 0.0255, 0.0225, 0.0199, 0.0176, 0.0121], [0.7778, 0.0235, 0.0235, 0.0142, 0.0111, 0.0067, 0.0059, 0.0049], [0.855, 0.0201, 0.0177, 0.0177, 0.0177, 0.0095, 0.0065, 0.0045], [0.9683, 0.0122, 0.0095, 0.004, 0.0019, 0.0019, 0.0013, 0.0003], [0.9679, 0.0095, 0.0084, 0.0074, 0.0027, 0.0013, 0.0013, 0.0004], [0.9497, 0.0325, 0.0073, 0.0044, 0.0018, 0.0013, 0.0009, 0.0007], [0.9432, 0.0414, 0.0064, 0.0039, 0.0014, 0.001, 0.0009, 0.0005], [0.8921, 0.094, 0.0087, 0.0025, 0.0009, 0.0005, 0.0004, 0.0004], [0.8296, 0.1634, 0.0038, 0.001, 0.0005, 0.0005, 0.0003, 0.0003], [0.6774, 0.32, 0.0012, 0.0004, 0.0003, 0.0002, 0.0001, 0.0001], [0.6199, 0.376, 0.0009, 0.0006, 0.0004, 0.0003, 0.0002, 0.0002], [0.5582, 0.4347, 0.002, 0.0008, 0.0007, 0.0004, 0.0003, 0.0002]], "ranks": {}}, {"pos": 548, "top": [[".", ",", " ", "\u00a0\u00a0", ";", "u", "[", "-"], ["  \n", "  ", "   \n", " \uff5e", "ishly", " \u25b3", " \uff08", "ed"], [",", ".", "[", ";", "  \n", "!", "\u00b7", ",."], ["\uc368", " St\u00e9ph", "\uff3f\uff3f", " Ejem", " Geile", " \u30fb", " Guta", "ALCHEMY"], ["ed", " \u3010", "@", " \u3011", "  ", "ingly", "\uc368", " \uff08"], ["ed", "  ", " \uff09", " \uff08", " \u3011", "  \n", "ishly", "ingly"], ["  \n", "ed", " \u3010", "  ", " \u00b7", " _", " \uff08", " ~"], ["  \n", "ed", " _", " ~", "ishly", "  ", "~", " \u3010"], ["  \n", "ed", ",", "~", "  ", " ~", "ishly", "!"], [",", "ed", "ishly", "~", " ~", "\uc368", "ingly", " \u00ad"], ["ed", ",", "~", " ~", " _", "  \n", ".", ";"], [" ~", "ed", " _", "ishly", "ingly", " `_", " ~~", "~"], [" ~", "ed", " _", "ishly", " `_", "ingly", " seamlessly", " intric"], ["ed", " ~", "-esque", " swiftly", " intric", " orchestrated", " seamlessly", "ishly"], ["ed", " ~", " ", " swiftly", "o", " inter", " alongside", " arguably"], ["ed", " swiftly", " arguably", " ~", " potentially", " strategically", "-esque", " alongside"], ["ed", " swiftly", " ~", "o", "-esque", " potentially", " arguably", " akin"], ["ed", "-esque", " swiftly", "ishly", "o", " seamlessly", " strategically", " ~"], [" swiftly", " ~", "-esque", " --", " arguably", " \u2014", " seamlessly", "ed"], [" \u2014", " --", " swiftly", " ~", " ostensibly", " heavily", " myriad", " alongside"], ["<|endoftext|>", " \u2014", " swiftly", " --", " ~", " ,", " alongside", " heavily"], [" swiftly", " orchestrated", " ~", " heavily", "ishly", " --", " amid", " alongside"], [" --", " ~", " swiftly", " ``", " heavily", " ,", " amid", " dramatically"], [" --", " ,", " swiftly", " ~", " heavily", " ultimately", " alongside", " across"], [" --", " swiftly", " ~", " \u2014", " amidst", " heavily", " myriad", " continually"], [" --", " swiftly", " ~", " amidst", " amid", " atop", " orchestrated", " onward"], [" --", " ~", " orchestrated", " swiftly", " iterating", " ``", " loop", " cyclic"], [" --", " _", " ,", " ~", " swiftly", " `", " rapidly", " continually"], [" cycle", " ~", " **", " loop", " oscill", " nightly", " cycles", " engine"], [" cycle", " **", " loop", " engine", " cycles", " nightly", " cyclic", " rhythm"], [" ,", " rapidly", " cycle", " heavily", " continuously", " ~", " nightly", " quickly"], [" ,", " heavily", " critical", " rapidly", " continuously", " under", " over", " ~"], [" ,", " and", " under", " rapidly", " heavily", " over", " quickly", " during"], [" heavily", " ,", " critical", " rapidly", " continuously", " under", " system", " quickly"], [" heavily", " rapidly", " ,", " meticulously", " cycle", " critical", " continuously", " quickly"], [" ,", " \u2014", " heavily", " rapidly", " and", " meticulously", " \u201c", " quickly"], [" meticulously", " heavily", " \u2014", " rapidly", " using", " exclusively", " ,", " without"], [" into", " to", " meticulously", " \u201c", " heavily", " rapidly", " using", " directly"], [" meticulously", " loop", " exclusively", " entirely", " heavily", " uninterrupted", " strictly", " cycle"], [" loop", " cycle", " meticulously", " loops", " cyclic", " cycles", " iterative", " entirely"], [" loop", " cycle", " loops", " cycles", " cyclic", " meticulously", " iterative", " entirely"], [" loop", " cycle", " loops", " cycles", " cyclic", " routines", " iterative", " looping"], [" loop", " cycle", " loops", " cycles", " cyclic", " uninterrupted", " iterative", " routines"], [" loop", " cycle", " loops", " cycles", " uninterrupted", " cyclic", " routines", " entirely"], [" loop", " loops", " cycle", " cycles", " uninterrupted", " entirely", " strict", " strictly"], [" loop", " loops", " entirely", " strictly", " uninterrupted", " cycle", " cycles", " strict"], [" entirely", " loop", " loops", " strictly", " meticulously", " uninterrupted", " completely", " cycles"], [" entirely", " completely", " strictly", " exclusively", " loop", " loops", " strict", " meticulously"], [" entirely", " completely", " strictly", " exclusively", " **", " and", " NEVER", " strict"], [" and", " entirely", " completely", " strictly", " exclusively", " meticulously", " strict", " into"], [" and", " entirely", " completely", "\u4e25\u7981", " strictly", " (`", " meticulously", " strict"], [" and", " entirely", " completely", " absolutely", " strictly", " (`", "\u4e25\u7981", "\u5f7b\u5e95"], [" and", " entirely", " (`", " completely", " strictly", "\u4e25\u7981", " (*", " to"], [" and", " (`", " to", " into", " entirely", " (*", "\u4e25\u7981", " v\u00e0"], [" and", " to", " (`", " entirely", "\u675c\u7edd", " ZERO", " zero", " completely"], [" to", " and", " async", " entirely", " (`", "\u548c\u6570\u636e", " completely", " Async"], [" and", " to", " (`", "\u548c\u6570\u636e", " async", " entirely", " Async", " AND"], [" and", " to", " (`", " async", "\u548c\u6570\u636e", " data", " entirely", " Async"], [" and", " to", " async", "\u548c\u6570\u636e", " (`", " data", " strict", " entirely"], [" async", " Async", " and", "async", " to", "(async", ".async", " asynchronous"], [" async", " and", " to", " Async", "async", "(async", ".async", " asynchronous"], [" and", " async", " to", " Async", "async", "(async", ".async", " asynchronous"], [" and", " to", " async", ",", "\u2019s", " (`", " Async", " entirely"]], "p": [[0.6651, 0.2447, 0.0114, 0.0069, 0.0054, 0.0048, 0.0042, 0.004], [0.194, 0.0461, 0.0141, 0.0124, 0.0097, 0.0091, 0.008, 0.0062], [0.4864, 0.3343, 0.0746, 0.013, 0.0065, 0.0058, 0.0054, 0.0037], [0.0143, 0.0092, 0.0063, 0.0046, 0.0044, 0.0034, 0.0032, 0.0028], [0.7578, 0.0157, 0.0108, 0.0095, 0.007, 0.0054, 0.0051, 0.0051], [0.6289, 0.0157, 0.0131, 0.0131, 0.0102, 0.0102, 0.0054, 0.0027], [0.2797, 0.2179, 0.1095, 0.0356, 0.026, 0.0244, 0.023, 0.0216], [0.1621, 0.1263, 0.1186, 0.0983, 0.056, 0.0464, 0.0249, 0.0194], [0.1766, 0.0394, 0.0394, 0.037, 0.0307, 0.0307, 0.0271, 0.0254], [0.0652, 0.0652, 0.0421, 0.0165, 0.0155, 0.0094, 0.0088, 0.0047], [0.2854, 0.1118, 0.0598, 0.0466, 0.0301, 0.0283, 0.0234, 0.0133], [0.1537, 0.0236, 0.0195, 0.0184, 0.0072, 0.0063, 0.0049, 0.0049], [0.1015, 0.0655, 0.0176, 0.0089, 0.0061, 0.0054, 0.0047, 0.0045], [0.091, 0.0123, 0.0102, 0.0075, 0.007, 0.0062, 0.0055, 0.0048], [0.0483, 0.04, 0.0178, 0.013, 0.0122, 0.0101, 0.0095, 0.007], [0.0345, 0.0223, 0.0163, 0.0135, 0.0093, 0.0087, 0.0082, 0.0082], [0.0642, 0.0208, 0.0173, 0.0152, 0.0135, 0.0126, 0.0119, 0.0105], [0.0216, 0.0102, 0.0096, 0.0079, 0.0079, 0.0079, 0.0075, 0.0062], [0.0143, 0.0134, 0.0118, 0.0104, 0.0087, 0.0087, 0.0081, 0.0076], [0.0579, 0.0424, 0.0374, 0.0351, 0.0129, 0.0095, 0.0089, 0.0089], [0.2655, 0.0407, 0.0247, 0.0192, 0.0159, 0.0124, 0.0071, 0.0066], [0.0123, 0.0109, 0.0075, 0.007, 0.0066, 0.0066, 0.0062, 0.0048], [0.059, 0.0406, 0.0262, 0.0132, 0.0109, 0.0062, 0.0058, 0.0055], [0.0903, 0.0293, 0.0243, 0.0189, 0.0122, 0.0089, 0.007, 0.007], [0.127, 0.0412, 0.0126, 0.0098, 0.0076, 0.0072, 0.0067, 0.0067], [0.0307, 0.012, 0.0113, 0.0069, 0.0069, 0.0057, 0.005, 0.0047], [0.0096, 0.0075, 0.0051, 0.0048, 0.0048, 0.0045, 0.0045, 0.0043], [0.0625, 0.0379, 0.0379, 0.0314, 0.0148, 0.007, 0.0066, 0.0066], [0.0149, 0.0131, 0.0109, 0.0109, 0.0085, 0.008, 0.0075, 0.007], [0.0204, 0.0131, 0.0131, 0.0102, 0.0096, 0.0075, 0.0075, 0.0075], [0.0216, 0.0131, 0.0131, 0.0123, 0.0109, 0.0085, 0.008, 0.007], [0.0437, 0.0111, 0.0098, 0.0098, 0.0092, 0.0081, 0.0081, 0.0081], [0.1079, 0.0188, 0.0155, 0.0137, 0.0129, 0.0129, 0.01, 0.0089], [0.0181, 0.0132, 0.0124, 0.0103, 0.0103, 0.0097, 0.0075, 0.0067], [0.0225, 0.0146, 0.0113, 0.0088, 0.0083, 0.0083, 0.0078, 0.0069], [0.0614, 0.035, 0.0273, 0.0199, 0.0155, 0.0146, 0.0146, 0.0107], [0.0283, 0.0265, 0.0234, 0.0194, 0.0142, 0.0125, 0.0125, 0.0104], [0.0211, 0.0165, 0.0155, 0.0128, 0.012, 0.0113, 0.0106, 0.01], [0.0311, 0.0228, 0.0147, 0.013, 0.0122, 0.0115, 0.0108, 0.0108], [0.083, 0.0253, 0.0223, 0.021, 0.0174, 0.0144, 0.0112, 0.0112], [0.1487, 0.062, 0.04, 0.0258, 0.0157, 0.0115, 0.0089, 0.0084], [0.2125, 0.1004, 0.0734, 0.0505, 0.0254, 0.0154, 0.0145, 0.0099], [0.2357, 0.1046, 0.1046, 0.0675, 0.0361, 0.0171, 0.016, 0.0133], [0.186, 0.106, 0.0776, 0.0533, 0.0323, 0.0209, 0.0173, 0.0135], [0.1645, 0.0827, 0.073, 0.0502, 0.0443, 0.0345, 0.0223, 0.0185], [0.0865, 0.0633, 0.0633, 0.0409, 0.0361, 0.0281, 0.0248, 0.0248], [0.1065, 0.094, 0.083, 0.0536, 0.0392, 0.0269, 0.0253, 0.0223], [0.4119, 0.0919, 0.0811, 0.0434, 0.0263, 0.0247, 0.0181, 0.016], [0.4715, 0.0929, 0.0819, 0.0638, 0.0439, 0.0283, 0.0111, 0.0098], [0.6697, 0.2174, 0.0202, 0.0148, 0.0066, 0.0033, 0.0027, 0.0026], [0.6461, 0.0874, 0.0183, 0.0126, 0.0118, 0.0092, 0.0087, 0.0049], [0.9089, 0.0311, 0.0061, 0.0045, 0.0033, 0.0021, 0.0019, 0.0015], [0.8979, 0.0225, 0.0088, 0.0042, 0.0034, 0.0025, 0.0017, 0.0017], [0.8867, 0.0112, 0.0105, 0.0082, 0.0068, 0.0023, 0.0022, 0.0022], [0.5429, 0.0538, 0.0446, 0.0254, 0.0136, 0.0128, 0.0099, 0.0093], [0.6848, 0.1528, 0.0134, 0.0125, 0.0092, 0.0049, 0.0046, 0.0041], [0.7307, 0.0989, 0.0221, 0.0134, 0.0118, 0.0034, 0.0032, 0.0032], [0.672, 0.1925, 0.0139, 0.0131, 0.0123, 0.0045, 0.0035, 0.0027], [0.8001, 0.139, 0.0061, 0.0057, 0.0048, 0.0039, 0.0013, 0.0012], [0.8981, 0.0507, 0.0145, 0.0128, 0.0069, 0.0042, 0.0032, 0.002], [0.6419, 0.2361, 0.0527, 0.0362, 0.0092, 0.0071, 0.0026, 0.0016], [0.7891, 0.1068, 0.0832, 0.0041, 0.002, 0.0013, 0.0007, 0.0006], [0.9532, 0.0419, 0.0021, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 549, "top": [[".", ",", " \u2013", "\u2013", ";", "\u00a0", "\u00a0\u00a0", ",."], [" \u2013", ".", "\u2013", "\u2013and", ",", " Very", " \u200b\u200b", " very"], [".", ",", "\u2013", " \u2013", "\u2013and", ".\u2013", ";", "\u2026.."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "-------------</", " Shemale", " ;;^", "----------</", " Blowjob", " Strec"], [".@", "\u65b0\u52a0\u5761", "\ub370\ubbf8", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "reh", "\u52a0\u62ff\u5927\u7684", " \"@", "\u82db"], [",", ".", "<|quad_end|>", "\u00a0\u00a0", "\u2013and", "!.", "\u82db", "\u2013"], [".\u2019", "\u00a0", " \u2019", ".\"", "edly", " tweaked", "\u00a0\u00a0", "."], ["<|quad_end|>", "!.", "\u5170\u5fb7", " tweak", "\u4e8b\u534a\u529f\u500d", " tweaked", "edly", "elaide"], [".", "\u00a0", ",", "!.", "!", "\u00a0\u00a0", ",.", ";"], [",", "\u2013", "\u00a0", ".", "\u2013and", ";", "<|quad_end|>", "\u00a0\u00a0"], ["\u00a0", ",", "\u2013", ".", ";", "\u00a0\u00a0", " \u00ad", " \u2013"], [" priorit", " showcase", " tweaked", " potentially", " tweaks", " savvy", " arguably", " tweak"], [" tweaked", " tweaks", " showcase", " tweak", " priorit", " seamlessly", " impactful", " savvy"], [" tweaked", " tweaks", " tweak", " priorit", " showcase", " seamlessly", " tweaking", " impactful"], [" tweaked", " aggressively", " arguably", " revamped", " priorit", " strategically", " tweaks", " savvy"], [" tweaked", " showcasing", " tweaks", " showcase", " savvy", " tweaking", " strategically", " arguably"], ["\u00a0", " tweaked", "\u2013", " priorit", " tweaks", " savvy", " strategically", " potentially"], [" tweaks", " tweaked", " seamlessly", " aggressively", " tweaking", " sprawling", " strategically", " savvy"], [" aggressively", " seamlessly", " strategically", " savvy", " arguably", " meticulously", " sprawling", " tweaks"], [" myriad", "<|endoftext|>", " aggressively", " swiftly", " sprawling", " arguably", " strategically", " seamlessly"], ["<|endoftext|>", " \n\n", "  \n\n", "<|file_sep|>", " swiftly", " myriad", " \r\n\r\n", " aggressively"], [" aggressively", "\u5171\u540c\u6253\u9020", " strategically", " sprawling", " seamlessly", " myriad", " creatively", " swiftly"], [" myriad", " aggressively", " swiftly", " sprawling", " ``", "\u5171\u540c\u6253\u9020", " strategically", " arguably"], [" myriad", " ``", " swiftly", " aggressively", " sprawling", " largely", " arguably", " strategically"], [" \r\n\r\n", " \n\n", "  \n\n", "\r\n\r\n", "   \n\n", "  \r\n\r\n", " myriad", "\n\n"], [" \r\n\r\n", " ;;^", " myriad", "\r\n\n", "\r\n\r\n", " sprawling", " **", "\u5171\u540c\u6253\u9020"], ["\r\n\r\n", " \r\n\r\n", " myriad", " sprawling", " \n\n", " arguably", " T\u00e9cn", " ;;^"], [" \n\n", "\n\n", "\r\n\r\n", "  \n\n", " \r\n\r\n", " myriad", " arguably", " heavily"], [" \n\n", " \r\n\r\n", "  \n\n", " **", "\r\n\r\n", "   \n\n", " systems", " myriad"], [" systems", " **", " complex", " workflows", " \n\n", " infrastructure", " routines", " myriad"], [" systems", " complex", " **", " routines", " infrastructure", " heavily", " operations", " programs"], [" complex", " systems", " work", " heavily", " staff", " internal", " critical", " operations"], [" complex", " systems", " heavily", " meticulously", " critical", " internal", " operations", " key"], [" systems", " workflows", " complex", " meticulously", " technical", " operations", " software", " internal"], [" systems", " workflows", " meticulously", " operations", " routines", " complex", " algorithms", " logistics"], [" technical", " workflows", " complex", " algorithms", " communications", " operations", " logistics", " internal"], [" workflows", " rapid", " algorithms", " internal", " technical", " tactical", " rapidly", " routines"], [" workflows", " rapid", " algorithms", " tactical", " technical", " internal", " rapidly", " logistics"], [" workflows", " algorithms", " rapid", " tactical", " core", " technical", " internal", " processing"], [" workflows", " processing", " algorithms", " communications", " tactical", " gameplay", " internal", " gaming"], [" processing", " workflows", " algorithms", " gameplay", " software", " data", " gaming", " communications"], [" processing", " workflows", " communications", " data", " gameplay", " processes", " algorithms", " gaming"], [" processing", " gameplay", " workflows", " data", " communications", " algorithms", " telemetry", " routines"], [" processing", " workflows", " telemetry", " routines", " gameplay", " processes", " data", " algorithms"], [" processing", " workflows", " routines", " algorithms", " processes", " telemetry", " gameplay", " workflow"], [" processing", " workflows", " routines", " pipelines", " algorithms", " animations", " workflow", " gameplay"], [" workflows", " processing", " routines", " workflow", " interfaces", " algorithms", " pipelines", " processes"], [" workflows", " processing", " routines", " interfaces", " workflow", " daily", " animations", " pipelines"], [" workflows", " processing", " interfaces", " animations", " routines", " inputs", " gameplay", " pipelines"], [" workflows", "\u6570\u636e\u5904\u7406", " interfaces", " gameplay", " processing", " routines", " animations", " immediate"], ["\u6570\u636e\u5904\u7406", " workflows", "\u5173\u952e\u73af\u8282", " preprocessing", " interfaces", "ldata", " gameplay", " routines"], ["\u6570\u636e\u5904\u7406", " preprocessing", " processing", " animations", "\u6570\u636e\u91c7\u96c6", " telemetry", "\u5173\u952e\u73af\u8282", " interfaces"], ["\u6570\u636e\u5904\u7406", " processing", " preprocessing", "-processing", "\u5173\u952e\u73af\u8282", " handling", " Processing", " gameplay"], ["\u6570\u636e\u5904\u7406", " processing", " gameplay", " pipeline", " preprocessing", "\u9ad8\u9891", " shader", " serialization"], [" loop", "-loop", "\u9ad8\u9891", "\u6570\u636e\u5904\u7406", " shader", " pipeline", " gameplay", " serialization"], ["\u9ad8\u9891", "\u6570\u636e\u5904\u7406", " core", " shader", "-loop", " loop", " middleware", " gameplay"], ["\u6570\u636e\u5904\u7406", "\u9ad8\u9891", " shader", " core", " renderer", " critical", " UI", "\u6838\u5fc3"], ["\u9ad8\u9891", " critical", " shader", " physics", " renderer", " animation", " animations", " core"], [" physics", " critical", "\u9ad8\u9891", " shader", "critical", " animation", " gameplay", " Physics"], [" async", "async", " Async", " asynchronous", "(async", " physics", " critical", ".async"], [" async", " Async", "async", " physics", " asynchronous", " critical", "(async", " plugin"], [" async", " plugin", "async", " critical", " Async", " asynchronous", " physics", "(async"], [" async", " critical", " physics", " high", " plugin", " core", " asynchronous", "async"]], "p": [[0.799, 0.1783, 0.0129, 0.0061, 0.0014, 0.0008, 0.0003, 0.0002], [0.0547, 0.0275, 0.0243, 0.0101, 0.0079, 0.0037, 0.0037, 0.0033], [0.3549, 0.3132, 0.2764, 0.0177, 0.0089, 0.0061, 0.0031, 0.0022], [0.0173, 0.0119, 0.0087, 0.006, 0.006, 0.0056, 0.0036, 0.0018], [0.0028, 0.0027, 0.002, 0.0017, 0.0015, 0.0011, 0.0011, 0.001], [0.016, 0.0063, 0.0038, 0.0023, 0.0022, 0.0018, 0.0014, 0.0014], [0.0238, 0.0082, 0.0072, 0.0056, 0.005, 0.0047, 0.0044, 0.0039], [0.0277, 0.0035, 0.002, 0.0017, 0.0015, 0.0015, 0.0014, 0.0011], [0.466, 0.3203, 0.081, 0.0181, 0.0038, 0.0031, 0.0029, 0.0028], [0.3129, 0.0291, 0.0213, 0.0048, 0.0048, 0.0025, 0.0019, 0.0014], [0.5388, 0.2545, 0.1362, 0.0367, 0.0041, 0.0021, 0.0016, 0.0015], [0.0153, 0.0127, 0.0119, 0.0077, 0.0064, 0.0056, 0.0053, 0.005], [0.0268, 0.0237, 0.0222, 0.0163, 0.0099, 0.0082, 0.0072, 0.0072], [0.0433, 0.0337, 0.0159, 0.0159, 0.0124, 0.0085, 0.008, 0.0071], [0.0465, 0.022, 0.0125, 0.0118, 0.0118, 0.0118, 0.0098, 0.0081], [0.0354, 0.0244, 0.0215, 0.0167, 0.0139, 0.0122, 0.0108, 0.0108], [0.0888, 0.0198, 0.0136, 0.0128, 0.0128, 0.0094, 0.0088, 0.0078], [0.0242, 0.02, 0.0147, 0.0089, 0.0089, 0.0089, 0.0084, 0.0078], [0.0369, 0.0238, 0.021, 0.0136, 0.0128, 0.0113, 0.0106, 0.0093], [0.0246, 0.0204, 0.0169, 0.0116, 0.0102, 0.0102, 0.0096, 0.008], [0.9715, 0.0012, 0.0007, 0.0006, 0.0003, 0.0003, 0.0002, 0.0001], [0.0047, 0.0039, 0.0025, 0.0022, 0.002, 0.002, 0.0017, 0.0015], [0.0034, 0.003, 0.0024, 0.0022, 0.0022, 0.0022, 0.0016, 0.0013], [0.0066, 0.0048, 0.0033, 0.0029, 0.0026, 0.0023, 0.002, 0.0017], [0.0796, 0.066, 0.04, 0.04, 0.0167, 0.0101, 0.0065, 0.0048], [0.0038, 0.0024, 0.0023, 0.0022, 0.0018, 0.0017, 0.0015, 0.0014], [0.0049, 0.0043, 0.0041, 0.0034, 0.0028, 0.0017, 0.0016, 0.0016], [0.1899, 0.0699, 0.0241, 0.0227, 0.0188, 0.0083, 0.0057, 0.0054], [0.0767, 0.032, 0.0282, 0.0249, 0.0125, 0.011, 0.0104, 0.0092], [0.0275, 0.0275, 0.0177, 0.0156, 0.013, 0.0122, 0.0095, 0.0079], [0.0391, 0.0345, 0.0209, 0.0093, 0.0082, 0.0077, 0.0077, 0.0072], [0.0313, 0.0244, 0.0202, 0.0139, 0.0123, 0.0123, 0.0108, 0.0096], [0.0219, 0.015, 0.0141, 0.0125, 0.0097, 0.0097, 0.0071, 0.0071], [0.0273, 0.0187, 0.0176, 0.0165, 0.0107, 0.01, 0.01, 0.0088], [0.0247, 0.0205, 0.0205, 0.0181, 0.0181, 0.0159, 0.015, 0.0141], [0.0378, 0.0334, 0.026, 0.0216, 0.0216, 0.0168, 0.0158, 0.0148], [0.0615, 0.0329, 0.0309, 0.0256, 0.0212, 0.0146, 0.0146, 0.0129], [0.0673, 0.0462, 0.0263, 0.0205, 0.0193, 0.017, 0.016, 0.0124], [0.0704, 0.0377, 0.0293, 0.0243, 0.0215, 0.0202, 0.0202, 0.0167], [0.0586, 0.0402, 0.0378, 0.0355, 0.0277, 0.0277, 0.0244, 0.0202], [0.1325, 0.0709, 0.043, 0.0404, 0.0335, 0.0261, 0.0261, 0.0216], [0.4146, 0.0561, 0.0234, 0.0234, 0.0206, 0.0194, 0.0171, 0.0142], [0.3506, 0.0419, 0.0326, 0.0239, 0.0211, 0.0211, 0.0175, 0.0175], [0.3187, 0.0459, 0.0246, 0.0246, 0.0217, 0.0204, 0.0169, 0.0132], [0.2612, 0.0748, 0.0293, 0.0214, 0.0189, 0.0157, 0.0157, 0.0147], [0.1214, 0.1071, 0.037, 0.0271, 0.0239, 0.0198, 0.0175, 0.0164], [0.2479, 0.0756, 0.052, 0.0315, 0.0217, 0.0203, 0.0169, 0.014], [0.1322, 0.0967, 0.0551, 0.0295, 0.0245, 0.0203, 0.0203, 0.0191], [0.0899, 0.0512, 0.0375, 0.0375, 0.0292, 0.0227, 0.0227, 0.0201], [0.068, 0.0387, 0.0235, 0.0235, 0.0195, 0.0143, 0.0126, 0.0126], [0.063, 0.0298, 0.0298, 0.0109, 0.0091, 0.0085, 0.008, 0.008], [0.2294, 0.0424, 0.0352, 0.0177, 0.0107, 0.0107, 0.0095, 0.0095], [0.2791, 0.1319, 0.0485, 0.026, 0.0229, 0.0157, 0.0131, 0.0123], [0.1437, 0.0438, 0.0387, 0.0363, 0.0301, 0.0301, 0.0235, 0.0207], [0.1556, 0.1556, 0.0735, 0.0649, 0.0505, 0.0211, 0.0211, 0.0198], [0.2388, 0.186, 0.0533, 0.0366, 0.0285, 0.0173, 0.0163, 0.0163], [0.1341, 0.1341, 0.1183, 0.0813, 0.0633, 0.0633, 0.0103, 0.0103], [0.2229, 0.1053, 0.0929, 0.082, 0.0639, 0.0639, 0.0387, 0.0342], [0.3867, 0.3413, 0.0672, 0.036, 0.0193, 0.015, 0.0071, 0.0063], [0.9936, 0.0028, 0.0022, 0.0005, 0.0002, 0.0001, 0.0001, 0.0001], [0.9906, 0.0028, 0.0019, 0.0009, 0.0009, 0.0005, 0.0004, 0.0003], [0.9869, 0.0018, 0.0016, 0.0015, 0.0014, 0.0013, 0.0012, 0.0003], [0.9518, 0.0145, 0.0057, 0.0041, 0.0039, 0.0018, 0.0011, 0.001]], "ranks": {}}, {"pos": 550, "top": [["s", ".", "a", ",", " @", "@", " \u2022", "-"], ["s", "\u0627\u062a", " @", " *@", " (@", " [@", " \"@", " @("], ["s", ",", ".", ",.", "\u2013", "-,", "[", ":."], ["s", "\u52a0\u62ff\u5927", "\u0627\u062a", "enticate", "s\u00f6k", "schrift", "---</", " :::"], ["s", " @", " @_", " (@", " *@", " \"@", "\u0627\u062a", " @("], ["s", " @", " @_", " (@", "\u0627\u062a", ":@", " @(", " \"@"], ["s", " @", "\u0627\u062a", " (@", " @_", " *@", "sor", " @("], ["s", " @", " *@", " @_", " (@", "\u0627\u062a", " :::", ":@"], ["s", " @", " *@", " `.", " (@", " @_", ",@", "\u0627\u062a"], ["s", " @", " @_", " :::", ":@", "\u0627\u062a", " *@", " (@"], ["s", " @", " @_", ".@", " (@", "@", " @(", "\u0627\u062a"], ["s", " @", " @_", " meds", " messaging", " :::", "\u0627\u062a", " combo"], ["s", " meds", " messaging", " combo", " startup", " webinar", " tech", "\u0627\u062a"], ["s", " messaging", " timeline", " tech", " meds", " combo", " startups", " startup"], ["s", " ops", " tech", " combo", " messaging", " apps", " visuals", " info"], ["s", " tech", " folks", " messaging", " ops", " combo", " thru", " info"], ["s", " tech", " ops", " messaging", " combo", " info", " meds", " folks"], ["s", " tech", " ops", " meds", " messaging", "-tech", " combo", " apps"], ["s", " tech", " ops", " meds", " messaging", " combo", "-tech", " apps"], ["s", " messaging", " tech", " ops", " meds", "-await", " apps", "-heavy"], ["s", " @", "@", " tech", " messaging", "-&", " &,", "-heavy"], [" messaging", "linky", "-await", " timelines", " workflows", " meds", " apps", "s"], [" messaging", "s", "-await", " events", " apps", " timelines", " ops", " tech"], ["s", " events", " messaging", " ops", " event", " tech", " apps", " delivery"], ["s", "   \n\n", " events", " messaging", " \n\n", " &#", " tech", "&amp"], [" workflows", " messaging", " timelines", " tech", " telecom", " events", " async", " protocols"], [" workflows", " messaging", " events", " tech", " telecom", " protocols", " timelines", " async"], [" events", " tech", " @", " delivery", " messaging", " --", " \n\n", " tasks"], [" events", " workflows", " tech", " protocols", " messaging", " delivery", " tasks", " telecom"], [" workflows", " protocols", " workflow", " async", " tech", " events", " timelines", " messaging"], [" workflows", " events", " protocols", " tech", " workflow", " tasks", " delivery", " timelines"], [" events", " workflows", " tech", " ...", " protocols", " tasks", " delivery", " systems"], [" events", " tech", " workflows", " protocols", " tasks", " delivery", " workflow", " processes"], [" workflows", " protocols", " events", " tech", " workflow", " tasks", " async", " logistics"], [" workflows", " tech", " protocols", " events", " async", " logistics", " workflow", " meds"], [" workflows", " tech", " async", " protocols", " events", " logistics", " workflow", " meds"], [" workflows", " async", " protocols", " events", " tech", " telemetry", " asynchronous", " workflow"], [" workflows", " async", " protocols", " events", " Async", " workflow", " asynchronous", " logistics"], [" workflows", " async", " protocols", " workflow", " asynchronous", " logistics", " tasks", " Async"], [" async", " workflows", " asynchronous", " Async", " protocols", " workflow", " processing", " delivery"], [" async", " asynchronous", " workflows", " Async", " processing", " workflow", " protocols", " communications"], [" asynchronous", " workflows", " async", " processing", " communications", " workflow", " Async", " protocols"], [" asynchronous", " workflows", " processing", " async", " communications", " protocols", " workflow", " delivery"], [" workflows", " processing", " asynchronous", " streams", " events", " communications", " async", " protocols"], [" workflows", " processing", " streams", " asynchronous", " protocols", " pipelines", " workflow", " pipeline"], [" workflows", " processing", " streams", " pipelines", " pipeline", " asynchronous", " protocols", " workflow"], [" workflows", " streams", " pipelines", " processing", " workflow", " protocols", " asynchronous", " tasks"], [" workflows", " streams", " pipelines", " workflow", " processing", " pipeline", " protocols", " tasks"], [" workflows", " pipelines", " streams", " processing", " interfaces", " inputs", " pipeline", " protocols"], [" workflows", " streams", " interfaces", " processing", " pipelines", " workflow", " pipeline", " buffers"], [" workflows", " interfaces", " processing", " callbacks", " workflow", " pipelines", " payloads", " asynchronous"], [" processing", " workflows", "\u6570\u636e\u5904\u7406", " interfaces", " callbacks", " pipeline", " pipelines", "-processing"], [" processing", "\u6570\u636e\u5904\u7406", " callbacks", " handlers", "-processing", " handling", " pipeline", " workflows"], [" callbacks", " processing", "\u6570\u636e\u5904\u7406", " pipeline", " handlers", " callback", " pipelines", " handler"], [" callbacks", " processing", " pipeline", "\u6570\u636e\u5904\u7406", " handler", " handlers", " async", " callback"], [" callbacks", "\u6570\u636e\u5904\u7406", " callback", " handlers", " processing", " pipeline", " data", " handler"], [" callbacks", "\u6570\u636e\u5904\u7406", " callback", " pipeline", " handlers", " processing", " handler", " data"], [" callbacks", " data", "\u6570\u636e\u5904\u7406", " pipeline", " callback", " handlers", "-data", " processing"], [" pipeline", " data", " callbacks", "\u6570\u636e\u5904\u7406", " pipelines", " callback", " handlers", " dispatcher"], [" pipeline", " data", " callbacks", " handlers", " callback", " pipelines", "\u6570\u636e\u5904\u7406", " dispatcher"], [" pipeline", " data", " callbacks", " pipelines", " API", " callback", " handlers", " parsers"], [" data", " pipeline", " callbacks", " handlers", " callback", " API", " pipelines", " parsers"], [" data", " pipeline", " callbacks", " callback", " processing", " message", " handlers", " API"]], "p": [[0.9888, 0.0012, 0.0008, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003], [0.999, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9868, 0.0052, 0.0036, 0.0007, 0.0003, 0.0002, 0.0002, 0.0001], [0.0418, 0.027, 0.0224, 0.0127, 0.0073, 0.0068, 0.0068, 0.0064], [0.983, 0.0038, 0.0022, 0.0018, 0.0012, 0.0012, 0.0007, 0.0003], [0.9665, 0.0042, 0.0029, 0.0013, 0.0012, 0.0005, 0.0005, 0.0005], [0.9966, 0.001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.9404, 0.006, 0.0038, 0.0023, 0.0012, 0.0009, 0.0008, 0.0006], [0.9438, 0.0032, 0.0027, 0.0014, 0.0013, 0.0008, 0.0007, 0.0006], [0.939, 0.0022, 0.0013, 0.0006, 0.0006, 0.0005, 0.0005, 0.0004], [0.9629, 0.0188, 0.0014, 0.0008, 0.0008, 0.0004, 0.0003, 0.0003], [0.4334, 0.0139, 0.0066, 0.0048, 0.0033, 0.0031, 0.0029, 0.0029], [0.5908, 0.0029, 0.0024, 0.002, 0.0019, 0.0018, 0.0017, 0.0015], [0.5958, 0.0055, 0.0029, 0.0028, 0.0028, 0.0028, 0.0024, 0.0024], [0.9171, 0.0021, 0.0021, 0.0016, 0.0009, 0.0006, 0.0004, 0.0004], [0.8689, 0.0091, 0.0036, 0.0028, 0.0026, 0.0023, 0.0015, 0.0012], [0.9687, 0.0019, 0.0007, 0.0004, 0.0003, 0.0003, 0.0003, 0.0003], [0.7434, 0.0128, 0.0078, 0.005, 0.0039, 0.0032, 0.0032, 0.0022], [0.3362, 0.0157, 0.0157, 0.0139, 0.0108, 0.0074, 0.0062, 0.0051], [0.2839, 0.0117, 0.0097, 0.0076, 0.0063, 0.0055, 0.0043, 0.0036], [0.402, 0.0061, 0.0045, 0.0042, 0.0039, 0.0037, 0.0033, 0.0025], [0.0115, 0.0061, 0.0058, 0.0054, 0.0048, 0.0042, 0.004, 0.0033], [0.0127, 0.0127, 0.0064, 0.0057, 0.0057, 0.0057, 0.005, 0.0039], [0.0616, 0.0188, 0.0065, 0.0051, 0.0045, 0.0045, 0.0042, 0.0035], [0.0726, 0.0183, 0.0118, 0.0105, 0.0087, 0.0081, 0.0076, 0.0063], [0.0241, 0.0213, 0.0137, 0.0137, 0.0121, 0.01, 0.0094, 0.0089], [0.0297, 0.0279, 0.0262, 0.0192, 0.0192, 0.0124, 0.0103, 0.0097], [0.0487, 0.0314, 0.023, 0.0191, 0.0123, 0.0123, 0.0123, 0.0116], [0.0642, 0.05, 0.0323, 0.0268, 0.0236, 0.0162, 0.0152, 0.0143], [0.1554, 0.0287, 0.027, 0.0164, 0.0154, 0.0145, 0.012, 0.0113], [0.0873, 0.0724, 0.0388, 0.0207, 0.0162, 0.0152, 0.0104, 0.0092], [0.0597, 0.0234, 0.0234, 0.022, 0.022, 0.0118, 0.0104, 0.0097], [0.0598, 0.0495, 0.0411, 0.0282, 0.0111, 0.0098, 0.0092, 0.0092], [0.1226, 0.0451, 0.033, 0.031, 0.02, 0.0121, 0.0121, 0.0107], [0.0627, 0.0488, 0.0431, 0.0278, 0.0203, 0.014, 0.0109, 0.009], [0.0699, 0.0544, 0.0398, 0.0352, 0.033, 0.0138, 0.0107, 0.0095], [0.1271, 0.053, 0.0498, 0.0387, 0.0235, 0.0162, 0.0143, 0.0143], [0.1373, 0.0833, 0.0474, 0.0254, 0.0211, 0.0198, 0.0186, 0.0145], [0.2053, 0.0804, 0.0488, 0.0315, 0.0261, 0.0179, 0.0179, 0.0179], [0.1776, 0.1299, 0.1077, 0.0372, 0.0328, 0.0256, 0.0176, 0.0129], [0.1821, 0.1821, 0.1419, 0.0337, 0.0297, 0.0247, 0.018, 0.0159], [0.2072, 0.2072, 0.0762, 0.0462, 0.0383, 0.0263, 0.0247, 0.0205], [0.2052, 0.1811, 0.0755, 0.0458, 0.0315, 0.0261, 0.0191, 0.0168], [0.162, 0.1113, 0.0982, 0.03, 0.0281, 0.0248, 0.0233, 0.0233], [0.2583, 0.074, 0.0653, 0.0509, 0.0309, 0.029, 0.024, 0.024], [0.1909, 0.0796, 0.0702, 0.04, 0.0275, 0.0258, 0.0228, 0.0189], [0.3413, 0.0523, 0.0338, 0.0317, 0.0263, 0.0232, 0.0218, 0.0181], [0.2646, 0.0669, 0.046, 0.0262, 0.0246, 0.0231, 0.0217, 0.0192], [0.2301, 0.0747, 0.0659, 0.0453, 0.0311, 0.0311, 0.0275, 0.0201], [0.2788, 0.0549, 0.0484, 0.0427, 0.0377, 0.0259, 0.019, 0.0167], [0.3869, 0.0524, 0.036, 0.0318, 0.028, 0.0181, 0.016, 0.015], [0.2462, 0.1318, 0.1026, 0.0428, 0.0378, 0.0259, 0.0229, 0.0178], [0.4174, 0.2234, 0.1055, 0.044, 0.0267, 0.0267, 0.0208, 0.0183], [0.3316, 0.2011, 0.0838, 0.0576, 0.0509, 0.0349, 0.0212, 0.0212], [0.2992, 0.0971, 0.0756, 0.0668, 0.0668, 0.0589, 0.0405, 0.0405], [0.5649, 0.1428, 0.0595, 0.0361, 0.0319, 0.0248, 0.0193, 0.0193], [0.5733, 0.0996, 0.0685, 0.0533, 0.0471, 0.0323, 0.0173, 0.0173], [0.4346, 0.2053, 0.1599, 0.0519, 0.0404, 0.0169, 0.0116, 0.0116], [0.5727, 0.1278, 0.1128, 0.0995, 0.0222, 0.0153, 0.0082, 0.0064], [0.4928, 0.2054, 0.0856, 0.0357, 0.0315, 0.0245, 0.0191, 0.0169], [0.4432, 0.3046, 0.06, 0.0364, 0.0221, 0.0172, 0.0172, 0.0152], [0.5384, 0.1361, 0.0568, 0.0344, 0.0323, 0.0252, 0.0163, 0.0143], [0.8588, 0.0333, 0.0108, 0.0084, 0.0074, 0.0058, 0.0051, 0.0045]], "ranks": {}}, {"pos": 551, "top": [[".", ",", ";", "\u00a0", " \u2013", " \u200b\u200b", ":", "\u2013"], [".", ",", " \u200b\u200b", ";", "\u2013", " \u2013", "\u200b", " "], [",", ".", "\u2013", "\u2026", ";", "\u2026.", "\u2026..", " \u200b\u200b"], [" Shemale", " milfs", " pornstar", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\ufffd\ufffd", " Logistik", " \u041a\u0440\u0430\u0441\u0438", "\u8ba4\u8ba4\u771f"], [" \u200b\u200b", " Data", " system", " data", " information", "@d", " ND", "scape"], [" \u200b\u200b", " Data", ".Data", "siz", ".data", " Vodafone", "=data", " data"], ["s", "ted", ".", "\u00c2", "scape", ";", "ed", " data"], ["scape", " data", ".Data", "s", ".data", "-data", " Data", "\u00c2"], [".", ";", " \u200b\u200b", ",", "\u00a0", "\u00c2", "scape", ":"], [",", ";", "\u00c2", "scape", "-al", ".GetData", "\u5f00\u62d3\u521b\u65b0", "\u6c9f\u901a\u4ea4\u6d41"], [" data", "scape", " resources", ".", "\u00c2", ";", "-data", "-processing"], [" resources", "scape", "lessly", "\u4f53\u7cfb\u5efa\u8bbe", " infrastructure", "ernals", "istration", " data"], [" resources", " infrastructure", " data", "scape", "alink", " processing", "\u4f53\u7cfb\u5efa\u8bbe", "\u8bbe\u65bd\u5efa\u8bbe"], [" resources", " infrastructure", " data", " network", " processing", " messaging", " resource", " communications"], [" resources", " impact", " infrastructure", " collection", " communications", " resource", " link", " center"], [" resources", " center", " communications", " collection", " impact", " messaging", " gathering", " data"], [" resources", "s", " data", " center", " impact", " link", " collection", " source"], [" resources", " communications", " data", " messaging", " impact", " flow", " tech", " processing"], [" resources", " communications", " data", " messaging", " flow", " infrastructure", " impact", " network"], [" communications", " resources", " messaging", " distraction", " data", " impact", " networking", " resource"], [" communications", " myriad", " resources", " impact", "-focus", "\u6587\u5e7f", " messaging", " data"], [" communications", " resources", " data", " messaging", "\u8bbe\u65bd\u5efa\u8bbe", "\u4f53\u7cfb\u5efa\u8bbe", " streams", " network"], [" communications", " resources", " data", " impact", " channel", " flow", " resource", " processing"], [" communications", " data", " resources", " source", " channel", " stream", " gathering", " impact"], [" \n\n", " data", " \r\n\r\n", " communications", " resources", " &#", " source", " resource"], [" data", " communications", " resources", " processing", " infrastructure", " streams", " transmission", " messaging"], [" data", " communications", " processing", " streaming", " streams", " messaging", " resources", " supply"], [" data", " \n\n", " communications", " processing", " supply", " stream", " resources", " information"], [" data", " communications", " processing", " \n\n", " streams", " supply", " resources", " stream"], [" data", " processing", " communications", " streams", " workflows", " infrastructure", " supply", " transmission"], [" data", " processing", " communications", " systems", " supply", " events", " streams", " process"], [" data", " processing", " systems", " communications", " ...", " stream", " supply", " flow"], [" data", " processing", " complex", " events", " supply", " communications", " systems", " resources"], [" data", " communications", " processing", " events", " streams", " storage", " supply", " transmission"], [" data", " processing", " communications", " storage", " supply", " transmission", " information", " stream"], [" data", " processing", " Data", " communications", " info", " stream", " events", " streams"], [" data", " processing", " Data", " stream", " telemetry", " streams", " storage", " streaming"], [" data", " processing", " Data", " stream", " streams", " communications", " storage", " info"], [" data", " processing", " Data", " stream", " streams", " storage", " information", " flow"], [" data", " processing", " Data", " stream", " streams", " flow", " streaming", " storage"], [" data", " processing", " Data", " streams", " stream", " streaming", " flow", "data"], [" data", " processing", " streams", " stream", " Data", " communications", " pipeline", " streaming"], [" data", " processing", " streams", " stream", " transmissions", " storage", " transmission", " Data"], [" processing", " data", " streams", " stream", " Processing", " transmissions", " processed", " transmission"], [" processing", " data", " streams", " stream", " transmissions", " workflows", " pipeline", " pipelines"], [" processing", " streams", " data", " stream", " pipelines", " transmissions", " inputs", " workflows"], [" processing", " streams", " data", " workflows", " pipelines", " inputs", " transmissions", " stream"], [" processing", " streams", " data", " inputs", " pipelines", " stream", " workflows", " pipeline"], [" processing", " streams", " inputs", " data", "-processing", " pipelines", " pipeline", " feeds"], [" processing", "-processing", " streams", " workflows", " pipelines", " inputs", " interfaces", " pipeline"], [" processing", "-processing", " workflows", "\u6570\u636e\u5904\u7406", " inputs", " pipelines", "processing", "/data"], [" processing", "-processing", "processing", " Processing", " preprocessing", "Processing", " parsing", "\u6570\u636e\u5904\u7406"], [" processing", "-processing", "processing", " Processing", "Processing", " preprocessing", " parsing", "\u6570\u636e\u5904\u7406"], [" processing", "-processing", "processing", " Processing", " parsing", "Processing", " pipelines", " pipeline"], [" processing", "-processing", "processing", " Processing", " handling", " parsing", "Processing", " pipeline"], [" processing", "-processing", "processing", " Processing", " parsing", "Processing", " parsers", " pipeline"], [" processing", "-processing", " pipeline", " ingestion", " parsing", " Processing", "processing", " handling"], [" processing", " pipeline", " ingestion", "-processing", " parsing", " pipelines", " Processing", " parsers"], [" pipeline", " processing", " pipelines", " consumption", " ingestion", "-processing", " parsing", " parsers"], [" processing", " pipeline", " parsers", " consumption", " ingestion", " pipelines", " parsing", "-processing"], [" ingestion", " processing", " pipeline", " parsers", " pipelines", " processors", " ingest", " consumption"], [" ingestion", " processing", " consumers", " parsers", " processors", " pipeline", " consumption", " handlers"], [" processing", " ingestion", " consumers", " parsers", " processors", " handlers", " pipeline", " pipelines"]], "p": [[0.7913, 0.2001, 0.0042, 0.0012, 0.0006, 0.0004, 0.0003, 0.0003], [0.399, 0.2273, 0.1009, 0.054, 0.024, 0.024, 0.0113, 0.0035], [0.5398, 0.4204, 0.0127, 0.0087, 0.0077, 0.0047, 0.0016, 0.0013], [0.0022, 0.002, 0.0014, 0.0014, 0.0013, 0.0009, 0.0009, 0.0008], [0.0081, 0.0043, 0.0036, 0.0019, 0.0019, 0.0015, 0.0015, 0.0014], [0.0068, 0.0036, 0.0032, 0.0014, 0.0013, 0.0013, 0.0013, 0.0013], [0.1049, 0.0207, 0.0142, 0.0142, 0.0104, 0.0059, 0.0034, 0.0032], [0.007, 0.0066, 0.0058, 0.0043, 0.0035, 0.0033, 0.0031, 0.0024], [0.1026, 0.019, 0.0178, 0.0178, 0.009, 0.007, 0.0054, 0.0048], [0.0122, 0.0031, 0.0013, 0.0012, 0.0012, 0.0012, 0.0011, 0.001], [0.0057, 0.0057, 0.0051, 0.0048, 0.0035, 0.0024, 0.0024, 0.002], [0.0022, 0.002, 0.0014, 0.0013, 0.0013, 0.0012, 0.0011, 0.0011], [0.0021, 0.0017, 0.0016, 0.0014, 0.0012, 0.0011, 0.0011, 0.001], [0.0067, 0.0059, 0.0034, 0.0025, 0.0023, 0.0021, 0.0021, 0.0018], [0.0075, 0.0038, 0.0033, 0.0033, 0.0031, 0.0029, 0.0028, 0.0026], [0.0055, 0.004, 0.004, 0.0038, 0.0038, 0.0036, 0.003, 0.0028], [0.0116, 0.0075, 0.0058, 0.0051, 0.004, 0.0035, 0.0035, 0.0033], [0.0105, 0.0036, 0.0036, 0.0032, 0.003, 0.0027, 0.0023, 0.0023], [0.0075, 0.0048, 0.0043, 0.004, 0.0028, 0.0026, 0.0024, 0.0022], [0.0045, 0.0033, 0.0027, 0.0019, 0.0018, 0.0016, 0.0013, 0.0013], [0.0019, 0.0015, 0.0014, 0.0009, 0.0009, 0.0009, 0.0008, 0.0008], [0.0025, 0.0021, 0.0018, 0.0016, 0.0015, 0.0015, 0.001, 0.001], [0.0052, 0.0043, 0.0034, 0.0025, 0.0019, 0.0018, 0.0018, 0.0017], [0.0085, 0.0066, 0.0048, 0.0038, 0.0031, 0.0031, 0.0028, 0.0028], [0.0488, 0.014, 0.0109, 0.0109, 0.0066, 0.0045, 0.0033, 0.0031], [0.0677, 0.03, 0.0125, 0.0111, 0.0076, 0.0071, 0.0059, 0.0056], [0.0744, 0.0291, 0.0107, 0.0089, 0.0089, 0.0083, 0.0083, 0.0078], [0.0743, 0.0544, 0.0213, 0.0156, 0.0121, 0.0101, 0.0074, 0.0074], [0.3071, 0.0416, 0.0304, 0.0209, 0.0196, 0.0184, 0.0144, 0.0135], [0.2613, 0.0275, 0.0228, 0.0178, 0.0147, 0.0122, 0.0095, 0.0079], [0.333, 0.0291, 0.02, 0.0188, 0.0156, 0.0129, 0.0121, 0.0101], [0.1688, 0.0189, 0.0167, 0.0148, 0.0139, 0.013, 0.013, 0.0115], [0.2031, 0.0177, 0.0157, 0.0147, 0.0147, 0.0138, 0.0138, 0.0101], [0.2459, 0.0178, 0.0167, 0.0122, 0.0122, 0.0115, 0.0115, 0.0108], [0.4465, 0.0135, 0.0119, 0.0105, 0.0087, 0.0082, 0.0077, 0.0077], [0.5332, 0.0133, 0.0092, 0.0081, 0.0076, 0.0076, 0.0071, 0.0067], [0.6188, 0.024, 0.0128, 0.0113, 0.0094, 0.0094, 0.0073, 0.0069], [0.6339, 0.0405, 0.0231, 0.0096, 0.009, 0.0058, 0.0055, 0.0052], [0.8404, 0.069, 0.0113, 0.0032, 0.0028, 0.0018, 0.0017, 0.0013], [0.8337, 0.0684, 0.0127, 0.0053, 0.005, 0.0032, 0.0021, 0.0015], [0.872, 0.0632, 0.0124, 0.0036, 0.003, 0.0019, 0.0016, 0.0015], [0.7333, 0.1854, 0.0092, 0.0072, 0.0056, 0.0028, 0.0022, 0.0022], [0.4985, 0.3882, 0.0193, 0.0091, 0.0043, 0.0038, 0.0034, 0.003], [0.5419, 0.2901, 0.027, 0.0127, 0.0073, 0.006, 0.005, 0.0044], [0.5892, 0.149, 0.0704, 0.0178, 0.0084, 0.0074, 0.0061, 0.0061], [0.6058, 0.082, 0.082, 0.0161, 0.0126, 0.0111, 0.0086, 0.0076], [0.5114, 0.0784, 0.0784, 0.0327, 0.0175, 0.0154, 0.012, 0.012], [0.4602, 0.08, 0.0623, 0.0294, 0.0202, 0.0178, 0.0157, 0.0157], [0.6202, 0.0396, 0.0396, 0.024, 0.024, 0.024, 0.0129, 0.0114], [0.5366, 0.0726, 0.0566, 0.0389, 0.0208, 0.0184, 0.0143, 0.0111], [0.4772, 0.1367, 0.0392, 0.0305, 0.021, 0.021, 0.0185, 0.0163], [0.7077, 0.1579, 0.0513, 0.0147, 0.0089, 0.0079, 0.0069, 0.0054], [0.8101, 0.1408, 0.0216, 0.009, 0.0055, 0.0026, 0.0023, 0.0016], [0.7887, 0.121, 0.0238, 0.0127, 0.0099, 0.0088, 0.006, 0.0053], [0.8239, 0.1115, 0.0171, 0.0118, 0.0063, 0.0063, 0.0056, 0.003], [0.8108, 0.1097, 0.0168, 0.0131, 0.009, 0.0055, 0.0055, 0.0043], [0.8558, 0.0547, 0.0157, 0.0108, 0.0108, 0.0095, 0.0084, 0.0058], [0.7978, 0.045, 0.0397, 0.0397, 0.0188, 0.0089, 0.0089, 0.0054], [0.5171, 0.3136, 0.0899, 0.0257, 0.0227, 0.0107, 0.0031, 0.0024], [0.7956, 0.074, 0.024, 0.0212, 0.0212, 0.0187, 0.0146, 0.01], [0.3841, 0.1814, 0.1601, 0.0971, 0.0857, 0.0191, 0.0149, 0.0131], [0.3028, 0.2081, 0.1621, 0.0867, 0.0464, 0.041, 0.0282, 0.0282], [0.3733, 0.1373, 0.107, 0.0833, 0.0833, 0.0573, 0.0446, 0.0224]], "ranks": {}}, {"pos": 552, "top": [[" \u2013", "\u2013", ".", " ", "i", ",", " [\u2026]", "\u2026."], [" \u2013", "\u2013", "  \n\n", "\u2013\u2013", "  \n", "**\u2013", ".\u2013", " \u2013**"], [" \u2013", "\u2013", "\u2026", ".", ".\u2013", "\u2026.", "\u2026\u2026", "\u2026.."], [" \u041a\u0440\u0430\u0441\u0438", " **\u201e", " **\u201c", " Blowjob", " Strec", "euse", " cumshot", "eless"], ["ing", "  \n\n\n", " **\u201c", "  \n\n", " \u201c", " \u201c.", ".\u201c", " "], ["ing", " **\u201c", "  \n\n\n", " \u201c.", "  \n\n", " \n\n\n", "  ", " \u200b\u200b"], ["  \n\n", "  \n", "  \n\n\n", "ing", "\u2026\u2026", " ", " **\u201c", " \n\n\n"], ["  \n\n", "  \n\n\n", "ing", " **\u201c", " \n\n\n", "  \n", " \n  \n", " \n\n"], ["  \n\n", "  \n\n\n", " \n\n\n", " \n\n", ".\u2013", " \n  \n", ".\u201c", "ing"], ["\u2013", ".\u2013", "\u2013\u2013", " \u2013", "ing", "\ufffd", ",", " "], [" \u2013", ".\u2013", "\u2013", " ", "ing", "\u2013\u2013", "\ufffd", "."], [" **", " **\u201c", " **\u2013", " **\u201e", " **\"", "ing", " **[", "**\u2013"], [" **", " **\u201c", " **\u201e", " **\u2013", "ing", " **\"", " \u2013", "**\u2013"], [" \u2013", ".\u2013", " **", " evaluations", " **\u2013", "ing", " ", " **\u201c"], [" \u2013", " ", "  \n\n", " \u201c", "ing", "\u2013", " efforts", " activities"], [" \u2013", " ", "ing", " \u201c", " efforts", " operations", " evaluations", "  \n\n"], [" \u2013", " ", "\u2013", "ing", " \u201c", "e", "a", "\u00a0"], [" **\u2013", "**\u2013", " \u2013", " **", " **\u201c", "\u2013\u2013", " frameworks", " methodologies"], ["**\u2013", " **\u2013", " frameworks", " **", " workflows", " **\u201c", " vulnerabilities", " methodologies"], ["\u2013\u2013", "**\u2013", " **\u2013", " \u2013", " myriad", " **", " efforts", " increasingly"], ["  \n\n", " \n\n", "<|endoftext|>", " ", " \n\n\n", " \n  \n", " \u2013", " myriad"], [" **", " **\u2013", " frameworks", "**\u2013", " )**", " methodologies", " pipelines", " **\u201c"], [" **", " myriad", " **\u2013", " )**", " increasingly", " methodologies", " swiftly", " heavily"], [" **", " --", " increasingly", " myriad", " heavily", " largely", " through", " \n  \n"], [" \n\n", "  \n\n", " **", " \n  \n", " \r\n\r\n", " \n\n\n", " \r\n \r\n", "  \r\n\r\n"], [" **", " **\u201c", " **[", " workflows", " **\u2013", " )**", " **\"", " processes"], [" **", " workflows", " processes", " workflow", " **[", " **\u2013", " process", " pipeline"], [" \n\n", " **", "  \n\n", " \n  \n", " \r\n\r\n", " **[", " \n\n\n", " processes"], [" **", " \n\n", "  \n\n", " \n  \n", " **[", " \n\n\n", " processes", " workflows"], [" **", " \n  \n", " \n\n", "  \n\n", " **[", " workflows", " **\u2013", " \n\n\n"], [" **", " \n  \n", " \n\n", " ", "  \n\n", "  ", " \n", " processes"], [" ", " **", " \n  \n", " work", " .", "  ", " \u2013", " \n\n"], [" **", " ", " heavily", " complex", " \u2013", " \n  \n", " work", " increasingly"], [" **", " heavily", " \u2013", " ", " complex", " systems", " increasingly", " processes"], [" **", " heavily", " systems", " complex", " tools", " processes", " meticulously", " workflows"], [" **", " \u201c", " heavily", " **\u201c", " \u2013", " ", " **\"", " .**"], [" **", " **\u201c", " \u201c", " **\"", " heavily", " .**", " meticulously", " workflows"], [" **", " **\u201c", " \u201c", " workflows", " algorithms", " **\"", " .**", " \"**"], [" **", " workflows", " **\u201c", " algorithms", " \u201c", " meticulously", " .**", " heavily"], [" **", " algorithms", " workflows", " **\u201c", " \u201c", " pipelines", " processes", " .**"], [" workflows", " algorithms", " processes", " **", " algorithm", " pipelines", " routines", " workflow"], [" workflows", " algorithms", " processes", " pipelines", " routines", " workflow", " systems", " pipeline"], [" workflows", " algorithms", " pipelines", " processes", " systems", " routines", " pipeline", " processing"], [" workflows", " pipelines", " processes", " algorithms", " systems", " routines", " pipeline", " modules"], [" workflows", " pipelines", " algorithms", " processes", " routines", " systems", " pipeline", " modules"], [" pipelines", " workflows", " algorithms", " routines", " processes", " pipeline", " modules", " systems"], [" workflows", " pipelines", " **", " routines", " algorithms", " processes", " pipeline", " loops"], [" pipelines", " workflows", " routines", " processes", " **", " algorithms", " pipeline", " entirely"], [" **", " pipelines", " routines", " workflows", " **\"", " processes", " algorithms", " entirely"], [" workflows", " routines", " pipelines", " entirely", " into", " algorithms", " **", " circuits"], [" pipelines", " workflows", " routines", " entirely", " loops", " pipeline", " algorithms", " into"], [" pipelines", " entirely", " workflows", " loops", " routines", " pipeline", " algorithms", " into"], [" pipelines", " pipeline", " entirely", " loops", " workflows", " algorithms", " into", " routines"], [" pipelines", " pipeline", " into", " loops", " algorithms", " entirely", " interfaces", " to"], [" loops", " loop", " pipeline", " pipelines", " interfaces", " routines", " algorithms", " threads"], [" pipeline", " pipelines", " loops", " loop", "Pipeline", " interfaces", " threads", " to"], [" pipeline", " pipelines", " loops", " loop", "Pipeline", " Pipeline", "pipeline", " threads"], [" pipeline", " pipelines", " loops", " loop", "Pipeline", " Pipeline", "pipeline", " logic"], [" pipeline", " pipelines", "Pipeline", " Pipeline", "pipeline", " loops", "_pipeline", " loop"], [" pipeline", " pipelines", "Pipeline", " to", " Pipeline", "pipeline", "_pipeline", " loops"], [" pipeline", " pipelines", " to", "Pipeline", " Pipeline", "pipeline", " pipes", " loops"], [" pipeline", " pipelines", " to", "Pipeline", " paths", " loops", " Pipeline", " pipes"], [" pipeline", " pipelines", " to", " paths", " handlers", " streams", "Pipeline", " cores"]], "p": [[0.8979, 0.0737, 0.0186, 0.0024, 0.001, 0.0008, 0.0008, 0.0006], [0.7994, 0.0544, 0.0241, 0.02, 0.0083, 0.0037, 0.0035, 0.0033], [0.5181, 0.4035, 0.0228, 0.0177, 0.0138, 0.0084, 0.0058, 0.0035], [0.0112, 0.0093, 0.0093, 0.0087, 0.0041, 0.0032, 0.0032, 0.0028], [0.3819, 0.0707, 0.0314, 0.026, 0.0102, 0.009, 0.0084, 0.0079], [0.2327, 0.0804, 0.0667, 0.0169, 0.0158, 0.0158, 0.0116, 0.0085], [0.413, 0.1044, 0.0922, 0.0866, 0.0559, 0.0233, 0.017, 0.016], [0.3193, 0.2336, 0.0669, 0.0432, 0.0406, 0.0217, 0.0192, 0.0159], [0.4422, 0.1627, 0.1118, 0.0987, 0.0161, 0.0151, 0.0125, 0.0125], [0.3929, 0.2383, 0.0877, 0.0365, 0.0365, 0.0285, 0.0236, 0.0184], [0.2537, 0.1744, 0.1276, 0.1058, 0.0414, 0.0343, 0.0285, 0.0236], [0.4028, 0.1577, 0.0399, 0.0274, 0.0227, 0.0079, 0.0069, 0.0061], [0.2298, 0.0399, 0.0274, 0.0242, 0.013, 0.0069, 0.0042, 0.0042], [0.0323, 0.0105, 0.0098, 0.0082, 0.0082, 0.0077, 0.0072, 0.0068], [0.1725, 0.143, 0.03, 0.0142, 0.0071, 0.0067, 0.0059, 0.0052], [0.1137, 0.0648, 0.0174, 0.0154, 0.0099, 0.0077, 0.0064, 0.0057], [0.3051, 0.1633, 0.0267, 0.0143, 0.0118, 0.0092, 0.0087, 0.0059], [0.0533, 0.0366, 0.0344, 0.0184, 0.0093, 0.0087, 0.0068, 0.006], [0.0151, 0.0125, 0.0091, 0.0086, 0.0076, 0.0071, 0.0049, 0.0049], [0.0275, 0.0189, 0.0189, 0.0147, 0.0115, 0.0058, 0.0048, 0.0045], [0.1726, 0.1187, 0.0635, 0.0495, 0.03, 0.0234, 0.0234, 0.0151], [0.0228, 0.0095, 0.0045, 0.0042, 0.0042, 0.0037, 0.0031, 0.0029], [0.0487, 0.0085, 0.0058, 0.0058, 0.0055, 0.0048, 0.0043, 0.004], [0.0383, 0.011, 0.0103, 0.0103, 0.0091, 0.0091, 0.0091, 0.0075], [0.2079, 0.1723, 0.1521, 0.0384, 0.0361, 0.0193, 0.0193, 0.0171], [0.6703, 0.0139, 0.0139, 0.0123, 0.0102, 0.007, 0.0066, 0.0062], [0.5902, 0.0313, 0.0157, 0.0084, 0.0084, 0.007, 0.0054, 0.0051], [0.604, 0.1731, 0.0721, 0.0092, 0.0081, 0.0076, 0.0076, 0.0025], [0.4655, 0.2491, 0.076, 0.0359, 0.0205, 0.0071, 0.0055, 0.0052], [0.3896, 0.1729, 0.03, 0.0265, 0.0249, 0.0151, 0.0125, 0.0118], [0.2071, 0.1613, 0.1256, 0.0978, 0.0408, 0.0298, 0.0141, 0.0103], [0.2033, 0.1159, 0.0376, 0.0228, 0.0201, 0.0178, 0.0167, 0.0167], [0.0876, 0.0876, 0.0343, 0.0236, 0.0184, 0.0152, 0.0143, 0.0118], [0.0831, 0.0347, 0.0287, 0.0287, 0.0197, 0.0154, 0.012, 0.0106], [0.078, 0.0368, 0.0238, 0.0163, 0.0144, 0.0127, 0.0127, 0.012], [0.1952, 0.0435, 0.0319, 0.0233, 0.0219, 0.0182, 0.0133, 0.0125], [0.4512, 0.0574, 0.0271, 0.0255, 0.0175, 0.012, 0.01, 0.0094], [0.2256, 0.078, 0.0607, 0.0305, 0.021, 0.0163, 0.0154, 0.0127], [0.2235, 0.0565, 0.0531, 0.044, 0.0343, 0.0172, 0.0162, 0.0162], [0.1455, 0.0732, 0.0688, 0.0392, 0.0346, 0.0197, 0.0197, 0.0163], [0.1766, 0.1071, 0.0539, 0.0327, 0.0211, 0.0198, 0.0164, 0.0154], [0.3041, 0.0987, 0.0871, 0.0496, 0.032, 0.0234, 0.0194, 0.0194], [0.2173, 0.1163, 0.0906, 0.0799, 0.0313, 0.0276, 0.0215, 0.0148], [0.1793, 0.1021, 0.0796, 0.0702, 0.0376, 0.0376, 0.0214, 0.0108], [0.1786, 0.1227, 0.0843, 0.0699, 0.0451, 0.031, 0.0213, 0.0166], [0.2036, 0.109, 0.0621, 0.0583, 0.0454, 0.0259, 0.0228, 0.0228], [0.234, 0.1822, 0.1105, 0.067, 0.0461, 0.0262, 0.0218, 0.018], [0.1419, 0.1252, 0.076, 0.0522, 0.049, 0.0297, 0.0218, 0.0218], [0.6821, 0.056, 0.0248, 0.0193, 0.0133, 0.011, 0.0086, 0.0081], [0.1914, 0.1316, 0.1025, 0.0849, 0.0377, 0.0294, 0.0215, 0.0215], [0.2134, 0.1884, 0.0651, 0.0574, 0.0271, 0.0271, 0.0239, 0.0128], [0.1369, 0.1286, 0.0473, 0.0445, 0.0445, 0.0392, 0.0346, 0.0253], [0.205, 0.1597, 0.0709, 0.043, 0.0295, 0.0277, 0.0149, 0.014], [0.3225, 0.1726, 0.1345, 0.072, 0.0133, 0.0125, 0.0125, 0.011], [0.5232, 0.1499, 0.1323, 0.1167, 0.0058, 0.0043, 0.004, 0.0033], [0.3726, 0.2902, 0.176, 0.0504, 0.0113, 0.0113, 0.006, 0.006], [0.5742, 0.3074, 0.0416, 0.0223, 0.0173, 0.0064, 0.0056, 0.0021], [0.62, 0.2929, 0.0272, 0.0165, 0.0146, 0.0069, 0.0047, 0.0024], [0.7656, 0.2194, 0.0075, 0.004, 0.0028, 0.0002, 0.0002, 0.0001], [0.6718, 0.3173, 0.0031, 0.0024, 0.0021, 0.0013, 0.0002, 0.0001], [0.5872, 0.4036, 0.0045, 0.0013, 0.0011, 0.0006, 0.0002, 0.0002], [0.4975, 0.439, 0.0524, 0.001, 0.001, 0.0009, 0.0007, 0.0005], [0.5088, 0.449, 0.0325, 0.0014, 0.0005, 0.0005, 0.0004, 0.0004]], "ranks": {}}, {"pos": 553, "top": [[".", ",", "\u2013", " \u2013", "\u00a0", ";", "\u2013and", "\u00a0\u00a0"], ["\u2013", "\u2013and", " \u2013", ".\u2013", " \u2013,", "\u2013\u2013", "\u200b\u200b", "\u200b"], ["\u2013", "\u2013and", ".", " \u2013", ".\u2013", ",", "\u2026..", "\u200b\u200b"], [" milfs", " Shemale", " ;;^", " Blowjob", "':''", " Guta", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot"], ["\u6cd7", " cittadin", "\u2018s", " Guta", "&(", "\u9f50\u5bb6", ":@", " \u0628\u0648\u062a\u064a\u0646"], ["\u2013and", "\u6cd7", " \u0628\u0648\u062a\u064a\u0646", "\u2018s", "\u6700\u65b0\u53d1\u5e03", "\u9f50\u5bb6", ":pk", "SSI"], ["\u2013and", "\u00a0", "\u2018s", "\u2018", "   \n", "\u2500\u2500", "\u2013", "\u200b\u200b"], ["\u2013and", "\u2018s", "\u2013", "\u6700\u65b0\u53d1\u5e03", "   \n", "\u2018", "\u2500\u2500", " *\u2013"], ["\u00a0", "\u2013and", "\u2013", "\u2018s", "\u2018", ".", ",", ".\u2013"], ["\u2013and", "\u2013", "\u00a0", ",", "\u2013\u2013", ".\u2013", ".${", ".\"["], ["\u2013", "\u00a0", "\u2013and", ",", " \u2013", ".[", "\u2013\u2013", "--"], ["\u2013and", " potentially", "\u2013", " arguably", " priorit", " albeit", " savvy", " genuinely"], ["\u2013and", " leveraging", "\u2013", " savvy", " leverage", " potentially", " impactful", " priorit"], ["\u2013and", " savvy", " leveraging", " tweaked", " priorit", " impactful", "\u2013", " revamped"], ["\u2013and", " revamped", " aggressively", "\u2013", " savvy", " arguably", " leveraging", " showcasing"], [" savvy", "\u2013and", " bolster", " aggressively", " sprawling", " leveraging", " arguably", " revamped"], ["\u00a0", "\u2013", "\u2013and", " \u2013", " savvy", " leveraging", "<|endoftext|>", " bolster"], ["\u2013and", " leveraging", " revamped", " savvy", " tweaking", " aggressively", " sprawling", " seamlessly"], [" aggressively", " sprawling", "\u2013and", " revamped", " savvy", " seamlessly", " effortlessly", " leveraging"], ["<|endoftext|>", " sprawling", "\u2013and", " aggressively", " burgeoning", " genuinely", " --", "\u5373\u4fbf"], ["<|endoftext|>", " \n\n", "<|file_sep|>", " \r\n\r\n", " \n\n\n", " swiftly", " genuinely", " aggressively"], [" \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " ``", " aggressively", " {{--<", " '&#", " ;;^", " seamlessly", " //~"], [" ``", " aggressively", " {{--<", " --", " ``(", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "``", " //~"], [" ``", " --", " aggressively", " &#", " {{--<", " swiftly", " largely", "``"], [" \r\n\r\n", " \n\n", "\r\n\r\n", " &#", " \n\n\n", "<|object_ref_end|>", " --", " \r\n"], [" \r\n\r\n", " ``", " aggressively", " **", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "<|object_ref_end|>", " {{--<", " **\u2018"], [" ``", " aggressively", " \r\n\r\n", " leveraging", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " **", " {{--<", " seamlessly"], [" \n\n", "\n\n", " \r\n\r\n", " --", "\r\n\r\n", " aggressively", " **", " heavily"], [" **", " \n\n", " aggressively", " \r\n\r\n", " heavily", " sprawling", " seamlessly", " leveraging"], [" **", " aggressively", " seamlessly", " ...", " leveraging", " heavily", " efficiently", " optimized"], [" **", " aggressively", " ...", " heavily", " seamlessly", " focus", " effectively", " efficiently"], [" **", " heavily", " ...", " aggressively", " using", " fully", " use", " rapidly"], [" heavily", " fully", " aggressively", " using", " only", " **", " over", " rapidly"], [" aggressively", " meticulously", " heavily", " **", " modular", " minim", " fully", " seamlessly"], [" meticulously", " aggressively", " heavily", " fully", " seamlessly", " minim", " modular", " routinely"], [" meticulously", " heavily", " aggressively", " avoid", " minim", " entirely", " non", " fully"], [" avoid", " aggressively", " meticulously", " avoiding", " heavily", " entirely", " non", " exclusively"], [" avoid", " avoiding", " non", " entirely", " meticulously", " Avoid", "avoid", " heavily"], [" avoid", " entirely", " avoiding", " completely", " fully", " meticulously", " using", " non"], [" avoid", " using", " avoiding", " entirely", " completely", " reusable", " reuse", " use"], [" avoid", " avoiding", " reusable", " reuse", " using", " Avoid", " use", " avoids"], [" reuse", " reusable", " using", " reused", " recycling", " use", " avoid", "reuse"], [" reusable", " reuse", " using", " avoiding", " reused", " avoid", " recycling", " use"], [" reusable", " reuse", " using", " avoid", " avoiding", " use", " reused", " Avoid"], [" reusable", " reuse", " avoid", " using", " avoiding", " use", " avoids", " entirely"], [" avoid", " reusable", " avoiding", " reuse", " using", " entirely", " avoids", " use"], [" avoid", " avoiding", " reusable", " entirely", " reuse", " avoids", " avoidance", " using"], [" avoid", " entirely", " using", " avoiding", " avoids", " reuse", "\u4e0d\u4f7f\u7528", " reusable"], [" entirely", " avoid", " completely", " using", "\u5b8c\u5168\u6ca1\u6709", " avoiding", "\u4e0d\u4f7f\u7528", "\u5c3d\u91cf\u907f\u514d"], [" entirely", "\u5b8c\u5168\u6ca1\u6709", " avoid", "\u65e0\u4efb\u4f55", "\u5b8c\u5168\u4e0d", "\u5c3d\u91cf\u907f\u514d", "\u4e0d\u4f7f\u7528", " avoids"], ["\u5b8c\u5168\u4e0d", "\u5b8c\u5168\u6ca1\u6709", " entirely", "\u65e0\u4efb\u4f55", "\u306f\u4e00\u5207", " NEVER", "\u7edd\u4e0d", "\u6ca1\u6709\u4efb\u4f55"], ["\u5b8c\u5168\u6ca1\u6709", " ZERO", " NEVER", "\u5b8c\u5168\u4e0d", " entirely", "\u65e0\u4efb\u4f55", "\u306f\u4e00\u5207", "\u5c3d\u91cf\u907f\u514d"], ["\u5b8c\u5168\u6ca1\u6709", " NEVER", " ZERO", "\u65e0\u4efb\u4f55", "\u5b8c\u5168\u4e0d", "\u6ca1\u6709\u4efb\u4f55", " entirely", " reuse"], [" NEVER", " ZERO", "\u65e0\u4efb\u4f55", "\u5b8c\u5168\u6ca1\u6709", " zero", " reuse", "\u675c\u7edd", "\u6ca1\u6709\u4efb\u4f55"], [" zero", " ZERO", "zero", "\u96f6", "-zero", " Zero", "Zero", "_zero"], [" allocations", " allocate", " zero", " ZERO", " alloc", "ALLOC", " allocation", "allocate"], [" allocate", " allocations", " alloc", " zero", " ZERO", " allocation", "allocate", " NEVER"], [" allocate", " allocations", " alloc", " allocation", "allocate", "alloc", " Allocate", "ALLOC"], [" allocate", " allocations", " **", " alloc", " zero", " allocation", "allocate", " ZERO"], [" allocate", " allocations", " allocation", " alloc", "allocate", " allocating", " Allocate", "alloc"], [" allocate", " alloc", " allocations", " allocation", "allocate", " zero", " allocating", " Allocate"], [" allocate", " allocation", " be", " alloc", " **", " allocations", "allocate", " Allocate"], [" allocate", " be", " use", " avoid", "allocate", " eliminate", " allocation", " emit"]], "p": [[0.4377, 0.3008, 0.2067, 0.028, 0.0192, 0.0038, 0.0009, 0.0005], [0.4377, 0.1513, 0.0671, 0.0091, 0.0049, 0.0019, 0.0018, 0.0016], [0.8633, 0.0487, 0.0379, 0.0179, 0.0158, 0.0109, 0.0009, 0.0004], [0.0167, 0.0095, 0.0074, 0.0065, 0.0051, 0.0035, 0.0035, 0.0029], [0.0028, 0.0025, 0.0023, 0.002, 0.002, 0.0019, 0.0017, 0.0015], [0.023, 0.0066, 0.0033, 0.0031, 0.0018, 0.0011, 0.001, 0.0009], [0.0993, 0.0499, 0.0365, 0.0322, 0.0134, 0.0126, 0.0098, 0.0063], [0.3686, 0.0876, 0.0092, 0.0077, 0.006, 0.0038, 0.0036, 0.0032], [0.3722, 0.3722, 0.0733, 0.0197, 0.0106, 0.0093, 0.0082, 0.0039], [0.2379, 0.1356, 0.0126, 0.0087, 0.0081, 0.003, 0.003, 0.0016], [0.4453, 0.3061, 0.1276, 0.0184, 0.0064, 0.0034, 0.0032, 0.0025], [0.0584, 0.0108, 0.009, 0.0079, 0.0062, 0.0062, 0.0058, 0.0048], [0.1314, 0.0214, 0.0214, 0.0108, 0.0101, 0.0079, 0.0074, 0.0061], [0.0554, 0.018, 0.0169, 0.0109, 0.0109, 0.0085, 0.0085, 0.008], [0.0302, 0.0195, 0.0172, 0.0162, 0.0152, 0.0118, 0.0104, 0.0092], [0.018, 0.0159, 0.0124, 0.0124, 0.0103, 0.0103, 0.0103, 0.008], [0.2745, 0.1564, 0.0739, 0.0175, 0.0073, 0.0057, 0.0057, 0.0054], [0.0421, 0.0176, 0.0137, 0.0128, 0.0094, 0.0088, 0.0078, 0.0073], [0.0161, 0.0098, 0.0098, 0.0098, 0.0092, 0.0067, 0.0063, 0.0059], [0.0105, 0.0072, 0.0068, 0.0063, 0.0049, 0.0046, 0.0046, 0.0044], [0.5725, 0.0093, 0.0072, 0.0047, 0.0034, 0.0028, 0.0025, 0.0022], [0.0036, 0.0029, 0.0024, 0.0016, 0.0012, 0.0012, 0.001, 0.001], [0.0704, 0.007, 0.0048, 0.0048, 0.0033, 0.0023, 0.0017, 0.0015], [0.092, 0.0219, 0.008, 0.0055, 0.0049, 0.0025, 0.0022, 0.002], [0.1062, 0.0304, 0.0127, 0.0072, 0.0064, 0.0053, 0.0041, 0.0036], [0.0094, 0.0045, 0.0037, 0.0033, 0.0029, 0.0027, 0.0027, 0.0024], [0.0122, 0.0108, 0.0079, 0.0058, 0.0045, 0.0042, 0.004, 0.0033], [0.1455, 0.1206, 0.0269, 0.0144, 0.0144, 0.0127, 0.0105, 0.0068], [0.0637, 0.0562, 0.0496, 0.0207, 0.0151, 0.0104, 0.0098, 0.0092], [0.6852, 0.0283, 0.0098, 0.0059, 0.0052, 0.0052, 0.0052, 0.0041], [0.5554, 0.026, 0.0202, 0.0139, 0.0079, 0.0054, 0.0048, 0.0045], [0.4912, 0.0139, 0.0131, 0.0116, 0.0096, 0.0066, 0.0055, 0.0051], [0.0256, 0.0226, 0.0188, 0.0137, 0.0089, 0.0089, 0.0083, 0.0083], [0.04, 0.0353, 0.0228, 0.013, 0.0115, 0.0115, 0.0115, 0.0095], [0.0648, 0.0306, 0.0198, 0.0154, 0.0145, 0.0136, 0.0106, 0.0088], [0.0676, 0.0282, 0.0233, 0.0219, 0.0151, 0.0125, 0.0125, 0.0125], [0.0738, 0.0448, 0.0371, 0.0225, 0.0225, 0.0199, 0.0175, 0.0155], [0.1772, 0.0395, 0.0289, 0.0225, 0.0225, 0.0165, 0.0145, 0.0137], [0.1276, 0.0603, 0.0389, 0.0323, 0.0251, 0.0222, 0.0222, 0.0162], [0.1362, 0.0604, 0.0501, 0.0501, 0.0415, 0.039, 0.0237, 0.0237], [0.1779, 0.0952, 0.0841, 0.0697, 0.0615, 0.0273, 0.0256, 0.0213], [0.4289, 0.3341, 0.0352, 0.0352, 0.0147, 0.0138, 0.0089, 0.0079], [0.5032, 0.2694, 0.0365, 0.0172, 0.0152, 0.0152, 0.0098, 0.0092], [0.3253, 0.2236, 0.0726, 0.0726, 0.044, 0.0221, 0.0143, 0.0134], [0.2706, 0.1641, 0.1278, 0.0878, 0.0533, 0.0222, 0.0196, 0.0143], [0.2106, 0.164, 0.0995, 0.0775, 0.0775, 0.0285, 0.0251, 0.0222], [0.2726, 0.1003, 0.0885, 0.0537, 0.0474, 0.0369, 0.0287, 0.0287], [0.1927, 0.1501, 0.1501, 0.0709, 0.0379, 0.0295, 0.0261, 0.0261], [0.4336, 0.0665, 0.0356, 0.0314, 0.0277, 0.0277, 0.0216, 0.0216], [0.3681, 0.064, 0.0342, 0.0342, 0.0342, 0.0342, 0.0235, 0.0208], [0.1483, 0.1483, 0.0794, 0.0545, 0.0425, 0.0331, 0.0292, 0.0258], [0.1452, 0.1131, 0.0777, 0.0534, 0.0534, 0.0534, 0.0471, 0.0252], [0.2038, 0.1236, 0.1091, 0.0584, 0.0515, 0.0312, 0.0312, 0.0276], [0.2121, 0.1652, 0.0689, 0.0418, 0.0325, 0.0325, 0.0287, 0.0253], [0.3626, 0.3626, 0.0714, 0.063, 0.0433, 0.0382, 0.0109, 0.0075], [0.2879, 0.2879, 0.0567, 0.05, 0.0441, 0.039, 0.0303, 0.0268], [0.3655, 0.2217, 0.056, 0.0436, 0.034, 0.034, 0.034, 0.0265], [0.5212, 0.279, 0.0549, 0.0294, 0.0229, 0.0178, 0.0123, 0.0084], [0.5468, 0.1567, 0.095, 0.0449, 0.0309, 0.024, 0.0165, 0.0129], [0.7625, 0.0911, 0.0626, 0.043, 0.0123, 0.0075, 0.0051, 0.0045], [0.865, 0.0296, 0.0296, 0.0296, 0.0123, 0.0075, 0.0058, 0.0051], [0.9348, 0.0118, 0.0118, 0.0092, 0.0092, 0.0081, 0.0049, 0.002], [0.8812, 0.0929, 0.0126, 0.0022, 0.0012, 0.0012, 0.0012, 0.001]], "ranks": {}}, {"pos": 554, "top": [[".", ",", "\u00a0\u00a0", "\u2026.", ";", "\u00a0", "\u2026..", "?"], ["\u00a0\u00a0", "\u00ad", "\u00ac", "\u2026.", "\u2013", "\u2026..", ",", ";"], ["\u2026.", "\u2026..", ".", "\u2013", ",", "\u00a0\u00a0", "\u2026", ";"], ["odle", "\u5982\u837c", "\ufffd\ufffd", " milfs", " cristi", " Shemale", " Blowjob", "(EIF"], ["\u00a0\u00a0", "\u00ac", "chooser", "\u04d9\u0440", "zer", "\u00a0\u00a0\u00a0\u00a0", "asley", "=>\""], ["chooser", "\u04d9\u0440", "objs", "\u0670", "autiful", "asley", "fst", ".cast"], ["asley", "\u00dft", "\u5e3c", "cek", "chooser", "autiful", "\u0670", "cep"], ["asley", "autiful", "evere", "ribly", "\u5982\u837c", "-done", "(EIF", "epy"], ["asley", "epy", "autiful", "egger", "evere", "\u0670", "\u65f3", "ribly"], ["\u4fe9\u4eba", "\u7eb6", " sorta", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u76f8\u8f83", "Though", "\u3082\u3057\u3063\u304b\u308a", "\ub054"], ["ably", " though", "\\-", "\u00ac", "Though", " sorta", " standout", " requisite"], ["\u611f\u5341\u8db3", " impactful", " showcased", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " sorta", " reliant", "\u4fe9\u4eba", "\u6027\u5730"], [" impactful", " showcased", "\u611f\u5341\u8db3", "asley", " flavorful", "_'", " smarter", " reliant"], [" impactful", " showcased", " goofy", " reliant", "-esque", "asley", " upfront", " smarter"], [" showcased", " goofy", " impactful", " sorta", " tweaked", " revamped", " bigger", " savvy"], [" impactful", " goofy", "-esque", " showcased", " anyways", " folks", " upfront", " entirety"], ["-esque", " impactful", " smarter", " goofy", " tweaked", " upfront", " incredibly", " showcased"], [" impactful", " smarter", " goofy", "-esque", " upfront", " savvy", " tweaked", " funky"], ["-esque", " impactful", " upfront", "\u611f\u5341\u8db3", " entirety", " outright", " smarter", " goofy"], [" entirety", " impactful", "-esque", "\u611f\u5341\u8db3", " overarching", " outright", " upfront", " reliant"], [" outright", " vastly", " genuinely", " truly", " arguably", " aggressively", " entirety", " overarching"], ["\u611f\u5341\u8db3", " impactful", " ;;^", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " upfront", "\u8e0f\u8e0f\u5b9e\u5b9e", " smarter", " outright"], ["\u611f\u5341\u8db3", " impactful", " ``", " entirety", " outright", " aggressively", " upfront", " ;;^"], [" much", " fully", " largely", " outright", " aggressively", " entirety", " truly", " entirely"], [" outright", "\u611f\u5341\u8db3", " aggressively", " arguably", " entirety", " much", " vastly", " impactful"], [" impactful", "\u611f\u5341\u8db3", " aggressively", " ;;^", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " incredibly", " outright", " arguably"], [" impactful", " aggressively", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " ;;^", "\u611f\u5341\u8db3", " cleanly", " ``", " entirety"], [" much", " aggressively", " largely", " fully", " heavily", " truly", " '", " arguably"], [" aggressively", " much", " heavily", " largely", " fully", " impactful", " incredibly", " faster"], [" **", " aggressively", " faster", " optimized", " impactful", " modular", " ___", " slower"], [" **", " much", " fully", " aggressively", " non", " fast", " heavily", " faster"], [" much", " fully", " non", " more", " long", " even", " only", " fast"], [" fully", " non", " much", " only", " even", " fast", " mostly", " long"], [" fully", " aggressively", " purely", " non", " entirely", " heavily", " cleanly", " largely"], [" fully", " aggressively", " purely", " entirely", " meticulously", " cleanly", " modular", " non"], [" entirely", " purely", " non", " fully", " cleanly", " strictly", " exclusively", " aggressively"], [" entirely", " purely", " non", " exclusively", " aggressively", " cleanly", " fully", " strictly"], [" entirely", " non", " purely", " exclusively", " fully", " incredibly", " strictly", " cleanly"], [" entirely", " purely", " non", " fully", " exclusively", " completely", " strictly", " cleanly"], [" entirely", " purely", " completely", " non", " fully", " clean", " exclusively", " cleanly"], [" entirely", " purely", " completely", " non", " clean", " devoid", " cleanly", " fully"], [" entirely", " purely", " non", " clean", " cleanly", " devoid", " completely", " immutable"], [" entirely", " purely", " clean", " non", " devoid", " cleanly", " completely", " pure"], [" entirely", " devoid", " non", " clean", " WITHOUT", " purely", " completely", " cleanly"], [" entirely", " devoid", " clean", " non", " WITHOUT", " purely", " completely", " cleanly"], [" entirely", " devoid", " non", " clean", " completely", " purely", " minimal", " zero"], [" entirely", " devoid", " purely", " completely", " clean", " WITHOUT", " strictly", " non"], [" entirely", " devoid", " completely", " strictly", " purely", "\u5b8c\u5168\u6ca1\u6709", " strict", " ZERO"], [" entirely", " **", " **\"", " completely", " devoid", "\u5b8c\u5168\u6ca1\u6709", " strictly", " purely"], [" entirely", " **\"", "\u5b8c\u5168\u6ca1\u6709", " completely", "\u5b8c\u5168\u306b", " devoid", " strictly", "-**"], [" entirely", "\u5b8c\u5168\u306b", "\u5b8c\u5168\u6ca1\u6709", "\u5b8c\u5168\u4e0d", " completely", " strictly", " utterly", "\u306f\u4e00\u5207"], [" entirely", " completely", "\u5b8c\u5168\u306b", "\u5b8c\u5168\u6ca1\u6709", " **\"", "\u5b8c\u5168\u4e0d", " strictly", " **"], [" entirely", " **", " completely", " **\"", "\u5b8c\u5168\u6ca1\u6709", "\u5b8c\u5168\u306b", "\u5b8c\u5168\u4e0d", " strictly"], [" **", " entirely", " completely", " **\"", " strictly", " utterly", " **'", "-**"], [" completely", " entirely", "\u5b8c\u5168", "\u662f\u5b8c\u5168", " **", " utterly", "\u5b8c\u5168\u4e0d", "\u5b8c\u5168\u306b"], [" completely", " entirely", "\u5b8c\u5168", " Completely", " utterly", "\u5b8c\u5168\u4e0d", " completamente", "\u662f\u5b8c\u5168"], [" completely", " entirely", "\u5b8c\u5168", " **", " strictly", " utterly", " Completely", "\u662f\u5b8c\u5168"], [" completely", " entirely", "\u5b8c\u5168", " **", " utterly", " strictly", " Completely", " allocations"], [" completely", " **", " entirely", " utterly", " strictly", "\u5b8c\u5168", " Completely", " absolutely"], [" strictly", " allocation", " completely", " entirely", " alloc", " allocations", " **", " zero"], [" **", " allocation", " completely", " strictly", " zero", " entirely", " alloc", " *"], [" **", " allocation", " completely", " strictly", " *", " entirely", " zero", " alloc"], [" allocation", " **", " strictly", " *", " completely", " entirely", " zero", " alloc"]], "p": [[0.7618, 0.1324, 0.0625, 0.0179, 0.0075, 0.0033, 0.0023, 0.0017], [0.1181, 0.0181, 0.0133, 0.0103, 0.0097, 0.0063, 0.0055, 0.0052], [0.4833, 0.1385, 0.0894, 0.084, 0.0614, 0.0241, 0.0176, 0.0114], [0.0033, 0.0031, 0.0016, 0.0015, 0.0015, 0.0014, 0.0013, 0.0013], [0.0363, 0.0059, 0.0036, 0.0023, 0.0014, 0.0014, 0.0013, 0.0012], [0.0077, 0.0021, 0.0016, 0.0015, 0.0014, 0.0014, 0.0013, 0.001], [0.0083, 0.0057, 0.0042, 0.0029, 0.0027, 0.0022, 0.002, 0.002], [0.0186, 0.0057, 0.0027, 0.0025, 0.0025, 0.0021, 0.0014, 0.0014], [0.008, 0.0059, 0.0033, 0.0031, 0.0019, 0.0019, 0.0018, 0.0018], [0.0029, 0.002, 0.0019, 0.0016, 0.0014, 0.0013, 0.0011, 0.0011], [0.013, 0.009, 0.007, 0.0062, 0.0048, 0.0045, 0.0045, 0.004], [0.0047, 0.0039, 0.0035, 0.0035, 0.0025, 0.0024, 0.0024, 0.0024], [0.0258, 0.0079, 0.0051, 0.004, 0.0037, 0.0035, 0.0035, 0.0035], [0.0191, 0.0075, 0.0055, 0.0035, 0.0035, 0.0035, 0.0026, 0.0026], [0.0109, 0.0102, 0.0096, 0.0075, 0.0066, 0.0058, 0.0058, 0.0051], [0.0262, 0.0159, 0.0116, 0.0103, 0.0085, 0.0066, 0.0066, 0.0059], [0.0215, 0.0202, 0.0158, 0.0131, 0.0115, 0.0102, 0.0102, 0.0096], [0.0171, 0.0133, 0.0092, 0.0092, 0.0076, 0.0067, 0.0063, 0.0056], [0.0164, 0.0164, 0.0073, 0.0064, 0.006, 0.0057, 0.0053, 0.0053], [0.0119, 0.0092, 0.0082, 0.0077, 0.006, 0.006, 0.0044, 0.0036], [0.0168, 0.007, 0.0066, 0.0062, 0.0062, 0.0055, 0.0051, 0.0048], [0.009, 0.0051, 0.0048, 0.004, 0.0026, 0.0024, 0.0021, 0.0017], [0.01, 0.01, 0.0073, 0.006, 0.0053, 0.0047, 0.0047, 0.0042], [0.0253, 0.0174, 0.0144, 0.0127, 0.0112, 0.0099, 0.0099, 0.0099], [0.0108, 0.007, 0.0065, 0.0061, 0.0058, 0.0058, 0.0058, 0.0051], [0.0116, 0.009, 0.007, 0.0062, 0.0058, 0.0045, 0.0045, 0.0035], [0.0104, 0.0104, 0.0072, 0.0072, 0.0049, 0.0043, 0.0041, 0.0036], [0.03, 0.0171, 0.0151, 0.0142, 0.0117, 0.0091, 0.0086, 0.0081], [0.0284, 0.0134, 0.0126, 0.0111, 0.0104, 0.0081, 0.0081, 0.0067], [0.1344, 0.0234, 0.0206, 0.0194, 0.0151, 0.0097, 0.0086, 0.0086], [0.0192, 0.018, 0.018, 0.0169, 0.014, 0.0116, 0.0109, 0.0109], [0.0301, 0.0266, 0.025, 0.0207, 0.0195, 0.0172, 0.0172, 0.0134], [0.0321, 0.025, 0.0221, 0.0207, 0.0152, 0.0134, 0.0111, 0.0104], [0.0337, 0.0279, 0.0232, 0.0192, 0.0149, 0.0124, 0.0097, 0.0091], [0.0295, 0.0277, 0.026, 0.0179, 0.0168, 0.0168, 0.0116, 0.0116], [0.0707, 0.0624, 0.0456, 0.0403, 0.0295, 0.0216, 0.0202, 0.019], [0.0661, 0.0661, 0.0548, 0.0401, 0.0332, 0.0332, 0.0293, 0.0178], [0.1212, 0.1005, 0.0573, 0.0419, 0.0394, 0.0186, 0.0175, 0.0164], [0.2515, 0.1048, 0.0636, 0.0597, 0.0386, 0.0265, 0.0194, 0.0171], [0.4766, 0.1205, 0.0828, 0.0345, 0.0324, 0.0174, 0.0163, 0.0127], [0.3301, 0.1007, 0.0692, 0.0574, 0.037, 0.0307, 0.0225, 0.0225], [0.2602, 0.1393, 0.0957, 0.0658, 0.0512, 0.0352, 0.0311, 0.0122], [0.2004, 0.1073, 0.0947, 0.0651, 0.0611, 0.0507, 0.0198, 0.0175], [0.3118, 0.13, 0.0893, 0.0509, 0.029, 0.0272, 0.0256, 0.0226], [0.4732, 0.1973, 0.0388, 0.0343, 0.0343, 0.0267, 0.0236, 0.0118], [0.4774, 0.1368, 0.0503, 0.0392, 0.0269, 0.0269, 0.0197, 0.0105], [0.5115, 0.1293, 0.0327, 0.0211, 0.0164, 0.0164, 0.0154, 0.0154], [0.7102, 0.0661, 0.0514, 0.0214, 0.0178, 0.0167, 0.0065, 0.0051], [0.785, 0.0345, 0.0269, 0.0237, 0.0209, 0.0163, 0.0163, 0.0077], [0.6768, 0.0433, 0.0382, 0.0232, 0.0204, 0.0159, 0.0132, 0.0124], [0.4983, 0.0764, 0.0595, 0.0595, 0.0361, 0.0133, 0.0133, 0.0125], [0.4748, 0.0728, 0.039, 0.039, 0.0304, 0.0268, 0.0236, 0.0184], [0.4824, 0.122, 0.1076, 0.0653, 0.0396, 0.0129, 0.0129, 0.0129], [0.3903, 0.304, 0.0871, 0.0363, 0.0134, 0.0104, 0.0104, 0.0104], [0.4893, 0.2968, 0.0584, 0.019, 0.019, 0.019, 0.013, 0.0115], [0.713, 0.1404, 0.0965, 0.0115, 0.0079, 0.0054, 0.0048, 0.0048], [0.7035, 0.1079, 0.0577, 0.0577, 0.0212, 0.0129, 0.01, 0.0037], [0.758, 0.1317, 0.0377, 0.0178, 0.0157, 0.0108, 0.0095, 0.0031], [0.5428, 0.2564, 0.1211, 0.021, 0.0128, 0.0113, 0.0099, 0.0032], [0.3211, 0.2834, 0.2207, 0.0338, 0.0299, 0.0299, 0.0181, 0.011], [0.3051, 0.2376, 0.1851, 0.1272, 0.0468, 0.0322, 0.0172, 0.0118], [0.4233, 0.3296, 0.1213, 0.0446, 0.0307, 0.0211, 0.0078, 0.0041], [0.346, 0.2695, 0.1443, 0.0875, 0.0772, 0.0531, 0.0053, 0.0026]], "ranks": {}}, {"pos": 555, "top": [["s", "**.", "**\u2013", " **", "**,", "**:", "-**", "**"], [" **", "-**", "s", "\u2019**", "**,", "**\u2013", " '**", " **\u2013"], ["\u2026**", "**\u2013", " **", "**\u3002", "**.", "**", " **\u2013", "s"], ["\u300d**", " **", " **\u00ab", "\uff1f**", " **\u300c", ">**", "\u2019**", " **:"], [" **", ">**", "-**", " **#", "**", " **.", "\u300d**", "**\u3002"], [" **", "-**", " **\u00ab", ">**", " **#", "\u300d**", " **.", "**"], [" **", "\u300d**", "**", "-**", ">**", " **\u00ab", "\uff09**", "**\u3002"], [" **", "\u300d**", "**", " **\u00ab", ">**", "-**", " **#", " **\u300c"], [" **", "\u300d**", "**", " **\u00ab", ">**", " **#", "**\u3002", "-**"], [" **", "\u300d**", "-**", " **\u00ab", ">**", " **#", "**", " **\u300c"], [" **", "**", "\u300d**", " **#", "-**", ">**", " **\u00ab", " **\u300c"], [" **", " **\u00ab", "\u300d**", " **#", " **\u300c", ">**", "-**", " **+"], [" **", " **\u00ab", "\u300d**", " **\u300c", "-**", " **#", ">**", " **+"], [" **", " **\u00ab", "\u300d**", " **\u300c", "-**", " **+", " **#", ">**"], [" **", "\u300d**", " **\u00ab", "-**", "**", ">**", " **\u300c", " **#"], [" **", "-**", "**", "\u300d**", " **\u00ab", ">**", " **#", " **\u300c"], [" **", "**", ">**", "-**", " **#", " **\u00ab", " **+", "\u300d**"], [" **", "-**", "**", ">**", " **\u00ab", " **#", "\u300d**", "**-"], [" **", "**", "-**", ">**", "\u300d**", " **#", "**-", "\u2019**"], [" **", "**", ">**", "-**", "\u300d**", "\u2019**", " **#", "**-"], [" **", "**", ">**", "-**", " **#", "\u300d**", "\u2019**", "(**"], [" **", ">**", "\u300d**", "**", "-**", " **#", " **\u00ab", "\u2019**"], [" **", "**", ">**", "\u300d**", " **#", "-**", "\u2019**", " **\u00ab"], [" **", "**", ">**", " **#", "\u300d**", "-**", " **+", "\u2019**"], [" **", "**", ">**", " **#", "-**", "\u2019**", "...**", "**,"], [" **", "**", ">**", " **#", "-**", "\u2019**", " **+", " **'"], [" **", "**", ">**", " **#", "-**", "\u2019**", " **+", " **'"], [" **", "**", " **#", ">**", " **'", "-**", " **+", " **."], [" **", "**", " **#", "-**", ">**", " **'", " **\u201c", "\u2019**"], [" **", "**", "-**", " **#", ">**", " **\u201c", " **[", " **."], [" **", "**", " **.", " **#", " **\u201c", " **'", "**,", "-**"], [" **", "**", " **\u201c", " **.", "**,", " **#", " **[", " **,"], [" **", "\u2011", "**", "**,", " **\u201c", " **[", " **'", " **#"], [" **", ">**", " **\u201c", "**", "!**", "-**", " **-", " **#"], [" **", "!**", "\u2011", "**", ">**", " **\u201c", "\u2019**", "**,"], [" **", "\u2011", "!**", "**", "**\u2014", "\u2026**", ">**", "\u2019**"], [" **", "\u2011", "!**", ">**", "**\u2014", "\uff01**", "**,", "-**"], [" **", "\u2011", "!**", ">**", "**", "**,", "**\u2014", ";**"], ["\u2011", " **", "!**", ">**", "\uff01**", "**\u2014", "**,", ";**"], ["\u2011", "!**", " **", "\uff01**", ">**", "\u6ca1\u6709\u4efb\u4f55", "%**", "**,"], ["!**", "\u2011", " **", "\uff01**", "**,", "**", ">**", "**!"], ["\u2011", "!**", "non", " **", "/non", "\u6ca1\u6709\u4efb\u4f55", " non", "\u65e0\u4efb\u4f55"], [" **", "!**", "-**", ">**", "/non", " **-", "\u65e0\u4efb\u4f55", "-clean"], [" **", "non", " non", " **-", "!**", ">**", "/non", " WITHOUT"], [" **", " WITHOUT", " **.", " **-", "**", "-**", "**-", "\u65e0\u4efb\u4f55"], [" **", "!**", " **.", "**", "-**", "**,", "/non", ">**"], ["!**", " **", "**,", "\u65e0\u4efb\u4f55", "**!", "/non", "**", "-**"], [" **", "-**", "**", "!**", "**,", " **.", ";**", " **,"], [" **", "!**", "**,", " **.", "**!", ";**", " **:", "**."], ["\u5b8c\u5168\u6ca1\u6709", "\u65e0\u4efb\u4f55", "-zero", " entirely", "\u6ca1\u6709\u4efb\u4f55", "ainless", "\u306f\u4e00\u5207", "\u5b8c\u5168\u4e0d"], ["**.", "**!", "!**", ">**", " **:", " **.", "**\u3002", "-**"], ["-zero", "!**", "**.", "zero", "\u5b8c\u5168\u6ca1\u6709", "**\u3002", "**!", " zero"], ["-zero", "\u5b8c\u5168\u6ca1\u6709", "zero", "\u65e0\u4efb\u4f55", " zero", "!**", "\u6ca1\u6709\u4efb\u4f55", "**."], ["-zero", "\u5b8c\u5168\u6ca1\u6709", "zero", " zero", "\u65e0\u4efb\u4f55", " entirely", " absolutely", " completely"], [" zero", "-zero", "zero", " allocations", "alloc", "\u96f6", " alloc", "\u5b8c\u5168\u6ca1\u6709"], [" allocations", "alloc", " alloc", " completely", "\u5b8c\u5168", " allocation", " zero", "malloc"], [" allocations", "alloc", " completely", "\u5b8c\u5168", " alloc", " allocation", " entirely", "malloc"], [" allocations", "alloc", " completely", " allocation", " alloc", "\u5b8c\u5168", " entirely", " Allocation"], [" allocation", " allocations", " completely", "alloc", " alloc", " entirely", " absolutely", " garbage"], [" allocation", " allocations", "alloc", " alloc", " completely", " zero", "allocation", " Allocation"], [" allocation", " zero", " completely", "zero", "allocation", " alloc", " allocations", "alloc"], [" allocation", "allocation", "zero", " completely", " Allocation", " zero", "alloc", " allocations"], ["allocation", "zero", " allocation", "alloc", "strict", "GC", "com", " completely"]], "p": [[0.9992, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7739, 0.03, 0.0206, 0.0161, 0.0142, 0.0142, 0.0125, 0.0125], [0.2877, 0.1745, 0.1359, 0.0934, 0.0824, 0.0389, 0.0344, 0.0268], [0.2555, 0.1756, 0.094, 0.0607, 0.057, 0.0392, 0.0269, 0.0253], [0.7317, 0.053, 0.053, 0.0284, 0.025, 0.0134, 0.0104, 0.0081], [0.8166, 0.0592, 0.015, 0.015, 0.0116, 0.0091, 0.008, 0.008], [0.7447, 0.0785, 0.0785, 0.012, 0.012, 0.0106, 0.0106, 0.0094], [0.7669, 0.0713, 0.0556, 0.0262, 0.0124, 0.0109, 0.0097, 0.0059], [0.7129, 0.0851, 0.0851, 0.019, 0.0148, 0.0148, 0.0062, 0.0062], [0.6827, 0.072, 0.0495, 0.0495, 0.0495, 0.034, 0.0125, 0.0097], [0.8847, 0.0389, 0.0162, 0.0162, 0.0111, 0.0087, 0.0077, 0.0032], [0.8977, 0.0271, 0.0186, 0.0128, 0.01, 0.0069, 0.0069, 0.0037], [0.8806, 0.0563, 0.0142, 0.0126, 0.0086, 0.0046, 0.0036, 0.0032], [0.7702, 0.1181, 0.0233, 0.0181, 0.0181, 0.0086, 0.0076, 0.0067], [0.9675, 0.0095, 0.0051, 0.004, 0.0024, 0.0019, 0.0016, 0.0015], [0.9911, 0.0022, 0.0013, 0.0013, 0.001, 0.0007, 0.0006, 0.0003], [0.9914, 0.0022, 0.0015, 0.0013, 0.001, 0.0005, 0.0004, 0.0003], [0.9256, 0.017, 0.015, 0.0132, 0.0055, 0.0043, 0.0033, 0.002], [0.925, 0.0317, 0.015, 0.0062, 0.0033, 0.0026, 0.0023, 0.002], [0.9011, 0.0576, 0.0078, 0.0069, 0.0054, 0.0047, 0.0022, 0.0014], [0.8424, 0.1006, 0.0224, 0.0073, 0.005, 0.0024, 0.0021, 0.0021], [0.9241, 0.0192, 0.0091, 0.008, 0.008, 0.0071, 0.0048, 0.0023], [0.9715, 0.0122, 0.0065, 0.0019, 0.0017, 0.0013, 0.0007, 0.0005], [0.988, 0.0075, 0.0019, 0.0004, 0.0004, 0.0002, 0.0001, 0.0001], [0.9247, 0.0591, 0.0049, 0.0026, 0.0023, 0.0007, 0.0006, 0.0006], [0.9848, 0.0085, 0.0022, 0.0015, 0.0009, 0.0004, 0.0003, 0.0002], [0.9883, 0.0086, 0.001, 0.0006, 0.0005, 0.0002, 0.0001, 0.0001], [0.9989, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9917, 0.0076, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9966, 0.0032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9992, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9973, 0.0009, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9948, 0.0005, 0.0005, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003], [0.9052, 0.0451, 0.0089, 0.0061, 0.0054, 0.0033, 0.0024, 0.0022], [0.5399, 0.2251, 0.1365, 0.0163, 0.0093, 0.0072, 0.0068, 0.006], [0.5274, 0.2199, 0.1177, 0.0132, 0.0085, 0.0066, 0.0052, 0.0052], [0.4692, 0.4141, 0.0495, 0.0049, 0.0046, 0.003, 0.0025, 0.0023], [0.7734, 0.1047, 0.0319, 0.0025, 0.0019, 0.0017, 0.0014, 0.0012], [0.723, 0.1424, 0.0193, 0.0059, 0.0043, 0.003, 0.0028, 0.0028], [0.413, 0.413, 0.0193, 0.0125, 0.0081, 0.0076, 0.0071, 0.0046], [0.2633, 0.1168, 0.0335, 0.0295, 0.0203, 0.0179, 0.0158, 0.0149], [0.2917, 0.1008, 0.0507, 0.0271, 0.0186, 0.0165, 0.0165, 0.0113], [0.1921, 0.0355, 0.0355, 0.026, 0.026, 0.0244, 0.0229, 0.0229], [0.4951, 0.0433, 0.0406, 0.0297, 0.0169, 0.0159, 0.0149, 0.014], [0.4215, 0.0607, 0.0346, 0.0269, 0.0253, 0.0185, 0.0174, 0.0144], [0.2571, 0.1214, 0.0394, 0.0327, 0.0307, 0.0271, 0.0239, 0.0225], [0.9709, 0.0051, 0.004, 0.0024, 0.0021, 0.0021, 0.0019, 0.0019], [0.2129, 0.0691, 0.0691, 0.0538, 0.0446, 0.0326, 0.0326, 0.0326], [0.18, 0.0905, 0.0427, 0.0402, 0.0333, 0.0276, 0.0259, 0.0202], [0.1867, 0.1133, 0.1133, 0.0687, 0.0417, 0.0345, 0.0305, 0.0286], [0.2099, 0.0875, 0.064, 0.0531, 0.0531, 0.0468, 0.0322, 0.0302], [0.2615, 0.2036, 0.0515, 0.0332, 0.0259, 0.0202, 0.0189, 0.0189], [0.2715, 0.0882, 0.0569, 0.0569, 0.0324, 0.0324, 0.0185, 0.0163], [0.2311, 0.18, 0.18, 0.075, 0.0584, 0.0455, 0.0276, 0.019], [0.4282, 0.2023, 0.0657, 0.0451, 0.031, 0.031, 0.0213, 0.0188], [0.4111, 0.1513, 0.1335, 0.0714, 0.0556, 0.0491, 0.0141, 0.011], [0.4779, 0.1758, 0.0941, 0.0941, 0.0504, 0.0306, 0.0144, 0.0068], [0.2159, 0.2159, 0.1484, 0.1156, 0.0482, 0.0331, 0.0258, 0.0201], [0.6948, 0.1066, 0.0503, 0.0392, 0.0269, 0.0238, 0.0127, 0.0087], [0.6814, 0.1342, 0.0436, 0.0299, 0.0206, 0.0182, 0.0125, 0.0125], [0.8768, 0.072, 0.011, 0.0086, 0.0052, 0.0052, 0.003, 0.003], [0.4194, 0.2544, 0.2245, 0.039, 0.0237, 0.005, 0.0027, 0.0027]], "ranks": {}}, {"pos": 556, "top": [[" \u2013", "i", "\u2013", ".", "\u2026.", "ing", "a", "-"], [" \u2013**", "  \r\n", "ing", "**\u2013", " \u2013", "erweise", "es", "i"], [" \u2013", "i", "**\u2013", "ing", " \u2013**", "\u2013", "\u2026..", "\u2026."], [" milfs", " cumshot", "ieli", "enze", "iha", "erweise", " pornstar", " pupper"], ["ed", "ing", "ihi", "i", "iho", " @_", "es", "iha"], ["ed", "ing", "ihi", "i", "-zero", "-**", "zep", "iha"], ["ing", "ed", "i", "es", "-zero", "ihi", "\u5728", "-gray"], ["ing", "i", "-zero", "ed", "-**", "i\u00e8me", "enze", "es"], ["ing", "i", "-zero", "i\u00e8me", "ed", "  \r\n", "-dollar", "-billion"], ["ing", "ed", "-zero", "i", "-dollar", "i\u00e8me", "-plus", "-$"], ["ing", "i", "-zero", "ed", "\\n", "-plus", "o", "istic"], ["ing", "i\u00e8me", "-zero", "iha", "ed", "enze", "erweise", "istic"], ["ing", "-zero", "ed", "i\u00e8me", "i", "ingly", "istic", "erweise"], ["ing", "ed", "i", "-zero", "i\u00e8me", "ingly", "iha", "istic"], ["ing", "i", "ed", "ingly", "o", "istic", "i\u00e8me", "-zero"], ["ing", "ed", "i", "es", "ingly", "istic", "i\u00e8me", "o"], ["ing", "i", "ed", "es", "o", "ingly", "-zero", "istic"], ["ing", "-zero", "i", "ed", "i\u00e8me", "istic", "es", "ingly"], ["ing", "i", "i\u00e8me", "-zero", "iha", " -**", "ed", "iaya"], ["ing", "ingly", "-zero", "i", "iha", "i\u00e8me", "ed", "-billion"], ["ing", "i", "ed", "\r\n\r\n", "ingly", " %+", " \r\n\r\n", "-zero"], ["i\u00e8me", "ing", "iaya", "-zero", "ielle", "-billion", " %+", "ingly"], ["ing", " %+", "-billion", "ingly", "-zero", "i\u00e8me", "ielle", "iha"], ["ing", "-zero", " %+", "ingly", "-billion", "ed", "ingati", "i\u00e8me"], ["\r\n\r\n", "ing", " \r\n\r\n", "ingly", "-zero", " %+", "-billion", " \r\n"], ["ing", " impactful", "ingly", "-zero", "-billion", " -**", " %+", " ...\\"], ["-zero", "ing", " %+", "-billion", " impactful", "ingly", " -**", " entirety"], [" --", " @", "ing", " -", "\r\n\r\n", " ...", " ...\\", "-zero"], ["ing", "-zero", " %+", "ed", " ...\\", " @", " -**", " -"], [" -**", " ____", "ing", "-zero", " ...\\", " **", "ed", " **+"], ["ing", "-zero", "ed", " zero", " -", " Zero", " -**", " ZERO"], [" zero", "-zero", " Zero", "ing", " -", "ed", " ZERO", " clean"], [" -", "ing", "-zero", " zero", "ed", " Zero", " \u2013", "\u2011"], ["-zero", "/non", "ing", "\u2011", " zero", "zens", "-tier", " ZERO"], ["-zero", " ZERO", "/non", " zero", "\u2011", " Zero", "ing", "zens"], ["-zero", " zero", " ZERO", "\u2011", " Zero", "/non", "Zero", "ing"], ["-zero", " zero", " ZERO", " Zero", "/non", "Zero", "\u6ca1\u6709\u4efb\u4f55", "zero"], ["-zero", " zero", " Zero", " ZERO", "/non", " -", "Zero", "\u2011"], ["-zero", " zero", " Zero", " ZERO", "/non", "\u4e3a\u96f6", " -", "\u2011"], ["-zero", " zero", " Zero", " ZERO", "\u96f6", "Zero", "/non", " scav"], ["-zero", " zero", " Zero", " ZERO", "Zero", "\u96f6", "zero", "/non"], ["-zero", " zero", " Zero", "Zero", " ZERO", "zero", "\u96f6", "/non"], ["-zero", " zero", " Zero", " ZERO", "Zero", "_zero", "\u96f6", "zero"], ["-zero", " zero", " Zero", " ZERO", "Zero", "\u96f6", "zero", "ZERO"], ["-zero", " zero", " Zero", " ZERO", "Zero", "zero", "ZERO", "_zero"], ["-zero", " zero", " Zero", " ZERO", "/non", "Zero", "/no", "zero"], ["-zero", " zero", " ZERO", " Zero", "/non", "/no", "\u6216\u5c11", "Zero"], ["-zero", " zero", "/non", " ZERO", "/no", "\u6216\u5c11", " Zero", "-no"], ["-zero", "/non", "\u6216\u5c11", "/no", "-byte", "_zero", " zero", "-cost"], ["-zero", "\u6216\u5c11", "/non", "/no", "/null", "-byte", "_zero", "-cost"], ["-zero", "/non", "\u6216\u5c11", "/no", "/null", ".Zero", "_zero", "-byte"], ["-zero", "-byte", "\u6216\u5c11", "/no", "/min", "_malloc", "-memory", "/non"], ["-zero", "-net", "-byte", "-memory", "/no", "-create", "-buffer", "_malloc"], ["-byte", "-memory", "-net", "-zero", "-runtime", "-copy", "-no", "-code"], [" allocations", "alloc", " alloc", " allocation", "Alloc", " allocating", " malloc", " allocate"], [" allocations", "alloc", " alloc", " allocation", "Alloc", " allocating", " malloc", " Allocation"], [" allocations", "alloc", " allocation", " alloc", "Alloc", " GC", " allocating", " garbage"], [" allocations", "alloc", " allocation", " alloc", "Alloc", " Alloc", " allocating", " Allocation"], [" allocations", " allocation", "alloc", " GC", " alloc", "Alloc", " Alloc", " Allocation"], [" allocations", " allocation", "alloc", " alloc", "Alloc", " Allocation", " Alloc", " allocating"], [" allocation", " allocations", " alloc", "alloc", "Alloc", " Allocation", " Alloc", " allocating"], [" allocation", " allocations", "-al", " Allocation", " alloc", "alloc", "allocation", " allo"], ["-al", "-G", " allocation", "-Al", "-", " allocations", " GC", " Allocation"]], "p": [[0.9629, 0.0146, 0.0107, 0.0031, 0.0012, 0.0008, 0.0007, 0.0006], [0.0791, 0.048, 0.0291, 0.02, 0.0188, 0.0114, 0.0101, 0.0095], [0.1981, 0.0879, 0.0729, 0.0685, 0.0323, 0.0252, 0.0153, 0.0153], [0.0199, 0.0083, 0.0078, 0.0065, 0.0057, 0.0047, 0.0044, 0.0044], [0.2031, 0.0901, 0.0795, 0.0795, 0.04, 0.0293, 0.0138, 0.0084], [0.2103, 0.1358, 0.0267, 0.0236, 0.0173, 0.0105, 0.0092, 0.0077], [0.4143, 0.2217, 0.1524, 0.0234, 0.0067, 0.0056, 0.0052, 0.0038], [0.5107, 0.0394, 0.0307, 0.0239, 0.0078, 0.0068, 0.0057, 0.0053], [0.73, 0.0207, 0.0134, 0.0059, 0.0056, 0.0025, 0.0022, 0.0019], [0.7259, 0.0281, 0.0233, 0.0219, 0.0034, 0.0032, 0.003, 0.0017], [0.6523, 0.0646, 0.0305, 0.0287, 0.0068, 0.005, 0.0041, 0.0039], [0.2715, 0.0163, 0.0163, 0.0082, 0.0056, 0.0053, 0.0053, 0.0047], [0.5816, 0.0199, 0.0199, 0.0121, 0.0083, 0.0061, 0.0047, 0.0032], [0.5187, 0.0353, 0.0243, 0.0177, 0.0138, 0.007, 0.0061, 0.0045], [0.5008, 0.1842, 0.0466, 0.0071, 0.0071, 0.0063, 0.0059, 0.0052], [0.5839, 0.079, 0.0697, 0.0121, 0.0057, 0.0039, 0.0031, 0.0031], [0.6318, 0.141, 0.0855, 0.0158, 0.0066, 0.0048, 0.0043, 0.0043], [0.2835, 0.0318, 0.0264, 0.0219, 0.0117, 0.0097, 0.008, 0.0059], [0.0669, 0.0159, 0.0149, 0.0124, 0.0085, 0.0075, 0.0071, 0.0066], [0.0887, 0.0154, 0.012, 0.0093, 0.0082, 0.0073, 0.0068, 0.0064], [0.1954, 0.041, 0.03, 0.0233, 0.0171, 0.0151, 0.0071, 0.0067], [0.0094, 0.0088, 0.0073, 0.0073, 0.0069, 0.006, 0.0042, 0.0042], [0.0256, 0.0114, 0.0094, 0.0088, 0.0083, 0.0069, 0.0054, 0.0047], [0.066, 0.0167, 0.0138, 0.0108, 0.0101, 0.0061, 0.0054, 0.0042], [0.0565, 0.0413, 0.0172, 0.0134, 0.0126, 0.0087, 0.0076, 0.0053], [0.0169, 0.014, 0.0109, 0.0109, 0.0102, 0.009, 0.009, 0.0051], [0.0372, 0.0256, 0.0146, 0.0094, 0.0088, 0.0083, 0.0057, 0.0042], [0.0467, 0.0412, 0.0302, 0.0221, 0.0195, 0.0126, 0.0118, 0.0111], [0.0429, 0.0334, 0.0123, 0.0102, 0.0096, 0.0096, 0.007, 0.007], [0.0559, 0.0361, 0.0339, 0.0233, 0.0219, 0.0171, 0.0097, 0.0071], [0.0908, 0.0586, 0.026, 0.0216, 0.0203, 0.0158, 0.0075, 0.0075], [0.0392, 0.0368, 0.0368, 0.0287, 0.0253, 0.0144, 0.0087, 0.0053], [0.0851, 0.0428, 0.0313, 0.0276, 0.0229, 0.0168, 0.0084, 0.0054], [0.1884, 0.01, 0.0088, 0.0078, 0.0073, 0.0061, 0.0057, 0.005], [0.2805, 0.0179, 0.0149, 0.0123, 0.0085, 0.0055, 0.0055, 0.0051], [0.5903, 0.0294, 0.0276, 0.0167, 0.0157, 0.0108, 0.0066, 0.0054], [0.5745, 0.0367, 0.0324, 0.0252, 0.0135, 0.0093, 0.0064, 0.0053], [0.6481, 0.0683, 0.047, 0.0268, 0.0119, 0.0092, 0.0064, 0.0036], [0.6235, 0.1083, 0.0545, 0.0147, 0.0065, 0.0051, 0.0048, 0.0048], [0.6831, 0.0561, 0.0437, 0.0182, 0.011, 0.0097, 0.0076, 0.0071], [0.7849, 0.0534, 0.0304, 0.0153, 0.0099, 0.0093, 0.0056, 0.0047], [0.8611, 0.055, 0.0295, 0.0096, 0.0062, 0.004, 0.0035, 0.0023], [0.8959, 0.0394, 0.0186, 0.0078, 0.0068, 0.0029, 0.0025, 0.0022], [0.8542, 0.0425, 0.0228, 0.0201, 0.0177, 0.0061, 0.0054, 0.0037], [0.8433, 0.0539, 0.0371, 0.0255, 0.0106, 0.0034, 0.0034, 0.0021], [0.8102, 0.0854, 0.0356, 0.0245, 0.0075, 0.0048, 0.0035, 0.0027], [0.8457, 0.0421, 0.0289, 0.0255, 0.0121, 0.0083, 0.0035, 0.0025], [0.8895, 0.0197, 0.0144, 0.0093, 0.0068, 0.0032, 0.0027, 0.0022], [0.8479, 0.0241, 0.0146, 0.0073, 0.0035, 0.0029, 0.0025, 0.0024], [0.8004, 0.033, 0.031, 0.0122, 0.0061, 0.0039, 0.0035, 0.0029], [0.9033, 0.0146, 0.0069, 0.0045, 0.0045, 0.0037, 0.0027, 0.0017], [0.3131, 0.0241, 0.0227, 0.0177, 0.0129, 0.0107, 0.0101, 0.0101], [0.1833, 0.0339, 0.0339, 0.0281, 0.0248, 0.0206, 0.016, 0.011], [0.1619, 0.0718, 0.0596, 0.0464, 0.03, 0.0151, 0.0141, 0.0141], [0.5667, 0.184, 0.0985, 0.0869, 0.0362, 0.0056, 0.0043, 0.003], [0.5043, 0.2382, 0.1125, 0.0876, 0.0251, 0.0082, 0.0056, 0.0026], [0.6057, 0.1531, 0.1053, 0.0563, 0.0266, 0.0161, 0.0059, 0.0059], [0.7513, 0.0897, 0.0792, 0.0374, 0.0177, 0.0057, 0.0035, 0.0031], [0.6332, 0.1413, 0.0756, 0.0667, 0.0315, 0.0169, 0.009, 0.0062], [0.3553, 0.3553, 0.1307, 0.1018, 0.0292, 0.0107, 0.0051, 0.0035], [0.4867, 0.2605, 0.1086, 0.0581, 0.0214, 0.0189, 0.0114, 0.0089], [0.6918, 0.1362, 0.0729, 0.0304, 0.0268, 0.0112, 0.0041, 0.0041], [0.9087, 0.0658, 0.0089, 0.0069, 0.0048, 0.0009, 0.0008, 0.0004]], "ranks": {}}, {"pos": 557, "top": [[" \u2013", "\u2013", "u", "en", "\"", "er", "\u2018", "\u2013and"], ["\u0647", "u", "\u2018", " \uff5e", "\uff0e", "\u4f46\u4e0d\u9650\u4e8e", "@\"", "\u4eba"], ["u", "\u2018", " \u2013", "\"", "\u2013", "\u2013and", "@\"", ".\u2013"], ["\u4f46\u4e0d\u9650\u4e8e", "\u0647", "\u4eba", " Hidal", "\u4e86", "\ub370", "\\\":\\\"", "gorithm"], ["\u0647", "en", "\u4f46\u4e0d\u9650\u4e8e", "\u4e86", "@\"", "\ub370", "\u4eba", "u"], ["\u4e86", "\u4eba", "\u0647", "\u4f46\u4e0d\u9650\u4e8e", "en", "\u7684", "\ub370", "u"], ["\u7684", "\u4e86", "\u4f46\u4e0d\u9650\u4e8e", "\u548c", "en", "u", "\u4eba", "\u4e0a"], ["ution", "\u4f46\u4e0d\u9650\u4e8e", "u", "en", "\u4e86", "\u0647", "\u4eba", "\u7684"], ["ution", "u", "\u4f46\u4e0d\u9650\u4e8e", "en", "er", "\uff5c", "\"|", "\u0647"], ["ution", "u", "en", "er", "\u4f46\u4e0d\u9650\u4e8e", "\"|", "\u00ad", "\"\\"], ["u", "\"|", "er", "en", "ution", "@\"", "\u0647", "\"\\"], ["ution", "\u4f46\u4e0d\u9650\u4e8e", "er", "en", "u", "\u0647", "idian", "\"--"], ["ution", "er", "en", "u", "\u4f46\u4e0d\u9650\u4e8e", "\u0647", "idian", "ignment"], ["ution", "en", "er", "\u0647", "u", "\u4f46\u4e0d\u9650\u4e8e", "uminium", "idian"], ["en", "ution", "\u0647", "u", " requisite", "er", "\"--", "\u4f46\u4e0d\u9650\u4e8e"], [" requisite", "en", "\u4f46\u4e0d\u9650\u4e8e", "ution", "\u0647", "er", "u", "\ub370"], ["en", "u", "er", "lo", " requisite", "\u0647", "ution", "n"], ["en", "er", "u", "lo", "ution", "\u0647", "\u00adi", " requisite"], ["en", "u", "ution", "\u0647", "er", "\"--", "lo", "\"&"], ["ution", "en", "u", "Whilst", "\"&", "@\",", "AQ", "\"--"], ["<|endoftext|>", "u", "1", "4", "2", "at", "@", "8"], ["ution", "ary", " entirety", "\u0647", "ambda", "ignment", "izion", "en"], ["ution", "en", "u", "er", "at", "ad", "\u0647", "ary"], ["<|endoftext|>", "at", "u", "en", "an", "er", "ad", "n"], ["<|endoftext|>", "at", "u", " \n\n", "en", "an", "n", "[["], ["en", "ution", "er", "@\",", " effort", "utely", " [...]", "at"], [" *@", "@\",", "er", "en", "ution", "_\",", "\ufffd", "@"], [" @", "\n\n", " --", " _", " \ufffd", " ,", "er", " \n\n"], [" @", "er", "@", "ary", " effort", " discarded", " trash", "en"], [" \n", "er", " trash", " ____", " garbage", "ary", "en", " \n    \n"], [" \n", "er", " trash", " garbage", "ary", " discarded", " effort", " anything"], ["er", " anything", " @", " effort", " ...", " something", "@", " ."], [" anything", " effort", "er", " things", " for", " everything", " \u2013", " something"], [" amort", " trash", " scav", " *\u2013", " stash", " budgets", " allocator", " anything"], ["*\",", " amort", "**\u2013", "thing", "*\u201d", "ution", " *\u2013", " stash"], [" *\u2013", "*\",", "**\u2013", "\u2011", "*\u201d", "\u2013", "thing", "ution"], [" *\u2013", "*\",", " amort", "**\u2013", " allocator", "\u2011", "*\u201d", "curring"], [" allocator", "\u2011", " amort", " allocations", " anything", " Allocator", " garbage", " scav"], [" garbage", " scav", " allocator", " trash", " amort", " allocations", "\u5783\u573e", " heap"], [" allocator", " garbage", " scav", " heap", " allocations", " trash", " memory", "Alloc"], [" allocator", " allocations", " allocation", " alloc", "Alloc", " heap", " memory", " malloc"], [" allocator", " allocations", " allocation", "Alloc", " heap", " alloc", " amort", " garbage"], [" allocations", " amort", " allocation", " allocator", " recycle", "Alloc", " Allocation", " garbage"], [" allocations", " amort", " allocator", " allocation", "Alloc", " alloc", " Alloc", " Allocation"], [" allocations", " allocation", " amort", " allocator", " garbage", " alloc", " recycle", " during"], [" allocations", " allocation", " amort", " allocator", " garbage", " alloc", " anywhere", " recycle"], [" allocator", " amort", " allocations", " allocation", " alloc", " malloc", " anywhere", " heap"], [" allocator", " allocations", " amort", " alloc", " during", " allocation", " heap", " anywhere"], [" allocator", "/non", " allocations", " alloc", "malloc", " amort", "alloc", " allocation"], ["/non", " amort", " allocator", "\u2014or", "/no", "*.", "during", "-cost"], ["*.", "**.", "/non", "during", "\u20ac.", " amort", "-clean", "()."], ["*.", "**.", "during", "**\u3002", ".**", "/.", "().", "/non"], ["**.", "*.", "during", "**\u3002", " **.", " during", ">.", "."], ["**.", "*.", "during", ".", ">.", "().", " **.", "{}."], [" allocations", " alloc", " allocator", "alloc", " allocation", " Alloc", " malloc", "Alloc"], [" allocations", "alloc", "**.", " alloc", " malloc", " allocator", "*.", " allocation"], ["**.", " allocations", "alloc", " allocation", " alloc", " malloc", " allocator", " Alloc"], ["**.", " allocations", "alloc", " allocation", " alloc", " allocator", " malloc", " Alloc"], ["**.", " allocations", "alloc", " allocation", "-memory", " memory", " allocator", " alloc"], [" allocation", " allocations", "alloc", " alloc", " allocating", " Allocation", "Alloc", " Alloc"], [" allocation", " allocating", " allocations", " alloc", "alloc", " Allocation", " Alloc", "allocation"], [" allocation", " allocating", "alloc", " allocations", " alloc", " Allocation", "allocation", " Alloc"], ["location", "loc", " allocation", "lication", "alloc", "allocation", "**.", "lo"]], "p": [[0.8715, 0.0317, 0.0247, 0.0103, 0.008, 0.0067, 0.0063, 0.0036], [0.1855, 0.0876, 0.0683, 0.0441, 0.0267, 0.0236, 0.0222, 0.0208], [0.1973, 0.0932, 0.0682, 0.0565, 0.0388, 0.0388, 0.0365, 0.0303], [0.2019, 0.0176, 0.0176, 0.0121, 0.0083, 0.0078, 0.0069, 0.0057], [0.2518, 0.1435, 0.0986, 0.0466, 0.0438, 0.0438, 0.0386, 0.0301], [0.0927, 0.0818, 0.0818, 0.0637, 0.0528, 0.0363, 0.0301, 0.0283], [0.0786, 0.0738, 0.0575, 0.0507, 0.0448, 0.0448, 0.0421, 0.0308], [0.0829, 0.0645, 0.0345, 0.0345, 0.0269, 0.0174, 0.0163, 0.0135], [0.1535, 0.0365, 0.0302, 0.0284, 0.0235, 0.0208, 0.0172, 0.0162], [0.1067, 0.0647, 0.0647, 0.0504, 0.0445, 0.0392, 0.0154, 0.0144], [0.099, 0.093, 0.0873, 0.0467, 0.0413, 0.025, 0.0195, 0.0183], [0.2108, 0.0415, 0.0285, 0.0209, 0.0173, 0.0119, 0.0093, 0.0068], [0.1217, 0.054, 0.0371, 0.0328, 0.0272, 0.0155, 0.0083, 0.0044], [0.0624, 0.0456, 0.0378, 0.0229, 0.0229, 0.0158, 0.004, 0.0037], [0.0437, 0.0249, 0.0234, 0.022, 0.022, 0.0194, 0.0161, 0.0098], [0.031, 0.02, 0.0177, 0.0122, 0.0122, 0.0095, 0.0084, 0.0029], [0.2267, 0.1213, 0.0834, 0.0254, 0.0164, 0.0106, 0.0078, 0.0064], [0.1394, 0.0794, 0.0658, 0.0242, 0.0177, 0.0114, 0.004, 0.0033], [0.0521, 0.049, 0.0262, 0.0192, 0.014, 0.0103, 0.0071, 0.0066], [0.0133, 0.0067, 0.0063, 0.0055, 0.0055, 0.0049, 0.004, 0.0034], [0.5019, 0.0086, 0.0072, 0.0063, 0.0056, 0.0056, 0.0056, 0.0052], [0.0614, 0.005, 0.0044, 0.0042, 0.0042, 0.0037, 0.0033, 0.0024], [0.088, 0.0223, 0.0184, 0.0135, 0.0119, 0.0077, 0.0072, 0.0068], [0.3086, 0.0473, 0.0174, 0.0136, 0.0106, 0.0093, 0.0073, 0.0068], [0.0513, 0.0258, 0.0177, 0.0147, 0.013, 0.0114, 0.0107, 0.0101], [0.0074, 0.0062, 0.0051, 0.0042, 0.0031, 0.0027, 0.0027, 0.0026], [0.0128, 0.0093, 0.0077, 0.006, 0.0047, 0.0041, 0.0041, 0.0037], [0.0387, 0.0341, 0.025, 0.0183, 0.0118, 0.0111, 0.0067, 0.0052], [0.0277, 0.0216, 0.0085, 0.0062, 0.0051, 0.0048, 0.0048, 0.0042], [0.0548, 0.0228, 0.0079, 0.007, 0.0065, 0.0061, 0.0054, 0.0045], [0.039, 0.0222, 0.0119, 0.0119, 0.0068, 0.0064, 0.0056, 0.0053], [0.0178, 0.0115, 0.0095, 0.0089, 0.0079, 0.0079, 0.0058, 0.0058], [0.0175, 0.0145, 0.0113, 0.0078, 0.0064, 0.0064, 0.0057, 0.0053], [0.0078, 0.0044, 0.0042, 0.0037, 0.0035, 0.0031, 0.0029, 0.0029], [0.0057, 0.0057, 0.0051, 0.0042, 0.0039, 0.0035, 0.0033, 0.0033], [0.0217, 0.0169, 0.014, 0.014, 0.0132, 0.0052, 0.0043, 0.0043], [0.0125, 0.0117, 0.0086, 0.0076, 0.0067, 0.0067, 0.0052, 0.0052], [0.0185, 0.0127, 0.0127, 0.0064, 0.006, 0.0056, 0.005, 0.0047], [0.0648, 0.0326, 0.0238, 0.0174, 0.0164, 0.0128, 0.0093, 0.0093], [0.0412, 0.0321, 0.0207, 0.0195, 0.0183, 0.0142, 0.0134, 0.0126], [0.0582, 0.04, 0.0228, 0.0201, 0.0189, 0.0189, 0.0177, 0.0167], [0.0848, 0.0797, 0.0401, 0.0376, 0.0275, 0.0243, 0.0214, 0.0214], [0.1162, 0.0549, 0.0549, 0.0485, 0.0259, 0.0244, 0.0244, 0.0244], [0.0769, 0.0363, 0.0363, 0.0341, 0.0207, 0.0172, 0.0134, 0.0118], [0.0809, 0.0491, 0.0461, 0.028, 0.0181, 0.0159, 0.0132, 0.0097], [0.0897, 0.0451, 0.0398, 0.0291, 0.0188, 0.0156, 0.0107, 0.0107], [0.0402, 0.0333, 0.0244, 0.0168, 0.013, 0.0115, 0.0115, 0.0079], [0.0354, 0.0189, 0.0167, 0.013, 0.0122, 0.0122, 0.0095, 0.0095], [0.0324, 0.0252, 0.0119, 0.0099, 0.0082, 0.0082, 0.0072, 0.006], [0.0898, 0.0129, 0.0121, 0.0121, 0.0114, 0.0089, 0.0089, 0.0069], [0.0779, 0.0346, 0.0153, 0.0135, 0.0068, 0.0064, 0.006, 0.006], [0.2311, 0.204, 0.0139, 0.0084, 0.0084, 0.0079, 0.0079, 0.0074], [0.4257, 0.1889, 0.0165, 0.0129, 0.0107, 0.0088, 0.0083, 0.0073], [0.313, 0.1783, 0.0166, 0.0146, 0.0107, 0.0101, 0.0089, 0.0083], [0.188, 0.1464, 0.1464, 0.114, 0.0475, 0.042, 0.0394, 0.0394], [0.1582, 0.1232, 0.1021, 0.0547, 0.0482, 0.0332, 0.0332, 0.0311], [0.3611, 0.1328, 0.0806, 0.0431, 0.0405, 0.0358, 0.0262, 0.018], [0.3433, 0.1838, 0.0766, 0.0495, 0.0436, 0.0249, 0.0234, 0.0194], [0.4087, 0.0971, 0.0405, 0.038, 0.0278, 0.0245, 0.0203, 0.0191], [0.3648, 0.2213, 0.1953, 0.0922, 0.0264, 0.016, 0.0141, 0.0141], [0.564, 0.1111, 0.098, 0.0525, 0.0463, 0.0281, 0.0219, 0.0133], [0.5458, 0.2008, 0.054, 0.0448, 0.0328, 0.0308, 0.0255, 0.0212], [0.4638, 0.4638, 0.0217, 0.0102, 0.0085, 0.0055, 0.004, 0.0033]], "ranks": {}}, {"pos": 558, "top": [[",", ".", ";", " \u2013", "\u2013", ":", "e", "\","], ["een", "er", "al", "e", "\u0627\u064b", ".", " (\"", "eer"], [".", ",", ";", "er", "e", "al", ".[", "?"], ["erio", "aire", "\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a\uff0a", "\ufffd\ufffd", "\uff1d\uff1d\uff1d\uff1d", "\uff0a\uff0a\uff0a\uff0a", " Strec", "\u4f46\u4e0d\u9650\u4e8e"], ["aire", ".", "\uff06", "\uff20", "eer", "\u0629", "ation", "al"], [" \u201c.", " (\u201c", "\uff1d\uff1d\uff1d\uff1d", "aire", "\uff06", " Modification", " kecel", " Purchase"], [" (\u201c", " \u201c.", " (\"", ".\u201d", "aire", " ().", "\u201d.", "\u4f46\u4e0d\u9650\u4e8e"], ["aire", " AAC", "\u4f46\u4e0d\u9650\u4e8e", " ().", "AAC", "ation", "\u0629", " \u201c."], [".\u201d", ".", "aire", " \u201c.", "\u2011", " ().", ".\u201d*", "\u201d."], [",", "\u2011", ".", ";", "aire", ".\",", ".\"", ".\");"], [".", ",", "\u2011", ".\"", ".[", ";", ".*", ".\","], ["aire", "\u2011", " potentially", " entirety", " allocation", ".\",\"", "al", "ation"], [" entirety", " potentially", "\u2011", "aire", "al", " transformative", " incentiv", " priorit"], [" entirety", ",", "aire", "al", " potentially", "-esque", " weaponry", "\u2011"], [" entirety", " purported", " requisite", " potentially", " utilizing", " arguably", " myriad", " via"], [" entirety", " arguably", " potentially", " purported", "-esque", " myriad", " requisite", " ostensibly"], [" entirety", "e", " potentially", "-esque", " myriad", " massively", ",", " arguably"], [" entirety", "-esque", " massively", " potentially", "e", " bespoke", " myriad", " via"], [" entirety", "-esque", "e", " myriad", " massively", " arguably", " weaponry", " whatsoever"], [" entirety", " \ufffd", "e", " myriad", "aire", " \u2014", " whatsoever", "\u6b64\u79cd"], ["<|endoftext|>", " \n\n", "e", " entirety", " \u2014", " \n\n\n", " \ufffd", " myriad"], [" entirety", " massively", " resources", "aire", " downtime", " space", " allocator", " entirely"], [" entirety", "e", " ,", " ;", " \ufffd", " --", " space", " \u2014"], [" ,", "<|endoftext|>", "e", " [...]", " .", " ;", " \ufffd", " ..."], [" ,", " [...]", "<|endoftext|>", " \n\n", " [[", "e", "[[", "\n\n"], [" [...]", " ____", " ...", " ,", " ________", " [[", " __", " \ufffd"], [" ,", " @", " ;", " ____", " --", " $", " ________", " \u2014"], [" ,", " __", " @", " --", " ____", " ________", "\n\n", " ."], [" ,", " .", " ...", " @", " :", " ?", " ;", " --"], [" ...", " ____", " __", " \n", " .", " ________", " ,", " ______"], [" .", " ,", " \n", " ...", " for", " and", " ?", " ;"], [" .", " ...", " ,", " for", " and", " [...]", " -", " at"], [" .", " ,", " \u2014", " for", " and", " \u2013", " at", " -"], [" \u2013", " \u2014", " ,", "\u2011", " for", " via", " .", " using"], [" \u2014", " \u2013", " ,", " .", " \u201c", " free", " /", "\u2011"], [" \u2014", " \u2013", " .", " \u201c", " ,", "\u2011", " (\u201c", " /"], [" \u2014", " .", " \u2013", " \u201c", " entirely", " ,", " via", " (\u201c"], [" .", " \u2014", " ,", " \u2013", " entirely", " \u201c", " for", " via"], [" \u2014", " .", " entirely", " \u2013", " ,", " via", " \u201c", " free"], [" .", " \u2014", " entirely", "\u2011", " via", " \u2013", " during", " \u201c"], [" .", " (\u201c", " during", " \u2014", " entirely", "\u2011", " \u2013", " free"], [" \u2014", " .", " entirely", " during", " routines", " free", " via", " non"], [" .", " routines", " routine", " during", " free", " entirely", " \u2014", " zero"], [" during", " routines", " routine", " using", " entirely", " \u2014", " .", " zero"], [" during", " .", " routines", " entirely", " using", " routine", " \u2014", " clean"], [" during", " using", " routines", " routine", " via", " .", " entirely", " \u2014"], [" \u2014", " during", " entirely", " using", " routines", " \u2013", " every", " routine"], [" during", " using", " entirely", " every", " \u2014", " routines", " via", " daily"], [" using", " during", ".", " .", " via", " \u2014", "**.", "*."], [" during", ".", " using", "*.", " ().", "/non", "().", " routines"], [".", "*.", "().", "**.", " ().", "/non", " using", " ."], ["*.", "().", ".", "**.", " ().", " using", "\u65f6\u4f7f\u7528", "-using"], [" Use", " use", ".", "*.", "**.", "\u65f6\u4f7f\u7528", "-use", " uses"], [" Use", " during", " use", " uses", "\u65f6\u4f7f\u7528", "-use", ".", "*."], [" use", "-use", " Use", " Allocate", " reuse", " allocate", " uses", " during"], [" use", " reuse", " Use", "-use", " uses", "Use", "/use", ".Use"], ["**.", " Use", " use", " reuse", "-use", "Use", ".Use", " uses"], ["**.", " Use", " use", "-use", " reuse", "Use", ".Use", " uses"], [" Use", " use", "**.", "-use", "Use", " reuse", ".Use", " uses"], ["**.", " Use", " use", "-use", " reuse", "Use", " uses", "`."], ["**.", ".", "*.", " Use", " use", "`.", " per", " reuse"], ["**.", "*.", "`.", ".", "**", " Use", " use", "\"."], ["**.", "**", ".**", "**\u3002", " **.", "**:", "**,", "*."]], "p": [[0.6858, 0.2859, 0.0111, 0.0026, 0.0018, 0.0013, 0.0013, 0.001], [0.0169, 0.0066, 0.0055, 0.0055, 0.0055, 0.0051, 0.0043, 0.004], [0.6559, 0.2267, 0.0198, 0.0047, 0.003, 0.0027, 0.0025, 0.0021], [0.0224, 0.0128, 0.0113, 0.0088, 0.0088, 0.0078, 0.0068, 0.0064], [0.0372, 0.0272, 0.0176, 0.0137, 0.0114, 0.0094, 0.0094, 0.0073], [0.0205, 0.0059, 0.0046, 0.004, 0.003, 0.0028, 0.002, 0.0019], [0.0702, 0.0547, 0.0167, 0.0157, 0.0115, 0.0095, 0.0079, 0.007], [0.0199, 0.0155, 0.0083, 0.0065, 0.0057, 0.0047, 0.0044, 0.0039], [0.0243, 0.0201, 0.0178, 0.0157, 0.0122, 0.0108, 0.0095, 0.0095], [0.0978, 0.0193, 0.017, 0.011, 0.0085, 0.0085, 0.008, 0.0055], [0.1508, 0.0915, 0.046, 0.0316, 0.0204, 0.018, 0.0149, 0.0116], [0.0123, 0.009, 0.0033, 0.0031, 0.0026, 0.0026, 0.0026, 0.0023], [0.0133, 0.0067, 0.0063, 0.0052, 0.0036, 0.0031, 0.0031, 0.003], [0.0551, 0.0123, 0.007, 0.0042, 0.004, 0.0035, 0.0035, 0.0029], [0.0574, 0.01, 0.0083, 0.0057, 0.0053, 0.005, 0.0044, 0.0035], [0.0727, 0.0119, 0.0098, 0.0082, 0.0064, 0.006, 0.0056, 0.0053], [0.0951, 0.0165, 0.0137, 0.0083, 0.0073, 0.0069, 0.0069, 0.0061], [0.092, 0.008, 0.0071, 0.0043, 0.0043, 0.0038, 0.0033, 0.0023], [0.11, 0.0066, 0.0048, 0.0048, 0.0043, 0.0038, 0.0033, 0.0031], [0.066, 0.007, 0.0065, 0.0035, 0.0031, 0.0029, 0.0024, 0.0023], [0.2242, 0.0603, 0.0162, 0.0153, 0.0126, 0.0126, 0.0105, 0.0041], [0.0604, 0.0027, 0.0025, 0.0022, 0.0021, 0.0021, 0.0019, 0.0019], [0.0261, 0.0131, 0.0102, 0.008, 0.0075, 0.0051, 0.0048, 0.0045], [0.0869, 0.0869, 0.0527, 0.0282, 0.0206, 0.0171, 0.0081, 0.0076], [0.09, 0.0482, 0.0352, 0.0352, 0.0352, 0.0292, 0.0242, 0.0201], [0.1106, 0.076, 0.0592, 0.0491, 0.0382, 0.0192, 0.015, 0.0117], [0.1556, 0.0691, 0.0154, 0.0145, 0.0128, 0.0128, 0.0113, 0.0099], [0.3552, 0.0424, 0.0424, 0.033, 0.033, 0.031, 0.0274, 0.0227], [0.2367, 0.0637, 0.0438, 0.0249, 0.0161, 0.0151, 0.0151, 0.0142], [0.1673, 0.1476, 0.079, 0.079, 0.0742, 0.0543, 0.0373, 0.0241], [0.3493, 0.187, 0.0368, 0.0325, 0.0163, 0.0127, 0.0099, 0.0077], [0.2929, 0.1473, 0.0893, 0.0187, 0.0137, 0.0114, 0.01, 0.0088], [0.1802, 0.1403, 0.0333, 0.0294, 0.026, 0.0244, 0.0157, 0.0131], [0.12, 0.0935, 0.0252, 0.0162, 0.0119, 0.0119, 0.0112, 0.0093], [0.2099, 0.1055, 0.0172, 0.0162, 0.0126, 0.0111, 0.0111, 0.0104], [0.4165, 0.1967, 0.0342, 0.0302, 0.0195, 0.0172, 0.0143, 0.0134], [0.5469, 0.0695, 0.024, 0.0155, 0.0114, 0.0114, 0.0073, 0.0061], [0.2503, 0.134, 0.0339, 0.0281, 0.0264, 0.0233, 0.0133, 0.0125], [0.1652, 0.1135, 0.0445, 0.0238, 0.0185, 0.0164, 0.0164, 0.0136], [0.1691, 0.0705, 0.0333, 0.0259, 0.0202, 0.019, 0.0139, 0.0139], [0.1546, 0.0223, 0.0209, 0.0209, 0.0185, 0.0153, 0.0127, 0.0119], [0.096, 0.0902, 0.0376, 0.0312, 0.0214, 0.0201, 0.013, 0.0122], [0.0451, 0.0424, 0.0213, 0.02, 0.02, 0.0177, 0.0166, 0.0156], [0.062, 0.0514, 0.0332, 0.0214, 0.0201, 0.0201, 0.0115, 0.0115], [0.1761, 0.0393, 0.0369, 0.0288, 0.0254, 0.021, 0.0198, 0.0145], [0.1015, 0.0543, 0.0373, 0.0257, 0.0257, 0.0257, 0.0226, 0.0176], [0.1019, 0.0512, 0.0352, 0.0352, 0.0311, 0.0242, 0.0189, 0.0166], [0.1094, 0.0966, 0.0295, 0.0277, 0.0244, 0.0202, 0.0148, 0.0139], [0.2202, 0.1255, 0.0491, 0.036, 0.0298, 0.0247, 0.0192, 0.0181], [0.1826, 0.0978, 0.0298, 0.028, 0.0193, 0.015, 0.0132, 0.0103], [0.167, 0.1222, 0.0577, 0.0397, 0.0273, 0.0176, 0.0176, 0.0121], [0.1743, 0.0933, 0.0933, 0.0469, 0.0343, 0.0303, 0.0184, 0.0184], [0.1143, 0.0738, 0.0612, 0.0612, 0.0575, 0.0448, 0.042, 0.042], [0.091, 0.0803, 0.0666, 0.0666, 0.0552, 0.0458, 0.043, 0.0379], [0.1514, 0.0918, 0.0918, 0.0761, 0.0672, 0.0523, 0.0434, 0.028], [0.3379, 0.2049, 0.1243, 0.1097, 0.0277, 0.0277, 0.0245, 0.0191], [0.2462, 0.1692, 0.1493, 0.1163, 0.0622, 0.0378, 0.019, 0.0168], [0.27, 0.2103, 0.1856, 0.0602, 0.0532, 0.0365, 0.0196, 0.0134], [0.3696, 0.1978, 0.1746, 0.0642, 0.039, 0.0236, 0.0143, 0.0119], [0.2731, 0.241, 0.2127, 0.037, 0.0288, 0.0154, 0.0128, 0.0099], [0.7332, 0.0602, 0.0343, 0.0251, 0.0221, 0.0172, 0.0134, 0.0072], [0.9338, 0.0282, 0.0118, 0.0036, 0.0026, 0.0023, 0.0019, 0.0018], [0.9668, 0.0331, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 559, "top": [["s", "  \n\n", " \u2013", " \n\n", "**.", "\u2026.", ".", "  \n"], ["s", " **\u2013", " **[", "  \n\n", " (**", " \"**", " **", "**\u2013"], ["s", " **\u2013", " **[", "**\u2013", "**.", "**!", "\u2026**", " **."], [" **\u300c", " **:", " **\u00ab", " **+", " **\u201e", "\u52a0\u62ff\u5927", " \u00bb**", " **."], ["s", " **#", " **.", " **", " **+", " **[", "\u65b0\u52a0\u5761", " \n\n\n\n"], ["s", " **", " **.", " **#", "**!", " **:", "\u65b0\u52a0\u5761", " **+"], ["s", " \n\n", " **", " **[", " **.", "**!", " \n\n\n\n", " **#"], ["s", " **", " \n\n", " **.", " **[", " **#", "**!", " **+"], [" \n\n", "s", " **", " **[", " \n\n\n\n", " **.", "**!", " \r\n\r\n"], ["s", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", " **", "\u76f8\u8f85\u76f8\u6210", " **#", " **[", " \"**"], ["s", " **", " **#", " **[", " \n\n", " **+", " **.", " \"**"], [" **", " **#", " **+", "s", " **\u00ab", " **\u300c", " \"**", " **["], [" **", "s", " **\u00ab", " **+", " **#", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "\u65b0\u52a0\u5761"], ["s", " **", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "a\u015f", "sste", " **+"], ["s", " **", " albeit", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", " swiftly", " entirety", " arguably"], ["s", " **", "\u65b0\u52a0\u5761", " swiftly", " albeit", "\u52a0\u62ff\u5927", "sste", " arguably"], ["s", " albeit", " **", " arguably", " entirety", " whilst", "\u65b0\u52a0\u5761", " akin"], [" **", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "sste", " \"**", "a\u015f", " **\u00ab", " **+"], ["sste", "\u52a0\u62ff\u5927", "s", "\u62e5\u6709\u7740", " entirety", "a\u015f", " albeit", "\u65b0\u52a0\u5761"], [" albeit", "\u62e5\u6709\u7740", " entirety", "sste", "\u52a0\u62ff\u5927", " swiftly", " arguably", "s"], [" swiftly", " albeit", "\u62e5\u6709\u7740", "s", " arguably", " merely", " entirety", "\u5373\u4fbf\u662f"], ["sste", "\u62e5\u6709\u7740", "satz", "\u52a0\u62ff\u5927", "sii", "aufen", "sium", "\u306f\u4e00\u5207"], ["\u62e5\u6709\u7740", "sste", "\u52a0\u62ff\u5927", " swiftly", " arguably", " entirety", "satz", "\u5750\u62e5"], ["\u62e5\u6709\u7740", " swiftly", " arguably", " merely", " ``", " entirety", " albeit", "sste"], [" \n\n", " \r\n\r\n", "\r\n\r\n", " swiftly", "\u62e5\u6709\u7740", " arguably", " \n\n\n\n", "Whilst"], [" **", " \r\n\r\n", " \n\n", "\u62e5\u6709\u7740", " arguably", " **+", " meticulously", " **#"], [" \n\n", " **", " \r\n\r\n", " arguably", " meticulously", "\u62e5\u6709\u7740", "\r\n\r\n", " swiftly"], [" \n\n", " **", " arguably", " meticulously", " \r\n\r\n", " merely", " heavily", " largely"], [" \n\n", " **", " arguably", " meticulously", " even", " ultimately", " heavily", " \r\n\r\n"], [" **", " \n\n", " even", " meticulously", " arguably", " heavily", " ,", " aggressively"], [" ,", " even", " \n\n", " **", " heavily", " meticulously", " through", " fully"], [" ,", " even", " **", " through", " many", " only", " meticulously", " using"], [" even", " ,", " using", " heavily", " meticulously", " through", " fully", " essentially"], [" meticulously", " using", " heavily", " aggressively", " fully", " even", " util", " essentially"], [" meticulously", " using", " heavily", " aggressively", " fully", " purely", " strictly", " massively"], [" meticulously", " heavily", " using", " aggressively", " strictly", " massively", " purely", " deliberately"], [" meticulously", " using", " aggressively", " heavily", " strictly", " massively", " deliberately", " avoiding"], [" meticulously", " using", " aggressively", " deliberately", " heavily", " avoiding", " strictly", " massively"], [" meticulously", " using", " aggressively", " deliberately", " use", " everything", " avoiding", " strictly"], [" using", " use", " meticulously", " uses", " utilizing", " everything", "using", " aggressively"], [" using", " use", " uses", " meticulously", " everything", " utilizing", "using", " relying"], [" using", " use", " uses", " utilizing", " meticulously", " reusable", " reuse", " everything"], [" using", " use", " uses", " meticulously", " utilizing", " reusable", " reuse", " techniques"], [" using", " use", " utilizing", " uses", " reusable", " meticulously", " reuse", "using"], [" using", " use", " uses", " utilizing", " meticulously", " reusable", "using", " reuse"], [" using", " use", " meticulously", " uses", " utilizing", " everything", " reusable", " every"], [" using", " meticulously", " use", " everything", " EVERY", " uses", " every", " everywhere"], [" using", " use", " meticulously", " uses", "using", " Using", " everything", " everywhere"], [" using", " use", " uses", "using", " meticulously", " menggunakan", " utilizes", " utilizing"], [" use", " using", " uses", "using", " meticulously", " Use", " menggunakan", " Using"], ["\u4e25\u7981", "\u5c06\u6240\u6709", "\u628a\u6240\u6709\u7684", "\u6240\u6709\u7684", "\u306f\u4e00\u5207", " meticulously", "everything", "\u4f7f\u7528"], [" Use", " use", "\u4f7f\u7528", " uses", "Use", "-use", " Using", "using"], [" Use", " use", " reuse", "-use", "Use", "\u4f7f\u7528", " uses", " reusable"], [" Use", " use", " reuse", "-use", " uses", "Use", "\u4f7f\u7528", "reuse"], [" Use", " use", " reuse", "-use", "\u4f7f\u7528", "Use", " uses", "reuse"], [" use", " Use", " reuse", "-use", "reuse", "Use", "\u4f7f\u7528", "use"], [" Use", " reuse", " Every", " use", "reuse", "-use", "Use", " every"], [" Use", " Every", " use", " reuse", "-use", " every", " aggressively", "Use"], [" Use", " Every", " use", " reuse", " aggressively", " every", "-use", "Use"], [" Every", " every", " Use", " use", " reuse", "every", " EVERY", "-use"], [" Use", " Every", " every", " use", " reuse", " pre", " Pre", " Allocate"], [" Use", " use", " Every", " reuse", " Pre", " pre", " Allocate", "-use"], [" Use", " Every", " Pre", " Implement", " Allocate", " use", " Pool", " Cache"]], "p": [[0.8444, 0.1008, 0.0327, 0.0094, 0.0032, 0.0021, 0.0011, 0.0007], [0.2979, 0.1807, 0.1242, 0.0518, 0.0457, 0.0379, 0.0334, 0.026], [0.6634, 0.1901, 0.0424, 0.0257, 0.02, 0.0156, 0.0107, 0.0057], [0.1173, 0.0914, 0.0806, 0.0668, 0.059, 0.0432, 0.0405, 0.0358], [0.8125, 0.0405, 0.0357, 0.0217, 0.0131, 0.0102, 0.0102, 0.008], [0.7835, 0.0568, 0.0442, 0.0163, 0.0099, 0.0099, 0.0099, 0.0087], [0.9876, 0.0052, 0.0031, 0.0017, 0.0007, 0.0004, 0.0002, 0.0001], [0.8432, 0.0784, 0.0198, 0.0154, 0.012, 0.0057, 0.0044, 0.0027], [0.7951, 0.1382, 0.0146, 0.0146, 0.0078, 0.0061, 0.0042, 0.0037], [0.242, 0.1143, 0.089, 0.0836, 0.0786, 0.0575, 0.0448, 0.0225], [0.666, 0.2776, 0.0177, 0.0157, 0.0045, 0.0027, 0.0024, 0.0013], [0.9571, 0.0106, 0.0073, 0.005, 0.0044, 0.0027, 0.0024, 0.0016], [0.8696, 0.0809, 0.0071, 0.0062, 0.0052, 0.0049, 0.0022, 0.0019], [0.2427, 0.228, 0.0695, 0.0695, 0.0372, 0.0155, 0.0114, 0.0114], [0.56, 0.0807, 0.0091, 0.0085, 0.008, 0.0066, 0.0062, 0.0055], [0.7593, 0.0623, 0.0079, 0.0051, 0.0035, 0.0035, 0.0029, 0.0029], [0.848, 0.0061, 0.0054, 0.005, 0.0033, 0.0031, 0.0029, 0.0021], [0.0962, 0.0515, 0.0515, 0.0293, 0.0167, 0.013, 0.013, 0.0122], [0.0313, 0.0276, 0.0148, 0.013, 0.0108, 0.0102, 0.0102, 0.0095], [0.0157, 0.0148, 0.0095, 0.009, 0.0084, 0.0079, 0.007, 0.0058], [0.03, 0.0091, 0.0081, 0.0071, 0.0059, 0.0052, 0.0052, 0.0049], [0.0108, 0.009, 0.0079, 0.0058, 0.0029, 0.0027, 0.0024, 0.002], [0.0131, 0.0058, 0.0043, 0.004, 0.0033, 0.0031, 0.0024, 0.0024], [0.0088, 0.0083, 0.0073, 0.0061, 0.0044, 0.0044, 0.003, 0.0024], [0.1492, 0.1237, 0.0244, 0.0054, 0.0051, 0.0048, 0.004, 0.0035], [0.1339, 0.0141, 0.0125, 0.0086, 0.0063, 0.0049, 0.004, 0.004], [0.0509, 0.0272, 0.0129, 0.0094, 0.0069, 0.0057, 0.005, 0.0047], [0.153, 0.0529, 0.0283, 0.0098, 0.0098, 0.0072, 0.0072, 0.0072], [0.228, 0.1383, 0.0372, 0.024, 0.0114, 0.01, 0.0094, 0.0088], [0.5664, 0.0265, 0.0171, 0.0142, 0.011, 0.011, 0.0086, 0.0081], [0.0966, 0.0456, 0.0456, 0.0277, 0.0148, 0.0139, 0.0108, 0.0108], [0.1048, 0.0495, 0.0151, 0.0151, 0.0133, 0.0125, 0.0118, 0.0118], [0.038, 0.023, 0.0169, 0.0149, 0.0131, 0.0131, 0.0109, 0.0096], [0.0513, 0.0292, 0.0228, 0.0138, 0.0122, 0.0122, 0.0122, 0.0095], [0.129, 0.0224, 0.0211, 0.0154, 0.0113, 0.0093, 0.0077, 0.0073], [0.1871, 0.0305, 0.0269, 0.0144, 0.0127, 0.0112, 0.0099, 0.0082], [0.1386, 0.0373, 0.0291, 0.0166, 0.0156, 0.0114, 0.0114, 0.0107], [0.1374, 0.0446, 0.0198, 0.012, 0.012, 0.012, 0.0088, 0.0083], [0.1543, 0.0776, 0.0173, 0.0127, 0.0119, 0.0112, 0.0105, 0.0099], [0.506, 0.0729, 0.0442, 0.0237, 0.0184, 0.0112, 0.0087, 0.0068], [0.6357, 0.0916, 0.0279, 0.018, 0.0109, 0.0085, 0.0075, 0.004], [0.6268, 0.0848, 0.0259, 0.0189, 0.0167, 0.0065, 0.0061, 0.0045], [0.5856, 0.0793, 0.0257, 0.0242, 0.0227, 0.0177, 0.0095, 0.0057], [0.6171, 0.0946, 0.0327, 0.0271, 0.0225, 0.0145, 0.0113, 0.0057], [0.6388, 0.0865, 0.0264, 0.0233, 0.017, 0.0133, 0.0071, 0.0071], [0.5754, 0.0779, 0.0606, 0.0237, 0.0223, 0.0163, 0.0082, 0.0064], [0.3176, 0.1926, 0.091, 0.0487, 0.0261, 0.0216, 0.0203, 0.0191], [0.6356, 0.1105, 0.046, 0.046, 0.0279, 0.0132, 0.0116, 0.0103], [0.3449, 0.0988, 0.077, 0.0529, 0.0387, 0.0142, 0.0134, 0.0118], [0.1179, 0.1179, 0.081, 0.0557, 0.0492, 0.0298, 0.0181, 0.017], [0.0558, 0.0299, 0.028, 0.028, 0.0218, 0.0218, 0.0193, 0.016], [0.1985, 0.0938, 0.0828, 0.0391, 0.0304, 0.0269, 0.0237, 0.0197], [0.4247, 0.2006, 0.0738, 0.0507, 0.0395, 0.0308, 0.0211, 0.0113], [0.3752, 0.138, 0.138, 0.0448, 0.0349, 0.0308, 0.0272, 0.0272], [0.2995, 0.2643, 0.0972, 0.0757, 0.0279, 0.0279, 0.0246, 0.0169], [0.309, 0.2406, 0.2123, 0.0885, 0.0326, 0.0224, 0.0198, 0.0136], [0.5472, 0.1384, 0.0951, 0.0577, 0.035, 0.0187, 0.0187, 0.0114], [0.5996, 0.1181, 0.0716, 0.0558, 0.0181, 0.016, 0.016, 0.0141], [0.6521, 0.1133, 0.0535, 0.0472, 0.0253, 0.0135, 0.0093, 0.0072], [0.3839, 0.2639, 0.2329, 0.0459, 0.0169, 0.008, 0.0048, 0.0043], [0.4838, 0.4269, 0.045, 0.0146, 0.0069, 0.0027, 0.0019, 0.0016], [0.9317, 0.0319, 0.0117, 0.0043, 0.0041, 0.0025, 0.0018, 0.0013], [0.988, 0.0059, 0.0022, 0.0008, 0.0008, 0.0006, 0.0001, 0.0001]], "ranks": {}}, {"pos": 560, "top": [[".", ",", ";", "\u2013", " \u2013", "?", "\u00a0", "\u00a0\u00a0"], ["\u2013", ".", ",", ";", " \u2013", "?", ":", "\u2014"], [",", ".", "\u2013", ";", "?", "\u2026", " \u2013", ":"], [" Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " YYS", "uggy", " milfs", " Geile", " councill", "erias"], ["\u2022", "\u00a0\u00a0", "//@", "\u2014", " \u2014", "!", "\u00ac", "{//"], ["\u00a0\u00a0", "\u2026.", "!", " \u200b\u200b", ":", "odge", ",\u2014", "boat"], ["\u2014\"", "\u2014\u2014", "!\u00bb", "\u2014", "\u0e22\u0e4c", ",\u2014", ".\u2014", "ably"], ["iland", " Teixe", "indle", "ably", "able", "FUL", "\u0441\u044f", "////////////////////////////////////////////////"], [":...", ",\u2014", "...\u201d", "?...", "!:", "!\u201d", "!\u00bb", "!\u201d."], ["\u00ading", "\u2013", "\u2014\"", "\u30c3\u30b3", "\u00adtion", "\u2013and", "\u00ads", "\u2014"], ["\u2013", "\u2014", "\u00a0", "...", "\u00ad", ",", " \u00ad", "\u2014\""], ["iland", "\u30c3\u30b3", " Teixe", "\u00ading", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "ably", "\u8e0f\u8e0f\u5b9e", "/use"], [" Teixe", "iland", "\u5c31\u8dd1", "\u30c3\u30b3", "/use", "\u9591", "utang", "\u6027\u529f\u80fd"], ["\u30c3\u30b3", " Teixe", " savvy", "\u9591", "/use", "\u99a8", "iland", "\u5c31\u8dd1"], [" savvy", "\u30c3\u30b3", "fully", "\u2014", "\u9591", "\u2014\"", " aggressively", "ably"], [" savvy", " plenty", " folks", " nicely", " tech", "\u9591", " \u2014", "fully"], ["\u2013", " savvy", "\u2014", " plenty", " myriad", " tech", " nicely", " \u2014"], [" savvy", "\u2013", " \u2014", "\u2014", "\u30c3\u30b3", " aggressively", " tech", "\u2014\""], ["\u2014", "\u2014\"", " \u2014", "\u2014or", "\u2014even", "\u2014not", "\u2014but", " savvy"], [" \u2014", "\u2014\"", "\u2014", "\u2014or", "\u2014even", " myriad", "\u2014and", "\u2014not"], ["<|endoftext|>", " \n\n", " \u2014", "  \n\n", "\u2014", "\u2014\"", " myriad", "\n\n"], [" creatively", " ;;^", "\ufffd\ufffd", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " Teixe", " aggressively", "eriop", "\u597d\u597d\u5730"], [" heavily", " ``", " aggressively", " rather", " {{--<", " continually", " modern", "\ufffd\ufffd"], [" rather", " continually", " heavily", " much", " both", " various", " {{--<", " fully"], [" \n\n", "\n\n", "  \n\n", " heavily", " \u2014", "   \n\n", " \r\n\r\n", " continually"], [" heavily", "\ufffd\ufffd", "\ufffd\ufffd", " {{--<", " T\u00e9cn", " modern", " t\u00e9cn", " aggressively"], [" heavily", " {{--<", " \u2014", " tools", "\ufffd\ufffd", " T\u00e9cn", "\ufffd\ufffd", " techniques"], ["\n\n", " \n\n", " \u2014", "  \n\n", " heavily", " @", " various", " util"], [" heavily", " \u2014", " myriad", " \n\n", " tools", " aggressively", " modern", " util"], [" ...", " [...]", " tools", " heavily", " modern", " techniques", " systems", " \u2014"], [" ...", " tools", " systems", " modern", " heavily", " techniques", " technologies", " models"], [" ...", " [...]", " modern", " heavily", " multiple", " tools", " systems", " various"], [" heavily", " modern", " systems", " non", " tools", " aggressively", " various", " multiple"], [" modular", " technologies", " techniques", " algorithms", " systems", " methodologies", " meticulously", " tools"], [" methodologies", " algorithms", " technologies", " meticulously", " modular", " techniques", " tools", " systems"], [" algorithms", " modular", " techniques", " technologies", " methodologies", " meticulously", " Modular", " reusable"], [" algorithms", " reusable", "Reuse", " reuse", " techniques", " modular", " technologies", " implementations"], [" algorithms", " reusable", " reuse", "Reuse", " techniques", " tools", " arrays", " implementations"], [" algorithms", " reusable", " reuse", " tools", " arrays", "Reuse", " techniques", " meticulously"], [" reusable", " reuse", " algorithms", " arrays", "Reuse", " tools", " allocations", " scav"], [" arrays", " algorithms", " reusable", " structs", " Storage", " reuse", " allocations", " Allocator"], [" reusable", " reuse", " arrays", " containers", "Reuse", " recycle", " Storage", " recycling"], [" reusable", " reuse", " arrays", " containers", " recycle", " structs", " Storage", " recycl"], [" reusable", " reuse", " Use", " arrays", " containers", " recycle", " Static", " Storage"], [" reusable", " reuse", " arrays", " structs", " Use", " recycle", " containers", " reused"], [" reusable", " reuse", " arrays", " Static", " structs", " Use", " recycle", " reused"], [" reusable", " reuse", " structs", " Use", " arrays", " Static", " recycle", " algorithms"], [" reusable", " Static", " structs", " arrays", " reuse", " Fixed", " Storage", " algorithms"], [" **", ";**", " reusable", " **+", " structs", " arrays", " **\u00ab", "-**"], [";**", " **+", " reusable", "-**", " **>>", " structs", " **\u00ab", " **"], [" reusable", " structs", "Reusable", " **>>", "reuse", ";**", " arrays", " reuse"], [" structs", " reusable", " arrays", " `{", "reuse", " **>>", " Static", ";**"], [" reusable", " reuse", "Reusable", "reuse", "Reuse", " reused", " structs", "\u590d\u7528"], [" reusable", "Reusable", " reuse", "reuse", "Reuse", " [`", " structs", " reused"], [" reusable", "Reusable", " reuse", "reuse", " structs", " static", " immutable", "\u9759\u6001"], [" structs", " arrays", " buffers", " IDisposable", " static", " immutable", "buffers", " extensively"], [" pools", "\u6c60", " pool", " pooling", " pooled", " Pool", "pool", "Pool"], [" pools", "\u6c60", " pool", " pooling", " pooled", " Pool", "pool", "Pool"], [" pools", "\u6c60", " pooled", " pooling", " pool", " Pool", ".pool", "pool"], [" pools", " structs", " pooled", " `", " pooling", " object", " `[", " pool"], [" `", " structs", " `[", " struct", " [`", " pools", " pooled", " object"], [" `", " `[", " object", " structs", " struct", " [`", " (`", " Object"], [" `", " object", " structs", " struct", " `[", " [`", " structural", " Object"]], "p": [[0.6103, 0.3266, 0.0184, 0.0163, 0.0112, 0.006, 0.0023, 0.0018], [0.3836, 0.2326, 0.1599, 0.0804, 0.0588, 0.0131, 0.0062, 0.0045], [0.4845, 0.333, 0.1573, 0.0146, 0.0042, 0.002, 0.0012, 0.0006], [0.0144, 0.0119, 0.0039, 0.0032, 0.0023, 0.0022, 0.0018, 0.0014], [0.018, 0.0116, 0.0096, 0.0085, 0.0066, 0.0058, 0.0051, 0.0035], [0.0232, 0.0066, 0.0049, 0.0043, 0.0033, 0.0028, 0.0023, 0.0022], [0.0121, 0.0114, 0.0078, 0.0057, 0.0057, 0.0047, 0.0044, 0.0039], [0.0063, 0.0046, 0.0032, 0.003, 0.0025, 0.0025, 0.0023, 0.0023], [0.0124, 0.0091, 0.0085, 0.0071, 0.0046, 0.0046, 0.0043, 0.004], [0.0079, 0.0045, 0.0037, 0.0031, 0.0026, 0.0024, 0.0023, 0.0021], [0.2212, 0.0814, 0.0595, 0.0339, 0.0264, 0.0219, 0.0182, 0.016], [0.0051, 0.0048, 0.0026, 0.0019, 0.0016, 0.0015, 0.0014, 0.0014], [0.0034, 0.0022, 0.0016, 0.0015, 0.0014, 0.0012, 0.0012, 0.0011], [0.0031, 0.0021, 0.0021, 0.0016, 0.0015, 0.0013, 0.0009, 0.0009], [0.0067, 0.0043, 0.0025, 0.0023, 0.0019, 0.0019, 0.0014, 0.0014], [0.0155, 0.0047, 0.0032, 0.0031, 0.0021, 0.0019, 0.0016, 0.0015], [0.0135, 0.0093, 0.006, 0.0047, 0.0032, 0.0027, 0.0023, 0.0021], [0.0088, 0.0042, 0.0039, 0.0032, 0.0027, 0.0017, 0.0016, 0.0015], [0.036, 0.0338, 0.0264, 0.0125, 0.0091, 0.0067, 0.0063, 0.0059], [0.016, 0.0117, 0.0117, 0.0067, 0.0055, 0.0052, 0.0036, 0.0028], [0.3276, 0.0174, 0.0105, 0.0077, 0.005, 0.0039, 0.0034, 0.0022], [0.0016, 0.0016, 0.0015, 0.0012, 0.0011, 0.0011, 0.0011, 0.001], [0.0028, 0.0028, 0.0025, 0.0023, 0.0021, 0.0018, 0.0018, 0.0014], [0.0034, 0.0034, 0.003, 0.003, 0.0023, 0.002, 0.0017, 0.0017], [0.0511, 0.0083, 0.0083, 0.0042, 0.0039, 0.0031, 0.0024, 0.0021], [0.0052, 0.0041, 0.0041, 0.0028, 0.0018, 0.0018, 0.0017, 0.0017], [0.0043, 0.0031, 0.003, 0.0026, 0.0026, 0.0023, 0.002, 0.002], [0.0864, 0.0632, 0.015, 0.0075, 0.0071, 0.0033, 0.0031, 0.0031], [0.0076, 0.0053, 0.0049, 0.0049, 0.0044, 0.0034, 0.0032, 0.003], [0.0706, 0.0115, 0.0102, 0.0079, 0.0079, 0.0062, 0.0054, 0.0048], [0.0739, 0.0155, 0.0106, 0.0094, 0.0088, 0.0069, 0.005, 0.005], [0.163, 0.0195, 0.0072, 0.0067, 0.0052, 0.0052, 0.0052, 0.0049], [0.0077, 0.0068, 0.0053, 0.0044, 0.0044, 0.0041, 0.0041, 0.0037], [0.0163, 0.0154, 0.012, 0.0112, 0.0099, 0.0093, 0.0082, 0.0082], [0.0191, 0.0191, 0.0116, 0.0116, 0.0096, 0.0096, 0.0075, 0.004], [0.0314, 0.0203, 0.0116, 0.0102, 0.0096, 0.0075, 0.007, 0.0066], [0.0435, 0.0193, 0.0181, 0.0133, 0.0091, 0.0076, 0.0063, 0.0055], [0.0332, 0.0293, 0.0259, 0.0202, 0.0167, 0.013, 0.0108, 0.0054], [0.0594, 0.0263, 0.0263, 0.016, 0.016, 0.016, 0.015, 0.0086], [0.0382, 0.0337, 0.028, 0.0263, 0.0132, 0.0109, 0.0103, 0.0059], [0.0363, 0.0341, 0.0266, 0.0183, 0.0183, 0.0134, 0.0118, 0.0098], [0.3084, 0.1368, 0.0174, 0.0163, 0.0154, 0.0154, 0.0154, 0.0135], [0.428, 0.0897, 0.0257, 0.0177, 0.0138, 0.0138, 0.0129, 0.0107], [0.3119, 0.0696, 0.0256, 0.0212, 0.0187, 0.0176, 0.0165, 0.0155], [0.4038, 0.0901, 0.0243, 0.0214, 0.0189, 0.0167, 0.0147, 0.013], [0.3832, 0.0519, 0.0315, 0.0216, 0.0191, 0.0123, 0.0123, 0.0109], [0.3342, 0.0425, 0.0399, 0.0274, 0.0274, 0.0214, 0.0079, 0.0079], [0.1334, 0.0592, 0.0491, 0.0461, 0.015, 0.0124, 0.0097, 0.0062], [0.057, 0.0535, 0.0503, 0.0346, 0.0305, 0.0253, 0.0223, 0.0174], [0.0723, 0.0387, 0.0301, 0.0283, 0.025, 0.0207, 0.0195, 0.0183], [0.0584, 0.0333, 0.0167, 0.0157, 0.0101, 0.0095, 0.009, 0.007], [0.0861, 0.0556, 0.0232, 0.0117, 0.0097, 0.0097, 0.0097, 0.0085], [0.6991, 0.0835, 0.0737, 0.0506, 0.0447, 0.01, 0.0034, 0.0021], [0.6997, 0.0947, 0.0574, 0.0447, 0.0211, 0.01, 0.0088, 0.0064], [0.4728, 0.064, 0.0565, 0.0498, 0.044, 0.0343, 0.0162, 0.0118], [0.4365, 0.086, 0.0279, 0.0231, 0.0217, 0.0159, 0.0132, 0.0116], [0.5178, 0.3559, 0.0425, 0.0292, 0.0201, 0.0122, 0.004, 0.0031], [0.5525, 0.2958, 0.0748, 0.0312, 0.0243, 0.0101, 0.0048, 0.0016], [0.4866, 0.158, 0.1394, 0.0846, 0.0746, 0.0242, 0.0079, 0.0048], [0.4274, 0.1225, 0.1081, 0.1081, 0.0578, 0.0578, 0.0398, 0.0166], [0.4098, 0.3192, 0.1508, 0.0336, 0.0262, 0.0231, 0.0096, 0.0058], [0.7075, 0.0845, 0.0746, 0.0746, 0.0214, 0.013, 0.0019, 0.0018], [0.7745, 0.1728, 0.0182, 0.0142, 0.011, 0.0013, 0.0007, 0.0007]], "ranks": {}}, {"pos": 561, "top": [[" `", "\u6700\u65b0\u53d1\u5e03", " \u2013", "\u2013and", "(`", "\u2013", ".`", "=`"], [" `", " `,", " `\\", "(`", ":`", " (`", "\u6700\u65b0\u53d1\u5e03", "}`"], ["\u2013and", "\u6700\u65b0\u53d1\u5e03", "(`", ".`", "\u2013", ":`", ".\u2013", " `"], ["``", " `_", " ``", " ``(", " `", " `\\", " `%", "}`"], [" `", " `_", " `,", " `%", " `\\", "(`", ":`", "}`"], [" `_", " `", " `,", "(`", " `\\", " `%", ":`", " `/"], [" `", " `_", "}`", "(`", ":`", "`", "=`", " `%"], [" `", " `_", "(`", "}`", ":`", " `,", " `%", " `\\"], [" `", " `_", "(`", ":`", "}`", "`", " `\\", "=`"], [" `", "`\\", " `\\", " `_", ":`", "}`", "(`", " `%"], [" `", "`", "(`", "}`", ":`", " `_", " `\\", "`\\"], [" `", " `_", " `\\", " `%", "}`", "(`", ":`", "`\\"], [" `", " `_", " `\\", ":`", "}`", " `%", "(`", "`\\"], [" `", "(`", "}`", ":`", " `_", " `%", " `\\", "=`"], [" `", "(`", "}`", "`", ":`", " `_", "=`", " `\\"], [" `", "`", "(`", "}`", ":`", " `\\", " `_", "=`"], [" `", "(`", "`", " `%", " `\\", "}`", " `_", ":`"], [" `", "(`", "`\\", "`", " `\\", " `%", " `_", "}`"], [" `", "(`", "}`", "`", " `%", "`\\", ":`", " `\\"], [" `", "`", "(`", "}`", "`,", " `%", " `\\", "`\\"], ["<|endoftext|>", " `", " \n\n", "\n\n", "`", "`,", "   \n\n", " \n\n\n"], [" `", " `%", " `,", "}`", "`,", ":`", " `\\", "=`"], [" `", " `%", " `,", "`", " ``", " `\\", " `_", "}`"], [" `", "<|endoftext|>", " ...", " `,", "`", " `%", "`,", " ``"], [" \n\n", " `", "\n\n", "\r\n\r\n", "<|endoftext|>", " \n\n\n", "   \n\n", " \r\n\r\n"], [" `", " \n\n", " `_", "\n\n", " `,", " `%", " `[", " `\\"], [" \n\n", " `", "\n\n", " `_", " `%", "\r\n\r\n", " `,", " `\\"], [" \n\n", "\n\n", " `", "\r\n\r\n", "   \n\n", " \r\n\r\n", "  \n\n", " \n\n\n"], [" \n\n", "\n\n", "\r\n\r\n", " \r\n\r\n", "   \n\n", " `_", " `", " `["], [" \n\n", " ...", " `_", "...", " \r\n\r\n", "   \n\n", " ...\\", " ____"], [" \n\n", " ...", "   \n\n", " \r\n\r\n", "    \n\n", "  \n\n", "...", " `_"], [" ...", " \n\n", " [...]", " `[", " @", " \r\n\r\n", " `", "..."], [" STEM", " digitally", " `[", " LGBTQ", " utility", " modular", " COVID", " `"], [" STEM", " IoT", " `[", " LGBTQ", "ecraft", " *\u2013", " Agile", " toolkit"], [" *\u2013", " STEM", " IoT", "[\u2026]", "/grpc", "swire", " cybersecurity", " \r\n\r\n"], ["[\u2026]", "\u2026*", " [\u2026]", " *\u2013", "...*", "[\u2026", "\ufffd", " IoT"], ["[\u2026]", "\u2026*", "Microsoft", "Azure", " *\u2013", " [\u2026]", "reuse", "metrics"], ["[\u2026]", " Microsoft", " Allocator", "\u2011", " [\u2026]", " Utility", "Microsoft", "Azure"], ["[\u2026]", "Azure", " [\u2026]", " Microsoft", " Azure", "Reuse", "Microsoft", " Allocator"], [" [\u2026]", " Memory", "Memory", "[\u2026]", "Azure", "Allocator", " Allocator", "memory"], [" Allocator", " Memory", " Metal", "Memory", "Allocator", " Storage", "Metal", "memory"], [" Allocator", " reusable", " reuse", "Allocator", "Memory", " Memory", " allocator", " Storage"], [" reusable", " Allocator", " Recycling", "Allocator", " reuse", " Memory", " Storage", " structs"], [" Allocator", " Storage", " Recycling", " reusable", "\u4f7f\u7528", " Memory", " structs", " Metal"], [" structs", " Allocator", " reusable", " Recycling", " Storage", " Metal", " recycle", " SIMD"], [" structs", " Recycling", " reusable", " Metal", " Storage", " Memory", " Allocator", " Steel"], [" structs", " reusable", " Storage", " Metal", " Recycling", " Allocator", " SIMD", " Algorithms"], [" structs", "\\<", "`\\", " Metal", " Recycling", " Storage", " Allocator", " Inline"], [" structs", "vecs", " SIMD", "\\<", " Allocator", "`\\", " `\\", " Recycling"], [" structs", " SIMD", "vecs", " Allocator", " Recycling", "/storage", " JetBrains", "#!["], [" SIMD", " structs", "vecs", "Reusable", "reuse", "_REUSE", " Toolkit", "#!["], [" Allocator", "reuse", " structs", "-cache", " SIMD", "Reusable", "\u5faa\u73af\u5229\u7528", "/cache"], ["Reusable", "reuse", " reuse", "Reuse", " reusable", "_REUSE", "\u590d\u7528", " IDisposable"], ["Reusable", "reuse", "Reuse", " reuse", " reusable", " IDisposable", " Buffer", "_REUSE"], [" IDisposable", "alloc", " Allocator", " Allocate", " Alloc", " allocator", " Allocation", "Alloc"], [" IDisposable", "alloc", " Allocator", "alloca", " Buffer", " Memory", " allocator", " Alloc"], ["\u6c60", " pool", "Pool", " Pool", " pools", "pool", " pooling", "(pool"], ["\u6c60", " pool", " Pool", "pool", " pools", "Pool", " pooling", "_pool"], ["\u6c60", " Pool", "Pool", " pooling", " pool", " pooled", " pools", "pool"], [" Span", " Pool", " pooling", " pooled", " pool", "\u6c60", " pools", "Pool"], [" Pool", " pooling", " pooled", " pool", " Span", " ref", " pools", "Pool"], [" struct", "`,", "`", " structs", "struct", " Span", "object", " Memory"], ["object", "struct", "Object", " struct", "Span", " object", "Struct", "Memory"]], "p": [[0.0953, 0.0895, 0.0697, 0.0655, 0.0213, 0.02, 0.0176, 0.01], [0.3907, 0.1119, 0.1051, 0.0563, 0.0363, 0.0161, 0.0151, 0.0151], [0.2488, 0.1251, 0.0759, 0.0522, 0.049, 0.0337, 0.0217, 0.0192], [0.2884, 0.2545, 0.1129, 0.0286, 0.0105, 0.0099, 0.0082, 0.0064], [0.495, 0.2338, 0.046, 0.0359, 0.0246, 0.0246, 0.0218, 0.0159], [0.415, 0.1961, 0.0721, 0.0598, 0.0437, 0.0341, 0.0301, 0.0142], [0.8151, 0.059, 0.0246, 0.0246, 0.0149, 0.0116, 0.0062, 0.0055], [0.7769, 0.0819, 0.0235, 0.0207, 0.0183, 0.0111, 0.0111, 0.0086], [0.7478, 0.0422, 0.0329, 0.029, 0.0199, 0.0176, 0.0176, 0.0137], [0.3086, 0.2724, 0.1002, 0.0689, 0.0608, 0.0608, 0.0369, 0.0197], [0.9401, 0.0134, 0.0081, 0.0063, 0.0056, 0.0056, 0.0049, 0.0038], [0.596, 0.1708, 0.0432, 0.0381, 0.0336, 0.0262, 0.0231, 0.0159], [0.5703, 0.1852, 0.0365, 0.0365, 0.0322, 0.0284, 0.0284, 0.0152], [0.4756, 0.1203, 0.0827, 0.0729, 0.0644, 0.0324, 0.0268, 0.0252], [0.8858, 0.0343, 0.0208, 0.0143, 0.0087, 0.0087, 0.0077, 0.0032], [0.8623, 0.026, 0.023, 0.0216, 0.009, 0.0079, 0.0079, 0.007], [0.8795, 0.0301, 0.0194, 0.0086, 0.0081, 0.0071, 0.0067, 0.0063], [0.533, 0.1348, 0.0562, 0.0438, 0.0386, 0.0386, 0.0301, 0.0301], [0.4879, 0.0848, 0.0848, 0.0748, 0.0514, 0.0353, 0.0353, 0.0214], [0.7094, 0.0547, 0.0376, 0.0332, 0.0293, 0.0243, 0.0167, 0.0101], [0.9642, 0.0146, 0.0042, 0.0039, 0.0011, 0.0011, 0.0005, 0.0005], [0.6427, 0.1117, 0.032, 0.0207, 0.0111, 0.0111, 0.0104, 0.0098], [0.9418, 0.0098, 0.0063, 0.0056, 0.0056, 0.0034, 0.0032, 0.0032], [0.7566, 0.109, 0.0139, 0.0079, 0.0079, 0.0074, 0.0058, 0.004], [0.4647, 0.1606, 0.1331, 0.0262, 0.0231, 0.0192, 0.0149, 0.0132], [0.6031, 0.1346, 0.0362, 0.0206, 0.0171, 0.0142, 0.0133, 0.0125], [0.2904, 0.2408, 0.1372, 0.0474, 0.0254, 0.0154, 0.0145, 0.0099], [0.7453, 0.2135, 0.0078, 0.0044, 0.0035, 0.003, 0.003, 0.0017], [0.5039, 0.0773, 0.044, 0.0251, 0.0236, 0.0172, 0.0118, 0.0098], [0.4164, 0.1352, 0.0412, 0.025, 0.0195, 0.0183, 0.0142, 0.0126], [0.6262, 0.0748, 0.0293, 0.0157, 0.007, 0.007, 0.0061, 0.0054], [0.1195, 0.0821, 0.0162, 0.0152, 0.0118, 0.0104, 0.0098, 0.0098], [0.0037, 0.0027, 0.0027, 0.0026, 0.0023, 0.0023, 0.0021, 0.002], [0.0051, 0.004, 0.0033, 0.0026, 0.0024, 0.0024, 0.0024, 0.0023], [0.0044, 0.0037, 0.0037, 0.0035, 0.0021, 0.0019, 0.0016, 0.0016], [0.0493, 0.0281, 0.015, 0.0141, 0.0059, 0.0049, 0.004, 0.0032], [0.014, 0.0062, 0.0033, 0.0033, 0.0033, 0.0029, 0.0023, 0.0023], [0.0155, 0.0042, 0.0042, 0.0042, 0.0039, 0.0033, 0.0029, 0.0029], [0.0072, 0.0063, 0.0053, 0.0038, 0.0032, 0.0032, 0.003, 0.0026], [0.0079, 0.0066, 0.0066, 0.0045, 0.0043, 0.0043, 0.0043, 0.0043], [0.0214, 0.0214, 0.013, 0.0107, 0.0101, 0.0089, 0.0065, 0.0061], [0.0281, 0.0206, 0.0193, 0.015, 0.0133, 0.0133, 0.0133, 0.011], [0.0271, 0.0211, 0.0128, 0.012, 0.012, 0.0113, 0.01, 0.0094], [0.0224, 0.0154, 0.0144, 0.0136, 0.0127, 0.012, 0.0088, 0.0077], [0.0196, 0.0153, 0.0144, 0.0135, 0.0112, 0.0082, 0.0077, 0.0064], [0.0209, 0.0135, 0.0127, 0.0112, 0.0105, 0.0077, 0.0068, 0.0064], [0.0297, 0.0085, 0.0085, 0.008, 0.008, 0.0062, 0.0059, 0.0055], [0.0188, 0.0095, 0.0089, 0.0089, 0.0074, 0.0069, 0.0057, 0.0051], [0.0114, 0.0089, 0.0079, 0.0054, 0.0048, 0.0042, 0.004, 0.004], [0.01, 0.0089, 0.0089, 0.0045, 0.0024, 0.0022, 0.0021, 0.0021], [0.0098, 0.0056, 0.0056, 0.0052, 0.0049, 0.0043, 0.0041, 0.0036], [0.0255, 0.0225, 0.0199, 0.0094, 0.0088, 0.0088, 0.0078, 0.0073], [0.3552, 0.2154, 0.1307, 0.1153, 0.1018, 0.0122, 0.0107, 0.0078], [0.4535, 0.2142, 0.0788, 0.0788, 0.0614, 0.0256, 0.0078, 0.0065], [0.1772, 0.1218, 0.1075, 0.0652, 0.0652, 0.0575, 0.0448, 0.0308], [0.3999, 0.0695, 0.0478, 0.0372, 0.0328, 0.0256, 0.0212, 0.0212], [0.6815, 0.0718, 0.0559, 0.0436, 0.0384, 0.0384, 0.0182, 0.0125], [0.662, 0.115, 0.0543, 0.048, 0.0373, 0.033, 0.0291, 0.0065], [0.4548, 0.2758, 0.0615, 0.0615, 0.0543, 0.02, 0.0176, 0.0176], [0.4901, 0.1404, 0.1094, 0.0663, 0.0456, 0.0244, 0.0244, 0.0215], [0.2304, 0.2304, 0.096, 0.0848, 0.0748, 0.0514, 0.04, 0.0275], [0.2268, 0.1559, 0.0834, 0.0736, 0.0736, 0.065, 0.0506, 0.0394], [0.5383, 0.2244, 0.0442, 0.0304, 0.0304, 0.0237, 0.0209, 0.0143]], "ranks": {}}, {"pos": 562, "top": [["s", "ing", "i", "a", " \u2013", "es", "\u0629", "y"], ["s", "ing", "es", "sWith", "sburg", "\u0627\u062a", "saf", "schn"], ["s", "ing", "**\u2013", "saf", "sWith", "a", "es", "i"], ["s", "satz", "sWith", "ing", "sburg", "sii", "schn", "a\u00e7"], ["s", "ing", "es", "sWith", "a\u00e7", "sii", "\u52a0\u62ff\u5927", "satz"], ["s", "sWith", "ing", "siz", "sver", "a", "es", "sii"], ["s", "a", "es", "ing", "i", "sie", "saf", "t"], ["s", "ing", "es", "sWith", "saf", "sie", "a", "a\u00e7"], ["s", "ing", "es", "sWith", "a", "i", "saf", "a\u00e7"], ["s", "a", "ing", "es", "i", "ed", "\\_", "sWith"], ["s", "a", "es", "ing", "i", "ed", "o", "e"], ["s", "es", " ``", "ing", "a", "a\u00e7", "``", "sWith"], ["s", "es", "a", "ing", " ``", "sWith", "ed", "a\u00e7"], ["s", "es", "a", "ing", "i", "ed", "sWith", "o"], ["s", "a", "es", "i", "o", "ed", "ing", " ``"], ["s", "es", "a", "i", "o", "ing", "ed", "e"], ["s", "es", "a", "i", "o", "ing", "e", "ed"], ["s", "es", "a", "i", "o", "\u0627\u062a", "\u03c2", "sWith"], ["s", "es", "a", "i", "\u0627\u062a", "sWith", "\u03c2", "``"], ["s", "a", "es", "i", "o", "e", "ing", "\u0627\u062a"], ["s", "a", "es", "<|endoftext|>", "i", "e", "o", "t"], ["s", "es", " ``", "sWith", "\u0627\u062a", "``", "urally", "satz"], ["s", "es", "a", "e", "ed", "o", " ``", "i"], ["s", "a", "<|endoftext|>", "es", "e", "i", "o", "ed"], ["s", "a", "es", "e", "i", " ``", "ed", " \n\n"], ["s", "es", " ``", "sWith", "urally", "\u0627\u062a", " \u2026", "``"], ["s", " ``", "es", "``", "urally", " \n\n", "sWith", "\u0627\u062a"], ["\n\n", " \n\n", "s", "<|endoftext|>", "\\_", " ``", "  \n\n", " `"], ["s", "\n\n", " \n\n", "\\_", "es", "a", " ``", "\u2026"], ["s", " \u2026", "\u2026", "__", " \n\n", " __", "es", "\\_"], ["s", "__", " \u2026", " \n\n", " __", "\u2026", "es", "\\_"], ["s", " \u2026", "es", " ...", "\u2026", "__", "\u2026*", " __"], ["s", "es", "sWith", " \u2026", " Struct", "a", "ed", " struct"], ["s", "sWith", "es", " structs", "ska", " Entities", " Struct", "urally"], ["s", "\u2026*", " structs", "sWith", "\u800c\u975e", "es", " STEM", "\u591a\u7ef4\u5ea6"], ["s", "\u2026*", "sWith", "\u800c\u975e", "[\u2026]", " \u2026", "es", " structs"], ["s", "sWith", "\u2026*", "es", "[\u2026]", " structs", "\u800c\u975e", " \u2026"], ["s", "sWith", " structs", "\u2026*", "es", " Entities", " Struct", " entities"], ["s", " structs", "sWith", " Struct", " Entities", "\u2026*", " struct", " entities"], ["s", " structs", "\u2026*", " Entities", "\u201d\u2026", " Struct", " struct", ")\u2026"], [" structs", "s", " struct", " Struct", " Entities", " entities", " immutable", " enums"], [" structs", " struct", " Struct", " entities", " Entities", " enums", "s", " immutable"], [" structs", " Struct", " struct", " entities", " Entities", " immutable", " enums", " Entity"], [" structs", " Struct", " entities", " Entities", " struct", " immutable", " enums", " structures"], [" structs", " entities", " Entities", " enums", " immutable", " Struct", " struct", " structures"], [" structs", " entities", " struct", " enums", " immutable", " Struct", " equivalents", " structures"], [" structs", "\u800c\u975e", " immutable", " instead", "\u800c\u4e0d\u662f", " enums", "instead", " statt"], [" structs", "\u800c\u975e", "instead", "\u800c\u4e0d\u662f", " instead", " statt", " enums", " \u0432\u043c\u0435\u0441\u0442\u043e"], [" structs", "\u800c\u975e", "\u800c\u4e0d\u662f", "instead", " instead", " \u0432\u043c\u0435\u0441\u0442\u043e", " plut\u00f4t", " statt"], ["\u800c\u975e", " structs", "\u800c\u4e0d\u662f", "instead", " instead", " statt", " \u0432\u043c\u0435\u0441\u0442\u043e", " plut\u00f4t"], [" structs", "\u800c\u975e", "\u800c\u4e0d\u662f", " \u0432\u043c\u0435\u0441\u0442\u043e", "instead", " plut\u00f4t", " \u0628\u062f\u0644\u0627\u064b", " statt"], ["\u800c\u975e", " structs", "\u800c\u4e0d\u662f", " \u0432\u043c\u0435\u0441\u0442\u043e", "\u4ee3\u308f\u308a\u306b", "instead", "\u4ee3\u66ff", " instead"], ["\u800c\u975e", " structs", "instead", "\u800c\u4e0d\u662f", " \u0432\u043c\u0435\u0441\u0442\u043e", " instead", "\u4ee3\u308f\u308a\u306b", " statt"], [" structs", "\u800c\u975e", "instead", " instead", "\u800c\u4e0d\u662f", " \u0432\u043c\u0435\u0441\u0442\u043e", " statt", "[],"], [" structs", " IDisposable", "\u4ee3\u308f\u308a\u306b", " Struct", " instead", "instead", "-based", "\u800c\u975e"], [" structs", " IDisposable", "\u4ee3\u308f\u308a\u306b", " blitt", "-based", " instead", ".cs", "instead"], [" structs", " IDisposable", " blitt", "-based", ".cs", " pools", "arrays", " layouts"], [" structs", " pools", " Struct", " IDisposable", " blitt", " layouts", " struct", "struct"], [" structs", " layouts", " instead", " enums", " IDisposable", "\u4ee3\u308f\u308a\u306b", " blitt", " pools"], [" instead", " layouts", "`", " pools", " buffers", "-based", "s", " IDisposable"], ["`", "`,", "`s", "`.", "`(", "`:", "()`", "`)"], ["`", "`,", "`s", "s", "`(", "`.", "()`", " `"], ["`", "`s", "`,", "`(", "()`", "`.", "`\\", ">`"]], "p": [[0.9998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.8865, 0.0251, 0.0082, 0.0039, 0.0036, 0.0032, 0.0019, 0.0018], [0.9978, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9956, 0.0006, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9988, 0.0006, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9966, 0.0028, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9839, 0.0046, 0.0043, 0.0018, 0.0015, 0.0004, 0.0002, 0.0002], [0.9925, 0.0038, 0.0012, 0.001, 0.0002, 0.0001, 0.0001, 0.0001], [0.9912, 0.0049, 0.0017, 0.0005, 0.0002, 0.0002, 0.0001, 0.0001], [0.9966, 0.0013, 0.001, 0.0003, 0.0002, 0.0001, 0.0, 0.0], [0.9982, 0.0012, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0006, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9976, 0.0019, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9979, 0.0012, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9942, 0.002, 0.0016, 0.0005, 0.0002, 0.0001, 0.0001, 0.0], [0.9984, 0.0008, 0.0002, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9986, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9983, 0.0008, 0.0006, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9909, 0.0036, 0.0019, 0.0014, 0.0005, 0.0002, 0.0002, 0.0001], [0.9944, 0.0015, 0.0008, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.9937, 0.0013, 0.0003, 0.0003, 0.0002, 0.0002, 0.0001, 0.0001], [0.9758, 0.0066, 0.0017, 0.0016, 0.0008, 0.0006, 0.0006, 0.0002], [0.5191, 0.2778, 0.1685, 0.0089, 0.007, 0.001, 0.0009, 0.0007], [0.9298, 0.0133, 0.0043, 0.0038, 0.0012, 0.0012, 0.0007, 0.0004], [0.9538, 0.0113, 0.0078, 0.0044, 0.0024, 0.0018, 0.0017, 0.0011], [0.9066, 0.0227, 0.0147, 0.0095, 0.0048, 0.0039, 0.0035, 0.002], [0.9413, 0.0195, 0.0049, 0.0049, 0.003, 0.0019, 0.0014, 0.0008], [0.9457, 0.0041, 0.0019, 0.001, 0.0003, 0.0003, 0.0003, 0.0002], [0.2713, 0.0197, 0.0077, 0.0047, 0.0034, 0.003, 0.0023, 0.0023], [0.0499, 0.0196, 0.0126, 0.0087, 0.0046, 0.0034, 0.0028, 0.0026], [0.2274, 0.1009, 0.0255, 0.0165, 0.0137, 0.0094, 0.0078, 0.0073], [0.8568, 0.0101, 0.0095, 0.0051, 0.0037, 0.0033, 0.0019, 0.0012], [0.575, 0.0209, 0.0153, 0.006, 0.0056, 0.0056, 0.0044, 0.0025], [0.1251, 0.0629, 0.014, 0.0103, 0.0091, 0.0085, 0.0075, 0.0055], [0.071, 0.0553, 0.0245, 0.0096, 0.009, 0.0075, 0.0055, 0.0051], [0.4898, 0.0244, 0.0215, 0.0178, 0.0084, 0.0074, 0.0037, 0.0033], [0.7763, 0.0172, 0.0161, 0.0067, 0.0063, 0.002, 0.0018, 0.0016], [0.8201, 0.0103, 0.0091, 0.0071, 0.0052, 0.0043, 0.002, 0.001], [0.6767, 0.0169, 0.014, 0.0109, 0.0109, 0.008, 0.0059, 0.0026], [0.7962, 0.0121, 0.0065, 0.0061, 0.0057, 0.0054, 0.0054, 0.0022], [0.7483, 0.0137, 0.0083, 0.0061, 0.0061, 0.0054, 0.0044, 0.0042], [0.7109, 0.0377, 0.0122, 0.0115, 0.0095, 0.0084, 0.0074, 0.0051], [0.638, 0.0811, 0.0232, 0.0181, 0.016, 0.0091, 0.0075, 0.0071], [0.4174, 0.3251, 0.0365, 0.0208, 0.0118, 0.0081, 0.0081, 0.0063], [0.4441, 0.3458, 0.0601, 0.0322, 0.0126, 0.0087, 0.0076, 0.0072], [0.6267, 0.1314, 0.0259, 0.0147, 0.0084, 0.0061, 0.0042, 0.004], [0.342, 0.1949, 0.0524, 0.0299, 0.0281, 0.0193, 0.0091, 0.0067], [0.3755, 0.1076, 0.0949, 0.0949, 0.0838, 0.0838, 0.0396, 0.0155], [0.4154, 0.1732, 0.0598, 0.0466, 0.0411, 0.0363, 0.0183, 0.0151], [0.8283, 0.0134, 0.0067, 0.0067, 0.0059, 0.0059, 0.0041, 0.0038], [0.317, 0.0753, 0.026, 0.026, 0.0168, 0.0148, 0.0139, 0.0123], [0.5857, 0.02, 0.0177, 0.0107, 0.0095, 0.0089, 0.0084, 0.0078], [0.9083, 0.0065, 0.004, 0.0037, 0.0031, 0.0031, 0.0031, 0.0029], [0.5301, 0.0318, 0.0318, 0.0117, 0.0117, 0.011, 0.0103, 0.0103], [0.1477, 0.0842, 0.0791, 0.031, 0.0291, 0.0227, 0.0188, 0.0166], [0.9029, 0.0952, 0.0011, 0.0004, 0.0001, 0.0, 0.0, 0.0], [0.9582, 0.0255, 0.0155, 0.0005, 0.0001, 0.0, 0.0, 0.0], [0.9834, 0.0124, 0.004, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 563, "top": [[".", "  \n", " \u2013", "   \n", "\u00a0\u00a0", ",", "  \n\n", " "], ["  \n", "  \n\n", "   \n", "  \n  \n", "    \n", "  ", "     \n", "   \n\n"], [".", ",", "\u2013", "  \n", "\u2026", "  \n\n", "   \n", "\u2026."], ["\uff3f\uff3f", " ``", " ``(", " Shemale", "odle", " `_", " **\u201e", " Bbw"], [" `", "  \n\n", " `_", "   \n", "    \n", "=`", "  \n", " (`"], ["   \n", "  \n", "    \n", "  \n\n", "     \n", " `", "  ", "      \n"], [" `", "  \n", "  \n\n", "=`", " `_", " (`", "`", "   \n"], [" `", "  \n", "   \n", "=`", "  \n\n", " `_", " (`", "    \n"], [" `", "  \n\n", " \n\n", "  \n", "=`", "   \n", " (`", "    \n"], [" `", "=`", " `_", "  \n", " (`", "[`", "(`", " `$"], [" `", " \\\"", " (`", " ``", "=`", " `_", "  \n", " [`"], [" ``", " **", " `", " `_", " *", " \\\"", " ``(", "=`"], [" `", " **", " `_", " ``", " *", " \\\"", "ive", "=`"], [" `", " ``", " (`", " \u00b5", " `_", "=`", "(`", " humour"], [" `", " ``", " \u00b5", " akin", "=`", " (`", " \n\n", "(`"], [" `", " \u2014", " akin", "es", " \\\"", " \u00b5", " and", " s"], [" akin", " and", " `", "es", " alongside", ",", " s", "ed"], [" **", " `", " tweaks", " \\\"", " akin", " oddly", "es", " savvy"], [" *", " ``", " **", " `", "\u8303\u513f", " akin", " oddly", " Teixe"], [" \u2014", " `", " and", " alongside", " &", " akin", " wildly", " myriad"], ["<|endoftext|>", " \n\n", " and", " \u2014", " alongside", " `", "  \n\n", " s"], [" ``", " and", " `", " alongside", " Teixe", "\u8303\u513f", " \\\"", " ''"], [" ``", " and", " `", " ,", " alongside", " &", " as", " *"], [" and", " ,", " `", " ``", " as", " along", " much", " rather"], [" \n\n", " and", " `", " ``", " ,", "  \n\n", " \u2014", " alongside"], [" and", " ``", " `", " *", " ,", " alongside", " \n\n", " \u2014"], [" and", " ``", " ,", " \n\n", " *", " `", " \u2014", " alongside"], [" \n\n", " and", " ,", "\n\n", " _", " \u2014", " `", "  \n\n"], [" and", " ,", " \n\n", " \u2014", " as", " alongside", " heavily", " or"], [" and", " ,", " \u2014", " \n\n", " as", " **", " or", " ..."], [" and", " ,", " \n\n", " **", " \n", " as", " or", " for"], [" and", " ,", " as", " or", " for", " *", " in", " to"], [" and", " ,", " as", " or", " rather", " for", " heavily", " over"], [" and", " rather", " heavily", " or", " as", " often", " ,", " alongside"], [" and", " heavily", " rather", " instead", " or", " *", " \u2014", " alongside"], [" and", " \u2014", " rather", "\u2011", " heavily", " instead", " *", "\u2014and"], [" and", " rather", " instead", " \u2014", " heavily", " *", " struct", " structures"], [" and", " rather", " instead", " heavily", " struct", "\u2011", " implementations", " structs"], [" rather", " instead", " and", " heavily", " implementations", " struct", " structs", " purely"], [" instead", " rather", " struct", " structs", " heavily", "\u2011", " arrays", " implementations"], [" structs", " instead", " struct", " structures", " entities", " rather", " implementations", " classes"], [" structs", " struct", " entities", " structures", " classes", " instead", " designs", " design"], [" structs", " entities", " structures", " struct", " classes", " designs", " design", " arrays"], [" structs", " structures", " entities", " struct", " instead", " classes", " immutable", " designs"], [" structs", " instead", " structures", " entities", " classes", " models", " struct", " lightweight"], [" instead", " structs", " structures", " equivalents", " entities", " rather", " classes", " designs"], [" instead", " structs", " equivalents", " structures", " rather", "instead", " entities", " designs"], [" instead", " equivalents", " rather", " structs", "instead", " structures", " Instead", "\u4ee3\u308f\u308a\u306b"], [" instead", " rather", " structs", " equivalents", "instead", "\u800c\u975e", "\u4ee3\u308f\u308a\u306b", " structures"], [" instead", "\u800c\u975e", "instead", " rather", " structs", "\u800c\u4e0d\u662f", " equivalents", " \u0432\u043c\u0435\u0441\u0442\u043e"], [" structs", "\u800c\u975e", " instead", "instead", "\u800c\u4e0d\u662f", " equivalents", " \u0432\u043c\u0435\u0441\u0442\u043e", "\u4ee3\u308f\u308a\u306b"], [" structs", "\u800c\u975e", " instead", "\u4ee3\u308f\u308a\u306b", "instead", " workflows", "-based", " arrays"], [" instead", "instead", "\u800c\u975e", "\u4ee3\u308f\u308a\u306b", " structs", " \u0432\u043c\u0435\u0441\u0442\u043e", "\u800c\u4e0d\u662f", " statt"], [" instead", " structs", "instead", "\u800c\u975e", "\u4ee3\u308f\u308a\u306b", " \u0432\u043c\u0435\u0441\u0442\u043e", " statt", " arrays"], [" structs", " instead", "\u4ee3\u308f\u308a\u306b", "-based", "instead", " everywhere", " wrappers", " arrays"], [" structs", " everywhere", " arrays", " instead", " wrappers", "\u4ee3\u308f\u308a\u306b", "-heavy", "-based"], [" structs", " everywhere", " arrays", " wrappers", "-heavy", " instead", " blitt", "-based"], [" structs", " everywhere", " wrappers", " instead", " arrays", "-heavy", " layouts", " pools"], [" structs", " layouts", " instead", " everywhere", " arrays", " wrappers", "-heavy", " blitt"], [" instead", " layouts", " everywhere", "-based", " arrays", " wherever", " blitt", " buffers"], [" layouts", " instead", "-based", " arrays", " wrappers", " structs", " everywhere", " buffers"], [" wrappers", " instead", " layouts", " arrays", " everywhere", "-based", " pooling", " pools"], ["-", " types", " wrappers", " layouts", " pools", " arrays", " pooling", " enums"]], "p": [[0.5628, 0.1256, 0.0978, 0.036, 0.0338, 0.0247, 0.0218, 0.0181], [0.3613, 0.2483, 0.1329, 0.0191, 0.0109, 0.0045, 0.0038, 0.0035], [0.3909, 0.286, 0.0928, 0.0364, 0.025, 0.0235, 0.0195, 0.0111], [0.024, 0.0225, 0.0128, 0.0035, 0.0024, 0.0022, 0.0019, 0.0019], [0.1105, 0.0522, 0.0382, 0.0382, 0.0247, 0.0204, 0.018, 0.0159], [0.2891, 0.1547, 0.0687, 0.0606, 0.0324, 0.0253, 0.0163, 0.0135], [0.756, 0.1159, 0.0332, 0.0178, 0.0122, 0.0079, 0.007, 0.0065], [0.6109, 0.1062, 0.0685, 0.0443, 0.0268, 0.0209, 0.0153, 0.0153], [0.4423, 0.2368, 0.0871, 0.0528, 0.0341, 0.0194, 0.0151, 0.0125], [0.2784, 0.0454, 0.0178, 0.0178, 0.0167, 0.0157, 0.0139, 0.0101], [0.9289, 0.0063, 0.0063, 0.0063, 0.0052, 0.0046, 0.0031, 0.0026], [0.2796, 0.0707, 0.0664, 0.0277, 0.0131, 0.0079, 0.0066, 0.0058], [0.3883, 0.1619, 0.0675, 0.0319, 0.0219, 0.0067, 0.0059, 0.0052], [0.1268, 0.0111, 0.0086, 0.0081, 0.0059, 0.0056, 0.0052, 0.0049], [0.5751, 0.0135, 0.0068, 0.0064, 0.0064, 0.006, 0.0044, 0.0041], [0.1003, 0.0164, 0.0154, 0.0077, 0.0073, 0.0064, 0.0064, 0.0064], [0.0254, 0.0198, 0.0198, 0.0136, 0.0099, 0.0077, 0.0068, 0.0068], [0.022, 0.0111, 0.0092, 0.0063, 0.0056, 0.0043, 0.0043, 0.0038], [0.0141, 0.0124, 0.0097, 0.008, 0.0067, 0.0062, 0.0059, 0.004], [0.0726, 0.0682, 0.0566, 0.0126, 0.0119, 0.0087, 0.0077, 0.0072], [0.1775, 0.1471, 0.0541, 0.0422, 0.0146, 0.0121, 0.0113, 0.0065], [0.2589, 0.0069, 0.0042, 0.0033, 0.0033, 0.002, 0.0019, 0.0016], [0.2387, 0.1641, 0.0684, 0.0196, 0.0112, 0.0072, 0.0064, 0.0053], [0.1804, 0.0707, 0.0624, 0.0486, 0.0148, 0.0123, 0.0084, 0.0079], [0.3642, 0.0633, 0.0318, 0.0181, 0.016, 0.015, 0.0117, 0.008], [0.2346, 0.0408, 0.0338, 0.0317, 0.028, 0.016, 0.016, 0.011], [0.2249, 0.0605, 0.0534, 0.0443, 0.0367, 0.0237, 0.0185, 0.0173], [0.4974, 0.1258, 0.0673, 0.015, 0.0133, 0.0125, 0.0103, 0.0086], [0.4582, 0.0902, 0.0353, 0.0275, 0.0122, 0.0089, 0.0084, 0.0074], [0.6249, 0.09, 0.0177, 0.0167, 0.0122, 0.0108, 0.0089, 0.0074], [0.6694, 0.0799, 0.0244, 0.0178, 0.0115, 0.0102, 0.0079, 0.0062], [0.8529, 0.0201, 0.0079, 0.0051, 0.0048, 0.0037, 0.0031, 0.0031], [0.7726, 0.0281, 0.0097, 0.0059, 0.0043, 0.0041, 0.0036, 0.003], [0.6137, 0.0136, 0.0127, 0.0073, 0.0057, 0.005, 0.0047, 0.0044], [0.4067, 0.026, 0.0139, 0.0074, 0.0045, 0.0045, 0.0045, 0.004], [0.4679, 0.0559, 0.0299, 0.0248, 0.0219, 0.0206, 0.0117, 0.0063], [0.3132, 0.0843, 0.0843, 0.0274, 0.0257, 0.0101, 0.0074, 0.0065], [0.0664, 0.055, 0.0456, 0.0244, 0.0123, 0.0108, 0.0108, 0.0074], [0.0549, 0.0549, 0.0333, 0.0167, 0.013, 0.013, 0.0084, 0.0074], [0.0601, 0.0364, 0.0195, 0.0183, 0.0152, 0.0143, 0.0134, 0.0111], [0.1147, 0.0542, 0.0422, 0.0309, 0.0199, 0.0199, 0.0155, 0.0137], [0.226, 0.0781, 0.0648, 0.0418, 0.0164, 0.0164, 0.0128, 0.012], [0.2302, 0.0702, 0.0483, 0.0332, 0.0201, 0.0147, 0.0138, 0.0138], [0.1947, 0.0812, 0.0716, 0.036, 0.0248, 0.0233, 0.0117, 0.0117], [0.1875, 0.1068, 0.069, 0.0505, 0.0287, 0.0145, 0.0145, 0.0136], [0.2974, 0.0965, 0.055, 0.0355, 0.019, 0.019, 0.0179, 0.0168], [0.5641, 0.0813, 0.0384, 0.0299, 0.0193, 0.017, 0.008, 0.0049], [0.778, 0.0412, 0.0235, 0.0207, 0.0195, 0.0081, 0.0049, 0.0041], [0.7196, 0.0432, 0.0406, 0.0381, 0.0279, 0.0124, 0.0066, 0.0035], [0.4918, 0.2323, 0.0754, 0.0754, 0.0356, 0.0314, 0.0096, 0.0048], [0.5069, 0.1364, 0.0644, 0.0345, 0.0197, 0.0197, 0.0127, 0.0119], [0.3405, 0.1105, 0.076, 0.0433, 0.0382, 0.0159, 0.015, 0.015], [0.7137, 0.1405, 0.0355, 0.0277, 0.0244, 0.0216, 0.0131, 0.0042], [0.4264, 0.3321, 0.1078, 0.0212, 0.0187, 0.0155, 0.0083, 0.0054], [0.9182, 0.0168, 0.0055, 0.004, 0.0029, 0.0029, 0.0027, 0.0027], [0.6229, 0.0843, 0.0351, 0.0351, 0.02, 0.0138, 0.0114, 0.0114], [0.8159, 0.0522, 0.0217, 0.0132, 0.0096, 0.0055, 0.0052, 0.0043], [0.9658, 0.0051, 0.0029, 0.0027, 0.0022, 0.002, 0.0015, 0.0014], [0.4915, 0.1097, 0.0968, 0.0551, 0.0203, 0.0191, 0.0168, 0.0158], [0.2744, 0.1664, 0.1218, 0.0948, 0.0421, 0.0272, 0.0199, 0.0187], [0.1372, 0.1289, 0.0832, 0.0782, 0.0648, 0.0474, 0.0445, 0.0393], [0.112, 0.1053, 0.077, 0.0529, 0.0412, 0.0387, 0.0364, 0.0364], [0.9432, 0.0092, 0.0068, 0.0064, 0.0049, 0.0046, 0.0019, 0.0018]], "ranks": {}}, {"pos": 564, "top": [[" \u2013", "\u2013", "\u00a0\u00a0", "\u00a0", ".", " \u200b\u200b", " ", "\u200b\u200b"], [" \u2013", "\u2013", "s", "  \n\n", " \u2013,", "**\u2013", " \\(", " **\u2013"], [" \u2013", "\u2013", "**\u2013", " \u2013,", "s", " **\u2013", "\u2026.", ".\u2013"], [" **\u00ab", " milfs", " **\u25cb", " **+", " **\u25a0", " **\u201e", "\u52a0\u62ff\u5927", " **\u300c"], ["s", "ing", "er", "a", "\u0627\u062a", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u0627"], ["s", "a", "er", "ing", "\u0627", "ly", "\u65b0\u52a0\u5761", "\u0627\u062a"], ["s", "a", "er", "ing", "ly", "\u0627", "\u0627\u062a", "en"], ["s", "a", "er", "ing", "ly", "\u0627", "\u0627\u062a", "\u03c2"], ["s", "ing", "a", "er", "ly", "\u0627", "\u0627\u062a", "\u03c2"], ["s", "ing", "a", "er", "ly", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u0627"], ["s", "a", "ing", "er", "ly", "\u0627", "ed", "o"], ["s", "ly", "ing", "er", "a", "\u52a0\u62ff\u5927", "\u03c2", "satz"], ["s", "ing", "ly", "er", "a", "\u52a0\u62ff\u5927", " **\u201e", "-**"], ["s", "ing", "ly", "er", "\u52a0\u62ff\u5927", "a", "aft", "satz"], ["s", "ing", "a", "ly", "er", "aft", "ed", "o"], ["s", "ing", "ly", "a", "er", "aft", "\u52a0\u62ff\u5927", "ed"], ["s", "ing", "a", "er", "ly", "ed", "es", "o"], ["s", "ing", "a", "er", "\u52a0\u62ff\u5927", "aft", "ly", "o"], ["s", "ing", "a", "aft", "\u52a0\u62ff\u5927", "satz", "aute", "er"], ["s", "ing", "a", "ly", "aft", "o", "er", "\u03c2"], ["s", "a", "ing", "ly", "ed", "o", "aft", "er"], ["s", "ing", "satz", " ``", "ly", "\u52a0\u62ff\u5927", "aft", "a"], ["s", "ing", "a", " ``", "ed", "ly", "o", "er"], ["s", "a", "ing", "ed", "ly", "o", " ``", "er"], ["s", "a", "ing", "ed", "ly", "o", "edly", " ``"], ["s", "ing", "ly", "ed", "satz", " ``", "edly", "a"], ["s", "ing", " ``", "ly", "ed", "a", "scape", "edly"], ["s", " ``", "a", "ing", "ed", "ly", " `", " \n\n"], ["s", "ing", "a", " ``", "ed", "ly", " **", "\u2010"], ["s", " **", "a", "ing", "\u2011", "ed", "ly", " __"], ["s", " **", "\u2011", "ing", "ed", "a", "ly", " *"], ["s", " **", "\u2011", "ed", "a", " *", "ing", "ly"], ["s", "\u2011", " **", "ed", "ing", "a", "ly", " *"], ["s", "\u2011", "\u2010", "\\-", " **", "ed", "ing", "scape"], ["s", "\u2011", "\\-", "\u2010", " **", "ed", "scape", "ing"], ["s", "\u2011", "\u2010", " **", "\ufffd", "ing", "a", "\ufe0f"], ["s", "\u2011", "\u2010", " **", "scape", "ing", "ed", "\ufffd"], ["s", "\u2011", "\u2010", " \ufffd", " **", "\ufffd", "ing", "ed"], ["\u2011", "s", "\u2010", " \ufffd", " struct", "scape", "\ufffd", "ing"], ["\u2011", "s", "\u2010", "\ufffd", " \ufffd", "\\-", " struct", "ing"], ["\u2011", "s", "\u2010", "\ufffd", " struct", " \ufffd", " structs", "\\-"], ["\u2011", "s", "\u2010", " structs", " struct", " entities", "\\-", " \ufffd"], ["\u2011", " structs", " **", "s", " struct", " entities", "\\-", "\u2010"], ["\u2011", " structs", " struct", " entities", "s", " **", "\u2010", "-based"], ["\u2011", " structs", " **", " entities", " workflows", "-based", " struct", "\\-"], [" structs", "-based", "\u2011", "\\-", " equivalents", " workflows", " modular", " lightweight"], ["\u2011", "-based", "\\-", " structs", " workflows", " equivalents", "\u2010", " **"], ["\u2011", "\\-", "-based", "\u2010", " structs", " equivalents", " workflows", " **"], ["-based", "\\-", " structs", "\u2011", " equivalents", "\u2010", " **", " workflows"], ["-based", " structs", " equivalents", "-centric", " workflows", "\\-", " structures", "-driven"], [" structs", "-based", "-centric", " workflows", " equivalents", "-heavy", " structures", "-driven"], ["-based", " structs", " workflows", "-centric", "-heavy", "based", " arrays", "-only"], ["-based", " structs", "-centric", "based", " workflows", "-Based", "-heavy", "-driven"], ["-based", " structs", "based", "-Based", "-centric", "-heavy", " workflows", "-driven"], ["-based", "based", "-Based", " structs", "_based", "\u57fa\u4e8e", "-centric", "-heavy"], ["-based", "based", "-Based", "_based", " structs", "-heavy", "-centric", "\u57fa\u4e8e"], ["-based", "based", "-centric", " structs", "-heavy", "-Based", "-only", "-driven"], ["-based", "based", " structs", "-heavy", "-centric", "-Based", "-only", " immutable"], ["-based", "based", "-heavy", "-centric", "-only", "-Based", " immutable", "-driven"], ["based", " based", "-based", " Based", "\u57fa\u4e8e", "Based", "_based", "-Based"], ["based", " based", "-based", " Based", "Based", "_based", " immutable", "\u57fa\u4e8e"], ["based", " based", "-based", " Based", "oriented", "only", "Based", " immutable"], ["based", "only", "heavy", " based", "oriented", "type", "Based", "-based"]], "p": [[0.9781, 0.0123, 0.0018, 0.0009, 0.0005, 0.0004, 0.0003, 0.0002], [0.9789, 0.014, 0.0026, 0.001, 0.0007, 0.0002, 0.0001, 0.0001], [0.5785, 0.3976, 0.0057, 0.0057, 0.0039, 0.0024, 0.0015, 0.0008], [0.0139, 0.0131, 0.0115, 0.009, 0.009, 0.009, 0.0084, 0.0079], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9991, 0.0003, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9995, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9991, 0.0003, 0.0003, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9992, 0.0003, 0.0002, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.9968, 0.0015, 0.0008, 0.0006, 0.0003, 0.0, 0.0, 0.0], [0.9636, 0.0121, 0.0101, 0.0045, 0.0015, 0.0003, 0.0002, 0.0002], [0.8754, 0.0264, 0.0193, 0.0067, 0.0026, 0.0023, 0.0017, 0.0011], [0.8298, 0.0413, 0.0195, 0.0053, 0.0049, 0.0023, 0.0018, 0.0014], [0.9925, 0.003, 0.0019, 0.0007, 0.0005, 0.0001, 0.0001, 0.0001], [0.9754, 0.009, 0.0018, 0.0012, 0.0011, 0.0005, 0.0004, 0.0003], [0.9953, 0.0023, 0.0007, 0.0003, 0.0002, 0.0001, 0.0001, 0.0001], [0.975, 0.0042, 0.0013, 0.0009, 0.0008, 0.0004, 0.0004, 0.0004], [0.992, 0.002, 0.0007, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9971, 0.001, 0.0008, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9977, 0.0015, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.978, 0.0035, 0.0012, 0.0009, 0.0007, 0.0005, 0.0003, 0.0003], [0.9983, 0.0006, 0.0005, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9973, 0.0017, 0.0005, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.9915, 0.0028, 0.0028, 0.001, 0.0005, 0.0001, 0.0001, 0.0001], [0.9527, 0.0106, 0.0041, 0.0024, 0.001, 0.0007, 0.0006, 0.0006], [0.9564, 0.0078, 0.0073, 0.005, 0.0021, 0.0007, 0.0004, 0.0004], [0.959, 0.0061, 0.005, 0.0039, 0.0031, 0.0019, 0.0014, 0.0009], [0.9692, 0.0033, 0.0021, 0.0019, 0.0018, 0.0011, 0.0011, 0.0005], [0.9569, 0.0327, 0.0016, 0.0014, 0.0011, 0.0011, 0.0004, 0.0003], [0.9518, 0.0369, 0.0024, 0.0016, 0.0015, 0.0012, 0.0005, 0.0003], [0.9565, 0.0225, 0.012, 0.0013, 0.0011, 0.0009, 0.0009, 0.0004], [0.98, 0.0062, 0.0024, 0.0014, 0.0013, 0.0007, 0.0006, 0.0005], [0.8593, 0.1026, 0.0045, 0.0024, 0.0016, 0.0014, 0.0009, 0.0008], [0.9187, 0.0587, 0.0033, 0.0027, 0.0011, 0.0007, 0.0005, 0.0005], [0.7707, 0.2208, 0.0013, 0.0007, 0.0005, 0.0004, 0.0004, 0.0003], [0.8582, 0.1316, 0.0014, 0.0007, 0.0005, 0.0005, 0.0002, 0.0002], [0.5949, 0.3608, 0.0261, 0.0024, 0.0008, 0.0007, 0.0005, 0.0003], [0.7977, 0.1386, 0.0329, 0.0027, 0.0009, 0.0007, 0.0005, 0.0005], [0.9406, 0.0322, 0.0143, 0.0013, 0.0012, 0.0003, 0.0002, 0.0002], [0.953, 0.0211, 0.0106, 0.001, 0.001, 0.0008, 0.0006, 0.0003], [0.7677, 0.0491, 0.0317, 0.0159, 0.0124, 0.0062, 0.0029, 0.0024], [0.2128, 0.0783, 0.061, 0.037, 0.0326, 0.0271, 0.0164, 0.0145], [0.112, 0.0723, 0.0439, 0.0321, 0.0266, 0.025, 0.0092, 0.0081], [0.0897, 0.0743, 0.0398, 0.0291, 0.02, 0.0137, 0.0129, 0.0107], [0.0725, 0.0388, 0.0388, 0.0322, 0.0195, 0.0183, 0.0152, 0.0134], [0.1779, 0.0655, 0.0615, 0.0578, 0.0329, 0.0309, 0.0146, 0.0094], [0.2317, 0.1804, 0.132, 0.0277, 0.0244, 0.0229, 0.0168, 0.0115], [0.2202, 0.0918, 0.0491, 0.0491, 0.0383, 0.0218, 0.0218, 0.016], [0.3107, 0.2006, 0.0289, 0.0289, 0.0255, 0.0165, 0.0113, 0.0094], [0.3364, 0.2172, 0.0313, 0.0294, 0.0167, 0.0084, 0.007, 0.007], [0.3205, 0.2202, 0.0383, 0.0218, 0.0117, 0.0067, 0.0059, 0.0059], [0.6975, 0.1374, 0.0145, 0.0128, 0.0093, 0.0082, 0.0077, 0.0025], [0.9475, 0.0153, 0.0105, 0.0093, 0.0044, 0.0013, 0.0008, 0.0007], [0.9307, 0.0525, 0.0071, 0.0043, 0.0023, 0.0006, 0.0005, 0.0002], [0.9401, 0.0468, 0.0063, 0.001, 0.001, 0.0009, 0.0008, 0.0004], [0.9102, 0.04, 0.0167, 0.0089, 0.0069, 0.0061, 0.0023, 0.0015], [0.8619, 0.0486, 0.0379, 0.023, 0.0085, 0.0045, 0.0027, 0.0014], [0.8243, 0.0677, 0.0465, 0.0086, 0.0086, 0.0052, 0.0038, 0.0032], [0.8323, 0.1276, 0.0323, 0.0026, 0.0016, 0.0016, 0.001, 0.0002], [0.8342, 0.145, 0.0153, 0.0023, 0.0006, 0.0003, 0.0002, 0.0002], [0.8184, 0.1336, 0.0117, 0.0033, 0.0018, 0.0015, 0.0014, 0.0012], [0.9807, 0.0062, 0.0045, 0.0024, 0.0006, 0.0005, 0.0004, 0.0002]], "ranks": {}}, {"pos": 565, "top": [["s", " \u2013", "\u2013", "**\u2013", "\u00a0", ".", ".\u2013", "\u2013and"], [" \u2013", " \u2013**", "**\u2013", " \u2013,", " \u200b\u200b", "\u2013", " **\u2013", "s"], ["\u2013", " \u2013", ".\u2013", "**\u2013", " \u2013,", " **\u2013", "\u2026..", "\u2026."], ["\uff1f**", " milfs", "\uff1a**", "\u3002**", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u2013", " **:"], [" **#", "s", " **\u201c", " **\u2013", ">**", "-**", " **\u2018", "\uff1a**"], [" \u200b\u200b", " **\u2013", " **#", "s", " **\u201c", "-**", " **\u2018", "**\u2013"], ["s", " **\u2013", " **\u2018", " **\u201c", " **\"", "<|im_end|>", " \n\n", "\u00a0"], [" **\u2013", " **\u2018", "s", " **\"", " \u200b\u200b", "**\u2013", "\u00a0", " **#"], [" \u200b\u200b", "\u00a0", " \u2013", " \u200b", "\u200c", "s", "\u2013", " \n\n"], ["\u2013", "\u00a0", "s", " \u2013", ".\u2013", "\u2011", " \u00ad", "\u2013and"], [" \u2013", "\u00a0", "s", "\u2013", " \u00ad", " \u200b", " \u200b\u200b", "\u2011"], [" **", " **\u2013", " **\"", " **\u201c", " **#", " **\u2018", "s", " initiatives"], [" **", " **\u2013", " **\u201c", " **\u00ab", " **\u2018", " \u2013**", " **#", " **\""], [" **\u2013", " **", " initiatives", " conceptual", " frameworks", " **\"", " **\u201c", " societal"], [" efforts", " tools", "s", " crafting", " initiatives", " \u00ad", " targeting", " \u2013"], [" crafting", " impactful", " leveraging", " showcasing", " conceptual", " methodologies", " targeting", " akin"], ["s", " targeting", " leveraging", " systems", " crafting", " impactful", " approach", " conceptual"], [" modular", " systems", " initiatives", " approach", " tools", " efforts", " setups", " frameworks"], [" impactful", " frameworks", " systems", " sourcing", " methodologies", " crafting", " modular", " collaborative"], [" efforts", " sourcing", " akin", " crafting", " overarching", " foundational", " leveraging", " conceptual"], [" efforts", " akin", " crafting", " overarching", " foundational", " systems", " ultimately", " weaponry"], [" systems", " conceptual", " frameworks", " networking", " modular", " impactful", " methodologies", " setups"], [" systems", " conceptual", " system", " modern", " modular", " efforts", " weaponry", " elements"], [" ultimately", " systems", " ,", " efforts", " modern", " system", " approach", " elements"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", " ultimately", " systems", " akin", " efforts"], [" systems", " modular", " system", " weaponry", " modern", " foundational", " crafting", " conceptual"], [" systems", " modular", " system", " modern", " elements", " weaponry", " crafting", " conceptual"], [" \n\n", " ,", " systems", " modern", " system", " ultimately", " inter", " elements"], [" systems", " modular", " system", " modern", " ,", " elements", " complex", " technology"], [" systems", " system", " modular", " modern", " **", " \n\n", " structures", " complex"], [" systems", " system", " **", " modular", " modern", " structures", " ,", " complex"], [" systems", " system", " modular", " modern", " complex", " **", " technology", " work"], [" systems", " system", " modern", " modular", " complex", " hybrid", " technology", " structures"], [" systems", " modular", " workflows", " structures", " system", " hybrid", "\u2011", " technologies"], [" systems", " modular", " workflows", " system", " structures", " frameworks", " technologies", " hybrid"], [" systems", " workflows", " structures", " modular", "\u2011", " frameworks", " system", " \u2013"], [" systems", " structures", " workflows", " modular", " frameworks", " architecture", " struct", "\u2011"], [" systems", " structures", " workflows", "\u2011", " frameworks", " struct", " modular", " architecture"], [" structures", " systems", " workflows", " frameworks", " algorithms", " struct", "\u2011", " architecture"], [" systems", " workflows", " structures", " frameworks", "\u2011", " algorithms", " arrays", " struct"], [" structures", " workflows", " systems", " frameworks", " struct", " algorithms", " arrays", " architecture"], [" structures", " workflows", " frameworks", " struct", " systems", " arrays", " algorithms", " storage"], [" structures", " arrays", " storage", " systems", " frameworks", " workflows", " entities", " algorithms"], [" structures", " workflows", " frameworks", " arrays", " systems", " storage", " entities", " algorithms"], [" structures", " workflows", " systems", " arrays", " frameworks", " storage", " modular", " algorithms"], [" structures", " workflows", " arrays", " systems", " modular", " frameworks", " algorithms", " layouts"], [" structures", " workflows", " frameworks", " arrays", " modular", " layouts", " structs", " algorithms"], [" structures", " workflows", " arrays", " frameworks", " layouts", " structs", " modular", " algorithms"], [" structures", " workflows", " frameworks", " arrays", " structs", " algorithms", " modular", " layouts"], [" workflows", " structures", " structs", " arrays", " frameworks", " layouts", " algorithms", " architectures"], [" structs", " workflows", " structures", " arrays", " frameworks", " layouts", " algorithms", "\u6570\u636e\u7ed3\u6784"], [" structs", " workflows", " arrays", " structures", "\u6570\u636e\u7ed3\u6784", " algorithms", " layouts", " frameworks"], [" structs", " structures", " workflows", " arrays", "\u6570\u636e\u7ed3\u6784", " pipelines", " layouts", " architectures"], [" structs", " structures", " arrays", " workflows", "\u6570\u636e\u7ed3\u6784", " architectures", " pipelines", " layouts"], [" structs", " workflows", " structures", "\u6570\u636e\u7ed3\u6784", " architectures", " pipelines", " shaders", " immutable"], [" structs", " workflows", " arrays", "\u6570\u636e\u7ed3\u6784", " structures", " pipelines", " layouts", " immutable"], [" structs", " arrays", " pipelines", " workflows", "\u6570\u636e\u7ed3\u6784", " layouts", " immutable", " vectors"], [" structs", " immutable", " pools", " geometry", " arrays", " pipelines", " layouts", " pooling"], [" entities", " immutable", " data", " pipelines", " geometry", " pools", " structs", " arrays"], [" entities", " immutable", " pipelines", " data", " geometry", " pools", " workflows", " entity"], [" ECS", " pipelines", " immutable", " data", " entities", " geometry", " arrays", " pools"], [" ECS", " pools", " pipelines", " data", " pooling", " immutable", " geometry", " entities"], [" ECS", " data", " immutable", " entities", " pipelines", " pools", " APIs", " geometry"]], "p": [[0.7449, 0.1294, 0.1008, 0.0044, 0.0042, 0.0039, 0.002, 0.0014], [0.4963, 0.2069, 0.0862, 0.0523, 0.0462, 0.0407, 0.0317, 0.015], [0.7545, 0.1311, 0.0376, 0.0258, 0.0108, 0.0084, 0.0065, 0.0065], [0.0214, 0.0095, 0.0089, 0.0079, 0.0058, 0.0054, 0.0035, 0.0033], [0.2047, 0.0801, 0.0551, 0.0517, 0.0379, 0.0379, 0.0295, 0.0244], [0.3845, 0.1248, 0.0316, 0.0262, 0.0204, 0.014, 0.0109, 0.009], [0.2044, 0.055, 0.055, 0.0429, 0.0378, 0.0334, 0.0295, 0.026], [0.155, 0.1285, 0.083, 0.057, 0.0473, 0.0473, 0.0346, 0.0325], [0.6249, 0.2299, 0.0242, 0.0156, 0.0138, 0.0095, 0.0074, 0.0069], [0.4213, 0.2555, 0.083, 0.0607, 0.0253, 0.0174, 0.0127, 0.0056], [0.3579, 0.2039, 0.1799, 0.0484, 0.0377, 0.0202, 0.019, 0.0102], [0.1564, 0.0395, 0.0371, 0.0371, 0.0328, 0.0289, 0.024, 0.0113], [0.1926, 0.043, 0.0203, 0.0179, 0.0158, 0.0149, 0.014, 0.014], [0.022, 0.0171, 0.0142, 0.0133, 0.0133, 0.0118, 0.0104, 0.0092], [0.0201, 0.0178, 0.0138, 0.0108, 0.0101, 0.0101, 0.0101, 0.0101], [0.0206, 0.0182, 0.0182, 0.016, 0.016, 0.0133, 0.0133, 0.0125], [0.0848, 0.0147, 0.0147, 0.0138, 0.013, 0.0122, 0.0115, 0.0101], [0.0202, 0.0202, 0.0108, 0.0101, 0.0101, 0.0095, 0.0095, 0.0095], [0.0272, 0.0165, 0.0129, 0.0129, 0.0094, 0.0094, 0.0094, 0.0088], [0.0155, 0.0128, 0.0128, 0.0107, 0.0107, 0.01, 0.0094, 0.0094], [0.0205, 0.011, 0.011, 0.0103, 0.0097, 0.0085, 0.008, 0.0071], [0.0184, 0.0119, 0.0098, 0.0077, 0.0077, 0.006, 0.0056, 0.0053], [0.0323, 0.0153, 0.0105, 0.0099, 0.0099, 0.0077, 0.0077, 0.0068], [0.0144, 0.0144, 0.0112, 0.0106, 0.0093, 0.0093, 0.0088, 0.0082], [0.3492, 0.0082, 0.0082, 0.006, 0.0053, 0.0053, 0.0044, 0.0044], [0.0468, 0.0172, 0.0152, 0.0152, 0.0134, 0.0104, 0.0098, 0.0081], [0.0492, 0.0232, 0.015, 0.015, 0.011, 0.0091, 0.0071, 0.0071], [0.0435, 0.0435, 0.0205, 0.011, 0.011, 0.011, 0.0091, 0.0067], [0.0944, 0.0326, 0.0326, 0.0186, 0.0093, 0.0082, 0.0073, 0.0068], [0.1438, 0.0412, 0.025, 0.0221, 0.0207, 0.0118, 0.0118, 0.0111], [0.1634, 0.0601, 0.0195, 0.0183, 0.0172, 0.0152, 0.0143, 0.0104], [0.1239, 0.0585, 0.0179, 0.0168, 0.0123, 0.0108, 0.0108, 0.0102], [0.0986, 0.0411, 0.0182, 0.0171, 0.0118, 0.0118, 0.0104, 0.0092], [0.1582, 0.0483, 0.0353, 0.0228, 0.0228, 0.0178, 0.0157, 0.013], [0.1779, 0.0423, 0.0397, 0.0256, 0.0226, 0.0129, 0.0121, 0.0107], [0.1172, 0.0459, 0.0431, 0.038, 0.0261, 0.0231, 0.0149, 0.0131], [0.1147, 0.0788, 0.0696, 0.0309, 0.024, 0.0212, 0.0212, 0.0199], [0.1098, 0.0855, 0.0666, 0.0487, 0.0203, 0.0203, 0.0179, 0.0168], [0.1083, 0.1017, 0.0843, 0.0352, 0.0291, 0.0291, 0.0147, 0.0138], [0.1035, 0.1035, 0.0972, 0.0336, 0.0279, 0.0246, 0.0159, 0.014], [0.2097, 0.0725, 0.0601, 0.0498, 0.0302, 0.0302, 0.0183, 0.0143], [0.2346, 0.0593, 0.0557, 0.0492, 0.0434, 0.0338, 0.0298, 0.0298], [0.273, 0.0782, 0.0446, 0.0419, 0.0419, 0.0393, 0.027, 0.0254], [0.3203, 0.0557, 0.0557, 0.0523, 0.0523, 0.0338, 0.0205, 0.0192], [0.2503, 0.1182, 0.0674, 0.0633, 0.0558, 0.0299, 0.0299, 0.0248], [0.2774, 0.102, 0.0795, 0.0482, 0.0425, 0.0425, 0.0189, 0.0189], [0.2495, 0.2202, 0.0631, 0.0631, 0.0383, 0.0298, 0.0298, 0.0247], [0.2606, 0.203, 0.0701, 0.0582, 0.0311, 0.0228, 0.0228, 0.0167], [0.3243, 0.1532, 0.0564, 0.0529, 0.0467, 0.025, 0.0183, 0.0152], [0.321, 0.2206, 0.1516, 0.0492, 0.0492, 0.0205, 0.011, 0.0075], [0.3222, 0.3222, 0.1046, 0.041, 0.0193, 0.016, 0.0081, 0.0067], [0.4502, 0.2127, 0.0887, 0.0782, 0.0175, 0.0106, 0.0099, 0.0082], [0.783, 0.0728, 0.0501, 0.0304, 0.0087, 0.0077, 0.0047, 0.0025], [0.6972, 0.1211, 0.0505, 0.0393, 0.0128, 0.0099, 0.0099, 0.0053], [0.8129, 0.0667, 0.052, 0.0116, 0.009, 0.0062, 0.0029, 0.0026], [0.8152, 0.0358, 0.0358, 0.0132, 0.008, 0.0071, 0.0071, 0.0071], [0.8291, 0.0413, 0.0152, 0.0104, 0.0092, 0.0092, 0.0081, 0.0056], [0.596, 0.1507, 0.0628, 0.0262, 0.0231, 0.0159, 0.0096, 0.0085], [0.208, 0.162, 0.0867, 0.0765, 0.0675, 0.0675, 0.0319, 0.0281], [0.3034, 0.1433, 0.1265, 0.1116, 0.0465, 0.032, 0.0249, 0.0249], [0.2246, 0.2246, 0.0826, 0.0729, 0.0442, 0.0324, 0.0304, 0.0252], [0.2483, 0.1329, 0.1173, 0.0806, 0.0712, 0.0554, 0.0297, 0.0262], [0.2115, 0.1647, 0.0882, 0.0882, 0.0778, 0.0391, 0.0286, 0.0286]], "ranks": {}}, {"pos": 566, "top": [[".", ",", ";", " \u200b\u200b", "\u00a0", " \u2013", ":", " "], [".", ",", ";", " \u200b\u200b", "\u2013", " \u2013", "\u200b", ":"], [",", ".", "\u2013", ";", "\u2026", "\u2026.", " \u2013", "\u2026.."], [" Shemale", "\ufffd\ufffd", " milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "EventData", "\u5fc3\u4e2d\u6709\u6570", " pornstar", "\u8ba4\u8ba4\u771f"], [" \u200b\u200b", " Data", "arana", " system", " information", " data", ".Data", "\u043a\u0430\u0443"], [" \u200b\u200b", ".Data", " Data", "siz", "=data", ".data", " Vodafone", ".getData"], ["ted", "scape", "\u2026.", ".", ".Data", "-data", "s", "....."], [".Data", "-data", ".data", "ocracy", " data", "\u73cd\u54c1", "scape", "=data"], ["\u00a0", ".", ",", ";", " \u200b\u200b", "\u2026.", "\u2026..", " \n\n"], [",", "\u00a0", ";", " centre", "\u6c34\u4efd", "\u0451\u043c", "-cent", "Centre"], ["\u00a0", "...", ",", ";", " centre", ".", "?...", "&nbsp"], ["VRT", "\u6c34\u4efd", " resources", " organisation", "DataManager", "\u4f53\u7cfb\u5efa\u8bbe", "-data", "EventData"], [" resources", "\u4f53\u7cfb\u5efa\u8bbe", " infrastructure", " systems", "\u6c34\u4efd", "VRT", "-data", "scape"], [" resources", " infrastructure", "\u4f53\u7cfb\u5efa\u8bbe", " systems", " resource", " data", " visuals", "\u6c34\u4efd"], [" resources", "\u4f53\u7cfb\u5efa\u8bbe", " resource", " infrastructure", " visuals", " tools", " systems", "\u8fd9\u79cd\u4e8b\u60c5"], [" resources", " systems", "\u4f53\u7cfb\u5efa\u8bbe", " communications", "\u6c34\u4efd", " messaging", " collection", " tools"], [" resources", " systems", " data", " resource", " system", " infrastructure", " messaging", " assets"], [" resources", "\u4f53\u7cfb\u5efa\u8bbe", " systems", "-data", " data", " assets", "-resources", " visuals"], [" resources", "\u4f53\u7cfb\u5efa\u8bbe", "-data", " systems", " data", "-resources", " infrastructure", " assets"], ["\u4f53\u7cfb\u5efa\u8bbe", " resources", "scape", "\u8bbe\u65bd\u5efa\u8bbe", "ergi", "lessly", "-data", "\u6765\u6e90\u4e8e\u7f51\u7edc"], [" resources", "scape", "\u4f53\u7cfb\u5efa\u8bbe", " systems", " data", "\u0686\u0647", "fully", "form"], ["\u4f53\u7cfb\u5efa\u8bbe", " resources", " systems", "\u8bbe\u65bd\u5efa\u8bbe", "scape", " data", "\u9ad4\u7cfb", "\u6765\u6e90\u4e8e\u7f51\u7edc"], [" systems", " resources", " data", " system", " tools", "scape", " form", " infrastructure"], [" resources", " form", " data", " systems", " system", " complex", " sub", " ,"], [" data", " resources", " systems", " system", " form", " resource", " infrastructure", " tools"], [" data", " systems", " resources", " infrastructure", " technologies", " system", " tools", " storage"], [" data", " systems", " infrastructure", " technologies", " tools", " architectures", " storage", " resources"], [" data", " systems", " tools", " infrastructure", " system", " resources", " core", " storage"], [" data", " systems", " infrastructure", " technologies", " tools", " workflows", " storage", " architectures"], [" data", " systems", " workflows", " architectures", " infrastructure", " technologies", " tools", " storage"], [" systems", " data", " workflows", " tools", " technologies", " structures", " infrastructure", " storage"], [" systems", " data", " tools", " system", " technologies", " infrastructure", " structures", " storage"], [" systems", " system", " tools", " data", " technologies", " structures", " architecture", " infrastructure"], [" systems", " workflows", " architectures", " technologies", " infrastructure", " architecture", " frameworks", " data"], [" systems", " workflows", " data", " architectures", " infrastructure", " technologies", " storage", " grids"], [" systems", " workflows", " data", " architectures", " technologies", " Data", " frameworks", " infrastructure"], [" data", " systems", " workflows", " architectures", " Data", " storage", " architecture", " structures"], [" data", " Data", " systems", " workflows", " architectures", " structures", " arrays", " storage"], [" data", " workflows", " Data", " systems", " structures", " architectures", " struct", " arrays"], [" data", " Data", " workflows", " systems", " storage", " arrays", " structures", " architectures"], [" data", " Data", " storage", " arrays", " structures", " structs", " workflows", " struct"], [" data", " storage", " Data", " structs", " arrays", " struct", " structures", " workflows"], [" storage", " data", " structs", " structures", " arrays", " Data", " workflows", " architectures"], [" structures", " data", " storage", " workflows", " structs", " architectures", " Data", " struct"], [" structures", " workflows", " architectures", " storage", " structs", " arrays", " layouts", " data"], [" structures", " workflows", " storage", " layouts", " arrays", " structs", " architectures", " databases"], [" workflows", " structures", " layouts", " structs", " storage", " arrays", " architectures", " frameworks"], [" workflows", " structures", " layouts", " structs", " arrays", " storage", " architectures", " pipelines"], [" structs", " workflows", " layouts", " arrays", " structures", " pipelines", " architectures", " storage"], [" structs", " workflows", " layouts", " arrays", " structures", " architectures", ";**", " pipelines"], [" structs", " workflows", " arrays", " structures", " pipelines", ">Data", " layouts", "/Data"], [" structs", " arrays", " workflows", " structures", ">Data", "/Data", " pipelines", " layouts"], [" structs", " structures", " arrays", " pipelines", " layouts", " workflows", ">Data", "/Data"], [" structs", " structures", " arrays", " pipelines", " layouts", " workflows", ">Data", "structures"], [" structs", " structures", ">Data", "/Data", "(Data", "structures", "/data", " pipelines"], [" structs", " structures", ">Data", "structures", "/Data", " buffers", " pipelines", " arrays"], [" structs", " structures", ">Data", "structures", " layouts", " pipelines", " containers", " arrays"], [" structs", " structures", " layouts", "structures", " buffers", " layout", " Structures", " pipelines"], [" structures", " layouts", " structs", " pipelines", "structures", " layout", " containers", " Structures"], [" layouts", " pipelines", " structures", " layout", " oriented", "-oriented", " Orient", " pipeline"], [" structures", " pipelines", " layouts", " containers", " structs", " buffers", "-oriented", " arrays"], [" structures", " layouts", " containers", " pipelines", " buffers", "-oriented", " structs", " pools"], [" structures", " layouts", " containers", " pipelines", " pools", " formats", " structs", " arrays"]], "p": [[0.8126, 0.1813, 0.0029, 0.0007, 0.0005, 0.0004, 0.0003, 0.0002], [0.4706, 0.3038, 0.0438, 0.0265, 0.0171, 0.0118, 0.0034, 0.0026], [0.5163, 0.4556, 0.0121, 0.0083, 0.0024, 0.0019, 0.0008, 0.0006], [0.0019, 0.0019, 0.0014, 0.0014, 0.0011, 0.0011, 0.0009, 0.0009], [0.0143, 0.0041, 0.0028, 0.0023, 0.0018, 0.0017, 0.0015, 0.0014], [0.0081, 0.0032, 0.0025, 0.0018, 0.0014, 0.0012, 0.0011, 0.0009], [0.0067, 0.0052, 0.0038, 0.0038, 0.0036, 0.0034, 0.0034, 0.0032], [0.0075, 0.0033, 0.0033, 0.0027, 0.0027, 0.0027, 0.0027, 0.0026], [0.1182, 0.0558, 0.0181, 0.0141, 0.0086, 0.0071, 0.0049, 0.004], [0.0229, 0.009, 0.0051, 0.0024, 0.002, 0.0018, 0.0017, 0.0016], [0.0713, 0.0096, 0.0075, 0.0052, 0.0046, 0.0043, 0.0038, 0.0035], [0.0038, 0.0028, 0.0021, 0.0021, 0.002, 0.0019, 0.0016, 0.0013], [0.0027, 0.0021, 0.0019, 0.0017, 0.0016, 0.0014, 0.0013, 0.0013], [0.0065, 0.0042, 0.0026, 0.0024, 0.0021, 0.002, 0.0019, 0.0015], [0.0059, 0.003, 0.0023, 0.002, 0.0019, 0.0019, 0.0018, 0.0015], [0.004, 0.004, 0.0026, 0.0022, 0.002, 0.0017, 0.0014, 0.0014], [0.0131, 0.0045, 0.0042, 0.0026, 0.002, 0.0019, 0.0018, 0.0018], [0.0062, 0.0028, 0.0024, 0.002, 0.0018, 0.0017, 0.0015, 0.0015], [0.0065, 0.0035, 0.0035, 0.0025, 0.0024, 0.002, 0.0014, 0.0014], [0.0033, 0.0024, 0.0016, 0.0015, 0.0013, 0.0011, 0.0011, 0.0011], [0.0024, 0.0015, 0.0011, 0.0011, 0.0009, 0.0009, 0.0009, 0.0008], [0.0039, 0.0029, 0.0024, 0.0022, 0.0018, 0.0016, 0.0012, 0.0011], [0.0088, 0.0083, 0.0064, 0.0042, 0.0027, 0.0024, 0.0022, 0.0021], [0.0053, 0.005, 0.0047, 0.0044, 0.0032, 0.0027, 0.0027, 0.0023], [0.0129, 0.0084, 0.0074, 0.0029, 0.0027, 0.0025, 0.0024, 0.0024], [0.0544, 0.0291, 0.0121, 0.0114, 0.0083, 0.0069, 0.0061, 0.0039], [0.0389, 0.0267, 0.0111, 0.0092, 0.0068, 0.006, 0.006, 0.0049], [0.0307, 0.0254, 0.0064, 0.006, 0.0057, 0.005, 0.0047, 0.0044], [0.0786, 0.0694, 0.024, 0.0165, 0.0155, 0.0155, 0.0128, 0.0121], [0.1063, 0.0828, 0.0686, 0.0252, 0.0237, 0.0223, 0.0185, 0.0174], [0.2284, 0.1223, 0.045, 0.029, 0.0241, 0.0187, 0.0187, 0.0176], [0.2587, 0.0696, 0.0309, 0.0273, 0.0199, 0.0199, 0.0165, 0.0137], [0.2043, 0.026, 0.0229, 0.0215, 0.0123, 0.0115, 0.0108, 0.0102], [0.1077, 0.0839, 0.0542, 0.0328, 0.0155, 0.0137, 0.0129, 0.0129], [0.0895, 0.0615, 0.0397, 0.035, 0.0213, 0.0213, 0.0137, 0.0129], [0.09, 0.0746, 0.0701, 0.0399, 0.0177, 0.0177, 0.0177, 0.0156], [0.0871, 0.0563, 0.0497, 0.0438, 0.0363, 0.0161, 0.0142, 0.0118], [0.0928, 0.0872, 0.0563, 0.0529, 0.0321, 0.022, 0.0152, 0.0134], [0.1003, 0.0648, 0.0609, 0.0572, 0.0306, 0.0238, 0.021, 0.0186], [0.14, 0.0849, 0.0704, 0.0455, 0.0333, 0.0312, 0.0312, 0.0215], [0.2845, 0.1263, 0.0596, 0.041, 0.0362, 0.0319, 0.0282, 0.0219], [0.2642, 0.1816, 0.0757, 0.0405, 0.0381, 0.0358, 0.0336, 0.0278], [0.1758, 0.1552, 0.0733, 0.0733, 0.0536, 0.0445, 0.0306, 0.0306], [0.1324, 0.1168, 0.091, 0.0754, 0.0518, 0.0518, 0.0379, 0.0295], [0.1287, 0.1002, 0.078, 0.0608, 0.0608, 0.0325, 0.0325, 0.0287], [0.1325, 0.0855, 0.0666, 0.0552, 0.0487, 0.043, 0.043, 0.023], [0.1742, 0.1197, 0.0682, 0.0682, 0.0602, 0.0531, 0.0389, 0.0162], [0.1687, 0.1089, 0.0848, 0.0749, 0.0515, 0.0483, 0.0332, 0.0202], [0.1433, 0.1265, 0.0597, 0.0561, 0.0527, 0.0362, 0.0362, 0.0234], [0.3715, 0.1206, 0.057, 0.057, 0.0346, 0.0253, 0.0223, 0.0174], [0.4531, 0.0787, 0.0695, 0.0349, 0.024, 0.0212, 0.0199, 0.0165], [0.6416, 0.0868, 0.0319, 0.0319, 0.022, 0.0133, 0.011, 0.0086], [0.9443, 0.0196, 0.0105, 0.0027, 0.0027, 0.0021, 0.0018, 0.0013], [0.8883, 0.039, 0.039, 0.0077, 0.0028, 0.0019, 0.0015, 0.0015], [0.681, 0.152, 0.0922, 0.0264, 0.011, 0.0086, 0.0046, 0.0025], [0.772, 0.1342, 0.016, 0.0097, 0.0067, 0.0059, 0.0059, 0.0049], [0.7917, 0.1559, 0.0078, 0.0078, 0.0068, 0.003, 0.0029, 0.0022], [0.528, 0.3629, 0.0263, 0.0181, 0.0141, 0.0046, 0.004, 0.004], [0.6187, 0.1564, 0.0949, 0.0349, 0.0308, 0.0187, 0.0078, 0.0054], [0.402, 0.1676, 0.1016, 0.1016, 0.0544, 0.0424, 0.0138, 0.0129], [0.4966, 0.2346, 0.1108, 0.0317, 0.0193, 0.0132, 0.0103, 0.0085], [0.3787, 0.2297, 0.1229, 0.0746, 0.0214, 0.0166, 0.0156, 0.0156], [0.416, 0.1965, 0.153, 0.0819, 0.0235, 0.0161, 0.0142, 0.0111]], "ranks": {}}, {"pos": 567, "top": [[",", ".", "\u2013", ";", " \u2013", "\u00a0", ",.", ":"], [",", "\u2013", ".", " \u2013", ";", "\u2013and", ".\u2013", ",."], [",", ".", "\u2013", ";", " \u2013", "\u2026", "\u2013and", "\u2026."], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "\ufffd\ufffd", " ;;^", "-------------</", " Blowjob", " Guta", " Shemale"], [",", ".", "ingly", ".@", ",@", "\u00a0\u00a0", ":@", "ably"], [",", ".", "\u00a0\u00a0", "\u00a0", "\u2013and", "odd", "\u2026.", "\u2026.."], [",", "\u00a0", ".", "\u00a0\u00a0", " \u00a0", "ably", "\u00a0\u00a0\u00a0", "\uff01"], [",", ".", ";", "ward", "ably", "\u2013and", "ings", "\u00a0"], [",", ".", "\u00a0", ";", ",.", "\u2013and", "\u00a0\u00a0", "!."], [",", "\u00a0", "\u2013", "\u2013and", "\u00ad", ";", " \u00ad", "though"], [",", "\u00a0", " \u00ad", "\u2013", "\u00ad", ";", ".", "\u2013and"], [" pricey", "unky", "ily", " oddly", " uncomfort", " veggies", " comfy", "-ish"], [" veggies", " pricey", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " comfy", " tweaked", "unky", "\u4e94\u82b1\u516b", " uncomfort"], [" pricey", " tweaked", "unky", " veggies", " tweaks", " savvy", "\u8d8a\u53d1", " tweaking"], [" tweaked", " pricey", " savvy", " akin", " albeit", " though", " tweaking", " plenty"], [" plenty", " pricey", " savvy", " tweaked", " tweaking", " nicely", " folks", " gritty"], [" plenty", " savvy", " tweaked", "\u00a0", " akin", " tweaking", " pricey", " myriad"], [" tweaked", " tweaking", " pricey", " savvy", " tweaks", "-esque", " akin", " gritty"], [" tweaking", " pricey", " savvy", " tweaked", " tweaks", " hefty", " akin", " gritty"], [" myriad", " swiftly", " burgeoning", " akin", " pricey", " hugely", "\u7b80\u7b80\u5355", " sprawling"], ["<|endoftext|>", " swiftly", " myriad", " though", " genuinely", "though", "<|file_sep|>", " burgeoning"], ["\u7b80\u7b80\u5355", "\u5171\u540c\u6253\u9020", "\u8fd8\u6709\u7740", " ;;^", "Sharper", "\u5e45\u5e83\u304f", "rufe", "\u4e5f\u4f7f\u5f97"], ["\u7b80\u7b80\u5355", " swiftly", "\u4e5f\u4f7f\u5f97", "\u305d\u3046\u3057\u305f", " aggressively", "\u8fd8\u6709\u7740", "\u4fe9\u4eba", " outright"], [" swiftly", " merely", " myriad", " ``", " largely", "\u4e5f\u4f7f\u5f97", "\u7b80\u7b80\u5355", " continually"], [" swiftly", " though", " myriad", " genuinely", "\u3082\u306e\u3067\u306f", " T\u00e9cn", "\u4ec0\u9ebd", " hugely"], [" T\u00e9cn", "\u7b80\u7b80\u5355", " t\u00e9cn", " ;;^", "\u8fd8\u6709\u7740", "\u3082\u306e\u3067\u306f", "\u62e5\u6709\u7740", "\u5171\u540c\u6253\u9020"], [" T\u00e9cn", " t\u00e9cn", " mundane", "\u3082\u306e\u3067\u306f", " heavily", " ;;^", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", "\u7b80\u7b80\u5355"], [" heavily", " largely", " notably", " myriad", " much", " ultimately", " fully", " arguably"], [" heavily", " largely", " T\u00e9cn", " myriad", " complex", " modern", " aggressively", " ultimately"], [" heavily", " complex", " modern", " ,", " largely", " much", " systems", " fully"], [" heavily", " modern", " complex", " even", " systems", " often", " free", " much"], [" free", " complex", " even", " and", " modern", " heavily", " systems", " non"], [" heavily", " even", " complex", " aggressively", " non", " fully", " rapidly", " modern"], [" meticulously", " heavily", " aggressively", " systems", " modular", " complex", " creatively", " strategically"], [" meticulously", " modular", " aggressively", " heavily", " algorithms", " systems", " strategically", " t\u00e9cn"], [" modular", "\u2011", " meticulously", " algorithms", " aggressively", " embedded", " complex", " heavily"], [" reuse", " reusable", " algorithms", " reused", " modular", " aggressively", " recycl", " recycling"], [" reuse", " reusable", " arrays", " reused", " algorithms", "\u2011", " modular", " meticulously"], [" arrays", " algorithms", " reuse", " meticulously", " reusable", " recycling", " reused", " allocations"], [" arrays", " reuse", "\u2011", " reusable", " algorithms", " storage", " reused", " allocations"], [" arrays", " storage", "\u2011", " reuse", " reusable", " algorithms", " allocations", " immutable"], [" arrays", " reuse", " reusable", " storage", " reused", " recycling", " allocations", " recycled"], [" arrays", " reusable", " reuse", " storage", " reused", " containers", " recycling", " recycled"], [" arrays", " reusable", " reuse", " storage", " reused", " containers", " recycle", " recycling"], [" arrays", " reusable", " reuse", " reused", " storage", " containers", " recycle", " recycling"], [" arrays", " reusable", " reuse", " reused", " grids", " containers", " recycling", " storage"], [" arrays", " reusable", " reuse", " reused", " buffers", " grids", " containers", " structs"], [" arrays", " reusable", " buffers", " reuse", " loops", " matrices", " structs", " grids"], [" arrays", " reusable", " loops", " buffers", " reuse", " grids", " structs", " matrices"], [" arrays", " reusable", " structs", " buffers", " loops", " reuse", " grids", "arrays"], [" arrays", " reusable", " structs", "Reusable", " reuse", "\u5faa\u73af\u5229\u7528", "arrays", "reuse"], [" arrays", " structs", " reusable", "arrays", " reuse", " caches", "\u5faa\u73af\u5229\u7528", "reuse"], [" reusable", " reuse", "Reusable", "Reuse", " reused", "reuse", " arrays", "\u590d\u7528"], [" reusable", "Reusable", " reuse", " arrays", "reuse", "Reuse", " reused", " buffers"], [" arrays", " reusable", " buffers", "Reusable", " reuse", "reuse", " immutable", " mutable"], [" arrays", " buffers", "arrays", "Reusable", "buffers", " IDisposable", "-array", " reusable"], [" pools", "\u6c60", " pooled", " pooling", " pool", " arrays", " Pool", "Pool"], [" pools", "\u6c60", " pool", " pooled", " pooling", " Pool", "pool", "Pool"], [" pooled", " pools", " pooling", "\u6c60", " pool", " Pool", "Pool", "_pool"], [" Span", " spans", " span", ".Span", "Span", "SPAN", "/span", "_span"], [" Span", " span", " spans", " `", " pooled", ".Span", " `[", "Span"], [" `", " span", " Span", " spans", " `[", " object", " pooled", " pre"], [" `", " object", " `[", " span", " Span", " spans", " pre", " immutable"]], "p": [[0.7385, 0.2398, 0.0174, 0.0018, 0.0018, 0.0003, 0.0001, 0.0], [0.4355, 0.4355, 0.0757, 0.0278, 0.0102, 0.0075, 0.0005, 0.0004], [0.8131, 0.1247, 0.0589, 0.0018, 0.0007, 0.0002, 0.0002, 0.0001], [0.0077, 0.0037, 0.0013, 0.0013, 0.0012, 0.0011, 0.001, 0.0009], [0.221, 0.0361, 0.008, 0.0059, 0.0046, 0.0028, 0.0026, 0.0025], [0.556, 0.0486, 0.0123, 0.004, 0.0029, 0.002, 0.0018, 0.0015], [0.1539, 0.1199, 0.0934, 0.0251, 0.0082, 0.0072, 0.0046, 0.0044], [0.3385, 0.1245, 0.007, 0.0062, 0.0058, 0.0055, 0.0048, 0.0048], [0.7066, 0.1787, 0.058, 0.0074, 0.0029, 0.0019, 0.0015, 0.0015], [0.6548, 0.0093, 0.0082, 0.0073, 0.0068, 0.0047, 0.0044, 0.0017], [0.4529, 0.2278, 0.0176, 0.0113, 0.0088, 0.0088, 0.0083, 0.0073], [0.0088, 0.0069, 0.0039, 0.0033, 0.0029, 0.0029, 0.0027, 0.0022], [0.0062, 0.0055, 0.0043, 0.0031, 0.0024, 0.002, 0.0019, 0.0018], [0.0092, 0.0076, 0.0049, 0.0038, 0.0036, 0.0036, 0.003, 0.003], [0.0172, 0.0162, 0.0111, 0.0059, 0.0059, 0.0056, 0.0049, 0.0044], [0.0234, 0.022, 0.0182, 0.011, 0.0097, 0.0081, 0.0067, 0.0056], [0.0206, 0.0194, 0.0194, 0.0182, 0.0151, 0.0125, 0.0117, 0.0104], [0.013, 0.013, 0.0079, 0.0074, 0.0065, 0.0035, 0.0026, 0.0026], [0.009, 0.0079, 0.0062, 0.0062, 0.0045, 0.0038, 0.0038, 0.0033], [0.0044, 0.0029, 0.0022, 0.0021, 0.0018, 0.0018, 0.0018, 0.0018], [0.2061, 0.0035, 0.0023, 0.0019, 0.0015, 0.0015, 0.0014, 0.0014], [0.0025, 0.0011, 0.001, 0.0009, 0.0008, 0.0007, 0.0007, 0.0007], [0.0025, 0.0013, 0.0012, 0.0011, 0.0009, 0.0009, 0.0009, 0.0008], [0.002, 0.0016, 0.0015, 0.0014, 0.0013, 0.0013, 0.0012, 0.0012], [0.0018, 0.0013, 0.0012, 0.0012, 0.0011, 0.0011, 0.001, 0.001], [0.0021, 0.0014, 0.0014, 0.001, 0.001, 0.001, 0.0008, 0.0008], [0.0027, 0.0016, 0.0013, 0.0013, 0.0012, 0.0012, 0.0011, 0.0011], [0.0091, 0.0062, 0.0038, 0.0038, 0.0038, 0.0033, 0.0033, 0.0033], [0.0096, 0.0037, 0.0031, 0.0031, 0.0029, 0.0029, 0.0029, 0.0026], [0.0145, 0.0093, 0.0093, 0.0073, 0.0068, 0.0053, 0.005, 0.005], [0.0156, 0.0114, 0.0101, 0.0083, 0.0078, 0.0078, 0.0078, 0.0069], [0.0209, 0.0153, 0.0127, 0.0127, 0.0119, 0.0105, 0.0105, 0.0093], [0.0157, 0.0089, 0.0084, 0.0074, 0.0074, 0.007, 0.0065, 0.0065], [0.0102, 0.0066, 0.0058, 0.004, 0.004, 0.0033, 0.0026, 0.0026], [0.0118, 0.0081, 0.0052, 0.0041, 0.0028, 0.0028, 0.0025, 0.0023], [0.0241, 0.0121, 0.01, 0.0089, 0.0057, 0.0054, 0.0037, 0.0035], [0.0182, 0.0133, 0.0117, 0.0117, 0.0104, 0.0086, 0.0063, 0.0063], [0.0291, 0.0188, 0.0156, 0.0146, 0.0138, 0.0114, 0.0089, 0.0074], [0.0299, 0.0218, 0.0218, 0.0133, 0.0133, 0.0097, 0.0091, 0.008], [0.0862, 0.0491, 0.0461, 0.0298, 0.0192, 0.0141, 0.0132, 0.0097], [0.1788, 0.0545, 0.0292, 0.0227, 0.0166, 0.0166, 0.0156, 0.013], [0.1957, 0.1432, 0.1345, 0.0924, 0.0319, 0.0171, 0.0161, 0.0142], [0.2971, 0.1802, 0.0906, 0.0751, 0.0229, 0.0168, 0.0123, 0.0115], [0.3481, 0.1451, 0.0827, 0.0502, 0.0223, 0.0196, 0.0119, 0.0099], [0.2697, 0.1444, 0.0773, 0.0322, 0.0267, 0.0208, 0.0134, 0.0126], [0.2819, 0.1606, 0.0432, 0.0246, 0.018, 0.0124, 0.0124, 0.0124], [0.2678, 0.184, 0.0495, 0.0182, 0.0161, 0.0142, 0.0111, 0.0104], [0.4376, 0.0809, 0.0218, 0.0205, 0.017, 0.0159, 0.0117, 0.0117], [0.3144, 0.0747, 0.0275, 0.0275, 0.0228, 0.0177, 0.0167, 0.013], [0.1927, 0.0588, 0.0261, 0.0245, 0.023, 0.0158, 0.0149, 0.0123], [0.0814, 0.0596, 0.0436, 0.03, 0.0219, 0.016, 0.0151, 0.0142], [0.2013, 0.0951, 0.0422, 0.0212, 0.0199, 0.0187, 0.0155, 0.0094], [0.4489, 0.2723, 0.0884, 0.0536, 0.0473, 0.0473, 0.0073, 0.005], [0.435, 0.1412, 0.1246, 0.0667, 0.052, 0.0278, 0.0278, 0.0131], [0.2537, 0.1358, 0.1198, 0.0641, 0.0441, 0.0208, 0.0196, 0.0173], [0.6282, 0.1237, 0.019, 0.0148, 0.0139, 0.013, 0.0108, 0.0079], [0.3842, 0.2992, 0.1101, 0.0971, 0.0668, 0.007, 0.0033, 0.0029], [0.3422, 0.302, 0.1427, 0.1111, 0.0865, 0.0038, 0.0038, 0.0023], [0.3916, 0.2096, 0.185, 0.1122, 0.0771, 0.0072, 0.0026, 0.0021], [0.4574, 0.1907, 0.1683, 0.0701, 0.0546, 0.0138, 0.0122, 0.0074], [0.286, 0.1531, 0.1351, 0.1192, 0.0638, 0.0497, 0.0497, 0.0342], [0.4403, 0.1429, 0.0982, 0.0867, 0.0765, 0.0281, 0.0219, 0.0142], [0.8215, 0.1112, 0.0193, 0.0133, 0.0071, 0.0071, 0.0028, 0.0016]], "ranks": {}}, {"pos": 568, "top": [[" \u2013", "\u6700\u65b0\u53d1\u5e03", "\u2013and", " `", "\u2013", "s", "(`", ".`"], [" `", "(`", ":`", " `,", " `\\", "\u6700\u65b0\u53d1\u5e03", "sWith", ".`"], ["\u2013and", "\u2013", "\u6700\u65b0\u53d1\u5e03", ".`", ".\u2013", "(`", "s", ":`"], ["``", " `_", " ``", " ``(", " `", ":`", "}`", "`,`"], [" `", " `_", ":`", "(`", " `,", " `%", " `\\", "}`"], [" `_", " `", "(`", " `,", ":`", " `\\", "`:", " `%"], [" `", " `_", "(`", "`", "}`", ":`", ".`", "`."], [" `", " `_", "(`", ":`", "}`", "`", "`\\", ".`"], [" `", "(`", ":`", "`", ".`", " `_", "=`", "}`"], ["`\\", " `", ":`", "(`", " `\\", "}`", " `_", "`"], [" `", "`", "(`", "`\\", ":`", "}`", " `_", ".`"], [" `", " `_", " `%", "(`", "}`", "`\\", " `\\", ":`"], [" `", " `_", "`\\", "(`", "}`", " `%", " `\\", ":`"], [" `", "(`", "}`", " `%", ":`", "=`", "`\\", " `_"], [" `", "(`", "}`", "=`", "`", ":`", " `%", " `_"], [" `", "(`", "}`", "`", "=`", "`\\", " `%", "`}"], [" `", "(`", "`", "}`", "=`", " `%", "`\\", "`t"], ["(`", "`\\", " `", "`", "}`", " `%", "=`", " `\\"], ["(`", " `", "}`", "`", "`\\", " `%", "=`", ":`"], [" `", "(`", "}`", "`", "`\\", "`,", " `%", "=`"], [" `", "`", "(`", "`,", "}`", "=`", "`]", "`;"], [" `", " `%", "}`", "(`", "=`", "`,", "`", " `,"], [" `", " `%", "`", "}`", "``", " ``", "(`", " `,"], [" `", "`", "`,", " `,", "(`", " `%", "}`", "`;"], [" `", " \n\n", "`,", "`", "`\\", " \r\n\r\n", "\r\n\r\n", " `_"], [" `", " `_", " `\\", " `,", " `%", "`,", "(`", "`\\"], [" `", " `_", " `%", " ``", " `,", " `\\", "`]", "`,"], [" \n\n", "\n\n", " `", "\r\n\r\n", " \r\n\r\n", "   \n\n", " `_", " \n\n\n"], [" \n\n", "\n\n", " `", " `_", "\r\n\r\n", " \r\n\r\n", "   \n\n", " `,"], [" \n\n", " `_", " `", " ...", " \r\n\r\n", "   \n\n", " ____", " ...\\"], [" \n\n", " `", " `_", " \r\n\r\n", " `,", "   \n\n", " `\\", "(`"], [" ...", " \n\n", " `", " \r\n\r\n", "...", "...*", " `[", " ...\\"], [" `", "\\\\/", "\u2013", " utilities", "`\\", "`]", "(`", "`,"], [" *\u2013", "`]", "(`", "`\\", " toolkit", "}`", "\\\\/", " `\\"], [" *\u2013", "(`", "`]", "\u2011", " toolkit", " STEM", "}`", " IoT"], [" *\u2013", "\u2026*", "**\u2013", "\u2011", "[\u2026]", "\u2013", "...*", "`]"], [" *\u2013", "\u2011", "\u2026*", "Metal", "[\u2026]", "**\u2013", " Modular", " SIMD"], ["\u2011", "[\u2026]", " *\u2013", " Allocator", " Metal", "`;", "Metal", "storage"], ["\u2011", "Memory", "[\u2026]", " Memory", "Azure", "Metal", " arrays", "Immutable"], ["\u2011", "Memory", " [\u2026]", "memory", " Memory", "storage", " Storage", "[\u2026]"], [" Memory", "\u2011", "Memory", "memory", " Allocator", " Storage", " Metal", "-memory"], ["Memory", " Memory", " Storage", " Allocator", "-memory", "memory", " allocator", "storage"], [" arrays", " Memory", " Storage", " Allocator", "Memory", "-memory", "Allocator", "containers"], [" Storage", " Memory", " Allocator", "Memory", "containers", " arrays", " Metal", "storage"], [" Storage", " arrays", "containers", " Memory", " Allocator", " Metal", " containers", " structs"], [" arrays", " Storage", " Memory", "containers", " Metal", " structs", " containers", " Steel"], [" arrays", " structs", " Storage", "containers", " Metal", " Memory", "arrays", " SIMD"], [" arrays", " Metal", " Storage", " structs", "containers", "arrays", " Memory", " SIMD"], [" structs", " SIMD", " arrays", "containers", "vecs", "arrays", " Allocator", " Metal"], [" SIMD", " structs", "arrays", "vecs", " arrays", "/storage", " Storage", " Allocator"], [" SIMD", "arrays", " structs", "vecs", "containers", "reuse", " arrays", "Reusable"], [" SIMD", " structs", "arrays", " arrays", "/array", "reuse", " Allocator", "-cache"], ["Reusable", "reuse", "Reuse", " reuse", " reusable", " SIMD", " IDisposable", "\u590d\u7528"], ["Reusable", "reuse", " Buffer", " IDisposable", " arrays", " SIMD", "Reuse", " ByteArray"], [" IDisposable", "alloc", " arrays", " Heap", " Allocator", " HashSet", "alloca", " Unsafe"], [" IDisposable", " Buffer", " arrays", "array", "\u6570\u7ec4", " Array", " Unsafe", " Immutable"], ["\u6c60", " pool", "Pool", " pools", " Pool", " pooling", "pool", "(pool"], ["\u6c60", " pool", " Pool", " pools", " pooling", "pool", "Pool", " pooled"], [" Span", "Span", " ref", " Pool", "\u6c60", ".Span", " pooling", "_span"], [" Span", "Span", ".Span", " span", "_span", " spans", "span", "(span"], [" Span", "Span", ".Span", " ref", " span", "_span", " spans", "span"], [" Span", "Span", ".Span", " span", " Memory", "span", "_span", " spans"], ["Span", " Span", "Memory", "Array", ".Span", " Memory", "span", "object"]], "p": [[0.1595, 0.1167, 0.1167, 0.103, 0.0802, 0.0457, 0.0179, 0.0158], [0.2351, 0.0921, 0.0717, 0.0525, 0.0361, 0.0264, 0.0219, 0.0181], [0.2554, 0.1755, 0.1207, 0.0829, 0.0472, 0.0417, 0.0269, 0.0223], [0.4572, 0.1484, 0.0958, 0.0177, 0.0058, 0.0054, 0.0054, 0.0048], [0.5188, 0.2163, 0.0376, 0.0332, 0.0258, 0.0201, 0.0138, 0.013], [0.3152, 0.2035, 0.0961, 0.0703, 0.0483, 0.0228, 0.0215, 0.0202], [0.6598, 0.0695, 0.0542, 0.0422, 0.0372, 0.029, 0.0256, 0.0121], [0.4942, 0.1416, 0.0758, 0.0521, 0.0358, 0.0246, 0.0217, 0.0217], [0.385, 0.1103, 0.0974, 0.0669, 0.059, 0.0358, 0.0358, 0.0279], [0.4155, 0.1051, 0.0927, 0.0818, 0.0562, 0.0438, 0.0341, 0.022], [0.7554, 0.0547, 0.0483, 0.0293, 0.0228, 0.0178, 0.0108, 0.0108], [0.3265, 0.1279, 0.0729, 0.0643, 0.0643, 0.0567, 0.047, 0.0415], [0.237, 0.1438, 0.077, 0.0723, 0.0638, 0.0563, 0.0467, 0.0438], [0.1669, 0.1473, 0.0696, 0.0542, 0.0478, 0.0396, 0.0372, 0.0272], [0.4638, 0.1603, 0.0806, 0.0405, 0.0358, 0.0204, 0.0204, 0.0124], [0.2221, 0.0636, 0.0636, 0.0363, 0.0282, 0.0207, 0.0194, 0.0151], [0.2467, 0.124, 0.0707, 0.0403, 0.0277, 0.0244, 0.0168, 0.0148], [0.2223, 0.1627, 0.0987, 0.0598, 0.0562, 0.0386, 0.0341, 0.0266], [0.183, 0.1719, 0.1257, 0.092, 0.0594, 0.0492, 0.0338, 0.0219], [0.2135, 0.2006, 0.1073, 0.089, 0.0507, 0.0447, 0.0308, 0.0308], [0.3485, 0.1063, 0.0998, 0.073, 0.0443, 0.0269, 0.0223, 0.0197], [0.2228, 0.082, 0.0723, 0.0529, 0.0266, 0.0235, 0.0235, 0.0207], [0.813, 0.0246, 0.0217, 0.0217, 0.0191, 0.0169, 0.0131, 0.0096], [0.8249, 0.0182, 0.0151, 0.0098, 0.0092, 0.0086, 0.0081, 0.0071], [0.3334, 0.139, 0.0617, 0.0351, 0.031, 0.0291, 0.0291, 0.0227], [0.5511, 0.0618, 0.0375, 0.0311, 0.0274, 0.0147, 0.0147, 0.013], [0.3279, 0.0829, 0.0472, 0.0472, 0.0253, 0.0197, 0.0153, 0.0135], [0.606, 0.2229, 0.0929, 0.0072, 0.0063, 0.0046, 0.0046, 0.0026], [0.2891, 0.0938, 0.0778, 0.0391, 0.0345, 0.0253, 0.0185, 0.0163], [0.1615, 0.1425, 0.0408, 0.0338, 0.0233, 0.0181, 0.017, 0.016], [0.1563, 0.0786, 0.0612, 0.0212, 0.0155, 0.0145, 0.0113, 0.0088], [0.0952, 0.0542, 0.0542, 0.0146, 0.0137, 0.0129, 0.01, 0.0094], [0.0132, 0.0067, 0.0049, 0.004, 0.0038, 0.0036, 0.0036, 0.0036], [0.0103, 0.0052, 0.0048, 0.004, 0.0031, 0.0031, 0.0026, 0.0026], [0.0159, 0.0031, 0.0029, 0.0019, 0.0018, 0.0017, 0.0016, 0.0016], [0.0573, 0.0224, 0.0057, 0.0053, 0.0053, 0.0034, 0.0034, 0.003], [0.0109, 0.0085, 0.008, 0.0046, 0.0033, 0.0021, 0.002, 0.0019], [0.0554, 0.0062, 0.0058, 0.0055, 0.0043, 0.0043, 0.0033, 0.0029], [0.0373, 0.0047, 0.0039, 0.0037, 0.0033, 0.0033, 0.0033, 0.0031], [0.0323, 0.0184, 0.0153, 0.0112, 0.0093, 0.0082, 0.0064, 0.0056], [0.0484, 0.0455, 0.0401, 0.0229, 0.0167, 0.0167, 0.0115, 0.0108], [0.0505, 0.0306, 0.0198, 0.0198, 0.0154, 0.0136, 0.012, 0.0113], [0.0251, 0.0236, 0.0222, 0.0173, 0.0119, 0.0098, 0.0092, 0.0087], [0.0397, 0.0241, 0.0187, 0.0155, 0.0137, 0.0107, 0.0089, 0.0073], [0.0321, 0.0284, 0.0183, 0.0152, 0.0126, 0.0104, 0.0092, 0.0087], [0.0343, 0.0303, 0.0221, 0.0195, 0.0184, 0.0087, 0.0081, 0.0076], [0.0259, 0.0178, 0.0178, 0.0148, 0.0122, 0.0095, 0.0079, 0.007], [0.024, 0.0176, 0.0155, 0.0128, 0.0113, 0.0094, 0.0078, 0.0065], [0.0108, 0.0101, 0.0095, 0.0084, 0.0079, 0.0066, 0.0058, 0.0051], [0.0144, 0.0127, 0.0093, 0.0093, 0.0082, 0.0077, 0.0053, 0.005], [0.0177, 0.0089, 0.0079, 0.0069, 0.0048, 0.004, 0.0037, 0.0037], [0.042, 0.0348, 0.0327, 0.0271, 0.0128, 0.01, 0.0088, 0.0078], [0.2161, 0.1907, 0.0795, 0.0546, 0.0425, 0.04, 0.0242, 0.0228], [0.1534, 0.1195, 0.0639, 0.0498, 0.0439, 0.0388, 0.0342, 0.0322], [0.2643, 0.0405, 0.0336, 0.0316, 0.0316, 0.0316, 0.0262, 0.0204], [0.235, 0.0864, 0.0524, 0.0463, 0.0318, 0.0281, 0.0233, 0.0219], [0.5851, 0.0699, 0.0544, 0.0544, 0.0424, 0.0374, 0.033, 0.02], [0.5619, 0.1254, 0.0592, 0.0592, 0.0523, 0.0523, 0.0407, 0.0132], [0.8703, 0.0433, 0.0337, 0.0124, 0.0085, 0.0066, 0.0036, 0.0028], [0.9744, 0.0158, 0.0045, 0.0024, 0.0011, 0.0008, 0.0004, 0.0002], [0.9544, 0.0175, 0.0106, 0.0094, 0.0027, 0.0018, 0.0008, 0.0008], [0.9492, 0.0153, 0.0135, 0.0064, 0.003, 0.0027, 0.0027, 0.0018], [0.6921, 0.1544, 0.039, 0.0268, 0.0144, 0.0144, 0.0127, 0.0112]], "ranks": {}}, {"pos": 569, "top": [["er", "o", "en", "a", "i", "e", "ly", " \u2013"], ["er", " \ufffd", "\uff0d", "en", "erweise", "\uff0d\uff0d\uff0d\uff0d", "\uff06", "\u513f"], ["er", "\u5728", "\u513f", "\uff0d", "**\u2013", "**\u3002", "\u4e2d", "en"], ["erio", " **\u3010", "\uff1d\uff1d\uff1d\uff1d", "iels", "\uff0d\uff0d", " **\u25a0", "enzi", "nable"], [" **\u3010", "er", " **\u25a0", "erio", "erweise", " -**", "enzi", "nable"], ["er", " **\u25a0", " **\u3010", "nable", "\u513f", "\u5728", "erweise", "erio"], ["er", "\u513f", "ing", "nable", "\u5728", " **\u25a0", "ning", "edly"], ["er", " **\u25a0", "\u513f", "erator", " **\u3010", "nable", "antly", "enor"], ["er", "\u513f", " **\u3010", "erator", "enor", "nable", " **\u25a0", "ners"], ["er", "\u513f", "ning", "ners", "ly", "antly", "edly", "ner"], ["er", "\u513f", "ning", "ly", "ing", "ed", "en", "ners"], ["er", "\u513f", "ning", "ing", "ly", "antly", "erator", "nalit\u00e9"], ["er", "\u513f", "ing", "ning", "edly", "en", "ly", "ed"], ["er", "\u513f", "ing", "en", "ed", "edly", "ning", "o"], ["er", "\u513f", "o", "ed", "ing", "a", "en", "edly"], ["er", "\u513f", "ing", "o", "-esque", "ed", "en", "edly"], ["er", "o", "ing", "ed", "a", "\u513f", "en", "-esque"], ["er", "\u513f", "ing", "o", "-esque", "ning", "ed", "en"], ["er", "\u513f", "ing", "-esque", "ning", "o", "edList", "edly"], ["\u513f", "er", "edly", "ing", "ed", "ning", "edList", "-esque"], ["\u513f", "er", "a", "o", "ed", "ing", "ning", "edly"], ["\u513f", "er", "edly", "edList", "ning", "ing", " \u00ebs", "ed"], ["er", "\u513f", "ed", "ing", " ``", "edList", "edly", "ning"], ["er", "ed", "ing", "\u513f", "a", "o", "ning", " ``"], [" \ufffd", "\ufe0f", " \ufffd", " \u200b\u200b", "\ufffd", " \ufffd", "\u513f", " \ufffd"], [" \ufffd", " \ufffd", " \ufffd", " \ufffd", "\ufe0f", " \u200b\u200b", "\ufffd", " \ufffd"], [" \ufffd", " \ufffd", " \ufffd", " \ufffd", "\ufe0f", " @", " \u200b\u200b", "\ufffd"], [" @", " \ufffd", " \ufffd", " \ufffd", " \ufffd", " \n\n", "\ufe0f", " ..."], [" \ufffd", "\ufe0f", " \u200b\u200b", " \ufffd", " \ufffd", "COVID", " \ufffd", "\u513f"], [" \u200b\u200b", "\ufe0f", " \ufffd", " ...", " \ufffd", " \ufffd", " [...]", " \ufffd"], [" ...", " \u200b\u200b", " \ufffd", " \ufffd", " GitHub", "\ufe0f", " \ufffd", " workflows"], [" \u200b\u200b", " ...", "\ufe0f", "\u200b\u200b", " \ufffd", " /", "er", " \ufffd"], [" \u200b\u200b", "\ufe0f", " /", "\ufe0e", " \ufffd", " &", "\u591a\u7ef4\u5ea6", " \ufffd"], [" \u200b\u200b", "\ufe0e", "\ufe0f", " \ufffd", "/span", "\u591a\u7ef4\u5ea6", "/github", " workflows"], ["\ufe0e", "/span", "/github", "\ufe0f", " \ufffd", "\u591a\u7ef4\u5ea6", " \u200b\u200b", " emoji"], [" \u200b\u200b", "\ufe0e", "\ufe0f", " \ufffd", "\ufffd", "\u200c", "/span", "\u200b\u200b"], [" \u200b\u200b", "\ufe0e", "/span", "\ufe0f", "\u200b\u200b", "\u200c", "/github", "COVID"], [" \u200b\u200b", "/span", "\ufe0e", "\ufe0f", "COVID", "/github", "\u591a\u7ef4\u5ea6", "\u200c"], [" \u200b\u200b", "/span", "\ufe0e", "\ufe0f", "edig", "\u591a\u7ef4\u5ea6", "GitHub", "/github"], [" \u200b\u200b", "/span", "\ufe0e", "\u200b\u200b", "GitHub", "\u200c", " \ufffd", "(span"], [" \u200b\u200b", "/span", "\u200b\u200b", "\u200c", "\u200b", "Slice", "/storage", " \u200b"], [" \u200b\u200b", "\u200c", "/span", "\u200b\u200b", "\u200b", " \u200b", " arrays", "\u2011"], [" arrays", " \u200b\u200b", "/span", "arrays", " SIMD", "/array", "/storage", " ByteArray"], [" \u200b\u200b", "\u4f7f\u7528", " arrays", "/span", " APIs", "Slice", " Slice", " SIMD"], [" arrays", " APIs", "arrays", "/span", " SIMD", " Slice", "Slice", " Toolkit"], [" Slice", " APIs", " arrays", "Slice", " SIMD", "arrays", "/Grid", " Subset"], [" APIs", " arrays", "arrays", " Slice", " SIMD", "/use", "/Sub", " Subset"], [" arrays", " APIs", "/Sub", " Slice", "arrays", "/stream", "Slice", "/span"], ["/Sub", "/Grid", "/Sh", " APIs", "/use", "/ss", "/\\", "/S"], ["[],", "()/", "/Sh", "/Sub", "/Grid", "/S", "/\\", "/St"], ["/Sh", "/S", "[],", "()/", "/Sub", "/St", "/String", "/X"], ["()/", "/Sh", "/String", "/S", "[],", "()</", "/<", "/Sub"], ["[],", "/<", "/,", "/M", " />,", "/", "/span", "/String"], ["[],", "/span", "/,", "/<", " />,", "*</", " */,", "<byte"], ["<T", "/<", "<>", "<byte", "\\<", "<span", "<", "<int"], ["<T", "<byte", "<>", "/<", "<char", "\\<", "<t", "<"], ["<T", "<byte", "<char", "<>", "\\<", "/<", "<'", "<t"], ["<T", "<byte", "<>", "\\<", "/<", "{T", "<t", "<char"], ["<T", "\\<", "<>", "<", "<byte", "<t", " <", "/<"], ["<T", "<", "\\<", "<>", "<t", " <", "<byte", "{T"], ["`,", "<T", "`", " `<", "<>", ">`", "`.", "<"], ["<T", "`,", "`", "<", "<>", " `<", " <", "<byte"], ["<T", "<>", "\\<", "{T", "<byte", "`,", "/T", "<t"]], "p": [[0.9821, 0.0102, 0.0038, 0.0006, 0.0003, 0.0002, 0.0002, 0.0002], [0.9897, 0.0012, 0.001, 0.0009, 0.0009, 0.0006, 0.0005, 0.0004], [0.5186, 0.1908, 0.0453, 0.0258, 0.0228, 0.0115, 0.0074, 0.0069], [0.0136, 0.0083, 0.0078, 0.0068, 0.0068, 0.006, 0.0057, 0.0053], [0.0471, 0.0442, 0.0367, 0.0144, 0.0127, 0.0119, 0.0119, 0.0112], [0.0242, 0.0188, 0.0138, 0.0107, 0.0101, 0.0084, 0.0078, 0.0074], [0.3358, 0.0484, 0.0122, 0.0108, 0.0101, 0.0084, 0.007, 0.0062], [0.0865, 0.0205, 0.0205, 0.0133, 0.0125, 0.0125, 0.0103, 0.0091], [0.0306, 0.027, 0.0145, 0.0128, 0.012, 0.012, 0.0099, 0.0088], [0.3397, 0.059, 0.0336, 0.018, 0.0169, 0.014, 0.0124, 0.0103], [0.8559, 0.0796, 0.0084, 0.0054, 0.0054, 0.0045, 0.0017, 0.0015], [0.4008, 0.0615, 0.02, 0.0114, 0.0094, 0.0065, 0.0057, 0.0054], [0.8729, 0.0205, 0.0141, 0.0028, 0.0023, 0.0022, 0.0017, 0.0017], [0.9209, 0.018, 0.014, 0.0051, 0.0038, 0.0029, 0.0015, 0.0015], [0.7157, 0.0666, 0.0379, 0.0149, 0.0131, 0.0102, 0.0102, 0.007], [0.773, 0.0233, 0.0151, 0.0097, 0.0086, 0.0086, 0.0063, 0.0032], [0.9294, 0.016, 0.0117, 0.0046, 0.0043, 0.004, 0.0036, 0.0022], [0.7544, 0.0747, 0.0089, 0.0089, 0.0054, 0.0037, 0.0031, 0.0029], [0.3686, 0.238, 0.0143, 0.0092, 0.0081, 0.0076, 0.0072, 0.0063], [0.5042, 0.0993, 0.0152, 0.0111, 0.0098, 0.0098, 0.0072, 0.0038], [0.2507, 0.1723, 0.0464, 0.0319, 0.0264, 0.0182, 0.0097, 0.0097], [0.1282, 0.0443, 0.0252, 0.0237, 0.0119, 0.0099, 0.0053, 0.005], [0.1666, 0.0838, 0.0508, 0.0328, 0.0225, 0.0155, 0.0107, 0.0094], [0.2217, 0.0984, 0.0676, 0.0282, 0.0265, 0.0151, 0.0104, 0.0086], [0.193, 0.1171, 0.1033, 0.0857, 0.052, 0.038, 0.038, 0.038], [0.2583, 0.2012, 0.1012, 0.0893, 0.0653, 0.0422, 0.0309, 0.0121], [0.2233, 0.1273, 0.1273, 0.0875, 0.0565, 0.0498, 0.0208, 0.0195], [0.2415, 0.1214, 0.1141, 0.0888, 0.042, 0.037, 0.0348, 0.0239], [0.059, 0.0554, 0.0431, 0.0405, 0.0279, 0.0246, 0.018, 0.009], [0.1607, 0.0522, 0.0297, 0.0262, 0.0246, 0.0246, 0.0124, 0.0124], [0.0476, 0.0349, 0.0225, 0.0199, 0.0136, 0.0128, 0.01, 0.0094], [0.8165, 0.015, 0.0075, 0.0071, 0.0043, 0.0031, 0.0022, 0.002], [0.271, 0.0252, 0.0237, 0.0112, 0.0099, 0.0072, 0.005, 0.005], [0.11, 0.0431, 0.018, 0.0116, 0.0096, 0.009, 0.008, 0.0038], [0.0261, 0.0123, 0.0116, 0.0102, 0.009, 0.008, 0.007, 0.0035], [0.4153, 0.0363, 0.0265, 0.0133, 0.0067, 0.0067, 0.0052, 0.0043], [0.3677, 0.0143, 0.0111, 0.0104, 0.0034, 0.0028, 0.0026, 0.0025], [0.185, 0.0162, 0.0162, 0.0046, 0.0034, 0.0032, 0.0026, 0.0026], [0.2629, 0.0102, 0.0085, 0.0038, 0.0023, 0.0021, 0.0021, 0.002], [0.2582, 0.0083, 0.0035, 0.0035, 0.0032, 0.0027, 0.0025, 0.002], [0.335, 0.013, 0.0074, 0.007, 0.0033, 0.0029, 0.0027, 0.0024], [0.1177, 0.0141, 0.0103, 0.0071, 0.0071, 0.0059, 0.0046, 0.0043], [0.015, 0.0116, 0.0109, 0.0091, 0.0059, 0.0052, 0.0049, 0.0046], [0.0142, 0.0111, 0.0072, 0.0072, 0.0067, 0.0059, 0.0056, 0.0049], [0.0179, 0.0179, 0.0109, 0.0096, 0.0096, 0.009, 0.008, 0.0062], [0.0293, 0.0214, 0.0147, 0.0115, 0.0095, 0.0079, 0.0061, 0.0061], [0.0158, 0.0131, 0.0123, 0.0108, 0.0108, 0.0075, 0.007, 0.0062], [0.017, 0.016, 0.015, 0.0141, 0.0117, 0.011, 0.011, 0.0071], [0.021, 0.0144, 0.0127, 0.0127, 0.0112, 0.0105, 0.0099, 0.0093], [0.0374, 0.0213, 0.0188, 0.0146, 0.0137, 0.0137, 0.0107, 0.0094], [0.059, 0.0405, 0.0316, 0.0204, 0.0159, 0.0132, 0.0124, 0.0116], [0.0682, 0.0389, 0.0365, 0.0284, 0.0251, 0.0222, 0.0173, 0.0162], [0.241, 0.0735, 0.0649, 0.0186, 0.0186, 0.0154, 0.0136, 0.0136], [0.204, 0.0584, 0.0428, 0.0276, 0.0229, 0.0229, 0.0202, 0.0157], [0.5542, 0.1588, 0.075, 0.075, 0.0215, 0.0167, 0.0115, 0.009], [0.7459, 0.1144, 0.0421, 0.0255, 0.0225, 0.0155, 0.0039, 0.003], [0.711, 0.1587, 0.0401, 0.0312, 0.0167, 0.0065, 0.0026, 0.0024], [0.9041, 0.0351, 0.0114, 0.01, 0.0039, 0.0037, 0.0029, 0.0016], [0.966, 0.0122, 0.0084, 0.0039, 0.0031, 0.0021, 0.0006, 0.0005], [0.9504, 0.0154, 0.0154, 0.0106, 0.0018, 0.0014, 0.0006, 0.0005], [0.8235, 0.0868, 0.0766, 0.0063, 0.0014, 0.0012, 0.0009, 0.0008], [0.8734, 0.1182, 0.0036, 0.0013, 0.0007, 0.0006, 0.0005, 0.0004], [0.9991, 0.0004, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 570, "top": [["s", "er", "a", "en", "y", "o", "e", "\u0629"], ["s", "er", " \r\n", "en", "\\\",", "\u7684", "a", "es"], ["er", "s", "en", "a", "\\\",", "t", "\u2013", "ing"], ["\uff1a<", " \\<", "\u3002<", "\\\"><", " \r\n", "\u7684", "\uff3f\uff3f", "_<"], [" \\<", "\uff1a<", "\\<", "_<", "\\\"><", "\\\",", "<T", "\u3002<"], ["sWith", " \r\n", "er", "erweise", "\\\",", "aient", "sver", "s"], ["er", " \r\n", "nya", "\\\",", "<T", "\\<", "s", "en"], ["\\\",", "er", " \r\n", "<T", "nya", "\\<", "\\\"><", "\u03c2"], ["\\\",", "<T", "\\<", "<br", " \r\n", "nya", " \\<", "er"], ["er", "\\\",", "s", " \r\n", "en", "nya", "\\',", "ly"], ["er", "\\\",", "en", "o", "a", "nya", "ly", "s"], ["er", "\\\",", "erweise", "en", "nya", "ly", "<T", "ielle"], ["er", "en", "\\\",", "ly", "erweise", "ielle", "nya", "sWith"], ["er", "en", "\\\",", "ly", "o", "erweise", "es", "ielle"], ["er", "o", "en", "\\\",", "a", "s", "ly", "es"], ["er", "o", "en", "es", "a", "s", "\\\",", "e"], ["er", "o", "a", "en", "es", "e", "i", "s"], ["er", "o", "\\\",", "en", "a", "es", "e", "i"], ["er", "o", "en", "\\\",", "ly", "es", "ielle", "s"], ["er", "o", "ly", "en", "\\\",", "s", "a", "e"], ["er", "o", "a", "e", "en", "ly", "s", "i"], ["er", "ly", "\\\",", "ielle", "en", "erweise", "sWith", "o"], ["er", "ly", "\\\",", "o", "en", "a", "ielle", "\\',"], ["er", "o", "ly", "a", "\\\",", "e", "en", "i"], ["er", "\\\",", "a", "o", " \n\n", " \r\n\r\n", " \r\n", "ly"], ["er", "\\\",", "ly", " \r\n", "_,", " \n\n", " \r\n\r\n", "__,"], ["er", "\\\",", "ly", "_,", "__,", "_;", "_[", "&apos"], [" \n\n", "_,", "\\\",", "er", " ___", "_[", " \r\n\r\n", "__,"], ["_,", "\\\",", "__,", "er", "_;", "_[", " ___", " _,"], ["__,", "_,", " __", " ___", "er", "\\\",", "___", "_["], ["_,", "\\\",", " \n\n", "er", "__,", "_[", " \r\n", "_;"], ["er", ",", "[[", "\\\",", ";", ".[", "ly", "a"], [",", "er", ";", "\\\",", "ly", " ,", "a", "*,"], ["er", "\ufe0e", "ly", "\u2014and", " &[", ")\u2014", "\u2014a", "\u2014not"], ["\ufe0e", "er", " &[", "\u2011", "*,", ")\u2014", "[^", "\u2014and"], ["*,", ")\u2014", "\ufe0e", "o", "er", "\u2014and", "a", ","], ["*,", "o", "er", "\ufe0e", "\u2014and", "a", ")\u2014", " &["], ["*,", "o", "er", "\ufe0e", " &[", ",", ";", "\u2014and"], [" [...]", " [\u2026]", "\u2011", "[\u2026]", "*,", "\ufe0e", " &[", "...\","], ["\u2011", "*,", "[\u2026]", " [\u2026]", "\ufe0e", "o", ",", " &["], [",", "*,", "\u2011", " &[", "\u200b", "o", ";", ",["], [",", "\u2011", ";", ",[", "\u200b", " arrays", " &[", "\ufffd"], [" arrays", ",", "*,", " containers", " buffers", "[],", "<\\/", " &["], [" arrays", "<\\/", " containers", " implementations", " &[", " interfaces", ",", "*,"], [" arrays", " containers", " buffers", " APIs", " equivalents", " interfaces", " implementations", " frameworks"], ["/", " arrays", " containers", " equivalents", ",", " replacements", " APIs", "o"], [" arrays", "/", " equivalents", " implementations", "/<", " APIs", "/use", " structs"], ["/", " arrays", ",", " equivalents", " and", "/\\", "/<", " implementations"], ["/", " and", " arrays", "/T", "/\\", "/,", "/V", "/M"], ["/", "/T", "/V", "/\\", "/,", "/[", "/C", "/M"], ["/T", "/", "/<", "/V", "/,", "/C", "/O", "/\\"], ["/", "/T", "/,", " /", "/V", "/C", "/<", "/P"], ["/", "/T", "/,", " /", "/V", "/<", "/C", "/M"], ["/", "/,", " /", "/T", "/<", ",/", "/V", "/C"], ["/<", "/T", "/", "/,", " /", "\"/", ",/", "]/"], ["`,", "/,", "/<", "/", "\"/", "/T", ">/", "]/"], ["`,", "**,", "/,", "*,", "*/,", ">/", "\"/", " />,"], ["`,", " */,", "/,", "*/,", " />,", "**,", "*,", "/"], [">/", ">,", " />,", ">/<", "/span", ">`", ">", "\u300b\uff0c"], [">/", ">,", ">`", " />,", ">/<", ">", "`,", " /"], ["`,", ">`", "}`,", " `,", "`", " `/", ")`", "}`"], ["`,", ">`", "}`,", " `,", " `/", "`", "}`", ")`"], [">`", ">", ">/", "`,", "}`,", "`", ">\",", ">/<"]], "p": [[0.873, 0.0632, 0.0193, 0.0125, 0.0076, 0.0076, 0.0028, 0.0018], [0.7416, 0.1875, 0.0174, 0.0136, 0.0082, 0.005, 0.0032, 0.003], [0.5017, 0.3907, 0.0321, 0.0172, 0.0086, 0.0046, 0.0036, 0.0026], [0.1391, 0.0844, 0.0352, 0.0227, 0.0188, 0.0166, 0.0147, 0.0138], [0.3642, 0.0865, 0.0813, 0.0558, 0.0233, 0.0193, 0.016, 0.015], [0.1035, 0.0858, 0.0278, 0.0204, 0.0159, 0.014, 0.0132, 0.0109], [0.179, 0.0794, 0.0658, 0.0546, 0.0375, 0.0331, 0.0311, 0.0242], [0.1841, 0.0985, 0.0721, 0.0677, 0.034, 0.0265, 0.0194, 0.0182], [0.3167, 0.055, 0.0355, 0.0314, 0.0295, 0.0229, 0.019, 0.019], [0.3147, 0.2163, 0.1232, 0.0483, 0.0275, 0.0258, 0.0147, 0.0147], [0.6508, 0.2113, 0.0223, 0.0135, 0.0135, 0.0119, 0.0082, 0.0068], [0.566, 0.0815, 0.0249, 0.0219, 0.0151, 0.0151, 0.0117, 0.0081], [0.8443, 0.0199, 0.0155, 0.0136, 0.01, 0.0057, 0.0053, 0.0047], [0.8841, 0.0251, 0.0105, 0.0072, 0.0044, 0.0038, 0.0032, 0.0026], [0.7844, 0.0568, 0.0367, 0.0345, 0.0135, 0.006, 0.0056, 0.0036], [0.8314, 0.0389, 0.0343, 0.0196, 0.0098, 0.0082, 0.0053, 0.0044], [0.7687, 0.1179, 0.0383, 0.0383, 0.0075, 0.0067, 0.0062, 0.0055], [0.8644, 0.0553, 0.0261, 0.0191, 0.008, 0.0055, 0.0023, 0.0018], [0.8658, 0.0123, 0.0116, 0.009, 0.0085, 0.007, 0.0051, 0.0045], [0.8269, 0.0321, 0.0301, 0.0194, 0.0118, 0.0067, 0.0059, 0.0052], [0.6596, 0.1012, 0.0614, 0.035, 0.0256, 0.024, 0.0176, 0.0165], [0.7051, 0.0511, 0.0227, 0.0156, 0.0078, 0.0051, 0.0039, 0.0037], [0.7585, 0.0706, 0.0294, 0.0123, 0.0074, 0.004, 0.004, 0.0035], [0.6835, 0.0767, 0.0597, 0.0465, 0.022, 0.0171, 0.0081, 0.0071], [0.3395, 0.1249, 0.0914, 0.0628, 0.0521, 0.0489, 0.0432, 0.0192], [0.5709, 0.1274, 0.0499, 0.0152, 0.0111, 0.0111, 0.0087, 0.0076], [0.3355, 0.1585, 0.0548, 0.0259, 0.0147, 0.0065, 0.0065, 0.0054], [0.1046, 0.0814, 0.0596, 0.0596, 0.0339, 0.0319, 0.03, 0.03], [0.1972, 0.1273, 0.1123, 0.0822, 0.0302, 0.0208, 0.0183, 0.0162], [0.173, 0.1434, 0.0817, 0.0678, 0.0598, 0.0363, 0.032, 0.022], [0.0828, 0.0686, 0.0606, 0.0535, 0.0443, 0.0324, 0.0305, 0.0253], [0.073, 0.0645, 0.0416, 0.0367, 0.0304, 0.0269, 0.0252, 0.0237], [0.1773, 0.0694, 0.0508, 0.0372, 0.0255, 0.0187, 0.0165, 0.0106], [0.0635, 0.0362, 0.0249, 0.0234, 0.0206, 0.0161, 0.0142, 0.0142], [0.0492, 0.036, 0.0318, 0.0318, 0.017, 0.016, 0.016, 0.0141], [0.1048, 0.0636, 0.0527, 0.0437, 0.0362, 0.03, 0.0234, 0.022], [0.1376, 0.065, 0.0574, 0.0447, 0.0271, 0.0164, 0.0128, 0.0128], [0.0635, 0.0527, 0.0495, 0.0319, 0.0249, 0.0219, 0.0151, 0.0151], [0.114, 0.0888, 0.0475, 0.0446, 0.0327, 0.0288, 0.0186, 0.0186], [0.0534, 0.0416, 0.0345, 0.0345, 0.0252, 0.0237, 0.0237, 0.0209], [0.0889, 0.042, 0.0348, 0.0271, 0.0255, 0.0239, 0.0225, 0.0211], [0.0839, 0.035, 0.029, 0.0256, 0.024, 0.0187, 0.0176, 0.0146], [0.0736, 0.0271, 0.0186, 0.012, 0.012, 0.012, 0.012, 0.0106], [0.035, 0.0137, 0.0137, 0.01, 0.0083, 0.0073, 0.0073, 0.0065], [0.0844, 0.0481, 0.0147, 0.0129, 0.0101, 0.0095, 0.0095, 0.0074], [0.0834, 0.0573, 0.0288, 0.0164, 0.012, 0.0106, 0.0106, 0.0088], [0.0648, 0.0648, 0.0164, 0.0154, 0.0136, 0.0113, 0.0099, 0.0093], [0.0938, 0.0686, 0.0223, 0.0135, 0.0127, 0.0127, 0.0119, 0.0105], [0.3145, 0.0426, 0.0293, 0.0275, 0.013, 0.0095, 0.0089, 0.0089], [0.3811, 0.085, 0.0428, 0.0313, 0.0215, 0.0167, 0.0157, 0.0157], [0.2069, 0.2069, 0.0761, 0.0672, 0.0523, 0.0192, 0.0192, 0.0192], [0.549, 0.1081, 0.0579, 0.0451, 0.0351, 0.0213, 0.0188, 0.0101], [0.6015, 0.0814, 0.0718, 0.0299, 0.0264, 0.0233, 0.0206, 0.011], [0.4098, 0.1708, 0.133, 0.0628, 0.0432, 0.0262, 0.014, 0.0109], [0.2599, 0.1391, 0.1391, 0.1228, 0.0512, 0.0242, 0.0188, 0.0188], [0.1588, 0.1237, 0.1092, 0.0662, 0.0516, 0.0354, 0.0313, 0.0276], [0.2889, 0.1063, 0.073, 0.0645, 0.0502, 0.0391, 0.0324, 0.0286], [0.3957, 0.1285, 0.0779, 0.0688, 0.0607, 0.0417, 0.0197, 0.0174], [0.4508, 0.3099, 0.0538, 0.0419, 0.037, 0.0254, 0.0175, 0.0083], [0.3023, 0.2668, 0.1833, 0.0525, 0.0464, 0.0281, 0.0219, 0.015], [0.7233, 0.2661, 0.0055, 0.0038, 0.0008, 0.0002, 0.0001, 0.0001], [0.9091, 0.0581, 0.0147, 0.0147, 0.0015, 0.0012, 0.0002, 0.0001], [0.7749, 0.222, 0.0015, 0.0005, 0.0005, 0.0001, 0.0001, 0.0]], "ranks": {}}, {"pos": 571, "top": [[".", ",", "\u00a0\u00a0", ";", "\u00a0", "!", "?", "\u2026."], ["  \n\n", ",", ".", ";", "\u00a0\u00a0", "  \n", " \u200b\u200b", "!"], [",", ".", "\u2026.", "\u2026..", "\u2026", "?", ";", "!"], [" Blowjob", "---</", "odle", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", " **\u25a0", " cumshot"], [" ===", " =>", "_____", " </", " !==", "---</", "\ufffd\ufffd", " *</"], [" =>", "sier", "_____", " ===", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " </", "\ufffd\ufffd", "odied"], ["_____", " =>", " ===", " </", " _____", " \u00bb.", " \u00bb", " \u25a0"], [" =>", " ===", "_____", "stery", "\u00dfer", "nable", "ighbors", " _____"], [" \u00bb.", " =>", "\u00bb?", "stery", "_____", "\u00dfer", " ===", "nable"], [",", "s", "\u00e2", "\\xc", "_____", ".hpp", "\u00ac", "nable"], ["_____", ",", "!", " _____", "\\xc", "\u00ac", " =>", "."], [" ===", " =>", " _____", "\u00dfer", "stery", "_____", "nable", ".hpp"], [" \u00bb", "\u00dfer", " \u00bb.", " =>", " \u00ab", "lessly", "nable", " ==="], [".hpp", "\u00dfer", "\u513f\u7684", "lessly", " ===", "\u00e2", " \u00bb", "\u318d"], ["\u00ac", "\u2014", " \u2014", " \u2022", ",", "\u2014and", "s", "\u00e2"], ["s", "\u00e2", " \u2014", "\u5b9b\u82e5", " \u00bb", " \u00e2", " largely", " >"], ["s", ",", "\u00e2", " largely", " leveraging", "a", " for", " akin"], ["s", " \u00bb", " ===", " </", " for", " \u00bb,", " \u00bb.", "\u00dfer"], [" ===", " </", "avors", "s", " \u00bb.", " \u00bb,", "\u00dfer", "\u5b9b\u82e5"], [" ===", "s", " !==", "\u03c2", "\u5b9b\u82e5", " ---", "\u305d\u3046\u3057\u305f", "j\u00eb"], ["s", " ,", " ===", " \u2014", "a", "<|endoftext|>", " largely", " #"], [" ===", "avors", "\u00dfer", "j\u00eb", "\u00f0i", " >::", " !==", "lessly"], [" ===", " ,", " ;", " ``", " !==", " ---", " </", " =>"], [" ,", " ;", " ===", " and", " \u00e2", "s", " &", " largely"], [" ,", " \n\n", " ;", "\n\n", " _____", " ===", " \u2014", " _"], [" ,", " ===", " _____", " ;", " ___", " and", " ---", " \u2014"], [" ,", " ;", " ===", " and", " ___", " @", " _", " \u2014"], [" ,", " \n\n", " and", "\n\n", " @", " ;", " \u2014", " _"], [" ,", " and", " @", " ;", " \n\n", " ===", "\n\n", " <"], [" ,", " _____", " and", " ___", " ...", " _", " ===", " storage"], [" ...", " ,", " and", " .", " ;", " \n\n", " for", " using"], [" ...", " and", " ,", " .", " [...]", "...", " for", " &"], [" ,", " and", " .", " using", " &", " ;", " for", " as"], [" and", " storage", " workflows", " tools", " \u2014", " technologies", " seamlessly", " leveraging"], [" ...", " and", " [...]", " storage", " tools", " using", " ,", " \u2014"], [" \u2026", " [...]", " ...", " \u200b\u200b", " \u2014", "\u200b", " [\u2026]", "\u2026"], [" ...", " [...]", " \u200b\u200b", " and", " \u2026", " storage", "\u200b", "..."], [" ...", " [...]", " and", " storage", " ,", " \u2026", " data", " /"], [" ...", " [...]", " \u2026", " storage", " data", " [\u2026]", "...", " and"], [" [...]", " [\u2026]", " \u2026", "\u200b", " ...", " data", " storage", "\u2026"], ["\u200b", " storage", " data", " \u200b\u200b", " [...]", " \u200b", " memory", " [\u2026]"], [" storage", " data", " buffers", " [...]", " arrays", " memory", " buffer", " Storage"], [" storage", " arrays", " buffers", " data", " containers", " Storage", " reuse", " buffer"], [" storage", " data", " buffers", " arrays", " containers", " processing", " reuse", " streams"], [" storage", " buffers", " containers", " arrays", " processing", " data", " streams", " reuse"], [" storage", " buffers", " containers", " arrays", " processing", " streams", " data", " reuse"], [" buffers", " arrays", " storage", " workflows", " instead", " reuse", " containers", " streams"], [" workflows", " buffers", " arrays", " storage", " streams", " containers", " processing", " instead"], [" and", " buffers", " arrays", " workflows", " instead", " storage", " streams", " pipelines"], [" buffers", " workflows", " arrays", " APIs", " streams", "/", " interfaces", " optimizations"], ["/,", ",/", "[],", "/", " buffers", " arrays", " workflows", "/Sh"], ["/,", "/", ",/", "/C", " /", "/O", "/V", "/@"], ["/,", ",/", "/", "[],", " buffers", "/<", "/C", "**,"], ["/,", ",/", "/", "/<", " buffers", " /", " />,", " \"/\","], ["/,", " buffers", "/<", "`,", ",/", " />,", "*,", "**,"], [" buffers", "`,", " buffer", " arrays", "/,", " IDisposable", "buffer", "buffers"], ["`,", " buffers", "/,", "**,", "/", "/<", " buffer", "*,"], [" buffers", "`,", " buffer", "/,", " Buffer", " pooling", "/", "Memory"], ["/span", " Span", "Span", " spans", " span", ".Span", "`,", "span"], ["`,", "`", " Memory", " slices", "**,", " /", " buffers", " Slice"], ["`,", "`", "`.", " `,", "`,`", " `", "`:", " `/"], ["`,", "`", "`.", " `,", " `/", " `", "`,`", "`:"], ["`,", "`", "`.", "`,`", " `/", " `,", "`:", "``"]], "p": [[0.8216, 0.1428, 0.016, 0.0046, 0.0034, 0.0017, 0.0014, 0.0012], [0.032, 0.0234, 0.0086, 0.0076, 0.0076, 0.0076, 0.0046, 0.0038], [0.3115, 0.3115, 0.2011, 0.0372, 0.024, 0.0155, 0.0129, 0.01], [0.0226, 0.0155, 0.0146, 0.0121, 0.0114, 0.0107, 0.0083, 0.0065], [0.2089, 0.1962, 0.0283, 0.0171, 0.0081, 0.0081, 0.0076, 0.0063], [0.0063, 0.0046, 0.0046, 0.0041, 0.0034, 0.0034, 0.0032, 0.0028], [0.2055, 0.0756, 0.0553, 0.0315, 0.0231, 0.0116, 0.0055, 0.0048], [0.0386, 0.022, 0.0133, 0.0104, 0.0076, 0.0067, 0.0067, 0.0063], [0.0324, 0.0286, 0.0223, 0.0099, 0.0093, 0.0093, 0.0087, 0.0072], [0.0524, 0.028, 0.0141, 0.0124, 0.0117, 0.0097, 0.0071, 0.0063], [0.309, 0.0537, 0.0537, 0.0504, 0.0445, 0.0347, 0.021, 0.0186], [0.0083, 0.0068, 0.006, 0.005, 0.0047, 0.0042, 0.0034, 0.0032], [0.0107, 0.0083, 0.0057, 0.0035, 0.0033, 0.0029, 0.0027, 0.0022], [0.0059, 0.0059, 0.0049, 0.0026, 0.0025, 0.0022, 0.0022, 0.002], [0.031, 0.0257, 0.0156, 0.0129, 0.0122, 0.0101, 0.0089, 0.0065], [0.0288, 0.0106, 0.0073, 0.006, 0.0039, 0.0037, 0.0037, 0.0032], [0.1879, 0.1071, 0.0083, 0.006, 0.0037, 0.0037, 0.0029, 0.0025], [0.0305, 0.0072, 0.006, 0.0047, 0.0047, 0.0044, 0.003, 0.0028], [0.01, 0.0061, 0.005, 0.0042, 0.0037, 0.0031, 0.0025, 0.0021], [0.0254, 0.0088, 0.0044, 0.0039, 0.0037, 0.0032, 0.0024, 0.002], [0.1609, 0.0556, 0.0407, 0.0263, 0.0085, 0.0066, 0.0066, 0.0066], [0.0086, 0.0076, 0.0034, 0.0022, 0.002, 0.002, 0.0019, 0.0019], [0.05, 0.0303, 0.0196, 0.0152, 0.0056, 0.0049, 0.0036, 0.003], [0.5054, 0.0825, 0.0173, 0.0135, 0.005, 0.0047, 0.0047, 0.0032], [0.2498, 0.1828, 0.0383, 0.0383, 0.036, 0.036, 0.0218, 0.0193], [0.1572, 0.1477, 0.0479, 0.0397, 0.0351, 0.0241, 0.0188, 0.0156], [0.2557, 0.0733, 0.0607, 0.0287, 0.0197, 0.0185, 0.0144, 0.0144], [0.5904, 0.0799, 0.0585, 0.0355, 0.0202, 0.0178, 0.0123, 0.0123], [0.2993, 0.0554, 0.0405, 0.0336, 0.0296, 0.0231, 0.0169, 0.0109], [0.1514, 0.1108, 0.0811, 0.0715, 0.0317, 0.0218, 0.0117, 0.011], [0.2944, 0.2944, 0.1018, 0.0213, 0.0166, 0.0089, 0.0051, 0.0051], [0.5571, 0.1243, 0.1243, 0.0216, 0.009, 0.0066, 0.0045, 0.0043], [0.4021, 0.3548, 0.02, 0.0089, 0.0083, 0.0065, 0.0057, 0.0054], [0.0594, 0.0233, 0.0219, 0.0181, 0.016, 0.0141, 0.0133, 0.0125], [0.1129, 0.0826, 0.0415, 0.0268, 0.0196, 0.0173, 0.0112, 0.0112], [0.1904, 0.1578, 0.1482, 0.0899, 0.0375, 0.0375, 0.0352, 0.0214], [0.2548, 0.1452, 0.0502, 0.0471, 0.0443, 0.0153, 0.0153, 0.0144], [0.1504, 0.1034, 0.0589, 0.0336, 0.0315, 0.0315, 0.0204, 0.0204], [0.2156, 0.1903, 0.0658, 0.0425, 0.0292, 0.0201, 0.0147, 0.0147], [0.2601, 0.0793, 0.058, 0.0545, 0.0399, 0.0274, 0.0274, 0.0258], [0.1339, 0.1182, 0.098, 0.036, 0.0219, 0.0205, 0.017, 0.016], [0.4146, 0.0636, 0.041, 0.0234, 0.0234, 0.0194, 0.0161, 0.0125], [0.5282, 0.0593, 0.0461, 0.0434, 0.0247, 0.0159, 0.0124, 0.011], [0.1759, 0.0536, 0.0504, 0.0392, 0.0369, 0.0287, 0.0174, 0.0112], [0.1766, 0.0573, 0.0573, 0.0475, 0.0394, 0.0288, 0.0175, 0.0164], [0.1445, 0.0469, 0.0441, 0.0389, 0.0303, 0.0236, 0.0222, 0.0173], [0.073, 0.0534, 0.0502, 0.0416, 0.0367, 0.0304, 0.0304, 0.0268], [0.0613, 0.0613, 0.0576, 0.0328, 0.0256, 0.024, 0.0199, 0.0165], [0.0688, 0.0647, 0.0571, 0.0305, 0.0287, 0.0197, 0.0185, 0.012], [0.0738, 0.054, 0.0395, 0.0175, 0.0128, 0.0121, 0.0113, 0.0106], [0.1035, 0.0712, 0.0432, 0.0432, 0.0204, 0.0169, 0.0159, 0.0149], [0.2739, 0.1882, 0.0889, 0.0327, 0.0225, 0.0164, 0.0136, 0.0136], [0.3434, 0.0984, 0.0984, 0.0234, 0.0206, 0.0161, 0.0151, 0.0142], [0.3164, 0.1164, 0.0516, 0.0402, 0.0378, 0.0215, 0.0178, 0.0178], [0.1678, 0.1481, 0.1307, 0.058, 0.0374, 0.0257, 0.0257, 0.0213], [0.4339, 0.0708, 0.0379, 0.0335, 0.0314, 0.0216, 0.0168, 0.0131], [0.2379, 0.1635, 0.0822, 0.0267, 0.0221, 0.0208, 0.0183, 0.0172], [0.3139, 0.277, 0.0618, 0.0331, 0.0189, 0.0177, 0.0166, 0.0156], [0.3697, 0.1979, 0.1979, 0.0442, 0.0236, 0.0236, 0.0236, 0.0127], [0.7773, 0.0638, 0.0118, 0.0111, 0.0081, 0.0081, 0.0067, 0.0056], [0.974, 0.026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9626, 0.0373, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9948, 0.0052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 572, "top": [["s", " \u2013", ".", "\u2013", ",", " \u2013,", ",.", "*."], ["s", "\u2013", " **\u2013", " \u2013", " \u2013,", "**\u2013", "\u0627\u062a", "\u65b0\u52a0\u5761"], ["s", "\u2013", " \u2013", ",", " **\u2013", ".", " \u2013,", "**\u2013"], ["\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\uff3f\uff3f", "satz", "schrift", " **\u201e", " **\u300c", " ``("], ["s", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u0627\u062a", "ed", "s\u00f6k", " **\u2013", "\u05d9\u05dd"], ["s", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "\u0627\u062a", " **\u2013", "ed", "**!", "\u4e8b\u534a\u529f\u500d"], ["s", "\u0627\u062a", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u0647", "**!", "ed", " \n\n"], ["s", "\u52a0\u62ff\u5927", " `_", "\u65b0\u52a0\u5761", "\u0627\u062a", "\u4e8b\u534a\u529f\u500d", " `.", "[`"], ["s", " \n\n", "  \n\n", "   \n\n", "!\u201d.", "[`", " \r\n\r\n", "!."], ["s", "\u65b0\u52a0\u5761", "\u4e8b\u534a\u529f\u500d", ",", "\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u76f8\u8f85\u76f8\u6210", "\u4e0d\u53ef\u601d\u8bae"], ["s", "ed", ",", "a", "es", "\u0647", "[`", "\u0627\u062a"], ["s", "\u52a0\u62ff\u5927", "\u4e8b\u534a\u529f\u500d", "\u65b0\u52a0\u5761", "\u0627\u062a", "\u52c7\u5f80\u76f4\u524d", "\u05d9\u05dd", " **\u300c"], ["s", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u52c7\u5f80\u76f4\u524d", "\u4e8b\u534a\u529f\u500d", "\u76f8\u8f85\u76f8\u6210", "es", "\u4e0d\u53ef\u601d\u8bae"], ["s", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u4e8b\u534a\u529f\u500d", "\u52c7\u5f80\u76f4\u524d", "es", "\u76f8\u8f85\u76f8\u6210", "\u4e0d\u53ef\u601d\u8bae"], ["s", "\u4e0d\u53ef\u601d\u8bae", "a", "es", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "ed", "\u0627\u062a"], ["s", "es", "\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", "ed", "\u4e0d\u53ef\u601d\u8bae", "a", "\u0627\u062a"], ["s", "es", "a", "ed", ",", "o", "\u0627\u062a", " akin"], ["s", "es", "\u0627\u062a", "a", "o", "\u4e0d\u53ef\u601d\u8bae", "\u65b0\u52a0\u5761", "ed"], ["s", "es", "\u0627\u062a", "\u4e0d\u53ef\u601d\u8bae", "ed", "a", "\u0647", "o"], ["s", "es", "ed", "\u4e0d\u53ef\u601d\u8bae", "\u0627\u062a", "a", " myriad", "o"], ["<|endoftext|>", "s", "a", "\n\n", "\r\n\r\n", " myriad", "ed", " \n\n"], [" ``", "\u4e0d\u53ef\u601d\u8bae", " **>>", "s", " ``(", "sste", " ;;^", "\u0627\u062a"], [" ``", "s", " ``(", "ed", " **", " `", "\u4e0d\u53ef\u601d\u8bae", "es"], [" ``", " and", " `", "a", "s", "ed", " \"`", "\u4e0d\u53ef\u601d\u8bae"], ["\r\n\r\n", " \n\n", "\n\n", " **", " \r\n\r\n", " ``", "a", "  \n\n"], [" **", " ``", " and", " **[", " \ufffd", "\r\n\r\n", "ed", " `_"], [" **", " ``", " and", " @", " *", " \ufffd", "\n\n", " _"], [" **", " \n\n", "\n\n", " and", " _", " ,", "\r\n\r\n", " @"], [" **", " and", " [[", " ,", " \n\n", " @", " heavily", " ultimately"], [" **", " and", " ,", " [[", " **[", " _", " modern", " \n\n"], [" **", " and", " **[", " ,", " __", " \n\n", " [[", " modern"], [" and", " **", " ,", " modern", " ...", " \u201c", " [", " *"], [" and", " **", " modern", " even", " heavily", " ,", " \u201c", " ultimately"], [" **", " meticulously", " technologies", " modern", " seamlessly", " and", " aggressively", " modular"], [" **", " **\u201c", "\u2011", "<|endoftext|>", " **\u2013", " meticulously", " leveraging", "\u2014and"], [" **", " **\u201c", "\u2011", " **\u2013", "**\u2014", "\u2014and", "<|endoftext|>", "\u2026**"], [" **\u201c", " **", "\u2014and", "**\u2014", " **\"", " **\u2013", " \"**", "\u2011"], ["\u2011", " **", " **\u201c", " leveraging", " workflows", " \"**", " tools", "\u2014and"], ["\u2011", " leveraging", " algorithms", "\u2014and", " tools", " technologies", " workflows", " optimizations"], ["\u2011", " technologies", " optimizations", " leveraging", " algorithms", "\ufe0f", " \u200b\u200b", "\u2014and"], ["\u2011", " technologies", " optimizations", "<|endoftext|>", " leveraging", " algorithms", "\u200c", " implementations"], [" optimizations", " technologies", " leveraging", "<|endoftext|>", "\u2014and", " tools", " techniques", " utilizing"], [" technologies", " optimizations", " tools", " leveraging", " techniques", " algorithms", " toolkit", " utilizing"], [" technologies", " techniques", " optimizations", " tools", " leveraging", "\u4f7f\u7528", " toolkit", " utilizing"], [" technologies", " tools", " techniques", " APIs", " optimizations", " using", " algorithms", " toolkit"], [" technologies", " tools", " techniques", " APIs", " innovations", " modern", " utilizing", " algorithms"], [" technologies", " APIs", " techniques", " optimizations", " workflows", " algorithms", " tools", " leveraging"], [" technologies", " APIs", "\u2014and", " workflows", " techniques", " tools", " toolkit", " optimizations"], ["\u2014and", " APIs", " toolkit", " workflows", " technologies", " optimizations", " structs", " tools"], [" APIs", "\u2014and", "\u2013and", " toolkit", "\u3092\u6d3b\u7528", " structs", " workflows", " optimizations"], [" \u098f\u09ac\u0982", "\u548c\u4f7f\u7528", " \u0438", " v\u00e0", " \u1793\u17b7\u1784", "\u548c", " APIs", " \u0cae\u0ca4\u0ccd\u0ca4\u0cc1"], [" \u098f\u09ac\u0982", " arrays", " v\u00e0", " \u0438", " \u1793\u17b7\u1784", " \u0cae\u0ca4\u0ccd\u0ca4\u0cc1", "arrays", " and"], [" arrays", "alloc", " and", " buffers", " v\u00e0", " \u098f\u09ac\u0982", "arrays", " \u0438"], ["ByteArray", " arrays", " byte", "ByteBuffer", " buffers", " ByteArray", " ByteBuffer", " Buffer"], [" IDisposable", "ByteArray", " arrays", " buffers", "Buffers", " byte", " ByteArray", "arrays"], [" IDisposable", " buffers", " arrays", "buffers", "Buffers", " Buffer", " CancellationToken", "buffer"], [" Unsafe", " unsafe", " Memory", " IDisposable", "Memory", "Unsafe", " buffers", "unsafe"], [" Memory", "Memory", " renting", " rented", "Rent", " rent", " Rent", " Unsafe"], [" Span", "Span", " spans", " span", " ref", ".Span", "_span", "/span"], [" ref", " Span", " Memory", " `", "ref", " spans", " Unsafe", " unsafe"], [" `", " ref", " Memory", " memory", "Memory", " Span", ".Memory", "ref"], [" `", " Memory", " and", " ref", " memory", "Memory", ".Memory", " `["], [" `", " and", " Memory", " `/", " `[", " `.", " `_", " ref"]], "p": [[0.824, 0.1432, 0.0104, 0.0081, 0.0038, 0.0028, 0.0017, 0.0005], [0.9869, 0.0031, 0.002, 0.0018, 0.0015, 0.001, 0.0004, 0.0002], [0.8882, 0.0442, 0.0237, 0.0127, 0.0087, 0.0068, 0.0053, 0.0032], [0.5735, 0.0533, 0.0196, 0.0144, 0.0119, 0.0105, 0.0093, 0.006], [0.9291, 0.036, 0.0281, 0.002, 0.0003, 0.0002, 0.0002, 0.0002], [0.96, 0.0129, 0.0114, 0.0025, 0.0022, 0.0016, 0.001, 0.0006], [0.9982, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9459, 0.0099, 0.0041, 0.0032, 0.0032, 0.0023, 0.0021, 0.0015], [0.9721, 0.0074, 0.0018, 0.0013, 0.0011, 0.0009, 0.0009, 0.0008], [0.9549, 0.0057, 0.0047, 0.0039, 0.0034, 0.003, 0.0029, 0.002], [0.9917, 0.0019, 0.0015, 0.0013, 0.0008, 0.0002, 0.0001, 0.0001], [0.7032, 0.0397, 0.0089, 0.0083, 0.0078, 0.0065, 0.0065, 0.0061], [0.8639, 0.0315, 0.007, 0.0066, 0.0066, 0.0058, 0.0055, 0.0027], [0.3982, 0.1141, 0.0476, 0.0239, 0.0225, 0.0128, 0.012, 0.0083], [0.9383, 0.0025, 0.0023, 0.0023, 0.0014, 0.0012, 0.0012, 0.0009], [0.9498, 0.0127, 0.0017, 0.0012, 0.0012, 0.001, 0.001, 0.0008], [0.971, 0.0061, 0.004, 0.0014, 0.0012, 0.0009, 0.0006, 0.0003], [0.7613, 0.0123, 0.0079, 0.0079, 0.0045, 0.0038, 0.0026, 0.0024], [0.6105, 0.0196, 0.0163, 0.006, 0.006, 0.005, 0.0041, 0.003], [0.2527, 0.0118, 0.0111, 0.0081, 0.0072, 0.0059, 0.0043, 0.0032], [0.8389, 0.0106, 0.005, 0.002, 0.0014, 0.0014, 0.0013, 0.0012], [0.1235, 0.0115, 0.0031, 0.0027, 0.0021, 0.0018, 0.0018, 0.0014], [0.9128, 0.0023, 0.0023, 0.0012, 0.0011, 0.001, 0.001, 0.0009], [0.3743, 0.0073, 0.0069, 0.0053, 0.0047, 0.0044, 0.0042, 0.0032], [0.1636, 0.0932, 0.0726, 0.0682, 0.0602, 0.0251, 0.0134, 0.0092], [0.8508, 0.0257, 0.0051, 0.0027, 0.0019, 0.0017, 0.0015, 0.0014], [0.7685, 0.0557, 0.0132, 0.0049, 0.0036, 0.0033, 0.003, 0.003], [0.4534, 0.1146, 0.0839, 0.035, 0.0176, 0.0155, 0.0094, 0.0094], [0.3972, 0.0735, 0.0198, 0.012, 0.0106, 0.0106, 0.0057, 0.0057], [0.7699, 0.0716, 0.008, 0.0067, 0.0046, 0.0031, 0.0023, 0.0023], [0.9421, 0.0196, 0.0017, 0.0015, 0.0011, 0.0009, 0.0009, 0.0009], [0.3825, 0.2979, 0.0102, 0.0096, 0.0048, 0.0045, 0.0042, 0.004], [0.3594, 0.0625, 0.0216, 0.009, 0.0079, 0.0079, 0.0075, 0.0055], [0.0532, 0.0196, 0.0196, 0.0152, 0.0143, 0.0098, 0.0082, 0.0077], [0.1071, 0.0736, 0.0348, 0.0113, 0.0106, 0.0106, 0.0078, 0.0073], [0.1432, 0.1048, 0.0985, 0.0362, 0.034, 0.03, 0.022, 0.0125], [0.0963, 0.075, 0.019, 0.0167, 0.0167, 0.0108, 0.0108, 0.0102], [0.0679, 0.0638, 0.0387, 0.0183, 0.0098, 0.0081, 0.0081, 0.0067], [0.0497, 0.0183, 0.0126, 0.0111, 0.0104, 0.0098, 0.0092, 0.0092], [0.0683, 0.0126, 0.0126, 0.0111, 0.0105, 0.0105, 0.0092, 0.0087], [0.0668, 0.0279, 0.0246, 0.0149, 0.0132, 0.0096, 0.009, 0.007], [0.0356, 0.0277, 0.0277, 0.019, 0.0179, 0.0168, 0.0158, 0.0131], [0.0548, 0.0454, 0.0276, 0.0243, 0.0243, 0.0189, 0.0147, 0.013], [0.1538, 0.0365, 0.0303, 0.0303, 0.0251, 0.0208, 0.0184, 0.0152], [0.0987, 0.0466, 0.0411, 0.0234, 0.0234, 0.0172, 0.0161, 0.0161], [0.132, 0.055, 0.0486, 0.0244, 0.0148, 0.0131, 0.0131, 0.0131], [0.1034, 0.0336, 0.0231, 0.0217, 0.0204, 0.018, 0.0149, 0.0132], [0.0528, 0.032, 0.0234, 0.0182, 0.0182, 0.0161, 0.0161, 0.0133], [0.0359, 0.0337, 0.018, 0.0124, 0.0116, 0.0091, 0.0091, 0.008], [0.0179, 0.0115, 0.0108, 0.0084, 0.0062, 0.0062, 0.0054, 0.0045], [0.0295, 0.0277, 0.026, 0.0244, 0.0115, 0.0096, 0.0084, 0.0079], [0.0344, 0.0285, 0.0268, 0.0236, 0.0196, 0.0173, 0.0163, 0.0093], [0.0525, 0.0281, 0.0281, 0.0219, 0.0193, 0.016, 0.016, 0.015], [0.0671, 0.0556, 0.0433, 0.0382, 0.0382, 0.0382, 0.0263, 0.0218], [0.1212, 0.061, 0.0573, 0.037, 0.0224, 0.0198, 0.0198, 0.0175], [0.1325, 0.0911, 0.0666, 0.0315, 0.0261, 0.0261, 0.0245, 0.0191], [0.1038, 0.0916, 0.0714, 0.0592, 0.0556, 0.0407, 0.0317, 0.0279], [0.1702, 0.117, 0.0709, 0.0626, 0.0552, 0.043, 0.038, 0.0315], [0.8716, 0.0557, 0.0263, 0.0205, 0.0085, 0.0075, 0.0031, 0.0015], [0.8214, 0.0674, 0.0318, 0.017, 0.0117, 0.0071, 0.0046, 0.004], [0.6271, 0.2614, 0.0749, 0.007, 0.0054, 0.0023, 0.0021, 0.0019], [0.7177, 0.1815, 0.0315, 0.0217, 0.0116, 0.009, 0.0043, 0.0029], [0.994, 0.0041, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001]], "ranks": {}}, {"pos": 573, "top": [[".", " \u2013", "\u2013", ",", ";", "\u00a0", "\u00a0\u00a0", "?"], ["\u2013", "\u2013and", " \u2013", " \u2013,", "\u2013\u2013", " \u2013**", ".\u2013", "**\u2013"], ["\u2013", ",", "\u2013and", ".", " \u2013", ".\u2013", "\u2026", ";"], ["-------------</", "----------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " milfs", "---</", " ;;^", " Shemale", "----</"], [" \"@", "\u65b0\u52a0\u5761", "---</", "abeled", " **\"", " **#", "\u0103\u021b", "//@"], [" **\u2013", " **\"", " **\u201c", "\u00a0\u00a0", " **#", "-**", "!**", "**!"], [" **\"", " **\u201c", "...**", " **\u2013", " **", "!**", "\u3002**", ".**"], [" **\"", "...**", " **\u2013", " **#", "  \r\n", " **\u201c", "-**", "!**"], ["  \n\n", "\u00a0", "!.", ".", "   \n\n", "!:", "  \n\n\n", "\u2014but"], [",", "\u2013", "\u2014\"", "\u2014but", "\u2013and", ".${", "\\.", "\u00a0"], ["\u2013", "\u00a0", ",", "\u2014\"", "\u2014but", "\u2014", ".", "\u2014and"], [" **\"", " **#", " **", " **\u2013", " savvy", " arguably", " newfound", "\u2014or"], [" **", " savvy", " **\u2013", " **\"", " newfound", " **#", " aggressively", " arguably"], [" savvy", " newfound", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-esque", " seamlessly", " aggressively", " impactful", " transformative"], [" aggressively", " arguably", " myriad", " savvy", "\u2013", " effortlessly", " ostensibly", "\u2014or"], [" myriad", " arguably", " savvy", " showcasing", " touted", " aggressively", " effortlessly", " newfound"], [" myriad", " arguably", " aggressively", " savvy", " swiftly", " effortlessly", " ostensibly", " seamlessly"], [" myriad", " aggressively", " seamlessly", " arguably", " effortlessly", " ostensibly", " savvy", " swiftly"], [" aggressively", " myriad", " ostensibly", " arguably", " increasingly", " swiftly", " seemingly", " strategically"], [" myriad", " ostensibly", " aggressively", " arguably", " swiftly", " seemingly", " increasingly", "\u2014even"], [" myriad", "<|endoftext|>", " swiftly", " aggressively", " ostensibly", " seemingly", " arguably", " ultimately"], [" ``", " aggressively", " ;;^", " increasingly", " myriad", "\u5171\u540c\u6253\u9020", " seamlessly", " arguably"], [" ``", " aggressively", " increasingly", " myriad", " {{--<", " ''", " ostensibly", " swiftly"], [" ``", " myriad", " aggressively", " ultimately", " ostensibly", " swiftly", " {{--<", " notably"], [" myriad", " \n\n", " \r\n\r\n", " swiftly", "\r\n\r\n", " aggressively", " ostensibly", " ``"], [" **", " ``", " aggressively", " myriad", " {{--<", " meticulously", " increasingly", " heavily"], [" **", " aggressively", " myriad", " ``", " {{--<", " heavily", " ultimately", " increasingly"], [" \n\n", " **", " myriad", " ultimately", " heavily", " aggressively", " much", " arguably"], [" aggressively", " ultimately", " myriad", " heavily", " **", " increasingly", " much", " largely"], [" **", " aggressively", " ultimately", " heavily", " increasingly", " myriad", " modern", " much"], [" **", " ultimately", " heavily", " aggressively", " increasingly", " modern", " myriad", " even"], [" **", " heavily", " ultimately", " many", " aggressively", " re", " modern", " increasingly"], [" ultimately", " aggressively", " heavily", " meticulously", " **", " increasingly", " even", " modern"], [" meticulously", " aggressively", " **", " strategically", " heavily", " ultimately", " seamlessly", " myriad"], [" meticulously", " **", " aggressively", " strategically", " **\u201c", " heavily", " seamlessly", " increasingly"], [" meticulously", " **", " aggressively", " strategically", " **\u201c", "\u2011", " myriad", " heavily"], [" meticulously", " aggressively", " strategically", " **", " reusable", " internally", " reuse", " reused"], [" meticulously", " reusable", " reuse", " aggressively", "\u2011", " reused", " internally", " strategically"], [" meticulously", " aggressively", " reusable", " reuse", " recycling", " internally", " algorithms", "\u2011"], [" reusable", " reuse", " meticulously", " recycling", " recycled", " reused", " recycl", "\u2011"], [" reusable", " reuse", " recycling", " recycl", " recycled", " reused", " meticulously", " storage"], [" reusable", " reuse", " recycling", " reused", " recycled", " recycl", " recycle", " storage"], [" reusable", " reuse", " recycling", " recycled", " reused", " recycl", " recycle", " storage"], [" reusable", " reuse", " recycling", " reused", " recycle", " recycled", " containers", " storage"], [" reusable", " reuse", " recycling", " reused", " recycle", " recycled", " containers", " arrays"], [" reusable", " reuse", " recycling", " reused", " arrays", " recycled", " libraries", " recycle"], [" reusable", " reuse", " meticulously", " reused", " arrays", " libraries", " caches", " recycling"], [" reusable", " meticulously", " arrays", " extensively", " caches", " reuse", " extensive", " templates"], [" meticulously", " reusable", " extensively", ";**", " arrays", " caches", " extensive", " buffers"], [" meticulously", " reusable", " extensively", " **\u2014", " **\u2013", ";**", "-**", " **+"], [" reusable", " meticulously", " extensively", " arrays", "Reusable", " caches", "\u5927\u91cf\u7684", " buffers"], [" reusable", " extensively", " arrays", " extensive", " caches", " meticulously", " structs", " buffers"], [" reusable", "Reusable", " reuse", " reused", "reuse", "Reuse", "\u590d\u7528", " caches"], [" reusable", "Reusable", " reuse", "reuse", " reused", "Reuse", " immutable", " predefined"], [" reusable", "Reusable", " reuse", " predefined", "reuse", " immutable", " buffers", "\u9884\u5148"], [" reusable", "Reusable", " aggressively", " reuse", " buffers", " extensively", " IDisposable", " aggressive"], [" pools", "\u6c60", " pooling", " pooled", " pool", " reusable", " aggressively", " Pool"], [" pools", "\u6c60", " pooling", " pooled", " pool", " Pool", "pool", "POOL"], [" pooled", " pools", " pooling", "\u6c60", " pool", " Pool", " aggressively", ".pool"], [" pooled", " pools", " pooling", " pool", " reusable", " pre", " object", " aggressive"], [" pre", " pooled", " pools", " pooling", " object", " `", "\u9884", " predefined"], [" pre", " object", " pooled", " `", " aggressive", " predefined", " reusable", " pools"], [" `", " object", " pre", " aggressive", " reusable", " memory", " immutable", " pooled"]], "p": [[0.4633, 0.2188, 0.2188, 0.0805, 0.0051, 0.0021, 0.0018, 0.0013], [0.5045, 0.1358, 0.0566, 0.0082, 0.0072, 0.0068, 0.006, 0.0056], [0.9383, 0.0283, 0.0104, 0.0081, 0.0072, 0.0026, 0.0009, 0.0007], [0.022, 0.022, 0.022, 0.0118, 0.0067, 0.0049, 0.0046, 0.003], [0.0186, 0.0136, 0.0094, 0.0073, 0.0064, 0.0064, 0.0047, 0.0044], [0.1847, 0.112, 0.0266, 0.0172, 0.0104, 0.0092, 0.0072, 0.0067], [0.3103, 0.0785, 0.0574, 0.0327, 0.0271, 0.0239, 0.0239, 0.0225], [0.4042, 0.1233, 0.0312, 0.0228, 0.0189, 0.0178, 0.0138, 0.0138], [0.2169, 0.075, 0.0455, 0.0354, 0.0215, 0.019, 0.0178, 0.0167], [0.0886, 0.0393, 0.0393, 0.0154, 0.0093, 0.0064, 0.0057, 0.0057], [0.2341, 0.1941, 0.1512, 0.063, 0.0382, 0.0337, 0.017, 0.0159], [0.0434, 0.016, 0.011, 0.0085, 0.0059, 0.0055, 0.0043, 0.004], [0.0166, 0.0156, 0.0156, 0.0129, 0.0057, 0.0057, 0.0054, 0.0054], [0.015, 0.0052, 0.0052, 0.0049, 0.0046, 0.0046, 0.004, 0.004], [0.0193, 0.0141, 0.0103, 0.0091, 0.0076, 0.0076, 0.0071, 0.0055], [0.0338, 0.0192, 0.0141, 0.0103, 0.0075, 0.0071, 0.0055, 0.0052], [0.0393, 0.0198, 0.0106, 0.0088, 0.0088, 0.0077, 0.0073, 0.0064], [0.0125, 0.011, 0.0076, 0.0063, 0.0043, 0.0038, 0.0038, 0.0038], [0.0261, 0.023, 0.0158, 0.014, 0.0058, 0.0051, 0.0051, 0.0048], [0.0312, 0.0147, 0.0122, 0.0115, 0.0095, 0.0061, 0.0054, 0.0051], [0.0205, 0.0205, 0.0132, 0.0085, 0.008, 0.0055, 0.0049, 0.0043], [0.0177, 0.0074, 0.0051, 0.0039, 0.0033, 0.0024, 0.0017, 0.0017], [0.1196, 0.0092, 0.0049, 0.0049, 0.0041, 0.0032, 0.003, 0.003], [0.0455, 0.007, 0.0066, 0.0051, 0.0048, 0.0042, 0.0042, 0.004], [0.0126, 0.0098, 0.0087, 0.0077, 0.0068, 0.006, 0.0056, 0.0056], [0.0284, 0.0111, 0.0098, 0.0067, 0.0059, 0.0041, 0.0041, 0.0034], [0.0126, 0.0119, 0.0098, 0.0098, 0.0082, 0.0053, 0.005, 0.0044], [0.0199, 0.0114, 0.0107, 0.01, 0.0094, 0.0083, 0.0054, 0.0054], [0.0136, 0.0136, 0.0136, 0.0128, 0.0106, 0.0068, 0.005, 0.005], [0.0534, 0.0127, 0.0119, 0.0112, 0.0099, 0.0082, 0.0072, 0.0056], [0.0392, 0.0154, 0.012, 0.0106, 0.0099, 0.0099, 0.0073, 0.0073], [0.0953, 0.0137, 0.0137, 0.0107, 0.01, 0.0094, 0.0094, 0.0083], [0.0186, 0.0145, 0.0136, 0.0106, 0.0088, 0.0083, 0.0083, 0.0083], [0.0607, 0.0238, 0.0223, 0.0153, 0.0127, 0.0068, 0.0068, 0.0056], [0.1092, 0.0485, 0.0294, 0.0167, 0.013, 0.0115, 0.009, 0.0066], [0.1008, 0.0348, 0.0255, 0.0136, 0.0113, 0.0106, 0.0094, 0.0088], [0.0922, 0.0435, 0.016, 0.0117, 0.0103, 0.0091, 0.0086, 0.0076], [0.1132, 0.0209, 0.0163, 0.0163, 0.0144, 0.0127, 0.0119, 0.0119], [0.1613, 0.0193, 0.016, 0.0117, 0.011, 0.011, 0.0097, 0.0075], [0.1334, 0.0861, 0.063, 0.0592, 0.0407, 0.0337, 0.0232, 0.0205], [0.1694, 0.0752, 0.0663, 0.0378, 0.0355, 0.0277, 0.026, 0.0148], [0.451, 0.213, 0.0692, 0.0539, 0.0394, 0.0254, 0.0128, 0.0088], [0.5503, 0.1391, 0.0657, 0.0292, 0.0292, 0.0242, 0.0177, 0.0101], [0.5033, 0.1273, 0.044, 0.0365, 0.0251, 0.0195, 0.0183, 0.0111], [0.5303, 0.0922, 0.0435, 0.0361, 0.0219, 0.0219, 0.0193, 0.011], [0.5429, 0.0538, 0.0369, 0.0254, 0.0198, 0.0175, 0.0154, 0.0136], [0.6186, 0.0508, 0.0225, 0.0175, 0.0165, 0.0155, 0.0121, 0.01], [0.2628, 0.1166, 0.0379, 0.0277, 0.0216, 0.0158, 0.0139, 0.0115], [0.1674, 0.1304, 0.0842, 0.0241, 0.0213, 0.0176, 0.0166, 0.0094], [0.1012, 0.0654, 0.0422, 0.0372, 0.029, 0.029, 0.024, 0.0146], [0.1066, 0.0607, 0.027, 0.0127, 0.0127, 0.0112, 0.0082, 0.0073], [0.1173, 0.0381, 0.0316, 0.0246, 0.0217, 0.0204, 0.0132, 0.009], [0.8281, 0.068, 0.0467, 0.0134, 0.0118, 0.0104, 0.0012, 0.0012], [0.8387, 0.0536, 0.0369, 0.012, 0.0073, 0.0064, 0.0025, 0.0017], [0.705, 0.0579, 0.0351, 0.0273, 0.0129, 0.0129, 0.0074, 0.0061], [0.4359, 0.1102, 0.0521, 0.0358, 0.0316, 0.0316, 0.0192, 0.0124], [0.4011, 0.1895, 0.1302, 0.0895, 0.0423, 0.0256, 0.0121, 0.0094], [0.4583, 0.1911, 0.1313, 0.1023, 0.0903, 0.0122, 0.0021, 0.0019], [0.3345, 0.2605, 0.1394, 0.1086, 0.1086, 0.0167, 0.0042, 0.0037], [0.348, 0.2392, 0.128, 0.0534, 0.0416, 0.0367, 0.0252, 0.0144], [0.8271, 0.0679, 0.022, 0.0104, 0.0092, 0.0081, 0.0072, 0.0063], [0.8397, 0.0885, 0.0154, 0.0068, 0.0053, 0.0041, 0.0041, 0.003], [0.524, 0.3178, 0.1169, 0.0066, 0.004, 0.0029, 0.0024, 0.002]], "ranks": {}}, {"pos": 574, "top": [["\u2013", "\u2013and", " \u2013", "s", "\u6700\u65b0\u53d1\u5e03", "a", " `", ".`"], ["\u2013and", "sWith", "\u2013", "(`", "s", ":`", " `", ".`"], ["\u2013", "\u2013and", ".\u2013", ".", "s", " \u2013", ",", " \u2013,"], ["``", " `_", " ``", "\u52a0\u62ff\u5927", " ``(", ":`", "`,`", "}`"], [" `", " `_", ".`", ":`", "(`", "`.", " `,", "`:"], [" `_", ":`", "(`", ".`", " `", "`.", " `,", "`:"], [" `", ".`", ":`", "`.", "(`", "`", " `_", "}`"], [" `", ".`", ":`", "(`", " `_", "`.", "}`", "`"], [".`", ":`", " `", "(`", "`.", "`", " `.", "=`"], [".`", ":`", "`\\", "(`", " `", "`", "s", "}`"], [".`", " `", "`", "...", "s", ":`", "(`", "a"], [" `", ":`", ".`", "(`", " `_", "}`", "=`", " `\\"], [" `", ".`", ":`", " `_", "(`", "`", "}`", "`."], [" `", ".`", "(`", ":`", "=`", "`", "}`", " `_"], [" `", ".`", "(`", "`", ":`", "}`", "=`", "s"], [" `", "s", "`", ".`", "(`", "t", "}`", "e"], ["s", " `", "`", "t", "e", "a", "(`", ".`"], ["(`", "`", " `", "`\\", ":`", ".`", "}`", " `%"], [" `", "}`", "(`", "`", ":`", ".`", "``", " `%"], [" `", "(`", "}`", "`", "`,", "`\\", " `%", ":`"], [" `", "<|endoftext|>", "`", " \n\n", "`,", "(`", "`;", "}`"], [" `", " `%", " ``", "``", "}`", ":`", "(`", " `_"], [" `", " ``", "``", " `_", " `%", "}`", "`", " `,"], [" `", " ``", "`", " `_", "`,", " `,", " `%", "``"], [" \n\n", "\n\n", " `", "\r\n\r\n", " \n\n\n", " \r\n\r\n", "   \n\n", " `_"], [" `", " `_", " ``", " \n\n", " `\\", " `,", " `%", "\r\n\r\n"], [" ``", " `", " `_", " \n\n", " `%", "\n\n", "``", " `\\"], [" \n\n", "\n\n", " `", "\r\n\r\n", " \r\n\r\n", " @", "   \n\n", " `_"], [" \n\n", "\n\n", "\r\n\r\n", " `_", " \r\n\r\n", " `", "   \n\n", " __"], [" ____", "____", " \n\n", " __", " ...", " ______", "...**", "__:"], [" \n\n", " ...", " __", " `_", " ____", "__:", "____", " \r\n\r\n"], [" ...", " \n\n", "...", "...*", " ...\\", "...**", " \r\n\r\n", " __"], ["\u2011", "\u2013", " ...", " utilities", " utility", "...*", "\\\\/", " `"], [" *\u2013", " toolkit", " utilities", "\u2013", " STEM", " Modular", " \r\n\r\n", "(`"], ["\u2011", "\u2026*", "...*", "...**", " *\u2013", " STEM", " \r\n\r\n", " toolkit"], ["\u2026*", "...*", "\u2011", "...**", " *\u2013", "[\u2026]", "\u2026**", "\u2013"], ["\u2026*", "\u2011", "...*", "...**", "[\u2026]", "\u2026**", " Modular", "Fast"], ["\u2011", "[\u2026]", "\u2026*", " [\u2026]", "Memory", "`;", " Allocator", " Modular"], ["\u2011", " [\u2026]", "[\u2026]", "\u2026*", "...*", "Memory", "...</", " Memory"], [" [\u2026]", "\u2011", "[\u2026]", "\u2026*", "Memory", "...</", " [...]", "...**"], [" Memory", "Memory", "\u2011", " Allocator", " Storage", "Allocator", " [\u2026]", "memory"], ["Memory", " Memory", " Allocator", " Storage", "Allocator", "Storage", " allocator", " reusable"], [" Allocator", " Storage", " Memory", " reusable", "Allocator", " allocator", "Memory", " Recycling"], [" Storage", " Allocator", " Memory", "Memory", "\u4f7f\u7528", "Storage", "containers", " Recycling"], [" Storage", " Memory", " Allocator", " reusable", " Metal", " containers", "containers", " allocator"], [" Storage", " Memory", " Metal", " Allocator", " reusable", "containers", " Recycling", " containers"], [" Storage", " Allocator", " reusable", " Memory", " Metal", " allocator", " Algorithms", "containers"], [" Storage", " Metal", " Memory", " Allocator", " Recycling", " reusable", " Toolkit", "containers"], [" Allocator", " Toolkit", " SIMD", "vecs", " allocator", " reusable", "containers", " Recycling"], [" Allocator", " SIMD", " Toolkit", " Toolbox", "vecs", "/storage", "-unused", "containers"], [" SIMD", " Toolkit", " Allocator", "Reusable", "containers", " Toolbox", "Allocator", "vecs"], [" Allocator", " SIMD", " ByteArray", "arrays", " Stateless", " ByteBuffer", "/array", " Buffer"], [" Buffer", " Allocator", " IDisposable", " SIMD", " ByteArray", " Memory", "-buffer", " ByteBuffer"], [" Buffer", " ByteArray", " ByteBuffer", "buffer", " IDisposable", "-buffer", "ByteBuffer", " buffers"], [" IDisposable", " Buffer", " Memory", " MemoryStream", " ByteArray", " Allocator", "alloc", " Unsafe"], [" IDisposable", " Buffer", " Memory", "buffer", "Memory", " buffers", " Unsafe", " CancellationToken"], [" Memory", "\u6c60", "Memory", " IDisposable", " Unsafe", " Buffer", "(pool", ".Memory"], [" Rent", "Rent", " Rental", "\u6c60", " Memory", " rent", "\u79df", " renting"], [" Span", "Span", " Memory", ".Span", "_span", " ref", " span", " spans"], [" ref", " Memory", " Span", "Memory", "ref", " Unsafe", " ReadOnly", " Rental"], [" Memory", " ref", "Memory", "ref", " Span", " ReadOnly", ".Memory", " Rental"], [" Memory", "Memory", " ref", " ReadOnly", ".Memory", " Span", " Rental", " Rentals"], ["Memory", " Memory", "Array", "ref", ".Memory", " Array", " ref", " ReadOnly"]], "p": [[0.2137, 0.1469, 0.101, 0.0448, 0.0395, 0.024, 0.0145, 0.0121], [0.0807, 0.0297, 0.0297, 0.0231, 0.0231, 0.0204, 0.018, 0.0116], [0.8101, 0.1242, 0.0403, 0.0045, 0.0038, 0.0038, 0.0013, 0.0009], [0.1916, 0.0662, 0.0549, 0.0139, 0.0102, 0.004, 0.0035, 0.0026], [0.3139, 0.2158, 0.0746, 0.0658, 0.0452, 0.0352, 0.0274, 0.0177], [0.172, 0.0673, 0.0594, 0.0558, 0.0525, 0.036, 0.036, 0.017], [0.3525, 0.3525, 0.0613, 0.0477, 0.0421, 0.0421, 0.0328, 0.0225], [0.2659, 0.2347, 0.1423, 0.0762, 0.0672, 0.0593, 0.0318, 0.0205], [0.5726, 0.1278, 0.0775, 0.0533, 0.0533, 0.0323, 0.0162, 0.0127], [0.4354, 0.1815, 0.0972, 0.0554, 0.0336, 0.0204, 0.0159, 0.0149], [0.3416, 0.3416, 0.0673, 0.0524, 0.0408, 0.036, 0.0247, 0.0193], [0.6085, 0.0823, 0.0727, 0.0499, 0.0499, 0.0173, 0.0173, 0.0126], [0.5048, 0.1276, 0.0774, 0.0642, 0.0344, 0.0285, 0.0126, 0.0126], [0.2965, 0.1914, 0.1025, 0.1025, 0.0215, 0.0215, 0.0202, 0.013], [0.6235, 0.0793, 0.0617, 0.0617, 0.0213, 0.0177, 0.0107, 0.0095], [0.2934, 0.0615, 0.0615, 0.0241, 0.0241, 0.02, 0.0188, 0.0176], [0.1457, 0.1002, 0.0647, 0.0504, 0.0473, 0.0305, 0.0287, 0.0174], [0.1399, 0.1234, 0.1089, 0.0703, 0.0621, 0.0621, 0.0514, 0.0201], [0.2349, 0.1042, 0.0979, 0.0716, 0.0524, 0.0383, 0.0383, 0.0318], [0.4101, 0.0974, 0.0915, 0.086, 0.0521, 0.0246, 0.0192, 0.018], [0.2935, 0.1895, 0.051, 0.0479, 0.0423, 0.0309, 0.0213, 0.02], [0.3173, 0.0708, 0.0587, 0.0587, 0.0518, 0.0216, 0.0191, 0.0158], [0.5479, 0.2933, 0.084, 0.0212, 0.0129, 0.0089, 0.005, 0.0039], [0.8378, 0.0503, 0.0105, 0.0082, 0.0072, 0.0064, 0.0056, 0.0056], [0.7264, 0.1262, 0.041, 0.0234, 0.0182, 0.0125, 0.0067, 0.0052], [0.6445, 0.0872, 0.077, 0.0723, 0.0126, 0.0092, 0.0072, 0.0038], [0.3291, 0.3092, 0.0943, 0.0326, 0.0145, 0.0113, 0.0099, 0.0088], [0.685, 0.252, 0.025, 0.0038, 0.0026, 0.0025, 0.0022, 0.0019], [0.6664, 0.1312, 0.0214, 0.0178, 0.0138, 0.0138, 0.0101, 0.0031], [0.2138, 0.1665, 0.138, 0.1297, 0.0837, 0.0448, 0.0199, 0.0175], [0.4518, 0.0693, 0.0651, 0.0507, 0.0348, 0.0175, 0.0165, 0.0136], [0.6305, 0.1096, 0.0586, 0.0203, 0.019, 0.0108, 0.007, 0.0066], [0.0494, 0.0206, 0.0067, 0.0049, 0.0041, 0.0038, 0.0036, 0.0034], [0.0074, 0.0069, 0.0042, 0.0033, 0.0033, 0.0027, 0.0027, 0.0022], [0.0197, 0.0105, 0.0099, 0.006, 0.006, 0.005, 0.0044, 0.0032], [0.1516, 0.0408, 0.028, 0.0181, 0.015, 0.0132, 0.011, 0.0075], [0.0335, 0.0191, 0.0096, 0.007, 0.004, 0.0038, 0.0038, 0.0031], [0.118, 0.0141, 0.0103, 0.0071, 0.0043, 0.004, 0.0038, 0.0036], [0.0534, 0.0252, 0.0223, 0.0173, 0.0064, 0.0064, 0.006, 0.0044], [0.0623, 0.0516, 0.0215, 0.0157, 0.0139, 0.0123, 0.0084, 0.0079], [0.0397, 0.0373, 0.035, 0.0309, 0.0241, 0.0166, 0.0166, 0.0137], [0.0553, 0.038, 0.0357, 0.0336, 0.018, 0.014, 0.014, 0.0116], [0.0423, 0.0351, 0.0291, 0.02, 0.0188, 0.0146, 0.0114, 0.0107], [0.0668, 0.0405, 0.0297, 0.018, 0.0096, 0.008, 0.0075, 0.007], [0.0543, 0.0241, 0.0226, 0.0129, 0.0121, 0.0094, 0.0089, 0.0083], [0.0547, 0.0275, 0.0178, 0.0157, 0.0147, 0.0115, 0.0095, 0.0084], [0.0333, 0.0202, 0.013, 0.0123, 0.0115, 0.0095, 0.0074, 0.0074], [0.0297, 0.0159, 0.015, 0.0141, 0.0091, 0.0091, 0.0091, 0.0085], [0.0249, 0.0111, 0.0104, 0.0092, 0.0092, 0.0076, 0.0071, 0.0059], [0.0189, 0.0157, 0.0147, 0.0051, 0.0051, 0.0042, 0.0031, 0.0029], [0.0171, 0.0151, 0.0133, 0.0059, 0.0059, 0.0049, 0.0036, 0.0034], [0.0435, 0.0408, 0.0193, 0.016, 0.0124, 0.011, 0.0097, 0.0097], [0.1194, 0.053, 0.0498, 0.0468, 0.0413, 0.025, 0.025, 0.0207], [0.3711, 0.1063, 0.0569, 0.0443, 0.0345, 0.0305, 0.0253, 0.0174], [0.3557, 0.07, 0.0546, 0.0331, 0.0331, 0.0292, 0.0258, 0.0201], [0.2374, 0.2374, 0.053, 0.0467, 0.0321, 0.0235, 0.0162, 0.0126], [0.3338, 0.1577, 0.0956, 0.0512, 0.0452, 0.0352, 0.0138, 0.0129], [0.3645, 0.152, 0.0633, 0.0559, 0.0559, 0.0493, 0.0339, 0.0264], [0.9575, 0.0328, 0.003, 0.0016, 0.0014, 0.001, 0.0009, 0.0004], [0.5063, 0.348, 0.0776, 0.0135, 0.0105, 0.0093, 0.0093, 0.0027], [0.7003, 0.2576, 0.0211, 0.0053, 0.0032, 0.0022, 0.0012, 0.0012], [0.962, 0.02, 0.0033, 0.0027, 0.002, 0.0013, 0.0009, 0.0005], [0.7824, 0.1978, 0.0077, 0.0019, 0.001, 0.0009, 0.0009, 0.0007]], "ranks": {}}, {"pos": 575, "top": [[" \u2013", ".", "\u2013", ",", " ", "er", ";", "\u00a0"], [" \u2013", "\u2013", "  \n\n", " \u2013,", "  \n", "  \r\n", " \u2013**", "er"], [" \u2013", "\u2013", " \u2013,", ".\u2013", ".", "\u2013and", ",", "**\u2013"], [" Blowjob", " cumshot", " knull", " cristi", " milfs", "adrid", " councill", " Shemale"], [" ***", " (**", " **", " cristi", " \"**", " )**", " **-", " **:"], ["otence", " **\u2013", "\u0e97\u0eb5", "undur", " (**", " )**", "<|quad_end|>", " **"], [" ***", " **", "  \r\n", " \r\r\n", " **\u2013", "(memory", " MEMORY", " )**"], [" **", " **\u00ab", " ***", " **-", " **\u20ac", "alej", " **\u300c", " )**"], [" **", " **\u00ab", " ***", " **\u20ac", " **\u300c", " **\u00a1", "alej", " **-"], ["\u7ad9\u5730\u94c1\u7ad9", "/memory", " febbra", "alej", " **\u2013", "\u9526\u6d9b", "emory", "-MM"], [" \u2013", " ***", " \u00ad", " **\u2013", "\u00ac", "\u00ad", " Memory", "-memory"], [" **", " **\u00ab", " )**", " ***", " **\u2013", " **\u300c", " **-", "...**"], [" **", " **\u00ab", " )**", " **\u300c", " **\u2013", " ***", " **-", "-**"], ["-memory", "/memory", " MEMORY", " Memory", "-space", "STANCE", "-fluid", " fluids"], ["\u00ac", " \u00ad", " Memory", " MEM", "\\-", "\u5468\u906d", "-memory", "/memory"], [" Memory", " MEM", "/memory", " \u00ad", " MEMORY", "-memory", "\u5468\u906d", "\u00ac"], [" Memory", "/memory", "-memory", " MEM", " \u00ad", " MEMORY", "**\u2013", "er"], ["**\u2013", " MEMORY", "/memory", "-memory", " Memory", "-space", "...**", " MEM"], ["/memory", " MEMORY", "...**", "-memory", "**\u2013", "-space", " Memory", " \r\n\r\n"], ["/memory", " MEMORY", " MEM", "**\u2013", " \r\n\r\n", "-memory", " Memory", "(memory"], [" \n\n", "  \n\n", " \r\n\r\n", " \u00ad", "<|endoftext|>", "\u2013", "\u00ad", " \u2013"], ["/memory", " Memory", " MEMORY", " MEM", "-memory", "(memory", "MEMORY", "emory"], [" Memory", "/memory", " MEM", " MEMORY", " Memorial", "-memory", " Mem", " memory"], [" Memory", "/memory", " MEM", " ...", " MEMORY", " Memorial", " memory", "-memory"], [" \n\n", "...**", " \r\n\r\n", " Memory", " ...", "...", "/memory", "Memory"], [" \n\n", " ...", "...**", " Memory", " **", " [...]", " ...\"", " MEMORY"], [" MEMORY", " **:", " Memory", "...**", " **\u300c", " **", " **\u25a0", " \u2764"], ["...**", " **", " ...", " ...\\", " \n\n", " \r\n\r\n", " **\u300c", " ___"], ["...**", " **\u300c", "\u2026**", " **:", " **\u25a0", " /**<", "-**", " ...\\"], ["...**", " **\u300c", " **:", " **", " **.", " ...\\", "\u2026**", " **\u25a0"], ["...**", " **\u300c", " **.", " **", " **\u25a0", " **:", " ...\\", " \"**"], ["...**", " ...", " Memory", " **.", " Storage", " **", " \"**", " MEMORY"], ["...**", "/memory", "/storage", " Memory", "SSIP", " Storage", "Allocator", " MEMORY"], ["/storage", "/memory", "SSIP", "(memory", "-memory", "ccak", "Allocator", "_storage"], ["/memory", "/storage", "<|object_ref_end|>", "(memory", "\u2026**", "...**", "-memory", " MEMORY"], ["/memory", " MEMORY", "(memory", "MEM", "Memory", "/storage", "-memory", "storage"], ["Memory", "/memory", "(memory", " MEMORY", "Allocator", "MEM", "-memory", " Memory"], ["Memory", "(memory", " Memory", "/memory", " MEMORY", "-memory", "Allocator", "memory"], ["(memory", " Memory", "/memory", "Memory", "-memory", "Allocator", "memory", "/storage"], ["Memory", " Memory", "(memory", "-memory", "memory", "/memory", " MEMORY", "storage"], [" Memory", "Memory", "(memory", "-memory", "/memory", "memory", "Storage", " MEMORY"], ["Memory", "-memory", "Storage", " Memory", "(memory", "/storage", "storage", " Storage"], ["/storage", "-memory", " Storage", "storage", "Memory", "(memory", "Storage", " Memory"], [" Memory", " Storage", "Memory", "-memory", "storage", " Allocator", "(memory", "Storage"], [" Memory", " Storage", "-memory", " Allocator", "Memory", "Allocator", "storage", " ByteBuffer"], [" Memory", " Storage", "-memory", " Allocator", "(memory", " ByteBuffer", "Allocator", "Memory"], [" Memory", " Allocator", " Storage", "-memory", "allocator", "Allocator", " allocator", " ByteBuffer"], [" Memory", " Allocator", " Storage", "-memory", "Allocator", " allocator", "Memory", "allocator"], [" Allocator", "Allocator", "-memory", "allocator", " allocator", " Memory", "/storage", "Memory"], [" Allocator", "-memory", "Allocator", "allocator", " Memory", "(memory", " allocator", "/memory"], ["-memory", "Allocator", "(memory", " Allocator", "allocator", "/memory", "Memory", " Memory"], ["Allocator", " Allocator", "-memory", "alloc", " allocator", "allocator", "(memory", "/memory"], [" Allocator", "-memory", "Allocator", " allocator", "Memory", "(memory", " Memory", "allocator"], ["(memory", "(mem", ".Memory", "-memory", ".mem", "/memory", " Memory", "Memory"], ["(memory", ".Memory", ".mem", "(mem", " allocator", " Memory", "-memory", "Memory"], ["<byte", " allocator", "alloc", " allocations", "(memory", "Allocator", "buffer", " Allocation"], ["<byte", " allocator", "alloc", "Allocator", "Alloc", " allocations", " Allocator", "(memory"], ["Pool", "<byte", "\u6c60", "pool", " allocator", "(memory", " pooling", "Allocator"], ["Pool", "Marshal", "<byte", "\u6c60", "pool", " pooling", "<T", "Pooling"], ["<T", "Pool", "Marshal", "<byte", "\\<", "<", " pool", "pool"], ["<T", "\\<", "<", " <", "<byte", "Marshal", "Pool", " `<"], ["<T", "Pool", " Pool", "<", " pooling", " pool", " pools", "pool"], ["<T", "Pool", "Marshal", "<M", "Manager", "<>", "<S", "Owner"]], "p": [[0.7877, 0.083, 0.0733, 0.0287, 0.0047, 0.0044, 0.0034, 0.0018], [0.9575, 0.0078, 0.005, 0.0035, 0.0012, 0.0011, 0.0009, 0.0007], [0.8889, 0.1062, 0.0016, 0.0009, 0.0006, 0.0005, 0.0002, 0.0002], [0.0043, 0.0033, 0.0033, 0.0029, 0.0029, 0.0026, 0.0024, 0.0023], [0.0147, 0.0079, 0.0061, 0.0054, 0.004, 0.0033, 0.0033, 0.0027], [0.0028, 0.0025, 0.0023, 0.0022, 0.0019, 0.0019, 0.0018, 0.0017], [0.013, 0.0108, 0.0084, 0.0074, 0.007, 0.0054, 0.0054, 0.0051], [0.0449, 0.0121, 0.0107, 0.0094, 0.0069, 0.0054, 0.0044, 0.0037], [0.0218, 0.0132, 0.011, 0.011, 0.0075, 0.0071, 0.0071, 0.0046], [0.0038, 0.003, 0.0028, 0.0025, 0.0023, 0.0019, 0.0017, 0.0016], [0.0459, 0.0204, 0.0191, 0.0191, 0.0169, 0.0116, 0.0109, 0.0102], [0.1222, 0.051, 0.0479, 0.0256, 0.0176, 0.0155, 0.0094, 0.0073], [0.108, 0.0698, 0.0241, 0.02, 0.0176, 0.0114, 0.0078, 0.0042], [0.008, 0.0046, 0.0043, 0.004, 0.003, 0.0023, 0.0022, 0.0019], [0.011, 0.0104, 0.0059, 0.0046, 0.0046, 0.0043, 0.0043, 0.0038], [0.0067, 0.006, 0.0053, 0.0049, 0.0038, 0.0032, 0.0025, 0.0017], [0.0172, 0.0104, 0.0081, 0.0067, 0.0063, 0.0063, 0.0049, 0.0049], [0.0113, 0.0113, 0.01, 0.0094, 0.0083, 0.0057, 0.0044, 0.0039], [0.0158, 0.0158, 0.0139, 0.0109, 0.0079, 0.0066, 0.0062, 0.0058], [0.0209, 0.0162, 0.0119, 0.0082, 0.0077, 0.0064, 0.006, 0.0056], [0.3833, 0.1098, 0.0487, 0.0379, 0.023, 0.0149, 0.008, 0.0075], [0.0403, 0.026, 0.019, 0.0108, 0.0102, 0.0079, 0.007, 0.0048], [0.1191, 0.0321, 0.0283, 0.0194, 0.0183, 0.0134, 0.0118, 0.0104], [0.114, 0.037, 0.0271, 0.0254, 0.0175, 0.0128, 0.0128, 0.0128], [0.4442, 0.0991, 0.0822, 0.0284, 0.0183, 0.0172, 0.0162, 0.0081], [0.2833, 0.1829, 0.1109, 0.0673, 0.0233, 0.0205, 0.0193, 0.017], [0.0193, 0.015, 0.0141, 0.0141, 0.011, 0.0097, 0.0091, 0.0076], [0.5986, 0.0434, 0.0263, 0.0181, 0.016, 0.015, 0.0085, 0.0067], [0.6186, 0.0069, 0.005, 0.0037, 0.003, 0.0025, 0.0021, 0.0018], [0.7041, 0.0094, 0.0047, 0.0037, 0.0037, 0.0035, 0.0029, 0.0025], [0.6712, 0.0096, 0.0084, 0.0051, 0.0051, 0.004, 0.0037, 0.0035], [0.4049, 0.0484, 0.0089, 0.0065, 0.0058, 0.0042, 0.0033, 0.0029], [0.0093, 0.0064, 0.0064, 0.006, 0.005, 0.0041, 0.0041, 0.003], [0.0084, 0.0075, 0.0033, 0.0029, 0.0029, 0.0024, 0.0023, 0.0018], [0.0103, 0.0071, 0.0052, 0.0035, 0.0033, 0.0029, 0.0029, 0.0028], [0.0126, 0.0105, 0.0092, 0.0072, 0.0063, 0.0053, 0.0053, 0.0044], [0.0137, 0.0121, 0.0121, 0.0114, 0.0094, 0.0083, 0.0065, 0.0057], [0.0345, 0.0286, 0.0286, 0.0252, 0.0196, 0.0153, 0.0119, 0.0112], [0.0396, 0.0372, 0.0329, 0.0329, 0.0199, 0.0165, 0.0121, 0.0094], [0.0724, 0.0638, 0.0563, 0.0364, 0.0266, 0.0266, 0.0183, 0.0161], [0.1179, 0.1179, 0.1041, 0.0715, 0.0338, 0.0338, 0.0232, 0.0218], [0.0953, 0.0841, 0.0578, 0.051, 0.0423, 0.0423, 0.0423, 0.0351], [0.0559, 0.0436, 0.0384, 0.0319, 0.0319, 0.0319, 0.0299, 0.0299], [0.0913, 0.0711, 0.0489, 0.0296, 0.0278, 0.0278, 0.0246, 0.0246], [0.1073, 0.0693, 0.0371, 0.0327, 0.0308, 0.0211, 0.0165, 0.0165], [0.2298, 0.09, 0.0311, 0.0274, 0.013, 0.0122, 0.0114, 0.0107], [0.0885, 0.0608, 0.0393, 0.0393, 0.0287, 0.0254, 0.0224, 0.0144], [0.0717, 0.0463, 0.0384, 0.0299, 0.0281, 0.0205, 0.015, 0.0141], [0.0942, 0.0473, 0.0473, 0.0369, 0.0287, 0.0185, 0.0127, 0.0106], [0.0869, 0.0869, 0.0385, 0.0362, 0.0249, 0.022, 0.0206, 0.0182], [0.0608, 0.0536, 0.0392, 0.0392, 0.0306, 0.0287, 0.0185, 0.0154], [0.1121, 0.082, 0.0342, 0.0342, 0.0321, 0.0221, 0.0183, 0.0152], [0.1001, 0.1001, 0.0883, 0.0607, 0.0607, 0.0536, 0.0503, 0.0392], [0.2598, 0.1785, 0.0956, 0.0843, 0.0744, 0.0352, 0.0352, 0.031], [0.3086, 0.078, 0.078, 0.078, 0.0536, 0.0473, 0.0369, 0.0287], [0.4806, 0.0946, 0.065, 0.0348, 0.0225, 0.0198, 0.0198, 0.0145], [0.6143, 0.0734, 0.0347, 0.0287, 0.0174, 0.0174, 0.0144, 0.0099], [0.2178, 0.1029, 0.1029, 0.0707, 0.0624, 0.0429, 0.0334, 0.0295], [0.4292, 0.1789, 0.0958, 0.0581, 0.0399, 0.0189, 0.0177, 0.013], [0.8532, 0.0375, 0.0258, 0.0177, 0.0138, 0.0026, 0.0026, 0.0023], [0.9471, 0.0093, 0.0056, 0.0056, 0.0034, 0.0034, 0.0023, 0.0023], [0.9582, 0.0289, 0.0016, 0.0014, 0.0013, 0.0013, 0.001, 0.001], [0.9345, 0.0597, 0.0026, 0.0005, 0.0003, 0.0002, 0.0002, 0.0002]], "ranks": {}}, {"pos": 576, "top": [["s", "er", "a", "en", "o", "y", "e", " \u2013"], ["s", "er", "en", " \r\n", "a", "ly", "\\\",", "sWith"], ["s", "er", "a", "en", ",", "ing", "t", "y"], ["\uff1a<", " \\<", " \r\n", "\u7684", "\uff0a\uff0a\uff0a\uff0a", "\u3002<", "\uff3f\uff3f", "\\\"><"], [" \\<", "er", "\\<", " \r\n", "s", "en", "\\\",", " @{"], ["er", "sWith", " \r\n", "erweise", "s", "en", "nya", "aient"], ["er", "en", "s", " \r\n", "nya", "\\\",", "ly", "\u03c2"], ["er", "\\\",", " \r\n", "ly", "en", "erweise", "nya", "\u03c2"], ["\\\",", "er", " \r\n", ".\\\"", "\\\"\",", ".*,", ".", "*."], [",", ".", "\\\",", "er", "s", " \r\n", "en", "a"], [".", "\\\",", "er", ",", ".\\\"", "a", "en", "o"], ["er", "\\\",", ".\\\"", "ly", "erweise", "en", "ielle", "__."], ["er", "\\\",", "ly", "en", "erweise", ".\\\"", "a", "ing"], ["er", "en", "\\\",", "ly", "a", ",", "erweise", "o"], ["er", "\\\",", "en", "o", "a", "ly", " \r\n", ","], ["er", "en", "o", "a", "\\\",", "ly", "s", "e"], ["er", "o", "a", "en", ",", "e", "ly", "\\\","], ["\\\",", "er", "o", "en", "a", ".\\\"", "\\\"", "ly"], ["er", "\\\",", "ly", "en", "ielle", "\u03c2", "o", "\\\">"], ["er", "ly", "\\\",", "o", "en", "a", "e", "\u03c2"], ["er", "a", "o", "ly", "e", "en", "i", " \n\n"], ["ly", "er", "\\\",", "ielle", "erweise", ".\\\"", "eios", "\u03c2"], ["ly", "er", "\\\",", "ielle", "&quot", "en", " \r\n", "\\',"], ["er", "ly", "\\\",", "a", "o", "e", ".\\\"", " --"], ["\\\",", "er", " \n\n", " \r\n\r\n", "ly", ".\\\"", " \r\n", "a"], ["\\\",", "er", "ly", ".\\\"", " \r\n\r\n", " \r\n", " \\\"{", " \n\n"], ["\\\",", "er", "ly", " \\\"{", ".\\\"", "ielle", " *__", "__,"], ["\\\",", "er", "_,", " ___", "__,", " \n\n", "ly", " __"], ["\\\",", ".\\\"", "__.", "__,", "_,", "_.", "er", "\\\""], [".\\\"", "\\\",", "__.", "__,", "\\\"", "_.", ".__", "er"], [".\\\"", "\\\",", "__.", ".__", "_.", " __", ".\\", ".["], [".[", ",", " ,", ";", " .", ".", "[[", " and"], [",", ".", ";", " ,", ".[", " .", " and", " ultimately"], [",", " \u2013", ";", "\u2013", ".[", " via", "\u2014but", "."], [",", " via", ".[", "[^", "\u2014but", "\u2014and", "\u2011", "ly"], [",", ".[", ".", ".*", "\u2014but", "\u2014and", "[^", "*,"], [".[", ".", ".*", "\u2014and", ",", "o", "\u2014but", "*."], [".", " internally", " leveraging", " via", ".[", " effectively", ".*", ";"], [" leveraging", " internally", "\u2011", " efficiently", " effectively", " via", " implementations", " using"], [".", " internally", "\u2011", " leveraging", ".*", " \u200b\u200b", ".[", "\u200b"], [".", ".[", ".*", "\u200b", ",", "\u2011", " implementations", " internally"], [" using", ".", " uses", " use", " transfers", " buffers", " implementations", " usage"], [" using", " transfers", " interfaces", " buffers", " usage", " uses", " containers", " implementations"], [" usage", " using", " use", " uses", "\u4f7f\u7528", " containers", " interfaces", " transfers"], [" use", " using", " usage", " uses", " containers", " transfers", " interfaces", "."], [" use", " using", ".", " uses", " usage", " containers", " instead", " Use"], [" use", " uses", " using", ".", " usage", " interfaces", " frameworks", " applications"], [".", " instead", " frameworks", ";", " interfaces", " equivalents", " usage", " applications"], [".", " instead", " frameworks", " rather", " interfaces", " avoids", " workflows", " equivalents"], [" instead", " workflows", " frameworks", " interfaces", " avoids", " equivalents", ".", " APIs"], [" avoids", " instead", " everywhere", " workflows", " equivalents", " interfaces", " APIs", " buffers"], [" everywhere", " instead", " wherever", " avoids", " APIs", ".", " buffers", " interfaces"], [" instead", "instead", " Instead", " everywhere", " \u0432\u043c\u0435\u0441\u0442\u043e", "Instead", " avoids", " wherever"], [" instead", " everywhere", "instead", " Instead", " \u0432\u043c\u0435\u0441\u0442\u043e", " avoids", " wherever", "Instead"], [" everywhere", " instead", " extensively", " wherever", " avoids", " Everywhere", " exclusively", " Instead"], [" everywhere", " extensively", " wherever", " instead", " Everywhere", " \u0432\u0435\u0437\u0434\u0435", " partout", " throughout"], [" everywhere", " extensively", " wherever", " Everywhere", " instead", " throughout", " \u0432\u0435\u0437\u0434\u0435", " partout"], [" everywhere", " extensively", " wherever", " instead", " Everywhere", " throughout", " exclusively", " buffers"], [" everywhere", " wherever", " extensively", " instead", ">", ">.", " throughout", " Everywhere"], [" everywhere", ">", " extensively", " wherever", " instead", ">`", "\u300b", "`"], [">`", "`", ")`", "}`", "`.", ">", "`,", ".`"], [">`", "`", ")`", "}`", "`.", "\"`", ".`", "`,"], [">`", ">", ")`", "}`", "`", "\"`", ">'", ">**"]], "p": [[0.837, 0.1, 0.0253, 0.0153, 0.0064, 0.0053, 0.0024, 0.0011], [0.7095, 0.2033, 0.0214, 0.0167, 0.0051, 0.0045, 0.004, 0.0031], [0.4716, 0.3673, 0.0563, 0.0266, 0.0059, 0.0052, 0.0052, 0.0041], [0.0745, 0.0618, 0.0452, 0.0274, 0.0258, 0.0242, 0.0201, 0.0138], [0.2157, 0.1578, 0.0545, 0.0481, 0.0375, 0.0311, 0.0274, 0.0258], [0.1226, 0.0897, 0.0744, 0.0291, 0.0274, 0.0274, 0.0121, 0.0107], [0.4269, 0.0841, 0.079, 0.0655, 0.0578, 0.0226, 0.0226, 0.0137], [0.1583, 0.1397, 0.0748, 0.04, 0.0353, 0.0243, 0.0157, 0.0157], [0.3162, 0.0313, 0.0276, 0.026, 0.0229, 0.0229, 0.0229, 0.0202], [0.6692, 0.0705, 0.0622, 0.0549, 0.0259, 0.0123, 0.0115, 0.0054], [0.507, 0.1646, 0.1282, 0.0686, 0.0324, 0.0252, 0.0087, 0.0064], [0.2238, 0.1855, 0.0823, 0.0365, 0.0303, 0.0208, 0.0087, 0.0082], [0.6316, 0.0803, 0.0625, 0.0487, 0.0179, 0.0168, 0.0149, 0.007], [0.628, 0.085, 0.0622, 0.0354, 0.0167, 0.013, 0.0108, 0.0066], [0.191, 0.191, 0.1398, 0.1023, 0.0796, 0.0167, 0.0167, 0.0089], [0.3396, 0.1935, 0.133, 0.0973, 0.0279, 0.0192, 0.014, 0.0109], [0.2677, 0.2362, 0.2085, 0.1624, 0.0265, 0.0151, 0.0142, 0.0067], [0.4745, 0.1359, 0.047, 0.0415, 0.0251, 0.0143, 0.0072, 0.0072], [0.3215, 0.1617, 0.0384, 0.0233, 0.0141, 0.0133, 0.0125, 0.011], [0.4049, 0.1399, 0.1235, 0.0293, 0.0243, 0.0167, 0.0089, 0.007], [0.414, 0.1837, 0.1114, 0.0676, 0.0494, 0.0265, 0.0117, 0.011], [0.2304, 0.1794, 0.062, 0.0483, 0.0101, 0.0084, 0.0079, 0.0054], [0.3572, 0.3153, 0.0583, 0.0167, 0.0061, 0.0054, 0.0048, 0.0045], [0.3899, 0.3899, 0.0466, 0.0234, 0.0194, 0.0059, 0.0059, 0.0046], [0.3746, 0.1142, 0.0947, 0.0651, 0.054, 0.0289, 0.0289, 0.0199], [0.1701, 0.1169, 0.0626, 0.0335, 0.023, 0.0216, 0.0149, 0.0123], [0.143, 0.0464, 0.034, 0.0182, 0.011, 0.0081, 0.0067, 0.0052], [0.2385, 0.0642, 0.05, 0.05, 0.0366, 0.0323, 0.0323, 0.0222], [0.2488, 0.1251, 0.0555, 0.0432, 0.0337, 0.0337, 0.0316, 0.0231], [0.2118, 0.1065, 0.0779, 0.0503, 0.0305, 0.0287, 0.0253, 0.0163], [0.1081, 0.0954, 0.0896, 0.0544, 0.0398, 0.0398, 0.0351, 0.0273], [0.2616, 0.2616, 0.075, 0.0455, 0.0377, 0.0312, 0.0259, 0.0148], [0.7116, 0.1237, 0.0515, 0.0202, 0.019, 0.0157, 0.0058, 0.0027], [0.4173, 0.0565, 0.0531, 0.0302, 0.0267, 0.0162, 0.0134, 0.0118], [0.0409, 0.0318, 0.0264, 0.017, 0.017, 0.015, 0.0141, 0.0141], [0.0747, 0.0747, 0.0546, 0.0353, 0.0353, 0.0331, 0.0189, 0.0189], [0.0949, 0.0739, 0.0576, 0.0255, 0.0212, 0.0187, 0.0146, 0.0146], [0.0246, 0.0231, 0.0231, 0.0124, 0.0103, 0.0085, 0.008, 0.0075], [0.0245, 0.023, 0.0191, 0.0131, 0.0109, 0.0109, 0.0085, 0.0075], [0.021, 0.0135, 0.0135, 0.0119, 0.0112, 0.0112, 0.0105, 0.0077], [0.1523, 0.0526, 0.0182, 0.0151, 0.0133, 0.011, 0.011, 0.0104], [0.0716, 0.0492, 0.0264, 0.0233, 0.0205, 0.0193, 0.0181, 0.0181], [0.0697, 0.0423, 0.0291, 0.0273, 0.0257, 0.0241, 0.0226, 0.0213], [0.0634, 0.0559, 0.0464, 0.0409, 0.0361, 0.0219, 0.0206, 0.0171], [0.0795, 0.0659, 0.0619, 0.0547, 0.0376, 0.0243, 0.0243, 0.0177], [0.1279, 0.1061, 0.0776, 0.0533, 0.0442, 0.0209, 0.0135, 0.0127], [0.0915, 0.0669, 0.0629, 0.0629, 0.0591, 0.0204, 0.0149, 0.0149], [0.4558, 0.02, 0.0147, 0.0121, 0.0114, 0.0101, 0.0089, 0.0078], [0.6414, 0.0868, 0.0097, 0.0067, 0.0052, 0.0052, 0.0046, 0.0038], [0.0494, 0.0409, 0.0384, 0.0319, 0.0281, 0.0264, 0.0206, 0.0193], [0.0906, 0.055, 0.0355, 0.0313, 0.0229, 0.0215, 0.0202, 0.0202], [0.1394, 0.0746, 0.0701, 0.0311, 0.0258, 0.0166, 0.0156, 0.0156], [0.8892, 0.0269, 0.0209, 0.0119, 0.0072, 0.0036, 0.0032, 0.0019], [0.6247, 0.179, 0.0242, 0.0201, 0.0084, 0.0079, 0.0061, 0.004], [0.7614, 0.0802, 0.0191, 0.0123, 0.0116, 0.0079, 0.0048, 0.0033], [0.7308, 0.1848, 0.0529, 0.0059, 0.0043, 0.0021, 0.0018, 0.0016], [0.8428, 0.1141, 0.0175, 0.0039, 0.0034, 0.0034, 0.0016, 0.0015], [0.7719, 0.152, 0.0339, 0.0086, 0.0046, 0.0038, 0.0023, 0.0015], [0.6309, 0.1242, 0.0854, 0.0518, 0.0356, 0.0066, 0.0058, 0.0055], [0.3869, 0.3414, 0.0762, 0.0716, 0.0193, 0.008, 0.0075, 0.0063], [0.9832, 0.0124, 0.0013, 0.0012, 0.0008, 0.0003, 0.0003, 0.0002], [0.9866, 0.0059, 0.004, 0.0022, 0.0004, 0.0002, 0.0002, 0.0001], [0.9998, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}, {"pos": 577, "top": [["s", " \u2013", " |\u2013", "es", "**\u2013", " *\u2013", "\u2013", " \u2013**"], ["s", " \u2013**", "**\u2013", " **\u2013", " *\u2013", "\u2013\u2013", "sula", "es"], ["s", " \u2013**", " **\u2013", "**\u2013", " \u2013", " *\u2013", "\u2013\u2013", "es"], ["eszt", "sula", " **:**", "\u52a0\u62ff\u5927", "schrift", "s", "sium", " '**"], ["s", "es", " *@", " **#", " @_", "\u0647", "\u0627\u062a", " **\u20ac"], ["s", "es", "\u0627\u062a", " **\u20ac", "-**", " **\u2013", "\u0647", " **#"], ["s", "es", "\u0627\u062a", "\u0647", " '`", " \"`", ">`", " (`"], ["s", "es", " **\u20ac", "\u0627\u062a", "\u0647", " *@", " '`", " `%"], ["s", "es", " **\u20ac", " *@", "\u0647", "\u0627\u062a", "schild", " **\u2013"], ["s", "es", " **\u2013", "\u0627\u062a", "\u0647", "\\.", "schild", "\u2013\u2013"], ["s", "es", "\u0647", " **\u2013", "\\.", "\u0627\u062a", " \\\"", " \u2013"], ["s", "es", " **\u20ac", "\u0647", " **", " **\u2013", " \\\"", "\u0627\u062a"], ["s", "es", "\u0647", " **\u2013", " **", "\u0627\u062a", " **\u20ac", " \\\""], ["s", "es", "\u0647", " **\u2013", "\u0627\u062a", " \"`", "\u2013\u2013", " \u2013"], ["s", "es", " \u2013", "\u0647", "\u2013\u2013", "\u0627\u062a", "\u2013", " \"`"], ["s", "es", "\u0647", " \u2013", "\u0627\u062a", " \\\"", " \"`", "\u2013\u2013"], ["s", "es", " \u2013", ",", "\u0627\u062a", "\u0647", "\u2013\u2013", "\u2013"], ["s", "es", " **\u2013", "\u0627\u062a", "\u0647", " \\\"", " \"**", "\u2013\u2013"], ["s", "es", "\u0627\u062a", "\u0647", " \\\"", " **\u2013", "schrift", " \"**"], ["s", "es", "\u0627\u062a", "\u0647", "\u2013\u2013", " **\u2013", " \u2013", " \"`"], ["s", " \n\n", "<|endoftext|>", " \u2013", "es", " \u2014", " though", "\u0627\u062a"], ["s", "\u0627\u062a", "schrift", "\u65b0\u52a0\u5761", "\u0647", "\u52c7\u5f80\u76f4\u524d", "es", "\u4e0d\u53ef\u601d\u8bae"], ["s", " ``", "\u0627\u062a", "es", " for", " ultimately", " ''", " largely"], ["s", " as", " ,", " for", " to", " in", " ultimately", " along"], ["s", " \n\n", " as", " ,", " ultimately", " \u2013", " for", " \u2014"], ["s", " **", " as", " ,", " ultimately", " for", " to", " \\\""], ["s", " **", " ,", " ultimately", " for", " as", " and", " \u2014"], [" **", " \n\n", " ,", "s", " _", " \u2014", " and", " \u2013"], [" **", "s", " ,", " \u2014", " ___", " _", " \u2013", " ..."], [" **", "s", " \u2013", " _", " \u2014", " ___", " ,", " __"], [" **", " .", "s", " ,", " and", " __", " _", " ..."], [" .", " and", " **", "s", " ,", " to", " for", " ..."], [" and", " ,", " as", " to", " in", " .", " for", " \u2013"], [" \u2013", " and", " as", " effectively", " under", " to", " \u2014", " using"], ["s", " using", " and", " effectively", " heavily", " aggressively", " systems", " under"], [" \u2013", " \u2014", "s", " and", " rather", " effectively", " .", " to"], ["s", " rather", " to", " instead", " effectively", " using", " internally", " efficiently"], [" to", " rather", " internally", " instead", " using", " efficiently", " effectively", " tools"], [" to", " instead", " rather", " for", " avoiding", " internally", " efficiently", " using"], [" to", " instead", " for", " rather", " efficiently", " internally", " use", " tools"], [" to", " instead", " use", " using", " for", " rather", " efficiently", " avoiding"], [" using", " use", " to", " tools", " efficiently", " instead", " for", " techniques"], [" using", " use", " tools", " techniques", " usage", " to", " utilizing", " uses"], [" use", " using", " usage", " tools", " uses", " utilizing", " techniques", " to"], [" use", " using", " tools", " instead", " usage", " techniques", " uses", " to"], [" use", " using", " instead", " tools", " to", " usage", " avoiding", " techniques"], [" use", " using", " instead", " avoiding", " avoid", " usage", " uses", " tools"], [" avoiding", " avoid", " instead", " avoids", " avoidance", " to", "avoid", " avoided"], [" avoiding", " instead", " avoid", " avoids", " avoidance", "avoid", " avoided", " to"], [" avoiding", " avoids", " avoid", "avoid", " avoidance", " instead", "\u907f\u514d", " Avoid"], [" avoiding", " avoids", " everywhere", "avoid", " avoid", "\u907f\u514d", "Avoid", "\u4ee5\u907f\u514d"], [" everywhere", " avoiding", " Everywhere", " wherever", " avoids", "avoid", " \u0432\u0435\u0437\u0434\u0435", "\u4ee5\u907f\u514d"], [" everywhere", " instead", " avoids", " avoiding", "avoid", "\u907f\u514d", " Avoid", " avoid"], [" everywhere", " avoids", " Everywhere", " avoiding", "avoid", " instead", "\u907f\u514d", "Avoid"], [" everywhere", " Everywhere", " extensively", " exclusively", " avoids", " avoiding", "\u675c\u7edd", "\u907f\u514d"], [" everywhere", " extensively", " Everywhere", " aggressively", " exclusively", " \u0432\u0435\u0437\u0434\u0435", " partout", " heavily"], [" everywhere", " extensively", " Everywhere", " relentlessly", " aggressively", " partout", " \u0432\u0435\u0437\u0434\u0435", " exclusively"], [" everywhere", " extensively", " exclusively", " aggressively", " relentlessly", " Everywhere", "\u675c\u7edd", " wherever"], [" everywhere", " extensively", " aggressively", " relentlessly", " exclusively", " Everywhere", " wherever", " avoiding"], [" everywhere", " extensively", " exclusively", " relentlessly", " Everywhere", " wherever", " aggressively", " heavily"], [" everywhere", " extensively", " exclusively", " relentlessly", " wherever", " heavily", " instead", " aggressively"], [" extensively", " everywhere", " exclusively", " relentlessly", " heavily", " to", " aggressively", " wherever"], [" extensively", " everywhere", " to", " exclusively", " relentlessly", " heavily", " for", " aggressively"]], "p": [[0.9877, 0.011, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0], [0.8483, 0.035, 0.0089, 0.0089, 0.0057, 0.0045, 0.0031, 0.0029], [0.9389, 0.0134, 0.0134, 0.0104, 0.0092, 0.0038, 0.0026, 0.0008], [0.0459, 0.0405, 0.0297, 0.0262, 0.0159, 0.014, 0.0132, 0.0132], [0.9738, 0.0035, 0.0021, 0.002, 0.0012, 0.0011, 0.0011, 0.001], [0.9945, 0.0006, 0.0005, 0.0004, 0.0003, 0.0003, 0.0002, 0.0002], [0.9995, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9972, 0.0002, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001], [0.9989, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9996, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9953, 0.0019, 0.0002, 0.0002, 0.0002, 0.0002, 0.0001, 0.0001], [0.9986, 0.0012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0015, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0004, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9986, 0.0013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.999, 0.0009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.998, 0.0013, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9987, 0.0006, 0.0002, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9975, 0.0005, 0.0004, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9843, 0.0043, 0.0012, 0.0012, 0.0005, 0.0004, 0.0003, 0.0002], [0.844, 0.0057, 0.0042, 0.0025, 0.0017, 0.0014, 0.0013, 0.0011], [0.9624, 0.0017, 0.0012, 0.0012, 0.0008, 0.0006, 0.0006, 0.0005], [0.861, 0.007, 0.0062, 0.0058, 0.0042, 0.0037, 0.0035, 0.0026], [0.9116, 0.0178, 0.0027, 0.0024, 0.0023, 0.0017, 0.0014, 0.0013], [0.7568, 0.0293, 0.007, 0.007, 0.0058, 0.0048, 0.004, 0.0029], [0.4049, 0.1912, 0.0293, 0.0095, 0.0074, 0.007, 0.007, 0.0061], [0.234, 0.1177, 0.1039, 0.0809, 0.0433, 0.0359, 0.0204, 0.017], [0.4596, 0.18, 0.0215, 0.0215, 0.0167, 0.0148, 0.0148, 0.0079], [0.7238, 0.036, 0.0133, 0.0125, 0.0125, 0.0117, 0.0103, 0.0097], [0.5903, 0.0549, 0.0313, 0.0259, 0.0244, 0.0157, 0.013, 0.0108], [0.1136, 0.0942, 0.0571, 0.0504, 0.0504, 0.0418, 0.0369, 0.0325], [0.1183, 0.0813, 0.0384, 0.0384, 0.0318, 0.0299, 0.0299, 0.0248], [0.0423, 0.0309, 0.0188, 0.0137, 0.0137, 0.0137, 0.0129, 0.0129], [0.0339, 0.0193, 0.0181, 0.017, 0.011, 0.0097, 0.0091, 0.0086], [0.0898, 0.0843, 0.0699, 0.0274, 0.0147, 0.0147, 0.0147, 0.0129], [0.0512, 0.033, 0.031, 0.0291, 0.0227, 0.02, 0.0188, 0.0188], [0.0567, 0.0268, 0.0252, 0.0252, 0.0209, 0.0173, 0.0163, 0.0163], [0.1221, 0.0509, 0.035, 0.029, 0.0256, 0.0212, 0.0187, 0.0165], [0.2492, 0.0461, 0.0263, 0.0232, 0.018, 0.018, 0.017, 0.017], [0.2845, 0.0596, 0.041, 0.0362, 0.0319, 0.0206, 0.016, 0.0151], [0.154, 0.1199, 0.0727, 0.0323, 0.0184, 0.0184, 0.0162, 0.0152], [0.1673, 0.1303, 0.051, 0.031, 0.0273, 0.0257, 0.0156, 0.0156], [0.3104, 0.1662, 0.042, 0.0371, 0.0211, 0.0198, 0.0198, 0.0145], [0.3174, 0.1323, 0.043, 0.0335, 0.023, 0.0216, 0.0203, 0.0123], [0.3496, 0.1457, 0.0504, 0.0253, 0.0197, 0.0154, 0.0154, 0.0136], [0.3928, 0.0876, 0.0566, 0.0389, 0.0303, 0.0222, 0.0196, 0.0134], [0.194, 0.1177, 0.1105, 0.0433, 0.0407, 0.0317, 0.0204, 0.017], [0.3069, 0.1861, 0.1279, 0.0879, 0.039, 0.0344, 0.0196, 0.0127], [0.3381, 0.1597, 0.1098, 0.0969, 0.0404, 0.0168, 0.0158, 0.0158], [0.1748, 0.1542, 0.1361, 0.106, 0.0604, 0.047, 0.0285, 0.0268], [0.761, 0.026, 0.0245, 0.023, 0.0191, 0.0102, 0.009, 0.0079], [0.3094, 0.1462, 0.1138, 0.0887, 0.0609, 0.037, 0.0326, 0.0326], [0.87, 0.0159, 0.0159, 0.0141, 0.0097, 0.0085, 0.0075, 0.0066], [0.9736, 0.0084, 0.004, 0.0027, 0.0015, 0.0013, 0.0011, 0.0011], [0.5889, 0.4048, 0.0024, 0.0005, 0.0004, 0.0003, 0.0003, 0.0003], [0.9488, 0.0472, 0.0024, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001], [0.8241, 0.1623, 0.0043, 0.0026, 0.0023, 0.0023, 0.0003, 0.0002], [0.8872, 0.0935, 0.0041, 0.0041, 0.0036, 0.0022, 0.0007, 0.0006], [0.7197, 0.2648, 0.0055, 0.0043, 0.0007, 0.0007, 0.0005, 0.0005], [0.6826, 0.2846, 0.0161, 0.0046, 0.0019, 0.0015, 0.0011, 0.0011], [0.607, 0.3249, 0.0267, 0.0111, 0.0076, 0.0036, 0.003, 0.003], [0.5212, 0.3161, 0.0428, 0.0428, 0.0157, 0.0157, 0.0102, 0.0074]], "ranks": {}}, {"pos": 578, "top": [["\u2013", ",", ".", " \u2013", "\u00a0", ";", "\u2013and", "\u00a0\u00a0"], ["\u2013", "\u2013and", " \u2013", ",", ".\u2013", ".", " \u2013,", "\u200b\u200b"], ["\u2013", ".", ",", " \u2013", "\u2013and", ".\u2013", ";", "\u200b\u200b"], [" milfs", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "~\":\"", "':''", " Blowjob", " ;;^", " Guta"], ["\u2018s", "\u2013and", ".@", ":@", "\u65b0\u52a0\u5761", " '{@", " *\u2013", "&("], ["\u2013and", "\u00a0", "\u2018s", " \u200b\u200b", ".", "!).", ".\u2013", ","], ["\u00a0", "\u2013and", "\u2018", "\u2018s", "\u200b\u200b", "\u2013", ".", " \u2018"], ["\u2018s", "\u2013and", "\u6700\u65b0\u53d1\u5e03", " *\u2013", "!.", ".@", "   \n", "\u2018"], ["\u00a0", "\u2013and", ".", "\u2018s", "\u200b\u200b", "!.", "\u201c.", "\u2018"], ["\u2013and", ",", "\u2013", "\u00a0", "\u2013\u2013", ".\u2013", "-but", "\u5162\u5162\u4e1a\u4e1a"], ["\u00a0", "\u2013", ",", "\u2013and", ".", " \u2013", "\u00a0\u00a0", ";"], ["\u2013and", " savvy", " showcase", "-esque", " leverage", "\ufffd", " effortlessly", "verage"], ["\u2013and", " savvy", " leverage", "-esque", " showcase", " veggies", " effortlessly", " leveraging"], ["\u2013and", " savvy", "-esque", " effortlessly", " showcase", " tweaking", " tweaked", "\u2013"], [" savvy", " effortlessly", "\u2013and", " aggressively", " tweaked", " \u2013", "\u2013", " tweaking"], [" savvy", " effortlessly", " sprawling", " showcasing", " bolster", " incredibly", " myriad", " crafting"], [" bolster", "\u2013and", " effortlessly", "\u2013", " savvy", " showcasing", " sprawling", "\u00a0"], [" effortlessly", " sprawling", " savvy", " tweaking", "\u2013and", " showcasing", " tweaked", "-esque"], [" effortlessly", " sprawling", " burgeoning", " aggressively", " savvy", " myriad", " tweaking", " showcasing"], [" sprawling", " burgeoning", " effortlessly", " myriad", " seemingly", " bolster", " swiftly", " aggressively"], ["<|endoftext|>", " burgeoning", " swiftly", " sprawling", " effortlessly", " myriad", " seemingly", " aggressively"], [" effortlessly", " sprawling", " aggressively", "\u5171\u540c\u6253\u9020", " burgeoning", "\u6253\u9020\u51fa", " looming", " bolster"], [" effortlessly", " sprawling", " aggressively", " ``", " burgeoning", " seemingly", " swiftly", " bolster"], [" sprawling", " ultimately", " aggressively", " seemingly", " swiftly", " effortlessly", " ``", " largely"], [" effortlessly", " sprawling", " seemingly", " swiftly", " aggressively", " burgeoning", " bolster", " myriad"], [" sprawling", " effortlessly", " aggressively", "\u6253\u9020\u51fa", " massively", " efficiently", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " {{--<"], [" sprawling", " aggressively", " effortlessly", " {{--<", " efficiently", " effectively", " bolster", " ``"], [" --", " sprawling", " aggressively", " ultimately", " effectively", " vastly", " seemingly", " effortlessly"], [" sprawling", " aggressively", " effectively", " effortlessly", " ultimately", " efficiently", " massively", " myriad"], [" aggressively", " effectively", " efficiently", " sprawling", " effortlessly", " seamlessly", " massively", " increasingly"], [" ,", " effectively", " aggressively", " ultimately", " heavily", " efficiently", " even", " rapidly"], [" ,", " even", " effectively", " heavily", " over", " ...", " aggressively", " rapidly"], [" ,", " even", " effectively", " over", " ultimately", " rapidly", " aggressively", " heavily"], [" seamlessly", " efficiently", " aggressively", " meticulously", " effectively", " sprawling", " massively", " effortlessly"], [" seamlessly", " meticulously", " efficiently", " aggressively", " sprawling", " effortlessly", " effectively", " relentlessly"], [" efficiently", " seamlessly", " avoid", " aggressively", " sprawling", " effectively", " avoiding", " rapidly"], [" efficiently", " avoid", " avoiding", "avoid", " efficient", " seamlessly", " aggressively", " avoided"], [" efficiently", " avoid", " avoiding", "avoid", " efficient", " avoided", " storage", " Avoid"], [" avoid", " efficiently", " avoiding", " cheap", "avoid", " efficient", " avoided", " storage"], [" efficiently", " avoid", " avoiding", "avoid", " avoided", " cheap", " efficient", " Avoid"], [" avoid", " avoiding", " efficiently", "avoid", " storage", " memory", " cheap", " avoided"], [" storage", " avoiding", " avoid", " memory", " efficiently", "avoid", " allocations", " cheap"], [" storage", " avoiding", " avoid", "avoid", " memory", " efficiently", " buffers", " Avoid"], [" avoid", " avoiding", "avoid", " storage", " Avoid", " efficiently", " avoided", " avoidance"], [" avoid", " avoiding", "avoid", " avoids", " Avoid", " avoided", " avoidance", " storage"], [" avoid", " avoiding", "avoid", " Avoid", " avoids", " avoided", " avoidance", "\u907f\u514d"], [" avoid", " avoiding", "avoid", " avoids", " Avoid", " avoidance", " avoided", "\u907f\u514d"], [" avoid", " avoiding", "avoid", " Avoid", " avoids", "Avoid", "\u907f\u514d", " avoidance"], ["avoid", " avoid", " avoiding", " avoids", " Avoid", "Avoid", "\u907f\u514d", " avoidance"], ["avoid", " avoid", " avoiding", " avoids", "\u907f\u514d", "\u907f\u514d\u4e86", "Avoid", " Avoid"], ["avoid", "\u907f\u514d", " avoid", " avoids", "Avoid", "\u907f\u514d\u4e86", " avoiding", " Avoid"], ["avoid", " avoid", "\u907f\u514d", " avoids", "\u907f\u514d\u4e86", "Avoid", " avoiding", " Avoid"], ["avoid", " avoid", "\u907f\u514d", " avoids", " avoiding", "Avoid", "\u907f\u514d\u4e86", " Avoid"], ["avoid", " avoid", "\u907f\u514d", " avoids", " avoiding", "Avoid", "\u907f\u514d\u4e86", " Avoid"], ["\u907f\u514d", " avoid", "avoid", " avoiding", " avoids", "\u907f\u514d\u4e86", "Avoid", " Avoid"], [" avoid", "\u907f\u514d", "avoid", " avoids", " avoiding", "Avoid", " Avoid", "\u907f\u514d\u4e86"], [" avoid", "avoid", "\u907f\u514d", " avoids", " avoiding", "Avoid", " Avoid", "\u907f\u514d\u4e86"], [" avoid", "avoid", "\u907f\u514d", " avoids", " avoiding", "Avoid", " Avoid", " eliminate"], [" avoid", "avoid", "\u907f\u514d", " avoids", " avoiding", "Avoid", " Avoid", " avoided"], [" avoid", "avoid", "\u907f\u514d", " avoiding", " avoids", " Avoid", "Avoid", " avoided"], [" avoid", " avoiding", "avoid", " avoids", "\u907f\u514d", " Avoid", "Avoid", " avoided"], [" avoid", " stack", "-stack", " minimize", " slice", " heap", " manipulate", " eliminate"], [" avoid", " stack", " minimize", " manipulate", " eliminate", " operate", " slice", " Avoid"]], "p": [[0.3878, 0.302, 0.1832, 0.0865, 0.0318, 0.0043, 0.0013, 0.0006], [0.5747, 0.1282, 0.1205, 0.0093, 0.0056, 0.005, 0.0047, 0.0047], [0.577, 0.2405, 0.1459, 0.0174, 0.0106, 0.0044, 0.0013, 0.0004], [0.012, 0.0064, 0.0053, 0.003, 0.003, 0.003, 0.0029, 0.0016], [0.0113, 0.0073, 0.0041, 0.0027, 0.0018, 0.0016, 0.0014, 0.0014], [0.1199, 0.0389, 0.0366, 0.0135, 0.0098, 0.0056, 0.0053, 0.0053], [0.2962, 0.0961, 0.0661, 0.0515, 0.0354, 0.0139, 0.0122, 0.007], [0.1523, 0.1523, 0.0362, 0.0052, 0.0041, 0.0038, 0.0034, 0.0034], [0.2787, 0.2039, 0.1162, 0.0662, 0.0259, 0.0244, 0.0108, 0.0102], [0.1954, 0.056, 0.0436, 0.0385, 0.0023, 0.0022, 0.0012, 0.001], [0.726, 0.1113, 0.0675, 0.0494, 0.0091, 0.0041, 0.0011, 0.0009], [0.027, 0.0224, 0.0073, 0.0057, 0.005, 0.0047, 0.0044, 0.0037], [0.0453, 0.0331, 0.0138, 0.013, 0.0101, 0.0084, 0.0074, 0.0061], [0.1114, 0.0635, 0.0319, 0.0142, 0.0125, 0.0104, 0.0097, 0.0097], [0.0481, 0.0481, 0.0257, 0.02, 0.0138, 0.0107, 0.0089, 0.0084], [0.1046, 0.0361, 0.0361, 0.0248, 0.0248, 0.0193, 0.0193, 0.0182], [0.0363, 0.0341, 0.0265, 0.0249, 0.0249, 0.0171, 0.0161, 0.0151], [0.0322, 0.0267, 0.0221, 0.0184, 0.0184, 0.0111, 0.0092, 0.0092], [0.0324, 0.0252, 0.0119, 0.0112, 0.0105, 0.0077, 0.006, 0.0056], [0.0183, 0.0152, 0.0143, 0.0098, 0.0072, 0.0067, 0.0067, 0.0063], [0.1097, 0.0109, 0.0079, 0.0066, 0.0058, 0.0058, 0.0048, 0.0043], [0.0079, 0.0079, 0.0042, 0.0027, 0.0027, 0.0024, 0.0017, 0.0017], [0.0177, 0.0138, 0.013, 0.0084, 0.0054, 0.0051, 0.0045, 0.004], [0.0081, 0.0072, 0.0072, 0.0059, 0.0059, 0.0056, 0.0049, 0.0043], [0.0118, 0.0104, 0.0092, 0.0086, 0.0063, 0.0056, 0.0056, 0.0052], [0.0105, 0.0082, 0.0056, 0.0041, 0.0036, 0.0034, 0.0032, 0.0028], [0.0133, 0.0091, 0.0067, 0.0059, 0.0059, 0.0046, 0.0043, 0.0043], [0.0142, 0.0104, 0.0098, 0.0092, 0.0092, 0.0081, 0.0081, 0.0076], [0.0186, 0.0164, 0.0164, 0.012, 0.0106, 0.0093, 0.0088, 0.0073], [0.0239, 0.0239, 0.0175, 0.012, 0.0106, 0.0093, 0.0093, 0.0088], [0.0335, 0.0191, 0.0139, 0.0123, 0.0116, 0.0109, 0.0102, 0.0085], [0.0367, 0.0209, 0.0184, 0.0144, 0.0112, 0.0105, 0.0099, 0.0093], [0.0213, 0.0177, 0.0121, 0.0121, 0.0107, 0.0095, 0.0089, 0.0074], [0.0304, 0.0286, 0.0185, 0.0163, 0.0163, 0.0105, 0.0087, 0.0082], [0.0318, 0.0233, 0.0205, 0.0205, 0.0133, 0.011, 0.0103, 0.0071], [0.079, 0.0256, 0.0188, 0.0176, 0.0137, 0.0129, 0.0121, 0.0114], [0.1452, 0.0881, 0.0471, 0.0367, 0.0185, 0.0153, 0.0144, 0.0127], [0.1164, 0.1094, 0.0485, 0.0215, 0.0148, 0.0123, 0.0115, 0.0115], [0.1062, 0.0997, 0.0644, 0.0209, 0.0196, 0.0163, 0.0153, 0.0153], [0.132, 0.132, 0.0907, 0.0403, 0.0202, 0.0158, 0.0148, 0.0131], [0.164, 0.1448, 0.0533, 0.0533, 0.039, 0.0285, 0.0252, 0.0209], [0.1306, 0.0843, 0.0699, 0.0351, 0.0351, 0.0274, 0.0242, 0.0227], [0.1372, 0.1211, 0.069, 0.0288, 0.0186, 0.0174, 0.0174, 0.0164], [0.1374, 0.1291, 0.0691, 0.061, 0.0347, 0.0211, 0.0198, 0.0186], [0.2657, 0.2345, 0.0761, 0.0462, 0.0407, 0.0298, 0.0247, 0.0192], [0.3385, 0.2987, 0.097, 0.0666, 0.0458, 0.0245, 0.0245, 0.0123], [0.3475, 0.3067, 0.1449, 0.047, 0.047, 0.0285, 0.0222, 0.0196], [0.3002, 0.265, 0.2064, 0.0591, 0.0522, 0.046, 0.0217, 0.0217], [0.3062, 0.2702, 0.2104, 0.0683, 0.0323, 0.0323, 0.0285, 0.0173], [0.4913, 0.1408, 0.1096, 0.0753, 0.0457, 0.0356, 0.0356, 0.0245], [0.4954, 0.0976, 0.0861, 0.076, 0.076, 0.0592, 0.0461, 0.015], [0.4813, 0.1217, 0.1074, 0.0738, 0.0651, 0.0575, 0.0395, 0.0128], [0.3425, 0.2077, 0.1618, 0.0981, 0.0674, 0.0464, 0.0409, 0.0133], [0.2759, 0.2149, 0.2149, 0.115, 0.0698, 0.0479, 0.0291, 0.0121], [0.2969, 0.2313, 0.2313, 0.0851, 0.0751, 0.0276, 0.0244, 0.0102], [0.3646, 0.2506, 0.1952, 0.0634, 0.0634, 0.0233, 0.0125, 0.011], [0.4943, 0.1819, 0.1605, 0.0669, 0.0316, 0.0246, 0.0132, 0.0091], [0.649, 0.1278, 0.0775, 0.047, 0.0222, 0.0196, 0.0135, 0.0135], [0.6777, 0.1334, 0.0917, 0.0232, 0.0232, 0.0181, 0.0181, 0.0075], [0.9361, 0.0171, 0.0134, 0.0092, 0.0081, 0.0071, 0.003, 0.0026], [0.959, 0.0065, 0.0065, 0.0065, 0.0057, 0.0057, 0.0019, 0.0013], [0.5096, 0.4497, 0.0082, 0.0039, 0.0034, 0.003, 0.002, 0.0018], [0.9824, 0.004, 0.0028, 0.0023, 0.0018, 0.0014, 0.0008, 0.0003]], "ranks": {}}, {"pos": 579, "top": [[".", ",", "\u2013", "\u00a0", ";", "?", ":", "\u00a0\u00a0"], [" \u200b\u200b", ".", ",", "emente", "\u2013", " Stre", "\u2013and", " Reach"], [",", ".", "\u2013", ";", ".\u2013", "?", "\u2013and", " \u200b\u200b"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", " milfs", " pornstar", "----</", " Guta", "----------</"], [".", " \u200b\u200b", ",", ".@", "!", "\u82b7", "@", ".-"], [" \u200b\u200b", ".", ",", "\u82b7", "!", ".pro", ".V", "\ud83d\ude42"], [".", " \u200b\u200b", "\u00a0", ",", "!", ".\u2019", ".\u201d", ".?"], [".", " \u200b\u200b", ",", "\u00a0", "!", "\u0441\u044f", "escaping", "!."], [".", ",", " \u200b\u200b", "\u00a0", ".\u201d", "!", ".\u201c", ":"], [",", ".", "\u00a0", " \u200b\u200b", ";", ":", ".[", "\u2013"], [",", ".", "\u00a0", " \u200b\u200b", ".[", ";", "\u2013", "!"], [" \u200b\u200b", ",", ".", " avoiding", " tackling", "avoid", " Avoid", " avoid"], [" \u200b\u200b", ".", ",", " tackling", " avoiding", " avoid", "avoid", " critical"], [",", " tackling", " avoiding", " \u200b\u200b", ".", " avoid", " Avoid", "avoid"], [" tackling", " critical", " avoiding", ",", " getting", " engaging", " avoid", " challenging"], [" getting", " critical", " tackling", " going", " spending", " avoiding", "getting", " winning"], [",", " getting", "\u00a0", " tackling", "getting", " \u201c", " critical", " avoiding"], [" getting", " tackling", " tweaking", "getting", " avoiding", " quirky", " critical", " lurking"], [" tackling", " tweaking", " flashy", " avoiding", " quirky", " critical", " looming", " collapsing"], [" tackling", "\u54ea\u6015\u662f", " sprawling", " looming", " tweaking", " myriad", " lingering", " critical"], [" tackling", " lingering", " myriad", "avoid", " tweaking", " avoiding", " sprawling", " looming"], ["\u54ea\u6015\u662f", " lingering", " avoiding", "\u751a\u81f3\u4f1a", " tackling", " looming", " flashy", " distractions"], [" avoiding", " looming", " lingering", " tackling", " critical", " sprawling", " collapsing", " myriad"], [" even", " much", " critical", " avoiding", " spending", " losing", " collapsing", " myriad"], [" avoiding", " tackling", " lingering", " myriad", " even", " looming", " losing", " collapsing"], [" avoiding", " tackling", "\u54ea\u6015\u662f", " collapsing", " spending", " lingering", " massively", " sprawling"], [" collapsing", " spending", " avoiding", " sprawling", " tackling", " accumulating", " lingering", " massively"], [" even", " myriad", " heavily", " much", " shifting", " going", " sprawling", " massive"], [" myriad", " collapsing", " massive", " even", " heavily", " accumulating", " massively", " sprawling"], [" avoid", " avoiding", " cheap", " collapsing", " massive", " accumulating", " critical", " avoidance"], [" avoid", " massive", " even", " critical", " avoiding", " cheap", " huge", " increasingly"], [" even", " critical", " avoid", " massive", " huge", " avoiding", " countless", " losing"], [" even", " critical", " massive", " massively", " accumulating", " huge", " countless", " avoiding"], [" massively", " countless", " myriad", " accumulating", " ubiquitous", " critical", " collapsing", " massive"], ["avoid", " myriad", " countless", " costly", " shrinking", " avoiding", "\u52a8\u8f84", " accumulating"], [" accumulating", " costly", " countless", " inevitable", " sprawling", "avoid", " messy", " shrinking"], [" costly", " fragmentation", " accumulating", " expensive", " messy", " clutter", " inevitable", " sprawling"], [" costly", " fragmentation", " allocations", " messy", " expensive", " accumulating", " fragmented", " clutter"], [" garbage", " costly", " fragmentation", " expensive", " allocations", " trash", " scav", " cheap"], [" garbage", " fragmentation", " trash", "\u5783\u573e", " scav", "_HEAP", " cleanup", " memory"], [" fragmentation", " allocations", " memory", " garbage", "_HEAP", " trash", "\u5783\u573e", "malloc"], [" allocations", " fragmentation", " garbage", " memory", "_HEAP", " allocating", "malloc", " costly"], [" allocations", " fragmentation", " garbage", " costly", "_HEAP", " allocating", " allocation", " trash"], [" allocations", " fragmentation", " triggering", " garbage", " allocation", "_HEAP", " triggers", " costly"], [" fragmentation", " allocations", " triggering", " triggers", " garbage", " costly", " clutter", " avoidance"], [" fragmentation", " allocations", " triggering", " triggers", " garbage", " costly", " avoidance", " clutter"], [" fragmentation", " triggers", " triggering", " allocations", " avoidance", " garbage", " clutter", " costly"], [" triggering", " allocations", " fragmentation", " triggers", " costly", "_HEAP", " clutter", " avoidance"], [" fragmentation", " triggering", " allocations", " triggers", " costly", "_malloc", "_HEAP", "malloc"], [" fragmentation", "\u4efb\u4f55\u5f62\u5f0f\u7684", " costly", "_malloc", "_HEAP", " triggering", " triggers", "\u4efb\u4f55\u8d39\u7528"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " fragmentation", "_HEAP", "/**/*.", "_malloc", "\u4efb\u4f55\u8d39\u7528", "\u306f\u4e00\u5207", " triggering"], [" fragmentation", "\u4efb\u4f55\u5f62\u5f0f\u7684", "_malloc", "_HEAP", " allocations", " overhead", " costly", "malloc"], ["\u4efb\u4f55\u5f62\u5f0f\u7684", " allocations", "\u4efb\u4f55", " overhead", "_HEAP", " fragmentation", "_malloc", "\u7684\u4efb\u4f55"], [" allocations", "\u4efb\u4f55\u5f62\u5f0f\u7684", " overhead", "_malloc", "_HEAP", " fragmentation", " buffering", " runtime"], [" allocations", " allocating", "alloc", " allocation", " alloc", "Alloc", "allocation", "Allocation"], [" allocations", " allocating", "alloc", " alloc", " allocation", " garbage", " malloc", " heap"], [" allocations", " allocating", "alloc", " garbage", " GC", " allocation", " alloc", "Alloc"], [" allocations", " allocating", "alloc", " allocation", " alloc", " GC", "Alloc", " Alloc"], [" heap", " allocations", " Heap", "Heap", "\u5806", " GC", " allocating", "heap"], [" heap", " Heap", "Heap", "\u5806", "heap", " allocations", " GC", "(heap"], [" heap", " Heap", "Heap", "(heap", "\u5806", "heap", " boxing", " GC"], [" heap", " boxing", " boxed", " Heap", " box", "Heap", " Boxing", " allocations"], [" heap", " boxing", " boxed", " GC", " allocations", " managed", " allocating", " box"]], "p": [[0.5269, 0.465, 0.0024, 0.0017, 0.0014, 0.0007, 0.0003, 0.0002], [0.0226, 0.0114, 0.0083, 0.0033, 0.0033, 0.0019, 0.0017, 0.0017], [0.5734, 0.3478, 0.0344, 0.0044, 0.0032, 0.0023, 0.0018, 0.0017], [0.0152, 0.0056, 0.0049, 0.0041, 0.0025, 0.0016, 0.0014, 0.0013], [0.1053, 0.0529, 0.0302, 0.0283, 0.0041, 0.0034, 0.0032, 0.0023], [0.4429, 0.0387, 0.0092, 0.003, 0.0019, 0.0018, 0.0015, 0.0013], [0.3955, 0.1549, 0.0305, 0.0238, 0.0163, 0.0119, 0.0072, 0.0056], [0.4295, 0.216, 0.0482, 0.0069, 0.0058, 0.0048, 0.0045, 0.004], [0.8304, 0.0682, 0.0682, 0.0172, 0.0021, 0.0015, 0.0012, 0.0008], [0.7668, 0.1176, 0.018, 0.0046, 0.002, 0.0016, 0.0012, 0.001], [0.4659, 0.4112, 0.0862, 0.0049, 0.0023, 0.002, 0.0012, 0.001], [0.0496, 0.0104, 0.0104, 0.0067, 0.0059, 0.0041, 0.0032, 0.0032], [0.0273, 0.0137, 0.0107, 0.0089, 0.0089, 0.0045, 0.0042, 0.0042], [0.0158, 0.0102, 0.008, 0.0075, 0.0075, 0.004, 0.0038, 0.0035], [0.0123, 0.007, 0.0051, 0.0045, 0.0031, 0.0031, 0.0029, 0.0026], [0.0121, 0.0061, 0.0057, 0.0047, 0.0042, 0.0037, 0.0029, 0.0029], [0.014, 0.0116, 0.009, 0.0051, 0.0048, 0.0048, 0.0048, 0.0043], [0.0073, 0.0065, 0.0065, 0.0057, 0.0054, 0.0037, 0.0033, 0.0031], [0.0129, 0.0057, 0.0045, 0.0045, 0.0035, 0.0033, 0.0031, 0.0024], [0.0052, 0.0049, 0.0028, 0.0028, 0.0026, 0.0025, 0.0025, 0.0023], [0.004, 0.0037, 0.0033, 0.0027, 0.0026, 0.0026, 0.0024, 0.0021], [0.0036, 0.0026, 0.0022, 0.0021, 0.0017, 0.0017, 0.0016, 0.0016], [0.0052, 0.0046, 0.0046, 0.0043, 0.0033, 0.0031, 0.0031, 0.0031], [0.0086, 0.0046, 0.0043, 0.0041, 0.0038, 0.0038, 0.0036, 0.0036], [0.0064, 0.0056, 0.0053, 0.005, 0.0047, 0.0041, 0.0036, 0.0034], [0.0063, 0.0059, 0.0052, 0.0043, 0.0043, 0.0043, 0.004, 0.0038], [0.0066, 0.0062, 0.0062, 0.0049, 0.0049, 0.0049, 0.0049, 0.0038], [0.0097, 0.0086, 0.008, 0.0055, 0.0043, 0.004, 0.0038, 0.0036], [0.0132, 0.008, 0.008, 0.0071, 0.0066, 0.0062, 0.0058, 0.0058], [0.0165, 0.0137, 0.0121, 0.0113, 0.0106, 0.0094, 0.0094, 0.0078], [0.0171, 0.0141, 0.0125, 0.0125, 0.0125, 0.0076, 0.0071, 0.0071], [0.0331, 0.0242, 0.0138, 0.013, 0.0089, 0.0079, 0.0074, 0.0069], [0.0314, 0.0216, 0.0158, 0.0096, 0.0085, 0.0085, 0.0085, 0.0079], [0.0183, 0.0172, 0.0126, 0.0118, 0.0105, 0.0098, 0.0092, 0.0092], [0.0139, 0.0095, 0.009, 0.009, 0.0074, 0.0074, 0.0074, 0.0074], [0.016, 0.015, 0.0097, 0.0091, 0.0091, 0.0085, 0.0085, 0.008], [0.0399, 0.0188, 0.0156, 0.0147, 0.0107, 0.0095, 0.0089, 0.0079], [0.043, 0.043, 0.0149, 0.0131, 0.0116, 0.0102, 0.0102, 0.0085], [0.1302, 0.0789, 0.029, 0.0273, 0.0226, 0.0212, 0.0146, 0.0114], [0.1796, 0.0661, 0.0515, 0.0312, 0.0312, 0.0293, 0.0259, 0.0243], [0.0752, 0.0707, 0.0664, 0.0664, 0.0403, 0.0244, 0.019, 0.019], [0.1324, 0.1244, 0.0855, 0.0356, 0.0295, 0.0278, 0.0203, 0.0203], [0.1987, 0.1867, 0.0731, 0.0269, 0.0237, 0.0185, 0.0174, 0.0112], [0.2262, 0.1762, 0.0347, 0.0326, 0.0174, 0.0164, 0.0164, 0.0154], [0.1607, 0.1332, 0.0808, 0.0406, 0.0406, 0.0262, 0.0124, 0.0124], [0.0999, 0.0828, 0.0645, 0.0345, 0.0324, 0.0253, 0.0174, 0.0119], [0.0605, 0.0534, 0.0471, 0.0471, 0.0286, 0.0223, 0.0173, 0.0153], [0.0685, 0.0605, 0.0568, 0.0568, 0.0268, 0.0173, 0.0112, 0.0099], [0.0568, 0.0367, 0.0324, 0.0304, 0.0222, 0.0163, 0.0135, 0.0064], [0.0506, 0.0239, 0.0154, 0.012, 0.0113, 0.0094, 0.0094, 0.0083], [0.0351, 0.0351, 0.0121, 0.0121, 0.0089, 0.0074, 0.0061, 0.0057], [0.0623, 0.0378, 0.0276, 0.0157, 0.0148, 0.0115, 0.0079, 0.007], [0.2335, 0.0521, 0.0336, 0.0297, 0.0262, 0.0217, 0.018, 0.0159], [0.1443, 0.0468, 0.044, 0.0365, 0.0322, 0.0302, 0.0183, 0.0105], [0.8904, 0.0502, 0.0345, 0.0099, 0.0053, 0.0017, 0.0012, 0.0009], [0.8392, 0.0608, 0.0608, 0.0082, 0.0057, 0.0057, 0.0027, 0.0021], [0.7636, 0.1171, 0.0553, 0.0203, 0.014, 0.0075, 0.0058, 0.0021], [0.8488, 0.0789, 0.0479, 0.0057, 0.0045, 0.0045, 0.0019, 0.0013], [0.8875, 0.0442, 0.0209, 0.0209, 0.006, 0.006, 0.0025, 0.0025], [0.976, 0.0075, 0.0066, 0.0031, 0.0011, 0.0011, 0.0007, 0.0007], [0.9844, 0.0066, 0.004, 0.0007, 0.0006, 0.0006, 0.0005, 0.0005], [0.9576, 0.0225, 0.0065, 0.0035, 0.0021, 0.0011, 0.001, 0.0008], [0.8688, 0.0713, 0.0159, 0.014, 0.0085, 0.0033, 0.0031, 0.0028]], "ranks": {}}, {"pos": 580, "top": [[" ", ".", ",", "-", "\u00a0\u00a0", "\"", " McCoy", " \u2022"], [" ~>", "ishly", " *@", "iness", " \u00ae", " \u25ce", " ='", " '@"], ["..\"", "..'", "..", "@\"", " ='", ".@", "*@", " '@"], [" ``(", " ``", " Shemale", " Blowjob", " Ejem", " Geile", " Palav", "ieras"], ["*@", " (@", " *@", " @(", " @_", "ishly", ":@", " '@"], [" \u00ebs", "loom", "ishly", " Harbor", " Pergun", "emente", " Ejem", "rogram"], [" -*-", " \u25b7", "sters", " \u2666", "ster", " $\\", "loom", " \u25ce"], ["ster", "ishly", " ~>", "sters", "ement", " \u25b7", " *@", " ``("], ["ster", "ement", ".`", "ish", "ishly", " ..", " #%", " *@"], ["ish", "ster", "ishly", " #$", " $\\", "loom", "iness", " #@"], ["ish", " @", "ster", " $\\", "ers", " #@", " #$", "-&"], ["ish", "ster", "ishly", "sters", "ement", " Pergun", " Fortal", " ``("], ["ster", "ish", "ishly", "ly", "ers", "ement", "ian", "sters"], ["ish", "ishly", "ly", "ers", "ster", "ian", "mate", "ically"], ["ish", "ishly", "ed", "ers", "\u00ac", "ly", "ster", "ah"], [" myriad", "ish", "ed", "ishly", "ers", "o", " requisite", "ly"], ["ed", "o", "ish", " myriad", "ers", "ishly", "r", "n"], ["ish", "ishly", "ed", "o", "ers", "ster", "ly", "lo"], ["ish", "ishly", "ed", " myriad", "-&", "o", " \u00ebs", "ly"], ["ishly", "ish", " myriad", "ed", " $\\", "-&", "ement", "ly"], ["ed", "ish", "ishly", " myriad", "<|endoftext|>", " \u00ebs", "\u5792", "ah"], ["ishly", "ish", "ized", " \u00ebs", "ers", "ed", "(heap", "ertz"], ["ed", "ish", "ishly", " ``", "ized", "ers", "ster", " \u00ebs"], ["ed", " --", "ish", " and", " \u00ae", " ever", " ,", " un"], ["ed", "ish", " --", " emerg", "ishly", " HEAP", "ement", "ers"], ["ed", " HEAP", "ish", " heap", "ishly", "_HEAP", "ers", "ized"], ["ed", " heap", " ``", " storage", "ish", " and", " economy", " __"], [" ,", " and", " ^", " --", " @", " _", " un", "ed"], [" @", "ed", " ^", " heap", " and", " emerg", " storage", " ~"], [" __", " heap", "ed", " storage", " stash", "less", " ..", " .**"], [" .", " and", " dead", " storage", " heap", " ,", "ed", " mort"], [" .", " dead", " and", " .**", " ..", "ed", " mort", " storage"], [" .", " dead", " mort", "less", " heap", " .**", " storage", " memory"], [" HEAP", "stash", " stash", " heap", " exhaustion", "_HEAP", " emerg", "less"], [" stash", "stash", " HEAP", " exhaustion", " heap", "_HEAP", "less", "shit"], ["stash", " HEAP", " stash", " heap", "_HEAP", " .**", " exhaustion", "less"], [" heap", "_HEAP", " HEAP", "stash", " exhaustion", " stash", " allocations", " .**"], ["_HEAP", " heap", " HEAP", "stash", " allocations", " stash", " Heap", " exhaustion"], ["_HEAP", " heap", " garbage", " allocations", " HEAP", " exhaustion", " Heap", " fragmentation"], ["_HEAP", " heap", " allocations", " memory", " HEAP", " Heap", "malloc", "\u5185\u5b58"], ["_HEAP", " heap", " allocations", " memory", "malloc", " allocator", "\u5185\u5b58", " HEAP"], [" allocations", "_HEAP", " heap", " memory", "malloc", " allocator", " allocation", " fragmentation"], [" allocations", "_HEAP", " heap", " fragmentation", " allocation", " allocator", "malloc", " memory"], [" allocations", "_HEAP", " fragmentation", " heap", " allocation", " allocator", " memory", "malloc"], [" allocations", " fragmentation", "_HEAP", " allocation", " heap", " allocator", "malloc", " clutter"], [" allocations", " fragmentation", " allocation", "_HEAP", " clutter", " heap", "malloc", " crashes"], [" allocations", " fragmentation", "_HEAP", " allocation", " clutter", " accumulation", "malloc", " crashes"], [" allocations", " fragmentation", "_HEAP", " allocation", " crashes", " triggers", " clutter", " heap"], [" allocations", " fragmentation", "_HEAP", "malloc", " crashes", " births", " allocation", "_MALLOC"], [" allocations", " fragmentation", "_HEAP", "-trigger", " dumps", " interruptions", " triggers", " allocation"], [" fragmentation", "_HEAP", " allocations", " clutter", "malloc", " Teixe", " dumps", "_malloc"], [" allocations", " fragmentation", " allocation", "alloc", "_HEAP", "\u5f00\u9500", "malloc", " spills"], [" allocations", " fragmentation", " allocation", "alloc", "_HEAP", "malloc", "Allocator", "\u5f00\u9500"], [" allocations", " fragmentation", " allocation", "alloc", "(heap", "_HEAP", "malloc", " spills"], [" allocations", " allocation", "alloc", "Alloc", " alloc", "allocation", "Allocation", " Allocation"], [" allocations", " allocation", "alloc", "Alloc", " alloc", "allocation", " Allocation", "Allocation"], [" allocations", " allocation", "alloc", "Alloc", " alloc", "Allocation", " Allocation", "allocation"], [" allocations", " allocation", "alloc", "Alloc", " alloc", "Allocation", " Allocation", " Alloc"], [" allocations", " allocation", "alloc", "Alloc", " alloc", "Allocation", " Allocation", "allocation"], [" allocations", " allocation", "alloc", "Alloc", " alloc", " Allocation", " Alloc", " allocated"], [" allocations", " allocation", "alloc", " pressure", " alloc", "Alloc", " churn", " fragmentation"], [" allocations", " allocation", " pressure", " churn", " alloc", "alloc", " fragmentation", "Alloc"], [" allocations", " allocation", " pressure", " churn", " alloc", " fragmentation", "alloc", "Alloc"]], "p": [[0.0968, 0.0708, 0.0295, 0.0261, 0.023, 0.0131, 0.0062, 0.0062], [0.0359, 0.0218, 0.015, 0.0117, 0.011, 0.0103, 0.0075, 0.0062], [0.1181, 0.0492, 0.0434, 0.015, 0.0132, 0.0117, 0.0086, 0.008], [0.0437, 0.0076, 0.0071, 0.0056, 0.0056, 0.0046, 0.0043, 0.0043], [0.0164, 0.0136, 0.0113, 0.01, 0.0083, 0.0073, 0.006, 0.0047], [0.0104, 0.0063, 0.0059, 0.0041, 0.0038, 0.0038, 0.0026, 0.0022], [0.0186, 0.0128, 0.0094, 0.0088, 0.0088, 0.0083, 0.0083, 0.0083], [0.0225, 0.0155, 0.0128, 0.0113, 0.0106, 0.0094, 0.0088, 0.0083], [0.026, 0.0139, 0.0131, 0.0131, 0.0123, 0.0108, 0.009, 0.009], [0.0226, 0.02, 0.0166, 0.0107, 0.0094, 0.0094, 0.0078, 0.0065], [0.0549, 0.0377, 0.0294, 0.0244, 0.0229, 0.0148, 0.0139, 0.0108], [0.0268, 0.0196, 0.0184, 0.0093, 0.0068, 0.0053, 0.0047, 0.0041], [0.0439, 0.0364, 0.0183, 0.0183, 0.0172, 0.0111, 0.0111, 0.0104], [0.051, 0.0212, 0.0212, 0.0187, 0.0187, 0.0121, 0.01, 0.0069], [0.031, 0.0166, 0.0129, 0.0094, 0.0089, 0.0074, 0.0057, 0.0045], [0.0167, 0.0167, 0.0157, 0.0101, 0.0058, 0.0051, 0.0051, 0.0051], [0.0446, 0.0446, 0.0306, 0.0186, 0.0128, 0.0106, 0.0073, 0.0068], [0.0614, 0.0372, 0.0308, 0.0176, 0.0129, 0.01, 0.0078, 0.0057], [0.038, 0.0357, 0.0123, 0.0075, 0.007, 0.0055, 0.0048, 0.0043], [0.029, 0.024, 0.0078, 0.0065, 0.0047, 0.0039, 0.0032, 0.0029], [0.014, 0.0096, 0.0075, 0.0052, 0.0045, 0.0026, 0.0024, 0.0024], [0.0108, 0.0066, 0.004, 0.004, 0.0035, 0.0033, 0.0031, 0.0029], [0.036, 0.0103, 0.0086, 0.0075, 0.0055, 0.0055, 0.0043, 0.0038], [0.0423, 0.0166, 0.0061, 0.0057, 0.0045, 0.0035, 0.0033, 0.0033], [0.0389, 0.0082, 0.0077, 0.0064, 0.0056, 0.003, 0.0028, 0.0028], [0.0303, 0.0099, 0.0093, 0.0064, 0.0064, 0.005, 0.0041, 0.0041], [0.017, 0.0091, 0.0091, 0.0091, 0.0067, 0.0063, 0.0055, 0.0046], [0.0424, 0.0351, 0.0156, 0.0156, 0.0138, 0.0083, 0.0074, 0.0074], [0.014, 0.0132, 0.0116, 0.009, 0.0075, 0.0066, 0.0062, 0.0062], [0.0231, 0.0191, 0.0131, 0.0123, 0.009, 0.007, 0.0066, 0.0062], [0.0408, 0.0181, 0.0091, 0.0085, 0.0063, 0.0063, 0.0059, 0.0055], [0.0592, 0.0109, 0.0109, 0.0103, 0.0085, 0.0066, 0.0059, 0.0059], [0.0134, 0.0126, 0.0081, 0.0076, 0.0067, 0.0063, 0.0063, 0.0046], [0.0105, 0.0093, 0.0093, 0.0077, 0.006, 0.0036, 0.0036, 0.0032], [0.018, 0.0159, 0.0124, 0.0075, 0.0059, 0.0055, 0.004, 0.0038], [0.0212, 0.0187, 0.0137, 0.0121, 0.0088, 0.0083, 0.0057, 0.0047], [0.018, 0.0169, 0.0149, 0.014, 0.0116, 0.0096, 0.0066, 0.0055], [0.0327, 0.0288, 0.0164, 0.0154, 0.012, 0.0113, 0.0088, 0.0083], [0.0811, 0.0672, 0.036, 0.0218, 0.0181, 0.016, 0.015, 0.008], [0.1628, 0.1268, 0.0562, 0.0363, 0.032, 0.0266, 0.022, 0.0161], [0.1446, 0.1199, 0.1058, 0.0683, 0.05, 0.0303, 0.0236, 0.0236], [0.2084, 0.1524, 0.1115, 0.0561, 0.0362, 0.034, 0.0282, 0.022], [0.3786, 0.1229, 0.0618, 0.0352, 0.0352, 0.0292, 0.0188, 0.0166], [0.4028, 0.0844, 0.0481, 0.0425, 0.0375, 0.0311, 0.0129, 0.0114], [0.386, 0.1823, 0.028, 0.0232, 0.017, 0.0132, 0.0109, 0.0097], [0.511, 0.1292, 0.0186, 0.0175, 0.01, 0.0078, 0.0068, 0.0064], [0.3807, 0.1025, 0.0294, 0.019, 0.013, 0.0084, 0.0079, 0.0074], [0.3726, 0.0831, 0.0571, 0.0113, 0.0093, 0.0088, 0.0068, 0.0064], [0.2009, 0.0892, 0.0576, 0.0083, 0.0078, 0.0073, 0.0073, 0.0069], [0.1351, 0.1193, 0.0497, 0.0067, 0.0052, 0.0049, 0.0049, 0.0046], [0.0943, 0.0609, 0.0609, 0.0088, 0.0064, 0.005, 0.0044, 0.0041], [0.4575, 0.0959, 0.0147, 0.0101, 0.0089, 0.0069, 0.0065, 0.0051], [0.7891, 0.0445, 0.0224, 0.0064, 0.0057, 0.0044, 0.0027, 0.0022], [0.774, 0.0561, 0.0265, 0.0071, 0.0063, 0.0059, 0.0038, 0.0036], [0.9728, 0.0229, 0.0027, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001], [0.9729, 0.0157, 0.0095, 0.0005, 0.0005, 0.0001, 0.0001, 0.0001], [0.9683, 0.0258, 0.0045, 0.0005, 0.0003, 0.0001, 0.0001, 0.0001], [0.9796, 0.0158, 0.0035, 0.0005, 0.0002, 0.0001, 0.0001, 0.0], [0.9946, 0.0046, 0.0005, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9898, 0.0076, 0.0015, 0.0006, 0.0002, 0.0, 0.0, 0.0], [0.9872, 0.011, 0.0005, 0.0003, 0.0003, 0.0002, 0.0001, 0.0001], [0.9526, 0.0419, 0.0018, 0.0007, 0.0006, 0.0004, 0.0004, 0.0002], [0.987, 0.011, 0.0004, 0.0004, 0.0003, 0.0003, 0.0002, 0.0001]], "ranks": {}}, {"pos": 581, "top": [[".", " \u2013", ",", " (\u201c", " ", " [\u2026]", "\u2026..", "\u201d."], [" (\u201c", " Strec", " \u041a\u0440\u0430\u0441\u0438", " \u201c.", "laves", " Geile", " kecel", " \u0417\u0432\u0435"], [" (\u201c", "\u2026..", " \u2013", " [].", " [\u2026", " ().", "[\u2026", ","], [" Strec", " \u041a\u0440\u0430\u0441\u0438", "*=*=", " [-]:", " Blowjob", " milfs", " Shemale", " \u0417\u043e\u043b\u043e"], [" \u201c.", " (@", " (\u201c", " ().", " [@", " [].", "\\xc", " **\u201c"], [" \u201c.", " (\u201c", " **\u201c", " \").", " ().", " (\"-", " \".", "!\u201d."], [" \u201c.", " (\u201c", " ().", " [].", " **\u201c", ".\u201d", "\u201d.", "\\xc"], [" ().", " [].", " \u201c.", " (\u201c", " \").", " (\"-", " \".", "!\u201d."], [" \u201c.", " ().", " [].", "!\u201d.", ".\u201d", " (\u201c", "\u201d.", " [$"], ["\\xc", " ().", " [].", "\\.", " [$", " \u201c.", "().\"", " [-]:"], [" ().", " [].", " [$", "\\.", "\\xc", " \u201c.", ".\u201d", "."], [" ().", " [$", " [].", " **\u201c", "\\xc", " incentiv", " (\u201c", " entirety"], [" ().", " (\u201c", " [].", " incentiv", " entirety", " \u201c.", " \u201c[", " [$"], [",", " entirety", " (\u201c", " ().", " incentiv", " aforementioned", ".", " \u201c["], [" entirety", " (\u201c", " \u201c[", "\u2014including", "\u2014\"", " utilizing", "\u2014", "\u2014and"], [" (\u201c", " within", " numerous", " strategically", " entirety", " utilizing", " potentially", " \u201c"], [",", " (\u201c", ";", " \u201c", " (\"", ".", " \u201c[", ".["], [" (\u201c", ",", " \u201c[", " \u201c", ".\u201d", " entirety", " potentially", " numerous"], [" (\u201c", " \u201c[", " \u201c", " entirety", " myriad", "\u2014even", " potentially", " arguably"], [" (\u201c", " \u201c[", ")\u2014", " entirety", "\u2014even", " myriad", " [$", " \u201c"], ["<|endoftext|>", "  \n\n", " \n\n", " \u2014", ")\u2014", " myriad", "\u2014", "\u2014and"], [" \u201c.", " entirety", " \u201c[", " within", " ).", " (\u201c", " allocator", " ()."], [" \u201c.", " \u201c[", " within", " \u201c", " for", " [$", " (\u201c", " \u201d"], ["<|endoftext|>", " \u201c", " \u201c[", " .", " for", " at", " within", " in"], ["<|endoftext|>", " \n\n", "  \n\n", " \u201c[", ",", ".[", " \u201c", " for"], [" \u201c[", " \n\n", " [$", ".[", " \u201c", " **[", "[^", "  \n\n"], [" \n\n", " \u201c[", "\n\n", " [$", " .*", " heavily", " potentially", " for"], [" \n\n", "\n\n", " ,", " heavily", " for", "<|endoftext|>", "  \n\n", " outside"], [" \n\n", "  \n\n", "\n\n", " .", " \u201c[", " \n  \n", " \u201c", " .*"], [" \n\n", " \n  \n", "  \n\n", " \u201c[", " \n    \n", " .**", " .", " **."], [" .", " during", " for", " .**", " outside", " at", " **.", " \n  \n"], [" .", " during", " for", " at", " .**", " in", " ,", " and"], [" during", " .", " for", " at", " even", " hundreds", " anywhere", " outside"], [" during", " even", " hundreds", " heavily", " dozens", " for", " rapidly", " anywhere"], [" during", " hundreds", " dozens", " anywhere", " rapidly", " .", " increasingly", " whenever"], [" during", " anywhere", " whenever", " hundreds", " increasingly", " .", " heavily", " dozens"], [" during", " anywhere", " .", " dozens", " unnecessarily", " whenever", " hundreds", " rapidly"], [" during", " anywhere", " .", " even", " unnecessarily", " outside", " hundreds", " inefficient"], [" during", " anywhere", " even", " inefficient", " unnecessarily", " throughout", "during", " rapidly"], [" during", " anywhere", "during", " throughout", " outside", " During", " even", " ."], [" during", "during", " anywhere", " During", " throughout", " .", " outside", "During"], [" during", " anywhere", "during", " throughout", " During", " constantly", " triggering", " whenever"], [" during", "during", " avoidance", " anywhere", " avoiding", " avoided", " triggering", " During"], [" during", " triggering", "during", " During", " triggers", " avoided", " anywhere", " avoidance"], [" during", "during", " During", " triggering", " anywhere", " triggers", "During", " avoided"], [" during", " anywhere", "during", " During", " triggering", " avoid", " avoided", " avoiding"], [" during", "during", " anywhere", " During", " durante", " anytime", "During", " triggers"], [" during", "during", " During", " anywhere", "During", " durante", " anytime", " selama"], [" during", "during", ".", " During", " anywhere", " durante", "During", ".**"], [" during", "during", ".", " During", " durante", " anywhere", "During", ".**"], [" during", ".", "().", "during", ".**", " anywhere", "**.", ".)."], [" during", "during", ".", ".**", "().", "**.", " **.", "*."], [" during", "during", " During", ".**", "During", ".", " **.", " durante"], [" during", "during", "During", " During", " durante", "().", ".", " **."], [" during", "during", "During", " During", " durante", " loop", " loops", " selama"], [" entirely", " during", " altogether", "during", " durante", "During", " During", " loop"], [" entirely", " during", " altogether", "during", " completely", "\u5b8c\u5168", " durante", " During"], [" entirely", " during", " altogether", "during", " completely", "\u5b8c\u5168", " During", "During"], [" entirely", "\u5e27", " frame", " during", "-frame", " frames", "frame", " Frame"], [" entirely", " frame", " during", "\u5e27", " frames", "-frame", " Frame", "frame"], [" entirely", " frame", " during", "\u5e27", ".", " frames", "-frame", " Frame"], [" entirely", ".", " during", " frame", "\u5e27", " altogether", " frames", "-frame"], [".", " entirely", " during", " on", " frame", " per", " every", " altogether"]], "p": [[0.3078, 0.1454, 0.1205, 0.0535, 0.0417, 0.0253, 0.0223, 0.0197], [0.0462, 0.017, 0.015, 0.0103, 0.0097, 0.0085, 0.0071, 0.0049], [0.1559, 0.1214, 0.0348, 0.0307, 0.0211, 0.0186, 0.0175, 0.0175], [0.0149, 0.0124, 0.0096, 0.0091, 0.0075, 0.007, 0.0062, 0.0048], [0.1236, 0.0584, 0.0484, 0.0202, 0.0167, 0.0122, 0.0122, 0.0101], [0.1601, 0.0204, 0.0131, 0.0102, 0.008, 0.0055, 0.0045, 0.0043], [0.2467, 0.1695, 0.0664, 0.0229, 0.0216, 0.0179, 0.0139, 0.009], [0.1186, 0.0597, 0.0495, 0.0161, 0.0142, 0.0117, 0.0076, 0.0049], [0.1913, 0.1586, 0.0797, 0.0548, 0.0293, 0.0259, 0.0167, 0.0122], [0.0282, 0.022, 0.0171, 0.0161, 0.0125, 0.0081, 0.0067, 0.0063], [0.095, 0.0653, 0.0478, 0.0449, 0.0421, 0.0308, 0.029, 0.0272], [0.019, 0.0115, 0.0108, 0.0095, 0.009, 0.0058, 0.0058, 0.0037], [0.0393, 0.012, 0.0113, 0.0093, 0.0077, 0.0068, 0.0057, 0.0053], [0.0334, 0.0334, 0.0139, 0.0116, 0.0075, 0.007, 0.0062, 0.0062], [0.0177, 0.0114, 0.0101, 0.0101, 0.0084, 0.0069, 0.0069, 0.0065], [0.0095, 0.0089, 0.0089, 0.0074, 0.0069, 0.0065, 0.0057, 0.0051], [0.4655, 0.0192, 0.015, 0.0117, 0.0071, 0.0066, 0.0062, 0.0062], [0.052, 0.0405, 0.0204, 0.0169, 0.009, 0.0066, 0.0066, 0.0058], [0.0268, 0.0196, 0.0082, 0.0082, 0.0077, 0.0056, 0.0053, 0.0047], [0.0267, 0.0172, 0.0068, 0.006, 0.006, 0.0053, 0.0053, 0.0044], [0.668, 0.0048, 0.0042, 0.0033, 0.0026, 0.0021, 0.0018, 0.0018], [0.006, 0.0053, 0.003, 0.0028, 0.0028, 0.0025, 0.0022, 0.0022], [0.0091, 0.0091, 0.0091, 0.0085, 0.0071, 0.0052, 0.0052, 0.0043], [0.5629, 0.0124, 0.0091, 0.0075, 0.0075, 0.0055, 0.0049, 0.0046], [0.1832, 0.0865, 0.0233, 0.0206, 0.015, 0.0125, 0.008, 0.0067], [0.0468, 0.0267, 0.0098, 0.0087, 0.0076, 0.0072, 0.0072, 0.0072], [0.0802, 0.0335, 0.0102, 0.0096, 0.0085, 0.0062, 0.0051, 0.0051], [0.1395, 0.0546, 0.0292, 0.0167, 0.0114, 0.0108, 0.0108, 0.0089], [0.3062, 0.0366, 0.0303, 0.0285, 0.0162, 0.0162, 0.0082, 0.0077], [0.1345, 0.1187, 0.0362, 0.0171, 0.0142, 0.0125, 0.0125, 0.0104], [0.2906, 0.0735, 0.0474, 0.0164, 0.0136, 0.0128, 0.0093, 0.0093], [0.5088, 0.1002, 0.0608, 0.012, 0.0112, 0.0093, 0.0073, 0.0057], [0.1361, 0.1279, 0.0533, 0.0222, 0.0209, 0.0173, 0.0127, 0.0105], [0.0654, 0.0273, 0.0241, 0.0212, 0.0176, 0.0176, 0.0176, 0.0155], [0.0284, 0.0251, 0.0183, 0.0172, 0.0111, 0.0105, 0.0087, 0.0081], [0.0656, 0.0166, 0.0129, 0.0114, 0.0107, 0.0101, 0.0095, 0.0089], [0.0396, 0.024, 0.0146, 0.0129, 0.0114, 0.0114, 0.0114, 0.0088], [0.0931, 0.0302, 0.0235, 0.0162, 0.0118, 0.0111, 0.0098, 0.0081], [0.4518, 0.0211, 0.0088, 0.0069, 0.0064, 0.0064, 0.0064, 0.0057], [0.7566, 0.0167, 0.013, 0.0054, 0.004, 0.004, 0.0035, 0.0024], [0.8942, 0.0077, 0.005, 0.0037, 0.0037, 0.0022, 0.0016, 0.0013], [0.9109, 0.0065, 0.0061, 0.0037, 0.0026, 0.0014, 0.0012, 0.0011], [0.8234, 0.0063, 0.0063, 0.0063, 0.0055, 0.0055, 0.0052, 0.0034], [0.911, 0.0084, 0.0084, 0.0054, 0.0035, 0.0027, 0.0027, 0.0021], [0.9641, 0.0083, 0.0045, 0.0015, 0.0013, 0.001, 0.0009, 0.0006], [0.9649, 0.0054, 0.0051, 0.0029, 0.0011, 0.0011, 0.0006, 0.0006], [0.9657, 0.0138, 0.0065, 0.0051, 0.0009, 0.0009, 0.0005, 0.0003], [0.9869, 0.0085, 0.0031, 0.0004, 0.0003, 0.0003, 0.0, 0.0], [0.9701, 0.0138, 0.0084, 0.0024, 0.0015, 0.0006, 0.0004, 0.0003], [0.9331, 0.0465, 0.0055, 0.0043, 0.0016, 0.0013, 0.0008, 0.0007], [0.3691, 0.2537, 0.0641, 0.0389, 0.0389, 0.0236, 0.0162, 0.0134], [0.564, 0.1259, 0.098, 0.0409, 0.0409, 0.017, 0.0086, 0.0086], [0.8172, 0.1106, 0.0117, 0.008, 0.0071, 0.0071, 0.0062, 0.0049], [0.7728, 0.1724, 0.0125, 0.011, 0.0067, 0.002, 0.0019, 0.0016], [0.801, 0.1577, 0.0114, 0.0079, 0.0069, 0.0022, 0.002, 0.0006], [0.8445, 0.1009, 0.0289, 0.0136, 0.001, 0.0008, 0.0008, 0.0007], [0.9682, 0.0201, 0.0065, 0.0027, 0.0005, 0.0003, 0.0002, 0.0002], [0.9738, 0.0157, 0.0066, 0.0019, 0.0002, 0.0002, 0.0001, 0.0001], [0.6592, 0.1667, 0.0892, 0.029, 0.0094, 0.0094, 0.0073, 0.0065], [0.4932, 0.1814, 0.1814, 0.0756, 0.0217, 0.0116, 0.008, 0.0048], [0.575, 0.1648, 0.1132, 0.0472, 0.0253, 0.0174, 0.0153, 0.0072], [0.7627, 0.1702, 0.0488, 0.0085, 0.0013, 0.0012, 0.001, 0.0007], [0.7693, 0.1337, 0.0919, 0.0011, 0.001, 0.0006, 0.0005, 0.0003]], "ranks": {}}, {"pos": 582, "top": [[" \u2013", ".", ",", "\u2013", ";", "\u00a0\u00a0", "<|endoftext|>", "\u00a0"], [" \u2013", "\u2013", "\u2013and", " \u2013,", " \u200b\u200b", " very", " Hammer", "   \n"], ["\u2013", " \u2013", ",", ".", "\u2013and", "\u2026..", ".\u2013", "\u2026"], [" milfs", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Shemale", " Blowjob", "-------------</", " ;;^", " pornstar", " cumshot"], ["\u65b0\u52a0\u5761", "\u52a0\u62ff\u5927", " Millennials", ":@", "\u2193\u2193", "atria", "\u52a0\u62ff\u5927\u7684", "\uff20"], [" \u200b\u200b", ".", "!\u201d.", "!:", "\uff01", "!).", "\u65b0\u52a0\u5761", "!."], ["  \n", "\uff01", "   \n", "  \n\n", ".", "!\u201d", ".\u201d", " \n"], ["   \n", "   \n\n", "    \n", "  \n", "!.", "!\u201d.", "     \n", "  \n\n"], ["   \n\n", " \n\n", "  \n\n", "!\u201d.", ".", "!.", "    \n\n", " \n    \n"], ["<|quad_end|>", "\u51ed\u501f\u7740", "clarsimp", "\u8ba4\u8ba4\u771f", "\u65b0\u52a0\u5761", "\u7c89\u4e1d\u4eec", "\tHX", "\u4e94\u82b1\u516b"], [",", "\u00a0", "<|endoftext|>", ".", "\u2013", " arguably", " though", ".["], [" arguably", " savvy", "\u7c89\u4e1d\u4eec", " hardcore", " **", " aggressively", " albeit", "clarsimp"], [" arguably", " aggressively", "\u51ed\u501f\u7740", "\u7c89\u4e1d\u4eec", " nonetheless", " ultimately", " savvy", " incredibly"], ["-esque", " arguably", " aggressively", " incredibly", " savvy", " tweaks", "\u7c89\u4e1d\u4eec", "\u51ed\u501f\u7740"], [" arguably", " aggressively", " effortlessly", " swiftly", " even", " seamlessly", " savvy", " albeit"], [" arguably", " even", " effortlessly", " aggressively", " sprawling", " incredibly", " swiftly", " ultimately"], [" arguably", " leveraging", " incredibly", " transitioning", "-esque", " seamlessly", "\u51ed\u501f\u7740", " ultimately"], [" leveraging", " transitioning", " seamlessly", " arguably", "\u51ed\u501f\u7740", " incentiv", " tweaks", " meticulously"], [" arguably", " seamlessly", " meticulously", " ultimately", " effortlessly", " leveraging", " transitioning", " albeit"], ["<|endoftext|>", " arguably", " swiftly", " ultimately", " myriad", "\u5373\u4fbf", " albeit", "\u5373\u4fbf\u662f"], ["<|endoftext|>", " \n\n", " swiftly", "<|file_sep|>", " ultimately", " arguably", "  \n\n", " though"], [" arguably", " ultimately", " swiftly", " effortlessly", "\u6253\u9020\u51fa", "\u51ed\u501f\u7740", "\u62e5\u6709\u7740", " seamlessly"], [" swiftly", " arguably", " ultimately", " effortlessly", " ``", " even", " aggressively", " notably"], [" ultimately", " swiftly", " even", " arguably", " notably", " ``", " aggressively", " eventually"], [" \n\n", "  \n\n", "\n\n", " \r\n\r\n", "<|endoftext|>", "\r\n\r\n", "   \n\n", " swiftly"], [" **", " \n\n", " meticulously", " arguably", " leveraging", " \r\n\r\n", " swiftly", "  \n\n"], [" \n\n", " meticulously", "\n\n", " **", " ultimately", " arguably", " aggressively", " heavily"], [" \n\n", "<|endoftext|>", "\n\n", " heavily", " arguably", " ultimately", " even", "  \n\n"], [" \n\n", "<|endoftext|>", " heavily", " arguably", " even", " meticulously", " ultimately", " aggressively"], [" even", "<|endoftext|>", " heavily", " ultimately", " ,", " aggressively", " **", " \n"], ["<|endoftext|>", " even", " ,", " heavily", " \n\n", " \n", " ultimately", " meticulously"], ["<|endoftext|>", " even", " \u201c", " ,", " heavily", " ...", " aggressively", " meticulously"], [" even", " heavily", " aggressively", " meticulously", " ultimately", " using", " incredibly", " strategically"], [" even", " heavily", " aggressively", " meticulously", " massively", " often", " using", " strategically"], [" meticulously", " aggressively", " heavily", "<|endoftext|>", " even", " massively", " strategically", " deeply"], ["<|endoftext|>", " meticulously", " heavily", " aggressively", " massively", " deliberately", "\u2011", " relentlessly"], [" meticulously", " aggressively", " heavily", " avoiding", " massively", " deliberately", " rigor", " relentlessly"], [" meticulously", " aggressively", " avoiding", " heavily", " deliberately", " rigor", " massively", " relentlessly"], [" meticulously", " aggressively", " deliberately", " avoiding", " rigor", " relentlessly", " massively", " heavily"], [" meticulously", " aggressively", "\u2011", " deliberately", " relentlessly", " avoiding", " rigor", " massively"], [" meticulously", " aggressively", " using", " avoiding", " use", " relentlessly", " deliberately", " heavily"], [" meticulously", " aggressively", " using", " use", " avoiding", " relentlessly", " heavily", " deliberately"], [" meticulously", " using", " aggressively", " avoiding", " use", " deliberately", " rigor", " relentlessly"], [" meticulously", " using", " use", " avoiding", " avoid", " aggressively", " strict", " massively"], [" using", " meticulously", " use", " avoiding", " avoid", " strict", " aggressively", " heavily"], [" meticulously", " using", " strict", " use", " aggressively", " avoid", " avoiding", " heavily"], [" meticulously", " avoid", " using", " use", " rigor", " avoiding", " strict", " aggressively"], [" meticulously", " aggressively", " rigor", " meticulous", " heavily", " strict", " massively", " avoid"], [" meticulously", "\u4e25\u683c\u63a7\u5236", " rigor", " aggressively", " relentlessly", "\u4e25\u7981", " meticulous", " heavily"], [" meticulously", "\u4e25\u683c\u63a7\u5236", " rigor", "\u4e25\u7981", " meticulous", "  \n", " relentlessly", " strict"], ["\u4e25\u7981", " meticulously", "  \n", " relentlessly", "\u5f7b\u5e95", "\u4e25\u683c\u63a7\u5236", " rigor", "\u5fb9\u5e95"], ["  \n", " use", "\u4f7f\u7528", " Use", " reuse", " reusable", "\u4e25\u7981", " \n"], [" reuse", " use", " Use", " reusable", "Use", "reuse", "-use", " implement"], [" reuse", "\n", " implement", " reusable", "reuse", " implements", " Use", "Reuse"], [" implement", " reuse", " implements", "\n", " Implement", "reuse", " implementing", " recycle"], [" implement", " reuse", " recycle", " Implement", " aggressively", "reuse", " implements", " pooling"], [" implement", " Implement", " pooling", " aggressively", " reuse", "\u6c60", " recycle", " implements"], ["\u6c60", " pooling", " pool", " aggressively", " pools", " Pool", " implement", ".pool"], [" implement", " Implement", " pooling", "\u6c60", " pool", " aggressively", " implements", " pools"], [" implement", " Implement", " pool", " implements", " pooling", " implementing", "implement", "Implement"], [" Implement", " implement", " pool", " Every", "\n", " implements", " Pool", " implementing"], [" Implement", " implement", " Pool", " pool", "\n", " Every", " pooling", " implements"], [" Implement", " Pool", " Pre", "\n", " implement", " Every", " Cache", " Maintain"]], "p": [[0.65, 0.2391, 0.0605, 0.0367, 0.003, 0.0011, 0.001, 0.001], [0.244, 0.0188, 0.0069, 0.0039, 0.002, 0.0011, 0.0009, 0.0009], [0.7088, 0.0959, 0.0847, 0.0747, 0.013, 0.0045, 0.0035, 0.0024], [0.0158, 0.0096, 0.0075, 0.0055, 0.0029, 0.0028, 0.0028, 0.0019], [0.008, 0.0031, 0.0025, 0.0025, 0.0014, 0.0014, 0.0013, 0.0013], [0.0094, 0.0083, 0.0078, 0.0025, 0.0022, 0.002, 0.002, 0.0019], [0.2187, 0.0805, 0.0667, 0.038, 0.0315, 0.0296, 0.0191, 0.0149], [0.1769, 0.0574, 0.0289, 0.0255, 0.0225, 0.0136, 0.0128, 0.01], [0.2375, 0.2231, 0.099, 0.0439, 0.0364, 0.0284, 0.0267, 0.0162], [0.001, 0.0009, 0.0009, 0.0008, 0.0008, 0.0008, 0.0007, 0.0007], [0.0607, 0.0444, 0.0305, 0.0136, 0.0093, 0.0073, 0.0068, 0.006], [0.0044, 0.0021, 0.0021, 0.0017, 0.0016, 0.0013, 0.0012, 0.0011], [0.0041, 0.0021, 0.0018, 0.0017, 0.0012, 0.0012, 0.0012, 0.0011], [0.0039, 0.0033, 0.0027, 0.0024, 0.0022, 0.0022, 0.002, 0.0019], [0.0205, 0.015, 0.0075, 0.0062, 0.0036, 0.0036, 0.0033, 0.0031], [0.0355, 0.0179, 0.009, 0.0084, 0.007, 0.007, 0.0062, 0.0054], [0.0423, 0.02, 0.0137, 0.0114, 0.0083, 0.0078, 0.0061, 0.0061], [0.01, 0.0094, 0.0053, 0.0053, 0.0034, 0.0034, 0.003, 0.0027], [0.0259, 0.0061, 0.0061, 0.0051, 0.0048, 0.0048, 0.0045, 0.0042], [0.0264, 0.0141, 0.0091, 0.008, 0.0049, 0.0043, 0.0043, 0.0043], [0.958, 0.0007, 0.0007, 0.0006, 0.0003, 0.0002, 0.0002, 0.0002], [0.0061, 0.0045, 0.0037, 0.0033, 0.0031, 0.0029, 0.0027, 0.0022], [0.02, 0.0137, 0.0137, 0.0078, 0.0074, 0.0069, 0.0054, 0.0047], [0.0247, 0.0193, 0.0132, 0.0132, 0.0097, 0.0091, 0.0055, 0.0055], [0.253, 0.0322, 0.0251, 0.0235, 0.0221, 0.0208, 0.0143, 0.0118], [0.1799, 0.0905, 0.0167, 0.0139, 0.0115, 0.0108, 0.0102, 0.0074], [0.1603, 0.0246, 0.0246, 0.0191, 0.0149, 0.014, 0.0132, 0.0124], [0.1004, 0.0609, 0.0474, 0.0238, 0.0238, 0.0186, 0.0186, 0.0136], [0.0859, 0.0591, 0.0358, 0.0337, 0.0262, 0.0246, 0.0246, 0.018], [0.0735, 0.0609, 0.0369, 0.0254, 0.0238, 0.021, 0.0145, 0.0136], [0.4026, 0.0545, 0.033, 0.0177, 0.0177, 0.0107, 0.0089, 0.0074], [0.1493, 0.0906, 0.0402, 0.0378, 0.0215, 0.0168, 0.0095, 0.0095], [0.1378, 0.0395, 0.0271, 0.0211, 0.0199, 0.0145, 0.0136, 0.012], [0.0885, 0.0474, 0.0418, 0.0346, 0.0144, 0.0112, 0.0112, 0.0106], [0.0828, 0.0534, 0.0472, 0.0345, 0.0153, 0.0119, 0.0119, 0.0099], [0.3189, 0.0806, 0.0336, 0.0246, 0.009, 0.0075, 0.0075, 0.0066], [0.0971, 0.0805, 0.0261, 0.0217, 0.014, 0.0131, 0.0116, 0.0085], [0.1126, 0.0603, 0.0268, 0.0162, 0.0162, 0.0143, 0.0135, 0.0112], [0.1466, 0.065, 0.0307, 0.0225, 0.0164, 0.0145, 0.0136, 0.0128], [0.1366, 0.0569, 0.0345, 0.0253, 0.0174, 0.0174, 0.0144, 0.0135], [0.0747, 0.0513, 0.0425, 0.0311, 0.0258, 0.0214, 0.0201, 0.0157], [0.1029, 0.0624, 0.0551, 0.0179, 0.0168, 0.0168, 0.0158, 0.0123], [0.1963, 0.0438, 0.0438, 0.0207, 0.0142, 0.0111, 0.0098, 0.0098], [0.1724, 0.0982, 0.0361, 0.0319, 0.0233, 0.0171, 0.016, 0.0141], [0.1475, 0.1149, 0.0578, 0.0213, 0.0213, 0.0188, 0.0176, 0.0121], [0.2175, 0.1027, 0.0428, 0.0378, 0.0244, 0.0244, 0.0229, 0.0131], [0.4434, 0.0321, 0.0235, 0.0235, 0.0195, 0.0195, 0.0172, 0.0143], [0.6594, 0.0146, 0.0137, 0.0137, 0.0121, 0.0113, 0.0107, 0.0078], [0.5729, 0.0252, 0.0222, 0.0209, 0.0173, 0.0119, 0.0093, 0.0082], [0.36, 0.0487, 0.0379, 0.0356, 0.0123, 0.0116, 0.0109, 0.009], [0.1054, 0.0821, 0.0601, 0.0195, 0.0162, 0.0143, 0.0126, 0.0092], [0.0487, 0.0357, 0.0335, 0.0335, 0.0278, 0.0203, 0.0191, 0.0191], [0.2383, 0.1445, 0.1445, 0.0532, 0.0285, 0.0251, 0.0196, 0.0196], [0.2421, 0.1468, 0.0786, 0.0448, 0.0395, 0.0349, 0.0165, 0.0137], [0.4473, 0.0777, 0.0605, 0.0416, 0.0416, 0.0197, 0.0144, 0.0135], [0.477, 0.1367, 0.0503, 0.0444, 0.0346, 0.0269, 0.0269, 0.0112], [0.2922, 0.1564, 0.0837, 0.0575, 0.0575, 0.0349, 0.024, 0.024], [0.2641, 0.2641, 0.1248, 0.0972, 0.0858, 0.0246, 0.0217, 0.0191], [0.5333, 0.2519, 0.0562, 0.0301, 0.0265, 0.0125, 0.0125, 0.0098], [0.7275, 0.2084, 0.0133, 0.0092, 0.0081, 0.0043, 0.0038, 0.003], [0.5723, 0.3063, 0.0222, 0.0196, 0.0105, 0.0082, 0.0064, 0.005], [0.5878, 0.1908, 0.0702, 0.062, 0.0332, 0.0054, 0.0045, 0.004], [0.8976, 0.0271, 0.0211, 0.0186, 0.0164, 0.0069, 0.0014, 0.0011]], "ranks": {}}, {"pos": 583, "top": [[" \u2013", ".", " \u2013,", " (\u201e", "   \n", " \u200b\u200b", "\u2013and", ".\u2013"], [" \u2013**", "**\u2013", " \u2013,", " *\u2013", "   \n", " **\u2013", " Strec", "\u52a0\u62ff\u5927\u7684"], ["**\u2013", " **\u2013", "\u3002", ".\u2013", "\uff1f**", " \u2013**", "\u2013and", "\u2026**"], [" milfs", " **\u201e", " Shemale", " **\u25cb", " Blowjob", " cumshot", "\uff3f\uff3f", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9"], [" **\u201e", " **\u201c", "\u7684", "\u5728", " *</", " **:**", "\uff1a**", " **\u3010"], ["\u5728", " **\u201c", "\u7684", "\u3002", " **\u3010", "\u4e2d", " **\u201e", "\uff1f**"], ["\u5728", "\u7684", "\u4e2d", " **\u3010", "\u3002", "\uff08", "\u548c", "\uff1f**"], [" **\u3010", "\u7684", "\u5728", " **\u201e", "\u4e2d", "\uff1f**", "\uff08", "\u3002"], ["  \n\n", "   \n\n", "    \n\n", " **\u3010", "\uff08", "\u5728", "\u7684", "\u3002"], [" **\u3010", " **\u201e", ".:**", " **\u201c", " **\u300c", " **#", " **+", "\u3002**"], [" **\u3010", "\u5728", "____", "\u7684", " //@", "\u4e2d", "\u3002", "\uff08"], [" **\u3010", " **\u201e", " **\u300c", " **\u201c", " **+", " *__", " **.**", "(___"], [" **\u201e", " **\u3010", " **\u300c", " **+", " **:", "(___", " **:**", " **\u201c"], ["\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " **\u201e", " impactful", " incentiv", " LGBTQ", "unky", " milfs", "unate"], [" arguably", " --", " swiftly", " aggressively", " transitioning", " incentiv", " touted", " nuanced"], [" arguably", " swiftly", " showcasing", " nuanced", " incentiv", " touted", " seamlessly", " leveraging"], [" arguably", " transitioning", " showcasing", " leveraging", " incentiv", " seamlessly", " priorit", " nuanced"], [" transitioning", " leveraging", " arguably", " seamlessly", " incentiv", " showcasing", " priorit", " impactful"], [" transitioning", " arguably", " leveraging", " incentiv", " impactful", " seamlessly", " **\u201c", " priorit"], ["<|endoftext|>", " transitioning", " arguably", " leveraging", " priorit", " seamlessly", "  \n\n", " incredibly"], ["<|endoftext|>", "  \n\n", " \n\n", "   \n\n", "\n\n", "<|file_sep|>", " \r\n\r\n", "<|im_end|>"], [" **", " **\u201c", " transitioning", " **+", " impactful", " leveraging", " incentiv", " arguably"], [" **", "  \n\n", " arguably", " transitioning", "<|endoftext|>", " **\u201c", " $$$", " leveraging"], ["<|endoftext|>", "  \n\n", " arguably", " **", " transitioning", " ``", " \r\n\r\n", "   \n\n"], ["  \n\n", " \n\n", "   \n\n", " \r\n\r\n", "\n\n", "<|im_end|>", "\r\n\r\n", "<|endoftext|>"], ["  \n\n", " \r\n\r\n", " \n\n", "   \n\n", " **", " **[", "  \r\n\r\n", " **\u201c"], ["  \n\n", " \n\n", "<|endoftext|>", "\n\n", "   \n\n", " \r\n\r\n", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", "   \n\n", "\n\n", " \r\n\r\n", "<|endoftext|>", " **", "  \r\n\r\n"], ["  \n\n", " \n\n", " \r\n\r\n", "   \n\n", "<|endoftext|>", "  \r\n\r\n", " **[", "\ufffd"], ["  \n\n", " \n\n", "<|endoftext|>", "   \n\n", " \r\n\r\n", "\ufffd", "  \r\n\r\n", "\u2011"], ["<|endoftext|>", "  \n\n", " \n\n", " \u201c", " \u2018", "\ufffd", "\u2011", " "], ["<|endoftext|>", "  \n\n", " \u2018", " \n\n", " \u201c", "\ufffd", " [", " @"], ["<|endoftext|>", "  \n\n", " \n\n", " \u2018", "\u2011", " \u201c", "\ufffd", "   \n\n"], ["<|endoftext|>", "  \n\n", " **\u201c", "  \r\n\r\n", " \r\n\r\n", "\u2026**", " \n\n", "   \n\n"], ["<|endoftext|>", "  \n\n", " **\u201c", "  \r\n\r\n", "\u2019**", "!**", " \r\n\r\n", "<|object_ref_end|>"], ["<|endoftext|>", "  \n\n", " **\u201c", "\u2026**", "\u2019**", "  \r\n\r\n", "**\u2014", "!**"], ["<|endoftext|>", "  \n\n", " **\u201c", "!**", "  \r\n\r\n", "\u2019**", "   \n\n", "**\u2014"], [" **\u201c", "<|endoftext|>", "\u2026**", "\u2019**", "  \n\n", "**\u2014", "!**", " **\u2018"], [" **\u201c", "!**", "\u2019**", "\u2026**", "**\u2014", "<|endoftext|>", " **\u2013", " **\u2018"], ["\u2026**", "!**", " **\u201c", "**\u2014", "<|endoftext|>", "\u2019**", " **\u2013", " **\u2014"], ["<|endoftext|>", "\u2026**", "!**", "**\u2014", " **\u201c", "\u2019**", "**\u201d", " **\u2013"], ["<|endoftext|>", "**\u2014", "\u2026**", "!**", " **\u2014", "\u2019**", "**\u201d", " **\u201c"], ["\u2026**", "!**", " **\u2014", "**\u2014", "\u2019**", " **\u201c", "\uff1a**", "\uff01**"], ["\uff1a**", " **\u2014", "\uff1f**", "\u2026**", "\u2019**", " **\u201c", "!**", "**\u2014"], ["\u2026**", "\u2019**", " **\u2013", " **\u201c", "**\u2014", " **\u2014", " **\u2018", "!**"], ["\u2019**", "\u2026**", "!**", " **\u2013", " **", "**", " **\u2014", "**\u2014"], ["\u2019**", "!**", "**\u2014", ";**", " **\u2013", " **\u2014", "\u2026**", "**\u2013"], ["\u2019**", "**\u2014", "!**", " **\u2014", ";**", "\u2026**", " **\u2013", "?**"], ["\u2019**", " **\u2014", "!**", " **\u2013", ";**", "**\u2014", " **\u201c", "?**"], ["\u2019**", " **\u2014", " **\u2013", "!**", ";**", "**\u2013", ">**", "-**"], ["\u2019**", "!**", ";**", " **\u2014", "?**", "**\u2013", " **\u2013", "**\u2014"], ["\u2019**", "!**", ";**", " *[", "?**", ".**", "(**", ">**"], ["\u2019**", ";**", "-**", " **\"", " **:", ">**", "(**", ".**"], ["\u2019**", ";**", "-**", " **\"", "(**", "?**", " **\u201c", " **:"], ["\u2019**", ";**", "-**", " **\"", " *</", "(**", " **:", " **\u201c"], ["\u2019**", ";**", "-**", " *</", "*</", "/***", " **\"", "(*"], ["\u2019**", ";**", "-**", " *</", " *\"", "*</", "/***", "(*"], ["\u2019**", "*</", " *</", " *\"", " *[", ";**", "/***", "*\""], ["\u2019**", "-**", ";**", " *\"", " *[", " **\"", "(*", " *</"], ["\u2019**", "-**", " *[", ";**", " *\"", " **\"", "(*", "**"], ["\u2019**", " *\"", " *[", "-**", "(*", " **\"", " *=", " *\u201c"], ["   ", " *\"", " *", " *[", " *=", "*(", " ***", "       "], ["   ", "       ", "    ", "      ", " *", "  ", "\t", "\ufffd"]], "p": [[0.7986, 0.0698, 0.0166, 0.0094, 0.0083, 0.0074, 0.0051, 0.0047], [0.0862, 0.0714, 0.0141, 0.0141, 0.011, 0.0091, 0.0055, 0.0046], [0.5033, 0.0875, 0.0251, 0.0251, 0.0183, 0.0172, 0.0134, 0.0126], [0.0173, 0.0119, 0.0105, 0.0099, 0.0064, 0.0064, 0.006, 0.006], [0.111, 0.0435, 0.0219, 0.0205, 0.0133, 0.0133, 0.0124, 0.0117], [0.1892, 0.0951, 0.0789, 0.0422, 0.029, 0.029, 0.0273, 0.0256], [0.1896, 0.1224, 0.108, 0.0896, 0.051, 0.045, 0.0273, 0.0257], [0.2729, 0.1289, 0.1004, 0.0393, 0.0254, 0.021, 0.021, 0.0186], [0.2119, 0.2119, 0.1134, 0.0688, 0.0269, 0.0238, 0.0238, 0.0238], [0.0835, 0.0307, 0.0145, 0.0113, 0.0083, 0.006, 0.0057, 0.005], [0.1172, 0.0972, 0.052, 0.052, 0.0358, 0.0296, 0.0296, 0.0262], [0.2358, 0.1262, 0.0526, 0.0206, 0.0133, 0.0117, 0.011, 0.0104], [0.1105, 0.0861, 0.0556, 0.018, 0.015, 0.0124, 0.0097, 0.0091], [0.0393, 0.0186, 0.0053, 0.0044, 0.0025, 0.0025, 0.0025, 0.0024], [0.0542, 0.0187, 0.0176, 0.0129, 0.0121, 0.0121, 0.0114, 0.0089], [0.1102, 0.0231, 0.0149, 0.0109, 0.008, 0.008, 0.0075, 0.0062], [0.1384, 0.0542, 0.0372, 0.035, 0.029, 0.0226, 0.0212, 0.0199], [0.1685, 0.0514, 0.04, 0.0376, 0.0332, 0.0275, 0.0258, 0.0167], [0.1646, 0.0645, 0.0569, 0.0502, 0.0416, 0.0304, 0.0209, 0.0209], [0.0678, 0.0466, 0.0466, 0.0104, 0.0092, 0.0076, 0.0067, 0.0067], [0.9494, 0.0417, 0.0032, 0.0012, 0.0003, 0.0002, 0.0002, 0.0001], [0.0904, 0.0662, 0.019, 0.0167, 0.0167, 0.0139, 0.0139, 0.013], [0.0713, 0.0406, 0.0246, 0.0192, 0.0159, 0.0149, 0.0132, 0.0109], [0.0406, 0.0337, 0.0279, 0.018, 0.0091, 0.0085, 0.0058, 0.0055], [0.8198, 0.0979, 0.0218, 0.015, 0.0117, 0.008, 0.0063, 0.0052], [0.5624, 0.0383, 0.0383, 0.028, 0.0232, 0.0218, 0.0141, 0.0117], [0.592, 0.1696, 0.0378, 0.023, 0.0158, 0.0131, 0.0108, 0.0055], [0.784, 0.1749, 0.0068, 0.0068, 0.006, 0.0044, 0.0034, 0.0023], [0.8723, 0.0558, 0.016, 0.011, 0.0063, 0.0063, 0.0043, 0.0026], [0.8309, 0.0773, 0.0773, 0.0038, 0.0026, 0.0012, 0.0012, 0.0005], [0.621, 0.2016, 0.051, 0.0273, 0.0121, 0.0094, 0.0057, 0.005], [0.6982, 0.0691, 0.0394, 0.0394, 0.0145, 0.0078, 0.0073, 0.0068], [0.9003, 0.0576, 0.0106, 0.0027, 0.0022, 0.0017, 0.0011, 0.0009], [0.701, 0.1772, 0.0187, 0.0137, 0.01, 0.0065, 0.0065, 0.0054], [0.1829, 0.1614, 0.092, 0.0524, 0.0193, 0.0193, 0.0193, 0.017], [0.3675, 0.1532, 0.1053, 0.0387, 0.0364, 0.0266, 0.0235, 0.0235], [0.622, 0.1782, 0.033, 0.0227, 0.0146, 0.0114, 0.0089, 0.0078], [0.274, 0.1662, 0.1008, 0.0693, 0.054, 0.0476, 0.0476, 0.0476], [0.2042, 0.1403, 0.0964, 0.0964, 0.0751, 0.0663, 0.0428, 0.0402], [0.1418, 0.1418, 0.1104, 0.0975, 0.086, 0.067, 0.067, 0.0382], [0.2223, 0.1731, 0.1528, 0.0722, 0.0386, 0.0363, 0.0341, 0.0341], [0.3402, 0.1252, 0.0975, 0.049, 0.0406, 0.0382, 0.0382, 0.0279], [0.2379, 0.0992, 0.0875, 0.0772, 0.0602, 0.0565, 0.0565, 0.0343], [0.1506, 0.1035, 0.0913, 0.0913, 0.0711, 0.0554, 0.0554, 0.0554], [0.3099, 0.1659, 0.0691, 0.0691, 0.0419, 0.0419, 0.0419, 0.0327], [0.2948, 0.1393, 0.1393, 0.0745, 0.0452, 0.0452, 0.0311, 0.0311], [0.2852, 0.173, 0.0817, 0.0721, 0.0562, 0.0562, 0.0437, 0.022], [0.4023, 0.1153, 0.0617, 0.0544, 0.0424, 0.0374, 0.0374, 0.0257], [0.4523, 0.1469, 0.1144, 0.0477, 0.0349, 0.0165, 0.0155, 0.0106], [0.2953, 0.1395, 0.0846, 0.0482, 0.0375, 0.0311, 0.0201, 0.0157], [0.3051, 0.0771, 0.044, 0.0267, 0.0267, 0.0195, 0.0183, 0.0118], [0.3287, 0.0942, 0.0733, 0.0287, 0.021, 0.0185, 0.0154, 0.0136], [0.3167, 0.1496, 0.0456, 0.0403, 0.026, 0.0229, 0.0202, 0.019], [0.4351, 0.2329, 0.0589, 0.0159, 0.014, 0.0116, 0.0116, 0.0102], [0.3994, 0.0837, 0.0396, 0.0199, 0.0165, 0.0137, 0.0121, 0.0121], [0.1549, 0.1133, 0.0939, 0.0368, 0.0325, 0.0185, 0.0185, 0.0174], [0.0637, 0.0386, 0.0341, 0.0207, 0.0194, 0.0194, 0.0182, 0.0171], [0.047, 0.0184, 0.0162, 0.0143, 0.0143, 0.0135, 0.0135, 0.0126], [0.0583, 0.0115, 0.0115, 0.0108, 0.0101, 0.0089, 0.0089, 0.0084], [0.07, 0.0166, 0.0156, 0.0122, 0.0107, 0.0107, 0.0095, 0.0069], [0.0255, 0.0225, 0.0155, 0.0088, 0.0088, 0.0078, 0.0047, 0.0042], [0.0128, 0.0078, 0.0078, 0.0044, 0.0039, 0.0038, 0.0036, 0.0032], [0.8712, 0.008, 0.0033, 0.0014, 0.0013, 0.0011, 0.001, 0.0009]], "ranks": {}}, {"pos": 584, "top": [[".", " \u2013", ",", "\u00a0", "  \n\n", "    \n", " ", "\u201d."], ["\u2011", "    \n", "  \r\n", "    \r\n", "  \n", " Harbour", "  \n\n", "   \n"], [".", "\u2013", ",", ".\u2013", " \u2013", "\u2013and", "\u2026..", "\u2026."], ["\uff0a\uff0a\uff0a\uff0a", "\uff3f\uff3f", " milfs", " Strec", " \u041a\u0440\u0430\u0441\u0438", "ielen", "erias", " pupper"], ["\uff20", "ierte", "erweise", "itude", " \u041a\u0440\u0430\u0441\u0438", "(@", "arity", "iems"], ["!\u201d.", "ierte", "\uff01", "sWith", " \uff09", "erweise", "itude", "\u201d."], ["\u3002", "\u201d.", "\u201d\u3002", "  \n", "\u5728", "\uff09\u3002", "    \n", "\uff01"], ["    \n", "    \r\n", "eness", "erweise", "  \r\n", "ierte", "!\u201d.", "    \n    \n    \n"], ["    \n\n", "    \n", "  \n\n", "!\u201d.", " \n    \n", "   \n\n", "  \n    \n", "\u201d."], [" \u0442\u0440\u0451", "\u0451\u0440", "\u9e92", "\u00ading", "ian", "\u0436\u0451", "ancy", "ianne"], [".@", "\\n", "ian", "(@", "\u2011", ".", "@", ",@"], ["ianne", "iante", "ician", "igan", "ian", "eness", "&eacute", "igans"], ["iante", "ianne", "ician", "igan", "ian", "urent", "erweise", "ijski"], ["iante", "ician", "erweise", "ian", "ation", "ielle", "igan", "iop"], ["ation", "ian", "i", "iante", "\u6ca7", "\u3044\u3063\u305f", "iya", "itude"], ["iya", "erweise", "ation", "i", "iens", "&eacute", "ed", "\u3044\u3063\u305f"], ["i", "ed", "o", "ing", "es", "ation", "u", "ers"], [" \u0442\u0440\u0451", "i", "ing", "ation", "o", "ed", "\u3044\u3063\u305f", "erweise"], [" \u0442\u0440\u0451", "&eacute", "ation", "iante", "ielle", "\u3044\u3063\u305f", "ahead", "\u706b\u901f"], ["<|endoftext|>", " swiftly", "ahead", "i", " myriad", "&eacute", "\u8ddf\u81ea\u5df1", " \u0442\u0440\u0451"], ["<|endoftext|>", " \n\n", " swiftly", "  \n\n", "@", "i", " \r\n\r\n", "<|file_sep|>"], ["&eacute", "\u5176\u5b83\u5a92\u4f53", " \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435", " swiftly", " \u03bf\u03b9\u03ba\u03bf\u03bd\u03bf", "\u706b\u901f", "iante", "\u53cd\u5012\u662f"], [" ``", " ''", " swiftly", " rapidly", " {{--<", "ahead", " notably", " heavily"], [" ,", " ultimately", " rapidly", " heavily", " eventually", " continually", " swiftly", " notably"], [" \n\n", " \r\n\r\n", " swiftly", " rapidly", " heavily", " ultimately", "  \n\n", " continually"], [" heavily", " rapidly", " swiftly", " hardware", " ultimately", " massively", " production", " quickly"], [" production", " aerospace", " overtime", " engineering", " workflows", " workload", " hardware", " gaming"], [" \n\n", " ,", " rapidly", " heavily", "\n\n", " production", " @", " work"], [" workflows", " rapidly", " \n\n", " production", " engineering", " rapid", " reboot", " heavily"], [" workflows", " **", " workflow", " automation", " multit", " engineering", " tech", " overtime"], [" \n\n", " work", " workflows", " heavily", " rapidly", " ...", " production", " multiple"], [" ...", " work", " @", " ,", " multiple", " production", " fast", " high"], [" multiple", " rapidly", " work", " production", " heavily", " fast", " ,", " ongoing"], [" workflows", " workflow", " automation", " overclock", " tech", " reboot", " synced", " multiplayer"], [" workflows", " automation", " workflow", " overclock", " automated", " synced", " tech", " sync"], ["\u2026**", "\u2026*", "\u2011", " \u2026", " workflows", " [\u2026]", "[\u2026]", " overclock"], [" synchronized", "\u2011", " workflows", " multiplayer", " overclock", " asynchronous", " sync", " synchronization"], ["\u2011", " workflows", " synchronized", " asynchronous", " sync", " synchronization", " workflow", " synchronous"], [" workflows", " workflow", " synchronized", " asynchronous", " synchronization", " synchronous", " sync", " asynchronously"], [" synchronization", " workflows", " synchronized", " asynchronous", " synchronous", " sync", " workflow", "ynchronous"], [" workflows", " asynchronous", " synchronization", " sync", " workflow", " synchronized", " asynchronously", " synchronous"], [" workflows", " workflow", " asynchronous", " synchronization", " sync", " asynchronously", " syncing", " synced"], [" workflows", " asynchronous", " synchronization", " workflow", " sync", " synchronized", " syncing", " asynchronously"], [" workflows", " asynchronous", " workflow", " synchronization", " sync", " synchronized", " asynchronously", " syncing"], [" workflows", " asynchronous", " synchronization", " synchronized", " separate", " sync", " workflow", " Separate"], [" workflows", " asynchronous", " synchronized", " synchronization", " sync", " asynchronously", " synced", " syncing"], [" workflows", " asynchronous", " synchronized", " synchronization", " separate", " Separate", " workflow", " sync"], [" workflows", " asynchronous", " Separate", " synchronized", " asynchronously", " synchronization", " synced", " Async"], [" workflows", " asynchronous", " synced", "\u591a\u7ebf\u7a0b", " asynchronously", "-sync", "\u5f02\u6b65", " synchronized"], ["\u72ec\u7acb", " synced", "-sync", " workflows", "ynchronous", "ynchronously", "\u591a\u7ebf\u7a0b", " asynchronous"], ["\u72ec\u7acb", "\u591a\u7ebf\u7a0b", "\u5f02\u6b65", "ynchronously", " asynchronous", " asynchronously", "SYNC", ":async"], [" asynchronous", "\u5f02\u6b65", "ynchronous", "\u591a\u7ebf\u7a0b", "ynchronously", ";**", "Threads", "threads"], [" asynchronous", "\u5f02\u6b65", "\u5206\u79bb", " buffering", "ynchronous", " batching", "\u591a\u7ebf\u7a0b", " Async"], [" asynchronous", "\u5f02\u6b65", "-thread", " Async", "\u591a\u7ebf\u7a0b", "Thread", " threading", "threads"], ["-thread", "\u591a\u7ebf\u7a0b", " threading", "\u5f02\u6b65", "threads", "Thread", " asynchronous", "\u7ebf\u7a0b"], ["-thread", "\u591a\u7ebf\u7a0b", " Async", "\u7ebf\u7a0b", "Thread", "thread", " threading", " async"], [" Async", " async", "\u591a\u7ebf\u7a0b", "-thread", "Async", " threading", "thread", "\u5f02\u6b65"], [" Async", " async", "-thread", " Render", "alloc", " threading", "Async", " asynchronous"], [" Async", " async", " Predict", " Burst", " Prediction", "-thread", " Predictor", "Predict"], [" Job", "Job", " Jobs", " job", "-job", " jobs", "_job", " Async"], [" Job", "Job", " job", " Jobs", "-job", " jobs", " Burst", "job"], [" Job", " Jobs", " job", "Job", " Background", "-job", " background", " jobs"], [" Job", " Jobs", "Job", " job", " jobs", "-job", " Background", " background"]], "p": [[0.5627, 0.1256, 0.0593, 0.0338, 0.017, 0.0132, 0.011, 0.011], [0.0378, 0.0216, 0.0084, 0.0051, 0.0042, 0.004, 0.0037, 0.0035], [0.3495, 0.2722, 0.1757, 0.0473, 0.0368, 0.0185, 0.0087, 0.0056], [0.0062, 0.0043, 0.0031, 0.0028, 0.0023, 0.0018, 0.0017, 0.0016], [0.0179, 0.0102, 0.0075, 0.0035, 0.0024, 0.0019, 0.0019, 0.0018], [0.0263, 0.0117, 0.0049, 0.0049, 0.0036, 0.0033, 0.0031, 0.0028], [0.1275, 0.0499, 0.0267, 0.0236, 0.0236, 0.0236, 0.0222, 0.0222], [0.0172, 0.0119, 0.0111, 0.0063, 0.0056, 0.0046, 0.0041, 0.0041], [0.0918, 0.0672, 0.0631, 0.0557, 0.0317, 0.0232, 0.0192, 0.015], [0.0081, 0.0055, 0.003, 0.0026, 0.0025, 0.0022, 0.0022, 0.0019], [0.0764, 0.0559, 0.0384, 0.0281, 0.0264, 0.0264, 0.0206, 0.0181], [0.0094, 0.0088, 0.0088, 0.0053, 0.005, 0.0032, 0.0032, 0.003], [0.0124, 0.0102, 0.009, 0.0066, 0.0066, 0.0045, 0.004, 0.0031], [0.0117, 0.0075, 0.0052, 0.0043, 0.0043, 0.0038, 0.0031, 0.003], [0.0088, 0.005, 0.0047, 0.0039, 0.0039, 0.0037, 0.0035, 0.0022], [0.0041, 0.0036, 0.0034, 0.003, 0.0025, 0.002, 0.0018, 0.0017], [0.0365, 0.0152, 0.0111, 0.0082, 0.0068, 0.0049, 0.0026, 0.0023], [0.0055, 0.0046, 0.0038, 0.0031, 0.0029, 0.0026, 0.0018, 0.0016], [0.0044, 0.0017, 0.0012, 0.001, 0.001, 0.001, 0.001, 0.0009], [0.0025, 0.0019, 0.0015, 0.0012, 0.001, 0.001, 0.0008, 0.0007], [0.9845, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.0009, 0.0009, 0.0009, 0.0007, 0.0007, 0.0006, 0.0006, 0.0006], [0.0053, 0.0026, 0.0022, 0.0019, 0.0015, 0.001, 0.001, 0.001], [0.0069, 0.0054, 0.0047, 0.0037, 0.0029, 0.0029, 0.0027, 0.0025], [0.0179, 0.0079, 0.007, 0.0054, 0.0051, 0.0037, 0.0033, 0.0031], [0.0091, 0.0086, 0.0049, 0.0038, 0.003, 0.003, 0.0028, 0.0026], [0.008, 0.0076, 0.0076, 0.0071, 0.0067, 0.0059, 0.0059, 0.0052], [0.0499, 0.0303, 0.0162, 0.0098, 0.0087, 0.0077, 0.0063, 0.0049], [0.0106, 0.0099, 0.0093, 0.0087, 0.0068, 0.0056, 0.0056, 0.0053], [0.0723, 0.0438, 0.0235, 0.0104, 0.0076, 0.0072, 0.0072, 0.0067], [0.0244, 0.0122, 0.0115, 0.0115, 0.0102, 0.0095, 0.009, 0.0079], [0.0591, 0.0262, 0.0169, 0.0159, 0.014, 0.0109, 0.0085, 0.008], [0.0123, 0.0095, 0.0095, 0.0084, 0.0079, 0.0079, 0.0079, 0.007], [0.3806, 0.0484, 0.0202, 0.013, 0.009, 0.0084, 0.0084, 0.0079], [0.1594, 0.0334, 0.026, 0.0158, 0.0139, 0.0108, 0.0108, 0.0096], [0.1508, 0.0669, 0.0629, 0.046, 0.0381, 0.0231, 0.018, 0.0124], [0.0353, 0.0353, 0.0312, 0.0275, 0.0275, 0.0259, 0.0259, 0.0201], [0.1464, 0.0692, 0.037, 0.0348, 0.0307, 0.0239, 0.0225, 0.0225], [0.1737, 0.0724, 0.0467, 0.0439, 0.0388, 0.0302, 0.0266, 0.0221], [0.1011, 0.1011, 0.095, 0.0695, 0.0477, 0.0349, 0.0349, 0.0226], [0.1324, 0.0754, 0.0518, 0.0518, 0.043, 0.0295, 0.0277, 0.023], [0.2775, 0.0846, 0.0747, 0.0546, 0.0453, 0.0353, 0.0275, 0.0201], [0.199, 0.1207, 0.1207, 0.0444, 0.0417, 0.0417, 0.0253, 0.0223], [0.2318, 0.1095, 0.0486, 0.0486, 0.026, 0.0244, 0.0216, 0.0123], [0.1854, 0.1056, 0.0499, 0.044, 0.0414, 0.0414, 0.0365, 0.0267], [0.1349, 0.0987, 0.0927, 0.0769, 0.0599, 0.0283, 0.0266, 0.0234], [0.1465, 0.1072, 0.065, 0.0611, 0.0476, 0.0394, 0.0239, 0.0239], [0.0972, 0.0757, 0.0336, 0.0316, 0.0279, 0.0231, 0.0191, 0.018], [0.0407, 0.0382, 0.0359, 0.0262, 0.0247, 0.018, 0.0169, 0.015], [0.0345, 0.0268, 0.0237, 0.0237, 0.0237, 0.0209, 0.0209, 0.0196], [0.0369, 0.0326, 0.0287, 0.027, 0.0238, 0.0197, 0.0154, 0.0144], [0.0348, 0.0326, 0.0288, 0.0224, 0.0224, 0.0113, 0.01, 0.01], [0.1229, 0.0658, 0.0512, 0.0399, 0.0274, 0.0258, 0.0242, 0.0242], [0.1219, 0.1076, 0.0892, 0.0739, 0.0613, 0.0541, 0.0477, 0.0289], [0.2113, 0.0881, 0.0777, 0.0777, 0.0569, 0.0569, 0.0502, 0.0443], [0.2588, 0.0789, 0.0696, 0.045, 0.0373, 0.0373, 0.0329, 0.0329], [0.3447, 0.0467, 0.0387, 0.0266, 0.025, 0.0235, 0.0194, 0.0172], [0.1611, 0.1255, 0.0317, 0.0263, 0.0192, 0.016, 0.015, 0.015], [0.0911, 0.0588, 0.0278, 0.0245, 0.023, 0.0191, 0.0168, 0.0149], [0.4498, 0.2125, 0.0943, 0.0734, 0.0537, 0.0174, 0.0128, 0.0093], [0.3102, 0.1293, 0.1141, 0.0737, 0.0371, 0.0307, 0.012, 0.0106], [0.2371, 0.1052, 0.0529, 0.0412, 0.0364, 0.0342, 0.0235, 0.0172], [0.3512, 0.188, 0.0475, 0.0419, 0.0198, 0.0106, 0.0088, 0.0083]], "ranks": {}}, {"pos": 585, "top": [[" \u2013", " *", ".", " *\u2013", "e", "-*", "\u2013", " \u200b\u200b"], [" *\u2013", ";*", ":*", " *\u201c", "*\u201c.", "\u20ac\u201c", " *", " \u0218"], [" *\u2013", ".\u2013", ";*", "\u2013", "\u2026*", ".", "\u2013and", "\u20ac\u201c"], ["*\u201c.", " Blowjob", " *__", " Shemale", " *\u201c", " cumshot", " milfs", " pornstar"], [" *", " *\u201c", " *&", " *}", " *@", ":*", " *.*", "*\u201c."], [" *\u201c", " *", "*\u201c.", " *.*", " *_", ".\u201d*", " \u200b\u200b", "\ufe0f"], [" *\u201c", " *", "\ufe0f", " *&", ".\u201d*", "\u201d*", " ____", ".\ufffd"], [" *\u201c", "\ufe0f", " *&", ".\u201d*", " *_", " *\"", "*&", ".\ufffd"], [" *\u201c", "\ufe0f", ".\u201d*", " \n    \n", " *&", " *\"", "*&", " *_"], [" *\u201c", "\ufe0f", ":*", " *&", ":&", ".\u201d*", ".&", "\ufffdt"], ["\ufe0f", " *\u201c", ".&", ".\u201d*", ":*", ".\ufffd", ":&", "&nbsp"], [" *\u201c", " *__", " Blowjob", " Shemale", "\ufe0f", " *&", " Kasat", " *_"], [" *\u201c", " Blowjob", "\ufe0f", " *__", "egrator", " Shemale", "alytics", "yt\u00e4"], [" Blowjob", " Shemale", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " Kasat", "egrator", " Kasich", "iril", " Manafort"], [" leveraging", " incentiv", "\u708e\u708e\u590f\u65e5", " envision", " transitioning", "\u8ba4\u771f\u5c65\u884c", "&eacute", " strategically"], [" leveraging", " incentiv", " nuanced", " showcasing", " foundational", " overarching", " utilizing", " transitioning"], [" leveraging", " utilizing", " priorit", " showcasing", " transitioning", " overarching", " incredibly", " savvy"], [" leveraging", " transitioning", " nuanced", " showcasing", " priorit", " strategically", " impactful", " incentiv"], [" leveraging", " strategically", " transitioning", " heavily", " priorit", " strategic", " incredibly", " showcasing"], [" leveraging", " heavily", " strategically", " transitioning", " priorit", " drastically", " shifting", " overarching"], ["<|endoftext|>", " swiftly", " heavily", " strategically", " leveraging", " priorit", " drastically", " transitioning"], [" leveraging", " ;;^", " strategically", " innovation", " strategic", " strategy", " strategies", " impactful"], [" strategically", " heavily", " leveraging", " strategic", " innovative", " innovation", " swiftly", " uniquely"], [" heavily", " strategically", " swiftly", " uniquely", " strategic", " notably", " drastically", " shifting"], [" leveraging", " heavily", " swiftly", " strategically", " overarching", " foundational", " drastically", " uniquely"], [" leveraging", " foundational", " strategically", " impactful", " meticulously", " heavily", " overarching", " incentiv"], [" leveraging", " strategically", " foundational", " heavily", " meticulously", " priorit", " strategic", " impactful"], [" heavily", " \n\n", " strategically", " leveraging", " meticulously", " drastically", "  \n\n", " swiftly"], [" heavily", " leveraging", " strategically", " meticulously", " aggressively", " \n\n", " drastically", " priorit"], [" heavily", " strategically", " aggressively", " priorit", " leveraging", " innovative", " focused", " drastically"], [" heavily", " ,", " strategically", " aggressively", " meticulously", " drastically", " focused", " innovative"], [" heavily", " strategically", " meticulously", " ,", " focused", " aggressively", " innovative", " high"], [" heavily", " meticulously", " strategically", " aggressively", " leveraging", " drastically", " strategic", " crucial"], [" meticulously", " leveraging", " strategically", " heavily", " aggressively", " incentiv", " priorit", " strategic"], [" leveraging", " meticulously", " strategically", " incentiv", " aggressively", " heavily", " priorit", " stealth"], [" leveraging", " meticulously", "\u2011", " incentiv", " strategically", " heavily", " priorit", " aggressively"], [" leveraging", " meticulously", " incentiv", " strategically", " aggressively", " priorit", " leverage", " optimized"], [" leveraging", " meticulously", " incentiv", " leverage", " optimized", " tweaks", " strategically", " aggressively"], [" leveraging", " meticulously", " optimized", " incentiv", " leverage", " tweaks", " tweak", " aggressively"], [" leveraging", " meticulously", " optimized", " strategically", "\u2011", " incentiv", " priorit", " aggressively"], [" leveraging", " optimized", " meticulously", " aggressively", " proactive", " strategically", " priorit", " relentless"], [" leveraging", " optimized", " meticulously", " optimizing", " aggressively", " proactive", " strategy", " strategically"], [" leveraging", " optimized", " meticulously", " proactive", " aggressively", " optimization", " optimizing", " strategically"], [" optimized", " proactive", " automated", " leveraging", " aggressively", " meticulously", " aggressive", " strategically"], [" optimized", " aggressively", " automated", " aggressive", " meticulously", " leveraging", " modular", " selective"], [" aggressively", " meticulously", " optimized", " aggressive", " strict", " automated", "\u4e25\u683c\u63a7\u5236", " selective"], [" optimized", " meticulously", " automated", " proactive", " leveraging", " aggressive", " Automated", " aggressively"], [" Controlled", " Strict", " Multiple", " meticulously", " Forced", " Explicit", " Automatic", "\u5f3a\u5236"], [" Controlled", "\u4e25\u683c\u63a7\u5236", " Forced", " Strict", " stringent", " proactive", " Restricted", " Automated"], [" Controlled", "\u4e25\u683c\u63a7\u5236", " Strict", " Mandatory", " Explicit", " stringent", "\u5f3a\u5236", " strict"], [" Controlled", "\u5f3a\u5236", " Strict", " Mandatory", " Automated", "\u4e25\u683c\u63a7\u5236", " Explicit", " stringent"], [" **", " **:**", " **:", " Strict", " Massive", " **+", " Static", " Lifecycle"], [" **", " **:**", " **:", " **+", " reusable", " Mandatory", "\u5f3a\u5236", " Massive"], [" **", " Custom", " **:**", " Explicit", " **+", " **:", "\u5f3a\u5236", " Massive"], [" **", " Explicit", " Custom", " Mandatory", "\u5f3a\u5236", " **:**", " **+", " mandatory"], [" aggressive", " **", " aggressively", " Mandatory", "\u5f3a\u5236", " Massive", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " **:**"], [" aggressive", " Strict", " **", " aggressively", "Strict", " Custom", " Manual", " strict"], [" aggressive", " aggressively", " agres", " agress", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " aggress", " aggression", " \u0430\u0433\u0440\u0435\u0441\u0441"], [" aggressive", " agres", " aggressively", " agress", " \u0430\u0433\u0440\u0435\u0441\u0441\u0438\u0432", " aggress", " Ag", " aggression"], [" aggressive", " Strict", " Object", "Strict", " **", " strict", " object", " aggressively"], [" aggressive", " Object", " Strict", " **", " object", " Mandatory", " Custom", " Pool"], [" **", " Object", " aggressive", " object", " Strict", " Custom", " Mandatory", " Pool"], [" Object", "  ", " object", "Object", " **", " Custom", " aggressive", " Strict"]], "p": [[0.4609, 0.1165, 0.0853, 0.0355, 0.026, 0.0139, 0.0115, 0.0115], [0.2708, 0.1202, 0.006, 0.005, 0.005, 0.005, 0.0036, 0.0036], [0.4284, 0.1227, 0.0699, 0.0452, 0.0352, 0.0213, 0.0166, 0.0147], [0.0228, 0.0201, 0.013, 0.0115, 0.0095, 0.0089, 0.0061, 0.0061], [0.4584, 0.2166, 0.0312, 0.0214, 0.0214, 0.0147, 0.0101, 0.0084], [0.4119, 0.028, 0.028, 0.0117, 0.0103, 0.0103, 0.0085, 0.0085], [0.396, 0.0733, 0.0503, 0.0325, 0.021, 0.0174, 0.0154, 0.0112], [0.4873, 0.0795, 0.0189, 0.0177, 0.0147, 0.0138, 0.013, 0.0108], [0.8407, 0.0136, 0.012, 0.0099, 0.0082, 0.0073, 0.006, 0.0057], [0.1394, 0.0311, 0.0166, 0.0138, 0.0107, 0.0095, 0.0069, 0.0054], [0.5581, 0.1502, 0.071, 0.0296, 0.0216, 0.0169, 0.0158, 0.0102], [0.1353, 0.0267, 0.0118, 0.0059, 0.0059, 0.0049, 0.0044, 0.0041], [0.0115, 0.0095, 0.007, 0.0048, 0.0037, 0.0037, 0.0033, 0.0023], [0.009, 0.004, 0.0029, 0.0027, 0.0021, 0.0021, 0.0016, 0.0016], [0.0055, 0.0033, 0.0031, 0.0028, 0.0026, 0.0023, 0.002, 0.002], [0.0401, 0.0084, 0.0074, 0.0074, 0.0058, 0.0058, 0.0054, 0.0054], [0.0328, 0.0107, 0.0078, 0.0073, 0.0069, 0.0057, 0.0057, 0.0054], [0.0734, 0.0164, 0.0077, 0.0077, 0.0053, 0.0044, 0.0034, 0.0032], [0.0398, 0.0156, 0.0156, 0.0121, 0.0114, 0.0078, 0.0069, 0.0069], [0.0215, 0.0139, 0.013, 0.0122, 0.009, 0.0079, 0.007, 0.0062], [0.0597, 0.0161, 0.0151, 0.0086, 0.0076, 0.0052, 0.0046, 0.0043], [0.012, 0.0064, 0.005, 0.0044, 0.0044, 0.0037, 0.003, 0.0028], [0.0116, 0.008, 0.007, 0.0066, 0.0058, 0.0052, 0.0048, 0.0048], [0.0135, 0.0105, 0.0082, 0.006, 0.006, 0.005, 0.005, 0.0041], [0.0136, 0.0128, 0.0113, 0.0094, 0.0073, 0.0073, 0.006, 0.0047], [0.0504, 0.0112, 0.0106, 0.0077, 0.0077, 0.0077, 0.006, 0.0057], [0.0638, 0.0183, 0.0142, 0.0118, 0.0118, 0.0086, 0.0081, 0.0067], [0.0357, 0.0216, 0.0203, 0.0149, 0.0116, 0.0096, 0.009, 0.0085], [0.0384, 0.0318, 0.0281, 0.0133, 0.0125, 0.0117, 0.011, 0.011], [0.0514, 0.0228, 0.0147, 0.0147, 0.0138, 0.0108, 0.0108, 0.0101], [0.0673, 0.0205, 0.0181, 0.015, 0.015, 0.0103, 0.0103, 0.008], [0.0618, 0.0242, 0.0147, 0.0138, 0.0122, 0.0101, 0.0074, 0.0065], [0.0512, 0.0452, 0.0374, 0.0156, 0.0147, 0.0095, 0.0084, 0.0084], [0.0546, 0.0482, 0.0353, 0.0214, 0.0201, 0.013, 0.0108, 0.0074], [0.0497, 0.0466, 0.0126, 0.0104, 0.0092, 0.0081, 0.0046, 0.0046], [0.0519, 0.0488, 0.0158, 0.0116, 0.0102, 0.0075, 0.0066, 0.0055], [0.0841, 0.051, 0.0121, 0.0083, 0.0083, 0.0065, 0.0065, 0.0065], [0.1245, 0.0404, 0.0131, 0.0109, 0.0109, 0.0102, 0.0085, 0.0075], [0.0855, 0.043, 0.0131, 0.0109, 0.009, 0.009, 0.009, 0.009], [0.063, 0.0407, 0.0181, 0.0124, 0.0117, 0.011, 0.011, 0.0091], [0.0802, 0.0295, 0.0295, 0.0158, 0.0139, 0.0123, 0.0109, 0.0102], [0.0467, 0.0363, 0.0161, 0.0151, 0.0142, 0.0134, 0.0118, 0.0118], [0.0456, 0.0456, 0.0215, 0.0178, 0.0158, 0.0139, 0.0131, 0.0131], [0.0918, 0.036, 0.028, 0.0232, 0.0205, 0.017, 0.017, 0.0141], [0.0687, 0.0269, 0.0253, 0.0197, 0.0197, 0.0174, 0.0163, 0.0153], [0.0386, 0.0386, 0.034, 0.03, 0.0282, 0.0265, 0.0206, 0.0151], [0.0375, 0.0311, 0.0311, 0.0275, 0.0214, 0.0214, 0.0167, 0.0167], [0.0384, 0.0319, 0.0299, 0.0281, 0.0206, 0.0193, 0.0182, 0.0171], [0.0398, 0.031, 0.0156, 0.0138, 0.0121, 0.0114, 0.0107, 0.0101], [0.0839, 0.0309, 0.024, 0.0146, 0.0129, 0.0114, 0.0107, 0.01], [0.0248, 0.0193, 0.016, 0.0151, 0.0125, 0.0103, 0.0103, 0.0086], [0.1305, 0.0451, 0.0374, 0.0177, 0.0146, 0.0146, 0.0114, 0.0107], [0.4394, 0.0281, 0.0248, 0.0181, 0.017, 0.017, 0.015, 0.0141], [0.5809, 0.0225, 0.0225, 0.0187, 0.0165, 0.0121, 0.0113, 0.0094], [0.518, 0.0242, 0.0228, 0.0214, 0.0177, 0.0156, 0.0107, 0.0107], [0.6364, 0.1609, 0.0461, 0.0132, 0.0066, 0.0066, 0.0049, 0.0036], [0.6783, 0.081, 0.0491, 0.0383, 0.0205, 0.0181, 0.011, 0.0097], [0.9835, 0.0066, 0.0052, 0.0017, 0.0017, 0.0009, 0.0001, 0.0001], [0.9871, 0.0046, 0.004, 0.0015, 0.0013, 0.0009, 0.0001, 0.0001], [0.4833, 0.2015, 0.084, 0.0397, 0.035, 0.0309, 0.0146, 0.01], [0.4429, 0.1629, 0.0638, 0.0497, 0.0321, 0.0301, 0.0221, 0.0111], [0.8046, 0.0703, 0.0401, 0.0122, 0.0089, 0.0065, 0.0045, 0.0037], [0.6273, 0.0621, 0.0484, 0.0354, 0.0276, 0.0259, 0.0259, 0.0054]], "ranks": {}}, {"pos": 586, "top": [["  \n", "  ", "   \n", "\u2026..", ".", "\u00a0\u00a0", "\u2013", "\u2026."], ["   \n", "  \r\n", "  ", "  \n", "'gc", "\ufffd\ufffd", "\u7687\u5c9b", " Harbor"], ["\u2013", ".", ",", " \u2013", "\u2026..", "\u2026.", ";", " \u200b\u200b"], [" milfs", " Blowjob", " ;;^", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " cumshot", "\ufffd\ufffd", "\u0e40\u0e2a\u0e49\u0e19\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e02\u0e2d\u0e14", " Shemale"], ["  ", "   \n", "  \n", " theater", " canceled", " =>", " neighbor", " jewelry"], ["  ", "   \n", " \u200b\u200b", " \u062c\u062f\u064b\u0627", "  \t\n", "  \n", " theater", "\u0433\u0438\u043d\u0430\u043b"], ["  \n", "   \n", "  ", "      \n", "  \r\n", "  \t\n", " .....", "  \n    \n"], ["   \n", "  \n", "  ", "  \r\n", "    \n", "   \r\n", "      \n", "  \t\n"], ["   \n", "  \n", "    \n", "   \n\n", "  \n    \n", "  ", "  \n\n\n", "      \n"], [",", "  \r\n", "\u0631\u0627\u0645\u0629", "\ufffd\ufffd", "  \n", "  ", "\u00a0\u00a0", "   \n"], [" ", ",", "  ", "  \n", "\u00a0", "\u00a0\u00a0", ".", " @"], [" backup", "\ufffd\ufffd", "\u5f3a\u9669", "\u591a\u5143\u5316\u7684", " hybrid", " leverage", " proactive", "\u54b1\u5011"], [" diverse", " hybrid", " mechanisms", " backup", " systemic", " regional", " leverage", " proactive"], [" transformative", " systemic", " impactful", " backups", " proactive", " hybrid", " leverage", " backup"], [" critically", " strategically", " aggressively", " strategic", " tactical", " diverse", " advanced", " strategies"], [" strategically", " diverse", " strategic", " aggressively", " effortlessly", " savvy", " strategies", " showcase"], [" strategically", " diverse", " aggressively", " strategic", " util", " potentially", " effortlessly", " myriad"], [" strategically", " aggressively", " strategic", " rapidly", " tactical", " critically", " strategies", " complex"], [" aggressively", " strategically", " myriad", " strategic", " critically", " rapidly", "-esque", " tactical"], [" rapidly", " myriad", " aggressively", " swiftly", " strategically", " largely", " heavily", " critically"], ["<|endoftext|>", " \n\n", " swiftly", " myriad", " rapidly", " heavily", " continually", " largely"], [" rapidly", " strategically", " aggressively", " heavily", " swiftly", " myriad", " uniquely", " largely"], [" ``", " rapidly", " ''", " heavily", " fully", " commercial", " aggressively", " notably"], [" ,", " much", " rapidly", " fully", " more", " heavily", " ultimately", " over"], [" heavily", " \n\n", " much", " rapidly", " largely", " ultimately", " ,", " over"], [" heavily", " much", " ultimately", " rapidly", " ,", " ``", " largely", " rather"], [" reuse", " recycling", " production", " systems", " storage", " resources", " ,", " heavily"], [" ,", "\n\n", " '", " heavily", " ultimately", " re", " \n\n", " various"], [" systems", " reuse", " heavily", " multiple", " ultimately", " recycling", " re", " storage"], [" ...", " reuse", " reusable", " reused", " storage", " **", " systems", " recycling"], [" ...", " systems", " reuse", " use", " using", " work", " multiple", " storage"], [" ...", " ,", " re", " use", " [...]", " work", " using", " @"], [" ...", " use", " re", " using", " ,", " systems", " many", " non"], [" systems", " storage", " modular", " reuse", " multiple", " reusable", " use", " system"], [" reuse", " modular", " systems", " reusable", " storage", " methodologies", " stash", " multiple"], [" reuse", " reusable", " modular", " recycling", " reused", " systems", " algorithms", " recycled"], [" reuse", " reusable", " reused", "Reuse", " recycling", " recycled", "\u590d\u7528", " recycl"], [" reuse", " reusable", " reused", "Reuse", " recycling", " recycled", " recycle", " recycl"], [" reuse", " reusable", " recycling", " reused", " recycled", " recycle", "Reuse", " recycl"], [" reuse", " reusable", " recycling", " recycle", " recycled", " reused", " Recycling", "Reuse"], [" reuse", " reusable", " recycling", " recycle", " Recycling", " recycled", " reused", " recycl"], [" reuse", " reusable", " recycling", " recycle", " reused", " recycled", " Recycling", " recycl"], [" reusable", " reuse", " recycling", " recycle", " Recycling", " reused", " recycled", " pools"], [" reusable", " reuse", " recycle", " recycling", " pools", " Recycling", " reused", " caches"], [" reusable", " reuse", " recycle", " recycling", " Recycling", " pools", " reused", " recycled"], [" reusable", " reuse", " recycle", " recycling", " Recycling", " pools", " caches", " recycled"], [" reusable", " reuse", " recycle", " recycling", " Recycling", " caches", " reused", " pools"], [" reusable", " reuse", " recycle", " Recycling", " caches", " recycling", " reused", " pools"], [" reusable", " reuse", " caches", " recycle", " Recycling", " pools", "Reusable", " reused"], [" reusable", " reuse", " Recycling", "Reusable", " caches", " recycle", " Lifecycle", " pools"], [" reusable", "Reusable", " reuse", " Recycling", " caches", "reuse", "\u957f\u671f\u4f7f\u7528", "Reuse"], [" reusable", "Reusable", " Recycling", " Lifecycle", " reuse", " Static", " recycle", "Reuse"], [" reusable", "Reusable", " reuse", "Reuse", "reuse", " reused", "\u590d\u7528", " Recycling"], ["Reusable", " reusable", " reuse", "Reuse", "reuse", " Recycling", " reused", " recycle"], ["Reusable", " allocator", " reusable", " Allocator", "\u6c60", " Allocation", " reuse", "Allocator"], ["\u6c60", " pools", "Reusable", " allocator", " Allocator", " pooling", " allocations", " IDisposable"], ["\u6c60", " pools", " pool", " Pool", " pooling", "pool", "Pool", " pooled"], ["\u6c60", " pool", " pools", " Pool", " pooling", "pool", " pooled", "Pool"], ["\u6c60", " pool", " Pool", " pools", " pooling", " pooled", "Pool", "pool"], [" pools", " pooling", " pool", " pooled", " Pool", " Object", " object", "\u6c60"], [" Object", " pooling", " pooled", " pools", " object", " Pool", " pool", "Pooling"], [" Object", " object", "-object", "Object", " Pool", " pooling", "object", " **"], [" Object", " **", " object", "Object", "-object", "object", " Custom", " aggressive"]], "p": [[0.3905, 0.3905, 0.0987, 0.025, 0.022, 0.0118, 0.0063, 0.0063], [0.0626, 0.0404, 0.0357, 0.0335, 0.0035, 0.0018, 0.0018, 0.0017], [0.4226, 0.2563, 0.1372, 0.0505, 0.0393, 0.0136, 0.0128, 0.0106], [0.0074, 0.0048, 0.0025, 0.0022, 0.0021, 0.002, 0.0019, 0.0017], [0.0501, 0.0135, 0.0041, 0.0039, 0.0034, 0.0027, 0.0025, 0.0025], [0.1259, 0.1044, 0.0141, 0.0059, 0.0059, 0.0049, 0.0025, 0.002], [0.4543, 0.2933, 0.0615, 0.0137, 0.0121, 0.0061, 0.0045, 0.0029], [0.786, 0.0606, 0.0324, 0.0209, 0.0093, 0.0064, 0.0056, 0.0025], [0.5546, 0.1092, 0.0428, 0.0402, 0.0333, 0.0276, 0.0139, 0.0108], [0.0203, 0.0027, 0.0027, 0.0026, 0.0024, 0.0024, 0.0021, 0.0021], [0.3079, 0.2253, 0.0391, 0.0237, 0.0237, 0.0223, 0.0127, 0.0093], [0.0023, 0.0017, 0.0014, 0.0012, 0.0012, 0.001, 0.0009, 0.0008], [0.0021, 0.0021, 0.0019, 0.0019, 0.0018, 0.0016, 0.0014, 0.0013], [0.0016, 0.0016, 0.0011, 0.0011, 0.0011, 0.001, 0.001, 0.0009], [0.004, 0.004, 0.0038, 0.0036, 0.0023, 0.0022, 0.002, 0.0017], [0.0048, 0.0037, 0.0033, 0.0031, 0.002, 0.0019, 0.0018, 0.0016], [0.006, 0.0044, 0.0036, 0.0034, 0.0034, 0.0032, 0.0028, 0.0028], [0.0033, 0.0029, 0.0023, 0.0021, 0.0018, 0.0014, 0.0013, 0.0012], [0.0049, 0.0046, 0.0025, 0.0022, 0.0022, 0.0021, 0.0018, 0.0018], [0.0063, 0.0063, 0.0059, 0.0055, 0.0038, 0.0034, 0.0032, 0.0023], [0.8175, 0.0028, 0.0016, 0.0013, 0.001, 0.0007, 0.0007, 0.0007], [0.0062, 0.0046, 0.004, 0.0035, 0.0029, 0.0022, 0.002, 0.0019], [0.0798, 0.0148, 0.0061, 0.0054, 0.0051, 0.0037, 0.0035, 0.0033], [0.0148, 0.0123, 0.0074, 0.0066, 0.0066, 0.0062, 0.0062, 0.0062], [0.017, 0.017, 0.017, 0.011, 0.0075, 0.0075, 0.0066, 0.0052], [0.0205, 0.011, 0.0085, 0.0085, 0.0071, 0.0066, 0.0059, 0.0052], [0.0115, 0.0108, 0.009, 0.0084, 0.0079, 0.0079, 0.0062, 0.0062], [0.0624, 0.0379, 0.0115, 0.0115, 0.0109, 0.009, 0.007, 0.0062], [0.0124, 0.0124, 0.0117, 0.011, 0.0103, 0.0097, 0.0075, 0.0067], [0.4419, 0.0438, 0.0161, 0.0142, 0.0118, 0.0104, 0.0104, 0.0071], [0.4264, 0.0165, 0.0121, 0.0114, 0.0078, 0.0078, 0.0065, 0.0057], [0.7647, 0.0085, 0.0062, 0.0035, 0.0033, 0.0026, 0.0026, 0.0021], [0.0493, 0.0206, 0.0193, 0.017, 0.0125, 0.0086, 0.0076, 0.0067], [0.0513, 0.0425, 0.0275, 0.0167, 0.0167, 0.0138, 0.0079, 0.0074], [0.0366, 0.0366, 0.0303, 0.0251, 0.0208, 0.0184, 0.0184, 0.0173], [0.1237, 0.0662, 0.0354, 0.0294, 0.0243, 0.0178, 0.0167, 0.0148], [0.3749, 0.1468, 0.0836, 0.054, 0.0349, 0.0255, 0.0128, 0.0128], [0.4587, 0.1687, 0.0797, 0.0312, 0.0202, 0.0147, 0.0084, 0.0065], [0.4399, 0.1428, 0.0675, 0.0559, 0.0361, 0.0219, 0.0182, 0.016], [0.39, 0.2087, 0.0721, 0.0496, 0.0438, 0.0411, 0.0234, 0.0171], [0.286, 0.1531, 0.0929, 0.0529, 0.0467, 0.0439, 0.0321, 0.0283], [0.4487, 0.2402, 0.078, 0.0607, 0.0325, 0.0287, 0.0223, 0.012], [0.4054, 0.3157, 0.0704, 0.0704, 0.0229, 0.0202, 0.0178, 0.0095], [0.3686, 0.1973, 0.0875, 0.0499, 0.0388, 0.0284, 0.0172, 0.0152], [0.3855, 0.1821, 0.1104, 0.086, 0.0262, 0.0246, 0.0231, 0.0217], [0.4573, 0.1156, 0.09, 0.0701, 0.0353, 0.0331, 0.0242, 0.0189], [0.6019, 0.1343, 0.034, 0.0182, 0.0182, 0.0133, 0.0125, 0.0104], [0.4187, 0.12, 0.0285, 0.0208, 0.0184, 0.0162, 0.0143, 0.0126], [0.4674, 0.0812, 0.0493, 0.0248, 0.0219, 0.0141, 0.0141, 0.0125], [0.2433, 0.0397, 0.0351, 0.0351, 0.0256, 0.02, 0.0137, 0.0107], [0.1739, 0.1634, 0.0302, 0.0235, 0.0134, 0.0118, 0.0104, 0.0092], [0.1118, 0.0818, 0.0562, 0.0411, 0.0301, 0.022, 0.0183, 0.0161], [0.4388, 0.3872, 0.0762, 0.0462, 0.015, 0.008, 0.0063, 0.0063], [0.4681, 0.3645, 0.0633, 0.0435, 0.0141, 0.0052, 0.004, 0.004], [0.2042, 0.159, 0.1403, 0.0663, 0.0516, 0.0355, 0.0355, 0.0215], [0.2138, 0.0891, 0.0786, 0.054, 0.0477, 0.0477, 0.0371, 0.0328], [0.5927, 0.1167, 0.1167, 0.0909, 0.0379, 0.0158, 0.0075, 0.0051], [0.503, 0.185, 0.1441, 0.099, 0.0364, 0.0152, 0.0056, 0.0056], [0.3504, 0.2408, 0.1655, 0.0886, 0.0609, 0.0419, 0.012, 0.012], [0.2992, 0.1815, 0.1601, 0.1601, 0.0971, 0.0217, 0.0191, 0.0116], [0.2828, 0.1715, 0.1514, 0.104, 0.0918, 0.0631, 0.0434, 0.0091], [0.7455, 0.1663, 0.0094, 0.0073, 0.0061, 0.0057, 0.005, 0.0027], [0.6486, 0.2106, 0.0825, 0.0303, 0.0027, 0.0013, 0.001, 0.0009]], "ranks": {}}, {"pos": 587, "top": [["s", " \u2013", "**\u2013", "**.", "er", " **\u2013", "**:", "\u2013"], ["s", "**\u2013", " **\u2013", " **", " \u2013**", "**.", "-**", "**,"], ["s", "**\u2013", "\u2026**", " **\u2013", "**.", " \u2013**", "**\u3002", "**,"], ["\uff1f**", "\u300d**", " **\u300c", " **\u00ab", " \u00bb**", "\u3002**", " **:", "\u2019**"], ["s", " **", "-**", ">**", " **.", "**\u3002", "**.", " **#"], ["-**", " **", "**.", "\uff1f**", " **.", "**\u3002", "\u2019**", "\uff01**"], [" **", "**\u3002", "s", "\uff1f**", "\u2019**", "**", "-**", "**."], [" **", "-**", "...**", "\uff1f**", "**\u3002", "**", "**.", "s"], ["...**", "**.", "**", "**\u3002", " **", "!**", "-**", "**!"], ["s", "-**", "\u2026**", "...**", "!**", " **", "**.", ".**"], ["s", "...**", "\u2026**", " **", ".**", "a", "**", "er"], [" **", "...**", "-**", " **#", "s", " **\u00ab", " **'", "\u2026**"], [" **", "-**", "s", "...**", " **\u00ab", "\u2026**", " **#", " **\u2013"], [" **", "s", "-**", "...**", " **\u00ab", " **\u2013", "\u2026**", " **#"], ["s", " **", "er", "a", "o", "ing", "...**", "-**"], ["s", " **", "er", "ing", "a", "o", " showcasing", "-**"], ["s", " **", "...**", "er", "a", "ing", " tweaks", "o"], ["s", " **", "...**", "-**", " **\u2013", " **\u00ab", " **#", "**-"], ["s", "...**", " **", "a", "er", " **#", " tweaks", " priorit"], ["s", "a", " priorit", "er", " myriad", " burgeoning", " strategic", " transitioning"], ["s", "a", "<|endoftext|>", " myriad", "er", " burgeoning", " swiftly", "o"], [" ;;^", " strategic", "s", "\u5162\u5162\u4e1a\u4e1a", "\u4e0d\u53ef\u601d\u8bae", " impact", "\u52c7\u5f80\u76f4\u524d", " tweaks"], ["s", " impact", " strategic", " mundane", " critical", "\u4e0d\u53ef\u601d\u8bae", " priorit", " avoidance"], ["s", " critical", " high", " impact", "a", " ultimately", " rapidly", " fully"], [" \n\n", " \r\n\r\n", " priorit", " impact", "s", " myriad", " swiftly", "\r\n\r\n"], [" impact", " priorit", " experimentation", " strategic", " **", " modular", " heavily", " ;;^"], [" priorit", " modular", " impact", " experimentation", " **", " mundane", " heavily", " strategic"], [" \n\n", "\n\n", " heavily", " rapidly", " ultimately", " priorit", " over", " high"], [" priorit", " \n\n", " high", " heavily", " modular", " impact", " rapid", " systems"], [" **", " priorit", " modular", " infrastructure", " systems", " high", " impact", " strategic"], [" **", " priorit", " high", " systems", " heavily", " critical", " massive", " strategic"], [" high", " critical", " **", " heavily", " non", " over", " free", " power"], [" high", " priorit", " non", " critical", " massive", " power", " modular", " strategic"], [" modular", " automation", " priorit", " strategic", " systems", " avoidance", " infrastructure", " tactical"], [" priorit", " modular", " automation", " avoidance", " elite", " **", " strategic", " infrastructure"], [" avoidance", "\u2026**", " suppression", "Avoid", " Avoid", " cleanup", " priorit", "\u2011"], [" avoidance", " Avoid", "Avoid", " priorit", " suppression", "avoid", " preempt", " modular"], [" avoidance", " Avoid", "Avoid", " priorit", " suppression", " Tactical", " modular", " cleanup"], [" avoidance", " Avoid", " cleanup", " suppression", " priorit", " preempt", " Controlled", " scav"], [" cleanup", " scav", " garbage", " avoidance", " Cleanup", " Avoid", " Clean", " Controlled"], [" cleanup", " avoidance", " Avoid", " scav", " garbage", " Clean", " Cleanup", " Controlled"], [" cleanup", " avoidance", " Control", " Controlled", " Avoid", " optimized", " scheduling", " garbage"], [" Controlled", " avoidance", " Control", " periodic", " Avoid", " scheduling", " Priority", " optimized"], [" Controlled", " Control", " Avoid", " Manual", " Automatic", " Priority", " Automated", "Control"], [" Controlled", " Control", " controlled", " control", " Manual", " Minimal", " Restricted", " avoidance"], [" Controlled", " Control", " Restricted", " Manual", " controlled", " Minimal", " Custom", " Zero"], [" Controlled", " Control", " Restricted", " Minimal", " Ambient", " Manual", " Explicit", " Zero"], [" Controlled", " Control", " Manual", " Restricted", " Explicit", " Zero", " Minimal", " Ambient"], [" Controlled", " Restricted", " Manual", "-Control", " Control", " Ambient", " Explicit", " Minimal"], [" Controlled", "-Control", " Manual", " Control", " Restricted", " Ambient", " Silent", " Explicit"], [" Controlled", "-Control", " Ambient", " Shutdown", " Explicit", " Manual", " Restricted", " Suppress"], [" Controlled", " Manual", " Ambient", " Custom", " Suppress", " Shutdown", " Explicit", " Runtime"], [" Controlled", " Manual", " Custom", " Shutdown", " Explicit", " Runtime", " Suppress", " Allocator"], [" Manual", " Custom", " Explicit", " Controlled", " manual", "Manual", "\u624b\u52a8", "manual"], [" Allocation", " Manual", " Allocator", " allocator", " Custom", "alloc", " Explicit", " GC"], [" GC", " Manual", " Memory", "GC", " garbage", " IDisposable", " ThreadPool", " Recycling"], [" GC", "GC", " Manual", "(gc", " manual", ".gc", "_gc", "gc"], [" GC", " Manual", "GC", " pooled", " pooling", " Pool", " pool", " pools"], [" GC", " Manual", " pooled", " Pool", " pooling", " aggressive", "GC", " pool"], [" pooled", " GC", " Object", " pooling", " Pool", " Hybrid", " Manual", " pool"], [" Object", " GC", " pooled", " Hybrid", " deterministic", " Custom", " object", " Manual"], [" Object", " object", " Custom", " pooled", " GC", "Object", " deterministic", " Hybrid"], ["Object", " Object", " object", "Custom", "Manual", " Custom", "object", " Manual"]], "p": [[0.9988, 0.0005, 0.0003, 0.0002, 0.0, 0.0, 0.0, 0.0], [0.4558, 0.2764, 0.048, 0.0374, 0.033, 0.0291, 0.02, 0.0095], [0.5494, 0.2595, 0.0656, 0.0579, 0.031, 0.0069, 0.0069, 0.0025], [0.2232, 0.1354, 0.1272, 0.0771, 0.0235, 0.0235, 0.0221, 0.0195], [0.6204, 0.0654, 0.0449, 0.035, 0.035, 0.035, 0.0273, 0.0165], [0.2908, 0.1998, 0.0573, 0.0505, 0.0505, 0.0446, 0.0347, 0.0347], [0.2851, 0.1188, 0.0817, 0.0721, 0.0495, 0.0495, 0.0437, 0.034], [0.2476, 0.2185, 0.1032, 0.0626, 0.0552, 0.043, 0.0335, 0.0296], [0.2455, 0.1489, 0.0797, 0.0797, 0.0703, 0.0548, 0.0427, 0.0228], [0.7952, 0.0576, 0.0272, 0.0187, 0.0165, 0.0113, 0.0069, 0.0069], [0.9358, 0.0249, 0.0071, 0.0049, 0.0038, 0.0036, 0.0026, 0.0025], [0.7847, 0.073, 0.0568, 0.0304, 0.0047, 0.0039, 0.0039, 0.0036], [0.7901, 0.0572, 0.0505, 0.0393, 0.0164, 0.0073, 0.0057, 0.0037], [0.3534, 0.2014, 0.1078, 0.0478, 0.0329, 0.0187, 0.0176, 0.01], [0.9535, 0.01, 0.0064, 0.0041, 0.001, 0.0007, 0.0006, 0.0004], [0.9434, 0.0036, 0.0036, 0.0021, 0.0019, 0.0005, 0.0004, 0.0003], [0.9571, 0.0032, 0.0009, 0.0008, 0.0006, 0.0005, 0.0003, 0.0003], [0.4035, 0.0453, 0.0138, 0.0101, 0.0084, 0.0069, 0.0058, 0.0048], [0.5775, 0.0186, 0.0077, 0.0064, 0.0027, 0.0027, 0.0025, 0.0021], [0.2461, 0.0079, 0.0031, 0.0026, 0.0024, 0.0023, 0.0023, 0.0021], [0.0765, 0.0299, 0.0067, 0.003, 0.0028, 0.0023, 0.0023, 0.002], [0.0029, 0.0019, 0.0018, 0.0018, 0.0018, 0.0018, 0.0016, 0.0016], [0.0041, 0.0032, 0.0022, 0.002, 0.0017, 0.0015, 0.0014, 0.0013], [0.0047, 0.0022, 0.0022, 0.0022, 0.0022, 0.0021, 0.0018, 0.0017], [0.0166, 0.0051, 0.0024, 0.0024, 0.0024, 0.0022, 0.002, 0.0018], [0.0043, 0.0034, 0.0026, 0.0023, 0.0023, 0.0022, 0.0019, 0.0018], [0.004, 0.0029, 0.0027, 0.0021, 0.0019, 0.0016, 0.0016, 0.0015], [0.025, 0.0126, 0.0041, 0.0036, 0.0032, 0.0026, 0.0026, 0.0025], [0.0087, 0.0056, 0.0041, 0.0041, 0.0039, 0.0036, 0.0032, 0.003], [0.0192, 0.0149, 0.0062, 0.0048, 0.0045, 0.0043, 0.0043, 0.0038], [0.0177, 0.0079, 0.0065, 0.0057, 0.0048, 0.0042, 0.0042, 0.0037], [0.0107, 0.0069, 0.0061, 0.0054, 0.0048, 0.0045, 0.0045, 0.0045], [0.0079, 0.0051, 0.0048, 0.0048, 0.0045, 0.0045, 0.0045, 0.0042], [0.0174, 0.0127, 0.0105, 0.006, 0.0056, 0.0056, 0.0056, 0.005], [0.0158, 0.0148, 0.0109, 0.0085, 0.0058, 0.0055, 0.0051, 0.0051], [0.0376, 0.0292, 0.0201, 0.0147, 0.013, 0.0108, 0.0101, 0.0089], [0.087, 0.0411, 0.0341, 0.0151, 0.0142, 0.0111, 0.0092, 0.0076], [0.0814, 0.0675, 0.0248, 0.0117, 0.0117, 0.0076, 0.0071, 0.0071], [0.0635, 0.03, 0.0234, 0.0171, 0.0117, 0.0117, 0.0097, 0.0091], [0.1281, 0.0605, 0.0471, 0.0252, 0.0209, 0.0135, 0.0135, 0.0127], [0.1019, 0.0546, 0.0331, 0.0292, 0.0274, 0.0214, 0.0189, 0.0122], [0.0422, 0.0396, 0.0372, 0.035, 0.0187, 0.0129, 0.0121, 0.0114], [0.1234, 0.0661, 0.0427, 0.0243, 0.0228, 0.0115, 0.0115, 0.0095], [0.3416, 0.118, 0.0117, 0.011, 0.0103, 0.0086, 0.008, 0.008], [0.4514, 0.1215, 0.0106, 0.01, 0.0083, 0.0078, 0.0069, 0.0047], [0.522, 0.0966, 0.0139, 0.0102, 0.0096, 0.0096, 0.0066, 0.0048], [0.4796, 0.0538, 0.012, 0.0113, 0.0113, 0.0106, 0.0078, 0.0068], [0.5409, 0.0536, 0.0325, 0.0197, 0.012, 0.0105, 0.0093, 0.0064], [0.528, 0.028, 0.0263, 0.0218, 0.0218, 0.0124, 0.0066, 0.0062], [0.4343, 0.0379, 0.0179, 0.0179, 0.0102, 0.0085, 0.008, 0.007], [0.2657, 0.036, 0.016, 0.0097, 0.0091, 0.0085, 0.0075, 0.0075], [0.1401, 0.0401, 0.019, 0.0167, 0.0108, 0.0101, 0.0095, 0.0095], [0.1985, 0.0534, 0.0223, 0.0144, 0.0127, 0.0127, 0.0119, 0.0105], [0.3749, 0.0786, 0.0612, 0.0448, 0.0448, 0.0212, 0.0187, 0.0155], [0.1246, 0.1246, 0.11, 0.052, 0.0315, 0.0296, 0.0278, 0.0261], [0.6589, 0.0421, 0.0372, 0.0328, 0.0199, 0.0199, 0.0128, 0.01], [0.9001, 0.0575, 0.0272, 0.0017, 0.0014, 0.0014, 0.0014, 0.0012], [0.7934, 0.0507, 0.0395, 0.0349, 0.0165, 0.0165, 0.0088, 0.0037], [0.3994, 0.1665, 0.1297, 0.101, 0.0289, 0.0225, 0.0199, 0.0175], [0.2339, 0.2065, 0.1608, 0.076, 0.0592, 0.0522, 0.0433, 0.015], [0.5339, 0.0638, 0.0599, 0.0466, 0.0341, 0.0301, 0.0283, 0.0283], [0.6855, 0.0341, 0.025, 0.022, 0.0207, 0.0151, 0.0134, 0.0134], [0.6934, 0.2891, 0.0056, 0.0014, 0.001, 0.0008, 0.0007, 0.0004]], "ranks": {}}, {"pos": 588, "top": [[".", ",", "a", "<|endoftext|>", "o", ";", " ", "?"], ["ly", "  ", "ally", "a", ",", "ively", ".", "  \n"], [".", ",", "\u2026", "a", "?", "\u3002", ";", "ly"], [" ``", "\ufffd\ufffd", " ``(", "ively", " **\u25cb", "``", "\u3008", "abilia"], ["\ufffd\ufffd", "ively", "ally", "arity", "ly", "izer", "auf", "ually"], ["\ufffd\ufffd", "ively", "getter", "lijke", "\ub2d8", "arity", "\u5982\u6b4c", "\u6027\u5730"], ["\u3008", "ively", "\ufffd\ufffd", "ually", "ly", ".defineProperty", "ally", "ians"], ["ively", "ually", "iveness", ".defineProperty", "ly", "\u3008", "ially", "ness"], ["ually", "ively", "ially", "ally", ".defineProperty", "ly", "ians", "liness"], ["ively", "ually", "\u6027\u5730", "\\_", "iveness", ".defineProperty", "ally", "ly"], ["...", "ually", "ively", "ly", "a", "\\_", "ically", "...("], ["ually", "ively", "ially", "\u6027\u5730", ".defineProperty", "ally", "ly", "ality"], ["ually", "ively", "ally", "hood", "iveness", "\u6027\u5730", "ality", "ically"], ["ually", "ally", "hood", ".defineProperty", "ively", "-minded", "-O", "ality"], ["o", "a", "ally", "-but", ".defineProperty", "ually", "\\_", "-or"], ["a", "o", "ally", " myriad", "ually", "-esque", "-but", "ically"], ["a", "o", "ally", "-esque", "-", "-but", "hood", "ually"], ["o", "a", "-O", "ally", "-but", "-get", "-h", "hood"], ["a", "o", "-O", "hood", "ically", "ually", "-but", "-human"], ["a", "\u3008", "&amp", " myriad", "o", "-&", "hood", "-{"], [" \n\n", "\n\n", "<|endoftext|>", "a", "o", "  \n\n", " myriad", "^"], [" ``", "hood", "ically", "izing", ".defineProperty", "ality", "-property", " RuntimeObject"], [" ``", " ''", "``", " myriad", "a", "ically", "ually", "hood"], [" ``", "a", " ''", "o", " O", " Black", " myriad", " King"], [" \n\n", " ``", "a", "\n\n", " ''", " myriad", "&amp", "o"], [" ``", " RuntimeObject", "\ufffd\ufffd", "hood", " Black", " myriad", "\ufffd\ufffd", "\u7d2f\u7d2f"], [" recycl", " storage", " warehouse", " reuse", "hood", "-property", " garbage", " warehouses"], ["\n\n", " \n\n", " ``", " ''", " \\\"", " ,", " self", " re"], ["\n\n", " \n\n", " ``", " storage", " \\\"", " recycl", " reuse", "\n \n"], [" __", " reuse", " storage", " trash", " recycl", " garbage", "\n \n", " warehouse"], [" storage", " ...", " \\\"", " reuse", " __", "\n \n", " ``", " warehouse"], [" ...", " \\\"", " __", "...", " storage", " stores", " repair", " \n\n"], [" ...", " storage", " \\\"", " Black", " reuse", " recycling", " Storage", " stores"], [" Storage", " storage", " reuse", " Warehouse", " scav", " Ghost", "storage", " reused"], [" \n\n", "...**", "  \n\n", "\u2026**", " reuse", "\u2026*", "...</", "...*"], ["\u56de\u6536", " reuse", "...**", "\u2026**", "\u2026*", " recicl", " Storage", " Recycling"], [" reuse", "\u56de\u6536", "Reuse", " Recycling", "reuse", " recicl", " recycl", " reused"], [" reuse", "\u56de\u6536", "Reuse", " Recycling", " Storage", " reused", " reusable", " Objects"], [" reuse", " Recycling", "\u56de\u6536", " recycling", " Storage", "Reuse", " scav", " reused"], [" reuse", " Recycling", "reuse", " recycle", " reusable", "\u56de\u6536", "Reuse", " recycling"], [" reuse", " Recycling", " recycling", " recycle", " reusable", "\u56de\u6536", " reused", " recycled"], [" reuse", " reusable", " recycling", " recycle", " Recycling", " reused", "reuse", " recycled"], [" reuse", " reusable", " recycle", " Recycling", " recycling", " reused", "reuse", "Reuse"], [" reuse", " reusable", " recycle", " Recycling", " recycling", " reused", "reuse", "\u56de\u6536"], [" reuse", " reusable", " recycle", " reused", " recycling", " Recycling", "reuse", " recycled"], [" reuse", " reusable", " recycle", " Recycling", " recycling", " reused", "reuse", " recycled"], [" reuse", " reusable", " Recycling", " recycle", "reuse", " reused", " recycling", "Reuse"], [" reuse", " Recycling", " reusable", " recycle", "reuse", " recycling", " reused", "Reuse"], [" Recycling", " reuse", "reuse", " reusable", " recycle", "Reuse", " Lifecycle", "\u56de\u6536"], [" Recycling", " reuse", " Lifecycle", "reuse", " Everywhere", "Reuse", " recycle", " Allocator"], [" Recycling", " reuse", "reuse", "/Object", "Reuse", " Lifecycle", "Reusable", " Templates"], [" reuse", " Recycling", " caches", "\u6c60", "reuse", "Reuse", " pools", "/Object"], [" reuse", "Reuse", "reuse", " Recycling", "Reusable", "\u6c60", " caches", " pools"], [" reuse", "Reuse", "reuse", " pools", "\u6c60", " pooling", " caches", " Recycling"], [" pooling", " reuse", " pools", "\u6c60", "/Object", " caches", "reuse", "Reuse"], ["\u6c60", " pools", " pooling", " Pool", "Pool", "pool", " pool", " Recycling"], ["\u6c60", " Pool", " pools", " pooling", " pool", "pool", "Pool", "\u6c60\u4e2d"], ["\u6c60", " Pool", " pools", " pool", " pooling", "pool", "Pool", "_pool"], [" Pool", "\u6c60", " pools", " pooling", " pool", "Pool", "pool", "_pool"], [" pools", " pooling", " Pool", " pool", "\u6c60", "pool", "Pool", "_pool"], [" pooling", " pools", " Pool", " pool", "Pooling", "\u6c60", "pool", "Pool"], [" Pool", " pools", " pooling", " pool", "\u6c60", "pool", "Pool", "Pooling"], [" Pool", " pooling", " pools", "Pooling", " P", " Recycling", " pool", "Pool"]], "p": [[0.4576, 0.2775, 0.2449, 0.0065, 0.0031, 0.0024, 0.0007, 0.0007], [0.0522, 0.0461, 0.0337, 0.0317, 0.015, 0.0109, 0.0103, 0.008], [0.4661, 0.4113, 0.0159, 0.0124, 0.0085, 0.0062, 0.0059, 0.0026], [0.0178, 0.0178, 0.0031, 0.0024, 0.0018, 0.0018, 0.0016, 0.0015], [0.0515, 0.0401, 0.0108, 0.0048, 0.0045, 0.0033, 0.0027, 0.0026], [0.0108, 0.0095, 0.0024, 0.0024, 0.0019, 0.0018, 0.0017, 0.0017], [0.0399, 0.0258, 0.0156, 0.0147, 0.0114, 0.0114, 0.0054, 0.0042], [0.0632, 0.0383, 0.0132, 0.0124, 0.0103, 0.0091, 0.0085, 0.0085], [0.0544, 0.0241, 0.0166, 0.0137, 0.0107, 0.0101, 0.0065, 0.0061], [0.0368, 0.012, 0.0087, 0.0056, 0.0047, 0.0032, 0.003, 0.003], [0.1941, 0.0861, 0.0337, 0.0218, 0.0181, 0.0117, 0.0091, 0.0085], [0.0447, 0.0175, 0.0145, 0.0094, 0.0069, 0.0069, 0.0064, 0.006], [0.0248, 0.0171, 0.0117, 0.0071, 0.0067, 0.0063, 0.0059, 0.0059], [0.0134, 0.0092, 0.0059, 0.0052, 0.0046, 0.0046, 0.0046, 0.0044], [0.0211, 0.0165, 0.0078, 0.0061, 0.005, 0.005, 0.0042, 0.0039], [0.0202, 0.019, 0.009, 0.0048, 0.0048, 0.0042, 0.004, 0.0025], [0.094, 0.0883, 0.0082, 0.0068, 0.006, 0.0044, 0.0044, 0.0041], [0.0473, 0.0392, 0.0093, 0.0056, 0.0053, 0.0047, 0.0044, 0.0036], [0.037, 0.0239, 0.0088, 0.0042, 0.0039, 0.0032, 0.003, 0.0029], [0.0052, 0.0043, 0.0036, 0.0032, 0.0031, 0.0026, 0.0025, 0.0025], [0.1165, 0.0586, 0.0586, 0.0334, 0.0048, 0.0037, 0.0029, 0.0029], [0.0201, 0.0051, 0.0024, 0.002, 0.0019, 0.0018, 0.0017, 0.0017], [0.269, 0.0126, 0.0076, 0.0034, 0.0034, 0.0019, 0.0019, 0.0017], [0.0613, 0.0155, 0.0137, 0.0037, 0.0031, 0.0021, 0.002, 0.0017], [0.0203, 0.0139, 0.0102, 0.0075, 0.0055, 0.0027, 0.0027, 0.0019], [0.0037, 0.0019, 0.0014, 0.0014, 0.0013, 0.0013, 0.001, 0.001], [0.0052, 0.0049, 0.0038, 0.0023, 0.0023, 0.002, 0.002, 0.0019], [0.164, 0.0196, 0.0126, 0.0068, 0.005, 0.0044, 0.003, 0.003], [0.0746, 0.0201, 0.0108, 0.0089, 0.0089, 0.0074, 0.0051, 0.0037], [0.0199, 0.0155, 0.0137, 0.01, 0.0088, 0.0078, 0.0069, 0.0065], [0.0167, 0.0167, 0.0157, 0.013, 0.0108, 0.0089, 0.0079, 0.0074], [0.1662, 0.012, 0.01, 0.0088, 0.0061, 0.0042, 0.0039, 0.0039], [0.0099, 0.0073, 0.0064, 0.0064, 0.0044, 0.0044, 0.0041, 0.0041], [0.0226, 0.0187, 0.0088, 0.0065, 0.0057, 0.0033, 0.0031, 0.0031], [0.1274, 0.0208, 0.0119, 0.0072, 0.0072, 0.0053, 0.0049, 0.0046], [0.0198, 0.0128, 0.0094, 0.0094, 0.0078, 0.0064, 0.0053, 0.0053], [0.0402, 0.0377, 0.0244, 0.0139, 0.0123, 0.0108, 0.0108, 0.0102], [0.071, 0.0203, 0.0158, 0.014, 0.0131, 0.0123, 0.0096, 0.009], [0.0868, 0.0282, 0.0234, 0.0182, 0.0151, 0.0142, 0.0125, 0.0125], [0.3158, 0.0662, 0.0622, 0.0484, 0.0455, 0.0427, 0.0427, 0.0401], [0.259, 0.0953, 0.0543, 0.051, 0.0351, 0.0329, 0.0329, 0.0256], [0.6153, 0.0833, 0.0572, 0.0505, 0.0393, 0.0393, 0.0239, 0.0186], [0.5625, 0.1255, 0.0593, 0.0593, 0.0593, 0.028, 0.0218, 0.017], [0.4853, 0.1017, 0.0699, 0.0699, 0.0451, 0.0291, 0.0291, 0.0147], [0.512, 0.1143, 0.0785, 0.0476, 0.0476, 0.0476, 0.0225, 0.0145], [0.448, 0.1133, 0.0778, 0.0778, 0.0731, 0.0444, 0.0185, 0.0174], [0.4817, 0.1075, 0.0739, 0.0508, 0.0371, 0.0349, 0.0272, 0.0113], [0.3021, 0.1341, 0.0718, 0.0493, 0.0384, 0.0299, 0.0281, 0.0206], [0.2491, 0.1333, 0.0407, 0.0407, 0.0382, 0.0359, 0.0192, 0.015], [0.2313, 0.0585, 0.0229, 0.0215, 0.0215, 0.0215, 0.0202, 0.013], [0.1098, 0.0487, 0.0404, 0.0335, 0.023, 0.0216, 0.0191, 0.0191], [0.0866, 0.0765, 0.0464, 0.0436, 0.0436, 0.0409, 0.0339, 0.0264], [0.2769, 0.1154, 0.0658, 0.0658, 0.0481, 0.0481, 0.0375, 0.0242], [0.359, 0.1696, 0.0624, 0.0486, 0.0429, 0.0403, 0.0277, 0.0216], [0.1819, 0.125, 0.0974, 0.0859, 0.0521, 0.0358, 0.0316, 0.0262], [0.3177, 0.2183, 0.2183, 0.0803, 0.0487, 0.0295, 0.0203, 0.0123], [0.4106, 0.194, 0.1712, 0.0916, 0.0556, 0.0382, 0.0337, 0.0013], [0.3989, 0.2419, 0.1467, 0.089, 0.0693, 0.0327, 0.0199, 0.0008], [0.2827, 0.2827, 0.1715, 0.1335, 0.081, 0.0232, 0.0232, 0.0009], [0.5703, 0.2377, 0.1123, 0.053, 0.0118, 0.0072, 0.0056, 0.0009], [0.4995, 0.4408, 0.0465, 0.0091, 0.001, 0.001, 0.001, 0.0007], [0.4597, 0.358, 0.1691, 0.0074, 0.0027, 0.0009, 0.0009, 0.0006], [0.9342, 0.032, 0.0282, 0.0014, 0.0011, 0.001, 0.0003, 0.0002]], "ranks": {}}, {"pos": 589, "top": [["\u00a0\u00a0", ".", " \u200b\u200b", "\u00a0", " \u00a0", "\u00a0\u00a0\u00a0\u00a0", " ", "\u00a0\u00a0\u00a0"], ["licate", "sWith", " Strec", " V\u00e9ri", "\u540d\u601d", "PPER", "\u0648\u0631\u0634", "ager"], [" \u200b\u200b", "\u2026..", "\u5728", " \u2026.", "\u2026.", "\u2026\u2026", "sWith", "\u3002"], [" Blowjob", " pupper", " Shemale", " cumshot", "\ufffd\ufffd", " \u041f\u043e\u043f\u0440\u043e", "olygon", " **\u25a0"], ["\ufffd\ufffd", "edom", "&p", " pupper", " **\u25a0", " Depor", " Prostitu", "ascal"], ["iously", "PPER", "ingos", "\ufffd\ufffd", "retty", "edom", "uber", "sWith"], [" \u300d", "PPER", " **\u25a0", "\u5728", "retty", "itions", "edom", "acious"], ["PPER", " **\u25a0", "retty", "sdale", "licate", "\u00fccks", "phans", "ickle"], ["PPER", "\u00fccks", "phans", "istry", "ners", "acious", "retty", "ularity"], ["ners", "PPER", " St\u00e9ph", " Avrup", "acious", "istry", "tersom", "retty"], ["ners", " _", "acious", " \u300d", "PPER", "pper", "phans", "istry"], ["phans", "riors", "PPER", " **\u25a0", "sters", "pper", " St\u00e9ph", "retty"], ["ners", "phans", "riors", "sters", "pper", "ivers", "PPER", "istry"], ["ners", "phans", "riors", "pper", "sters", "PPER", "ials", "ingos"], ["ing", "pping", "ed", "sters", "ners", "itions", "pper", "phans"], ["ing", "ed", "pping", "sters", "ners", "els", "pper", "ities"], ["ing", "ed", "s", "o", "ies", "els", "ging", "ets"], ["ing", "ed", "pping", "ging", "ings", "sters", "ies", "ners"], ["ing", "pping", "els", "ies", "ings", "ed", "sters", "ging"], ["ing", "pping", "ings", "ed", "-&", "ery", " &#", "aged"], ["<|endoftext|>", "Though", "though", "ed", "j", "ing", "w", "aged"], ["ings", "ing", "ed", "ery", "etimes", "aging", "aged", "els"], ["ed", "ing", "ery", "aged", "ings", "aging", "etimes", "els"], ["ing", "ed", " ,", "ery", " s", "aged", " &", " w"], ["ing", "ed", " &#", "aged", "ings", "ery", " though", "though"], ["ing", "ed", "ings", "ery", " though", " ,", "aged", "ively"], ["ing", " storage", " warehouses", " recycl", " pool", "ings", " pools", "sters"], [" ,", "\n\n", "ing", " '", " and", "ed", " rather", " ;"], [" storage", "ing", " pool", " recycl", " reuse", " ,", " games", " reused"], [" ...", " storage", " reuse", " pool", " reused", " recycl", " ?", "ing"], [" ...", " ?", " ,", " ..", " .", "ing", " storage", " pool"], [" ...", " ,", " .", " and", " re", " many", " -", " .."], [" ,", " ...", " and", " re", " &", " many", " over", " all"], [" storage", " reuse", " reused", " stash", " games", " recycl", " pool", " scav"], [" reuse", " stash", " reused", " storage", " recycl", " scav", " pool", "ed"], [" reuse", " reused", "reuse", " recycl", " recycling", " reusable", "\u56de\u6536", " recycled"], [" reuse", " reused", "reuse", "Reuse", " recycl", " reusable", " recycled", " recycling"], [" reuse", " reused", "reuse", " reusable", " recycl", "Reuse", " recycling", " recycled"], [" reuse", " reused", " reusable", "reuse", " recycl", " recycled", " recycling", "Reuse"], [" reuse", " reused", "reuse", " reusable", " recycle", " recycled", " recycling", " recycl"], [" reuse", " reused", " reusable", " recycle", " recycling", " recycl", " recycled", "reuse"], [" reuse", " reused", " reusable", " recycle", " recycling", "reuse", " recycled", " pools"], [" reuse", " reusable", " recycle", " reused", " recycling", " recycled", "reuse", " recycl"], [" reuse", " recycle", " reusable", " recycling", " pools", " reused", "reuse", " Recycling"], [" reuse", " recycle", " reusable", " reused", " recycling", "reuse", " recycled", " Recycling"], [" reuse", " reusable", " recycle", " recycling", " reused", " pools", " caches", " recycled"], [" reuse", " reusable", " recycle", " reused", "reuse", " recycling", " caches", " Recycling"], [" reuse", " reusable", " recycle", " reused", " caches", "reuse", " pools", " recycling"], [" caches", " recycle", " reuse", " reusable", "reuse", " pools", " Recycling", " reused"], [" caches", " pools", " reusable", " reuse", " recycle", "reuse", " Recycling", " reused"], [" reuse", "reuse", " caches", " reusable", " Recycling", " recycle", " pools", "Reusable"], [" reuse", "\u6c60", "*:", " }:", "reuse", " recycle", "+:", "**:"], [" reuse", " reusable", "reuse", " recycle", "Reuse", " reused", "\u6c60", "Reusable"], [" reuse", "\u6c60", " reusable", "reuse", "Reuse", " pools", " recycle", " caches"], ["\u6c60", " pools", " reuse", " caches", " recycle", " allocator", " Pool", "reuse"], ["\u6c60", " pools", " reuse", " recycle", "Reuse", "reuse", " caches", " Pool"], ["\u6c60", " pools", " Pool", " pool", "Pool", "pool", " pooling", "POOL"], ["\u6c60", " pools", " pool", " Pool", " pooling", "pool", "Pool", ".pool"], ["\u6c60", " pools", " Pool", " pool", " pooling", "pool", "Pool", ".pool"], [" pools", " pooling", "\u6c60", " pool", " Pool", "pool", "Pool", " pooled"], [" pooling", " pools", " Pool", "\u6c60", " pool", "pool", "Pooling", "Pool"], [" pooling", " pools", " Pool", "ools", "\u6c60", "Pooling", " pool", "Pool"], ["ools", " pools", " pooling", "ool", " recycling", "iling", "icking", " caches"]], "p": [[0.1024, 0.0798, 0.0798, 0.0401, 0.0243, 0.0101, 0.0074, 0.0051], [0.0044, 0.0024, 0.0018, 0.0016, 0.0016, 0.0016, 0.0015, 0.0015], [0.0523, 0.0317, 0.008, 0.008, 0.0071, 0.0071, 0.0055, 0.0043], [0.0082, 0.0082, 0.0056, 0.0044, 0.0039, 0.0027, 0.0027, 0.0025], [0.0099, 0.0064, 0.006, 0.006, 0.0034, 0.0032, 0.0032, 0.003], [0.0107, 0.0039, 0.0027, 0.0025, 0.0025, 0.0025, 0.0022, 0.0021], [0.0136, 0.0112, 0.0088, 0.0077, 0.0073, 0.0047, 0.0044, 0.0039], [0.0168, 0.0062, 0.0054, 0.0054, 0.0051, 0.0045, 0.0045, 0.0037], [0.0122, 0.0089, 0.0079, 0.0079, 0.0074, 0.0061, 0.0058, 0.0042], [0.0069, 0.0069, 0.0047, 0.0044, 0.0044, 0.0034, 0.0029, 0.0029], [0.0173, 0.0093, 0.0082, 0.0072, 0.0068, 0.0064, 0.006, 0.0056], [0.007, 0.0058, 0.0048, 0.0038, 0.0038, 0.0035, 0.0035, 0.0035], [0.0101, 0.0089, 0.0061, 0.0057, 0.0048, 0.0045, 0.0042, 0.0035], [0.0076, 0.0072, 0.0063, 0.0052, 0.0044, 0.0041, 0.0041, 0.0036], [0.0141, 0.0141, 0.0133, 0.0091, 0.0067, 0.0059, 0.0049, 0.0046], [0.0376, 0.0147, 0.0095, 0.0074, 0.0065, 0.0058, 0.0054, 0.0051], [0.3328, 0.1572, 0.01, 0.0094, 0.0094, 0.0074, 0.0061, 0.0061], [0.2035, 0.0427, 0.0122, 0.0108, 0.0101, 0.0074, 0.0074, 0.007], [0.0836, 0.0175, 0.0155, 0.0106, 0.0078, 0.0073, 0.0061, 0.0057], [0.0402, 0.0115, 0.0084, 0.0084, 0.007, 0.0066, 0.0058, 0.0058], [0.1242, 0.0244, 0.023, 0.0168, 0.0115, 0.0115, 0.007, 0.0066], [0.0193, 0.0193, 0.0142, 0.0104, 0.0086, 0.0076, 0.0067, 0.0067], [0.0586, 0.0429, 0.023, 0.0123, 0.0115, 0.0058, 0.0058, 0.0058], [0.033, 0.031, 0.0188, 0.0083, 0.0083, 0.0051, 0.0051, 0.0048], [0.0649, 0.0326, 0.0164, 0.0128, 0.0093, 0.0077, 0.0064, 0.0041], [0.0172, 0.0076, 0.0052, 0.0043, 0.0038, 0.0038, 0.0034, 0.0021], [0.0103, 0.0075, 0.0071, 0.0062, 0.0059, 0.0052, 0.0046, 0.0033], [0.0726, 0.0118, 0.0081, 0.0063, 0.006, 0.0044, 0.0041, 0.0038], [0.0121, 0.0107, 0.01, 0.0088, 0.0061, 0.0061, 0.0061, 0.005], [0.027, 0.027, 0.027, 0.0198, 0.0175, 0.0145, 0.0145, 0.0136], [0.6056, 0.0142, 0.0126, 0.0081, 0.0063, 0.0059, 0.0046, 0.0043], [0.4635, 0.0757, 0.0231, 0.0085, 0.0075, 0.0058, 0.0055, 0.0045], [0.087, 0.0171, 0.0151, 0.0133, 0.0118, 0.0104, 0.0081, 0.0076], [0.036, 0.036, 0.0205, 0.016, 0.0133, 0.0133, 0.0097, 0.0097], [0.0498, 0.0235, 0.0207, 0.0183, 0.0172, 0.0098, 0.0081, 0.0081], [0.161, 0.0557, 0.028, 0.0232, 0.0132, 0.0103, 0.0091, 0.0091], [0.3416, 0.1947, 0.0632, 0.0434, 0.0408, 0.0247, 0.0218, 0.0193], [0.39, 0.1842, 0.0411, 0.0301, 0.0171, 0.0171, 0.0098, 0.0092], [0.4738, 0.1975, 0.0389, 0.0267, 0.0236, 0.0196, 0.0196, 0.0143], [0.3632, 0.1422, 0.081, 0.0631, 0.036, 0.0317, 0.0298, 0.028], [0.2888, 0.1062, 0.0502, 0.0502, 0.0502, 0.0471, 0.0471, 0.0345], [0.5257, 0.1035, 0.0711, 0.0554, 0.0432, 0.0297, 0.0279, 0.018], [0.4809, 0.1378, 0.0947, 0.0651, 0.0507, 0.0307, 0.0271, 0.0186], [0.2896, 0.1368, 0.1207, 0.0536, 0.0503, 0.0473, 0.0444, 0.0269], [0.411, 0.1334, 0.1334, 0.0917, 0.0491, 0.0382, 0.0263, 0.0181], [0.2766, 0.1901, 0.1481, 0.0793, 0.0699, 0.0424, 0.0374, 0.0292], [0.3807, 0.2617, 0.1091, 0.0515, 0.0515, 0.0276, 0.0157, 0.0148], [0.2748, 0.2425, 0.1076, 0.0576, 0.0541, 0.0541, 0.0328, 0.0199], [0.1708, 0.1174, 0.1103, 0.1103, 0.0712, 0.0628, 0.0381, 0.0381], [0.1223, 0.0789, 0.0789, 0.0742, 0.0697, 0.0615, 0.0423, 0.0256], [0.0905, 0.0905, 0.085, 0.0798, 0.0427, 0.0333, 0.0313, 0.0313], [0.0628, 0.0432, 0.0405, 0.0405, 0.0381, 0.0358, 0.0358, 0.0358], [0.2297, 0.09, 0.0794, 0.0618, 0.0546, 0.0452, 0.0399, 0.0375], [0.2843, 0.1046, 0.0765, 0.0675, 0.056, 0.056, 0.0436, 0.0319], [0.3929, 0.1446, 0.0727, 0.0323, 0.0303, 0.0267, 0.0236, 0.0184], [0.318, 0.1702, 0.1502, 0.038, 0.0315, 0.0296, 0.023, 0.0216], [0.5213, 0.279, 0.0705, 0.0485, 0.026, 0.026, 0.0202, 0.0024], [0.5966, 0.2195, 0.0807, 0.049, 0.0204, 0.018, 0.014, 0.0005], [0.6322, 0.1811, 0.0666, 0.0588, 0.0357, 0.0116, 0.0116, 0.0007], [0.4851, 0.1785, 0.1575, 0.0744, 0.0511, 0.0351, 0.0089, 0.0017], [0.5676, 0.3443, 0.0283, 0.0249, 0.0133, 0.0049, 0.0043, 0.0038], [0.3893, 0.3436, 0.0984, 0.0495, 0.0437, 0.0097, 0.0092, 0.0067], [0.9704, 0.0084, 0.0029, 0.0017, 0.0007, 0.0006, 0.0005, 0.0004]], "ranks": {}}, {"pos": 590, "top": [[",", ".", " \u2013", "\u2013", "[", " ", ";", "\u00a0"], ["\u2013", "\u2013and", " \u2013", "\u2013\u2013", "   \n", ".\u2013", ",", " \u2013,"], ["\u2013", " \u2013", ",", ".", "\u2013and", "\u2026", "[", ".\u2013"], [" \uff1a", "ersp", "\u6c60", "\u6a0b", " \uff5e", "eszt", " rasseg", "hound"], ["\u6a0b", "   \n", "hound", " rasseg", " \uffe5", "ersp", " HCI", "     \n"], [" \uff1a", " rasseg", "\u6a0b", " \uff0c", " \uff08", "\u6c60", " Pool", "hound"], [" ____", "     \n", " \uff08", "   \n", " ______", " \n", " ___", " --"], [" ____", "     \n", "    \n", " \uff5e", "   \n", " booze", "sdale", "\u6c60"], [" \n", "     \n", "    \n", "   \n", " \uff5e", " \n    \n", " \uffe5", " \ufffd"], ["\u2013and", " ", " \n", ",", "\u2013", "\u00a0", " myriad", " Pool"], [" \n", " ", "\u00a0", " \u2013", " and", "\u2013", " \ufffd", ","], ["sters", " Pool", " pools", " pool", " \n", "mates", " reserves", " booze"], [" Pool", " pools", " pool", "sters", "ers", " reserves", " strategies", "mates"], [" Pool", " pools", " pool", "ers", "sters", "mates", " reserves", " strategies"], [" ", " w", " aggressively", " \ufffd", " for", " and", " O", " \n"], [" myriad", " ", " \u2014", " w", " r", " s", " aggressively", " \ufffd"], [" ", " \u2013", "\u00a0", "\u2013", " myriad", " w", " s", ","], [" Pool", " pools", " pool", " \u2014", " myriad", "\u6c60", "ers", "mates"], [" \u2014", " Pool", "\u6c60", " \n\n", " myriad", " \uff0c", " \n", " pool"], [" \n\n", " \u2014", " \n", " myriad", " \uff0c", "\u6c60", " Pool", " \uff5e"], [" \n\n", "<|endoftext|>", " \n", " \u2014", "  \n\n", " \n\n\n", " ", " \n  \n"], [" Pool", " pools", " pool", " \n", "\u6c60", "ers", "(pool", "sters"], [" Pool", " pool", " \n", " pools", " ,", " ~", "\u6c60", " --"], [" ,", " Pool", " pool", " for", " and", " of", " pools", " "], [" \n\n", " \n", " ,", " \n  \n", " ", " Pool", " pool", " \r\n\r\n"], [" Pool", " pool", " ,", " \n\n", " pools", " \n", " heavily", " and"], [" pool", " pools", " Pool", " \n\n", " \n", " weapons", " warehouses", " replen"], [" \n\n", " ,", "\n\n", " pool", " and", " \n", " amongst", " Pool"], [" pool", " pools", " \n", " Pool", " ,", " \n\n", " replen", " weapons"], [" pools", " ...", " pool", " \n", " Pool", " weapons", " reused", " warehouses"], [" ...", " \n", " \n\n", " pools", " pool", "\n", " ..", " ."], [" ...", " .", " \n", " ,", " \n\n", " ..", " and", " \u2026"], [" ...", " ,", " .", " \n", " and", " for", " pool", " Pool"], [" pools", " pool", " Pool", " replen", " systems", " games", " weapons", " scav"], [" pools", " pool", " Pool", " replen", " \n\n", " scav", " reused", " stash"], [" pools", " pool", " Pool", " \n\n", " \u2026", " \u200b\u200b", " scav", " replen"], [" pools", " Pool", " pool", " scav", " reused", " replen", " reuse", " \n\n"], [" pools", " Pool", " pool", " scav", " reused", " \u200b\u200b", " reuse", " reusable"], [" pools", " Pool", " scav", " pool", " reuse", " \u200b\u200b", " replen", " reusable"], [" pools", " Pool", " pool", " reuse", " reusable", "\u6c60", " \u200b\u200b", " scav"], [" pools", " Pool", " pool", " \u200b\u200b", " reuse", " reusable", " caches", "\u6c60"], [" pools", " Pool", " pool", " reusable", " reuse", " caches", " reused", " stash"], [" pools", " reusable", " caches", " reuse", " Pool", " pool", " containers", " warehouses"], [" pools", " reusable", " caches", " reuse", " Pool", " containers", " pool", " reused"], [" pools", " caches", " reusable", " reuse", " containers", " reused", " Pool", " pool"], [" pools", " caches", " reusable", " containers", " factories", " reused", " reuse", " systems"], [" pools", " reusable", " caches", " reuse", " reused", " containers", " warehouses", " buffers"], [" pools", " Everywhere", " Every", " caches", " everywhere", " extensively", " Everything", " reusable"], [" Everywhere", " caches", " pools", " everywhere", " extensively", " meticulously", " reusable", " Every"], [" Everywhere", " everywhere", " Every", " meticulously", " pools", " reusable", " extensively", " Everything"], [" Everywhere", " everywhere", " Every", " Everything", " meticulously", " EVERY", "\u5c06\u6240\u6709", " \u05dc\u05db\u05dc"], [" Everywhere", " everywhere", " Everything", " Every", "+:", "*:", " Use", "\u65e0\u5904\u4e0d\u5728"], [" Everywhere", " Use", "**:", ":**", " Everything", " everywhere", "+:", "*:"], [" Everywhere", " everywhere", " Everything", ":**", " reuse", "+:", " Implement", ":</"], [" Everywhere", " everywhere", " Everything", "\u65e0\u5904\u4e0d\u5728", "+:", " EVERY", ":**", " \u0432\u0435\u0437\u0434\u0435"], [" Everywhere", " everywhere", " Everything", " Implement", " everything", " aggressively", "everything", " implement"], [" Everywhere", " everywhere", " Everything", " aggressively", " Implement", " implement", "\u6c60", ":**"], [" aggressively", " Everywhere", " Everything", " everywhere", " aggressive", "\u6c60", " agres", " everything"], [" Everywhere", " aggressively", " Implement", " everywhere", " Everything", " implement", " aggressive", "\u6c60"], [" Everywhere", " everywhere", " Implement", " Everything", " implement", " aggressively", " everything", " Exhaust"], [" Everywhere", " everywhere", " Implement", ":**", " aggressively", " implement", " Pool", " pool"], [":**", " Implement", " Everywhere", ":", " everywhere", " aggressively", ":*", " Everything"], [":**", " :**", "**:", "\uff1a**", " Everywhere", ":*", ":", ":</"]], "p": [[0.5002, 0.2085, 0.1433, 0.1116, 0.0125, 0.0034, 0.0032, 0.0026], [0.4993, 0.0815, 0.0464, 0.0171, 0.0091, 0.0046, 0.0041, 0.003], [0.8695, 0.0809, 0.0232, 0.0097, 0.0052, 0.0038, 0.0009, 0.0007], [0.0064, 0.0044, 0.0034, 0.0032, 0.003, 0.0024, 0.0023, 0.002], [0.0168, 0.0062, 0.0042, 0.0042, 0.004, 0.004, 0.0037, 0.0033], [0.0083, 0.0054, 0.0054, 0.0044, 0.0042, 0.0037, 0.0037, 0.0031], [0.1175, 0.0432, 0.0432, 0.0381, 0.0316, 0.0217, 0.0217, 0.0169], [0.0089, 0.0074, 0.0074, 0.0058, 0.0051, 0.0035, 0.0035, 0.0029], [0.1147, 0.0509, 0.035, 0.0176, 0.0121, 0.0057, 0.0037, 0.0035], [0.0098, 0.0077, 0.0077, 0.0064, 0.006, 0.0044, 0.0032, 0.0032], [0.2835, 0.2663, 0.0141, 0.0086, 0.0063, 0.0052, 0.0052, 0.0046], [0.012, 0.0082, 0.006, 0.0056, 0.0056, 0.0053, 0.0041, 0.003], [0.0218, 0.016, 0.0117, 0.0086, 0.0049, 0.003, 0.003, 0.0028], [0.0119, 0.0093, 0.0072, 0.005, 0.0036, 0.0028, 0.0027, 0.0023], [0.0377, 0.0054, 0.0051, 0.0045, 0.0042, 0.004, 0.004, 0.0037], [0.0182, 0.0151, 0.0098, 0.0071, 0.0071, 0.0052, 0.0049, 0.0046], [0.1091, 0.0333, 0.0229, 0.019, 0.013, 0.0115, 0.0084, 0.007], [0.0541, 0.0199, 0.0199, 0.0094, 0.0078, 0.0078, 0.0054, 0.0047], [0.0498, 0.0468, 0.0221, 0.0183, 0.0172, 0.0098, 0.0098, 0.0092], [0.3576, 0.1025, 0.0229, 0.0139, 0.013, 0.0108, 0.009, 0.0084], [0.9284, 0.017, 0.0055, 0.0055, 0.0036, 0.0033, 0.0022, 0.0019], [0.1135, 0.0346, 0.0287, 0.0144, 0.0099, 0.006, 0.0053, 0.005], [0.1191, 0.0528, 0.0496, 0.0341, 0.0183, 0.0104, 0.0086, 0.0067], [0.1084, 0.0311, 0.0258, 0.0214, 0.0201, 0.0166, 0.0089, 0.0084], [0.7655, 0.0116, 0.0103, 0.0071, 0.0066, 0.0055, 0.0046, 0.0031], [0.0443, 0.0443, 0.0417, 0.0269, 0.0174, 0.0144, 0.0082, 0.0082], [0.1423, 0.0919, 0.0863, 0.017, 0.017, 0.0091, 0.0091, 0.0071], [0.2091, 0.0872, 0.0412, 0.0207, 0.0151, 0.0142, 0.0104, 0.0076], [0.0751, 0.0455, 0.0355, 0.0333, 0.0259, 0.0215, 0.0108, 0.0084], [0.1084, 0.1084, 0.0899, 0.0425, 0.0242, 0.0101, 0.0079, 0.0069], [0.5893, 0.1913, 0.0215, 0.0167, 0.0139, 0.0115, 0.0079, 0.0062], [0.8091, 0.0314, 0.0295, 0.0115, 0.0084, 0.0079, 0.0031, 0.0024], [0.0965, 0.0751, 0.0623, 0.0456, 0.0168, 0.0139, 0.0102, 0.0058], [0.0377, 0.0354, 0.0243, 0.0108, 0.0108, 0.0095, 0.009, 0.0084], [0.0584, 0.0377, 0.0215, 0.019, 0.0139, 0.0139, 0.0095, 0.0074], [0.0452, 0.031, 0.0292, 0.0213, 0.0213, 0.0138, 0.0129, 0.0101], [0.0489, 0.0262, 0.0217, 0.0191, 0.018, 0.0132, 0.0124, 0.0109], [0.0476, 0.0327, 0.0186, 0.0165, 0.0155, 0.0145, 0.0136, 0.0113], [0.0609, 0.0347, 0.0239, 0.021, 0.0186, 0.0186, 0.0145, 0.0136], [0.1937, 0.1103, 0.049, 0.0358, 0.0337, 0.0316, 0.0316, 0.0204], [0.2515, 0.0985, 0.0495, 0.032, 0.0249, 0.0234, 0.022, 0.0161], [0.422, 0.0689, 0.0608, 0.0418, 0.0393, 0.0369, 0.0144, 0.0099], [0.4392, 0.0717, 0.0525, 0.0435, 0.0384, 0.0339, 0.016, 0.0103], [0.3085, 0.078, 0.0647, 0.0368, 0.0305, 0.0223, 0.0185, 0.0154], [0.2863, 0.0771, 0.0639, 0.0321, 0.0321, 0.025, 0.0118, 0.0111], [0.3066, 0.0604, 0.0415, 0.0236, 0.0153, 0.0153, 0.0143, 0.0143], [0.1317, 0.085, 0.0427, 0.0294, 0.0229, 0.0178, 0.0095, 0.009], [0.0728, 0.0643, 0.0415, 0.0323, 0.0323, 0.0222, 0.0222, 0.0173], [0.0957, 0.07, 0.07, 0.0399, 0.0292, 0.0292, 0.0201, 0.0188], [0.2481, 0.1034, 0.0553, 0.0357, 0.0261, 0.018, 0.0169, 0.0159], [0.5109, 0.065, 0.037, 0.0288, 0.0288, 0.0113, 0.0106, 0.01], [0.7145, 0.0457, 0.0403, 0.0356, 0.0123, 0.0102, 0.0084, 0.007], [0.625, 0.0453, 0.0331, 0.0311, 0.0275, 0.0214, 0.013, 0.0122], [0.6017, 0.0719, 0.0436, 0.0319, 0.0193, 0.0125, 0.0104, 0.0081], [0.9145, 0.0516, 0.0102, 0.002, 0.002, 0.0012, 0.0011, 0.0008], [0.7629, 0.0804, 0.071, 0.008, 0.0075, 0.0048, 0.0045, 0.0045], [0.7608, 0.0551, 0.0334, 0.0295, 0.0203, 0.0075, 0.0075, 0.0055], [0.4478, 0.3952, 0.0472, 0.0472, 0.0119, 0.0072, 0.0039, 0.0032], [0.46, 0.3582, 0.0428, 0.0333, 0.0333, 0.0108, 0.0095, 0.0051], [0.4341, 0.1597, 0.1244, 0.0855, 0.0518, 0.0168, 0.0149, 0.0055], [0.158, 0.1394, 0.123, 0.102, 0.0659, 0.0353, 0.0331, 0.0311], [0.2401, 0.165, 0.165, 0.0417, 0.0392, 0.0392, 0.0305, 0.0223], [0.9982, 0.0006, 0.0004, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001]], "ranks": {}}, {"pos": 591, "top": [[" \u2013", ".", ",", "\u2013", "\u2026..", "  \n", " (\u201e", "an"], ["  \n", "\u2013and", " \u2013**", "   \n", ",**", "\u52c7\u5f80\u76f4\u524d", ":**", " **\u2013"], ["\u2013", "\u2026..", ",", "\u2026\u2026", ".", "\u2013and", "\u2026", ".\u2013"], [" ;;^", " Guta", "\u52a0\u62ff\u5927", " **:**", " **\u201e", " Gabrie", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "-------------</"], [":@", "ed", "\u65b0\u52a0\u5761", ":**", " ##", "\u52a0\u62ff\u5927", " gray", " \"@"], ["\u4e8b\u534a\u529f\u500d", "\u65b0\u52a0\u5761", ".:**", "\u0d4d\u0d1f", "\u52a0\u62ff\u5927", ":**", "\u0103\u021b", ":@"], [" ##", ":**", "raries", ".:**", " .....", " ..........", " ~~", " //@"], [" **\u201e", "raries", ":**", ".:**", " ~~", " ##", "\u4e8b\u534a\u529f\u500d", ",.."], [",..", " **\u201e", "raries", ".:**", ":**", " ~~", "\u52c7\u5f80\u76f4\u524d", " //@"], ["\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", "\u8033\u719f\u80fd\u8be6", "\u4e8b\u534a\u529f\u500d", "\u52a0\u62ff\u5927", "\u65b0\u52a0\u5761", "\u5162\u5162\u4e1a\u4e1a", "\u4e0d\u53ef\u601d\u8bae"], ["...", ",..", " ##", " //@", "ers", "..", ",\"", "ed"], ["raries", " **\u201e", " ;;^", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u52c7\u5f80\u76f4\u524d", " **\u2022", " ~~", " ``"], ["\u52c7\u5f80\u76f4\u524d", "\u52a0\u62ff\u5927", "\u8033\u719f\u80fd\u8be6", "raries", "\u52e4\u52e4\u6073\u6073", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", " ~~", " veggies"], ["\u52c7\u5f80\u76f4\u524d", "\u52e4\u52e4\u6073\u6073", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "\u8033\u719f\u80fd\u8be6", "\u52a0\u62ff\u5927", "raries", "\u4e8b\u534a\u529f\u500d", " Gabrie"], [" folks", " savvy", " mostly", " ``", " fueled", " theater", "\u52c7\u5f80\u76f4\u524d", "\u4e0d\u53ef\u601d\u8bae"], [" folks", " mostly", " savvy", " kids", " plenty", " often", " even", " arguably"], [" mostly", " folks", ",", " often", "an", " even", " savvy", " though"], [" mostly", " often", " even", " folks", " plenty", " savvy", " especially", ","], [" savvy", " mostly", " even", " often", " folks", " dozens", " heavily", " nearly"], [" even", "<|endoftext|>", " nearly", " mostly", " often", " heavily", " swiftly", " largely"], ["<|endoftext|>", " nearly", " swiftly", " heavily", " mostly", " largely", " aggressively", " continually"], ["\u52e4\u52e4\u6073\u6073", " ;;^", " savvy", " aggressively", " fueled", "Intialized", " ``", "\u4e0d\u53ef\u601d\u8bae"], [" ``", " aggressively", " heavily", " swiftly", " arguably", " continually", " largely", " often"], [" ``", " continually", " often", " heavily", " largely", " ultimately", " even", " aggressively"], [" \n\n", "  \n\n", "\n\n", " swiftly", "   \n\n", " heavily", " continually", " aggressively"], [" heavily", " aggressively", " ``", " sprawling", " ;;^", "\u3082\u306e\u3067\u306f", " swiftly", " strategically"], [" aggressively", " heavily", " setups", "\u3082\u306e\u3067\u306f", " sprawling", " incentiv", " leveraging", " strategically"], ["\n\n", " heavily", " continually", " aggressively", " arguably", " often", " ultimately", " swiftly"], ["\n\n", " heavily", " aggressively", " strategically", " \n\n", " sprawling", " meticulously", " routinely"], [" ...", " heavily", " aggressively", " often", " strategically", " setups", " leveraging", " routinely"], [" ...", " \n\n", "\n\n", " heavily", " often", " ,", " aggressively", " many"], [" often", " many", " heavily", " ,", " even", " ...", " over", " numerous"], [" heavily", " often", " even", " many", " over", " ,", " aggressively", " continually"], [" heavily", " often", " aggressively", " meticulously", " frequently", " constantly", " even", " routinely"], [" heavily", " meticulously", " aggressively", " often", " frequently", " strategically", " routinely", " constantly"], [" heavily", " meticulously", " aggressively", " constantly", " routinely", " often", " frequently", " strategically"], [" aggressively", " heavily", " meticulously", " constantly", " relentlessly", " routinely", " avoiding", " tightly"], [" meticulously", " heavily", " aggressively", " constantly", " relentlessly", " avoiding", " massively", " routinely"], [" meticulously", " heavily", " aggressively", " constantly", " every", " relentlessly", " routinely", " massively"], [" meticulously", " heavily", " aggressively", " constantly", " use", " relentlessly", " every", " massively"], [" use", " heavily", " meticulously", " constantly", " using", " aggressively", " every", " relentlessly"], [" use", " reusable", " reuse", " using", " recycling", " heavily", " meticulously", " reused"], [" reusable", " use", " reuse", " recycling", " using", " meticulously", " constantly", " utilizing"], [" reusable", " reuse", " use", " recycling", " meticulously", " using", " reused", " constantly"], [" reusable", " use", " reuse", " using", " every", " meticulously", " recycling", " heavily"], [" reusable", " meticulously", " every", " use", " everywhere", " everything", " ubiquitous", " reuse"], [" meticulously", " EVERY", " every", " everywhere", " reusable", " everything", " Every", " use"], [" every", " everywhere", " EVERY", " meticulously", " everything", " Every", " entire", "\u6240\u6709\u7684"], [" everywhere", " EVERY", " every", " meticulously", "\u5c06\u6240\u6709", "\u628a\u6240\u6709\u7684", "\u6240\u6709\u7684", "\u51e0\u4e4e\u6240\u6709"], [" meticulously", "\u5c06\u6240\u6709", " EVERY", "\u6240\u6709\u7684", "\u628a\u6240\u6709\u7684", " Every", "\u5bf9\u6240\u6709", " every"], ["\u5c06\u6240\u6709", " meticulously", "\u6240\u6709\u7684", "\u628a\u6240\u6709\u7684", "\u3042\u3089\u3086\u308b", "\u6240\u6709", "\u4e25\u7981", " EVERY"], ["\u5c06\u6240\u6709", " meticulously", "\u628a\u6240\u6709\u7684", "\u5bf9\u6240\u6709", "/Create", " reusable", " reuse", "\u6240\u6709\u7684"], [" reuse", " reusable", "reuse", " implement", "/Create", " meticulously", " Use", "Reuse"], [" reuse", " implement", " reusable", "reuse", "\u5c06\u6240\u6709", " Implement", " meticulously", " aggressively"], [" implement", " reuse", " Implement", " meticulously", "reuse", " implementations", " aggressively", " Every"], [" implement", " aggressively", " reuse", "reuse", "\u6c60", " pooling", " Implement", " pools"], [" implement", " aggressively", "\u6c60", " Implement", " pooling", " pools", "\u6c60\u4e2d", " meticulously"], ["\u6c60", " aggressively", " pools", " pooling", " pool", "\u6c60\u4e2d", ".pool", " Pool"], [" aggressively", "\u6c60", " implement", " Implement", " pooling", " pool", " pools", "\u6c60\u4e2d"], [" implement", " pool", " Implement", "\u6c60", " pooling", " Pool", " pools", " aggressively"], [" pool", " Implement", " implement", " Pool", "\u6c60", " pools", " pooling", " pre"], [" Implement", " Pool", " pool", " implement", " Pre", "\u6c60", " pre", " pools"], [" Implement", " Pool", " Pre", " implement", " Create", " Maintain", " pool", " Every"]], "p": [[0.4437, 0.3916, 0.0498, 0.0152, 0.0143, 0.0126, 0.0092, 0.0059], [0.2058, 0.0459, 0.0431, 0.0336, 0.0316, 0.0246, 0.0246, 0.0159], [0.2153, 0.1677, 0.1677, 0.1152, 0.1017, 0.033, 0.0257, 0.0227], [0.0254, 0.0224, 0.0224, 0.0164, 0.0136, 0.0136, 0.0128, 0.012], [0.0553, 0.0296, 0.0261, 0.0158, 0.0158, 0.0149, 0.014, 0.0096], [0.0201, 0.0201, 0.0157, 0.0147, 0.0122, 0.0101, 0.0074, 0.0074], [0.0929, 0.0873, 0.0723, 0.0412, 0.0387, 0.0283, 0.0207, 0.0195], [0.0768, 0.0562, 0.0411, 0.0411, 0.0386, 0.032, 0.022, 0.0182], [0.0879, 0.0567, 0.0533, 0.0415, 0.0268, 0.0236, 0.0209, 0.0196], [0.1029, 0.0429, 0.0379, 0.0356, 0.0244, 0.0203, 0.0179, 0.0148], [0.0792, 0.0451, 0.0374, 0.033, 0.0188, 0.0156, 0.0156, 0.0156], [0.0401, 0.0228, 0.0147, 0.0138, 0.0122, 0.0122, 0.0122, 0.0115], [0.0251, 0.0184, 0.0173, 0.0152, 0.0126, 0.0126, 0.0119, 0.0098], [0.0244, 0.0168, 0.0168, 0.0131, 0.0115, 0.0115, 0.0096, 0.0055], [0.0174, 0.0163, 0.0105, 0.0056, 0.0039, 0.0039, 0.0036, 0.0036], [0.0783, 0.0198, 0.0164, 0.0154, 0.0106, 0.0088, 0.0088, 0.0078], [0.0341, 0.0234, 0.0161, 0.0142, 0.0111, 0.0111, 0.0092, 0.0092], [0.0243, 0.0178, 0.0108, 0.0101, 0.0074, 0.0074, 0.007, 0.0061], [0.0158, 0.0108, 0.0102, 0.0096, 0.0079, 0.0051, 0.0051, 0.0048], [0.0182, 0.016, 0.0133, 0.0125, 0.0103, 0.0091, 0.0081, 0.0081], [0.2985, 0.008, 0.0075, 0.0066, 0.0051, 0.0035, 0.0033, 0.0033], [0.004, 0.004, 0.0031, 0.0024, 0.002, 0.002, 0.0019, 0.0016], [0.0329, 0.0083, 0.0069, 0.005, 0.0039, 0.0037, 0.0033, 0.0033], [0.0198, 0.0088, 0.0082, 0.0082, 0.0073, 0.0068, 0.0064, 0.0057], [0.0157, 0.0095, 0.0084, 0.0074, 0.007, 0.0058, 0.0051, 0.0035], [0.0041, 0.0039, 0.003, 0.0025, 0.0023, 0.0022, 0.0022, 0.0021], [0.0051, 0.0042, 0.0029, 0.0029, 0.0027, 0.0024, 0.0023, 0.0023], [0.0197, 0.0163, 0.0072, 0.006, 0.0056, 0.0053, 0.005, 0.0047], [0.0855, 0.0335, 0.0245, 0.0123, 0.0096, 0.008, 0.0075, 0.0075], [0.0377, 0.0354, 0.0333, 0.0157, 0.0148, 0.0122, 0.0115, 0.0101], [0.2043, 0.0752, 0.0485, 0.0402, 0.0378, 0.0179, 0.0148, 0.0108], [0.056, 0.0526, 0.0494, 0.0319, 0.0265, 0.0117, 0.0117, 0.0076], [0.0416, 0.0324, 0.0252, 0.0163, 0.0135, 0.0112, 0.0099, 0.0093], [0.1238, 0.0378, 0.0333, 0.0215, 0.0168, 0.0148, 0.013, 0.0108], [0.1538, 0.0532, 0.0441, 0.0208, 0.0152, 0.0134, 0.0134, 0.0134], [0.1572, 0.0954, 0.051, 0.0273, 0.0188, 0.0188, 0.0176, 0.0129], [0.1218, 0.1075, 0.0739, 0.0308, 0.0155, 0.0137, 0.0121, 0.0113], [0.1018, 0.1018, 0.0793, 0.0274, 0.0147, 0.0129, 0.0101, 0.0101], [0.1327, 0.0857, 0.052, 0.0261, 0.0191, 0.0169, 0.0116, 0.0109], [0.1199, 0.0603, 0.047, 0.0366, 0.0285, 0.0236, 0.0173, 0.0105], [0.1038, 0.0461, 0.0433, 0.0337, 0.0317, 0.0247, 0.0218, 0.018], [0.1214, 0.061, 0.0573, 0.0475, 0.0327, 0.0254, 0.0198, 0.0186], [0.1443, 0.0682, 0.0682, 0.0343, 0.0284, 0.0267, 0.0162, 0.0152], [0.1742, 0.0773, 0.0682, 0.0343, 0.0221, 0.0221, 0.0184, 0.0152], [0.121, 0.0781, 0.0445, 0.0306, 0.027, 0.0224, 0.0224, 0.0198], [0.0606, 0.0606, 0.0534, 0.0443, 0.0305, 0.0305, 0.0237, 0.0197], [0.1142, 0.1142, 0.1008, 0.0693, 0.0539, 0.042, 0.0307, 0.0198], [0.1796, 0.1585, 0.109, 0.0962, 0.0454, 0.0293, 0.0259, 0.0189], [0.1214, 0.1072, 0.0946, 0.0835, 0.065, 0.037, 0.0288, 0.0225], [0.162, 0.1113, 0.0765, 0.0464, 0.041, 0.034, 0.0281, 0.0264], [0.0832, 0.0832, 0.0505, 0.0369, 0.0288, 0.0254, 0.0224, 0.0224], [0.0943, 0.0474, 0.0369, 0.0347, 0.0254, 0.0238, 0.0186, 0.0154], [0.1661, 0.1008, 0.0476, 0.042, 0.042, 0.0307, 0.0239, 0.0164], [0.2013, 0.1221, 0.0577, 0.0509, 0.0309, 0.0309, 0.0272, 0.0187], [0.3345, 0.0581, 0.0453, 0.0242, 0.0242, 0.0189, 0.0189, 0.0167], [0.3067, 0.1279, 0.1279, 0.0415, 0.0366, 0.0285, 0.0285, 0.0252], [0.1988, 0.1754, 0.1548, 0.0829, 0.0645, 0.0345, 0.0305, 0.0269], [0.3829, 0.3379, 0.0665, 0.0587, 0.0457, 0.0356, 0.0148, 0.0148], [0.272, 0.2118, 0.2118, 0.0883, 0.0473, 0.0417, 0.0325, 0.0223], [0.4456, 0.2385, 0.1277, 0.0532, 0.0323, 0.0251, 0.0196, 0.0064], [0.3256, 0.2536, 0.1975, 0.0726, 0.0236, 0.0236, 0.0162, 0.0111], [0.3501, 0.2406, 0.1874, 0.1137, 0.0224, 0.0136, 0.0106, 0.0082], [0.8968, 0.0506, 0.0271, 0.0145, 0.0022, 0.0015, 0.0008, 0.0008]], "ranks": {}}, {"pos": 592, "top": [[" *@", " <![", " ****", "*\u201d,", "@@@@", " #\"", "**\u201d,", " **.**"], [" **\u3010", " **\u25a0", " **:**", " **\u2018", " **:", "**\u201d,", " **)", " **>>"], [" **\u3010", " \uff5c", "**\u201d,", " **\u2018", "\u2019**", " **\u25a0", " **:**", " **.**"], [" **\u3010", " **\u25a0", " **\u300c", " **>>", " **:**", " /**<", " **:", " **\u25cb"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", " **)", " **:**", " **:", " *@"], [" **\u3010", " **\u25a0", " **\u300c", " **\u201c", " **)", " **\u25cb", " **:**", " **:"], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", "\u2019**", " **)", " /**<", "<|im_end|>"], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", "<|im_end|>", "(___", " ___", " **\""], [" **\u3010", "<|im_end|>", " **\u300c", " **\u201c", "\r\n\r\n\r\n\r\n", " <?", " **\u25a0", " <!["], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", " <![", "\u2019**", "(___", " \"@/"], [" **\u3010", "<|im_end|>", " **\u300c", " **\u201c", " **\u25a0", " <![", " <?", " ___"], [" **\u3010", " **\u300c", " **\u25a0", " **\u201c", " ___", "(___", " /**<", "<|im_end|>"], [" **\u3010", " **\u300c", " ___", " **\u25a0", "(___", " **\u201c", "<|im_end|>", " $__"], [" **\u3010", "<|im_end|>", " **\u300c", "(___", "\r\n\r\n\r\n\r\n", " **\u25a0", " ___", "\u2019**"], [" **\u3010", "<|im_end|>", "\r\n\r\n\r\n\r\n", " ___", "___", "</think>", " **\u300c", "\uff1f**"], ["<|im_end|>", " **\u3010", "</think>", "___", "\uff1f**", "\r\n\r\n\r\n\r\n", " ___", "\u548c"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "___", " ___", "\n\n", "<think>"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "___", " **\u201c", "\uff1f**", "\u2019**"], [" **\u3010", "<|im_end|>", "</think>", "\r\n\r\n\r\n\r\n", "\uff1f**", " **\u300c", "___", "\u2019**"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "___", " <![", " $__", "\u2019**"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "\n\n", "\r\n\r\n", "\n\n\n\n\n", "\u548c"], ["<|im_end|>", " **\u3010", "</think>", "\r\n\r\n\r\n\r\n", "___", "\u548c", "<think>", "\n\n\n\n\n"], ["<|im_end|>", "\n\n", "</think>", "\r\n\r\n\r\n\r\n", " **\u3010", "\r\n\r\n", "\n\n\n\n\n", "<|endoftext|>"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", "</think>", "<|endoftext|>", "\r\n\r\n", "\n\n\n\n\n", " **\u3010"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "<|endoftext|>", " \n\n", "</think>", "\n\n\n\n\n"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", " **\u3010", "</think>", "\r\n\r\n", "\n\n\n\n\n", "___"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", " **\u3010", "</think>", "\r\n\r\n", "\n\n\n\n\n", "\n\n\n\n\n\n\n\n\n\n"], ["<|im_end|>", "\n\n", "\r\n\r\n\r\n\r\n", "\r\n\r\n", "<|endoftext|>", "</think>", "\n\n\n\n\n", " \n\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", "\r\n\r\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", " \n\n", "\n\n\n\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", "\r\n\r\n", " \n\n", "\n\n\n\n"], ["<|im_end|>", "<|endoftext|>", "\n\n", "\r\n\r\n\r\n\r\n", "</think>", "\r\n\r\n", "\n\n\n\n\n", " \n\n"], ["<|im_end|>", "\n\n", "<|endoftext|>", " \n\n", "\n\n\n", "\r\n\r\n", "\n\n\n\n\n", "\n\n\n\n"], ["<|endoftext|>", "\n\n", "<|im_end|>", " \n\n", "\n\n\n\n\n", "\n\n\n", "\n\n\n\n", "\r\n\r\n"], ["<|endoftext|>", "\n\n", "<|im_end|>", " \n\n", "\r\n\r\n", "</think>", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "\r\n\r\n\r\n\r\n", "\n\n\n\n\n", "<|file_sep|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "\n\n\n\n\n", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "<|im_start|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "<|file_sep|>", "<|im_start|>", "\n\n\n\n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "<|file_sep|>", "<|im_start|>", " \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "\n\n", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "\u3002"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "<|file_sep|>", "\u3002", "\n\n", "\uff1f"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "<|im_start|>", "\u3002", "<|file_sep|>"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "<|file_sep|>", "<|im_start|>", "  \n\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "<|file_sep|>", "  \n\n", "\u3002"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", " \n\n", "\u3002", "  \n\n", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "\n\n", "</think>", "  \n\n", " \n\n", "<|file_sep|>", "\r\n\r\n\r\n\r\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "\n\n", "<|file_sep|>", "  \n\n", "\u3002", " \n\n"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "\r\n\r\n\r\n\r\n", "\u3002", "**\u3002", "  \n\n"], ["<|im_end|>", "<|endoftext|>", "</think>", "  \n\n", "\n\n", " \n\n", "\u3002", "</"], ["<|im_end|>", "<|endoftext|>", "</think>", "<|file_sep|>", "\u3002", "\u3002</", "</", "\u56de\u7b54"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|im_start|>", "<|file_sep|>", "!**", "\u56de\u7b54", ";**"], ["<|endoftext|>", "<|im_end|>", "</think>", "<|file_sep|>", "<|im_start|>", "<|fim_middle|>", "\u3002", " \n\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<|fim_middle|>", "\u3002", " \n\n\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<|fim_middle|>", "\r\n\r\n\r\n\r\n", " \n\n"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<|fim_middle|>", " @}", "\u5728"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", ">**", "\u7528\u6237", ";**"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "<|file_sep|>", "\u7528\u6237", "\u5728", "\u89c2"], ["<|im_end|>", "<|im_start|>", "</think>", "\u5355", "<|endoftext|>", "\u7528\u6237", "\u5c40", "<|quad_start|>"], ["<|im_end|>", "<|im_start|>", "\u5355", "</think>", "<|endoftext|>", "\u7528\u6237", "\u5728", "usercontent"], ["<|im_end|>", "\u5355", "<|im_start|>", "</think>", "<|endoftext|>", "\u81ea\u7531", "\u53cc", "\u5f85"], ["<|im_end|>", "<|im_start|>", "<|endoftext|>", "\u5355", "</think>", "\u971e", "\u5f85", "usercontent"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "usercontent", "\u5355", "</think>", "\u971e", "(userData"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "-hide", "\u971e", " \ufffd", "usercontent"], ["\n", "<|im_end|>", "<|im_start|>", "\n     \n", "\n  \n", "\n   \n", "\n\t\n", "\n \n"]], "p": [[0.0833, 0.0573, 0.0347, 0.0224, 0.0211, 0.0175, 0.0154, 0.0145], [0.1943, 0.1179, 0.0918, 0.0631, 0.0462, 0.0338, 0.0298, 0.0232], [0.5137, 0.0576, 0.0478, 0.0478, 0.0328, 0.0226, 0.0199, 0.0187], [0.6347, 0.125, 0.0859, 0.0096, 0.0091, 0.0085, 0.0052, 0.0048], [0.8353, 0.0605, 0.0185, 0.0087, 0.0077, 0.0036, 0.0027, 0.0025], [0.9327, 0.0171, 0.0133, 0.0052, 0.0036, 0.0025, 0.0018, 0.0018], [0.9144, 0.0229, 0.0102, 0.0079, 0.0024, 0.0017, 0.0015, 0.0013], [0.9365, 0.0142, 0.0072, 0.0046, 0.0016, 0.0015, 0.0011, 0.001], [0.8568, 0.0312, 0.0101, 0.0089, 0.0061, 0.0042, 0.0037, 0.0033], [0.8413, 0.0164, 0.0106, 0.0088, 0.0068, 0.0068, 0.0032, 0.003], [0.8663, 0.0231, 0.0102, 0.0058, 0.0045, 0.0043, 0.0035, 0.0035], [0.9222, 0.0096, 0.0066, 0.0045, 0.0035, 0.0031, 0.0019, 0.0018], [0.9194, 0.014, 0.0062, 0.0051, 0.0043, 0.0038, 0.0033, 0.0019], [0.8289, 0.0321, 0.0111, 0.0063, 0.0056, 0.0056, 0.0043, 0.0041], [0.7213, 0.161, 0.0071, 0.0062, 0.0059, 0.0052, 0.0043, 0.0033], [0.5039, 0.3924, 0.0098, 0.0056, 0.0046, 0.0044, 0.0032, 0.0021], [0.9256, 0.0522, 0.0071, 0.0031, 0.0012, 0.0008, 0.0004, 0.0003], [0.6223, 0.3331, 0.0083, 0.0025, 0.0014, 0.0012, 0.001, 0.001], [0.5939, 0.3179, 0.0131, 0.0055, 0.0038, 0.0035, 0.0029, 0.0019], [0.814, 0.1248, 0.0124, 0.0075, 0.0013, 0.0012, 0.0011, 0.0009], [0.9878, 0.0028, 0.0024, 0.0014, 0.0011, 0.0004, 0.0003, 0.0003], [0.8725, 0.0716, 0.0124, 0.0059, 0.0016, 0.0012, 0.0012, 0.001], [0.9835, 0.0058, 0.0024, 0.0019, 0.0015, 0.0007, 0.0006, 0.0005], [0.9881, 0.0052, 0.0017, 0.0012, 0.0008, 0.0005, 0.0005, 0.0004], [0.9638, 0.0291, 0.0016, 0.0013, 0.0009, 0.0006, 0.0005, 0.0005], [0.9705, 0.0074, 0.0058, 0.004, 0.0019, 0.0018, 0.001, 0.0007], [0.9439, 0.0323, 0.0064, 0.0028, 0.0025, 0.0023, 0.0013, 0.0006], [0.9027, 0.084, 0.0033, 0.002, 0.0017, 0.0012, 0.0011, 0.0007], [0.7054, 0.229, 0.0511, 0.0025, 0.0025, 0.0025, 0.002, 0.0012], [0.8849, 0.0641, 0.0389, 0.0028, 0.0025, 0.0015, 0.0009, 0.0008], [0.8653, 0.071, 0.0553, 0.0017, 0.0013, 0.0011, 0.0007, 0.0007], [0.4184, 0.3258, 0.2538, 0.0004, 0.0003, 0.0003, 0.0003, 0.0002], [0.7965, 0.1078, 0.0951, 0.0002, 0.0001, 0.0001, 0.0, 0.0], [0.7939, 0.1218, 0.0837, 0.0001, 0.0001, 0.0001, 0.0001, 0.0], [0.971, 0.0259, 0.0031, 0.0, 0.0, 0.0, 0.0, 0.0], [0.962, 0.0373, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9769, 0.023, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.989, 0.011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9859, 0.0141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9465, 0.0534, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9841, 0.0159, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9875, 0.0124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9464, 0.0534, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.893, 0.1067, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9239, 0.0758, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.8518, 0.148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7052, 0.294, 0.0003, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.9884, 0.011, 0.0003, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9568, 0.042, 0.0007, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.6302, 0.3373, 0.0115, 0.0018, 0.0012, 0.0011, 0.0008, 0.0006], [0.982, 0.018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9524, 0.0474, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9789, 0.0203, 0.0008, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9718, 0.0259, 0.0021, 0.0001, 0.0, 0.0, 0.0, 0.0], [0.5791, 0.2736, 0.1006, 0.0064, 0.0008, 0.0004, 0.0003, 0.0001], [0.9717, 0.0108, 0.0045, 0.002, 0.0009, 0.0001, 0.0001, 0.0001], [0.8795, 0.0092, 0.0032, 0.0026, 0.0012, 0.0006, 0.0005, 0.0005], [0.7061, 0.0121, 0.0051, 0.0048, 0.0033, 0.0019, 0.0015, 0.0014], [0.592, 0.0168, 0.0079, 0.0048, 0.0029, 0.0027, 0.0021, 0.0019], [0.1157, 0.0275, 0.0228, 0.0108, 0.0051, 0.0037, 0.0033, 0.0026], [0.2508, 0.1521, 0.0526, 0.0026, 0.0023, 0.0022, 0.0018, 0.0018], [0.157, 0.0423, 0.0256, 0.0057, 0.0042, 0.0023, 0.0014, 0.0011], [0.5281, 0.0085, 0.0052, 0.0034, 0.0034, 0.0029, 0.0027, 0.0013]], "ranks": {}}, {"pos": 593, "top": [[" \u2013", ".", "\u2013", "\u00a0\u00a0", " \u2013,", " \u200b\u200b", "   \n", "  "], ["   \n", "\u2013and", " \u2013", "\u2013", "  \n", "  \n  \n", " \u2013,", "\u2013\u2013"], ["\u2013", ".", " \u2013", "\u2026..", ".\u2013", "\u2013and", ",", "\u2026."], [" milfs", " Shemale", " Blowjob", " cumshot", " **\u201e", "-------------</", "\u4e13\u680f\u6536\u5f55\u8be5\u5185\u5bb9", "----------</"], [" **\u201e", " **\u201c", " @_", " Guta", "\u52a0\u62ff\u5927", " **:**", "-------------</", ":@"], [" **\u201c", " **\u25cb", " **\u201e", " **\u3010", " **:**", " **:", " **\"", "\uff1f**"], [" **\u3010", " **\u201c", " **\u25cb", " **\u201e", "\uff1f**", " **\u2018", " **\"", "  \n\n"], [" **\u3010", "   \n\n", " **\u201e", "     \n\n", "  \n\n", "       \n\n", "    \n\n", " **\u201c"], ["  \n\n", "   \n\n", "    \n\n", "     \n\n", "       \n\n", "\t\n\n", " **\u3010", "\n\n"], ["  \n\n", " _$", "   \n\n", "       \n\n", "     \n\n", " **\u3010", "  \n\n\n", "\t\n\n"], ["\n\n", "  \n\n", " **\u3010", "   \n\n", " \n\n", " ___", "     \n\n", " @_"], [" **\u3010", " *__", " _$", " ___", " **#", " **\u201e", " **+", "(___"], [" **\u3010", "___", " ___", "...**", "____", "\uff1f**", " _:", " _$"], ["...**", "___", " **\u3010", "____", "\u2026**", " ___", "\uff1f**", " _:"], ["\n\n", "  \n\n", "___", " \n\n", "\n\n\n\n", "<|im_end|>", "\t\n\n", "...**"], ["\n\n", "___", "____", "...**", "<|im_end|>", " ___", " **\u3010", "\n\n\n\n"], ["\n\n", "<|im_end|>", "___", "...**", "____", "\n\n\n\n", "...\\", " ___"], ["\n\n", "...**", "<|im_end|>", "___", " **\u3010", "**\u3002", "\uff1f**", "\u4ec0\u4e48"], ["...**", "___", " **\u3010", "\uff1f**", "\u4ec0\u4e48", "**\u3002", "\n\n", "<|im_end|>"], ["\n\n", "<|im_end|>", "\r\n\r\n", "___", "  \n\n", "\u4ec0\u4e48", "...**", "\n\n\n\n"], ["\n\n", "<|endoftext|>", "  \n\n", " \n\n", "<|im_end|>", "\r\n\r\n", "\n\n\n\n", "\n\n\n"], ["\n\n", "\r\n\r\n", "\n\n\n\n", "<|im_end|>", "  \n\n", "<|endoftext|>", " \n\n", "\n\n\n"], ["\n\n", "<|endoftext|>", "\r\n\r\n", "<|im_end|>", "\n\n\n", "\n\n\n\n", " \n\n", "  \n\n"], ["\n\n", "<|endoftext|>", "\r\n\r\n", "\n\n\n", " \n\n", "  \n\n", "<|im_end|>", "\n\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|im_end|>", "\r\n\r\n", "<|endoftext|>", "\n\n\n\n", "   \n\n"], ["\n\n", "  \n\n", " \n\n", "\r\n\r\n", "<|im_end|>", "___", "\n\n\n\n", "...**"], ["\n\n", "  \n\n", " \n\n", "<|im_end|>", "\r\n\r\n", "___", "\n\n\n\n", " ___"], ["\n\n", " \n\n", "  \n\n", "<|im_end|>", "\r\n\r\n", "\n\n\n\n", "<|endoftext|>", "\n\n\n"], ["\n\n", " \n\n", "  \n\n", "<|endoftext|>", "<|im_end|>", "\n\n\n\n", "\r\n\r\n", "\n\n\n"], ["\n\n", "  \n\n", " \n\n", "<|im_end|>", "<|endoftext|>", "\n\n\n\n", "\n\n\n", "\r\n\r\n"], ["\n\n", "<|im_end|>", " \n\n", "  \n\n", "...**", "<|endoftext|>", "\n\n\n\n", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "...**", "  \n\n", " \n\n", "...", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "  \n\n", "<|im_end|>", " \n\n", "...", "...**", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "...", "...**", "\u2026\u2026"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "...", "\u2026\u2026", "\n\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "\u2026\u2026", " \n\n", "...**", "..."], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\u2026\u2026", "...**", "\n\n\n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", "\u2026\u2026", "...**", " \n\n", "..."], ["\n\n", "<|endoftext|>", "<|im_end|>", "\u2026\u2026", "...**", "...", "  \n\n", " \n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "\u2026\u2026", "  \n\n", "...**", "...", " \n\n"], ["\n\n", "<|endoftext|>", "<|im_end|>", "\u2026\u2026", "  \n\n", "...**", "...", "...\""], ["\n\n", "<|endoftext|>", "<|im_end|>", "  \n\n", " \n\n", "\n\n\n\n", "...**", "\u2026\u2026"], ["\n\n", "<|im_end|>", "<|endoftext|>", "  \n\n", "...**", " \n\n", "...\"", "..."], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", "...**", " \n\n", "...</", "...\""], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "...**", "...", "...</"], ["<|im_end|>", "\n\n", "<|endoftext|>", "  \n\n", " \n\n", "</think>", "\n\n\n", "\n\n\n\n"], ["\n\n", "<|im_end|>", "<|endoftext|>", " \n\n", "  \n\n", "\n\n\n", "\n\n\n\n", "</think>"], ["<|im_end|>", "\n\n", "<|endoftext|>", " \n\n", "  \n\n", "...</", "\n\n\n", "..."], ["<|im_end|>", "<|endoftext|>", "\n\n", " \n\n", "  \n\n", "\n\n\n", "<|im_start|>", "\n\n\n\n"], ["<|im_end|>", "<|endoftext|>", "<|im_start|>", "</think>", "\n\n", "<think>", "  \n\n", "...</"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<think>", "\n\n", "<|fim_middle|>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "<think>", "...</", "</"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "<|file_sep|>", "</tool_response>", "<|fim_middle|>", "<think>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "**", "<|file_sep|>", "]**", "</tool_response>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "</think>", "\u7528\u6237", "user", "User", "<|file_sep|>"], ["<|endoftext|>", "<|im_end|>", "<|im_start|>", "\u7528\u6237", "</think>", "user", "User", "\u7528\u6237\u7684"], ["\u7528\u6237", "<|im_start|>", "</think>", "<|im_end|>", "<|endoftext|>", "*\\", "user", " *\\"], ["<|im_start|>", "\u7528\u6237", "</think>", "<|endoftext|>", "<|im_end|>", "*\\", "user", " *\\"], ["<|im_start|>", "\u7528\u6237", "</think>", "<|endoftext|>", "<|im_end|>", "*\\", "\"*", "!*"], ["<|im_start|>", "</think>", "\u7528\u6237", "<|endoftext|>", "<|im_end|>", "*\\", "user", "\"*"], ["<|im_start|>", "<|endoftext|>", "</think>", "<|im_end|>", "\n\n", "\\n", "\u7528\u6237", "*"], ["<|im_start|>", "<|endoftext|>", "</think>", "<|im_end|>", "\n\n", "\n", "*", " \n"], ["<|im_start|>", "<|endoftext|>", "</think>", "<|im_end|>", "\u7528\u6237", "\n\n", "user", "User"]], "p": [[0.7883, 0.1759, 0.0088, 0.0057, 0.0027, 0.0027, 0.0024, 0.0016], [0.0233, 0.0219, 0.0205, 0.016, 0.0125, 0.0103, 0.0091, 0.008], [0.4891, 0.1401, 0.1237, 0.0455, 0.0401, 0.0313, 0.0294, 0.0243], [0.031, 0.02, 0.0166, 0.0089, 0.0078, 0.0078, 0.0069, 0.0065], [0.026, 0.0123, 0.0102, 0.0075, 0.0075, 0.0066, 0.0045, 0.0045], [0.0489, 0.0279, 0.0159, 0.0124, 0.0066, 0.0043, 0.0035, 0.0031], [0.2144, 0.0894, 0.0542, 0.0509, 0.0449, 0.0187, 0.0155, 0.0107], [0.1685, 0.0847, 0.0747, 0.0483, 0.0453, 0.0453, 0.0228, 0.0201], [0.2977, 0.1806, 0.0853, 0.0801, 0.0801, 0.0403, 0.0356, 0.0277], [0.0878, 0.0268, 0.0222, 0.0173, 0.0143, 0.0112, 0.0105, 0.0098], [0.6074, 0.174, 0.0152, 0.0152, 0.0126, 0.0092, 0.0087, 0.0087], [0.3889, 0.0815, 0.056, 0.0319, 0.0206, 0.0206, 0.0125, 0.0117], [0.2647, 0.1605, 0.125, 0.0591, 0.0555, 0.0279, 0.0204, 0.0149], [0.2462, 0.1917, 0.0799, 0.0622, 0.0377, 0.0313, 0.0202, 0.0168], [0.9889, 0.0046, 0.0015, 0.0012, 0.001, 0.0005, 0.0003, 0.0002], [0.7262, 0.1262, 0.0265, 0.0219, 0.0133, 0.0133, 0.0052, 0.0041], [0.9042, 0.0309, 0.0273, 0.0166, 0.0037, 0.0035, 0.0015, 0.0011], [0.4137, 0.1113, 0.0983, 0.0596, 0.03, 0.0233, 0.0193, 0.0125], [0.1706, 0.1602, 0.1414, 0.0913, 0.0431, 0.0169, 0.0169, 0.0124], [0.9616, 0.0054, 0.0033, 0.0031, 0.0027, 0.0017, 0.0014, 0.0014], [0.985, 0.0141, 0.0006, 0.0002, 0.0001, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9889, 0.011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9997, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9993, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9998, 0.0001, 0.0001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9994, 0.0002, 0.0001, 0.0001, 0.0001, 0.0, 0.0, 0.0], [0.9968, 0.0032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9875, 0.0124, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7547, 0.245, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7942, 0.2008, 0.0042, 0.0005, 0.0002, 0.0001, 0.0, 0.0], [0.8992, 0.0948, 0.0053, 0.0004, 0.0001, 0.0001, 0.0, 0.0], [0.661, 0.2755, 0.0615, 0.0005, 0.0005, 0.0003, 0.0002, 0.0002], [0.6418, 0.3032, 0.0527, 0.0005, 0.0004, 0.0004, 0.0004, 0.0001], [0.4322, 0.3814, 0.1802, 0.0016, 0.0014, 0.0009, 0.0005, 0.0003], [0.395, 0.3486, 0.2396, 0.0072, 0.0018, 0.0014, 0.001, 0.0006], [0.9196, 0.0666, 0.0131, 0.0003, 0.0002, 0.0, 0.0, 0.0], [0.8809, 0.0819, 0.0342, 0.0009, 0.0006, 0.0005, 0.0001, 0.0001], [0.5066, 0.4471, 0.0416, 0.0016, 0.0007, 0.0005, 0.0002, 0.0002], [0.4734, 0.3253, 0.1973, 0.0013, 0.0006, 0.0006, 0.0003, 0.0002], [0.511, 0.2735, 0.213, 0.0011, 0.001, 0.0, 0.0, 0.0], [0.4614, 0.3171, 0.2179, 0.0019, 0.0013, 0.0001, 0.0001, 0.0], [0.6207, 0.3322, 0.045, 0.0008, 0.0004, 0.0002, 0.0001, 0.0001], [0.936, 0.0411, 0.022, 0.0002, 0.0001, 0.0001, 0.0001, 0.0001], [0.7974, 0.2016, 0.0005, 0.0001, 0.0001, 0.0001, 0.0, 0.0], [0.9978, 0.0022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9705, 0.0293, 0.0002, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9854, 0.0141, 0.0005, 0.0, 0.0, 0.0, 0.0, 0.0], [0.9937, 0.0052, 0.001, 0.0, 0.0, 0.0, 0.0, 0.0], [0.7821, 0.1978, 0.0162, 0.0022, 0.0013, 0.0001, 0.0, 0.0], [0.642, 0.2362, 0.0869, 0.022, 0.0081, 0.0016, 0.0004, 0.0002], [0.2595, 0.2595, 0.1574, 0.1082, 0.0743, 0.0424, 0.0107, 0.0051], [0.5174, 0.1482, 0.1482, 0.07, 0.0214, 0.0166, 0.0069, 0.0048], [0.599, 0.1179, 0.1179, 0.0631, 0.0117, 0.0097, 0.0059, 0.0046], [0.6076, 0.2235, 0.0322, 0.0195, 0.0105, 0.0076, 0.0049, 0.0032], [0.5289, 0.3635, 0.0919, 0.0091, 0.0007, 0.0006, 0.0005, 0.0005], [0.6015, 0.3648, 0.0299, 0.0014, 0.0002, 0.0001, 0.0001, 0.0001], [0.867, 0.133, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], "ranks": {}}], "cast": [{"w": "s", "n": 1092, "best": 1, "layers": [0, 62], "score": 818.71, "echo": true}, {"w": "complex", "n": 796, "best": 1, "layers": [5, 62], "score": 372.71, "echo": true}, {"w": "heavily", "n": 870, "best": 1, "layers": [14, 62], "score": 296.83, "echo": false}, {"w": "GC", "n": 605, "best": 1, "layers": [1, 62], "score": 266.27, "echo": true}, {"w": "workflows", "n": 512, "best": 1, "layers": [18, 61], "score": 234.07, "echo": false}, {"w": "tech", "n": 579, "best": 1, "layers": [12, 47], "score": 206.15, "echo": true}, {"w": "aggressively", "n": 551, "best": 1, "layers": [9, 62], "score": 196.65, "echo": false}, {"w": "framerate", "n": 318, "best": 1, "layers": [13, 62], "score": 196.08, "echo": false}, {"w": "memory", "n": 475, "best": 1, "layers": [4, 62], "score": 192.66, "echo": true}, {"w": "during", "n": 389, "best": 1, "layers": [25, 62], "score": 184.75, "echo": true}, {"w": "reuse", "n": 449, "best": 1, "layers": [26, 61], "score": 184.14, "echo": false}, {"w": "er", "n": 379, "best": 1, "layers": [0, 37], "score": 182.1, "echo": true}, {"w": "Android", "n": 370, "best": 1, "layers": [4, 62], "score": 181.01, "echo": true}, {"w": "technology", "n": 453, "best": 1, "layers": [11, 48], "score": 178.15, "echo": false}, {"w": "hardware", "n": 493, "best": 1, "layers": [23, 62], "score": 172.59, "echo": false}, {"w": "garbage", "n": 368, "best": 1, "layers": [4, 62], "score": 172.33, "echo": true}, {"w": "CPU", "n": 387, "best": 1, "layers": [3, 62], "score": 161.3, "echo": true}, {"w": "optimizations", "n": 368, "best": 1, "layers": [34, 58], "score": 159.58, "echo": false}, {"w": "arguably", "n": 514, "best": 1, "layers": [7, 36], "score": 159.55, "echo": false}, {"w": "optimized", "n": 397, "best": 1, "layers": [29, 57], "score": 154.6, "echo": false}, {"w": "meticulously", "n": 328, "best": 1, "layers": [17, 56], "score": 153.39, "echo": false}, {"w": "myriad", "n": 409, "best": 1, "layers": [5, 36], "score": 147.69, "echo": false}, {"w": "even", "n": 371, "best": 1, "layers": [10, 62], "score": 142.52, "echo": true}, {"w": "ing", "n": 301, "best": 1, "layers": [0, 62], "score": 141.88, "echo": true}, {"w": "reusable", "n": 287, "best": 1, "layers": [28, 62], "score": 137.19, "echo": false}, {"w": "unpredictable", "n": 266, "best": 1, "layers": [11, 62], "score": 133.6, "echo": true}, {"w": "\u2013and", "n": 388, "best": 1, "layers": [0, 49], "score": 129.93, "echo": false}, {"w": "allocations", "n": 230, "best": 1, "layers": [36, 62], "score": 122.78, "echo": true}, {"w": "animations", "n": 223, "best": 1, "layers": [25, 57], "score": 115.96, "echo": false}, {"w": "leveraging", "n": 297, "best": 1, "layers": [11, 52], "score": 102.44, "echo": false}, {"w": "strategy", "n": 249, "best": 1, "layers": [12, 62], "score": 101.96, "echo": false}, {"w": "allocation", "n": 303, "best": 1, "layers": [7, 62], "score": 100.55, "echo": true}, {"w": "data", "n": 189, "best": 1, "layers": [4, 62], "score": 100.34, "echo": true}, {"w": "savvy", "n": 239, "best": 1, "layers": [10, 29], "score": 100.28, "echo": false}, {"w": "optimization", "n": 335, "best": 1, "layers": [30, 62], "score": 98.05, "echo": false}, {"w": "FPS", "n": 265, "best": 1, "layers": [11, 62], "score": 95.83, "echo": true}, {"w": "limited", "n": 243, "best": 1, "layers": [7, 62], "score": 95.3, "echo": true}, {"w": "runtime", "n": 254, "best": 1, "layers": [28, 62], "score": 95.16, "echo": true}, {"w": "processing", "n": 228, "best": 1, "layers": [12, 62], "score": 93.44, "echo": true}, {"w": "\u2014even", "n": 226, "best": 1, "layers": [13, 62], "score": 92.96, "echo": false}]}